diff --git a/.gitignore b/.gitignore
index 241253b04ba8096cc7b5fc5c631ce1e6602fe6f0..55e199a0f4b29de5943e31ca5c56364466de0164 100644
--- a/.gitignore
+++ b/.gitignore
@@ -70,4 +70,6 @@ ost_*_tests_log.xml
 rules.ninja
 build.ninja
 modules/gui/src/dngr.qrc.depends
+/compile_commands.json
 /modules/bindings/tests/formatdb.log
+/modules/mol/mm/src/settings.hh
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index 720b4ff22b90294f17ab075473c78882fb7af1dd..15cd614262cd22d3bb1a40bc3f65348e4862cfba 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -1,3 +1,23 @@
+Changes in Release 1.5
+--------------------------------------------------------------------------------
+
+  * Added binding to 3DComb (structural alignment)
+  * Added functions to predict contacts from multiple sequence alignments
+  * Added some functions to analyze MD trajectories (pairwise distance matrices,
+    pairwise distance fluctuations, RMSD matrix etc.)
+  * Support of non-orthogonal unit cells for wrapping entities
+  * Flexible implementation of HBPlus
+  * Updated dependencies (Eigen2 to Eigen3, Boost 1.47 to 1.53)
+  * Wrapper for OpenMM. This allows for direct access to molecular mechanics
+    functionality from within OST.
+  * The compoundslib now features InChI and InChIKeys (machine readable InChI
+    hash)
+  * Names of compounds are also stored in the compoundslib now
+  * Added seq.ProfileHandle class and io.LoadSequenceProfile to work with 
+    sequence profiles.
+  * Added a wrapper to HHblits.
+  * Removed levenberg_marquardt.h in img/alg
+
 Changes in Release 1.4
 --------------------------------------------------------------------------------
 
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 8141de3b24adbb7d9ab0c00cdb92c9cb30fd8b46..4ab2d74cedcb255bf1ae8f0db289c6b3c66ea16f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -4,9 +4,10 @@
 
 cmake_minimum_required(VERSION 2.6.4 FATAL_ERROR)
 project(OpenStructure CXX C)
+set (CMAKE_EXPORT_COMPILE_COMMANDS 1)
 set (OST_VERSION_MAJOR 1)
-set (OST_VERSION_MINOR 4)
-set (OST_VERSION_PATCH 1)
+set (OST_VERSION_MINOR 5)
+set (OST_VERSION_PATCH 0)
 set (OST_VERSION_STRING ${OST_VERSION_MAJOR}.${OST_VERSION_MINOR}.${OST_VERSION_PATCH} )
 set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR}/cmake_support)
 include(OST)
@@ -50,6 +51,7 @@ option(COMPILE_TESTS "whether unit tests should be compiled by default" OFF)
 option(ENABLE_STATIC "whether static libraries should be compiled" OFF)
 option(UBUNTU_LAYOUT "whether Debian/Ubuntu's lib and libexec directory layout should be used" OFF)
 option(HIDDEN_VISIBILITY "on gcc, use -fvisibility=hidden" OFF)
+option(ENABLE_MM "whether openmm support is added" OFF)
 
 if (CXX)
   set(CMAKE_CXX_COMPILER ${CXX})
@@ -139,6 +141,12 @@ if (PROFILE)
 else()
   set(_PROFILE OFF)
 endif()
+if(ENABLE_MM)
+  set(_OPENMM ON)
+else()
+  set(_OPENMM OFF)
+endif()
+
 
 if (UBUNTU_LAYOUT)
   set(_UBUNTU_LAYOUT ON)
@@ -146,8 +154,6 @@ else()
   set(_UBUNTU_LAYOUT OFF)
 endif()
 
-add_definitions(-DEIGEN2_SUPPORT)
-
 if (COMPOUND_LIB)
   set(_COMP_LIB "${COMPOUND_LIB}")
   if (NOT IS_ABSOLUTE "${COMPOUND_LIB}")
@@ -226,13 +232,20 @@ else()
   set (PNG_LIBRARY "")
 endif()
 
-find_package(Eigen 2.0.0 REQUIRED)
+find_package(Eigen 3.2.0 REQUIRED)
 find_package(Python 2.4 REQUIRED)
 
 if(USE_NUMPY)
   find_package(Numpy REQUIRED)
 endif()
 
+if(ENABLE_MM)
+  find_package(OpenMM REQUIRED)
+  set(_OPENMM_PLUGINS "${OPEN_MM_PLUGIN_DIR}")
+else(ENABLE_MM)
+  set(_OPENMM_PLUGINS "NONE")
+endif(ENABLE_MM)
+
 if (ENABLE_IMG)
   find_package(FFTW REQUIRED)
   find_package(TIFF REQUIRED)
@@ -243,7 +256,7 @@ if (ENABLE_STATIC)
   set(Boost_LIBRARIES)
   set(Boost_USE_STATIC_LIBS ON)
   find_package(Boost ${_BOOST_MIN_VERSION} 
-               COMPONENTS filesystem system iostreams regex REQUIRED)
+               COMPONENTS filesystem system iostreams regex thread REQUIRED)
   find_package(ZLIB REQUIRED)
    
   if (UNIX AND NOT APPLE)
@@ -285,10 +298,11 @@ endif()
 
 # basic environment
 include_directories(${Boost_INCLUDE_DIRS} 
-                    ${FFTW_INCLUDE_PATH} 
-                    ${EIGEN2_INCLUDE_DIR}
+                    ${FFTW_INCLUDE_DIRS} 
+                    ${EIGEN3_INCLUDE_DIRS}
                     ${TIFF_INCLUDE_DIR}
-                    ${PNG_INCLUDE_DIR}
+                    ${PNG_INCLUDE_DIRS}
+                    ${OPEN_MM_INCLUDE_DIRS}
                     )
 if(USE_NUMPY)
 include_directories(${PYTHON_NUMPY_INCLUDE_DIR})
@@ -343,6 +357,8 @@ message(STATUS
         "   Shader support                    (-DUSE_SHADER) : ${_SHADER}\n"
         "   Numpy support                      (-DUSE_NUMPY) : ${_NUMPY}\n"
         "   SpaceNav Device support         (-DENABLE_SPNAV) : ${_SPNAV}\n"
+        "   OpenMM support                     (-DENABLE_MM) : ${_OPENMM}\n"
+        "   OpenMM plugins            (-DOPEN_MM_PLUGIN_DIR) : ${_OPENMM_PLUGINS}\n"
         "   Optimize                            (-DOPTIMIZE) : ${_OPT}\n"
         "   Profiling support                    (-DPROFILE) : ${_PROFILE}\n"
         "   Double Precision        (-DUSE_DOUBLE_PRECISION) : ${_DOUBLE_PREC}\n"
diff --git a/build_configs/buildconfig_bc2 b/build_configs/buildconfig_bc2
index a0dd0d1a8a850c0e3615c6c7222488c39ec8f218..ae7aa9384f42215d685e16c9c8eda6389243fd08 100644
--- a/build_configs/buildconfig_bc2
+++ b/build_configs/buildconfig_bc2
@@ -1,9 +1,8 @@
-set(FFTW_INCLUDE_PATH "/import/bc2/soft/app/FFTW/current/Linux/include/" CACHE PATH "")
-set(FFTW_LIBRARIES "/import/bc2/soft/app/FFTW/current/Linux/lib/libfftw3f.so"  CACHE PATH "")
-set(Boost_COMPILER "-gcc41"  CACHE PATH "")
-set(PYTHON_ROOT "/import/bc2/soft/app/Python/current/Linux/"  CACHE PATH "")
-set(EIGEN2_INCLUDE_DIR "/import/bc2/soft/app/eigen/current/Linux/include/eigen2" CACHE PATH "")
-set(BOOST_ROOT "/import/bc2/soft/app/boost/current/Linux"  CACHE PATH "")
-set(QT_QMAKE_EXECUTABLE "/import/bc2/soft/app/Qt/current/Linux/bin/qmake" CACHE PATH "")
+set(FFTW_INCLUDE_PATH "/scicore/soft/apps/FFTW/3.3.3-gompi-1.4.10/include/" CACHE PATH "")
+set(FFTW_LIBRARY "/scicore/soft/apps/FFTW/3.3.3-gompi-1.4.10/lib/libfftw3f.a"  CACHE PATH "")
+set(PYTHON_ROOT "/scicore/soft/apps/Python/2.7.5-goolf-1.4.10"  CACHE PATH "")
+set(EIGEN3_INCLUDE_DIR "/scicore/soft/apps/Eigen/3.2.1-goolf-1.4.10/include/Eigen" CACHE PATH "")
+set(BOOST_ROOT "/import/bc2/apps/Boost/1.53.0-goolf-1.4.10-Python-2.7.5"  CACHE PATH "")
+set(QT_QMAKE_EXECUTABLE "/usr/bin/qmake-qt4" CACHE PATH "")
 set(COMPOUND_LIB "/import/bc2/home/schwede/GROUP/OpenStructure/ChemLib/compounds.chemlib" CACHE PATH "")
 set (CMAKE_BUILD_TYPE "Release" CACHE PATH "")
diff --git a/build_configs/buildconfig_bc2_static b/build_configs/buildconfig_bc2_static
index c26933d8ce996f93da782e919544f06312d57ff3..d25730b349840c25abf398a9b7d981d13bab5c2d 100644
--- a/build_configs/buildconfig_bc2_static
+++ b/build_configs/buildconfig_bc2_static
@@ -1,11 +1,10 @@
-set(FFTW_INCLUDE_PATH "/import/bc2/soft/app/FFTW/current/Linux/include/" CACHE PATH "")
-set(FFTW_LIBRARIES "/import/bc2/soft/app/FFTW/current/Linux/lib/libfftw3f.a"  CACHE PATH "")
+set(FFTW_INCLUDE_PATH "/scicore/soft/apps/FFTW/3.3.3-gompi-1.4.10/include/" CACHE PATH "")
+set(FFTW_LIBRARY "/scicore/soft/apps/FFTW/3.3.3-gompi-1.4.10/lib/libfftw3f.a"  CACHE PATH "")
 set(DL_LIBRARIES "/usr/lib64/libdl.a"  CACHE PATH "")
 set(PTHREAD_LIBRARIES "/usr/lib64/libpthread.a"  CACHE PATH "")
-set(ZLIB_LIBRARY "/usr/lib64/libz.a"  CACHE PATH "")
-set(Boost_COMPILER "-gcc41"  CACHE PATH "")
-set(PYTHON_ROOT "/import/bc2/soft/app/Python/current/Linux/"  CACHE PATH "")
-set(EIGEN2_INCLUDE_DIR "/import/bc2/soft/app/eigen/current/Linux/include/eigen2" CACHE PATH "")
-set(QT_QMAKE_EXECUTABLE "/import/bc2/soft/app/Qt/current/Linux/bin/qmake" CACHE PATH "")
+set(ZLIB_LIBRARY "/scicore/soft/apps/zlib/1.2.8-goolf-1.4.10/lib/libz.a"  CACHE PATH "")
+set(PYTHON_ROOT "/scicore/soft/apps/Python/2.7.5-goolf-1.4.10"  CACHE PATH "")
+set(EIGEN3_INCLUDE_DIR "/scicore/soft/apps/Eigen/3.2.1-goolf-1.4.10/include/Eigen" CACHE PATH "")
+set(QT_QMAKE_EXECUTABLE "/usr/bin/qmake-qt4" CACHE PATH "")
 set(COMPOUND_LIB "/import/bc2/home/schwede/GROUP/OpenStructure/ChemLib/compounds.chemlib" CACHE PATH "")
 set (CMAKE_BUILD_TYPE "Release" CACHE PATH "")
diff --git a/build_configs/darwin_homebrew.txt b/build_configs/darwin_homebrew.txt
index c88a16256e5040d3cf15c1c4e288ea84ed3f3b9c..0e0b2e1793be09b6ea1f9fda1265b4ed35074db2 100644
--- a/build_configs/darwin_homebrew.txt
+++ b/build_configs/darwin_homebrew.txt
@@ -1,2 +1,2 @@
 set(PNG_INCLUDE_DIR "/usr/X11/include" CACHE PATH "include path for system libpng")
-set(EIGEN2_INCLUDE_DIR "/usr/local/include/eigen3" CACHE PATH "Eigen3-compatible include path")
+set(EIGEN3_INCLUDE_DIR "/usr/local/include/eigen3" CACHE PATH "Eigen3-compatible include path")
diff --git a/build_configs/win32 b/build_configs/win32
index e315b00056d6c1fe7c835c946b40f6e0edb7e0de..7fac30a6403019e63ca30abdfff4ad28bcd697e7 100644
--- a/build_configs/win32
+++ b/build_configs/win32
@@ -10,7 +10,7 @@ set(PNG_LIBRARY "${USER_DIR}/lib/libpng13.lib" CACHE PATH "includes for libpng")
 set(ZLIB_INCLUDE_DIR "${USER_DIR}/include/" CACHE PATH "zlib includes")
 set(TIFF_INCLUDE_DIR "${USER_DIR}/include/" CACHE PATH "tiff includes")
 set(TIFF_LIBRARY "${USER_DIR}/lib/libtiff_i.lib/" CACHE PATH "tiff includes")
-set(EIGEN2_INCLUDE_DIR "${USER_DIR}/include/eigen2" CACHE PATH "gsl includes")
+set(EIGEN3_INCLUDE_DIR "${USER_DIR}/include/Eigen" CACHE PATH "gsl includes")
 set(USE_DOUBLE_PRECISION "OFF" CACHE PATH "double precision") 
 set(FFTW_LIBRARIES "${USER_DIR}/lib/libfftw3f-3.lib" CACHE PATH "fftw libs")
 #set(FFTW_LIBRARIES "${USER_DIR}/lib/libfftw3-3.lib" CACHE PATH "fftw libs")
diff --git a/cmake_support/CopyDependencies.cmake b/cmake_support/CopyDependencies.cmake
index ddbf1ae2b39cd2b85231133e306a60f0bc32e5ea..a146c16e9b24a4bc3ea8260b472d7522c7672a9f 100644
--- a/cmake_support/CopyDependencies.cmake
+++ b/cmake_support/CopyDependencies.cmake
@@ -253,6 +253,11 @@ function(resolve_item context item exepath resolved_item_var)
   if(UNIX AND NOT WIN32)
     find_file(ri "${item}" ${exepath}  NO_DEFAULT_PATH)
     find_file(ri "${item}" ${exepath}  /usr/lib)
+    if(APPLE)
+      find_file(ri "${item}" PATHS ENV DYLD_LIBRARY_PATH  NO_DEFAULT_PATH)
+    else(APPLE)
+      find_file(ri "${item}" PATHS  ENV LD_LIBRARY_PATH NO_DEFAULT_PATH)
+    endif(APPLE)
   else(UNIX AND NOT WIN32)
     find_program(ri "${item}" PATHS "${exepath}" NO_DEFAULT_PATH)
     find_program(ri "${item}" PATHS "${CMAKE_INSTALL_PREFIX}/bin" NO_DEFAULT_PATH)
@@ -266,7 +271,17 @@ function(resolve_item context item exepath resolved_item_var)
   if(IS_ABSOLUTE "${resolved_item}" AND EXISTS "${resolved_item}")
     set(${resolved_item_var} "${resolved_item}" PARENT_SCOPE)
   else(IS_ABSOLUTE "${resolved_item}" AND EXISTS "${resolved_item}")
-    message(FATAL_ERROR "cannot resolve item '${item}' in context:'${context}'. Partially resolved path is: '${resolved_item}'")
+    if(APPLE)
+      # see if item is available in System frameworks
+      string(REPLACE "/Library/Frameworks" "/System/Library/Frameworks" system_resolved_item ${resolved_item})
+      if(IS_ABSOLUTE "${system_resolved_item}" AND EXISTS "${system_resolved_item}") 
+        set(${resolved_item_var} "${system_resolved_item}" PARENT_SCOPE)
+      else(IS_ABSOLUTE "${system_resolved_item}" AND EXISTS "${system_resolved_item}")
+         message(FATAL_ERROR "cannot resolve item '${item}' in context:'${context}'. Partially resolved path is: '${system_resolved_item}'") 
+      endif(IS_ABSOLUTE "${system_resolved_item}" AND EXISTS "${system_resolved_item}") 
+    else(APPLE)
+      message(FATAL_ERROR "cannot resolve item '${item}' in context:'${context}'. Partially resolved path is: '${resolved_item}'")
+    endif(APPLE)
   endif(IS_ABSOLUTE "${resolved_item}" AND EXISTS "${resolved_item}")
 endfunction(resolve_item)
 
@@ -310,17 +325,21 @@ function(change_install_names_for_item keys_var key)
       # Each referenced item's key is "rkey" in the loop:
       get_filename_component(exepath ${${key}_RESOLVED_EMBEDDED_ITEM} PATH)
       resolve_item( ${${key}_RESOLVED_EMBEDDED_ITEM} ${pr} exepath resolved_pr)
-      get_item_key("${resolved_pr}" rkey)
-      list(FIND ${keys_var} ${rkey} r_found)
-      if(r_found EQUAL -1)
-        MESSAGE(FATAL_ERROR "Key: '${rkey}' not found in dependency list. Cannot change install name.")
-      endif(r_found EQUAL -1)
-      if(NOT ${${rkey}_SYSTEMFLAG})
-        get_filename_component(ref_exepath ${${rkey}_RESOLVED_EMBEDDED_ITEM} PATH)
-        string(REPLACE ${CMAKE_INSTALL_PREFIX} "" ref_rel_path ${ref_exepath})
-        set(diff_path @loader_path${inv_rel_path}${ref_rel_path}/)
-        set(changes ${changes} "-change" "${pr}" "${diff_path}${${rkey}_ITEM}")
-      endif(NOT ${${rkey}_SYSTEMFLAG})
+      # If dependency already resolves to library within install directory we don't have to do anything.
+      if(NOT (${resolved_pr} MATCHES ${CMAKE_INSTALL_PREFIX}) AND EXISTS "${resolved_pr}" )
+        get_item_key("${resolved_pr}" rkey)
+        list(FIND ${keys_var} ${rkey} r_found)
+        if(r_found EQUAL -1)
+          message("Error while trying to get dependencies for ${${key}_RESOLVED_EMBEDDED_ITEM}.")
+          MESSAGE(FATAL_ERROR "Key: '${rkey}' not found in dependency list. Cannot change install name.")
+        endif(r_found EQUAL -1)
+        if(NOT ${${rkey}_SYSTEMFLAG})
+          get_filename_component(ref_exepath ${${rkey}_RESOLVED_EMBEDDED_ITEM} PATH)
+          string(REPLACE ${CMAKE_INSTALL_PREFIX} "" ref_rel_path ${ref_exepath})
+          set(diff_path @loader_path${inv_rel_path}${ref_rel_path}/)
+          set(changes ${changes} "-change" "${pr}" "${diff_path}${${rkey}_ITEM}")
+        endif(NOT ${${rkey}_SYSTEMFLAG})
+      endif(NOT (${resolved_pr} MATCHES ${CMAKE_INSTALL_PREFIX}) AND EXISTS "${resolved_pr}" )
     endforeach(pr)
      
     execute_process(COMMAND chmod u+w "${${key}_RESOLVED_EMBEDDED_ITEM}")
@@ -414,37 +433,6 @@ function(append_unique list_var value)
 endfunction(append_unique)
 
 
-#=============================================================================
-# function copy_python
-#=============================================================================
-function(copy_python include_path version new_binary_path)
-
-
-  get_filename_component(real_python_include_path ${include_path} REALPATH)
-  get_filename_component(python_root_dir ${real_python_include_path}/../.. REALPATH) 
-  file(COPY ${python_root_dir}/${LIB_DIR}/python${version}/ DESTINATION ${CMAKE_INSTALL_PREFIX}/${LIB_DIR}/python${version})
-  file(GLOB  py_config_files "${include_path}/pyconfig*.h")
-  file(COPY ${py_config_files} DESTINATION ${CMAKE_INSTALL_PREFIX}/include/python${version})
-  file(GLOB_RECURSE python_so_files "${CMAKE_INSTALL_PREFIX}/${LIB_DIR}/python${version}/*.so")
-  if(NOT APPLE)
-  foreach(so_file ${python_so_files})
-    remove_rpath("${so_file}")
-  endforeach(so_file)
-  endif(NOT APPLE)
-  read_config(ost_config)
-  if(APPLE)
-    file(COPY ${python_root_dir}/Resources/Python.app/Contents/MacOS/Python DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
-    set(${new_binary_path} "${CMAKE_INSTALL_PREFIX}/bin/Python" PARENT_SCOPE)
-    string(REGEX REPLACE "pyexec=\"[^\n\$]*\"" "pyexec=\"\$DNG_BINDIR/Python\"\nexport PYTHONHOME=\$DNG_ROOT" ost_config "${ost_config}")
-  else(APPLE)
-    file(GLOB python_libs "${python_root_dir}/${LIB_DIR}/libpython${version}.so*")
-    file(COPY ${python_libs} DESTINATION ${CMAKE_INSTALL_PREFIX}/${LIB_DIR})
-    file(COPY ${python_root_dir}/bin/python${version} DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
-    set(${new_binary_path} "${CMAKE_INSTALL_PREFIX}/bin/python${version}" PARENT_SCOPE)
-    string(REGEX REPLACE "pyexec=\"[^\n\$]*\"" "pyexec=\"\$DNG_BINDIR/python${version}\"\nexport PYTHONHOME=\$DNG_ROOT" ost_config "${ost_config}")
-  endif(APPLE)
-  write_config("${ost_config}")
-endfunction(copy_python)
 
 #=============================================================================
 # function read_config
@@ -625,7 +613,11 @@ endfunction(get_rpath)
 # function copy_qt (OSX)
 #=============================================================================
 function(copy_qt library_dir plugin_dir plugins)
-  file(COPY "${library_dir}/Resources/qt_menu.nib"
+  find_file(QT_MENU_NIB qt_menu.nib PATHS ${library_dir}/QtGui.framework/Versions/4 ${library_dir} PATH_SUFFIXES Resources)
+  if(NOT QT_MENU_NIB)
+    message(FATAL "qt_menu.nib not found")
+  endif(NOT QT_MENU_NIB)
+  file(COPY "${QT_MENU_NIB}"
        DESTINATION "${CMAKE_INSTALL_PREFIX}/${LIBEXEC_PATH}/"
        FILE_PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
   file(COPY ${plugin_dir}
@@ -667,12 +659,13 @@ function(copy_python include_path version new_binary_path)
 
   get_filename_component(real_python_include_path ${include_path} REALPATH)
   get_filename_component(python_root_dir ${real_python_include_path}/../.. REALPATH) 
+  file(COPY ${python_root_dir}/Resources/Python.app/Contents/MacOS/Python DESTINATION ${CMAKE_INSTALL_PREFIX})
   file(COPY ${python_root_dir}/${LIB_DIR}/python${version}/ DESTINATION ${CMAKE_INSTALL_PREFIX}/${LIB_DIR}/python${version})
   file(GLOB  py_config_files "${include_path}/pyconfig*.h")
   file(COPY ${py_config_files} DESTINATION ${CMAKE_INSTALL_PREFIX}/include/python${version})
   file(GLOB_RECURSE python_so_files "${CMAKE_INSTALL_PREFIX}/${LIB_DIR}/python${version}/*.so")
   foreach(so_file ${python_so_files})
-    file(RPATH_REMOVE FILE "${so_file}")
+    remove_rpath( "${so_file}")
   endforeach(so_file)
   read_config(ost_config)
   file(COPY ${python_root_dir}/Resources/Python.app/Contents/MacOS/Python DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
@@ -681,6 +674,19 @@ function(copy_python include_path version new_binary_path)
   write_config("${ost_config}")
 endfunction(copy_python)
 
+#=============================================================================
+# function remove_rpath (OSX)
+#=============================================================================
+function(remove_rpath file)
+  get_rpath(${file} rpath)
+  if(${rpath})
+    execute_process(COMMAND stat -f %Mp%Lp "${file}" OUTPUT_VARIABLE permissions)
+    execute_process(COMMAND chmod ugo+wx "${file}")
+    string(SUBSTRING ${permissions} 0 3 permissions)
+    file(RPATH_REMOVE FILE "${file}")
+    execute_process(COMMAND chmod ${permissions} "${file}")
+  endif(${rpath})
+endfunction(remove_rpath)
 
 elseif(WIN32 AND NOT UNIX)
 
@@ -990,13 +996,14 @@ function(copy_python include_path version new_binary_path)
     endforeach()
   else()
     file(COPY ${python_root_dir}/${LIB_DIR}/python${version}/ DESTINATION ${CMAKE_INSTALL_PREFIX}/${LIB_DIR}/python${version} PATTERN "*.pyc" EXCLUDE)
+    if("${LIB_DIR}" MATCHES "lib64")
+      # for 64 bit systems we have to copy the python dir within lib in addition as norarch site packages might get installed there
+      file(COPY ${python_root_dir}/lib/python${version}/ DESTINATION ${CMAKE_INSTALL_PREFIX}/lib/python${version} PATTERN "*.pyc" EXCLUDE)
+    endif("${LIB_DIR}" MATCHES "lib64")
   endif()
   file(GLOB  py_config_files "${include_path}/pyconfig*.h")
   file(COPY ${py_config_files} DESTINATION ${CMAKE_INSTALL_PREFIX}/include/python${version})
   file(GLOB_RECURSE python_so_files "${CMAKE_INSTALL_PREFIX}/${LIB_DIR}/python${version}/*.so")
-  foreach(so_file ${python_so_files})
-    file(RPATH_REMOVE FILE "${so_file}")
-  endforeach(so_file)
   read_config(ost_config)
   if (_UBUNTU_LAYOUT)
     file(GLOB python_libs "${python_root_dir}/${LIB_DIR}/python${version}/config-${UBUNTU_ARCH_STRING}-linux-gnu/libpython${version}.so.*" FOLLOW_SYMLINKS)
@@ -1004,9 +1011,15 @@ function(copy_python include_path version new_binary_path)
     file(GLOB python_libs "${python_root_dir}/${LIB_DIR}/libpython${version}.so*")
   endif()
   file(COPY ${python_libs} DESTINATION ${CMAKE_INSTALL_PREFIX}/${LIB_DIR})
+  foreach( additional_directory $ENV{PYTHONPATH})
+    file(COPY ${additional_directory}/ DESTINATION ${CMAKE_INSTALL_PREFIX}/${LIB_DIR}/python${version}/site-packages PATTERN "*.pyc" EXCLUDE)
+  endforeach()
   file(COPY ${python_root_dir}/bin/python${version} DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
   set(${new_binary_path} "${CMAKE_INSTALL_PREFIX}/bin/python${version}" PARENT_SCOPE)
   string(REGEX REPLACE "pyexec=\"[^\n\$]*\"" "pyexec=\"\$DNG_BINDIR/python${version}\"\nexport PYTHONHOME=\$DNG_ROOT" ost_config "${ost_config}")
+  foreach(so_file ${python_so_files})
+    file(RPATH_REMOVE FILE "${so_file}")
+  endforeach(so_file)
   write_config("${ost_config}")
 endfunction(copy_python)
 
diff --git a/cmake_support/FindEigen.cmake b/cmake_support/FindEigen.cmake
index d927ace1f8c528b80e5d0eb9696a53907fb7c2c4..36e33176aea2c6592cf9c02dc9c9612900ad82de 100644
--- a/cmake_support/FindEigen.cmake
+++ b/cmake_support/FindEigen.cmake
@@ -1,32 +1,19 @@
-# - Try to find Eigen2 lib
+# - Try to find Eigen3 lib
 # Once done this will define
 #
-#  EIGEN2_FOUND - system has eigen lib
-#  EIGEN2_INCLUDE_DIR - the eigen include directory
+#  EIGEN3_FOUND - system has eigen lib
+#  EIGEN3_INCLUDE_DIRS - the eigen include directories
 
-# Copyright (c) 2006, 2007 Montel Laurent, <montel@kde.org>
-# Redistribution and use is allowed according to the terms of the BSD license.
-# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
-#adapted for OpenStructure by Juergen Haas <juergen.haas@unibas.ch>
+find_path(EIGEN3_INCLUDE_DIR NAMES Eigen/Core
+PATH_SUFFIXES eigen3
+)
 
-if (EIGEN2_INCLUDE_DIR)
-
-  # in cache already
-  set(EIGEN2_FOUND TRUE)
-
-else (EIGEN2_INCLUDE_DIR)
-
-  find_path(EIGEN2_INCLUDE_DIR NAMES Eigen/Core
-     PATH_SUFFIXES eigen2
-     HINTS
-     ${INCLUDE_INSTALL_DIR}
-   )
-endif(EIGEN2_INCLUDE_DIR)
+set(EIGEN3_INCLUDE_DIRS ${EIGEN3_INCLUDE_DIR}) 
 
 include (FindPackageHandleStandardArgs)
-find_package_handle_standard_args (EIGEN DEFAULT_MSG EIGEN2_INCLUDE_DIR)
+find_package_handle_standard_args (EIGEN DEFAULT_MSG EIGEN3_INCLUDE_DIR)
 
-mark_as_advanced (EIGEN2_INCLUDE_DIR)
+mark_as_advanced (EIGEN3_INCLUDE_DIR)
 
 
 
diff --git a/cmake_support/FindFFTW.cmake b/cmake_support/FindFFTW.cmake
index b1be94c3efaf55600b8ecdb519a85cb57923f520..aadff0df4d8fa78824d3005b9d3fea57520988f4 100644
--- a/cmake_support/FindFFTW.cmake
+++ b/cmake_support/FindFFTW.cmake
@@ -1,38 +1,34 @@
 # Try to find FFTW
-# adapted from FINDEIGEN.cmake of OpenStructure by Juergen Haas <juergen.haas@unibas.ch>
-# license see FINDEIGEN.cmake 
 #
+# Once done this will define
 # - Find FFTW
 # Find the native FFTW includes and library
 # 
-#  FFTW_INCLUDE_PATH - where to find gsl/gsl_*.h, etc.
-#  FFTW_LIBRARIES   - List of libraries when using FFTW.
-#  FFTW_FOUND       - True if FFTW found.
-
-if (FFTW_INCLUDE_PATH)
- set(FFTW_FOUND TRUE)
-else (FFTW_INCLUDE_PATH)
-  find_path (FFTW_INCLUDE_PATH fftw3.h)
-  if (_DOUBLE_PREC)
-    find_library (FFTW_LIBRARIES NAMES fftw3)
-    find_library (FFTW_THREADS_LIB NAMES fftw3_threads)
-  elseif(NOT _DOUBLE_PREC)
-    find_library (FFTW_LIBRARIES NAMES fftw3f)
-    find_library (FFTW_THREADS_LIB NAMES fftw3f_threads)
-  endif()
-  if(FFTW_THREADS_LIB)
-    SET(FFTW_USE_THREADS TRUE)
-    SET(FFTW_LIBRARIES ${FFTW_LIBRARIES} ${FFTW_THREADS_LIB} )
-  else(FFTW_THREADS_LIB)
-  endif(FFTW_THREADS_LIB)
-endif (FFTW_INCLUDE_PATH)
+#  FFTW_INCLUDE_DIRS - FFTW include dirs.
+#  FFTW_LIBRARIES    - List of libraries when using FFTW.
+#  FFTW_FOUND        - True if FFTW found.
 
+find_path (FFTW_INCLUDE_DIR fftw3.h)
+if (_DOUBLE_PREC)
+  find_library (FFTW_LIBRARY NAMES fftw3)
+  find_library (FFTW_THREADS_LIB NAMES fftw3_threads)
+elseif(NOT _DOUBLE_PREC)
+  find_library (FFTW_LIBRARY NAMES fftw3f)
+  find_library (FFTW_THREADS_LIBRARY NAMES fftw3f_threads)
+endif()
 
+if(FFTW_THREADS_LIBRARY)
+  set(FFTW_USE_THREADS TRUE)
+  set(FFTW_LIBRARIES ${FFTW_LIBRARY} ${FFTW_THREADS_LIBRARY} )
+else(FFTW_THREADS_LIBRARY)
+  set(FFTW_LIBRARIES ${FFTW_LIBRARY} )
+endif(FFTW_THREADS_LIBRARY)
 
+set(FFTW_INCLUDE_DIRS ${FFTW_INCLUDE_DIR})
 
 # handle the QUIETLY and REQUIRED arguments and set FFTW_FOUND to TRUE if 
 # all listed variables are TRUE
 include (FindPackageHandleStandardArgs)
-find_package_handle_standard_args (FFTW DEFAULT_MSG FFTW_LIBRARIES FFTW_INCLUDE_PATH)
+find_package_handle_standard_args (FFTW DEFAULT_MSG FFTW_LIBRARY FFTW_INCLUDE_DIR)
 
-mark_as_advanced (FFTW_LIBRARIES FFTW_INCLUDE_PATH)
+mark_as_advanced (FFTW_LIBRARY FFTW_THREADS_LIBRARY FFTW_INCLUDE_DIR)
diff --git a/cmake_support/FindOpenMM.cmake b/cmake_support/FindOpenMM.cmake
new file mode 100644
index 0000000000000000000000000000000000000000..d4581c95e1060c7630505e46e73a52b777ed1628
--- /dev/null
+++ b/cmake_support/FindOpenMM.cmake
@@ -0,0 +1,43 @@
+# Try to find OpenMM
+#
+# Once done this will define
+# - Find OpenMM
+# Find the native OpenMM includes and library
+# 
+#  OPEN_MM_INCLUDE_DIR  - OpenMM include dirs.
+#  OPEN_MM_LIBRARIES    - List of libraries when using OpenMM.
+#  OPEN_MM_FOUND        - True if OpenMM found.
+#  OPEN_MM_PLUGIN_DIR   - Default for ressource plugins
+
+if (OPEN_MM_INCLUDE_DIR)
+  set(OPEN_MM_FOUND TRUE)
+else (OPEN_MM_INCLUDE_DIR)
+  find_path (OPEN_MM_INCLUDE_DIR OpenMM.h)
+endif (OPEN_MM_INCLUDE_DIR)
+
+if (OPEN_MM_LIBRARY)
+  set(OPEN_MM_FOUND TRUE)
+else (OPEN_MM_LIBRARY)
+  find_library (OPEN_MM_LIBRARY NAMES OpenMM)
+endif(OPEN_MM_LIBRARY)
+
+set(OPEN_MM_LIBRARIES ${OPEN_MM_LIBRARY})
+set(OPEN_MM_INCLUDE_DIRS ${OPEN_MM_INCLUDE_DIR})
+
+# handle the QUIETLY and REQUIRED arguments and set OpenMM_FOUND to TRUE if 
+# all listed variables are TRUE
+include (FindPackageHandleStandardArgs)
+find_package_handle_standard_args (OpenMM DEFAULT_MSG OPEN_MM_LIBRARY OPEN_MM_INCLUDE_DIR)
+
+if (OPEN_MM_LIBRARY)
+  set(OPEN_MM_FOUND TRUE)
+  if (NOT OPEN_MM_PLUGIN_DIR)
+    set(OPEN_MM_PLUGIN_DIR "/usr/local/openmm/lib/plugins")
+  endif (NOT OPEN_MM_PLUGIN_DIR)
+  if (NOT EXISTS "${OPEN_MM_PLUGIN_DIR}")
+    message(FATAL_ERROR "OpenMM plugin directory does not exist: '${OPEN_MM_PLUGIN_DIR}'")
+  endif (NOT EXISTS "${OPEN_MM_PLUGIN_DIR}")
+endif (OPEN_MM_LIBRARY)
+
+mark_as_advanced (OPEN_MM_LIBRARY OPEN_MM_INCLUDE_DIR OPEN_MM_FOUND
+                  OPEN_MM_PLUGIN_DIR)
diff --git a/cmake_support/OST.cmake b/cmake_support/OST.cmake
index 27b9a5eb42a27b410374ab4bcd29f343be436e2c..94cadd2ff04d812c2c8aa02e63d2ec8b72f45d06 100644
--- a/cmake_support/OST.cmake
+++ b/cmake_support/OST.cmake
@@ -661,10 +661,13 @@ macro(ost_unittest)
       set_target_properties(${_test_name} PROPERTIES RUNTIME_OUTPUT_DIRECTORY_DEBUG "${CMAKE_BINARY_DIR}/tests"  )
       set_target_properties(${_test_name} PROPERTIES RUNTIME_OUTPUT_DIRECTORY_RELEASE "${CMAKE_BINARY_DIR}/tests"  )
 
+      target_link_libraries(${_test_name} ${BOOST_UNIT_TEST_LIBRARIES} "${_ARG_PREFIX}_${_ARG_MODULE}")
       if (WIN32)
-        target_link_libraries(${_test_name} ${BOOST_UNIT_TEST_LIBRARIES} "${_ARG_PREFIX}_${_ARG_MODULE}")
-        add_custom_target("${_test_name}_run":
-                        COMMAND set PATH=${STAGE_DIR}/bin\;%PATH% & ${CMAKE_CURRENT_BINARY_DIR}/${_test_name}.exe || echo
+        set(TEST_COMMAND ${CMAKE_CURRENT_BINARY_DIR}/${_test_name}.exe || echo)
+        message(${TEST_COMMAND})
+        set(ENV{PP} ${STAGE_DIR}/bin)
+        add_custom_target("${_test_name}_run" 
+                        COMMAND echo %PP%
                         WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
                         COMMENT "running checks for module ${_ARG_MODULE}"
                         DEPENDS ${_test_name})
@@ -672,8 +675,6 @@ macro(ost_unittest)
         set_target_properties("${_test_name}_run" PROPERTIES EXCLUDE_FROM_ALL "1")
         add_dependencies(check "${_test_name}_run")
       else()
-        target_link_libraries(${_test_name} ${BOOST_UNIT_TEST_LIBRARIES}
-                            "${_ARG_PREFIX}_${_ARG_MODULE}")
         add_custom_target("${_test_name}_run"
                         COMMAND OST_ROOT=${STAGE_DIR} ${CMAKE_CURRENT_BINARY_DIR}/${_test_name} || echo
                         WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
@@ -699,7 +700,13 @@ macro(ost_unittest)
     endif()
 
     foreach(py_test ${PY_TESTS})
+      set(python_path $ENV{PYTHONPATH})
+      if(python_path)
+        set(python_path "${python_path}:")
+      endif(python_path)
+      set(python_path "${python_path}${LIB_STAGE_PATH}/python${PYTHON_VERSION}/site-packages")
       if(WIN32)
+        set (PY_TESTS_CMD "PYTHONPATH=${python_path}  ${PYTHON_BINARY}")
         # todo fix python unit test running for Windows
         #set (PY_TESTS_CMD "${EXECUTABLE_OUTPUT_PATH}/ost.bat")
         #add_custom_target("${py_test}_run"
@@ -710,11 +717,6 @@ macro(ost_unittest)
         #add_dependencies("${py_test}_run" ost_scripts "_${_ARG_PREFIX}_${_ARG_MODULE}")
         #add_dependencies(check "${py_test}_run")
       else()
-        set(python_path $ENV{PYTHONPATH})
-        if(python_path)
-          set(python_path "${python_path}:")
-        endif(python_path)
-        set(python_path "${python_path}${LIB_STAGE_PATH}/python${PYTHON_VERSION}/site-packages")
         set (PY_TESTS_CMD "PYTHONPATH=${python_path}  ${PYTHON_BINARY}")
         add_custom_target("${py_test}_run"
                   sh -c "${PY_TESTS_CMD} ${CMAKE_CURRENT_SOURCE_DIR}/${py_test} || echo"
@@ -825,6 +827,9 @@ macro(setup_stage)
   set(HEADER_STAGE_PATH ${STAGE_DIR}/include )
   set(SHARED_DATA_PATH ${STAGE_DIR}/share/openstructure  )
 
+  if (WIN32)
+    set(ENV{PATH} ${STAGE_DIR}/bin\;$ENV{PATH})
+  endif (WIN32)
   if (UNIX AND NOT APPLE)
     check_architecture()
   endif()
@@ -896,6 +901,7 @@ endmacro()
 set(_BOOST_MIN_VERSION 1.31)
 
 macro(setup_boost)
+  set (Boost_NO_BOOST_CMAKE TRUE)
   find_package(Boost ${_BOOST_MIN_VERSION} COMPONENTS python REQUIRED)
   set(BOOST_PYTHON_LIBRARIES ${Boost_LIBRARIES})
   set(Boost_LIBRARIES)
@@ -919,4 +925,7 @@ macro(setup_boost)
   find_package(Boost ${_BOOST_MIN_VERSION} COMPONENTS regex REQUIRED)
   set(BOOST_REGEX_LIBRARIES ${Boost_LIBRARIES})
   set(Boost_LIBRARIES)
+  find_package(Boost ${_BOOST_MIN_VERSION} COMPONENTS thread REQUIRED)
+  set(BOOST_THREAD ${Boost_LIBRARIES})
+  set(Boost_LIBRARIES)
 endmacro()
diff --git a/deployment/macos/CMakeLists.txt b/deployment/macos/CMakeLists.txt
index 0183d8ec8ec09181350a76f15b0eb29ec3292d6a..e2e9bc675fc696960353b7e4546ab1671692c1e3 100644
--- a/deployment/macos/CMakeLists.txt
+++ b/deployment/macos/CMakeLists.txt
@@ -15,6 +15,7 @@ set(CPACK_PACKAGE_INSTALL_DIRECTORY "openstructure ${OST_VERSION_STRING}" )
 install(CODE "
   if(NOT ${CMAKE_INSTALL_PREFIX} STREQUAL \${CMAKE_INSTALL_PREFIX})
     set(LIB_DIR ${LIB_DIR}) #pass libdir variable in install code block
+    set(LIBEXEC_PATH ${LIBEXEC_PATH})#pass libexec_path variable in install code block
     set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR}/cmake_support)
     include(CopyDependencies)
   
diff --git a/deployment/macos/Info.plist b/deployment/macos/Info.plist
new file mode 100644
index 0000000000000000000000000000000000000000..5169acff8e7a7856db28a8da5ba607604e489c73
--- /dev/null
+++ b/deployment/macos/Info.plist
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" 
+    "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+  <key>CFBundleDevelopmentRegion</key>
+  <string>English</string>
+  <key>CFBundleExecutable</key>
+  <string>dng</string>
+  <key>CFBundleName</key>
+  <string>DNG</string>  
+  <key>CFBundleDisplayName</key>
+  <string>DNG</string>  
+  <key>CFBundleHelpBookFolder</key>
+  <string>OpenStructure Manual</string>
+  <key>CFBundleHelpBookName</key>
+  <string>OpenStructure Help</string>
+  <key>CFBundleIconFile</key>
+  <string>DNG.icns</string>
+  <key>CFBundleIdentifier</key>
+  <string>org.openstructure.OpenStructure</string>
+  <key>CFBundleInfoDictionaryVersion</key>
+  <string>6.0</string>
+  <key>CFBundlePackageType</key>
+  <string>APPL</string>
+  <key>CFBundleSignature</key>
+  <string>????</string>
+  <key>CFBundleVersion</key>
+  <string></string>
+  <key>NSMainNibFile</key>
+  <string>MainMenu</string>
+  <key>NSPrincipalClass</key>
+  <string>NSApplication</string>
+</dict>
+</plist>
diff --git a/examples/code_fragments/mm/1CRN.pdb b/examples/code_fragments/mm/1CRN.pdb
new file mode 100644
index 0000000000000000000000000000000000000000..13ca618d438ae60a55a8ce1c532cd23bf545e200
--- /dev/null
+++ b/examples/code_fragments/mm/1CRN.pdb
@@ -0,0 +1,329 @@
+ATOM      1  N   THR A   1      17.047  14.099   3.625  1.00 13.79           N  
+ATOM      2  CA  THR A   1      16.967  12.784   4.338  1.00 10.80           C  
+ATOM      3  C   THR A   1      15.685  12.755   5.133  1.00  9.19           C  
+ATOM      4  O   THR A   1      15.268  13.825   5.594  1.00  9.85           O  
+ATOM      5  CB  THR A   1      18.170  12.703   5.337  1.00 13.02           C  
+ATOM      6  OG1 THR A   1      19.334  12.829   4.463  1.00 15.06           O  
+ATOM      7  CG2 THR A   1      18.150  11.546   6.304  1.00 14.23           C  
+ATOM      8  N   THR A   2      15.115  11.555   5.265  1.00  7.81           N  
+ATOM      9  CA  THR A   2      13.856  11.469   6.066  1.00  8.31           C  
+ATOM     10  C   THR A   2      14.164  10.785   7.379  1.00  5.80           C  
+ATOM     11  O   THR A   2      14.993   9.862   7.443  1.00  6.94           O  
+ATOM     12  CB  THR A   2      12.732  10.711   5.261  1.00 10.32           C  
+ATOM     13  OG1 THR A   2      13.308   9.439   4.926  1.00 12.81           O  
+ATOM     14  CG2 THR A   2      12.484  11.442   3.895  1.00 11.90           C  
+ATOM     15  N   CYS A   3      13.488  11.241   8.417  1.00  5.24           N  
+ATOM     16  CA  CYS A   3      13.660  10.707   9.787  1.00  5.39           C  
+ATOM     17  C   CYS A   3      12.269  10.431  10.323  1.00  4.45           C  
+ATOM     18  O   CYS A   3      11.393  11.308  10.185  1.00  6.54           O  
+ATOM     19  CB  CYS A   3      14.368  11.748  10.691  1.00  5.99           C  
+ATOM     20  SG  CYS A   3      15.885  12.426  10.016  1.00  7.01           S  
+ATOM     21  N   CYS A   4      12.019   9.272  10.928  1.00  3.90           N  
+ATOM     22  CA  CYS A   4      10.646   8.991  11.408  1.00  4.24           C  
+ATOM     23  C   CYS A   4      10.654   8.793  12.919  1.00  3.72           C  
+ATOM     24  O   CYS A   4      11.659   8.296  13.491  1.00  5.30           O  
+ATOM     25  CB  CYS A   4      10.057   7.752  10.682  1.00  4.41           C  
+ATOM     26  SG  CYS A   4       9.837   8.018   8.904  1.00  4.72           S  
+ATOM     27  N   PRO A   5       9.561   9.108  13.563  1.00  3.96           N  
+ATOM     28  CA  PRO A   5       9.448   9.034  15.012  1.00  4.25           C  
+ATOM     29  C   PRO A   5       9.288   7.670  15.606  1.00  4.96           C  
+ATOM     30  O   PRO A   5       9.490   7.519  16.819  1.00  7.44           O  
+ATOM     31  CB  PRO A   5       8.230   9.957  15.345  1.00  5.11           C  
+ATOM     32  CG  PRO A   5       7.338   9.786  14.114  1.00  5.24           C  
+ATOM     33  CD  PRO A   5       8.366   9.804  12.958  1.00  5.20           C  
+ATOM     34  N   SER A   6       8.875   6.686  14.796  1.00  4.83           N  
+ATOM     35  CA  SER A   6       8.673   5.314  15.279  1.00  4.45           C  
+ATOM     36  C   SER A   6       8.753   4.376  14.083  1.00  4.99           C  
+ATOM     37  O   SER A   6       8.726   4.858  12.923  1.00  4.61           O  
+ATOM     38  CB  SER A   6       7.340   5.121  15.996  1.00  5.05           C  
+ATOM     39  OG  SER A   6       6.274   5.220  15.031  1.00  6.39           O  
+ATOM     40  N   ILE A   7       8.881   3.075  14.358  1.00  4.94           N  
+ATOM     41  CA  ILE A   7       8.912   2.083  13.258  1.00  6.33           C  
+ATOM     42  C   ILE A   7       7.581   2.090  12.506  1.00  5.32           C  
+ATOM     43  O   ILE A   7       7.670   2.031  11.245  1.00  6.85           O  
+ATOM     44  CB  ILE A   7       9.207   0.677  13.924  1.00  8.43           C  
+ATOM     45  CG1 ILE A   7      10.714   0.702  14.312  1.00  9.78           C  
+ATOM     46  CG2 ILE A   7       8.811  -0.477  12.969  1.00 11.70           C  
+ATOM     47  CD1 ILE A   7      11.185  -0.516  15.142  1.00  9.92           C  
+ATOM     48  N   VAL A   8       6.458   2.162  13.159  1.00  5.02           N  
+ATOM     49  CA  VAL A   8       5.145   2.209  12.453  1.00  6.93           C  
+ATOM     50  C   VAL A   8       5.115   3.379  11.461  1.00  5.39           C  
+ATOM     51  O   VAL A   8       4.664   3.268  10.343  1.00  6.30           O  
+ATOM     52  CB  VAL A   8       3.995   2.354  13.478  1.00  9.64           C  
+ATOM     53  CG1 VAL A   8       2.716   2.891  12.869  1.00 13.85           C  
+ATOM     54  CG2 VAL A   8       3.758   1.032  14.208  1.00 11.97           C  
+ATOM     55  N   ALA A   9       5.606   4.546  11.941  1.00  3.73           N  
+ATOM     56  CA  ALA A   9       5.598   5.767  11.082  1.00  3.56           C  
+ATOM     57  C   ALA A   9       6.441   5.527   9.850  1.00  4.13           C  
+ATOM     58  O   ALA A   9       6.052   5.933   8.744  1.00  4.36           O  
+ATOM     59  CB  ALA A   9       6.022   6.977  11.891  1.00  4.80           C  
+ATOM     60  N   ARG A  10       7.647   4.909  10.005  1.00  3.73           N  
+ATOM     61  CA  ARG A  10       8.496   4.609   8.837  1.00  3.38           C  
+ATOM     62  C   ARG A  10       7.798   3.609   7.876  1.00  3.47           C  
+ATOM     63  O   ARG A  10       7.878   3.778   6.651  1.00  4.67           O  
+ATOM     64  CB  ARG A  10       9.847   4.020   9.305  1.00  3.95           C  
+ATOM     65  CG  ARG A  10      10.752   3.607   8.149  1.00  4.55           C  
+ATOM     66  CD  ARG A  10      11.226   4.699   7.244  1.00  5.89           C  
+ATOM     67  NE  ARG A  10      12.143   5.571   8.035  1.00  6.20           N  
+ATOM     68  CZ  ARG A  10      12.758   6.609   7.443  1.00  7.52           C  
+ATOM     69  NH1 ARG A  10      12.539   6.932   6.158  1.00 10.68           N  
+ATOM     70  NH2 ARG A  10      13.601   7.322   8.202  1.00  9.48           N  
+ATOM     71  N   SER A  11       7.186   2.582   8.445  1.00  5.19           N  
+ATOM     72  CA  SER A  11       6.500   1.584   7.565  1.00  4.60           C  
+ATOM     73  C   SER A  11       5.382   2.313   6.773  1.00  4.84           C  
+ATOM     74  O   SER A  11       5.213   2.016   5.557  1.00  5.84           O  
+ATOM     75  CB  SER A  11       5.908   0.462   8.400  1.00  5.91           C  
+ATOM     76  OG  SER A  11       6.990  -0.272   9.012  1.00  8.38           O  
+ATOM     77  N   ASN A  12       4.648   3.182   7.446  1.00  3.54           N  
+ATOM     78  CA  ASN A  12       3.545   3.935   6.751  1.00  4.57           C  
+ATOM     79  C   ASN A  12       4.107   4.851   5.691  1.00  4.14           C  
+ATOM     80  O   ASN A  12       3.536   5.001   4.617  1.00  5.52           O  
+ATOM     81  CB  ASN A  12       2.663   4.677   7.748  1.00  6.42           C  
+ATOM     82  CG  ASN A  12       1.802   3.735   8.610  1.00  8.25           C  
+ATOM     83  OD1 ASN A  12       1.567   2.613   8.165  1.00 12.72           O  
+ATOM     84  ND2 ASN A  12       1.394   4.252   9.767  1.00  9.92           N  
+ATOM     85  N   PHE A  13       5.259   5.498   6.005  1.00  3.43           N  
+ATOM     86  CA  PHE A  13       5.929   6.358   5.055  1.00  3.49           C  
+ATOM     87  C   PHE A  13       6.304   5.578   3.799  1.00  3.40           C  
+ATOM     88  O   PHE A  13       6.136   6.072   2.653  1.00  4.07           O  
+ATOM     89  CB  PHE A  13       7.183   6.994   5.754  1.00  5.48           C  
+ATOM     90  CG  PHE A  13       7.884   8.006   4.883  1.00  5.57           C  
+ATOM     91  CD1 PHE A  13       8.906   7.586   4.027  1.00  6.99           C  
+ATOM     92  CD2 PHE A  13       7.532   9.373   4.983  1.00  6.52           C  
+ATOM     93  CE1 PHE A  13       9.560   8.539   3.194  1.00  8.20           C  
+ATOM     94  CE2 PHE A  13       8.176  10.281   4.145  1.00  6.34           C  
+ATOM     95  CZ  PHE A  13       9.141   9.845   3.292  1.00  6.84           C  
+ATOM     96  N   ASN A  14       6.900   4.390   3.989  1.00  3.64           N  
+ATOM     97  CA  ASN A  14       7.331   3.607   2.791  1.00  4.31           C  
+ATOM     98  C   ASN A  14       6.116   3.210   1.915  1.00  3.98           C  
+ATOM     99  O   ASN A  14       6.240   3.144   0.684  1.00  6.22           O  
+ATOM    100  CB  ASN A  14       8.145   2.404   3.240  1.00  5.81           C  
+ATOM    101  CG  ASN A  14       9.555   2.856   3.730  1.00  6.82           C  
+ATOM    102  OD1 ASN A  14      10.013   3.895   3.323  1.00  9.43           O  
+ATOM    103  ND2 ASN A  14      10.120   1.956   4.539  1.00  8.21           N  
+ATOM    104  N   VAL A  15       4.993   2.927   2.571  1.00  3.76           N  
+ATOM    105  CA  VAL A  15       3.782   2.599   1.742  1.00  3.98           C  
+ATOM    106  C   VAL A  15       3.296   3.871   1.004  1.00  3.80           C  
+ATOM    107  O   VAL A  15       2.947   3.817  -0.189  1.00  4.85           O  
+ATOM    108  CB  VAL A  15       2.698   1.953   2.608  1.00  4.71           C  
+ATOM    109  CG1 VAL A  15       1.384   1.826   1.806  1.00  6.67           C  
+ATOM    110  CG2 VAL A  15       3.174   0.533   3.005  1.00  6.26           C  
+ATOM    111  N   CYS A  16       3.321   4.987   1.720  1.00  3.79           N  
+ATOM    112  CA  CYS A  16       2.890   6.285   1.126  1.00  3.54           C  
+ATOM    113  C   CYS A  16       3.687   6.597  -0.111  1.00  3.48           C  
+ATOM    114  O   CYS A  16       3.200   7.147  -1.103  1.00  4.63           O  
+ATOM    115  CB  CYS A  16       3.039   7.369   2.240  1.00  4.58           C  
+ATOM    116  SG  CYS A  16       2.559   9.014   1.649  1.00  5.66           S  
+ATOM    117  N   ARG A  17       4.997   6.227  -0.100  1.00  3.99           N  
+ATOM    118  CA  ARG A  17       5.895   6.489  -1.213  1.00  3.83           C  
+ATOM    119  C   ARG A  17       5.738   5.560  -2.409  1.00  3.79           C  
+ATOM    120  O   ARG A  17       6.228   5.901  -3.507  1.00  5.39           O  
+ATOM    121  CB  ARG A  17       7.370   6.507  -0.731  1.00  4.11           C  
+ATOM    122  CG  ARG A  17       7.717   7.687   0.206  1.00  4.69           C  
+ATOM    123  CD  ARG A  17       7.949   8.947  -0.615  1.00  5.10           C  
+ATOM    124  NE  ARG A  17       9.212   8.856  -1.337  1.00  4.71           N  
+ATOM    125  CZ  ARG A  17       9.537   9.533  -2.431  1.00  5.28           C  
+ATOM    126  NH1 ARG A  17       8.659  10.350  -3.032  1.00  6.67           N  
+ATOM    127  NH2 ARG A  17      10.793   9.491  -2.899  1.00  6.41           N  
+ATOM    128  N   LEU A  18       5.051   4.411  -2.204  1.00  4.70           N  
+ATOM    129  CA  LEU A  18       4.933   3.431  -3.326  1.00  5.46           C  
+ATOM    130  C   LEU A  18       4.397   4.014  -4.620  1.00  5.13           C  
+ATOM    131  O   LEU A  18       4.988   3.755  -5.687  1.00  5.55           O  
+ATOM    132  CB  LEU A  18       4.196   2.184  -2.863  1.00  6.47           C  
+ATOM    133  CG  LEU A  18       4.960   1.178  -1.991  1.00  7.43           C  
+ATOM    134  CD1 LEU A  18       3.907   0.097  -1.634  1.00  8.70           C  
+ATOM    135  CD2 LEU A  18       6.129   0.606  -2.768  1.00  9.39           C  
+ATOM    136  N   PRO A  19       3.329   4.795  -4.543  1.00  4.28           N  
+ATOM    137  CA  PRO A  19       2.792   5.376  -5.797  1.00  5.38           C  
+ATOM    138  C   PRO A  19       3.573   6.540  -6.322  1.00  6.30           C  
+ATOM    139  O   PRO A  19       3.260   7.045  -7.422  1.00  9.62           O  
+ATOM    140  CB  PRO A  19       1.358   5.766  -5.472  1.00  5.87           C  
+ATOM    141  CG  PRO A  19       1.223   5.694  -3.993  1.00  6.47           C  
+ATOM    142  CD  PRO A  19       2.421   4.941  -3.408  1.00  6.45           C  
+ATOM    143  N   GLY A  20       4.565   7.047  -5.559  1.00  4.94           N  
+ATOM    144  CA  GLY A  20       5.366   8.191  -6.018  1.00  5.39           C  
+ATOM    145  C   GLY A  20       5.007   9.481  -5.280  1.00  5.03           C  
+ATOM    146  O   GLY A  20       5.535  10.510  -5.730  1.00  7.34           O  
+ATOM    147  N   THR A  21       4.181   9.438  -4.262  1.00  4.10           N  
+ATOM    148  CA  THR A  21       3.767  10.609  -3.513  1.00  3.94           C  
+ATOM    149  C   THR A  21       5.017  11.397  -3.042  1.00  3.96           C  
+ATOM    150  O   THR A  21       5.947  10.757  -2.523  1.00  5.82           O  
+ATOM    151  CB  THR A  21       2.992  10.188  -2.225  1.00  4.13           C  
+ATOM    152  OG1 THR A  21       2.051   9.144  -2.623  1.00  5.45           O  
+ATOM    153  CG2 THR A  21       2.260  11.349  -1.551  1.00  5.41           C  
+ATOM    154  N   PRO A  22       4.971  12.703  -3.176  1.00  5.04           N  
+ATOM    155  CA  PRO A  22       6.143  13.513  -2.696  1.00  4.69           C  
+ATOM    156  C   PRO A  22       6.400  13.233  -1.225  1.00  4.19           C  
+ATOM    157  O   PRO A  22       5.485  13.061  -0.382  1.00  4.47           O  
+ATOM    158  CB  PRO A  22       5.703  14.969  -2.920  1.00  7.12           C  
+ATOM    159  CG  PRO A  22       4.676  14.893  -3.996  1.00  7.03           C  
+ATOM    160  CD  PRO A  22       3.964  13.567  -3.811  1.00  4.90           C  
+ATOM    161  N   GLU A  23       7.728  13.297  -0.921  1.00  5.16           N  
+ATOM    162  CA  GLU A  23       8.114  13.103   0.500  1.00  5.31           C  
+ATOM    163  C   GLU A  23       7.427  14.073   1.410  1.00  4.11           C  
+ATOM    164  O   GLU A  23       7.036  13.682   2.540  1.00  5.11           O  
+ATOM    165  CB  GLU A  23       9.648  13.285   0.660  1.00  6.16           C  
+ATOM    166  CG  GLU A  23      10.440  12.093   0.063  1.00  7.48           C  
+ATOM    167  CD  GLU A  23      11.941  12.170   0.391  1.00  9.40           C  
+ATOM    168  OE1 GLU A  23      12.416  13.225   0.681  1.00 10.40           O  
+ATOM    169  OE2 GLU A  23      12.539  11.070   0.292  1.00 13.32           O  
+ATOM    170  N   ALA A  24       7.212  15.334   0.966  1.00  4.56           N  
+ATOM    171  CA  ALA A  24       6.614  16.317   1.913  1.00  4.49           C  
+ATOM    172  C   ALA A  24       5.212  15.936   2.350  1.00  4.10           C  
+ATOM    173  O   ALA A  24       4.782  16.166   3.495  1.00  5.64           O  
+ATOM    174  CB  ALA A  24       6.605  17.695   1.246  1.00  5.80           C  
+ATOM    175  N   ILE A  25       4.445  15.318   1.405  1.00  4.37           N  
+ATOM    176  CA  ILE A  25       3.074  14.894   1.756  1.00  5.44           C  
+ATOM    177  C   ILE A  25       3.085  13.643   2.645  1.00  4.32           C  
+ATOM    178  O   ILE A  25       2.315  13.523   3.578  1.00  4.72           O  
+ATOM    179  CB  ILE A  25       2.204  14.637   0.462  1.00  6.42           C  
+ATOM    180  CG1 ILE A  25       1.815  16.048  -0.129  1.00  7.50           C  
+ATOM    181  CG2 ILE A  25       0.903  13.864   0.811  1.00  7.65           C  
+ATOM    182  CD1 ILE A  25       0.756  16.761   0.757  1.00  7.80           C  
+ATOM    183  N   CYS A  26       4.032  12.764   2.313  1.00  3.92           N  
+ATOM    184  CA  CYS A  26       4.180  11.549   3.187  1.00  4.37           C  
+ATOM    185  C   CYS A  26       4.632  11.944   4.596  1.00  3.95           C  
+ATOM    186  O   CYS A  26       4.227  11.252   5.547  1.00  4.74           O  
+ATOM    187  CB  CYS A  26       5.038  10.518   2.539  1.00  4.63           C  
+ATOM    188  SG  CYS A  26       4.349   9.794   1.022  1.00  5.61           S  
+ATOM    189  N   ALA A  27       5.408  13.012   4.694  1.00  3.89           N  
+ATOM    190  CA  ALA A  27       5.879  13.502   6.026  1.00  4.43           C  
+ATOM    191  C   ALA A  27       4.696  13.908   6.882  1.00  4.26           C  
+ATOM    192  O   ALA A  27       4.528  13.422   8.025  1.00  5.44           O  
+ATOM    193  CB  ALA A  27       6.880  14.615   5.830  1.00  5.36           C  
+ATOM    194  N   THR A  28       3.827  14.802   6.358  1.00  4.53           N  
+ATOM    195  CA  THR A  28       2.691  15.221   7.194  1.00  5.08           C  
+ATOM    196  C   THR A  28       1.672  14.132   7.434  1.00  4.62           C  
+ATOM    197  O   THR A  28       0.947  14.112   8.468  1.00  7.80           O  
+ATOM    198  CB  THR A  28       1.986  16.520   6.614  1.00  6.03           C  
+ATOM    199  OG1 THR A  28       1.664  16.221   5.230  1.00  7.19           O  
+ATOM    200  CG2 THR A  28       2.914  17.739   6.700  1.00  7.34           C  
+ATOM    201  N   TYR A  29       1.621  13.190   6.511  1.00  5.01           N  
+ATOM    202  CA  TYR A  29       0.715  12.045   6.657  1.00  6.60           C  
+ATOM    203  C   TYR A  29       1.125  11.125   7.815  1.00  4.92           C  
+ATOM    204  O   TYR A  29       0.286  10.632   8.545  1.00  7.13           O  
+ATOM    205  CB  TYR A  29       0.755  11.229   5.322  1.00  9.66           C  
+ATOM    206  CG  TYR A  29      -0.203  10.044   5.354  1.00 11.56           C  
+ATOM    207  CD1 TYR A  29      -1.547  10.337   5.645  1.00 12.85           C  
+ATOM    208  CD2 TYR A  29       0.193   8.750   5.100  1.00 14.44           C  
+ATOM    209  CE1 TYR A  29      -2.496   9.329   5.673  1.00 16.61           C  
+ATOM    210  CE2 TYR A  29      -0.801   7.705   5.156  1.00 17.11           C  
+ATOM    211  CZ  TYR A  29      -2.079   8.031   5.430  1.00 19.99           C  
+ATOM    212  OH  TYR A  29      -3.097   7.057   5.458  1.00 28.98           O  
+ATOM    213  N   THR A  30       2.470  10.984   7.995  1.00  5.31           N  
+ATOM    214  CA  THR A  30       2.986   9.994   8.950  1.00  5.70           C  
+ATOM    215  C   THR A  30       3.609  10.505  10.230  1.00  6.28           C  
+ATOM    216  O   THR A  30       3.766   9.715  11.186  1.00  8.77           O  
+ATOM    217  CB  THR A  30       4.076   9.103   8.225  1.00  6.55           C  
+ATOM    218  OG1 THR A  30       5.125  10.027   7.824  1.00  6.57           O  
+ATOM    219  CG2 THR A  30       3.493   8.324   7.035  1.00  7.29           C  
+ATOM    220  N   GLY A  31       3.984  11.764  10.241  1.00  4.99           N  
+ATOM    221  CA  GLY A  31       4.769  12.336  11.360  1.00  5.50           C  
+ATOM    222  C   GLY A  31       6.255  12.243  11.106  1.00  4.19           C  
+ATOM    223  O   GLY A  31       7.037  12.750  11.954  1.00  6.12           O  
+ATOM    224  N   CYS A  32       6.710  11.631   9.992  1.00  4.30           N  
+ATOM    225  CA  CYS A  32       8.140  11.694   9.635  1.00  4.89           C  
+ATOM    226  C   CYS A  32       8.500  13.141   9.206  1.00  5.50           C  
+ATOM    227  O   CYS A  32       7.581  13.949   8.944  1.00  5.82           O  
+ATOM    228  CB  CYS A  32       8.504  10.686   8.530  1.00  4.66           C  
+ATOM    229  SG  CYS A  32       8.048   8.987   8.881  1.00  5.33           S  
+ATOM    230  N   ILE A  33       9.793  13.410   9.173  1.00  6.02           N  
+ATOM    231  CA  ILE A  33      10.280  14.760   8.823  1.00  5.24           C  
+ATOM    232  C   ILE A  33      11.346  14.658   7.743  1.00  5.16           C  
+ATOM    233  O   ILE A  33      11.971  13.583   7.552  1.00  7.19           O  
+ATOM    234  CB  ILE A  33      10.790  15.535  10.085  1.00  5.49           C  
+ATOM    235  CG1 ILE A  33      12.059  14.803  10.671  1.00  6.85           C  
+ATOM    236  CG2 ILE A  33       9.684  15.686  11.138  1.00  6.45           C  
+ATOM    237  CD1 ILE A  33      12.733  15.676  11.781  1.00  8.94           C  
+ATOM    238  N   ILE A  34      11.490  15.773   7.038  1.00  5.52           N  
+ATOM    239  CA  ILE A  34      12.552  15.877   6.036  1.00  6.82           C  
+ATOM    240  C   ILE A  34      13.590  16.917   6.560  1.00  6.92           C  
+ATOM    241  O   ILE A  34      13.168  18.006   6.945  1.00  9.22           O  
+ATOM    242  CB  ILE A  34      11.987  16.360   4.681  1.00  8.11           C  
+ATOM    243  CG1 ILE A  34      10.914  15.338   4.163  1.00  9.59           C  
+ATOM    244  CG2 ILE A  34      13.131  16.517   3.629  1.00  9.73           C  
+ATOM    245  CD1 ILE A  34      10.151  16.024   2.938  1.00 13.41           C  
+ATOM    246  N   ILE A  35      14.856  16.493   6.536  1.00  7.06           N  
+ATOM    247  CA  ILE A  35      15.930  17.454   6.941  1.00  7.52           C  
+ATOM    248  C   ILE A  35      16.913  17.550   5.819  1.00  6.63           C  
+ATOM    249  O   ILE A  35      17.097  16.660   4.970  1.00  7.90           O  
+ATOM    250  CB  ILE A  35      16.622  16.995   8.285  1.00  8.07           C  
+ATOM    251  CG1 ILE A  35      17.360  15.651   8.067  1.00  9.41           C  
+ATOM    252  CG2 ILE A  35      15.592  16.974   9.434  1.00  9.46           C  
+ATOM    253  CD1 ILE A  35      18.298  15.206   9.219  1.00  9.85           C  
+ATOM    254  N   PRO A  36      17.664  18.669   5.806  1.00  8.07           N  
+ATOM    255  CA  PRO A  36      18.635  18.861   4.738  1.00  8.78           C  
+ATOM    256  C   PRO A  36      19.925  18.042   4.949  1.00  8.31           C  
+ATOM    257  O   PRO A  36      20.593  17.742   3.945  1.00  9.09           O  
+ATOM    258  CB  PRO A  36      18.945  20.364   4.783  1.00  9.67           C  
+ATOM    259  CG  PRO A  36      18.238  20.937   5.908  1.00 10.15           C  
+ATOM    260  CD  PRO A  36      17.371  19.900   6.596  1.00  9.53           C  
+ATOM    261  N   GLY A  37      20.172  17.730   6.217  1.00  8.48           N  
+ATOM    262  CA  GLY A  37      21.452  16.969   6.513  1.00  9.20           C  
+ATOM    263  C   GLY A  37      21.143  15.478   6.427  1.00 10.41           C  
+ATOM    264  O   GLY A  37      20.138  15.023   5.878  1.00 12.06           O  
+ATOM    265  N   ALA A  38      22.055  14.701   7.032  1.00  9.24           N  
+ATOM    266  CA  ALA A  38      22.019  13.242   7.020  1.00  9.24           C  
+ATOM    267  C   ALA A  38      21.944  12.628   8.396  1.00  9.60           C  
+ATOM    268  O   ALA A  38      21.869  11.387   8.435  1.00 13.65           O  
+ATOM    269  CB  ALA A  38      23.246  12.697   6.275  1.00 10.43           C  
+ATOM    270  N   THR A  39      21.894  13.435   9.436  1.00  8.70           N  
+ATOM    271  CA  THR A  39      21.936  12.911  10.809  1.00  9.46           C  
+ATOM    272  C   THR A  39      20.615  13.191  11.521  1.00  8.32           C  
+ATOM    273  O   THR A  39      20.357  14.317  11.948  1.00  9.89           O  
+ATOM    274  CB  THR A  39      23.131  13.601  11.593  1.00 10.72           C  
+ATOM    275  OG1 THR A  39      24.284  13.401  10.709  1.00 11.66           O  
+ATOM    276  CG2 THR A  39      23.340  12.935  12.962  1.00 11.81           C  
+ATOM    277  N   CYS A  40      19.827  12.110  11.642  1.00  7.64           N  
+ATOM    278  CA  CYS A  40      18.504  12.312  12.298  1.00  8.05           C  
+ATOM    279  C   CYS A  40      18.684  12.451  13.784  1.00  7.63           C  
+ATOM    280  O   CYS A  40      19.533  11.718  14.362  1.00  9.64           O  
+ATOM    281  CB  CYS A  40      17.582  11.117  11.996  1.00  7.80           C  
+ATOM    282  SG  CYS A  40      17.199  10.929  10.237  1.00  7.30           S  
+ATOM    283  N   PRO A  41      17.880  13.266  14.426  1.00  8.00           N  
+ATOM    284  CA  PRO A  41      17.924  13.421  15.877  1.00  8.96           C  
+ATOM    285  C   PRO A  41      17.392  12.206  16.594  1.00  9.06           C  
+ATOM    286  O   PRO A  41      16.652  11.368  16.033  1.00  8.82           O  
+ATOM    287  CB  PRO A  41      17.076  14.658  16.145  1.00 10.39           C  
+ATOM    288  CG  PRO A  41      16.098  14.689  14.997  1.00 10.99           C  
+ATOM    289  CD  PRO A  41      16.859  14.150  13.779  1.00 10.49           C  
+ATOM    290  N   GLY A  42      17.728  12.124  17.884  1.00  7.55           N  
+ATOM    291  CA  GLY A  42      17.334  10.956  18.691  1.00  8.00           C  
+ATOM    292  C   GLY A  42      15.875  10.688  18.871  1.00  7.22           C  
+ATOM    293  O   GLY A  42      15.434   9.550  19.166  1.00  8.41           O  
+ATOM    294  N   ASP A  43      15.036  11.747  18.715  1.00  5.54           N  
+ATOM    295  CA  ASP A  43      13.564  11.573  18.836  1.00  5.85           C  
+ATOM    296  C   ASP A  43      12.936  11.227  17.470  1.00  5.87           C  
+ATOM    297  O   ASP A  43      11.720  11.040  17.428  1.00  7.29           O  
+ATOM    298  CB  ASP A  43      12.933  12.737  19.580  1.00  6.72           C  
+ATOM    299  CG  ASP A  43      13.140  14.094  18.958  1.00  8.59           C  
+ATOM    300  OD1 ASP A  43      14.109  14.303  18.212  1.00  9.59           O  
+ATOM    301  OD2 ASP A  43      12.267  14.963  19.265  1.00 11.45           O  
+ATOM    302  N   TYR A  44      13.725  11.174  16.425  1.00  5.22           N  
+ATOM    303  CA  TYR A  44      13.257  10.745  15.081  1.00  5.56           C  
+ATOM    304  C   TYR A  44      14.275   9.687  14.612  1.00  4.61           C  
+ATOM    305  O   TYR A  44      14.930   9.862  13.568  1.00  6.04           O  
+ATOM    306  CB  TYR A  44      13.200  11.914  14.071  1.00  5.41           C  
+ATOM    307  CG  TYR A  44      12.000  12.819  14.399  1.00  5.34           C  
+ATOM    308  CD1 TYR A  44      12.119  13.853  15.332  1.00  6.59           C  
+ATOM    309  CD2 TYR A  44      10.775  12.617  13.762  1.00  5.94           C  
+ATOM    310  CE1 TYR A  44      11.045  14.675  15.610  1.00  5.97           C  
+ATOM    311  CE2 TYR A  44       9.676  13.433  14.048  1.00  5.17           C  
+ATOM    312  CZ  TYR A  44       9.802  14.456  14.996  1.00  5.96           C  
+ATOM    313  OH  TYR A  44       8.740  15.265  15.269  1.00  8.60           O  
+ATOM    314  N   ALA A  45      14.342   8.640  15.422  1.00  4.76           N  
+ATOM    315  CA  ALA A  45      15.445   7.667  15.246  1.00  5.89           C  
+ATOM    316  C   ALA A  45      15.171   6.533  14.280  1.00  6.67           C  
+ATOM    317  O   ALA A  45      16.093   5.705  14.039  1.00  7.56           O  
+ATOM    318  CB  ALA A  45      15.680   7.099  16.682  1.00  6.82           C  
+ATOM    319  N   ASN A  46      13.966   6.502  13.739  1.00  5.80           N  
+ATOM    320  CA  ASN A  46      13.512   5.395  12.878  1.00  6.15           C  
+ATOM    321  C   ASN A  46      13.311   5.853  11.455  1.00  6.61           C  
+ATOM    322  O   ASN A  46      13.733   6.929  11.026  1.00  7.18           O  
+ATOM    323  CB  ASN A  46      12.266   4.769  13.501  1.00  7.27           C  
+ATOM    324  CG  ASN A  46      12.538   4.304  14.922  1.00  7.98           C  
+ATOM    325  OD1 ASN A  46      11.982   4.849  15.886  1.00 11.00           O  
+ATOM    326  ND2 ASN A  46      13.407   3.298  15.015  1.00 10.32           N  
+ATOM    327  OXT ASN A  46      12.703   4.973  10.746  1.00  7.86           O  
+TER     328      ASN A  46                                                      
+END   
diff --git a/examples/code_fragments/mm/ethanol.pdb b/examples/code_fragments/mm/ethanol.pdb
new file mode 100644
index 0000000000000000000000000000000000000000..4d16716e8bd096575463cc1c3bb0a13d435873d2
--- /dev/null
+++ b/examples/code_fragments/mm/ethanol.pdb
@@ -0,0 +1,10 @@
+ATOM      1  C1  ETH A   1      -0.246   0.000   1.285  1.00  0.00           C  
+ATOM      2  C2  ETH A   1       0.566   0.000  -0.011  1.00  0.00           C  
+ATOM      3  O   ETH A   1      -0.322   0.000  -1.130  1.00  0.00           O  
+ATOM      4  H11 ETH A   1       0.376   0.000   2.068  1.00  0.00           H  
+ATOM      5  H12 ETH A   1      -0.847   0.866   1.302  1.00  0.00           H  
+ATOM      6  H13 ETH A   1      -0.847  -0.866   1.302  1.00  0.00           H  
+ATOM      7  H21 ETH A   1       1.142   0.816  -0.043  1.00  0.00           H  
+ATOM      8  H22 ETH A   1       1.142  -0.816  -0.043  1.00  0.00           H  
+ATOM      9  OH  ETH A   1       0.209   0.000  -1.977  1.00  0.00           H  
+END   
diff --git a/examples/code_fragments/mm/ethanol_example.py b/examples/code_fragments/mm/ethanol_example.py
new file mode 100644
index 0000000000000000000000000000000000000000..846b2b901ace02eb8af7c44806eee9bffbe268c1
--- /dev/null
+++ b/examples/code_fragments/mm/ethanol_example.py
@@ -0,0 +1,207 @@
+from ost.mol.mm import *
+from PyQt4 import QtCore
+
+"""
+MM - Demo
+
+!!!Requires OpenStructure to be compiled with MM-Support!!!
+
+This demo should show the procedure of building a custom forcefield.
+The script can directly be started from within DNG.
+"""
+
+class Anim(QtCore.QTimer):
+    def __init__(self,sim,go):
+        QtCore.QTimer.__init__(self)
+        self.ent=sim.GetEntity()
+        self.sim=sim
+        self.go = go
+        self.ed = ent.EditXCS()
+        QtCore.QObject.connect(self, QtCore.SIGNAL("timeout()"), self.OnTimer)
+
+        
+    def OnTimer(self):
+        self.sim.Steps(1)
+        positions = sim.GetPositions()
+        for a, pos in zip(self.ent.atoms,positions):
+          self.ed.SetAtomPos(a,pos)
+        self.go.UpdatePositions()
+
+
+#Let's create an ethanol without its hydrogens
+ent = ost.mol.CreateEntity()
+ed = ent.EditXCS()
+chain = ed.InsertChain('A')
+res = ed.AppendResidue(chain,"ETH")
+c1 = ed.InsertAtom(res,"C1",geom.Vec3(-0.246,0.0,1.285),"C")
+c2 = ed.InsertAtom(res,"C2",geom.Vec3(0.566,0.0,-0.011),"C")
+o = ed.InsertAtom(res,"O",geom.Vec3(-0.322,0.0,-1.130),"O")
+ed.Connect(c1,c2)
+ed.Connect(c2,o)
+
+
+ff = Forcefield()
+
+#generate hydrogen constructor and add it to the forcefield
+h_constructor = GromacsHydrogenConstructor()
+h_constructor.AddHydrogenRule(3,4,["H11","H12","H13"],["C1","C2","O"])
+h_constructor.AddHydrogenRule(2,6,["H21","H22"],["C2","O","C1"])
+h_constructor.AddHydrogenRule(1,2,["OH"],["O","C2","C1"])
+ff.AddHydrogenConstructor("ETH",h_constructor)
+
+#generate buildingblock and add it to the forcefield
+building_block = BuildingBlock()
+building_block.AddAtom("C1","C",-0.18)
+building_block.AddAtom("C2","C",0.145)
+building_block.AddAtom("O","O",-0.683)
+building_block.AddAtom("H11","H",0.06)
+building_block.AddAtom("H12","H",0.06)
+building_block.AddAtom("H13","H",0.06)
+building_block.AddAtom("H21","H",0.06)
+building_block.AddAtom("H22","H",0.06)
+building_block.AddAtom("OH","OH",0.418)
+
+bonds = list()
+for i in range(8):
+  bonds.append(Interaction(FuncType.HarmonicBond))
+
+bonds[0].SetNames(["H11","C1"])
+bonds[1].SetNames(["H12","C1"])
+bonds[2].SetNames(["H13","C1"])
+bonds[3].SetNames(["C1","C2"])
+bonds[4].SetNames(["C2","H21"])
+bonds[5].SetNames(["C2","H22"])
+bonds[6].SetNames(["O","C2"])
+bonds[7].SetNames(["O","OH"])
+
+for b in bonds:
+  building_block.AddBond(b)
+
+ff.AddBuildingBlock("ETH",building_block)
+
+#add masses to the forcefield
+ff.AddMass("C",12.011)
+ff.AddMass("O",15.999)
+ff.AddMass("H",1.008)
+ff.AddMass("OH",1.008)
+
+#generate bonds and add them to the forcefield
+h_c_bond = Interaction(FuncType.HarmonicBond)
+c_c_bond = Interaction(FuncType.HarmonicBond)
+c_o_bond = Interaction(FuncType.HarmonicBond)
+o_h_bond = Interaction(FuncType.HarmonicBond)
+
+h_c_bond.SetTypes(["H","C"])
+c_c_bond.SetTypes(["C","C"])
+c_o_bond.SetTypes(["C","O"])
+o_h_bond.SetTypes(["O","OH"])
+
+h_c_bond.SetParam([0.1111,269449.6])
+c_c_bond.SetParam([0.153,186188.0])
+c_o_bond.SetParam([0.142,358150.4])
+o_h_bond.SetParam([0.096,456056.0])
+
+ff.AddBond(h_c_bond)
+ff.AddBond(c_c_bond)
+ff.AddBond(c_o_bond)
+ff.AddBond(o_h_bond)
+
+#generate angles and add them to the forcefield
+h_c_h_angle = Interaction(FuncType.UreyBradleyAngle)
+h_c_c_angle = Interaction(FuncType.UreyBradleyAngle)
+h_c_o_angle = Interaction(FuncType.UreyBradleyAngle)
+c_c_o_angle = Interaction(FuncType.UreyBradleyAngle)
+c_o_h_angle = Interaction(FuncType.UreyBradleyAngle)
+
+h_c_h_angle.SetTypes(["H","C","H"])
+h_c_c_angle.SetTypes(["H","C","C"])
+h_c_o_angle.SetTypes(["H","C","O"])
+c_c_o_angle.SetTypes(["C","C","O"])
+c_o_h_angle.SetTypes(["C","O","OH"])
+
+h_c_h_angle.SetParam([1.892,297.064,0.1802,4518.72])
+h_c_c_angle.SetParam([1.922,289.5328,0.2179,18853.104])
+h_c_o_angle.SetParam([1.900,384.0912,0.0,0.0])
+c_c_o_angle.SetParam([1.920,633.4576,0.0,0.0])
+c_o_h_angle.SetParam([1.850,481.16,0.0,0.0])
+
+ff.AddAngle(h_c_h_angle)
+ff.AddAngle(h_c_c_angle)
+ff.AddAngle(h_c_o_angle)
+ff.AddAngle(c_c_o_angle)
+ff.AddAngle(c_o_h_angle)
+
+#generate dihedrals and add them to the forcefield
+x_c_c_x_dihedral = Interaction(FuncType.PeriodicDihedral)
+c_c_o_h_dihedral_one = Interaction(FuncType.PeriodicDihedral)
+c_c_o_h_dihedral_two = Interaction(FuncType.PeriodicDihedral)
+c_c_o_h_dihedral_three = Interaction(FuncType.PeriodicDihedral)
+x_c_o_x_dihedral = Interaction(FuncType.PeriodicDihedral)
+
+x_c_c_x_dihedral.SetTypes(["X","C","C","X"])
+c_c_o_h_dihedral_one.SetTypes(["C","C","O","OH"])
+c_c_o_h_dihedral_two.SetTypes(["C","C","O","OH"])
+c_c_o_h_dihedral_three.SetTypes(["C","C","O","OH"])
+x_c_o_x_dihedral.SetTypes(["X","C","O","X"])
+
+x_c_c_x_dihedral.SetParam([3,0.0,0.66944])
+c_c_o_h_dihedral_one.SetParam([1,0.0,5.4392])
+c_c_o_h_dihedral_two.SetParam([2,0.0,1.2552])
+c_c_o_h_dihedral_three.SetParam([3,0.0,1.75728])
+x_c_o_x_dihedral.SetParam([3,0.0,0.58576])
+
+ff.AddDihedral(x_c_c_x_dihedral)
+ff.AddDihedral(c_c_o_h_dihedral_one)
+ff.AddDihedral(c_c_o_h_dihedral_two)
+ff.AddDihedral(c_c_o_h_dihedral_three)
+ff.AddDihedral(x_c_o_x_dihedral)
+
+#add lj parameters
+c_lj = Interaction(FuncType.LJ)
+o_lj = Interaction(FuncType.LJ)
+h_lj = Interaction(FuncType.LJ)
+oh_lj = Interaction(FuncType.LJ)
+
+c_lj.SetTypes(["C"])
+o_lj.SetTypes(["O"])
+h_lj.SetTypes(["H"])
+oh_lj.SetTypes(["OH"])
+
+c_lj.SetParam([0.37,0.28])
+o_lj.SetParam([0.32,0.64])
+h_lj.SetParam([0.24,0.09])
+oh_lj.SetParam([0.04,0.2])
+
+ff.AddLJ(c_lj)
+ff.AddLJ(o_lj)
+ff.AddLJ(h_lj)
+ff.AddLJ(oh_lj)
+
+#we do not explicitely set the 1,4 interactions,
+#we rather decrease it by a certain factor
+ff.SetFudgeLJ(0.5)
+ff.SetFudgeQQ(0.5)
+
+#construct settings
+settings = Settings()
+settings.init_temperature =  310
+settings.forcefield = ff
+
+#construct integrator with tiny timesteps
+settings.integrator = VerletIntegrator(0.0001)
+
+
+#create the simulation
+sim = Simulation(ent,settings)
+
+io.SavePDB(sim.GetEntity(),'ethanol.pdb')
+
+
+go = gfx.Entity("ethanol",sim.GetEntity())
+go.SetRenderMode(gfx.CUSTOM)
+scene.Add(go)
+
+anim = Anim(sim,go)
+anim.start(2)
+
+
diff --git a/examples/code_fragments/mm/ethanol_example_using_topology.py b/examples/code_fragments/mm/ethanol_example_using_topology.py
new file mode 100644
index 0000000000000000000000000000000000000000..19a32ed0a53e6547722cf29aac347b07413eaa8f
--- /dev/null
+++ b/examples/code_fragments/mm/ethanol_example_using_topology.py
@@ -0,0 +1,166 @@
+from ost.mol.mm import  *
+from PyQt4 import QtCore
+from math import sqrt
+from math import sin
+
+"""
+MM - Demo
+
+!!!Requires OpenStructure to be compiled with MM-Support!!!
+
+This demo should show the procedure building a topology from scratch and
+setting up a simulation. As an additional piece of sugar, it demonstrates
+the capabilities of altering force parameters as the simulation runs.
+The script can directly be started from within DNG.
+"""
+
+class Anim(QtCore.QTimer):
+    def __init__(self,sim,go,cc_bond_index):
+        QtCore.QTimer.__init__(self)
+        self.ent=sim.GetEntity()
+        self.sim=sim
+        self.go = go
+        self.ed = ent.EditXCS()
+        self.bond_index = cc_bond_index
+        top = sim.GetTopology()
+        param = top.GetHarmonicBondParameters(cc_bond_index)
+        self.bond_length = param[2]
+        self.force_constant = param[3]
+        self.steps = 0
+        self.counter = 0
+        QtCore.QObject.connect(self, QtCore.SIGNAL("timeout()"), self.OnTimer)
+
+    def OnTimer(self):
+        if self.steps % 20 == 0:
+          sim.ResetHarmonicBond(self.bond_index,sin(self.counter*3.1416/100)*self.bond_length*0.75 + self.bond_length,self.force_constant)
+          self.counter += 1
+
+        self.sim.Steps(1)
+        positions = sim.GetPositions()
+        for a, pos in zip(self.ent.atoms,positions):
+          self.ed.SetAtomPos(a,pos)
+        self.go.UpdatePositions()
+        self.steps+=1
+
+
+#create topology by only defining masses
+
+prof = io.IOProfile(dialect='PDB', fault_tolerant=False,
+                 quack_mode=False, processor=conop.HeuristicProcessor())
+
+ent = io.LoadPDB('ethanol.pdb', profile=prof)
+masses = [12.011,12.011,15.999,1.008,1.008,1.008,1.008,1.008,1.008]
+top = Topology(masses)
+
+#all per atom parameters have to be set at once...
+charges = [-0.18,0.145,-0.683,0.06,0.06,0.06,0.06,0.06,0.418]
+sigmas = [0.37,0.37,0.32,0.24,0.24,0.24,0.24,0.24,0.04]
+epsilons = [0.28,0.28,0.64,0.09,0.09,0.09,0.09,0.09,0.2]
+
+top.SetCharges(charges)
+top.SetSigmas(sigmas)
+top.SetEpsilons(epsilons)
+
+#we can set the fudge parameters for 1,4 interactions also in the topology
+top.SetFudgeQQ(0.5)
+top.SetFudgeLJ(0.5)
+
+#add the bonds
+top.AddHarmonicBond(0,1,0.153,186188.0) #C-C
+top.AddHarmonicBond(0,3,0.1111,269449.6) #C-H
+top.AddHarmonicBond(0,4,0.1111,269449.6) #C-H
+top.AddHarmonicBond(0,5,0.1111,269449.6) #C-H
+top.AddHarmonicBond(1,6,0.1111,269449.6) #C-H
+top.AddHarmonicBond(1,7,0.1111,269449.6) #C-H
+top.AddHarmonicBond(1,2,0.142,358150.4) #C-O
+top.AddHarmonicBond(2,8,0.096,456056.0) #O-H
+
+#add the angles
+top.AddUreyBradleyAngle(3,0,4,1.892,297.064,0.1802,4518.72) #H-C-H
+top.AddUreyBradleyAngle(3,0,5,1.892,297.064,0.1802,4518.72) #H-C-H
+top.AddUreyBradleyAngle(4,0,5,1.892,297.064,0.1802,4518.72) #H-C-H
+top.AddUreyBradleyAngle(3,0,1,1.922,289.5328,0.2179,18853.104) #H-C-C
+top.AddUreyBradleyAngle(4,0,1,1.922,289.5328,0.2179,18853.104) #H-C-C
+top.AddUreyBradleyAngle(5,0,1,1.922,289.5328,0.2179,18853.104) #H-C-C
+top.AddUreyBradleyAngle(0,1,6,1.922,289.5328,0.2179,18853.104) #H-C-C
+top.AddUreyBradleyAngle(0,1,7,1.922,289.5328,0.2179,18853.104) #H-C-C
+top.AddUreyBradleyAngle(0,1,2,1.920,633.4576,0.0,0.0) #C-C-O
+top.AddUreyBradleyAngle(6,1,2,1.900,384.0912,0.0,0.0) #H-C-O
+top.AddUreyBradleyAngle(7,1,2,1.900,384.0912,0.0,0.0) #H-C-O
+top.AddUreyBradleyAngle(6,1,7,1.892,297.064,0.1802,4518.72) #H-C-H
+top.AddUreyBradleyAngle(1,2,8,1.850,481.16,0.0,0.0) #C-O-H
+
+
+#add the dihedrals
+top.AddPeriodicDihedral(3,0,1,6,3,0.0,0.66944) #H-C-C-H
+top.AddPeriodicDihedral(3,0,1,7,3,0.0,0.66944) #H-C-C-H
+top.AddPeriodicDihedral(3,0,1,2,3,0.0,0.66944) #H-C-C-O
+top.AddPeriodicDihedral(4,0,1,6,3,0.0,0.66944) #H-C-C-H
+top.AddPeriodicDihedral(4,0,1,7,3,0.0,0.66944) #H-C-C-H
+top.AddPeriodicDihedral(4,0,1,2,3,0.0,0.66944) #H-C-C-O
+top.AddPeriodicDihedral(5,0,1,6,3,0.0,0.66944) #H-C-C-H
+top.AddPeriodicDihedral(5,0,1,7,3,0.0,0.66944) #H-C-C-H
+top.AddPeriodicDihedral(5,0,1,2,3,0.0,0.66944) #H-C-C-O
+top.AddPeriodicDihedral(6,1,2,8,3,0.0,0.58576) #H-C-O-H
+top.AddPeriodicDihedral(7,1,2,8,3,0.0,0.58576) #H-C-O-H
+top.AddPeriodicDihedral(0,1,2,8,1,0.0,5.4392) #C-C-O-H
+top.AddPeriodicDihedral(0,1,2,8,2,0.0,1.2552) #C-C-O-H
+top.AddPeriodicDihedral(0,1,2,8,3,0.0,1.75728) #C-C-O-H
+
+#we have to manually set the exclusions for the nonbonded interaction...
+
+#1,2 interactions
+top.AddExclusion(3,0)
+top.AddExclusion(4,0)
+top.AddExclusion(5,0)
+top.AddExclusion(0,1)
+top.AddExclusion(1,6)
+top.AddExclusion(1,7)
+top.AddExclusion(1,2)
+top.AddExclusion(2,8)
+
+#1,3 interactions
+top.AddExclusion(3,4)
+top.AddExclusion(3,5)
+top.AddExclusion(4,5)
+top.AddExclusion(3,1)
+top.AddExclusion(4,1)
+top.AddExclusion(5,1)
+top.AddExclusion(0,6)
+top.AddExclusion(0,7)
+top.AddExclusion(0,2)
+top.AddExclusion(6,2)
+top.AddExclusion(7,2)
+top.AddExclusion(1,8)
+
+#add lj-pairs, note, that the fudge parameters still get applied during system setup
+top.AddLJPair(3,6,0.5*(sigmas[3]+sigmas[6]),sqrt(epsilons[3]*epsilons[6]))
+top.AddLJPair(3,7,0.5*(sigmas[3]+sigmas[7]),sqrt(epsilons[3]*epsilons[7]))
+top.AddLJPair(3,2,0.5*(sigmas[3]+sigmas[2]),sqrt(epsilons[3]*epsilons[2]))
+top.AddLJPair(4,6,0.5*(sigmas[4]+sigmas[6]),sqrt(epsilons[4]*epsilons[6]))
+top.AddLJPair(4,7,0.5*(sigmas[4]+sigmas[7]),sqrt(epsilons[4]*epsilons[7]))
+top.AddLJPair(4,2,0.5*(sigmas[4]+sigmas[2]),sqrt(epsilons[4]*epsilons[2]))
+top.AddLJPair(5,6,0.5*(sigmas[5]+sigmas[6]),sqrt(epsilons[5]*epsilons[6]))
+top.AddLJPair(5,7,0.5*(sigmas[5]+sigmas[7]),sqrt(epsilons[5]*epsilons[7]))
+top.AddLJPair(5,2,0.5*(sigmas[5]+sigmas[2]),sqrt(epsilons[5]*epsilons[2]))
+top.AddLJPair(6,8,0.5*(sigmas[6]+sigmas[8]),sqrt(epsilons[6]*epsilons[8]))
+top.AddLJPair(7,8,0.5*(sigmas[7]+sigmas[8]),sqrt(epsilons[7]*epsilons[8]))
+top.AddLJPair(0,8,0.5*(sigmas[0]+sigmas[8]),sqrt(epsilons[0]*epsilons[8])) 
+
+settings = Settings()
+settings.init_temperature =  310
+settings.integrator = VerletIntegrator(0.0001)
+
+#let's extract the cc_bond_index to have some fun with it
+cc_bond_index = top.GetHarmonicBondIndices(0,1)[0]
+
+#create the simulation
+sim = Simulation(top,ent,settings)
+go = gfx.Entity("ethanol",sim.GetEntity())
+go.SetRenderMode(gfx.CUSTOM)
+scene.Add(go)
+
+anim = Anim(sim,go,cc_bond_index)
+anim.start(2)
+
+
diff --git a/examples/code_fragments/mm/gb_example.py b/examples/code_fragments/mm/gb_example.py
new file mode 100644
index 0000000000000000000000000000000000000000..7939adb17600f9b2025ffdf341a44e5eae9ffb88
--- /dev/null
+++ b/examples/code_fragments/mm/gb_example.py
@@ -0,0 +1,52 @@
+from ost.mol import mm
+from PyQt4 import QtCore
+
+"""
+MM - Demo
+
+!!!Requires OpenStructure to be compiled with MM-Support!!!
+
+This demo should show the setup of a simple simulation using implicit solvent.
+The script can directly be started from within DNG.
+"""
+
+class Anim(QtCore.QTimer):
+    def __init__(self,sim,ent,go):
+        QtCore.QTimer.__init__(self)
+        self.ent=ent
+        self.sim=sim
+        self.go = go
+        self.ed = ent.EditXCS(ost.mol.BUFFERED_EDIT)
+        QtCore.QObject.connect(self, QtCore.SIGNAL("timeout()"), self.OnTimer)
+
+        
+    def OnTimer(self):
+        self.sim.Steps(5)
+        positions = sim.GetPositions()
+        for a, pos in zip(self.ent.atoms,positions):
+          self.ed.SetAtomPos(a,pos)
+        self.ed.UpdateICS()
+        self.go.UpdatePositions()
+
+
+prot=ost.mol.CreateEntityFromView(io.LoadPDB('1CRN.pdb').Select('peptide=true'),True)
+
+settings = mm.Settings()
+
+settings.integrator = mm.LangevinIntegrator(310,1,0.002)
+settings.add_gbsa = True
+settings.forcefield = mm.LoadCHARMMForcefield()
+settings.platform = mm.Platform.CPU
+settings.nonbonded_method = mm.NonbondedMethod.CutoffNonPeriodic
+
+sim = mm.Simulation(prot,settings)
+sim.ApplyLBFGS(tolerance = 1.0, max_iterations = 200)
+sim.UpdatePositions()
+
+ent = sim.GetEntity()
+go = gfx.Entity("crambin",ent)
+scene.Add(go)
+
+anim = Anim(sim,ent,go)
+anim.start(1)
+
diff --git a/examples/code_fragments/mm/gb_example_traj.dcd b/examples/code_fragments/mm/gb_example_traj.dcd
new file mode 100644
index 0000000000000000000000000000000000000000..4b993c6d40109031780323513b23185fecf31343
Binary files /dev/null and b/examples/code_fragments/mm/gb_example_traj.dcd differ
diff --git a/examples/code_fragments/mm/gb_example_traj.pdb b/examples/code_fragments/mm/gb_example_traj.pdb
new file mode 100644
index 0000000000000000000000000000000000000000..a1da60b3f73ab5a617747f15dc302a2d2ad2e5fb
--- /dev/null
+++ b/examples/code_fragments/mm/gb_example_traj.pdb
@@ -0,0 +1,643 @@
+ATOM      1  N   THR     1      17.047  14.099   3.625  1.00 13.79      A    N  
+ATOM      2  CA  THR     1      16.967  12.784   4.338  1.00 10.80      A    C  
+ATOM      3  C   THR     1      15.685  12.755   5.133  1.00  9.19      A    C  
+ATOM      4  O   THR     1      15.268  13.825   5.594  1.00  9.85      A    O  
+ATOM      5  CB  THR     1      18.170  12.703   5.337  1.00 13.02      A    C  
+ATOM      6  OG1 THR     1      19.334  12.829   4.463  1.00 15.06      A    O  
+ATOM      7  CG2 THR     1      18.150  11.546   6.304  1.00 14.23      A    C  
+ATOM      8  HA  THR     1      16.993  12.024   3.689  1.00  0.00      A    H  
+ATOM      9  HB  THR     1      18.153  13.430   6.024  1.00  0.00      A    H  
+ATOM     10  HG1 THR     1      20.169  12.789   5.012  1.00  0.00      A    H  
+ATOM     11 HG21 THR     1      18.958  11.589   6.892  1.00  0.00      A    H  
+ATOM     12 HG22 THR     1      17.275  11.615   6.888  1.00  0.00      A    H  
+ATOM     13 HG23 THR     1      18.155  10.649   5.751  1.00  0.00      A    H  
+ATOM     14  H1  THR     1      17.892  14.138   3.091  1.00  0.00      A    H  
+ATOM     15  H2  THR     1      16.213  14.183   2.986  1.00  0.00      A    H  
+ATOM     16  H3  THR     1      17.040  14.869   4.345  1.00  0.00      A    H  
+ATOM     17  N   THR     2      15.115  11.555   5.265  1.00  7.81      A    N  
+ATOM     18  CA  THR     2      13.856  11.469   6.066  1.00  8.31      A    C  
+ATOM     19  C   THR     2      14.164  10.785   7.379  1.00  5.80      A    C  
+ATOM     20  O   THR     2      14.993   9.862   7.443  1.00  6.94      A    O  
+ATOM     21  CB  THR     2      12.732  10.711   5.261  1.00 10.32      A    C  
+ATOM     22  OG1 THR     2      13.308   9.439   4.926  1.00 12.81      A    O  
+ATOM     23  CG2 THR     2      12.484  11.442   3.895  1.00 11.90      A    C  
+ATOM     24  HN  THR     2      15.516  10.742   4.843  1.00  0.00      A    H  
+ATOM     25  HA  THR     2      13.507  12.387   6.253  1.00  0.00      A    H  
+ATOM     26  HB  THR     2      11.884  10.657   5.788  1.00  0.00      A    H  
+ATOM     27  HG1 THR     2      12.645   8.898   4.409  1.00  0.00      A    H  
+ATOM     28 HG21 THR     2      11.771  10.961   3.384  1.00  0.00      A    H  
+ATOM     29 HG22 THR     2      12.179  12.430   4.097  1.00  0.00      A    H  
+ATOM     30 HG23 THR     2      13.384  11.439   3.347  1.00  0.00      A    H  
+ATOM     31  N   CYS2    3      13.488  11.241   8.417  1.00  5.24      A    N  
+ATOM     32  CA  CYS2    3      13.660  10.707   9.787  1.00  5.39      A    C  
+ATOM     33  C   CYS2    3      12.269  10.431  10.323  1.00  4.45      A    C  
+ATOM     34  O   CYS2    3      11.393  11.308  10.185  1.00  6.54      A    O  
+ATOM     35  CB  CYS2    3      14.368  11.748  10.691  1.00  5.99      A    C  
+ATOM     36  SG  CYS2    3      15.885  12.426  10.016  1.00  7.01      A    S  
+ATOM     37  HN  CYS2    3      12.830  11.980   8.271  1.00  0.00      A    H  
+ATOM     38  HA  CYS2    3      14.221   9.880   9.776  1.00  0.00      A    H  
+ATOM     39  HB1 CYS2    3      13.733  12.504  10.850  1.00  0.00      A    H  
+ATOM     40  HB2 CYS2    3      14.585  11.307  11.562  1.00  0.00      A    H  
+ATOM     41  N   CYS2    4      12.019   9.272  10.928  1.00  3.90      A    N  
+ATOM     42  CA  CYS2    4      10.646   8.991  11.408  1.00  4.24      A    C  
+ATOM     43  C   CYS2    4      10.654   8.793  12.919  1.00  3.72      A    C  
+ATOM     44  O   CYS2    4      11.659   8.296  13.491  1.00  5.30      A    O  
+ATOM     45  CB  CYS2    4      10.057   7.752  10.682  1.00  4.41      A    C  
+ATOM     46  SG  CYS2    4       9.837   8.018   8.904  1.00  4.72      A    S  
+ATOM     47  HN  CYS2    4      12.748   8.600  11.057  1.00  0.00      A    H  
+ATOM     48  HA  CYS2    4      10.060   9.774  11.196  1.00  0.00      A    H  
+ATOM     49  HB1 CYS2    4      10.677   6.979  10.815  1.00  0.00      A    H  
+ATOM     50  HB2 CYS2    4       9.167   7.538  11.085  1.00  0.00      A    H  
+ATOM     51  N   PRO     5       9.561   9.108  13.563  1.00  3.96      A    N  
+ATOM     52  CA  PRO     5       9.448   9.034  15.012  1.00  4.25      A    C  
+ATOM     53  C   PRO     5       9.288   7.670  15.606  1.00  4.96      A    C  
+ATOM     54  O   PRO     5       9.490   7.519  16.819  1.00  7.44      A    O  
+ATOM     55  CB  PRO     5       8.230   9.957  15.345  1.00  5.11      A    C  
+ATOM     56  CG  PRO     5       7.338   9.786  14.114  1.00  5.24      A    C  
+ATOM     57  CD  PRO     5       8.366   9.804  12.958  1.00  5.20      A    C  
+ATOM     58  HA  PRO     5      10.312   9.323  15.424  1.00  0.00      A    H  
+ATOM     59  HB1 PRO     5       7.762   9.653  16.175  1.00  0.00      A    H  
+ATOM     60  HB2 PRO     5       8.517  10.909  15.454  1.00  0.00      A    H  
+ATOM     61  HG1 PRO     5       6.842   8.918  14.144  1.00  0.00      A    H  
+ATOM     62  HG2 PRO     5       6.686  10.540  14.031  1.00  0.00      A    H  
+ATOM     63  HD1 PRO     5       8.023   9.304  12.163  1.00  0.00      A    H  
+ATOM     64  HD2 PRO     5       8.592  10.741  12.691  1.00  0.00      A    H  
+ATOM     65  N   SER     6       8.875   6.686  14.796  1.00  4.83      A    N  
+ATOM     66  CA  SER     6       8.673   5.314  15.279  1.00  4.45      A    C  
+ATOM     67  C   SER     6       8.753   4.376  14.083  1.00  4.99      A    C  
+ATOM     68  O   SER     6       8.726   4.858  12.923  1.00  4.61      A    O  
+ATOM     69  CB  SER     6       7.340   5.121  15.996  1.00  5.05      A    C  
+ATOM     70  OG  SER     6       6.274   5.220  15.031  1.00  6.39      A    O  
+ATOM     71  HN  SER     6       8.699   6.892  13.833  1.00  0.00      A    H  
+ATOM     72  HA  SER     6       9.386   5.114  15.951  1.00  0.00      A    H  
+ATOM     73  HB1 SER     6       7.319   4.220  16.429  1.00  0.00      A    H  
+ATOM     74  HB2 SER     6       7.228   5.829  16.694  1.00  0.00      A    H  
+ATOM     75  HG1 SER     6       5.395   5.095  15.491  1.00  0.00      A    H  
+ATOM     76  N   ILE     7       8.881   3.075  14.358  1.00  4.94      A    N  
+ATOM     77  CA  ILE     7       8.912   2.083  13.258  1.00  6.33      A    C  
+ATOM     78  C   ILE     7       7.581   2.090  12.506  1.00  5.32      A    C  
+ATOM     79  O   ILE     7       7.670   2.031  11.245  1.00  6.85      A    O  
+ATOM     80  CB  ILE     7       9.207   0.677  13.924  1.00  8.43      A    C  
+ATOM     81  CG1 ILE     7      10.714   0.702  14.312  1.00  9.78      A    C  
+ATOM     82  CG2 ILE     7       8.811  -0.477  12.969  1.00 11.70      A    C  
+ATOM     83  CD  ILE     7      11.185  -0.516  15.142  1.00  9.92      A    C  
+ATOM     84  HN  ILE     7       8.956   2.770  15.307  1.00  0.00      A    H  
+ATOM     85  HA  ILE     7       9.620   2.297  12.585  1.00  0.00      A    H  
+ATOM     86  HB  ILE     7       8.659   0.511  14.744  1.00  0.00      A    H  
+ATOM     87 HG11 ILE     7      11.253   0.733  13.470  1.00  0.00      A    H  
+ATOM     88 HG12 ILE     7      10.885   1.529  14.847  1.00  0.00      A    H  
+ATOM     89 HG21 ILE     7       9.005  -1.354  13.408  1.00  0.00      A    H  
+ATOM     90 HG22 ILE     7       7.781  -0.398  12.761  1.00  0.00      A    H  
+ATOM     91 HG23 ILE     7       9.375  -0.385  12.083  1.00  0.00      A    H  
+ATOM     92  HD1 ILE     7      12.159  -0.422  15.348  1.00  0.00      A    H  
+ATOM     93  HD2 ILE     7      10.629  -0.545  16.037  1.00  0.00      A    H  
+ATOM     94  HD3 ILE     7      11.019  -1.389  14.576  1.00  0.00      A    H  
+ATOM     95  N   VAL     8       6.458   2.162  13.159  1.00  5.02      A    N  
+ATOM     96  CA  VAL     8       5.145   2.209  12.453  1.00  6.93      A    C  
+ATOM     97  C   VAL     8       5.115   3.379  11.461  1.00  5.39      A    C  
+ATOM     98  O   VAL     8       4.664   3.268  10.343  1.00  6.30      A    O  
+ATOM     99  CB  VAL     8       3.995   2.354  13.478  1.00  9.64      A    C  
+ATOM    100  CG1 VAL     8       2.716   2.891  12.869  1.00 13.85      A    C  
+ATOM    101  CG2 VAL     8       3.758   1.032  14.208  1.00 11.97      A    C  
+ATOM    102  HN  VAL     8       6.476   2.186  14.159  1.00  0.00      A    H  
+ATOM    103  HA  VAL     8       5.023   1.355  11.947  1.00  0.00      A    H  
+ATOM    104  HB  VAL     8       4.286   3.040  14.145  1.00  0.00      A    H  
+ATOM    105 HG11 VAL     8       2.014   2.962  13.577  1.00  0.00      A    H  
+ATOM    106 HG12 VAL     8       2.915   3.843  12.462  1.00  0.00      A    H  
+ATOM    107 HG13 VAL     8       2.401   2.226  12.115  1.00  0.00      A    H  
+ATOM    108 HG21 VAL     8       3.013   1.143  14.866  1.00  0.00      A    H  
+ATOM    109 HG22 VAL     8       3.503   0.299  13.495  1.00  0.00      A    H  
+ATOM    110 HG23 VAL     8       4.645   0.765  14.711  1.00  0.00      A    H  
+ATOM    111  N   ALA     9       5.606   4.546  11.941  1.00  3.73      A    N  
+ATOM    112  CA  ALA     9       5.598   5.767  11.082  1.00  3.56      A    C  
+ATOM    113  C   ALA     9       6.441   5.527   9.850  1.00  4.13      A    C  
+ATOM    114  O   ALA     9       6.052   5.933   8.744  1.00  4.36      A    O  
+ATOM    115  CB  ALA     9       6.022   6.977  11.891  1.00  4.80      A    C  
+ATOM    116  HN  ALA     9       5.974   4.590  12.870  1.00  0.00      A    H  
+ATOM    117  HA  ALA     9       4.672   5.963  10.759  1.00  0.00      A    H  
+ATOM    118  HB1 ALA     9       6.013   7.788  11.307  1.00  0.00      A    H  
+ATOM    119  HB2 ALA     9       5.343   7.100  12.688  1.00  0.00      A    H  
+ATOM    120  HB3 ALA     9       6.996   6.808  12.258  1.00  0.00      A    H  
+ATOM    121  N   ARG    10       7.647   4.909  10.005  1.00  3.73      A    N  
+ATOM    122  CA  ARG    10       8.496   4.609   8.837  1.00  3.38      A    C  
+ATOM    123  C   ARG    10       7.798   3.609   7.876  1.00  3.47      A    C  
+ATOM    124  O   ARG    10       7.878   3.778   6.651  1.00  4.67      A    O  
+ATOM    125  CB  ARG    10       9.847   4.020   9.305  1.00  3.95      A    C  
+ATOM    126  CG  ARG    10      10.752   3.607   8.149  1.00  4.55      A    C  
+ATOM    127  CD  ARG    10      11.226   4.699   7.244  1.00  5.89      A    C  
+ATOM    128  NE  ARG    10      12.143   5.571   8.035  1.00  6.20      A    N  
+ATOM    129  CZ  ARG    10      12.758   6.609   7.443  1.00  7.52      A    C  
+ATOM    130  NH1 ARG    10      12.539   6.932   6.158  1.00 10.68      A    N  
+ATOM    131  NH2 ARG    10      13.601   7.322   8.202  1.00  9.48      A    N  
+ATOM    132  HN  ARG    10       7.959   4.656  10.921  1.00  0.00      A    H  
+ATOM    133  HA  ARG    10       8.654   5.464   8.342  1.00  0.00      A    H  
+ATOM    134  HB1 ARG    10      10.323   4.710   9.851  1.00  0.00      A    H  
+ATOM    135  HB2 ARG    10       9.665   3.215   9.870  1.00  0.00      A    H  
+ATOM    136  HG1 ARG    10      11.560   3.165   8.539  1.00  0.00      A    H  
+ATOM    137  HG2 ARG    10      10.248   2.948   7.591  1.00  0.00      A    H  
+ATOM    138  HD1 ARG    10      11.715   4.308   6.464  1.00  0.00      A    H  
+ATOM    139  HD2 ARG    10      10.447   5.232   6.915  1.00  0.00      A    H  
+ATOM    140  HE  ARG    10      12.300   5.383   9.005  1.00  0.00      A    H  
+ATOM    141 HH11 ARG    10      11.900   6.393   5.609  1.00  0.00      A    H  
+ATOM    142 HH12 ARG    10      13.015   7.711   5.750  1.00  0.00      A    H  
+ATOM    143 HH21 ARG    10      13.746   7.071   9.159  1.00  0.00      A    H  
+ATOM    144 HH22 ARG    10      14.085   8.105   7.811  1.00  0.00      A    H  
+ATOM    145  N   SER    11       7.186   2.582   8.445  1.00  5.19      A    N  
+ATOM    146  CA  SER    11       6.500   1.584   7.565  1.00  4.60      A    C  
+ATOM    147  C   SER    11       5.382   2.313   6.773  1.00  4.84      A    C  
+ATOM    148  O   SER    11       5.213   2.016   5.557  1.00  5.84      A    O  
+ATOM    149  CB  SER    11       5.908   0.462   8.400  1.00  5.91      A    C  
+ATOM    150  OG  SER    11       6.990  -0.272   9.012  1.00  8.38      A    O  
+ATOM    151  HN  SER    11       7.182   2.475   9.439  1.00  0.00      A    H  
+ATOM    152  HA  SER    11       7.160   1.182   6.930  1.00  0.00      A    H  
+ATOM    153  HB1 SER    11       5.316   0.845   9.109  1.00  0.00      A    H  
+ATOM    154  HB2 SER    11       5.374  -0.149   7.815  1.00  0.00      A    H  
+ATOM    155  HG1 SER    11       6.617  -1.016   9.567  1.00  0.00      A    H  
+ATOM    156  N   ASN    12       4.648   3.182   7.446  1.00  3.54      A    N  
+ATOM    157  CA  ASN    12       3.545   3.935   6.751  1.00  4.57      A    C  
+ATOM    158  C   ASN    12       4.107   4.851   5.691  1.00  4.14      A    C  
+ATOM    159  O   ASN    12       3.536   5.001   4.617  1.00  5.52      A    O  
+ATOM    160  CB  ASN    12       2.663   4.677   7.748  1.00  6.42      A    C  
+ATOM    161  CG  ASN    12       1.802   3.735   8.610  1.00  8.25      A    C  
+ATOM    162  OD1 ASN    12       1.567   2.613   8.165  1.00 12.72      A    O  
+ATOM    163  ND2 ASN    12       1.394   4.252   9.767  1.00  9.92      A    N  
+ATOM    164  HN  ASN    12       4.825   3.339   8.417  1.00  0.00      A    H  
+ATOM    165  HA  ASN    12       2.957   3.271   6.289  1.00  0.00      A    H  
+ATOM    166  HB1 ASN    12       3.250   5.215   8.353  1.00  0.00      A    H  
+ATOM    167  HB2 ASN    12       2.056   5.289   7.242  1.00  0.00      A    H  
+ATOM    168 HD21 ASN    12       1.651   5.186  10.016  1.00  0.00      A    H  
+ATOM    169 HD22 ASN    12       0.830   3.707  10.387  1.00  0.00      A    H  
+ATOM    170  N   PHE    13       5.259   5.498   6.005  1.00  3.43      A    N  
+ATOM    171  CA  PHE    13       5.929   6.358   5.055  1.00  3.49      A    C  
+ATOM    172  C   PHE    13       6.304   5.578   3.799  1.00  3.40      A    C  
+ATOM    173  O   PHE    13       6.136   6.072   2.653  1.00  4.07      A    O  
+ATOM    174  CB  PHE    13       7.183   6.994   5.754  1.00  5.48      A    C  
+ATOM    175  CG  PHE    13       7.884   8.006   4.883  1.00  5.57      A    C  
+ATOM    176  CD1 PHE    13       8.906   7.586   4.027  1.00  6.99      A    C  
+ATOM    177  CD2 PHE    13       7.532   9.373   4.983  1.00  6.52      A    C  
+ATOM    178  CE1 PHE    13       9.560   8.539   3.194  1.00  8.20      A    C  
+ATOM    179  CE2 PHE    13       8.176  10.281   4.145  1.00  6.34      A    C  
+ATOM    180  CZ  PHE    13       9.141   9.845   3.292  1.00  6.84      A    C  
+ATOM    181  HN  PHE    13       5.654   5.377   6.916  1.00  0.00      A    H  
+ATOM    182  HA  PHE    13       5.319   7.094   4.762  1.00  0.00      A    H  
+ATOM    183  HB1 PHE    13       6.885   7.447   6.595  1.00  0.00      A    H  
+ATOM    184  HB2 PHE    13       7.828   6.264   5.979  1.00  0.00      A    H  
+ATOM    185  HD1 PHE    13       9.176   6.624   3.999  1.00  0.00      A    H  
+ATOM    186  HD2 PHE    13       6.840   9.679   5.637  1.00  0.00      A    H  
+ATOM    187  HE1 PHE    13      10.291   8.270   2.566  1.00  0.00      A    H  
+ATOM    188  HE2 PHE    13       7.929  11.250   4.171  1.00  0.00      A    H  
+ATOM    189  HZ  PHE    13       9.575  10.520   2.696  1.00  0.00      A    H  
+ATOM    190  N   ASN    14       6.900   4.390   3.989  1.00  3.64      A    N  
+ATOM    191  CA  ASN    14       7.331   3.607   2.791  1.00  4.31      A    C  
+ATOM    192  C   ASN    14       6.116   3.210   1.915  1.00  3.98      A    C  
+ATOM    193  O   ASN    14       6.240   3.144   0.684  1.00  6.22      A    O  
+ATOM    194  CB  ASN    14       8.145   2.404   3.240  1.00  5.81      A    C  
+ATOM    195  CG  ASN    14       9.555   2.856   3.730  1.00  6.82      A    C  
+ATOM    196  OD1 ASN    14      10.013   3.895   3.323  1.00  9.43      A    O  
+ATOM    197  ND2 ASN    14      10.120   1.956   4.539  1.00  8.21      A    N  
+ATOM    198  HN  ASN    14       7.052   4.037   4.912  1.00  0.00      A    H  
+ATOM    199  HA  ASN    14       7.915   4.177   2.213  1.00  0.00      A    H  
+ATOM    200  HB1 ASN    14       7.668   1.944   3.988  1.00  0.00      A    H  
+ATOM    201  HB2 ASN    14       8.250   1.772   2.472  1.00  0.00      A    H  
+ATOM    202 HD21 ASN    14       9.635   1.110   4.762  1.00  0.00      A    H  
+ATOM    203 HD22 ASN    14      11.028   2.128   4.922  1.00  0.00      A    H  
+ATOM    204  N   VAL    15       4.993   2.927   2.571  1.00  3.76      A    N  
+ATOM    205  CA  VAL    15       3.782   2.599   1.742  1.00  3.98      A    C  
+ATOM    206  C   VAL    15       3.296   3.871   1.004  1.00  3.80      A    C  
+ATOM    207  O   VAL    15       2.947   3.817  -0.189  1.00  4.85      A    O  
+ATOM    208  CB  VAL    15       2.698   1.953   2.608  1.00  4.71      A    C  
+ATOM    209  CG1 VAL    15       1.384   1.826   1.806  1.00  6.67      A    C  
+ATOM    210  CG2 VAL    15       3.174   0.533   3.005  1.00  6.26      A    C  
+ATOM    211  HN  VAL    15       4.956   2.932   3.570  1.00  0.00      A    H  
+ATOM    212  HA  VAL    15       4.019   1.925   1.042  1.00  0.00      A    H  
+ATOM    213  HB  VAL    15       2.537   2.517   3.418  1.00  0.00      A    H  
+ATOM    214 HG11 VAL    15       0.683   1.403   2.380  1.00  0.00      A    H  
+ATOM    215 HG12 VAL    15       1.077   2.791   1.514  1.00  0.00      A    H  
+ATOM    216 HG13 VAL    15       1.567   1.225   0.959  1.00  0.00      A    H  
+ATOM    217 HG21 VAL    15       2.477   0.094   3.572  1.00  0.00      A    H  
+ATOM    218 HG22 VAL    15       3.326  -0.026   2.124  1.00  0.00      A    H  
+ATOM    219 HG23 VAL    15       4.075   0.622   3.545  1.00  0.00      A    H  
+ATOM    220  N   CYS2   16       3.321   4.987   1.720  1.00  3.79      A    N  
+ATOM    221  CA  CYS2   16       2.890   6.285   1.126  1.00  3.54      A    C  
+ATOM    222  C   CYS2   16       3.687   6.597  -0.111  1.00  3.48      A    C  
+ATOM    223  O   CYS2   16       3.200   7.147  -1.103  1.00  4.63      A    O  
+ATOM    224  CB  CYS2   16       3.039   7.369   2.240  1.00  4.58      A    C  
+ATOM    225  SG  CYS2   16       2.559   9.014   1.649  1.00  5.66      A    S  
+ATOM    226  HN  CYS2   16       3.633   4.958   2.670  1.00  0.00      A    H  
+ATOM    227  HA  CYS2   16       1.937   6.253   0.824  1.00  0.00      A    H  
+ATOM    228  HB1 CYS2   16       2.456   7.120   3.013  1.00  0.00      A    H  
+ATOM    229  HB2 CYS2   16       3.993   7.398   2.538  1.00  0.00      A    H  
+ATOM    230  N   ARG    17       4.997   6.227  -0.100  1.00  3.99      A    N  
+ATOM    231  CA  ARG    17       5.895   6.489  -1.213  1.00  3.83      A    C  
+ATOM    232  C   ARG    17       5.738   5.560  -2.409  1.00  3.79      A    C  
+ATOM    233  O   ARG    17       6.228   5.901  -3.507  1.00  5.39      A    O  
+ATOM    234  CB  ARG    17       7.370   6.507  -0.731  1.00  4.11      A    C  
+ATOM    235  CG  ARG    17       7.717   7.687   0.206  1.00  4.69      A    C  
+ATOM    236  CD  ARG    17       7.949   8.947  -0.615  1.00  5.10      A    C  
+ATOM    237  NE  ARG    17       9.212   8.856  -1.337  1.00  4.71      A    N  
+ATOM    238  CZ  ARG    17       9.537   9.533  -2.431  1.00  5.28      A    C  
+ATOM    239  NH1 ARG    17       8.659  10.350  -3.032  1.00  6.67      A    N  
+ATOM    240  NH2 ARG    17      10.793   9.491  -2.899  1.00  6.41      A    N  
+ATOM    241  HN  ARG    17       5.356   5.756   0.706  1.00  0.00      A    H  
+ATOM    242  HA  ARG    17       5.629   7.392  -1.550  1.00  0.00      A    H  
+ATOM    243  HB1 ARG    17       7.550   5.654  -0.241  1.00  0.00      A    H  
+ATOM    244  HB2 ARG    17       7.962   6.561  -1.535  1.00  0.00      A    H  
+ATOM    245  HG1 ARG    17       6.960   7.840   0.842  1.00  0.00      A    H  
+ATOM    246  HG2 ARG    17       8.546   7.469   0.721  1.00  0.00      A    H  
+ATOM    247  HD1 ARG    17       7.202   9.056  -1.270  1.00  0.00      A    H  
+ATOM    248  HD2 ARG    17       7.975   9.738  -0.004  1.00  0.00      A    H  
+ATOM    249  HE  ARG    17       9.897   8.225  -0.974  1.00  0.00      A    H  
+ATOM    250 HH11 ARG    17       7.739  10.458  -2.656  1.00  0.00      A    H  
+ATOM    251 HH12 ARG    17       8.925  10.851  -3.856  1.00  0.00      A    H  
+ATOM    252 HH21 ARG    17      11.486   8.949  -2.423  1.00  0.00      A    H  
+ATOM    253 HH22 ARG    17      11.037  10.002  -3.724  1.00  0.00      A    H  
+ATOM    254  N   LEU    18       5.051   4.411  -2.204  1.00  4.70      A    N  
+ATOM    255  CA  LEU    18       4.933   3.431  -3.326  1.00  5.46      A    C  
+ATOM    256  C   LEU    18       4.397   4.014  -4.620  1.00  5.13      A    C  
+ATOM    257  O   LEU    18       4.988   3.755  -5.687  1.00  5.55      A    O  
+ATOM    258  CB  LEU    18       4.196   2.184  -2.863  1.00  6.47      A    C  
+ATOM    259  CG  LEU    18       4.960   1.178  -1.991  1.00  7.43      A    C  
+ATOM    260  CD1 LEU    18       3.907   0.097  -1.634  1.00  8.70      A    C  
+ATOM    261  CD2 LEU    18       6.129   0.606  -2.768  1.00  9.39      A    C  
+ATOM    262  HN  LEU    18       4.630   4.222  -1.317  1.00  0.00      A    H  
+ATOM    263  HA  LEU    18       5.863   3.161  -3.574  1.00  0.00      A    H  
+ATOM    264  HB1 LEU    18       3.399   2.486  -2.340  1.00  0.00      A    H  
+ATOM    265  HB2 LEU    18       3.892   1.697  -3.682  1.00  0.00      A    H  
+ATOM    266  HG  LEU    18       5.353   1.584  -1.166  1.00  0.00      A    H  
+ATOM    267 HD11 LEU    18       4.330  -0.604  -1.060  1.00  0.00      A    H  
+ATOM    268 HD12 LEU    18       3.117   0.561  -1.113  1.00  0.00      A    H  
+ATOM    269 HD13 LEU    18       3.555  -0.334  -2.529  1.00  0.00      A    H  
+ATOM    270 HD21 LEU    18       6.622  -0.048  -2.195  1.00  0.00      A    H  
+ATOM    271 HD22 LEU    18       5.754   0.122  -3.626  1.00  0.00      A    H  
+ATOM    272 HD23 LEU    18       6.768   1.399  -3.041  1.00  0.00      A    H  
+ATOM    273  N   PRO    19       3.329   4.795  -4.543  1.00  4.28      A    N  
+ATOM    274  CA  PRO    19       2.792   5.376  -5.797  1.00  5.38      A    C  
+ATOM    275  C   PRO    19       3.573   6.540  -6.322  1.00  6.30      A    C  
+ATOM    276  O   PRO    19       3.260   7.045  -7.422  1.00  9.62      A    O  
+ATOM    277  CB  PRO    19       1.358   5.766  -5.472  1.00  5.87      A    C  
+ATOM    278  CG  PRO    19       1.223   5.694  -3.993  1.00  6.47      A    C  
+ATOM    279  CD  PRO    19       2.421   4.941  -3.408  1.00  6.45      A    C  
+ATOM    280  HA  PRO    19       2.853   4.706  -6.537  1.00  0.00      A    H  
+ATOM    281  HB1 PRO    19       1.173   6.696  -5.791  1.00  0.00      A    H  
+ATOM    282  HB2 PRO    19       0.720   5.131  -5.908  1.00  0.00      A    H  
+ATOM    283  HG1 PRO    19       1.194   6.619  -3.615  1.00  0.00      A    H  
+ATOM    284  HG2 PRO    19       0.379   5.212  -3.758  1.00  0.00      A    H  
+ATOM    285  HD1 PRO    19       2.850   5.468  -2.674  1.00  0.00      A    H  
+ATOM    286  HD2 PRO    19       2.143   4.047  -3.057  1.00  0.00      A    H  
+ATOM    287  N   GLY    20       4.565   7.047  -5.559  1.00  4.94      A    N  
+ATOM    288  CA  GLY    20       5.366   8.191  -6.018  1.00  5.39      A    C  
+ATOM    289  C   GLY    20       5.007   9.481  -5.280  1.00  5.03      A    C  
+ATOM    290  O   GLY    20       5.535  10.510  -5.730  1.00  7.34      A    O  
+ATOM    291  HN  GLY    20       4.758   6.638  -4.667  1.00  0.00      A    H  
+ATOM    292  HA1 GLY    20       6.333   7.990  -5.863  1.00  0.00      A    H  
+ATOM    293  HA2 GLY    20       5.206   8.324  -6.996  1.00  0.00      A    H  
+ATOM    294  N   THR    21       4.181   9.438  -4.262  1.00  4.10      A    N  
+ATOM    295  CA  THR    21       3.767  10.609  -3.513  1.00  3.94      A    C  
+ATOM    296  C   THR    21       5.017  11.397  -3.042  1.00  3.96      A    C  
+ATOM    297  O   THR    21       5.947  10.757  -2.523  1.00  5.82      A    O  
+ATOM    298  CB  THR    21       2.992  10.188  -2.225  1.00  4.13      A    C  
+ATOM    299  OG1 THR    21       2.051   9.144  -2.623  1.00  5.45      A    O  
+ATOM    300  CG2 THR    21       2.260  11.349  -1.551  1.00  5.41      A    C  
+ATOM    301  HN  THR    21       3.816   8.548  -3.987  1.00  0.00      A    H  
+ATOM    302  HA  THR    21       3.187  11.164  -4.110  1.00  0.00      A    H  
+ATOM    303  HB  THR    21       3.644   9.861  -1.541  1.00  0.00      A    H  
+ATOM    304  HG1 THR    21       1.530   8.842  -1.825  1.00  0.00      A    H  
+ATOM    305 HG21 THR    21       1.786  11.016  -0.736  1.00  0.00      A    H  
+ATOM    306 HG22 THR    21       2.971  12.079  -1.281  1.00  0.00      A    H  
+ATOM    307 HG23 THR    21       1.564  11.747  -2.236  1.00  0.00      A    H  
+ATOM    308  N   PRO    22       4.971  12.703  -3.176  1.00  5.04      A    N  
+ATOM    309  CA  PRO    22       6.143  13.513  -2.696  1.00  4.69      A    C  
+ATOM    310  C   PRO    22       6.400  13.233  -1.225  1.00  4.19      A    C  
+ATOM    311  O   PRO    22       5.485  13.061  -0.382  1.00  4.47      A    O  
+ATOM    312  CB  PRO    22       5.703  14.969  -2.920  1.00  7.12      A    C  
+ATOM    313  CG  PRO    22       4.676  14.893  -3.996  1.00  7.03      A    C  
+ATOM    314  CD  PRO    22       3.964  13.567  -3.811  1.00  4.90      A    C  
+ATOM    315  HA  PRO    22       6.995  13.300  -3.174  1.00  0.00      A    H  
+ATOM    316  HB1 PRO    22       5.310  15.351  -2.084  1.00  0.00      A    H  
+ATOM    317  HB2 PRO    22       6.478  15.531  -3.211  1.00  0.00      A    H  
+ATOM    318  HG1 PRO    22       4.027  15.649  -3.910  1.00  0.00      A    H  
+ATOM    319  HG2 PRO    22       5.113  14.929  -4.895  1.00  0.00      A    H  
+ATOM    320  HD1 PRO    22       3.164  13.673  -3.220  1.00  0.00      A    H  
+ATOM    321  HD2 PRO    22       3.679  13.191  -4.693  1.00  0.00      A    H  
+ATOM    322  N   GLU    23       7.728  13.297  -0.921  1.00  5.16      A    N  
+ATOM    323  CA  GLU    23       8.114  13.103   0.500  1.00  5.31      A    C  
+ATOM    324  C   GLU    23       7.427  14.073   1.410  1.00  4.11      A    C  
+ATOM    325  O   GLU    23       7.036  13.682   2.540  1.00  5.11      A    O  
+ATOM    326  CB  GLU    23       9.648  13.285   0.660  1.00  6.16      A    C  
+ATOM    327  CG  GLU    23      10.440  12.093   0.063  1.00  7.48      A    C  
+ATOM    328  CD  GLU    23      11.941  12.170   0.391  1.00  9.40      A    C  
+ATOM    329  OE1 GLU    23      12.416  13.225   0.681  1.00 10.40      A    O  
+ATOM    330  OE2 GLU    23      12.539  11.070   0.292  1.00 13.32      A    O  
+ATOM    331  HN  GLU    23       8.415  13.468  -1.627  1.00  0.00      A    H  
+ATOM    332  HA  GLU    23       7.836  12.177   0.754  1.00  0.00      A    H  
+ATOM    333  HB1 GLU    23       9.924  14.124   0.191  1.00  0.00      A    H  
+ATOM    334  HB2 GLU    23       9.864  13.361   1.633  1.00  0.00      A    H  
+ATOM    335  HG1 GLU    23      10.072  11.242   0.437  1.00  0.00      A    H  
+ATOM    336  HG2 GLU    23      10.327  12.097  -0.931  1.00  0.00      A    H  
+ATOM    337  N   ALA    24       7.212  15.334   0.966  1.00  4.56      A    N  
+ATOM    338  CA  ALA    24       6.614  16.317   1.913  1.00  4.49      A    C  
+ATOM    339  C   ALA    24       5.212  15.936   2.350  1.00  4.10      A    C  
+ATOM    340  O   ALA    24       4.782  16.166   3.495  1.00  5.64      A    O  
+ATOM    341  CB  ALA    24       6.605  17.695   1.246  1.00  5.80      A    C  
+ATOM    342  HN  ALA    24       7.447  15.598   0.031  1.00  0.00      A    H  
+ATOM    343  HA  ALA    24       7.174  16.328   2.742  1.00  0.00      A    H  
+ATOM    344  HB1 ALA    24       6.206  18.365   1.871  1.00  0.00      A    H  
+ATOM    345  HB2 ALA    24       7.599  17.962   1.019  1.00  0.00      A    H  
+ATOM    346  HB3 ALA    24       6.028  17.635   0.366  1.00  0.00      A    H  
+ATOM    347  N   ILE    25       4.445  15.318   1.405  1.00  4.37      A    N  
+ATOM    348  CA  ILE    25       3.074  14.894   1.756  1.00  5.44      A    C  
+ATOM    349  C   ILE    25       3.085  13.643   2.645  1.00  4.32      A    C  
+ATOM    350  O   ILE    25       2.315  13.523   3.578  1.00  4.72      A    O  
+ATOM    351  CB  ILE    25       2.204  14.637   0.462  1.00  6.42      A    C  
+ATOM    352  CG1 ILE    25       1.815  16.048  -0.129  1.00  7.50      A    C  
+ATOM    353  CG2 ILE    25       0.903  13.864   0.811  1.00  7.65      A    C  
+ATOM    354  CD  ILE    25       0.756  16.761   0.757  1.00  7.80      A    C  
+ATOM    355  HN  ILE    25       4.806  15.154   0.487  1.00  0.00      A    H  
+ATOM    356  HA  ILE    25       2.657  15.642   2.273  1.00  0.00      A    H  
+ATOM    357  HB  ILE    25       2.726  14.090  -0.193  1.00  0.00      A    H  
+ATOM    358 HG11 ILE    25       2.635  16.618  -0.178  1.00  0.00      A    H  
+ATOM    359 HG12 ILE    25       1.440  15.924  -1.048  1.00  0.00      A    H  
+ATOM    360 HG21 ILE    25       0.371  13.714  -0.022  1.00  0.00      A    H  
+ATOM    361 HG22 ILE    25       1.170  12.939   1.240  1.00  0.00      A    H  
+ATOM    362 HG23 ILE    25       0.346  14.441   1.495  1.00  0.00      A    H  
+ATOM    363  HD1 ILE    25       0.531  17.650   0.357  1.00  0.00      A    H  
+ATOM    364  HD2 ILE    25      -0.106  16.156   0.798  1.00  0.00      A    H  
+ATOM    365  HD3 ILE    25       1.162  16.892   1.721  1.00  0.00      A    H  
+ATOM    366  N   CYS2   26       4.032  12.764   2.313  1.00  3.92      A    N  
+ATOM    367  CA  CYS2   26       4.180  11.549   3.187  1.00  4.37      A    C  
+ATOM    368  C   CYS2   26       4.632  11.944   4.596  1.00  3.95      A    C  
+ATOM    369  O   CYS2   26       4.227  11.252   5.547  1.00  4.74      A    O  
+ATOM    370  CB  CYS2   26       5.038  10.518   2.539  1.00  4.63      A    C  
+ATOM    371  SG  CYS2   26       4.349   9.794   1.022  1.00  5.61      A    S  
+ATOM    372  HN  CYS2   26       4.619  12.907   1.516  1.00  0.00      A    H  
+ATOM    373  HA  CYS2   26       3.285  11.116   3.298  1.00  0.00      A    H  
+ATOM    374  HB1 CYS2   26       5.914  10.942   2.311  1.00  0.00      A    H  
+ATOM    375  HB2 CYS2   26       5.186   9.779   3.196  1.00  0.00      A    H  
+ATOM    376  N   ALA    27       5.408  13.012   4.694  1.00  3.89      A    N  
+ATOM    377  CA  ALA    27       5.879  13.502   6.026  1.00  4.43      A    C  
+ATOM    378  C   ALA    27       4.696  13.908   6.882  1.00  4.26      A    C  
+ATOM    379  O   ALA    27       4.528  13.422   8.025  1.00  5.44      A    O  
+ATOM    380  CB  ALA    27       6.880  14.615   5.830  1.00  5.36      A    C  
+ATOM    381  HN  ALA    27       5.683  13.498   3.865  1.00  0.00      A    H  
+ATOM    382  HA  ALA    27       6.347  12.769   6.519  1.00  0.00      A    H  
+ATOM    383  HB1 ALA    27       7.194  14.942   6.721  1.00  0.00      A    H  
+ATOM    384  HB2 ALA    27       7.694  14.237   5.277  1.00  0.00      A    H  
+ATOM    385  HB3 ALA    27       6.409  15.398   5.305  1.00  0.00      A    H  
+ATOM    386  N   THR    28       3.827  14.802   6.358  1.00  4.53      A    N  
+ATOM    387  CA  THR    28       2.691  15.221   7.194  1.00  5.08      A    C  
+ATOM    388  C   THR    28       1.672  14.132   7.434  1.00  4.62      A    C  
+ATOM    389  O   THR    28       0.947  14.112   8.468  1.00  7.80      A    O  
+ATOM    390  CB  THR    28       1.986  16.520   6.614  1.00  6.03      A    C  
+ATOM    391  OG1 THR    28       1.664  16.221   5.230  1.00  7.19      A    O  
+ATOM    392  CG2 THR    28       2.914  17.739   6.700  1.00  7.34      A    C  
+ATOM    393  HN  THR    28       3.952  15.165   5.435  1.00  0.00      A    H  
+ATOM    394  HA  THR    28       3.090  15.437   8.085  1.00  0.00      A    H  
+ATOM    395  HB  THR    28       1.167  16.747   7.141  1.00  0.00      A    H  
+ATOM    396  HG1 THR    28       1.215  17.011   4.814  1.00  0.00      A    H  
+ATOM    397 HG21 THR    28       2.446  18.541   6.329  1.00  0.00      A    H  
+ATOM    398 HG22 THR    28       3.159  17.901   7.712  1.00  0.00      A    H  
+ATOM    399 HG23 THR    28       3.783  17.537   6.138  1.00  0.00      A    H  
+ATOM    400  N   TYR    29       1.621  13.190   6.511  1.00  5.01      A    N  
+ATOM    401  CA  TYR    29       0.715  12.045   6.657  1.00  6.60      A    C  
+ATOM    402  C   TYR    29       1.125  11.125   7.815  1.00  4.92      A    C  
+ATOM    403  O   TYR    29       0.286  10.632   8.545  1.00  7.13      A    O  
+ATOM    404  CB  TYR    29       0.755  11.229   5.322  1.00  9.66      A    C  
+ATOM    405  CG  TYR    29      -0.203  10.044   5.354  1.00 11.56      A    C  
+ATOM    406  CD1 TYR    29      -1.547  10.337   5.645  1.00 12.85      A    C  
+ATOM    407  CD2 TYR    29       0.193   8.750   5.100  1.00 14.44      A    C  
+ATOM    408  CE1 TYR    29      -2.496   9.329   5.673  1.00 16.61      A    C  
+ATOM    409  CE2 TYR    29      -0.801   7.705   5.156  1.00 17.11      A    C  
+ATOM    410  CZ  TYR    29      -2.079   8.031   5.430  1.00 19.99      A    C  
+ATOM    411  OH  TYR    29      -3.097   7.057   5.458  1.00 28.98      A    O  
+ATOM    412  HN  TYR    29       2.206  13.257   5.703  1.00  0.00      A    H  
+ATOM    413  HA  TYR    29      -0.203  12.388   6.857  1.00  0.00      A    H  
+ATOM    414  HB1 TYR    29       0.499  11.832   4.566  1.00  0.00      A    H  
+ATOM    415  HB2 TYR    29       1.685  10.890   5.178  1.00  0.00      A    H  
+ATOM    416  HD1 TYR    29      -1.820  11.281   5.833  1.00  0.00      A    H  
+ATOM    417  HD2 TYR    29       1.146   8.539   4.882  1.00  0.00      A    H  
+ATOM    418  HE1 TYR    29      -3.456   9.533   5.864  1.00  0.00      A    H  
+ATOM    419  HE2 TYR    29      -0.545   6.752   4.994  1.00  0.00      A    H  
+ATOM    420  HH  TYR    29      -2.703   6.157   5.273  1.00  0.00      A    H  
+ATOM    421  N   THR    30       2.470  10.984   7.995  1.00  5.31      A    N  
+ATOM    422  CA  THR    30       2.986   9.994   8.950  1.00  5.70      A    C  
+ATOM    423  C   THR    30       3.609  10.505  10.230  1.00  6.28      A    C  
+ATOM    424  O   THR    30       3.766   9.715  11.186  1.00  8.77      A    O  
+ATOM    425  CB  THR    30       4.076   9.103   8.225  1.00  6.55      A    C  
+ATOM    426  OG1 THR    30       5.125  10.027   7.824  1.00  6.57      A    O  
+ATOM    427  CG2 THR    30       3.493   8.324   7.035  1.00  7.29      A    C  
+ATOM    428  HN  THR    30       3.106  11.555   7.476  1.00  0.00      A    H  
+ATOM    429  HA  THR    30       2.164   9.501   9.237  1.00  0.00      A    H  
+ATOM    430  HB  THR    30       4.432   8.393   8.833  1.00  0.00      A    H  
+ATOM    431  HG1 THR    30       5.852   9.524   7.356  1.00  0.00      A    H  
+ATOM    432 HG21 THR    30       4.214   7.777   6.609  1.00  0.00      A    H  
+ATOM    433 HG22 THR    30       2.727   7.694   7.392  1.00  0.00      A    H  
+ATOM    434 HG23 THR    30       3.108   9.016   6.340  1.00  0.00      A    H  
+ATOM    435  N   GLY    31       3.984  11.764  10.241  1.00  4.99      A    N  
+ATOM    436  CA  GLY    31       4.769  12.336  11.360  1.00  5.50      A    C  
+ATOM    437  C   GLY    31       6.255  12.243  11.106  1.00  4.19      A    C  
+ATOM    438  O   GLY    31       7.037  12.750  11.954  1.00  6.12      A    O  
+ATOM    439  HN  GLY    31       3.733  12.353   9.473  1.00  0.00      A    H  
+ATOM    440  HA1 GLY    31       4.519  13.298  11.473  1.00  0.00      A    H  
+ATOM    441  HA2 GLY    31       4.552  11.835  12.198  1.00  0.00      A    H  
+ATOM    442  N   CYS2   32       6.710  11.631   9.992  1.00  4.30      A    N  
+ATOM    443  CA  CYS2   32       8.140  11.694   9.635  1.00  4.89      A    C  
+ATOM    444  C   CYS2   32       8.500  13.141   9.206  1.00  5.50      A    C  
+ATOM    445  O   CYS2   32       7.581  13.949   8.944  1.00  5.82      A    O  
+ATOM    446  CB  CYS2   32       8.504  10.686   8.530  1.00  4.66      A    C  
+ATOM    447  SG  CYS2   32       8.048   8.987   8.881  1.00  5.33      A    S  
+ATOM    448  HN  CYS2   32       6.073  11.131   9.405  1.00  0.00      A    H  
+ATOM    449  HA  CYS2   32       8.676  11.442  10.441  1.00  0.00      A    H  
+ATOM    450  HB1 CYS2   32       8.040  10.965   7.689  1.00  0.00      A    H  
+ATOM    451  HB2 CYS2   32       9.494  10.720   8.392  1.00  0.00      A    H  
+ATOM    452  N   ILE    33       9.793  13.410   9.173  1.00  6.02      A    N  
+ATOM    453  CA  ILE    33      10.280  14.760   8.823  1.00  5.24      A    C  
+ATOM    454  C   ILE    33      11.346  14.658   7.743  1.00  5.16      A    C  
+ATOM    455  O   ILE    33      11.971  13.583   7.552  1.00  7.19      A    O  
+ATOM    456  CB  ILE    33      10.790  15.535  10.085  1.00  5.49      A    C  
+ATOM    457  CG1 ILE    33      12.059  14.803  10.671  1.00  6.85      A    C  
+ATOM    458  CG2 ILE    33       9.684  15.686  11.138  1.00  6.45      A    C  
+ATOM    459  CD  ILE    33      12.733  15.676  11.781  1.00  8.94      A    C  
+ATOM    460  HN  ILE    33      10.452  12.689   9.388  1.00  0.00      A    H  
+ATOM    461  HA  ILE    33       9.516  15.293   8.459  1.00  0.00      A    H  
+ATOM    462  HB  ILE    33      11.051  16.462   9.814  1.00  0.00      A    H  
+ATOM    463 HG11 ILE    33      11.781  13.927  11.065  1.00  0.00      A    H  
+ATOM    464 HG12 ILE    33      12.716  14.643   9.934  1.00  0.00      A    H  
+ATOM    465 HG21 ILE    33      10.042  16.184  11.928  1.00  0.00      A    H  
+ATOM    466 HG22 ILE    33       8.884  16.221  10.707  1.00  0.00      A    H  
+ATOM    467 HG23 ILE    33       9.369  14.724  11.431  1.00  0.00      A    H  
+ATOM    468  HD1 ILE    33      13.534  15.198  12.141  1.00  0.00      A    H  
+ATOM    469  HD2 ILE    33      13.024  16.594  11.352  1.00  0.00      A    H  
+ATOM    470  HD3 ILE    33      12.032  15.835  12.552  1.00  0.00      A    H  
+ATOM    471  N   ILE    34      11.490  15.773   7.038  1.00  5.52      A    N  
+ATOM    472  CA  ILE    34      12.552  15.877   6.036  1.00  6.82      A    C  
+ATOM    473  C   ILE    34      13.590  16.917   6.560  1.00  6.92      A    C  
+ATOM    474  O   ILE    34      13.168  18.006   6.945  1.00  9.22      A    O  
+ATOM    475  CB  ILE    34      11.987  16.360   4.681  1.00  8.11      A    C  
+ATOM    476  CG1 ILE    34      10.914  15.338   4.163  1.00  9.59      A    C  
+ATOM    477  CG2 ILE    34      13.131  16.517   3.629  1.00  9.73      A    C  
+ATOM    478  CD  ILE    34      10.151  16.024   2.938  1.00 13.41      A    C  
+ATOM    479  HN  ILE    34      10.872  16.544   7.192  1.00  0.00      A    H  
+ATOM    480  HA  ILE    34      12.972  14.981   5.894  1.00  0.00      A    H  
+ATOM    481  HB  ILE    34      11.558  17.254   4.812  1.00  0.00      A    H  
+ATOM    482 HG11 ILE    34      11.362  14.497   3.859  1.00  0.00      A    H  
+ATOM    483 HG12 ILE    34      10.265  15.125   4.893  1.00  0.00      A    H  
+ATOM    484 HG21 ILE    34      12.745  16.830   2.761  1.00  0.00      A    H  
+ATOM    485 HG22 ILE    34      13.823  17.225   3.992  1.00  0.00      A    H  
+ATOM    486 HG23 ILE    34      13.596  15.580   3.500  1.00  0.00      A    H  
+ATOM    487  HD1 ILE    34       9.458  15.396   2.584  1.00  0.00      A    H  
+ATOM    488  HD2 ILE    34       9.693  16.908   3.284  1.00  0.00      A    H  
+ATOM    489  HD3 ILE    34      10.857  16.243   2.186  1.00  0.00      A    H  
+ATOM    490  N   ILE    35      14.856  16.493   6.536  1.00  7.06      A    N  
+ATOM    491  CA  ILE    35      15.930  17.454   6.941  1.00  7.52      A    C  
+ATOM    492  C   ILE    35      16.913  17.550   5.819  1.00  6.63      A    C  
+ATOM    493  O   ILE    35      17.097  16.660   4.970  1.00  7.90      A    O  
+ATOM    494  CB  ILE    35      16.622  16.995   8.285  1.00  8.07      A    C  
+ATOM    495  CG1 ILE    35      17.360  15.651   8.067  1.00  9.41      A    C  
+ATOM    496  CG2 ILE    35      15.592  16.974   9.434  1.00  9.46      A    C  
+ATOM    497  CD  ILE    35      18.298  15.206   9.219  1.00  9.85      A    C  
+ATOM    498  HN  ILE    35      15.080  15.560   6.255  1.00  0.00      A    H  
+ATOM    499  HA  ILE    35      15.537  18.356   7.118  1.00  0.00      A    H  
+ATOM    500  HB  ILE    35      17.323  17.653   8.560  1.00  0.00      A    H  
+ATOM    501 HG11 ILE    35      16.670  14.938   7.940  1.00  0.00      A    H  
+ATOM    502 HG12 ILE    35      17.911  15.734   7.237  1.00  0.00      A    H  
+ATOM    503 HG21 ILE    35      16.041  16.682  10.279  1.00  0.00      A    H  
+ATOM    504 HG22 ILE    35      15.202  17.947   9.550  1.00  0.00      A    H  
+ATOM    505 HG23 ILE    35      14.825  16.297   9.181  1.00  0.00      A    H  
+ATOM    506  HD1 ILE    35      18.724  14.333   8.983  1.00  0.00      A    H  
+ATOM    507  HD2 ILE    35      19.039  15.945   9.350  1.00  0.00      A    H  
+ATOM    508  HD3 ILE    35      17.722  15.101  10.096  1.00  0.00      A    H  
+ATOM    509  N   PRO    36      17.664  18.669   5.806  1.00  8.07      A    N  
+ATOM    510  CA  PRO    36      18.635  18.861   4.738  1.00  8.78      A    C  
+ATOM    511  C   PRO    36      19.925  18.042   4.949  1.00  8.31      A    C  
+ATOM    512  O   PRO    36      20.593  17.742   3.945  1.00  9.09      A    O  
+ATOM    513  CB  PRO    36      18.945  20.364   4.783  1.00  9.67      A    C  
+ATOM    514  CG  PRO    36      18.238  20.937   5.908  1.00 10.15      A    C  
+ATOM    515  CD  PRO    36      17.371  19.900   6.596  1.00  9.53      A    C  
+ATOM    516  HA  PRO    36      18.272  18.552   3.859  1.00  0.00      A    H  
+ATOM    517  HB1 PRO    36      19.929  20.504   4.895  1.00  0.00      A    H  
+ATOM    518  HB2 PRO    36      18.641  20.798   3.935  1.00  0.00      A    H  
+ATOM    519  HG1 PRO    36      18.903  21.293   6.564  1.00  0.00      A    H  
+ATOM    520  HG2 PRO    36      17.658  21.684   5.583  1.00  0.00      A    H  
+ATOM    521  HD1 PRO    36      17.633  19.787   7.554  1.00  0.00      A    H  
+ATOM    522  HD2 PRO    36      16.403  20.144   6.542  1.00  0.00      A    H  
+ATOM    523  N   GLY    37      20.172  17.730   6.217  1.00  8.48      A    N  
+ATOM    524  CA  GLY    37      21.452  16.969   6.513  1.00  9.20      A    C  
+ATOM    525  C   GLY    37      21.143  15.478   6.427  1.00 10.41      A    C  
+ATOM    526  O   GLY    37      20.138  15.023   5.878  1.00 12.06      A    O  
+ATOM    527  HN  GLY    37      19.539  17.986   6.948  1.00  0.00      A    H  
+ATOM    528  HA1 GLY    37      22.153  17.210   5.842  1.00  0.00      A    H  
+ATOM    529  HA2 GLY    37      21.777  17.196   7.431  1.00  0.00      A    H  
+ATOM    530  N   ALA    38      22.055  14.701   7.032  1.00  9.24      A    N  
+ATOM    531  CA  ALA    38      22.019  13.242   7.020  1.00  9.24      A    C  
+ATOM    532  C   ALA    38      21.944  12.628   8.396  1.00  9.60      A    C  
+ATOM    533  O   ALA    38      21.869  11.387   8.435  1.00 13.65      A    O  
+ATOM    534  CB  ALA    38      23.246  12.697   6.275  1.00 10.43      A    C  
+ATOM    535  HN  ALA    38      22.804  15.149   7.520  1.00  0.00      A    H  
+ATOM    536  HA  ALA    38      21.177  12.983   6.547  1.00  0.00      A    H  
+ATOM    537  HB1 ALA    38      23.216  11.697   6.270  1.00  0.00      A    H  
+ATOM    538  HB2 ALA    38      23.226  13.063   5.287  1.00  0.00      A    H  
+ATOM    539  HB3 ALA    38      24.113  13.029   6.774  1.00  0.00      A    H  
+ATOM    540  N   THR    39      21.894  13.435   9.436  1.00  8.70      A    N  
+ATOM    541  CA  THR    39      21.936  12.911  10.809  1.00  9.46      A    C  
+ATOM    542  C   THR    39      20.615  13.191  11.521  1.00  8.32      A    C  
+ATOM    543  O   THR    39      20.357  14.317  11.948  1.00  9.89      A    O  
+ATOM    544  CB  THR    39      23.131  13.601  11.593  1.00 10.72      A    C  
+ATOM    545  OG1 THR    39      24.284  13.401  10.709  1.00 11.66      A    O  
+ATOM    546  CG2 THR    39      23.340  12.935  12.962  1.00 11.81      A    C  
+ATOM    547  HN  THR    39      21.826  14.422   9.289  1.00  0.00      A    H  
+ATOM    548  HA  THR    39      22.079  11.922  10.782  1.00  0.00      A    H  
+ATOM    549  HB  THR    39      22.968  14.568  11.791  1.00  0.00      A    H  
+ATOM    550  HG1 THR    39      25.098  13.808  11.124  1.00  0.00      A    H  
+ATOM    551 HG21 THR    39      24.096  13.384  13.439  1.00  0.00      A    H  
+ATOM    552 HG22 THR    39      22.452  13.035  13.520  1.00  0.00      A    H  
+ATOM    553 HG23 THR    39      23.565  11.917  12.807  1.00  0.00      A    H  
+ATOM    554  N   CYS2   40      19.827  12.110  11.642  1.00  7.64      A    N  
+ATOM    555  CA  CYS2   40      18.504  12.312  12.298  1.00  8.05      A    C  
+ATOM    556  C   CYS2   40      18.684  12.451  13.784  1.00  7.63      A    C  
+ATOM    557  O   CYS2   40      19.533  11.718  14.362  1.00  9.64      A    O  
+ATOM    558  CB  CYS2   40      17.582  11.117  11.996  1.00  7.80      A    C  
+ATOM    559  SG  CYS2   40      17.199  10.929  10.237  1.00  7.30      A    S  
+ATOM    560  HN  CYS2   40      20.114  11.212  11.308  1.00  0.00      A    H  
+ATOM    561  HA  CYS2   40      18.088  13.147  11.939  1.00  0.00      A    H  
+ATOM    562  HB1 CYS2   40      18.032  10.282  12.313  1.00  0.00      A    H  
+ATOM    563  HB2 CYS2   40      16.725  11.244  12.495  1.00  0.00      A    H  
+ATOM    564  N   PRO    41      17.880  13.266  14.426  1.00  8.00      A    N  
+ATOM    565  CA  PRO    41      17.924  13.421  15.877  1.00  8.96      A    C  
+ATOM    566  C   PRO    41      17.392  12.206  16.594  1.00  9.06      A    C  
+ATOM    567  O   PRO    41      16.652  11.368  16.033  1.00  8.82      A    O  
+ATOM    568  CB  PRO    41      17.076  14.658  16.145  1.00 10.39      A    C  
+ATOM    569  CG  PRO    41      16.098  14.689  14.997  1.00 10.99      A    C  
+ATOM    570  CD  PRO    41      16.859  14.150  13.779  1.00 10.49      A    C  
+ATOM    571  HA  PRO    41      18.859  13.521  16.218  1.00  0.00      A    H  
+ATOM    572  HB1 PRO    41      16.596  14.577  17.018  1.00  0.00      A    H  
+ATOM    573  HB2 PRO    41      17.642  15.482  16.151  1.00  0.00      A    H  
+ATOM    574  HG1 PRO    41      15.308  14.109  15.198  1.00  0.00      A    H  
+ATOM    575  HG2 PRO    41      15.790  15.625  14.828  1.00  0.00      A    H  
+ATOM    576  HD1 PRO    41      16.257  13.629  13.174  1.00  0.00      A    H  
+ATOM    577  HD2 PRO    41      17.291  14.889  13.263  1.00  0.00      A    H  
+ATOM    578  N   GLY    42      17.728  12.124  17.884  1.00  7.55      A    N  
+ATOM    579  CA  GLY    42      17.334  10.956  18.691  1.00  8.00      A    C  
+ATOM    580  C   GLY    42      15.875  10.688  18.871  1.00  7.22      A    C  
+ATOM    581  O   GLY    42      15.434   9.550  19.166  1.00  8.41      A    O  
+ATOM    582  HN  GLY    42      18.253  12.863  18.307  1.00  0.00      A    H  
+ATOM    583  HA1 GLY    42      17.734  10.148  18.259  1.00  0.00      A    H  
+ATOM    584  HA2 GLY    42      17.729  11.077  19.602  1.00  0.00      A    H  
+ATOM    585  N   ASP    43      15.036  11.747  18.715  1.00  5.54      A    N  
+ATOM    586  CA  ASP    43      13.564  11.573  18.836  1.00  5.85      A    C  
+ATOM    587  C   ASP    43      12.936  11.227  17.470  1.00  5.87      A    C  
+ATOM    588  O   ASP    43      11.720  11.040  17.428  1.00  7.29      A    O  
+ATOM    589  CB  ASP    43      12.933  12.737  19.580  1.00  6.72      A    C  
+ATOM    590  CG  ASP    43      13.140  14.094  18.958  1.00  8.59      A    C  
+ATOM    591  OD1 ASP    43      14.109  14.303  18.212  1.00  9.59      A    O  
+ATOM    592  OD2 ASP    43      12.267  14.963  19.265  1.00 11.45      A    O  
+ATOM    593  HN  ASP    43      15.413  12.652  18.517  1.00  0.00      A    H  
+ATOM    594  HA  ASP    43      13.363  10.779  19.410  1.00  0.00      A    H  
+ATOM    595  HB1 ASP    43      11.949  12.570  19.635  1.00  0.00      A    H  
+ATOM    596  HB2 ASP    43      13.319  12.759  20.502  1.00  0.00      A    H  
+ATOM    597  N   TYR    44      13.725  11.174  16.425  1.00  5.22      A    N  
+ATOM    598  CA  TYR    44      13.257  10.745  15.081  1.00  5.56      A    C  
+ATOM    599  C   TYR    44      14.275   9.687  14.612  1.00  4.61      A    C  
+ATOM    600  O   TYR    44      14.930   9.862  13.568  1.00  6.04      A    O  
+ATOM    601  CB  TYR    44      13.200  11.914  14.071  1.00  5.41      A    C  
+ATOM    602  CG  TYR    44      12.000  12.819  14.399  1.00  5.34      A    C  
+ATOM    603  CD1 TYR    44      12.119  13.853  15.332  1.00  6.59      A    C  
+ATOM    604  CD2 TYR    44      10.775  12.617  13.762  1.00  5.94      A    C  
+ATOM    605  CE1 TYR    44      11.045  14.675  15.610  1.00  5.97      A    C  
+ATOM    606  CE2 TYR    44       9.676  13.433  14.048  1.00  5.17      A    C  
+ATOM    607  CZ  TYR    44       9.802  14.456  14.996  1.00  5.96      A    C  
+ATOM    608  OH  TYR    44       8.740  15.265  15.269  1.00  8.60      A    O  
+ATOM    609  HN  TYR    44      14.684  11.434  16.537  1.00  0.00      A    H  
+ATOM    610  HA  TYR    44      12.324  10.389  15.134  1.00  0.00      A    H  
+ATOM    611  HB1 TYR    44      14.045  12.446  14.130  1.00  0.00      A    H  
+ATOM    612  HB2 TYR    44      13.099  11.550  13.145  1.00  0.00      A    H  
+ATOM    613  HD1 TYR    44      12.989  13.999  15.802  1.00  0.00      A    H  
+ATOM    614  HD2 TYR    44      10.682  11.880  13.093  1.00  0.00      A    H  
+ATOM    615  HE1 TYR    44      11.154  15.432  16.254  1.00  0.00      A    H  
+ATOM    616  HE2 TYR    44       8.805  13.287  13.578  1.00  0.00      A    H  
+ATOM    617  HH  TYR    44       7.945  14.960  14.745  1.00  0.00      A    H  
+ATOM    618  N   ALA    45      14.342   8.640  15.422  1.00  4.76      A    N  
+ATOM    619  CA  ALA    45      15.445   7.667  15.246  1.00  5.89      A    C  
+ATOM    620  C   ALA    45      15.171   6.533  14.280  1.00  6.67      A    C  
+ATOM    621  O   ALA    45      16.093   5.705  14.039  1.00  7.56      A    O  
+ATOM    622  CB  ALA    45      15.680   7.099  16.682  1.00  6.82      A    C  
+ATOM    623  HN  ALA    45      13.659   8.509  16.140  1.00  0.00      A    H  
+ATOM    624  HA  ALA    45      16.233   8.130  14.839  1.00  0.00      A    H  
+ATOM    625  HB1 ALA    45      16.418   6.425  16.657  1.00  0.00      A    H  
+ATOM    626  HB2 ALA    45      15.943   7.898  17.318  1.00  0.00      A    H  
+ATOM    627  HB3 ALA    45      14.788   6.644  17.011  1.00  0.00      A    H  
+ATOM    628  N   ASN    46      13.966   6.502  13.739  1.00  5.80      A    N  
+ATOM    629  CA  ASN    46      13.512   5.395  12.878  1.00  6.15      A    C  
+ATOM    630  C   ASN    46      13.311   5.853  11.455  1.00  6.61      A    C  
+ATOM    631  OT1 ASN    46      13.539   7.141  11.084  1.00  7.18      A    O  
+ATOM    632  CB  ASN    46      12.266   4.769  13.501  1.00  7.27      A    C  
+ATOM    633  CG  ASN    46      12.538   4.304  14.922  1.00  7.98      A    C  
+ATOM    634  OD1 ASN    46      11.982   4.849  15.886  1.00 11.00      A    O  
+ATOM    635  ND2 ASN    46      13.407   3.298  15.015  1.00 10.32      A    N  
+ATOM    636  OT2 ASN    46      12.893   4.996  10.485  1.00  7.86      A    O  
+ATOM    637  HN  ASN    46      13.338   7.259  13.921  1.00  0.00      A    H  
+ATOM    638  HA  ASN    46      14.216   4.687  12.825  1.00  0.00      A    H  
+ATOM    639  HB1 ASN    46      11.532   5.448  13.515  1.00  0.00      A    H  
+ATOM    640  HB2 ASN    46      11.984   3.984  12.949  1.00  0.00      A    H  
+ATOM    641 HD21 ASN    46      13.819   2.915  14.188  1.00  0.00      A    H  
+ATOM    642 HD22 ASN    46      13.647   2.926  15.912  1.00  0.00      A    H  
+END   
diff --git a/examples/code_fragments/mm/gb_example_view_trajectory.py b/examples/code_fragments/mm/gb_example_view_trajectory.py
new file mode 100644
index 0000000000000000000000000000000000000000..fcdf070da18c00eb866c76b960db212c7e1096ea
--- /dev/null
+++ b/examples/code_fragments/mm/gb_example_view_trajectory.py
@@ -0,0 +1,16 @@
+from ost.gui import trajectory_viewer
+
+"""
+MM - Demo
+
+!!!Requires OpenStructure to be compiled with MM-Support!!!
+
+This demo demonstrates how to actually look at the trajectory created
+in the gb_example_writing_trajectory.py script.
+"""
+
+t = io.LoadCHARMMTraj("gb_example_traj.pdb","gb_example_traj.dcd")
+go = gfx.Entity("gb",t.GetEntity())
+scene.Add(go)
+w = trajectory_viewer.TrajWidget([t],[go])
+w.show()
diff --git a/examples/code_fragments/mm/gb_example_writing_trajectory.py b/examples/code_fragments/mm/gb_example_writing_trajectory.py
new file mode 100644
index 0000000000000000000000000000000000000000..f14f6b3fb0d792f95c3343278de1a5fe8754dc52
--- /dev/null
+++ b/examples/code_fragments/mm/gb_example_writing_trajectory.py
@@ -0,0 +1,42 @@
+from ost.mol.mm import *
+
+"""
+MM - Demo
+
+!!!Requires OpenStructure to be compiled with MM-Support!!!
+
+This demo should show the procedure of setting up a simulation and write
+the results directly to disk.
+"""
+
+
+prot=io.LoadPDB('1CRN.pdb')
+
+#set up the simulation
+settings = Settings()
+settings.integrator = LangevinIntegrator(310,1,0.002)
+settings.add_gbsa = True
+settings.forcefield = LoadCHARMMForcefield()
+settings.nonbonded_cutoff = 8.0
+settings.nonbonded_method = NonbondedMethod.CutoffNonPeriodic
+settings.platform = Platform.CPU
+settings.cpu_properties["CpuThreads"] = "2"
+
+sim = Simulation(prot,settings)
+
+#minimize it
+sim.ApplySD(tolerance = 1.0, max_iterations = 200)
+
+#create a trajectory observer and register it to the simulation
+observer = TrajWriter(10,"gb_example_traj.pdb","gb_example_traj.dcd")
+sim.Register(observer)
+
+#run the simulation
+sim.Steps(10000)
+
+#Trajectory Observer needs to finalize, otherwise you might get a corrupt dcd file
+observer.Finalize()
+
+
+
+
diff --git a/modules/CMakeLists.txt b/modules/CMakeLists.txt
index 9759f2e3bde7ae2708bd4ff61c4e0950d0a3a1db..d05c27ddb43a3b031165ea88e8e235f30b463f3d 100644
--- a/modules/CMakeLists.txt
+++ b/modules/CMakeLists.txt
@@ -1,11 +1,12 @@
 # recursively process all subdirectories
 file(GLOB ALL_FILES *)
-foreach(fname ${ALL_FILES})
+foreach(full_name ${ALL_FILES})
+  get_filename_component(fname ${full_name} NAME)
   if(NOT ${fname} MATCHES ".*\\.svn" 
      AND NOT ${fname} MATCHES ".*CMakeFiles" 
      AND NOT ${fname} MATCHES ".*main"
      AND NOT ${fname} MATCHES "doc")
-      if(IS_DIRECTORY ${fname})
+      if(IS_DIRECTORY ${full_name})
         add_subdirectory(${fname})
       endif()
   endif()
diff --git a/modules/base/pymod/__init__.py.in b/modules/base/pymod/__init__.py.in
index 4b1be9f6cdfd7c504bf4cd7b0b5094b0f5b8a147..89316b83115438dfacae9a19500b388369187001 100644
--- a/modules/base/pymod/__init__.py.in
+++ b/modules/base/pymod/__init__.py.in
@@ -18,7 +18,7 @@
 #------------------------------------------------------------------------------
 
 
-__all__=['Correl', 'FileLogSink', 'FloatList', 'GetCurrentLogSink', 'GetPrefixPath', 'GetSharedDataPath', 'GetVerbosityLevel', 'Histogram', 'IntList', 'LogDebug', 'LogError', 'LogInfo', 'LogScript', 'LogSink', 'LogTrace', 'LogVerbose', 'LogWarning', 'Max', 'Mean', 'Median', 'Min', 'MultiLogSink', 'PopLogSink', 'PopVerbosityLevel', 'PushLogSink', 'PushVerbosityLevel', 'Range', 'SetPrefixPath', 'StdDev', 'StreamLogSink', 'StringList', 'StringLogSink', 'Units', 'VERSION', 'VERSION_MAJOR', 'VERSION_MINOR', 'VERSION_PATCH', 'WITH_NUMPY', 'conop', 'geom', 'io', 'mol', 'seq', 'stutil' @ALL_ADDITIONAL_MODULES@]
+__all__=['CharList','Correl', 'FileLogSink', 'FloatList', 'FloatMatrix', 'FloatMatrix3', 'FloatMatrix4', 'GetCurrentLogSink', 'GetPrefixPath', 'GetSharedDataPath', 'GetVerbosityLevel', 'Histogram', 'IntList', 'LogDebug', 'LogError', 'LogInfo', 'LogScript', 'LogSink', 'LogTrace', 'LogVerbose', 'LogWarning', 'Max', 'Mean', 'Median', 'Min', 'MultiLogSink', 'PopLogSink', 'PopVerbosityLevel', 'PushLogSink', 'PushVerbosityLevel', 'Range', 'SetPrefixPath', 'StdDev', 'StreamLogSink', 'StringList', 'StringLogSink', 'Units', 'VERSION', 'VERSION_MAJOR', 'VERSION_MINOR', 'VERSION_PATCH', 'WITH_NUMPY', 'conop', 'geom', 'io', 'mol', 'seq', 'stutil' @ALL_ADDITIONAL_MODULES@]
 
 from _ost_base import *
 from stutil import *
diff --git a/modules/base/pymod/export_generic_property.cc b/modules/base/pymod/export_generic_property.cc
index f36a12d068d85c476cfec3e12f15c24b8ef76b2d..b5fab8c7a1291ed4b56715a077e28ca7dac59831 100644
--- a/modules/base/pymod/export_generic_property.cc
+++ b/modules/base/pymod/export_generic_property.cc
@@ -34,6 +34,7 @@ void export_GenericProp()
   int (GenericPropContainer::* get_int2)(const String&, int) const = &GenericPropContainer::GetIntProp;
   bool (GenericPropContainer::* get_bool1)(const String&) const = &GenericPropContainer::GetBoolProp;
   bool (GenericPropContainer::* get_bool2)(const String&, bool) const = &GenericPropContainer::GetBoolProp;
+  geom::Vec3 (GenericPropContainer::* get_vec3)(const String&) const = &GenericPropContainer::GetVec3Prop;
 
   class_<GenericPropContainer, boost::noncopyable>("GenericPropContainer",no_init)
     .def("HasProp",&GenericPropContainer::HasProp)
@@ -49,6 +50,8 @@ void export_GenericProp()
     .def("SetBoolProp",&GenericPropContainer::SetBoolProp)
     .def("GetBoolProp",get_bool1)
     .def("GetBoolProp",get_bool2)
+    .def("SetVec3Prop",&GenericPropContainer::SetVec3Prop)
+    .def("GetVec3Prop",get_vec3)
     .def("ClearProps",&GenericPropContainer::ClearProps)
     .def("GetPropAsString",&GenericPropContainer::GetPropAsString)
     ;
diff --git a/modules/base/pymod/wrap_base.cc b/modules/base/pymod/wrap_base.cc
index e1a74154acc8cd264166c732533c63f9adcd9556..b0cfa84655e8574cad01d64f370d8e4ab5001163 100644
--- a/modules/base/pymod/wrap_base.cc
+++ b/modules/base/pymod/wrap_base.cc
@@ -104,10 +104,31 @@ BOOST_PYTHON_MODULE(_ost_base)
   class_<std::vector<String> >("StringList", init<>())
     .def(vector_indexing_suite<std::vector<String>, true>())
   ;
+
+  class_<std::vector<char> >("CharList", init<>())
+    .def(vector_indexing_suite<std::vector<char>, true>())
+  ;
   
   typedef std::vector<int> IntList;
   class_<std::vector<int> >("IntList", init<>())
     .def(vector_indexing_suite<std::vector<int> >())
     .def(geom::VectorAdditions<IntList>())
   ;
+
+  typedef std::vector< FloatList > FloatMatrix;
+  class_<FloatMatrix>("FloatMatrix", init<>())
+  .def(vector_indexing_suite<FloatMatrix>())
+  ;
+
+  typedef std::vector< FloatMatrix > FloatMatrix3;
+  class_<FloatMatrix3>("FloatMatrix3", init<>())
+  .def(vector_indexing_suite<FloatMatrix3>())
+  ;
+
+  typedef std::vector< FloatMatrix3 > FloatMatrix4;
+  class_<FloatMatrix4>("FloatMatrix4", init<>())
+  .def(vector_indexing_suite<FloatMatrix4>())
+  ;
+
+  ;
 }
diff --git a/modules/base/src/export_helper/generic_property_def.hh b/modules/base/src/export_helper/generic_property_def.hh
index ef13e3490ac3b298fc0c50f1f192cb620672c4fd..ff02641c5a1e436a590aa8f23e0529f7dda88031 100644
--- a/modules/base/src/export_helper/generic_property_def.hh
+++ b/modules/base/src/export_helper/generic_property_def.hh
@@ -141,7 +141,9 @@ void const_generic_prop_def(O& bp_class)
     
   Real (C::*get_float1)(const String&, Real) const=&C::GetFloatProp;
   Real (C::*get_float2)(const String&) const=&C::GetFloatProp;
-    
+  
+  geom::Vec3 (C::*get_vec3)(const String&) const=&C::GetVec3Prop;
+
   String (C::*get_str1)(const String&, const String&) const=&C::GetStringProp;
   String (C::*get_str2)(const String&) const=&C::GetStringProp;  
   bp_class
@@ -151,7 +153,8 @@ void const_generic_prop_def(O& bp_class)
     .def("GetBoolProp", get_bool1)
     .def("GetBoolProp", get_bool2)        
     .def("GetFloatProp", get_float1)
-    .def("GetFloatProp", get_float2)    
+    .def("GetFloatProp", get_float2) 
+    .def("GetVec3Prop", get_vec3)    
     .def("GetIntProp", get_int1)
     .def("GetIntProp", get_int2)    
     .def("GetStringProp", get_str1)
@@ -179,6 +182,7 @@ void generic_prop_def(O& bp_class)
     .def("ClearProps",  &C::ClearProps)
     .def("GetPropAsString", &C::GetPropAsString)
     .def("SetFloatProp", &C::SetFloatProp)
+    .def("SetVec3Prop", &C::SetVec3Prop)
     .def("SetIntProp", &C::SetIntProp)
     .def("SetStringProp", &C::SetStringProp)
     .def("GetPropList",&C::GetPropList)
diff --git a/modules/base/src/generic_property.hh b/modules/base/src/generic_property.hh
index 0b336e1ef8daed75e6084ef2d21d7937fa5ecae8..7c0ba516ae6068b079028e940aa5708019cfbf5e 100644
--- a/modules/base/src/generic_property.hh
+++ b/modules/base/src/generic_property.hh
@@ -36,6 +36,7 @@
 #include <ost/module_config.hh>
 #include <ost/invalid_handle.hh>
 #include <ost/message.hh>
+#include <ost/geom/vec3.hh>
 
 namespace ost {
 
@@ -45,8 +46,8 @@ struct  DLLEXPORT GenericPropError: public Error
     Error(m)
   {}
 };
-  
-typedef boost::variant<String, Real, int, bool> GenericPropValue;
+
+typedef boost::variant<String, Real, int, bool, geom::Vec3> GenericPropValue;
 
 ///  \brief base class for the implementation
 class  TEMPLATE_EXPORT GenericPropContainerImpl
@@ -256,6 +257,13 @@ public:
     return this->gp_get<bool>(key);
   }
 
+  /// \brief returns Vec3 property, raises an exception if it does not exist
+  geom::Vec3 GetVec3Prop(const String& key) const
+  {
+    CheckHandleValidity(*static_cast<const H*>(this));    
+    return this->gp_get<geom::Vec3>(key);
+  }
+
   /// \brief returns String property, or the given default if it does not exist
   String GetStringProp(const String& key, const String& def) const
   {
@@ -364,6 +372,13 @@ public:
     this->GetImpl()->GenericProp(key)=value;
   }
   
+  /// \ brief sets Vec3 property
+  void SetVec3Prop(const String& key, geom::Vec3 value)
+  {
+    CheckHandleValidity(*static_cast<const H*>(this));    
+    this->GetImpl()->GenericProp(key)=value;
+  } 
+
   void RemoveProp(const String& key)
   {
     CheckHandleValidity(*static_cast<const H*>(this));
diff --git a/modules/base/src/string_ref.hh b/modules/base/src/string_ref.hh
index 802dd594069257ba17213a02d73144018e635b32..38ab290bfa7e97e5aac93b09180dc9b89e0f0af5 100644
--- a/modules/base/src/string_ref.hh
+++ b/modules/base/src/string_ref.hh
@@ -76,7 +76,7 @@ public:
   /// \brief returns a substring of the string
   ///
   /// \param pos the starting position of the substring
-  /// \param length is the length of the string. if std::string::npos, the 
+  /// \param n is the length of the string. if std::string::npos, the
   ///     substring goes from \p pos to the end of the string
   /// The function does on purpose not perform any boundary check in release 
   /// mode. It's the duty of the caller to make sure the string has the required 
diff --git a/modules/base/tests/test_table.py b/modules/base/tests/test_table.py
index 4ee2c8b67b90b828067d46c198e504b9b4590926..347183262b12b7881631d952da072652c5407996 100644
--- a/modules/base/tests/test_table.py
+++ b/modules/base/tests/test_table.py
@@ -42,8 +42,8 @@ except ImportError:
   print "Could not find matplotlib: ignoring some table class unit tests"
   
 try:
-  import Image
-  import ImageChops
+  from PIL import Image
+  from PIL import ImageChops
 except ImportError:
   HAS_PIL=False
   print "Could not find python imagine library: ignoring some table class unit tests"
diff --git a/modules/bindings/doc/bindings.rst b/modules/bindings/doc/bindings.rst
index 9b46608366b909a7fcee559f19ad2e3f87488ea9..966ba274fb1a28471cf1aebd34ef8b6c55725901 100644
--- a/modules/bindings/doc/bindings.rst
+++ b/modules/bindings/doc/bindings.rst
@@ -15,6 +15,7 @@ So far, the binding module includes:
 
   dssp
   blast
+  hhblits
   msms
   tmtools
   clustalw
diff --git a/modules/bindings/doc/hhblits.rst b/modules/bindings/doc/hhblits.rst
new file mode 100644
index 0000000000000000000000000000000000000000..c822d5bd0641d1fc6a863066f4196e3fe77f467a
--- /dev/null
+++ b/modules/bindings/doc/hhblits.rst
@@ -0,0 +1,128 @@
+:mod:`~ost.bindings.hhblits` - Search related sequences in databases
+================================================================================
+
+.. module:: ost.bindings.hhblits
+  :synopsis: Search related sequences in databases
+
+Introduction
+--------------------------------------------------------------------------------
+
+HHblits is a sequence search tool like BLAST, able to find more distant
+homologs This is achieved by performing `profile-profile searches`. In BLAST, a
+\query sequence is searched against a sequence database. That is a
+`sequence-sequence search`. HHblits works on a profile database, usually that
+one is provided, queried with a sequence profile. The latter one needs to be
+calculated before the actual search. In very simple words, HHblits is using
+per-sequence scoring functions to be more sensitive, in this particular case
+Hidden Markov models. The software suite needed for HHblits can be found
+`here <http://toolkit.tuebingen.mpg.de/hhblits>`_.
+
+
+Examples
+--------------------------------------------------------------------------------
+
+A typical search: Get an instance of the bindings, build the search profile out
+of the query sequence, run the search and iterate results. Since
+:class:`~HHblits` works with a :class:`~ost.seq.SequenceHandle` or a FastA
+file, both ways are shown.
+
+First query by sequence:
+
+.. code-block:: python
+
+  from ost.bindings import hhblits
+
+  # get a SequenceHandle
+  query_seq = seq.CreateSequence('Query',
+                                 'MRIILLGAPGAGKGTQAQFIMEKYGIPQISTGDMLRAAVKSGS'+
+                                 'ELGKQAKDIMDAGKLVTDELVIALVKERIAQEDCRNGFLLDGF'+
+                                 'PRTIPQADAMKEAGINVDYVLEFDVPDELIVDRIVGRRVHAPS'+
+                                 'GRVYHVKFNPPKVEGKDDVTGEELTTRKDDQEETVRKRLVEYH'+
+                                 'QMTAPLIGYYYYSKEAEAGNTKYAKVDGTKPVAEVRADLEKILG')
+
+  # set up the search environment
+  # $EBROOTHHMINSUITE points to the root of a HHsuite installation
+  hh = hhblits.HHblits(query_seq, os.getenv('EBROOTHHMINSUITE'))
+
+  # now create a search profile for the query sequence against the NR20 db
+  # provided on the HHblits web page, nr20_12Aug11 is just the prefix common to
+  # all db files, so `ls hhtools/nr20_12Aug11*` would list all of them
+  a3m_file = hh.BuildQueryMSA(nrdb='hhtools/nr20_12Aug11')
+
+  # search time! we just search against NR20 again, but every HHblits db is
+  # working here, e.g. one build from all the sequences in PDB
+  hit_file = hh.Search(a3m_file, 'hhtools/nr20_12Aug11')
+
+  # lets have a look at the resuls
+  with open(hit_file) as hit_fh:
+      header, hits = hhblits.ParseHHblitsOutput(hit_fh)
+  for hit in hits:
+      print hit.aln
+
+Very similar going by file:
+
+.. code-block:: python
+
+  from ost.bindings import hhblits
+
+  # set up the search environment
+  #  $EBROOTHHMINSUITE points to the root of a HHsuite installation
+  hh = hhblits.HHblits('query.fas', os.getenv('EBROOTHHMINSUITE'))
+
+  # now create a search profile for the query sequence against the NR20 db
+  # provided on the HHblits web page, nr20_12Aug11 is just the prefix common to
+  # all db files, so `ls hhtools/nr20_12Aug11*` would list all of them
+  a3m_file = hh.BuildQueryMSA(nrdb='hhtools/nr20_12Aug11')
+
+  # search time! we just search against NR20 again, but every HHblits db is
+  # working here, e.g. one build from all the sequences in PDB
+  hit_file = hh.Search(a3m_file, 'hhtools/nr20_12Aug11')
+
+  # lets have a look at the resuls
+  with open(hit_file) as hit_fh:
+      header, hits = hhblits.ParseHHblitsOutput(hit_fh)
+  for hit in hits:
+      print hit.aln
+
+The alignments produced by HHblits are sometimes slightly better than by BLAST,
+so one may want to extract them:
+
+.. code-block:: python
+
+  from ost.bindings import hhblits
+
+  # set up the search environment
+  #  $EBROOTHHMINSUITE points to the root of a HHsuite installation
+  hh = hhblits.HHblits('query.fas', os.getenv('EBROOTHHMINSUITE'))
+
+  # now create a search profile for the query sequence against the NR20 db
+  # provided on the HHblits web page, nr20_12Aug11 is just the prefix common to
+  # all db files, so `ls hhtools/nr20_12Aug11*` would list all of them
+  a3m_file = hh.BuildQueryMSA(nrdb='hhtools/nr20_12Aug11')
+
+  # note that ParseA3M is not a class method but a module function
+  output = hhblits.ParseA3M(open(a3m_file))
+
+  print output['msa']
+
+
+Binding API
+--------------------------------------------------------------------------------
+
+.. autoclass:: ost.bindings.hhblits.HHblits
+   :members:
+
+.. autoclass:: ost.bindings.hhblits.HHblitsHit
+
+.. autoclass:: ost.bindings.hhblits.HHblitsHeader
+
+.. autofunction:: ost.bindings.hhblits.ParseHHblitsOutput
+
+.. autofunction:: ost.bindings.hhblits.ParseA3M
+
+.. autofunction:: ost.bindings.hhblits.ParseHeaderLine
+
+.. autofunction:: ost.bindings.hhblits.ParseHHM
+
+.. autofunction:: ost.bindings.hhblits.EstimateMemConsumption
+..  LocalWords:  HHblits homologs
diff --git a/modules/bindings/pymod/CMakeLists.txt b/modules/bindings/pymod/CMakeLists.txt
index 52c855f25e792401fde6f6befa48ca443009f91f..ba312b609546b16b403236eb47396d33eac71b5f 100644
--- a/modules/bindings/pymod/CMakeLists.txt
+++ b/modules/bindings/pymod/CMakeLists.txt
@@ -8,8 +8,11 @@ dssp.py
 clustalw.py
 utils.py
 naccess.py
+hhblits.py
 blast.py
 cadscore.py
 kclust.py
+ialign.py
+align_3dcomb.py
 )
 pymod(NAME bindings PY ${OST_BINDINGS})
diff --git a/modules/bindings/pymod/__init__.py b/modules/bindings/pymod/__init__.py
index e7f855fe8211181bcf4ff603b0b6cddb4486df2e..ab3668069f13b1b3e66dbae71c895dbb4a7128fc 100644
--- a/modules/bindings/pymod/__init__.py
+++ b/modules/bindings/pymod/__init__.py
@@ -1,9 +1,10 @@
 from ost.bindings import dssp
 from ost.bindings import msms
+from ost.bindings import hhblits
 from ost.bindings import blast
 from ost.bindings import tmtools
 from ost.bindings import naccess
 from ost.bindings import hbplus
 from ost.bindings import clustalw
 from ost.bindings import cadscore
-
+from ost.bindings import align_3dcomb
diff --git a/modules/bindings/pymod/align_3dcomb.py b/modules/bindings/pymod/align_3dcomb.py
new file mode 100644
index 0000000000000000000000000000000000000000..ca709fc15fcadfe8dbb0765466cf874e3b35c231
--- /dev/null
+++ b/modules/bindings/pymod/align_3dcomb.py
@@ -0,0 +1,129 @@
+"""
+3DCOMB module
+
+Author: Niklaus Johner
+
+This module is for structural alignment from OpenStructure using the external program 3DCOMB.
+
+How To Use This Module:
+ 1. Import it (e.g. as "from ost.bindings import align_3dcomb")
+ 2. Use it (e.g. as "alignment,transformation_list = align_3dcomb.AlignStructures(view_list)")
+
+Requirement:
+ - 3DCOMB installed
+"""
+
+from ost.bindings import utils
+import subprocess,os
+from ost import settings
+from ost import io
+import ost
+import ost.geom
+
+def _GetExecutable(comb_exe, comb_env):
+  """
+    Function to check if 3DCOMB executable is present
+    
+    :param comb_exe: Explicit path to 3DCOMB executable
+    :param msms_env: Environment variable pointing to 3DCOMB executable
+    :returns: Path to the executable
+    :raises:  :class:`~ost.FileNotFound` if executable is not found
+    """
+  return settings.Locate(['3DCOMB_linux','3DCOMB_win.exe'], explicit_file_name=comb_exe,
+                         env_name=comb_env)
+
+def _SetupFiles(structure_list):
+  """
+    Setup files for MSMS calculation in temporary directory
+    
+    :param structure_list: A list of EntityView that will be aligned.\
+      each EntityView should contain a single chain and each residue needs to have a CA atom.
+    :returns: calss:settings.TempDir
+    :raises:  class:`RuntimeError` if on of the Views is not valid
+  """
+  
+  #write out temporary pdb files
+  if not all([ev.IsValid() for ev in structure_list]):
+    raise RuntimeError, "Invalid EntityView in structure_list"
+  tpd=utils.TempDirWithFiles(structure_list)
+  
+  #Write out the file containing the list of all structures
+  outfile=open(os.path.join(tpd.dirname,'list'),'w')
+  outfile.write('\n'.join(tpd.files))
+  outfile.close()
+  return tpd
+
+
+def _Run3DCOMB(command,tpd):
+  """
+    Run the 3DCOMB alignment command
+    
+    This functions starts the external 3DCOMB executable and returns the stdout of
+    3DCOMB.
+    
+    :param command:          Command to execute
+    :returns:                 stdout of 3DCOMB
+    :raises:              :class:`CalledProcessError` for non-zero return value
+    """
+  outname=os.path.join(tpd.dirname,'align.out')
+  outfile=open(outname,'w')
+  returncode=subprocess.call(command, shell=True, stdout=outfile)
+  outfile.close()
+  #check for successful completion of 3DCOMB
+  if returncode!=0:
+    print "WARNING: 3DCOMB error\n"
+    raise subprocess.CalledProcessError
+  return returncode
+
+def _ParseOutput(tpd):
+  #Read Alignment
+  ali=io.LoadAlignment(os.path.join(tpd.dirname,'list.ali'),'fasta')
+  for i in range(ali.GetCount()):
+    ali.SetSequenceName(i,'struc{0}'.format(i))
+  #Read Transformations
+  f=open(os.path.join(tpd.dirname,'list.rmt'),'r')
+  Tl=[]
+  for l in f:
+    if l.startswith('>'):
+      fl=ost.FloatList()
+      for i in range(3):
+        l=f.next()
+        sl=l.split(',')
+        fl.extend([float(el) for el in sl[0].split()+[sl[1]]])
+      fl.extend([0,0,0,1])
+      T=ost.geom.Transform()
+      M=ost.geom.Mat4(*fl)
+      T.SetMatrix(M)
+      Tl.append(T)
+  #Read standard output
+  outfile=open(os.path.join(tpd.dirname,'align.out'),'r')
+  results={}
+  for line in outfile:
+    if line.startswith('Objective function value is'):results['objective_function']=float(line.split()[-1])
+    if line.startswith('CORE_LEN'):
+      l=line.split(',')
+      for el in l:
+        s=el.split('=')
+        results[s[0]]=float(s[1])
+  return ali,Tl,results
+
+
+def AlignStructures(structure_list,apply_transform=False,name_list=None,comb_exe=None,comb_env=None):
+  comb_executable=_GetExecutable(comb_exe, comb_env)
+  tpd=_SetupFiles(structure_list)
+  command=' '.join([comb_executable,os.path.join(tpd.dirname,'list')])
+  returncode=_Run3DCOMB(command,tpd)
+  try:ali,Tl,results=_ParseOutput(tpd)
+  except:
+    print 'could not parse output'
+    raise RuntimeError
+  if apply_transform:
+    for T,ev in zip(Tl,structure_list):
+      ev.handle.FixTransform()
+      ev.handle.SetTransform(T)
+  tpd.Cleanup()
+  return ali,Tl,results
+
+
+
+
diff --git a/modules/bindings/pymod/hhblits.py b/modules/bindings/pymod/hhblits.py
new file mode 100644
index 0000000000000000000000000000000000000000..dd51b1207ebb7869512dd522d16647136df3177f
--- /dev/null
+++ b/modules/bindings/pymod/hhblits.py
@@ -0,0 +1,741 @@
+'''HHblits wrapper.
+'''
+
+import subprocess
+import datetime
+import os
+import shutil
+import tempfile
+
+import ost
+from ost import settings, seq
+from ost.bindings import utils
+
+class HHblitsHit:
+    """
+    A hit found by HHblits
+
+    .. attribute:: hit_id
+
+      String identifying the hit
+
+      :type: :class:`str`
+
+    .. attribute:: aln
+
+      Pairwise alignment containing the aligned part between the query and the
+      target. First sequence is the query, the second sequence the target.
+
+      :type: :class:`~ost.seq.AlignmentHandle`
+
+    .. attribute:: score
+
+      The alignment score
+
+      :type: :class:`float`
+
+    .. attribute:: ss_score
+
+      The secondary structure score
+
+      :type: :class:`float`
+
+    .. attribute:: evalue
+
+      The E-value of the alignment
+
+      :type: :class:`float`
+
+    .. attribute:: pvalue
+
+      The P-value of the alignment
+
+      :type: :class:`float`
+
+    .. attribute:: prob
+
+      The probability of the alignment (between 0 and 100)
+
+      :type: :class:`float`
+    """
+    def __init__(self, hit_id, aln, score, ss_score, evalue, pvalue, prob):
+        self.hit_id = hit_id
+        self.aln = aln
+        self.score = score
+        self.ss_score = ss_score
+        self.evalue = evalue
+        self.prob = prob
+        self.pvalue = pvalue
+
+class HHblitsHeader:
+    """Stats from the beginning of search output.
+
+    .. attribute:: query
+
+      The name of the query sequence
+
+      :type: :class:`str`
+
+    .. attribute:: match_columns
+
+      Total of aligned Match columns
+
+      :type: :class:`int`
+
+    .. attribute:: n_eff
+
+      Value of the ``-neff`` option
+
+      :type: :class:`float`
+
+    .. attribute:: searched_hmms
+
+      Number of profiles searched
+
+      :type: :class:`int`
+
+    .. attribute:: date
+
+      Execution date
+
+      :type: :class:`datetime.datetime`
+
+    .. attribute:: command
+
+      Command used to run
+
+      :type: :class:`str`
+    """
+    def __init__(self):
+        self.query = ''
+        self.match_columns = 0
+        self.n_eff = 0
+        self.searched_hmms = 0
+        self.date = None
+        self.command = ''
+
+def ParseHeaderLine(line):
+    '''Fetch header content.
+
+    First, we seek the start of the identifier, that is, the first whitespace
+    after the hit number + 1. Since the identifier may contain whitespaces
+    itself, we cannot split the whole line
+
+    :param line: Line from the output header.
+    :type line: :class:`str`
+
+    :return: Hit information
+    :rtype: :class:`HHblitsHit`
+    '''
+    for i in range(0, len(line)):
+        if line[i].isdigit():
+            break
+    for i in range(i, len(line)):
+        if line[i] == ' ':
+            break
+    assert len(line)-i >= 31 and line[i+1] != ' '
+    hit_id = line[i+1:i+31].strip()
+    fields = line[i+32:].split()
+    prob = float(fields[0])
+    evalue = float(fields[1])
+    pvalue = float(fields[2])
+    score = float(fields[3])
+    ss_score = float(fields[4])
+    offsets = (int(fields[6].split('-')[0]), int(fields[7].split('-')[0]))
+    return (HHblitsHit(hit_id, None, score, ss_score, evalue, pvalue, prob),
+            offsets)
+
+def ParseHHblitsOutput(output):
+    """
+    Parses the HHblits output and returns a tuple of :class:`HHblitsHeader` and
+    a list of :class:`HHblitsHit` instances.
+
+    :param output: output of a :meth:`HHblits.Search`, needs to be iteratable,
+                   e.g. an open file handle
+    :type output: :class:`file`/ iteratable
+
+    :return: a tuple of the header of the search results and the hits
+    :rtype: (:class:`HHblitsHeader`, :class:`HHblitsHit`)
+    """
+    lines = iter(output)
+    def _ParseHeaderSection(lines):
+        value_start_column = 14
+        date_pattern = '%a %b %d %H:%M:%S %Y'
+        header = HHblitsHeader()
+        line = lines.next()
+        assert line.startswith('Query')
+        header.query = line[value_start_column:].strip()
+        line = lines.next()
+        assert line.startswith('Match_columns')
+        header.match_columns = int(line[value_start_column:].strip())
+
+        line = lines.next()
+        assert line.startswith('No_of_seqs')
+
+        line = lines.next()
+        assert line.startswith('Neff')
+        header.n_eff = float(line[value_start_column:].strip())
+
+        line = lines.next()
+        assert line.startswith('Searched_HMMs')
+        header.searched_hmms = int(line[value_start_column:].strip())
+
+        line = lines.next()
+        assert line.startswith('Date')
+        value = line[value_start_column:].strip()
+        header.date = datetime.datetime.strptime(value, date_pattern)
+
+        line = lines.next()
+        assert line.startswith('Command')
+        header.command = line[value_start_column:].strip()
+
+        line = lines.next()
+        assert len(line.strip()) == 0
+        return header
+
+    def _ParseTableOfContents(lines):
+        assert lines.next().startswith(' No Hit')
+        hits = []
+        while True:
+            line = lines.next()
+            if len(line.strip()) == 0:
+                return hits
+            hits.append(ParseHeaderLine(line))
+        return hits
+
+    def _ParseResultBody(query_id, hits, lines):
+        entry_index = None
+        query_str = ''
+        templ_str = ''
+        def _MakeAln(query_id, hit_id, query_string, templ_string,
+                     q_offset, t_offset):
+            s1 = seq.CreateSequence(query_id, query_string)
+            s1.offset = q_offset-1
+            s2 = seq.CreateSequence(hit_id, templ_string)
+            s2.offset = t_offset-1
+            return seq.CreateAlignment(s1, s2)
+        try:
+            while True:
+                line = lines.next()
+                if len(line.strip()) == 0:
+                    continue
+                if line.startswith('Done!'):
+                    if len(query_str) > 0:
+                        hits[entry_index][0].aln = _MakeAln(\
+                            query_id, hits[entry_index][0].hit_id,
+                            query_str, templ_str, *hits[entry_index][1])
+                    return [h for h, o in hits]
+                if line.startswith('No '):
+                    if len(query_str) > 0:
+                        hits[entry_index][0].aln = _MakeAln(\
+                            query_id, hits[entry_index][0].hit_id,
+                            query_str, templ_str, *hits[entry_index][1])
+                    entry_index = int(line[3:].strip())-1
+                    hits[entry_index][0].hit_id = lines.next()[1:].strip()
+                    query_str = ''
+                    templ_str = ''
+                    # skip the next line. It doesn't contain information we
+                    # don't already know
+                    lines.next()
+                    continue
+                assert entry_index != None
+                if line[1:].startswith(' Consensus'):
+                    continue
+                if line[1:].startswith(' ss_pred'):
+                    continue
+                if line[1:].startswith(' ss_conf'):
+                    continue
+                if line.startswith('T '):
+                    end_pos = line.find(' ', 22)
+                    assert end_pos != -1
+                    templ_str += line[22:end_pos]
+                if line.startswith('Q '):
+                    end_pos = line.find(' ', 22)
+                    assert end_pos != -1
+                    query_str += line[22:end_pos]
+        except StopIteration:
+            if len(query_str) > 0:
+                hits[entry_index][0].aln = _MakeAln(query_id,
+                                                    hits[entry_index][0].hit_id,
+                                                    query_str, templ_str,
+                                                    *hits[entry_index][1])
+            return [h for h, o in hits]
+    header = _ParseHeaderSection(lines)
+    # parse the table of contents. This is neccessary as some of the properties
+    # (i.e. start of alignment) we need are only given there. From the TOC we
+    # create a list of hits that is then further filled with data when we parse
+    # the actual result body
+    hits = _ParseTableOfContents(lines)
+    return header, _ParseResultBody(header.query, hits, lines)
+
+def ParseA3M(a3m_file):
+    '''
+    Parse secondary structure information and the multiple sequence alignment 
+    out of an A3M file.
+    
+    :param a3m_file: Iteratable containing the lines of the A3M file
+    :type a3m_file: iteratable, e.g. an opened file
+    
+    :return: Dictionary containing "ss_pred" (:class:`list`), "ss_conf"
+             (:class:`list`) and "msa" (:class:`~ost.seq.AlignmentHandle`).
+    '''
+    profile_dict = dict()
+    state = 'NONE'
+    pred_seq_txt = ''
+    conf_seq_txt = ''
+    msa_seq = list()
+    msa_head = list()
+    for line in a3m_file:
+        if len(line.rstrip()) == 0:
+            continue
+        elif line.startswith('>ss_pred'):
+            state = 'sspred'
+            continue
+        elif line.startswith('>ss_conf'):
+            state = 'ssconf'
+            continue
+        elif line[0] == '>':
+            if state == 'ssconf' or state == 'msa':
+                msa_seq.append('')
+                msa_head.append(line[1:].rstrip())
+            else:
+                raise IOError('The A3M file is missing the "ss_conf" section')
+            state = 'msa'
+            continue
+
+        if state == 'sspred':
+            pred_seq_txt += line.rstrip()
+        elif state == 'ssconf':
+            conf_seq_txt += line.rstrip()
+        elif state == 'msa':
+            msa_seq[len(msa_seq)-1] += line.rstrip()
+
+    profile_dict['ss_pred'] = list()
+    profile_dict['ss_conf'] = list()
+    for i in range(0, len(pred_seq_txt)):
+        profile_dict['ss_pred'].append(pred_seq_txt[i])
+        profile_dict['ss_conf'].append(int(conf_seq_txt[i]))
+    
+    # post processing
+    # MSA
+    profile_dict['msa'] = None
+    if len(msa_seq) > 1:
+        t = msa_seq[0]
+        al = seq.AlignmentList()
+        for i in range(1, len(msa_seq)):
+          qs = ''
+          ts = ''
+          k = 0
+          for c in msa_seq[i]:
+            if c.islower():
+              qs += '-'
+              ts += c.upper()
+            else:
+              qs += t[k]
+              ts += c
+              k += 1
+          nl = seq.CreateAlignment(seq.CreateSequence(msa_head[0], qs), 
+                                 seq.CreateSequence(msa_head[i], ts))
+          al.append(nl)
+        profile_dict['msa'] = seq.alg.MergePairwiseAlignments(\
+                                                al,
+                                                seq.CreateSequence(msa_head[0],
+                                                                   t))
+    return profile_dict
+
+
+def ParseHHM(profile):
+    '''Parse secondary structure information and the MSA out of an HHM profile.
+
+    :param profile: Opened file handle holding the profile.
+    :type profile: :class:`file`
+
+    :return: Dictionary containing "ss_pred" (:class:`list`), "ss_conf"
+             (:class:`list`), "msa" (:class:`~ost.seq.AlignmentHandle`) and
+             "consensus" (~ost.seq.SequenceHandle).
+    '''
+    profile_dict = dict()
+    state = 'NONE'
+    pred_seq_txt = ''
+    conf_seq_txt = ''
+    consensus_txt = ''
+    msa_seq = list()
+    msa_head = list()
+    for line in profile:
+        if len(line.rstrip()) == 0:
+            continue
+        if line.rstrip() == '>ss_pred PSIPRED predicted secondary structure':
+            state = 'sspred'
+            continue
+        elif line.rstrip() == '>ss_conf PSIPRED confidence values':
+            state = 'ssconf'
+            continue
+        elif line.rstrip() == '>Consensus':
+            state = 'consensus'
+            continue
+        elif line[0] == '>':
+            if state == 'consensus' or state == 'msa':
+                msa_seq.append('')
+                msa_head.append(line[1:].rstrip())
+            else:
+                raise IOError('Profile file "%s" is missing ' % profile.name+
+                              'the "Consensus" section')
+            state = 'msa'
+            continue
+        elif line[0] == '#':
+            state = 'NONE'
+            continue
+
+        if state == 'sspred':
+            pred_seq_txt += line.rstrip()
+        elif state == 'ssconf':
+            conf_seq_txt += line.rstrip()
+        elif state == 'msa':
+            msa_seq[len(msa_seq)-1] += line.rstrip()
+        elif state == 'consensus':
+            consensus_txt += line.rstrip()
+
+    profile_dict['ss_pred'] = list()
+    profile_dict['ss_conf'] = list()
+    for i in range(0, len(pred_seq_txt)):
+        profile_dict['ss_pred'].append(pred_seq_txt[i])
+        profile_dict['ss_conf'].append(int(conf_seq_txt[i]))
+
+    # post processing
+    # MSA
+    profile_dict['msa'] = None
+    if len(msa_seq):
+        t = msa_seq[0]
+        al = seq.AlignmentList()
+        for i in range(1, len(msa_seq)):
+            qs = ''
+            ts = ''
+            k = 0
+            for c in msa_seq[i]:
+                if c.islower():
+                    qs += '-'
+                    ts += c.upper()
+                else:
+                    qs += t[k]
+                    ts += c
+                    k += 1
+            nl = seq.CreateAlignment(seq.CreateSequence(msa_head[0], qs),
+                                     seq.CreateSequence(msa_head[i], ts))
+            al.append(nl)
+        profile_dict['msa'] = seq.alg.MergePairwiseAlignments(\
+                                            al,
+                                            seq.CreateSequence(msa_head[0], t))
+      #print profile_dict['msa'].ToString(80)
+    # Consensus
+    profile_dict['consensus'] = seq.CreateSequence('Consensus', consensus_txt)
+
+    return profile_dict
+
+def EstimateMemConsumption():
+    """
+    Estimate the memory needed by HHblits. By default it uses not more than 3G.
+    Also for small sequences it already uses quite some memnmory (46AA, 1.48G).
+    And since the memory consumption could depend on the iterative search runs,
+    how many hits are found in each step, we just go with 4G, here.
+
+    :return: Assumed memory consumtion
+    :rtype: (:class:`float`, :class:`str`)
+    """
+    return 4.0, 'G'
+
+class HHblits:
+    """
+    Initialise a new HHblits "search" for the given query. Query may either
+    be a :class:`~ost.seq.SequenceHandle` or a string. In the former case, the
+    query is the actual query sequence, in the latter case, the query is the
+    filename to the file containing the query.
+
+    :param query: Query sequence as file or sequence.
+    :type query: :class:`~ost.seq.SequenceHandle` or :class:`str`
+    :param hhsuite_root: Path to the top-level directory of your hhsuite
+                         installation.
+    :type hhsuite_root: :class:`str`
+    :param hhblits_bin: Name of the hhblits binary. Will only be used if
+                        :attr:`hhsuite_root`:file:`/bin/hhblits` does not exist.
+    :type hhblits_bin: :class:`str`
+    :param working_dir: Directory for temporary files. Will be created if not
+                        present but **not** automatically deleted.
+    :type working_dir: :class:`str`
+
+    """
+    OUTPUT_PREFIX = 'query_hhblits'
+    def __init__(self, query, hhsuite_root, hhblits_bin=None, working_dir=None):
+        self.query = query
+        self.hhsuite_root = hhsuite_root
+        if os.path.exists(os.path.join(self.hhsuite_root, 'bin/hhblits')):
+            self.bin_dir = os.path.join(self.hhsuite_root, 'bin')
+            self.hhblits_bin = os.path.join(self.hhsuite_root, 'bin/hhblits')
+        else:
+            self.hhblits_bin = settings.Locate('hhblits',
+                                               explicit_file_name=hhblits_bin)
+            self.bin_dir = os.path.dirname(self.hhblits_bin)
+        self.hhlib_dir = os.path.join(self.hhsuite_root, 'lib', 'hh')
+        if working_dir:
+            self.needs_cleanup = False
+            self.working_dir = working_dir
+            if not os.path.exists(working_dir):
+                os.mkdir(working_dir)
+            if isinstance(query, str):
+                self.filename = os.path.abspath(os.path.join(
+                    self.working_dir, os.path.basename(query)))
+                if self.filename != os.path.abspath(query):
+                    shutil.copy(query, self.filename)
+            else:
+                self.filename = os.path.join(self.working_dir,
+                                             '%s.fasta' % HHblits.OUTPUT_PREFIX)
+                ost.io.SaveSequence(query, self.filename)
+        else:
+            self.needs_cleanup = True
+            if isinstance(query, str):
+                self.working_dir = tempfile.mkdtemp()
+                self.filename = os.path.abspath(os.path.join(
+                    self.working_dir, os.path.basename(query)))
+                shutil.copy(query, self.filename)
+            else:
+                tmp_dir = utils.TempDirWithFiles((query,))
+                self.working_dir = tmp_dir.dirname
+                self.filename = tmp_dir.files[0]
+
+    def Cleanup(self):
+        """Delete temporary data.
+
+        Delete temporary data if no working dir was given. Controlled by
+        :attr:`needs_cleanup`.
+        """
+        if self.needs_cleanup and os.path.exists(self.working_dir):
+            shutil.rmtree(self.working_dir)
+
+    def BuildQueryMSA(self, nrdb, iterations=1, mact=None, cpu=1):
+        """Builds the MSA for the query sequence
+
+        This function directly uses hhblits of hhtools. While in theory it
+        would be possible to do this by PSI-blasting on our own, hhblits is
+        supposed to be faster. Also it is supposed to prevent alignment
+        corruption. The alignment corruption is caused by low-scoring terminal
+        alignments that draw the sequences found by PSI-blast away from the
+        optimum. By removing these low scoring ends, part of the alignment
+        corruption can be suppressed. hhblits does **not** call PSIPRED on the
+        MSA to predict the secondary structure of the query sequence. This is
+        done by addss.pl of hhtools. The predicted secondary structure is
+        stored together with the sequences identified by hhblits.
+
+        :param nrdb: Database to be align against; has to be an hhblits database
+        :type nrdb: :class:`str`
+
+        :param iterations: Number of hhblits iterations
+        :type iterations: :class:`int`
+
+        :param mact: ``-mact`` of hhblits
+        :type mact: :class:`float`
+
+        :param cpu: ``-cpu`` of hhblits
+        :type cpu: :class:`int`
+
+        :return: the path to the MSA file
+        :rtype: :class:`str`
+        """
+        a3m_file = '%s.a3m' % os.path.splitext(self.filename)[0]
+        ost.LogInfo('Using hhblits from "%s"' % self.hhsuite_root)
+        full_nrdb = os.path.join(os.path.abspath(os.path.split(nrdb)[0]),
+                                 os.path.split(nrdb)[1])
+        # create MSA
+        hhblits_cmd = '%s -e 0.001 -cpu %d -i %s -oa3m %s -d %s -n %d' % \
+                      (self.hhblits_bin, cpu, self.filename, a3m_file,
+                       full_nrdb, iterations)
+        if mact:
+            hhblits_cmd += '-mact %f' % mact
+        job = subprocess.Popen(hhblits_cmd, shell=True, cwd=self.working_dir,
+                               stdout=subprocess.PIPE, stderr=subprocess.PIPE)
+        sout, _ = job.communicate()
+        #lines = sout.splitlines()
+        #for l in lines:
+        #    print l.strip()
+        #lines = serr.splitlines()
+        #for l in lines:
+        #    print l.strip()
+        if not os.path.exists(a3m_file):
+            ost.LogWarning('Building query profile failed, no output')
+            return a3m_file
+        # add secondary structure annotation
+        addss_cmd = "%s %s" % (os.path.join(self.hhsuite_root,
+                                            'lib/hh/scripts/addss.pl'),
+                               a3m_file)
+        env = dict(os.environ)
+        env.update({'PERL5LIB' : os.path.join(self.hhsuite_root,
+                                              'lib/hh/scripts'),
+                    'HHLIB' : self.hhlib_dir,
+                    'PATH' : '%s:%s' % (os.path.join(self.hhsuite_root, 'bin'),
+                                        os.environ['PATH'])})
+        job = subprocess.Popen(addss_cmd, shell=True, cwd=self.working_dir,
+                               env=env, stdout=subprocess.PIPE,
+                               stderr=subprocess.PIPE)
+        sout, _ = job.communicate()
+        lines = sout.splitlines()
+        for line in lines:
+            if 'error' in line.lower():
+                ost.LogWarning('Predicting secondary structure for MSA '+
+                               '(%s) failed, on command: %s' % (a3m_file, line))
+            return a3m_file
+        return a3m_file
+
+    def A3MToProfile(self, a3m_file, hhm_file=None):
+        """
+        Converts the A3M alignment file to a hhm profile. If hhm_file is not
+        given, the output file will be set to <:attr:`a3m_file`-basename>.hhm.
+
+        :param a3m_file: input MSA
+        :type a3m_file: :class:`str`
+
+        :param hhm_file: output file name 
+        :type hhm_file: :class:`str`
+
+        :return: the path to the profile
+        :rtype: :class:`str`
+        """
+        hhmake = os.path.join(self.bin_dir, 'hhmake')
+        if not hhm_file:
+            hhm_file = '%s.hhm' % os.path.splitext(a3m_file)[0]
+        if os.path.exists(hhm_file):
+            return hhm_file
+        ost.LogVerbose('converting %s to %s' % (a3m_file, hhm_file))
+        os.putenv('HHLIB', self.hhlib_dir)
+        if subprocess.call('%s -i %s -o %s' % (hhmake, a3m_file, hhm_file),
+                           shell=True):
+            raise IOError('could not convert a3m to hhm file')
+        return hhm_file
+
+
+    def A3MToCS(self, a3m_file, cs_file=None, options={}):
+        """
+        Converts the A3M alignment file to a column state sequence file. If
+        cs_file is not given, the output file will be set to
+        <:attr:`a3m_file`-basename>.seq219.
+
+        :param a3m_file: A3M file to be converted
+        :type a3m_file: :class:`str`
+
+        :param cs_file: output file name (may be omitted)
+        :type cs_file: :class:`str`
+
+        :param options: dictionary of options to *cstranslate*, must come with
+                        the right amount of '-' in front.
+        :type options: :class:`dict`
+
+        :return: the path to the column state sequence file
+        :rtype: :class:`str`
+        """
+        cstranslate = os.path.join(self.hhlib_dir, 'bin', 'cstranslate')
+        if not cs_file:
+            cs_file = '%s.seq219' % os.path.splitext(a3m_file)[0]
+        if os.path.exists(cs_file):
+            return cs_file
+        opt_cmd = list()
+        for k, val in options.iteritems():
+            if type(val) == type(True):
+                if val == True:
+                    opt_cmd.append('%s' % str(k))
+            else:
+                opt_cmd.append('%s %s' % (str(k), str(val)))
+        opt_cmd = ' '.join(opt_cmd)
+        cs_cmd = '%s -i %s -o %s %s' % (cstranslate, a3m_file, cs_file, opt_cmd)
+        ost.LogVerbose('converting %s to %s' % (a3m_file, cs_file))
+        job = subprocess.Popen(cs_cmd, shell=True,
+                               stdout=subprocess.PIPE, stderr=subprocess.PIPE)
+        sout, _ = job.communicate()
+        #lines = serr.splitlines()
+        #for l in lines:
+        #    print l
+        lines = sout.splitlines()
+        for line in lines:
+            if line in 'Wrote abstract state sequence to %s' % cs_file:
+                return cs_file
+        ost.LogWarning('Creating column state sequence file (%s) failed' % \
+                       cs_file)
+
+    def CleanupFailed(self):
+        '''In case something went wrong, call to make sure everything is clean.
+        '''
+        store_needs_cleanup = self.needs_cleanup
+        self.needs_cleanup = True
+        self.Cleanup()
+        self.needs_cleanup = store_needs_cleanup
+
+    def Search(self, a3m_file, database, options={}, prefix=''):
+        """
+        Searches for templates in the given database. Before running the
+        search, the hhm file is copied. This makes it possible to launch
+        several hhblits instances at once. Upon success, the filename of the
+        result file is returned. This file may be parsed with
+        :func:`ParseHHblitsOutput`.
+
+        :param a3m_file: input MSA file
+        :type a3m_file: :class:`str`
+
+        :param database: search database, needs to be the common prefix of the
+                         database files
+        :type database: :class:`str`
+
+        :param options: dictionary of options, must come with the right amount
+                        of '-' in front.
+        :type options: :class:`dict`
+
+        :param prefix: prefix to the result file
+        :type prefix: :class:`str`
+
+        :return: the path to the result file
+        :rtype: :class:`str`
+        """
+        opts = {'cpu' : 1, # no. of cpus used
+                'n'   : 1}   # no. of iterations
+        opts.update(options)
+        opt_cmd = []
+        opt_str = []
+        for k, val in opts.iteritems():
+            if type(val) == type(True):
+                if val == True:
+                    opt_cmd.append('-%s' % str(k))
+                    opt_str.append(str(k))
+            else:
+                opt_cmd.append('-%s %s' % (str(k), str(val)))
+                opt_str.append('%s%s' % (str(k), str(val)))
+        opt_cmd = ' '.join(opt_cmd)
+        opt_str = '_'.join(opt_str)
+        base = os.path.basename(os.path.splitext(a3m_file)[0])
+        hhr_file = '%s%s_%s.hhr' % (prefix, base, opt_str)
+        hhr_file = os.path.join(self.working_dir, hhr_file)
+        search_cmd = '%s %s -e 0.001 -Z 10000 -B 10000 -i %s -o %s -d %s'%(
+            self.hhblits_bin,
+            opt_cmd, os.path.abspath(a3m_file),
+            hhr_file,
+            os.path.join(os.path.abspath(os.path.split(database)[0]),
+                         os.path.split(database)[1]))
+        ost.LogInfo('searching %s' % database)
+        ost.LogVerbose(search_cmd)
+        job = subprocess.Popen(search_cmd, shell=True, cwd=self.working_dir,
+                               stdout=subprocess.PIPE, stderr=subprocess.PIPE)
+        sout, serr = job.communicate()
+        if job.returncode != 0:
+            lines = sout.splitlines()
+            for line in lines:
+                print line.strip()
+            lines = serr.splitlines()
+            for line in lines:
+                print line.strip()
+            return None
+        return hhr_file
+
+
+__all__ = ['HHblits', 'HHblitsHit', 'HHblitsHeader', 'ParseHeaderLine',
+           'ParseHHblitsOutput', 'ParseA3M', 'ParseHHM',
+           'EstimateMemConsumption']
+
+#  LocalWords:  HHblits MSA hhblits hhtools PSIPRED addss param nrdb str mact
+#  LocalWords:  cpu hhm func ParseHHblitsOutput ss pred conf msa hhsuite dir
+#  LocalWords:  attr basename rtype cstranslate tuple HHblitsHeader meth aln
+#  LocalWords:  HHblitsHit iteratable evalue pvalue neff hmms datetime
+#  LocalWords:  whitespace whitespaces
diff --git a/modules/bindings/pymod/ialign.py b/modules/bindings/pymod/ialign.py
new file mode 100644
index 0000000000000000000000000000000000000000..d5c9f570d3a6abbaef00e2f8d1070727349b28f9
--- /dev/null
+++ b/modules/bindings/pymod/ialign.py
@@ -0,0 +1,176 @@
+#------------------------------------------------------------------------------
+# This file is part of the OpenStructure project <www.openstructure.org>
+#
+# Copyright (C) 2008-2009 by the OpenStructure authors
+#
+# This library is free software; you can redistribute it and/or modify it under
+# the terms of the GNU Lesser General Public License as published by the Free
+# Software Foundation; either version 3.0 of the License, or (at your option)
+# any later version.
+# This library is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+# FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+# details.
+#
+# You should have received a copy of the GNU Lesser General Public License
+# along with this library; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+#------------------------------------------------------------------------------
+"""
+Wrappers for the iAlign utility.
+
+References:
+
+Mu Gao and Jeffrey Skolnick, 2010. iAlign: a method for the structural comparison
+of protein-protein interfaces. Bioinformatics, 26(18):2259-65.
+Mu Gao and Jeffrey Skolnick, 2010. Structural space of protein-protein interfaces
+is degenerate, close to complete, and highly connected. PNAS 107(52):22517-22.
+
+Authors: Pascal Benkert, Marco Biasini, Martino Bertoni
+"""
+
+import subprocess, os, tempfile, platform
+from ost import settings, io, geom, seq
+
+def _SetupFiles(models):
+  # create temporary directory
+  tmp_dir_name=tempfile.mkdtemp()
+  dia = 'PDB'
+  for index, model in enumerate(models):
+    for chain in model.chains:
+      if len(chain.name) > 1:
+        dia = 'CHARMM'
+        break;
+      for res in chain.residues:
+        if len(res.name) > 3:
+          dia = 'CHARMM'
+          break;
+    io.SavePDB(model, os.path.join(tmp_dir_name, 'model%02d.pdb' % (index+1)), dialect=dia)
+  return tmp_dir_name
+
+def _CleanupFiles(dir_name):
+  import shutil
+  shutil.rmtree(dir_name)
+
+class iAlignResult:
+  """
+  Holds the result of running iAlign
+  
+  .. attribute:: rmsd
+    
+    The RMSD of the common Calpha atoms of both structures
+  
+  .. attribute:: transform
+  
+    The transform that superposes the model onto the reference structure.
+    
+    :type: :class:`~ost.geom.Mat4`
+  
+  .. attribute:: alignment
+  
+    The alignment of the structures, that is the pairing of Calphas of both 
+    structures. Since the programs only read ATOM records, residues consisting 
+    of HETATMs (MSE) are not included in the alignment.
+    
+    :type: :class:`~ost.seq.AlignmentHandle`
+
+  .. attribute:: IS_score
+
+    The IS-score of the structural superposition
+
+  .. attribute:: aligned_residues
+
+    The total number of aligned residues
+
+  .. attribute:: aligned_contacts
+
+    The total number of aligned contacts
+
+  """
+  def __init__(self, rmsd, transform, alignment, is_score, 
+               aligned_residues, aligned_contacts):
+    
+    self.rmsd=rmsd
+    self.transform=transform
+    self.alignment=alignment
+    self.is_score=is_score    
+    self.aligned_residues=aligned_residues
+    self.aligned_contacts=aligned_contacts
+
+def _ParseiAlign(lines):
+  info_line=lines[18].split(',')
+  is_score=float(info_line[0].split('=')[1].strip())
+  aln_residues=int(lines[19].split('=')[1].strip())
+  aln_contacts=int(lines[20].split('=')[1].strip())
+  info_line=lines[21].split(',')
+  rmsd=float(info_line[0].split('=')[1].strip())
+
+  tf1=[float(i.strip()) for i in lines[25][1:].split()]
+  tf2=[float(i.strip()) for i in lines[26][1:].split()]
+  tf3=[float(i.strip()) for i in lines[27][1:].split()]
+  rot=geom.Mat3(tf1[2], tf1[3], tf1[4], tf2[2], tf2[3],
+                tf2[4], tf3[2], tf3[3], tf3[4])
+  tf=geom.Mat4(rot)
+  tf.PasteTranslation(geom.Vec3(tf1[1], tf2[1], tf3[1]))
+  seq1 = seq.CreateSequence("1",lines[32].strip())
+  seq2 = seq.CreateSequence("2",lines[34].strip())
+  alignment = seq.CreateAlignment()
+  alignment.AddSequence(seq2)
+  alignment.AddSequence(seq1)
+  return iAlignResult(rmsd, tf, alignment, is_score, aln_residues, aln_contacts)
+
+def _RuniAlign(ialign, tmp_dir, options={}):
+  opts = {'a' : 1,  # concise output
+          'w' : tmp_dir
+         } 
+  opts.update(options)
+  cmd_opts = []
+  for k, v in opts.iteritems():
+    if type(v) == type(True):
+      if v == True:
+        cmd_opts.append('-%s' % str(k))
+    else:
+      cmd_opts.append('-%s %s' % (str(k), str(v)))
+  cmd_opts = ' '.join(cmd_opts)
+  model1_filename=os.path.join(tmp_dir, 'model01.pdb')
+  model2_filename=os.path.join(tmp_dir, 'model02.pdb')
+  if platform.system() == "Windows":
+    ialign_path=settings.Locate('ialign.pl', explicit_file_name=ialign)
+    command="\"%s\" %s %s %s" % (os.path.normpath(ialign_path), model1_filename, model2_filename, cmd_opts)
+  else:
+    ialign_path=settings.Locate('ialign.pl', explicit_file_name=ialign)  
+    command="\"%s\" \"%s\" \"%s\" %s" % (ialign_path, model1_filename, model2_filename, cmd_opts)
+  ps=subprocess.Popen(command, shell=True, stdout=subprocess.PIPE)
+  ps.wait()
+  lines=ps.stdout.readlines()
+  if (len(lines))<22:
+    _CleanupFiles(tmp_dir)
+    #for l in lines:
+    #  print l
+    raise RuntimeError("iAlign superposition failed")
+  return _ParseiAlign(lines)
+
+
+def iAlign(model1, model2, ialign=None):
+  """
+  Compare protein-protein interfaces of the structures of two pairs of
+  protein complexes and suporpose them.
+  
+
+  :param model1: The model structure. If the superposition is successful, will 
+                 be superposed onto the reference structure
+  :type model1: :class:`~ost.mol.EntityView` or :class:`~ost.mol.EntityHandle`
+  :param model2: The reference structure
+  :type model2: :class:`~ost.mol.EntityView` or :class:`~ost.mol.EntityHandle`
+  :param ialign: If not None, the path to the ialign executable.
+  :returns: The result of the tmscore superposition
+  :rtype: :class:`iAlignResult`
+  
+  :raises: :class:`~ost.settings.FileNotFound` if tmalign could not be located.
+  :raises: :class:`RuntimeError` if the superposition failed
+  """
+  tmp_dir_name=_SetupFiles((model1, model2))
+  result=_RuniAlign(ialign, tmp_dir_name)
+  model1.handle.EditXCS().ApplyTransform(result.transform)
+  _CleanupFiles(tmp_dir_name)
+  return result
diff --git a/modules/bindings/pymod/msms.py b/modules/bindings/pymod/msms.py
index 60009f6070d2592ed6790521359a82684771f647..534cd3d8e0be5c80fcfa4638896ffbfa23bcdbf9 100644
--- a/modules/bindings/pymod/msms.py
+++ b/modules/bindings/pymod/msms.py
@@ -332,7 +332,8 @@ def CalculateSurfaceVolume(entity, density=1.0, radius=1.5,  all_surf=False,
 def CalculateSurface(entity, density=1.0, radius=1.5, all_surf=False,
                      no_hydrogens=False, no_hetatoms=False, no_waters=False,
                      selection='',
-                     msms_exe=None, msms_env=None, keep_files=False):
+                     msms_exe=None, msms_env=None, keep_files=False,
+                     attach_asa=None, attach_esa=None):
   
   """
   Calculates molecular surface by using the external MSMS program
@@ -353,6 +354,8 @@ def CalculateSurface(entity, density=1.0, radius=1.5, all_surf=False,
   :param msms_exe:      msms executable (full path to executable)
   :param msms_env:      msms environment variable
   :param keep_files:    Do not delete temporary files
+  :param attach_asa:    Attaches per atom SASA to specified FloatProp at atom level
+  :param attach_esa:    Attaches per atom SESA to specified FloatProp at atom level
   :returns:             list of :class:`~ost.mol.SurfaceHandle` objects
   """
   import os
@@ -385,10 +388,17 @@ def CalculateSurface(entity, density=1.0, radius=1.5, all_surf=False,
           msms_data_file, msms_data_file, density, radius)
   if all_surf:
     command+=" -all"
+  if attach_asa != None or attach_esa != None:
+    command+=" -af %s" % os.path.join(msms_data_dir, "asa_atom")
 
   # run msms
   stdout_value=_RunMSMS(command)
 
+  # add sesa and asa to entity if attach_asa is specified
+  if attach_asa != None or attach_esa != None:
+      _ParseAreaFile(entity, selection, os.path.join(msms_data_dir, "asa_atom.area"),
+                     attach_asa, attach_esa)
+
   # parse msms output
   num_surf=0
   for line in stdout_value.splitlines():
diff --git a/modules/bindings/pymod/naccess.py b/modules/bindings/pymod/naccess.py
index 5a064afeecd7f86d73b4c7d378cfe2f4fcfeee57..621067e7b8c68f2242cfbf047b0932d05b24ebd9 100644
--- a/modules/bindings/pymod/naccess.py
+++ b/modules/bindings/pymod/naccess.py
@@ -105,7 +105,6 @@ def _ParseAsaFile(entity, file, asa_atom):
       else:
         print chain_id, resNum, atom_name
       
-
 def _ParseRsaFile(enti,file, asa_abs, asa_rel):
   """
   Reads Area file (.rsa) and attach asa (absolute + relative) per residue to an entitiy
@@ -162,7 +161,6 @@ def __CleanupFiles(dir_name):
   import shutil
   shutil.rmtree(dir_name)
 
-
 def _RunNACCESS(command, temp_dir):
   """
   Method to run the MSMS surface calculation
@@ -184,7 +182,6 @@ def _RunNACCESS(command, temp_dir):
   return stdout_value
   
 
-
 def CalculateSurfaceArea(entity,  radius=1.4,  
                          include_hydrogens=False, include_hetatm = False, 
                          include_water = False, selection="",
diff --git a/modules/bindings/pymod/tmtools.py b/modules/bindings/pymod/tmtools.py
index 8763188414f2c6b83ced8a2ecb12ce71ba66872b..e2b06738372f16cf589eaa3adc1f4d0e18fca84e 100644
--- a/modules/bindings/pymod/tmtools.py
+++ b/modules/bindings/pymod/tmtools.py
@@ -1,7 +1,7 @@
 #------------------------------------------------------------------------------
 # This file is part of the OpenStructure project <www.openstructure.org>
 #
-# Copyright (C) 2008-2009 by the OpenStructure authors
+# Copyright (C) 2008-2015 by the OpenStructure authors
 #
 # This library is free software; you can redistribute it and/or modify it under
 # the terms of the GNU Lesser General Public License as published by the Free
@@ -152,7 +152,8 @@ def _ParseMmAlign(lines):
   alignment = seq.CreateAlignment()
   alignment.AddSequence(seq2)
   alignment.AddSequence(seq1)
-  return MMAlignResult(rmsd, aln_length, tm_score, tf, alignment)
+
+  return MMAlignResult(rmsd, tm_score, aln_length, tf, seq2, alignment)
 
 def _RunMmAlign(mmalign, tmp_dir):
   model1_filename=os.path.join(tmp_dir, 'model01.pdb')
diff --git a/modules/bindings/pymod/utils.py b/modules/bindings/pymod/utils.py
index 27d4008d8a543df42e21aa2c704516462fa4196c..02edd598f9b664c165f385b92429b619d7bf09fd 100644
--- a/modules/bindings/pymod/utils.py
+++ b/modules/bindings/pymod/utils.py
@@ -30,7 +30,7 @@ def SaveToTempDir(objects, seq_format='fasta', structure_format='pdb'):
       continue
     if isinstance(obj, mol.EntityView) or isinstance(obj, mol.EntityHandle):
       name=os.path.join(tmp_dir_name, tmp_dir_name, 'mol%02d.pdb' % (index+1))
-      io.SaveEntity(model, name, structure_format)
+      io.SaveEntity(obj, name, structure_format)
       file_names.append(name)
       continue
   return file_names
diff --git a/modules/bindings/tests/CMakeLists.txt b/modules/bindings/tests/CMakeLists.txt
index 7b04104d9d230d61ab27b4c56dce4730bd42f49e..c443de13285adf6a7818926e29d540a258c2580c 100644
--- a/modules/bindings/tests/CMakeLists.txt
+++ b/modules/bindings/tests/CMakeLists.txt
@@ -1,6 +1,7 @@
 set(OST_BINDINGS_UNIT_TESTS
   test_msms.py
   test_clustalw.py
+  test_hhblits.py
   test_blast.py
   test_kclust.py
 )
diff --git a/modules/bindings/tests/test_hhblits.py b/modules/bindings/tests/test_hhblits.py
new file mode 100644
index 0000000000000000000000000000000000000000..c396528b8c623d620e07f7611431760afcfd1725
--- /dev/null
+++ b/modules/bindings/tests/test_hhblits.py
@@ -0,0 +1,397 @@
+''' Unit tests for the HHblits wrapper
+'''
+
+import unittest
+import os
+import sys
+import tempfile
+import shutil
+import filecmp
+import datetime
+
+import ost
+from ost import seq
+from ost.bindings import hhblits
+
+class TestHHblitsBindings(unittest.TestCase):
+    def setUp(self):
+        self.hhroot = os.getenv('EBROOTHHMINSUITE')
+
+    def tearDown(self):
+        if hasattr(self, 'hh'):
+            self.hh.Cleanup()
+        if hasattr(self, 'tmpfile'):
+            os.remove(self.tmpfile)
+
+    def testOSTSequenceNoWDir(self):
+        # OST sequence as input, no working dir should work
+        query_seq = seq.CreateSequence('1AKE.B',
+                                       'MRIILLGAPGAGKGTQAQFIMEKYGIPQISTGDMLRA'+
+                                       'AVKSGSELGKQAKDIMDAGKLVTDELVIALVKERIAQ'+
+                                       'EDCRNGFLLDGFPRTIPQADAMKEAGINVDYVLEFDV'+
+                                       'PDELIVDRIVGRRVHAPSGRVYHVKFNPPKVEGKDDV'+
+                                       'TGEELTTRKDDQEETVRKRLVEYHQMTAPLIGYYYYS'+
+                                       'KEAEAGNTKYAKVDGTKPVAEVRADLEKILG')
+        self.hh = hhblits.HHblits(query_seq, self.hhroot)
+        # this works only as long as utils.TempDirWithFiles() names the first
+        # fasta file seq01.fasta
+        self.assertEqual(self.hh.filename[-11:], 'seq01.fasta')
+
+    def testOSTSequenceWDir(self):
+        # OST sequence as input, with working dir should work
+        query_seq = seq.CreateSequence('1AKE.B',
+                                       'MRIILLGAPGAGKGTQAQFIMEKYGIPQISTGDMLRA'+
+                                       'AVKSGSELGKQAKDIMDAGKLVTDELVIALVKERIAQ'+
+                                       'EDCRNGFLLDGFPRTIPQADAMKEAGINVDYVLEFDV'+
+                                       'PDELIVDRIVGRRVHAPSGRVYHVKFNPPKVEGKDDV'+
+                                       'TGEELTTRKDDQEETVRKRLVEYHQMTAPLIGYYYYS'+
+                                       'KEAEAGNTKYAKVDGTKPVAEVRADLEKILG')
+        tmpdir = tempfile.mkdtemp()
+        self.hh = hhblits.HHblits(query_seq, self.hhroot, working_dir=tmpdir)
+        self.assertEqual(self.hh.filename, os.path.join(tmpdir,
+                                                        'query_hhblits.fasta'))
+        self.assertEqual(self.hh.working_dir, tmpdir)
+        self.hh.needs_cleanup = True
+
+    def testFileNoWDir(self):
+        # we have a sequence but no working dir
+        self.hh = hhblits.HHblits('testfiles/seq2.fasta', self.hhroot)
+        self.assertEqual(self.hh.filename[-10:], 'seq2.fasta')
+
+    def testFileWDir(self):
+        # we have a sequence and a working dir
+        tmpdir = tempfile.mkdtemp()
+        self.hh = hhblits.HHblits('testfiles/seq2.fasta', self.hhroot,
+                                  working_dir=tmpdir)
+        self.assertEqual(self.hh.filename, os.path.join(tmpdir, 'seq2.fasta'))
+        self.assertEqual(self.hh.working_dir, tmpdir)
+        self.hh.needs_cleanup = True
+
+    def testDoCleanup(self):
+        # test that cleanup cleans up
+        tmpdir = tempfile.mkdtemp()
+        self.hh = hhblits.HHblits('testfiles/seq2.fasta', self.hhroot,
+                                  working_dir=tmpdir)
+        self.assertTrue(os.path.isdir(tmpdir))
+        self.hh.needs_cleanup = True
+        self.hh.Cleanup()
+        self.assertFalse(os.path.isdir(tmpdir))
+
+    def testDoNotCleanup(self):
+        # test that cleanup cleans up
+        tmpdir = tempfile.mkdtemp()
+        self.hh = hhblits.HHblits('testfiles/seq2.fasta', self.hhroot,
+                                  working_dir=tmpdir)
+        self.assertTrue(os.path.isdir(tmpdir))
+        self.hh.needs_cleanup = False
+        self.hh.Cleanup()
+        self.assertTrue(os.path.isdir(tmpdir))
+        shutil.rmtree(tmpdir)
+        self.assertFalse(os.path.isdir(tmpdir))
+
+    def testCleanupFailed(self):
+        # test that cleanup cleans up
+        tmpdir = tempfile.mkdtemp()
+        self.hh = hhblits.HHblits('testfiles/seq2.fasta', self.hhroot,
+                                  working_dir=tmpdir)
+        self.assertTrue(os.path.isdir(tmpdir))
+        self.hh.needs_cleanup = False
+        self.hh.CleanupFailed()
+        self.assertFalse(os.path.isdir(tmpdir))
+
+    def testFileNoExists(self):
+        # test on calling with a non-existing fasta file
+        with self.assertRaises(IOError) as ioe:
+            hhblits.HHblits('notthere.fasta', self.hhroot)
+        self.assertEqual(ioe.exception.errno, 2)
+        self.assertEqual(ioe.exception.strerror, 'No such file or directory')
+
+    def testProfile(self):
+        # try to create a search profile
+        query_seq = seq.CreateSequence('Test', 'VLSPADKTNVKAAWGKVGAHAGEYGAEA'+
+                                       'LERMFLSFPTTKTYFPHFDLSHGSAQVKGHGKKVAD'+
+                                       'ALTNAVAHVDDMPNALSALSDLHAHKLRVDPVNFKL'+
+                                       'LSHCLLVTLAAHLPAEFTPAVHASLDKFLASVSTVL'+
+                                       'TSKYR')
+        self.hh = hhblits.HHblits(query_seq, self.hhroot)
+        a3m = self.hh.BuildQueryMSA('testfiles/hhblitsdb/hhblitsdb')
+        self.assertTrue(filecmp.cmp(a3m, "testfiles/testali.a3m"))
+
+    def testA3mToProfileFileName(self):
+        # test A3mToProfile to work with a given hhmake_file name
+        query_seq = seq.CreateSequence('Test', 'VLSPADKTNVKAAWGKVGAHAGEYGAEA'+
+                                       'LERMFLSFPTTKTYFPHFDLSHGSAQVKGHGKKVAD'+
+                                       'ALTNAVAHVDDMPNALSALSDLHAHKLRVDPVNFKL'+
+                                       'LSHCLLVTLAAHLPAEFTPAVHASLDKFLASVSTVL'+
+                                       'TSKYR')
+        self.hh = hhblits.HHblits(query_seq, self.hhroot)
+        _, self.tmpfile = tempfile.mkstemp(suffix='.hmm')
+        os.remove(self.tmpfile)
+        hhfile = self.hh.A3MToProfile("testfiles/testali.a3m",
+                                      hhm_file=self.tmpfile)
+        tfh = open(hhfile)
+        efh = open("testfiles/test.hmm")
+        elst = efh.readlines()
+        tlst = tfh.readlines()
+        self.assertEqual(len(elst), len(tlst))
+        for i in range(0, len(elst)):
+            if not elst[i].startswith(('FILE', 'COM', 'DATE')):
+                self.assertEqual(elst[i], tlst[i])
+
+    def testA3mToProfileWithoutFileName(self):
+        # test A3mToProfile to work without a given hhmake_file name
+        query_seq = seq.CreateSequence('Test', 'VLSPADKTNVKAAWGKVGAHAGEYGAEA'+
+                                       'LERMFLSFPTTKTYFPHFDLSHGSAQVKGHGKKVAD'+
+                                       'ALTNAVAHVDDMPNALSALSDLHAHKLRVDPVNFKL'+
+                                       'LSHCLLVTLAAHLPAEFTPAVHASLDKFLASVSTVL'+
+                                       'TSKYR')
+        self.hh = hhblits.HHblits(query_seq, self.hhroot)
+        hhfile = self.hh.A3MToProfile("testfiles/testali.a3m")
+        tfh = open(hhfile)
+        efh = open("testfiles/test.hmm")
+        elst = efh.readlines()
+        tlst = tfh.readlines()
+        self.assertEqual(len(elst), len(tlst))
+        for i in range(0, len(elst)):
+            if not elst[i].startswith(('FILE', 'COM', 'DATE')):
+                self.assertEqual(elst[i], tlst[i])
+        os.remove(hhfile)
+
+    def testA3mToProfileWithExistingFile(self):
+        # test A3mToProfile to work with an existing hmm file
+        query_seq = seq.CreateSequence('Test', 'VLSPADKTNVKAAWGKVGAHAGEYGAEA'+
+                                       'LERMFLSFPTTKTYFPHFDLSHGSAQVKGHGKKVAD'+
+                                       'ALTNAVAHVDDMPNALSALSDLHAHKLRVDPVNFKL'+
+                                       'LSHCLLVTLAAHLPAEFTPAVHASLDKFLASVSTVL'+
+                                       'TSKYR')
+        self.hh = hhblits.HHblits(query_seq, self.hhroot)
+        hhfile = self.hh.A3MToProfile("testfiles/testali.a3m",
+                                      hhm_file="testfiles/test.hmm")
+        # when the hmm file already exists, its not touched, so files should be
+        # completely equal.
+        self.assertTrue(filecmp.cmp(hhfile, "testfiles/test.hmm"))
+
+    def testA3mToProfileWithoutA3m(self):
+        # test A3mToProfile to fail if we do not have an a3m file.
+        query_seq = seq.CreateSequence('Test', 'VLSPADKTNVKAAWGKVGAHAGEYGAEA'+
+                                       'LERMFLSFPTTKTYFPHFDLSHGSAQVKGHGKKVAD'+
+                                       'ALTNAVAHVDDMPNALSALSDLHAHKLRVDPVNFKL'+
+                                       'LSHCLLVTLAAHLPAEFTPAVHASLDKFLASVSTVL'+
+                                       'TSKYR')
+        self.hh = hhblits.HHblits(query_seq, self.hhroot)
+        with self.assertRaises(IOError) as ioe:
+            self.hh.A3MToProfile("doesnotexist.a3m")
+        self.assertEqual(ioe.exception.errno, None)
+        self.assertEqual(ioe.exception.message,
+                         "could not convert a3m to hhm file")
+
+    def testA3mToCSFileName(self):
+        # test A3mToCS to work with a given hhmake_file name
+        query_seq = seq.CreateSequence('Test', 'VLSPADKTNVKAAWGKVGAHAGEYGAEA'+
+                                       'LERMFLSFPTTKTYFPHFDLSHGSAQVKGHGKKVAD'+
+                                       'ALTNAVAHVDDMPNALSALSDLHAHKLRVDPVNFKL'+
+                                       'LSHCLLVTLAAHLPAEFTPAVHASLDKFLASVSTVL'+
+                                       'TSKYR')
+        self.hh = hhblits.HHblits(query_seq, self.hhroot)
+        _, self.tmpfile = tempfile.mkstemp(suffix='.seq219')
+        os.remove(self.tmpfile)
+        csfile = self.hh.A3MToCS("testfiles/testali.a3m",
+                                 cs_file=self.tmpfile, options={'--alphabet' :
+                                                os.path.join(self.hh.hhlib_dir,
+                                                             'data',
+                                                             'cs219.lib')})
+        self.assertTrue(filecmp.cmp(csfile, 'testfiles/test.seq219'))
+
+    def testA3mToCSNoFileName(self):
+        # test A3mToCS to work with a given hhmake_file name
+        query_seq = seq.CreateSequence('Test', 'VLSPADKTNVKAAWGKVGAHAGEYGAEA'+
+                                       'LERMFLSFPTTKTYFPHFDLSHGSAQVKGHGKKVAD'+
+                                       'ALTNAVAHVDDMPNALSALSDLHAHKLRVDPVNFKL'+
+                                       'LSHCLLVTLAAHLPAEFTPAVHASLDKFLASVSTVL'+
+                                       'TSKYR')
+        self.hh = hhblits.HHblits(query_seq, self.hhroot)
+        csfile = self.hh.A3MToCS("testfiles/testali.a3m",
+                                 options={'--alphabet' :
+                                          os.path.join(self.hh.hhlib_dir,
+                                                       'data',
+                                                       'cs219.lib')})
+        self.assertTrue(filecmp.cmp(csfile, 'testfiles/test.seq219'))
+        self.tmpfile = "testfiles/testali.seq219"
+
+    def testA3mToCSFileExists(self):
+        # test A3mToCS to work with a given hhmake_file name
+        query_seq = seq.CreateSequence('Test', 'VLSPADKTNVKAAWGKVGAHAGEYGAEA'+
+                                       'LERMFLSFPTTKTYFPHFDLSHGSAQVKGHGKKVAD'+
+                                       'ALTNAVAHVDDMPNALSALSDLHAHKLRVDPVNFKL'+
+                                       'LSHCLLVTLAAHLPAEFTPAVHASLDKFLASVSTVL'+
+                                       'TSKYR')
+        self.hh = hhblits.HHblits(query_seq, self.hhroot)
+        csfile = self.hh.A3MToCS("testfiles/testali.a3m",
+                                 cs_file='testfiles/test.seq219',
+                                 options={'--alphabet' :
+                                          os.path.join(self.hh.hhlib_dir,
+                                                       'data',
+                                                       'cs219.lib')})
+        self.assertTrue(filecmp.cmp(csfile, 'testfiles/test.seq219'))
+
+    def testSearchWorking(self):
+        # successful search
+        query_seq = seq.CreateSequence('Test', 'VLSPADKTNVKAAWGKVGAHAGEYGAEA'+
+                                       'LERMFLSFPTTKTYFPHFDLSHGSAQVKGHGKKVAD'+
+                                       'ALTNAVAHVDDMPNALSALSDLHAHKLRVDPVNFKL'+
+                                       'LSHCLLVTLAAHLPAEFTPAVHASLDKFLASVSTVL'+
+                                       'TSKYR')
+        self.hh = hhblits.HHblits(query_seq, self.hhroot)
+        search_file = self.hh.Search("testfiles/testali.a3m",
+                                     'testfiles/hhblitsdb/hhblitsdb')
+        tfh = open(search_file)
+        efh = open("testfiles/test.hhr")
+        elst = efh.readlines()
+        tlst = tfh.readlines()
+        self.assertEqual(len(elst), len(tlst))
+        for i in range(0, len(elst)):
+            if not elst[i].startswith(('Date', 'Command')):
+                self.assertEqual(elst[i], tlst[i])
+
+    def testSearchNotWorking(self):
+        # successful search
+        query_seq = seq.CreateSequence('Test', 'VLSPADKTNVKAAWGKVGAHAGEYGAEA'+
+                                       'LERMFLSFPTTKTYFPHFDLSHGSAQVKGHGKKVAD'+
+                                       'ALTNAVAHVDDMPNALSALSDLHAHKLRVDPVNFKL'+
+                                       'LSHCLLVTLAAHLPAEFTPAVHASLDKFLASVSTVL'+
+                                       'TSKYR')
+        self.hh = hhblits.HHblits(query_seq, self.hhroot)
+        search_file = self.hh.Search("doesnotexist.a3m",
+                                     'testfiles/hhblitsdb/hhblitsdb')
+        self.assertEqual(search_file, None)
+
+    def testParseHHMWorking(self):
+        # get info from an HHM file
+        with open("testfiles/test.hmm") as hhm_fh:
+            prof = hhblits.ParseHHM(hhm_fh)
+        self.assertEqual(''.join([str(x) for x in prof['ss_conf']]),
+                         '999999999999998873391557999999998639441123987788888'+
+                         '856788999999999998735477789999999887650299989899889'+
+                         '999999997536679989999999999999999984329')
+        self.assertEqual(''.join(prof['ss_pred']), 'CCCHHHHHHHHHHHHHHHCCCHHHH'+
+                         'HHHHHHHHHHCCCCCCCCCCCCCCCCCHHHHHHHHHHHHHHHHHHHCCCCH'+
+                         'HHHHHHHHHHHHHHCCCCHHHHHHHHHHHHHHHHHHCCCCCCHHHHHHHHH'+
+                         'HHHHHHHHHHHHCC')
+        self.assertEqual(str(prof['consensus']), 'xltxxxxxxixxsWxxvxxxxxxxgxx'+
+                         'xxxxlfxxxPxxxxxFxxxxxxxxxxxxxxhxxxvxxxlxxxixxldxxxx'+
+                         'xlxxlxxxHxxxxgvxxxxxxxxxxxlxxxlxxxxgxxxxxxxxxAWxxxx'+
+                         'xxixxxmxxxyx')
+        self.assertEqual(prof['msa'].GetCount(), 7)
+
+    def testParseHHMNotWorking(self):
+        # get info from an HHM file
+        with self.assertRaises(IOError) as ioe:
+            hhblits.ParseHHM(open('testfiles/testali.a3m'))
+        self.assertEqual(ioe.exception.message,
+                         'Profile file "testfiles/testali.a3m" is missing '+
+                         'the "Consensus" section')
+
+    def testParseA3MWorking(self):
+        # get info from an HHM file
+        with open("testfiles/testali.a3m") as a3m_fh:
+            prof = hhblits.ParseA3M(a3m_fh)
+        self.assertEqual(''.join([str(x) for x in prof['ss_conf']]),
+                         '999999999999998873391557999999998639441123987788888'+
+                         '856788999999999998735477789999999887650299989899889'+
+                         '999999997536679989999999999999999984329')
+        self.assertEqual(''.join(prof['ss_pred']), 'CCCHHHHHHHHHHHHHHHCCCHHHH'+
+                         'HHHHHHHHHHCCCCCCCCCCCCCCCCCHHHHHHHHHHHHHHHHHHHCCCCH'+
+                         'HHHHHHHHHHHHHHCCCCHHHHHHHHHHHHHHHHHHCCCCCCHHHHHHHHH'+
+                         'HHHHHHHHHHHHCC')
+        self.assertEqual(prof['msa'].GetCount(), 253)
+
+    def testParseHHblitsOutput(self):
+        header, hits = hhblits.ParseHHblitsOutput(open("testfiles/test.hhr"))
+        self.assertEqual(header.query, 'Test')
+        self.assertEqual(header.match_columns, 141)
+        self.assertEqual(header.n_eff, 9.4)
+        self.assertEqual(header.searched_hmms, 5)
+        self.assertEqual(header.date,
+                         datetime.datetime.strptime('Mon Aug 31 16:45:45 2015',
+                                                    '%a %b %d %H:%M:%S %Y'))
+        self.assertEqual(header.command, '/import/bc2/apps/HH-suite/2.0.16-go'+
+                         'olf-1.4.10/bin/hhblits -cpu 1 -n 1 -e 0.001 -Z 1000'+
+                         '0 -B 10000 -i /import/bc2/home/schwede/bienert/git/'+
+                         'ost_newenv.git/modules/bindings/tests/testfiles/tes'+
+                         'tali.a3m -o /scratch/tmp9E5dor/testali_cpu1_n1.hhr '+
+                         '-d /import/bc2/home/schwede/bienert/git/ost_newenv.'+
+                         'git/modules/bindings/tests/testfiles/hhblitsdb/hhbl'+
+                         'itsdb')
+        self.assertEqual(len(hits), 4)
+        # hit 1
+        self.assertEqual(hits[0].hit_id, '3e7b90809bd446a538f9eb1a1ca0e551')
+        self.assertEqual(hits[0].score, float('222.3'))
+        self.assertEqual(hits[0].ss_score, float('16.4'))
+        self.assertEqual(hits[0].evalue, float('2.7e-42'))
+        self.assertEqual(hits[0].pvalue, float('6.9E-45'))
+        self.assertEqual(hits[0].prob, float('100.0'))
+        self.assertEqual(str(hits[0].aln),
+                         'Test                VLSPADKTNVKAAWGKVGAHAGEYGAEALER'+
+                         'MFLSFPTTKTYFPHF-DL-S----HGSAQ\n3e7b90809bd446a5... '+
+                         'VLSEGEWQLVLHVWAKVEADVAGHGQDILIRLFKSHPETLEKFDRFKHLKT'+
+                         'EAEMKASED\n\nTest                VKGHGKKVADALTNAVAH'+
+                         'VDDMPNALSALSDLHAHK-LRVDPVNFKLLSHCLLVTLAAHL\n3e7b908'+
+                         '09bd446a5... LKKHGVTVLTALGAILKKKGHHEAELKPLAQSHA-TKH'+
+                         'KIPIKYLEFISEAIIHVLHSRH\n\nTest                PAEFT'+
+                         'PAVHASLDKFLASVSTVLTSKYR\n3e7b90809bd446a5... PGDFGA'+
+                         'DAQGAMNKALELFRKDIAAKYK\n')
+        # hit 2
+        self.assertEqual(hits[1].hit_id, 'af828e69a5f2d0fd42a2a213e09eb64f')
+        self.assertEqual(hits[1].score, float('215.7'))
+        self.assertEqual(hits[1].ss_score, float('17.2'))
+        self.assertEqual(hits[1].evalue, float('1.5e-41'))
+        self.assertEqual(hits[1].pvalue, float('3.9E-44'))
+        self.assertEqual(hits[1].prob, float('100.0'))
+        self.assertEqual(str(hits[1].aln),
+                         'Test                VLSPADKTNVKAAWGKVGAHAGEYGAEALER'+
+                         'MFLSFPTTKTYFPHFDLSHGSAQVKGHGK\naf828e69a5f2d0fd... '+
+                         'VLSPADKTNVKAAWGKVGAHAGEYGAEALERMFLSFPTTKTYFPHFDLSHG'+
+                         'SAQVKGHGK\n\nTest                KVADALTNAVAHVDDMPN'+
+                         'ALSALSDLHAHKLRVDPVNFKLLSHCLLVTLAAHLPAEFTPA\naf828e6'+
+                         '9a5f2d0fd... KVADALTNAVAHVDDMPNALSALSDLHAHKLRVDPVNF'+
+                         'KLLSHCLLVTLAAHLPAEFTPA\n\nTest                VHASL'+
+                         'DKFLASVSTVLTSKYR\naf828e69a5f2d0fd... VHASLDKFLASVS'+
+                         'TVLTSKYR\n')
+        # hit 3
+        self.assertEqual(hits[2].hit_id, '9287755aa6aa27583da6be3b2408bfcc')
+        self.assertEqual(hits[2].score, float('215.1'))
+        self.assertEqual(hits[2].ss_score, float('16.5'))
+        self.assertEqual(hits[2].evalue, float('3.8e-41'))
+        self.assertEqual(hits[2].pvalue, float('9.7E-44'))
+        self.assertEqual(hits[2].prob, float('100.0'))
+        self.assertEqual(str(hits[2].aln),
+                         'Test                VLSPADKTNVKAAWGKVGAHAGEYGAEALER'+
+                         'MFLSFPTTKTYFPHF-DLS-----HGSAQ\n9287755aa6aa2758... '+
+                         'HLTPEEKSAVTALWGKVN--VDEVGGEALGRLLVVYPWTQRFFESFGDLST'+
+                         'PDAVMGNPK\n\nTest                VKGHGKKVADALTNAVAH'+
+                         'VDDMPNALSALSDLHAHK-LRVDPVNFKLLSHCLLVTLAAHL\n9287755'+
+                         'aa6aa2758... VKAHGKKVLGAFSDGLAHLDNLKGTFATLSELHC-DKL'+
+                         'HVDPENFRLLGNVLVCVLAHHF\n\nTest                PAEFT'+
+                         'PAVHASLDKFLASVSTVLTSKYR\n9287755aa6aa2758... GKEFTP'+
+                         'PVQAAYQKVVAGVANALAHKYH\n')
+        # hit 4
+        self.assertEqual(hits[3].hit_id, 'e69e1ac0a4b2554df25f2c2183b0fba0')
+        self.assertEqual(hits[3].score, float('12.6'))
+        self.assertEqual(hits[3].ss_score, float('2.6'))
+        self.assertEqual(hits[3].evalue, float('64.0'))
+        self.assertEqual(hits[3].pvalue, float('0.16'))
+        self.assertEqual(hits[3].prob, float('0.6'))
+        self.assertEqual(str(hits[3].aln),
+                         'Test                VDPVNFKLLSHCLLVTLAAHL\ne69e1ac0'+
+                         'a4b2554d... ATPEQAQLVHKEIRKIVKDTC\n')
+
+# ParseHHblitsOutput
+
+if __name__ == "__main__":
+    hhsuite_root_dir =  os.getenv('EBROOTHHMINSUITE')
+    if not hhsuite_root_dir:
+        print "No environment variable 'EBROOTHHMINSUITE'. To enable the "+\
+            "unit test, this needs to point to your HHsuite installation."
+        sys.exit(0)
+    from ost import testutils
+    testutils.RunTests()
diff --git a/modules/bindings/tests/testfiles/hhblitsdb/hhblitsdb.cs219 b/modules/bindings/tests/testfiles/hhblitsdb/hhblitsdb.cs219
new file mode 100644
index 0000000000000000000000000000000000000000..2f7449d3cdbbf599635ab0a48a5469c68ed43617
--- /dev/null
+++ b/modules/bindings/tests/testfiles/hhblitsdb/hhblitsdb.cs219
@@ -0,0 +1,598 @@
+>02ae072bdd8d4b3cd3ddea7d7fd6accb
+9',/40($5$)o7��:ӧ���������ͺ������I��q��x���:�����qF��m��h��kX�J���������������������������X�
+�����ܿ������A���m�����������y��MX���<������B�06
+>049453f6b1ef191ef1f937c85980d483
+1�w�7331��x2$��5R,5��9K���3��$�!�B|}O\��<3@�w3м_=��~�5C9���34�W�D
+>07725759f4907c8886db21d514cb9b12
+����nM��LH��������JXq��:�3('XM�[���%BZ&���<����&�'cM��+����%��R��K��n�?&�C���OI
+>07e9709ec97fb9c893c6efa6db9e811b
+9��A�X�j�z�:�!4Mkl�Ϊ<R��E���:�l����D�����������������������������������������������������������d��
+�m��b����'�XX?O�D�͍����������cݩc���~��lX�����������������b��������8XX���������������������������
+��AB��������毩���b~c���
+>0895791d132888554de0d758d179b7c7
+�=�G�l���M���(��+A��<)��b�ܓ����:�BHo��������e��=�,������u�C�d���]b(HV8;���e�+�~���������^�Z��
+����<�n�@h(�s<���S:�냾�u�,&���K��FX��C��ɒ�������Eb��?�9Xy/Fc)+��?���X�������a���p�sm��]#��<7�X�
+�F����Z�^��BX�,������ś�=��3�c���SA�,n����¡
+>094af3c04fcdf9bf04bb55a97a19581b
+o�����"�������"�����B3"8NU:�5(�]�"�b����Q����X���&�"
+>09ce670d46e49ba58915a7017daeb51d
+����䩞+�n��+�����ܛ�E�&sF�X���:�<�,5���������!gR�W��BX�E�ܮ�ʄ��h+�k�+�+�2�������8�!�F+^A�B������
+����@��E!m�]�ʆ���몘�^S=/G'5n�]��n���'a��]%=@?U�]j��7�������E�h:����V�?�(U���z�<�3�C��������oCh���
+U,���E���V�=!+NFTM&�����{�%�?�j#h+���m���
+>0a209425cf52d1e9fc937e5aed5d7d69
+9�z��ߛ�܆�l)s}#�}P2��,�MHدSl��<w�+)�؉kj$�I��;s,��O��J2/�PA/�IHF�,zՅ��h݊�Ex�P�u�!�'|w�=i�����P��
+�i�s�e/�/IA�u�+)w�e4$$p9$=0�+b�kLI�,��P,9�o)��U(f��B,L�,)��g:V�HX�C6�
+>0a407d4b0634f8fa863191382dd9ec39
+{��X���B����V��:��V�<�"��������X�#ɺ����������������������rn����������,�A��V���'�8�(�"�V�����������
+��=������B�X�����������Z��V�E�"������B�����#���Z������������������������j�,�d������'�Z�(�"�R�����
+ǩ��ʳ��
+>0b91ebac43769ec865264a8281966ca6
+h<��G��9\����nj������f��(!"W"��Z&�!�$�'�o'�Q"�����"���b�����"������(�e���܄��"�~��~�"غ�"Y"'���R�Q
+G��(]��W��f�����"
+>0c68c5d75cc2ae618e6e5f1010b542af
+��������%����"��"%�������������"��"%������������%�����"�s"%��%���������"��"%������ܞp�44
+>0df5dbed0f36c37f3836e114a8b5c77b
+������������"n�"���Z%���"�������"��"���:%���"�����]
+>0e5c9e30af579568c535c51a9a27f145
+����{�+�w%p�������"]�9���й�"4��05+A%}����=��X"�����Q�]��7���^��k�"ϴ��B�"�(�������೭=_"���$3%G�
+�"$
+>0f066235c0e8814be13f086538bfd823
+!1VV!�b�!(�K!r��j���d�+���꜕veeϕԎ�v;BU�=W(ϓ�������L�+p�"p0�5��}��������]�ʢ�L��X��vH��Y�"��wW
+��ɞ��nf{g��
+>0f0e0cc97063da4305095efeb6623b6b
+����=�p���܄���;�B��X�X��:��H�[���~���%�^�����������������������:������G��&�f�n�"�%����9�8�X�3�
+>0f1c654429f6f65b407c9e9dde84eba4
+Zến�"��"��������m��%�������n�"��"��������m��%��������n�"��"��������m��%�����P
+>0f2381e4f46aa5af8618fb2c6a96974d
+�]���E᯺HC�?Ͽ3�z�k��&v��r+�RElV=!U͏&�V!m8��4F�LV�1���1���1��]\��=���ǘM?牱X�8���T��=�K�B�B�&�!X
+�i������X��c&?�U��_P��&y��`�0�VP1k^�S<��t���ᛊ��:�z����F6&
+>10cfcdaad4a10e98aec756d8a15574d9
+�,y������A�'���w���x�܇�mx1��`������̠d�p����������B=�,8?����xW,y"��Z~�$�,�,���ܭ��o�������+o+;
+����:ʲѲG/7R�WB:#;Ay5T����w`=�K��������ͱ��˲�+�d{�s�
+>1189797f72eb6f0e100dc3369ccd8ffa
+h<��G��9\����Z��|���(��(!"W"��Z&�!�$�'�u'�Q"�����"���c��"�����(�e���܄��"���~�"غ�"Y"'�ظR�QG���
+��e]��W��n����"��ʗ�"
+>11d0ff4d993e31f0a2ea189846a08655
+&$(��'�NXڔ[,���!Q�Q2O�+��w:m��\�<��f�\L',�Kz������ܰ2JzjAtLn���Ӂ;j����K�)NN
+>13077d2b3643cabf3bccc22d84a0a439
+�n�tB�,B(��܊,�B�&ds��k���%��z%%��(=܏b0��ا��m}��ʍꯩ���������������S@���0%�G;J��K�B�Z���a�Z�<��
+�2���+&7^L�G���G���S���&7&#RJ,V��ܧ�,�?��k�]�~�`���Z��$<E�X'VJ/%F(f<�(���I�(X�[J�z�?]#��V��gf��R
+>14d53a48bb3d4cf83c4f637bd86d7e3e
+!�@�hhs��]�]�h&0�!l2u�0;(�]�(�]T?'bNS��:�暚���:��7j<b@�c�h1���\�D,,c
+>17059f2501ae2a72fc19097f4d2b1341
+9&����������������d���C�؀��s���m�GB�E���Y)��X%�i��:E���7�&�Z��)�Xl=�P��&7%%%%%%
+>19505167af9ebfb7eba762c056361c1f
+?�:&��R����e$e�Vѩ�����������"�8�<?����=C5F1�"��������V�&�����������������峳����;���������'A1CC�,�
+�X�������aq��`�������������V�&J&�����������������������Q��������������d"R������~�"�&'7!@DC����܇��
+�t�&Xl7[�����Q�����a�;k�=��W��#2���u��]
+>1b2f6c29a7ee470020810a8013596703
+��?�d�!�8�!4M5tκ�<���m�����l��u������������������������������������܃���������x�����=X�O������
+�����������������������������������X�C���������)���)�������ܣ��������������f��������������XU���ʶ
+������X�����7
+>1d1847456cd583e08ed67aaa11df98f2
+4�4����4������"�J�J@�"�D��~"&�&ٿY8M"���M���z"P?$"]J44�+!
+>203cc7f9db11472b54bca3769bfaf8df
+K�ũUXV^HX'�7�7p����[��ΰ��q�温��E�����gXSXX�;j���������������������������5�u��S<��R�����������
+r������XXCdM'&�����������X�Xn�X8X&�����������<��AF����Z���n�������<�橸��A��A
+>2136b1cea2992a6bf1cf63cb4e484430
+3��X侀q1pN�U:�28�܇�#��ח�O�؉n���k����������XX9!)z5eL�d�����`mŇ����=XNr��������������s��cX��b
+�����������X[X�!@��f�K��x�'�m�C������m�8ݲmG�������[�����;����~�������;�n��e�I���16
+>271643171bfa4abfd3da32e2d13e3392
+������zX�XX!����!4NNE���m�����������������������������d�d�'k�@��������������΁γXm��s���������������
+����������B�XXX��4�'x����������������������������������^�7F����X��b���A���������zP
+>2798277b8842d36de2206ba3ae8863fc
+9���<W����y��i��V��bb���:��f����������[�ة������B��wH$l<��~Z��A�LN��2��W<���ɓm����������q������
+������������������������������E��EL��,������eE�&���M�R'd�b���b��������������B�C��e�ؤp�؃���������
+����������n���V����$
+>2a3d9802bfcbb4c8a6063b33f02f6538
+�z�˧�r����A�����C��R'0N&RP�H�2�=�:�@���ImB�S�!'�?�V�=4���B��P��=��S=?=)�P���g)�U&����+OO0F�=<X]�
+���`�!M�?�&a=|�/����[�PA�T�F�=X
+>2aaa64efe58cc449ac3f69c82cc966f0
+9)I����PI����'B�;�s��H�Eu]�<9��!44�x1�2X��RE��A��k��UD��XE��1XᏈ�$���l���I�8&���ķD��X���v���t1
+\IJA���i��I��ʎ���,F�/A\�Rȏ��@�R�zPP��o�P�1�F0IFnc�;)J
+>2b78356947507e56ed56d054e1215b8c
+��������X�������G��������XX�^e���"��"������������������������XU���������n�X��$���d���Z���������
+Z������d���A������|�
+>2b86eaed0dd0462632e7bb6e0a56ceb8
+t@��|E��1��������X��E�����ܶ��������M|E��1��������X��<�����ܶ���U����MD<��1��������q��,�����ܶ���U��
+��MDm��i������Cw
+>2c276c7332b4ac4757cbea933e3f987e
+9�\�X�=����Z�����X����M=�CP��A�������ĺ<�n�:��<�U���<��f�X��Zs�X�C������
+>2cf47989aa11bbeeda0f0b4af2c1f1ad
+չ��XbXXO�����������E�������������c�������ҁ�Xd�O��K�~��Z������������XX�����������������R�~
+nd�4B�����E���X��Ω�������������ܯY�
+>2dc7af2028fa424ea0f21cfb017ac190
+��Xs���m������(�����l��OX��bb��W��E�a��~��_��UZ����<m���8�A���e�:��;�dBC�A�d`��($��D$���^���ܹ�uP��
+B�=U��&�?Q���<��#����цC��XC��<��E���a$Hf�IB
+>2ebbe0783d204f9b6a288ba6e9641f90
+�X�?���Z���}{���d���X��c���︄�B�����d������ӎ���Z��ʯ����X�X���㄃��}�z��m���X���C���o:�����X�=�
+d�L�����J@��:�����x�W�=�=
+>2f38e0381f5a1497aa929335a94cdbc7
+Asn�Y+�������������������+��n'�U�s:�A���LE�帙��ׄ���������d���'�U��:�A�n�L+���������e
+>2f4c86088a47ef73c12ffc801e19fb3c
+{���Ƶ����V��:��V�<�"����������X�#�I���������������������������gn�����������,�A��V���'�8�(�"�V��
+���������k�C�=�������B�������������Z��V�E�"���Z��B�����#������������������Z�n���j�C�X�������Z�(�"�V
+�����������������aQB�Q�
+>2ff05444e7145a5dd540ec42015fcba1
+b'XV^HX'�7�7p����[��ΰ�q�温��E�����gXSXX�;j��������������������������Z�5�u��S<��R�����������r��
+�ź�XXCdM'&�����������X�Xn�X8X&�����������<��AF����Z���n�������<�����A��A
+>3067be314a806ff137315081e104742e
+ĕ���;�误<�����&���͗����<$��B�xKX'�X����~�:����8�q�i���X�����nn�8%+B��B��$8lb�XY�pc6��S��Φ�����
+�������u�帺���V�aZ~��C�mሻX��������㩟��������~Z��VλS���Xͩ�����+
+>3155c91c2cbf7967cb4ba20d80ff989c
+�G������R<��F���1�������X㚢%CExS<b������XE���:q����C��ة����������������������N��b��X<��F���F�����
+��X�CEbS<bد��������E���:X�������䘄�
+>3472662a6001a05156368eef829706af
+~��X���B����V��:��V�<�"�������X�#�I�������������������������gn����������,�A��V���'�8�(�"�V�������
+�����������������B�������������Z��V�E�"���Z��B�����#���Z�����������������~��W���j�C�d�����������f
+�"�V���������������B���u�����޼��"
+>377b625a8e52f94cba9ef9a525219056
+3$7(Oj+L�/O�B�D��׵�B��N^��nXv��������B��B�����������Ŷv,J{+<�,,�U����ܙ2�#�~��͢+�d�UB��H1�x#!�g4
+�z��9�(�zKy)FK)�(W����\�4��&wI�l(�+���`��t�Z����Y���t��̐$~�
+>37afc7acd88623f9df7bf8f423af00c0
+����Xn=��<�����ᯯC���G��n:X������뺄nSn=�n�����R��R���x����d�Z����=���Ś
+>389317ac7330494edc8db3812c39f6d3
+p&ZJ�qU���=��bS�[1H�Y�]������m�n��=��SỺ��q(��:�6�3�&�(�<�X�R�ܓ�W�R�=e��`������C��+�`BV�$
+>38a44a0cf7d477bebe8b2606d936e643
+���84@�z@�Zz�&|PI��P��I�����A���|?��dc��Z����������}�ϯک��n���=q��F��fiᘊ�)�5X���'=��RK��ğ��(&;
+�j
+>38dd9955ccfba0d5be1c28ca6ce0751d
+����������""�������?����A��f��Ěj�"ǭ��=?^�k��:��X"cU$���J3w�\�����w��P�
+>3b63735b431780c58c19dd032083016e
+X�&!��d������M�!��X������eXCM��%����������������������������'XSCA�C������������������������:������
+!�������Z�C�����������������������Q��!U7!@DC������!Xl������Q����a����X���x��m�H�<�
+>3dddac6f1a46a0d944548b4f8648c5d1
+1��RB㱗��������3�+�%��%����"��"%����������"ۑ��"%������������n��F�%��ܮ���"��"%����������������"
+���"%�
+>3e7b90809bd446a538f9eb1a1ca0e551
+�EM��{���X��J��X�����泌��f��KG���$�o��m+��G�~��������]���S�X���C���q���~܍���C��<S��%����=�
+���;�����iE���<���m���[ʗ�l��1#慸f��X���K���f�Y�J�
+>3efa288e683aab27e0db9e3baf300765
+���X���B����V��:��V�E�"��������������X�#ɺ����������������������g�����������,�A��V���'�8�(�"�V�����
+���������������B�X�����������Z��V�E�"���Z��B����X�#���Z�����������������܄�������,�d�������Z�(�"�
+V�����ǩ��ʳ��ʯQ
+>409d1b78279b50a32005612fe5003760
+��Z�m��$�A���B���=��&��H�<�"��������n���P�Z��������������������G�A��V���ӑ&�(�"��������������7ܚ��C�
+=������a�d���B���V��&��H�E�"��������n��P�Z��������������������G�A��V���&�(�"�S�����B���7��7OBC�<�=M
+>4162710e327474bbbd96cdac5a602313
+9X侀�1pN�U:�28�܇�#����O�������k����XX9!)�5e�۩��`mŇ����=XNr������������s��c���b�����X[X�!@��f
+�K�m�'�m�C������m�8ݿmG��������x��������ݻ�����n�n��e�I�
+>4186931bf3bd591aa12aac05cbb54275
+7���!�=��[]��P:;!+2���~���OX+^%�h�d���Z����:{�3�;������&��1��=���
+>448f640ce08539f9f492ab947cf5c879
+�ܩ�3�������#Q�?�(e/x��g=8��;������X�?'&��`���܂G�,@�E�]��)�����u)�2&�!X�<����Z�=eq���j��?+3�7�
+ԙU���������=�PX�DŽ�y�PX+U������t������������Q�Xg\7+V4&#!��(�)��?���$Q#d/?�E��DK{J<'�=,��9
+>482b4b12963f255ad7693a467b7af4cc
+:PX�d;Y���n�&�������O��ܩ����ܣ��7��=��&�J��(Yӗ�;�&����E��&�f�����J���]��?�7�I��������q�d;Y�+�&�
+���d�O��]C������ܣ��7X�=��&�#��WYӗ�;�&��f�E��:�(�����J@�����?�7dI�X���e
+>4939a1cdd4b26c7d9053b02c16db7e41
+9�P�Eq��X�����ʺ��V��VC������\���C��:��=�<�:G!�+������I���]BY�X�?������+�Djz�EP��X�
+>497673b84b7766fe2450fe095360affb
+9�K��rE���(���X���,���G�f�]a���a�A�4?lX�\�H����U�z�C��i���K��AM:6�a���FP�ˤ�[�AI�:�a?8�zl5C):����
+�+E��b���VEBIX�On�Z�����'��&]n�G&A�L���GB�A�fO������&�U?�d�oʊz�ݯYS��,���G��$+�
+>4bc967f8d6c71174670a6efb6d0861ff
+{X���{����V��:��V�<�"�����������X�#fI�����������������������������gn�����������,�A��V���'�8�(�"��
+���������������k�C��������B����������Z��V�E�"���Z��B��Ƕ�X�#���Z�����������������������,�A������
+�Z�(�"�R����������q�X
+>4c402988a256f524c3b41ec989161202
+���μR���;�|���~�<�G��:O�X�X������Z#J�������&�^$��WH���j
+>4e1e30ab1e15c9c1545ff8328bcfebeb
+9w�!�I3I3��H�3(��$��I���G'<�!�Y!�=���H��Jz&I�?N|0m$��3�+��P+�R%E�LO/EY�X�O
+>4f78b9c2edbc3ae2d8e9a0de15b7225f
+j�����m�X����Q��"���X��ک���Z���V���������X���������X���X���:;������R�/
+>5039b5951b98074071f6c69dc58114cc
+{��Hƨ������&��V�<�"�����������p�#fI6��������������������������In������������,�A��b���'�Sl(�"����
+�������[@�&5�C�3������B�Ej&
+>52f7b42c2dd929be3683545ebc8d1362
+F4z����X�C�X�S&�R�D�BDC8B�<&��&X]���^±�^0ؤ5����:��XB3�A�=��UI�n�^�X��$_T�EA�z�c���łs��ŧz���8�AM
+x�{X�21�����������<��_�P�?�&Mi�7p!��=�Z
+>530957bbdb4e54c1b80f11ba55b52a90
+�A��C���f������qE��XhE�X��:���SA�!�]!T!4N5Eb��<�:���a��&�?��Z��������������XSfXҨ�������MX��X���
+��������������������������m����������,7�!{�vIX�<R�cEb��D�X<AE'/aّ�,'������d���<�������XAdlM%����
+���iU�X��K��&�����Z��毩��������������{��
+>530b8b90a2b272c2660145f9c38cb283
+Q����μRx��;�|���~�<�G��:O�X�X������Z#J�������&�^$��WH���j
+>5364a334c335e7d706a5569fbc3f602d
+���B�Vn�OX�u����&�d�d�,n���i$����]+��mi����(����^�)=�Ň�pq68!�����Z�Z���Ʉ��^��Y��������&oCT9
+1��Z��ʪ�N6+n2�o����,U��kV+!�=u�&��lH��A�ة����Z�B���=�2��Q&�<�
+>53ff759256b5d7f5f74b908ef8b7590f
+!P�A��6)I&�&��;I��ʉ��8���f��X'n�����Z�=��?�W'B�)�F�A1xX�n�UZ�rfdA1��:K�&��?�y@�������!]�mB<��\$
+�&M�?�]?/��a:��8wmR)TF!��S�X��z���l�X�,B7:��I�d���Q�1k?!�=j����ܰũ�41&Ϯ�ð�P�P����$�3)&3R90DVO%$
+%!!&��wն&�B�Ml�I�_BD&v43&�2S|I)5&��!0{
+>55e5f4d58d11858b673e58b73804fab3
+1��G�ϑ��@r�m�n��������������[�����������������&�ةn���"��"%�����Z��8$�E�������������������X��Z����
+9B�[���E�������Xq�eC��t��������������{�����a;��ؔT��'67
+>564c9b9e5d4cd66b1fd7f125a716af4e
+���X�ʗ�������:��V�<�"����������������#fI����������������������gn����������,�A��b���'�8l(�"�������
+��[@�&5�C�3��
+>56a96aae83069ea95d56b56dc6e8cd1a
+\��k������ߺVSXA�k@�Y�Z��U�]j��<���C���&������u��'����A���C��c������'�XXkM!!k@����'�k��RX��b������
+��������䩺�a�����tT�Ϋ�8��㇠�Xd�E$!�B�����θ��dX��<������Q�G����ţ!7
+>5b39e5a7108ee75bcacb74b9050dfe57
+9h��Тh�3�+�5FX1TAPKA617T3,'<5/O'+O+,5�UP=#215')h)1))i=/1"�(!5,'+3!($)+$1$=/+2F1321((3%$302651",?9/&
+1/+M/02?0&=L�$3z1F/�G1;5,�=I1&ԠLo=k�1/�0R){w,)1�&H9
+>5b7549a440ece6efc515d1ecf5eab975
+��Nz&�)r�M)�G�I��I��&��B���fKv�;��!O�3�?��U��=�z&9$���;�!Pk&�=�����gF��=�=�̄���4�A�Vg�Y%XP��z
+>5b8f9d914431e9d2b55e563b03e7b909
+96��m�Cg$�$7O܍BH��<�/�$~��f�$���xU���,���,&��nU�[�Tu��$������@��������<������ףĺ`���K`��d��x�G�
+�����Z�����j�婼��dv�#,�����"Bp�W�#�',&��+#$)eXP�&�"���7"7�$�&9�"���������,g#�"�Ì�ĺ"�#��p�f$?u�
+}"�"�"
+>5ce3a21f2652f5e4378c3552cceb2340
+TR��P�I���I��������������������������"����E�=s+�<:J��J?A�$��;����"�&�"��`������䲏%|��đx���������
+�D""�$�m��\<W�U�܄멷���m��9�V�"@"r
+>5d895b2caff816955040ab755eaf5b19
+I$SIQ()�z��D(�I��;�r&V`~P���;ݹ&ϰz����;�����<���Y���Ar��</FS)�iq�I�K�P��&���n�d�?)�n$����r��ŝb�
+�1&1O)C{�9��8�!za���V1�=z�:v�A��X�����R�Y1E��1��4E$���Pd���z4&01
+>60dd783edaf524b39db3af7ecfd53a48
+$�d�X�k]���������d���b���F�����B��ෝ��d�������n�&�ʯB�|�X�X�ΩZ����}�z��mά�dٯ����o:��ů�u�?�^�L
+����J8�&��S
+>61affadfde1fab540b7313adbf4ebfda
+j�dBl���&ф�+�MM���Ƒ��qf������B���\D8�^�U�K�Xi��ʛ��]���ړ��n�����ʵ��<����H�`���a���5�oj���ώ
+;��Jr!j\���^�^�8����&P<xXif�$D���B����{|����l?�'������^�G�X$eu���eg�������������8�C����E����
+��ʈ�X���l�|��UG�^��`�������6�
+>61e58fd4d97efb70b78410488ce6cac8
+�ũUXV^HX'�7�7p����[��ΰ��q�温��E�����gXSXX�;j��������������������������Z�5�u��S<��R�����������r
+������XXCdM'&�����������X�Xn�X8X&�����������<��AF����Z���n�������<�橸��A���A
+>665b4706556bcfdcefa8812b17dc787c
+?�:&��R����e$e�V���������"�8�<?����=C5F1�"��������V�&�����������������峳����;�������'ASCC�,��X�n
+���X�aq�<`��������������i�X�&J&�����������������������"������������d"R�������~�Q�&'7!@DC����܇���t�
+!Xl7�@��Q�����a�;k�=��W��#2���\�
+>674c81cff4c6c504dd50e35c2bf78401
+��k�5"����]�4��we��z�G��s�܏1���c�������&��Zh�($��;�0��'��!PC`4:���d�[����"��B�w��Ň&~&��~��m�/;$u�
+�sZ��(��~���ǧ��B&D�)=?f���ܧ�nQ8�p_%ʂ�]���G��"�%
+>679a9284ef0ef040ad53936c4c1e9d7d
+7/�:х����h��u�,��((ʧ����n�0���f����܄뭉p�^��������?�m�:�O��znz������H'=n�H�����������۳!!=5�Օ�
+���O��z��X�X���~�����������u�4��XMbw/<'nP�)z�,���W�<(�����&�?�d��zUZ��W�nO,�z�,w��r퇱l?Uj��2�z2L
+=�<�
+>68a5857c951cd0795a2bfc79e65a0c63
+M�o������m���+��n'~�U���:�A���LE��K�������ׄ���������d��'�U�U:�A�n�L+��������������
+>6a5d2aa2a4dfa511f1b7a6417307a0bf
+{���Ƶ����V��:��V�<�"�����������X�#�I���������������������������gn�����������,�A��H���'�8�(�"����
+���������������C�=�������B������������Z��V�E�"���Z��B����X�#������������������Z�����j�C�X��������
+f�"�V��������������B�?
+>6dc27b301d7556991a74587deb3a9692
+{��H�{�����V��:��V�<�"�����������X�#�I��������������������������In�����������,�A��V���'�8�(�"�����
+������������k�C�=�������B���������������V�E�"���Z��B����X�#�������������������Z�f���y�m�X�������
+�����ɲ"�V�����������������$�
+>6e235e11f9c330891bd4a7eac552e81b
+9;6�;XNP%U5126�T�GN����ٚ�_$_�|B=X]M��2�b�rTkd�d�Άo�Rڑ��s!7Gi�Vp�p'�N�D�Nj�Vd7VSSh<7+柒��?|�q=
+)+/�FsZ�a�MqbB���O�f$A}�j��s8�șNVI'QV5?'l�D�_�&0U3;V!X\��7��J�F�ψ�!lXTp�63�g/��V,6$,4
+>6f8bf45e3bf355ef54d788898343cb1c
+9%%%%%%19'��5(4,?A��z���kk�Y1�OR�k1�w�+P�fR0���=O&�#M(���k�5+5V5L
+>70185c53b564a6651b730e4dcf340af6
+ʣ�|v����������,�9+$ܩO��A��VE����:ܩO�i\��,,�K��
+>717d981e28459396ae1133448788c53e
+8��91���zOE�&#{��u�O����u�~r�I)�)���䮾�X�,�I��~������!O�=�\z��ܮ��=ͩ?��d�����܏�HY��V�J;mr��Ld�
+���Wf�{��B�����������fυ�n앯����/C;<M���s���b�d��i�=�h��}[��x��������;^�)��Q����n�d�J᯳���\�
+���D����WCP��M��������4����������j��
+>71fdde7383f09a65b56a391c1db52e35
+!&JU�����bS�[1l�Y�]z���~�m�n��=��S�p��o�����6�l�&��(�<�X�R����W�R�=e��`J�����C��+�`BV�$
+>74210cc330abf78ec4c1fa3592d2152d
+?�:&��R����[$e�Vѩ������"�8�<?����=C5F1�"��������Z�����������������峳����;�������'A1CC�,�嗩������
+�aq�<������������V�&J&������������������������"������������d"��������~�Q�&'�&@DC�����t�!X�7�@��Q���
+��a�;k�=��W��#2���\��
+>757d964661b62316dff0960e2a4a87ea
+y'�Գ���O�����mm;�6κ偳x�Z�������c��,SFm�6���&UW��������n�����nd$�����������?��쉺��:t���i���;<
+����囗�;&���n�V�����Z��������C8X���&X��m���ʧ�����[�e��?������z�^�A���������n��M��i��\��E���W���d
+t
+>75f1ddc04ebf9d5bc247ed264936c742
+KE�������κXKdC!��$@�������W;�B�0�GJũ<����d�����������,����?�d�UlX�)����������梶������E���d����
+���?���!��R���n��������&�������������K$h�7�c�|�ʍ}����e������b���8)
+>79b1bbcf6f43d0235bc61bef7593bdbe
+15$���ꨌ��<��;A��Ib�v��������������������K�󩟁YE������n�܎��vEܩ��������+��=���G�~���#&I?V�En�
+^S��Ci�噷������X��X����ί;<��ϩ��#A���:&#��^���n���ݍ}��������^��7HI,/%%%%%%
+>79cba631d7059d8c2467baa2b9e42370
+&7��������z���"��n���Z�"��:��"�n�%�������������ɺ���"��n���:�"��&��"�n�%���Y�
+>7aa7e6eee43e1aae66ded2fce9550a54
+lfP�u/Al8�7��j�L�1q�S?أ1�MC��A��^�=����=�U:�=L~��evV�Cz=j+���~�6
+>7bf67dbec14c0ea001ff88bc73dd7396
+���8^Cd_�%76ʻ��`�"B�Z���bJ�!(7ECɷ�8������6'�&�|&7",��+�k�$�o�"�����"�fȞr]O�N;#,jM�}��B�۹�BX���
+A�W27)"�3"Y�nj�Hd_�%76����$�"$�:��b#�!(7GC����Z��8�:6s,@�D&7",��+r_�$+\�"��χ�"�fȞ]��7;#,�k����
+ր��$����X���A���?7)"�3"����
+>7cff8b05889041a6d059231e4f4bc281
+@jIz����r����<�&˫�v,;y����<v?��U&�=�8�����s�ɑ�E�������=�A�@��N��;Ci9U��&�CW�������L"�+�/���]�(
+�k;�7�W����넺��;HSE���&�aP�8��k����䡐+<B��̯����I�$���Od͜�7��T۟�BNwj��N���]&@4�p]ws�MM
+>7d7b394238d3b3e35f1bbacceedade0b
+���[�OL+��U���#���܄J�]�����������]V���~�&�,�A������Z��e�jS�d�M���n��&�YqrqPb����&���F^Jo���������
+�Z/2'd/��:�������ن������������ד�����~[%�(�d�#����A�[�XU:���������B�嗎�d�E]���ZZ����J�Z������
+��=�e=I�e��
+>7ec67cbbd85f59718803563580f1731b
+��@��m������������������zX�XX!����!4NME���m�������������������������d�d�'k�Z��������������΁��Xm��s�
+����n��������������������XXV��4�'x���������������������������������7F���X��b���<���
+>81e79b5741c9fbdcdbbebf2c8b14e32c
+�d�d��������������������n������������������������q����Z�q8�������������A��d�l����v��&�8��b���b��
+�c��������l���]�F��Gf��&n�������������f����~ڳ�����<�����ɫ�
+>8237cebaaa25ac6a2b0d49c9d5837da5
+T$�|%��������,�Kq1o0}$mj8UK�&A�&1'Ȑ"���1��c:b�@5[g1;,7����~���q=Ϥ�O)��$��0cP:��C��hJ�s<��~�������
+�ڿ?fN�U:gU=ײ���J${z�=#�!N���&�����"ܪ#�N�����!�Fj�o�㄰bE�6���"���G�H,"?/��������P
+>84792f9cbc9eb5adabb41b1a904360bb
+9FO%z��������Z�9'�颐Y�5;��+\��Πß�qq�q�XbX�KRd^׌
+>86ed36c2fe7938800e5622d9b4acb515
+97�����a�a��,�z�7�mܒ�����<��f(����糢��0���������ܩ�n������������C�l��������wnz~��H'?;�H�����Q�͜
+��ܧ����f!!=k�Օ���~��z���X�H��U:�����������u�4��=Mbw/<'^P�)z�,����<(����+�j�f�&�2�^��zUZ��W�nO,�
+��~������Ew�W�݇�k?Uj��јdO=�<軮
+>88117153c423d8f3cd1f072dcda24597
+h<��G��9\�����Z������f��(!"W"��Z&�!�$�'�u'�Q"�����"���b�����"�����������(�e���ܧ��"����~�"���"Y"'�
+ظR�QG��(]��W��f����"
+>8e30ca516d2b86076f51d1316fab39ad
+:��('�붆u[7B�&ICn6=L(1օ|���@�M�X8X�ͱ~�=XdS�O���������������PX��X���u��SΑ!��S'���C���b������W���
+Ԅ���ʫ��bR������א�ɲv����gBn�V�AXS&�'��㧓�Cf�uO�!��������Fu!ф���c蓳<���e���K���Lc�����id����
+�r�������X�XȷX�������܄���������X������}�5
+>8fd273e25da1bf193a2bf90e2bc9fef0
+/3524R0,2n1U&�k651/+4!5+/�1kTYRf�(1�o,�4O0&�e5V'H}U��Բ<02P+1!4
+>91ee985382113129d3975a1aa1210405
+{��X��������V��:��V�E�"���������X�#ɺ����������������������gn����������,�A��V���'�8�(�"�V����������
+�����=������B�������������Z��V�E�"������B�����#���Z�����������������܄�������,�d������'�Z�(�"�R���
+���ǩ���X��
+>9287755aa6aa27583da6be3b2408bfcc
+p�EM��{���X��J��X���س���f��KG���$�o��m+����~��������]������X���C���X���~܍���C��<S��%����=��
+}�;�����iE���<���m���[ʗ�l��1#�f��X���K��(g
+>9343cd2395312266b68b016d74fb3c86
+�ɁXA��$�uM/z���x�Y����fl+�3���c�P�{?P��X��;~=�3��=0k�������4P1�=�,��Z��c�OXc�PA&dd
+>93a4e2eb4447ccb72cf9476930f1f5df
+�{���m��+��n'�U��:�A���LE��m��ׄ��������ᩎ���������Z�X�n�Y+������������������������+��n'�U��:�A
+��LE���������������d���'�U��:�X�n�L+�������
+>98b5ff80a113b7bb28949a2a5cd20879
+'&M"�050762N�07v"̺75c50"�˒076X���Mk"k�7�f]�1�3��75_5]"�2�076H�M55"5�76(]:q�?kNN555���2�����uM�"5u
+5r:l|�Bj|S"�27@"M<r19
+>9ac9d2aa5d496091f1a6d71517f29360
+p�p$P��ϲ;"��"��%��%�3�wfPz&P؞����&�)gW�)ϰ��!W@@w�zB���4�54Pu�,Im�"�"���փ��)i��G/E��
+>9b972e307eb0d9de3734ffdbf33ed781
+~��C�S]�X[������d��;�������;��XU+����ڤ��20�JV���5�:�2�ܩX������k�KX<q]�XW+z8�#���+����5����+����
+�����3��9������n�f�����������VX�<Bf���ю�Xd,$ܯ���<��C���<����E������������H�<$PG�d�����<���,��K&\
+��q+���1UG��\������Xj�V��z��X�=U/�!k�1F1RM��E
+>9c68b86897cc76a533b3376c5680b606
+��Qܛ�&�#�0{m:7�K�A����&�d�!�(�M�l���������&ó��䗦�@�����͚k^�+�3�#܏�ъ���7kM�Jk&�Q��~���<�5o#�
+�r��������#�Tk��:�U�[�I���N�17
+>9c7b8409c5da2a6bc10d796287eb4c1f
+�d�XXb�ܶ��a�0�&�Aq)�i�ȸ:Vܦ�XX��������ܗ�V�I�T�:�����ǩ����ܛ�ȩ�������X�S��������m����������<Xd!
+�/��!C���x��i���X�2B�����7,0HT�F�S?�bWYb�I�����������Y34
+>9f519c37964061e00a9e9906f774552e
+9���?�(7�P(�'O�W�()�3�,Bů��z�XBz�gEKN/�/Jg�<&?��7�&#�%(����BYB�?,<+IIBx�����z
+>a0a16d5fe9c52ade8dbd14d530daeeb8
+9����Dݞ���+/&�/4�</?�G�����������@,��A���J��\C��V�Q�?C7���]���'F(H,7/
+>a1369bdee466c1364c07095750be3efc
+@7�����"�="�����Z��;:V��"�S"��++I)���������"��맏"������r��"��")GwP"��V&9���Xv��)ݿ�
+>a1cf9299e65402da85fa1134c4159419
+D���<W����y��i������b��:��f��������������n����B�wH$l<��~Z��A�LN��2��W<���ɓx��������������������
+����������ݾ������������E��EL��,��������eE�&���M�R'dȸ���b��������������B�C��e�ؤp�؃�������������
+�B������
+>a251ab96460cc372677a195a346bdc79
+KV��[��������"wa���3�X�����ܾ���n�$"l�H�)"@!""�s��t�"�D����з�p{X��u��������p�G��%��"�"��P�
+>a44d747376cfd87bd0f30749697bc63b
+��X�6B������:��V�<�"���������X�#fI�����������������������rn�����������,�A�����'�8�(�"����������
+���Zk�C�=��������a������������E�"���Z��B���X�#��Z������������������o������������f�"�V��j�B��������
+"
+>a4ffb81039c95ec205e15ab0095774e5
+_$6]25L,"h/(�05�2W�<0��2�N(5/7K1&�)/9V22M+�]&15+63/3$&76%AO764P|A/)94'5,)q1(G5�u4?�4,"V#�04M$�T2112�
+K�0
+>a58e5f77fe5c98ba022ce3bec19b5c22
+9p��X�����������������XX�n����"��"��������������ܳ�^��XU���������n�X��$���d���:�������Z�����d���
+A����
+>a7297e082b04c39b5ed5edf7a5889375
+{���Ƶ�����V��:��V�<�"�����������X�#�I���������������������������gn�����������,�A��V���'�8�(�"�V��
+����������k���=�������B������������Z��V�E�"���Z��B����X�#������������������Z�n���j�C�X�������Z�(�"�
+V�����������������B�ǚQ�
+>a7d85b5797fc7c87d5f26fc1eaa87af7
+��Z��Ha����"�C���UG6{��\�����A���q���'����l�<<���ox{�dz����"�����K<�+(C��3G��������`�������<��<��
+K��"�����¯Ӭ������d���n�wK���8��4F\@/E'AEE�e\Y�"l
+>a9670fd5e42b822d83bb9b8a9eda5dc0
+$4�4�P��4��II�Яܯ��ϯm��`���{��8�=���x����n�3ᙾU:����i�\&P�I��?�?��&'�3�=����Ɂ��P8�?ue�f���{q�
+�,���:�B����]L�ݻ�Z�~~Oݜd�+���~OO��O�O�A
+>aa7797cb86715b5f00dd396459cdd380
+po�ϲf{��u�}�������u����������PaRR%Ck8����������������w������x�#�����Z�F�o����m��:�<�=���!m(n=(y6H�n
+���������������E��Xɺ��ɓ����,K����M�Q����������N�W�88H^�,�:O�A�l�l�����X������Mn+!q^�Cj
+>abf7361a887c4e53ac97adc19e64234b
+{���Ƶ����V��:��V�<�"�����������X�#�I�����������������������������gn����������,�A��V���'�8�(�"��
+����������@��k�C�=�������B������������Z��V�E�"���Z��B����X�#������������������Z�n���y�C�X�������Z�f
+�"�V���������X����D
+>ae209f299335d3708222d92bc2697502
+9&%%%%%%792hq�B����+���Z���ﴠ<�0���忷in4=4�M�DZ�;�=�$��&^X�D��ʷ�X�?���|ޗ�z�zG�X����Η�~��܍��[
+������Z���Xũ�F�
+>af5e37f6170ad6dd671732b9beb56903
+{���ƵB����V��:��V�<�"�����������X�#�I���������������������������gn�����������,�A��V���'�8�(�"�V��
+��������������������B������������Z��V�E�"���Z��B����X�#������������������Z�n���j�C�X������܄�f�"�V
+����������d�
+>af828e69a5f2d0fd42a2a213e09eb64f
+�EM��{���X��J��X�����渌��f��KG���$�o��m+���ܩ���h�ظ�ؐ���X���C���q���~܍������C���%�����=����n��
+����E���<����Z��[ʗ����FJ�f��X���K���(g
+>b056b4c4d9017a19c3095e4c72f67a47
+"�����UX�dHX'�7�79���ܛ���q�温��E�����gXSX��;����������������������������M�o��S<��R���������
+��r������XXCdM'&����s����������b����X�X��X8XZ�����������K��AF��������n�������C�橸��A���Q�u�7
+>b3693168b9f04cd2db237b30b4be5176
+9ķg����������<]�ĩ��/m�F���(�������ϱ~��������G�����Y���c��d�Y���x:��a�m������������s����d���
+x��/��q���m�b���i���'��k��GE���n����������E�洩��m����������8�WtG'��o��Ӕ7
+>b49b9cb98eb527401c12984cc1a2e18d
+\����\�d������O��������������n������������������q���Z�V8�������������������X��d�l����v��&�8��b�
+��b���c�������l���]��F��Gf��&n�������������Z�����������������������������Jg�ZOH#
+>b5e4c6287793467d8b047e64ec6f935b
+��μR���;�|���~L<�G��:O�X�X������Z#J�������&�^$��WH���j
+>b6a8572284504b5d762ee82f90b16d91
+�Uk<�:{�<��:��<�h���E����@]E�C�����#������������b�E��s&]E�C�����#�N����������b�K��s&�E�C����
+�#�N����&
+>b903b162c87715ee7384e2af499c16cd
+����$�H�X�`�����������C�"�V�Z��$��X�X�#��Z���������������~Ͳ;��ѡ�C�X������f�"�V�%�����B����J���
+>b94e58bdb4361ef7c1237e2f79e9939a
+B)��$!lVM@�&��l�Z�#K�㊌�Z�&RB?$�?1Ow,)&I�+�h+��+)��G#�}=T�'B�m��6+���0t�\��&�F$�ڿ�󯐳&�I��nY<%%
+���?��@!�3(U�'0<�?pM$P�%˜�%臧
+>ba17a05f924bfd8ff94a6c5d73635b4a
+pF���J�������n�@��d�H�����ח�:�����곫���SV�qX�����~�XmC��v���������J�Ea8!�XO��Z/ʍ��ic�)/b�//k:�
+������������������������n�����������������}����J�����b������������S���������Z��䍃����BJ��g$٤K
+��)��/)
+>ba48b3cd7ebd29a9e2e367a37ac501cf
+�Z���X�="��r��Z��"���&S��C���E���b���������^�X����"tZ�"��Sa�p�=�~Z��f��H����q��AX������:�������
+����ՓB�9+
+>bbd36c9292c799cc4a4733df8189699f
+Z��|$�܍�V�������X�C�#旗������(�X�����������������������,�Ͳ�(�^�=�R������j������������|a���V
+�������X�C�#�a������(�X�f���������������������,��Ͳ�(�^�=�F����&�@��7�����u�5
+>bc4ef49e84c894acd9a656db73d52eeb
+��"�����()���!�Q00��B��!�F���n�)�b�D�(�U&���a�����������x$�D)�X7��C���������������׎���[86nX�%'d�
+�ka���ۂ
+>bdf48b24c3f0fdeaa0d9654593ea6f0d
+���B�Vn�OX�X����&�d�d�,n���i$����]+��mi����(����^�)=�Ň�pq68!~����Z�ZZ��Ʉ��^��Y��������&oCT9
+F��Z��ʪ�N6+n2�o����,U��kV+!�=u�&��lH��A��Γ���Z�B���=�2��Q&�<
+>be74be0e66ca7b4603630a5a17fef2a4
+5�"������������"Z{��"W��������Z�����&"�"B����͢��""ʲB'z"0�
+>c12ad1255bc3ed843ae21de938ab5f62
+�\�d������O����؛���������������������������Vq���Z�q8����������������d�l����v��&�8��b���b���c���
+����X�b�l���]��F��f��&n������������������������쳩���<
+>c2c32c13af9575e387657a5ea9736806
+F)54���gP����z|BIPƍ|�z��rz�|�䲄��PPŘ)�IB&��R,g/2g�f6zN5�E<2�PbB+�g,3g/2�įn���mg[���1��R<6�RF/�f<
+l�xGYݑ�xQ_�%�zg35A�aP'\{,R�gAg:�g�
+>c5753ae3727f4c7fc5433d2395780f60
+9$�X�X�k����������E���X������m��B��ෝ=�d�������n�Z�ʯ��γX�X�Ω����}�z��mά�Xٯ����o:��ů�u�?�d�
+L�����J@��:��S
+>c582c9c4daca574c1be2935ee4ecc45f
+9w�9����d�C)A���t���<���1�ᕄ�N�]��X���b���b��؄��wR
+>c5863f5030b5a39b990f9179f7f8cfae
+$��G�&�Jzt̮�L0nO�nK���:X����w�S��Πa﷢d���ZU�n�d���N��P����+�C:����L�����~:���z�k���LZ~�<����Ň�
+�������g�d�Z~�K�������~��i�g�;�I��
+>c5af58a62688d809a1a0747990141890
+N����)��]�/)�)���A0�SG��,I��XB�����PtN4q�u,v�1��(2��,��C�~
+>c5d10a25f4692ab6cc7c072c5ac3efcd
+9���L�jB���om�����x���<���X��^��UnB��:���;�U�����������������m����������ݷXX����8^��S���F��o������
+����������������r��ԟ������d���������:��=CA=O'X��M!�Mb��iq��C���:|������Ω�������8���d��������Z��X
+�C�����d����Q�����������Xh���bES�6
+>c73204c4134fbbb074a65e8410643b7c
+V/���}����a����Z��������ݫ��&��n���"��"%��������B�x������������������������ܓ���݄�����������9B��
+n�����E�����؊Xq�;C��t�������J��Z��e;
+>c737dfcd8b440f4a80b15ef9f3c3a806
+���̗$�H�X������������C�"�V�Z��$��X�X�#��Z���������������~Ͳ;��ѡ�x�X������f�"�V��j��嗩��J����
+>cb13cb2555c5bacde1dc168618e48f3f
+9������������������zX�XX!����!4NME���m�������������������������d�d�'k�&��������������΁�XXm��s�����
+n��������������������XXX��4�'x��������������������������7F����X��b���A�������m
+>cbc92a8a85651bd2fb2a8622778ceaf5
+O�a�a$�����Q����'XV^HX'�7�7p����G��ΰ�q�帩��E�������gX8XX�;j��|����Ǎ�����������X��������5�u��S
+<��R���������r������XXCdM'&��������ܶ���c��b���:X�Xn_X8X&�������K��AF��������n�������<�����d���"��
+�Ŝ���$5
+>cbf4a79de0130a2230da880af29a77c4
+:B�����Q������X�dHX'�7�79���ܛ���q�温��E�����gXSX��;����������������������������M�o��S<��R��
+���������r��ڿ��XXCdM'&����s�������q��b����X�X��X8�Z�����������K��AF����Z���n�������<�橸��A�w
+>cd06863eb01c4bcc5ae9b1817480cf17
+{���Ƶ����V��:��V�<�"����������X�#fI���������������������������In������������,�A��V���'�8�(�"����
+������������������k�C�=�������B�������������Z��V�C�"���Z��B�����#������������������Z�n���y�C�X�����
+���f�"�V�������������
+>ced02dc66c62cb64fc91194b87a4189c
+9���׾��������+��n'��U�ܮ:�A���LE��K�������ׄ���������\d��'�U�U:�Asn�L+������������������������
+�
+>cf096ff6881b75de1c34ab8525847a53
+9/�ӖY�Y)w��ݻA/ȂP��Q�)g;!�1��sOw�R{�W|�+'��U�r=6`1/+()+�'��X��[!(+
+>cfe750d45ad9ea874e03be9e47fe8331
+9�����&'H0�':�=U��'������ɩׄ���������S'X]�U:�X���'���<��ɩx��u��EB��!
+>d3011fec8513a3e2267bf4e15e08704b
+"����������GU��f�!�#W�u��������������������f���~��H������܄�Q�������������8�n���n�Z�����X���U
+(��WcXX�������������b�<mj)���������G�������:d����d������~�"���r�
+>d330d1598fd712b741ae1a07a1797d37
+9�����侀V1p��U��2Z�܇�K�J����O���n���k����������XX9!)�5eL�d�����BmLJ����=XNr���������������s��cX
+��������X[X�!@S�fؽ�K��x�'�m�C������������8ݲnG������J����������J����̗���ݾ���;�n��e�I�
+>d5222617b3ccb99da7e3ec0bb92c4cb5
+ʾ�{���m��+��n'�U�s:�A���LE���m��ׄ��������᩸�����U����Z�X�n�Y+���������������������+��n'�U�s:�A
+��LE��m�������ʯ����d����U��:�X�n�L+�������
+>d7be13700ed7588ca7b576ccd24889ab
+�$�^'Jr���Xʗ=PU6��Q@N"JF�F_��ΩY������ʇ����E7�{�C�sQ�������Z"�&&����R��e�����&��ʜ���B(������Q��
+��������������X��ܢ��\���X���&D=�V�d�����s[��(�j&=f�����������%F=�X=!eZݯ:5
+>d973556a2b119e22f373f42b3ee50271
+90't�����tB�,BW��܊,�B�ds��k���%��z%%��(=܏b0����m��������ݩ橭��������S@���0%�G;J��K�B���Z���a�Z
+�<���A���+&7^L�G���G���S����&7&#�J,V����ܧ�,�?���]�~�`������$<E�X'VJ/%F(fx�(���I�(X�[Jܷ?]#��V��g
+f��cK
+>da9c94dd81bbb9286cd73b3d2469179c
+5j����ʾ��������[�ẳi���:e�G]BU��pl��H��@,c�P��f!���"$"g��Z��Y�O������"$"��\�Y��"�"�,;��ů�����
+�{�2ʍ���������9�
+>db724bcc82eacb181edae3af47403f31
+9Ԇ�by�˘��E�u$z���dk�8�8�����,�T+O�1,��1:?㏳0,=�H7
+>dbea14172bdf1965e97ce49c46d0fd07
+!��JO�Z����Xr�?�X����Z��?�jX�^�(~��@����j���!����@����d�E�W��/WAk�X�&��Z�������?��<�^�5]���ѓan!���
+:��+練�����?V&+�&r�@��CU�A&�W���
+>dea447cd63c9d8c162d6bcafb1cbb851
+B��#Q�?�(e/x��g=8��;������X�?'&����܂G�,@�E�]��)���l��uI�2&�!X�<����Z�=eq���j��?+3�7�ԙU�������
+�=�PX�D�y�PX+U������t�������������Q�Xg\7+V4&#!��(�)��?���$Q#d/?�E��DK{�<'�,��9�B����h7�N
+>deee1e6a65f0898c57dcde00fc15c870
+\V�?b�lUA���P�X��S,��2�!?&���F��?�غcZX���Iq��,ʯ�{���A���A��f�X��~,�����UA�)x��\�yWI!�)%��:,B3)!
+6g5�M�SI��P:�����PPz��P4
+>e0ba85cb42b528cdde934e6e751de9b2
+\�թG���������������"��ZJ��n���"(�������J��1���"����S�,R�������X�������#A&��������J�J�U:�������
+J����B���"V�������J����"�����n?"Y��qH
+>e130d30836eaf714deba0688836fbaec
+{���Ƶ�����V��:��V�<�"�����������X�#�I���������������������������gn�����������,�A��V���'�8�(�"�V��
+������������k����������B������������Z��V�E�"���Z��B����X�#������������������Z�n���j�C�X��������f�
+"�V�����������������DQ��Qz
+>e28b3a1dbc0f15f5e8575e6ca4f6ea00
+9A�f��^�������d�q�ٯ�A��A�G�����������������������������������������E��(G�:������C����M�+��=J��C
+���?$�!�l�M(��A1��q:�B|)�38�R���0B�|��X$Q%)3X��&���W��&���w��x,ش/����J�j
+>e2e8d293c6308e03168e6291d88b3e9e
+&1����N�vU)5�/+V���wPg����z鵬���tt������10�55
+>e3d87649b2f1632f153be8830af2c4ce
+�'����d�l�U��ؑ��[(��E:�������������������d�E��������������d�G�l�U�������b���:�������������`�����Z�
+����^�'B�&��d�����x��
+>e44a004fd43907d485810413e310dc01
+�'$)84ýD���'�Ɣ"O(#)W"F\'&�x"�Q"&&j�M�"$$&M��T�uN#=8M"�0$�':��(C?T(�'""&zʑ"@v"�"�φL�L�$�(g`�׋0'2
+�#Q�8��h~S��(�"MuF�?�!�1
+>e69e1ac0a4b2554df25f2c2183b0fba0
+9�I��dXq�0J4�ԧ�������m���b��������ܷ�XVXiaB���<��V������X�X8S6]������!|;5!Yu7|�9<�O�:��elAX:%7/))�
+�n�/�U}�X��4V��Rx��:K�a?X"=:/��}�IY�:����X��6C���b���������=?1(/$�#c2!M&��|�a�{q{�l���AI��C����Z���
+���u�?t(!8j=���0i��m����~?'&�E=8@FT����+��AX��ȝ
+>e8936c77146e6b67b02efb57e9f7dba3
+j@"^��~M�=�o�ܒ&���A��<����Z��=���U�匄�������������������X�k��:��A��5��%`^mk��J��c�C��:O�X�l���
+����x����空�����ܳ����=��?�������l(U<�3���%�;�R�ZX�3%0y2
+>eb17077e5768f21bb26c456637a41be1
+�=�G�l���M���(��+A��<)��C�ܓ����:�BHo��������e��=�,�������u�C�d���]b(HV8;���e�+�~��������C^�Z��
+����<�n�@h(�s<���S��냻�u�,&���K��FX��C��ɒ�������Eb��?�9Xy/Fc)+��?���X������n�a���p��m�Џ#��<7�X�
+�F����Z�^��BX�,������ś�=��3�c���SA�,n����¡R
+>eb75493f078d95ea52db97600717baa3
+170G��+3,3'0!&5!U3�3R$�]�10!31/#A7h07)761(P35i7�)�7j1܏)4(5?4H/3$4=R56l�:!3L,$=F1#IT(�]\L,52$?+1_�s'
+��o2�4FK�&oG4�!0$2|�12FF�7&d(
+>ec6d5b33f2ae17f54335ee8fce56e790
+&73�]9T먠�����B���<�������=�=�o��:����!�<�@^'���0��,�U�������������Z���XI&��?��X�`
+>ee520d2fc85e5b54c5cab5b1125d8c3b
+9���b���A��F��XHX��!1!\7_}T!AB�;)��~Z�e�������������n���B���J�[������������$��S%��<��E�������X�5�0=
+'�,��F&���H��%!�m����"��"���������������`�"��"����I$�=��+ZL���������c������i�bd<�X!M7����B���E����
+�����ũq�?0���������쒩�d�Z����C��<���<����sdz,0
+>f038453661ad6048b85e5011b6e6296a
+9kˌ��e�jS�d�N���n�W&�^YqrqPbD���&���F^JK���~�����×��Z/2'd/��:��������������������������������~[%�
+(�d�#��~�A�[�XUZ���ಳ����������B�ɩ��]���@Z���J�:�U����B���=�e=r�ɨ��������Qs�����e���W�܍]������
+������0������]V�lzU:�b�<_<���:���;h�ƫ$�'
+>f10edaeff439be4afbba7757c8cac254
+pʞ#$YCH!�����1���2�B~V�=�ŗ:�߷��On���)H�X��U��Z�=ڣ�l$�?&
+>f22915668ca1cb3ce6b2cdc5b2a8d88f
+��e{�+�w%��������"]�9�������܄�"4��05+A%}����=��X"����Q�]��7���^��k�"ϴ����B�"�(�������೷=_"��׷
+$3%G���&�"$
+>f2a896c08302b679f64cd8e52af94835
+\�gO����4Ah�����{vPH/?,�1,�w,:��,M��L��+<�������ʨ+�wH�����8�w��XK��R��{l{�r)6
+>f2afa8933c4998c89a5c39f692e949bb
+$��n�tB�,BW��܊,�B�ds��k���%��z%%��(=܏b0��ا��m���ʍꯩ���o������������S@���0%�G;J��K�B�Z���a�Z
+�<���A���+&7^L�G���G���S���&7&#�J,V���܄�,�?���]�~�`���Z��$<E�X'VJ/%F(f<�(���I�(X�[Jܷ?]#��V��gf
+��R
+>f431126caeda0da6cffa83c7e49df465
+{���Ƶ����V��:��V�<�"����������X�#�I�����������������������������gn�����������,�A��V���'�8�(�"�V
+������������k���=�������B������������Z��V�E�"���Z��B����X�#������������������Z�n��j�C�X��������f�
+"�V����������X�
+>f56a6e550ea46518bc972010f973cfbd
+B��X�B����V��:��V�E�"������������X�#ɺ�����������������������g�����������,�A��V���'�8�(�"�V��������
+�������=�������`�X�����������Z��V�E�"���Z��B�����#���Z�������������������������,�A�������Z�(�"�R�
+���������q����"N
+>f72d3b0c4bbb6e49ce2af6496d1b71a0
+9��<fɀ��y��i��V��bb��:��f�����������������n����B��H$l<��~Z��A�LN��2��W<���ɓx���������q�������
+���������������������������m��EL��,����eE�&��M�R'dȸ���b��������������B�C��e�ؤp�؃����ȩ�������
+�aX������J@���`Ű
+>f7a5e37dc7250be9dd8e0efc7b40d3b7
+���"������E�B"���b�Z����a��""��H��b���R�M��r���"�"����������XU���R��<$��"�H�Bn�2N�hkU"h�=�
+>f82cb3c7c161ae904b70948cfd869920
+9j�D��?���Ce�@����������E���:?��=X]���������������ɴ�d��������ܩ����������A�����凧�=m=%"��!�j)N��X
+��cfxp�������Rm��X���)��q�`]�����,��eY��,
+>f9eb38ef6943149426b564b15c282045
+{0�9�H���u�Z������������Z������������E�����bQ]�������������������&sDkL�1<���c��������������������B+
+s�P๑lX������������l4!FaL�Xx��Q������Z����K������������؎F��8m)l<SdSɺ���������������������~
+E�G�8�X�\�'Ba
+>fb5bff21f8955d17ec9c9ef42e3fe2a1
+_�#]&�(2�$(1/%&44h/6344?5372$oz3,4?,5U/)5))6=�0,)%1507/,,Q/1+,%1;5!6$,$�'�',�4O��U�?$}}RPة9�}K!����
+����
+>fc94ceafa368716b735a0cc814095abc
+;�ـ�����#����X�e�d�����ܩ��������X��1���J�淑�C�+������|UA�X�������������&����S�Fn�B�����@ݩ�GU�
+���J������Z�����lq�%/d&%�<!E�%�����TX9�D��������������'��SAv�<(Z����h
+>fdfbd67ee8a6a80e1c49419316279395
+�]��H1=/G'k��]����'a��]%=@?U=0j��7�������E�s:����V�?�(U���z�<�3�C���������Ch���U,���E���p�=!+NFTM&��
+�{�%�?xj#�+������������䩞+�;��+������<�E{&�F�X��:�<{,5�����������!gR�W�BX�E�U�ʌ��7+�5�+�+�2�
+�����8�!KR+^<FB����dB����@��,!<^]�ʆ
+>ff5c81bfb664296a11b43497a69645cc
+�ai�0l3�=�!NT�!N!@H[Ƽ�:��l�H51�%H�Z���ڂl���Zͨv����+���&';S�1��񝗕��!��$����i��ռ!)1(J����&H}�&�A
+@���iE�[M��!'7!7D=?�s:�C?!=%5!7U��!y8��M5�s!�k�����l�,7LKy��;�!$�l�l���<BŋX?�'���3D�s,R�CC}jxa��/
diff --git a/modules/bindings/tests/testfiles/hhblitsdb/hhblitsdb.cs219.sizes b/modules/bindings/tests/testfiles/hhblitsdb/hhblitsdb.cs219.sizes
new file mode 100644
index 0000000000000000000000000000000000000000..2ae40c6df2bc9ee6dbfcafebd6bd2da1b878504a
--- /dev/null
+++ b/modules/bindings/tests/testfiles/hhblitsdb/hhblitsdb.cs219.sizes
@@ -0,0 +1 @@
+200 30298
diff --git a/modules/bindings/tests/testfiles/hhblitsdb/hhblitsdb_a3m_db b/modules/bindings/tests/testfiles/hhblitsdb/hhblitsdb_a3m_db
new file mode 100644
index 0000000000000000000000000000000000000000..5ad84079c3b26ffd82cf8fc077bb9285071fadec
Binary files /dev/null and b/modules/bindings/tests/testfiles/hhblitsdb/hhblitsdb_a3m_db differ
diff --git a/modules/bindings/tests/testfiles/hhblitsdb/hhblitsdb_a3m_db.index b/modules/bindings/tests/testfiles/hhblitsdb/hhblitsdb_a3m_db.index
new file mode 100644
index 0000000000000000000000000000000000000000..f98c82306c62cf5a421bfe8717dd628ce83e1822
--- /dev/null
+++ b/modules/bindings/tests/testfiles/hhblitsdb/hhblitsdb_a3m_db.index
@@ -0,0 +1,200 @@
+02ae072bdd8d4b3cd3ddea7d7fd6accb���	0	465167
+049453f6b1ef191ef1f937c85980d483���	465167	3931
+07725759f4907c8886db21d514cb9b12���	469098	246082
+07e9709ec97fb9c893c6efa6db9e811b���	715180	505726
+0895791d132888554de0d758d179b7c7���	1220906	74290
+094af3c04fcdf9bf04bb55a97a19581b���	1295196	209467
+09ce670d46e49ba58915a7017daeb51d���	1504663	330580
+0a209425cf52d1e9fc937e5aed5d7d69���	1835243	8143
+0a407d4b0634f8fa863191382dd9ec39���	1843386	412168
+0b91ebac43769ec865264a8281966ca6���	2255554	153133
+0c68c5d75cc2ae618e6e5f1010b542af���	2408687	248075
+0df5dbed0f36c37f3836e114a8b5c77b���	2656762	198383
+0e5c9e30af579568c535c51a9a27f145���	2855145	71588
+0f066235c0e8814be13f086538bfd823���	2926733	10190
+0f0e0cc97063da4305095efeb6623b6b���	2936923	304059
+0f1c654429f6f65b407c9e9dde84eba4���	3240982	347000
+0f2381e4f46aa5af8618fb2c6a96974d���	3587982	238500
+10cfcdaad4a10e98aec756d8a15574d9���	3826482	49467
+1189797f72eb6f0e100dc3369ccd8ffa���	3875949	154399
+11d0ff4d993e31f0a2ea189846a08655���	4030348	5161
+13077d2b3643cabf3bccc22d84a0a439���	4035509	426219
+14d53a48bb3d4cf83c4f637bd86d7e3e���	4461728	4691
+17059f2501ae2a72fc19097f4d2b1341���	4466419	44508
+19505167af9ebfb7eba762c056361c1f���	4510927	480430
+1b2f6c29a7ee470020810a8013596703���	4991357	656647
+1d1847456cd583e08ed67aaa11df98f2���	5648004	5180
+203cc7f9db11472b54bca3769bfaf8df���	5653184	430329
+2136b1cea2992a6bf1cf63cb4e484430���	6083513	462614
+271643171bfa4abfd3da32e2d13e3392���	6546127	656946
+2798277b8842d36de2206ba3ae8863fc���	7203073	468469
+2a3d9802bfcbb4c8a6063b33f02f6538���	7671542	210213
+2aaa64efe58cc449ac3f69c82cc966f0���	7881755	217102
+2b78356947507e56ed56d054e1215b8c���	8098857	345156
+2b86eaed0dd0462632e7bb6e0a56ceb8���	8444013	532337
+2c276c7332b4ac4757cbea933e3f987e���	8976350	244787
+2cf47989aa11bbeeda0f0b4af2c1f1ad���	9221137	361590
+2dc7af2028fa424ea0f21cfb017ac190���	9582727	205542
+2ebbe0783d204f9b6a288ba6e9641f90���	9788269	425878
+2f38e0381f5a1497aa929335a94cdbc7���	10214147	393225
+2f4c86088a47ef73c12ffc801e19fb3c���	10607372	501221
+2ff05444e7145a5dd540ec42015fcba1���	11108593	405333
+3067be314a806ff137315081e104742e���	11513926	599483
+3155c91c2cbf7967cb4ba20d80ff989c���	12113409	401371
+3472662a6001a05156368eef829706af���	12514780	497132
+377b625a8e52f94cba9ef9a525219056���	13011912	60398
+37afc7acd88623f9df7bf8f423af00c0���	13072310	239558
+389317ac7330494edc8db3812c39f6d3���	13311868	80938
+38a44a0cf7d477bebe8b2606d936e643���	13392806	145071
+38dd9955ccfba0d5be1c28ca6ce0751d���	13537877	162693
+3b63735b431780c58c19dd032083016e���	13700570	601237
+3dddac6f1a46a0d944548b4f8648c5d1���	14301807	82964
+3e7b90809bd446a538f9eb1a1ca0e551���	14384771	338542
+3efa288e683aab27e0db9e3baf300765���	14723313	465547
+409d1b78279b50a32005612fe5003760���	15188860	442630
+4162710e327474bbbd96cdac5a602313���	15631490	404890
+4186931bf3bd591aa12aac05cbb54275���	16036380	294952
+448f640ce08539f9f492ab947cf5c879���	16331332	55944
+482b4b12963f255ad7693a467b7af4cc���	16387276	221687
+4939a1cdd4b26c7d9053b02c16db7e41���	16608963	335082
+497673b84b7766fe2450fe095360affb���	16944045	215896
+4bc967f8d6c71174670a6efb6d0861ff���	17159941	449639
+4c402988a256f524c3b41ec989161202���	17609580	222493
+4e1e30ab1e15c9c1545ff8328bcfebeb���	17832073	19459
+4f78b9c2edbc3ae2d8e9a0de15b7225f���	17851532	305067
+5039b5951b98074071f6c69dc58114cc���	18156599	244097
+52f7b42c2dd929be3683545ebc8d1362���	18400696	257667
+530957bbdb4e54c1b80f11ba55b52a90���	18658363	1052098
+530b8b90a2b272c2660145f9c38cb283���	19710461	228593
+5364a334c335e7d706a5569fbc3f602d���	19939054	418866
+53ff759256b5d7f5f74b908ef8b7590f���	20357920	234868
+55e5f4d58d11858b673e58b73804fab3���	20592788	414410
+564c9b9e5d4cd66b1fd7f125a716af4e���	21007198	263248
+56a96aae83069ea95d56b56dc6e8cd1a���	21270446	428463
+5b39e5a7108ee75bcacb74b9050dfe57���	21698909	2462
+5b7549a440ece6efc515d1ecf5eab975���	21701371	72297
+5b8f9d914431e9d2b55e563b03e7b909���	21773668	18605
+5ce3a21f2652f5e4378c3552cceb2340���	21792273	142753
+5d895b2caff816955040ab755eaf5b19���	21935026	161391
+60dd783edaf524b39db3af7ecfd53a48���	22096417	282411
+61affadfde1fab540b7313adbf4ebfda���	22378828	108181
+61e58fd4d97efb70b78410488ce6cac8���	22487009	422702
+665b4706556bcfdcefa8812b17dc787c���	22909711	460497
+674c81cff4c6c504dd50e35c2bf78401���	23370208	24482
+679a9284ef0ef040ad53936c4c1e9d7d���	23394690	59178
+68a5857c951cd0795a2bfc79e65a0c63���	23453868	336500
+6a5d2aa2a4dfa511f1b7a6417307a0bf���	23790368	481922
+6dc27b301d7556991a74587deb3a9692���	24272290	541649
+6e235e11f9c330891bd4a7eac552e81b���	24813939	3147
+6f8bf45e3bf355ef54d788898343cb1c���	24817086	3342
+70185c53b564a6651b730e4dcf340af6���	24820428	42566
+717d981e28459396ae1133448788c53e���	24862994	35472
+71fdde7383f09a65b56a391c1db52e35���	24898466	97782
+74210cc330abf78ec4c1fa3592d2152d���	24996248	418558
+757d964661b62316dff0960e2a4a87ea���	25414806	337585
+75f1ddc04ebf9d5bc247ed264936c742���	25752391	306886
+79b1bbcf6f43d0235bc61bef7593bdbe���	26059277	79261
+79cba631d7059d8c2467baa2b9e42370���	26138538	269622
+7aa7e6eee43e1aae66ded2fce9550a54���	26408160	67932
+7bf67dbec14c0ea001ff88bc73dd7396���	26476092	83351
+7cff8b05889041a6d059231e4f4bc281���	26559443	110720
+7d7b394238d3b3e35f1bbacceedade0b���	26670163	498540
+7ec67cbbd85f59718803563580f1731b���	27168703	626803
+81e79b5741c9fbdcdbbebf2c8b14e32c���	27795506	427552
+8237cebaaa25ac6a2b0d49c9d5837da5���	28223058	28947
+84792f9cbc9eb5adabb41b1a904360bb���	28252005	28812
+86ed36c2fe7938800e5622d9b4acb515���	28280817	71227
+88117153c423d8f3cd1f072dcda24597���	28352044	161621
+8e30ca516d2b86076f51d1316fab39ad���	28513665	479192
+8fd273e25da1bf193a2bf90e2bc9fef0���	28992857	1618
+91ee985382113129d3975a1aa1210405���	28994475	459074
+9287755aa6aa27583da6be3b2408bfcc���	29453549	332216
+9343cd2395312266b68b016d74fb3c86���	29785765	301625
+93a4e2eb4447ccb72cf9476930f1f5df���	30087390	329136
+98b5ff80a113b7bb28949a2a5cd20879���	30416526	6636
+9ac9d2aa5d496091f1a6d71517f29360���	30423162	44359
+9b972e307eb0d9de3734ffdbf33ed781���	30467521	443090
+9c68b86897cc76a533b3376c5680b606���	30910611	21088
+9c7b8409c5da2a6bc10d796287eb4c1f���	30931699	382334
+9f519c37964061e00a9e9906f774552e���	31314033	40037
+a0a16d5fe9c52ade8dbd14d530daeeb8���	31354070	53618
+a1369bdee466c1364c07095750be3efc���	31407688	237984
+a1cf9299e65402da85fa1134c4159419���	31645672	534291
+a251ab96460cc372677a195a346bdc79���	32179963	40899
+a44d747376cfd87bd0f30749697bc63b���	32220862	574506
+a4ffb81039c95ec205e15ab0095774e5���	32795368	926
+a58e5f77fe5c98ba022ce3bec19b5c22���	32796294	338176
+a7297e082b04c39b5ed5edf7a5889375���	33134470	485140
+a7d85b5797fc7c87d5f26fc1eaa87af7���	33619610	29371
+a9670fd5e42b822d83bb9b8a9eda5dc0���	33648981	285899
+aa7797cb86715b5f00dd396459cdd380���	33934880	106782
+abf7361a887c4e53ac97adc19e64234b���	34041662	507005
+ae209f299335d3708222d92bc2697502���	34548667	105045
+af5e37f6170ad6dd671732b9beb56903���	34653712	466276
+af828e69a5f2d0fd42a2a213e09eb64f���	35119988	319296
+b056b4c4d9017a19c3095e4c72f67a47���	35439284	491626
+b3693168b9f04cd2db237b30b4be5176���	35930910	383738
+b49b9cb98eb527401c12984cc1a2e18d���	36314648	551520
+b5e4c6287793467d8b047e64ec6f935b���	36866168	220353
+b6a8572284504b5d762ee82f90b16d91���	37086521	318046
+b903b162c87715ee7384e2af499c16cd���	37404567	231267
+b94e58bdb4361ef7c1237e2f79e9939a���	37635834	24068
+ba17a05f924bfd8ff94a6c5d73635b4a���	37659902	503778
+ba48b3cd7ebd29a9e2e367a37ac501cf���	38163680	331119
+bbd36c9292c799cc4a4733df8189699f���	38494799	461652
+bc4ef49e84c894acd9a656db73d52eeb���	38956451	147019
+bdf48b24c3f0fdeaa0d9654593ea6f0d���	39103470	425624
+be74be0e66ca7b4603630a5a17fef2a4���	39529094	50447
+c12ad1255bc3ed843ae21de938ab5f62���	39579541	547816
+c2c32c13af9575e387657a5ea9736806���	40127357	141801
+c5753ae3727f4c7fc5433d2395780f60���	40269158	369904
+c582c9c4daca574c1be2935ee4ecc45f���	40639062	217196
+c5863f5030b5a39b990f9179f7f8cfae���	40856258	142817
+c5af58a62688d809a1a0747990141890���	40999075	138526
+c5d10a25f4692ab6cc7c072c5ac3efcd���	41137601	869455
+c73204c4134fbbb074a65e8410643b7c���	42007056	386481
+c737dfcd8b440f4a80b15ef9f3c3a806���	42393537	226784
+cb13cb2555c5bacde1dc168618e48f3f���	42620321	702103
+cbc92a8a85651bd2fb2a8622778ceaf5���	43322424	436029
+cbf4a79de0130a2230da880af29a77c4���	43758453	432356
+cd06863eb01c4bcc5ae9b1817480cf17���	44190809	503963
+ced02dc66c62cb64fc91194b87a4189c���	44694772	339412
+cf096ff6881b75de1c34ab8525847a53���	45034184	1053
+cfe750d45ad9ea874e03be9e47fe8331���	45035237	216297
+d3011fec8513a3e2267bf4e15e08704b���	45251534	353629
+d330d1598fd712b741ae1a07a1797d37���	45605163	498385
+d5222617b3ccb99da7e3ec0bb92c4cb5���	46103548	540187
+d7be13700ed7588ca7b576ccd24889ab���	46643735	372382
+d973556a2b119e22f373f42b3ee50271���	47016117	442227
+da9c94dd81bbb9286cd73b3d2469179c���	47458344	53108
+db724bcc82eacb181edae3af47403f31���	47511452	33829
+dbea14172bdf1965e97ce49c46d0fd07���	47545281	145057
+dea447cd63c9d8c162d6bcafb1cbb851���	47690338	55241
+deee1e6a65f0898c57dcde00fc15c870���	47745579	206145
+e0ba85cb42b528cdde934e6e751de9b2���	47951724	366655
+e130d30836eaf714deba0688836fbaec���	48318379	484776
+e28b3a1dbc0f15f5e8575e6ca4f6ea00���	48803155	654271
+e2e8d293c6308e03168e6291d88b3e9e���	49457426	9203
+e3d87649b2f1632f153be8830af2c4ce���	49466629	521432
+e44a004fd43907d485810413e310dc01���	49988061	13494
+e69e1ac0a4b2554df25f2c2183b0fba0���	50001555	491008
+e8936c77146e6b67b02efb57e9f7dba3���	50492563	266088
+eb17077e5768f21bb26c456637a41be1���	50758651	75338
+eb75493f078d95ea52db97600717baa3���	50833989	931
+ec6d5b33f2ae17f54335ee8fce56e790���	50834920	286921
+ee520d2fc85e5b54c5cab5b1125d8c3b���	51121841	531686
+f038453661ad6048b85e5011b6e6296a���	51653527	604262
+f10edaeff439be4afbba7757c8cac254���	52257789	61589
+f22915668ca1cb3ce6b2cdc5b2a8d88f���	52319378	70781
+f2a896c08302b679f64cd8e52af94835���	52390159	9872
+f2afa8933c4998c89a5c39f692e949bb���	52400031	426591
+f431126caeda0da6cffa83c7e49df465���	52826622	487625
+f56a6e550ea46518bc972010f973cfbd���	53314247	469870
+f72d3b0c4bbb6e49ce2af6496d1b71a0���	53784117	562282
+f7a5e37dc7250be9dd8e0efc7b40d3b7���	54346399	168005
+f82cb3c7c161ae904b70948cfd869920���	54514404	367568
+f9eb38ef6943149426b564b15c282045���	54881972	557554
+fb5bff21f8955d17ec9c9ef42e3fe2a1���	55439526	11019
+fc94ceafa368716b735a0cc814095abc���	55450545	399815
+fdfbd67ee8a6a80e1c49419316279395���	55850360	421410
+ff5c81bfb664296a11b43497a69645cc���	56271770	7846
diff --git a/modules/bindings/tests/testfiles/hhblitsdb/hhblitsdb_a3m_db.index.sizes b/modules/bindings/tests/testfiles/hhblitsdb/hhblitsdb_a3m_db.index.sizes
new file mode 100644
index 0000000000000000000000000000000000000000..08839f6bb296e888d311d8ea2f35f7ff82dd3f2d
--- /dev/null
+++ b/modules/bindings/tests/testfiles/hhblitsdb/hhblitsdb_a3m_db.index.sizes
@@ -0,0 +1 @@
+200
diff --git a/modules/bindings/tests/testfiles/hhblitsdb/hhblitsdb_hhm_db b/modules/bindings/tests/testfiles/hhblitsdb/hhblitsdb_hhm_db
new file mode 100644
index 0000000000000000000000000000000000000000..46062f4cfbf25492473cb0c65ec46fe5f605896c
--- /dev/null
+++ b/modules/bindings/tests/testfiles/hhblitsdb/hhblitsdb_hhm_db
@@ -0,0 +1,100211 @@
+HHsearch 1.5
+NAME  02ae072bdd8d4b3cd3ddea7d7fd6accb
+FAM   
+FILE  02ae072bdd8d4b3cd3ddea7d7fd6accb
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:20:57 2013
+LENG  149 match states, 149 columns in multiple alignment
+FILT  113 out of 1150 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  8.6 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCCCCCCCHHHHHCCCEECCCCCCHHHHHHHHHHHHCCCCHHHHHHHHCCCHHHHHHHHHHHHHCCCCCCCCCCCCCCCCCCHHHHHHHH
+HHHHHCCCCCHHHHHHHHHHHCCCCCCCCCCHHHHHHHHHHHCCCCCCC
+>ss_conf PSIPRED confidence values
+9623369997667899420778616540676589999999999999699999999998939999999999988538845333579998878999999999
+9999786777999999999843554688549999999999825799999
+>Consensus
+xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxkxxsxxxrxxiixlxxxGxsxxxiaxxlgisxxtixrwxkxxxxxGxxxxxxxxxxxxxklsxxxxxxIx
+xxxxxxxxxsxxxixxxlxxxxxxxxxxxxsxstIxrxLxxxxxxxxxx
+>02ae072bdd8d4b3cd3ddea7d7fd6accb
+MDLEKNYPTPRTSRTGHGGVNQLGGVFVNGRPLPDVVRQRIVELAHQGVRPCDISRQLRVSHGCVSKILGRYYETGSIKPGVIGGSKPKVATPKVVEKIA
+EYKRQNPTMFAWEIRDRLLAERVCDNDTVPSVSSINRIIRTKVQQPPNQ
+>gi|339493737|ref|YP_004714030.1| putative transposase [Pseudomonas stutzeri ATCC 17588 = LMG 11199]gi|339493835|ref|YP_004714128.1| putative transposase [Pseudomonas stutzeri ATCC 17588 = LMG 11199]gi|339493891|ref|YP_004714184.1| putative transposase [Pseudomonas stutzeri ATCC 17588 = LMG 11199]gi|339494626|ref|YP_004714919.1| putative transposase [Pseudomonas stutzeri ATCC 17588 = LMG 11199]gi|338801109|gb|AEJ04941.1| putative transposase [Pseudomonas stutzeri ATCC 17588 = LMG 11199]gi|338801207|gb|AEJ05039.1| putative transposase [Pseudomonas stutzeri ATCC 17588 = LMG 11199]gi|338801263|gb|AEJ05095.1| putative transposase [Pseudomonas stutzeri ATCC 17588 = LMG 11199]gi|338801998|gb|AEJ05830.1| putative transposase [Pseudomonas stutzeri ATCC 17588 = LMG 11199]
+----------------------------------REKRSTALRMREQGYTYKAIGEAVGVHPRTIAHWAQVAEHKGEkaaIAGGQrgVRQGDRRSLSSSQ
+EVLIRTLMTDKmPDQlklgfalwTRDAVRELI-RQR---CGFLMPVRTVGEYLKR--------
+>gi|260581060|ref|ZP_05848882.1| conserved hypothetical protein [Haemophilus influenzae RdAW]gi|2833479|sp|Q57066.1|Y1720_HAEIN RecName: Full=Uncharacterized protein HI_1720gi|1574576|gb|AAC23366.1| conserved hypothetical protein [Haemophilus influenzae Rd KW20]gi|260092300|gb|EEW76241.1| conserved hypothetical protein [Haemophilus influenzae RdAW]
+---------------------KVGLNNQltkvqffMTK-YNFLFKQQVIEFYLQNdKNSSLTRRHFQLAETTLERWINQFNHSGING--LALLGKKRNYS
+PEFKLNVIQAV-KNGKFSAEAACLHF---G------IANSGVVSQWLQA--------
+>gi|298674136|ref|YP_003725886.1| transposase [Methanohalobium evestigatum Z-7303]gi|298287124|gb|ADI73090.1| transposase [Methanohalobium evestigatum Z-7303]
+------------------ERKELEAIVSKGKHKSQkYQNALILLNCDEGeyqkqkHTNEVVSSVLNIGMRKIDRVKKRFVEDGLdmaLNGKEYERTYEKK
+IDGDMEAHIIALScSDPSQGhsqcSLRLLADKVVELEYI---DSISYESIKRVLKKTNL-----
+>gi|308178742|ref|YP_003918148.1| transposase of ISAar25, IS3 family, IS3 group, orfA [Arthrobacter arilaitensis Re117]gi|307746205|emb|CBT77177.1| transposase of ISAar25, IS3 family, IS3 group, orfA [Arthrobacter arilaitensis Re117]
+------------------------------QKFTPEFRAEAVELVISsQKSLVEVTASLGINEGTLGNWVRAYRT-EH--PE--SEAE---ERGPVEWaQ
+YEKLRKELLEV----------------------------------------
+>gi|313894445|ref|ZP_07828010.1| integrase core domain protein [Veillonella sp. oral taxon 158 str. F0412]gi|313441269|gb|EFR59696.1| integrase core domain protein [Veillonella sp. oral taxon 158 str. F0412]
+----------------------------TNKHLNLEERFYLEKRLLAGDPINTIAKALGRSRTTIYAEKKRGtvvqirqnkavlmyiADCGQLayERTRQ
+GSFNTLkaGSIEPSLSWVENKVRVdkwSLDAAVGYALRK----GLFVRNEMVCTKTLYNYLYQ--------
+>gi|156974440|ref|YP_001445347.1| hypothetical protein VIBHAR_02155 [Vibrio harveyi ATCC BAA-1116]gi|156526034|gb|ABU71120.1| hypothetical protein VIBHAR_02155 [Vibrio harveyi ATCC BAA-1116]
+---------------------------------------------------------MLFNNHSI---FGQFGFLSELRNK-----------ATQTMQLI
+EHLTEKTYSHTHQIVAYVKET----FGLDYTVSGMNKWLHHN-------
+>gi|332019769|gb|EGI60232.1| FLJ37770-like protein [Acromyrmex echinatior]
+--------------------------------RSLEQRYAIKFCMRLGKNATETFQMlqeaFKddcISRSQSVMWHKAFKEGREeGADEP-CSGRPtTAR
+PDENVNRVCEVLRSDRRLSIQYVADTL----------NMSTCAVHEIVTENL------
+>gi|340739047|gb|EGR73284.1| InsAB [Escherichia coli O104:H4 str. LB226692]
+-----------------------------YTASQPGTHQKIIDMAHEWRWMPGNCPHYGRWPQHDFTSLKKLRP-QSVTSRIQ-----------------
+-------------------------------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1000	0	0	
+
+D 2    *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2
+       0	*	*	*	*	*	*	1000	0	0	
+
+L 3    *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	3
+       0	*	*	*	*	*	*	1000	0	0	
+
+E 4    *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	4
+       0	*	*	*	*	*	*	1000	0	0	
+
+K 5    *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	5
+       0	*	*	*	*	*	*	1000	0	0	
+
+N 6    *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	6
+       0	*	*	*	*	*	*	1000	0	0	
+
+Y 7    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	7
+       0	*	*	*	*	*	*	1000	0	0	
+
+P 8    *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	8
+       0	*	*	*	*	*	*	1000	0	0	
+
+T 9    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	9
+       0	*	*	*	*	*	*	1000	0	0	
+
+P 10   *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	10
+       0	*	*	*	*	*	*	1000	0	0	
+
+R 11   *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	11
+       0	*	*	*	*	*	*	1000	0	0	
+
+T 12   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	12
+       0	*	*	*	*	*	*	1000	0	0	
+
+S 13   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	13
+       0	*	*	*	*	*	*	1000	0	0	
+
+R 14   *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	14
+       0	*	*	*	*	*	*	1000	0	0	
+
+T 15   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	15
+       0	*	*	*	*	*	*	1000	0	0	
+
+G 16   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	16
+       0	*	*	*	*	*	*	1000	0	0	
+
+H 17   *	*	1071	*	*	*	932	*	*	*	*	*	*	*	*	*	*	*	*	*	17
+       0	*	*	*	*	*	*	1701	0	0	
+
+G 18   *	*	*	1071	*	932	*	*	*	*	*	*	*	*	*	*	*	*	*	*	18
+       0	*	*	*	*	*	*	1701	0	0	
+
+G 19   *	*	*	1954	*	1943	*	*	*	*	*	*	*	2101	2008	*	*	*	*	*	19
+       0	*	*	*	*	*	*	2893	0	0	
+
+V 20   *	2594	*	*	*	*	*	1637	*	*	*	*	*	*	2514	*	*	2574	*	2558	20
+       269	2558	*	1000	1000	*	*	3800	1087	0	
+
+N 21   *	*	*	*	*	2758	*	*	2715	*	*	1256	2816	*	*	2847	*	*	*	*	21
+       0	*	*	*	*	*	*	4167	0	0	
+
+Q 22   *	3433	*	2463	*	*	*	*	2499	3640	*	*	*	1818	3647	*	*	3244	*	*	22
+       0	*	*	*	*	*	*	5266	0	0	
+
+L 23   3358	*	*	*	3752	3514	*	2720	*	1240	*	*	3563	*	*	*	*	3627	*	*	23
+       0	*	*	*	*	*	*	5566	0	0	
+
+G 24   *	*	4017	2216	*	1207	*	*	3843	*	*	*	*	3643	*	4231	*	3529	*	*	24
+       0	*	*	*	*	*	*	5894	0	0	
+
+G 25   1824	*	*	*	*	1445	*	4124	*	4062	*	4325	*	3961	*	3988	*	4163	*	*	25
+       0	*	*	*	*	*	*	6825	0	0	
+
+V 26   *	4459	4353	*	4243	4136	*	2481	3570	3286	4171	4188	3958	*	*	3363	4430	3161	*	*	26
+       70	4399	*	2585	263	*	*	6923	1018	0	
+
+F 27   *	*	*	4614	1745	4324	*	*	*	4074	4313	2840	*	*	*	4215	*	2465	4303	3719	27
+       70	4405	*	0	*	*	*	6727	1018	0	
+
+V 28   4463	*	*	*	4513	4723	4186	3009	3686	4252	3811	*	3586	4548	*	3557	4440	2433	*	4318	28
+       121	3633	*	2115	379	*	*	7850	1194	0	
+
+N 29   5032	*	5341	4403	*	4241	5302	4493	3541	4284	1547	3394	3712	5104	4545	*	4267	*	*	*	29
+       46	5005	*	2000	415	*	*	8838	1000	0	
+
+G 30   5396	*	*	*	*	1547	*	5950	4015	4768	4489	3674	3860	*	3126	3261	4662	*	*	3852	30
+       87	*	4098	*	*	*	*	9378	0	0	
+
+R 31   3947	*	4991	5612	*	6431	4773	6060	1663	4517	5816	*	3819	3595	2348	4550	4318	*	*	*	31
+       233	4151	3425	2348	316	903	1105	9896	1637	1274	
+
+P 32   3455	*	4916	4171	*	5742	4279	5081	3608	5138	4830	3705	2760	3834	3155	3789	4436	4830	*	6116	32
+       124	3601	*	1461	651	295	2435	10014	1591	1874	
+
+L 33   5415	*	*	6533	3590	5400	5325	3025	5268	1937	4733	*	*	5260	4626	4658	4745	5429	5149	2384	33
+       31	5568	*	1901	450	*	0	10316	1193	1051	
+
+P 34   3070	*	4440	6298	*	6403	*	6719	5033	5478	*	3749	3879	4410	3552	1778	2545	6593	*	*	34
+       53	5267	6593	1936	437	0	*	10371	1091	1158	
+
+D 35   3511	*	3676	2962	5423	4271	*	4498	4596	2925	3838	6323	3579	4807	4076	4504	5073	4175	*	5439	35
+       30	6091	7397	0	*	0	*	10475	1072	1000	
+
+V 36   3667	*	2991	1995	6361	4217	6525	*	4751	4550	*	*	5298	3384	3745	3733	4552	4298	*	5412	36
+       17	6451	*	0	*	0	*	10454	1000	1000	
+
+V 37   4142	*	4753	3038	3636	*	4997	3974	3519	3075	5511	5793	*	2638	5679	5692	3965	3983	*	4775	37
+       14	6683	*	1000	1000	*	*	10571	1000	0	
+
+R 38   7684	*	*	*	*	*	4044	5580	1875	3865	6643	5460	6927	4223	1283	6576	5561	6787	6981	5771	38
+       25	5884	*	2928	203	*	*	10576	1073	0	
+
+Q 39   2974	6867	5014	3863	4849	4219	*	3383	4144	3290	5046	6792	*	3212	3788	5095	4016	4710	*	3785	39
+       12	6909	*	0	*	0	*	10586	1000	1000	
+
+R 40   3144	*	4570	3560	*	5610	5562	4374	2660	3614	5807	4939	*	3090	2631	5673	5120	6690	6489	4982	40
+       12	*	6939	*	*	*	*	10597	0	0	
+
+I 41   2987	6878	6631	*	4434	6101	*	1375	7430	3979	3248	*	*	*	*	*	5362	2550	6679	5083	41
+       28	*	5693	2585	263	0	*	10755	1000	1000	
+
+V 42   4391	5938	6165	5080	4667	*	5742	2144	4585	2080	5103	7004	*	5449	4772	*	*	2427	5474	5309	42
+       0	*	*	4390	71	1056	946	10717	1112	1101	
+
+E 43   4428	*	4040	2630	6520	4250	6701	5399	3034	3075	6684	5181	*	3943	2883	4230	6981	5645	4864	4635	43
+       18	6325	*	1000	1000	*	0	10739	1012	1000	
+
+L 44   3155	5567	5321	4653	5914	5964	5287	6325	4256	1539	3276	6432	5291	4598	4357	6848	*	5678	5645	4155	44
+       62	5434	5737	753	1298	*	0	10739	1167	1000	
+
+A 45   3279	5009	*	6300	3594	5495	3815	3431	4539	2663	5627	6617	*	*	4648	5469	6551	3060	4966	2964	45
+       55	4741	*	1315	742	785	1252	10692	1318	1407	
+
+H 46   2936	5191	3363	3195	*	5681	5245	4194	3677	3466	6689	5230	*	4177	3299	3565	*	4468	*	4522	46
+       223	2805	*	994	1006	880	1131	10756	2659	1090	
+
+Q 47   3104	6285	2877	2834	*	6353	6203	4640	3009	4321	6732	3422	*	3064	5165	3694	5223	*	*	*	47
+       127	3565	*	1161	855	*	0	10761	2116	1000	
+
+G 48   6055	6621	5224	3742	*	736	5151	5977	4661	*	*	4702	6530	6703	4746	4352	6881	5334	6487	*	48
+       159	3258	*	714	1357	1032	969	10755	2431	1065	
+
+V 49   4082	5052	5270	3653	4389	4258	3720	4331	3133	3096	5125	6872	6528	4810	3833	5646	5832	4241	4476	4068	49
+       31	5565	*	446	1911	0	*	10761	1244	1000	
+
+R 50   4717	*	5303	5513	*	3657	*	6212	4453	5762	7216	3436	3878	5209	4256	1697	2549	6683	5490	*	50
+       60	5470	5776	2265	336	*	*	10766	1141	0	
+
+P 51   3495	6645	*	6481	4835	*	5125	2670	4008	3339	6466	5192	5084	3481	4223	4159	4479	3285	5889	3702	51
+       31	5579	*	0	*	0	*	10760	1091	1103	
+
+C 52   3415	5265	5112	3753	*	4380	5412	5818	3341	5309	*	3844	4537	4234	2991	2711	3874	4283	*	*	52
+       12	6916	*	2322	322	*	*	10775	1000	0	
+
+D 53   3403	6114	3323	2512	5329	4998	4835	6363	3728	4615	5393	6720	5704	3353	4338	4455	3428	4303	*	7127	53
+       41	5153	*	1538	609	*	*	10775	1323	0	
+
+I 54   2625	5573	6721	*	7216	6662	*	1719	*	2347	5783	6475	*	*	6315	6101	3692	2674	*	*	54
+       0	*	*	*	*	0	*	10737	0	1035	
+
+S 55   1131	2947	*	5258	6557	4295	5929	6721	5969	5656	5617	*	5110	5937	5888	2957	5666	4913	*	*	55
+       0	*	*	*	*	*	*	10775	0	0	
+
+R 56   3392	5584	5320	3346	6877	4578	4794	6736	2847	5207	6628	4411	5290	3994	1940	4487	4966	6889	7023	*	56
+       39	5812	6809	1345	722	*	*	10775	1110	0	
+
+Q 57   3121	*	4776	3743	6964	6557	3925	3290	4106	3447	3999	4803	*	3813	2649	*	4025	4411	*	*	57
+       54	5032	7359	2712	239	*	0	10773	1193	1000	
+
+L 58   4934	5942	6618	*	2540	6996	5662	4421	*	1560	*	*	*	5642	*	5692	4310	3377	6588	2653	58
+       38	5266	*	1315	742	760	1289	10758	1385	1144	
+
+R 59   6721	5112	3102	5211	*	1203	4708	*	4125	5952	6732	3669	5613	4243	4861	4556	6297	5557	*	*	59
+       62	4563	*	2020	408	*	0	10773	1366	1000	
+
+V 60   5416	4580	6711	6835	5484	*	5765	1768	*	2684	5210	*	4714	6297	4009	5983	5261	2202	*	5194	60
+       81	4574	6281	1253	785	0	*	10773	1542	1000	
+
+S 61   3986	*	3817	*	6228	3066	4423	*	4963	6904	6104	3674	3548	*	*	1425	3569	*	6490	*	61
+       0	*	*	0	*	1374	703	10771	1000	1133	
+
+H 62   4270	6721	5841	3785	7079	5863	4198	5114	3221	3974	5722	7023	3052	5701	2228	4908	4283	4041	6660	4856	62
+       0	*	*	*	*	*	0	10775	0	1026	
+
+G 63   3029	*	4289	4844	*	4326	5817	6628	3875	*	6595	4456	4607	3395	2433	2451	3696	6916	*	*	63
+       10	*	7205	*	*	*	0	10775	0	1026	
+
+C 64   3833	5445	*	*	5097	5791	5735	5910	5577	5038	5866	7015	6282	4016	4786	2944	1169	4526	6745	6705	64
+       39	7019	5702	2482	285	1374	703	10771	1074	1133	
+
+V 65   4213	5328	6448	*	3605	5383	*	1782	*	2578	*	*	*	5609	*	5395	5750	2002	*	4930	65
+       0	*	*	*	*	*	0	10718	0	1415	
+
+S 66   3775	5440	5114	3978	4911	5834	4356	5868	4650	6268	5557	5802	*	3327	2707	2990	5086	5552	*	2527	66
+       15	*	6571	*	*	2204	353	10718	0	1415	
+
+K 67   4411	6639	4032	4405	6616	6897	4693	*	2685	5718	6546	3871	*	4127	1702	4122	4440	5459	*	4915	67
+       26	5780	*	1915	444	2149	368	10703	1086	1420	
+
+I 68   5383	5959	*	5814	4670	6711	4745	3278	5236	2802	5929	*	*	*	5721	6470	5373	4664	1420	3336	68
+       12	*	6869	*	*	2413	300	10719	0	1395	
+
+L 69   6659	5805	4933	5842	6623	*	4383	2498	3770	2056	5699	6850	6781	6199	3462	4820	6813	3295	5192	4102	69
+       52	*	4825	*	*	*	0	10707	0	1387	
+
+G 70   3848	*	4422	4690	6607	6885	*	*	1559	4434	*	3894	*	3465	2774	3564	6650	5660	6705	6268	70
+       23	7138	6815	2836	218	3290	156	10588	1133	1750	
+
+R 71   2983	*	5096	4057	5651	5583	6639	4595	2820	4584	5664	3997	*	3931	1930	4138	5633	5534	*	*	71
+       14	6686	*	0	*	3267	158	10586	1000	1849	
+
+Y 72   3598	5710	6824	4699	2682	5636	4993	4715	5216	3156	*	5922	4145	4705	5620	*	6461	*	4836	1794	72
+       63	5562	5548	3150	172	1264	777	10539	1113	1751	
+
+Y 73   3262	*	3916	2716	*	7633	5667	*	3656	3659	6872	3705	5582	4145	2424	5171	4717	4386	6606	5559	73
+       118	5875	4031	599	1558	1875	459	10583	1067	1620	
+
+E 74   3002	*	3683	2394	*	5575	4881	5155	4167	5034	6188	4678	5019	4079	3511	3435	4521	4244	*	5760	74
+       67	5516	5417	3200	166	2167	363	10622	1135	2299	
+
+T 75   4060	5413	3779	3187	4591	3135	4625	5675	4916	4638	5448	4741	5965	5782	3990	3476	3045	6664	*	3902	75
+       92	4537	5763	2609	258	2322	322	10546	1476	2261	
+
+G 76   4138	6728	6636	6380	5183	655	*	5341	4387	*	*	5193	6155	4612	4493	5596	5703	6632	*	*	76
+       146	4751	4087	1128	882	2007	413	10542	1501	2305	
+
+S 77   4429	*	3840	3711	5423	3923	4486	4257	5583	3109	4625	5373	4097	4233	4424	3419	3779	3392	*	*	77
+       705	1459	5450	1264	777	945	1057	10540	4558	2602	
+
+I 78   3602	6510	6686	4436	3556	5613	*	3386	5862	1957	5004	5061	5980	6958	6803	5140	5846	2407	5935	5042	78
+       81	4200	*	1180	840	1843	472	10504	1436	2058	
+
+K 79   2888	*	*	2926	*	3759	6747	4860	3261	3373	*	4300	5016	3756	3328	4276	5664	4121	*	5021	79
+       182	3919	4249	1436	666	901	1107	10581	1778	1739	
+
+P 80   3583	*	3221	4049	5664	5471	5040	*	4348	3441	*	3409	2121	5589	4991	3656	4570	5775	*	5710	80
+       176	5049	3561	2484	284	1670	544	10658	1450	2043	
+
+G 81   3761	6637	4939	4582	*	4255	6264	5472	2115	4433	6600	5532	4154	3406	2847	3817	4382	5389	*	6301	81
+       84	5380	4940	0	*	1155	860	10223	1087	2573	
+
+V 82   4697	*	5652	4223	5507	3939	4419	5125	2778	4257	4853	5062	3488	4335	3225	3143	4270	5591	*	4994	82
+       490	4326	2070	461	1871	3562	128	10333	1447	2175	
+
+I 83   4438	*	4573	3916	5886	3924	4120	3844	3382	4667	6749	3890	6259	3291	2247	6256	6218	4724	*	4905	83
+       287	3710	3265	0	*	344	2237	9900	1569	4369	
+
+G 84   4466	4815	4134	4183	*	2385	4515	*	3786	5096	*	4952	4185	*	2003	4265	5358	5417	*	4892	84
+       167	3765	4814	0	*	743	1312	10099	1636	2565	
+
+G 85   5414	5578	6244	5841	*	2654	5505	6913	3286	5692	*	5634	3007	3509	2196	3073	5913	5163	*	*	85
+       101	6601	4132	0	*	1825	478	10239	1000	1963	
+
+S 86   4576	4880	6605	5665	6239	1732	6501	*	3959	4995	*	6412	3601	3741	2939	4678	4324	3846	6938	7135	86
+       137	4520	4409	370	2144	1799	489	10247	1325	2349	
+
+K 87   3692	5426	5886	5450	5379	3380	4628	*	3615	6568	*	4047	3097	5553	1718	4018	5615	6604	*	6411	87
+       40	7167	5611	0	*	1237	797	10105	1000	2461	
+
+P 88   5044	*	4432	4857	*	4640	3474	*	3112	6218	*	3408	1925	4467	3042	4842	3986	*	*	7067	88
+       65	5040	6218	1337	727	580	1595	10163	1190	2080	
+
+K 89   4776	*	4893	5106	6167	5604	4199	5098	2888	5070	6249	3686	3494	5171	2728	3572	2829	6498	*	5401	89
+       71	4634	6968	1132	879	910	1096	10494	1464	1414	
+
+V 90   4041	6288	5991	4766	*	5204	4703	4588	1821	4736	5037	5675	6535	4697	2667	5054	4740	3543	*	4789	90
+       50	5410	6613	0	*	0	*	10694	1166	1217	
+
+A 91   4483	6947	*	5918	5877	6307	5853	2792	4202	1506	5173	5295	6529	7066	5021	5412	4806	3847	6834	3426	91
+       44	5058	*	1076	928	0	*	10725	1257	1051	
+
+T 92   5098	*	3301	6780	*	4961	*	4779	4433	4509	5871	3583	3732	6314	*	1810	2281	5484	*	*	92
+       27	6943	6580	1000	1000	*	0	10736	1087	1000	
+
+P 93   3234	*	2979	2621	*	5715	5797	5977	5509	3586	5408	5609	2968	5384	4594	3511	4697	3958	*	5763	93
+       47	*	4962	*	*	817	1210	10718	0	1093	
+
+K 94   2830	*	3941	1852	*	6645	5059	4605	4068	4790	*	6147	3871	4388	4659	3866	4805	4110	6907	*	94
+       79	4857	5727	1513	622	2152	368	10659	1403	1334	
+
+V 95   4033	*	3648	2414	4448	*	4982	4607	5255	2925	4698	5026	*	2969	5019	4886	4086	4195	*	5640	95
+       27	*	5736	*	*	877	1135	10635	0	1443	
+
+V 96   4545	6655	4142	3125	*	5775	*	4269	2502	3507	4854	5410	*	3898	2477	5175	5074	3867	6547	*	96
+       0	*	*	*	*	443	1919	10643	0	1353	
+
+E 97   2774	*	3216	2114	*	5869	5598	6634	3680	4018	5383	4482	6661	3425	3611	4415	5876	6622	*	*	97
+       26	5829	*	0	*	*	0	10699	1061	1000	
+
+K 98   3577	*	5309	3198	4367	5589	5653	4241	4208	3125	5464	5849	6659	3753	2674	4700	4670	5197	4432	4674	98
+       0	*	*	*	*	0	*	10699	0	1000	
+
+I 99   4372	6839	*	*	4396	*	*	1462	*	2298	4185	6844	6957	*	*	5596	*	2079	*	*	99
+       0	*	*	*	*	*	*	10716	0	0	
+
+A 100  3357	5619	5602	3055	*	*	*	2875	3508	2557	*	*	*	4319	3782	4974	5173	3014	6718	4999	100
+       0	*	*	*	*	*	*	10716	0	0	
+
+E 101  3134	*	3523	2429	6995	5136	5511	6657	3970	3277	6591	4160	6599	3291	3186	4026	5635	*	*	6943	101
+       0	*	*	*	*	*	*	10716	0	0	
+
+Y 102  3069	5000	4300	4233	4387	6019	4820	4772	4086	2077	5817	*	6417	5446	4186	5431	5109	4485	4342	4033	102
+       47	4976	*	0	*	*	*	10716	1242	0	
+
+K 103  3273	5162	6796	5792	4381	*	5514	3113	4101	2337	4391	*	*	6031	4219	5043	6524	2600	*	3697	103
+       157	4805	3891	1332	730	*	*	10716	1366	0	
+
+R 104  3900	4799	4203	3324	6293	4956	*	6722	3541	3178	*	4117	*	2988	2644	4604	3805	4806	*	*	104
+       144	6397	3591	1000	1000	415	2001	10622	1000	1933	
+
+Q 105  3289	*	3634	2410	*	4893	5689	6677	3270	4069	6820	4099	6469	3428	3699	3461	4994	5407	*	6842	105
+       89	4958	5184	2079	390	1152	863	10472	1205	1985	
+
+N 106  6563	*	3322	2668	6786	4885	3686	6341	3537	4046	6929	2565	4962	4564	3898	4468	4873	6557	*	4508	106
+       47	5520	6608	0	*	337	2265	10531	1100	1924	
+
+P 107  4074	*	6824	4351	*	3989	5678	6272	3734	5535	*	4941	1564	3920	3369	4166	4354	5783	6029	5719	107
+       118	4096	5647	1700	531	612	1533	10717	1591	1208	
+
+T 108  4193	*	2899	4968	4952	2828	4312	5570	3646	5084	5539	5907	4973	4353	3031	3557	4516	5174	*	5175	108
+       105	4680	4999	2527	275	1732	517	10699	1488	1202	
+
+M 109  4058	*	3552	5054	5561	6413	5068	4187	4511	2119	3738	6784	5088	5046	4018	3722	6643	3725	3921	*	109
+       123	3613	*	2220	349	0	*	10376	2036	1515	
+
+F 110  4122	*	*	6220	3729	3685	6758	4801	5336	*	*	4679	5731	4886	5356	1694	2160	7369	*	4288	110
+       71	4708	6655	1405	684	*	*	10441	1297	0	
+
+A 111  2621	6725	*	7042	5399	4351	5059	3822	5787	2671	4737	5550	3399	5644	5135	3629	4520	3477	6950	4394	111
+       35	5385	*	2179	360	0	*	10261	1118	1143	
+
+W 112  3588	6453	3611	3369	*	4940	4030	*	3273	4984	*	5784	3525	4154	2956	3813	4179	6609	3812	*	112
+       41	5159	*	2567	267	*	*	10247	1168	0	
+
+E 113  3933	7066	3681	1902	6729	6570	4607	*	3247	4435	*	5637	5710	2960	3930	4268	4635	6726	*	4871	113
+       47	4958	*	2347	316	*	*	10247	1345	0	
+
+I 114  4033	6544	*	6518	5563	*	6272	1656	*	1648	5158	*	*	*	4703	6478	6469	2955	5664	6729	114
+       92	4251	6746	1392	692	*	*	10247	1461	0	
+
+R 115  1876	4334	*	4936	5673	5445	6644	4995	4515	4555	6734	*	6488	3488	2830	3696	5113	4260	*	3909	115
+       66	6460	4909	3322	152	*	0	10194	1000	1017	
+
+D 116  2946	6241	2970	3179	*	4450	6495	5744	3516	4364	*	4221	4557	3968	3033	4281	5723	4187	*	*	116
+       63	*	4546	*	*	401	2043	10141	0	1510	
+
+R 117  3156	*	4891	3087	6584	6329	4824	5351	2972	3299	6586	6195	6475	4502	2696	5056	5485	5434	3814	4494	117
+       35	*	5398	*	*	1613	571	10132	0	1501	
+
+L 118  5355	4379	*	*	3458	*	*	3603	*	1073	3923	6438	*	*	*	4805	*	3100	6491	4723	118
+       578	*	1600	*	*	2485	284	10074	0	1546	
+
+L 119  3362	5865	*	3942	5005	3626	4733	4279	3721	4367	5650	4324	5920	3377	3084	3912	4435	4317	6014	5950	119
+       208	5791	3104	0	*	2286	331	9276	1119	4367	
+
+A 120  2624	*	3163	1738	*	6097	5746	*	3846	4147	*	5654	*	4372	3372	3885	*	4844	*	*	120
+       25	5843	*	0	*	3200	166	9218	1000	4404	
+
+E 121  3048	*	*	1755	6151	5824	5032	6014	5130	5001	4940	4462	4915	3208	2805	5848	6104	5088	*	5531	121
+       864	3653	1430	241	2702	2199	354	9371	1432	4187	
+
+R 122  3479	5420	5517	3545	4417	1454	5200	*	4474	4432	*	5616	*	*	2923	4439	4297	*	*	*	122
+       888	*	1121	*	*	5620	30	8889	0	5457	
+
+V 123  *	*	4643	*	*	*	4748	2574	*	1846	*	3567	4584	4549	*	*	*	3202	*	2327	123
+       1195	4422	953	1000	1000	5069	44	7514	1008	6673	
+
+C 124  *	2764	3762	*	2809	*	*	2146	*	3726	4019	*	*	3680	3733	*	*	*	*	3061	124
+       758	*	1291	*	*	5166	41	6007	0	7123	
+
+D 125  *	*	2304	*	*	*	3539	*	3373	*	*	3318	2279	*	*	*	3269	2288	*	*	125
+       154	3303	*	1000	1000	1673	543	4933	1000	7318	
+
+N 126  5033	3095	4013	5228	2605	*	3522	*	4264	5025	5313	4204	*	5235	3410	3552	4122	*	5329	4012	126
+       0	*	*	*	*	1486	637	8080	0	6120	
+
+D 127  4921	*	2856	4328	*	1952	4238	4649	3738	4135	*	2799	4927	4845	5947	4812	5939	*	*	5925	127
+       0	*	*	2322	322	1411	681	9243	1035	4730	
+
+T 128  5160	*	4352	4127	4189	3933	5166	3431	3376	3901	5047	5871	5285	5117	4037	3817	4503	3330	5906	3882	128
+       0	*	*	*	*	387	2088	9617	0	3516	
+
+V 129  4966	*	4480	4458	6504	3865	4716	3406	3653	3483	6230	3447	3882	5470	4889	3535	3708	3854	4814	*	129
+       38	5279	*	0	*	365	2162	10074	1154	1564	
+
+P 130  3420	5635	*	*	6277	5018	6744	2747	6438	3177	3962	*	2813	*	3948	4916	6512	2290	*	4555	130
+       0	*	*	*	*	*	0	10198	0	1017	
+
+S 131  3651	4376	6684	6305	*	5138	4886	*	4904	5278	*	5759	3701	5553	4477	1023	4215	6433	*	6713	131
+       16	*	6505	*	*	*	0	10198	0	1017	
+
+V 132  3687	*	4135	3588	6369	6479	4818	4618	3632	4096	*	6465	4304	4549	3121	5720	3963	3041	6586	3198	132
+       0	*	*	*	*	0	*	10170	0	1143	
+
+S 133  3467	6493	6305	4221	6645	3963	*	*	3912	*	*	4616	6647	3755	2789	1874	2859	*	6447	*	133
+       25	*	5890	*	*	*	*	10231	0	0	
+
+S 134  3152	5557	6113	*	*	4568	6535	6416	*	*	*	4569	*	6408	4171	2632	1192	4119	5559	*	134
+       0	*	*	0	*	0	*	10208	1000	1087	
+
+I 135  5530	*	*	*	4881	5579	*	1545	6135	2708	5702	*	*	*	*	*	4934	1508	6632	*	135
+       54	4770	*	2703	240	*	*	10231	1359	0	
+
+N 136  4330	4172	6338	5619	*	4276	3483	5714	3774	6429	*	4181	*	4022	2599	3392	6460	*	3711	2714	136
+       0	*	*	*	*	*	0	10127	0	1000	
+
+R 137  4934	*	3805	3375	*	6728	*	6429	3103	6428	*	3225	6469	3402	1420	5011	*	6586	*	5490	137
+       11	6978	*	0	*	*	0	10127	1000	1000	
+
+I 138  3715	*	*	4467	4214	6237	5430	2548	*	3062	4011	*	*	6111	3885	6734	5064	3455	3003	3349	138
+       15	6618	*	1000	1000	0	*	10118	1017	1101	
+
+I 139  5676	6707	*	*	4706	*	*	3028	*	899	3767	*	*	6430	6535	*	6639	2677	6438	*	139
+       0	*	*	*	*	*	*	10235	0	0	
+
+R 140  3096	5037	*	4896	*	*	3351	5029	2062	5476	*	4510	*	3755	2262	4883	5561	5478	*	5359	140
+       36	6457	6258	0	*	*	*	10200	1000	0	
+
+T 141  2639	*	4771	2844	6462	6451	6241	6351	2768	5102	*	4057	6406	3784	2265	4672	4849	*	*	6265	141
+       25	5867	*	0	*	0	*	9877	1094	1000	
+
+K 142  3129	*	4317	5822	5834	*	2129	3814	3200	3551	4943	3822	*	4194	4339	5037	5796	6022	5850	5801	142
+       36	5362	*	1585	585	*	*	9382	1000	0	
+
+V 143  4143	*	3018	4458	*	1802	5391	*	4284	2127	*	3618	5241	*	*	5466	5226	5238	*	*	143
+       0	*	*	*	*	*	*	8629	0	0	
+
+Q 144  3265	*	4777	4420	4246	*	*	2927	2837	2802	4670	4602	*	2935	*	*	4586	3436	*	*	144
+       0	*	*	*	*	*	*	7210	0	0	
+
+Q 145  3586	*	*	3487	*	*	*	3780	3834	3521	*	*	*	2234	2077	*	3716	3798	*	*	145
+       0	*	*	*	*	*	*	5598	0	0	
+
+P 146  2551	*	*	*	*	*	*	*	*	*	*	*	655	*	2364	*	*	*	*	*	146
+       0	*	*	*	*	*	*	3604	0	0	
+
+P 147  *	*	1050	*	*	*	*	*	*	*	*	*	952	*	*	*	*	*	*	*	147
+       0	*	*	*	*	*	*	1765	0	0	
+
+N 148  *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	148
+       0	*	*	*	*	*	*	1000	0	0	
+
+Q 149  *	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	149
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  049453f6b1ef191ef1f937c85980d483
+FAM   
+FILE  049453f6b1ef191ef1f937c85980d483
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:33:30 2013
+LENG  66 match states, 66 columns in multiple alignment
+FILT  20 out of 22 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  2.2 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCEEEEEEECCCHHHHHHHHHEEECCCCCCCHHHHHHHHHHHHCEEECCCCEECHHHHHHCCC
+>ss_conf PSIPRED confidence values
+986435888764372155256753242077888989998986466530003887007888843479
+>Consensus
+axxxSVVAxqlIPxnTaLTlxMmxxkVxxPxGipxedixxlVgxqVnxxVxxxxTlmpxmVkxyxx
+>049453f6b1ef191ef1f937c85980d483
+ANQASVVANQLIPINVALTLVMMRSEVVTPVGIPAEDIPRLVSMQVNRAVPLGTTLMPDMVKGYAA
+>gi|113886|sp|P12100.1|ANP1_PACBR RecName: Full=Ice-structuring protein AB1; Short=ISP AB1; AltName: Full=Antifreeze peptide AB1gi|226447|prf||1513197A antifreeze peptide AB1
+--TKSVVASQLIPINTALTPAMMKAKEVSPKGIPAEEMSKIVGMQVNRAVNLDETLMPDMVKTYQ-
+>gi|62751049|dbj|BAD95785.1| type III antifreeze protein nfeAFP10 [Zoarces elongatus]
+ANQASVVATQLIPINTALTLVMMKAKVATPMGIPAEDIPRIVSMQVNQAVACGTTLMPGMVKTYTP
+>gi|76262419|gb|ABA41378.1| type III antifreeze protein [Anarhichas minor]
+AHQASIVANQLIPINTALTPIMTKAQVVTPLGIPAEDIPRIIGMQVNRAVALGTTLMPDMVKGYPP
+>gi|76262407|gb|ABA41372.1| type III antifreeze protein [Zoarces americanus]
+ANQESVVATQLIPINTALTPIMMKGKVVTPMGIPFKEMSQIVGKQVNRAVPLGTTIMPEMVKGYAP
+>gi|62751041|dbj|BAD95781.1| type III antifreeze protein nfeAFP6 [Zoarces elongatus]
+AG-ESVVATQLIPINTALTPAMMEGKVTNPSGIPFAEMSQIVGKQVNTPVAKGQTLMPGMVKTYVP
+>gi|62751053|dbj|BAD95787.1| type III antifreeze protein nfeAFP12 [Zoarces elongatus]
+ANQESVVATVLIPINTALTVGMMTTRVVSPTGIPAEDIPRLISMQVNQVVPMGTTLMPDMVKGYAP
+>gi|159163462|pdb|1WVO|A Chain A, Solution Structure Of Rsgi Ruh-029, An Antifreeze Protein Like Domain In Human N-Acetylneuraminic Acid Phosphate Synthase Gene
+---GSVVAKVKIPEGTILTMDMLTVKVGEPKGYPPEDIFNLVGKKVLVTVEEDDTIMEELVDNH--
+>gi|326935208|ref|XP_003213668.1| PREDICTED: sialic acid synthase-like, partial [Meleagris gallopavo]
+---KSVVAKVTIPEGTVLTLDMLTVKVGEPKGFAPETIFDLVGQKAKTTIEEDETITEQAV-----
+>gi|47220009|emb|CAG11542.1| unnamed protein product [Tetraodon nigroviridis]
+---KSVVAKVRIPKGTVLTADMLAVKVAEPMGVKAEEIFELVGKTVMENVEEDESVVPEEAKAWA-
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+A 1    130	*	*	*	*	*	*	*	*	*	*	*	*	*	*	3534	*	*	*	*	1
+       130	*	3534	*	*	*	*	1687	0	0	
+
+N 2    *	*	*	*	*	2309	3414	*	*	*	*	721	*	*	*	3358	*	*	*	*	2
+       513	*	1740	*	*	*	0	1680	0	1000	
+
+Q 3    *	*	*	*	*	*	*	*	2344	*	*	*	*	596	*	*	2822	*	*	*	3
+       158	*	3271	*	*	0	*	1552	0	1159	
+
+A 4    2077	*	*	2412	*	3928	*	*	1417	*	*	*	*	2890	*	*	*	*	*	*	4
+       0	*	*	*	*	0	*	2289	0	1000	
+
+S 5    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	5
+       0	*	*	*	*	*	*	2289	0	0	
+
+V 6    *	*	*	*	*	*	*	4358	*	*	*	*	*	*	*	*	*	72	*	*	6
+       0	*	*	*	*	*	*	2289	0	0	
+
+V 7    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	7
+       0	*	*	*	*	*	*	2289	0	0	
+
+A 8    0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	8
+       0	*	*	*	*	*	*	2289	0	0	
+
+N 9    *	*	*	*	*	*	*	*	1418	*	*	2235	*	*	*	4544	1432	*	*	*	9
+       0	*	*	*	*	*	*	2289	0	0	
+
+Q 10   *	*	*	*	*	*	*	*	*	*	*	*	*	795	*	*	*	1240	*	*	10
+       0	*	*	*	*	*	*	2289	0	0	
+
+L 11   *	*	*	*	*	*	*	*	2996	676	*	*	*	*	2657	*	3470	*	*	*	11
+       0	*	*	*	*	*	*	2289	0	0	
+
+I 12   *	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	12
+       0	*	*	*	*	*	*	2289	0	0	
+
+P 13   *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	13
+       0	*	*	*	*	*	*	2289	0	0	
+
+I 14   4001	*	*	2251	*	*	*	908	3299	*	3431	*	*	*	*	*	*	*	*	*	14
+       0	*	*	*	*	*	*	2289	0	0	
+
+N 15   *	*	*	*	*	1418	*	*	*	*	*	676	*	*	*	*	*	*	*	*	15
+       0	*	*	*	*	*	*	2289	0	0	
+
+V 16   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	69	4429	*	*	16
+       0	*	*	*	*	*	*	2289	0	0	
+
+A 17   676	*	*	*	*	*	*	2996	*	*	*	*	*	*	*	*	*	2007	*	*	17
+       0	*	*	*	*	*	*	2289	0	0	
+
+L 18   *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	18
+       0	*	*	*	*	*	*	2289	0	0	
+
+T 19   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	19
+       0	*	*	*	*	*	*	2289	0	0	
+
+L 20   3299	*	*	*	*	*	*	*	*	874	3991	*	2056	*	*	*	*	4343	*	*	20
+       0	*	*	*	*	*	*	2289	0	0	
+
+V 21   2538	*	1418	*	*	4343	*	2639	*	*	*	*	*	*	*	*	*	2036	*	*	21
+       0	*	*	*	*	*	*	2289	0	0	
+
+M 22   *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	22
+       0	*	*	*	*	*	*	2289	0	0	
+
+M 23   *	*	*	*	*	*	*	4513	*	1418	907	*	*	*	*	*	4358	*	*	*	23
+       0	*	*	*	*	*	*	2289	0	0	
+
+R 24   3299	*	*	2580	*	*	*	*	1842	*	*	*	*	*	3510	*	1456	*	*	*	24
+       0	*	*	*	*	*	*	2289	0	0	
+
+S 25   2023	*	*	*	*	2050	*	*	*	*	*	*	*	*	*	4429	3443	1418	*	*	25
+       0	*	*	*	*	*	*	2289	0	0	
+
+E 26   *	*	*	2612	*	*	*	*	603	*	*	*	*	3538	3443	*	*	*	*	*	26
+       0	*	*	*	*	*	*	2289	0	0	
+
+V 27   *	*	*	3622	*	*	*	*	*	*	*	*	*	*	*	*	*	122	*	*	27
+       0	*	*	*	*	*	*	2289	0	0	
+
+V 28   2849	*	*	*	*	1875	*	3449	*	*	*	*	*	*	*	*	3080	1400	*	*	28
+       0	*	*	*	*	*	*	2289	0	0	
+
+T 29   *	*	*	1418	*	*	*	*	*	*	*	2290	*	*	*	2938	2010	*	*	4552	29
+       0	*	*	*	*	*	*	2289	0	0	
+
+P 30   *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	30
+       0	*	*	*	*	*	*	2289	0	0	
+
+V 31   3669	*	*	*	*	*	*	4720	1499	4358	2229	*	*	*	*	2952	3443	4429	*	*	31
+       0	*	*	*	*	*	*	2289	0	0	
+
+G 32   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	32
+       0	*	*	*	*	*	*	2289	0	0	
+
+I 33   *	*	*	*	3470	*	*	676	*	*	*	*	*	*	*	*	*	3299	*	2456	33
+       0	*	*	*	*	*	*	2289	0	0	
+
+P 34   3470	*	*	*	*	*	*	*	3299	*	*	*	307	*	*	*	*	*	*	*	34
+       0	*	*	*	*	*	*	2289	0	0	
+
+A 35   1041	*	*	*	2050	*	*	*	*	*	*	*	1875	*	*	*	*	*	*	*	35
+       0	*	*	*	*	*	*	2289	0	0	
+
+E 36   2684	*	*	399	*	*	*	*	4757	*	*	*	*	*	*	*	*	4354	*	*	36
+       0	*	*	*	*	*	*	2289	0	0	
+
+D 37   *	*	1043	1237	*	*	*	*	*	*	*	*	*	*	*	*	3470	*	*	*	37
+       0	*	*	*	*	*	*	2289	0	0	
+
+I 38   4354	*	*	*	*	*	*	483	4513	*	2384	*	*	*	*	*	*	*	*	*	38
+       0	*	*	*	*	*	*	2289	0	0	
+
+P 39   *	*	*	*	1418	*	*	*	*	*	*	*	1550	*	*	1814	*	*	*	*	39
+       0	*	*	*	*	*	*	2289	0	0	
+
+R 40   *	*	3470	3299	*	4134	*	*	3075	*	*	2996	*	2050	1912	*	*	*	*	*	40
+       0	*	*	*	*	*	*	2289	0	0	
+
+L 41   *	*	*	*	*	*	*	1433	*	667	*	*	*	*	*	*	*	*	*	*	41
+       0	*	*	*	*	*	*	2289	0	0	
+
+V 42   *	*	*	*	*	*	*	3350	*	*	4738	*	*	*	*	*	*	210	*	*	42
+       0	*	*	*	*	*	*	2289	0	0	
+
+S 43   *	*	*	*	*	278	*	*	*	*	*	*	*	*	*	2510	*	*	*	*	43
+       0	*	*	*	*	*	*	2289	0	0	
+
+M 44   *	*	*	*	*	*	*	*	929	4596	1544	*	*	3470	*	*	*	*	*	*	44
+       0	*	*	*	*	*	*	2289	0	0	
+
+Q 45   *	*	*	*	*	*	*	*	1875	*	*	*	*	676	*	*	3299	*	*	*	45
+       0	*	*	*	*	*	*	2289	0	0	
+
+V 46   3470	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	136	*	*	46
+       0	*	*	*	*	*	*	2289	0	0	
+
+N 47   *	*	*	*	*	*	*	*	3470	2456	3299	676	*	*	*	*	*	*	*	*	47
+       0	*	*	*	*	*	*	2289	0	0	
+
+R 48   *	*	*	3299	*	*	*	*	*	*	*	*	*	2953	1602	*	2262	2113	*	*	48
+       0	*	*	*	*	*	*	2289	0	0	
+
+A 49   1289	*	*	*	*	*	*	4354	*	*	*	3299	3080	*	*	*	1875	4343	*	*	49
+       0	*	*	*	*	*	*	2289	0	0	
+
+V 50   *	*	*	*	*	*	*	2711	*	*	*	*	*	*	*	*	*	239	*	*	50
+       0	*	*	*	*	*	*	2289	0	0	
+
+P 51   1784	*	*	1418	*	*	*	*	*	4596	*	4544	2232	*	*	*	*	*	*	4705	51
+       0	*	*	*	*	*	*	2289	0	0	
+
+L 52   *	4749	*	1418	*	*	*	4596	2290	1995	3443	*	*	*	*	*	*	*	*	*	52
+       0	*	*	*	*	*	*	2289	0	0	
+
+G 53   *	*	1021	*	*	979	*	*	*	*	*	*	*	*	*	*	*	*	*	*	53
+       0	*	*	*	*	*	*	2289	0	0	
+
+T 54   *	*	2456	1878	*	*	*	*	*	*	*	*	*	2283	*	*	1556	*	*	*	54
+       0	*	*	*	*	*	*	2289	0	0	
+
+T 55   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	3299	155	*	*	*	55
+       0	*	*	*	*	*	*	2289	0	0	
+
+L 56   *	*	*	*	*	*	*	1756	*	889	*	*	*	*	*	*	*	2608	*	*	56
+       0	*	*	*	*	*	*	2289	0	0	
+
+M 57   *	*	*	*	*	*	*	*	*	4134	413	*	*	*	*	*	3470	3299	*	*	57
+       0	*	*	*	*	*	*	2289	0	0	
+
+P 58   *	*	*	1875	*	*	*	*	*	*	*	*	459	*	*	*	*	*	*	*	58
+       0	*	*	*	*	*	*	2289	0	0	
+
+D 59   *	*	1355	1640	*	3762	*	4354	*	*	*	3733	*	3470	*	*	*	*	*	*	59
+       0	*	*	*	*	*	*	2289	0	0	
+
+M 60   3470	*	*	3299	*	*	*	*	*	3991	676	*	*	*	*	3066	*	*	*	*	60
+       0	*	*	*	*	*	*	2289	0	0	
+
+V 61   3299	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	155	*	*	61
+       0	*	*	*	*	*	*	2289	0	0	
+
+K 62   *	*	3776	2787	*	*	*	*	355	*	*	*	*	*	*	*	*	*	*	*	62
+       0	*	*	*	*	*	*	2208	0	0	
+
+G 63   3108	*	*	*	4471	2082	*	*	*	*	*	2164	*	*	*	3725	1718	*	*	*	63
+       0	*	*	*	*	*	*	2208	0	0	
+
+Y 64   *	*	*	*	*	*	2916	*	*	*	*	*	*	*	*	*	*	*	2772	472	64
+       185	4150	3972	1000	1000	*	*	2187	1000	0	
+
+A 65   860	4057	*	3248	*	*	*	*	*	*	*	*	4019	4054	4181	*	4265	4197	*	*	65
+       0	*	*	*	*	0	*	2000	0	1000	
+
+A 66   1700	*	*	*	*	*	*	*	2691	3670	*	*	1124	*	*	*	*	*	*	*	66
+       0	*	*	0	*	*	*	1707	0	0	
+
+//
+�HHsearch 1.5
+NAME  07725759f4907c8886db21d514cb9b12
+FAM   
+FILE  07725759f4907c8886db21d514cb9b12
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:21:39 2013
+LENG  82 match states, 82 columns in multiple alignment
+FILT  122 out of 1045 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  7.5 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCHHHHHHHCCCCCEEEEECCEEEECCHHHHHCCCHHHHHHHHCCCCCHHHHHHHCCCHHHHHHHHHCEEEEECCCCC
+>ss_conf PSIPRED confidence values
+9885789999976789997999999997360357649784899999759542788988369999999998576578578789
+>Consensus
+xxxxxtxxevxxhxxxxxxwvxixgxVyDvtxfxxxHPgGxxxlxxxxGxDxTxxfxxxxhsxxaxxxlxxxxIGxxxxxxx
+>07725759f4907c8886db21d514cb9b12
+AVKYYTLEEIQKHNNSKSTWLILHYKVYDLTKFLEEHPGGEAVLRAQAGGDATANFEAVGHSTDARELSKTFIIGELHPDDR
+>gi|258569831|ref|XP_002543719.1| conserved hypothetical protein [Uncinocarpus reesii 1704]gi|237903989|gb|EEP78390.1| conserved hypothetical protein [Uncinocarpus reesii 1704]
+---LTGTSREAQHRQQ-----LLGGALWKGVRC-------ANIILNLAGKDATEEYDPI-HPSGTLEenLQPEACLGTVDPA--
+>gi|12002125|gb|AAG43192.1|AF108658_1 p5327 [Homo sapiens]gi|119594381|gb|EAW73975.1| fatty acid desaturase 2, isoform CRA_b [Homo sapiens]gi|158261605|dbj|BAF82980.1| unnamed protein product [Homo sapiens]
+--GPFVCVCVLLASIPTPQTPLLQASLPPFHPASAGHP---IT-------GQQDAFRAFHPDLEfVGKFLKPLLIGELAPE--
+>gi|298710828|emb|CBJ26337.1| dopamine beta-monooxygenase, putative [Ectocarpus siliculosus]
+--PIYSVAEFNDKVLNGQSWVLVDGAILDVSEFAQRHPGGRRLIINALGTDITQELlgedlsvghamsfSPHAHSERAWTILRRLVVGYIEEEE-
+>gi|328772499|gb|EGF82537.1| hypothetical protein BATDEDRAFT_34502 [Batrachochytrium dendrobatidis JAM81]
+--IKSQSEVL-qKafRLGQQtv--pWFAAHGRYYFAEDL-mSQH--irdygpgtgqgslaly----qFQQFYGNDVSNLF--------------------
+------
+>gi|302683558|ref|XP_003031460.1| glycosyltransferase family 2 protein [Schizophyllum commune H4-8]gi|300105152|gb|EFI96557.1| glycosyltransferase family 2 protein [Schizophyllum commune H4-8]
+--HVYSTGDVAEHNyddSPDSVYTYIRGEVFNLNRISEIHgRVvsvvDQKTILDnYGGGSSDDIF--------------------------
+>gi|317050963|ref|YP_004112079.1| cytochrome b5 [Desulfurispirillum indicum S5]gi|316946047|gb|ADU65523.1| cytochrome b5 [Desulfurispirillum indicum S5]
+----MEQQKLQEYDGKDGkpAYVAYDGKIYDVST-SRMWKNGVHARVHKAGEDLTEAMKNAPHGAEVLKRFT--EVDSLEG---
+>gi|328772499|gb|EGF82537.1| hypothetical protein BATDEDRAFT_34502 [Batrachochytrium dendrobatidis JAM81]
+---GWTEQAV---ngmS-sNtKRFII-iFD----------------nvyyvspidalqnatfsLtvrNLLSPTPGSDVTAA--wkATraQSGElqqe---
+-ldtaltCLnNIFYVGTVDR---
+>gi|118420981|dbj|BAF37218.1| chitin synthase [Lentinula edodes]gi|119224826|dbj|BAF41220.1| chitin synthase [Lentinula edodes]
+---VHSWDEIQSYASDediEKIWGVYNNNLYDLTDYFYTQDQ-ndnndaylfldSgieTVFKDRSGQGITDSLNTAlgKLNETYRQqnldCLnNVFYIGQ
+TDF---
+>gi|322795632|gb|EFZ18311.1| hypothetical protein SINV_02346 [Solenopsis invicta]
+--SLIRWADLENHNRDGGLWVVVNNNVYDVQDIRNDGSwsPYEVLQRYVVGRDETSAVTqcgaPYSQLSPPRGMMDSCFVGHYC----
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+A 1    2091	*	*	*	2030	*	*	*	*	*	1915	*	*	*	*	1971	*	*	*	*	1
+       0	*	*	*	*	*	*	2499	0	0	
+
+V 2    *	*	*	*	4978	*	*	*	4545	996	*	*	4541	2924	3061	3990	*	3907	*	*	2
+       71	4375	*	1000	1000	*	*	5192	1000	0	
+
+K 3    5548	*	5150	4270	*	4384	4649	5538	2740	*	5511	4050	2422	4787	1976	5241	4779	5832	*	*	3
+       23	*	5960	*	*	*	*	7343	0	0	
+
+Y 4    3929	6596	4948	4900	4222	5027	5257	5114	4515	2783	5745	6710	4582	4297	4196	4365	3590	2890	*	3507	4
+       0	*	*	*	*	0	*	7609	0	1002	
+
+Y 5    *	*	*	*	2145	*	6279	2701	*	3132	3948	*	*	*	6397	4578	6143	4048	3372	2298	5
+       0	*	*	*	*	*	*	7768	0	0	
+
+T 6    4792	6682	5137	5257	6696	4588	*	*	5917	4290	*	6741	5660	6259	3175	2318	1308	5416	*	*	6
+       0	*	*	*	*	*	*	7798	0	0	
+
+L 7    2991	4765	5887	4252	6841	*	6590	3406	5741	3788	3746	6762	3555	4927	3530	4859	3229	4703	3384	*	7
+       0	*	*	*	*	*	*	7798	0	0	
+
+E 8    2715	5136	3373	2144	*	4049	*	*	3911	*	*	3652	*	4553	4433	3274	5081	4420	*	5540	8
+       0	*	*	*	*	*	*	7798	0	0	
+
+E 9    7251	5447	2503	984	*	5434	*	*	6983	6256	6064	6502	*	2962	5427	6826	4976	5255	*	*	9
+       0	*	*	*	*	*	*	7830	0	0	
+
+I 10   *	*	*	6173	3830	*	*	2242	*	1805	4463	*	6064	*	*	*	6256	1582	*	6502	10
+       28	*	5679	*	*	*	*	7830	0	0	
+
+Q 11   1922	*	5569	3337	*	5645	*	5779	3188	4393	*	5071	*	2893	3560	3397	6819	4566	6154	6471	11
+       0	*	*	0	*	770	1274	7781	1033	1122	
+
+K 12   4758	*	4668	2450	*	4593	6513	6669	2993	3819	*	3232	*	3110	3073	4007	4218	6927	*	5891	12
+       37	5294	*	1000	1000	*	0	7821	1136	1000	
+
+H 13   3807	7077	6361	4509	5694	*	992	6625	5117	3295	6521	4867	6225	4753	4900	*	*	*	*	3775	13
+       44	5051	*	512	1742	0	*	7821	1321	1000	
+
+N 14   3926	*	3289	4042	5692	6366	*	4540	3672	4239	*	1800	*	4444	4643	3460	4390	4224	*	*	14
+       111	4749	4764	1565	595	*	*	7830	1364	0	
+
+N 15   3391	6590	6271	4577	5170	2445	*	5107	3021	4544	6786	3478	6229	4590	4609	2846	3611	5845	*	*	15
+       64	4519	*	1585	585	0	*	7744	1433	1280	
+
+S 16   4192	*	3340	2532	*	5557	5000	6550	2774	4445	*	4194	3131	4344	3132	4195	5843	6130	*	*	16
+       154	3480	6400	783	1256	*	0	7836	1786	1000	
+
+K 17   4326	*	2334	3175	*	1873	5917	*	4589	*	*	3186	5290	4142	7216	4330	4529	6785	*	6798	17
+       125	3590	*	1576	590	1390	694	7805	1786	1125	
+
+S 18   4868	*	2303	3925	*	3300	6069	*	3528	6561	*	3906	3595	4760	2759	2976	5479	*	*	*	18
+       59	4652	*	1172	846	*	0	7782	1268	1168	
+
+T 19   3012	2507	*	*	3518	6006	5082	4041	5736	2744	4497	5378	4473	4920	5161	4275	4222	5390	*	4815	19
+       54	7050	5096	0	*	1050	952	7801	1114	1168	
+
+W 20   *	4978	6616	6214	6234	*	5734	4567	6678	3246	5331	*	*	*	6448	*	5157	3903	1012	2963	20
+       10	7139	*	2000	415	2054	397	7651	1000	1304	
+
+L 21   5065	6674	*	*	3667	5547	6694	2217	*	2878	4440	*	5650	*	6942	5937	4524	1537	*	5579	21
+       26	*	5790	*	*	0	*	7647	0	1210	
+
+I 22   3270	6096	*	*	6437	4178	*	1932	6623	3275	5520	*	*	7193	4737	3404	4301	2217	*	6277	22
+       22	6028	*	0	*	0	*	7798	1173	1154	
+
+L 23   4541	6647	*	*	3445	*	5458	1605	6936	3628	5900	*	*	*	*	6858	6575	2274	6353	2643	23
+       0	*	*	*	*	*	*	7795	0	0	
+
+H 24   5024	*	2557	3233	7250	4238	3382	*	2899	4678	*	3068	*	4312	2634	5928	*	*	*	5861	24
+       6	*	7990	*	*	*	*	7795	0	0	
+
+Y 25   5205	*	3449	5139	*	931	*	*	5291	*	*	2730	*	4733	4284	5141	5173	*	*	7132	25
+       17	6455	*	1000	1000	*	0	7793	1012	1000	
+
+K 26   4825	7410	4359	4859	5631	5063	7342	4183	2250	4193	5904	3507	*	3887	3122	3621	4492	3929	*	5573	26
+       0	*	*	*	*	*	0	7793	0	1000	
+
+V 27   4986	*	*	5134	*	*	*	2862	*	3938	*	*	*	*	5532	5495	6762	661	4931	5706	27
+       0	*	*	*	*	*	0	7793	0	1000	
+
+Y 28   *	4970	*	*	3096	*	4883	5031	6214	3676	*	*	4654	*	*	*	5220	*	5554	720	28
+       12	*	6959	*	*	*	0	7793	0	1000	
+
+D 29   *	6181	478	5728	6757	*	*	*	4565	6992	6028	3172	5787	6435	5430	*	*	*	*	6507	29
+       0	*	*	*	*	909	1097	7782	0	1097	
+
+L 30   4219	4077	*	*	4797	5487	*	2473	*	1913	6896	*	*	*	*	5532	*	1501	*	*	30
+       45	5030	*	510	1747	*	0	7793	1213	1000	
+
+T 31   5042	*	5458	4948	*	5866	5710	6437	4779	6277	5660	4702	6328	4808	6233	1831	1294	6801	*	*	31
+       31	5533	*	3031	188	751	1302	7756	1106	1126	
+
+K 32   4517	*	2663	2584	*	3500	7169	*	3319	6018	*	3051	4518	5736	3620	3317	4455	*	*	6588	32
+       45	*	5024	*	*	*	0	7793	0	1000	
+
+F 33   5105	6758	*	6418	1273	4995	6320	5274	6803	4159	*	*	*	*	*	*	*	5062	3233	1915	33
+       119	5072	4344	1235	798	2011	411	7647	1182	1248	
+
+L 34   2923	*	*	6655	5823	*	5329	3069	5485	2310	3228	6496	5781	5614	4725	4135	5967	2569	5731	5786	34
+       123	5520	4059	0	*	1866	463	7579	1214	1680	
+
+E 35   3415	5075	3669	3796	5624	5552	4461	*	2545	6222	6286	3371	3125	4192	3811	4455	4636	*	*	5768	35
+       58	4658	*	650	1463	1303	750	7513	1261	2048	
+
+E 36   4399	*	3286	2981	4601	4742	*	4906	3414	4741	*	4499	*	3396	3653	3592	4053	4452	6560	4011	36
+       27	5728	*	0	*	544	1671	7586	1066	1603	
+
+H 37   5521	*	*	*	6202	4352	461	*	*	*	*	4722	6767	4785	*	4084	*	6350	4846	*	37
+       54	5199	6738	0	*	*	0	7774	1129	1131	
+
+P 38   4757	*	5698	5566	6960	5278	*	6577	4872	6486	*	7021	493	*	6294	3846	6331	*	*	5624	38
+       46	6321	5750	1000	1000	*	0	7750	1028	1255	
+
+G 39   4643	*	3881	5585	*	725	6187	6323	6851	6369	*	5128	5057	5709	6740	3798	4408	6260	*	*	39
+       118	4190	5389	2858	214	*	0	7651	1516	1435	
+
+G 40   4299	*	4801	6428	6985	542	*	7129	5765	5526	*	*	*	*	6283	3799	4692	6330	*	5377	40
+       126	3583	*	2994	194	731	1331	7602	1949	1670	
+
+E 41   3041	*	3440	3587	7237	4959	6905	5104	3333	4567	*	4349	3964	3388	3997	2814	4915	5044	*	6861	41
+       167	3924	4521	1818	481	748	1305	7674	1620	1217	
+
+A 42   3173	*	3371	3950	5685	6244	4733	3785	3111	4772	6359	4101	6711	4664	3703	3467	3947	4930	*	4369	42
+       62	5182	6098	751	1301	729	1334	7728	1156	1448	
+
+V 43   3465	*	*	6057	4604	6230	5173	2357	5238	2628	4484	5278	4185	6923	6923	3520	4411	3278	5778	4994	43
+       54	*	4770	0	*	0	*	7747	1033	1336	
+
+L 44   *	5962	*	*	3750	*	*	1677	6234	1370	4354	6574	*	6325	*	*	5458	4095	5524	5510	44
+       44	5577	6792	1000	1000	1017	984	7666	1130	1272	
+
+R 45   4321	7151	5128	4016	4228	4804	*	4933	2664	2548	3859	5465	4658	3869	3956	5432	3946	5124	6954	6260	45
+       46	6868	5438	3000	193	*	0	7682	1000	1175	
+
+A 46   3212	7091	3791	4860	6370	5188	3313	4813	3268	4065	4957	4245	3726	3817	3771	4211	5037	*	6704	4643	46
+       44	5459	7063	0	*	2449	292	7640	1112	1357	
+
+Q 47   3161	6816	5552	6192	2891	4630	3822	6061	6421	3078	6480	4398	*	5190	4552	5915	4885	3977	6308	2335	47
+       19	*	6223	*	*	771	1273	7669	0	1351	
+
+A 48   1337	5202	6714	5227	5674	3993	5714	5483	4035	3933	4896	4919	4636	7087	6478	4079	*	3373	*	6720	48
+       0	*	*	*	*	1414	679	7674	0	1203	
+
+G 49   4485	5922	5062	*	6338	480	6090	*	5583	7023	*	3865	5460	*	6138	5013	*	*	*	*	49
+       18	6338	*	3322	152	*	0	7698	1010	1093	
+
+G 50   7340	*	*	4568	6749	2936	5863	6090	1876	5085	5617	5177	5460	3179	2423	6074	3901	5766	*	6617	50
+       36	5338	*	715	1355	0	*	7698	1169	1093	
+
+D 51   7064	6244	479	3459	*	5155	*	6707	*	*	*	4809	6969	*	6339	4108	*	5690	*	*	51
+       0	*	*	*	*	*	*	7795	0	0	
+
+A 52   1649	5024	6244	5581	*	4961	*	2738	*	2959	4594	6995	4941	5121	*	4790	*	2652	*	*	52
+       0	*	*	*	*	*	*	7795	0	0	
+
+T 53   6791	6244	3477	6068	*	5170	*	*	*	*	*	*	*	5169	6575	2180	874	4968	*	6839	53
+       0	*	*	*	*	*	*	7795	0	0	
+
+A 54   3505	6555	2460	2652	*	6756	5330	*	3720	4404	6575	4086	4459	4185	3569	3859	*	5695	4920	5165	54
+       0	*	*	*	*	*	*	7795	0	0	
+
+N 55   2196	5797	4999	3383	5504	5889	5297	3861	5711	3392	7072	7147	6449	4049	6147	4155	5643	3744	5011	3226	55
+       77	5228	5297	0	*	*	*	7795	1234	0	
+
+F 56   *	6592	*	6229	815	*	6805	4883	*	2886	3902	*	*	6541	*	6845	5830	6312	4587	3802	56
+       55	4742	*	2344	316	*	0	7660	1324	1164	
+
+E 57   3411	*	2880	2973	4999	*	6166	5618	4309	4775	6013	2640	4879	4709	3645	4513	5489	5978	4985	4362	57
+       98	3933	*	2570	266	1534	611	7498	1554	1164	
+
+A 58   2569	6506	5477	3583	6760	3909	6198	5823	3157	4126	6919	4749	4205	3939	4439	3206	3672	5684	*	5576	58
+       275	2853	4835	2030	405	*	0	7846	2132	1076	
+
+V 59   2937	6415	*	*	3402	*	3214	4021	5886	3452	5125	4858	4905	5197	5943	4756	5589	3880	*	2187	59
+       575	4379	1833	1000	1000	682	1409	7510	1437	1534	
+
+G 60   3336	*	5058	*	5840	3201	2130	5264	3847	5612	*	4011	2729	4766	4869	4466	5289	4455	*	*	60
+       42	5118	*	521	1721	144	3400	7305	1110	3483	
+
+H 61   5273	*	5787	*	6314	*	679	5423	3793	5368	6133	5760	5156	4358	5846	4903	5873	*	*	5529	61
+       29	5646	*	1000	1000	494	1787	7614	1092	1188	
+
+S 62   6428	5489	3699	7245	6007	4623	4830	*	5036	4400	*	5497	3492	5265	3756	1341	3773	*	5366	6610	62
+       16	*	6481	*	*	*	0	7630	0	1000	
+
+T 63   4057	6246	4109	3149	*	5615	5167	4932	2687	3808	*	4753	3025	5752	3621	3332	5952	4363	5349	*	63
+       113	3725	*	666	1435	1307	747	7613	1617	1109	
+
+D 64   2769	*	3868	2842	5337	4081	4958	*	3995	6745	*	3096	5817	4712	4055	2773	5574	4905	*	5400	64
+       64	4532	*	264	2581	798	1235	7616	1304	1116	
+
+A 65   1238	6613	*	5146	*	5103	*	4300	6614	4553	4416	*	4409	5842	5943	5007	3394	2965	*	5434	65
+       19	6247	*	1288	760	*	0	7633	1078	1000	
+
+R 66   5448	*	4863	3235	3740	5660	4030	3843	3577	3065	4776	6388	5597	5969	2784	*	*	3906	4240	4114	66
+       21	6102	*	1585	585	*	0	7617	1067	1000	
+
+E 67   3691	*	5173	2428	5963	4878	5321	*	2540	4785	5969	3467	6599	3486	3883	3580	4987	6563	*	5244	67
+       158	3268	*	1587	584	0	*	7617	1944	1000	
+
+L 68   *	3972	*	5193	3775	6585	*	3167	3904	2480	2675	6253	*	4517	3916	5364	3663	5746	5665	4414	68
+       17	6390	*	1000	1000	*	*	7625	1107	0	
+
+S 69   6169	*	6894	*	4567	4951	*	3680	*	778	3016	*	6958	6554	6809	5840	*	5723	5003	5418	69
+       98	3929	*	339	2255	*	*	7625	1509	0	
+
+K 70   4554	6794	4123	2279	6626	*	5998	7114	2473	6644	*	3358	3196	3349	3387	4335	6392	*	*	*	70
+       75	*	4297	*	*	*	*	7625	0	0	
+
+T 71   4959	6967	3906	2664	*	4794	4372	7258	2546	4541	5414	4907	4306	3377	4138	3478	3955	6006	*	*	71
+       39	5222	*	0	*	1468	647	7546	1109	1321	
+
+F 72   5743	4915	*	*	1961	*	4340	*	5148	2290	4403	6736	6197	6290	5818	6603	*	*	5066	1897	72
+       0	*	*	*	*	0	*	7540	0	1173	
+
+I 73   3978	3627	*	5579	4740	6956	4175	3974	2964	3306	*	*	6454	5908	2685	5589	4118	4655	*	2843	73
+       11	7042	*	0	*	*	*	7568	1002	0	
+
+I 74   6335	5843	6394	*	5433	*	6542	1131	6454	3460	5776	*	*	*	*	*	6854	1629	*	6034	74
+       29	5644	*	3347	149	*	*	7568	1067	0	
+
+G 75   3758	*	4824	*	*	284	*	*	6173	6297	*	*	*	6081	6279	*	*	6055	*	*	75
+       0	*	*	*	*	*	*	7560	0	0	
+
+E 76   5653	*	4837	3046	6836	*	4881	3972	2652	6547	5541	4014	4753	4974	3044	6780	3561	3421	*	3521	76
+       13	6798	*	0	*	*	*	7582	1000	0	
+
+L 77   6219	6397	*	5102	5470	*	*	2277	*	1622	5325	*	*	6016	*	5803	4255	2569	*	3152	77
+       43	5090	*	553	1652	*	*	7488	1129	0	
+
+H 78   2977	4364	2184	3675	*	*	5148	5667	3401	5028	4585	4774	6780	3982	4565	4199	5544	3572	*	*	78
+       20	6165	*	0	*	*	*	7410	1000	0	
+
+P 79   4245	*	3548	2947	4509	5064	5006	*	4805	6383	*	5761	1877	6115	3534	4349	4440	5103	*	3973	79
+       0	*	*	*	*	*	*	7043	0	0	
+
+D 80   2918	*	1953	1951	*	3951	5481	*	*	5149	*	3836	*	5212	5231	3463	5561	*	*	*	80
+       0	*	*	*	*	*	*	6170	0	0	
+
+D 81   *	*	1245	1959	*	4274	*	*	4328	*	*	3809	4381	*	*	3320	*	*	*	*	81
+       0	*	*	*	*	*	*	5023	0	0	
+
+R 82   *	*	*	*	*	*	*	*	2707	*	*	*	*	2719	525	*	*	*	*	*	82
+       0	*	*	0	*	*	*	3269	0	0	
+
+//
+�HHsearch 1.5
+NAME  07e9709ec97fb9c893c6efa6db9e811b
+FAM   
+FILE  07e9709ec97fb9c893c6efa6db9e811b
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 14:49:30 2013
+LENG  224 match states, 224 columns in multiple alignment
+FILT  204 out of 1141 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  10.0
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEEEEECCCCCCCHHHHHHHHHHHHHHCCCEEEEECCCCCCCCCCCCCCCCHHHHHHHHHHCCCCCCCCCCCEEECCCCCHHHHHHHHCCCCCHHHHHH
+HHHHHHCCCCEEEEECCCCCCHHHHHHHHHHHHHHHCCCCEEEEECCCHHHHHHHHHHHHHHHHCCCCEEEEEEECCCCCHHHHHHHHHHHHHHCCCCEE
+EECCCCCCCCCHHHHHHHHCCCCC
+>ss_conf PSIPRED confidence values
+9099997189998789999999999998799089985512476544677650358999986256754356661575377775578775045231999999
+9999853599999979885430356778999999864995899956756599999999999982899779999954788606899999999986099689
+985787899999999998664479
+>Consensus
+mxxixvxsxkggvGKTtvaxxLaxxLxxxgxkVxxxdpxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxlxx
+xlxxlxxxyDxviIDxxxxlxxxxxxxxxxxxiaxxxxxxvilVxxxxxxxxxxxxxxxxxlxxxxxxxxgvVxNxxxxxxxxxxxxxxxixxxxxxxxl
+xxIpxxxxxxxxxxxxxxlxxxxx
+>07e9709ec97fb9c893c6efa6db9e811b
+SKRYFVTGTDTEVGKTVASCALLQAAKAAGYRTAGYKPVASGSEKTPEGLRNSDALALQRNSSLQLDYATVNPYTFAEPTSPHIISAQEGRPIESLVMSA
+GLRALEQQADWVLVEGAGGWFTPLSDTFTFADWVTQEQLPVILVVGVKLGCINHAMLTAQVIQHAGLTLAGWVANDVTPPGKRHAEYMTTLTRMIPAPLL
+GEIPWLAENPENAATGKYINLALL
+>gi|15616795|ref|NP_240007.1| phosphate acetyltransferase [Buchnera aphidicola str. APS (Acyrthosiphon pisum)]gi|11133754|sp|P57273.1|PTA_BUCAI RecName: Full=Phosphate acetyltransferase; AltName: Full=Phosphotransacetylasegi|25321713|pir||E84950 phosphate acetyltransferase (EC 2.3.1.8) [imported] - Buchnera sp. (strain APS)gi|10038858|dbj|BAB12893.1| phosphate acetyltransferase [Buchnera aphidicola str. APS (Acyrthosiphon pisum)]
+-RIIMLIPLDKDIGLTSIGLSIIYFFYQKKIKKKSVQSILY--FSC--TQNSSNsTSHVINKYF-SKIV--HTVDYIDF--SKVLFNS-PEYSFLLNKVI
+DEHYNN-KfLRELILIEGIKNNYCIN-SEEMNYDISQNLNAEVIFIANLENsspEyIKNKEKKINFFLKQkKYKNILGVIFNQINspflenkydfiKKLI
+VLKKiknETKTIvpKKIlknNFFSIIACIPWN-RNivtTRVIDLFNFLNIQ--
+>gi|218282221|ref|ZP_03488520.1| hypothetical protein EUBIFOR_01102 [Eubacterium biforme DSM 3989]gi|218216759|gb|EEC90297.1| hypothetical protein EUBIFOR_01102 [Eubacterium biforme DSM 3989]
+-QVITCVSTVPNEGKSTIACNLARIMAAKYKNVLLidcdlRNASVHKTLHISNR--SGLTNIISEFqeglsinS-YEgvqqVQYDggqTLTV-ITAGHRV
+PNPSEVLG-----SKRMGRFLEQARKEFGYIIIDSP-----PMAVASDTIPLSNVSD-GVLYVVDAKSSDKRRVKTAINDLKRNGGHVIGVVLNKVDM--
+-------------------------------------------
+>gi|325188235|emb|CCA22775.1| phosphate acetyltransferase putative [Albugo laibachii Nc14]
+-QRLYLTSTDYVPHTAPLLLGLASVLEQKYGRIGYFRPILPTRKS---APIDHHVPLMQKLLGLE-PHEKKPLYAVtsEEAV--DYCL-RNQQDQLIDRV
+LFTLEKAQEEHDFMIIEGSAFPSHETNsvSWQLHKQIANALGARVVLCMDAGTpdfpssdsELIdaivIRALLGREQAEADRVGYFGTLINRVGTSdPSA
+FALrLEKAFEK-HKLPYLGFLPYD-RIlasRRLNEVADRLGAK--
+>gi|333602914|gb|EGL14339.1| phosphate acetyltransferase [Gardnerella vaginalis 315-A]
+--NVTIISADCAQSRNVVALGVTKALSSH-YPTTVFRPSAKHDDAF------TSE--LIASSNTKPTLEQVIAA------CPCAV--RKNKDTLRGDIVA
+HFNELIsvTNAQGCVIVASDstSVFDPD-LFRFDASVAADLASPVFLSICAEGRDSKQILQTIEaqcaSVSKEYTKVLGVFVTDCKEDL--AKEVKENYA
+QnnN-GTPLW-TLPSI------------------
+>gi|55378027|ref|YP_135877.1| cell division inhibitor MinD-like [Haloarcula marismortui ATCC 43049]gi|55230752|gb|AAV46171.1| cell division inhibitor MinD-like [Haloarcula marismortui ATCC 43049]
+----------------------------------------------------------------------------------------------------
+---------------------------------------RTVLVSAPTRQSLTDTAKTAAIARALDAPPALTVLVGGDG-------S---vdp-SDLLSC
+SGTVHVPSV------------------
+>gi|154290868|ref|XP_001546023.1| hypothetical protein BC1G_15366 [Botryotinia fuckeliana B05.10]gi|150847185|gb|EDN22378.1| hypothetical protein BC1G_15366 [Botryotinia fuckeliana B05.10]
+---IMFVGLQ-GAGKTTTCTKLARWYQSRGFKACLV----CA-D----TFRAGAFDQLKQNATKAK----I-PYYGS---------L-TQTD-PAVVAKE
+GVDKFkKEKFEIIIVDTSGRHRQE---DALFQEMVDIQtavKpDQTVMVMDASIGqqAEAQS----KAF-KETADFGAIIITKTDGHASG--GGAISAVA
+ATHTPII------------------------
+>gi|153003842|ref|YP_001378167.1| cobyrinic acid ac-diamide synthase [Anaeromyxobacter sp. Fw109-5]gi|152027415|gb|ABS25183.1| Cobyrinic acid ac-diamide synthase [Anaeromyxobacter sp. Fw109-5]
+-RRIAFVNEKGGTCKTTLCVNVAAHLAGRGLRVLVadLDTQGhagKSLGVDVRGISPTIHDLLAGDLPLeavvvRTPVPGLD--LL--PANKELAGFpVA
+vaAAADRAERLARRLDGiPAGAYDAVLIDAPPSVSL-V---TENVLVAA--Y-ELVVPVALTylaLDGCAEIVQSLEAMRAargRAPALRLVVPTLY-RK
+TQLADEILARLRARFPAELSRtVLGWS------------------
+>gi|149240139|ref|XP_001525945.1| hypothetical protein LELG_02503 [Lodderomyces elongisporus NRRL YB-4239]gi|146450068|gb|EDK44324.1| hypothetical protein LELG_02503 [Lodderomyces elongisporus NRRL YB-4239]
+---ILILSGKGGVGKSSVTTQTALTLVNKGFRVGVLDIDLTGPSL-PRMFGVESKQVHQSVHGWVPVEvynsndtklgGSlklMSlGFLIGDRGNSVV--
+-WRGP-KKTAMIKQFLKDVVwsgndgEPLDYLLIDTPPGTSD---EHIAIAEELRYAQpiDGAIIVTTPQQVATADVRKEINFCKKVNFEILGIVENMSG
+ficPYcaecTNIFsSGGGKQMAETLQLAYLGNIPID-PL---------------
+>gi|9971822|gb|AAG10431.1| minD [Tagetes erecta]
+--PYPKPPPIRSVLQYNRKPELAGDTPRV----VAIDAD-VGLRNLDllLGLenrvnytvvevLNGDCRLDQALVR-DKRWSNFELLCISKPRSKL-PLG
+FGGKA--LVWLDALKDRQEGCPDFILIDCPAGIDAGFIT-----AITPA--NEAVLVTTPDITALRDADRVTGLLECDGIRDIKMIVNRVRTDLIRGEDM
+MSvlDVQEMLGLSLLS-DTRG------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+S 1    *	*	*	*	*	*	*	*	*	*	383	*	*	*	*	3316	3313	4964	*	*	1
+       108	3797	*	1291	758	*	*	6641	1100	0	
+
+K 2    *	*	6428	6598	*	5639	5099	5952	1794	6896	4292	3754	3853	3782	2183	4860	4185	5048	*	6816	2
+       40	5756	6841	2766	229	*	*	9806	1190	0	
+
+R 3    3796	*	*	*	5497	5312	7119	2152	4859	4184	6196	5561	5799	6080	4083	3079	2768	2658	6807	*	3
+       11	*	7047	1604	576	0	*	10185	1201	1044	
+
+Y 4    7437	6138	*	*	3718	*	*	1154	*	2172	5580	*	*	*	*	7490	5832	3012	*	3945	4
+       0	*	*	0	*	0	*	10265	1056	1056	
+
+F 5    2707	4610	*	6198	3084	5249	*	4820	*	2958	3825	*	6089	7295	*	3236	3341	3110	7236	3942	5
+       0	*	*	*	*	*	*	10273	0	0	
+
+V 6    7349	6168	*	*	3137	*	*	1650	6795	3241	5079	*	*	*	*	6986	6443	1401	*	7557	6
+       0	*	*	*	*	*	*	10273	0	0	
+
+T 7    2185	5391	*	*	4535	3792	6215	3597	7306	3662	5430	*	5465	*	*	3754	2275	3309	6321	5685	7
+       0	*	*	*	*	*	*	10273	0	0	
+
+G 8    4115	6382	6956	*	*	2043	6323	7065	*	*	6333	2778	4153	6621	*	1367	4604	7306	*	*	8
+       25	7655	6342	0	*	*	*	10273	1055	0	
+
+T 9    3937	6325	5499	5439	5162	3472	*	4669	6466	4106	*	4701	3249	3160	5696	3501	1960	5768	7596	7225	9
+       19	*	6227	2807	222	0	*	10246	1001	1207	
+
+D 10   4865	*	3468	4339	7510	3680	7267	4771	1124	6024	7383	4287	*	6967	4088	4015	5951	6528	6355	*	10
+       24	7410	6550	1000	1000	0	*	10272	1000	1140	
+
+T 11   6413	6295	7069	5461	7518	1022	6985	5528	4666	6972	6223	6018	3119	4961	5551	3558	3644	*	*	6931	11
+       0	*	*	*	*	1216	812	10259	0	1165	
+
+E 12   5092	*	3665	4389	5664	761	5588	*	6213	*	5721	4093	*	7402	5827	3663	7450	6937	*	7360	12
+       0	*	*	*	*	0	*	10277	0	1046	
+
+V 13   3596	4670	6471	3600	7465	6990	*	4291	6390	6375	*	6299	6263	*	6025	2777	3428	1266	*	*	13
+       0	*	*	*	*	*	*	10284	0	0	
+
+G 14   7616	*	7086	6297	*	206	5968	*	*	5620	7531	6967	*	*	*	5023	5185	*	*	*	14
+       0	*	*	*	*	*	*	10284	0	0	
+
+K 15   7086	7496	*	*	*	*	*	7337	265	4862	*	6997	*	5877	4626	7287	5283	5904	*	*	15
+       0	*	*	*	*	*	*	10284	0	0	
+
+T 16   5029	*	7220	7310	7337	*	*	*	6575	*	6206	6303	*	*	5737	1630	829	*	*	6808	16
+       0	*	*	*	*	*	*	10284	0	0	
+
+V 17   4420	7470	*	6607	4024	6983	5884	4983	7375	4826	5793	4513	5968	7147	*	2975	1130	3687	7302	5313	17
+       0	*	*	*	*	*	*	10284	0	0	
+
+A 18   4092	5731	*	*	4708	*	*	2461	*	2199	5694	7375	*	*	5967	4401	3145	1820	*	*	18
+       10	7220	*	1000	1000	*	*	10284	1055	0	
+
+S 19   1310	4402	*	5896	*	6862	*	5547	6808	4785	5760	*	*	*	7147	2493	2205	4736	*	*	19
+       0	*	*	*	*	*	*	10284	0	0	
+
+C 20   2509	4626	6359	6988	4627	5645	*	4011	5090	2061	4652	6269	6835	5826	5272	4450	3211	3227	7212	*	20
+       9	*	7289	*	*	*	*	10284	0	0	
+
+A 21   3116	7702	*	5142	7614	2570	4031	6315	5769	4345	7655	1521	*	4729	5855	3992	5104	5753	*	5793	21
+       0	*	*	0	*	0	*	10277	1056	1056	
+
+L 22   6460	*	*	7519	5469	*	*	2640	*	670	4867	*	*	*	*	*	4871	3712	*	5206	22
+       24	6583	7319	0	*	*	*	10287	1120	0	
+
+L 23   840	5059	*	6319	*	3187	*	5083	7387	4120	4716	*	*	*	*	4132	5826	3586	*	*	23
+       7	*	7718	*	*	*	0	10270	0	1022	
+
+Q 24   3075	6464	5878	4212	5753	4214	3817	4513	4281	4314	5754	5790	8080	4256	3396	4306	4120	3435	4732	3568	24
+       0	*	*	0	*	0	*	10263	1046	1180	
+
+A 25   1984	4939	6124	4342	5334	4179	4991	4120	5921	3399	4899	*	*	5474	5036	3350	4419	4024	7802	3766	25
+       0	*	*	*	*	*	*	10287	0	0	
+
+A 26   3474	5874	*	*	3012	*	*	4989	6340	709	4420	*	*	*	7554	6419	6836	5979	7674	5643	26
+       39	7510	5582	0	*	*	*	10287	1000	0	
+
+K 27   1512	7224	7434	3984	6358	5196	5736	*	3850	4066	7129	5826	6361	3903	3939	3441	3816	4644	*	6112	27
+       35	5839	7297	1024	976	1227	804	10272	1242	1426	
+
+A 28   3807	*	4037	3123	*	5190	6782	5368	2724	3594	4969	4306	*	2798	2699	4465	5611	6377	*	*	28
+       27	*	5745	*	*	1865	463	10272	0	1315	
+
+A 29   3331	7161	6817	4080	4996	5577	5296	5860	2876	3431	5068	4543	*	3045	2481	4140	4696	5591	*	6291	29
+       39	5805	6801	1431	669	919	1086	10281	1247	1538	
+
+G 30   5094	7690	4281	4520	6355	681	6513	*	4651	5930	*	4368	*	5784	6738	4574	6615	6184	7424	5631	30
+       40	5585	7233	531	1699	*	0	10264	1334	1368	
+
+Y 31   4973	7086	5493	4882	4419	4950	3500	4331	2200	3640	5481	5240	5221	5299	4163	5042	4842	4415	5667	3307	31
+       85	4219	8171	904	1103	841	1179	10258	1880	1621	
+
+R 32   6694	*	4139	6071	*	5609	7201	7697	1536	6484	*	3757	4919	5457	1919	3753	4338	6297	*	*	32
+       36	6431	6260	1435	666	2245	342	10262	1272	1305	
+
+T 33   4387	6456	*	*	7240	7098	*	3684	6851	5063	*	*	5779	*	7239	5084	3212	637	7544	*	33
+       0	*	*	*	*	1751	508	10255	0	1463	
+
+A 34   2929	5055	7288	7233	7282	3008	5365	4295	6864	1527	4833	6490	*	5472	5133	5228	6000	3186	7246	6972	34
+       0	*	*	*	*	*	0	10270	0	1295	
+
+G 35   3917	6385	*	*	3984	5498	*	2913	7306	1660	5083	*	4890	*	*	6061	5659	2511	*	3219	35
+       393	2069	*	1437	665	*	0	10270	4613	1295	
+
+Y 36   4501	5712	*	*	2669	5073	6482	2307	*	2245	4374	*	*	7090	4523	6501	5526	2715	7547	4792	36
+       78	4426	7416	2322	322	*	0	10270	1713	1295	
+
+K 37   6282	*	937	5876	*	7229	4965	*	1975	7299	*	5833	*	5441	3605	6355	6206	*	*	*	37
+       441	3213	2686	1439	664	1071	932	10261	2895	1411	
+
+P 38   3133	5792	*	*	*	4929	4755	5738	5641	3335	5172	5643	1129	6207	5237	4001	5060	6338	6605	*	38
+       159	4474	4069	0	*	4418	69	10073	1781	3961	
+
+V 39   4202	*	2967	*	4616	4324	5716	2954	5910	4229	5028	5205	*	1873	6233	6396	4660	3233	*	7125	39
+       159	4358	4166	202	2936	*	0	10055	1588	4587	
+
+A 40   3416	5492	6933	5057	*	2570	5384	4144	4683	2805	4200	4643	4768	2862	4305	5964	4900	5019	*	6024	40
+       154	3307	*	1942	435	426	1967	9989	2779	5152	
+
+S 41   3299	5875	4880	7046	5319	4864	3585	6109	5210	4201	5997	3242	5283	4098	6439	3033	2345	4306	*	6078	41
+       51	6557	5372	1197	827	1865	463	10246	1185	2209	
+
+G 42   3395	6152	2962	4917	7143	1907	6194	5773	4722	4440	5990	4763	4903	5567	4561	3687	3670	5187	*	7225	42
+       152	4474	4186	1543	606	3739	112	10180	1678	2296	
+
+S 43   3903	4340	5030	5332	3951	5001	6082	4659	4872	2793	5569	4996	3052	5662	5008	3563	3160	3891	7223	7548	43
+       251	6391	2759	1984	420	1182	839	10120	1105	3279	
+
+E 44   5625	*	2754	4811	3960	4028	7509	3915	4502	4140	6230	3929	4402	3393	4019	3869	4216	4323	6370	5046	44
+       249	4663	3072	1036	965	4267	77	10003	1886	4476	
+
+K 45   4017	*	4110	4008	5101	3160	5086	4479	3761	3547	5095	4132	3952	6149	5370	3384	4532	3589	*	4954	45
+       237	4126	3410	0	*	*	0	9830	1663	5513	
+
+T 46   4272	5503	3622	4527	3236	6903	6871	4170	4992	2984	4452	5217	4628	4197	4795	3779	3454	3899	*	5033	46
+       579	3540	2030	1280	766	2864	213	9703	1934	6243	
+
+P 47   3401	6680	2145	5036	6688	3871	4904	4950	3200	4330	6700	4424	4248	4768	4234	4510	3757	*	*	5634	47
+       466	2695	3038	2882	210	3090	180	9404	2560	7291	
+
+E 48   4080	6495	3501	3719	4239	3683	5699	4297	5018	3558	6775	3570	3310	4589	3604	6133	4164	4042	*	*	48
+       208	3613	4246	309	2377	1657	550	9416	1780	7347	
+
+G 49   3980	6846	3949	4803	6913	1238	5788	5858	3839	4687	5988	4244	5313	5388	6725	6013	4381	4584	*	5724	49
+       173	4697	3750	606	1543	2281	332	9780	1467	6361	
+
+L 50   4249	*	5578	5853	3855	4198	5801	4074	4130	1501	5070	5022	5591	4908	4511	4484	5860	4025	5964	*	50
+       398	3231	2894	2140	371	3098	179	9832	2601	6074	
+
+R 51   3468	6674	4014	3334	5036	3947	6664	4232	4414	3086	4745	3847	6678	5305	4781	3476	4032	3963	6413	6560	51
+       233	4503	3252	1503	628	1778	497	9729	1731	6562	
+
+N 52   4463	5620	2188	4155	5343	4166	5827	4454	3890	6642	*	2436	4968	5455	4610	4197	4201	4949	*	5971	52
+       122	3622	*	1270	773	2302	327	9742	2025	6092	
+
+S 53   3101	*	4183	3281	6656	3247	5470	6074	3835	3987	7160	4711	4868	4911	4149	3119	3807	3722	*	6907	53
+       181	3599	4830	2214	350	1569	593	9907	2149	5317	
+
+D 54   4122	*	1305	3839	7137	4371	5852	5716	4764	3668	6162	5811	5210	4966	5620	4387	4036	5203	*	6173	54
+       185	3267	5924	697	1384	1108	900	10051	2615	4539	
+
+A 55   2928	5391	5931	4631	5307	4326	6206	3974	4696	3121	6374	4781	5024	6190	4984	3225	3416	2998	*	4966	55
+       226	2957	5949	1172	847	1034	967	10117	2916	3258	
+
+L 56   4328	6066	2888	3122	6603	3191	5873	5672	4587	3849	5731	4707	5526	3407	3941	3765	5202	4491	7637	5088	56
+       78	4920	5681	0	*	2336	318	10156	1523	2506	
+
+A 57   3215	*	6460	*	3059	7422	5727	4135	5550	2156	7171	7231	5444	5787	5444	5239	4058	3212	3006	4759	57
+       110	3889	7396	2508	279	922	1082	10173	2178	2539	
+
+L 58   4601	7630	5467	6356	4140	5588	3723	2674	7463	2120	3715	5683	6417	5719	7588	4288	7368	3086	5278	4607	58
+       82	5024	5351	1286	762	1357	714	10210	1586	1899	
+
+Q 59   3887	6488	4557	4015	6345	4570	5802	3683	3620	3691	5125	4608	*	2776	3321	3366	4138	5327	7184	7238	59
+       89	4617	5702	1530	613	2934	202	10231	1641	2098	
+
+R 60   3480	5308	3737	3497	*	3208	5490	4637	3551	4213	6333	3805	7421	4121	3277	3325	4707	7642	*	5782	60
+       96	4517	5606	1769	501	1858	466	10191	1849	2411	
+
+N 61   3362	*	4076	4927	5341	6480	5012	3422	4000	2697	6621	4533	*	4861	2854	5084	4903	3320	5284	5711	61
+       147	4512	4234	1877	458	1213	814	10205	2041	2380	
+
+S 62   2919	4219	4139	4370	3669	4424	6435	4677	5279	3023	5166	5097	5528	4241	5726	4128	3856	3592	*	5344	62
+       156	5636	3604	2408	301	3945	97	10146	1269	2722	
+
+S 63   3373	*	3173	3552	5467	2621	5661	5593	4162	4693	6175	4112	4958	3696	3995	3569	4635	6290	*	7312	63
+       226	4180	3477	1234	799	4438	68	10068	1894	3866	
+
+L 64   4434	5500	5368	3880	5122	4074	5695	3823	4020	2123	4871	4324	4136	6280	4450	4509	5972	3492	5513	*	64
+       310	3340	3404	1977	423	1105	902	9932	2435	4947	
+
+Q 65   4498	6641	2642	2719	5485	3926	5893	5448	3473	5988	6216	4641	3594	4495	4285	3697	4513	5189	7243	6255	65
+       326	3332	3278	1883	456	1868	462	10007	2608	4606	
+
+L 66   3616	4859	3920	2687	5401	4821	*	4105	3984	3163	6071	6155	4313	3743	7121	3926	4575	4277	4799	6121	66
+       293	3250	3668	1904	449	1948	433	9990	2443	4836	
+
+D 67   4202	5258	3231	3919	5610	6343	7431	3984	3738	4655	5301	4575	2797	6008	4397	3705	3354	3964	*	5814	67
+       412	3426	2686	1648	554	2715	238	10028	2235	4866	
+
+Y 68   4879	7046	5026	3107	5383	5707	5081	4028	5278	4300	6920	5271	3744	4572	5410	4033	3823	3113	5725	2638	68
+       362	3355	3009	1916	444	1756	507	9873	2430	6063	
+
+A 69   3833	*	2735	2461	*	3937	6038	4956	3867	4913	7168	3868	4276	5379	3811	4537	4150	4997	7170	5404	69
+       81	4696	5993	1929	440	824	1200	9742	1429	5908	
+
+T 70   4361	6238	3710	3486	6081	3359	4386	4445	3856	4181	7296	2626	5112	5139	4485	4662	5085	3746	*	5139	70
+       209	3197	5283	1330	731	1130	880	10010	2847	3680	
+
+V 71   4037	7416	5462	4246	4481	5258	5984	3130	5337	2132	4121	5493	3460	7218	6382	3788	5403	3312	*	5789	71
+       145	4912	4008	1248	788	4664	58	10145	1464	2932	
+
+N 72   5030	6058	2822	3322	5552	3843	4525	5797	4670	5008	*	3088	4938	5284	5576	3115	3398	4452	*	4744	72
+       98	6023	4305	296	2431	1149	865	10118	1227	3751	
+
+P 73   3919	6811	*	6218	4041	3299	7130	4085	*	2306	7563	4614	2205	5833	4749	4102	7752	3519	*	6270	73
+       76	4622	6576	0	*	978	1022	10122	1653	3388	
+
+Y 74   4328	6410	4685	6047	3035	5732	5217	2939	5737	3128	5858	6639	7189	*	5597	4388	4787	2623	4461	3228	74
+       55	5845	5639	2305	326	1250	787	10191	1200	2367	
+
+T 75   4224	4960	4330	4795	3971	4287	6433	3593	5119	2593	4696	7478	3807	5732	4108	5410	4085	2939	7181	6320	75
+       35	*	5364	*	*	1335	729	10200	0	2085	
+
+F 76   3471	6373	6710	5813	2892	7605	7289	2544	7483	2303	4211	*	5542	6280	7109	4130	5746	3336	6136	4063	76
+       236	6911	2812	1569	593	1732	517	10197	1214	2098	
+
+A 77   3535	6202	3695	3596	5822	3151	5513	7346	3540	4366	*	4125	2903	5420	4226	3676	3967	5310	*	6353	77
+       173	5134	3563	1337	727	2584	263	10074	1499	3963	
+
+E 78   3022	6763	3878	3374	4082	3524	4821	4011	4009	4903	*	4524	3779	4657	5150	3882	5267	4631	*	4441	78
+       583	3796	1942	976	1024	1094	912	10017	2042	4565	
+
+P 79   2962	5841	4608	4255	7287	3682	5962	4602	3893	5774	7375	5270	1725	5721	5908	3710	4412	4634	*	*	79
+       442	*	1923	*	*	4818	52	9757	0	5898	
+
+T 80   2687	4686	*	4933	6396	3333	6308	3960	5573	3614	4022	4659	4277	6523	3817	3069	3959	4264	*	6329	80
+       180	6520	3234	2000	415	1692	534	9375	1000	7396	
+
+S 81   2523	6461	4456	4960	5595	3300	5426	*	5699	5143	6929	3576	4895	*	5832	2063	3565	4054	6797	7009	81
+       73	5539	5166	3008	192	3843	104	9671	1148	6597	
+
+P 82   3532	*	3828	3970	5871	4689	6994	4325	3406	4667	6682	7004	1747	4777	5215	4911	4493	3727	*	*	82
+       33	6869	6139	1000	1000	1502	629	9670	1113	6524	
+
+H 83   4475	*	3227	3326	4488	3877	3168	6796	4686	3393	5820	4274	5149	4696	4341	3706	4681	5000	*	4347	83
+       158	4114	4441	2391	305	3101	179	9904	1680	5217	
+
+I 84   4384	6066	5016	5296	4472	5050	5111	3418	6881	1637	4098	4515	4312	5544	5985	5670	5526	3586	7050	5006	84
+       67	7320	4679	1000	1000	3899	100	9907	1000	5260	
+
+I 85   2685	6599	4715	4574	5198	5032	7214	4978	5489	3233	4626	5150	3494	4644	5105	2902	4045	3573	*	5363	85
+       110	6848	3950	1000	1000	2218	349	9893	1132	5382	
+
+S 86   2288	6411	4237	3810	6128	3336	5938	4529	3901	4417	*	3406	4962	5810	6092	2748	4539	6076	*	7189	86
+       340	4311	2646	1902	449	4219	80	9907	1710	5203	
+
+A 87   3081	*	4499	3344	4497	3442	6879	4728	4083	2837	4425	4622	*	5496	3081	4062	5836	4846	6654	6964	87
+       603	2463	2640	1200	825	1830	477	9666	2990	6374	
+
+Q 88   5444	*	4506	3724	3438	6374	6620	3092	5164	2321	3769	5092	4674	5275	4201	5217	5289	3622	6794	4923	88
+       261	3432	3780	932	1072	1868	462	9651	2015	6407	
+
+E 89   3887	*	3581	2260	6615	3604	4903	5395	5220	3948	6027	4274	4754	3504	4024	4294	4588	4771	*	5982	89
+       264	3096	4308	1006	994	2982	195	9830	2496	5750	
+
+G 90   3537	*	3526	3717	5995	2209	6220	6570	3391	5316	6982	3429	5771	3758	4649	3645	4194	*	*	7092	90
+       142	4289	4556	1870	461	*	0	9871	1646	5709	
+
+R 91   4162	6567	3864	3176	7048	5226	4997	4231	3422	3397	5155	4695	4668	3627	3496	4611	4381	4444	*	4765	91
+       260	3135	4284	1389	694	2782	227	9888	2382	6033	
+
+P 92   3376	*	2861	3110	5470	4080	4983	5884	3601	4275	6817	4834	4304	5257	4775	3045	4360	4818	6933	6038	92
+       132	3899	5599	1298	753	1330	732	9869	1830	6035	
+
+I 93   4089	*	3683	3632	4336	4590	6602	2903	3864	2803	4987	4978	5906	4754	4376	4482	4928	4029	*	4981	93
+       50	5365	6654	1137	875	1324	735	9998	1319	4604	
+
+E 94   3367	6392	3591	4454	5037	4513	6172	4933	4944	2282	7286	4310	4605	5584	4025	3206	3828	5581	6733	6124	94
+       101	4737	5063	2228	346	215	2853	10148	1525	3441	
+
+S 95   5517	*	5496	3145	4928	4064	5019	5168	5149	2354	4853	5427	3840	4339	4079	3359	5000	4328	5578	4954	95
+       31	5907	7828	729	1334	589	1576	10254	1200	1805	
+
+L 96   3734	*	2894	2103	6401	3635	6698	5009	4178	5658	*	4314	3930	3931	4385	4045	5122	5665	*	6475	96
+       30	5973	7719	1263	777	1035	966	10266	1205	1292	
+
+V 97   3701	*	3737	3567	6476	5058	5417	4988	3152	3645	5175	4171	6248	4642	2789	5413	3908	4116	5315	5565	97
+       67	5007	6149	380	2110	1384	697	10264	1583	1194	
+
+M 98   4874	*	*	*	3618	7274	8295	2008	*	1509	3995	*	7644	7153	6707	6364	6491	2677	7584	7454	98
+       8	*	7548	0	*	2718	238	10254	1000	1609	
+
+S 99   3818	*	3977	3704	5659	5612	7004	3875	2991	3047	5757	6304	6007	4595	3176	3933	4432	3670	5649	5890	99
+       45	5349	7298	1287	761	2684	244	10265	1449	1600	
+
+A 100  2836	*	2806	3053	6194	5178	5108	6171	3121	4569	7512	4377	6953	3665	3678	3852	4429	7137	*	6175	100
+       63	6278	5069	707	1368	1540	608	10260	1342	1652	
+
+G 101  2541	5334	5882	3900	4140	4852	4888	3920	4125	2690	4789	4280	*	5764	4085	5545	4746	3895	7439	5692	101
+       28	7413	6223	855	1161	1846	470	10242	1153	2094	
+
+L 102  5653	5358	*	*	3542	7612	5582	2570	5252	1446	4134	*	*	*	6651	*	7031	3271	6457	3430	102
+       15	7607	7606	1585	585	*	0	10215	1000	2007	
+
+R 103  3190	*	3125	2783	7127	4743	5050	6276	3075	7220	6333	3677	7643	3731	3089	3901	5924	5663	*	5261	103
+       103	6352	4136	3751	111	2277	333	10214	1149	2096	
+
+A 104  3353	6473	4373	2425	7424	6445	5079	6461	3033	5133	7448	4567	5923	4199	3014	3697	3821	5160	*	5104	104
+       45	6281	5815	1422	674	1572	592	10175	1289	2913	
+
+L 105  3777	6033	6260	5198	4136	*	6579	2862	6377	1293	4935	5679	6711	6815	7458	5757	7671	3197	6041	5476	105
+       143	3917	5134	838	1183	702	1375	10231	2346	2618	
+
+E 106  2629	5707	4740	3988	*	4832	7542	4942	3196	3933	*	4226	4747	3688	2841	3498	4429	5134	*	*	106
+       162	3978	4553	1574	590	793	1242	10162	2218	2215	
+
+Q 107  3627	7386	3001	2374	*	4624	6980	7362	2784	5272	7467	4913	5399	3862	3656	4198	3962	5265	*	6123	107
+       91	4251	6855	130	3539	294	2441	10266	2060	2281	
+
+Q 108  4958	6819	3078	3000	5400	3417	4877	5935	2948	4808	7559	3798	5432	4065	3306	4675	4573	5194	*	6276	108
+       97	3949	*	384	2096	1198	826	10316	2441	1365	
+
+A 109  4059	5526	5015	7168	3252	5303	3698	6730	5833	4579	7058	5040	4529	*	5922	4928	5674	5304	7680	1238	109
+       0	*	*	0	*	0	*	10409	1056	1159	
+
+D 110  5338	7768	568	3225	*	5104	7024	*	5073	*	7638	5754	5927	5171	5832	5808	5995	7919	*	*	110
+       24	5925	*	708	1367	*	*	10422	1302	0	
+
+W 111  7084	5618	7599	*	2707	8994	4862	3264	*	2995	5823	7594	7770	6767	4699	7247	6720	2338	6034	2036	111
+       0	*	*	*	*	*	*	10422	0	0	
+
+V 112  4897	4306	*	*	6365	*	*	1686	*	3420	5634	7182	*	*	7571	7541	4762	1279	*	6279	112
+       0	*	*	*	*	*	*	10422	0	0	
+
+L 113  *	*	*	*	3958	*	*	1434	*	1785	7541	*	*	*	*	*	*	1890	*	*	113
+       0	*	*	*	*	*	*	10422	0	0	
+
+V 114  5947	4389	*	*	4656	*	*	1025	*	3339	4883	*	*	*	*	*	8667	1999	*	5681	114
+       4	8644	*	1000	1000	*	*	10422	1000	0	
+
+E 115  *	*	590	1972	*	7324	7227	7432	7020	6377	*	7053	*	*	5934	7334	*	6328	*	*	115
+       6	7894	*	1585	585	*	*	10422	1000	0	
+
+G 116  3862	3249	*	*	8277	1639	*	5128	*	4842	6850	5499	6708	*	*	3661	1851	4582	*	*	116
+       9	*	7343	*	*	*	*	10422	0	0	
+
+A 117  2377	*	*	5000	6376	4076	7346	5719	7433	4902	7407	5132	1500	5357	5604	3319	4495	4418	*	5937	117
+       146	4725	4104	1294	756	*	0	10414	2021	1056	
+
+G 118  3154	7958	4467	6229	*	1827	7388	6230	5302	7354	5304	7293	1376	7227	5888	4904	6374	7300	*	*	118
+       134	4215	4846	845	1174	2160	366	10352	2097	2114	
+
+G 119  3200	*	5228	*	4493	1548	4921	6127	6715	4354	*	4274	5642	6133	5376	2529	4257	6551	*	5266	119
+       58	6353	5195	1356	714	2870	212	10321	1100	2406	
+
+W 120  4323	7642	4322	6339	4274	5808	*	3064	5820	1446	4403	4372	3964	6430	6690	7614	5805	3898	6414	5253	120
+       87	6554	4388	1214	813	1921	442	10344	1116	2647	
+
+F 121  3915	6153	3375	4609	4542	2663	5114	5044	7313	3605	4197	3278	5808	6457	6523	2740	5029	6073	7667	4798	121
+       213	6872	2957	3700	115	1329	733	10288	1048	2914	
+
+T 122  4404	4994	3429	3478	7219	4382	4024	5368	5421	4629	5186	5041	4803	5325	4986	3038	4617	2483	7251	4773	122
+       330	5501	2456	794	1241	899	1109	10138	1388	4178	
+
+P 123  3689	*	3978	3939	6062	2622	5148	5114	5284	5215	5236	5032	1799	*	4494	4510	7180	4652	7290	5575	123
+       275	*	2525	*	*	1245	791	10177	0	4763	
+
+L 124  4502	5384	*	5248	3499	4883	6313	3545	5261	1720	4314	5258	6923	4529	6822	4920	4500	3055	7023	6228	124
+       387	7238	2129	1585	585	2576	265	10117	1000	5226	
+
+S 125  4612	*	5209	4960	4457	4117	*	3603	5201	3860	4988	3463	5522	4937	3797	3434	2541	3913	*	4674	125
+       190	4296	3785	1229	802	1436	666	9877	1799	6558	
+
+D 126  3364	6986	2863	2822	7290	4410	6120	4319	4995	3924	5565	5030	7230	5075	4961	2794	3745	4975	7394	5361	126
+       155	4756	3950	564	1628	2927	203	10020	1410	5475	
+
+T 127  2748	*	3451	3822	3748	3232	6029	5031	8054	4542	5779	3710	4738	6613	*	3148	3657	3828	6546	*	127
+       119	3754	7670	0	*	757	1293	10048	2015	5527	
+
+F 128  4235	7381	4531	4087	4619	5860	*	3777	4478	2091	5019	4884	5561	5603	4958	5421	3283	3266	7473	4208	128
+       21	7334	6974	0	*	918	1087	10243	1017	3258	
+
+T 129  4033	6332	3278	5189	4630	6366	7846	4204	5416	2027	4465	4698	6395	4892	4625	3126	4049	4191	*	5931	129
+       48	6410	5597	2211	351	750	1303	10343	1250	2320	
+
+F 130  2645	5397	4493	7286	5222	4495	6864	3629	*	3730	5017	2326	5115	5904	6177	3591	4056	3827	6547	6006	130
+       17	7177	7682	2000	415	1232	800	10352	1007	1891	
+
+A 131  1548	6380	7710	5284	4768	4820	*	3551	6893	3236	5309	6006	5246	8080	4832	3400	4403	3885	*	5155	131
+       41	6267	6087	0	*	1301	751	10365	1141	1560	
+
+D 132  3847	*	1790	2893	4778	7127	6419	5380	7274	3642	5275	4800	8222	3451	6307	3847	5532	3857	*	6414	132
+       172	7013	3260	0	*	1799	489	10375	1049	1578	
+
+W 133  3924	4979	*	6201	4774	*	7345	1846	5654	1946	5109	*	7119	7287	5590	6305	5656	2984	5061	4781	133
+       60	8516	4706	1000	1000	5069	44	10217	1000	3467	
+
+V 134  1306	4595	*	5608	6335	5066	*	3780	7335	3262	3895	*	7453	*	6080	3316	5945	3492	*	6063	134
+       178	*	3103	*	*	4178	82	10183	0	4001	
+
+T 135  2344	6331	5742	5008	6975	5148	5015	7056	2895	4473	6336	3710	4333	3663	2948	3269	5501	6154	*	*	135
+       197	*	2968	3322	152	2631	254	10057	1005	5166	
+
+Q 136  3011	*	3230	3775	5804	4556	4640	4392	3964	3890	4759	3786	5402	4795	4408	3964	4066	5433	7260	4409	136
+       181	*	3088	*	*	*	0	9983	0	5709	
+
+E 137  2634	4237	*	5641	4461	6744	*	3727	7068	1840	6791	6553	*	5759	5724	3354	4114	3624	5136	5224	137
+       104	4939	4754	2218	349	2466	288	9798	1512	6469	
+
+Q 138  5817	*	1702	3667	*	2842	4602	4443	6289	5054	*	3045	5165	4620	5390	3859	*	4769	*	7038	138
+       293	4836	2749	2175	361	1650	553	9890	1368	6003	
+
+L 139  2064	5813	2867	6518	6748	4355	6166	3545	5641	3203	6021	5106	5471	*	7175	3241	4974	3665	*	5761	139
+       152	6173	3537	621	1516	384	2099	10043	1110	5824	
+
+P 140  3992	*	4625	3149	6329	3693	5088	5609	3550	4517	6269	5746	2269	5058	4140	4770	4678	3935	6117	4883	140
+       30	5624	*	434	1944	0	*	11014	1285	3276	
+
+V 141  3256	7622	*	*	5183	6612	*	2393	7445	3143	4705	*	6231	5749	7687	6252	4076	1338	*	*	141
+       9	7369	*	1585	585	*	*	11089	1000	0	
+
+I 142  4473	5706	7999	7522	4414	*	*	1704	7737	1840	6180	*	*	6162	7249	7717	6096	2206	*	5779	142
+       0	*	*	*	*	*	*	11089	0	0	
+
+L 143  5093	6005	8270	*	3539	6600	*	3280	*	1550	3946	7254	2785	*	*	*	5875	2577	*	6650	143
+       65	*	4512	*	*	*	*	11089	0	0	
+
+V 144  4915	5065	5789	6378	6708	*	*	2936	7430	4543	6582	7252	3069	6368	*	5889	5362	920	*	*	144
+       0	*	*	*	*	0	*	11109	0	1833	
+
+V 145  3200	6714	7369	5732	5052	5479	5457	3639	6536	3343	4799	6382	5208	5531	6103	2904	2473	2680	*	6510	145
+       9	*	7376	*	*	*	*	11089	0	0	
+
+G 146  4749	4967	3180	3260	5298	4167	5836	7597	4549	5299	7326	5160	3301	4103	2976	3679	3229	5883	7646	5912	146
+       25	*	5869	0	*	0	*	11151	1055	1055	
+
+V 147  2951	5583	4850	6233	6686	3535	5429	5388	6306	4043	4972	4547	2395	6572	*	2766	4475	4603	4936	4496	147
+       17	7466	7358	0	*	0	*	11141	1000	1255	
+
+K 148  5523	7728	2807	2615	7857	2685	4784	5451	4572	5007	5725	4423	6642	4583	4312	3139	4198	6549	*	5102	148
+       298	2496	6751	1735	515	0	*	11151	4136	1055	
+
+L 149  4053	5384	4883	5030	5658	4905	5675	3240	3868	2795	5331	4515	4121	5121	3450	4258	4422	3661	6485	5336	149
+       152	3322	*	1675	542	*	0	11137	2875	1132	
+
+G 150  4186	6281	3513	3506	5307	2315	6191	5650	5740	4808	5393	5817	4619	4356	4060	3965	2909	5183	5555	7565	150
+       210	3323	4815	1023	977	*	0	11137	3000	1132	
+
+C 151  2845	5861	3755	5967	4944	3386	*	4141	4832	3339	7638	4924	5378	6325	5803	2500	3302	4682	*	5307	151
+       117	3678	*	1550	603	3626	122	10850	2515	1908	
+
+I 152  3395	*	6353	5619	4722	5989	*	2152	4206	1856	4942	7271	6427	7062	5482	6186	4653	3376	6457	5527	152
+       39	5226	*	1649	554	1508	625	10832	1466	2137	
+
+N 153  3826	7295	3714	3125	7496	5114	5793	5747	4013	4963	5106	2757	5348	4097	4248	3024	4428	3782	*	6313	153
+       33	5885	7527	2973	197	*	0	10825	1251	1821	
+
+H 154  3410	7290	2324	3690	7669	5247	3668	5498	4529	4341	*	3752	5683	3462	4637	3731	4042	5507	*	6056	154
+       72	5928	4951	2029	406	1888	455	10841	1323	1933	
+
+A 155  2434	6306	5072	5188	4626	5642	7145	2960	*	2785	5389	7116	7380	6772	7412	4656	2860	2630	*	6272	155
+       25	7206	6588	1585	585	568	1620	10842	1000	2238	
+
+M 156  4064	7238	5369	4117	5624	4979	6122	3307	3128	2248	6036	4492	*	4103	4631	6357	5234	3424	6551	4091	156
+       17	*	6445	2807	222	1034	967	11116	1017	1613	
+
+L 157  3756	7462	3682	3157	5682	4876	5844	5453	3751	2975	5635	3927	6220	3621	3049	5135	4170	4940	*	5873	157
+       34	5925	7164	1400	687	2042	401	11115	1323	1527	
+
+T 158  2550	6039	4780	4925	4816	4412	8173	4793	5185	2823	5410	5075	*	4950	5999	4284	2462	3486	7518	5308	158
+       45	5327	7409	956	1045	2194	356	11110	1418	1508	
+
+A 159  2644	7419	6346	*	5137	*	7165	2752	3889	2405	4633	6317	*	5563	4591	7514	6473	2320	5658	5092	159
+       18	*	6355	*	*	1504	627	11126	0	1511	
+
+Q 160  3635	*	3485	2374	6061	4707	4812	5561	2850	5629	7301	3071	*	3989	3376	4349	5296	6768	*	*	160
+       37	7155	5756	2000	415	1947	433	11113	1013	1522	
+
+V 161  3208	7175	4036	3794	5227	5268	5935	5087	4266	2692	4752	5210	7719	3503	3613	4233	4593	4132	*	4152	161
+       35	6390	6371	0	*	2019	409	11078	1125	1754	
+
+I 162  3104	5632	6355	5609	3309	7235	*	3224	*	1392	4905	6508	*	6484	7585	4983	6456	3626	6240	4744	162
+       50	6263	5593	0	*	1869	462	11063	1273	1818	
+
+Q 163  4270	6294	3946	2999	6660	5081	4939	4038	3053	4725	6139	4665	5571	3336	2788	4249	5941	4234	6591	8169	163
+       135	4196	4836	1586	584	726	1338	11114	2028	1954	
+
+H 164  3543	6420	4608	3284	*	4205	4497	5860	3182	5034	5339	3642	5127	3575	2821	3468	5563	5273	*	7324	164
+       599	1929	3694	1340	725	267	2563	11105	5320	2057	
+
+A 165  3299	6453	4619	4415	4689	5141	4154	4404	3954	3483	6346	3759	3241	6111	3794	3623	5502	4035	*	4955	165
+       115	4268	5355	345	2233	2547	271	11036	1969	2743	
+
+G 166  4817	7412	3242	3550	*	1724	4794	7383	3428	*	*	3116	6249	4400	3949	4298	5657	7491	*	6260	166
+       41	5987	6376	580	1594	752	1300	10354	1166	2910	
+
+L 167  3454	4707	4879	4305	4628	4608	7073	2563	4541	2708	6207	4512	5328	7215	6701	5531	5448	2811	*	4439	167
+       119	5091	4321	1455	655	490	1797	11146	1457	2014	
+
+T 168  4989	*	3170	3896	7046	4885	5850	6890	2744	5394	9303	3023	2948	4199	3024	4653	4036	7344	*	6443	168
+       81	5187	5191	1095	911	888	1121	11078	1599	2263	
+
+L 169  5358	6098	5063	7342	3278	5772	*	2485	4236	2662	*	6742	4004	6735	4705	6522	5542	2082	*	5269	169
+       66	8505	4579	1000	1000	859	1156	10839	1000	2115	
+
+A 170  3001	*	7702	4963	4143	5526	5622	2811	4435	1870	5710	*	6643	5714	4338	4469	5040	3262	*	*	170
+       33	7458	5898	0	*	251	2649	11113	1000	2225	
+
+G 171  2814	7299	7338	5599	5306	917	7263	6485	4441	4413	7492	7292	7687	7268	4397	6311	6771	4548	6904	5995	171
+       72	4816	6269	299	2418	635	1491	11054	1640	1414	
+
+W 172  4426	6044	*	*	3552	6289	7213	2270	*	2496	4830	7663	7335	*	*	4953	6151	1640	7538	5059	172
+       11	*	7104	*	*	320	2331	11058	0	1364	
+
+V 173  4640	6224	*	6329	5113	*	7705	1815	*	2650	6106	*	7137	*	*	*	6388	1240	*	*	173
+       15	7774	7510	0	*	771	1272	11045	1000	1119	
+
+A 174  3706	6870	*	6261	2808	4792	*	2804	7297	1718	5880	7618	4278	*	7490	6133	*	2751	7362	5553	174
+       18	7414	7297	2000	415	1553	601	11074	1000	1163	
+
+N 175  7647	*	7357	7334	*	5283	7274	5379	5437	6616	7212	673	*	7613	7358	4071	2620	5862	*	6800	175
+       13	7490	8180	2322	322	*	0	11071	1005	1179	
+
+D 176  5530	6379	4458	5815	5297	4600	5296	4586	2449	5265	2885	4370	*	3561	2153	4680	6314	6685	*	7494	176
+       48	6100	5785	1841	472	1093	913	11069	1388	1256	
+
+V 177  3931	4753	6507	5810	3441	5422	6298	3544	5357	3541	5186	6081	6574	7474	5224	4609	4812	1772	4721	4265	177
+       82	5314	5044	2741	234	1495	632	11133	1515	1604	
+
+T 178  4442	*	2456	3724	6388	3950	4485	6235	3665	5571	6284	3207	3722	4462	3697	3643	5233	5803	*	5821	178
+       201	3745	4177	2079	390	1462	650	11124	2703	2121	
+
+P 179  4111	*	4720	3327	*	3684	5741	5125	4093	4404	5484	4338	2022	5393	4049	3532	3899	5805	*	*	179
+       100	6172	4235	334	2273	1313	743	10858	1185	2866	
+
+P 180  4367	7178	3183	3827	6948	3904	5716	6204	3455	5808	*	3342	3989	5576	2780	3315	3632	7095	*	5011	180
+       389	2632	3732	844	1175	1679	540	10365	3333	2938	
+
+G 181  4024	*	3560	3618	4882	4875	4766	4764	4114	3789	5527	4319	3759	4229	4448	4171	2897	4112	*	6915	181
+       68	6270	4906	1902	449	2075	391	10816	1292	3419	
+
+K 182  3695	*	4033	3536	6263	5073	5982	3973	3888	5165	6835	5003	3360	4944	2889	3042	3946	4815	*	5003	182
+       77	4784	5975	2310	325	1163	854	10270	1913	3346	
+
+R 183  3692	6873	5050	3379	5528	4847	5537	3497	3891	3008	5632	4380	7297	4663	3641	4711	5048	3052	*	4430	183
+       147	4969	3946	1271	772	1924	441	10853	1399	2519	
+
+H 184  3097	*	4591	3633	3351	4469	4110	5341	4113	3715	*	4272	7938	4180	4651	3369	4095	4348	*	4436	184
+       84	4336	7120	1667	546	3539	130	10979	1692	3089	
+
+A 185  3998	7774	3607	2828	5553	5299	5443	4891	3115	5110	*	4988	5264	3569	2975	3614	4107	4594	7669	7117	185
+       44	5047	*	1381	699	572	1612	11161	1457	3120	
+
+E 186  3767	*	2746	2344	5709	4012	7364	5409	4225	4404	4581	4070	5442	4409	5447	4098	4000	4675	*	6084	186
+       130	3665	7090	1925	441	1930	439	11124	2399	1679	
+
+Y 187  3065	6252	*	4450	5201	4489	*	3210	5456	2514	4548	4126	6337	6962	5193	4546	3761	2948	*	4319	187
+       33	6957	6110	0	*	2669	247	10613	1015	1584	
+
+M 188  3597	7002	4896	4950	5437	6989	*	2765	3205	2461	4179	7065	5818	4838	3411	4808	5048	3738	*	5309	188
+       53	7131	5126	1832	476	1543	606	11064	1113	1734	
+
+T 189  3711	*	3087	2198	7376	4563	6480	5492	2999	4992	*	4606	5392	4186	4028	3693	4121	4887	*	*	189
+       55	5028	7256	331	2287	1935	437	10633	1548	1946	
+
+T 190  2973	*	4508	2738	4876	*	6303	4964	5189	4908	4743	4766	4696	3578	4551	4038	3631	4050	4799	4004	190
+       26	6261	7792	957	1044	2978	196	11178	1180	1790	
+
+L 191  4035	5664	*	*	3553	7782	*	1995	6453	1990	4184	*	*	*	*	5507	6150	2519	*	4321	191
+       147	3606	6074	2273	335	1078	926	11101	2491	1775	
+
+T 192  3138	5671	4858	2569	4626	4308	*	4910	3116	4015	6306	5162	*	4089	3320	4467	4037	4814	*	5567	192
+       17	*	6431	*	*	1204	822	10642	0	1633	
+
+R 193  3413	*	3155	2265	*	5608	4885	6182	3080	6354	5786	4674	6436	3645	3367	3514	4430	*	*	7063	193
+       223	4942	3178	1018	982	1149	865	10645	1468	1490	
+
+M 194  3290	*	5002	4207	3775	6758	4595	3991	4545	3018	4164	4185	6991	5211	3418	3486	4418	4820	*	4352	194
+       257	3486	3763	1329	732	432	1951	10469	2253	2931	
+
+I 195  5441	4955	4599	4970	2982	5513	6004	4537	4989	2310	*	4934	6138	5631	5320	3725	2968	4020	5047	4513	195
+       83	4408	6840	1272	771	628	1503	10367	1575	2628	
+
+P 196  4526	7271	4042	4622	6770	1654	5164	6204	2963	*	6473	3864	3190	4603	4757	4559	5252	7004	*	6956	196
+       68	4581	7890	877	1134	1123	887	10517	1789	1775	
+
+A 197  5451	8249	3917	5566	4198	4098	*	2367	4411	2318	5196	5880	4712	4963	4692	5801	4964	3240	*	5423	197
+       131	4345	4729	2960	198	1430	669	10535	1908	1452	
+
+P 198  6939	*	5112	3849	6186	4708	5514	6358	3303	4862	6636	4222	1382	4512	4061	4616	5303	4574	*	6303	198
+       33	*	5476	*	*	1419	676	10364	0	1999	
+
+L 199  4523	5029	*	7879	4090	6646	6643	3486	*	2291	4522	6985	5090	*	5532	6981	3959	1659	6912	4331	199
+       91	4456	5982	965	1036	327	2302	10332	1623	1954	
+
+L 200  3535	4763	*	6648	2676	5373	7646	3478	6451	1358	5016	*	*	*	7916	5440	5555	3648	5938	6093	200
+       322	2813	4114	83	4168	950	1052	10339	2798	1786	
+
+G 201  2934	6928	4495	4839	7267	1541	5375	5046	4993	6840	6767	6061	5825	5943	5336	4283	3008	4306	*	5159	201
+       120	3838	6653	838	1183	0	*	10052	1787	2067	
+
+E 202  3499	4513	*	4204	3658	6733	6589	4180	4154	4033	5942	5183	4996	5602	4408	4009	3934	2188	5902	4816	202
+       13	6803	*	0	*	0	*	10068	1000	1061	
+
+I 203  6848	*	6872	*	3984	*	*	932	*	2412	4811	*	*	*	*	*	6961	2610	*	*	203
+       0	*	*	*	*	*	*	10073	0	0	
+
+P 204  5106	6446	5220	5765	*	6829	5233	*	4564	*	6413	7067	693	6839	3272	5229	5268	6800	6460	6189	204
+       39	6846	5804	0	*	*	*	10063	1044	0	
+
+W 205  5552	*	4718	2683	3486	7003	5619	5648	4033	3874	7601	4547	5139	5873	2590	5193	5180	6019	4041	2968	205
+       76	4293	*	1396	690	690	1395	10001	1714	1375	
+
+L 206  4621	6678	1652	4694	7194	5855	4810	4069	5407	3546	*	4180	6538	5535	4217	2571	*	4382	*	7233	206
+       4569	*	62	*	*	*	0	9726	0	1075	
+
+A 207  994	*	*	*	*	*	*	*	*	*	*	1006	*	*	*	*	*	*	*	*	207
+       994	1006	*	3322	152	46	5009	1677	1137	5484	
+
+E 208  4058	*	5603	2635	5391	3974	5653	5362	2968	4533	*	3450	2181	*	3036	5526	*	*	*	*	208
+       0	*	*	*	*	0	*	8593	0	1075	
+
+N 209  3608	5549	2946	3319	4435	4551	*	4393	3254	3796	*	2563	*	*	4807	3449	4542	6170	*	*	209
+       1362	788	4973	1679	540	*	*	8611	3305	0	
+
+P 210  4851	*	4793	4744	4821	4802	*	3842	*	3410	*	*	1664	*	4746	*	3167	2375	*	*	210
+       140	4945	4054	0	*	*	0	7080	1044	1037	
+
+E 211  4631	*	4704	3593	*	*	*	*	4865	*	*	*	3745	4956	1806	2351	2216	*	*	*	211
+       59	4631	*	0	*	544	1671	6955	1397	1358	
+
+N 212  4935	*	4671	*	*	4851	4802	2787	3815	2816	4002	4685	*	*	*	3793	4945	1768	*	*	212
+       39	*	5211	*	*	*	0	7080	0	1037	
+
+A 213  3867	*	3701	3239	*	3207	*	3103	3847	4944	*	3167	*	3918	3271	3299	4666	*	*	*	213
+       152	3777	5196	384	2096	0	*	6904	1394	1204	
+
+A 214  4674	4824	1316	2242	*	4823	4731	*	*	4791	*	5009	*	5237	3810	4798	*	4695	*	*	214
+       53	4791	*	0	*	0	*	6961	1292	1046	
+
+T 215  4737	*	*	*	4854	*	*	2091	*	1594	3840	*	*	*	*	*	4706	2134	*	5266	215
+       0	*	*	*	*	*	*	7025	0	0	
+
+G 216  1791	4921	4737	3840	4623	3767	*	4777	4002	*	3994	*	4854	4816	4009	4780	*	3314	*	5266	216
+       0	*	*	*	*	*	*	7025	0	0	
+
+K 217  3320	*	3388	2098	*	*	*	*	3395	*	*	3268	*	3315	2084	*	4817	*	*	*	217
+       104	4831	4854	2000	415	*	*	7025	1075	0	
+
+Y 218  2845	*	4985	3346	3668	*	3517	3858	4985	4709	*	*	*	4927	3723	*	*	3939	3259	2758	218
+       0	*	*	*	*	*	0	6951	0	1037	
+
+I 219  4772	*	*	*	3752	*	*	3662	*	588	4757	4753	*	*	*	*	*	3820	*	*	219
+       0	*	*	*	*	0	*	6951	0	1037	
+
+N 220  4478	*	2901	2970	*	2218	*	*	2533	*	*	2150	4882	*	*	*	*	4419	*	*	220
+       0	*	*	*	*	*	*	6381	0	0	
+
+L 221  1871	*	4393	*	4582	3683	4253	4217	*	2160	*	*	*	*	*	4331	3499	3451	*	*	221
+       125	*	3589	*	*	*	*	6276	0	0	
+
+A 222  2517	*	*	2771	*	*	*	*	3415	*	3542	2634	3595	3481	*	3657	*	*	*	3532	222
+       0	*	*	*	*	0	*	5048	0	1078	
+
+L 223  2802	*	*	*	*	1838	*	2745	2902	2752	*	*	*	*	*	*	*	*	*	2779	223
+       0	*	*	*	*	*	*	3480	0	0	
+
+L 224  *	*	*	*	*	1006	*	*	*	994	*	*	*	*	*	*	*	*	*	*	224
+       0	*	*	0	*	*	*	1677	0	0	
+
+//
+�HHsearch 1.5
+NAME  0895791d132888554de0d758d179b7c7
+FAM   
+FILE  0895791d132888554de0d758d179b7c7
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:07:19 2013
+LENG  246 match states, 246 columns in multiple alignment
+FILT  110 out of 179 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  6.5 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEEECCCCCHHHHHHHHHHHHHHHCCCCCCCCEEECCCCCCCCCCEEEEEEECCCCCEEEEEEECCCEEEEEEEECCEEEEECCCCHHHHHCCCCCCCC
+CEEECCCCCCHHHHHHHHCCCCCCCCCCHHHHHHHHHHHHCCCCHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHCCCCCCCHHHHHHHHHHHHHHHHHH
+HHCCCCCCCCCCCEEECCCCCEEEEEEHHHHHHHHHHHHEEECCCC
+>ss_conf PSIPRED confidence values
+9489837997231999999999973758867993620799888877899999838999899999878789999998999899589964552056789987
+3588769999899998738870036307899999999996699078999999999997636652999999986312377898899999974999999999
+8538998658961365489988999667887886530511524789
+>Consensus
+xvxfxxxxatxxxYxxFIxxLRxxlxxxxxxxgipvlxxxxxxxxrxxxVxLxxxxxxxvtLaixxxnlYvvGfxxxxxxyxFxdxxxxxxxxxlfpxxx
+xxxxLxfxgsYxxLxxxagxxrxxixLGxxxLxxAixxLxxxxxxxxarxLlvxIqMvsEAaRFxxIxxxvxxxxxxxxxpxxxxxsLexnWxxlSxxIx
+xaxxxxgxfxxpvxLxxxxxxxxxvxxvxxxxxxxxxxlxxxxxxx
+>0895791d132888554de0d758d179b7c7
+DVSFRLSGADPRSYGMFIKDLRNALPFREKVYNIPLLLPSVSGAGRYLLMHLFNYDGKTITVALDVTNVYIMGYLADTTSYFFNEPAAELASQYVFRDAR
+RKITLPYSGNYERLQIAAGKPREKIPIGLPALDSAISTLLHYDSTAAAGALLVLIQTTAEAARFKYIEQQIQERAYRDEVPSLATISLENSWSGLSKQIQ
+LAQGNNGIFRTPIVLVDNKGNRVQITNVTSKVVTSNIQLLLNTRNI
+>gi|14578642|gb|AAK68928.1|AF219237_1 ribosome inactivating protein 2 precursor [Dianthus chinensis]
+TFTLDLARPTAAKYSSFLDQIRNNMRDPRLKYCsteIAVIKAPSVA-DKFLRINFQGP-RGTVSLGLARVNLYVVAYFAVDnrnvnRAYYFrtEINSA--
+ELRTVFPEVTvaNQRPLEYTEDYQSIEKNAKITtgdksRKELGLGIDLLISTIDKVNKKvrVVKDEARFLLIGIQMSAEAVRFRYIQNLVTRNFPKKFNS
+DNTVIQYQTSWGKISEAIHS-DCKNGKFNKDYNF-------------------------------
+>gi|391929|dbj|BAA02948.1| tritin [Triticum aestivum]
+TATFNVQASSA-DYVTFINGIRNKLRNPGHsSHNRPVLPPiePNVPPSRWFHIVLKTSPASTgLTLATRADNLYWEGFKSSDGTW-W------ELTPGLI
+PGAT---HVGFGGTYRDLLGDTD-KLTNVALGRQQMADAVTALYGRtkadktsgPKQQQAReAVTTLLLMVHEATRFQTVSGFVAGVLHpKekkSGKIGN
+EMKAQVNGWQDLSEALL--KTDAnappgkapAKF-TPI-------EKMGVRTAEQAAATLGILLFVQV---
+>gi|295701322|ref|YP_003610323.1| ribosome-inactivating protein [Burkholderia sp. CCGE1002]gi|295441645|gb|ADG20812.1| ribosome-inactivating protein [Burkholderia sp. CCGE1002]
+--EFSVDFTSPQKYVQSLGAIRAAMGDAMSLTNIPGnkilyqLRPDASNIVEGVTIEIIGvgrnnsPSNRDVRFVINPSDLYLTGFIVGRIFYRFSDFSD
+T-ASGRVQVNAPRhlvdfTIDMTVDSSYLSLARSAGVSADRTDLSIDRysLMKGyrdlINHVSSTrtINGAEARALLSYATVLSEAVRFRSIQGNFASTa
+LgDDAFTP--YRLSLEDsnrttRWDRLSDEIR--KAHYGAI----KIATHGAAPILLANVRD----------------
+>gi|326520397|dbj|BAK07457.1| predicted protein [Hordeum vulgare subsp. vulgare]
+----------------------------------------------LIVVELQGHNDDKSSVAVQKHDVSVAGFTDGSGQWHA--FPG---LEHLFPAST
+---TLPFGSSYSELIG--GiANLPGVPLGREAMMQAIRVLSAYrpgaDVEPVKRALAAVKVVISEAQRLEPIRKAVNDGWD-gESRVAPEHLPYIEHWDT
+MSYEILRSNRTgkwDGPFTKM----------------------------------
+>gi|254385328|ref|ZP_05000657.1| hypothetical protein SSAG_05020 [Streptomyces sp. Mg1]gi|194344202|gb|EDX25168.1| hypothetical protein SSAG_05020 [Streptomyces sp. Mg1]
+PVSFSVAHASVGDYRLLASSIRSRAALA---QCLPGRAGNEEVSARYLPVRIQLR-GLfielFIELRTQNSVLRITGFRNTFENW---QAPPEGRFRHVr
+davaPPGVHHAEALSFEGEVPALEAAAEVGRTGLSLGRRPMMKAVMWLHRNtDPKCTALGMLVLGEMLCEAASSPVLAQEMSR-----------------
+--------------------------------------------------------
+>gi|157108298|ref|XP_001650164.1| hypothetical protein AaeL_AAEL005004 [Aedes aegypti]gi|108879337|gb|EAT43562.1| hypothetical protein AaeL_AAEL005004 [Aedes aegypti]
+----------DRAYLGFIQNLISALTESDEVYgNIKVTKRK----DGITKVTLKDS-STnsQVGFIYRNRDLYIVGLVVGTTFYIDKEVYDGlgkkipTT
+WkGVINAAN--TVSLSNPFSYNQILPS----GEGTVLQIGKLGDSLTHLTKIgDtSKrsqIMTQHLGPFVVAFSEAIRFPVVAREIQGAIRKatgtvSLS
+knlvrplslghPsertsNhvFTMYSLLLNWSKLSDRVP----------------------------------------------
+>gi|334695920|gb|AEG80717.1| putative ribosome binding protein [Corynebacterium ulcerans 809]
+----------AKEYRDLLARIGNAVSH-PIVNGIGAIPENTATNAR-VDIEVLTSEGNAVTFHMLRRNMYIQAFTLSGTTYITSDAFG----RGLISG--
+--AGLPFSSDYASLGAHNtGNisDPTLFTVGGASLDTLLCNLFHAveNtqnfNRSAARALYAAAILFSEATRFSPSlgrniAQAIENGHPYnLTNADSEM
+I---RNWGQLSNwgraQLQ--SPNQPPFQ------------------------------------
+>gi|47496961|dbj|BAD20031.1| hypothetical protein [Oryza sativa Japonica Group]gi|47497865|dbj|BAD20039.1| hypothetical protein [Oryza sativa Japonica Group]
+-------RGTKNTYASLVSSIVTRITTRAMatVEGKPVCGPSG-----YFEIILFPkpgtqfaakHANGRVRLLFNYQNLYLVAFKVQGKWHKFKDLTPK
+I-----APDYAsikrkkhcEAKNLPFESNYGVRGMAANLaqlkVSRQTPLQIYKM----LSLYDPehnagmvRLSDLQKMLFKTCAVFPEVFRFPLLKKR
+VVYLMgktAdEESTVGEQHTDLFQNWGDCCMALRM--GR-QAFTPMADL-------------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+D 1    5393	*	2468	*	*	*	*	4586	4300	*	*	3057	2851	*	5360	3714	1541	*	*	*	1
+       0	*	*	*	*	*	*	5094	0	0	
+
+V 2    4517	*	5765	6075	5764	*	*	2571	*	5585	*	*	4494	*	*	*	*	617	*	5701	2
+       0	*	*	*	*	*	*	5524	0	0	
+
+S 3    *	*	*	2984	6627	5882	*	5994	5312	*	*	3672	5764	*	3762	1769	1670	5188	*	*	3
+       116	6366	3937	1000	1000	*	*	5905	1000	0	
+
+F 4    *	5640	*	*	434	*	*	5205	*	2479	*	*	*	*	*	*	*	*	5851	5955	4
+       23	5987	*	0	*	0	*	6014	1355	1279	
+
+R 5    5307	*	2142	4264	*	*	5246	*	5299	*	*	2038	*	*	5307	2339	3079	4940	*	5204	5
+       0	*	*	*	*	*	*	6069	0	0	
+
+L 6    5271	5552	*	*	*	*	*	3748	*	1674	6389	*	5697	5897	*	*	2425	1662	*	6078	6
+       22	*	6078	*	*	*	*	6076	0	0	
+
+S 7    2874	*	2605	3400	*	3409	5160	6437	4424	4707	*	*	5926	4235	5334	3052	3443	3664	*	*	7
+       80	5803	4805	0	*	0	*	6068	1017	1012	
+
+G 8    5202	*	4345	4966	4144	2226	4625	*	3920	6407	*	3091	6248	*	3780	3022	2705	*	*	5429	8
+       85	6248	4495	614	1528	0	*	6194	1059	1092	
+
+A 9    1201	6500	6083	6098	5972	4107	*	6394	4855	4429	*	*	3936	*	*	2845	3543	5434	*	4495	9
+       13	*	6854	*	*	992	1008	6256	0	1089	
+
+D 10   6265	*	3129	5555	*	4197	*	*	5075	*	*	4431	*	*	5090	2701	981	5552	*	6692	10
+       36	*	5325	*	*	*	0	6316	0	1065	
+
+P 11   2746	5599	4312	3573	*	3403	6623	5536	3389	*	*	5959	3064	4131	4029	3418	6635	3517	5751	6553	11
+       106	5290	4456	549	1660	0	*	6530	1057	1208	
+
+R 12   3766	*	3378	3690	*	2835	*	5818	2936	5795	*	3751	5793	3203	4440	3081	4460	*	*	4805	12
+       14	*	6717	*	*	701	1377	6689	0	1209	
+
+S 13   4330	*	3376	4729	*	3987	5804	5653	3494	*	*	3929	5074	5428	4842	2072	2269	5162	*	*	13
+       17	6401	*	0	*	0	*	6721	1013	1105	
+
+Y 14   *	*	*	*	4698	*	*	*	*	*	*	5704	*	6124	*	*	*	*	*	108	14
+       0	*	*	*	*	*	*	6762	0	0	
+
+G 15   3554	*	6306	4274	6505	4114	*	5908	3979	4687	*	3744	4981	5488	2765	2385	2922	3968	*	*	15
+       0	*	*	*	*	*	*	6762	0	0	
+
+M 16   4270	*	2621	4505	*	5296	6970	*	4924	3670	6741	3957	6566	4047	4862	2219	2401	6220	*	*	16
+       0	*	*	*	*	*	*	6762	0	0	
+
+F 17   5867	*	6269	*	473	*	*	5704	*	3050	*	*	*	*	*	4564	*	4329	*	5851	17
+       0	*	*	*	*	*	*	6762	0	0	
+
+I 18   5850	*	*	*	*	*	*	934	*	1901	3813	*	*	*	*	5704	5034	3824	*	*	18
+       0	*	*	*	*	*	*	6762	0	0	
+
+K 19   3920	*	3793	3383	*	4154	*	6315	2988	*	*	2909	*	3464	3927	3148	2693	6141	*	*	19
+       0	*	*	*	*	*	*	6765	0	0	
+
+D 20   3587	*	3388	3371	*	4160	*	6525	3488	6051	*	2771	*	4194	3973	2028	4931	6528	*	*	20
+       0	*	*	*	*	*	*	6765	0	0	
+
+L 21   *	*	*	6276	4828	*	*	2091	*	775	4993	*	*	*	*	*	*	3517	6145	*	21
+       0	*	*	*	*	*	*	6765	0	0	
+
+R 22   *	*	*	*	*	5878	*	4467	5712	*	*	*	*	5657	215	*	5918	5583	*	*	22
+       0	*	*	*	*	*	*	6765	0	0	
+
+N 23   3618	*	2285	2838	*	4356	*	6642	3598	*	*	2668	*	6870	4940	3681	3177	4476	*	*	23
+       19	*	6276	*	*	*	*	6765	0	0	
+
+A 24   2415	6130	4742	3174	*	4640	6940	5433	3638	4321	*	4464	*	2982	2348	6001	4550	6552	*	6516	24
+       22	*	6034	*	*	0	*	6756	0	1024	
+
+L 25   3273	*	5857	*	5522	*	*	3513	*	957	6012	*	*	*	*	*	*	2062	*	*	25
+       101	5677	4386	0	*	*	0	6744	1088	1015	
+
+P 26   2093	*	6497	3819	*	3914	*	5516	2975	6062	*	*	4472	4774	4483	3194	2639	4129	*	*	26
+       48	5796	6076	1000	1000	404	2033	6693	1030	1355	
+
+F 27   4833	*	2483	3314	4572	3959	5815	4455	4285	4251	*	3603	6719	4676	4189	3138	3266	6830	*	*	27
+       94	5416	4648	2585	263	0	*	6702	1055	1113	
+
+R 28   3015	*	5060	5378	*	1826	3866	*	3734	*	*	4874	2785	5300	4413	4074	4621	6101	5894	6198	28
+       98	4897	4956	576	1602	0	*	6714	1166	1175	
+
+E 29   3223	*	4287	5775	*	3308	4839	*	4286	4795	5943	4095	3380	4560	4678	3367	2344	6911	*	4450	29
+       116	4044	5937	1503	628	*	0	6681	1289	1143	
+
+K 30   *	*	3911	2553	5257	6288	3966	5011	4023	2778	4833	4350	3880	6783	4158	4485	4206	3922	*	4647	30
+       734	1501	4461	874	1138	2044	401	6643	2957	1310	
+
+V 31   3457	4679	8473	6894	4081	*	5425	3070	6016	4182	6890	*	4673	6543	3976	2030	*	2309	*	5784	31
+       125	3586	*	1466	649	0	*	6795	1893	1564	
+
+Y 32   4191	3518	5006	3733	7052	5486	1712	*	6695	5695	*	4077	5353	3944	*	*	4806	6400	*	2386	32
+       150	3342	*	729	1335	*	*	6864	1672	0	
+
+N 33   *	5917	3306	4622	*	969	*	*	5826	6831	*	2308	*	7215	*	4518	4604	*	*	6473	33
+       89	4066	*	1368	707	0	*	6862	1349	1000	
+
+I 34   *	6268	*	*	5588	*	5678	965	4882	2564	4753	5935	*	*	3838	6400	5289	3824	*	*	34
+       18	6333	*	1000	1000	*	*	6864	1000	0	
+
+P 35   5195	*	8667	*	6238	5934	*	5794	4122	6884	*	5245	608	5279	4356	4928	6930	4956	*	5236	35
+       11	*	7016	*	*	*	*	6864	0	0	
+
+L 36   4584	*	*	*	6943	4493	*	3368	5664	2999	4017	*	*	*	4864	6857	5787	886	*	*	36
+       21	6108	*	2585	263	*	0	6862	1023	1000	
+
+L 37   5777	4336	*	*	6328	6227	*	3459	*	779	4216	*	*	*	5917	5973	3092	6299	*	5928	37
+       103	4881	4838	1161	855	0	*	6862	1306	1000	
+
+L 38   2783	*	5268	5382	*	4522	6604	*	3324	5468	*	4426	2065	6599	2155	5011	5284	4505	*	7072	38
+       4	8643	*	0	*	*	0	6823	1000	1196	
+
+P 39   3315	*	4899	4741	*	4362	5521	5445	3669	4624	6232	4352	2240	4309	4258	3049	3534	4956	*	*	39
+       704	1373	*	1149	865	0	*	6823	3500	1196	
+
+S 40   4699	*	4205	5063	*	5160	5624	*	5527	6737	5925	3927	1905	3951	5135	2946	2251	5969	*	*	40
+       169	6795	3300	0	*	*	*	6867	1000	0	
+
+V 41   3714	*	5035	4529	6601	4119	*	4056	5158	3162	*	5663	3311	5071	*	5066	2638	2128	*	6291	41
+       268	4911	2878	981	1019	3283	156	6683	1113	1692	
+
+S 42   3162	*	3633	2765	*	4440	*	6332	5291	4549	6952	4223	2855	3405	5711	2995	4210	5209	*	6154	42
+       427	3881	2410	207	2902	1993	417	6471	1368	2410	
+
+G 43   3992	*	2574	3850	*	3976	*	3713	4522	6182	*	4023	3133	3741	*	3344	3395	4085	*	*	43
+       122	4339	4993	1461	651	697	1384	6261	1162	2901	
+
+A 44   4695	6315	3473	5017	*	4747	*	6070	4621	4582	*	3450	1466	4684	6765	2717	5068	6658	*	*	44
+       0	*	*	*	*	676	1418	6601	0	1877	
+
+G 45   2255	*	3651	3589	6456	4598	*	*	4064	*	6286	3666	3412	2760	3455	4771	5498	5408	6876	*	45
+       0	*	*	*	*	2559	268	6826	0	1291	
+
+R 46   4454	7066	5157	4009	*	3057	*	*	2991	6417	*	5648	5621	4256	1282	4314	5288	*	6777	6611	46
+       42	6236	6030	0	*	0	*	6828	1007	1230	
+
+Y 47   *	*	*	*	1563	5240	6943	4814	*	3796	*	6435	*	6271	*	5530	*	*	2231	1942	47
+       0	*	*	*	*	0	*	6932	0	1029	
+
+L 48   4838	*	5081	*	3000	*	6950	2377	5658	2153	5088	6573	*	7169	5482	6847	4607	2021	*	*	48
+       29	6450	6830	1000	1000	*	*	6971	1006	0	
+
+L 49   5104	*	5120	5813	4875	6403	3798	5388	4603	1523	4457	5425	4780	6249	4359	5582	4215	4448	*	3239	49
+       0	*	*	0	*	0	*	6954	1006	1071	
+
+M 50   4080	*	*	*	6779	6800	*	2023	*	3539	6023	*	5660	*	*	5791	5208	970	*	*	50
+       12	*	6918	*	*	*	*	7026	0	0	
+
+H 51   4691	*	2730	2620	*	6092	4157	3524	3857	*	*	3089	6617	4483	3098	6268	3972	4177	*	*	51
+       0	*	*	*	*	0	*	6997	0	1000	
+
+L 52   *	*	*	*	5805	*	*	3431	*	408	5409	9792	*	6870	6322	6643	*	3972	*	5939	52
+       0	*	*	*	*	*	*	7026	0	0	
+
+F 53   6643	*	5412	4448	3890	*	6712	3433	2945	6141	*	*	5939	3556	4344	3399	2455	2659	*	5572	53
+       24	*	5939	*	*	*	*	7026	0	0	
+
+N 54   2939	5704	4614	6015	4422	2428	4675	7038	6596	4622	*	1984	4137	*	*	4157	4097	5284	7187	7094	54
+       516	3075	2458	2083	388	0	*	7001	1806	1067	
+
+Y 55   5247	*	5152	4272	6701	3397	4645	6208	4111	4600	6622	4179	4371	4326	3329	2326	6055	6351	4131	3478	55
+       311	3631	3144	710	1364	83	4160	6809	1799	2327	
+
+D 56   3245	*	2310	3948	*	2410	*	*	5123	6715	*	3058	4629	6484	4466	3562	4053	5038	6724	*	56
+       103	4713	5010	1012	988	137	3467	6704	1208	1776	
+
+G 57   3891	5907	2768	3844	*	1985	6736	*	4003	6745	7182	3513	*	4350	4324	5379	3264	5224	*	5843	57
+       87	4971	5227	2410	301	381	2107	6962	1187	1221	
+
+K 58   5108	*	2470	3794	*	3275	4353	5298	3616	5461	6022	4011	6129	3408	3055	4821	3713	5740	*	*	58
+       88	4353	6641	1686	537	0	*	6979	1388	1310	
+
+T 59   5423	*	5584	3320	6053	6718	6372	*	4183	7111	6362	5823	4069	3827	3669	2746	1876	5039	4711	5145	59
+       27	5733	*	0	*	0	*	6987	1057	1013	
+
+I 60   3125	*	*	*	6035	*	*	1831	*	4582	6658	*	*	*	*	5840	2872	1383	*	*	60
+       0	*	*	*	*	*	*	6998	0	0	
+
+T 61   5137	*	*	4425	*	6202	*	5147	4845	5722	4734	6940	5170	5374	3514	3414	909	5810	*	*	61
+       14	6712	*	2000	415	*	*	6996	1000	0	
+
+V 62   4837	*	*	*	3916	6046	*	5586	*	506	5464	*	*	*	*	7232	*	2953	*	*	62
+       53	*	4793	*	*	*	*	6996	0	0	
+
+A 63   1067	6865	*	*	*	3973	6109	4110	5448	3577	6781	5961	*	*	3463	4818	6903	3579	6176	6138	63
+       12	6903	*	254	2633	0	*	7013	1363	1279	
+
+L 64   *	*	*	*	2873	*	*	1558	*	2182	3501	*	*	*	*	*	4835	2938	*	4335	64
+       0	*	*	*	*	*	*	6968	0	0	
+
+D 65   4120	6626	1706	6418	*	*	5458	*	5910	6156	*	3219	*	4145	1689	3840	7172	*	6652	*	65
+       0	*	*	*	*	*	*	6968	0	0	
+
+V 66   3539	*	3381	4584	*	6061	*	4345	5202	6167	5073	4588	4617	5652	2541	5797	4581	1941	*	4408	66
+       0	*	*	*	*	*	*	6968	0	0	
+
+T 67   5163	*	1871	4169	7287	6041	4948	4707	5466	6306	6032	3639	6296	5270	4279	2987	2606	4662	*	*	67
+       0	*	*	*	*	*	*	6968	0	0	
+
+N 68   *	*	1671	*	*	4959	*	*	*	*	*	793	*	*	*	5508	4650	6078	*	*	68
+       0	*	*	*	*	*	*	6968	0	0	
+
+V 69   2419	*	*	*	6216	6165	*	5099	*	844	4369	*	*	*	*	*	7002	2805	*	*	69
+       0	*	*	*	*	*	*	6968	0	0	
+
+Y 70   5787	6253	*	*	*	6417	*	*	*	*	*	4413	*	*	5293	4695	*	6236	*	264	70
+       0	*	*	*	*	*	*	6968	0	0	
+
+I 71   *	*	*	*	5023	*	*	2258	*	1469	*	*	*	*	*	*	*	1410	6530	6400	71
+       0	*	*	*	*	*	*	6968	0	0	
+
+M 72   2910	6625	*	4114	*	*	*	3125	*	3917	4486	*	*	5372	6236	6856	4471	1169	4721	*	72
+       0	*	*	*	*	*	*	6968	0	0	
+
+G 73   2108	*	*	*	*	381	*	*	*	*	*	*	*	*	*	*	*	*	*	*	73
+       0	*	*	*	*	*	*	6968	0	0	
+
+Y 74   *	*	*	*	888	*	*	*	*	6201	*	*	*	*	*	*	*	6093	6244	1257	74
+       0	*	*	*	*	*	*	6968	0	0	
+
+L 75   3103	*	*	4856	5929	*	*	4440	3743	3902	*	*	*	2812	2146	3171	3792	3827	*	5433	75
+       152	3323	*	1729	518	*	*	6968	1740	0	
+
+A 76   1875	5924	2978	*	*	4737	*	6782	*	6150	4561	2368	*	5067	6150	4069	4276	3086	*	6121	76
+       266	2572	*	1436	666	*	0	6968	2144	1000	
+
+D 77   4992	*	4883	4514	*	1802	6750	*	3017	5550	6003	4001	6889	3150	2942	3717	4482	*	*	*	77
+       71	4609	7199	0	*	*	0	6968	1250	1000	
+
+T 78   4860	4953	2468	5629	4923	2693	*	6677	3751	7080	*	2479	6882	*	4779	3300	3310	6800	*	5817	78
+       265	2576	*	1482	639	1101	906	6967	2203	1058	
+
+T 79   4099	*	4832	4276	5530	2999	3742	6298	4424	5867	*	3703	*	3706	2296	7127	3583	3426	*	5946	79
+       32	5490	*	1935	437	0	*	6968	1165	1000	
+
+S 80   2750	6093	6244	6032	3709	5129	3873	*	6639	5716	*	6078	7326	5662	4864	2022	4867	7234	2285	4704	80
+       26	5823	*	560	1636	*	*	6968	1114	0	
+
+Y 81   7002	5544	*	*	4024	6545	3339	*	5130	5378	5042	4850	*	*	6041	5833	*	5292	2672	1098	81
+       108	7234	3930	4170	82	*	*	6968	1000	0	
+
+F 82   4482	6791	*	3818	1420	*	3836	3795	4941	3684	6010	*	*	*	4301	5539	5491	4792	6159	3489	82
+       103	4097	6587	282	2492	869	1144	6862	1346	1536	
+
+F 83   6800	*	4551	7377	576	*	4956	6745	*	2797	6812	*	*	*	*	*	6096	4948	5568	6742	83
+       251	5276	2903	1400	687	2273	334	6898	1131	1277	
+
+N 84   4196	*	5709	4842	7041	4407	5350	*	1947	6365	4608	2373	5030	4608	2963	3225	*	*	*	*	84
+       66	5384	5570	0	*	1072	932	6812	1428	2214	
+
+E 85   5463	*	1042	3470	*	2754	6157	6655	4847	5096	*	3956	6725	4969	4989	6332	*	5999	*	*	85
+       134	*	3499	1585	585	1767	502	6867	1000	1775	
+
+P 86   2179	6390	4046	4902	3292	5274	*	5226	*	5079	*	6906	5653	4648	4541	2599	3640	3067	*	6241	86
+       135	*	3488	*	*	*	0	6892	0	2173	
+
+A 87   5077	*	4389	4351	4883	4761	*	6646	4596	*	*	*	1330	5706	4656	2640	4141	6773	*	3866	87
+       120	4006	5848	1091	915	4341	73	6752	1302	2640	
+
+A 88   2511	5863	3026	3828	*	3227	6488	6493	4634	6222	*	4071	3584	5639	3565	3267	3642	*	*	*	88
+       1360	5129	782	0	*	*	0	6710	1095	2765	
+
+E 89   5037	*	4385	2599	*	4008	*	3976	4561	4294	*	2931	5331	3922	*	2573	3453	5414	4925	*	89
+       749	2536	2105	2210	351	882	1128	5860	1776	5176	
+
+L 90   3733	*	2291	2198	*	5449	*	3656	*	3531	*	4046	4691	4827	*	3992	4059	4149	*	*	90
+       166	5599	3500	1000	1000	1393	692	6377	1011	3738	
+
+A 91   1294	5885	5170	4716	*	3469	*	4408	4189	4434	5861	*	*	4596	3593	4562	4942	5393	*	5013	91
+       55	6333	5312	1000	1000	1686	537	6432	1004	3139	
+
+S 92   4290	*	4750	4947	3290	6461	6259	4337	3720	3567	5860	5584	7079	4867	3668	2840	3446	4341	4883	3841	92
+       79	4234	*	0	*	683	1406	6552	1213	2606	
+
+Q 93   3762	*	4240	3207	6136	3926	5033	*	3106	5241	*	2952	4866	4602	3442	4430	3497	4859	*	4449	93
+       35	5372	*	808	1222	1260	780	6876	1209	1598	
+
+Y 94   5902	*	4243	5350	7034	3722	2442	5352	4119	4086	*	3180	3382	5318	5525	3800	4025	3776	*	4702	94
+       34	6155	6759	4755	54	*	0	6907	1020	1322	
+
+V 95   5459	6832	6232	*	5244	6247	*	2950	6505	1014	*	5361	5922	4583	*	6348	5534	2611	*	*	95
+       42	5137	*	2322	322	466	1858	6884	1143	1386	
+
+F 96   5797	4956	*	*	1209	5216	*	2441	*	2757	*	6201	4810	6293	*	5239	*	3993	*	7176	96
+       46	5508	6709	1110	897	*	0	6998	1107	1052	
+
+R 97   3898	*	4559	4877	*	6178	*	*	4425	6926	*	5434	1145	5510	2982	4142	4115	4588	*	6930	97
+       22	6030	*	1585	585	1374	703	7000	1032	1133	
+
+D 98   3903	*	2280	3265	*	1280	*	6648	*	*	*	3811	*	*	6236	3949	4681	6241	*	*	98
+       60	6550	5052	1585	585	0	*	6998	1006	1052	
+
+A 99   2367	*	4244	*	6691	5871	*	4874	5433	7134	4999	4944	4359	6284	5544	2776	2095	3091	*	5787	99
+       460	4296	2170	1128	883	1582	587	6954	1332	1172	
+
+R 100  4403	*	6313	4671	*	5835	5085	5474	3373	5100	*	3863	4486	3737	3933	4373	1595	4023	*	6476	100
+       1706	3221	770	1417	677	2477	286	6663	1535	2743	
+
+R 101  *	*	5110	3926	*	*	4080	*	*	4482	*	1720	*	3482	2495	4511	3118	5417	*	4363	101
+       743	1404	5339	1850	469	636	1488	5687	1943	5110	
+
+K 102  2864	5500	*	6516	*	4661	5782	4510	3248	6412	*	4944	5579	2608	2793	3822	2804	4819	*	*	102
+       0	*	*	*	*	678	1415	6545	0	2930	
+
+I 103  4675	*	5206	3249	7172	*	4860	3206	3883	*	*	5004	4938	4082	2920	4661	2414	3433	*	4779	103
+       38	6098	6422	0	*	113	3731	6895	1033	1734	
+
+T 104  4515	*	4292	4418	3663	6140	6519	4688	3520	4934	5947	4615	4205	4410	3304	3443	2631	4545	6615	5075	104
+       19	6282	*	1831	476	888	1122	6965	1095	1060	
+
+L 105  6725	*	*	*	4998	*	*	3646	*	425	4788	*	*	6936	*	6392	4715	6525	*	5084	105
+       27	5779	*	0	*	0	*	6967	1062	1000	
+
+P 106  5396	*	4294	3983	6706	2833	5402	*	5332	6677	*	4306	1498	6165	6134	3426	2965	*	*	*	106
+       0	*	*	*	*	*	*	6968	0	0	
+
+Y 107  *	4396	*	*	821	*	*	4001	*	4979	*	6201	*	*	6093	*	5490	4542	4994	2576	107
+       9	7402	*	0	*	*	*	6968	1000	0	
+
+S 108  5453	*	2995	3372	*	1496	*	6998	5440	*	*	3457	5222	*	5004	3741	2843	7234	*	*	108
+       0	*	*	*	*	*	*	6968	0	0	
+
+G 109  *	*	3826	4887	4779	969	5767	*	6041	6244	*	4456	6236	6253	*	2380	7172	5031	*	*	109
+       0	*	*	*	*	*	*	6968	0	0	
+
+N 110  *	*	3422	6078	*	3879	7245	*	*	*	*	2127	5544	5437	6637	1203	3331	*	*	*	110
+       0	*	*	*	*	*	*	6968	0	0	
+
+Y 111  6965	*	*	*	6417	*	*	*	*	*	*	*	5544	6032	6545	*	*	6078	*	123	111
+       54	*	4767	*	*	*	*	6968	0	0	
+
+E 112  4091	*	4218	3955	*	2794	4921	7432	6159	4938	6145	3329	3078	3712	3839	4336	2894	4998	*	*	112
+       0	*	*	*	*	0	*	6901	0	1164	
+
+R 113  3404	*	2008	3528	6093	5331	*	6965	4511	*	6356	3803	*	4707	6068	1870	4312	5799	*	*	113
+       0	*	*	*	*	*	*	6968	0	0	
+
+L 114  *	*	*	*	5799	6629	*	3064	*	500	3686	*	*	*	4443	*	*	5544	*	*	114
+       23	*	5983	*	*	*	*	6968	0	0	
+
+Q 115  4155	*	5523	1439	7165	3246	*	3593	*	2969	6075	*	*	3278	5033	5470	6774	4314	*	*	115
+       116	6570	3900	0	*	*	0	6972	1000	1071	
+
+I 116  3768	6573	4903	7146	*	2135	5162	5086	3377	*	4901	3138	3691	4582	3135	3951	4804	*	*	6175	116
+       209	*	2889	*	*	1020	980	6845	0	1541	
+
+A 117  2205	5893	4331	5647	*	5999	4648	5799	3269	4649	6337	4137	6095	4546	4155	4013	5927	2467	5881	5600	117
+       164	5927	3461	0	*	3926	98	6848	1029	2218	
+
+A 118  657	*	*	6489	4548	2586	*	*	6195	*	*	5799	5797	5930	6272	6724	5205	5066	*	*	118
+       282	4112	3063	177	3118	602	1552	6698	1466	2657	
+
+G 119  4818	*	4237	3971	*	755	4059	*	3482	*	*	5036	6471	5309	5808	5577	*	*	*	*	119
+       461	2515	3341	339	2254	1136	875	6645	2341	2265	
+
+K 120  2912	*	5799	4501	4316	4980	5418	4594	2965	3586	6218	4334	6575	3434	4738	5496	3619	2837	*	*	120
+       258	3649	3573	1407	683	881	1130	6627	1415	2355	
+
+P 121  5564	*	3139	3343	4874	4988	5601	7175	4359	5371	*	1865	6770	6588	4364	3007	4316	4431	*	4750	121
+       79	4235	*	1842	472	125	3591	6737	1358	2161	
+
+R 122  6289	*	*	*	*	4167	*	5043	4904	2510	5506	*	4805	*	852	5718	6195	4387	*	*	122
+       22	*	6021	*	*	0	*	6916	0	1032	
+
+E 123  5630	*	3580	1782	*	7143	6930	*	3280	4886	6098	5108	3419	6008	3901	3555	3540	4333	6257	*	123
+       31	5564	*	2603	260	*	0	6969	1078	1032	
+
+K 124  4493	*	3591	3636	*	3418	*	*	2797	6129	6781	2526	6183	3818	4073	3146	4459	4830	*	5640	124
+       48	4932	*	1547	604	0	*	6969	1197	1032	
+
+I 125  5929	*	*	*	4590	5929	*	1761	6244	2475	5146	7070	6255	*	6032	5055	2952	2289	*	6707	125
+       0	*	*	*	*	*	*	6968	0	0	
+
+P 126  4107	*	3027	3547	5255	3927	*	5101	*	7082	*	4074	2071	3967	6356	3755	3217	4321	*	*	126
+       19	*	6244	*	*	*	*	6968	0	0	
+
+I 127  *	*	*	*	6883	*	6744	3499	*	436	6622	*	*	6018	*	*	*	3408	5536	6223	127
+       0	*	*	*	*	0	*	6939	0	1011	
+
+G 128  *	*	*	6296	*	354	*	*	*	*	*	4283	6244	4986	4123	4280	*	*	*	*	128
+       0	*	*	*	*	*	*	6968	0	0	
+
+L 129  5517	*	*	*	3787	4750	*	1888	2986	3636	4897	7140	4628	4743	2436	6954	5976	3955	*	*	129
+       0	*	*	*	*	*	*	6968	0	0	
+
+P 130  3867	*	4852	3024	5891	4315	4649	5015	3479	5303	5723	3450	4466	3574	4021	4461	4103	4821	*	3630	130
+       0	*	*	*	*	*	*	6968	0	0	
+
+A 131  2303	*	5056	3460	6509	*	4985	5927	3125	6021	7411	4833	2679	4060	5056	2525	6041	6471	*	*	131
+       18	6302	*	1000	1000	*	*	6968	1023	0	
+
+L 132  3352	*	*	*	5661	*	*	5612	*	530	3201	*	*	*	*	*	5201	4911	*	*	132
+       45	*	5026	*	*	*	*	6968	0	0	
+
+D 133  3703	*	2902	2965	*	3491	5301	4114	4450	3503	4429	3678	*	4438	4172	5492	5633	3526	*	*	133
+       24	*	5951	*	*	*	0	6871	0	1161	
+
+S 134  4434	6892	3019	2976	5163	4495	4446	5204	3471	6862	*	3770	*	3913	4512	3090	3089	*	6666	5473	134
+       0	*	*	*	*	1672	543	6867	0	1269	
+
+A 135  715	*	6880	*	6354	4308	*	*	*	4327	6810	6169	*	*	6009	2600	6653	*	*	4151	135
+       74	6257	4768	2000	415	*	0	6871	1023	1161	
+
+I 136  3938	*	*	*	5593	*	*	1276	*	3083	3509	*	*	*	*	*	6152	2164	*	4108	136
+       37	5894	6831	170	3171	0	*	6885	1396	1510	
+
+S 137  4793	6150	4235	3423	4370	4102	5054	6698	3386	4134	6061	3839	7199	3865	3421	3058	3117	7065	*	6955	137
+       0	*	*	*	*	*	0	6968	0	1000	
+
+T 138  3158	5924	4618	6375	7075	5512	4700	5279	3004	4654	*	4279	*	3567	4780	2897	2890	3731	5272	5783	138
+       0	*	*	*	*	*	0	6968	0	1000	
+
+L 139  *	*	*	6375	6943	*	*	3575	*	450	5940	*	*	*	6963	*	6290	3069	7074	*	139
+       12	*	6949	1000	1000	0	*	6968	1000	1000	
+
+L 140  2522	*	5984	6952	3514	6644	4188	5727	*	5518	6413	3703	*	*	5105	2562	4347	5871	4495	2241	140
+       74	*	4326	*	*	*	0	6973	0	1000	
+
+H 141  4023	*	4407	4151	*	2185	4782	*	3555	4952	*	3097	*	4609	3239	3961	4957	5472	*	3668	141
+       90	5476	4711	1320	739	1550	603	6962	1491	1459	
+
+Y 142  4849	6789	*	6041	3636	5911	6106	5069	2972	6713	*	3805	4348	5726	5658	4006	3770	4605	6886	1651	142
+       2245	342	*	1867	462	617	1523	6952	5516	1626	
+
+D 143  4771	*	1514	5348	*	6863	*	6206	5227	5422	6335	2372	5037	5368	5182	4503	2854	4430	*	*	143
+       321	2390	6863	1633	562	158	3265	6919	2380	1600	
+
+S 144  3988	*	4175	3178	*	3555	*	6363	3834	4527	5097	3422	3315	4562	5145	3849	3425	3901	6300	5342	144
+       67	4457	*	2343	317	965	1036	6967	1385	1071	
+
+T 145  3865	*	4251	3766	*	4058	*	5855	2182	6619	6895	3508	4634	3105	2987	5238	3576	6910	*	*	145
+       90	4050	*	1805	486	*	0	6964	1392	1000	
+
+A 146  2386	5270	2280	4084	*	5648	*	4314	6009	*	*	3929	5205	3880	5627	3154	3822	4153	*	6383	146
+       56	4716	*	2220	348	0	*	6964	1305	1000	
+
+A 147  3932	*	4288	2680	6225	*	6477	2613	*	2416	5142	*	6240	4154	4060	6563	4226	2942	*	*	147
+       19	6242	*	0	*	*	*	6963	1013	0	
+
+A 148  713	*	*	*	*	5310	*	*	2689	*	*	6240	4970	4489	4703	4533	5315	6242	*	*	148
+       15	6633	*	4322	74	*	*	6963	1000	0	
+
+G 149  5929	*	5398	3661	*	5851	5275	5315	1889	4945	*	*	5860	4918	1466	4232	5065	6072	*	*	149
+       95	3976	*	0	*	*	*	6963	1438	0	
+
+A 150  1632	*	6823	*	2488	3678	4771	*	*	4229	5798	5883	6058	*	*	2494	5857	5100	6242	4828	150
+       0	*	*	*	*	*	*	6963	0	0	
+
+L 151  5078	*	6442	*	2987	*	*	5739	*	577	3727	*	*	*	*	6856	*	4073	*	*	151
+       12	*	6902	*	*	*	*	6963	0	0	
+
+L 152  2824	*	*	*	5800	5152	*	2820	*	1132	5101	*	*	*	6207	*	4254	3242	*	6144	152
+       22	*	6043	*	*	*	0	7002	0	1023	
+
+V 153  3926	*	*	*	*	4956	*	2673	4193	5203	5530	7104	4606	6191	4518	6295	2849	1379	*	*	153
+       30	*	5597	*	*	942	1061	6950	0	1132	
+
+L 154  2334	3795	*	*	3079	*	6218	3449	*	2108	5381	*	*	*	*	6685	4440	2460	*	6279	154
+       0	*	*	*	*	*	0	6985	0	1197	
+
+I 155  4180	4994	5508	*	*	6070	*	782	6827	4008	6271	*	*	*	*	4490	6023	2724	*	*	155
+       20	6218	*	0	*	1453	656	6985	1005	1197	
+
+Q 156  5782	*	*	4887	*	5443	*	3785	*	4232	6300	*	*	993	*	*	4814	2008	*	*	156
+       0	*	*	*	*	*	0	6949	0	1098	
+
+T 157  3688	6780	*	*	*	*	*	5096	*	3959	703	*	*	*	*	*	2943	3726	*	*	157
+       0	*	*	*	*	0	*	6949	0	1098	
+
+T 158  *	*	*	*	2574	*	*	2235	6857	3553	5657	*	*	*	*	*	3748	1213	*	*	158
+       22	*	6029	*	*	*	*	6963	0	0	
+
+A 159  2182	2414	*	*	7319	6878	6452	*	*	5298	*	6671	2956	*	*	1541	4380	6635	*	*	159
+       0	*	*	*	*	0	*	6966	0	1032	
+
+E 160  *	*	*	45	*	*	*	*	*	*	*	*	*	6708	*	*	5541	*	*	*	160
+       14	*	6675	*	*	*	*	6963	0	0	
+
+A 161  241	5914	*	*	*	4467	*	*	*	*	*	*	*	*	*	4122	5896	5795	*	*	161
+       0	*	*	*	*	*	0	6955	0	1002	
+
+A 162  794	*	*	*	5795	*	6616	3728	*	3604	6239	*	*	5858	*	5316	3724	3236	*	*	162
+       0	*	*	*	*	*	0	6955	0	1002	
+
+R 163  *	*	*	*	*	*	*	*	6394	*	*	*	*	*	71	6070	5539	*	*	*	163
+       0	*	*	*	*	*	0	6955	0	1002	
+
+F 164  *	*	*	*	330	*	*	6111	*	3415	4915	*	*	*	*	6070	*	6341	*	4809	164
+       0	*	*	*	*	*	0	6955	0	1002	
+
+K 165  5020	*	6618	5775	5109	5180	5206	4336	1761	6707	*	6843	2713	5191	2064	5401	5106	5475	*	*	165
+       0	*	*	*	*	*	0	6959	0	1002	
+
+Y 166  4067	*	5502	6611	4132	*	7367	7263	4686	5076	6198	5499	2602	5458	5194	4140	5022	4088	*	1422	166
+       0	*	*	*	*	*	0	6959	0	1002	
+
+I 167  *	*	*	*	6198	*	4898	751	*	3237	5437	*	*	*	*	6147	*	2323	*	6017	167
+       43	5080	*	1573	591	*	0	6959	1138	1002	
+
+E 168  2954	6239	*	1415	4446	6611	*	*	5797	5431	*	5906	*	3418	2556	3584	*	*	*	5516	168
+       0	*	*	*	*	*	0	6959	0	1002	
+
+Q 169  5905	*	2641	3283	*	3238	*	6072	3463	5328	*	2738	*	3285	2765	7163	5047	*	6843	4708	169
+       0	*	*	*	*	*	0	6959	0	1002	
+
+Q 170  3369	*	6779	3399	5298	6008	3864	7201	3104	3143	5478	4507	6611	3812	2456	*	3974	5165	5686	6333	170
+       0	*	*	*	*	*	0	6959	0	1002	
+
+I 171  4199	*	*	*	3300	6017	*	2338	*	3036	3582	*	*	6566	*	*	*	1269	*	*	171
+       58	5373	6026	0	*	*	0	6959	1129	1002	
+
+Q 172  3095	6871	5585	4467	4855	5105	*	3600	4265	4155	*	4312	5934	4529	2701	2817	5828	3108	7395	6812	172
+       0	*	*	*	*	1570	593	6956	0	1137	
+
+E 173  3608	*	2881	3454	6219	3927	5014	4923	5495	7145	*	3401	6534	3642	3418	3554	3517	5691	*	4387	173
+       40	6201	6203	0	*	845	1173	6959	1028	1065	
+
+R 174  3217	*	4877	5179	6612	2206	5402	5518	4758	4942	6570	2573	*	6836	4778	2829	4118	4601	*	5286	174
+       176	6228	3305	0	*	763	1284	6921	1023	1076	
+
+A 175  6799	*	*	*	2204	*	5996	2553	5866	2351	3228	6814	6635	*	5172	*	*	5449	2333	*	175
+       278	2727	5383	1118	891	1123	886	6905	2295	1810	
+
+Y 176  3857	5508	2765	3327	5103	6047	6343	6765	5475	*	6077	3576	3900	7035	3748	2825	3782	6075	5262	3804	176
+       133	4129	5013	0	*	*	0	6867	1334	1746	
+
+R 177  4858	*	2671	3508	*	4070	*	*	3510	*	6515	3384	*	4315	3082	2945	3264	5588	*	4522	177
+       1342	753	6360	1580	588	1050	952	6854	4531	1928	
+
+D 178  3381	*	3290	4095	*	2712	6815	*	4577	4868	6924	3693	6675	4856	5894	2316	2960	6105	6053	*	178
+       53	4787	*	1201	823	689	1397	6834	1237	1678	
+
+E 179  4752	*	5884	6939	1627	4198	6499	4990	5003	3603	6230	*	5510	6007	5564	4794	4108	3423	5158	3104	179
+       127	5081	4200	2168	363	1026	975	6888	1302	1216	
+
+V 180  4475	*	5623	5339	*	*	*	5436	2569	3073	*	4493	6784	4561	2832	3840	2477	3525	*	5219	180
+       67	4461	*	3005	192	1663	548	6827	1213	1468	
+
+P 181  4014	*	*	4889	*	*	*	4459	6752	3886	4824	4852	873	5726	*	4552	4945	3792	*	*	181
+       107	4123	6169	2077	390	2173	362	6823	1380	1404	
+
+S 182  5140	*	1552	4909	*	3254	*	*	4463	*	*	2798	5386	4659	4406	3316	3437	*	*	*	182
+       164	4469	4003	501	1770	642	1477	6839	1405	1396	
+
+L 183  3229	5684	4652	3295	5528	3091	5710	5203	6586	3760	*	4666	2388	4384	5284	4759	5198	5716	5312	4310	183
+       45	6422	5704	0	*	184	3061	6792	1000	1527	
+
+A 184  2782	*	3275	4027	6169	4770	4391	*	2242	4526	5406	5881	*	5093	4993	3915	3766	5589	4921	4570	184
+       0	*	*	*	*	794	1240	6926	0	1160	
+
+T 185  3929	*	6339	6478	4767	*	4379	2872	*	3078	1601	5567	*	5232	6225	5456	4572	3115	*	*	185
+       34	6754	6184	0	*	0	*	6902	1000	1023	
+
+I 186  3820	6732	5152	*	*	*	6066	1978	4850	2050	*	5404	5971	6172	5348	6850	3711	2784	6091	5400	186
+       21	*	6109	*	*	0	*	6923	0	1034	
+
+S 187  3235	7156	2634	4204	*	4822	*	5829	3791	6679	*	4327	6657	6764	4272	1540	4104	*	6187	*	187
+       16	6521	*	0	*	*	0	6900	1000	1029	
+
+L 188  *	6156	6232	4302	4566	*	5879	6684	*	603	4922	6242	*	4539	6364	*	*	*	6087	3668	188
+       16	*	6519	*	*	*	0	6900	0	1029	
+
+E 189  *	*	*	1199	4809	6852	*	3872	5388	3701	*	*	*	2729	6130	*	4405	2849	*	*	189
+       51	4857	*	2124	376	0	*	6888	1156	1107	
+
+N 190  6213	*	4117	3915	*	*	5202	*	3453	3763	*	1590	6242	4265	3830	*	3585	3370	5461	*	190
+       39	5235	*	2178	360	*	*	6935	1113	0	
+
+S 191  4885	6534	4312	5397	*	4672	5058	6075	3409	*	*	1016	*	5981	6256	3169	4913	*	*	4819	191
+       0	*	*	*	*	*	*	6935	0	0	
+
+W 192  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	19	6242	192
+       0	*	*	*	*	*	*	6935	0	0	
+
+S 193  3808	*	2999	4897	*	1438	*	*	5205	*	*	6871	5029	4385	4375	2400	6254	6112	6385	6706	193
+       0	*	*	*	*	*	*	6935	0	0	
+
+G 194  3433	*	2678	6797	*	5724	7106	*	2863	4151	6589	5475	5465	3932	2723	3300	3287	4646	*	7393	194
+       0	*	*	*	*	*	*	6935	0	0	
+
+L 195  *	5791	*	*	5203	*	*	2129	*	1003	2663	*	*	6803	*	*	6374	4993	*	5898	195
+       0	*	*	*	*	*	*	6935	0	0	
+
+S 196  *	4153	*	*	*	*	*	*	*	*	*	*	*	*	*	133	4980	*	*	*	196
+       0	*	*	*	*	*	*	6867	0	0	
+
+K 197  3770	4337	3604	3321	4600	*	*	5917	3138	4635	5009	3994	*	4712	3006	4585	3096	6691	6527	4391	197
+       22	6050	*	2000	415	*	*	6858	1029	0	
+
+Q 198  1311	5096	6161	3575	5209	4725	*	*	6232	4892	4648	*	6859	2906	4992	6054	5373	4060	5316	5605	198
+       0	*	*	*	*	*	*	6858	0	0	
+
+I 199  5403	*	*	*	*	*	*	1144	*	2272	*	*	*	*	*	*	*	1878	4839	6686	199
+       43	5693	6623	1585	585	*	*	6851	1060	0	
+
+Q 200  *	*	*	5614	5114	6613	3804	*	3792	2301	*	6735	4657	1475	3327	*	6160	5671	6113	4742	200
+       1254	*	784	*	*	0	*	6780	0	1000	
+
+L 201  *	*	*	*	*	2482	*	2640	2852	3701	4333	2828	*	*	2408	*	*	4915	4917	*	201
+       448	4866	2103	0	*	*	0	5393	1023	3865	
+
+A 202  875	*	*	*	*	*	*	*	4389	*	*	*	*	*	*	1297	*	*	*	*	202
+       140	3431	*	1585	585	118	3671	4766	1119	4219	
+
+Q 203  4315	*	4435	3619	5834	4360	4013	*	2888	6447	*	3112	*	2503	3969	3793	3312	5738	*	*	203
+       17	*	6408	0	*	0	*	6113	1119	1429	
+
+G 204  2683	6235	4740	*	9108	3803	*	*	5043	4336	6047	5821	3507	4625	4248	1477	4773	5993	6073	*	204
+       213	3006	6289	1021	980	*	0	6329	1651	1000	
+
+N 205  5521	*	4091	5592	5332	3645	5670	*	2690	4767	*	2714	4971	4943	3818	5848	3099	3321	*	4040	205
+       286	4639	2838	1437	665	*	0	6287	1104	1076	
+
+N 206  4745	2914	3278	4675	*	3080	*	*	4695	*	*	1924	*	2640	6177	4774	*	6127	*	4564	206
+       150	3652	5724	1537	610	134	3490	6029	1656	1805	
+
+G 207  4507	*	4404	4476	*	805	*	*	5456	*	*	4844	5611	3381	*	4254	4533	*	*	5505	207
+       0	*	*	*	*	*	0	6266	0	1098	
+
+I 208  2554	*	5167	6538	*	6255	*	4464	2958	5146	6359	4822	3301	4906	4359	*	3067	2278	5712	*	208
+       43	6369	5863	1000	1000	*	0	6129	1000	1098	
+
+F 209  6208	*	*	*	625	5963	5877	2914	*	4674	5435	*	4872	*	*	*	5873	4652	5698	*	209
+       205	*	2916	*	*	1676	542	6101	0	1177	
+
+R 210  3144	*	5124	4339	*	5665	*	6499	5031	3928	*	3799	3073	3929	5247	2299	2352	*	*	*	210
+       0	*	*	*	*	347	2224	5910	0	1744	
+
+T 211  4191	*	5074	4598	5237	4868	6634	*	4152	5265	*	3676	1909	3935	4202	3949	2719	*	5425	5876	211
+       36	*	5348	*	*	*	0	6028	0	1104	
+
+P 212  3944	*	5051	*	*	*	*	6412	4354	4431	4500	6444	987	*	3481	3956	4340	4869	*	*	212
+       18	6365	*	2000	415	1247	789	5972	1000	1235	
+
+I 213  3543	*	5518	*	*	6156	*	2363	6255	2298	*	6046	5709	*	*	*	*	1261	*	5984	213
+       76	*	4277	*	*	858	1158	5940	0	1104	
+
+V 214  4129	*	3427	3243	5213	5214	*	6563	3567	5856	*	5060	*	2249	3778	4027	3227	3370	*	*	214
+       50	4888	*	1000	1000	*	0	5912	1089	1242	
+
+L 215  *	*	5396	*	4600	*	*	2916	*	458	*	5213	5577	*	*	6254	*	*	*	6188	215
+       24	*	5928	*	*	1980	422	5912	0	1242	
+
+V 216  4492	5901	*	6036	*	3321	*	2774	4408	4156	*	5952	*	1676	4010	4390	4197	4480	*	4804	216
+       47	*	4967	*	*	*	0	5679	0	1227	
+
+D 217  *	*	2380	*	*	5121	*	5798	4759	5474	*	2064	*	5751	3335	3585	2832	5819	5478	3625	217
+       27	5773	*	1000	1000	2529	275	5527	1000	1374	
+
+N 218  3225	*	4520	2430	*	5399	4988	4689	5924	4060	*	6001	3031	4325	4805	2642	4402	4409	*	6031	218
+       0	*	*	*	*	*	0	5547	0	1297	
+
+K 219  6134	*	2835	3407	*	2734	*	*	5029	*	5540	2018	5792	6385	5073	2662	3901	5839	*	*	219
+       49	*	4898	*	*	*	0	5547	0	1297	
+
+G 220  4963	4910	3527	5808	4055	1624	6000	*	5906	6078	*	2849	5425	4148	*	*	*	5631	*	2647	220
+       29	*	5665	0	*	556	1646	5453	1000	1380	
+
+N 221  5043	*	3546	2644	*	4956	6082	6078	3023	*	*	2960	5645	3141	4431	3295	3166	5809	*	*	221
+       47	*	4966	*	*	*	0	5595	0	1142	
+
+R 222  *	*	5814	4563	4279	*	*	*	3314	6031	*	5845	1774	5697	3772	5776	2385	3753	4795	4309	222
+       68	*	4450	0	*	*	0	5554	1047	1265	
+
+V 223  4622	*	*	5796	2966	5562	*	2484	5197	4462	3965	*	*	*	4866	*	4353	2846	2256	4465	223
+       26	*	5803	*	*	2014	410	5478	0	1419	
+
+Q 224  *	7960	5989	3778	6070	4433	5862	3428	3938	3016	*	3220	*	4507	4990	5019	3502	3360	4111	3473	224
+       0	*	*	*	*	911	1094	5498	0	1375	
+
+I 225  *	*	*	5790	4782	*	*	2803	5488	4413	4528	*	*	*	*	*	4947	698	*	4611	225
+       56	4710	*	0	*	1570	593	5657	1089	1137	
+
+T 226  3992	*	2741	5377	4668	5008	6114	*	4535	6057	*	2851	*	*	4716	3173	1925	*	4617	5108	226
+       133	6114	3767	1585	585	845	1173	5660	1012	1065	
+
+N 227  3996	*	4237	4931	*	5681	*	*	5105	*	5833	1649	*	3371	4365	3130	2271	*	*	*	227
+       104	3841	*	1459	652	233	2743	5640	1527	1341	
+
+V 228  3693	*	6011	*	4248	*	*	4930	*	5141	3742	*	*	*	*	5723	5972	548	*	*	228
+       137	*	3461	*	*	*	0	5619	0	1000	
+
+T 229  3030	*	3312	2608	*	4536	*	*	*	*	*	4202	5383	5832	3216	2133	3885	5222	*	4513	229
+       25	5867	*	365	2162	2973	197	5567	1420	1411	
+
+S 230  4925	*	2547	1589	*	5266	4593	5682	4243	4972	*	5367	*	3106	4695	3704	5826	5739	*	*	230
+       325	3861	2912	1105	902	2567	267	5564	1534	1350	
+
+K 231  1772	*	5244	*	*	5035	*	3994	5097	2063	*	5422	3228	*	*	5108	*	2643	*	*	231
+       0	*	*	*	*	*	0	4775	0	1633	
+
+V 232  3078	*	*	*	*	*	*	2694	3349	3553	*	*	*	4725	3112	*	4396	1674	*	5093	232
+       0	*	*	*	*	0	*	4775	0	1633	
+
+V 233  3206	*	*	*	*	*	*	5342	4829	3722	*	5376	2395	3887	3925	4348	3713	1821	*	*	233
+       174	*	3141	*	*	*	*	4992	0	0	
+
+T 234  2496	*	4837	*	5075	5454	*	5468	2634	4253	5288	4224	*	3626	4115	4172	2780	5018	*	4341	234
+       86	4940	5292	1503	628	0	*	4759	1349	1279	
+
+S 235  4560	5157	*	*	*	3216	*	2330	5259	1828	4103	5144	4466	5603	*	3698	*	3541	*	*	235
+       0	*	*	0	*	*	0	4757	1000	1000	
+
+N 236  1302	*	*	*	*	2087	*	5245	3812	5009	*	3044	*	*	*	3903	*	4560	*	*	236
+       0	*	*	*	*	0	*	4757	0	1000	
+
+I 237  5270	*	*	*	4879	*	*	1283	*	1492	3317	*	*	*	*	*	*	3765	*	*	237
+       0	*	*	*	*	*	*	4759	0	0	
+
+Q 238  3008	*	*	*	*	3265	*	5230	4342	1676	1720	*	*	3658	*	*	*	*	*	*	238
+       0	*	*	*	*	*	*	4671	0	0	
+
+L 239  *	*	*	*	*	*	*	4708	4232	280	*	*	*	*	*	*	*	3558	*	*	239
+       0	*	*	*	*	*	*	4610	0	0	
+
+L 240  *	*	*	*	1348	5392	5229	*	*	1590	4545	*	*	*	*	*	*	*	*	2461	240
+       50	4873	*	2322	322	*	*	4671	1004	0	
+
+L 241  5072	*	*	4873	3961	4405	*	5512	4772	1653	5392	*	*	4853	3482	*	*	1869	5230	*	241
+       0	*	*	*	*	*	*	4671	0	0	
+
+N 242  4414	1239	5228	4551	*	*	*	*	*	*	*	2999	5230	4604	2909	7016	5392	*	*	3287	242
+       369	4331	2508	0	*	*	*	4671	1013	0	
+
+T 243  3582	*	*	*	4949	*	*	5131	2513	4423	4605	3198	*	4798	3220	3675	3090	3212	*	4763	243
+       278	2513	*	966	1035	320	2331	4380	1509	1366	
+
+R 244  4125	*	3718	*	*	3671	5078	5072	4693	4819	*	4641	1789	*	3243	3241	3916	*	*	4392	244
+       227	2780	*	3322	152	0	*	4234	1000	1012	
+
+N 245  1631	1742	*	*	*	*	*	*	*	*	*	2120	*	*	2754	*	*	*	*	*	245
+       0	*	*	*	*	*	*	2649	0	0	
+
+I 246  *	*	*	*	*	*	*	1908	*	*	*	*	*	*	*	1178	3083	2527	*	*	246
+       0	*	*	0	*	*	*	2422	0	0	
+
+//
+�HHsearch 1.5
+NAME  094af3c04fcdf9bf04bb55a97a19581b
+FAM   
+FILE  094af3c04fcdf9bf04bb55a97a19581b
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:18:37 2013
+LENG  56 match states, 56 columns in multiple alignment
+FILT  164 out of 1036 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  6.5 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCCCCCCCCCCCCCCCCCCEECCHHHHHHHHHCCCCCEEEEECCCC
+>ss_conf PSIPRED confidence values
+97413458878878888887871676995832898999998455997588753679
+>Consensus
+xxxxxxxCxxxxxxxCxxxxxPVCGsdgxTYxNxCxlcxxxcxxxxxixixxxGxC
+>094af3c04fcdf9bf04bb55a97a19581b
+LAAVSVDCSEYPKDACTLEYRPLCGSDNKTYGNKCNFCNAVVESNGTLTLSHFGKC
+>gi|125986399|ref|XP_001356963.1| GA16452 [Drosophila pseudoobscura pseudoobscura]gi|54645289|gb|EAL34029.1| GA16452 [Drosophila pseudoobscura pseudoobscura]
+-----IQADddlsaekdgqtlRKFCP-CPRNYDPVCASNMVTYPNRCEYdCvRREaERRGRNLGFLRSGQC
+>gi|118360802|ref|XP_001013632.1| hypothetical protein TTHERM_00829290 [Tetrahymena thermophila]gi|89295399|gb|EAR93387.1| hypothetical protein TTHERM_00829290 [Tetrahymena thermophila SB210]
+-----GKCEDYHPEAnfcspaenrvenCTNDVDISCAYFnknikcfvppcTIQIENRCQACV-----------------
+>gi|149029561|gb|EDL84759.1| Kazal type serine protease inhibitor 5-like 2 [Rattus norvegicus]
+-----VKLSWFNKTvdPCPGLKQPICGTNFVTYDNPCILCVESF-LGDRLDITTLEDF
+>gi|118371371|ref|XP_001018885.1| hypothetical protein TTHERM_00463880 [Tetrahymena thermophila]gi|89300652|gb|EAR98640.1| hypothetical protein TTHERM_00463880 [Tetrahymena thermophila SB210]
+---QTFLCEENDRSankLCTDIFEPVCGIKqpnlqggkpiRATFSSHCNACK-----DSSVVFVAQGAC
+>gi|148678060|gb|EDL10007.1| mCG127182 [Mus musculus]
+-DPAKLNCESFKQrrkdgdFICPSDTSSVCGTDGKTYRSRCELCAENAKSQNHVDVKSEGEC
+>gi|189235796|ref|XP_970472.2| PREDICTED: similar to Mahya [Tribolium castaneum]
+--------------QCAVHRRLVCGSDGHVYPNHCELHRASCMTATDITVERGVH-
+>gi|296226165|ref|XP_002758813.1| PREDICTED: follistatin-related protein 1-like [Callithrix jacchus]
+--------------SQRKESPPVSASS------------NACLTGSKIQVDYDGHC
+>gi|327279944|ref|XP_003224715.1| PREDICTED: insulin-like growth factor-binding protein 7-like [Anolis carolinensis]
+---------------------------SLSTPTSVIAANIALLqhdlGTICLTMKLKPVI
+>gi|195453090|ref|XP_002073634.1| GK13027 [Drosophila willistoni]gi|194169719|gb|EDW84620.1| GK13027 [Drosophila willistoni]
+-----GSCRHCDAP-CPNIYSPICANRngiNYTIINKCYLERVRCKDPNsSWKIIKDSEC
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+L 1    *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1000	0	0	
+
+A 2    1121	*	2462	2363	*	*	*	*	*	*	*	*	*	*	*	*	2605	*	*	*	2
+       0	*	*	*	*	*	*	2523	0	0	
+
+A 3    2713	*	*	*	*	*	*	2999	*	3153	*	*	1700	*	*	2736	2718	*	*	*	3
+       0	*	*	*	*	*	*	3119	0	0	
+
+V 4    1822	*	*	*	*	4811	*	2974	*	4594	*	*	*	2001	3364	4800	*	2943	*	*	4
+       0	*	*	*	*	*	*	4824	0	0	
+
+S 5    4922	*	*	2123	*	5212	*	*	2631	5038	3418	2858	*	3695	5033	3396	3568	*	*	*	5
+       0	*	*	*	*	*	*	5306	0	0	
+
+V 6    3823	*	6018	5452	5689	2421	*	2702	*	4077	*	5425	2465	*	*	*	4576	2148	*	*	6
+       0	*	*	*	*	*	*	6136	0	0	
+
+D 7    4849	*	2665	3197	*	*	*	4886	2319	5806	*	2713	3895	4026	3948	3961	6349	5377	*	*	7
+       104	3852	*	582	1591	*	*	6182	1189	0	
+
+C 8    5949	266	*	*	*	*	*	*	5934	4805	*	*	*	5921	*	*	3965	5672	*	*	8
+       13	*	6788	*	*	*	*	6180	0	0	
+
+S 9    4322	5666	4238	2123	*	5048	*	*	3515	*	*	4870	3597	3666	4602	2277	3791	6088	*	*	9
+       268	3465	3663	2387	306	0	*	6195	1282	1000	
+
+E 10   4340	6187	4026	2118	*	6230	3837	5097	2813	*	4324	5985	4112	4683	5278	3771	4546	5142	4113	*	10
+       29	*	5646	*	*	2186	358	5820	0	1169	
+
+Y 11   5316	2890	4805	6214	3000	*	6172	*	4538	6242	4060	4437	4338	*	5212	4985	*	5876	*	1456	11
+       0	*	*	*	*	2012	411	5781	0	1177	
+
+P 12   5781	5347	3735	4267	6420	4401	*	4752	3483	5544	6329	3152	2037	4710	3132	5645	6202	5109	*	4653	12
+       192	3003	*	1075	929	*	0	5818	1306	1120	
+
+K 13   3899	4160	4609	4363	4691	3842	*	5026	2926	4660	*	4671	3892	4604	3224	3340	5120	3717	5731	*	13
+       211	3146	5451	2536	273	*	0	5761	1419	1120	
+
+D 14   4719	*	4572	2627	4578	5660	6238	6029	3849	5426	5883	4391	2833	3428	4816	4226	3735	3942	*	4372	14
+       667	2536	2337	1612	572	0	*	5631	1852	1207	
+
+A 15   2451	5015	6022	5577	5399	3453	5768	3983	4265	4152	5416	5935	3587	4879	4951	3745	4295	3143	*	5880	15
+       147	3371	*	2993	194	0	*	6686	1448	1752	
+
+C 16   6114	204	6828	*	*	*	6777	6313	*	*	*	5356	*	5680	*	5785	*	5326	*	*	16
+       68	4711	7037	887	1123	*	*	6585	1150	0	
+
+T 17   4367	*	4683	5247	*	4382	7686	5345	4736	5200	6298	5586	1753	5402	4810	3360	2010	*	*	6776	17
+       49	5098	7901	1650	553	0	*	6596	1128	1000	
+
+L 18   4966	5381	3848	3657	4912	4498	*	4811	3062	5039	3323	3648	4960	4853	3165	4353	3960	5816	*	4530	18
+       66	4481	*	1198	826	*	0	6619	1211	1047	
+
+E 19   4939	*	3929	2356	5432	6916	4221	3025	5886	3720	5672	3364	6681	3976	4978	4101	4582	3928	*	5781	19
+       83	4153	*	619	1519	*	0	6986	1265	1047	
+
+Y 20   5281	*	4184	4558	3239	6078	5743	6233	5216	3461	7499	5581	6084	4858	4202	3983	5489	6031	5125	1527	20
+       16	6524	*	1130	881	605	1545	6986	1078	1047	
+
+R 21   3017	*	2813	3734	6368	5675	5444	7590	2984	4953	6165	3520	5391	3964	4025	3001	5084	5568	*	6106	21
+       0	*	*	*	*	0	*	7108	0	1000	
+
+P 22   4337	*	*	5826	*	*	5789	6603	6812	4830	6162	*	464	5420	6291	4950	6755	5721	7447	5701	22
+       0	*	*	*	*	*	*	7109	0	0	
+
+L 23   5727	*	*	*	5787	*	*	2734	6596	3660	*	*	*	5506	5384	6735	6838	601	*	*	23
+       0	*	*	*	*	*	*	7109	0	0	
+
+C 24   *	43	*	*	*	*	*	*	*	*	*	*	*	*	*	6041	*	*	*	6172	24
+       0	*	*	*	*	*	*	7109	0	0	
+
+G 25   2275	6163	4908	6296	*	500	*	*	*	*	*	*	*	*	*	5255	*	*	*	*	25
+       29	5670	*	282	2494	*	*	7109	1073	0	
+
+S 26   4937	7188	5660	4628	*	5892	6832	4262	4993	*	7188	4321	5488	5772	*	1403	2006	5631	5506	5365	26
+       72	4370	*	1859	465	*	*	7109	1405	0	
+
+D 27   5342	*	981	6223	4434	7290	*	*	5244	6223	*	2171	7269	6341	5610	4141	5354	6848	*	6415	27
+       259	2746	6041	2975	196	*	*	7109	2116	0	
+
+N 28   4994	*	5961	6723	6357	1001	5858	*	4467	5007	6394	2703	5843	6125	5027	4271	6559	5697	*	5155	28
+       7	7740	*	1585	585	*	0	7157	1000	1065	
+
+K 29   6143	6905	*	4496	7438	6726	4897	2967	2379	4173	6187	4536	*	4412	2865	4752	5801	2341	*	6022	29
+       12	6897	*	2807	222	*	0	7157	1000	1065	
+
+T 30   *	*	5030	5015	6174	*	*	6465	*	5161	6287	3792	*	5561	*	3145	656	5379	7030	*	30
+       21	6126	*	759	1290	*	0	7156	1031	1065	
+
+Y 31   *	*	*	6589	3130	6115	5737	6600	*	*	*	*	*	*	*	5565	6193	6423	*	348	31
+       0	*	*	*	*	*	0	7156	0	1065	
+
+G 32   3216	6905	3341	3847	4494	3355	7148	5044	5152	7408	6950	4591	3406	4649	3681	2925	4503	6807	5760	4739	32
+       29	*	5675	*	*	*	0	7156	0	1065	
+
+N 33   *	6588	4707	*	*	6103	5806	*	*	*	*	536	*	6481	*	2555	4391	*	*	*	33
+       0	*	*	0	*	1028	972	7196	1060	1176	
+
+K 34   3444	*	6156	1942	5281	4950	4529	5104	3858	4406	7383	6589	3187	4700	3284	4773	6185	4526	6855	5824	34
+       0	*	*	*	*	*	0	7156	0	1065	
+
+C 35   6733	142	*	*	6752	6512	*	*	*	*	*	*	*	6785	6061	7057	5740	6193	*	*	35
+       29	*	5675	*	*	*	0	7156	0	1065	
+
+N 36   4353	*	5616	3010	4448	5772	3084	3624	4622	3145	4116	5324	6588	4166	4841	3936	4856	4157	*	4315	36
+       15	6588	*	468	1852	1028	972	7196	1130	1176	
+
+F 37   2585	*	*	*	2886	5117	4758	5545	*	1153	3481	*	*	*	*	*	6115	4459	*	6407	37
+       271	2729	5635	0	*	*	0	7156	2014	1065	
+
+C 38   4521	1198	4975	3969	6643	7044	4064	6607	3784	6012	7486	4783	*	4557	3109	7455	5039	6269	*	*	38
+       37	5849	6993	513	1740	1374	704	7150	1160	1241	
+
+N 39   2729	5272	5205	4136	5100	7487	6986	4322	3913	3966	4889	3888	*	4061	3324	3282	3559	4107	*	6709	39
+       79	*	4227	*	*	1389	694	7155	0	1251	
+
+A 40   1947	*	3762	2426	5291	4557	4413	6012	4414	5380	6247	4991	*	4679	4523	5379	4913	4973	7155	4152	40
+       41	5798	6687	0	*	3881	101	7271	1120	1743	
+
+V 41   2107	*	7215	4043	*	5440	6741	3847	3747	5813	5452	2489	*	4941	3717	3100	4466	5532	*	6225	41
+       83	4165	*	327	2304	2692	243	7281	1407	1777	
+
+V 42   4252	1069	*	4786	6874	6328	6166	4540	4886	3201	4735	6297	*	5025	4806	5239	6291	5019	5613	7152	42
+       103	4449	5431	1427	671	4104	86	7286	1241	1654	
+
+E 43   4985	5620	4979	2870	7520	5699	*	6061	2549	2840	5476	3816	5437	4599	2742	4609	4909	5074	6601	6984	43
+       179	3968	4248	1727	519	2626	255	7117	1348	1781	
+
+S 44   4147	*	4755	4650	6062	4104	6727	5597	3463	4514	6588	3261	5729	3357	4138	2729	2989	5257	*	4714	44
+       92	4484	5867	1327	734	487	1804	6832	1178	1980	
+
+N 45   5674	*	3585	3689	*	1984	5760	5289	3560	7564	*	3418	4232	3202	3567	5335	4237	*	*	6054	45
+       36	5934	6906	1285	762	680	1411	6923	1044	1367	
+
+G 46   5186	6554	4766	3743	6871	3674	5147	4215	3261	7016	5899	4879	4306	4024	3095	2938	3349	4694	*	5484	46
+       46	5003	*	0	*	374	2131	6878	1169	1213	
+
+T 47   4878	5435	3815	3624	*	4772	4789	7240	2889	6735	6225	2993	4772	3614	3763	3014	3452	6394	*	6804	47
+       68	4444	*	544	1671	0	*	6922	1220	1009	
+
+L 48   5954	*	*	*	4370	*	*	1495	*	1762	5940	6690	*	*	*	6226	5540	2540	5011	5497	48
+       43	6492	5798	1000	1000	*	*	6927	1011	0	
+
+T 49   4753	*	3575	2953	6308	5128	4867	5194	3901	4289	7405	5275	6504	3409	3463	3562	2754	4244	*	5992	49
+       0	*	*	0	*	0	*	6947	1060	1060	
+
+L 50   5467	6677	*	5920	3322	*	6638	1791	3450	3456	3768	6226	6641	5615	*	*	6229	2262	*	5040	50
+       14	6718	*	0	*	*	*	6927	1000	0	
+
+S 51   2997	*	4098	5052	5620	7062	*	4208	2486	3448	4778	6064	*	5249	4253	5012	3919	2721	*	4177	51
+       0	*	*	*	*	*	*	6927	0	0	
+
+H 52   4465	6141	4750	*	7232	5017	1636	7051	3244	5437	6726	5400	7070	4794	4064	3119	6121	5304	*	3100	52
+       0	*	*	*	*	*	*	6905	0	0	
+
+F 53   5779	*	2578	3038	5176	7503	4732	4843	3307	3754	5125	3878	6190	4965	3709	3769	5391	5635	5071	4448	53
+       0	*	*	*	*	*	*	6905	0	0	
+
+G 54   7172	*	7311	4419	*	388	6625	*	5547	6911	*	5920	5059	*	6752	3939	7263	*	6894	*	54
+       0	*	*	*	*	*	*	6905	0	0	
+
+K 55   3447	*	4617	2558	6420	*	4705	5144	3265	5702	6061	4620	2455	*	3232	4348	4999	4108	*	6219	55
+       8	7578	*	1585	585	*	*	6905	1000	0	
+
+C 56   *	84	*	*	6061	*	*	5407	*	*	*	*	*	*	*	*	*	*	*	5779	56
+       0	*	*	0	*	*	*	6854	0	0	
+
+//
+�HHsearch 1.5
+NAME  09ce670d46e49ba58915a7017daeb51d
+FAM   
+FILE  09ce670d46e49ba58915a7017daeb51d
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:38:49 2013
+LENG  242 match states, 242 columns in multiple alignment
+FILT  141 out of 795 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  7.2 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCEEEEECCCCCCCCCEEEECCEEECCCCEEEECCCCCCCCCCEEEEEECCCEEEECCCCCCCCEEEEEEEEEEECCCCCCCCCEEEEEECCCCCCC
+CCCCCCCCCCCCCCCCCCCCCEEEEEEECCCCCCCCCCCCCCCEEEEECCCCCEEEEECCCCCCCCEEEEEEEEECCCCEEEEEEECCCCCCCEEEEEEE
+CHHHHCCCCEEEEEEEECCCCCCCEEEEEEEEEEEEECCCCC
+>ss_conf PSIPRED confidence values
+9764358980899988888799165087449808802588865474489986898685648998721279999999860799888846999925888787
+5677772343366777776768999985544776556899998587853883121232146679988999999948987999999518999733899974
+379938874799999741898763026999999998720379
+>Consensus
+xxxxxxsfxfxxFxxxxxxlxlxGxAxixxxxxlxLTxxxxxxxxxxGxvxyxxpvxlxxxxxxxxxsFstxFxFxIxxxxxxxgDGlAFxlxpxxxxxx
+xxxxGxxlGlxxxxxxxxxxxxxAVEFDTxxNxxxxxxDpxxnHigixxnsxxsxxxxxxxlxxgxxxxvxIxYdxxxxxLxVxlxxxxxxxxxxlxxxi
+dLxxxlxxxxyvGFSAsTGxxxxxxxhxIxsWsFxxxlxxxx
+>09ce670d46e49ba58915a7017daeb51d
+NLSDDLSFNFDKFVPNQKNIIFQGDASVSTTGVLQVTKVSKPTTTSIGRALYAAPIQIWDSITGKVASFATSFSFVVKADKSDGVDGLAFFLAPANSQIP
+SGSSAGMFGLFSSSDSKSSNQIIAVEFDTYFGKAYNPWDPDFKHIGIDVNSIKSIKTVKWDWRNGEVADVVITYRAPTKSLTVCLSYPSDGTSNIITASV
+DLKAILPEWVSVGFSGGVGNAAEFETHDVLSWYFTSNLEANN
+>gi|255579110|ref|XP_002530403.1| carbohydrate binding protein, putative [Ricinus communis]gi|223530052|gb|EEF31973.1| carbohydrate binding protein, putative [Ricinus communis]
+---PIYTLSLETLiTSNrnfDPQTVLLGNATISGNGsSVQLT---TPNASSSGLLLYKNPFRLHSSTPSKPMSFSTEFEFSFTGN---LI-GLSLVMGPF
+NFVSnFM---G--QGAVDS---VNKKGYLGIEFGYSRDGN------DGNSTKILV--LIRVNNEPLGhvwTERGQRMKAWIDYDASSKRIEIRINELNGK
+RPYdpFAAYALDLSKMWSDnEAFVVLGSNDgG--NPSGTCNVYSWRFRL------
+>gi|326492602|dbj|BAJ90157.1| predicted protein [Hordeum vulgare subsp. vulgare]
+-----WQFVLNGF--AGANLTLGGTSMVLPNGLLMLTN-GA-TRKMKGHAFHPSPLPFGSgsNGAGPLRSFSTTFVLAIFghGRHAdLSVRGLSFLISAS
+WEVLSTALSGQPLGLSN----gNQNASIFAMEFDTLYNAQF--SDTKNKYVGVDGDSLVSLNSASIGNyddgtgrllnlsvISWKAIQVWVDYDSKATVI
+TMTMAPLGvvRPKQPMLQTTIDLSGVVQSTAYVGFSSAMS--NITSGHFILGWSFA-------
+>gi|281211734|gb|EFA85896.1| hypothetical protein PPL_01128 [Polysphondylium pallidum PN500]
+-------YNYELL--TRSKLNLIGNCKILS-DRIELTPR---QNDQVGAFWVKDKLKVTD-----------GFVVRIKFINEmGGADGMAFVLHNHSADV
+IG-KRGSGLGY------DGIENSLAVEFDSYSSVDSC-ADPNGNHISIHCNGERKNSSHhqhSlahampVdnvPINDGRIHHAAITYNANSKTMSVWYDS
+FN----ILTDVSVDLDTLLdlPnGEAWIGMTASTG--GLCQSHHILSFEFG-------
+>gi|308081648|ref|NP_001183315.1| hypothetical protein LOC100501716 [Zea mays]gi|238010732|gb|ACR36401.1| unknown [Zea mays]
+---HVDSFSYPTFDATtTQDLVAATNTSILTSASLLFGHDAdFNFNRTEGFILLSRTVDVWRAGPGggpaREASFNTSFALSGAA-------PVAYVVLR
+DSY-PPLHGTGGLRGFANYSasdaEDgatprNASSGLASVEVGPVRS-----YGPDDPAVGLNVTVT-PTGG---TAPGG--GgggggarAVWIEYDAAK
+HRLSVYVAAAGepRPAAALLDARLGLAGrRTTETAMVGFFASAI--Q-DVLVGVRDWNLTV------
+>gi|300175631|emb|CBK20942.2| unnamed protein product [Blastocystis hominis]
+------------------rNWQCTGDGIVN-EYFVRLTPD---RQSKNGV--------LWADNTFNKGEFVTTIKFRISGQGSsLFGDGFAVFFTKHRS-
+PIP---GKMYSLTDV------YYGFAVVFSTFRNTEFSRYhrDIaiylgdgysnaftqDKDHTGCYAR-Y-RFHEKRQDFSVDNYAVVKIGYSESTGLVR
+VAIDEKNTGK-FTTCFTEAthFEPGWWREATIGISATTG--QLADNHDILSVETVE------
+>gi|134109915|ref|XP_776343.1| hypothetical protein CNBC5610 [Cryptococcus neoformans var. neoformans B-3501A]gi|50259017|gb|EAL21696.1| hypothetical protein CNBC5610 [Cryptococcus neoformans var. neoformans B-3501A]
+----------------NQALVTFGDAHWDG-STIVLTTG----NSQTSAVFHPHPIDQSD-------TFSCTVTFRLTSPPGaGEADGISIIFVPKKA-L
+GLGGyGLGYSGLGGK-------GDFAVEVDTYRTQDYA-DDPPTPHISVHsppdahhRNSIGCTAPGTLpKLSNGKEHKLQILYRGEDRRVRGYLTISSE
+gSvKdeTDIEVFDIVVPSGnEQKPWFIGVTGSCG--GLWQKQEIIDWSLQL------
+>gi|257875308|ref|ZP_05654961.1| predicted protein [Enterococcus casseliflavus EC20]gi|257809474|gb|EEV38294.1| predicted protein [Enterococcus casseliflavus EC20]
+------------------------------------------TSSVSGGVWFNKAVSFT-------RSFRLEMAFCIENT-ATDSDGLAFVMQSSGLNAL
+AQQAGPTIGVWSNTGGtNplntgAIPQSFAIEFDTFYNSGslgvhgAMDRDaPNSHHIAWNFPGSnDAYTTEGWlptykvvnhkdlvavsDISDSQWHTF
+TVTFDQPNQTLHYSVPDFGvDvtvPVDDTFKTNLNLTN--NAPVYFGFTGANG--GNVQ-----------------
+>gi|224088190|ref|XP_002308362.1| predicted protein [Populus trichocarpa]gi|222854338|gb|EEE91885.1| predicted protein [Populus trichocarpa]
+----GHSFRYPTFHEdSQTDFISHNSAIVL--NAIQATPNvkGDSIAIFSGCALYRKQFKLWAGKGRVRATLNSTFVLGISPQTKPGGEGITFILTADS-
+GLPE------------------------------------------------------------------------------------------------
+---------------------------------------------
+>gi|323347643|gb|EGA81908.1| Uip5p [Saccharomyces cerevisiae Lalvin QA23]
+--------------------HVGGATQIRNIQSIKLTQDRD--QDKHGLV-------LSNGIgDNTINDFEIVFTFRISHDPtTqLTGDGMCFAITPENG
+FLTQNlqsSYakKQYMmnsqGVIADNTDlmgFPKNlPGLFIVLDTYRNQGhdhkevpFMdvfiNVAPESDWYDINSDGELSTSLrlnsRghiKLkkNALW
+NRVTKLRIIYLESISFLKIDVQYAKE-GNYWIElFQTTENLYLPKnmhtgQRYIGCSALNG--QLTETVELLD-----------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+N 1    *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1477	0	0	
+
+L 2    2757	*	4549	*	4371	*	4483	*	*	3333	*	*	*	4508	4389	1217	4473	4318	*	*	2
+       0	*	*	*	*	*	*	4482	0	0	
+
+S 3    1133	*	4161	4967	*	4250	*	4822	*	3513	5121	*	5488	4293	*	3918	3965	4372	*	*	3
+       162	3647	5260	1040	961	*	*	5309	1137	0	
+
+D 4    4530	*	3016	2797	4618	3832	5207	*	4558	5392	*	4695	4228	3851	5869	2241	3395	*	*	*	4
+       37	5287	*	1000	1000	*	0	5819	1001	1000	
+
+D 5    3147	4687	3635	4636	*	3924	5711	4269	5836	*	*	3806	2871	5353	*	2641	3394	3555	*	*	5
+       24	5899	*	1585	585	0	*	5999	1000	1000	
+
+L 6    5012	*	3535	4882	3913	5704	7024	3650	*	2148	*	4754	5707	*	*	4607	2830	2612	*	4354	6
+       0	*	*	*	*	*	*	6253	0	0	
+
+S 7    6197	*	4115	4499	*	5146	4455	*	3755	*	*	3969	*	4134	*	954	3945	5878	*	5829	7
+       20	6179	*	0	*	*	*	6298	1000	0	
+
+F 8    6273	*	*	*	480	*	4836	4156	*	4058	*	*	*	5961	*	*	*	*	*	3283	8
+       0	*	*	*	*	*	*	6341	0	0	
+
+N 9    5738	*	3547	5176	*	*	*	4367	6397	4491	*	2014	*	5009	5486	1760	3553	3611	*	*	9
+       0	*	*	*	*	*	*	6341	0	0	
+
+F 10   *	5361	*	*	862	*	6056	4324	*	3663	*	*	*	*	6115	*	*	*	*	1905	10
+       0	*	*	*	*	*	*	6367	0	0	
+
+D 11   6115	*	2719	4313	*	5181	*	*	*	*	*	2309	2113	5834	*	2459	3016	*	*	*	11
+       145	4760	4090	1585	585	*	*	6367	1126	0	
+
+K 12   *	5528	4359	4890	4258	2310	*	*	4111	5829	*	3270	5908	6332	*	1576	4045	4732	*	*	12
+       0	*	*	*	*	0	*	6351	0	1198	
+
+F 13   *	*	*	6155	250	*	*	*	*	4282	*	*	6010	*	*	5655	5179	*	*	5013	13
+       646	5728	1548	0	*	*	*	6386	1021	0	
+
+V 14   3985	*	3501	4814	*	3741	5983	5687	5516	*	*	3131	3874	5730	4369	2403	2636	4061	5529	*	14
+       275	5698	2696	0	*	*	0	5821	1000	2520	
+
+P 15   2745	*	5383	3061	*	3354	*	5180	4139	*	5460	3662	2525	5524	*	2972	4282	4355	*	*	15
+       229	2766	*	1056	946	100	3907	5581	1362	2883	
+
+N 16   4155	6120	3059	4529	*	3640	6142	6124	4443	3897	*	2405	8281	*	*	2375	2770	*	*	6281	16
+       196	2978	*	1014	986	*	0	6571	1640	1070	
+
+Q 17   3427	*	3428	3804	6034	3971	6728	6469	6509	3651	*	3414	4338	3207	6186	2399	3557	*	*	6354	17
+       333	2703	4249	1505	627	*	0	6682	1792	1070	
+
+K 18   3529	6661	3633	3903	5974	3046	6496	*	4531	6614	*	4059	3255	5200	3725	2163	4260	*	*	6447	18
+       78	4244	*	0	*	565	1627	7111	1431	1368	
+
+N 19   4114	*	2773	5524	6824	3738	4792	4743	5107	5491	*	2134	6473	3710	5512	2916	3511	6937	*	*	19
+       54	4774	*	1128	882	0	*	7276	1202	1070	
+
+I 20   *	*	*	*	3089	6246	*	3297	*	1102	5257	5785	5835	*	*	6741	6437	3842	3077	5022	20
+       0	*	*	*	*	*	*	7330	0	0	
+
+I 21   3361	6531	3643	4672	6753	*	4605	2870	4898	3957	*	5270	6138	4801	4700	3333	2814	3322	5530	6666	21
+       11	*	6985	*	*	*	*	7364	0	0	
+
+F 22   4253	4964	*	*	2773	*	6496	4314	6839	1106	*	*	5844	*	*	5531	4465	3753	*	3719	22
+       0	*	*	*	*	0	*	7376	0	1000	
+
+Q 23   4854	*	4240	3855	4734	3210	5134	5262	5888	3012	5794	2928	6638	2655	*	4099	4206	5008	*	4622	23
+       47	5876	6025	631	1497	*	*	7395	1053	0	
+
+G 24   *	*	5778	5633	*	284	*	*	6785	6844	*	4728	6725	*	5811	5688	5277	*	*	6325	24
+       0	*	*	*	*	0	*	7452	0	1060	
+
+D 25   3382	*	1496	4015	6549	4553	6936	8725	*	*	7031	2566	5253	7014	6833	2594	5591	5790	*	*	25
+       10	*	7174	*	*	*	*	7441	0	0	
+
+A 26   598	5782	7211	6874	*	5500	*	*	*	*	*	*	6352	*	6708	2970	3202	5272	*	*	26
+       0	*	*	*	*	0	*	7450	0	1000	
+
+S 27   3536	*	5047	5290	4415	5227	4782	4880	3974	4847	5537	5425	*	4489	4060	2670	2509	3739	*	4091	27
+       13	*	6798	*	*	*	*	7441	0	0	
+
+V 28   4547	5566	6902	6707	4593	7349	*	2017	5694	2530	6520	*	5750	5932	5383	6128	5697	1948	4813	4919	28
+       95	5396	4651	2271	335	0	*	7459	1118	1000	
+
+S 29   4358	5728	3450	5693	6819	3608	7036	5168	6479	3226	4563	3397	5225	6604	4294	2795	3287	3763	*	4976	29
+       443	4879	2119	1250	787	1082	922	7445	1192	1251	
+
+T 30   3541	6000	3188	4067	6582	3693	*	*	6338	5297	6043	3680	3494	5442	3658	2486	3290	5201	*	6438	30
+       397	4099	2455	1299	753	251	2646	7257	1287	2763	
+
+T 31   5114	6556	2388	4608	*	2983	6602	6004	3774	5457	*	1934	5409	6393	4201	3424	6541	6169	*	6520	31
+       114	3906	6703	1565	595	265	2577	7276	1358	2274	
+
+G 32   4596	*	3511	*	*	1441	4884	*	6671	*	5807	2987	6834	5572	3689	2997	4252	6786	*	5590	32
+       261	3282	3992	431	1952	2284	332	7434	1717	1227	
+
+V 33   3152	4413	6910	4878	3944	5500	*	3582	4595	4075	6800	5549	6754	5212	3441	2552	4047	3844	5775	4338	33
+       30	6975	6297	0	*	398	2054	7405	1000	1623	
+
+L 34   5127	*	*	*	4942	6837	*	1646	*	1212	5836	6684	*	*	*	*	7074	2880	*	6894	34
+       0	*	*	*	*	349	2219	7511	0	1236	
+
+Q 35   5424	6565	5894	4334	*	5447	6650	5030	4731	4291	5856	4614	*	2367	1827	4119	4241	3403	*	6844	35
+       22	7083	7067	3000	193	*	0	7534	1002	1000	
+
+V 36   6022	*	*	*	4872	*	*	3379	*	375	5298	*	*	*	*	*	6459	4432	*	*	36
+       36	5906	6920	1403	685	1617	569	7545	1141	1131	
+
+T 37   4153	6599	6435	*	6718	5321	*	6598	*	*	*	4104	5734	*	*	4277	436	6701	*	*	37
+       55	*	4739	*	*	515	1736	7529	0	1131	
+
+K 38   4634	6881	3882	4202	*	4086	5526	5779	3952	4874	*	2707	2260	3863	4250	3718	3975	6837	*	*	38
+       46	*	4993	*	*	2658	249	7482	0	1312	
+
+V 39   3424	*	1800	4769	*	3812	*	5719	4794	*	*	3312	5146	6887	4982	2922	4532	3610	6381	5737	39
+       2336	2228	765	1113	895	3128	175	7452	2565	1504	
+
+S 40   3701	*	3149	3992	*	1921	5658	4547	5381	*	*	3270	5559	5171	4744	3325	3511	5682	*	*	40
+       233	2985	5447	1316	741	3492	134	5883	1370	5058	
+
+K 41   5815	*	3921	3054	4339	2768	*	4097	3778	4478	*	3752	*	3905	4467	3295	3953	4253	*	5776	41
+       351	4864	2461	0	*	3109	178	6086	1064	4814	
+
+P 42   4637	*	3995	*	5209	5532	*	5521	4138	5650	*	3408	1740	3613	5669	2251	4479	*	*	*	42
+       186	3975	4131	879	1132	256	2618	5983	1142	4866	
+
+T 43   5101	*	5482	4288	4954	5946	5751	4444	4767	4440	4879	4106	4256	4070	3054	3125	2987	3301	6337	5463	43
+       104	5157	4584	378	2118	1307	747	7460	1136	1911	
+
+T 44   4000	*	4685	5013	7227	4564	6005	5951	4725	5270	9104	3184	3169	3339	3701	3062	2869	4284	*	5914	44
+       92	4188	7149	1970	425	909	1098	7450	1455	1866	
+
+T 45   5947	*	3191	5079	4597	3791	4569	6070	*	5394	7129	2349	4645	5848	4166	2218	4831	6049	5399	4475	45
+       24	5944	*	0	*	227	2781	7589	1092	1430	
+
+S 46   5241	7029	*	5097	8203	4965	*	*	2954	5027	7122	6454	4846	1843	4416	1755	4403	6193	*	7541	46
+       15	*	6576	*	*	*	0	7642	0	1000	
+
+I 47   2916	4855	*	5459	5183	4844	4529	4138	6147	5137	5748	5772	*	*	3694	2378	3519	2454	5556	7040	47
+       0	*	*	*	*	1193	830	7614	0	1096	
+
+G 48   6561	6361	6313	*	*	196	*	*	*	*	*	*	*	*	*	3559	7192	*	*	*	48
+       20	7229	7192	0	*	0	*	7612	1004	1021	
+
+R 49   3473	6476	*	*	5518	4154	4003	6790	*	5141	*	6861	*	4662	1484	2678	4060	5280	4435	5199	49
+       95	*	3971	*	*	0	*	7650	0	1002	
+
+A 50   1481	5389	*	*	5465	5448	*	2775	*	5137	6028	*	6037	*	*	*	*	1484	*	6666	50
+       31	*	5565	*	*	*	0	7506	0	1534	
+
+L 51   6913	6940	*	*	2088	*	*	3900	*	2019	4468	*	*	5582	*	4718	5133	3801	2509	4193	51
+       0	*	*	*	*	*	0	7448	0	1701	
+
+Y 52   5241	5914	7087	*	3012	*	4115	6453	6965	3333	6963	5431	*	*	7100	3189	7178	6970	*	1040	52
+       0	*	*	*	*	*	0	7466	0	1701	
+
+A 53   4500	*	7066	4472	*	5022	6000	6297	2532	*	6134	2679	2659	5088	3361	3119	4006	6544	6921	5672	53
+       0	*	*	*	*	*	0	7466	0	1701	
+
+A 54   4321	*	4558	3455	5695	7066	4696	5499	2699	4184	6689	2958	6000	3630	3441	4387	2986	6392	*	7147	54
+       11	*	7069	*	*	*	0	7466	0	1701	
+
+P 55   4816	*	6681	5240	*	*	7074	*	2937	5956	6896	*	740	4568	3468	7105	6416	*	*	5993	55
+       12	6905	*	0	*	3748	112	7460	1000	1760	
+
+I 56   5171	5322	*	*	3705	*	*	1740	7069	2689	5411	*	6000	5302	*	*	*	1582	6628	*	56
+       21	*	6081	*	*	*	0	7466	0	1701	
+
+Q 57   4603	*	3134	5066	*	*	4118	*	4707	5714	*	4035	2412	2388	3230	3818	3889	*	9402	6177	57
+       73	*	4335	*	*	560	1636	7429	0	1833	
+
+I 58   5242	*	*	*	2350	*	*	3407	*	1147	4100	*	*	5478	*	4824	7289	3198	*	*	58
+       141	5987	3689	1000	1000	2010	412	7579	1082	1588	
+
+W 59   *	5844	5824	6466	4187	6258	6404	7031	3136	3498	5852	6861	6987	*	3147	3239	4401	5102	1658	5794	59
+       254	5393	2864	1201	824	4216	80	7536	1192	2105	
+
+D 60   4767	*	1574	4247	*	4995	7368	*	4120	*	*	2306	4814	5429	3757	2863	*	7066	*	*	60
+       461	4549	2116	1359	713	3791	108	7405	1243	2978	
+
+S 61   3955	*	3934	4180	7118	3507	4544	*	3400	6590	*	3685	3585	4521	4083	1908	5398	5799	*	*	61
+       205	5975	3099	2585	263	4680	57	6924	1019	4044	
+
+I 62   2986	*	4520	6372	*	3564	5538	4243	4387	4379	5984	2882	6165	4216	4896	2747	3042	4637	*	*	62
+       96	3959	*	2420	298	3945	97	6723	1243	4381	
+
+T 63   3819	5781	3902	*	*	4017	5592	*	4380	6198	*	5730	3040	6117	5539	2384	1591	*	*	*	63
+       50	5791	5983	857	1159	3115	177	6798	1091	4203	
+
+G 64   4170	5607	6282	4512	5845	1483	5251	5802	3887	6020	5878	3816	5733	6520	3313	3593	5541	5294	*	5902	64
+       129	3774	6320	1890	454	2547	271	6845	1393	3954	
+
+K 65   3633	*	5898	4523	5538	3718	*	4666	3235	5298	*	2889	6129	4413	3262	3168	3015	4641	*	6047	65
+       91	4623	5602	2388	306	1758	506	7003	1203	3587	
+
+V 66   2923	*	5140	4058	4735	5159	6339	4306	6181	3149	4923	3857	4666	5634	4707	5168	4371	2006	*	*	66
+       0	*	*	*	*	1041	961	7314	0	3015	
+
+A 67   1625	*	5053	*	4646	5123	6154	6709	4737	5148	6463	4169	7055	4730	3393	3031	3461	4525	7046	5931	67
+       11	7046	*	1000	1000	535	1690	7557	1000	2067	
+
+S 68   5620	*	2791	4747	7362	2884	6979	*	7279	7220	*	5307	5880	*	5718	971	5042	5925	*	5874	68
+       0	*	*	*	*	2361	312	7669	0	1295	
+
+F 69   *	*	*	*	203	*	*	6149	*	4273	7045	*	*	*	*	*	*	5674	4703	*	69
+       0	*	*	*	*	2112	380	7674	0	1224	
+
+A 70   4602	*	4479	3829	7459	*	6004	4602	4137	5103	6785	3088	*	4673	4832	1602	3131	4302	*	*	70
+       0	*	*	*	*	*	0	7675	0	1156	
+
+T 71   3532	4585	*	7325	*	*	6004	3506	*	4354	5463	6765	*	5475	6820	4513	877	4391	7191	7161	71
+       0	*	*	*	*	605	1546	7675	0	1156	
+
+S 72   5937	7308	4134	2864	5311	5122	4232	6745	4607	5519	6663	3893	*	6514	4214	2373	2423	5063	*	4256	72
+       13	*	6813	*	*	*	0	7697	0	1004	
+
+F 73   *	*	*	*	299	6862	6109	5142	*	3694	5601	*	*	*	*	*	*	5019	*	7183	73
+       40	*	5184	*	*	*	0	7667	0	1090	
+
+S 74   4040	4696	4595	4320	7202	*	*	4362	4951	5021	*	4879	6408	4820	5469	2220	1992	3246	*	6013	74
+       0	*	*	0	*	300	2413	7610	1000	1342	
+
+F 75   *	*	*	*	477	*	*	4822	*	3476	6883	*	*	6840	*	*	*	3521	7057	4496	75
+       38	5273	*	716	1354	*	0	7683	1187	1004	
+
+V 76   2994	5211	6049	5732	5878	8482	5899	5388	3464	4609	6654	3704	6883	3652	2619	2745	3808	4893	6665	5645	76
+       0	*	*	*	*	*	0	7683	0	1004	
+
+V 77   6765	*	*	*	4710	6520	*	898	*	2689	3547	*	6012	6883	*	5326	5932	3435	*	7193	77
+       18	6347	*	1044	957	*	0	7683	1057	1004	
+
+K 78   3993	*	4104	4724	6417	3702	4123	5958	5745	4328	*	3360	5266	5146	3976	3149	2387	4280	*	4636	78
+       39	*	5220	*	*	*	0	7683	0	1004	
+
+A 79   3696	7168	4097	5182	5653	2671	4704	*	4643	5291	*	3520	2517	5901	4533	2985	4241	6210	*	4856	79
+       212	3815	3928	901	1107	2503	280	7615	1689	1302	
+
+D 80   4050	*	3592	3902	6968	3980	5806	6009	3311	5692	7167	3311	3319	3441	4055	3693	4210	4529	*	5052	80
+       415	3594	2582	1379	700	3772	110	7496	1663	1827	
+
+K 81   4681	*	4541	5739	6834	2986	5892	5135	4577	5219	*	2287	3529	3739	4563	3103	4074	5479	*	4525	81
+       271	2688	5963	2879	211	2125	376	7213	2065	2992	
+
+S 82   3352	7430	3314	3837	*	3285	*	6856	3347	4624	*	3994	3402	5002	3768	3371	3387	5544	*	*	82
+       1905	470	6486	229	2769	3802	107	7272	5352	2669	
+
+D 83   3437	*	3750	5871	4908	3290	4578	4221	7072	3316	6129	3193	4671	5405	4333	3014	4122	4725	5489	*	83
+       41	5166	*	401	2043	525	1712	7271	1136	2693	
+
+G 84   4195	6765	4754	4993	4629	1683	5572	6024	5471	5148	*	6248	2958	6372	4841	2895	4664	7053	*	4093	84
+       13	6805	*	3110	178	1993	417	7605	1088	1505	
+
+V 85   1686	7217	6285	*	*	1032	*	6564	*	*	*	6818	5684	6871	5361	4372	4867	5239	*	*	85
+       15	*	6564	0	*	2529	274	7593	1002	1363	
+
+D 86   7100	6049	632	4328	7066	3924	4501	7060	6847	*	*	5419	6596	5693	6059	4428	5912	*	*	5821	86
+       56	4706	*	1810	484	597	1561	7576	1314	1381	
+
+G 87   7015	*	6233	*	*	161	*	*	*	*	*	*	5643	*	5102	4827	*	*	*	*	87
+       0	*	*	*	*	*	0	7647	0	1082	
+
+L 88   *	*	*	*	2237	*	*	2924	*	1414	2311	*	*	6883	5974	*	5597	4865	*	*	88
+       0	*	*	*	*	*	0	7647	0	1082	
+
+A 89   698	5735	7086	6324	*	4106	*	7306	*	*	*	6883	*	*	*	3186	2910	5106	*	*	89
+       0	*	*	*	*	*	0	7647	0	1082	
+
+F 90   *	*	*	*	328	5974	*	5278	7086	3410	*	*	*	*	*	*	*	4618	6877	6514	90
+       29	*	5655	*	*	*	0	7647	0	1082	
+
+F 91   4114	*	*	*	2207	5824	*	2819	*	4035	5119	5975	*	*	*	5901	4356	1627	4140	6104	91
+       7	*	7614	*	*	*	0	7601	0	1301	
+
+L 92   *	*	*	*	3491	*	*	1768	*	1304	3590	*	*	*	*	*	*	3174	*	5754	92
+       0	*	*	0	*	2734	235	7595	1000	1366	
+
+A 93   2800	*	*	7012	4754	5861	3355	5968	7351	4895	7686	7304	5953	2403	5945	3642	2577	2774	*	6118	93
+       40	6337	6033	1000	1000	*	0	7601	1053	1301	
+
+P 94   5013	*	6816	4389	*	3619	5941	*	5552	6758	*	2894	1198	6168	5180	3176	4188	*	*	7193	94
+       44	5436	7156	3848	104	1541	608	7588	1144	1437	
+
+A 95   4356	*	2490	3109	5028	6200	3958	7052	5637	*	6954	3287	6211	5130	6599	3054	3374	3953	6019	4025	95
+       93	6450	4288	594	1568	547	1663	7619	1043	1325	
+
+N 96   4302	7156	4047	6292	7241	2444	6015	6640	3682	4364	7351	3128	2958	6975	3553	3370	4023	6767	*	5890	96
+       139	6221	3675	560	1636	2075	391	7561	1076	1531	
+
+S 97   3252	*	4080	3894	4836	5203	6192	7084	6070	4724	*	2689	4956	5811	4641	1883	3672	5798	*	5645	97
+       303	7361	2448	0	*	1456	654	7485	1000	2113	
+
+Q 98   4088	*	4807	4133	4678	3180	5948	*	3755	4650	5806	3339	4685	3420	4289	3388	3408	3863	6589	*	98
+       901	4610	1239	1532	612	552	1654	7287	1231	3118	
+
+I 99   3414	*	*	*	3849	*	6209	2674	*	1568	4310	*	3018	6460	*	4159	4617	4923	*	6119	99
+       276	2755	5252	1010	990	542	1675	7103	1789	4239	
+
+P 100  4123	5825	5552	6059	5736	4723	*	3817	6400	4134	6218	4446	1452	5530	5357	3245	3711	4660	*	*	100
+       174	4093	4191	1347	720	1094	912	7410	1463	2260	
+
+S 101  3269	6789	5788	4957	5448	2462	7077	7063	4739	3204	4752	4163	3318	4334	5421	2921	4675	5226	7035	*	101
+       642	3951	1764	808	1221	2620	256	7438	1491	2110	
+
+G 102  2918	6624	4910	4209	*	1235	5913	*	5174	6849	*	3119	*	5207	5198	4331	6570	4657	*	5429	102
+       134	3804	5872	1930	439	813	1215	6883	1361	4038	
+
+S 103  3292	*	4971	4575	7502	2864	5594	5982	4572	4182	5888	4617	5509	4842	5391	1582	4197	6159	*	7248	103
+       69	5317	5538	0	*	1669	545	7217	1133	2503	
+
+S 104  2960	6621	4480	4843	5264	2762	*	5462	5229	*	5927	3693	3435	4862	4709	2856	3877	5495	6647	4019	104
+       94	4375	6075	1254	784	879	1133	7376	1380	2216	
+
+A 105  4639	*	5072	6597	*	493	*	7023	5314	5466	5048	6273	7070	5513	4677	5573	7382	7034	*	7055	105
+       43	6466	5770	1585	585	3538	130	7584	1106	1681	
+
+G 106  5356	7263	5168	3794	5993	1263	*	*	6459	6759	6744	4650	3669	3235	3732	3860	7011	5985	*	6118	106
+       59	5538	5769	1855	467	*	0	7564	1117	1777	
+
+M 107  4978	5810	6242	7123	3871	3149	5308	*	*	3966	5710	3086	5770	4314	5266	4515	4584	4396	4115	2073	107
+       60	*	4612	*	*	2732	235	7545	0	1911	
+
+F 108  5179	*	*	6964	3143	5586	5035	3729	*	820	4505	*	6297	6463	5420	4985	*	5454	*	6388	108
+       18	6337	*	2000	415	1393	692	7475	1023	2071	
+
+G 109  5551	5587	6344	6676	*	145	*	*	*	*	*	6896	*	*	6494	6414	*	*	*	*	109
+       31	6109	7267	2119	378	*	0	7525	1053	1653	
+
+L 110  4607	*	*	*	3516	6786	*	3377	*	1246	4564	6651	*	*	7108	4762	*	4249	6546	2436	110
+       132	6670	3687	1000	1000	3351	149	7531	1011	1782	
+
+F 111  3416	*	*	6995	2405	3541	6916	4707	4815	3133	5431	4237	5027	5817	6537	3924	3135	4514	4570	5223	111
+       285	*	2480	*	*	2939	202	7470	0	2360	
+
+S 112  4020	*	2446	5548	*	3385	*	6875	5823	*	*	1460	3418	7459	4630	3785	5221	*	*	6782	112
+       147	*	3365	3807	107	4273	77	7402	1002	3432	
+
+S 113  4390	*	3627	2882	6871	5061	*	4795	3149	4555	*	4066	5242	5736	2937	2985	3649	4402	*	5867	113
+       415	4809	2221	1340	725	5738	27	7318	1231	3812	
+
+S 114  3251	*	4641	6324	4166	3901	5704	*	*	*	*	3022	4249	4592	4066	2936	1902	5302	*	*	114
+       368	5568	2294	1592	581	4279	76	6808	1135	4710	
+
+D 115  4440	5560	3510	4392	*	3621	*	*	6650	4210	5940	2431	*	5232	4856	3405	2055	6196	*	4624	115
+       164	3897	4631	729	1334	4326	74	6484	1350	5192	
+
+S 116  4475	4893	2543	4409	*	3421	*	6176	5690	6228	6201	2473	4854	4848	4558	4216	3819	4965	5255	3745	116
+       1507	702	4902	806	1224	2131	374	6500	3496	5134	
+
+K 117  4404	*	3602	5298	4805	3121	5507	6539	3709	5694	*	2438	4955	4357	4436	3085	3406	5029	*	6484	117
+       105	4104	6348	1708	527	1575	590	6855	1233	4477	
+
+S 118  2766	*	5807	*	5127	2151	*	5736	4167	*	5170	4557	2938	6302	6114	2555	3586	*	*	5289	118
+       42	5755	6576	1000	1000	2406	302	7114	1082	3528	
+
+S 119  4034	*	3237	4548	5716	4988	*	2281	3751	3979	*	3975	6776	6601	4383	2425	4740	4852	*	7171	119
+       45	5019	*	1472	645	1277	768	7205	1206	3152	
+
+N 120  3272	*	3467	4673	4071	4555	5639	5359	4628	6529	*	1763	3742	5351	5904	4126	3991	6970	*	5044	120
+       28	6230	7418	0	*	1086	919	7483	1023	2308	
+
+Q 121  5603	*	7484	6205	*	3152	3186	6439	3298	6071	*	2778	3349	3589	2466	4522	5019	6771	*	5774	121
+       8	7487	*	2258	338	441	1926	7601	1073	1747	
+
+I 122  4975	5204	6061	7307	4033	3013	*	3146	7287	3122	5195	5223	6816	7179	5064	2069	4123	3708	*	5129	122
+       17	6429	*	1622	567	1737	515	7672	1150	1149	
+
+I 123  5194	7272	*	6654	2428	7058	*	3175	*	1698	*	*	*	*	*	6000	*	1729	6918	5762	123
+       8	7471	*	1000	1000	*	0	7676	1000	1158	
+
+A 124  581	*	*	5726	5867	2655	6988	6963	*	6307	*	7541	7236	6626	*	3930	*	6191	*	7156	124
+       23	6000	*	1585	585	1603	576	7676	1053	1158	
+
+V 125  7075	*	*	*	5189	*	*	1931	*	4260	7565	*	*	*	6012	*	7310	715	6121	*	125
+       11	*	7075	*	*	*	0	7678	0	1082	
+
+E 126  6400	*	6629	458	4685	5985	*	5897	4029	6852	*	6849	6329	*	7290	6111	6813	4116	*	*	126
+       22	6046	*	1628	564	*	0	7681	1077	1154	
+
+F 127  *	*	*	*	545	*	*	3508	*	2967	*	*	*	*	*	*	*	3931	*	4913	127
+       26	*	5831	*	*	*	0	7681	0	1154	
+
+D 128  6612	*	327	5681	*	4718	7067	*	5881	6065	*	5895	*	6094	5967	5033	*	5806	*	*	128
+       0	*	*	*	*	*	0	7636	0	1344	
+
+T 129  4416	*	5106	6807	6856	7097	5967	4395	*	7090	*	5472	6473	6094	*	4287	515	5708	*	6642	129
+       15	*	6572	1000	1000	2659	249	7636	1000	1344	
+
+Y 130  7065	6035	*	*	2162	5504	3750	5970	*	5759	7422	6297	5967	7443	6206	4061	5445	3551	3395	1709	130
+       55	6066	5489	647	1468	2671	246	7617	1092	1382	
+
+F 131  5465	7075	4810	7525	4492	5923	5132	*	2554	4597	5068	3999	4193	3241	2547	4153	6040	4899	5939	3595	131
+       31	*	5550	*	*	3354	148	7556	0	1538	
+
+G 132  6274	*	3059	7169	7533	4619	*	6460	7570	7219	*	666	*	5069	*	3713	5000	5785	*	7662	132
+       226	5344	3051	1984	420	2586	263	7568	1158	1669	
+
+K 133  3652	*	3773	3266	5096	4068	*	*	3830	4919	7057	3861	2848	4361	4677	4635	3476	4391	*	3827	133
+       371	4572	2435	993	1007	3669	118	7402	1331	2599	
+
+A 134  3902	*	2372	1905	*	2650	6856	6570	4606	*	*	3824	5898	5457	3488	4706	6883	7127	*	*	134
+       655	3417	1883	2113	379	2478	285	7307	1669	3723	
+
+Y 135  5507	5514	6542	5447	1775	5354	4470	4643	6252	3458	4918	4531	5403	4982	6390	4378	4628	4586	*	2807	135
+       652	*	1460	*	*	5744	27	7043	0	4546	
+
+N 136  3721	4858	3053	5365	*	2985	*	*	4577	5272	3341	2422	4425	*	4970	3515	5802	4650	*	4578	136
+       1845	3176	711	1849	469	*	0	6572	1341	5654	
+
+P 137  *	*	2980	*	*	2029	*	4209	*	*	*	2445	2608	4262	4097	4250	3979	*	*	*	137
+       249	2657	*	2460	289	814	1214	5354	1158	6608	
+
+W 138  3640	*	5478	4634	3670	2494	6384	6585	*	5470	6999	3475	*	6072	3788	6702	4729	5936	2076	3830	138
+       130	3537	*	820	1206	533	1694	7393	1484	4062	
+
+D 139  5471	*	441	4229	*	5133	5932	*	*	6569	*	5229	*	5170	*	4387	*	5464	*	7141	139
+       76	4437	7527	253	2636	2185	358	7583	1305	2040	
+
+P 140  *	*	6107	5725	6578	5704	*	3060	*	4857	4550	5552	817	7001	6775	4569	4653	4605	*	6526	140
+       185	3584	4768	3095	180	1969	426	7571	1635	1863	
+
+D 141  4867	*	2382	4392	4999	4361	*	5444	5805	6867	*	2278	3924	5936	4649	2626	4275	5278	*	5098	141
+       193	3253	5623	1786	494	2967	197	7611	1954	1939	
+
+F 142  3876	5745	2486	4400	4897	2632	6724	6695	6408	*	3900	3596	6918	6951	6540	2947	5410	5813	6779	3256	142
+       38	5260	*	0	*	821	1204	7583	1126	1972	
+
+K 143  5353	5948	2577	5202	*	4338	5207	6849	5963	6036	*	1378	3817	4892	5283	3628	4934	*	*	5688	143
+       0	*	*	*	*	1578	588	7665	0	1395	
+
+H 144  5729	6008	6822	7150	*	*	503	*	5659	*	*	4810	5614	5944	4584	4532	4951	7029	6516	5952	144
+       62	*	4567	*	*	*	0	7667	0	1240	
+
+I 145  4371	*	*	*	6167	*	*	1412	*	4055	6303	*	6526	6825	5703	*	4124	1391	*	6434	145
+       37	6491	6167	1585	585	1985	420	7561	1017	1601	
+
+G 146  2842	7196	4723	6259	*	926	*	6728	5519	5488	*	*	6631	*	5764	2590	6075	7360	*	7095	146
+       0	*	*	*	*	2288	331	7594	0	1561	
+
+I 147  *	4651	*	*	4721	*	*	1102	6711	2731	7032	*	*	6514	*	5740	*	2268	5613	5018	147
+       79	4656	6199	1981	421	*	0	7604	1294	1435	
+
+D 148  5454	*	1611	5370	6244	5255	4403	6501	5842	3916	5127	2188	6955	3947	5906	4610	5748	5697	*	5178	148
+       96	5095	4844	2200	354	2804	223	7594	1188	1561	
+
+V 149  5216	7096	5500	6664	5360	4474	*	2495	6134	3022	*	4438	6768	5525	5424	3798	2897	2087	*	6989	149
+       64	5330	5778	2307	326	1002	998	7599	1148	1777	
+
+N 150  4654	*	3228	6406	*	3270	5363	*	5123	*	*	1195	4352	6565	4093	4416	3584	*	*	*	150
+       89	5674	4633	1799	489	1493	633	7638	1113	1527	
+
+S 151  6471	*	5327	5996	7041	1502	*	5895	*	*	*	4013	*	*	4815	1321	4409	6464	6872	7339	151
+       105	4862	4802	853	1164	723	1344	7524	1264	1667	
+
+I 152  3787	6533	5114	5801	5402	*	*	2553	4991	2645	4936	4611	4936	6738	4581	3935	3554	2678	*	5621	152
+       483	2336	3531	1078	926	1783	495	7635	2564	1566	
+
+K 153  7106	*	4636	4034	6083	5416	5667	3435	2909	3647	*	3911	*	3868	3130	4397	3382	3151	*	5442	153
+       37	7159	5795	3000	193	783	1256	7403	1000	2148	
+
+S 154  3311	6003	5160	5233	*	*	6319	*	5897	6459	*	5643	3559	*	3877	830	4925	5645	*	*	154
+       121	4029	5698	1541	607	1128	882	7605	1486	1604	
+
+I 155  3981	7096	4744	4910	5527	4666	5207	3670	4808	3756	6335	2935	7213	*	5304	3503	3491	2746	*	3626	155
+       72	4361	*	505	1760	1133	878	7658	1389	1446	
+
+K 156  2795	6650	5623	4102	7298	4589	4276	*	2706	7017	*	3200	4950	4370	4628	2954	3695	4347	*	5538	156
+       92	4186	7262	2992	194	2161	365	7664	1506	1212	
+
+T 157  3962	7265	7244	4465	7406	4302	4540	4413	6209	5591	6305	3524	6050	5651	7118	2637	1864	3744	*	4480	157
+       210	3248	5037	2662	248	1968	426	7668	2023	1224	
+
+V 158  2640	5251	5214	3680	7017	4551	4259	6487	3671	4821	*	5357	5173	3981	3850	3289	3259	3611	*	7090	158
+       88	4235	7308	1050	951	2973	197	7613	1433	1443	
+
+K 159  4363	5502	4822	7345	6039	4504	5477	7266	4728	7087	*	3522	2181	4047	4198	2652	3086	5592	*	4862	159
+       363	2205	7533	2531	274	2091	386	7622	2898	1437	
+
+W 160  2906	4140	*	*	4033	4731	5677	4709	7001	2232	7014	6362	5133	6455	6843	6266	4180	3477	2734	4160	160
+       522	1719	*	2288	331	721	1346	7610	3501	1398	
+
+D 161  4417	6844	1911	5526	5239	3661	7043	7406	4724	7156	*	2721	4242	5416	4766	3044	3750	5642	*	6306	161
+       226	2927	6190	2775	228	1930	439	7652	2184	1180	
+
+W 162  4157	7442	5955	6550	2677	*	*	3053	7416	1334	3635	5579	5566	*	*	4279	4851	5914	7183	*	162
+       253	2638	*	1771	500	2639	252	7647	2458	1345	
+
+R 163  3147	6611	4084	3750	5314	4726	4987	4896	3749	5115	*	3036	4992	5460	3696	2663	4628	4260	6861	*	163
+       178	3103	*	1162	854	1917	444	7646	1998	1279	
+
+N 164  5088	*	2056	5459	7011	3705	7273	5484	5436	5587	*	1939	6358	7394	5973	2421	4747	5618	6500	*	164
+       95	4312	6221	1436	666	1492	634	7649	1418	1187	
+
+G 165  5841	*	4352	5920	6638	721	6773	*	5888	5713	7258	3637	7550	6957	3772	4646	6519	5915	7049	7230	165
+       115	4601	4828	737	1321	1917	444	7653	1311	1245	
+
+E 166  4379	*	4011	3316	6056	3492	6819	5626	2465	5838	6350	3365	*	3967	3397	4765	5036	3357	*	5327	166
+       21	7225	7040	1000	1000	1989	419	7606	1000	1510	
+
+V 167  5266	*	4005	4313	5365	6753	6550	3362	5015	3604	5470	3875	3522	6148	4038	4205	3539	3192	4049	4509	167
+       10	7179	*	2585	263	889	1121	7612	1000	1431	
+
+A 168  4613	7135	*	*	4709	5358	2101	3658	4616	3363	3647	5060	*	7179	5402	4514	3688	3398	5899	3926	168
+       16	6500	*	2807	222	*	0	7665	1032	1161	
+
+D 169  4521	6308	4422	4879	5844	5075	3644	4482	3133	5928	7272	3124	*	3400	4157	4443	2727	4970	6885	4278	169
+       0	*	*	*	*	1310	745	7665	0	1161	
+
+V 170  1643	5140	*	*	4813	6512	*	4995	*	3361	*	*	7125	*	*	4205	6204	1317	*	*	170
+       10	*	7128	*	*	*	0	7671	0	1066	
+
+V 171  7234	*	*	4915	*	*	4297	4619	3160	4858	5475	*	*	4295	2485	4106	5765	4195	1589	7226	171
+       0	*	*	*	*	1500	629	7675	0	1143	
+
+I 172  7125	*	*	*	5965	*	*	532	*	5050	6111	*	*	*	*	*	*	2056	*	*	172
+       0	*	*	*	*	*	0	7671	0	1066	
+
+T 173  5090	*	2196	2619	*	5559	5719	3684	4578	5497	*	3873	*	5955	3933	3477	3112	4259	*	*	173
+       0	*	*	*	*	*	0	7671	0	1066	
+
+Y 174  *	*	*	*	3361	*	*	5939	*	7074	*	*	*	*	*	*	*	6633	3958	314	174
+       22	*	6046	*	*	*	0	7671	0	1066	
+
+R 175  6599	*	1341	4117	6670	*	6347	5040	4921	5298	7242	2369	*	5459	4313	4007	4672	6267	7197	4968	175
+       7	*	7761	3585	126	861	1154	7655	1000	1203	
+
+A 176  2070	*	7035	4508	*	2069	4167	*	5119	*	*	3860	3603	4676	4857	2872	7546	5600	*	*	176
+       83	5745	4746	3381	146	1814	483	7689	1107	1107	
+
+P 177  2977	*	3717	3397	7551	4203	*	5143	4997	4080	*	4503	4835	4420	4857	2531	3382	3778	7234	6075	177
+       92	6886	4227	4322	74	1132	879	7630	1006	1424	
+
+T 178  3199	*	3683	4994	6067	4289	7235	5510	3944	4174	*	4428	*	5159	5102	2192	2205	5480	*	7577	178
+       49	6153	5694	3146	173	1402	686	7577	1046	1662	
+
+K 179  4741	*	4925	3397	*	4235	3403	*	1902	5452	6192	3824	*	3613	3026	3691	5036	*	*	*	179
+       52	4829	*	2898	208	1067	936	7607	1278	1580	
+
+S 180  6120	7040	6051	4452	5532	7059	5608	3915	4332	2857	5635	3918	7300	3455	2830	3692	3142	3602	7332	6648	180
+       19	6250	*	2918	205	815	1212	7668	1059	1273	
+
+L 181  7237	*	*	6844	4774	*	7225	3069	*	530	4568	7318	*	*	*	*	*	3624	*	*	181
+       20	*	6159	*	*	965	1036	7671	0	1077	
+
+T 182  4325	6514	4331	2817	7128	*	5423	4936	4287	5393	5917	3851	*	4661	3402	2449	2568	4725	*	*	182
+       0	*	*	0	*	1725	520	7657	1000	1147	
+
+V 183  3603	*	*	*	*	6089	*	3336	5740	4104	5282	*	7061	*	*	*	5582	676	*	4402	183
+       13	6847	*	1000	1000	935	1068	7663	1003	1080	
+
+C 184  5053	7219	3828	5404	3202	*	6048	5704	4978	5396	*	6319	*	*	2814	3157	2468	4337	5332	2749	184
+       0	*	*	*	*	*	0	7677	0	1000	
+
+L 185  5666	*	*	6927	4737	*	*	3094	*	1146	3562	7255	*	*	*	*	6863	2228	5577	4984	185
+       41	6855	5677	2807	222	*	0	7677	1003	1000	
+
+S 186  2849	7146	2427	5308	7276	3745	4994	4639	5143	4755	7094	4439	5628	5135	5255	2472	4208	4645	6925	6142	186
+       170	3518	5375	2534	273	430	1957	7690	1779	1210	
+
+Y 187  4433	7159	3152	3900	5353	3817	4223	4173	4697	5072	7319	3933	3381	7067	5454	3636	5079	4645	6800	2862	187
+       71	5606	5183	2150	368	*	0	7597	1137	1232	
+
+P 188  3513	*	3799	3928	4366	3993	5845	4681	4235	3093	*	3991	3330	5602	5505	3232	4592	3844	7293	6957	188
+       186	5160	3422	3339	150	2650	250	7625	1189	1492	
+
+S 189  4229	*	3324	5243	*	2148	*	6677	3635	5719	*	2833	4587	5060	4669	2957	4671	4473	*	5565	189
+       1016	1706	2330	1685	537	1735	515	7564	3273	2229	
+
+D 190  5485	*	2834	4547	*	5525	4646	4823	2748	5695	*	4421	6688	5319	2705	2509	3772	4448	*	*	190
+       314	2516	5593	928	1076	2646	251	7247	2251	3269	
+
+G 191  6012	*	4779	6668	6714	3469	*	5809	3692	5571	4992	4228	1544	3997	4004	3024	5194	5697	*	*	191
+       321	2916	3903	668	1431	2283	332	7315	1910	3113	
+
+T 192  4006	*	4334	5400	5260	4419	5146	5784	2833	3677	*	4852	3879	4248	4971	3183	2663	3805	*	*	192
+       141	4536	4324	1274	770	1006	994	7360	1285	3107	
+
+S 193  3925	*	4327	3801	7407	5259	5782	6168	3329	4453	*	4106	4066	3975	3130	2655	3097	4963	*	*	193
+       120	3800	6998	1276	768	501	1769	7360	1631	2414	
+
+N 194  4018	3953	4861	5584	5045	6290	*	5729	7028	3831	*	6059	1600	4154	5208	4420	6197	4646	4661	3175	194
+       83	4154	*	1164	853	0	*	7604	1420	1529	
+
+I 195  4329	6867	5422	5002	4434	6096	7447	2637	*	2027	5944	6240	*	7735	5582	3761	3271	2611	5770	*	195
+       20	7618	6868	0	*	*	*	7675	1000	0	
+
+I 196  5718	6284	5912	6079	4105	6919	5510	2719	5411	1071	5288	7552	*	*	*	5180	4926	3394	6580	*	196
+       24	7069	6769	0	*	0	*	7667	1000	1008	
+
+T 197  3522	3807	4424	4513	6603	5676	6573	5725	4152	5438	*	2921	7616	4967	5502	1687	3980	4920	6121	*	197
+       190	3295	5519	249	2656	*	0	7656	1899	1003	
+
+A 198  3024	5040	3960	6424	3624	4675	3964	4569	4568	4504	*	6993	6996	4969	4624	4831	3354	3406	5488	3054	198
+       10	7217	*	0	*	2353	314	7629	1000	1294	
+
+S 199  4032	*	4455	4462	*	5104	6610	4146	3438	5366	*	2898	3154	4244	4232	3151	3579	3651	*	7106	199
+       63	6236	5095	983	1018	1044	957	7595	1069	1223	
+
+V 200  5516	*	7068	5689	5418	6034	7147	2125	5028	1935	5432	*	4990	5463	4598	7107	6441	2167	*	5377	200
+       53	5365	6399	1119	890	2195	356	7550	1144	1342	
+
+D 201  5219	*	960	5585	*	5133	5768	7092	7148	*	*	2129	*	6093	5552	4511	4684	5645	*	6699	201
+       116	4139	5627	1467	648	1271	772	7589	1447	1350	
+
+L 202  *	7098	*	5414	3917	*	*	3177	*	492	5571	*	*	*	*	5242	*	4880	*	*	202
+       49	5482	6540	1273	771	1127	884	7601	1214	1366	
+
+K 203  3317	7094	4954	3837	*	4393	5683	6137	3695	6868	6032	4035	3520	7139	3676	1766	4844	4767	*	6838	203
+       70	4396	*	1030	971	322	2320	7555	1413	1257	
+
+A 204  3228	*	3441	3391	7115	3472	*	5529	3888	4787	7227	3600	4156	4886	3926	3289	3878	4034	*	7179	204
+       91	5244	4852	266	2568	*	0	7667	1188	1000	
+
+I 205  4783	*	4294	4713	3244	5117	4748	3248	5151	4184	5200	5844	*	6690	4739	5422	3998	2392	6828	2862	205
+       65	4496	*	0	*	2484	284	7571	1337	1296	
+
+L 206  *	7458	*	5489	2881	5309	*	4789	7116	899	5509	*	*	*	*	*	5555	3021	3945	*	206
+       170	3168	*	1913	445	0	*	7566	1935	1306	
+
+P 207  4755	*	3863	4809	*	3715	*	*	3683	4205	6841	4223	1785	4120	3665	3463	4437	6218	6470	*	207
+       82	4182	*	824	1201	*	*	7622	1491	0	
+
+E 208  4876	*	2636	2160	*	3673	6196	6909	3373	7123	*	4147	4324	3470	4246	3293	5269	*	*	*	208
+       262	2636	7622	709	1364	*	*	7622	2415	0	
+
+W 209  5390	6085	4618	2181	4429	4873	5995	*	3438	4741	7213	4610	4013	3935	4459	4816	3619	5948	4236	3886	209
+       21	6128	*	1230	802	*	0	7616	1097	1000	
+
+V 210  1799	*	*	*	5303	4403	6905	6183	7315	*	2533	*	*	*	6493	4057	6506	1613	6059	6066	210
+       0	*	*	*	*	*	0	7616	0	1000	
+
+S 211  4081	*	7099	*	2546	*	5233	5284	*	5976	5081	6784	*	6165	4670	4683	3779	*	3678	1278	211
+       0	*	*	*	*	*	0	7616	0	1000	
+
+V 212  4605	*	*	*	2979	*	*	2275	*	3996	4449	*	*	*	*	*	*	1108	4454	7061	212
+       0	*	*	*	*	*	0	7616	0	1000	
+
+G 213  6588	*	*	*	*	74	*	*	*	*	*	*	*	*	6884	6506	*	5614	*	*	213
+       0	*	*	*	*	*	0	7616	0	1000	
+
+F 214  6954	6493	*	*	362	*	*	4523	*	3720	7192	*	*	*	*	7585	*	4186	7104	6804	214
+       23	5967	*	2115	379	*	0	7616	1090	1000	
+
+S 215  4015	*	*	*	5021	4820	*	6945	*	*	*	6582	*	*	6609	1141	1415	6087	*	*	215
+       11	*	7085	*	*	*	0	7634	0	1000	
+
+G 216  656	*	*	*	*	2569	7115	*	*	*	*	*	*	*	*	2480	6604	*	*	*	216
+       11	*	7021	*	*	*	0	7627	0	1088	
+
+G 217  1779	*	*	6652	*	3982	6482	6280	*	5635	*	6636	*	*	6833	1215	3153	5732	*	6564	217
+       13	6819	*	2000	415	1658	550	7624	1008	1162	
+
+V 218  4796	4943	6643	*	*	5690	*	7095	6102	*	6286	3810	*	*	6692	3463	611	4603	*	*	218
+       60	5046	6606	1117	892	*	0	7627	1215	1088	
+
+G 219  5339	*	5773	5683	*	277	*	6433	*	*	*	5948	6813	*	6438	4728	5937	6653	*	*	219
+       2911	*	206	*	*	*	0	7621	0	1180	
+
+N 220  3661	*	*	3595	*	*	*	*	*	1793	*	1548	4151	*	*	*	2722	*	*	*	220
+       986	1535	2739	0	*	*	0	4357	1376	6431	
+
+A 221  3407	*	3375	2601	*	3427	*	*	3109	*	*	3441	*	*	*	3350	2026	*	*	*	221
+       143	3406	*	1000	1000	41	5151	4059	1011	6488	
+
+A 222  4214	*	3298	3767	7312	2259	5616	6251	5323	5007	7300	3433	*	3476	4722	3461	3862	4587	*	4709	222
+       169	4311	4058	1848	469	1639	559	7573	1361	1164	
+
+E 223  3248	5328	4590	5411	3919	4748	4359	6153	6919	2448	*	4025	4201	4309	7130	2845	5678	4208	6969	4239	223
+       34	6039	7002	0	*	1842	472	7462	1069	1656	
+
+F 224  3327	5007	4637	*	4240	4535	6909	3947	5127	3904	4398	6490	7258	*	5979	2810	2984	3388	4374	3821	224
+       48	4921	*	556	1646	*	0	7513	1239	1531	
+
+E 225  3427	7136	3221	1915	*	5612	5330	*	6809	*	*	4169	7317	1836	*	3716	7102	4382	*	*	225
+       0	*	*	*	*	1294	756	7513	0	1531	
+
+T 226  4333	*	6186	4619	4548	4930	6121	3916	3364	2522	7217	3457	*	6545	4448	3635	2522	5318	*	4848	226
+       23	5961	*	1336	727	292	2450	7487	1072	1289	
+
+H 227  7061	5178	*	*	4880	*	837	6810	*	6670	*	3647	6823	3251	4712	7246	5976	4001	*	4819	227
+       0	*	*	*	*	*	0	7506	0	1000	
+
+D 228  5281	4712	2214	3229	4017	4963	5184	6109	5573	5535	6933	3638	*	3721	3879	3923	4200	6004	*	3892	228
+       13	*	6765	*	*	*	0	7490	0	1000	
+
+V 229  *	*	*	*	5893	*	*	986	*	2736	*	*	*	*	*	*	*	1607	*	*	229
+       14	*	6656	*	*	*	0	7456	0	1075	
+
+L 230  6907	*	5769	5050	5790	5447	3883	3280	4924	1325	6883	5454	*	7014	3476	5891	6992	4821	7348	3260	230
+       0	*	*	4322	74	625	1508	7392	1000	1159	
+
+S 231  4017	*	3732	4632	*	3451	7048	*	5279	5707	*	3998	*	7140	4376	1291	4372	6732	4218	4619	231
+       0	*	*	*	*	0	*	7441	0	1008	
+
+W 232  6990	4969	*	*	3559	6821	*	6505	*	5450	*	*	*	6721	6338	*	*	4384	390	*	232
+       0	*	*	*	*	*	*	7364	0	0	
+
+Y 233  4178	6853	4598	2988	5891	7293	*	*	5049	*	*	3240	*	5565	4443	1393	3733	6210	*	3778	233
+       0	*	*	*	*	*	*	7342	0	0	
+
+F 234  *	6763	*	*	553	*	*	4956	*	2691	6363	*	*	6192	*	*	4592	6707	6672	4816	234
+       0	*	*	*	*	*	*	7190	0	0	
+
+T 235  5047	5003	7221	4428	*	5529	5288	*	3500	5481	6633	3401	*	4414	3717	2252	2388	4458	*	4230	235
+       0	*	*	*	*	*	*	7153	0	0	
+
+S 236  3998	6127	4631	4526	*	5434	*	4185	*	4066	4354	3805	*	*	*	1578	2789	3303	*	*	236
+       49	*	4917	*	*	*	*	7128	0	0	
+
+N 237  5114	*	5069	4361	5964	5843	*	*	2998	5857	*	3358	*	5057	4107	2003	2294	5695	*	4097	237
+       26	5833	*	0	*	910	1096	6194	1000	1084	
+
+L 238  *	*	5444	*	3018	4371	*	5570	*	913	3883	*	*	*	4277	5320	*	5804	5566	3846	238
+       90	4050	*	1627	564	0	*	5904	1072	1000	
+
+E 239  5147	*	3423	2059	*	4792	5303	4481	3957	*	*	5128	2761	3405	5063	5120	3308	4721	*	*	239
+       234	2742	*	0	*	*	*	5356	1002	0	
+
+A 240  2512	*	*	*	*	*	*	*	*	*	*	2541	*	*	*	1556	1677	*	*	*	240
+       0	*	*	*	*	*	*	2708	0	0	
+
+N 241  *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	241
+       0	*	*	*	*	*	*	1000	0	0	
+
+N 242  *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	242
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  0a209425cf52d1e9fc937e5aed5d7d69
+FAM   
+FILE  0a209425cf52d1e9fc937e5aed5d7d69
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:45:15 2013
+LENG  169 match states, 169 columns in multiple alignment
+FILT  10 out of 12 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  2.5 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCHHHHHHHHHHHHHHHHHHHHHHHHHHHHCCCCCCCCHHHHHHHHHHHHHHHHHHHHHHHHHCCHHHHHHHCCCCCCHHHHHHHHHHHHH
+HCCCHHHHHHHHHHHHHHCCCCCCCEEECCCCHHHHHHHHHHHCCCCCCCCCHHHHHHHCCCEEEEECC
+>ss_conf PSIPRED confidence values
+9866645789517999999998711999999999999971797654276665689999999999999866034499997612767679999999999998
+756988999999999986699877520123027999999986038751248679999970976976059
+>Consensus
+mxxxxxihxnpxRxeWxxKIaxLxtxxxaxaxlxdFRxxxtsPfrxsyxldxdxxwIExkIEervavLkxxxxxdxxllxkxxxGxdaxxVxxxxxakxx
+axxdxyEaErIxixFRxxxKPPvmPvNxFlxtdrxLgtkLMelRnxdYyxxpLeeLRkxRGvxvixlqx
+>0a209425cf52d1e9fc937e5aed5d7d69
+MAKREPIHDNSIRTEWEAKIAKLTSVDQATKFIQDFRLAYTSPFRKSYDIDVDYQYIERKIEEKLSVLKTEKLPVADLITKATTGEDAAAVEATWIAKIK
+AAKSKYEAEAIHIEFRQLYKPPVLPVNVFLRTDAALGTVLMEIRNTDYYGTPLEGLRKERGVKVLHLQA
+>gi|269980465|gb|ACZ56338.1| putative soluble di-iron monooxygenase gamma subunit [Mycobacterium chubuense NBB4]
+-----madetrsgrrrargqesvgaefrlepsPYGNTALRSDWAARAESLSDLDDAVATLMNYRSDR------wg--SEDQDSLWIEARLEERVAVLR-l
+QSMTDEEFRTRTLTGEDARHVCTDVAGRVAAAGDDYgEIERINDEFRSKYKPPVMPANLFLPTERDLSEKLMKTRTVDWYGKSLGELREERGVV------
+>gi|217977449|ref|YP_002361596.1| methane monooxygenase [Methylocella silvestris BL2]gi|74381912|emb|CAJ26294.1| protein A-gamma subunit of soluble methane monooxygenase [Methylocella silvestris BL2]gi|217502825|gb|ACK50234.1| Methane monooxygenase [Methylocella silvestris BL2]
+MPNYK-IHENPVRSDWLEKIAELKSVKDATAFIQDFRKKNTSPFRTSYALDVDYLFIEAKIEERLAVLKSSTFSAADLFTKATTGETAQAVSEDWIAKID
+AEKDKFAAEKILITFRQLYKPPVLPVNLFFKVDTYLGSRLMELRNTDYYADSLDDLRKKRGVKVLRLGN
+>gi|53804672|ref|YP_113663.1| methane monooxygenase subunit A, gamma chain [Methylococcus capsulatus str. Bath]gi|19855848|sp|P11987.4|MEMG_METCA RecName: Full=Methane monooxygenase component A gamma chain; AltName: Full=Methane hydroxylasegi|13399579|pdb|1FZ4|E Chain E, Methane Monooxygenase Hydroxylase, Form Iii Soaked At Ph 8.5 (0.1 M Tris)gi|13399580|pdb|1FZ4|F Chain F, Methane Monooxygenase Hydroxylase, Form Iii Soaked At Ph 8.5 (0.1 M Tris)gi|13399585|pdb|1FZ5|E Chain E, Methane Monooxygenase Hydroxylase, Form Ii Crystallized Anaerobically From Reduced Enzymegi|13399586|pdb|1FZ5|F Chain F, Methane Monooxygenase Hydroxylase, Form Ii Crystallized Anaerobically From Reduced Enzymegi|13399591|pdb|1FZ7|E Chain E, Methane Monooxygenase Hydroxylase, Form Iii Soaked In 0.9 M Ethanolgi|13399592|pdb|1FZ7|F Chain F, Methane Monooxygenase Hydroxylase, Form Iii Soaked In 0.9 M Ethanolgi|13399724|pdb|1FYZ|E Chain E, Methane Monooxygenase Hydroxylase, Form Ii Reduced By Soakinggi|13399725|pdb|1FYZ|F Chain F, Methane Monooxygenase Hydroxylase, Form Ii Reduced By Soakinggi|13399730|pdb|1FZ0|E Chain E, Methane Monooxygenase Hydroxylase, Form Ii Mixed-Valent Grown Anaerobicallygi|13399731|pdb|1FZ0|F Chain F, Methane Monooxygenase Hydroxylase, Form Ii Mixed-Valent Grown Anaerobicallygi|13399736|pdb|1FZ1|E Chain E, Methane Monooxygenase Hydroxylase, Form Iii Oxidizedgi|13399737|pdb|1FZ1|F Chain F, Methane Monooxygenase Hydroxylase, Form Iii Oxidizedgi|13399742|pdb|1FZ2|E Chain E, Methane Monooxygenase Hydroxylase, Form Ii Mixed-Valent Generated By Crystal Soakinggi|13399743|pdb|1FZ2|F Chain F, Methane Monooxygenase Hydroxylase, Form Ii Mixed-Valent Generated By Crystal Soakinggi|13399748|pdb|1FZ3|E Chain E, Methane Monooxygenase Hydroxylase, Form Iii Soak At Ph 6.2 (0.1 M Pipes)gi|13399749|pdb|1FZ3|F Chain F, Methane Monooxygenase Hydroxylase, Form Iii Soak At Ph 6.2 (0.1 M Pipes)gi|14278259|pdb|1FZ6|E Chain E, Methane Monooxygenase Hydroxylase, Form Ii Soaked In 1 M Methanolgi|14278260|pdb|1FZ6|F Chain F, Methane Monooxygenase Hydroxylase, Form Ii Soaked In 1 M Methanolgi|14278265|pdb|1FZ8|E Chain E, Methane Monooxygenase Hydroxylase, Form Ii Cocrystallized With Dibromomethanegi|14278266|pdb|1FZ8|F Chain F, Methane Monooxygenase Hydroxylase, Form Ii Cocrystallized With Dibromomethanegi|14278271|pdb|1FZ9|E Chain E, Methane Monooxygenase Hydroxylase, Form Ii Cocrystallized With Iodoethanegi|14278272|pdb|1FZ9|F Chain F, Methane Monooxygenase Hydroxylase, Form Ii Cocrystallized With Iodoethanegi|14278277|pdb|1FZH|E Chain E, Methane Monooxygenase Hydroxylase, Form Ii Pressurized With Xenon Gasgi|14278278|pdb|1FZH|F Chain F, Methane Monooxygenase Hydroxylase, Form Ii Pressurized With Xenon Gasgi|14278283|pdb|1FZI|E Chain E, Methane Monooxygenase Hydroxylase, Form I Pressurized With Xenon Gasgi|14278284|pdb|1FZI|F Chain F, Methane Monooxygenase Hydroxylase, Form I Pressurized With Xenon Gasgi|66360573|pdb|1XU5|E Chain E, Soluble Methane Monooxygenase Hydroxylase-Phenol Soakedgi|66360574|pdb|1XU5|F Chain F, Soluble Methane Monooxygenase Hydroxylase-Phenol Soakedgi|66360581|pdb|1XVB|E Chain E, Soluble Methane Monooxygenase Hydroxylase: 6-Bromohexanol Soaked Structuregi|66360582|pdb|1XVB|F Chain F, Soluble Methane Monooxygenase Hydroxylase: 6-Bromohexanol Soaked Structuregi|66360587|pdb|1XVC|E Chain E, Soluble Methane Monooxygenase Hydroxylase: 8-Bromooctanol Soaked Structuregi|66360588|pdb|1XVC|F Chain F, Soluble Methane Monooxygenase Hydroxylase: 8-Bromooctanol Soaked Structuregi|66360593|pdb|1XVD|E Chain E, Soluble Methane Monooxygenase Hydroxylase: 4-Fluorophenol Soaked Structuregi|66360594|pdb|1XVD|F Chain F, Soluble Methane Monooxygenase Hydroxylase: 4-Fluorophenol Soaked Structuregi|66360601|pdb|1XVE|E Chain E, Soluble Methane Monooxygenase Hydroxylase: 3-Bromo-3- Butenol Soaked Structuregi|66360602|pdb|1XVE|F Chain F, Soluble Methane Monooxygenase Hydroxylase: 3-Bromo-3- Butenol Soaked Structuregi|66360607|pdb|1XVF|E Chain E, Soluble Methane Monooxygenase Hydroxylase: Chloropropanol Soaked Structuregi|66360608|pdb|1XVF|F Chain F, Soluble Methane Monooxygenase Hydroxylase: Chloropropanol Soaked Structuregi|66360613|pdb|1XVG|E Chain E, Soluble Methane Monooxygenase Hydroxylase: Bromoethanol Soaked Structuregi|66360614|pdb|1XVG|F Chain F, Soluble Methane Monooxygenase Hydroxylase: Bromoethanol Soaked Structuregi|67464472|pdb|1XU3|E Chain E, Soluble Methane Monooxygenase Hydroxylase-Soaked With Bromophenolgi|67464473|pdb|1XU3|F Chain F, Soluble Methane Monooxygenase Hydroxylase-Soaked With Bromophenolgi|7770067|gb|AAF04157.2| soluble methane monooxygenase hydroxylase component gamma subunit [Methylococcus capsulatus]gi|53758433|gb|AAU92724.1| methane monooxygenase, A subunit, gamma chain [Methylococcus capsulatus str. Bath]
+-----MaklgIHSNDTRDAWVNKIAQLNTLEKAAEMLKQFRMDHTTPFRNSYELDNDYLWIEAKLEEKVAVLKARAFNEVDFRHKTAFGEDAKSVLDGTV
+AKMNAAKDKWEAEKIHIGFRQAYKPPIMPVNYFLDGERQLGTRLMELRNLNYYDTPLEELRKQRGVRVVHLQspH
+>gi|2098698|gb|AAC45292.1| soluble methane monooxygenase protein A gamma subunit [Methylocystis sp. M]
+MAKREPIHENSTRTEWEGKIAKLNSVEQATKFIQDFRVAYSSPFRKSYDLDVDYQYIERKIEERLSVLKTEKLSVADLITKATTGEDPAAVEATWVAKMK
+SAASKYEAERIHIEFRQLYKPPVLPVNVFLRTDAALGTILMGVRNTDYYATPLEGLRKERGVKVLHLQA
+>gi|41019262|gb|AAR98537.1| butane monooxygenase gamma subunit [Brachymonas petroleovorans]
+MMAEH-WYHTPVRDEWLEKIAALRTVQEGIAMLQQFRKEHTGPDRLTYELKKEANWIESRIEMRVAQLHSEaTIANAALLEKTIDGRDPVEITEEWLKKA
+EDIDCPIEMQRLCTAYRKAWKPPMMPINYFAPVEKKLVSKLLKLRAPNYLTTPVEELRKLHNATLISVQ-
+>gi|89572585|dbj|BAE86878.1| methane monooxygenase hydroxylase component gamma subunit [Methylomicrobium japanense]
+------manykIHDNPVRDEWVKKIGALSSLAKGVQFLKDFREQYTTPLRKSFDLELDWGWIELKIEQKLALLKHKEMNDAQILNKNADGTDAQQLANQV
+LASMDRCNDKWEAEKIHIQFRQQWKPPLMPVNVFQDTDRLLGNKLMELRNANYYDMPLEELRKARGVNVVTLQ-
+>gi|333983360|ref|YP_004512570.1| methane monooxygenase [Methylomonas methanica MC09]gi|333807401|gb|AEG00071.1| Methane monooxygenase [Methylomonas methanica MC09]
+------manIHDNPTRNAWMAKIATLDTMAKAHAFLTDFRARHMSPFKTDWSLELDGLWIELKIEEKLALLKHKEFNDSQLLNNCSCGADAQQVANAAIA
+KMEACEDMYEAERIHINFRLACKPPVMPVNVFLDTDRQLGTKLMELRNTDYYALPLEALREKRGAKVIRLQ-
+>gi|306921974|dbj|BAJ17648.1| soluble methane monooxygenase hydroxylase component gamma-subunit [Methylovulum miyakonense]
+------mpnIHDNPKRAEWANKIAGLKTLAQGHAFLKDFRAQHVSVFKTDFSLELDWLWIELKIEEKVAVLKQAEFSDHQLLNVCTCGTDAQKVANDALA
+AMAACEDMYEAERIHINFRLACKPPVMPVNVFLDTDRQLGTKLMELRNTDYYALPLEELRKARGVRVVTLQ-
+>gi|21239749|gb|AAM19730.1| butane monooxygenase hydroxylase BMOH gamma subunit [Thauera butanivorans]
+MSKQV-WYNTPVRDEWIEKITAIRTAREGTDMLARFRAEHTGPDRTTYDLKKEYNWIESRIEMRVSQLHAEaTASDEDLLTKTIDGRCAKEVAAEWLKKA
+ADIDCHYEMERLCVAFRKACKPPMMPINFFAPAEKELVAKLMKLRAPTYLTTSLDELREARGVTMISVQ-
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1969	0	0	
+
+A 2    1509	*	*	*	*	*	*	*	*	*	2133	*	2282	*	*	2218	*	*	*	*	2
+       0	*	*	*	*	*	*	1969	0	0	
+
+K 3    2133	*	*	*	*	*	*	*	820	*	*	2282	*	*	*	*	*	*	*	*	3
+       0	*	*	*	*	*	*	1969	0	0	
+
+R 4    *	*	*	2133	*	*	*	*	*	*	*	*	*	2218	1509	*	*	*	*	2282	4
+       0	*	*	*	*	*	*	1969	0	0	
+
+E 5    *	*	*	1509	*	*	2133	*	2282	*	*	*	*	*	*	*	*	2218	*	*	5
+       1509	*	625	4755	54	*	*	1969	1063	0	
+
+P 6    *	*	*	*	*	*	*	*	*	*	1880	*	457	*	*	*	*	*	*	*	6
+       457	1880	*	1926	441	0	*	1799	1404	1388	
+
+I 7    *	*	*	*	*	*	*	680	*	*	*	*	*	*	*	*	*	*	2040	2913	7
+       0	*	*	*	*	*	*	2534	0	0	
+
+H 8    *	*	*	*	*	2913	680	*	*	*	*	*	*	*	*	*	*	*	*	2040	8
+       0	*	*	*	*	*	*	2534	0	0	
+
+D 9    *	*	1519	2470	*	*	2944	*	*	*	*	2023	*	*	*	3400	*	*	*	*	9
+       0	*	*	*	*	*	*	2534	0	0	
+
+N 10   *	*	*	*	*	*	*	*	*	*	*	680	*	*	*	*	1411	*	*	*	10
+       0	*	*	*	*	*	*	2534	0	0	
+
+S 11   2913	*	3400	*	*	*	*	*	*	*	*	*	717	*	*	2606	*	*	*	*	11
+       0	*	*	*	*	*	*	2534	0	0	
+
+I 12   *	*	*	*	*	*	*	3614	3600	2913	*	*	*	*	*	*	1915	1191	*	*	12
+       0	*	*	*	*	*	*	2534	0	0	
+
+R 13   *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	13
+       0	*	*	*	*	*	*	2534	0	0	
+
+T 14   3600	*	1202	*	*	*	*	*	*	*	*	3510	*	*	*	2116	2606	*	*	*	14
+       0	*	*	*	*	*	*	2534	0	0	
+
+E 15   2454	*	2116	769	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	15
+       0	*	*	*	*	*	*	2534	0	0	
+
+W 16   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	16
+       0	*	*	*	*	*	*	2534	0	0	
+
+E 17   2216	*	*	2606	*	*	*	3143	*	2134	3510	*	*	*	*	*	*	2384	*	*	17
+       0	*	*	*	*	*	*	2534	0	0	
+
+A 18   1726	*	*	1552	*	3598	*	*	3367	*	*	2497	*	*	*	*	*	*	*	*	18
+       0	*	*	*	*	*	*	2534	0	0	
+
+K 19   *	*	*	*	*	*	*	*	206	*	*	*	*	*	2913	*	*	*	*	*	19
+       0	*	*	*	*	*	*	2534	0	0	
+
+I 20   2913	*	*	*	*	*	*	206	*	*	*	*	*	*	*	*	*	*	*	*	20
+       0	*	*	*	*	*	*	2534	0	0	
+
+A 21   606	*	*	2913	*	3367	*	*	*	*	*	*	*	*	*	*	3143	*	*	*	21
+       0	*	*	*	*	*	*	2534	0	0	
+
+K 22   1556	*	*	3353	*	3600	*	*	2606	*	*	*	*	3400	*	2913	3510	*	*	*	22
+       0	*	*	*	*	*	*	2534	0	0	
+
+L 23   *	*	*	*	*	*	*	3143	*	173	*	*	*	*	*	*	*	*	*	*	23
+       0	*	*	*	*	*	*	2534	0	0	
+
+T 24   *	*	3510	*	*	*	*	*	2471	*	*	2496	*	*	2040	2122	3614	*	*	*	24
+       0	*	*	*	*	*	*	2534	0	0	
+
+S 25   *	*	2913	*	*	*	*	*	*	*	*	*	*	*	*	1478	977	*	*	*	25
+       0	*	*	*	*	*	*	2534	0	0	
+
+V 26   3143	*	*	*	*	*	*	*	*	1297	3510	*	*	*	*	*	*	1351	*	*	26
+       0	*	*	*	*	*	*	2534	0	0	
+
+D 27   1904	*	2221	2496	*	*	*	*	3353	*	*	*	*	2944	3143	*	*	*	*	*	27
+       0	*	*	*	*	*	*	2534	0	0	
+
+Q 28   *	*	2116	2040	*	*	*	*	1839	*	*	*	*	2019	*	*	*	*	*	*	28
+       0	*	*	*	*	*	*	2534	0	0	
+
+A 29   792	*	*	*	*	1243	*	*	*	*	*	*	*	*	*	*	*	*	*	*	29
+       0	*	*	*	*	*	*	2534	0	0	
+
+T 30   3400	*	*	*	*	*	2554	2944	*	*	*	*	*	*	*	*	1414	2122	*	*	30
+       0	*	*	*	*	*	*	2534	0	0	
+
+K 31   913	*	3143	3400	*	*	*	*	2606	*	*	*	*	3367	*	*	*	*	*	*	31
+       0	*	*	*	*	*	*	2534	0	0	
+
+F 32   *	*	*	*	918	*	*	*	*	*	1565	*	*	*	*	*	2913	*	*	*	32
+       0	*	*	*	*	*	*	2534	0	0	
+
+I 33   *	*	*	*	*	*	*	1931	*	439	*	*	*	*	*	*	*	*	*	*	33
+       0	*	*	*	*	*	*	2534	0	0	
+
+Q 34   3143	*	*	*	*	*	*	*	1867	*	2913	*	*	1351	*	*	3510	*	*	*	34
+       0	*	*	*	*	*	*	2534	0	0	
+
+D 35   *	*	918	*	*	*	*	*	*	*	*	2913	*	2154	3143	*	*	*	*	*	35
+       0	*	*	*	*	*	*	2534	0	0	
+
+F 36   *	*	*	*	206	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2913	36
+       0	*	*	*	*	*	*	2534	0	0	
+
+R 37   *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	37
+       0	*	*	*	*	*	*	2534	0	0	
+
+L 38   1819	*	*	3367	*	*	*	*	2134	3614	3400	*	*	*	*	2913	*	3598	*	*	38
+       0	*	*	*	*	*	*	2534	0	0	
+
+A 39   2606	*	2136	2040	*	*	*	*	3353	*	*	*	*	2479	3510	*	*	*	*	*	39
+       0	*	*	*	*	*	*	2534	0	0	
+
+Y 40   *	*	*	*	*	*	977	*	*	*	*	3353	*	*	2913	*	*	*	*	1937	40
+       206	*	2913	*	*	*	*	2534	0	0	
+
+T 41   *	*	*	*	*	*	*	*	*	*	3325	*	*	*	*	3416	492	3392	*	*	41
+       0	*	*	*	*	*	0	2342	0	1063	
+
+S 42   *	*	*	*	*	1840	*	*	*	*	*	*	*	*	*	1006	2167	*	*	*	42
+       0	*	*	*	*	*	0	2342	0	1063	
+
+P 43   *	*	*	*	*	*	*	*	*	*	*	*	144	*	*	*	*	3392	*	*	43
+       0	*	*	*	*	*	0	2342	0	1063	
+
+F 44   *	*	1840	*	715	*	*	*	*	3168	*	*	*	*	*	*	*	*	*	*	44
+       0	*	*	*	*	*	0	2342	0	1063	
+
+R 45   *	*	*	*	*	*	*	*	2358	*	*	*	*	*	313	*	*	*	*	*	45
+       0	*	*	*	*	*	0	2342	0	1063	
+
+K 46   *	*	*	*	*	*	*	*	1735	2770	*	3165	*	*	*	*	1179	*	*	*	46
+       0	*	*	1000	1000	*	0	2342	1063	1063	
+
+S 47   *	*	2358	*	*	*	*	*	*	*	*	*	*	*	*	928	1840	*	*	*	47
+       0	*	*	*	*	*	0	2342	0	1063	
+
+Y 48   *	*	*	*	2276	*	*	*	*	*	*	*	*	*	*	*	*	*	3325	528	48
+       0	*	*	*	*	0	*	2342	0	1063	
+
+D 49   3353	*	1417	2154	*	*	*	*	*	*	*	*	*	*	*	1722	*	*	*	*	49
+       0	*	*	*	*	*	*	2534	0	0	
+
+I 50   *	*	*	2913	*	*	*	3614	*	348	*	*	*	*	*	*	*	*	*	*	50
+       0	*	*	*	*	*	*	2534	0	0	
+
+D 51   *	*	1030	1904	*	*	*	*	2040	*	*	*	*	*	*	*	*	*	*	*	51
+       0	*	*	*	*	*	*	2534	0	0	
+
+V 52   *	*	*	*	*	*	*	*	2040	1904	*	3400	*	2913	*	*	*	1931	*	*	52
+       0	*	*	*	*	*	*	2534	0	0	
+
+D 53   *	*	402	2040	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	53
+       0	*	*	*	*	*	*	2534	0	0	
+
+Y 54   2944	*	*	*	*	3510	*	*	*	*	*	*	*	*	*	2913	*	*	2479	1089	54
+       0	*	*	*	*	*	*	2534	0	0	
+
+Q 55   *	*	*	*	*	3367	*	*	*	1013	*	2040	*	2606	*	*	*	*	*	*	55
+       0	*	*	*	*	*	*	2534	0	0	
+
+Y 56   *	*	*	*	3353	*	*	*	*	*	*	*	*	*	*	*	*	*	439	2606	56
+       0	*	*	*	*	*	*	2534	0	0	
+
+I 57   *	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	57
+       0	*	*	*	*	*	*	2534	0	0	
+
+E 58   *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	58
+       0	*	*	*	*	*	*	2534	0	0	
+
+R 59   1620	*	*	*	*	*	*	*	*	1904	*	*	*	*	2606	2040	*	*	*	*	59
+       0	*	*	*	*	*	*	2534	0	0	
+
+K 60   *	*	*	*	*	*	*	*	680	*	*	*	*	*	1411	*	*	*	*	*	60
+       0	*	*	*	*	*	*	2534	0	0	
+
+I 61   *	*	*	*	*	*	*	372	*	2136	*	*	*	*	*	*	*	*	*	*	61
+       0	*	*	*	*	*	*	2534	0	0	
+
+E 62   *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	62
+       0	*	*	*	*	*	*	2534	0	0	
+
+E 63   *	*	*	600	*	*	*	*	*	*	2040	*	*	3367	*	*	*	*	*	*	63
+       0	*	*	*	*	*	*	2534	0	0	
+
+K 64   *	*	*	*	*	*	*	*	1173	*	*	*	*	*	846	*	*	*	*	*	64
+       0	*	*	*	*	*	*	2534	0	0	
+
+L 65   *	*	*	*	*	*	*	*	*	1162	*	*	*	*	*	*	*	854	*	*	65
+       0	*	*	*	*	*	*	2534	0	0	
+
+S 66   469	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1850	*	*	*	*	66
+       0	*	*	*	*	*	*	2534	0	0	
+
+V 67   *	*	*	*	*	*	*	*	*	2437	*	*	*	2040	*	*	*	806	*	*	67
+       0	*	*	*	*	*	*	2534	0	0	
+
+L 68   *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	68
+       0	*	*	*	*	*	*	2534	0	0	
+
+K 69   *	*	*	*	*	*	2040	*	680	*	*	*	*	*	2913	*	*	*	*	*	69
+       206	*	2913	*	*	*	*	2534	0	0	
+
+T 70   2033	*	*	*	*	*	2244	*	*	*	*	*	*	3392	*	1942	2403	*	*	*	70
+       0	*	*	0	*	0	*	2342	1063	1063	
+
+E 71   3600	*	*	1295	*	*	*	*	2437	*	*	*	*	2913	3400	3353	*	*	*	*	71
+       402	2040	*	0	*	*	*	2534	1229	0	
+
+K 72   3400	*	*	1904	*	*	*	*	2606	*	*	*	*	*	*	2913	1552	*	*	*	72
+       0	*	*	*	*	*	*	2534	0	0	
+
+L 73   3143	*	*	*	1463	*	*	2944	*	2606	2122	*	*	*	*	*	*	*	*	*	73
+       0	*	*	*	*	*	*	2534	0	0	
+
+P 74   2944	*	*	*	*	*	*	*	*	*	*	1839	3614	*	*	1411	2913	*	*	*	74
+       0	*	*	*	*	*	*	2534	0	0	
+
+V 75   3353	*	963	3400	*	*	*	*	*	*	*	2944	*	*	*	*	*	2606	*	*	75
+       0	*	*	*	*	*	*	2534	0	0	
+
+A 76   1032	*	*	2023	*	*	3600	*	*	*	*	*	*	*	*	3510	*	3400	*	*	76
+       0	*	*	*	*	*	*	2534	0	0	
+
+D 77   2944	*	1089	2913	*	*	*	*	*	*	*	*	*	1904	*	*	*	*	*	*	77
+       0	*	*	*	*	*	*	2534	0	0	
+
+L 78   *	*	*	*	2136	*	*	3367	*	566	*	*	*	*	*	*	*	*	*	*	78
+       0	*	*	*	*	*	*	2534	0	0	
+
+I 79   *	*	*	*	3353	*	*	2606	*	970	*	*	*	*	2136	*	*	*	*	*	79
+       0	*	*	*	*	*	*	2534	0	0	
+
+T 80   *	*	*	2944	*	*	3400	*	*	*	*	1904	*	*	*	*	977	*	*	*	80
+       0	*	*	*	*	*	*	2534	0	0	
+
+K 81   *	*	*	*	*	*	*	*	521	*	*	3510	*	*	2913	*	*	3600	*	*	81
+       0	*	*	*	*	*	*	2534	0	0	
+
+A 82   1931	2554	*	*	*	*	*	*	*	*	*	3367	*	*	*	*	1087	*	*	*	82
+       0	*	*	*	*	*	*	2534	0	0	
+
+T 83   2384	*	*	*	*	*	*	2040	*	2913	*	*	*	*	*	3510	1537	*	*	*	83
+       0	*	*	*	*	*	*	2534	0	0	
+
+T 84   *	2554	1556	*	3400	*	*	*	*	*	*	*	*	*	*	*	1340	*	*	*	84
+       0	*	*	*	*	*	*	2534	0	0	
+
+G 85   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	85
+       0	*	*	*	*	*	*	2534	0	0	
+
+E 86   3510	*	*	1030	*	*	*	*	*	*	*	*	*	*	2040	*	2479	*	*	*	86
+       0	*	*	*	*	*	*	2534	0	0	
+
+D 87   *	3143	342	*	*	*	*	*	*	*	*	*	*	*	*	*	3353	*	*	*	87
+       0	*	*	*	*	*	*	2534	0	0	
+
+A 88   345	*	*	*	*	*	*	*	*	*	*	*	2234	*	*	*	*	*	*	*	88
+       0	*	*	*	*	*	*	2534	0	0	
+
+A 89   2606	*	*	*	*	*	*	*	2266	*	*	*	*	1454	2913	*	*	2944	*	*	89
+       0	*	*	*	*	*	*	2534	0	0	
+
+A 90   1931	*	*	2040	*	*	2913	*	3600	*	*	*	*	2437	*	3400	*	*	*	*	90
+       0	*	*	*	*	*	*	2534	0	0	
+
+V 91   *	*	*	*	*	*	*	2944	*	3367	*	*	*	*	*	*	*	371	*	*	91
+       0	*	*	*	*	*	*	2534	0	0	
+
+E 92   1395	2913	*	2606	*	*	*	*	*	3400	*	*	*	*	*	3353	2944	*	*	*	92
+       0	*	*	*	*	*	*	2534	0	0	
+
+A 93   1850	*	3400	2134	*	*	*	*	*	*	*	1904	*	*	*	*	2913	*	*	*	93
+       0	*	*	*	*	*	*	2534	0	0	
+
+T 94   3510	*	1675	2040	*	3400	*	*	*	*	*	*	*	3367	*	*	2606	*	*	*	94
+       0	*	*	*	*	*	*	2534	0	0	
+
+W 95   2554	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	3400	2122	985	*	95
+       0	*	*	*	*	*	*	2534	0	0	
+
+I 96   2913	*	*	*	*	*	*	1903	*	1243	*	*	*	*	*	*	*	2496	*	*	96
+       0	*	*	*	*	*	*	2534	0	0	
+
+A 97   680	*	*	*	*	2913	*	*	2040	*	*	*	*	*	*	*	*	*	*	*	97
+       0	*	*	*	*	*	*	2534	0	0	
+
+K 98   3600	*	*	*	*	*	*	*	540	*	*	*	*	*	2913	3367	*	*	*	*	98
+       0	*	*	*	*	*	*	2534	0	0	
+
+I 99   2040	*	*	*	*	*	*	2477	*	*	1170	*	*	*	*	*	*	2913	*	*	99
+       0	*	*	*	*	*	*	2534	0	0	
+
+K 100  1606	*	2360	2199	*	*	*	*	2606	*	*	3400	*	*	*	*	*	*	*	*	100
+       0	*	*	*	*	*	*	2534	0	0	
+
+A 101  792	*	2040	*	*	*	*	*	*	*	*	*	*	*	3367	3598	*	*	*	*	101
+       0	*	*	*	*	*	*	2534	0	0	
+
+A 102  1352	1904	*	3353	*	*	*	2040	*	*	*	*	*	*	*	*	*	*	*	*	102
+       0	*	*	*	*	*	*	2534	0	0	
+
+K 103  3598	*	2040	2554	*	2913	*	*	1866	*	*	3367	*	*	*	*	*	*	*	*	103
+       0	*	*	*	*	*	*	2534	0	0	
+
+S 104  *	2040	755	*	*	*	*	*	*	*	*	*	*	*	*	2606	*	*	*	*	104
+       0	*	*	*	*	*	*	2534	0	0	
+
+K 105  *	*	2913	*	*	*	3143	*	1140	*	2554	*	2944	*	*	*	*	*	*	*	105
+       0	*	*	*	*	*	*	2534	0	0	
+
+Y 106  *	*	*	*	3353	*	*	2944	*	*	*	*	*	*	*	*	*	*	2384	785	106
+       206	2913	*	0	*	*	*	2534	1063	0	
+
+E 107  3353	*	*	149	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	107
+       0	*	*	*	*	*	*	2534	0	0	
+
+A 108  680	*	*	*	*	*	*	2913	*	*	2040	*	*	*	*	*	*	*	*	*	108
+       0	*	*	*	*	*	*	2534	0	0	
+
+E 109  *	*	*	201	*	*	*	*	*	*	*	*	*	2944	*	*	*	*	*	*	109
+       0	*	*	*	*	*	*	2534	0	0	
+
+A 110  3614	*	*	*	*	*	*	*	1788	*	*	*	*	*	669	*	*	*	*	*	110
+       0	*	*	*	*	*	*	2534	0	0	
+
+I 111  *	*	*	*	*	*	*	402	*	2040	*	*	*	*	*	*	*	*	*	*	111
+       0	*	*	*	*	*	*	2534	0	0	
+
+H 112  *	2040	*	*	*	*	926	*	*	3353	*	2913	*	*	*	*	*	*	*	*	112
+       0	*	*	*	*	*	*	2534	0	0	
+
+I 113  *	*	2913	*	*	*	*	680	*	*	*	*	*	*	*	*	2944	3143	*	*	113
+       0	*	*	*	*	*	*	2534	0	0	
+
+E 114  2040	*	*	1751	*	3400	*	*	*	*	*	2554	*	3367	*	*	3353	*	*	*	114
+       0	*	*	*	*	*	*	2534	0	0	
+
+F 115  *	*	*	*	201	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2944	115
+       0	*	*	*	*	*	*	2534	0	0	
+
+R 116  *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	116
+       0	*	*	*	*	*	*	2534	0	0	
+
+Q 117  *	*	*	*	*	*	*	*	2040	2554	*	*	*	1140	*	2913	*	*	*	*	117
+       0	*	*	*	*	*	*	2534	0	0	
+
+L 118  977	*	*	*	*	*	*	*	2913	1931	*	*	*	3367	*	*	*	*	*	*	118
+       0	*	*	*	*	*	*	2534	0	0	
+
+Y 119  *	1819	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2140	1030	119
+       0	*	*	*	*	*	*	2534	0	0	
+
+K 120  *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	120
+       0	*	*	*	*	*	*	2534	0	0	
+
+P 121  *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	121
+       0	*	*	*	*	*	*	2534	0	0	
+
+P 122  *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	122
+       0	*	*	*	*	*	*	2534	0	0	
+
+V 123  *	*	*	*	*	*	*	3400	*	3367	2040	*	*	*	*	*	*	823	*	*	123
+       0	*	*	*	*	*	*	2534	0	0	
+
+L 124  *	*	*	*	*	*	*	*	*	1931	439	*	*	*	*	*	*	*	*	*	124
+       0	*	*	*	*	*	*	2534	0	0	
+
+P 125  *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	125
+       0	*	*	*	*	*	*	2534	0	0	
+
+V 126  2913	*	*	*	*	*	*	2040	*	*	*	*	*	*	*	*	*	680	*	*	126
+       0	*	*	*	*	*	*	2534	0	0	
+
+N 127  *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	127
+       0	*	*	*	*	*	*	2534	0	0	
+
+V 128  *	*	*	*	3143	*	*	*	*	2116	*	*	*	*	*	*	*	1213	*	2154	128
+       0	*	*	*	*	*	*	2534	0	0	
+
+F 129  *	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	129
+       0	*	*	*	*	*	*	2534	0	0	
+
+L 130  2040	*	*	*	3353	*	*	*	*	831	*	*	*	3367	*	*	*	*	*	*	130
+       0	*	*	*	*	*	*	2534	0	0	
+
+R 131  *	*	1466	*	*	*	*	*	3353	*	*	*	1411	*	2606	*	*	*	*	*	131
+       0	*	*	*	*	*	*	2534	0	0	
+
+T 132  3143	*	*	*	*	3400	*	*	*	*	*	*	*	*	*	*	826	2134	*	*	132
+       0	*	*	*	*	*	*	2534	0	0	
+
+D 133  *	*	918	1087	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	133
+       0	*	*	*	*	*	*	2534	0	0	
+
+A 134  2606	*	*	*	*	*	*	*	2040	*	*	*	*	*	1015	*	3353	*	*	*	134
+       0	*	*	*	*	*	*	2534	0	0	
+
+A 135  2606	*	2913	3143	*	*	*	*	2944	3367	*	*	*	1916	*	*	*	*	*	3353	135
+       0	*	*	*	*	*	*	2534	0	0	
+
+L 136  *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	136
+       0	*	*	*	*	*	*	2534	0	0	
+
+G 137  *	*	*	*	*	680	*	*	*	*	*	*	*	*	*	2913	*	2040	*	*	137
+       0	*	*	*	*	*	*	2534	0	0	
+
+T 138  3143	*	*	2913	*	*	*	*	*	*	*	3367	*	*	*	2134	1220	*	*	*	138
+       0	*	*	*	*	*	*	2534	0	0	
+
+V 139  *	*	*	*	*	*	*	3598	637	*	*	*	*	*	2376	*	*	3614	*	*	139
+       0	*	*	*	*	*	*	2534	0	0	
+
+L 140  *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	140
+       0	*	*	*	*	*	*	2534	0	0	
+
+M 141  *	*	*	*	*	*	*	*	*	2944	201	*	*	*	*	*	*	*	*	*	141
+       0	*	*	*	*	*	*	2534	0	0	
+
+E 142  *	*	*	885	*	3598	*	*	1411	*	*	*	*	*	*	*	*	*	*	*	142
+       0	*	*	*	*	*	*	2534	0	0	
+
+I 143  *	*	*	*	*	*	*	3614	*	509	*	*	*	*	*	*	2913	3598	*	*	143
+       0	*	*	*	*	*	*	2534	0	0	
+
+R 144  *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	144
+       0	*	*	*	*	*	*	2534	0	0	
+
+N 145  2040	*	*	*	*	*	*	*	*	*	*	680	*	*	*	*	2913	*	*	*	145
+       0	*	*	*	*	*	*	2534	0	0	
+
+T 146  3367	*	*	*	*	*	*	*	*	3400	*	*	2040	*	*	*	1209	2913	*	*	146
+       0	*	*	*	*	*	*	2534	0	0	
+
+D 147  *	*	823	*	*	*	*	*	*	*	*	1637	*	*	*	*	3143	*	*	*	147
+       0	*	*	*	*	*	*	2534	0	0	
+
+Y 148  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2913	206	148
+       0	*	*	*	*	*	*	2534	0	0	
+
+Y 149  *	*	*	*	*	*	*	*	*	2040	*	*	*	*	*	*	*	*	*	402	149
+       0	*	*	*	*	*	*	2534	0	0	
+
+G 150  1512	*	2384	*	*	2221	*	*	*	*	*	*	*	*	*	*	2040	*	*	*	150
+       0	*	*	*	*	*	*	2534	0	0	
+
+T 151  *	*	3353	*	*	*	*	*	2913	2554	3367	*	*	*	*	*	994	*	*	*	151
+       0	*	*	*	*	*	*	2534	0	0	
+
+P 152  *	*	*	*	*	*	*	*	*	*	*	*	608	*	*	1540	*	*	*	*	152
+       0	*	*	*	*	*	*	2534	0	0	
+
+L 153  *	*	*	*	*	*	*	*	*	201	*	*	*	*	*	*	*	2944	*	*	153
+       0	*	*	*	*	*	*	2534	0	0	
+
+E 154  *	*	2244	608	*	2913	*	*	*	*	*	*	*	*	*	*	*	*	*	*	154
+       0	*	*	*	*	*	*	2534	0	0	
+
+G 155  3510	*	3353	621	*	2606	*	*	*	*	*	*	*	*	*	*	*	*	*	*	155
+       0	*	*	*	*	*	*	2534	0	0	
+
+L 156  *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	156
+       0	*	*	*	*	*	*	2534	0	0	
+
+R 157  *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	157
+       0	*	*	*	*	*	*	2534	0	0	
+
+K 158  *	*	*	1583	*	*	*	*	586	*	*	*	*	*	*	*	*	*	*	*	158
+       0	*	*	*	*	*	*	2534	0	0	
+
+E 159  1773	*	*	1751	*	*	*	*	2429	2944	*	*	*	3400	*	*	*	*	*	*	159
+       0	*	*	*	*	*	*	2534	0	0	
+
+R 160  *	*	*	*	*	*	2944	*	*	*	*	*	*	*	201	*	*	*	*	*	160
+       0	*	*	*	*	*	*	2534	0	0	
+
+G 161  *	*	*	*	*	201	*	*	*	*	*	2944	*	*	*	*	*	*	*	*	161
+       0	*	*	*	*	*	*	2534	0	0	
+
+V 162  2199	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	354	*	*	162
+       0	*	*	*	*	*	*	2534	0	0	
+
+K 163  *	*	*	*	*	*	*	*	1515	*	*	3367	*	*	2497	*	2040	2913	*	*	163
+       0	*	*	*	*	*	*	2534	0	0	
+
+V 164  *	*	*	*	*	*	*	*	*	2770	2912	*	*	*	*	*	*	473	*	*	164
+       0	*	*	*	*	*	*	2342	0	0	
+
+L 165  *	*	*	*	*	*	*	1399	*	1724	*	*	*	*	*	*	*	1653	*	*	165
+       0	*	*	*	*	*	*	2342	0	0	
+
+H 166  *	*	*	*	*	*	1734	*	*	*	*	*	*	*	2228	1840	2276	*	*	*	166
+       0	*	*	*	*	*	*	2342	0	0	
+
+L 167  *	*	*	*	*	*	*	*	*	473	*	*	*	*	*	*	*	1840	*	*	167
+       0	*	*	*	*	*	*	2342	0	0	
+
+Q 168  *	*	*	*	*	3137	*	*	*	*	*	*	*	174	*	*	*	*	*	*	168
+       452	1894	*	1000	1000	*	*	2342	1000	0	
+
+A 169  1191	*	*	*	*	*	1743	*	*	*	*	1926	*	*	*	*	*	*	*	*	169
+       0	*	*	0	*	*	*	1613	0	0	
+
+//
+�HHsearch 1.5
+NAME  0a407d4b0634f8fa863191382dd9ec39
+FAM   
+FILE  0a407d4b0634f8fa863191382dd9ec39
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:34:18 2013
+LENG  210 match states, 210 columns in multiple alignment
+FILT  125 out of 1191 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  10.2
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEEEECCCCEEEECCCCEEEEEEEECCCCEEEEEECCCCCCCEEEEEECCCCCCCCCCCEEEEECCCEEEEEEECCCCCCCCEEEEEEECCCEECCCEE
+EEEEEECCCEEEEECCCCEEEECCCEEEEEEEEECCCCCCCEEEEEECCEECCCCCCCCEEEEECCCCCEEEEEEEEECCCCHHHCCEEEEEEECCCCCC
+CEEEEEECCC
+>ss_conf PSIPRED confidence values
+9399953873899889989999998279848999993899984799981254576668617888628748999940461049589999974733624379
+9999602430689628860785498099999992577999789999999997677531002586289838878999993489887918999999589985
+4899994789
+>Consensus
+xxxxxxxxxxxxxxxGxxvxLxCxxxxxxxxvxWxxxxxxxxxxxxxxxxxxxxxxxxxrxxxxxxxxxxxLxIxxxxxxDxgxYxCxxxxxxxxxxxxx
+lxvxxxxxxpxvxxxxxxxxxxxgxxxxLxCxxxxxxpxxxxvxWxxxxxxxxxxxxxxxxxxxxxxxxxxxxsxLxixxxxxxdxgxyxCxxxxxxxxx
+xxxxxxxxxx
+>0a407d4b0634f8fa863191382dd9ec39
+QIVSTQSPAIMSASPGEKVTMTCSASSSRSYMQWYQQKPGTSPKRWIYDTSKLASGVPARFSGSGSGTSYSLTISSMEAEDAATYYCHQRSSYTFGGGTK
+LEIKRTVAAPSVFIFPPSDEQLKSGTASVVCLLNNFYPREAKVQWKVDNALQSGNSQESVTEQDSKDSTYSLSSTLTLSKADYEKHKVYACEVTHQGLSS
+PVTKSFNRGE
+>gi|148691347|gb|EDL23294.1| mCG141185 [Mus musculus]
+----------------------------------------------------------------------------------------------------
+-------------WSHEYCSG---PRRSAKYMNFPIVPircPQTHVTHHRNGKNHTQDM-ELPDTRPAGDGTFQKWAAVLVPSGE---ELRYTGHVYHER
+LPEPLTLKWGK--
+>gi|326703679|gb|AEA06491.1| MHC class I antigen [Macaca mulatta]
+----------------------------------------------------------------------------------------------------
+-------------------------htiqtmygcdlgpdgrllrgyeqyaydgrdyfalne--DLRSWTAADMAAQN-----------------tqrkwe
+aagvaeqw----RAYLEGECLEWLRRYLEKGK------------------et--LQ--raePs-SQ
+>gi|62464905|gb|AAX83161.1| immunoglobulin heavy chain variable region [Aotus nancymaae]
+---------------GDPVPHLRCLWLLhrQ------willeldpPAPKGRG--WSGldisivwWVHql-qrlpQES-----sh---YFsrHVQEPVLVE
+---------A------------------------------------------------------------------------------------------
+-------------------------------------
+>gi|47227730|emb|CAG08893.1| unnamed protein product [Tetraodon nigroviridis]
+---------------GGTLVIPCNtgAIKAedILITKWKYDKGDGLSGDLLVRQ-rsqnasiIANDEYKGRVSM---AANSSLLLSDAKLSDQRTFTCMA
+VVGaNIAEYPVNVVVYKKPTELKISDKAEELEIGKLTKV-GVF------NAK-CCFYLRNFRHLKHQGktrisIHTSVLIDAMTGLSTTSSTLEYSAKKE
+DTNAQFTC---R---------------
+>gi|321457503|gb|EFX68588.1| hypothetical protein DAPPUDRAFT_63008 [Daphnia pulex]
+----------VTVQLGDTAFLNCRVLDLqDKTVSWVRRH-EQELHLLTVGMQTYSTD--SRFSLHfQHPNDWRLQIKFARPRDEGIYECQVSIHPPRIYT
+VRLIVAV----PSVEMVDDHGRVIEekiyktGSTIELKCVVSKVPGPTANIMWRHGLRILNYDTSRGGISVKTDLLPYGAVSRLYIANASQRDAGNYTCN
+ISESSWTTVVVHILNGEH
+>gi|149597420|ref|XP_001520231.1| PREDICTED: similar to butyrophilin [Ornithorhynchus anatinus]
+QFSVIGPAEPVLALEGGDTEMPCHLNPKesaeFMEVRWFRSRPSNIV--HLYDNREELFREqmeeyQGRteLVRDaMDYGSVAVRLLNVRVSDEGNYHCS
+FYDGNTVDRAPlELQVVGSTAQCSIFMEHF-----SWISLILDLFP-DWIPDlfP-ILQMRelSEGGVNIKCP--KSYGIGHTCTMFSLddifgnfisap
+lfptaLSLMVALGVT---LPVLGLIIAGglyLIWKQNMDIEKLLVklT
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+Q 1    4413	*	1466	4564	*	4625	4227	*	*	3219	4595	*	4647	2538	4279	4557	*	*	*	*	1
+       0	*	*	*	*	*	*	6618	0	0	
+
+I 2    3264	*	5097	*	2994	*	*	3427	*	1732	*	*	4177	4123	4959	*	4148	2776	*	*	2
+       0	*	*	*	*	*	*	8265	0	0	
+
+V 3    5432	*	4702	3230	*	3869	4855	*	3181	4745	*	6058	*	2645	5528	3412	3142	2660	5692	*	3
+       0	*	*	*	*	*	*	8999	0	0	
+
+S 4    4204	*	*	*	2858	*	*	2682	4656	2257	5906	*	*	5627	*	5842	5711	1685	5757	*	4
+       0	*	*	*	*	*	*	9205	0	0	
+
+T 5    *	*	*	3089	5974	5848	4540	2898	4297	4388	5318	4398	*	4908	5102	5815	1571	3571	*	*	5
+       0	*	*	*	*	*	*	9442	0	0	
+
+Q 6    4510	*	*	3073	*	4050	5887	3833	3545	3168	4139	*	4262	2453	3043	5861	6291	4319	*	*	6
+       117	*	3684	*	*	*	*	9607	0	0	
+
+S 7    3337	*	4612	4112	6269	4542	*	4283	6447	5197	6217	4923	2660	4524	5022	2073	3359	4559	*	*	7
+       44	5044	*	0	*	0	*	9762	1191	1817	
+
+P 8    4341	*	5022	*	5490	4515	5673	6526	4062	6285	*	5563	1231	3446	5381	2898	5204	5240	*	*	8
+       0	*	*	*	*	*	*	10048	0	0	
+
+A 9    4024	*	6260	3313	*	3780	5252	6687	3633	6061	5357	5514	4875	3824	2794	2211	4186	4713	*	5932	9
+       62	5601	5531	2025	407	*	*	10053	1148	0	
+
+I 10   5086	*	3853	3316	5459	4161	4745	3818	5628	3729	*	3717	2660	*	6312	3456	3356	4275	*	5002	10
+       14	*	6670	*	*	0	*	10132	0	1194	
+
+M 11   5024	6750	6866	4000	4352	6402	*	3160	4955	2862	5750	6530	6285	3680	5221	5321	4174	1777	5854	6671	11
+       0	*	*	*	*	0	*	10187	0	1000	
+
+S 12   4669	*	5042	4115	4026	5284	6948	3889	4964	3864	5196	3647	5547	4373	4830	2807	2580	4096	6671	5724	12
+       12	6974	*	3907	100	*	*	10355	1013	0	
+
+A 13   2928	*	*	5767	5205	3874	*	3879	4592	3135	6476	5835	6683	5237	5614	5094	4309	1491	*	6528	13
+       0	*	*	*	*	*	*	10351	0	0	
+
+S 14   3813	*	5735	4160	4329	5081	5184	3892	3368	3282	6619	5026	5083	3472	3281	4838	5229	3095	*	4708	14
+       0	*	*	*	*	*	*	10382	0	0	
+
+P 15   4950	*	5617	1967	5648	6569	6949	5208	5300	2871	*	5620	4249	4249	3926	3459	4076	3164	*	6559	15
+       0	*	*	*	*	*	*	10456	0	0	
+
+G 16   *	*	4538	5257	*	461	5681	*	4442	6667	*	4112	*	*	5230	4865	*	*	*	6591	16
+       0	*	*	*	*	*	*	10517	0	0	
+
+E 17   6733	*	2977	1950	*	3500	5800	6595	3761	5414	6397	4908	*	3613	4332	2790	4547	7162	*	5652	17
+       13	6781	*	0	*	*	*	10552	1000	0	
+
+K 18   4713	5414	3358	4215	6595	6870	5278	*	4231	6850	*	3058	3263	5915	4511	2450	2531	5382	*	5979	18
+       14	6721	*	0	*	*	*	10552	1054	0	
+
+V 19   2336	6672	*	*	4197	4849	*	3514	7162	3056	6517	*	6676	6625	*	*	4612	1264	*	*	19
+       0	*	*	*	*	*	*	10552	0	0	
+
+T 20   5854	*	*	3122	5846	*	4735	3284	4856	4811	*	4353	6399	4218	3821	4054	1915	3070	*	6595	20
+       0	*	*	*	*	*	*	10552	0	0	
+
+M 21   6744	*	*	*	3173	*	7684	2364	*	879	3957	*	*	*	*	*	*	3786	*	*	21
+       0	*	*	*	*	*	*	10552	0	0	
+
+T 22   4595	*	4811	3908	5793	5812	5733	4899	6721	4742	5792	3753	2284	4634	3740	2982	2758	5814	*	5917	22
+       0	*	*	*	*	*	*	10552	0	0	
+
+C 23   4329	187	*	*	*	*	*	6701	*	5753	*	*	*	*	7684	*	*	5141	*	6614	23
+       0	*	*	*	*	*	*	10552	0	0	
+
+S 24   5996	7684	3800	3231	6899	4601	5819	4585	3676	3767	7057	3562	5328	4499	3836	3302	3118	3861	*	5395	24
+       29	5651	*	574	1607	*	*	10552	1230	0	
+
+A 25   2422	6517	7057	*	3146	6820	5813	3097	7420	3455	*	4490	*	6607	*	5748	5145	1811	*	4187	25
+       0	*	*	*	*	*	*	10552	0	0	
+
+S 26   4430	*	3651	3981	5992	*	5222	5259	3750	4555	5843	4902	3911	3979	4987	2411	2389	6707	6136	6625	26
+       27	6772	6781	0	*	*	*	10552	1000	0	
+
+S 27   3863	6580	3254	5780	6902	2019	*	6685	4119	4696	5552	3893	3884	5259	*	3209	3935	4131	*	5391	27
+       15	6602	*	1000	1000	*	0	10542	1020	1000	
+
+S 28   3440	6842	3985	3846	3959	3800	6070	5010	4587	4079	6881	4326	3709	4255	7157	2718	5970	4070	*	4012	28
+       3361	172	6080	1371	705	*	0	10542	9623	1000	
+
+R 29   3727	*	3588	4072	6706	4718	3883	5637	4168	3282	5832	4221	3721	6285	4770	3038	4156	3527	5893	6645	29
+       55	4978	7525	1582	586	727	1336	10510	1424	1708	
+
+S 30   3609	*	6577	5257	4822	4220	4988	5117	4471	2891	4547	4203	2687	*	5356	4066	3618	3696	*	4129	30
+       39	5244	*	520	1725	808	1222	10528	1606	1441	
+
+Y 31   4096	*	4555	3829	5712	4036	4784	3894	4856	4412	7036	4040	5229	4092	3929	2608	3251	4686	*	4788	31
+       0	*	*	*	*	*	0	10540	0	1084	
+
+M 32   5907	*	6815	*	3401	5411	*	2331	4833	2826	5148	*	*	*	6878	6587	5137	1498	5291	5250	32
+       22	*	6047	*	*	*	0	10540	0	1084	
+
+Q 33   4420	*	*	4572	4733	5765	4189	3934	3885	4772	6699	3866	*	4253	4294	3180	2467	4663	*	3078	33
+       15	*	6567	*	*	1833	475	10519	0	1445	
+
+W 34   6569	6585	*	*	5405	*	*	6819	*	5876	*	*	*	5882	6769	*	6493	7037	235	4829	34
+       81	4744	5878	892	1116	*	0	10492	1567	1529	
+
+Y 35   5088	4844	6541	5256	2615	6482	6757	3740	4969	3628	4515	4224	*	5613	4807	4861	4869	5390	4917	2008	35
+       85	5776	4686	2265	337	1967	426	10485	1447	1846	
+
+Q 36   *	5688	5213	4696	5275	6686	5325	6527	1710	3712	5124	5626	5265	4750	2231	5300	*	4002	5086	5684	36
+       226	4981	3144	2370	310	*	0	10433	1430	2288	
+
+Q 37   4855	*	3038	4170	6485	3283	4236	*	3398	4652	5247	3752	6258	2382	4635	3962	4188	6448	*	6590	37
+       173	6986	3250	1000	1000	4243	78	10306	1000	4084	
+
+K 38   6383	*	2713	4872	*	3942	6771	6005	2738	4275	5271	3522	4979	3945	5300	3601	3130	4440	*	4955	38
+       84	6005	4618	1000	1000	1160	856	10121	1044	5163	
+
+P 39   4324	5352	3086	3415	6384	3556	6425	*	3958	4016	6422	3471	2603	6272	5457	3809	4031	4818	*	6777	39
+       71	6535	4736	0	*	800	1232	10296	1000	4023	
+
+G 40   3981	*	3996	4254	*	1480	5932	*	3696	5204	*	4297	5723	4323	4536	4324	4066	4084	6499	*	40
+       68	*	4433	0	*	2834	218	10365	1000	2938	
+
+T 41   4261	6454	6513	2970	*	3354	4220	3926	2835	4593	5567	4380	4931	3389	4822	3637	4335	4781	*	*	41
+       259	*	2606	*	*	1954	431	10332	0	3380	
+
+S 42   3455	*	4353	4268	5027	3241	*	4714	3422	4381	4429	3672	3330	5654	3181	3969	6689	3964	*	*	42
+       102	4005	7364	1826	478	3643	120	10133	1933	5071	
+
+P 43   3716	4940	6323	4607	6323	6155	*	3867	6698	2480	6676	4529	2393	5868	4597	3073	3874	3947	*	*	43
+       51	*	4858	*	*	*	0	10114	0	4976	
+
+K 44   4792	*	4851	3303	*	4016	5465	4491	2847	4837	5697	5196	4496	3782	6201	3481	3273	3685	*	3698	44
+       98	*	3924	*	*	3141	174	10036	0	5316	
+
+R 45   6390	*	5203	5619	3143	4438	5209	4274	5014	2629	*	3889	*	5314	3243	3978	3853	2997	4534	6576	45
+       113	*	3732	*	*	2396	304	10005	0	5538	
+
+W 46   5362	*	*	4454	5390	5255	*	2573	4040	1665	4748	6099	4759	6315	*	5772	4959	2723	6547	5521	46
+       18	6296	*	1000	1000	3833	105	9940	1026	5550	
+
+I 47   4405	6691	4052	6207	6233	3393	4316	2716	*	3175	*	4592	4377	5651	6410	3479	3721	3921	5327	3837	47
+       233	3635	3870	2172	362	*	0	10027	2167	5302	
+
+Y 48   3596	5906	4086	6605	3540	5116	5565	4904	4098	5169	6435	5053	5206	6266	5101	3002	4050	4011	5626	2340	48
+       271	3866	3284	1527	615	*	0	9863	1835	5831	
+
+D 49   6037	*	3342	*	4326	2939	4553	3931	4104	3663	5912	5543	6041	6214	3136	3135	4494	4868	6046	3784	49
+       60	5352	5921	1585	585	*	0	9602	1142	6616	
+
+T 50   4341	*	3693	5281	4773	3216	5567	*	3568	*	*	3199	4234	3807	5965	2939	3106	4576	6106	4456	50
+       69	5057	5904	545	1669	*	0	9565	1401	6707	
+
+S 51   4577	*	4633	4431	4989	2820	*	5222	3062	*	5212	4084	4533	*	3947	2468	3900	4005	6051	4933	51
+       162	3239	*	1809	485	4229	79	9524	2509	6915	
+
+K 52   4019	*	3598	4315	*	4495	5056	5046	5041	4706	5965	2470	6010	3879	5338	3237	3513	4551	*	3457	52
+       133	3502	*	1828	477	*	0	9565	1941	6707	
+
+L 53   4450	*	4351	2857	3647	4153	5361	3446	5509	4208	5210	6263	5033	3161	5978	4642	6250	3433	*	3395	53
+       64	5038	6301	2000	415	1528	614	9565	1187	6707	
+
+A 54   4175	*	4850	3472	5579	3204	4214	4867	4509	3917	6245	3682	3620	4383	4806	3378	3821	4387	5557	*	54
+       45	6217	5869	0	*	*	0	10098	1020	5287	
+
+S 55   3617	*	3309	3154	6138	4683	*	4047	3337	*	*	5152	2740	5394	4016	2883	4392	4441	*	*	55
+       78	5835	4835	1216	813	2138	372	10059	1365	5557	
+
+G 56   3328	*	3160	3076	6508	3153	6382	4397	4753	5560	5388	4047	6011	5165	4341	3074	3518	4902	*	6359	56
+       14	*	6661	*	*	224	2795	10160	0	5061	
+
+V 57   4001	*	5223	4546	3475	5774	5736	3580	3786	3383	5283	4816	4184	6681	5288	3916	3531	3716	*	3201	57
+       127	3700	7035	2904	207	1485	638	10522	2319	1715	
+
+P 58   5181	5888	4005	4445	5524	4635	5935	5867	3488	4688	6679	3905	2638	4164	3580	3850	3601	3768	*	5488	58
+       47	5323	7136	2030	405	606	1544	10559	1362	1593	
+
+A 59   5250	*	3151	3288	5666	1982	4744	*	4288	6587	*	3998	3744	5218	4034	3263	5287	5438	*	6776	59
+       75	4586	6793	2867	213	*	0	10542	1970	1271	
+
+R 60   *	*	4781	4018	*	3891	5911	5198	3174	5679	6541	5452	5182	4270	1179	4813	4514	5247	*	*	60
+       118	3843	6856	1112	896	1764	503	10527	2221	1458	
+
+F 61   3936	7060	5967	*	2088	5811	6712	3686	5734	3089	*	*	6648	4172	5447	5310	4459	3032	6926	2784	61
+       13	*	6801	*	*	753	1299	10539	0	1474	
+
+S 62   4635	*	3657	3725	5986	4006	4704	5936	3507	6402	*	3443	7094	4228	5101	2597	2783	4219	7024	5749	62
+       58	5685	5658	0	*	733	1327	10547	1182	1263	
+
+G 63   3725	*	5226	4602	5046	2667	6507	3001	4519	3194	4790	4840	4917	7055	*	3683	4806	3120	6878	5005	63
+       175	7054	3232	1585	585	1823	479	10494	1000	1429	
+
+S 64   5186	*	3364	4444	6082	4030	6770	3956	3958	4767	5599	4322	5580	5053	3243	2688	3148	3948	*	5730	64
+       861	1357	4082	1146	867	*	0	10309	6262	3236	
+
+G 65   4854	*	3831	4971	5049	3141	4826	4599	3599	3720	5703	5251	4189	4552	3494	4595	2913	3859	6626	*	65
+       90	5018	5088	716	1354	4398	70	10177	1424	4068	
+
+S 66   3439	*	3063	4047	4959	4197	5328	3918	4985	3605	*	3778	*	5149	5026	2868	3609	5881	*	3868	66
+       38	*	5263	*	*	529	1704	10146	0	4428	
+
+G 67   3821	5519	*	3609	4933	2664	5643	6962	3617	4437	4978	3372	4036	4113	5061	3705	3795	4911	*	5629	67
+       43	5757	6523	1463	650	664	1439	10381	1449	2495	
+
+T 68   4218	7086	3945	4801	7018	2949	4432	4810	4637	5010	6599	3054	4507	4304	4199	3288	3046	5782	6765	5869	68
+       144	3394	*	1000	1000	*	0	10466	2669	1664	
+
+S 69   5494	*	3074	3717	7046	4887	6489	5165	4302	4908	5196	2609	5057	3762	4473	3048	3039	6676	6976	5761	69
+       28	6533	6888	3907	100	767	1278	10449	1058	1858	
+
+Y 70   3333	3933	*	5948	3132	3572	5395	4772	6124	3711	*	5442	5608	*	4273	2366	4604	4474	6704	3558	70
+       10	7134	*	1000	1000	1867	462	10526	1000	1418	
+
+S 71   5094	7188	5774	4597	6728	7030	4774	4829	5299	4638	5961	4390	*	4101	3350	1859	2772	3443	*	5980	71
+       39	6038	6412	2000	415	1321	738	10537	1188	1255	
+
+L 72   *	6770	*	*	3971	*	*	3765	*	523	4497	*	6669	*	*	*	5171	3909	*	6741	72
+       0	*	*	*	*	988	1012	10545	0	1346	
+
+T 73   5266	5904	6030	4406	5604	*	4175	3895	3909	3869	6623	3758	5991	3839	3453	2937	2933	4155	6450	5232	73
+       19	*	6265	*	*	*	0	10583	0	1078	
+
+I 74   *	*	6916	*	4893	*	*	968	6863	2053	5000	*	*	*	*	5625	6573	3093	5799	*	74
+       0	*	*	*	*	*	0	10570	0	1519	
+
+S 75   4580	6870	4208	4332	*	5588	4806	7022	3057	4033	*	3798	3786	3512	3654	2631	2971	*	*	*	75
+       41	*	5149	*	*	*	0	10570	0	1519	
+
+S 76   4885	6713	2676	6959	6778	5936	5229	*	4905	4510	7074	2078	4224	4676	3138	2877	4158	5636	*	*	76
+       0	*	*	*	*	1730	518	10503	0	2086	
+
+M 77   2775	5914	5972	*	5991	5897	4729	3918	*	2229	7053	6654	5818	*	*	3944	3853	1725	*	*	77
+       0	*	*	*	*	2381	307	10550	0	1718	
+
+E 78   5677	*	4509	3285	*	5067	*	6796	3322	6919	*	4788	6018	2575	2891	3711	2013	*	*	6871	78
+       35	5374	*	0	*	1832	476	10550	1379	1550	
+
+A 79   4749	6678	5965	3801	4886	*	5120	4372	3666	2711	5361	*	2506	5552	4746	3767	4562	3292	4440	*	79
+       24	*	5894	*	*	*	0	10537	0	1560	
+
+E 80   4165	*	2854	2028	6636	5471	6666	5887	4128	5998	6845	3535	6664	7004	4897	2340	4173	6716	5652	*	80
+       25	5855	*	0	*	*	0	10515	1242	1926	
+
+D 81   5537	*	539	5360	5995	6771	3361	*	5753	6653	*	4652	*	5665	5763	5135	6791	*	*	*	81
+       17	6420	*	2000	415	1464	650	10515	1083	1926	
+
+A 82   2619	*	4520	2847	*	3575	*	*	5234	5845	5727	6048	5699	3840	*	1827	3805	5895	*	4898	82
+       0	*	*	*	*	651	1461	10560	0	1535	
+
+A 83   3074	*	4815	4902	*	668	6583	*	5294	5277	*	*	*	6925	5684	4161	5047	7105	*	*	83
+       14	6647	*	1585	585	*	0	10583	1012	1078	
+
+T 84   4620	7197	5710	3687	5243	6776	6923	3459	4624	3760	4611	4132	6748	4665	3578	4270	2388	3456	6172	5136	84
+       28	5714	*	1601	577	*	0	10570	1268	1078	
+
+Y 85   *	*	*	*	2902	*	5142	5320	*	4821	*	*	*	*	*	6804	*	5254	6449	452	85
+       12	*	6923	*	*	0	*	10570	0	1078	
+
+Y 86   5790	*	*	3631	4014	*	7024	4236	4138	4042	*	*	*	4044	3251	4164	2352	3878	5038	2784	86
+       0	*	*	*	*	0	*	10610	0	1039	
+
+C 87   5334	192	*	*	5475	*	6584	*	*	4642	*	*	*	*	6811	6877	*	6756	*	*	87
+       16	6461	*	1000	1000	*	*	10606	1083	0	
+
+H 88   3540	*	5455	3340	6030	4983	4236	4454	4594	4455	5534	5065	*	3003	2735	3684	4071	3508	*	6928	88
+       22	*	6029	*	*	*	*	10606	0	0	
+
+Q 89   2074	*	*	*	5430	5274	6753	3391	5367	3313	5235	*	6859	4950	5803	4770	4612	1678	*	6838	89
+       168	5186	3597	2590	262	*	0	10600	1349	1142	
+
+R 90   4460	6702	3681	3840	4425	4441	*	4499	4295	4515	4664	4402	*	4800	4466	2695	2835	4709	5107	4795	90
+       153	4437	4197	1683	539	3382	145	10525	1905	2820	
+
+S 91   5079	5825	3475	5553	4330	4567	3159	5085	5062	5833	6549	2420	5611	4006	4202	3899	4663	4073	6556	4332	91
+       54	6929	5133	1148	866	3064	184	10461	1370	3681	
+
+S 92   5042	6982	4396	4550	6912	3211	5504	6637	2738	3650	*	4499	2717	4719	4496	3250	4615	6247	6221	4555	92
+       3233	209	5123	1337	727	271	2545	10469	9244	3789	
+
+Y 93   4508	6699	4560	2772	5112	3637	4903	3863	5067	4131	4616	3672	4167	6389	4200	3763	4912	3934	6857	4754	93
+       96	5305	4688	1367	707	*	0	10542	1361	2148	
+
+T 94   5421	6596	4400	2780	5720	5218	6878	3570	3536	5316	6852	5006	4245	3729	5219	4176	2820	3497	6701	4896	94
+       15	6550	*	1000	1000	2159	366	10446	1000	3004	
+
+F 95   3861	*	6760	3695	2353	5032	5757	4459	6119	3517	5772	6113	5071	4236	3538	5364	4539	3623	4355	4218	95
+       49	6619	5434	0	*	3308	154	10482	1033	2556	
+
+G 96   4629	5245	4098	3410	6734	2056	6574	6769	4340	5692	7135	4440	4480	4738	3471	3077	3959	4874	*	*	96
+       87	*	4092	*	*	1319	739	10460	0	2827	
+
+G 97   3563	*	6602	4411	6037	3357	5598	5297	3704	4904	5248	4256	4047	3402	4941	3108	2934	4133	*	5717	97
+       17	6451	*	0	*	2561	268	10470	1066	3121	
+
+G 98   3184	*	3662	3877	*	2540	6735	4650	3555	*	6555	3831	3966	4953	4697	3538	3873	4274	*	6069	98
+       75	5549	5094	3145	173	1285	762	10539	1225	2769	
+
+T 99   3101	6459	5916	4817	4009	4901	6962	3334	6654	3586	*	4393	4918	5559	5661	3986	2172	3831	*	4406	99
+       0	*	*	*	*	861	1154	10511	0	2540	
+
+K 100  4340	*	6428	4034	5006	5111	4788	4744	3296	4057	5314	4249	5088	3382	3192	2939	3529	6937	6145	5026	100
+       13	*	6763	*	*	1869	461	10554	0	1625	
+
+L 101  5567	*	6636	4188	3854	6004	*	3411	3843	1505	5770	6901	*	*	5840	5790	4492	2275	*	*	101
+       0	*	*	*	*	2070	392	10569	0	1589	
+
+E 102  4443	6744	4358	3932	4561	4712	4557	4806	4584	4758	6440	3749	5073	4377	4304	3775	2632	3488	*	4180	102
+       39	*	5234	*	*	1694	533	10580	0	1408	
+
+I 103  5706	*	*	6641	5299	7393	6519	2890	6632	3367	6848	*	5201	5406	5294	6534	4786	920	5816	6923	103
+       81	6134	4631	4217	80	1427	671	10507	1184	1944	
+
+K 104  4410	*	4964	3393	4306	4680	4818	4175	4266	2739	6590	4936	*	4903	3900	3590	3487	4244	6964	3897	104
+       120	5202	4248	3820	106	3078	182	10518	1373	2322	
+
+R 105  3814	6798	3807	3357	4752	3272	7003	4716	3962	4154	6309	4910	4488	3914	4466	4039	4729	3539	5201	5048	105
+       1003	1361	3164	1634	561	3378	146	10447	6464	3132	
+
+T 106  3853	*	3722	3702	6611	4836	5379	4569	3704	2652	6319	6525	2787	4044	4814	3824	5916	3892	*	6382	106
+       0	*	*	*	*	754	1297	10287	0	4542	
+
+V 107  4497	6677	4917	4518	5306	3281	4791	4880	4162	3531	5939	4751	2985	4446	4723	4359	4733	2559	*	6781	107
+       15	6556	*	5000	46	3176	169	10473	1015	2530	
+
+A 108  4094	6517	5134	3926	4066	3996	6435	3963	4472	5177	*	6861	3182	5204	3590	3295	4195	2885	*	4481	108
+       11	7022	*	0	*	631	1498	10491	1009	2354	
+
+A 109  3085	*	4245	3104	6951	4537	*	4984	3443	5176	*	4012	2823	3913	4237	3506	5778	3611	*	*	109
+       44	5710	6549	2691	243	424	1972	10562	1182	1574	
+
+P 110  5054	*	5480	5359	5895	4500	6844	4598	5257	3882	*	*	838	5467	5357	4937	4635	5180	*	6465	110
+       0	*	*	*	*	830	1193	10576	0	1261	
+
+S 111  4633	*	4266	3702	5863	*	6089	5446	3462	4654	6206	4214	4707	5261	4180	2408	2952	3321	*	4612	111
+       67	*	4458	*	*	*	0	10611	0	1009	
+
+V 112  5381	*	5756	6153	5225	4960	4990	2066	*	3028	5710	5843	4379	6631	*	6874	5477	1492	*	6587	112
+       54	5675	5862	2000	415	1946	433	10572	1182	2037	
+
+F 113  5660	*	5141	4313	3338	6190	4842	4714	4696	4629	5338	5791	6790	4159	4184	2366	3243	3667	*	3383	113
+       107	4916	4709	1801	488	945	1057	10536	1524	2037	
+
+I 114  4787	*	3900	5969	5821	4842	6621	2222	4493	2939	4374	5812	4601	4494	5710	4810	4550	2820	5983	5469	114
+       23	*	5959	*	*	*	0	10528	0	2166	
+
+F 115  6689	6492	6853	5777	3225	3931	4715	3752	3066	2904	7294	5592	6888	4029	4866	3054	4378	4473	5917	4231	115
+       69	4765	6675	1693	534	*	0	10527	1511	2426	
+
+P 116  3282	*	4907	4758	*	3974	5450	*	4609	5212	6880	4536	2538	3930	3350	2608	4518	3909	*	6531	116
+       0	*	*	*	*	*	0	10511	0	2595	
+
+P 117  4552	6668	4608	3701	5707	4086	*	4760	3606	4463	6427	4091	2421	3758	5675	2843	4459	4269	*	*	117
+       59	*	4642	*	*	2533	274	10499	0	2595	
+
+S 118  4565	5662	3894	3533	6637	4600	*	5245	3872	4230	6832	3545	3239	4180	7059	2549	3548	4388	*	5798	118
+       23	*	5999	*	*	1851	468	10450	0	3038	
+
+D 119  4521	7044	4408	3809	7204	3786	*	3832	3753	3833	*	3771	3646	4873	5220	3213	4505	2783	7040	5825	119
+       41	6472	5913	1000	1000	2444	293	10462	1066	2788	
+
+E 120  4199	6610	4316	3229	*	6483	5804	3662	4287	3682	6886	5071	4897	6425	4990	2613	3485	2746	*	5349	120
+       44	*	5065	*	*	527	1709	10491	0	2756	
+
+Q 121  3314	*	4104	2577	5841	4722	7120	3905	5521	4177	5696	4902	4707	5311	4544	3279	3564	3159	*	6840	121
+       59	*	4642	*	*	2592	262	10500	0	2021	
+
+L 122  5078	7092	4573	4657	5233	5038	6583	2645	3847	2977	4524	3925	4984	6906	3970	4594	3660	3261	*	5668	122
+       154	3548	5989	518	1729	1417	677	10488	2492	2690	
+
+K 123  3294	*	4223	3216	5931	4274	5745	5797	3445	3873	5941	5066	4513	3502	3789	3548	4456	3961	6597	5962	123
+       425	2141	5138	1064	939	723	1343	10507	4658	2341	
+
+S 124  4416	5147	4144	3266	*	1167	4101	*	5081	6563	*	3755	6889	5724	6967	3889	5777	6755	*	5950	124
+       43	5693	6593	715	1355	527	1709	10546	1372	1992	
+
+G 125  6808	5769	3136	2508	*	2461	6600	6275	3742	6594	*	3806	5405	3831	3718	3826	5303	5692	*	4761	125
+       92	4251	6705	3278	157	*	0	10584	2161	1360	
+
+T 126  4763	*	4300	3182	7447	4826	*	6680	4593	5250	*	3288	3355	4605	4935	2391	2699	4765	5684	6812	126
+       0	*	*	*	*	1014	986	10571	0	1566	
+
+A 127  2433	6722	6022	*	5007	5903	6905	3872	6067	3382	*	6119	4557	5826	5010	4383	3330	1862	5231	*	127
+       168	3331	6581	1457	653	0	*	10593	2820	1198	
+
+S 128  4004	6879	5697	3128	5830	5773	6130	4214	3360	5204	5542	3423	5819	5760	4527	4151	2023	4316	*	5625	128
+       11	*	7001	*	*	0	*	10596	0	1017	
+
+V 129  5069	6922	*	*	4160	5744	6655	2649	*	828	4978	7120	6448	*	*	7562	6691	3746	*	6077	129
+       0	*	*	*	*	0	*	10610	0	1000	
+
+V 130  5040	6959	5981	4017	6369	5242	6835	4223	4422	4212	5011	3480	7218	4576	4031	3579	2056	3329	*	5138	130
+       11	7055	*	1000	1000	*	*	10612	1000	0	
+
+C 131  4769	173	*	*	6663	*	*	*	*	6560	*	*	*	*	*	8096	*	4462	*	7221	131
+       29	*	5671	*	*	*	*	10612	0	0	
+
+L 132  3785	4806	4961	3315	5682	6864	4928	6082	4340	2920	5172	5227	5474	4107	4197	3980	2549	3749	8027	*	132
+       12	*	6902	*	*	*	0	10577	0	1237	
+
+L 133  2021	5582	*	*	5073	*	*	4143	*	4058	6425	7184	5721	*	*	3460	4158	1640	*	3625	133
+       95	5131	4823	344	2236	1779	497	10568	1553	1408	
+
+N 134  5643	6896	4712	2628	4919	4893	6049	*	3903	4851	5788	4680	4271	4922	3510	2730	2706	4190	*	*	134
+       15	6620	*	0	*	1035	965	10507	1000	1991	
+
+N 135  3877	6314	3545	5989	*	1480	5228	*	5149	5315	*	3222	5023	6708	4528	3075	4345	6534	*	6640	135
+       41	*	5156	*	*	1117	892	10564	0	1589	
+
+F 136  3702	*	4770	4918	2644	3113	5223	5571	5746	4165	*	5018	4601	6683	5318	3374	4799	4184	4836	2984	136
+       126	6675	3758	0	*	2327	321	10529	1000	1804	
+
+Y 137  5117	5180	4322	5558	3510	3963	6708	5113	3949	5034	7970	3426	2786	6530	3857	3695	4131	5222	6703	3408	137
+       330	6959	2348	0	*	618	1521	10399	1009	2975	
+
+P 138  5347	*	5043	4287	6284	6474	6430	*	*	4388	5406	5411	766	6227	4533	3974	6276	6410	5762	6400	138
+       266	4546	2990	888	1121	1227	804	10166	1673	4820	
+
+R 139  4637	6273	3458	3207	5318	3952	5203	6352	3201	3840	6576	5109	2417	4115	4796	3523	6471	6655	*	6459	139
+       241	4586	3159	0	*	122	3625	10232	1462	4917	
+
+E 140  4240	*	3096	3907	5544	4120	5169	5779	4358	5687	*	3407	2450	4085	5061	3347	4574	4530	*	5598	140
+       330	5642	2439	0	*	*	0	10435	1197	2935	
+
+A 141  2811	*	*	5359	5628	6330	4668	2844	4477	3153	4804	4537	4296	*	6224	5436	3214	2594	6375	6291	141
+       67	6330	4933	0	*	0	*	10231	1078	5488	
+
+K 142  6660	6567	4104	3520	5160	4884	5235	4495	3786	4487	6848	3622	5235	3575	4219	2948	2602	5885	*	5703	142
+       40	5839	6660	0	*	793	1241	10564	1219	1508	
+
+V 143  7177	4547	6619	5952	3458	5707	5554	2315	6655	3040	*	*	6636	*	*	5572	*	1734	4719	3467	143
+       14	*	6673	*	*	*	0	10576	0	1316	
+
+Q 144  4793	*	4842	3997	5835	4762	6021	4942	4572	4829	5822	5875	6655	3966	3765	2455	2483	3989	*	3635	144
+       8	*	7456	*	*	*	0	10552	0	1513	
+
+W 145  *	5993	6819	*	5752	*	7148	*	5339	5725	*	*	*	7532	6605	7015	*	*	243	4733	145
+       73	7077	4583	1000	1000	*	0	10536	1000	1773	
+
+K 146  5674	6600	6510	3909	2326	6658	5870	5186	3854	2714	4309	5711	*	4395	5936	4573	4031	*	4843	2779	146
+       44	5059	*	761	1287	1199	825	10507	1421	2568	
+
+V 147  6748	6420	7179	4118	4027	5709	4442	5175	1856	4095	6935	5981	5749	5032	2130	*	4938	4176	*	4794	147
+       68	4434	*	3061	184	1910	446	10559	1743	1841	
+
+D 148  5277	*	2248	3630	6646	3236	*	*	4791	5199	5928	1780	4749	7091	4524	4433	4781	*	5312	*	148
+       69	4750	6755	3519	132	*	0	10527	1586	1577	
+
+N 149  7086	*	3129	4443	6584	1351	*	6700	4516	*	*	2960	5626	5797	6755	3316	4127	5251	*	5893	149
+       38	5766	7084	3382	145	1025	975	10504	1208	1773	
+
+A 150  4805	6202	4951	2580	6914	3548	5654	6186	2577	4354	*	4839	5135	3282	4826	4163	3992	3657	*	6983	150
+       76	4276	*	2170	363	*	0	10536	1806	1491	
+
+L 151  4424	*	4431	2665	*	4081	4838	5307	4385	4047	4821	4034	3083	4647	3948	4461	3771	4240	*	5013	151
+       37	7203	5735	0	*	*	0	10536	1005	1491	
+
+Q 152  5718	5551	4131	6713	5332	6810	5903	2845	5668	1779	6051	4870	5529	5461	4807	5719	4175	2802	*	4461	152
+       122	4742	4523	1451	657	2384	307	10492	1542	1842	
+
+S 153  3696	*	4053	3517	4652	5878	5467	4316	4086	3706	6666	5055	3300	3528	*	3177	3132	4125	*	*	153
+       133	5379	3960	1059	943	1285	762	10472	1318	2496	
+
+G 154  5580	*	3576	3391	6852	3122	5042	5845	5192	3372	5893	4442	4010	4336	4477	3313	2814	4551	*	*	154
+       31	*	5567	*	*	2529	275	10339	0	3413	
+
+N 155  4066	*	3382	3904	5487	2480	5967	5036	4577	5049	6662	3963	6612	4628	3478	2651	5536	4516	6595	6940	155
+       132	6898	3658	515	1737	2058	396	10336	1242	3316	
+
+S 156  4442	*	5630	5034	4920	4045	5518	3688	4679	3744	5183	4823	4687	4217	6813	2561	3911	2579	5110	*	156
+       1446	6345	688	2322	322	3314	153	10270	1017	3985	
+
+Q 157  5080	*	5312	5028	3937	*	5267	3503	4273	3294	5654	*	4919	3733	3229	3081	*	2532	*	4171	157
+       116	4290	5267	1000	1000	765	1280	8468	1187	8873	
+
+E 158  5596	5263	3032	3190	5417	4707	4469	5407	3853	5027	*	3551	4864	3815	4659	3979	3872	5323	6006	3497	158
+       19	*	6225	3807	107	1986	420	10037	1110	5693	
+
+S 159  4834	*	*	4347	5428	3545	5028	6360	4600	5845	6303	3760	4586	4060	3094	3587	2499	3491	*	4292	159
+       81	6302	4566	1319	739	3671	118	10121	1183	4866	
+
+V 160  4221	*	4074	4347	3604	5094	5373	5525	4608	4698	6390	4051	4120	5596	3751	2783	3137	4340	*	3881	160
+       0	*	*	*	*	4729	55	10066	0	5100	
+
+T 161  5366	*	4702	4500	5661	5023	4333	6357	3866	4709	5255	4469	3143	4992	3916	2802	4097	3291	6567	3695	161
+       148	5405	3757	2011	411	1548	604	10100	1379	4977	
+
+E 162  3967	6600	5240	3166	4534	4940	3927	4953	4164	4357	4925	5088	4171	4569	4672	3707	2874	3511	*	6700	162
+       0	*	*	2000	415	2720	237	10175	1020	4648	
+
+Q 163  5074	*	4838	3370	4749	4514	5053	4162	4554	3223	4760	4993	4375	3679	3160	4265	4567	3152	*	6816	163
+       140	3857	5397	2218	349	4284	76	10228	1999	4173	
+
+D 164  5227	*	3721	3721	6321	6443	6635	3827	3184	2963	6287	4809	4683	4322	2756	3932	3590	4481	*	*	164
+       0	*	*	*	*	3274	157	10191	0	4338	
+
+S 165  3079	*	3324	3163	4446	5223	3764	5453	4508	5276	4587	3576	4534	6789	4447	3153	4696	4978	*	5323	165
+       155	4874	3886	2214	350	1998	416	10245	1392	4038	
+
+K 166  4269	*	3947	3666	5450	3219	4539	5273	4207	4484	4325	3922	4567	4941	4434	3111	3248	4654	6807	*	166
+       26	*	5803	1000	1000	386	2091	10201	1020	4206	
+
+D 167  5060	5519	1866	4353	*	3468	4849	5358	4825	6586	5862	2949	6840	4558	3993	3552	3892	5924	*	*	167
+       41	*	5165	*	*	2992	194	10472	0	2143	
+
+S 168  5270	*	3516	4936	4697	1341	5510	6838	4196	5616	4952	3968	*	4867	4631	3588	4554	6892	*	6641	168
+       53	5746	5828	1000	1000	1542	607	10429	1225	2476	
+
+T 169  5299	5537	5550	3883	*	4421	5746	*	4517	2762	5834	3595	*	6243	2954	3410	2222	4437	*	6586	169
+       65	*	4500	0	*	3044	186	10468	1000	2257	
+
+Y 170  6939	8022	4161	4602	2868	5734	4254	5462	6332	4340	*	4188	*	4983	5612	3512	4360	4139	6908	1786	170
+       130	*	3540	*	*	3731	113	10412	0	2912	
+
+S 171  5547	6506	5421	4658	4919	4486	5575	4943	4932	4604	5040	3248	*	4054	5676	2188	2261	5459	6659	5413	171
+       68	5482	5401	1000	1000	4175	82	10310	1182	4116	
+
+L 172  4409	*	5513	4764	3931	5148	4452	3604	4286	3376	4540	6172	6427	4676	6701	3618	3570	2389	6174	4744	172
+       62	*	4573	*	*	2463	289	10271	0	4236	
+
+S 173  5504	*	5704	4978	4579	5387	6367	4755	4202	4207	*	4270	*	4909	4184	2280	2109	4552	4702	4474	173
+       31	6408	6728	1000	1000	3031	188	10291	1014	4247	
+
+S 174  3998	6263	4942	6727	3870	5109	5550	6470	3651	3785	6429	*	5213	5483	5019	1151	5780	4643	*	*	174
+       135	3485	*	2805	223	1437	665	10327	2365	4014	
+
+T 175  4312	*	6961	3722	4265	5576	4415	3886	4313	4645	6749	4300	*	3925	3451	2842	2537	5021	6619	5794	175
+       11	*	7037	*	*	1318	740	10394	0	2965	
+
+L 176  6567	6446	6977	*	4391	*	*	3588	*	444	7033	*	6734	*	6133	*	*	4277	*	5538	176
+       15	6616	*	2322	322	2110	380	10468	1020	2305	
+
+T 177  5099	6632	4656	5691	6705	6891	3355	3578	3860	3291	5852	3908	5605	6888	3802	4138	2367	4082	*	4759	177
+       12	6891	*	0	*	884	1126	10465	1000	2167	
+
+L 178  6758	6500	*	*	4186	5820	*	1380	6571	1835	*	7530	6620	*	*	5879	4910	3026	4911	6603	178
+       0	*	*	*	*	*	0	10506	0	1454	
+
+S 179  5793	6719	4486	5718	5058	*	5285	5753	3155	5109	5725	4911	3180	3940	4282	2436	2470	4626	*	6874	179
+       0	*	*	*	*	*	0	10491	0	1454	
+
+K 180  3442	6916	4199	4840	6652	5231	4428	5663	3962	4290	5603	3141	2545	5126	3653	3115	5309	5146	6656	*	180
+       0	*	*	*	*	*	0	10491	0	1454	
+
+A 181  2894	*	5555	4629	7142	4451	5799	4794	4432	3442	6905	4658	5839	4835	4547	2832	3470	2437	*	*	181
+       15	*	6639	*	*	1641	558	10491	0	1454	
+
+D 182  4653	*	3149	4834	*	4007	4724	4808	3390	3441	5665	5305	4248	3405	3464	3778	3131	*	6327	7137	182
+       167	*	3194	*	*	*	0	10506	0	1425	
+
+Y 183  4293	5009	6758	2604	7011	4191	5072	4742	4276	3718	4668	*	3564	4970	3803	4935	5766	4313	2859	5620	183
+       122	5570	4056	0	*	1805	486	10355	1159	3661	
+
+E 184  3437	*	1963	2510	5801	4839	4752	5648	4638	5460	*	3874	6528	5555	5061	3023	4584	*	6990	*	184
+       15	6560	*	1000	1000	*	0	10355	1000	3838	
+
+K 185  *	*	1166	3193	6491	6600	3366	6714	4869	5827	*	3471	5036	*	6394	3818	5128	*	*	4912	185
+       34	6404	6409	0	*	475	1833	10355	1021	3838	
+
+H 186  3041	6912	3622	4511	7010	2139	6981	5454	4688	4822	5130	3544	6373	6569	5122	2373	4773	6612	*	*	186
+       0	*	*	*	*	2732	235	10472	0	1974	
+
+K 187  3040	*	5136	3875	*	1192	5606	6888	4250	4498	*	*	*	7076	4276	4623	3820	4746	*	6559	187
+       0	*	*	*	*	*	0	10481	0	1807	
+
+V 188  5523	*	5574	2998	*	*	*	3523	3796	4624	5153	3522	4008	5085	4062	4801	2372	3082	*	5734	188
+       45	5602	6614	3452	138	1190	832	10481	1223	1807	
+
+Y 189  *	*	*	*	2579	*	5105	3898	*	3658	*	*	*	*	*	*	*	3992	4903	834	189
+       0	*	*	*	*	1034	967	10477	0	1778	
+
+A 190  4451	*	5650	3475	4619	6914	*	4398	4856	*	5757	5913	6499	4832	3037	3466	1739	4262	6387	4152	190
+       27	5770	*	0	*	1281	765	10517	1194	1316	
+
+C 191  *	136	6522	6954	5907	7135	*	*	*	5794	6788	*	*	*	*	*	*	5627	*	*	191
+       16	*	6533	*	*	1283	764	10510	0	1316	
+
+E 192  4014	7024	*	3253	4748	6834	5853	4402	3712	4312	*	*	*	3105	2759	4979	3124	2490	*	*	192
+       0	*	*	*	*	*	0	10499	0	1313	
+
+V 193  1395	*	6818	6563	4602	6739	*	4053	5880	3947	*	7495	6684	*	*	4769	*	1491	*	*	193
+       31	*	5564	*	*	*	0	10499	0	1313	
+
+T 194  4636	*	3941	3429	4107	4277	4438	*	3933	6269	*	5067	6566	3206	3861	3043	2502	6716	5287	5874	194
+       15	*	6549	0	*	539	1682	10337	1265	1747	
+
+H 195  4800	*	6591	6452	5803	4908	1953	5752	7020	4787	*	1359	*	5108	5603	4084	4863	*	6426	5262	195
+       46	6474	5633	3907	100	1437	665	10325	1020	1283	
+
+Q 196  3925	6051	5382	2401	6147	3098	4788	5605	3256	5378	6580	4963	2698	6553	4233	3548	5396	5660	*	*	196
+       23	5988	*	1000	1000	1938	436	10152	1019	1577	
+
+G 197  2577	*	3898	4042	6400	2871	4435	5343	4117	5377	*	3912	4575	5906	5342	2481	*	4041	*	6181	197
+       0	*	*	*	*	*	0	9856	0	1382	
+
+L 198  5085	*	6153	4524	6105	2431	*	3459	5996	1590	4801	4289	5776	*	5011	4150	5021	4917	*	5809	198
+       123	4422	4847	1860	465	*	0	9573	1371	1382	
+
+S 199  5773	*	5938	3611	*	3617	6035	*	3163	5732	*	3057	2815	3830	5001	2507	4892	3591	*	*	199
+       78	*	4239	0	*	514	1738	9413	1058	1782	
+
+S 200  2941	*	3637	2558	*	3949	*	*	6364	5891	*	4444	4708	4376	4905	2375	3312	4334	*	5877	200
+       0	*	*	1000	1000	2451	291	9324	1110	1652	
+
+P 201  4347	4876	5907	4844	*	5050	4384	6074	4443	*	*	2857	1657	4911	3878	3810	3943	4886	*	*	201
+       28	5690	*	0	*	802	1230	9217	1000	1503	
+
+V 202  3710	*	4789	4790	*	*	*	3485	3412	2829	*	*	*	4284	5386	4239	3351	1904	*	4883	202
+       0	*	*	*	*	0	*	9122	0	1110	
+
+T 203  5033	5469	*	3412	*	5635	*	*	4812	4429	*	4017	*	3762	3423	2495	2060	3253	*	*	203
+       27	*	5777	*	*	*	*	9142	0	0	
+
+K 204  2266	*	5569	5776	3810	5808	5478	4433	2643	3175	*	5735	*	5287	3054	4739	4323	3800	*	*	204
+       11	*	7061	*	*	0	*	9068	0	1000	
+
+S 205  4912	*	3410	3828	4867	*	5363	5001	4395	*	*	2388	*	*	5818	2409	2155	4526	*	*	205
+       0	*	*	*	*	*	0	9078	0	1110	
+
+F 206  *	*	*	*	2922	*	*	2052	6063	2455	*	*	*	5554	*	*	4575	2208	4685	3170	206
+       45	5033	*	1903	449	0	*	9015	1283	1110	
+
+N 207  5124	*	4328	4323	*	5428	4443	*	5542	*	*	2559	3626	*	3022	2323	2461	5293	*	*	207
+       27	5739	*	0	*	*	*	8561	1110	0	
+
+R 208  *	*	4319	*	4644	*	4468	*	2536	1362	*	*	3822	4260	3491	*	4313	4606	*	*	208
+       0	*	*	*	*	0	*	7064	0	1110	
+
+G 209  3397	*	2366	3381	*	4403	*	*	*	*	*	*	2698	*	*	1589	3622	*	*	*	209
+       272	2542	*	0	*	*	*	6900	1021	0	
+
+E 210  *	*	*	758	*	*	*	*	*	*	*	2582	*	2050	*	*	*	*	*	*	210
+       0	*	*	0	*	*	*	3919	0	0	
+
+//
+�HHsearch 1.5
+NAME  0b91ebac43769ec865264a8281966ca6
+FAM   
+FILE  0b91ebac43769ec865264a8281966ca6
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:17:59 2013
+LENG  119 match states, 119 columns in multiple alignment
+FILT  132 out of 578 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  6.2 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CHHHHHHHHHHHCCCCCCHHHHHHCCCCCCCCCCCCCCCCHHHHHHHHHHHHHHHHHCCCCCCCCCCEEEEEECCEEEECCCCCHHHHHHHHHHHHHHHH
+HHHCCCCHHHHCCCCCCCC
+>ss_conf PSIPRED confidence values
+9899999999874899886999746877689999985523768987458899997026798762361489997995788999996999999979999999
+9978577888288966899
+>Consensus
+xlxqlxxMixxxxxxxxxxxxyxxYGCxCgxgGxGxPvDxiDxcCxxhxxCyxxxxxxxxCxxxxxxYxxxxxxxxxxCxxxxxxCxxxlCeCDxxxAxc
+xxxxxynxxxxxxxxxxxc
+>0b91ebac43769ec865264a8281966ca6
+HLVQFNGMIRCTIPGSIPWWDYSDYGCYCGSGGSGTPVDELDRCCQVHDNCYTQAQQLTECSPYSKRYSYDCSEGTLTCKADNDECAAFVCDCDRVAAIC
+FAGAPYNKENINIDTTTRC
+>gi|149410126|ref|XP_001508765.1| PREDICTED: similar to otoconin [Ornithorhynchus anatinus]
+-LPRLGEMLFCL--TQRCPEEFESVGCFCGPEERGASADILDSCCFSHHCCLEQVKT-MGCELErSSQVEVVCLDHKPECTG-WNACEKLLCSCDRTAAE
+CLAAASFNNSLPLP------
+>gi|313237065|emb|CBY25148.1| unnamed protein product [Oikopleura dioica]
+-YWQLMEQILYFNP-AFDQRKFWAYGCNCLLLgdrpmsdpGYGPPVDALDTVCKHYKDCAQCAKKKhgDECINEFKKYKFSEsfyeKGNASMCKNEANSC
+ERDLCECDFAFAKAHVQAigSFVTDYHLFW-----
+>gi|313225325|emb|CBY06799.1| unnamed protein product [Oikopleura dioica]
+-LLQLAEMVKQVQRTDYLFERYCFYGCHCIPGyavhdstaGKGPAQDGIDSVCSRLKQCYWCANDEeeGQCDGTMKSYSWNVVDndkdgkiDDIVCYNQP
+GSCRWKLCQCDRQFALQLRDVeeTYNPLL---------
+>gi|313238038|emb|CBY13157.1| unnamed protein product [Oikopleura dioica]
+--TNFRNMWHEYGYTPQQLTNLYGYGCYCLNlGGSpmsglnelnGvKPMDDIDRTCFHWTRCNRCAAIDhgEKCKAEDRSYDFEIDpdTKDITCKEKKNT
+CKWAICECDKEQVLSMKQ----------------
+>gi|313220609|emb|CBY31456.1| unnamed protein product [Oikopleura dioica]gi|313226182|emb|CBY21325.1| unnamed protein product [Oikopleura dioica]
+-LRQFRRLYTFYLVGyRLRPAHLVQYGCWCFPRgqlimGYGQPIDGIDATCRNHQLCLNCVGLDtnYECNPHTQPYRVYgqiyQNGRRLMCKDPPGSCAW
+LACQCDVNMVTTSIIeslKGYKPRFWMYDPG---
+>gi|313225706|emb|CBY07180.1| unnamed protein product [Oikopleura dioica]
+-------------------YEFHNYGCYCVApsdtkKMRGRPVDEIDRKLVakfplvknthfvtpVHFLTTDAIRKQWG--FSILIYRYKItktsSGNRI
+ECTNAADTCAYASCMCDKGLAEDLGTllmngVKVNSTYREHDGE---
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+H 1    3410	*	3802	*	*	3651	4225	5632	*	5476	*	2427	*	*	*	1324	4240	5619	*	*	1
+       0	*	*	*	*	*	*	5365	0	0	
+
+L 2    3980	*	5732	*	3868	*	*	2541	*	1091	4287	*	5908	*	*	*	*	3078	*	5515	2
+       0	*	*	*	*	*	*	5908	0	0	
+
+V 3    4008	*	6373	*	3571	4980	*	4421	5708	1814	5346	4225	4466	*	5302	5233	5518	3653	3228	3709	3
+       0	*	*	*	*	*	*	6211	0	0	
+
+Q 4    6474	*	3962	3753	6554	*	5746	*	*	*	*	2210	*	993	4345	5420	5062	*	*	*	4
+       0	*	*	*	*	*	*	6280	0	0	
+
+F 5    *	*	*	6329	1232	*	*	5455	*	957	5384	*	*	*	*	*	*	*	*	*	5
+       0	*	*	*	*	*	*	6347	0	0	
+
+N 6    3221	6231	3782	3676	5787	2208	4787	5247	4100	4337	5482	4467	*	4293	3646	4851	*	4683	6755	4562	6
+       0	*	*	*	*	*	*	6323	0	0	
+
+G 7    3814	6637	3920	2875	4617	4494	6452	5350	3307	4028	5740	3385	*	7011	3405	3497	3841	5135	6405	5811	7
+       13	*	6780	*	*	*	*	6350	0	0	
+
+M 8    5732	*	*	*	*	*	*	4439	6605	2958	571	6188	*	4481	*	6625	6740	4828	6652	*	8
+       0	*	*	*	*	0	*	6355	0	1007	
+
+I 9    *	6750	*	*	4569	*	*	1030	6784	3417	2793	*	*	6589	*	5149	4820	3016	*	6129	9
+       0	*	*	*	*	*	*	6355	0	0	
+
+R 10   5538	*	5020	3081	4710	4582	*	*	2403	3528	3891	4122	*	3312	3770	3914	4027	6543	*	4776	10
+       0	*	*	*	*	*	*	6355	0	0	
+
+C 11   4196	1369	*	5383	3887	6587	3538	6889	3877	*	*	*	6481	4073	5698	4409	6970	4532	6499	3406	11
+       21	6129	*	0	*	*	*	6355	1015	0	
+
+T 12   3201	6784	*	5125	4865	5062	4913	3406	4967	3810	4014	6333	5897	*	4599	5601	3379	2553	*	2847	12
+       536	*	1689	*	*	0	*	6328	0	1015	
+
+I 13   4850	*	5919	5075	4030	4982	*	3459	*	3590	4576	2935	*	3415	5828	*	1688	*	*	4109	13
+       803	*	1228	*	*	3697	116	6136	0	2585	
+
+P 14   *	*	2814	*	*	3316	4357	4922	5106	*	*	4176	1503	*	4293	4975	3012	4989	*	*	14
+       966	3246	1386	1425	672	94	3986	5647	1249	3717	
+
+G 15   5295	*	4703	6215	*	1515	*	5441	5275	5373	*	5656	6525	6207	5226	3198	2043	4821	4576	*	15
+       115	3990	6207	1753	508	0	*	6148	1190	1922	
+
+S 16   4276	*	4318	4311	4994	2581	6586	5383	3085	6481	6482	4602	6242	4895	2984	2890	3979	4352	6252	*	16
+       52	5480	6290	2451	291	0	*	6422	1061	1002	
+
+I 17   *	5637	6697	4241	2706	5512	5645	4198	3715	5121	5612	4114	4554	4605	2669	3159	4347	*	5059	4245	17
+       17	6446	*	2807	222	*	0	6491	1003	1017	
+
+P 18   2813	4167	2844	5140	5745	3746	6676	5602	*	6627	6515	2844	3195	5255	6569	2828	4692	5316	*	*	18
+       88	5048	5109	295	2437	*	0	6369	1190	1017	
+
+W 19   2530	*	4534	4471	3345	4741	*	3270	5620	2857	5735	*	2768	5718	*	4815	6927	4013	4627	6652	19
+       27	6380	7203	0	*	0	*	6311	1000	1194	
+
+W 20   3861	*	4221	2996	3533	4386	6489	4630	5490	2548	*	5172	6721	*	3411	4163	4159	5680	3538	5340	20
+       35	5368	*	2559	268	0	*	6322	1111	1000	
+
+D 21   4058	*	2032	3515	*	6431	6016	6128	2540	5547	6727	4307	6869	4240	3725	3392	4849	*	*	4436	21
+       25	6431	7447	3170	170	*	*	6293	1014	0	
+
+Y 22   5592	*	*	*	2257	6631	7077	5631	*	2733	4526	*	*	6547	*	*	*	6628	6225	987	22
+       0	*	*	0	*	0	*	6391	1000	1000	
+
+S 23   5040	4654	5308	4113	3962	3544	5498	4176	5335	3369	6470	2924	*	4816	4841	4310	4054	4938	3618	4064	23
+       21	*	6091	*	*	*	*	6365	0	0	
+
+D 24   3687	*	2812	4397	4975	2371	6573	*	4393	7157	6294	2713	7137	4910	4189	3361	7053	6241	6077	4353	24
+       0	*	*	0	*	0	*	6357	1015	1076	
+
+Y 25   *	*	*	*	*	*	5245	*	*	5866	*	*	*	*	*	*	6108	6475	*	104	25
+       0	*	*	*	*	*	*	6365	0	0	
+
+G 26   6709	*	*	*	*	39	*	*	*	*	*	*	*	*	5866	*	*	*	*	*	26
+       0	*	*	*	*	*	*	6365	0	0	
+
+C 27   7482	110	*	*	*	*	*	*	6891	5866	*	4568	*	*	*	*	*	*	*	*	27
+       0	*	*	*	*	*	*	6365	0	0	
+
+Y 28   5797	*	*	*	3303	5245	2213	*	7122	5866	*	4102	*	7165	*	5517	*	*	2556	1485	28
+       16	*	6486	*	*	*	*	6365	0	0	
+
+C 29   *	113	*	*	*	5252	*	*	*	5861	*	*	*	*	*	5244	7482	*	*	*	29
+       25	5861	*	2807	222	0	*	6345	1054	1016	
+
+G 30   6798	*	6873	*	3743	1056	5192	7085	*	3409	5924	3913	*	4300	5380	4115	5184	6240	5173	6147	30
+       28	5701	*	2735	235	*	*	6365	1065	0	
+
+S 31   3894	*	*	7306	3217	5541	*	3910	5673	2216	4748	5971	2607	4785	4269	4131	6497	6278	4287	4101	31
+       529	1703	*	2958	199	*	*	6361	2841	0	
+
+G 32   5321	*	5911	3629	6994	1117	7045	4641	4751	4007	4588	5311	4545	5262	4146	4594	6567	6514	*	7270	32
+       363	2355	5212	2483	284	*	*	6361	2344	0	
+
+G 33   4424	6799	7136	6348	7112	519	*	*	7455	*	4748	5532	4973	6911	4542	5438	5029	7062	*	6454	33
+       41	5171	*	2900	208	0	*	6291	1134	1112	
+
+S 34   4354	*	5489	4562	3976	4212	4132	5571	2591	6765	6579	6156	5059	3571	2562	3008	5439	4792	*	5364	34
+       50	5988	5780	1046	956	*	*	6382	1074	0	
+
+G 35   7069	*	6981	*	*	156	*	*	7175	*	7324	5508	*	*	5493	6828	7065	7161	*	7193	35
+       147	3365	*	103	3862	1379	700	6354	1764	1125	
+
+T 36   3531	*	4397	4120	6181	*	5422	6495	2646	4448	5129	4547	3868	3694	3080	5742	3080	4055	6278	6739	36
+       53	7105	5116	489	1798	1333	730	6348	1066	1128	
+
+P 37   3522	*	*	*	*	*	*	6126	*	*	*	*	307	*	6816	4815	5113	5885	*	*	37
+       0	*	*	*	*	732	1329	6274	0	1224	
+
+V 38   4342	6656	*	*	*	*	*	3635	3595	2759	5115	*	*	4486	5003	*	5909	976	*	*	38
+       0	*	*	*	*	*	0	6360	0	1054	
+
+D 39   5124	*	42	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	39
+       0	*	*	*	*	*	0	6360	0	1054	
+
+E 40   1988	*	2898	2024	5124	3757	6810	6416	5231	6028	6813	3974	5069	5421	6015	4450	*	7124	*	6873	40
+       0	*	*	*	*	*	0	6360	0	1054	
+
+L 41   5335	*	*	*	6647	*	*	1523	6728	2172	5124	*	*	*	6714	4662	2570	2937	*	6781	41
+       0	*	*	*	*	*	0	6360	0	1054	
+
+D 42   *	*	34	*	*	*	*	*	*	6603	*	*	*	*	*	*	*	*	*	6293	42
+       0	*	*	*	*	*	0	6362	0	1054	
+
+R 43   3437	*	*	3652	6459	7376	5757	6267	3344	5243	6581	5309	*	3829	1580	3082	4535	6722	4538	*	43
+       0	*	*	*	*	*	0	6362	0	1054	
+
+C 44   3399	1018	*	6584	6688	6490	5196	5136	4703	4520	*	6818	6535	5747	*	4877	3636	3629	*	6820	44
+       16	*	6535	*	*	*	0	6362	0	1054	
+
+C 45   *	88	*	*	5530	*	*	6762	*	6279	*	*	*	*	*	6044	*	*	*	*	45
+       0	*	*	*	*	*	0	6351	0	1136	
+
+Q 46   5541	*	*	7169	3590	*	3473	5819	2298	3804	4326	6762	*	2466	2497	7089	*	4532	*	4711	46
+       19	6279	*	3807	107	1253	785	6351	1028	1136	
+
+V 47   3056	6590	3421	3574	*	6274	5422	6365	3284	3670	6096	3627	*	3772	4375	3366	4210	3741	5661	*	47
+       0	*	*	*	*	*	0	6362	0	1054	
+
+H 48   6880	*	*	*	4320	*	850	*	7298	3003	*	*	*	7230	4566	6535	*	*	3982	2913	48
+       15	6584	*	1585	585	0	*	6362	1029	1054	
+
+D 49   4348	*	1450	6311	5618	4977	4123	7608	2489	5361	*	4879	6543	4430	3744	4697	5980	6744	6603	6005	49
+       0	*	*	*	*	*	*	6384	0	0	
+
+N 50   5719	2763	3707	3397	5672	5878	5726	6828	3186	4645	7308	4122	*	3280	2992	4646	4162	5019	6056	6162	50
+       27	6190	7602	1585	585	*	*	6384	1030	0	
+
+C 51   6597	75	*	*	*	6540	*	*	*	*	*	*	*	*	7084	6701	6337	*	*	*	51
+       13	6844	*	0	*	0	*	6388	1037	1000	
+
+Y 52   7207	*	*	*	*	6626	3792	5209	*	3110	*	6744	*	4251	*	6695	4702	5499	6340	681	52
+       8	*	7491	*	*	*	*	6384	0	0	
+
+T 53   3389	6848	3131	3489	*	3527	4553	*	2116	*	5970	4105	*	3954	4075	3447	5098	7256	7113	*	53
+       9	7341	*	1000	1000	*	0	6386	1000	1000	
+
+Q 54   4144	1235	4246	3493	*	5608	7173	7419	3158	6793	*	6297	*	3979	3808	4973	6556	5213	7417	*	54
+       25	*	5868	*	*	*	0	6386	0	1000	
+
+A 55   1806	*	6566	*	7106	7372	7324	3147	6809	1941	6318	5897	6775	*	*	5990	4368	2328	*	*	55
+       124	*	3607	*	*	2342	317	6390	0	1164	
+
+Q 56   3783	*	5320	3631	5888	4754	4953	4649	2516	3833	4418	3959	5490	3251	3063	5988	5467	4666	*	6085	56
+       100	7391	4028	2000	415	3158	171	6366	1000	1727	
+
+Q 57   3746	6551	3602	2802	5147	5558	5945	4249	2907	3441	3987	4104	*	4336	4582	4081	4463	5134	*	*	57
+       471	3746	2294	1230	801	1546	605	6357	1434	2049	
+
+L 58   6074	*	2044	2593	*	5065	4556	5051	3495	6061	5637	5567	*	3914	4002	3262	3580	6272	*	*	58
+       824	1201	*	1357	714	247	2666	6122	3095	2865	
+
+T 59   5908	*	3940	3170	5738	3102	3949	6768	3483	4758	5254	5478	3919	5484	4586	3432	3361	6810	6235	3631	59
+       51	4859	*	1028	972	1158	858	6363	1166	1275	
+
+E 60   4926	*	3147	2626	*	2794	6283	4423	3679	*	4751	4745	5778	5067	3868	3236	3639	5400	6726	*	60
+       27	*	5754	0	*	1561	597	6354	1004	1126	
+
+C 61   5562	183	*	*	6699	*	*	*	*	5009	6659	*	*	*	*	5452	6961	5909	*	*	61
+       173	3893	4449	1917	444	2455	291	6340	1451	1190	
+
+S 62   4355	*	2946	5082	5133	5626	6595	3757	3534	4423	7473	3159	*	3801	3677	3197	4120	5991	4878	4571	62
+       538	1858	4829	2039	402	199	2959	6296	2877	1528	
+
+P 63   3812	*	6434	4279	5472	3706	*	5652	5403	4389	6394	4784	1377	7239	7109	3909	4605	3184	*	6565	63
+       12	*	6971	*	*	0	*	6338	0	1315	
+
+Y 64   5056	*	4338	2452	5133	4486	4510	5470	3791	4144	*	6937	*	5828	6158	3478	5423	4566	*	1866	64
+       147	4821	4028	469	1850	0	*	6354	1210	1000	
+
+S 65   4445	*	5533	5440	2382	7009	6275	3358	5156	3079	5498	5570	*	3820	5339	4445	2215	4864	6383	7218	65
+       99	5038	4800	786	1251	227	2780	6309	1148	1353	
+
+K 66   3796	6034	4146	4771	*	5570	6042	4173	3820	4103	*	3810	5745	3723	4978	4099	2315	2814	*	*	66
+       0	*	*	0	*	0	*	6334	1002	1239	
+
+R 67   4948	6676	4808	6069	5078	4168	4674	4607	4196	3766	6996	3774	3112	3888	3810	2898	3373	5021	7265	6605	67
+       13	*	6751	*	*	*	*	6358	0	0	
+
+Y 68   7197	*	*	*	5891	*	*	6874	*	*	*	*	*	*	5215	4979	7098	6469	*	167	68
+       0	*	*	*	*	*	0	6343	0	1018	
+
+S 69   7121	6287	3795	3520	*	4221	*	6169	2528	5215	*	2809	5575	4081	3501	2711	3879	6804	*	6354	69
+       12	6961	*	1000	1000	*	0	6343	1000	1018	
+
+Y 70   4480	*	7015	7246	2502	*	4925	4522	*	4175	6035	*	*	*	*	4964	6804	3505	2222	1869	70
+       70	4826	6406	1611	572	*	0	6343	1205	1018	
+
+D 71   4851	*	3680	3250	4848	6253	5116	4931	2955	6952	7270	3812	*	4709	4233	2909	3053	3794	5621	5602	71
+       168	3884	4559	1701	530	2366	311	6337	1515	1167	
+
+C 72   4445	1916	*	5157	2881	4810	*	4080	5305	3420	4418	*	5186	4557	*	5437	4936	3851	4962	4722	72
+       330	2504	5156	1768	501	3422	141	6346	2095	1418	
+
+S 73   5244	*	3398	3359	5991	3458	4436	4077	4609	4427	*	3653	*	3462	4505	2869	7081	3231	6773	7069	73
+       119	3655	*	1366	708	1877	459	6313	1439	1628	
+
+E 74   4221	6695	2685	3165	*	3201	7106	6614	3845	*	*	2524	4377	4755	4913	3202	4468	7096	*	5602	74
+       303	2585	5468	2056	397	778	1263	6328	2032	1446	
+
+G 75   4197	5431	3788	4969	*	1845	4810	*	3478	*	*	3270	7081	4034	3185	4091	5841	5258	5584	6783	75
+       70	4399	*	2315	324	1221	809	6337	1308	1314	
+
+T 76   4498	7360	4105	3126	5042	4458	5499	5716	3139	*	5710	4062	5905	3909	3312	3359	3305	3856	*	5973	76
+       8	7554	*	1000	1000	499	1775	6342	1000	1156	
+
+L 77   4283	*	*	6537	4909	5281	5842	1614	5011	3215	5565	6674	2806	*	6875	5989	4985	2745	*	5862	77
+       15	6595	*	0	*	*	0	6356	1010	1004	
+
+T 78   4638	*	4932	3729	4513	*	5505	3366	4002	5826	6118	5852	6886	3945	4553	4235	2240	2693	6604	4992	78
+       11	*	7057	*	*	*	0	6356	0	1004	
+
+C 79   5986	125	*	*	*	6586	*	*	*	*	*	*	6562	*	*	5191	6868	6589	*	*	79
+       137	7218	3576	0	*	1180	840	6353	1008	1054	
+
+K 80   4102	7455	3572	4640	*	3456	5757	5899	3555	3582	5466	5117	7229	6829	4262	2307	3146	4265	*	5014	80
+       104	5278	4511	1094	912	134	3497	6336	1092	1632	
+
+A 81   5158	5232	1812	3401	*	3245	*	6779	5884	7205	*	2320	5811	*	7024	2935	4297	6561	*	6680	81
+       290	3679	3265	1559	598	0	*	6273	1482	1292	
+
+D 82   3391	*	3959	2919	*	3638	6508	6005	4852	4909	6471	3116	3662	4006	4716	2940	3787	6029	*	6757	82
+       280	2600	6464	2457	290	264	2580	6291	2159	1782	
+
+N 83   3320	*	4554	2841	5263	3931	6694	*	3132	4557	7264	3515	4121	4758	5084	3405	4633	4335	5252	4990	83
+       40	6369	6020	2470	287	2196	355	6323	1064	1223	
+
+D 84   5104	5813	2472	6473	6767	1926	6220	*	5356	*	7124	2312	5959	6272	5652	3545	3431	5993	*	*	84
+       0	*	*	0	*	0	*	6313	1017	1276	
+
+E 85   5005	*	4067	4161	*	5228	5577	7439	4166	4930	*	6195	3406	5420	3546	2270	2051	4775	6751	*	85
+       22	6043	*	0	*	*	*	6354	1078	0	
+
+C 86   7296	177	6809	*	7133	*	*	*	*	5266	*	7581	*	7475	7094	*	*	5666	6214	5996	86
+       0	*	*	*	*	*	*	6354	0	0	
+
+A 87   2565	*	5225	2059	*	3199	*	*	2882	5595	*	5652	6593	3897	3062	4076	6084	6975	*	*	87
+       0	*	*	*	*	*	*	6354	0	0	
+
+A 88   4361	*	5543	5507	6290	4901	4471	*	3260	5362	4515	5226	*	3171	1349	5628	7244	5685	5417	4501	88
+       0	*	*	*	*	*	*	6354	0	0	
+
+F 89   1814	*	3760	3836	4752	5260	5832	7296	4640	3861	5741	3152	*	3777	6112	3343	4470	*	6980	7476	89
+       8	*	7581	*	*	*	*	6354	0	0	
+
+V 90   3462	*	*	*	*	*	7409	2348	5810	1419	5384	5691	*	6059	7190	4897	4237	2716	*	6475	90
+       0	*	*	*	*	*	0	6358	0	1000	
+
+C 91   *	82	*	*	4787	*	*	*	*	*	*	*	*	*	*	*	*	*	*	5728	91
+       0	*	*	1000	1000	0	*	6358	1000	1000	
+
+D 92   4525	*	5711	1027	*	*	6604	*	4185	5215	5620	3976	*	2689	4286	4853	5068	*	*	*	92
+       0	*	*	*	*	*	*	6354	0	0	
+
+C 93   *	65	*	*	*	*	*	*	*	5597	*	*	*	*	*	*	6539	6316	*	*	93
+       0	*	*	*	*	*	*	6354	0	0	
+
+D 94   6478	*	130	4809	*	*	6758	*	*	*	*	*	*	*	6316	6836	6855	*	*	*	94
+       0	*	*	*	*	*	*	6354	0	0	
+
+R 95   3887	*	*	5003	5899	6840	6230	7455	1504	3334	6634	*	*	4816	2036	6048	4438	4400	*	7170	95
+       8	*	7581	*	*	*	*	6354	0	0	
+
+V 96   2643	*	3732	3003	5362	5298	*	5554	3327	5200	5346	4128	*	2780	4118	4591	3741	4996	*	6708	96
+       13	6756	*	680	1411	0	*	6358	1042	1000	
+
+A 97   1924	6316	*	*	1495	5925	*	5412	*	2289	4882	*	*	*	*	5241	*	4483	*	5682	97
+       0	*	*	*	*	*	*	6354	0	0	
+
+A 98   599	*	*	*	*	5615	*	4266	*	6478	*	*	*	5203	*	4694	5046	2740	*	6570	98
+       0	*	*	*	*	*	*	6354	0	0	
+
+I 99   7296	*	5579	2206	6675	7137	4712	3930	2816	2724	5013	3586	*	5261	4216	4959	4429	4660	*	5074	99
+       0	*	*	*	*	*	*	6354	0	0	
+
+C 100  5746	998	3528	4043	*	5045	6700	*	4850	6280	*	3995	*	4290	4861	4568	4597	6148	*	*	100
+       0	*	*	*	*	*	*	6349	0	0	
+
+F 101  6794	7228	*	*	1684	*	5031	4013	*	1352	3858	*	*	6710	5187	5901	*	4406	5721	*	101
+       0	*	*	*	*	*	*	6386	0	0	
+
+A 102  1558	7290	7133	6121	5914	3640	6371	4628	3809	4496	7028	5832	6268	5029	3102	3580	5118	4529	6621	5938	102
+       11	7050	*	1000	1000	*	*	6386	1002	0	
+
+G 103  3388	*	3373	3499	*	6126	4824	6828	3084	5329	*	3689	6943	3369	2041	4356	5149	*	*	5987	103
+       248	2752	6684	1475	643	*	*	6412	1875	0	
+
+A 104  2209	*	4800	4520	5167	7030	3843	6581	4634	4917	5477	3152	*	4334	*	2699	4498	4332	*	3594	104
+       859	1156	*	1222	807	0	*	6350	3300	1000	
+
+P 105  5594	*	4041	3467	7046	5669	4946	5295	4181	5630	6855	6671	2786	6570	5527	2676	2325	3109	*	*	105
+       0	*	*	*	*	*	*	6307	0	0	
+
+Y 106  *	5528	*	5389	2277	*	6809	5035	5867	*	*	*	*	*	*	*	*	4985	3379	827	106
+       0	*	*	*	*	*	*	6296	0	0	
+
+N 107  5361	*	2939	4708	*	*	4791	*	4871	*	*	924	4084	5370	5146	4043	6698	5167	*	*	107
+       15	*	6609	*	*	*	*	6292	0	0	
+
+K 108  4784	5339	3990	3061	6775	*	5828	5425	2605	5327	5775	4276	2895	4930	4285	3296	4118	4565	6159	6275	108
+       21	6145	*	2322	322	0	*	6278	1029	1003	
+
+E 109  3890	*	3388	3354	5647	4182	4956	*	2100	4899	*	3113	*	5374	4275	3294	4288	6570	*	6611	109
+       0	*	*	*	*	*	*	6290	0	0	
+
+N 110  *	*	*	6510	2694	*	3336	5738	6469	2931	6349	2993	*	5646	*	*	*	*	*	1264	110
+       0	*	*	*	*	*	*	6220	0	0	
+
+I 111  4609	*	4754	4364	3726	6443	2991	5195	2912	3933	6060	4692	5965	4417	2783	4421	4582	6502	5120	4477	111
+       0	*	*	*	*	*	*	6173	0	0	
+
+N 112  5779	*	4204	4211	3112	2851	3753	6177	*	3558	4943	2847	6400	5145	4862	3343	5052	4667	*	4949	112
+       0	*	*	*	*	*	*	6127	0	0	
+
+I 113  *	5991	*	6072	1794	5311	4808	3784	*	3016	5196	5171	5592	*	*	5503	*	3995	*	1925	113
+       0	*	*	*	*	*	*	6130	0	0	
+
+D 114  *	*	1550	*	5385	5030	5445	6196	5250	5883	5666	3401	2805	5015	5878	3503	5067	*	4000	4710	114
+       0	*	*	*	*	*	*	6112	0	0	
+
+T 115  3620	*	5204	*	*	3725	*	*	3112	*	*	3504	5032	3711	3114	2743	2744	4715	*	4237	115
+       0	*	*	*	*	*	*	5820	0	0	
+
+T 116  *	*	3511	3750	5521	3478	*	3872	2713	5199	5353	3469	4834	4288	4370	2437	4492	*	*	*	116
+       0	*	*	*	*	*	*	5522	0	0	
+
+T 117  3684	*	*	2603	*	*	*	*	1630	4726	4824	*	3536	*	3606	2676	4766	*	*	*	117
+       636	*	1487	*	*	*	*	4589	0	0	
+
+R 118  *	*	*	*	*	*	3462	*	2355	*	*	2843	*	*	1785	*	3651	*	*	2289	118
+       0	*	*	*	*	0	*	3453	0	1314	
+
+C 119  *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	119
+       0	*	*	0	*	*	*	4006	0	0	
+
+//
+�HHsearch 1.5
+NAME  0c68c5d75cc2ae618e6e5f1010b542af
+FAM   
+FILE  0c68c5d75cc2ae618e6e5f1010b542af
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:13:12 2013
+LENG  91 match states, 91 columns in multiple alignment
+FILT  147 out of 815 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  7.0 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCHHHHHHCCCCHHHHCCCCCCCCCCCCCHHHHHHCCCCHHHHCCCCCCCCCCCCHHHCCCCCCCCCCHHHHHHHCCCCCCCCCHHHCC
+>ss_conf PSIPRED confidence values
+9742113323017564504888855334432468987376578751557765688850321474313465067898705677562113049
+>Consensus
+xxxxlxxxHxxxxxCxxCHxxxxxxxxxxxxxxxCxxCHxxxxxxxxxhxxhxxxxxCxxCHxxHxxxxxxxxxCxxCHxxxxxxxxxxxx
+>0c68c5d75cc2ae618e6e5f1010b542af
+ADQKLSDFHAESGGCESCHKDGTPSADGAFEFAQCQSCHGKLSEMDAVHKPHDGNLVCADCHAVHDMNVGQKPTCESCHDDGRTSASVLKK
+>gi|303257051|ref|ZP_07343065.1| fumarate reductase flavoprotein subunit [Burkholderiales bacterium 1_1_47]gi|330999581|ref|ZP_08323292.1| hypothetical protein HMPREF9439_00917 [Parasutterella excrementihominis YIT 11859]gi|302860542|gb|EFL83619.1| fumarate reductase flavoprotein subunit [Burkholderiales bacterium 1_1_47]gi|329574434|gb|EGG56004.1| hypothetical protein HMPREF9439_00917 [Parasutterella excrementihominis YIT 11859]
+-AQQVKPYHQNIKDCAACHTKENAVAGnqfVTPDNKACLTCHQSYAAVAEktknlkngepnPHASHHygEGIACTACHSEHK---TSQVYCNNCHE----
+-------
+>gi|253701708|ref|YP_003022897.1| cytochrome C family protein [Geobacter sp. M21]gi|251776558|gb|ACT19139.1| cytochrome C family protein [Geobacter sp. M21]
+-----RSEHLPFVekRCSDCHNSNQgagsaseEGLLVKPREELCFGCHKNLLNKPFHHGPAA-VGDCLACHLPHDSAnpallvLSREKLCAKCHTERRKA
+QR----
+>gi|182412667|ref|YP_001817733.1| cytochrome b subunit of formate dehydrogenase-like protein [Opitutus terrae PB90-1]gi|177839881|gb|ACB74133.1| cytochrome b subunit of formate dehydrogenase-like protein [Opitutus terrae PB90-1]
+--KVGASVHG-SLECVDCHEGIdgeaSPH-RKQRVAVDCFSCHDDTAPKH-KFHSRLqldprpeGkDTSCTECHGTHEVQrvkSRDFAMskprltegCGQ
+CHAQAR--------
+>gi|308049069|ref|YP_003912635.1| decaheme c-type cytochrome, OmcA/MtrC family [Ferrimonas balearica DSM 9799]gi|307631259|gb|ADN75561.1| decaheme c-type cytochrome, OmcA/MtrC family [Ferrimonas balearica DSM 9799]
+-------------ACTA---chvEGE--plttRHSsYFEAETCINCH--neDRMtgkrASFqhlV----htihNTaatftdkndreytgqaaeallQNNC
+----qachVASEElaewgnwtRVPTKET------csachnN----------
+>gi|291286709|ref|YP_003503525.1| cytochrome C family protein [Denitrovibrio acetiphilus DSM 12809]gi|290883869|gb|ADD67569.1| cytochrome C family protein [Denitrovibrio acetiphilus DSM 12809]
+---FRRGRSSEKlVTCATCHDVHSKDknfLRIeAETGELCLTCHNEKEMVE--KTLHGKqklDKSCLSCHKVHNSEtkrllvKPDNDGCLDCHKKGGSAE
+KM---
+>gi|291279066|ref|YP_003495901.1| multiheme c-type cytochrome [Deferribacter desulfuricans SSM1]gi|290753768|dbj|BAI80145.1| multiheme c-type cytochrome [Deferribacter desulfuricans SSM1]
+--SMLKDIHYEKGlKCNNCHDMI-SLSKGDIATKRCNECHTINTDIIEHSiNAHIEKMECYACHSSWA-------------------------
+>gi|197121374|ref|YP_002133325.1| cytochrome C nitrate reductase, small subunit [Anaeromyxobacter sp. K]gi|220916077|ref|YP_002491381.1| cytochrome c nitrate reductase, small subunit [Anaeromyxobacter dehalogenans 2CP-1]gi|196171223|gb|ACG72196.1| cytochrome c nitrate reductase, small subunit [Anaeromyxobacter sp. K]gi|219953931|gb|ACL64315.1| cytochrome c nitrate reductase, small subunit [Anaeromyxobacter dehalogenans 2CP-1]
+-------------------------------PATCSNCHVMSGHYAgWQASAHHAVATCNDCHTPAA-------------------------
+>gi|91203484|emb|CAJ71137.1| hypothetical heme protein [Candidatus Kuenenia stuttgartiensis]
+-GVFLHNRHSPIQniECCECHNNDPANtkTHGgliieendckkchhnEATNEDCLKCHSAVNDYRngsfryaGIHSPVTGapdwmykAVLCTDCHKQEEN
+NflfRDTRSICIECHNDDYG-------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+A 1    0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1000	0	0	
+
+D 2    1661	*	2728	4574	*	2043	*	*	*	*	*	3150	2881	*	*	*	*	*	*	*	2
+       0	*	*	*	*	*	*	4919	0	0	
+
+Q 3    2145	*	5110	4911	*	3043	*	5175	3224	*	5173	3665	4855	2724	*	4966	4059	3811	*	*	3
+       0	*	*	*	*	*	*	5852	0	0	
+
+K 4    *	5502	5607	4710	3368	3470	4420	*	5754	4491	4535	3243	3607	3553	*	5368	2542	3902	*	4517	4
+       0	*	*	*	*	*	*	6554	0	0	
+
+L 5    5592	*	*	*	5572	3332	*	5939	4587	1288	2947	*	4289	*	5481	4629	5894	2930	*	*	5
+       0	*	*	*	*	*	*	6708	0	0	
+
+S 6    1567	*	6366	5056	*	4234	4403	*	3168	4952	6594	4797	4140	6271	3394	2924	4907	*	*	*	6
+       63	4547	*	1911	446	*	*	6976	1221	0	
+
+D 7    4158	*	2718	4775	4420	2665	6362	*	4446	*	*	3929	5671	*	5489	1936	5255	4011	6339	5403	7
+       0	*	*	*	*	*	*	7106	0	0	
+
+F 8    3104	*	*	5473	4361	5169	4607	3535	4925	3351	5450	4473	6454	4135	3379	4185	5008	2535	*	4816	8
+       14	6730	*	571	1614	*	*	7164	1058	0	
+
+H 9    6573	*	*	*	*	*	98	*	6673	*	6375	*	*	*	6434	6514	*	6519	*	*	9
+       14	6714	*	1000	1000	*	*	7225	1000	0	
+
+A 10   1452	*	5735	4411	*	3328	6456	6385	3592	5848	5446	6777	3783	4055	4928	4278	4663	4701	*	5762	10
+       129	*	3543	*	*	0	*	7261	0	1000	
+
+E 11   3495	*	3240	2785	5842	5978	*	*	4229	3532	*	4676	2166	3971	5468	5738	4552	3859	*	6853	11
+       143	5479	3794	0	*	0	*	7241	1047	1447	
+
+S 12   2730	*	3903	6506	4426	5632	5616	4414	3678	3575	3028	3641	5643	6699	4342	4100	6493	4270	*	3785	12
+       630	1630	5027	1357	714	0	*	7184	2835	1363	
+
+G 13   3614	*	4042	4176	*	1871	*	3707	5015	3107	4954	5447	*	4229	5382	4353	*	3012	*	*	13
+       602	1551	*	307	2383	0	*	7382	3498	1127	
+
+G 14   3274	*	3035	3803	6779	2814	*	6977	4369	*	*	3728	4724	3962	3831	3404	3027	5971	*	6110	14
+       32	5514	*	1357	714	0	*	7464	1145	1016	
+
+C 15   *	35	*	*	*	*	*	*	*	*	*	5373	*	*	*	*	*	*	*	*	15
+       0	*	*	*	*	*	*	7481	0	0	
+
+E 16   2832	6841	*	3257	5511	5576	5073	4211	4659	3202	7053	3727	6939	4134	*	3877	2600	3470	*	*	16
+       9	7274	*	0	*	*	*	7481	1000	0	
+
+S 17   3053	*	2208	4031	*	4909	7112	5929	4562	6588	6891	4259	4605	4820	5117	2172	3720	5602	*	6978	17
+       16	*	6526	*	*	*	*	7481	0	0	
+
+C 18   *	35	*	*	*	*	*	*	*	*	5365	*	*	*	*	*	*	*	*	*	18
+       0	*	*	0	*	587	1581	7472	1028	1075	
+
+H 19   *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	19
+       10	7128	*	0	*	*	0	7476	1000	1000	
+
+K 20   3905	*	2477	3283	*	2318	5369	6089	4409	4951	6986	4108	5836	4302	*	3715	3195	6318	*	*	20
+       61	5026	6521	1585	585	0	*	7476	1216	1000	
+
+D 21   3157	*	2614	3145	*	3511	*	6858	5641	4960	6229	4250	2128	5329	6810	3585	5108	5485	*	*	21
+       67	4756	6867	294	2438	0	*	7447	1249	1019	
+
+G 22   4533	*	4023	3345	7100	3316	2015	3733	4167	5342	7095	4501	6229	4321	4636	4579	4225	5335	*	6488	22
+       239	3394	4118	2284	331	1038	963	7456	1684	1074	
+
+T 23   3903	*	3660	2857	5971	2839	5946	5240	4120	4657	*	4480	4105	3724	4528	3370	3776	6151	*	6089	23
+       357	2326	5651	3026	189	126	3582	7452	2426	1532	
+
+P 24   3991	*	4445	4085	4993	4026	6659	6723	4164	*	5609	5121	1313	4939	6073	3212	5241	6846	5507	*	24
+       231	3030	5278	1105	902	2335	319	7467	1845	1190	
+
+S 25   4704	*	3625	4447	4762	5465	3025	4175	3741	3205	5288	3124	5389	5111	5055	3598	5007	3988	*	6163	25
+       418	2679	3390	2347	316	1285	762	7448	2364	1407	
+
+A 26   2893	*	3964	4985	6710	4428	7121	6637	3159	2689	6712	4063	4004	4616	5451	3740	3634	4094	*	5629	26
+       234	4622	3194	1528	614	1906	448	7348	1236	2020	
+
+D 27   3591	*	2381	4121	5747	3830	3896	5758	2688	3167	4337	6930	5182	6725	4290	4704	5568	5557	*	*	27
+       300	2474	6992	1753	508	919	1086	7271	2055	2506	
+
+G 28   3858	*	6688	4680	5279	2110	*	4465	2986	4294	5032	5045	3866	4663	4096	4770	4692	3467	*	6767	28
+       458	2158	4387	2695	242	925	1080	7355	2545	1754	
+
+A 29   2496	*	4392	3157	4280	3945	*	6881	3054	4676	5990	5436	5688	4262	4011	4103	3558	4917	*	5060	29
+       111	3964	6647	2450	292	815	1212	7432	1465	1716	
+
+F 30   2803	*	4255	3720	4600	4915	5078	6156	3955	5024	5862	5009	2816	5513	5005	4271	4274	3070	6735	4643	30
+       31	5555	*	1087	918	245	2678	7433	1190	1350	
+
+E 31   3222	*	3064	2959	*	3570	*	4416	4591	6184	4894	5181	5063	4229	4513	3295	3829	3511	*	6627	31
+       85	4770	5619	1617	569	0	*	7497	1230	1000	
+
+F 32   3233	*	3876	4763	6181	4481	6925	4264	4493	5999	5277	2356	3398	6154	4105	3683	3852	4063	*	6085	32
+       63	4839	7012	2256	339	0	*	7493	1212	1198	
+
+A 33   2218	*	3964	2302	*	6137	*	*	3251	5785	*	4555	5394	3723	5546	3715	3716	3939	*	*	33
+       8	*	7440	*	*	0	*	7509	0	1000	
+
+Q 34   3407	*	3819	5659	4783	4245	*	4264	4248	2155	6051	5463	*	4269	5254	3338	2966	4446	*	6913	34
+       0	*	*	*	*	0	*	7509	0	1000	
+
+C 35   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	35
+       0	*	*	*	*	*	*	7514	0	0	
+
+Q 36   3623	*	*	4899	4015	3765	*	3512	6914	1726	6090	6026	*	4165	6180	5418	3681	3243	*	4472	36
+       53	4791	*	679	1413	*	*	7514	1259	0	
+
+S 37   4117	*	4124	3463	*	3412	*	*	3511	*	*	3929	*	3097	4575	2262	3072	4269	*	6796	37
+       0	*	*	*	*	*	*	7514	0	0	
+
+C 38   *	30	*	*	*	*	*	*	*	*	*	*	*	*	*	5598	*	*	*	*	38
+       0	*	*	*	*	*	*	7514	0	0	
+
+H 39   *	*	*	*	*	5598	30	*	*	*	*	*	*	*	*	*	*	*	*	*	39
+       64	6228	5054	2347	316	*	*	7514	1087	0	
+
+G 40   4089	5579	3605	3657	5894	2274	5737	5270	3648	6192	*	4045	4368	3845	4793	4037	3604	5072	*	6685	40
+       117	4428	4989	434	1946	763	1284	7497	1329	1275	
+
+K 41   4472	*	2178	3025	*	3588	6002	7139	4340	6995	5170	3335	4223	4804	7636	2790	3748	*	*	6994	41
+       56	5043	7010	969	1032	327	2302	7486	1220	1392	
+
+L 42   4058	*	4410	3438	5176	5129	6788	3654	4225	3098	4575	4931	5607	3547	7159	4368	3827	3856	7403	3265	42
+       184	3235	6198	1087	918	1285	762	7504	1917	1094	
+
+S 43   2515	*	3202	2579	*	5305	5126	*	3580	4682	6022	4468	4196	4053	4107	3796	5075	5068	7042	*	43
+       53	4792	*	2817	221	608	1539	7501	1238	1206	
+
+E 44   3004	*	2692	2736	6266	3965	5537	6267	3997	6220	4835	3498	4878	4077	4379	4015	5151	5809	*	6621	44
+       334	2275	*	1149	865	*	0	7510	2699	1028	
+
+M 45   4771	*	6063	4368	3382	5567	5792	3538	4261	2235	3512	6146	5106	4598	6103	4957	5491	3302	6852	3986	45
+       55	5333	6299	646	1470	*	0	7510	1163	1028	
+
+D 46   1947	*	3295	4174	4049	4945	4862	5987	4055	5005	6136	4913	4674	4708	4823	3904	5300	3746	*	5499	46
+       907	1261	4343	2446	292	954	1047	7511	4053	1128	
+
+A 47   3953	*	5604	4451	3527	4570	6853	*	3521	5164	*	2363	4241	6175	5184	2983	5269	4416	3453	4740	47
+       227	2779	*	3118	176	856	1160	7464	2114	1547	
+
+V 48   3321	6567	6356	7065	*	6185	4210	5022	3751	3467	6149	6020	2210	4718	4829	3853	3255	3450	*	5504	48
+       186	3321	5569	3420	142	589	1577	7501	1779	1213	
+
+H 49   4654	*	6299	5454	5486	4211	834	6846	5308	*	*	4805	5560	5386	3973	4247	4974	5353	*	*	49
+       144	3601	6326	848	1170	*	0	7482	1647	1202	
+
+K 50   4140	*	3365	4399	5535	3242	5263	6090	3801	5735	5577	3247	3867	5299	5033	2524	3721	5752	*	5547	50
+       211	3268	4963	3087	181	921	1084	7487	1875	1301	
+
+P 51   3346	*	4717	5571	4875	5274	4649	4470	3558	3957	6238	4170	2344	6045	7061	3550	4221	3047	*	*	51
+       93	4156	7313	1475	643	1840	472	7441	1434	1431	
+
+H 52   3725	*	5908	5814	7107	5154	820	5508	7617	7070	6094	4602	6940	6105	4237	7181	6561	4075	*	4459	52
+       81	5496	4935	2064	394	543	1672	7463	1143	1352	
+
+D 53   2302	*	3704	4317	4524	3546	4131	4721	6088	4117	7050	5264	3528	4447	6097	5264	5412	4572	4606	4046	53
+       407	2166	5443	2429	296	299	2419	7467	2760	1324	
+
+G 54   3696	*	3994	3235	5789	1975	*	*	3318	5633	*	4531	4383	3809	4126	3223	4873	*	*	*	54
+       654	1658	4392	1777	498	0	*	7482	3496	1237	
+
+N 55   3905	*	3348	3534	6026	2963	5831	5585	2845	5406	6897	4288	4802	3343	4472	3847	4853	4226	*	7068	55
+       131	4230	4911	1213	814	1656	551	7508	1381	1319	
+
+L 56   2806	*	4979	5109	6015	3787	*	3580	5460	2788	3104	5681	4666	5201	6686	4851	3980	2765	*	*	56
+       44	5060	*	1590	583	0	*	7447	1179	1462	
+
+V 57   3504	*	3141	3209	7073	4179	*	6711	6745	5327	7037	3681	4897	4791	4107	2576	3045	4147	*	5303	57
+       19	6265	*	591	1573	*	*	7514	1051	0	
+
+C 58   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	58
+       7	*	7686	*	*	*	*	7514	0	0	
+
+A 59   3113	*	7250	6064	7030	5460	6318	4800	*	3224	4716	3869	*	5370	5098	3674	1761	3019	6346	6926	59
+       0	*	*	*	*	*	0	7510	0	1000	
+
+D 60   2934	*	1857	3367	*	4366	*	6292	5775	7124	*	3509	6875	6036	*	2709	3256	4870	*	7376	60
+       0	*	*	*	*	*	0	7510	0	1000	
+
+C 61   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	61
+       0	*	*	*	*	*	0	7510	0	1000	
+
+H 62   *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	62
+       50	4868	*	1415	678	0	*	7510	1261	1000	
+
+A 63   3685	*	3386	4897	5712	3874	5397	6402	2921	3776	4382	2773	*	4155	6210	3095	4473	4675	*	*	63
+       15	*	6640	*	*	*	*	7514	0	0	
+
+V 64   3624	*	5785	3228	*	3368	*	4964	5410	4936	4128	5598	1602	5482	*	4379	4776	3522	7032	*	64
+       15	8165	7128	0	*	*	0	7491	1000	1012	
+
+H 65   6241	*	6667	5491	7107	*	325	*	5392	7009	*	6523	7038	5332	5515	5455	6519	*	5723	*	65
+       16	7631	7340	1000	1000	878	1134	7482	1028	1078	
+
+D 66   2814	*	3249	3075	6994	2676	6996	*	3815	5502	7166	4636	6521	3810	4352	3614	4386	4476	*	5975	66
+       443	4754	2138	3218	164	1108	899	7497	1213	1056	
+
+M 67   3379	*	5124	3702	5094	3829	*	2951	3612	6735	4860	4358	5877	4962	6442	2220	4653	3645	*	*	67
+       215	3222	4996	2503	280	3525	131	7312	1637	2995	
+
+N 68   3402	*	3217	3331	6524	3991	6691	*	2910	*	*	3743	5565	3962	4738	4209	2977	4965	6588	4035	68
+       1241	916	4415	2851	215	3732	113	7298	3951	3031	
+
+V 69   3270	*	5250	4372	4986	5261	*	5534	2374	4627	4437	3874	5668	4081	4586	4766	4978	2541	6262	5577	69
+       224	2912	6521	3462	137	242	2696	7264	1729	3140	
+
+G 70   3153	*	4069	3597	*	3813	7302	*	2972	5041	4636	5993	2385	4087	5034	4128	3301	6096	*	*	70
+       138	3451	*	1499	630	*	0	7493	1645	1376	
+
+Q 71   2977	*	4340	6092	5976	4366	*	3638	4595	6204	5464	5028	3324	3826	4402	2229	3930	4242	*	7228	71
+       85	4425	6564	1934	438	*	0	7478	1282	1440	
+
+K 72   4474	*	4064	3530	6099	6027	5362	*	3093	*	4938	3043	3318	3776	3543	4343	3534	3496	*	*	72
+       10	*	7228	*	*	0	*	7452	0	1561	
+
+P 73   3316	*	3200	2958	6988	4648	5805	5440	3531	4419	5362	3131	3813	4282	4374	4551	4777	4271	*	*	73
+       33	5445	*	2765	230	0	*	7534	1109	1009	
+
+T 74   3601	*	5451	4952	5481	7251	*	4108	4974	2302	3802	4407	6810	5026	6526	4375	2674	3581	6989	3732	74
+       38	5596	7575	1824	479	*	*	7535	1119	0	
+
+C 75   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	75
+       0	*	*	*	*	*	0	7530	0	1000	
+
+E 76   3140	*	6407	5115	4956	3865	*	3973	5894	2490	5978	3575	*	5239	6057	3221	3032	4258	*	3976	76
+       12	6947	*	0	*	*	0	7530	1000	1000	
+
+S 77   5291	*	3270	3327	*	3812	*	6969	3724	6689	*	3342	*	3058	4285	1955	3835	6868	*	*	77
+       0	*	*	*	*	*	0	7530	0	1000	
+
+C 78   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	78
+       0	*	*	*	*	*	0	7530	0	1000	
+
+H 79   *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	79
+       0	*	*	*	*	*	0	7530	0	1000	
+
+D 80   3188	*	3416	3234	5772	4189	4100	6756	3946	5091	6061	3592	4061	4803	5624	3467	3097	5283	*	6883	80
+       12	6952	*	1696	533	0	*	7493	1040	1000	
+
+D 81   4000	*	2462	2798	3781	3518	7068	6156	3661	6859	*	3961	5822	4153	4293	3927	5040	4596	6834	7032	81
+       73	4345	*	1018	982	*	*	7451	1241	0	
+
+G 82   3867	*	4440	2775	*	3142	4945	4714	2751	4139	6458	3812	4976	3282	4965	*	4132	4908	6554	*	82
+       0	*	*	*	*	*	0	7143	0	1001	
+
+R 83   5266	*	6037	6205	4398	4494	6165	*	2760	3711	*	5068	5059	3876	1707	4852	3828	4513	*	4944	83
+       68	4445	*	0	*	0	*	6928	1149	1001	
+
+T 84   3328	*	5128	*	*	1717	*	*	4303	*	*	5044	4490	5180	*	2120	2683	5128	*	*	84
+       0	*	*	*	*	*	*	6207	0	0	
+
+S 85   1821	*	*	*	*	4756	*	3381	4286	4532	*	4280	2982	*	4451	4261	3042	3440	*	*	85
+       112	3749	*	1585	585	*	*	5131	1039	0	
+
+A 86   2765	*	1953	2231	*	*	*	*	3019	*	*	4257	*	2747	*	*	*	4133	*	*	86
+       0	*	*	*	*	*	*	4559	0	0	
+
+S 87   3455	*	*	*	*	2405	3785	*	3152	*	*	*	*	*	3397	1739	*	2831	*	*	87
+       0	*	*	*	*	*	*	4026	0	0	
+
+V 88   *	*	*	*	*	*	*	2751	*	*	1959	*	*	2948	*	*	*	1106	*	*	88
+       0	*	*	*	*	*	*	3524	0	0	
+
+L 89   *	*	*	*	*	*	*	1762	*	504	*	*	*	*	*	*	*	*	*	*	89
+       0	*	*	*	*	*	*	2582	0	0	
+
+K 90   *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	90
+       0	*	*	*	*	*	*	1000	0	0	
+
+K 91   *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	91
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  0df5dbed0f36c37f3836e114a8b5c77b
+FAM   
+FILE  0df5dbed0f36c37f3836e114a8b5c77b
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:17:20 2013
+LENG  55 match states, 55 columns in multiple alignment
+FILT  172 out of 1016 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  7.9 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCCCEECCCCCCCCHHHCCCCCCCCCCCCCCCCCCCCCCCCCCCC
+>ss_conf PSIPRED confidence values
+9655657888765320279978654008888887446778858240228888888
+>Consensus
+xxxxxfxxxxxxxxCxxCgxxgHxxxxCxxxxxxxCxxCgxxGHxxxxCxxxxxx
+>0df5dbed0f36c37f3836e114a8b5c77b
+MQKGNFRNQRKTVKCFNCGKEGHIAKNCRAPRKKGCWKCGKEGHQMKDCTERQAN
+>gi|73913123|gb|AAZ91500.1| gag protein [Human immunodeficiency virus 1]
+CCREALSGAQGKSl-SVSTVAKRAPSQKLSAPRkkaV----------------------
+>gi|73913077|gb|AAZ91477.1| gag protein [Human immunodeficiency virus 1]
+DAERQFLEARKELSVSTVAKKDTYPGIAGPLEK----------------------
+>gi|270006313|gb|EFA02761.1| hypothetical protein TcasGA2_TC008494 [Tribolium castaneum]
+----------EtafgAgLLRLRKRRalSPTVPEASTgkQP-EIGAAMqllswYRSHGEILQQE------
+>gi|340034816|gb|AEK28751.1| DEAD (Asp-Glu-Ala-Asp) box polypeptide 4 transcript variant 1 [Ornithorhynchus anatinus]
+---------------FADQPAGDFSR-------grgfgrRGGYKGANEEIMADCEKNpgkPE--
+>gi|226437753|gb|ACO56244.1| putative DEAD-box RNA helicase [Caenorhabditis elegans]
+--------------NF---SRGGYNNRDEGsdnrgsgRSynndrrDnggdgqNTRWN-------NLDAPPSR--
+>gi|323352003|gb|EGA84542.1| Dbp1p [Saccharomyces cerevisiae VL3]
+-----------MAGFFGFSKE--------RngGTSANYNRGGSSNY-----KS----
+>gi|73983191|ref|XP_866869.1| PREDICTED: similar to Splicing factor 1 (Zinc finger protein 162) (Transcription factor ZFM1) (Zinc finger gene in MEN1 locus) (Mammalian branch point binding protein mBBP) (BBP) isoform 6 [Canis familiaris]
+-----------NRILRPWQSSETR--SITNTTvfphPLPSLTGGHGGHPMQHNPNGPP-
+>gi|9627015|ref|NP_041259.1| gag protein [Squirrel monkey retrovirus]gi|120891|sp|P21411.3|GAG_SMRVH RecName: Full=Gag polyprotein; Contains: RecName: Full=Core protein p19; Contains: RecName: Full=Core protein p16; Contains: RecName: Full=Putative nucleocapsid protein p35; Contains: RecName: Full=Probable core protein p10gi|807672|gb|AAA66451.1| gag protein [Squirrel monkey retrovirus-H]
+------------AFAIIVTNPAIFQETAPKKiqpptqlptqpNapqASLiknlgpttkCPRCKKGFHWASECRSR---
+>gi|15242405|ref|NP_199353.1| replication factor-A protein 1-like protein [Arabidopsis thaliana]gi|9758730|dbj|BAB09168.1| replication protein A1-like [Arabidopsis thaliana]gi|332007861|gb|AED95244.1| replication factor-A protein 1-like protein [Arabidopsis thaliana]
+---NQYSSDARSLGgftsCNVCRSNSHVSANCPTlmsepqgqymggt-NAGGGMPRQHVGSY----------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	1812	3190	*	*	*	*	4487	*	*	948	*	*	*	*	*	*	*	*	4549	1
+       138	3453	*	1000	1000	*	*	5440	1139	0	
+
+Q 2    2206	4146	*	3917	*	*	*	*	4545	3893	*	3868	*	1487	2997	*	*	*	*	*	2
+       0	*	*	*	*	*	*	6020	0	0	
+
+K 3    4688	*	*	2251	*	*	*	*	2586	*	*	4360	*	2781	1628	5108	4728	*	*	*	3
+       0	*	*	*	*	*	*	6563	0	0	
+
+G 4    3633	*	*	4741	*	1801	3396	*	3298	*	*	2446	*	*	3309	4066	4207	*	*	*	4
+       0	*	*	*	*	*	*	7032	0	0	
+
+N 5    4012	*	*	*	*	3758	*	4287	*	*	*	2105	4109	1865	3628	3575	3590	*	*	*	5
+       65	5344	5687	0	*	*	*	7216	1042	0	
+
+F 6    *	*	*	*	1004	*	*	*	*	2792	*	3958	4634	*	5079	5519	*	3765	*	2972	6
+       59	4647	*	0	*	0	*	7549	1188	1042	
+
+R 7    4154	*	5832	5114	4096	4719	*	5520	2453	4161	*	5942	*	6150	2074	2387	5451	5506	5884	5656	7
+       20	6150	*	0	*	*	*	7860	1006	0	
+
+N 8    3510	5166	5179	3182	*	1617	*	*	5938	4385	*	3694	4221	4518	3115	5092	5791	5712	*	*	8
+       63	6300	5051	1000	1000	*	*	8248	1000	0	
+
+Q 9    2966	*	4623	4305	*	3207	6295	*	4444	4377	*	6222	1824	2545	5150	6632	*	5179	*	4932	9
+       108	4013	6599	1575	590	0	*	8154	1183	1007	
+
+R 10   3519	6578	4068	4072	*	3710	6241	4995	2959	5008	4690	4045	4591	4544	2460	4344	5759	*	6209	4161	10
+       32	5515	*	1095	911	0	*	8347	1158	1005	
+
+K 11   4692	*	5092	2823	6235	3103	6805	6980	2992	5843	*	4254	3637	5408	2173	3751	5477	5256	*	*	11
+       55	4743	*	2411	300	*	*	8607	1284	0	
+
+T 12   3823	6800	4098	4703	6513	4388	*	4834	4168	5158	5150	2710	3161	4638	3660	3165	3889	4928	6196	6853	12
+       48	5662	6287	722	1345	*	*	9191	1118	0	
+
+V 13   3438	*	4294	5908	*	3498	5192	3296	4467	2974	6866	4634	4722	4819	3899	4217	3655	3557	*	4553	13
+       115	4722	4699	208	2894	*	0	8316	1329	1000	
+
+K 14   4150	*	6234	5701	4923	3363	5875	3966	2868	3996	6246	4661	4776	4556	2849	3840	3744	4202	7267	5356	14
+       169	3574	5235	2318	323	280	2503	8126	1744	1633	
+
+C 15   6040	405	6011	*	5931	5460	*	*	*	5809	6666	5648	*	*	5331	5284	*	4076	7408	6427	15
+       0	*	*	*	*	3115	177	8328	0	1439	
+
+F 16   4463	6806	*	6875	1509	7030	4133	4716	5557	5234	*	4655	6780	5265	4338	4527	7162	5259	4791	2334	16
+       18	*	6305	2807	222	*	0	8173	1088	1381	
+
+N 17   5963	*	5592	6253	5098	4493	6175	4483	2815	5928	7373	2042	4719	4705	2583	4452	3938	4893	6858	6150	17
+       36	7461	5726	0	*	1766	502	8549	1042	1514	
+
+C 18   6492	413	6006	6564	6669	6149	*	*	5771	5523	*	6468	*	6667	5833	6537	5401	4350	5290	*	18
+       0	*	*	*	*	1399	688	8552	0	1502	
+
+G 19   4450	*	5397	7506	5265	1158	7134	*	5629	4930	*	3799	5734	3814	3850	4290	6042	5422	4071	6570	19
+       152	4177	4481	1914	445	1395	690	8583	1388	1287	
+
+K 20   4487	*	4740	2747	*	2875	5839	*	2993	6056	6252	4038	7057	3145	3115	3336	6303	5474	7264	5387	20
+       49	5732	6132	1000	1000	214	2858	8410	1076	1725	
+
+E 21   3917	*	4160	3577	4726	4776	6131	7356	3771	4055	5181	4894	2993	5374	3728	2926	3899	5081	*	4281	21
+       70	6726	4724	682	1409	0	*	8611	1028	1186	
+
+G 22   4730	*	4143	5098	*	776	6208	6960	4932	5769	6897	4897	4513	7383	4892	5010	4680	7531	5726	*	22
+       27	6881	6656	0	*	349	2220	8320	1028	1433	
+
+H 23   5031	7013	3907	6310	6613	4530	573	5016	7922	6063	*	7084	6801	6888	*	*	3810	*	*	6523	23
+       52	*	4811	*	*	598	1559	8280	0	1249	
+
+I 24   4546	*	6164	4415	3464	5885	5257	3431	4775	2870	4181	5535	5730	5708	3709	4970	3725	3317	4548	4187	24
+       54	5559	5986	1000	1000	2552	270	8197	1158	1405	
+
+A 25   2020	7259	*	5124	6649	4089	5038	*	3855	5675	5147	5086	3990	4121	4291	2333	5143	4414	*	5183	25
+       9	*	7259	1000	1000	1667	546	8389	1102	1476	
+
+K 26   2783	7271	4561	3937	6447	5189	7408	6542	2709	5064	*	4174	4539	4351	2068	4208	5654	5443	6278	7284	26
+       35	6740	6126	0	*	1606	574	8456	1007	1397	
+
+N 27   4045	6850	2354	3152	5394	4126	7259	5395	4133	*	7487	2655	7167	3865	4464	3702	4028	6116	*	5924	27
+       10	7152	*	353	2204	2485	284	8526	1040	1444	
+
+C 28   4691	496	6494	6288	5672	4859	*	5142	*	5286	6566	6552	*	7380	5158	4948	*	5236	*	7315	28
+       14	6729	*	0	*	*	0	8218	1000	1353	
+
+R 29   4839	7277	6929	4904	5943	4686	*	5970	3466	7410	6799	5858	1446	4935	3215	4238	3285	5003	*	5099	29
+       78	4912	5671	1993	417	748	1305	8212	1305	1426	
+
+A 30   2756	7130	5102	4180	5492	2995	4763	*	3517	4660	6881	4067	5337	3743	4081	3075	4621	4322	*	6241	30
+       410	2486	3866	3218	164	1604	576	8292	2713	1440	
+
+P 31   3764	*	5550	4210	5998	3341	5686	7431	3347	4259	6440	3908	2086	4415	3753	4328	4557	5348	6718	*	31
+       708	2155	2615	2307	326	932	1071	8461	3124	2327	
+
+R 32   3967	*	4597	4930	4964	3578	*	*	3125	5693	6469	4156	4204	3985	2041	3241	4456	7262	5681	7141	32
+       436	2194	4561	2657	249	1161	855	8342	2911	3066	
+
+K 33   3834	*	3916	3209	6775	2935	*	6244	2934	5897	5308	4123	4009	5053	4443	2999	3801	5355	*	6315	33
+       283	2643	5800	2918	205	160	3249	8344	2709	2502	
+
+K 34   3830	*	5217	5023	7180	2959	5352	3583	3200	3796	6213	4542	4380	4438	2822	4466	5054	3772	*	7101	34
+       83	4363	7107	1708	527	718	1350	8410	1423	1313	
+
+G 35   4305	6343	6962	5453	5447	2853	5765	3501	3590	3342	7523	4238	5061	4551	3046	4537	3392	3918	*	*	35
+       22	6035	*	2328	320	884	1127	8391	1129	1271	
+
+C 36   5835	291	4856	*	*	4170	*	*	*	*	*	*	*	6480	6257	5844	*	5893	*	5933	36
+       15	*	6622	*	*	1260	780	8400	0	1084	
+
+W 37   5047	5987	*	6015	2233	5049	3553	5833	4975	3942	5861	4024	4565	5311	4134	5027	5460	4975	5610	2417	37
+       9	*	7346	*	*	725	1340	8154	0	1220	
+
+K 38   5143	*	6281	4139	5677	4367	6106	3830	2732	3592	5298	3005	5440	5801	2576	4692	4373	5112	7337	4830	38
+       46	5780	6217	2322	322	1535	611	8161	1076	1104	
+
+C 39   6652	362	*	*	*	3469	*	*	*	*	*	*	*	*	6349	4429	*	5803	6023	5062	39
+       11	6995	*	1000	1000	1127	883	8100	1010	1180	
+
+G 40   4240	*	6530	5911	6926	1041	4554	6218	3434	6324	*	3388	7151	4809	4493	4997	5901	5119	*	7635	40
+       23	6679	7394	2807	222	*	0	8340	1017	1064	
+
+K 41   4718	*	3857	3150	7496	3454	4989	*	2312	5364	*	4433	6023	3349	3410	3244	4992	4816	*	*	41
+       0	*	*	*	*	*	0	8100	0	1180	
+
+E 42   3885	*	4802	3280	5973	3543	4628	4831	3382	4364	4900	6272	3541	4890	3639	4394	3703	3551	*	5984	42
+       0	*	*	*	*	1127	883	8100	0	1180	
+
+G 43   5859	*	4523	4057	6014	559	6218	*	7485	*	*	3868	5901	*	5693	5183	5878	*	*	5907	43
+       37	5589	7752	2000	415	*	0	8340	1116	1064	
+
+H 44   6034	*	7114	5732	5627	5563	365	6597	*	6998	*	5500	*	*	6305	6337	4360	5950	*	6575	44
+       15	*	6549	*	*	*	0	8000	0	1130	
+
+Q 45   7558	*	7215	6524	3178	5708	7512	3236	3652	3385	3401	4803	5237	6550	3357	5409	3985	3625	4149	3811	45
+       12	*	6891	*	*	622	1514	7940	0	1239	
+
+M 46   1818	*	5781	5204	5852	4847	7039	5081	3752	3335	3979	4936	5788	7214	4334	2977	5784	4018	7046	5404	46
+       0	*	*	*	*	*	0	7952	0	1097	
+
+K 47   3912	7035	4660	4874	7190	4688	7054	5975	2688	5566	5577	5000	5582	4209	1902	3082	4509	5026	7043	6387	47
+       39	5234	*	459	1876	1482	639	7936	1127	1097	
+
+D 48   3734	4863	2315	3173	5725	5572	4797	6715	5370	5889	5590	3351	*	3343	4326	3308	5196	4352	*	7029	48
+       38	5511	7937	3217	164	*	0	7926	1109	1036	
+
+C 49   4403	358	5938	4405	6623	6466	*	*	6886	*	*	4910	*	*	*	6510	6590	*	5879	7060	49
+       22	6032	*	1194	829	0	*	8016	1139	1100	
+
+T 50   6339	*	6522	*	6630	5187	5080	6129	2862	4956	7290	5426	1394	5183	3198	4119	3817	5389	*	5231	50
+       46	5235	7754	1983	421	*	*	7902	1118	0	
+
+E 51   4566	6237	4940	3225	4835	3873	5947	6244	3585	4585	7308	2805	5981	3386	4977	2999	3102	6258	*	*	51
+       24	5936	*	1585	585	0	*	7961	1034	1075	
+
+R 52   4468	6462	4265	5328	6513	4340	*	5772	2440	5909	6780	3729	3290	4258	1990	3894	5113	*	*	*	52
+       0	*	*	*	*	*	*	7802	0	0	
+
+Q 53   3952	*	4222	4189	5450	4294	*	*	3271	6025	*	4204	1985	2356	3125	5847	*	*	*	*	53
+       0	*	*	*	*	*	*	6895	0	0	
+
+A 54   1905	*	*	3413	*	3895	*	*	3960	*	*	2786	2088	*	*	3889	*	4062	*	*	54
+       0	*	*	*	*	*	*	4621	0	0	
+
+N 55   *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	55
+       0	*	*	0	*	*	*	2363	0	0	
+
+//
+�HHsearch 1.5
+NAME  0e5c9e30af579568c535c51a9a27f145
+FAM   
+FILE  0e5c9e30af579568c535c51a9a27f145
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:29:09 2013
+LENG  106 match states, 106 columns in multiple alignment
+FILT  107 out of 268 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  5.9 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCHHHHHHHHHCCCCCCHHHHHHHHHHCCCCCCEEEEECCCHHHHHHHHCCCCCCCCCCCCCCEEEEEEECCCCCCCCCCCCCCCCEEEEEECCCCEEEE
+EEECCC
+>ss_conf PSIPRED confidence values
+9347888885158898056899999868857775789848889999985799778453269827878886348998724211211589982199775880
+142088
+>Consensus
+xxxxxxFxxqHidxxxxxyCnxxMxxrxxxCKxxNTFIhxxxxxVxavCxxxxxcxnxxSxxxxxxtxCxlxxpxCxYxxxxxxxxixVaCexxxPVHxd
+xxxxxx
+>0e5c9e30af579568c535c51a9a27f145
+MQNWETFQKKHLTDTRDVKCDAEMKKALFDCKQKNTFIYARPGRVQALCKNIIVSKNVLSTDEFYLSDCNRIKLPCHYKLKKSSNTICITCENKLPVHFV
+AVEECP
+>gi|164422319|gb|ABY55257.1| RNase 2 [Oncorhynchus masou formosanus]
+SHRYTHFLRQHVKgDMTIQKCQGVMGYLELtesdsaNCKVKNTFIKANSNQVRAICTGGGTPMGnslFESNNRFPVVICKHkckkktlcqhTHPRCEYEG
+SSSTRKVVIACEREWPVHYGDD----
+>gi|153791763|ref|NP_001093574.1| ribonuclease like 4 [Danio rerio]gi|146351600|gb|ABQ23785.1| RNase 3 [Danio rerio]
+SQSYNDFKRKHLApaGMKEDDCTTLIVTeRKIkeknQCKKINTFILETEDKIKGVCNTPaTDGKN-HKGTGFTVINCTKieNIIDCKYNGVKRTTDIILT
+CENRLPVHYGRS----
+>gi|18376502|emb|CAC86435.1| pancreatic ribonuclease alpha [Berylmys bowersi]
+ESSAEKFKRQHMDpdsipNSSPTYCNQMMKRREMttgSCKPVNTFVHEPLDDVKAICSQGqMTCKNgksncHKSSSTLHITECRLkgssKYPNCDYTTTD
+SQKHIIIACDGNpyVPVHFDASE---
+>gi|1330317|emb|CAA39461.1| eosinophil cationic-related protein [Homo sapiens]
+-----LRGLTSI-SRNQLQCTNAMRVINNyqrRWKNRNTFLLATFANVVNVCGNPtITCPhnrtlnNcHHSGVQVPLMYCNLttpspQnISNCRYAQTPA
+NMFYIVACDNRdqrrdppqypvVPVHLHTI----
+>gi|296214379|ref|XP_002753775.1| PREDICTED: ribonuclease-like protein 12-like [Callithrix jacchus]
+-------EHLHVDypqeGVPVpaRYCNHMIIQRIIrepdhTCKKEHVFIHERPRKINGLCTSpkKVACQNlsstfcFQSETKFKMTVCQLiegtRYPACR
+YRYFPVEGFVLITCDELGPDSFQGY----
+>gi|300872929|gb|ADK39277.1| RNase-Ginf2 [Gerrhonotus infernalis]
+-DTFESFKELHVDypktgaPNDDEYCKKVMGGRGRTKLKANTYIHAPDSELLAACNRKKYKLNheYGRTSRLPTTLCT--YGDRVFLGSSLPGTNKVLCV
+NWKPVAFRG-----
+>gi|292622086|ref|XP_002664865.1| PREDICTED: hypothetical protein LOC100332602 [Danio rerio]
+----NVFLKRHIPdGVPktwDQNAWE-AFLRKIkTCgRPTQSFFRATEkQRVENVCSKDGGKtlsGNlCISKEKFSFVTVRIdTEGACGIRSMrNETKHI
+ILACEDIgdvcQPVHFEGN----
+>gi|281345895|gb|EFB21479.1| hypothetical protein PANDA_019758 [Ailuropoda melanoleuca]
+--------------TDPEYCTAEMKMKNVhnkfRCVREHFFLQVAYEELQKLCKNIfVPCKNgvkkcHRSRQLIEGVYCNLtrgvRMSDCEYESSYRQGY
+VLITCRWQndiqeiIPAYV-------
+>gi|149568755|ref|XP_001515593.1| PREDICTED: similar to ribonuclease 13 [Ornithorhynchus anatinus]
+-SKARTFRLMHIDfprsefaPGFRGYCNGLMAYVRAqreswQCPEKHFVLHAPAATVRAICAHTdSFCEdfGefcTRSHKPLPVTTCARtpglPPSVCRY
+NATVhvQSHRVWLLCSS-------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    4292	3672	3268	1542	*	*	*	*	3637	*	4025	2894	*	*	*	2767	*	*	*	*	1
+       0	*	*	4494	66	*	*	4474	1139	0	
+
+Q 2    3959	*	4179	4581	*	6015	3714	*	5821	*	*	*	3347	2013	3808	2719	3005	*	*	4814	2
+       0	*	*	1000	1000	*	*	5214	1035	0	
+
+N 3    3734	*	2739	5856	*	5649	*	*	4907	*	4371	3528	4819	5088	1807	3108	3513	*	6031	*	3
+       29	*	5654	*	*	*	*	5262	0	0	
+
+W 4    2265	*	*	6825	3448	5795	6641	4793	*	*	*	*	7144	*	*	3209	6890	4923	2788	1617	4
+       0	*	*	*	*	*	0	5478	0	1035	
+
+E 5    4138	*	6665	2406	*	*	6004	4723	3747	5201	5444	3466	*	1612	4236	4284	5626	5369	*	*	5
+       24	*	5913	*	*	*	0	5572	0	1035	
+
+T 6    6137	*	4021	*	*	6710	3701	*	2321	5769	6533	5081	5869	6587	3735	3861	2740	4543	2466	4879	6
+       0	*	*	0	*	908	1099	5626	1050	1150	
+
+F 7    *	*	*	*	61	*	*	*	*	5449	*	*	*	*	5781	*	*	*	*	*	7
+       0	*	*	*	*	*	0	5641	0	1035	
+
+Q 8    5227	*	6934	2685	*	5787	*	5531	3411	1615	6199	6703	*	2459	3835	5441	6830	6126	5698	6822	8
+       23	*	5960	*	*	*	0	5661	0	1035	
+
+K 9    6366	*	*	4010	*	*	5879	2566	2734	4074	*	4168	*	4263	1730	*	3184	*	6505	*	9
+       0	*	*	1738	514	0	*	5664	1150	1150	
+
+K 10   *	*	*	6833	5719	*	4273	6164	2472	3925	5633	*	*	919	3593	*	5129	*	*	*	10
+       42	5982	6292	0	*	*	*	5667	1050	0	
+
+H 11   *	*	6665	*	*	*	41	*	*	*	*	*	*	*	*	5764	*	*	*	*	11
+       17	6407	*	0	*	908	1099	5664	1003	1150	
+
+L 12   *	*	*	*	*	*	*	1549	*	3354	3846	*	*	*	5119	*	5307	1474	*	3698	12
+       316	6700	2416	2205	353	0	*	5661	1095	1035	
+
+T 13   5626	*	731	6520	*	6415	6654	*	5374	*	*	6253	4330	5895	6590	6376	3515	4264	*	3664	13
+       2267	336	*	2077	390	446	1910	5539	4174	2015	
+
+D 14   5187	*	3168	4727	6407	2298	*	7351	6066	5107	*	2310	3987	3949	4816	2878	6798	6057	4906	*	14
+       44	6590	5650	2013	411	1749	510	5911	1071	1608	
+
+T 15   4044	*	5617	6783	6507	2958	7042	5412	5688	5109	3072	2959	4482	5758	4043	2960	3708	3450	6696	6245	15
+       24	*	5933	1351	718	563	1629	6121	1289	1588	
+
+R 16   3660	*	2189	*	5846	3508	4855	6615	5514	5844	6631	3238	3624	6122	3757	3386	3167	6594	6734	*	16
+       47	4948	*	1585	585	973	1028	6164	1122	1280	
+
+D 17   5069	7052	2232	4451	*	5276	4234	5507	4844	6736	*	3119	3140	6766	4213	3507	4223	4737	*	3502	17
+       39	5215	*	1000	1000	755	1295	6157	1132	1105	
+
+V 18   4891	*	3672	4539	5464	5015	5011	3488	4684	3884	*	4838	4128	2964	2546	6352	3932	3642	*	6057	18
+       0	*	*	*	*	*	0	6467	0	1003	
+
+K 19   6808	*	4290	5132	6355	*	*	7305	3833	6481	*	3198	5978	3581	3572	6571	6656	*	*	1004	19
+       0	*	*	*	*	0	*	6467	0	1003	
+
+C 20   4895	66	*	*	*	*	*	*	*	6473	*	*	*	*	*	*	*	*	*	*	20
+       0	*	*	*	*	*	*	6478	0	0	
+
+D 21   6818	*	2533	5219	6977	6592	*	*	4257	*	*	941	*	6672	5116	5280	3429	*	4895	6771	21
+       16	*	6473	*	*	*	*	6478	0	0	
+
+A 22   3873	*	3705	3630	*	5164	4610	4830	4147	3494	5130	3551	6956	3807	4324	3693	2979	3794	*	7484	22
+       50	*	4864	*	*	*	0	6201	0	1042	
+
+E 23   2518	6737	*	2675	*	*	*	3455	5741	3511	1585	*	*	6794	*	6784	4520	3900	*	*	23
+       0	*	*	*	*	0	*	6101	0	1229	
+
+M 24   4895	*	*	*	*	*	*	3312	*	3037	514	*	*	*	6494	*	6838	5391	*	*	24
+       12	6938	*	1000	1000	*	*	6478	1000	0	
+
+K 25   3617	*	6878	6059	4636	4014	6883	5699	2439	4926	5634	5215	5671	3389	1967	3852	*	4967	*	5118	25
+       0	*	*	*	*	*	*	6470	0	0	
+
+K 26   3725	5475	5584	4875	*	3942	5568	4782	3447	3968	5006	4238	6901	4460	1927	5880	4478	4032	*	4470	26
+       32	5495	*	863	1151	*	*	6470	1081	0	
+
+A 27   6586	6908	*	*	*	*	*	3570	2841	5157	*	4825	5165	6105	1021	5774	6409	2955	*	*	27
+       18	*	6307	*	*	*	0	6469	0	1000	
+
+L 28   *	5112	6574	5302	*	2826	6110	5074	2963	3431	*	1580	*	3923	4013	6055	*	4727	6149	*	28
+       17	6399	*	1310	745	605	1546	6467	1117	1110	
+
+F 29   5768	*	*	*	3511	5452	7202	1931	3784	2690	2712	3706	*	6975	4652	7116	*	3947	*	5292	29
+       3034	236	5106	1814	483	0	*	6450	5301	1062	
+
+D 30   *	6568	4865	6583	5808	*	3692	7078	3885	7071	*	3676	3773	3332	2068	4113	2613	5509	6077	5659	30
+       137	3462	*	1450	657	*	0	6370	1537	1112	
+
+C 31   *	106	*	*	*	*	*	*	4980	*	*	*	*	*	*	6077	*	*	6719	6082	31
+       71	4380	*	815	1213	0	*	6370	1396	1112	
+
+K 32   *	*	6105	6581	*	*	*	4693	525	4189	6847	*	5096	6119	4321	*	6505	4583	*	4995	32
+       16	6475	*	2585	263	*	*	6470	1042	0	
+
+Q 33   5338	*	3134	3198	5789	5633	7003	*	2975	6161	6105	4096	2052	4663	3517	5104	4389	5152	*	5690	33
+       0	*	*	*	*	*	*	6470	0	0	
+
+K 34   4830	*	*	3078	4321	6790	6621	3562	3149	3560	7363	6110	*	3162	3798	5827	3674	2591	5118	*	34
+       0	*	*	*	*	*	*	6470	0	0	
+
+N 35   *	*	*	6119	*	*	3252	*	6110	*	*	445	*	4404	5876	*	5118	*	*	4693	35
+       0	*	*	*	*	*	*	6470	0	0	
+
+T 36   *	*	*	*	4104	*	*	5657	6119	*	*	6371	*	*	*	3847	424	6614	*	3830	36
+       17	*	6422	*	*	*	*	6470	0	0	
+
+F 37   *	*	6526	*	202	*	*	4047	*	*	*	*	*	*	*	*	*	5846	*	4570	37
+       22	*	6025	*	*	*	0	6193	0	1035	
+
+I 38   6074	*	*	*	4977	7087	*	829	*	1952	*	*	*	*	*	*	*	3003	*	*	38
+       0	*	*	*	*	*	0	6163	0	1138	
+
+Y 39   6837	*	*	*	6411	4927	688	5435	5642	3641	*	6864	*	4306	4361	*	*	4637	*	4199	39
+       0	*	*	*	*	*	0	6163	0	1138	
+
+A 40   1959	*	3826	1936	*	4288	*	6081	6852	*	4552	6741	*	6997	*	3308	2724	5367	*	*	40
+       0	*	*	*	*	*	0	6163	0	1138	
+
+R 41   6735	*	3631	5017	*	*	*	6504	*	5570	6173	3055	2886	6325	4093	1960	2152	5351	*	*	41
+       21	6081	*	1000	1000	*	0	6163	1059	1138	
+
+P 42   3738	*	4221	3447	2528	5913	7128	4335	3746	2891	*	6574	2647	7047	*	4971	6620	*	*	3265	42
+       93	4001	*	264	2579	*	0	6163	1340	1138	
+
+G 43   2457	*	3420	2903	*	3686	6880	6917	4131	*	*	4092	3977	3936	3384	4027	4532	6368	4969	7084	43
+       0	*	*	*	*	*	0	6163	0	1138	
+
+R 44   4384	*	2517	3157	7438	5318	6571	7153	3722	6944	*	2467	4683	3763	4197	3616	3272	*	*	*	44
+       21	6081	*	2389	306	1012	988	6163	1160	1138	
+
+V 45   6881	*	*	*	*	*	*	2057	*	2639	*	*	*	*	6466	*	6083	824	*	*	45
+       0	*	*	*	*	*	0	6442	0	1037	
+
+Q 46   3546	*	6104	4254	*	*	6424	6175	2051	4074	6588	4343	6019	2810	3076	5846	4534	3006	*	*	46
+       0	*	*	*	*	*	0	6442	0	1037	
+
+A 47   1279	*	3722	5583	*	3645	5890	*	3847	5594	*	3334	5077	5952	5918	3690	4321	6043	*	*	47
+       0	*	*	*	*	*	0	6442	0	1037	
+
+L 48   4062	*	*	7129	6155	*	*	1725	*	3244	5583	*	*	*	*	6019	3730	1325	*	*	48
+       0	*	*	*	*	*	0	6442	0	1037	
+
+C 49   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	49
+       29	6840	6484	1585	585	*	0	6438	1000	1037	
+
+K 50   4595	*	4661	4669	5474	2301	6985	5662	4250	5948	*	3689	*	5857	3096	2871	2916	*	6466	3927	50
+       165	3726	4950	161	3245	852	1165	6418	1463	1164	
+
+N 51   6104	*	4893	4481	*	2167	4616	*	3750	6168	6675	2620	4433	3899	3781	4069	3503	5056	5719	*	51
+       61	6532	5032	1000	1000	2295	329	6393	1015	1227	
+
+I 52   3426	*	3746	4282	*	3410	6964	3992	3237	5398	*	4839	2215	4910	3692	5631	3696	5160	*	*	52
+       1397	718	6352	364	2166	1096	910	6383	4113	1369	
+
+I 53   4880	*	5571	*	*	2243	6780	2512	4069	*	4802	5768	*	*	4735	4602	3564	1877	*	*	53
+       98	6071	4308	0	*	1048	953	6045	1031	1325	
+
+V 54   3147	6181	5321	4779	5689	3525	*	4493	3567	5255	*	3908	3334	4008	5053	5905	2353	4621	*	4659	54
+       18	*	6345	*	*	*	0	6048	0	1486	
+
+S 55   4674	914	*	6678	*	5308	6942	*	3338	6647	*	*	3042	5459	3967	4095	6448	*	*	*	55
+       258	2739	6148	1237	797	1780	496	6031	1963	1550	
+
+K 56   6920	*	4029	5094	6520	4838	7045	*	1424	4056	6562	4486	4112	4133	3647	5345	4273	5033	*	4102	56
+       600	1676	5209	2021	408	1477	642	6061	2786	1461	
+
+N 57   *	*	4816	*	6472	2877	*	*	5207	6451	*	637	*	6444	5946	4924	4608	6081	*	5706	57
+       3175	193	6139	1413	680	208	2900	6070	5162	1446	
+
+V 58   *	4437	*	*	3969	*	1309	5770	6586	6828	*	4735	*	*	2925	*	4891	3112	6533	3066	58
+       16	*	6533	*	*	0	*	6125	0	1090	
+
+L 59   5925	6041	4112	5021	*	5163	4276	3448	3584	3199	5545	4365	*	2965	2365	5012	3767	*	*	5664	59
+       54	5526	6025	0	*	*	0	6147	1110	1000	
+
+S 60   *	*	*	*	*	5253	5984	*	6109	*	*	5108	*	*	5135	243	4599	*	*	*	60
+       20	*	6172	*	*	913	1092	6078	0	1263	
+
+T 61   5383	5995	6146	4323	*	3976	5170	6957	3164	5092	4891	2969	3429	5764	3488	2437	3190	*	*	*	61
+       0	*	*	*	*	629	1501	6126	0	1173	
+
+D 62   4578	*	4796	3399	7052	4237	5135	5248	3951	6399	5760	3860	*	3401	3854	2106	3593	4307	*	5733	62
+       0	*	*	*	*	0	*	6167	0	1019	
+
+E 63   5152	*	6115	4171	*	6251	6484	4836	2950	3697	*	*	1968	3292	3130	3937	4221	4711	*	7131	63
+       13	6849	*	0	*	*	*	6155	1000	0	
+
+F 64   *	*	*	*	1213	*	*	3017	*	3008	3572	*	*	*	*	*	5791	2194	*	*	64
+       0	*	*	*	*	*	*	6155	0	0	
+
+Y 65   5850	*	3323	4053	7060	6128	4993	*	3012	*	*	4208	2045	3901	3567	2769	5413	*	*	5195	65
+       0	*	*	*	*	*	*	6155	0	0	
+
+L 66   6445	*	*	*	4866	3675	*	2713	6878	1692	3672	*	*	6176	*	*	4792	1890	*	7109	66
+       0	*	*	*	*	*	*	6155	0	0	
+
+S 67   4162	*	5831	*	6651	*	*	3809	*	6433	6682	*	*	*	*	4733	701	2547	*	*	67
+       18	*	6302	*	*	*	*	6155	0	0	
+
+D 68   6500	*	2220	4576	4631	*	4347	3464	5720	4269	6838	5188	*	4503	4882	5133	2343	4552	*	3335	68
+       0	*	*	*	*	*	0	6119	0	1050	
+
+C 69   *	50	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	4875	*	*	69
+       57	5133	6609	1000	1000	0	*	6119	1226	1050	
+
+N 70   5745	6927	5366	4914	6104	*	6126	5250	2709	4907	*	2223	*	4223	2353	5150	3090	4181	*	6618	70
+       118	*	3674	*	*	*	0	6149	0	1016	
+
+R 71   6016	*	*	4209	6622	*	3223	4159	5017	842	6936	6761	*	5179	4069	*	7424	4110	*	*	71
+       3689	116	*	1978	423	2381	308	5936	5267	1524	
+
+I 72   4714	*	*	6360	*	*	*	6357	2612	6526	6177	4190	3812	3408	2346	3843	2417	4298	6795	5995	72
+       220	2825	*	0	*	132	3516	6140	1701	1840	
+
+K 73   6216	7056	6526	4859	5451	5924	3522	3757	4578	6350	4212	4168	2953	*	3858	4255	5176	5314	7117	1948	73
+       32	5493	*	2000	415	*	0	6149	1078	1016	
+
+L 74   *	*	*	*	*	3843	*	6247	4541	6604	*	5113	774	*	4245	3318	3902	5051	*	*	74
+       14	6718	*	1427	671	0	*	6149	1080	1016	
+
+P 75   4122	*	2558	*	*	5639	3994	*	6383	7415	*	1791	2377	4078	5652	5212	4513	5762	*	5481	75
+       0	*	*	*	*	*	*	6155	0	0	
+
+C 76   *	84	*	*	*	*	*	*	*	*	*	*	*	*	5171	*	*	*	*	5123	76
+       17	*	6450	*	*	*	*	6155	0	0	
+
+H 77   3362	*	4307	3780	*	4878	4539	4566	2755	*	5046	3872	4578	4193	2285	5124	5352	4527	*	6040	77
+       0	*	*	*	*	*	0	6118	0	1035	
+
+Y 78   *	*	*	*	4156	*	*	4878	*	*	*	*	*	*	*	*	*	*	*	136	78
+       15	6568	*	1000	1000	*	0	6118	1003	1035	
+
+K 79   5232	*	4641	3819	*	6995	3757	*	2168	4732	*	3915	*	3779	2140	3616	4627	4950	*	*	79
+       0	*	*	1585	585	0	*	6118	1035	1035	
+
+L 80   3467	*	4770	4627	*	2127	6069	5807	6115	4351	6956	7014	*	3935	7139	2716	2036	6514	*	6356	80
+       0	*	*	*	*	*	*	6155	0	0	
+
+K 81   6885	*	4616	4682	3185	7081	6594	4089	3240	7036	4552	4487	*	5697	4101	3271	1800	4437	*	6624	81
+       67	4471	*	0	*	*	*	6155	1189	0	
+
+K 82   4056	*	5532	5240	*	5954	5933	5128	3291	5088	6581	3610	3292	3356	3726	3092	3858	3844	*	3725	82
+       27	5747	*	707	1368	0	*	6141	1118	1002	
+
+S 83   3532	*	4177	3907	4505	4553	*	7149	3121	3019	4922	7131	5807	3361	3755	2596	4248	6356	*	*	83
+       0	*	*	*	*	*	*	6155	0	0	
+
+S 84   *	*	5909	3234	4592	*	5709	4755	6532	*	4830	3175	4243	3608	4807	3466	1701	5596	*	4904	84
+       26	5807	*	0	*	*	*	6155	1082	0	
+
+N 85   5979	*	6411	7026	*	2259	4329	*	1752	*	4516	3758	*	5621	2128	5086	6251	*	*	*	85
+       10	*	7123	*	*	*	*	6155	0	0	
+
+T 86   7000	6529	5134	*	2569	6410	3291	4329	4048	5031	*	6064	6115	5296	3021	4188	4727	4191	*	2291	86
+       0	*	*	*	*	*	0	6119	0	1004	
+
+I 87   6333	*	*	*	3736	*	*	1036	*	*	*	5180	4882	*	*	*	*	2341	*	2590	87
+       0	*	*	*	*	*	0	6119	0	1004	
+
+C 88   7063	3080	7022	5133	5692	*	*	2128	4721	3625	*	6549	*	*	3197	6147	3628	2071	5776	*	88
+       0	*	*	*	*	*	0	6119	0	1004	
+
+I 89   *	*	*	*	*	*	*	1625	*	3222	5619	*	*	*	*	*	*	867	*	*	89
+       0	*	*	*	*	*	0	6114	0	1004	
+
+T 90   1079	*	*	6553	*	4171	*	*	4360	3962	*	*	*	5128	5367	4175	2209	5437	*	*	90
+       0	*	*	*	*	*	0	6114	0	1004	
+
+C 91   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	91
+       0	*	*	*	*	*	0	6114	0	1004	
+
+E 92   5601	*	2519	1399	*	7017	5795	6458	4533	6483	*	3258	*	4183	3821	5128	6134	4300	6622	*	92
+       0	*	*	*	*	*	0	6114	0	1004	
+
+N 93   *	*	2507	5007	*	2165	5205	*	5333	*	*	2110	3075	5267	5097	5757	*	*	3411	*	93
+       0	*	*	*	*	*	0	6114	0	1004	
+
+K 94   6755	*	3701	4181	*	2415	*	4865	3582	4811	5017	3151	4573	3559	2694	5307	5161	*	4654	*	94
+       941	1061	*	2764	230	*	0	6062	3537	1004	
+
+L 95   4822	*	*	*	4737	4984	*	3630	4387	2402	*	*	6247	4063	4978	*	*	1638	3470	4022	95
+       0	*	*	*	*	*	0	5763	0	1004	
+
+P 96   *	*	*	*	*	*	*	*	*	*	*	*	19	*	*	6247	*	*	*	*	96
+       0	*	*	*	*	0	*	5763	0	1004	
+
+V 97   4323	5865	4554	*	*	*	6323	4594	*	*	*	5057	*	*	*	*	5367	355	*	*	97
+       0	*	*	*	*	*	*	5765	0	0	
+
+H 98   5101	*	*	6488	*	*	313	*	5862	6402	*	*	6255	*	*	6138	4587	*	*	4137	98
+       12	*	6934	*	*	*	*	5765	0	0	
+
+F 99   *	*	*	*	1354	*	*	3964	*	1630	*	*	*	*	*	*	*	3784	*	2747	99
+       0	*	*	0	*	0	*	5772	1004	1004	
+
+V 100  3841	*	873	3324	*	5099	4634	*	6669	4845	*	*	*	3819	4993	*	*	3880	*	*	100
+       15	6593	*	1585	585	*	*	5622	1004	0	
+
+A 101  4084	*	6205	2990	7084	1474	*	*	2882	4967	*	*	5519	4723	3131	4195	5108	*	6769	*	101
+       0	*	*	*	*	*	*	5565	0	0	
+
+V 102  *	*	3608	5094	*	4203	*	2853	6112	*	*	4062	*	*	*	2380	2296	2777	*	3643	102
+       0	*	*	*	*	*	*	5237	0	0	
+
+E 103  3048	*	*	3627	*	1421	*	*	3419	*	*	*	*	*	*	*	*	1595	*	*	103
+       0	*	*	1000	1000	*	*	3076	1000	0	
+
+E 104  *	*	*	2425	*	*	*	*	1788	*	*	*	*	*	*	932	*	*	*	*	104
+       0	*	*	*	*	*	*	1998	0	0	
+
+C 105  *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	105
+       0	*	*	*	*	*	*	1998	0	0	
+
+P 106  *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	106
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  0f066235c0e8814be13f086538bfd823
+FAM   
+FILE  0f066235c0e8814be13f086538bfd823
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 14:48:16 2013
+LENG  112 match states, 112 columns in multiple alignment
+FILT  47 out of 49 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  3.8 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCEECHHHHHHCCCCCCCCCCCCCHHHHHHHHHHHHHCCCCCCCCCCCCCCCHHHHHHHHHHHHHHHHCCCCCCCCCCCCHHHHHHHHHHHHHHHHHHH
+HHHHHHHHHCCC
+>ss_conf PSIPRED confidence values
+9500000244433566788778898378899999998588875358987443476699999999999853577878886229999999999999999999
+999999886339
+>Consensus
+GAvvGxxxGyxlGxxxxrxxxxFxnpxExrYYxenxxrypdxVyYxxxxxxvtxexFVxdCvNxTxxxxxxxxsxxxxnxsexexrvxxrvixemCvxqY
+xxxxxxxxxxxx
+>0f066235c0e8814be13f086538bfd823
+GSVVGGLGGYMLGSAMSRPLIHFGSDYEDRYYRENMHRYPNQVYYRPVDQYSNQNNFVHDCVNITVKEHTVTTTTKGENFTETDIKMMERVVEQMCITQY
+QRESQAYYQRGA
+>gi|45382625|ref|NP_990796.1| major prion protein homolog [Gallus gallus]gi|212615|gb|AAA49041.1| prion-like protein [Gallus gallus]
+GAVVGGLGGYAMGRVMSGMNYHFDRPDEYRWWSENSARYPNRVYYRDYSSPVPQDVFVADCFNITVTEYSIGPA-AKKNTSEavaaanqteveMENKVVT
+KVIREMCVQQYREYRL-------
+>gi|327284127|ref|XP_003226790.1| PREDICTED: major prion protein homolog [Anolis carolinensis]
+GAAVGALGGYLLGRSMSNMQFGFPNQYDERWWYQNRDRYSDQVYHPPYNPSVSREVFVRDCVNVTVTEY-IQPT-GNQTADEVEMRVVPLVVREMCTEQY
+---RL-------
+>gi|55667998|gb|AAV54126.1| prion protein [Xenopus laevis]
+GAAAGAIGGYMLGNAVGRMSYQFNNPMESRYYNDYYNQMPNRV-YRPMyrgEEYVSEDRFVRDCYNMSVTEYIIKPAegKNNSELNQLDTTVKSQIIREM
+CITEYRRGS--------
+>gi|82780737|gb|ABB90540.1| stPrP1 [Sparus aurata]
+GAVAGMAVGYGLGRFP-RPHFNFRNPEEEHYYNNYMYRrYGTqstdekdygrdYV-YKLPPRAETYDKFMSRCMNRTDLikDQGSSSTTPnnqgggDEDd
+dtVSIEEIgypSLIEQLKARRCVGLYMEYSEKFLE---
+>gi|47223680|emb|CAF99289.1| unnamed protein product [Tetraodon nigroviridis]
+GAVAGMAVGYGLGRFP-RPHFGFRSPSEEYYYNNYMYRQYglkstdERDYGRDYvyklpPRAESYEQFMDRCMNRTNLLKDQGSSKaeDNDTVS-IEEIG
+YPALIEQMksrrCLEEYMAKSEK------
+>gi|123303107|tpe|CAJ75791.1| TPA: doppel protein Dpl [Echinops telfairi]
+-------------------DVDLGAD-GNRYYEAHYWQFPDGIHYDGCsDANVTREMLVTRCINATQAANQAEFSAppRDQQDSRLHQRVLWRLIRELCS
+AKRCD----------
+>gi|123303103|tpe|CAJ75789.1| TPA: doppel protein Dpl [Monodelphis domestica]
+-------------------VIDFGEE-GNSYYATHYSLFPDEIHYAGCaESNVTKEVFISNCVNATRVINKLEPL-EEQNISDIYSRILEQLIKELCALN
+YCE----------
+>gi|239503711|ref|ZP_04663021.1| putative surface antigen [Acinetobacter baumannii AB900]
+GAVVGGIIGGVVGAIAGNDIAQTNNqkddsnywQEEDNYWRENYKKMP---YYTE-DKNLEYDRDYRAAYRLGY-ENRVDNN-AEINFSEVESKLKTK--
+--------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+G 1    *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	3053	0	0	
+
+S 2    80	*	*	*	*	*	*	*	*	*	*	*	*	*	*	4206	*	*	*	*	2
+       0	*	*	*	*	*	*	3113	0	0	
+
+V 3    2723	*	*	*	*	*	*	*	*	3438	*	*	*	*	*	*	*	403	*	*	3
+       0	*	*	*	*	*	*	3113	0	0	
+
+V 4    1284	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	763	*	*	4
+       0	*	*	*	*	*	*	3113	0	0	
+
+G 5    *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	5
+       0	*	*	*	*	*	*	3113	0	0	
+
+G 6    2723	*	*	*	*	913	*	*	*	*	1655	*	*	*	*	*	*	*	*	*	6
+       0	*	*	*	*	*	*	3113	0	0	
+
+L 7    1655	*	*	*	*	*	*	2233	*	1090	*	*	*	*	*	*	*	*	*	*	7
+       0	*	*	*	*	*	*	3113	0	0	
+
+G 8    *	*	*	*	*	743	*	3032	*	*	*	*	*	*	*	*	*	1836	*	*	8
+       0	*	*	*	*	*	*	3113	0	0	
+
+G 9    *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	9
+       0	*	*	*	*	*	*	3113	0	0	
+
+Y 10   *	*	*	*	*	3560	*	4844	*	*	*	*	*	*	*	*	*	*	*	184	10
+       0	*	*	*	*	*	*	3113	0	0	
+
+M 11   2628	*	*	*	*	1655	*	*	*	3701	1631	*	*	*	*	*	*	3050	*	*	11
+       0	*	*	*	*	*	*	3113	0	0	
+
+L 12   *	*	*	*	*	*	*	5307	*	387	3229	*	*	*	*	*	*	3274	*	*	12
+       0	*	*	*	*	*	*	3113	0	0	
+
+G 13   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	13
+       0	*	*	*	*	*	*	3113	0	0	
+
+S 14   3560	*	*	*	*	*	*	*	*	*	*	3425	*	*	1051	1558	*	*	*	*	14
+       0	*	*	*	*	*	*	3113	0	0	
+
+A 15   1166	*	*	*	1655	*	*	3560	*	*	*	*	*	*	*	4100	*	3415	*	*	15
+       76	*	4282	*	*	*	*	3113	0	0	
+
+M 16   3528	*	*	*	*	*	*	*	*	*	809	*	1780	*	*	*	*	4283	*	*	16
+       528	*	1706	*	*	0	*	3053	0	1046	
+
+S 17   *	*	*	*	*	2084	*	*	*	*	*	*	3050	*	*	636	*	*	*	*	17
+       0	*	*	0	*	0	*	2770	1000	1595	
+
+R 18   *	*	*	*	*	2517	*	*	*	*	*	2805	*	*	552	*	*	*	*	*	18
+       0	*	*	*	*	*	*	3113	0	0	
+
+P 19   *	*	3560	*	*	*	*	*	*	*	1617	*	763	*	*	*	*	*	*	*	19
+       0	*	*	*	*	*	*	3113	0	0	
+
+L 20   *	*	2531	*	*	*	1844	3528	*	3455	6275	4174	5091	4060	4391	3991	*	3959	4708	*	20
+       0	*	*	*	*	*	*	4170	0	0	
+
+I 21   4083	*	*	*	1624	*	*	1595	*	*	3000	*	*	*	*	*	*	5393	*	2869	21
+       0	*	*	*	*	*	*	4170	0	0	
+
+H 22   *	*	2127	*	*	3174	2024	*	*	4708	*	2269	*	3429	4481	*	5006	*	*	*	22
+       0	*	*	*	*	*	*	4170	0	0	
+
+F 23   *	*	*	*	188	*	*	*	*	3988	*	*	*	*	*	*	4083	*	*	*	23
+       0	*	*	*	*	*	*	4170	0	0	
+
+G 24   *	*	3039	*	*	1211	*	*	*	*	*	3429	4703	*	1806	5106	*	*	*	*	24
+       0	*	*	*	*	*	*	4170	0	0	
+
+S 25   2526	*	*	4726	*	*	*	*	*	*	*	972	5786	*	3851	2504	*	6063	*	*	25
+       88	4083	*	3000	193	*	*	4170	1163	0	
+
+D 26   *	*	2684	1854	*	*	*	*	*	*	*	*	1088	3360	*	*	*	*	*	*	26
+       405	*	2032	*	*	*	*	4170	0	0	
+
+Y 27   4656	*	2901	1558	5346	*	*	*	*	*	3484	*	*	*	*	3584	*	*	5921	1872	27
+       0	*	*	*	*	0	*	3155	0	1591	
+
+E 28   4567	*	4703	480	*	2305	*	*	*	*	*	*	*	*	*	*	*	*	*	*	28
+       0	*	*	*	*	*	*	4170	0	0	
+
+D 29   5106	*	2020	1624	*	*	*	*	*	*	*	2032	*	*	5294	4158	*	*	*	3757	29
+       0	*	*	*	*	*	*	4170	0	0	
+
+R 30   *	*	*	*	*	*	5304	*	3974	*	*	4083	*	2575	986	3721	*	*	*	3271	30
+       0	*	*	*	*	*	*	4170	0	0	
+
+Y 31   *	*	*	*	*	*	5196	*	*	*	*	*	*	*	*	*	*	*	2335	369	31
+       0	*	*	*	*	*	*	4170	0	0	
+
+Y 32   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1959	429	32
+       0	*	*	*	*	*	*	4170	0	0	
+
+R 33   3830	*	*	2521	*	*	*	*	*	*	*	1362	*	*	2020	4533	*	*	*	3706	33
+       0	*	*	*	*	*	*	4170	0	0	
+
+E 34   2398	*	3991	1299	*	*	*	*	*	*	*	2013	*	4703	*	*	4190	*	*	*	34
+       0	*	*	*	*	*	*	4170	0	0	
+
+N 35   *	*	*	*	5148	*	4021	*	*	*	*	672	*	*	*	*	*	*	*	1824	35
+       0	*	*	*	*	*	*	4170	0	0	
+
+M 36   5102	*	*	*	*	*	*	*	*	*	1392	*	*	3711	3706	3830	*	*	*	1448	36
+       0	*	*	*	*	*	*	4170	0	0	
+
+H 37   3913	*	4703	*	*	7047	5152	*	4083	*	*	2388	*	*	*	4726	*	*	2274	1454	37
+       0	*	*	*	*	*	*	4170	0	0	
+
+R 38   *	*	*	*	*	*	5293	*	3568	4726	*	*	*	1891	779	*	*	*	*	*	38
+       323	2316	*	0	*	*	*	4170	1527	0	
+
+Y 39   *	*	*	*	1963	*	*	*	*	*	3036	*	*	4413	*	*	*	*	*	799	39
+       0	*	*	*	*	*	*	4170	0	0	
+
+P 40   *	*	*	*	*	2316	*	*	*	*	*	*	566	*	*	3706	*	*	*	4413	40
+       224	3557	4083	3064	184	*	*	4170	1174	0	
+
+N 41   *	*	1310	3644	*	*	*	*	*	*	*	1547	*	*	*	4114	3098	*	*	*	41
+       277	2518	*	3459	138	*	0	4021	1418	1163	
+
+Q 42   *	*	*	3736	*	2445	4670	*	*	*	*	*	*	1674	2517	*	*	*	*	2225	42
+       0	*	*	*	*	*	0	4021	0	1163	
+
+V 43   *	*	4376	*	*	*	*	2061	*	*	*	*	*	*	*	*	*	490	*	*	43
+       371	*	2140	*	*	0	*	4021	0	1163	
+
+Y 44   *	*	*	*	*	*	2008	*	*	*	5035	*	*	*	*	*	*	*	*	472	44
+       65	4511	*	1246	790	0	*	3898	1070	1567	
+
+Y 45   *	*	*	*	*	4413	4703	*	4716	*	*	*	*	*	*	*	*	*	*	190	45
+       0	*	*	*	*	*	*	4170	0	0	
+
+R 46   4726	*	3826	4942	*	*	*	4716	2545	*	*	2933	3706	*	1384	*	4083	*	*	*	46
+       0	*	*	*	*	*	*	4170	0	0	
+
+P 47   *	*	3048	3229	*	1870	*	*	4708	5304	*	*	1200	*	*	*	*	*	*	*	47
+       196	*	2977	*	*	*	*	4170	0	0	
+
+V 48   *	1879	*	*	*	*	*	4603	*	*	3829	*	2409	*	*	*	*	2739	*	1845	48
+       923	1118	6422	763	1284	0	*	3949	2011	1368	
+
+D 49   *	*	1739	1651	*	5415	*	*	*	*	*	4276	2006	*	*	4106	*	*	*	*	49
+       0	*	*	0	*	0	*	4167	1000	1000	
+
+Q 50   2600	*	*	3262	*	4592	*	*	4076	*	*	*	4690	2425	1753	3566	*	5385	*	*	50
+       15	*	6573	*	*	*	*	4168	0	0	
+
+Y 51   1876	*	*	*	*	*	5093	*	*	*	*	1713	3553	*	*	3514	*	*	*	2180	51
+       0	*	*	0	*	0	*	4167	1000	1000	
+
+S 52   *	*	*	2397	*	4994	*	*	5003	4076	*	4813	*	5193	*	3038	*	990	*	*	52
+       0	*	*	*	*	*	*	4168	0	0	
+
+N 53   *	*	*	4076	*	*	*	*	*	*	*	2910	2915	*	*	1634	1503	*	*	*	53
+       0	*	*	*	*	*	*	4168	0	0	
+
+Q 54   4700	*	*	3144	*	*	*	*	2301	*	*	*	*	2093	3274	*	*	*	*	1700	54
+       0	*	*	*	*	*	*	4168	0	0	
+
+N 55   5385	*	1742	1128	*	4370	*	*	5457	*	*	2751	*	*	*	*	*	*	*	*	55
+       0	*	*	*	*	*	*	4168	0	0	
+
+N 56   5784	*	*	*	*	5848	*	*	2497	*	4715	2021	*	4406	2753	4745	5471	2014	*	*	56
+       0	*	*	*	*	*	*	4168	0	0	
+
+F 57   *	*	4076	*	229	*	*	*	*	4148	*	*	*	*	*	*	*	*	*	5003	57
+       0	*	*	*	*	*	*	4168	0	0	
+
+V 58   *	*	*	*	*	*	*	4014	*	*	2009	*	*	*	*	*	*	666	*	4076	58
+       0	*	*	*	*	*	*	4168	0	0	
+
+H 59   2582	*	3781	5299	*	5145	2892	5997	*	*	*	4218	*	6265	2075	3008	2968	*	*	*	59
+       0	*	*	*	*	*	*	4168	0	0	
+
+D 60   4076	*	1161	5003	*	3974	*	*	5784	*	*	4719	*	*	2125	3542	5193	*	*	*	60
+       0	*	*	*	*	*	*	4168	0	0	
+
+C 61   4076	88	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	61
+       0	*	*	*	*	*	*	4168	0	0	
+
+V 62   *	*	*	*	3841	*	*	2528	*	5276	2009	*	*	*	*	*	*	1636	4700	3028	62
+       0	*	*	*	*	*	*	4168	0	0	
+
+N 63   *	*	5003	*	*	*	*	*	*	*	*	137	*	*	4076	*	*	*	*	*	63
+       0	*	*	*	*	*	*	4168	0	0	
+
+I 64   2226	*	*	4714	*	*	*	1696	5145	4076	3755	5276	*	*	2458	*	4998	4690	*	*	64
+       0	*	*	*	*	*	*	4168	0	0	
+
+T 65   *	*	*	*	*	4076	*	*	*	*	*	*	*	*	*	3982	189	*	*	*	65
+       0	*	*	*	*	*	*	4168	0	0	
+
+V 66   *	*	2313	*	*	*	5385	4183	*	*	*	4406	*	2576	4229	*	*	1350	*	4076	66
+       88	*	4076	*	*	*	*	4168	0	0	
+
+K 67   2634	*	*	*	*	*	*	*	2468	2420	*	4663	*	*	4661	5266	1957	3202	*	*	67
+       277	2515	*	1000	1000	0	*	4019	1418	1163	
+
+E 68   2272	*	2616	1554	*	4714	*	4719	*	4406	*	*	*	2591	*	*	*	*	*	*	68
+       0	*	*	*	*	*	*	4168	0	0	
+
+H 69   *	*	*	5299	4700	*	2318	*	3781	*	*	1717	*	2734	6444	*	*	*	*	2345	69
+       115	4714	4690	0	*	*	*	4168	1046	0	
+
+T 70   *	*	4331	*	*	2590	*	3183	3476	*	*	4318	*	2231	4010	3975	2356	*	*	*	70
+       0	*	*	*	*	0	*	4126	0	1052	
+
+V 71   3820	*	*	2827	*	4075	*	2183	*	4719	*	*	*	4406	4714	2862	4336	2333	*	*	71
+       0	*	*	*	*	*	*	4168	0	0	
+
+T 72   *	*	3216	2029	*	3096	*	*	3492	*	*	*	4700	4690	*	2509	2406	*	*	*	72
+       57	*	4700	*	*	*	*	4168	0	0	
+
+T 73   *	*	*	*	3040	*	*	*	*	3462	*	3439	1665	*	*	2657	2174	*	*	*	73
+       110	*	3768	*	*	*	0	4114	0	1036	
+
+T 74   2397	*	*	*	*	*	*	5138	5305	4619	*	3482	4955	*	*	1581	1945	*	*	*	74
+       1247	3245	1079	465	1858	1005	995	4101	1226	1256	
+
+T 75   3119	*	*	*	*	4295	*	*	2141	*	*	*	*	*	4677	2988	1384	4085	*	*	75
+       321	2465	5770	1000	1000	172	3156	3118	1124	2300	
+
+K 76   2818	*	4248	2843	*	3666	*	*	2401	5006	*	4829	4146	4772	2561	4659	5070	*	*	*	76
+       237	2720	*	2295	329	315	2352	4159	1400	1153	
+
+G 77   *	*	3472	1752	*	1940	*	*	4015	*	*	1866	*	5963	*	*	*	*	*	*	77
+       0	*	*	*	*	*	0	4142	0	1153	
+
+E 78   *	*	3567	1856	*	4947	*	3932	1988	*	*	*	*	2562	5737	4829	5322	4604	*	*	78
+       81	5322	5082	2807	222	*	0	4142	1000	1153	
+
+N 79   *	*	3235	4815	*	*	4063	*	*	*	*	1040	4083	3037	*	*	2930	*	*	*	79
+       247	2668	*	1525	616	225	2790	4148	1483	1231	
+
+F 80   3306	*	2366	5369	2244	*	6105	4299	*	4267	*	*	*	*	*	*	3465	1934	*	*	80
+       35	*	5377	*	*	*	0	4171	0	1000	
+
+T 81   *	*	3180	4695	*	4190	*	*	*	*	5356	2510	*	*	*	1395	2211	*	*	*	81
+       89	*	4059	*	*	727	1337	4156	0	1041	
+
+E 82   *	*	4640	991	*	*	*	2493	2677	*	*	*	*	3994	4061	*	*	*	*	*	82
+       121	3634	*	3060	184	0	*	4083	1260	1161	
+
+T 83   *	*	4714	2616	*	*	*	3056	*	1999	3558	*	*	*	*	*	2505	2580	*	*	83
+       15	*	6573	*	*	*	*	4168	0	0	
+
+D 84   *	*	2026	1100	*	*	3022	*	5093	*	6229	*	*	*	*	*	*	*	*	3031	84
+       0	*	*	0	*	0	*	4167	1000	1000	
+
+I 85   *	*	*	4065	*	*	*	2172	*	*	4316	5479	*	2406	5773	2600	2922	2818	*	*	85
+       275	2616	6573	1585	585	*	*	4168	1418	0	
+
+K 86   2856	*	*	*	*	*	*	4403	1785	*	*	*	*	4476	1389	5296	4873	4712	*	*	86
+       0	*	*	*	*	*	0	4167	0	1000	
+
+M 87   *	*	*	*	*	4403	*	2014	*	2164	4600	*	*	*	*	4712	*	1312	*	*	87
+       56	4712	*	2322	322	*	0	4167	1046	1000	
+
+M 88   *	*	*	*	*	*	*	2580	3417	1899	2328	*	*	*	*	*	*	2423	*	3549	88
+       0	*	*	*	*	*	0	4167	0	1000	
+
+E 89   4698	*	4135	1806	*	*	*	*	3716	*	*	*	3009	*	5093	4873	2763	*	2269	*	89
+       43	*	5093	*	*	*	0	4167	0	1000	
+
+R 90   3509	*	*	*	*	*	*	*	2902	4653	*	*	*	1548	1334	*	*	*	*	*	90
+       0	*	*	*	*	*	0	4152	0	1085	
+
+V 91   *	*	*	*	*	*	*	4320	*	1281	3148	*	*	*	*	*	*	1233	*	*	91
+       21	*	6109	*	*	*	0	4000	0	1085	
+
+V 92   *	*	*	*	*	*	*	1114	2475	4878	*	*	*	*	*	*	*	1625	*	*	92
+       0	*	*	*	*	*	0	4001	0	1128	
+
+E 93   4174	*	*	1807	*	*	4610	*	3378	*	*	*	*	4171	1622	2824	*	*	*	*	93
+       0	*	*	*	*	1051	950	4001	0	1128	
+
+Q 94   *	*	*	841	*	*	*	*	*	*	*	*	*	1916	2499	*	*	*	*	*	94
+       0	*	*	*	*	*	0	4019	0	1033	
+
+M 95   *	*	*	*	*	*	*	4834	*	2140	834	*	5080	*	2762	*	*	*	*	*	95
+       135	3486	*	2000	415	1230	802	4019	1174	1033	
+
+C 96   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	96
+       0	*	*	*	*	*	0	4017	0	1000	
+
+I 97   4644	*	*	*	*	*	*	2352	*	4366	4245	*	*	*	*	2185	3582	1476	*	*	97
+       0	*	*	3585	126	0	*	4017	1000	1000	
+
+T 98   5279	*	*	1847	*	5237	*	4853	*	3606	*	5781	*	2593	*	*	1801	3606	*	*	98
+       0	*	*	*	*	*	*	4019	0	0	
+
+Q 99   *	*	*	2449	*	*	*	*	1950	3771	*	4645	*	1168	*	*	*	*	*	*	99
+       0	*	*	*	*	*	*	4019	0	0	
+
+Y 100  *	*	*	*	5175	*	2563	*	*	5741	*	*	*	*	4261	*	*	*	*	450	100
+       79	*	4225	*	*	*	*	4014	0	0	
+
+Q 101  *	1886	*	*	*	*	*	5633	*	*	1865	*	*	2110	2299	*	*	*	*	*	101
+       0	*	*	0	*	*	0	3961	1000	1110	
+
+R 102  3409	*	2369	2340	*	*	*	4576	2707	*	*	4654	*	4547	3288	4422	*	3502	*	*	102
+       0	*	*	0	*	1611	572	3961	1000	1110	
+
+E 103  5576	*	*	1930	*	3580	*	*	4006	*	*	*	*	*	*	*	5004	*	*	890	103
+       39	5219	*	1585	585	0	*	2871	1000	1052	
+
+S 104  3835	*	*	*	5553	*	*	*	*	4971	*	*	*	3516	2628	885	*	*	*	3535	104
+       35	5393	*	3459	138	*	*	2899	1000	0	
+
+Q 105  4243	*	*	1376	*	4821	*	*	*	1829	*	*	*	2164	5523	*	*	*	*	*	105
+       0	*	*	*	*	*	*	2761	0	0	
+
+A 106  1500	*	*	*	*	*	*	*	2757	*	*	*	*	1919	2738	4913	4292	*	*	*	106
+       186	4750	3580	0	*	*	*	2328	1000	0	
+
+Y 107  4153	*	3965	*	993	*	*	*	*	*	*	*	*	*	*	3257	*	*	*	1875	107
+       0	*	*	0	*	0	*	2095	1000	1037	
+
+Y 108  *	*	*	*	*	4128	*	*	*	1468	3556	*	*	3757	*	*	*	*	*	1243	108
+       0	*	*	*	*	*	*	2102	0	0	
+
+Q 109  *	*	4662	1698	*	*	4128	*	*	4595	*	4429	*	1341	4807	4755	*	*	*	4655	109
+       109	3776	*	0	*	*	*	2102	1000	0	
+
+R 110  3590	*	*	*	*	3510	3542	*	*	*	*	*	*	3439	896	*	*	*	3136	*	110
+       0	*	*	*	*	0	*	1328	0	1000	
+
+G 111  3719	*	*	*	*	769	*	*	3282	3708	*	*	*	*	2665	*	*	*	*	*	111
+       130	3535	*	0	*	*	*	1345	1000	0	
+
+A 112  914	*	3439	3590	*	*	*	*	*	*	*	*	*	*	3510	3436	3136	*	*	*	112
+       0	*	*	0	*	*	*	1328	0	0	
+
+//
+�HHsearch 1.5
+NAME  0f0e0cc97063da4305095efeb6623b6b
+FAM   
+FILE  0f0e0cc97063da4305095efeb6623b6b
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:55:11 2013
+LENG  98 match states, 98 columns in multiple alignment
+FILT  154 out of 1042 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  8.9 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEEEEEEECCCCCEEECCEEEECCCCEEEEEECCCCCEEEEEECCCCCCCCCCCCCCCCEEECCCCEEEEEECCCEEEEEEECCCCCCCCEEEEEEC
+>ss_conf PSIPRED confidence values
+94999998269861582787998799999999899983379993886655544552246358679987999948998899998987646888999989
+>Consensus
+xxxxvxxxxxxxxxxfxPxxixvxxGxxvxxxnxxxxxHxvxxxxxxxxxxxxxxxxxxxxxxxpgxxxxxxfxxxGxyxxxCxxHxxxgMxgxIxVx
+>0f0e0cc97063da4305095efeb6623b6b
+ANATVKMGSDSGALVFEPSTVTIKAGEEVKWVNNKLSPHNIVFAADGVDADTAAKLSHKGLAFAAGESFTSTFTEPGTYTYYCEPHRGAGMVGKVVVE
+>gi|319783957|ref|YP_004143433.1| hypothetical protein Mesci_4273 [Mesorhizobium ciceri biovar biserrulae WSM1271]gi|317169845|gb|ADV13383.1| hypothetical protein Mesci_4273 [Mesorhizobium ciceri biovar biserrulae WSM1271]
+--PELIIGSADSTYAVNQKDFELIAGQGYRWKitSKGGFEYkfvtdlfrNVWMDQIVINdLEVHmdG--GPAWLEFDDAGTIQVQFhtVRPGEYTWSVPD
+LADKGLKGKITIK
+>gi|342797151|gb|EGU32807.1| hypothetical protein VIS19158_17171 [Vibrio scophthalmi LMG 19158]
+-VIHVIL-SDDKPIQFKKD-VNIEENDVVQFVvmNTGTKSHEFAIGSKDELSrhnkmmTQMAGMEHdtsSSIIIAPKKARQFtwHFHGDKHVEIACNikG
+HQQHSKSLMIN--
+>gi|225558376|gb|EEH06660.1| conserved hypothetical protein [Ajellomyces capsulatus G186AR]gi|325094158|gb|EGC47468.1| extracellular serine-rich protein [Ajellomyces capsulatus H88]
+-TIDVNVGD-K-GLNFNPDIIKAKPGDDIVFHFF-PKNHDVTEgkfDAPCAP--SDGGFYSGLINADGSqpdATFTVRINNTNPIWLYCStpRHCQGGMS
+AVI---
+>gi|146343114|ref|YP_001208162.1| hypothetical protein BRADO6311 [Bradyrhizobium sp. ORS278]gi|146195920|emb|CAL79947.1| Conserved hypothetical protein [Bradyrhizobium sp. ORS278]
+-TIEISV-KD---NKFQPAELKVPADTPIVFKikNLDAAPIEFESDPL----------Q-FETIVKPNMEGVVKVkaQKPGRYEFFDDLHQN-N-KGTLV
+VE
+>gi|261857226|emb|CBE70465.1| nitrous oxide reductase [uncultured bacterium]
+-------------PHYSLDKFEVNEGDEVTVFltNTDdieNALrrrHGDRPAGDSF-----------GHLQGRSagrALVVLPVvlPRPA----------
+-----------
+>gi|152992359|ref|YP_001358080.1| multicopper oxidase [Sulfurovum sp. NBC37-1]gi|151424220|dbj|BAF71723.1| multicopper oxidase [Sulfurovum sp. NBC37-1]
+-------------KAMDMKRIDevVPLGDTEIWEvnNMMGMDHNFHIHathfrvierNDSAANVLEneKGY-KDVVYLKGNETVKLlvKMTDYTdatvPY
+MYHCHflEHENNAMMGQFTVV
+>gi|82703780|ref|YP_413346.1| cytochrome c oxidase subunit II [Nitrosospira multiformis ATCC 25196]gi|82411845|gb|ABB75954.1| Cytochrome c oxidase, subunit II [Nitrosospira multiformis ATCC 25196]
+-----------HMWYWEMDRDQVEPNQPVDIRVtSADVNHGFGIYDPDLR-----LI--AQAQAMPGYTNVIhiTFPKEGTYRVLCMeycgvAHH--NMM
+TEIKVG
+>gi|87306766|ref|ZP_01088913.1| hypothetical protein DSM3645_10542 [Blastopirellula marina DSM 3645]gi|87290945|gb|EAQ82832.1| hypothetical protein DSM3645_10542 [Blastopirellula marina DSM 3645]
+------------DYLFHPYLTFIRTSQKAKFNNLDPVGHNIKISGFA-----NSP---GPGIVPKGGQWVQSFVQeeRIPYPVHSTIYP--WMEADLLI-
+>gi|242096748|ref|XP_002438864.1| hypothetical protein SORBIDRAFT_10g027460 [Sorghum bicolor]gi|241917087|gb|EER90231.1| hypothetical protein SORBIDRAFT_10g027460 [Sorghum bicolor]
+-------------WSVPAAgaesyntwagRLRFQIGDQLLFVYPK-ETDSVLLVDAAAYNAC--NT-SSYITRFDDGSTVFTLDRSGPFFFVSGndASCR
+ANEKLIVVV-
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+A 1    2146	*	*	2946	*	*	*	*	*	*	*	*	*	2237	1210	*	*	*	*	*	1
+       0	*	*	*	*	*	*	4090	0	0	
+
+N 2    5170	*	5130	3174	*	*	*	*	5309	*	*	3076	*	5034	*	4103	1085	2956	*	*	2
+       0	*	*	*	*	*	*	6664	0	0	
+
+A 3    4764	*	*	5407	5086	*	2916	2131	5715	5449	*	5451	5262	5647	5452	*	4504	2091	5522	3117	3
+       60	5647	5578	3000	193	*	*	7471	1041	0	
+
+T 4    5909	*	3804	2443	*	*	4055	5284	3753	6239	*	*	4179	5671	3817	3311	2003	4737	*	5565	4
+       0	*	*	*	*	1041	960	7609	0	1196	
+
+V 5    4638	*	*	*	*	*	*	1795	*	3185	*	*	*	5838	*	*	*	878	*	*	5
+       0	*	*	*	*	*	0	7646	0	1041	
+
+K 6    4317	*	5837	2952	*	*	4684	4693	4889	3446	5606	4515	*	3682	3746	3988	2401	3323	*	5008	6
+       0	*	*	*	*	*	0	7646	0	1041	
+
+M 7    *	*	*	5912	4380	*	*	2474	*	2757	2137	*	6001	*	*	*	5525	1545	*	*	7
+       447	4205	2237	802	1230	*	0	7646	1298	1041	
+
+G 8    3658	*	5472	3155	*	1408	*	*	3514	*	4051	5175	*	5638	4420	4273	3914	4358	*	*	8
+       329	3777	2933	1018	982	783	1255	7218	1350	2668	
+
+S 9    2983	5079	*	4341	*	2549	*	*	5506	*	*	4211	3886	*	4801	1719	3133	5239	*	*	9
+       515	4596	1950	1000	1000	2097	384	7335	1233	2470	
+
+D 10   5184	*	1767	3323	*	3595	*	5036	4162	*	*	3648	3561	4297	*	3236	3504	*	*	*	10
+       322	*	2321	1000	1000	1811	484	6876	1028	3350	
+
+S 11   2841	*	2037	3728	*	3175	*	*	*	*	*	3435	4000	5068	5141	2990	3447	*	*	*	11
+       249	3513	3823	2297	328	654	1456	6866	1338	3594	
+
+G 12   6234	*	4499	3772	5617	1713	4364	6143	3402	*	4881	5219	6040	3497	4572	3144	4215	*	*	6263	12
+       22	*	6049	*	*	2894	208	8071	0	2274	
+
+A 13   3652	*	3090	3071	6476	2377	*	*	3813	6544	6585	3385	5252	3625	4458	3853	6271	4901	*	5380	13
+       13	6813	*	523	1718	269	2557	8620	1083	2236	
+
+L 14   5313	4520	5177	7244	3194	5510	6860	5238	5149	2846	3030	4251	4384	*	6975	5307	5209	5017	3475	2648	14
+       0	*	*	*	*	0	*	9056	0	1122	
+
+V 15   2665	6070	5518	5065	*	3601	4990	5266	3232	4410	5995	5131	*	4876	3429	3373	3524	4567	*	3544	15
+       0	*	*	*	*	*	*	9173	0	0	
+
+F 16   5524	*	*	*	842	6660	*	4773	*	5868	4656	*	*	*	*	*	6670	4423	4406	2228	16
+       0	*	*	*	*	*	*	9173	0	0	
+
+E 17   4906	*	2687	2793	6127	5064	5255	5178	4593	4407	*	4291	5641	6078	5013	2640	3925	3085	7237	6283	17
+       9	7277	*	3170	170	*	*	9126	1000	0	
+
+P 18   5187	*	4843	5775	6524	7098	*	6144	5287	4816	4991	6557	629	4559	6155	5059	4974	5704	*	*	18
+       10	*	7231	*	*	*	*	9240	0	0	
+
+S 19   2972	*	3026	3645	5954	4379	5325	7067	3468	6520	6836	3144	3083	5124	5007	3122	4548	*	7152	7007	19
+       125	3870	6082	2449	292	0	*	9215	1885	1004	
+
+T 20   3690	*	5627	3148	6194	4986	5469	6015	3916	4743	6504	3720	4708	4112	3685	4316	2920	2874	*	5429	20
+       9	7366	*	1000	1000	0	*	9281	1000	1127	
+
+V 21   3941	*	6496	*	3783	*	6663	1759	6719	1890	5931	4873	*	5168	*	*	6084	2731	*	5458	21
+       38	5751	7135	722	1345	*	*	9333	1206	0	
+
+T 22   5012	7417	4775	2550	6048	5273	4949	6112	4004	7077	*	3662	5751	4005	3740	5223	2272	3197	6199	7109	22
+       48	4922	*	471	1843	0	*	9269	1559	1219	
+
+I 23   3207	*	*	*	3885	*	*	2078	*	2454	*	*	7235	*	*	7236	6736	1540	5028	7052	23
+       0	*	*	*	*	*	*	9336	0	0	
+
+K 24   4352	*	4307	3322	6250	5824	4380	7021	2584	7418	*	4068	2832	3171	3573	4595	5690	4327	*	4809	24
+       0	*	*	*	*	*	*	9346	0	0	
+
+A 25   2427	*	6194	4198	7360	7304	*	4915	2894	4567	*	7097	3110	4868	3981	4619	4685	2282	*	5811	25
+       0	*	*	*	*	*	*	9346	0	0	
+
+G 26   *	*	5396	6334	*	370	6399	*	7381	*	*	3510	5823	*	5579	5296	5596	*	*	*	26
+       58	4882	7545	541	1676	*	*	9346	1644	0	
+
+E 27   5645	*	1493	2748	*	4852	7553	*	4248	*	6762	4942	6416	2743	6534	4207	3902	4363	*	*	27
+       105	4075	6491	880	1131	0	*	9351	2007	1000	
+
+E 28   4587	7468	6246	4420	*	*	6013	5271	3190	4421	6692	5607	3264	4581	3290	4523	1776	3966	5838	*	28
+       0	*	*	*	*	0	*	9345	0	1080	
+
+V 29   4773	*	*	5891	5115	*	*	2319	6771	2643	*	*	*	*	*	*	7411	1044	*	4128	29
+       33	5485	*	3969	95	*	*	9346	1268	0	
+
+K 30   4554	*	5719	3241	7566	*	5384	3814	3258	4625	6214	4870	*	4094	3043	4659	2333	3112	*	7367	30
+       30	5621	*	1000	1000	*	*	9346	1216	0	
+
+W 31   6194	*	*	*	1527	*	*	3051	*	2401	6771	*	*	*	*	6014	*	3797	2102	*	31
+       61	4595	*	1000	1000	*	*	9346	1621	0	
+
+V 32   5670	*	6314	3366	6255	*	3681	3467	3323	4857	7027	4999	6392	5179	3190	4903	3317	2341	*	4806	32
+       418	1992	*	1089	916	*	*	9346	4658	0	
+
+N 33   7142	*	5475	7314	3729	7072	5738	5356	*	4604	6550	767	6343	7191	5915	5592	6886	4738	4427	4324	33
+       102	3878	*	735	1324	*	*	9346	2103	0	
+
+N 34   3935	*	3226	4004	5491	4785	4757	5712	4685	4347	4716	4032	5214	3911	4307	3535	2753	4036	*	5368	34
+       174	4218	4067	260	2600	*	*	9346	1870	0	
+
+K 35   3792	*	1610	4367	*	2315	7479	*	3670	*	6664	4245	6306	5656	7335	3392	3969	7310	*	*	35
+       252	3579	3708	858	1157	332	2283	9283	2362	2097	
+
+L 36   3778	*	2468	4566	7463	3049	5389	5776	3367	6124	4898	3851	3998	3970	5770	3411	4333	4920	*	*	36
+       169	3298	6859	2331	320	442	1922	9147	2477	2353	
+
+S 37   4353	*	5935	4323	5526	3245	4670	3289	3775	3833	3265	5138	5682	5243	6078	4328	3937	2720	6288	*	37
+       39	5847	6761	1033	967	1117	892	9321	1361	1434	
+
+P 38   3144	7160	4608	3666	*	3284	4952	4758	4950	4647	5499	3358	2713	5526	5720	4023	3353	5043	*	6232	38
+       47	4950	*	1999	415	999	1001	9333	1549	1364	
+
+H 39   4874	5734	4920	7508	6377	7072	362	*	6910	7230	7874	*	6189	6268	6894	6479	5751	7309	*	5605	39
+       24	5940	*	2309	325	656	1453	9346	1188	1123	
+
+N 40   7303	6485	3265	3776	4834	3252	7104	7171	6266	5850	*	2088	4328	5403	5619	3716	2633	5786	7257	5065	40
+       0	*	*	*	*	*	0	9347	0	1000	
+
+I 41   4191	7188	6417	*	2174	*	*	2597	6695	2918	5498	*	7257	*	7047	5681	6396	1752	5171	7513	41
+       41	6449	5909	999	1001	*	0	9347	1080	1000	
+
+V 42   3944	6906	5663	3600	4067	4867	3416	4185	5784	4714	*	6153	*	4549	4134	3716	2618	2857	*	4840	42
+       60	5488	5776	896	1112	2165	364	9334	1286	1369	
+
+F 43   4087	*	6669	*	3887	5496	5512	1995	6007	2653	5140	5752	4874	5409	*	2564	4987	3488	*	*	43
+       78	4503	6913	2016	410	231	2758	9278	1667	1549	
+
+A 44   4505	*	3874	3749	6390	3774	3788	4820	3909	4805	5883	7273	3933	4592	4199	3943	3893	2967	6219	4062	44
+       68	5462	5417	2847	216	0	*	9334	1260	1107	
+
+A 45   3463	*	2717	3793	7749	3151	5198	*	4222	5678	7219	3702	3408	5934	6400	2549	4281	4974	*	7066	45
+       160	5620	3565	0	*	*	0	9327	1198	1325	
+
+D 46   4356	6937	3510	3494	3595	3453	7260	7389	3977	3517	5224	4400	3896	5676	5070	3848	3597	4288	*	4832	46
+       189	4291	3800	3249	160	3241	161	9293	1779	2828	
+
+G 47   3306	5850	3292	4021	4591	2755	7624	6076	4109	4143	5928	3233	5763	*	4864	3613	3911	5148	6625	4975	47
+       348	3892	2764	2126	375	2257	339	9325	1814	3540	
+
+V 48   3076	*	4250	4037	3776	4780	6714	3387	4920	3064	4819	4279	6787	4760	5068	4350	4823	3470	4791	5188	48
+       506	3808	2157	2238	344	3437	140	9097	1870	4661	
+
+D 49   3674	*	4912	4084	5502	2844	*	5400	5735	6226	*	4723	1521	5071	4611	4489	4790	4709	*	4780	49
+       694	2248	2546	1935	437	3481	135	8886	3059	6115	
+
+A 50   3677	*	1719	2849	*	4757	*	4261	4902	4666	4778	5014	3853	4717	*	6033	3506	4667	*	*	50
+       204	3590	4363	2898	208	3110	178	8506	1664	6586	
+
+D 51   3477	*	3547	3266	6252	1494	6121	*	5073	*	5941	5377	4222	5378	5734	3777	5460	5104	*	4416	51
+       148	5600	3697	2769	229	3818	106	8645	1087	6358	
+
+T 52   3341	4191	3094	5242	*	2833	5150	4754	3206	4822	6351	4410	*	4107	4481	5359	4330	3657	*	4706	52
+       506	3461	2285	1643	557	2272	335	8678	1853	6431	
+
+A 53   2351	*	4134	3354	5224	4478	3828	6370	4621	6444	5135	3084	5955	6015	6424	3402	3732	4019	*	5516	53
+       184	3210	6431	2233	345	2575	265	8784	2002	6578	
+
+A 54   2869	4277	3523	3393	*	2534	5668	4210	4012	*	6529	4974	3166	6419	4704	4728	4468	4878	*	*	54
+       79	4782	5872	3091	180	1585	585	8900	1387	6015	
+
+K 55   4279	*	3039	4259	4477	2911	4963	3911	6221	3987	*	4151	3963	6493	5316	2771	4461	4133	5943	*	55
+       172	*	3151	*	*	2461	289	9215	0	4861	
+
+L 56   5451	*	*	*	1749	5606	4861	3108	5894	2596	3759	6739	*	*	6559	6558	6397	4181	4105	3368	56
+       888	*	1121	*	*	4537	64	9051	0	5225	
+
+S 57   3181	*	2919	4490	*	2755	*	*	4180	6265	*	3238	4126	4778	*	2981	3102	4944	5543	*	57
+       719	2006	2803	2881	211	1493	633	8122	2646	7496	
+
+H 58   3314	*	4067	4141	3640	4707	3068	3980	2991	5144	*	3600	5250	*	4639	3311	5566	4928	6483	6240	58
+       189	5022	3442	2055	397	378	2116	8673	1161	6505	
+
+K 59   3894	*	2853	3371	4560	3414	4504	5592	3880	6380	*	5356	5266	7200	5227	2686	3056	4533	*	6159	59
+       78	5693	4900	1335	728	592	1571	9126	1252	3433	
+
+G 60   5091	*	3425	3380	5973	4075	*	4618	5373	5691	7331	3195	3796	3998	5371	2728	2860	4544	*	5936	60
+       141	5488	3819	1585	585	585	1585	9261	1219	2388	
+
+L 61   4453	*	4027	6276	4513	2776	6056	2991	4148	2982	6067	5619	3880	5372	*	4525	3592	3146	*	*	61
+       40	*	5180	*	*	321	2325	9251	0	2537	
+
+A 62   4886	*	3663	3681	6107	*	4971	3736	5173	3430	4257	3980	4330	3891	4520	3864	3812	3064	*	4989	62
+       36	7157	5810	1000	1000	0	*	9317	1036	1716	
+
+F 63   5022	6682	5401	5734	5437	4420	*	2901	6093	1823	5522	7131	6273	4686	5420	4509	4908	2386	6913	4833	63
+       36	5865	7052	1625	565	*	0	9293	1180	1240	
+
+A 64   3306	*	4716	2967	5774	3994	5744	6620	3280	4733	5454	3677	3111	4080	4324	3985	3852	5359	*	*	64
+       8	7444	*	1585	585	1711	526	9283	1000	1366	
+
+A 65   3370	6706	5422	4508	6904	4287	7048	5299	4215	5803	5771	4876	1209	5510	4623	4310	5812	5772	*	5144	65
+       64	5600	5457	1771	500	1806	486	9277	1303	1326	
+
+G 66   5062	*	4160	5573	7651	704	5471	*	4238	*	6083	3830	6265	7030	5739	4215	6293	7064	*	*	66
+       52	5413	6413	1944	434	237	2720	9267	1503	1580	
+
+E 67   3386	*	4411	2392	6999	3162	4839	*	3404	5804	6493	5970	6117	2906	4567	3535	4732	5756	*	4626	67
+       22	6035	*	1855	467	0	*	9349	1151	1176	
+
+S 68   4168	*	4549	3342	*	7066	5168	6465	4039	5812	6129	5595	4672	4914	5066	2518	1721	3997	*	*	68
+       43	5475	7148	1621	567	*	0	9341	1304	1003	
+
+F 69   3663	*	5046	5582	2492	4356	6476	4638	4299	*	*	5466	7371	4473	5796	4054	3388	3291	5191	2606	69
+       21	7424	6863	1000	1000	0	*	9338	1000	1132	
+
+T 70   4741	*	5540	2580	7472	5988	5876	6310	3995	5385	7375	4459	*	5500	3730	3052	1968	3395	*	5961	70
+       0	*	*	*	*	0	*	9330	0	1012	
+
+S 71   7418	*	6230	*	3150	7521	4874	2594	5592	2855	4357	*	6924	5225	6445	5692	5100	2152	4465	3473	71
+       171	3253	7189	1000	1000	*	*	9346	2644	0	
+
+T 72   4686	*	4920	3396	5852	*	5776	5691	3886	4842	*	5314	4366	4446	4367	4215	1652	3208	6531	5912	72
+       44	5052	*	401	2044	0	*	9335	1388	1020	
+
+F 73   5507	*	*	6827	879	6965	*	3896	*	2919	6044	7100	5532	*	*	*	5363	2976	6629	6301	73
+       507	1755	*	1059	943	*	*	9346	5153	0	
+
+T 74   4914	*	2318	4080	*	6502	4944	5883	3918	4035	*	2801	3961	6148	6153	3936	2798	3745	*	*	74
+       179	3098	*	1125	885	*	*	9346	2917	0	
+
+E 75   3792	*	4042	2266	*	5795	5604	6581	2543	*	*	3585	5314	4146	3556	4154	3716	4486	*	6399	75
+       60	4628	*	869	1144	*	*	9346	1583	0	
+
+P 76   2466	*	4492	3114	6898	7234	7051	6535	5379	6399	*	5173	1759	*	4597	3855	3392	4276	*	6747	76
+       9	7391	*	1000	1000	*	*	9346	1000	0	
+
+G 77   6162	*	6230	4233	6399	375	*	7083	5357	*	6924	6677	7027	7234	5998	7339	4811	6078	*	*	77
+       25	5884	*	2000	415	*	*	9346	1146	0	
+
+T 78   4691	*	3832	2830	5499	6310	5938	4179	4137	4414	5019	5510	3248	4866	4176	4919	2384	3875	*	*	78
+       0	*	*	*	*	*	*	9339	0	0	
+
+Y 79   5373	*	7016	*	2718	*	5655	4535	*	4357	4627	6765	*	7121	5987	*	6210	4230	3744	1028	79
+       11	*	7022	*	*	*	*	9339	0	0	
+
+T 80   5645	*	3769	3108	4615	4333	5036	5581	5840	3989	4531	6513	3242	4630	3861	5336	3528	3927	4193	3891	80
+       0	*	*	*	*	0	*	9340	0	1039	
+
+Y 81   5473	6034	6534	6765	1567	5930	*	3475	*	3350	*	*	*	*	*	*	*	3639	6683	1688	81
+       5	*	8100	*	*	*	*	9339	0	0	
+
+Y 82   4002	*	7255	7403	3293	4684	2849	3475	4159	4257	5503	7238	*	4663	4322	4924	4728	3457	5962	2725	82
+       0	*	*	0	*	0	*	9339	1000	1000	
+
+C 83   *	317	5034	*	*	7331	*	*	*	6968	6534	6698	*	*	*	3508	6981	4779	*	*	83
+       60	5645	5603	0	*	*	*	9339	1247	0	
+
+E 84   4387	*	3329	4657	5730	3324	3400	6066	4632	4428	5844	3976	4455	5990	4777	2645	3039	5303	6350	*	84
+       970	1078	5988	1388	694	*	0	9334	6540	1217	
+
+P 85   3721	*	4351	5833	4032	2051	6212	3077	7415	4479	5054	5033	2832	5690	6637	6013	6123	4237	*	4080	85
+       93	4304	6434	1316	741	0	*	9259	1851	1571	
+
+H 86   7153	*	6424	6975	6878	7107	322	7316	*	5716	7367	5445	*	6085	6161	6833	7218	7455	6871	4470	86
+       31	7270	6098	0	*	*	0	9300	1032	1072	
+
+R 87   3028	3250	*	3522	6622	4911	4325	5337	5371	5387	5576	5550	2199	4174	4426	4653	4921	7186	6289	3950	87
+       713	7108	1385	0	*	*	0	9275	1020	1302	
+
+G 88   3037	*	4182	2580	6008	3231	*	5620	4465	4686	6049	4842	4804	3185	4265	3090	4254	6420	*	*	88
+       243	4506	3175	2290	330	2854	215	8612	1296	5994	
+
+A 89   1833	*	6762	*	5191	5320	4878	4071	3654	4401	4736	3144	4024	3546	4416	4493	5284	6417	*	6500	89
+       48	5581	6368	1786	494	39	5242	8702	1094	6051	
+
+G 90   4465	*	5772	4493	5530	1111	5585	5531	7353	6295	5381	4092	5462	5282	6132	5511	4262	7278	3249	6050	90
+       37	7623	5603	2000	415	837	1184	9269	1000	1229	
+
+M 91   *	*	6629	4616	5841	*	*	5989	*	4411	297	*	*	4668	*	6764	*	7281	*	*	91
+       39	6389	6085	0	*	218	2835	9106	1072	1507	
+
+V 92   5466	*	5633	4404	4657	5541	4289	5794	2344	5188	4932	4961	7206	3789	3174	4828	3449	3092	6064	4588	92
+       9	7328	*	1000	1000	483	1814	9088	1000	1192	
+
+G 93   2908	7343	6182	7409	7147	701	*	6961	6502	3764	5166	*	*	*	6643	4562	6340	4905	*	*	93
+       0	*	*	2000	415	0	*	9122	1000	1000	
+
+K 94   3464	*	4735	3990	5754	5398	5349	4289	3371	4555	4339	5547	7104	4875	4242	4407	2332	3371	6855	4806	94
+       26	8045	6166	2000	415	*	*	9121	1000	0	
+
+V 95   6648	*	*	*	4151	*	*	1139	*	2514	4658	*	*	*	*	*	6107	2055	6670	*	95
+       0	*	*	470	1847	1377	702	9112	1130	1130	
+
+V 96   5186	*	4511	3884	*	*	5591	2785	3666	3846	5657	4059	*	4827	4817	5671	2646	2441	*	4932	96
+       0	*	*	*	*	0	*	9070	0	1032	
+
+V 97   4743	*	*	*	*	*	*	3102	*	4832	*	*	*	*	*	*	4798	367	*	*	97
+       63	4538	*	666	1435	*	*	9036	1196	0	
+
+E 98   4462	*	6066	2209	*	6485	4843	*	2612	4949	*	4290	*	3395	3314	3574	4603	3367	*	6291	98
+       0	*	*	0	*	*	*	8162	0	0	
+
+//
+�HHsearch 1.5
+NAME  0f1c654429f6f65b407c9e9dde84eba4
+FAM   
+FILE  0f1c654429f6f65b407c9e9dde84eba4
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:25:17 2013
+LENG  87 match states, 87 columns in multiple alignment
+FILT  135 out of 1476 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  11.8
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCCCCCHHHHHHHHHHHCCCCCEECCCCCCCCCHHHHHHHHHHHHCCCCCEECCCCCCCCCCHHHHHHHHHHHCCCC
+>ss_conf PSIPRED confidence values
+997745798889748899999999985589871179787731307899999997358987368989794489999999999874899
+>Consensus
+xxxxxxCxxCxxxxxxxxxxxxhxxxxxxxxxxxCxxcxxxxxxxxxlxxHxxxxxxxxxxxCxxCxxxxxxxxxlxxHxxxhxxxx
+>0f1c654429f6f65b407c9e9dde84eba4
+MEKPYKCPECGKSFSQSSNLQKHQRTHTGEKPYKCPECGKSFSQSSDLQKHQRTHTGEKPYKCPECGKSFSRSDHLSRHQRTHQNKK
+>gi|74194495|dbj|BAE37293.1| unnamed protein product [Mus musculus]
+YTQNLSMSRSYNVCATSFGFPSSFGRYQETPVgeQHCEQKVKNCPSAKSFYIHEMNDNADIDNEHKPFGRAPSSFGSCESRGRINTRKK
+>gi|328719973|ref|XP_003246915.1| PREDICTED: transcription factor Sp8-like [Acyrthosiphon pisum]
+-------------------------------mrtkskktgSYTCpnKSCNKIYKSKG-lQSEYRRqsnls---iSYKFTCPNCCRRYSHKPRLVHHLKHE
+cGYKRF
+>gi|1363187|pir||A56229 lymphoid transcription factor Ikaros/LyF-1, form IV - mouse
+GADGFRDFHAIISDRGMPSNVKVETQSDEENGRACEMNGEEC------------------------AEDLRMLDASGEKMNGSHR--
+>gi|26338808|dbj|BAC33075.1| unnamed protein product [Mus musculus]
+------------NVAKSLHVSVLFKST---KEFILTKSPRKLINEE-----------------------------------------
+>gi|335305641|ref|XP_003360261.1| PREDICTED: transcriptional activator GLI3-like [Sus scrofa]
+------SRQSLVPTPSQRMLMLGVHSPVRRRIAGTAlsACfpenliydTTVYAVATGLFPSTQQISALNRLILRLgYLFSINILSYSAVQLlTAELMEK
+>gi|255933664|ref|XP_002558211.1| Pc12g14050 [Penicillium chrysogenum Wisconsin 54-1255]gi|211582830|emb|CAP81032.1| Pc12g14050 [Penicillium chrysogenum Wisconsin 54-1255]
+----SRAGSCLEDLVCLGVNAAYttIFPRHPDQALQVPCLPKSLyktlAK-saqrDLLKRHVAGH--------------------------------
+>gi|312383158|gb|EFR28349.1| hypothetical protein AND_03879 [Anopheles darlingi]
+--------------------------------FQSETGEDSVKADiLDVLLAGRSKDEKNQ--IAPLLGVY-FLHELKTLsNLSHQLL-
+>gi|170056553|ref|XP_001864081.1| conserved hypothetical protein [Culex quinquefasciatus]gi|167876178|gb|EDS39561.1| conserved hypothetical protein [Culex quinquefasciatus]
+-----------------MNRIFQGASDEAK-----ASLLQDF-WIPKIRFM------------------------------------
+>gi|312093630|ref|XP_003147750.1| hypothetical protein LOAG_12188 [Loa loa]gi|307757084|gb|EFO16318.1| hypothetical protein LOAG_12188 [Loa loa]
+-PTETNPQLGHTLANTRNNYGQSSLGQPNYS-------GNQA----VLRRHkkYSRRASQ--F-CKLAQF-------LHFYPPQSFSA-
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    3834	*	5414	3017	*	1503	*	*	4598	5623	6359	3336	4680	5509	3933	4194	5878	5304	*	4879	1
+       155	3294	*	1792	492	*	*	10031	1965	0	
+
+E 2    3746	*	2971	2044	5868	4455	*	5408	3936	6148	5589	4883	5072	4787	3574	5063	3359	4111	*	*	2
+       71	4379	*	2613	258	*	*	10150	1396	0	
+
+K 3    5034	6110	5885	4650	*	4734	5109	*	1732	3740	5229	4420	4760	4695	2537	4776	5183	3824	*	*	3
+       61	5884	5345	2388	306	*	*	11193	1229	0	
+
+P 4    4169	*	5309	4116	6182	4386	4581	4163	4360	5194	*	5613	2009	5102	3051	3084	4590	4377	*	*	4
+       85	4130	*	1309	746	*	0	11262	1939	1196	
+
+Y 5    5935	5809	6234	6699	1661	6210	3790	3758	4575	3992	4930	4925	5767	5360	5663	6398	4861	6853	5612	2657	5
+       12	6889	*	1000	1000	*	0	11648	1011	1196	
+
+K 6    4831	5574	5628	3340	*	4206	4544	6564	3162	4911	4751	5544	5219	2875	3305	3375	3812	4381	*	4885	6
+       34	5414	*	1000	1000	*	0	11623	1239	1417	
+
+C 7    5056	590	5258	6548	5755	*	6667	6676	6315	5506	5333	5683	6723	*	5470	4557	5329	5007	6368	6734	7
+       34	5442	*	2675	246	1498	630	11767	1305	1417	
+
+P 8    3939	6533	3078	2999	4929	4170	5242	5475	3008	*	5631	3915	3351	3906	4589	3775	4234	*	*	*	8
+       53	5184	6874	1000	1000	*	0	11761	1369	1196	
+
+E 9    4861	6671	4881	3592	4416	*	3747	4005	4384	3192	5752	5282	4815	4133	3984	3923	4554	3551	*	3263	9
+       102	4151	6390	899	1109	2014	410	11765	2171	1563	
+
+C 10   4567	495	*	*	6149	5448	6525	*	5391	6322	*	6147	6699	*	6839	4161	6905	4646	7437	5541	10
+       91	4751	5381	4437	68	1833	475	11748	1581	1598	
+
+G 11   5468	6743	3315	3582	*	2403	3625	6354	5258	4170	6671	3663	4137	4296	4604	3932	4412	5466	5313	5493	11
+       14	6652	*	3090	180	2768	229	11771	1192	1988	
+
+K 12   4869	5219	3969	3152	3988	6739	5257	4882	2242	5777	4707	5558	*	4952	2574	6647	4608	4694	6573	4621	12
+       56	4718	*	1921	442	1277	767	11716	1497	1818	
+
+S 13   4421	6724	4913	5925	5908	4890	5002	4119	4374	4278	6163	4613	4501	6496	3102	2699	3323	3068	5095	5246	13
+       15	6549	*	3585	126	*	0	11785	1014	1402	
+
+F 14   5444	3985	6372	*	1430	6905	6674	6884	*	3351	5839	*	5608	*	*	3990	3798	4000	5290	2785	14
+       15	6640	*	2585	263	1137	875	11786	1347	1402	
+
+S 15   3166	6577	4498	5151	4996	*	4463	6730	2931	3517	6624	4505	3397	4658	3900	3390	3248	4926	*	6395	15
+       25	*	5873	*	*	*	0	11876	0	1124	
+
+Q 16   5688	4632	4399	4227	6519	5853	5879	5720	3971	4940	4775	3751	7292	6258	3883	2385	2536	4153	6433	4345	16
+       0	*	*	*	*	337	2264	11946	0	1494	
+
+S 17   3670	*	4588	3688	5061	5339	5546	4225	3158	3505	4884	4640	4049	4413	3594	3527	4197	5052	5766	5744	17
+       17	6380	*	0	*	0	*	11939	1012	1000	
+
+S 18   3859	5719	4337	4215	5683	3234	5972	*	3267	4539	5333	4360	5438	3581	3899	3119	3435	4586	*	5392	18
+       30	*	5610	*	*	*	*	12000	0	0	
+
+N 19   3570	5944	3038	4311	*	3573	3977	6052	6875	4406	4976	3553	4473	5342	5298	2511	4645	3788	6749	*	19
+       10	7177	*	820	1205	903	1104	12087	1167	1225	
+
+L 20   4527	6806	6683	6977	2941	6425	5092	4083	6935	1494	3980	5084	6068	5608	5216	5742	5184	3783	6222	4341	20
+       10	*	7195	*	*	*	0	11997	0	1000	
+
+Q 21   4106	*	4996	3374	5423	5257	5428	3679	3442	3884	5167	4579	5488	3576	4383	3428	3814	4672	5273	4297	21
+       0	*	*	*	*	1056	946	12143	0	1180	
+
+K 22   4035	6977	4568	3697	5793	4407	6782	4750	4045	3832	7011	4432	4392	3355	2664	3781	3627	4945	*	5255	22
+       11	*	7099	4248	78	*	0	11997	1000	1000	
+
+H 23   5483	*	5895	*	5701	5479	712	5867	*	5112	*	5613	4768	5208	4427	3808	*	4620	*	5663	23
+       97	4183	6680	1142	870	*	0	12145	2119	1204	
+
+Q 24   4867	6061	*	3600	4647	5078	5988	3518	4073	3256	3368	*	6096	3333	3470	4647	4083	3473	5988	5271	24
+       56	4988	7258	3370	147	*	0	12101	1556	1431	
+
+R 25   4125	5191	5774	4570	5983	4262	4894	4470	2689	4051	6295	4264	6629	3508	2509	3783	4743	5810	*	5232	25
+       61	4600	*	2515	277	1375	703	12414	1763	1820	
+
+T 26   4017	5114	5442	4609	6891	4771	5362	3825	3817	5025	6013	3901	5216	4090	3577	2922	3229	3404	6640	6817	26
+       69	4638	7309	1904	449	2113	379	12355	1716	1657	
+
+H 27   4741	5475	3635	4235	5065	*	1694	5663	4051	4416	7015	4838	4535	5278	4369	4392	4864	3995	*	4793	27
+       59	5728	5537	2666	247	1971	425	12391	1385	1676	
+
+T 28   3960	5331	4391	3633	5834	3992	2620	6608	5269	4821	*	4557	4431	4571	3966	3899	2795	4557	6762	6588	28
+       141	3976	5076	2704	240	860	1155	12388	2579	1923	
+
+G 29   3366	*	3728	3799	6804	2529	5241	5451	4212	5828	5274	3558	4105	4872	4257	2942	4764	5047	*	*	29
+       85	6053	4569	1402	686	1546	605	12645	1653	2068	
+
+E 30   4254	5713	3320	3266	6263	4020	5043	6886	3175	3791	7036	6027	4366	4231	3905	3413	4795	4064	*	4417	30
+       104	4927	4781	2331	320	943	1059	12619	1672	2914	
+
+K 31   3909	*	4254	3402	6949	4187	5143	4698	3159	4146	6802	3468	4629	3595	3390	4192	4005	4819	*	5806	31
+       41	7251	5537	3383	145	*	0	12539	1266	2589	
+
+P 32   4005	5670	4947	4788	5009	4181	5779	4089	4225	4332	5329	4756	2257	5039	3926	2967	4312	5148	*	6743	32
+       232	3221	4599	2259	338	1353	717	12534	3192	3226	
+
+Y 33   5777	5280	5807	6056	2063	*	4057	4567	5447	3113	*	5154	6901	5510	5160	4244	4970	3802	4957	2573	33
+       58	5212	6354	1520	618	926	1078	12509	1738	3074	
+
+K 34   3211	5596	7539	3018	4864	5449	4696	4434	3561	4292	6430	5804	6992	3354	3020	4292	4109	3503	6788	*	34
+       37	6050	6644	1695	533	1984	420	12532	1166	2437	
+
+C 35   5852	680	5185	*	7175	6924	6340	6537	6330	3989	7198	5655	5499	*	5542	4451	4320	4838	5946	*	35
+       141	3503	7591	1398	688	924	1080	12542	3091	2231	
+
+P 36   4174	7411	4500	3043	6225	3564	6193	5346	3381	4535	6694	4580	2849	4205	4011	4145	3788	4213	6886	*	36
+       65	5268	5777	2640	252	*	0	12599	1570	1778	
+
+E 37   5258	5557	4873	3905	4258	5517	4569	3859	3309	4070	4299	4363	4379	3933	5192	3876	4267	3456	*	4193	37
+       72	4968	5905	1147	866	2041	402	12523	1650	2344	
+
+C 38   4791	825	5251	*	4870	4934	5553	5212	5603	4260	*	6931	5591	6918	*	4741	4645	4529	*	5203	38
+       68	4826	6505	3072	183	642	1478	12543	1732	2558	
+
+G 39   4608	6928	3680	3518	*	2367	6804	6193	4602	4013	*	3831	3319	4424	4425	3380	3751	5637	*	6391	39
+       37	5825	7065	1710	526	963	1038	12592	1274	1797	
+
+K 40   4208	*	5435	3582	4756	5101	5482	5030	2639	3888	5100	4923	4983	3802	2591	4041	4691	*	*	4028	40
+       14	6722	*	2000	415	*	0	12684	1087	1453	
+
+S 41   4446	4827	4582	4835	5943	4511	6050	3920	3324	5342	6194	4636	4320	4513	3979	2639	3198	3749	*	5556	41
+       50	5133	7469	2960	198	*	0	12642	1513	1453	
+
+F 42   5110	4932	5517	5739	1716	6722	5912	6405	5972	2950	4468	6395	5536	*	6923	3870	4067	4728	5428	2897	42
+       95	5075	4865	3787	108	2389	306	12633	1519	1659	
+
+S 43   3028	6965	4067	4721	5893	4774	5129	5040	3302	4612	5990	4204	3965	5157	3447	3318	4189	3657	*	5109	43
+       36	5857	7056	1056	946	2093	385	12494	1149	2511	
+
+Q 44   4377	6805	4536	4724	4669	4378	4735	5027	3473	4837	7479	3461	5190	4389	3851	2676	3115	4576	6918	5767	44
+       61	5180	6176	1773	499	2371	310	12894	1492	2284	
+
+S 45   3776	*	5231	3830	4630	6469	5422	3971	2522	3446	4657	4737	4185	4214	3864	3556	4311	4822	*	*	45
+       15	6633	*	1069	934	3118	177	12890	1300	2352	
+
+S 46   3807	6235	3236	3953	7076	3331	5962	5320	4167	3740	5418	4924	3996	4714	4004	3407	3294	5904	*	4887	46
+       23	6467	7863	2807	222	2072	392	12933	1000	2183	
+
+D 47   4008	7032	3701	2929	*	4072	3587	5437	4982	3431	5096	3737	6389	4910	4355	2990	4655	4595	*	5229	47
+       33	6029	7070	2889	209	1493	633	12554	1509	2181	
+
+L 48   4584	6206	6614	5605	3371	6662	4916	3876	4931	1345	4691	5464	*	6408	5049	4569	5979	3452	6798	5792	48
+       0	*	*	2000	415	2511	278	12897	1000	1840	
+
+Q 49   3323	*	4746	3676	6244	7152	5482	4270	2932	4709	6179	4202	5218	3499	3264	4060	5345	3768	6716	3923	49
+       45	5236	7888	4724	56	2145	370	12771	1409	1662	
+
+K 50   3832	*	3743	4142	6144	4920	4043	5464	4241	5997	5939	3364	4670	3923	2500	2903	4901	5791	*	5736	50
+       0	*	*	*	*	*	0	12768	0	1935	
+
+H 51   6754	*	5377	5667	*	5458	719	*	*	5161	6000	6882	4373	5214	3983	4428	6463	5039	*	4726	51
+       86	4354	6799	742	1315	*	0	12768	2247	1935	
+
+Q 52   4354	5757	*	3598	6215	4885	6805	3218	3573	2386	4331	6698	6292	3806	4556	4780	4081	4196	5817	4131	52
+       83	4164	*	392	2070	3405	143	12653	2054	2260	
+
+R 53   3220	5840	5974	4288	5798	4795	6135	5921	2819	4113	4967	4436	5276	3542	2518	4049	4104	5565	5662	*	53
+       105	4020	6864	1221	809	*	0	12585	2376	2129	
+
+T 54   3335	*	4975	4458	6355	5273	5001	4001	3804	4299	5094	4553	4148	4064	3589	3462	3563	3242	*	5856	54
+       74	4319	*	2178	360	2273	334	11607	2047	2830	
+
+H 55   4950	5387	4093	5163	5311	5482	1642	5196	3705	5071	5510	4328	4462	6741	4085	3759	4326	5287	*	5580	55
+       80	4807	5765	2280	333	2285	331	11587	1708	2437	
+
+T 56   3952	5792	4840	4815	*	4862	2411	5469	3332	4141	*	3838	5293	4935	4369	3760	2847	5380	6825	5391	56
+       153	3448	6780	3554	128	2402	303	11464	3146	2509	
+
+G 57   3564	*	3910	3720	5749	2407	5364	4600	3395	*	6356	4522	4178	3952	4415	3243	4472	5298	7228	*	57
+       146	3912	5058	3015	190	*	0	11770	2229	2398	
+
+E 58   4599	*	3316	2717	*	5469	5718	*	3356	4009	6238	3987	5752	3113	2938	3441	5745	4565	*	6531	58
+       96	6078	4331	1000	1000	1777	498	11724	1155	2991	
+
+K 59   4653	5822	5520	3505	5373	5773	4912	4812	2236	5398	6813	3618	5174	3447	3198	4399	3923	5843	6726	5234	59
+       103	5083	4668	2592	262	2948	200	11663	1348	3482	
+
+P 60   3900	6574	4614	5882	5555	4187	5305	4473	3898	4370	*	5181	1877	4561	3477	3853	4315	4594	*	6641	60
+       149	3552	6289	3062	184	1201	824	11597	2640	3834	
+
+Y 61   6375	6648	*	7243	1895	*	3377	3906	*	3055	6245	4494	*	5648	5441	3559	5247	4415	6314	2757	61
+       42	5461	7372	3992	94	1328	733	11539	1291	2896	
+
+K 62   4738	5625	6736	3065	*	4763	*	3899	2908	4740	6745	5739	3781	3696	3410	3354	3707	4067	6108	5773	62
+       0	*	*	*	*	1523	617	11673	0	2611	
+
+C 63   *	388	*	6502	*	6739	5903	6278	6916	4705	*	*	6333	*	*	5228	6024	4160	6090	6163	63
+       42	5116	*	1994	417	2486	284	11402	1440	2008	
+
+P 64   5000	*	4277	3411	*	4330	4648	5417	3554	4131	6093	3979	2777	3747	3671	3088	4570	5977	*	6023	64
+       68	5046	6014	3568	127	*	0	11415	1448	1799	
+
+E 65   5591	4859	3993	3305	3637	5000	5935	3168	3777	3086	5503	4693	4723	4391	4904	5243	5651	3763	*	4286	65
+       86	4237	7727	768	1277	2673	246	11427	1917	2204	
+
+C 66   5218	433	6163	*	5195	5947	*	5081	*	5015	*	6216	6040	*	*	5536	6202	5432	6634	5835	66
+       47	4952	*	3889	101	2104	382	11417	1429	2152	
+
+G 67   4869	*	3699	5288	*	2257	4084	*	4263	4617	5036	4770	2911	5863	3667	3110	4535	6734	*	4727	67
+       13	*	6820	*	*	2343	317	11346	0	1848	
+
+K 68   5172	*	*	3660	4388	4232	5311	5163	2223	3701	4026	4870	*	5806	2712	4145	5696	5717	6259	3757	68
+       33	5991	7115	2000	415	*	0	11339	1081	1896	
+
+S 69   4385	5078	5323	4148	6697	6109	5645	3572	3738	4348	4651	4482	5857	4919	4468	3217	2683	3251	5853	5430	69
+       20	*	6201	*	*	*	0	11351	0	2213	
+
+F 70   5251	4617	*	5926	1281	*	*	4512	*	2641	6677	*	5001	*	*	4716	3814	6593	*	2834	70
+       50	5738	6043	1403	685	*	0	11224	1140	2413	
+
+S 71   3650	*	5692	4829	*	3436	6172	4444	3057	4336	6260	3665	4640	5827	3425	2997	3313	4646	*	4819	71
+       14	*	6742	0	*	1885	456	11120	1009	2699	
+
+R 72   5144	5521	4582	6699	4354	4439	4528	5287	3537	5036	5962	3570	5911	4843	3657	2164	3321	*	5297	4705	72
+       43	5763	6537	993	1007	3045	186	11233	1217	2420	
+
+S 73   4327	*	6509	3625	4558	*	4533	4905	2831	3411	6819	4751	3265	3561	3599	3844	4392	4297	5705	*	73
+       0	*	*	2000	415	1777	498	11267	1000	2407	
+
+D 74   5184	*	2850	3764	6470	3717	4589	5458	3149	4953	6247	4710	6486	6230	3703	2168	5297	5972	*	4409	74
+       7	7677	*	0	*	*	0	11299	1088	1957	
+
+H 75   3001	5654	2742	2982	6750	4728	4268	*	5023	2996	5962	4016	*	5287	5703	3290	5214	5739	*	4223	75
+       0	*	*	*	*	1064	938	11290	0	1957	
+
+L 76   6187	5268	*	*	4077	*	5176	4741	4633	1092	3404	*	*	6201	4452	4376	6704	3622	*	4889	76
+       0	*	*	*	*	*	0	11213	0	1410	
+
+S 77   4455	5415	4352	4039	5704	5004	4059	3687	3427	5384	4365	4548	*	3185	3090	4884	4213	5103	5567	4069	77
+       0	*	*	*	*	*	0	11195	0	1410	
+
+R 78   5016	5572	5209	3475	4856	5329	4444	5404	2817	4331	5719	4047	*	3873	2513	3333	4804	4825	*	5848	78
+       0	*	*	*	*	*	0	11191	0	1410	
+
+H 79   *	*	*	*	*	*	312	5288	5683	5199	*	*	5950	5773	4903	6062	6143	*	*	5305	79
+       50	4873	*	1304	749	1242	792	11191	1542	1410	
+
+Q 80   5652	6354	*	4063	5129	4860	4892	3819	3800	2490	2901	6095	6597	3377	4222	5569	5622	3467	6736	4610	80
+       78	4241	*	673	1424	1436	666	11241	1941	1359	
+
+R 81   3372	6268	*	4253	*	*	4297	4524	2637	3500	5266	5096	6580	4542	2118	4076	4425	4746	6324	*	81
+       55	4749	*	1294	756	939	1063	11226	1429	1149	
+
+T 82   3756	6370	5608	4649	*	4822	5847	3241	3644	3778	*	4153	*	6615	3522	2982	3110	3248	*	4607	82
+       52	4818	*	3231	162	0	*	11030	1575	1000	
+
+H 83   5133	5313	5402	4552	*	5887	742	6596	5989	5363	*	4585	*	4963	4930	4541	*	4810	*	5078	83
+       20	6197	*	1000	1000	*	*	10793	1007	0	
+
+Q 84   6226	4701	*	5431	6095	4518	2057	5132	4670	4318	5100	4385	6829	4368	5037	2961	2557	6326	*	4919	84
+       36	6321	6393	2585	263	*	*	10645	1000	0	
+
+N 85   4131	5005	3772	4413	*	1651	*	*	3304	5894	5229	3813	4392	*	3202	4574	4544	5959	*	*	85
+       0	*	*	*	*	0	*	10683	0	1000	
+
+K 86   3617	6115	3318	1751	5938	5260	*	*	3288	4718	5597	3602	5998	3585	4946	5930	4655	4909	*	*	86
+       0	*	*	*	*	*	*	10297	0	0	
+
+K 87   5424	*	*	*	5410	4539	5671	*	1242	4434	*	5424	5082	4378	2626	3542	4325	*	5447	*	87
+       0	*	*	0	*	*	*	9440	0	0	
+
+//
+�HHsearch 1.5
+NAME  0f2381e4f46aa5af8618fb2c6a96974d
+FAM   
+FILE  0f2381e4f46aa5af8618fb2c6a96974d
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:33:29 2013
+LENG  162 match states, 162 columns in multiple alignment
+FILT  111 out of 666 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  5.9 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCEEEEEEEECEEEECCCCCEEEEEEEEEEECCCCEEEEEEEECCCHHHHHHHHHHHHHHCEEEEEECCCCEEEEEEEEECCEEEEEEECCCCCCC
+CCCHHHHHHHHHCCCCEEEEECCCCCCHHHHHHHHHHHHHCCCCHHHHHHHCCCCHHHHHCC
+>ss_conf PSIPRED confidence values
+9822325999999663887189986999999998479986985065645068999999987741579997058600067899988799999878999886
+14739999997379674999716889778899999999984599999998819985763066
+>Consensus
+xxxxxxxxxvlxvxrvxkxtxxGrxxxfxalvvvGnxxGxvGxGxgKaxxxxxAixkAxxxAxxnlxxvxxxxxTIxxxvxgkxgsxxVxlxpapxGxGi
+xaxxxixxilxlaGixdvxxkxxGsxnxxNxvkAtfxaLxxxxtxxxiaxxrgxxxxxxxxx
+>0f2381e4f46aa5af8618fb2c6a96974d
+MPETDFEEKMILIRRTARMQAGGRRFRFGALVVVGDRQGRVGLGFGKAPEVPLAVQKAGYYARRNMVEVPLQNGTIPHEIEVEFGASKIVLKPAAPGTGV
+IAGAVPRAILELAGVTDILTKELGSRNPINIAYATMEALRQLRTKADVERLRKGEAHAQAQG
+>gi|148680994|gb|EDL12941.1| mCG51731 [Mus musculus]
+-----FplgtslNDEVLKIMPVRKQTWAGQGTRFKALVTISDYDDHTGLGVKYSTEVPMPSEEPQSWPSFPSSLCREAtgehdwqaPR---CPMQGHrsq
+wlCAG-TSQSHPCPTGTGIVSASVLKKLLMIPSIDDCYTSARGYTaTLGNFAKATFDVISKT--------------------
+>gi|340373345|ref|XP_003385202.1| PREDICTED: 28S ribosomal protein S5, mitochondrial-like [Amphimedon queenslandica]
+----DFHSVILDMYRARWKCSMGSQFAIQTSVIVGNGKGMVGFGVARSKDMRGCIRRAKNRAVKQLRCIPIcEGHTIFHNIKSKCVRTRVLMERKEKGFG
+LRCNPKLQAVMQLIGIKDIRIKQLGSNHVGHLVRATLSGLLGQETYESLANKTGE--------
+>gi|340503743|gb|EGR30274.1| hypothetical protein IMG5_136340 [Ichthyophthirius multifiliis]
+----------LSRGLTTKVTTLQRIQSYRYLIFMGNGNGLVGYGKGKGSDFEEALDNAILHCKRNLIAIPLDlYHTVPRQLYGQYNRFEITVTPAR-TFN
+PWGSPIIASMLLLTGFRHCRFQTVSKKiNPYSMIMAYFKMITQNKTPKDICEETGQKVYR----
+>gi|242085790|ref|XP_002443320.1| hypothetical protein SORBIDRAFT_08g017450 [Sorghum bicolor]gi|241944013|gb|EES17158.1| hypothetical protein SORBIDRAFT_08g017450 [Sorghum bicolor]
+------------------------------------------------------------------------------------------MPLAPRGPGS
+SPPVSPRMSSSSLELRTSSPRPMASPrHCESNFYATFDCLMKTygfLTPEFWTETKY---------
+>gi|330802661|ref|XP_003289333.1| hypothetical protein DICPUDRAFT_80106 [Dictyostelium purpureum]gi|325080586|gb|EGC34135.1| hypothetical protein DICPUDRAFT_80106 [Dictyostelium purpureum]
+--------NLVSVGRHTSVTRAGRVFNFSATVFNGDGEGTASRGYGKGDTAVSALRRATKDAERRAFTLDRFrDYTLPSGLDMKYRSTKVRFFKSKDYDQ
+MDhSGYKQTIILPTIGLHGVTFRTYGRRNWNNVLLAIQNGLPNYTNPEEAARIMGKRFIV----
+>gi|71665096|ref|XP_819522.1| hypothetical protein [Trypanosoma cruzi strain CL Brener]gi|70884826|gb|EAN97671.1| hypothetical protein, conserved [Trypanosoma cruzi]
+------------DMRVVKFSPKDHRQWIYCVLYVGSGKGIAGWGRAVAPSTQEAKKEAIREAFSNIIAVDLEQEGPMYPVRVNADGVRVLLYPAKR---I
+VANFRVADILCAFGFQHAGCRINlkATNNpksPTHTVEGVFEAVKALRSVSEIAASRGKVPHS----
+>gi|294932638|ref|XP_002780367.1| hypothetical protein Pmar_PMAR016562 [Perkinsus marinus ATCC 50983]gi|239890300|gb|EER12162.1| hypothetical protein Pmar_PMAR016562 [Perkinsus marinus ATCC 50983]
+-NYEGLRQHLMAVSRLCSMAPNGRVYYYRCILMVGNGKGVYGFGVGYGNTITTARADAAMQALKRLQFVDLDsSRTLHAPVIAREYGQKCKILPLPAESG
+ILCNRRYLPWVYIMGLHNVELKFEGELSWLSRTRAITRTTSMIMSRRTVANGEGKK-------
+>gi|170056144|ref|XP_001863899.1| 40S ribosomal protein S2 [Culex quinquefasciatus]gi|167875968|gb|EDS39351.1| 40S ribosomal protein S2 [Culex quinquefasciatus]
+-------------------------------------------------MIMHAIRGAIILAKLSVVPVRRGywgnkigkPHTVPCKVFGKCGSVLV--R
+PAWPCLPLTSP-----LL-ADSPDFCDARSCCSTRPFDFVAA----------------------------
+>gi|11496544|ref|NP_044554.1| ribosomal protein S5 [Toxoplasma gondii RH]gi|5231247|gb|AAD41141.1|U87145_10 ribosomal protein S5 [Toxoplasma gondii]
+-----ILQKIIEIKKISKTKQKGRIRRFKVLLLIGAKNAWIGIGVSKDFYLQEAINKARFFAFKKIYFFYiiLEklfyySNTIN--------KIKCIIIY
+KPIFYGIQVSFLIQIFLDLLGYNVLIIKIFKHTtkyTLINF-------------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    2633	*	*	*	*	*	*	*	*	1465	1617	*	*	2732	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	2644	0	0	
+
+P 2    3277	*	3293	*	*	*	*	*	3188	*	*	1060	2283	*	*	*	*	*	*	*	2
+       0	*	*	*	*	*	*	3456	0	0	
+
+E 3    3901	*	4158	1842	*	*	3351	*	2437	*	*	*	2686	*	4232	*	*	*	*	3226	3
+       0	*	*	*	*	*	*	3831	0	0	
+
+T 4    4746	*	3082	1722	*	*	*	5335	3191	*	4840	4207	4643	*	3711	3252	4371	4364	*	*	4
+       113	3732	*	1000	1000	*	*	4541	1119	0	
+
+D 5    6601	*	1956	2936	*	2771	*	*	4237	*	6109	3280	4604	3577	4997	3073	6774	*	*	*	5
+       96	3963	*	778	1263	*	*	5480	1206	0	
+
+F 6    *	6454	*	5625	1523	*	*	3595	*	1683	4246	*	*	*	*	6025	*	4903	3259	5630	6
+       48	4933	*	2585	263	*	*	5792	1090	0	
+
+E 7    5114	*	3322	2135	4979	6062	5206	5803	3053	4023	*	4374	*	3549	2870	4041	*	5287	*	6265	7
+       0	*	*	*	*	*	*	5817	0	0	
+
+E 8    *	5306	3028	1669	6134	5386	6496	*	5677	*	5502	6654	*	4240	3720	3066	3743	3641	*	4884	8
+       0	*	*	*	*	*	*	5882	0	0	
+
+K 9    *	*	5715	3071	4843	*	5734	5094	1714	5095	5991	5691	*	5125	2270	5258	6143	3872	4998	4873	9
+       0	*	*	*	*	*	*	5949	0	0	
+
+M 10   *	4999	*	*	5434	5420	*	2389	*	2004	5038	6195	6383	*	*	*	5330	1318	*	*	10
+       27	5764	*	3907	100	*	*	5963	1039	0	
+
+I 11   *	*	*	*	*	*	5490	2078	*	1439	3523	*	*	*	*	*	*	1811	*	*	11
+       0	*	*	*	*	*	0	6147	0	1039	
+
+L 12   4155	*	2905	2386	5296	5784	4694	5645	2372	5680	6024	5372	*	4301	5171	3327	4707	4375	*	*	12
+       30	5592	*	3700	115	0	*	6147	1060	1039	
+
+I 13   5878	*	4742	*	*	*	6562	1727	6366	3861	5392	5813	*	6732	4181	4032	4657	1621	*	5641	13
+       9	7336	*	2000	415	*	*	6182	1000	0	
+
+R 14   4736	6567	4196	*	*	3595	4543	6682	2277	4858	3785	2752	*	*	2482	3722	4965	*	*	6217	14
+       0	*	*	*	*	*	*	6197	0	0	
+
+R 15   5625	*	*	*	6750	5397	*	5372	4273	4251	4237	5195	4047	5401	863	3898	5999	6533	*	6567	15
+       0	*	*	*	*	*	*	6197	0	0	
+
+T 16   5507	5232	*	*	*	6594	4733	3866	*	4791	5288	4984	*	*	*	5125	2915	785	*	*	16
+       0	*	*	*	*	*	*	6197	0	0	
+
+A 17   3376	3646	*	5692	4944	*	6567	6964	*	*	6205	*	*	2438	4019	2288	2192	3839	*	*	17
+       0	*	*	*	*	*	*	6197	0	0	
+
+R 18   *	5484	*	5045	*	*	4676	5561	995	6612	*	3232	*	5999	2777	4089	5105	7418	6217	*	18
+       59	6512	5107	1000	1000	*	*	6197	1005	0	
+
+M 19   *	*	*	*	5920	6576	*	5663	4900	5430	2001	*	6432	2519	6545	*	3188	1556	*	*	19
+       38	5254	*	0	*	0	*	6151	1095	1105	
+
+Q 20   4981	4922	5663	*	*	*	5542	7255	5302	5515	4734	6963	*	7286	5112	5934	872	2442	6280	*	20
+       13	6816	*	0	*	*	*	6191	1000	0	
+
+A 21   3221	6217	4614	5111	*	4314	*	*	1546	5674	*	*	4279	6077	2646	4163	3511	*	5176	*	21
+       62	4566	*	3431	140	*	*	6191	1194	0	
+
+G 22   2939	*	*	4789	5220	1382	6228	*	2772	4135	5296	4467	*	6758	6765	3937	5564	5554	*	6734	22
+       53	4802	*	791	1244	*	*	6191	1166	0	
+
+G 23   5807	*	5934	6758	*	208	*	*	*	*	*	7025	*	5055	4903	5674	*	*	*	*	23
+       0	*	*	*	*	*	*	6191	0	0	
+
+R 24   5201	7021	*	5315	*	4959	4877	*	2469	5674	6532	5837	*	3428	923	6221	6435	*	*	*	24
+       0	*	*	*	*	*	*	6191	0	0	
+
+R 25   6558	*	*	4598	*	5176	*	2279	3102	3947	5668	5398	5674	3877	2211	5701	5898	3123	5823	5829	25
+       0	*	*	*	*	*	*	6191	0	0	
+
+F 26   4539	*	5663	4656	2806	*	5171	4774	4488	4433	3805	4728	5141	3925	3377	5356	2888	4508	*	3377	26
+       0	*	*	*	*	*	*	6191	0	0	
+
+R 27   5648	*	*	*	6409	4369	6587	*	4250	*	6491	4080	*	5128	1702	1484	4787	6540	5934	5069	27
+       0	*	*	*	*	*	*	6191	0	0	
+
+F 28   7207	*	*	5674	1080	*	5507	3137	6682	5527	3744	*	*	5631	*	6063	6210	5797	5732	2526	28
+       0	*	*	*	*	*	*	6191	0	0	
+
+G 29   4885	6936	*	6937	5864	7286	5897	*	2478	*	*	4466	*	4144	2013	2220	3573	*	5742	3987	29
+       0	*	*	*	*	*	*	6191	0	0	
+
+A 30   1085	3923	*	5674	*	5663	*	4273	*	*	*	*	*	5989	6667	3534	6221	2185	*	5243	30
+       0	*	*	*	*	*	*	6191	0	0	
+
+L 31   5742	7004	*	*	3432	5947	6997	3427	*	1063	3545	*	8814	*	*	6221	4271	3062	*	6345	31
+       0	*	*	*	*	*	*	6191	0	0	
+
+V 32   3302	6978	*	*	*	5072	*	2977	*	3752	5265	*	*	*	5663	5675	3999	955	*	5961	32
+       0	*	*	*	*	*	*	6191	0	0	
+
+V 33   2472	5047	5674	*	4438	5823	6667	2401	*	3621	5926	*	*	*	*	*	4700	1496	*	5934	33
+       0	*	*	*	*	*	*	6191	0	0	
+
+V 34   4087	4829	*	*	4747	6280	*	2383	7131	6063	5476	5963	8814	*	6667	6640	3246	1071	*	*	34
+       29	*	5671	*	*	*	*	6191	0	0	
+
+G 35   *	*	*	*	*	41	*	*	*	*	*	*	*	*	*	5153	*	*	*	*	35
+       0	*	*	*	*	*	0	6126	0	1058	
+
+D 36   6066	*	1387	*	*	*	6305	*	*	*	*	958	*	*	4553	4933	*	*	*	*	36
+       33	5447	*	0	*	0	*	6126	1121	1058	
+
+R 37   5743	*	*	4378	5672	1277	*	*	3018	4959	4865	7381	*	4355	3143	7105	6275	6643	*	3148	37
+       0	*	*	*	*	*	*	6191	0	0	
+
+Q 38   5785	*	3228	3832	*	*	4766	*	2172	4882	5559	1656	*	4103	3914	5156	5555	*	*	*	38
+       0	*	*	*	*	*	*	6191	0	0	
+
+G 39   6077	*	4638	*	*	225	*	*	5817	*	*	5044	*	*	*	6947	*	6213	5654	*	39
+       0	*	*	*	*	*	*	6191	0	0	
+
+R 40   4189	5514	7248	*	7259	5672	3367	4545	4148	2477	4462	5923	*	6416	3750	3901	5958	2929	3832	3604	40
+       0	*	*	*	*	*	*	6191	0	0	
+
+V 41   3117	5237	*	*	4329	4084	*	2598	*	3411	6213	*	*	*	5654	6643	5172	1361	*	5069	41
+       0	*	*	*	*	*	*	6191	0	0	
+
+G 42   *	*	*	*	*	142	*	*	*	*	*	*	*	*	5654	3971	*	6643	*	*	42
+       0	*	*	*	*	*	*	6191	0	0	
+
+L 43   5654	5842	*	*	2440	*	*	2517	*	2412	6100	*	*	*	4808	5585	*	2814	4962	2552	43
+       0	*	*	*	*	*	*	6191	0	0	
+
+G 44   2551	*	*	*	*	376	*	*	*	*	*	*	*	*	5654	5285	*	*	6213	*	44
+       0	*	*	*	*	*	*	6191	0	0	
+
+F 45   5291	5279	*	3655	4176	5104	6477	3207	2860	3453	3990	*	*	5275	4681	6482	3981	2385	*	4545	45
+       20	*	6213	*	*	*	*	6191	0	0	
+
+G 46   2433	6949	*	*	*	698	*	*	3576	*	*	*	*	5142	7119	4245	*	6532	*	7125	46
+       0	*	*	*	*	*	0	6164	0	1024	
+
+K 47   7133	5307	*	7041	4902	*	*	6532	640	*	*	*	7119	*	3645	5123	4679	4166	*	3973	47
+       0	*	*	*	*	*	0	6164	0	1024	
+
+A 48   1322	*	3440	5651	*	2154	5200	*	*	*	*	*	*	5560	*	2218	*	*	*	*	48
+       12	6936	*	0	*	*	0	6164	1000	1024	
+
+P 49   3470	*	3694	4293	6049	5854	4967	6162	2061	4337	6676	4046	4085	5199	3762	3800	4375	5143	6271	5463	49
+       53	4789	*	569	1618	*	0	6164	1152	1024	
+
+E 50   5771	*	2036	1486	7450	5823	6689	*	*	6970	*	4405	*	5109	6073	3720	3685	4761	*	4099	50
+       0	*	*	*	*	*	0	6164	0	1024	
+
+V 51   2911	*	*	*	3692	6796	5009	3525	*	3611	4718	6818	3643	*	7070	4191	4472	1528	*	*	51
+       0	*	*	*	*	0	*	6164	0	1024	
+
+P 52   2576	*	*	4567	*	3885	7099	6733	3670	3848	5417	4344	2662	3137	3853	4113	5456	3974	*	*	52
+       0	*	*	*	*	*	*	6191	0	0	
+
+L 53   3105	*	3172	2999	6650	5431	*	3622	5810	4570	4581	5703	6284	6499	5229	3074	3140	3041	*	6938	53
+       0	*	*	*	*	*	*	6217	0	0	
+
+A 54   270	6234	*	5690	*	5094	*	*	*	6154	*	*	5203	*	6659	4955	5288	*	*	*	54
+       0	*	*	*	*	*	*	6217	0	0	
+
+V 55   4864	*	6659	*	4658	*	*	1469	4709	3169	5395	6719	*	4851	3947	4625	5107	2341	*	7412	55
+       11	*	7089	*	*	*	*	6217	0	0	
+
+Q 56   3826	*	3760	3076	6919	*	5646	7197	2723	*	*	4320	*	2923	1882	4526	5648	5209	*	7144	56
+       0	*	*	*	*	*	0	6204	0	1000	
+
+K 57   4392	*	4469	4207	*	3818	*	*	957	*	6480	5030	*	5513	2751	5211	6066	6297	*	*	57
+       33	6826	6190	0	*	*	0	6204	1000	1000	
+
+A 58   248	*	*	*	*	3645	*	*	*	*	*	*	5145	*	*	4323	*	*	*	*	58
+       29	*	5655	*	*	1271	772	6187	0	1086	
+
+G 59   5058	*	*	7388	4930	3875	4792	2543	2865	3571	4081	6949	*	4683	3664	3762	3658	4250	*	4523	59
+       0	*	*	*	*	*	0	6143	0	1145	
+
+Y 60   4707	6887	*	3015	5525	*	5922	3497	3063	3419	4578	3145	*	5456	2485	4358	5601	4997	5256	7279	60
+       0	*	*	*	*	1256	782	6143	0	1145	
+
+Y 61   3860	*	2971	4151	6081	*	4935	6239	2571	3712	4708	3567	*	3614	2931	4860	6602	6164	4594	7290	61
+       0	*	*	*	*	*	0	6162	0	1058	
+
+A 62   266	4562	*	*	*	4584	*	*	*	*	*	*	5177	*	*	4147	*	*	*	*	62
+       0	*	*	*	*	*	0	6162	0	1058	
+
+R 63   5023	5552	7031	4281	3685	5777	*	3683	1475	4133	6738	*	*	5171	3850	4009	6942	3357	*	5379	63
+       16	6507	*	1000	1000	*	0	6148	1002	1058	
+
+R 64   5797	7129	*	*	5163	5990	3946	*	1737	2469	6890	4464	6155	4074	2246	5163	5662	*	*	*	64
+       0	*	*	*	*	*	0	6148	0	1058	
+
+N 65   4254	6977	5217	*	5830	*	5849	*	3441	*	*	1052	5163	6124	3312	2924	7218	*	*	5505	65
+       0	*	*	*	*	*	0	6148	0	1058	
+
+M 66   4446	*	*	*	6019	*	7203	2489	*	1330	2216	*	*	*	*	5163	7388	3225	*	*	66
+       30	5588	*	2529	275	0	*	6148	1063	1058	
+
+V 67   6912	*	4242	*	3831	*	4469	1885	6095	4516	4409	*	*	4737	3143	4219	4567	2971	*	3771	67
+       0	*	*	*	*	*	*	6203	0	0	
+
+E 68   4309	6192	7395	4865	2775	*	5537	*	3145	4482	6955	*	2256	5763	4590	4609	3924	7014	*	2487	68
+       0	*	*	*	*	*	*	6203	0	0	
+
+V 69   5177	4171	*	*	3693	*	*	1792	*	3848	5968	*	*	*	*	*	*	1104	*	*	69
+       10	7130	*	0	*	*	*	6203	1000	0	
+
+P 70   5010	*	2740	2745	*	*	6149	6065	4240	7167	7038	3777	1913	7069	2785	4524	*	*	5822	5540	70
+       208	2895	*	590	1576	*	*	6203	1767	0	
+
+L 71   *	*	*	4514	4261	*	6957	3760	5876	1807	5406	*	5980	5659	1703	6145	5671	5225	*	3435	71
+       240	2752	7656	1232	800	*	*	6203	1889	0	
+
+Q 72   4908	*	3588	2804	4239	2347	4035	5823	2795	7289	6930	5076	*	4906	4988	4708	5324	6267	6787	3760	72
+       1204	821	*	2021	408	0	*	6207	3980	1000	
+
+N 73   5111	5989	2945	4031	*	2761	*	*	3580	7104	6521	2380	2485	5213	7761	3800	*	6456	6013	6152	73
+       53	4799	*	2185	358	*	*	6204	1182	0	
+
+G 74   5382	6278	4861	4675	*	3290	1622	5989	5059	*	*	3848	*	*	2081	5301	5351	6465	*	4334	74
+       59	6296	5191	0	*	*	*	6204	1033	0	
+
+T 75   6437	7744	*	6480	*	5075	*	4725	*	*	*	6395	5382	*	*	2394	559	*	*	*	75
+       13	6792	*	1000	1000	*	0	6130	1000	1090	
+
+I 76   *	5996	*	*	*	*	7073	1031	*	2175	*	*	5915	*	5964	*	6298	2178	*	*	76
+       0	*	*	*	*	*	0	6130	0	1090	
+
+P 77   3875	6468	*	6614	3537	*	4463	*	6638	3866	5915	4700	1526	6104	5610	4842	4727	*	4467	2786	77
+       22	*	6061	*	*	0	*	6130	0	1090	
+
+H 78   4871	3226	*	5714	3441	3561	1350	5159	*	*	*	5252	*	5189	5181	5917	4271	5210	*	3914	78
+       39	6333	6154	1585	585	*	0	6181	1008	1032	
+
+E 79   4727	*	2282	3055	5917	4697	*	6856	2444	*	5482	4604	2635	4399	4719	5360	4718	5914	*	*	79
+       18	*	6359	*	*	*	0	6163	0	1119	
+
+I 80   6145	5896	*	*	3738	6553	*	2883	*	2512	3744	*	*	5487	*	5594	4449	1289	*	*	80
+       0	*	*	*	*	*	0	6134	0	1196	
+
+E 81   *	*	4660	2595	3962	*	5479	4241	3830	5340	6665	5583	*	3596	3858	3522	2943	3713	*	3563	81
+       0	*	*	*	*	1746	511	6134	0	1196	
+
+V 82   2840	*	*	*	7139	926	4458	*	5589	5001	5898	6500	*	*	6248	4261	4202	3798	*	6607	82
+       16	6519	*	3700	115	*	0	6163	1005	1119	
+
+E 83   6683	5015	6230	4234	*	*	4683	5621	1018	*	*	4623	*	3353	3077	5812	5074	5849	*	5789	83
+       62	5102	6248	2322	322	*	0	6163	1090	1119	
+
+F 84   4323	2604	*	4058	1963	5995	3074	6725	7167	6739	*	*	*	4586	*	4057	7348	6267	4668	2749	84
+       0	*	*	*	*	1647	555	6142	0	1210	
+
+G 85   4009	4738	4252	5998	*	1158	4962	*	3963	5813	*	3303	*	*	4006	4994	*	5468	6581	4568	85
+       17	*	6374	*	*	972	1029	6159	0	1123	
+
+A 86   1923	*	5912	*	*	2723	*	*	3447	*	*	4758	6489	6644	3797	1574	6557	*	*	*	86
+       68	*	4449	*	*	*	0	6167	0	1106	
+
+S 87   2864	3810	*	*	5984	5284	*	4996	*	*	5575	*	*	5870	*	2483	1783	2244	*	*	87
+       20	*	6200	*	*	355	2198	6047	0	1352	
+
+K 88   6032	*	*	3545	*	*	3739	5177	1634	4277	*	7092	6122	5571	2469	4906	3328	4289	6766	7374	88
+       0	*	*	*	*	*	0	6163	0	1105	
+
+I 89   *	4299	*	*	*	6122	*	2018	*	3564	5609	*	*	*	5800	5155	*	897	*	*	89
+       0	*	*	*	*	1134	878	6163	0	1105	
+
+V 90   5370	6642	5460	3779	3034	*	4852	3393	3644	2833	4652	*	*	4798	2945	*	3591	4651	5808	4272	90
+       0	*	*	*	*	*	0	6179	0	1028	
+
+L 91   4177	*	*	*	4493	*	*	2056	*	1367	2611	*	6165	*	*	4514	*	4298	*	*	91
+       0	*	*	3000	193	*	0	6217	1028	1028	
+
+K 92   5362	7137	*	5681	4227	*	4149	3393	2505	3815	4991	5456	6170	5046	2378	4924	4951	4859	4470	4025	92
+       0	*	*	*	*	*	0	6217	0	1028	
+
+P 93   4057	*	*	*	*	*	*	*	3536	6176	*	*	673	6601	3955	3279	6984	6283	*	6126	93
+       0	*	*	*	*	*	0	6227	0	1028	
+
+A 94   1068	5241	*	*	*	4760	*	5558	3557	4174	6283	*	*	4891	2817	4158	6497	5006	*	6430	94
+       0	*	*	*	*	*	0	6227	0	1028	
+
+A 95   4567	6984	6898	6155	*	5269	7058	6177	3693	*	*	5053	734	*	4211	3749	5988	6408	*	6001	95
+       21	*	6093	*	*	*	0	6227	0	1028	
+
+P 96   3113	*	4565	3559	*	*	*	4782	2488	4971	6958	*	2535	6489	2165	5403	4881	5219	*	6407	96
+       38	6767	5888	2691	243	0	*	6198	1081	1126	
+
+G 97   *	*	4945	4922	6075	303	*	6619	5559	*	*	*	*	*	4915	*	6101	*	6170	5929	97
+       0	*	*	*	*	*	0	6189	0	1053	
+
+T 98   4549	*	5929	*	2593	7034	4587	4639	4072	4927	*	5390	6159	5908	5508	3341	1822	5417	6471	3311	98
+       24	*	5908	*	*	*	0	6189	0	1053	
+
+G 99   7195	*	*	*	*	208	*	*	6361	*	*	4948	*	5907	6154	4851	*	*	5823	*	99
+       20	6154	*	0	*	0	*	6156	1044	1143	
+
+V 100  5988	6172	*	*	6570	*	5869	1644	*	1443	3948	*	5070	*	*	6180	*	2770	*	*	100
+       0	*	*	*	*	*	*	6236	0	0	
+
+I 101  5498	5683	5938	*	*	*	5608	2299	3631	5444	5011	6498	*	6111	2479	4900	5015	1813	6140	5988	101
+       24	5938	*	0	*	*	*	6236	1052	0	
+
+A 102  1186	2382	*	*	*	3692	*	5532	*	6160	*	*	5016	*	*	3405	5374	3234	*	*	102
+       20	6153	*	1000	1000	*	*	6236	1022	0	
+
+G 103  3151	*	6939	*	*	1550	3023	*	*	*	6570	2292	4340	6270	*	2861	*	*	*	*	103
+       0	*	*	*	*	*	*	6236	0	0	
+
+A 104  4490	*	3695	5169	5027	2446	4549	*	4258	*	*	5384	2360	7321	2418	3616	7396	6180	*	5162	104
+       12	6952	*	0	*	*	*	6236	1000	0	
+
+V 105  2816	6487	6570	6939	6643	5531	5746	3557	3703	3519	4780	5446	4205	5988	3822	4088	4085	2372	*	5798	105
+       0	*	*	*	*	*	*	6236	0	0	
+
+P 106  4692	*	*	6172	5435	5703	*	1763	*	3111	3894	*	3073	4631	*	5860	*	2170	*	5114	106
+       0	*	*	*	*	*	*	6236	0	0	
+
+R 107  4169	*	*	5148	4428	5302	4428	5245	1938	4298	6089	*	*	3957	1686	5975	5938	6750	*	5139	107
+       0	*	*	*	*	*	*	6236	0	0	
+
+A 108  2540	6727	4495	3061	6153	7050	*	4442	2519	4992	4833	5104	4000	4531	5192	3546	3443	7345	*	*	108
+       0	*	*	*	*	*	*	6236	0	0	
+
+I 109  6172	5133	*	*	4993	*	*	1614	*	2316	3627	*	*	*	*	6180	*	1796	5960	*	109
+       0	*	*	*	*	*	*	6236	0	0	
+
+L 110  4051	2172	*	*	3520	6286	*	7355	*	1078	4004	6153	6172	*	*	5563	*	5233	*	*	110
+       0	*	*	*	*	*	*	6236	0	0	
+
+E 111  4999	5947	3725	1957	6897	4792	*	*	3252	4998	3720	4885	5308	3738	3530	5048	5088	6487	*	3810	111
+       0	*	*	*	*	*	*	6236	0	0	
+
+L 112  2641	4736	*	*	4419	6172	*	3732	*	1435	3007	6538	*	6475	6298	5613	5938	3555	*	6002	112
+       0	*	*	*	*	*	*	6236	0	0	
+
+A 113  1090	5320	*	*	4254	5846	*	2900	*	3232	4599	*	5244	*	6172	5255	4276	4811	*	*	113
+       0	*	*	*	*	*	*	6236	0	0	
+
+G 114  *	*	*	6180	*	59	*	*	*	*	*	*	*	*	*	5244	*	*	*	*	114
+       0	*	*	*	*	*	*	6236	0	0	
+
+V 115  7018	*	*	*	3527	*	*	962	*	2528	5869	*	*	*	*	*	*	2716	*	4336	115
+       0	*	*	*	*	*	*	6236	0	0	
+
+T 116  *	*	3506	3973	6643	*	4272	*	1585	*	*	4398	*	3682	3320	3700	2828	*	*	6648	116
+       0	*	*	*	*	*	*	6236	0	0	
+
+D 117  6498	*	681	*	*	5042	4438	*	*	*	*	2161	*	*	*	5557	6180	6111	*	6002	117
+       0	*	*	*	*	*	*	6236	0	0	
+
+I 118  3683	2876	*	*	5451	6538	*	2446	*	2543	4520	*	*	*	*	6180	*	1632	*	5869	118
+       0	*	*	*	*	*	*	6236	0	0	
+
+L 119  5397	5869	*	5302	4419	4573	5564	4518	4440	3446	6973	5283	*	*	3875	2853	4002	4037	3359	2462	119
+       0	*	*	*	*	*	*	6236	0	0	
+
+T 120  1887	4123	*	*	4103	4188	*	3778	*	5960	*	*	6180	*	*	2962	2104	3619	*	6153	120
+       0	*	*	*	*	*	*	6236	0	0	
+
+K 121  6685	*	6373	6116	5862	*	*	*	822	5321	6378	6893	*	5528	2797	2987	4515	*	*	*	121
+       0	*	*	*	*	*	*	6236	0	0	
+
+E 122  3196	6178	*	5594	4804	*	*	2889	*	4049	*	6422	6180	4172	5608	2515	3062	2125	*	*	122
+       0	*	*	*	*	*	*	6236	0	0	
+
+L 123  *	*	*	3814	3986	5598	3886	3250	4494	3312	4062	5483	4788	5928	2531	4762	5299	4487	7004	3254	123
+       24	5947	*	1000	1000	*	*	6236	1053	0	
+
+G 124  4719	*	6485	*	*	297	*	*	5383	*	*	6523	*	*	3791	5062	*	*	*	*	124
+       127	3568	*	0	*	*	*	6236	1452	0	
+
+S 125  5190	4009	*	5955	5411	6147	6073	*	4889	*	*	6284	6476	5477	3497	921	3077	*	*	5238	125
+       32	5521	*	0	*	*	*	6211	1069	0	
+
+R 126  6513	*	4650	*	*	7217	5884	5855	3862	5381	5912	2935	5297	*	1648	3842	2084	6640	*	6955	126
+       438	1933	*	435	1941	*	*	6211	2509	0	
+
+N 127  6118	*	*	6113	*	*	4561	6147	4894	5950	*	901	*	*	*	3573	2027	*	*	*	127
+       54	4758	*	988	1012	*	*	6211	1174	0	
+
+P 128  4114	6170	*	6476	*	*	6155	5037	3386	2625	4607	*	1855	*	4050	4996	3942	4490	4108	4717	128
+       0	*	*	*	*	*	*	6211	0	0	
+
+I 129  5572	*	*	4327	4304	2861	4325	2902	6640	2371	3050	5467	6370	5763	6641	5196	5184	5141	*	3527	129
+       0	*	*	*	*	*	*	6211	0	0	
+
+N 130  5214	6435	6370	*	*	*	4392	6797	*	*	*	582	*	5489	6510	2866	5536	6479	*	5549	130
+       0	*	*	*	*	*	*	6211	0	0	
+
+I 131  6641	7138	*	*	2555	*	6927	3882	*	3200	4572	3845	6113	6170	4602	7398	3239	1675	*	5534	131
+       0	*	*	*	*	*	*	6211	0	0	
+
+A 132  1869	6881	*	*	5127	6537	*	2467	*	3781	*	*	*	*	6107	6956	3800	1597	*	*	132
+       0	*	*	*	*	*	*	6173	0	0	
+
+Y 133  6392	7111	*	5895	5773	*	4577	5864	1120	5436	5027	6451	5928	5303	2093	6107	*	*	*	3822	133
+       21	*	6106	*	*	*	*	6173	0	0	
+
+A 134  283	3894	*	*	*	4179	*	*	*	6462	*	6748	*	*	6088	6321	6972	*	*	*	134
+       0	*	*	*	*	*	0	6148	0	1022	
+
+T 135  3176	6184	*	*	2916	*	6088	4175	*	3616	6505	*	*	*	*	*	1192	2966	*	6087	135
+       0	*	*	*	*	*	0	6148	0	1022	
+
+M 136  6088	6462	*	*	1088	*	6627	3100	6206	2822	4087	*	*	5065	6321	*	5320	4786	6246	4441	136
+       0	*	*	*	*	0	*	6148	0	1022	
+
+E 137  4638	*	2371	2822	6467	4575	5902	4474	2534	5126	*	3089	*	4033	4380	5502	4912	6340	*	6106	137
+       0	*	*	*	*	*	*	6173	0	0	
+
+A 138  841	3781	*	*	*	2263	*	*	*	6566	4888	*	*	*	6107	5012	5528	4349	*	*	138
+       16	6468	*	4585	61	*	*	6173	1075	0	
+
+L 139  7000	*	*	*	4431	*	*	2885	*	503	*	*	*	*	*	5182	5932	4040	*	*	139
+       19	6262	*	3907	100	*	*	6173	1028	0	
+
+R 140  3803	6011	4232	4231	5848	4611	5394	*	3131	3240	4465	4882	4985	5184	3751	2563	4002	5027	6658	5674	140
+       22	6076	*	0	*	*	*	6173	1022	0	
+
+Q 141  4236	*	6256	4817	*	4458	6737	6420	2033	5622	5084	3026	*	2570	4748	2586	4549	*	*	*	141
+       0	*	*	*	*	*	*	6189	0	0	
+
+L 142  5019	*	*	6581	5647	6121	4795	2848	*	2299	4331	4938	*	2114	*	*	2524	5274	6025	5809	142
+       185	3053	*	1900	450	*	*	6148	1653	0	
+
+R 143  4593	5347	5837	2897	5940	*	6679	5323	3048	3244	4161	4470	5692	5057	2459	4390	4678	4455	*	4638	143
+       16	6476	*	0	*	*	*	6031	1000	0	
+
+T 144  *	5993	4135	6582	5521	6255	*	6487	5516	5861	6738	3639	5919	6590	5823	2027	1186	*	*	6297	144
+       0	*	*	*	*	*	*	5959	0	0	
+
+K 145  3721	*	5978	5130	6595	*	4018	3728	5303	5345	6575	*	1364	*	4041	6878	6542	3171	*	3439	145
+       0	*	*	*	*	*	*	5962	0	0	
+
+A 146  5229	*	2948	1604	*	5777	6035	6749	2802	6347	*	4442	*	3170	4263	3746	*	4944	*	*	146
+       27	*	5760	*	*	*	*	5957	0	0	
+
+D 147  5500	*	2305	2050	5794	*	5666	*	6749	3408	5681	*	*	2723	4219	4447	3517	6414	*	5432	147
+       0	*	*	0	*	0	*	5912	1028	1028	
+
+V 148  4937	*	5620	*	5616	6025	5769	1691	6222	2672	4262	*	*	*	*	*	6680	2264	2915	6614	148
+       0	*	*	*	*	*	*	5947	0	0	
+
+E 149  836	4224	*	5615	5577	6005	*	5781	4125	4406	6756	6609	6417	6530	4521	3920	5070	5300	*	*	149
+       0	*	*	*	*	*	*	5936	0	0	
+
+R 150  3239	*	3103	2566	*	4262	*	4933	2949	3745	*	3047	*	4861	3432	5557	4304	*	*	*	150
+       47	*	4968	*	*	*	*	5901	0	0	
+
+L 151  3194	*	*	3339	*	3972	*	3309	2253	3586	3675	5979	*	*	3062	4656	4332	5015	*	*	151
+       0	*	*	*	*	1439	664	5781	0	1114	
+
+R 152  *	*	*	5458	5338	*	5052	*	2877	4199	5377	6391	*	4918	940	4791	3472	6046	*	*	152
+       34	5414	*	0	*	*	0	5772	1025	1049	
+
+K 153  *	5504	5412	*	*	541	*	*	3953	*	*	4935	6176	4923	4267	5338	6484	6268	*	5499	153
+       79	4235	*	3000	193	0	*	5668	1072	1049	
+
+G 154  5120	*	*	3685	*	4112	*	4851	1109	3498	4722	*	*	4613	3848	*	4849	5150	*	4719	154
+       0	*	*	*	*	*	*	5283	0	0	
+
+E 155  *	*	*	3877	*	*	3646	*	1226	*	*	*	*	*	2258	3884	4042	3523	*	*	155
+       0	*	*	*	*	*	*	4577	0	0	
+
+A 156  2062	*	*	*	2720	*	3163	3123	*	3146	*	*	2774	*	*	*	*	3021	*	*	156
+       0	*	*	*	*	*	*	3662	0	0	
+
+H 157  *	*	3163	3146	*	*	1981	1816	*	*	*	*	*	*	*	*	*	*	*	2071	157
+       0	*	*	*	*	*	*	3662	0	0	
+
+A 158  2605	*	2594	*	*	*	*	*	*	*	*	*	*	*	1768	2396	*	2425	*	*	158
+       0	*	*	*	*	*	*	3336	0	0	
+
+Q 159  1000	*	*	*	*	*	*	*	*	*	*	*	*	1000	*	*	*	*	*	*	159
+       0	*	*	*	*	*	*	1604	0	0	
+
+A 160  1000	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1000	*	*	*	*	160
+       0	*	*	*	*	*	*	1604	0	0	
+
+Q 161  *	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	161
+       0	*	*	*	*	*	*	1604	0	0	
+
+G 162  *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	162
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  10cfcdaad4a10e98aec756d8a15574d9
+FAM   
+FILE  10cfcdaad4a10e98aec756d8a15574d9
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 11:56:34 2013
+LENG  154 match states, 154 columns in multiple alignment
+FILT  103 out of 156 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  5.3 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCEEEEEEECCCCEEEEECCEEEEECCCCCCCCCCEEEEEEECCCCCCCCCEEEEEECCCCEEEEECCCCEEEEEEEECCHHHCCCCCCCCCEEEEE
+EECCCCCEEEEECCCCCCEEECCCCCCEEEEEECCCCCCCCCCCEEEEEEECCC
+>ss_conf PSIPRED confidence values
+9887648889961058899999999951378887554479999877887557988999974997899982499959999855735624377822006999
+963799389997116995797477799078977168987677525779976079
+>Consensus
+xxxxxxxxxixDxxqkxlvLxxxxllAxxxxxxxxxxxxxxxxxxxxxxxxxxxPVxLgIxxxnlxLsCxxgxxPxLqLeexxxxxLxxxxxxxxrFlFy
+kxxxGxtxtFESaaxPgWFIsTsxxxxxPVxLtxxxxxxxxxxxxtxFxxxxxx
+>10cfcdaad4a10e98aec756d8a15574d9
+VLSGALCFRMKDSALKVLYLHNNQLLAGGLHAEKVIKGEEISVVPNRALDASLSPVILGVQGGSQCLSCGTEKGPILKLEPVNIMELYLGAKESKSFTFY
+RRDMGLTSSFESAAYPGWFLCTSPEADQPVRLTQIPEDPAWDAPITDFYFQQCD
+>gi|291386333|ref|XP_002709615.1| PREDICTED: interleukin 1 family, member 6-like [Oryctolagus cuniculus]
+-----VLRHIQDLNHQVWVVQDQTLTA-VPRKHSMVP-ATVSLIPCQYPetlETeKGIPMYLGLDKPDVCLFCtKTREQPMLQLEDKNIMTLYHHPEPVK
+PFLFYHSKSGRTSTFESVAFPGWFIAVCSEGGCPLFLTQ-DLGK---AYTTDFELTP--
+>gi|194220472|ref|XP_001496063.2| PREDICTED: interleukin-1 family member 7-like isoform 1 [Equus caballus]
+-----EKFSIYDQDHKVLVLDCGILRAV-PDRP-YILPETFFVLASHlssACEEKGSPILLAVSKGELCLCCekDKGQsKPSLQLKKKKLTDLATEKEQA
+RQpFIFYRAEVGSKNTLESVTHPGWFICTSCNSGEPVGMTDILG----KREHTEFSFRR--
+>gi|262342547|gb|ACY54774.1| interleukin-1 beta [Hippoglossus hippoglossus]gi|262342549|gb|ACY54775.1| interleukin-1 beta [Hippoglossus hippoglossus]
+------PCNISDSQKRNFLLVQNSMelhavmLQGGSDNRKVL--LNMSTYVHPSPTIEARPVALCIKDTDLYLSChHEDGVPTLHLEPVeDKTSLKTitR
+ESEMVRFLFYKRDSGVnISTLMSARFPDWYISTSEYENRPVMMCQ-ESA----QSYQTFNIQ---
+>gi|52346210|ref|NP_001005149.1| interleukin-1 beta [Sus scrofa]gi|407900|emb|CAA52660.1| interleukin 1-beta [Sus scrofa]
+---QSVDCKLQDKDEKALVLAGpHELKALHLLKGDLKREVVFCMsfVQGD-DSDDKIPVTLGIKGKNLYLSCvMKDDTPTLQLEDVDPKS-YPKRDMEKR
+FVFYKTEIKNRVEFESALYPNWYISTSQAEQKPVFLGNSKGR----QDITDFTME---
+>gi|10241835|emb|CAC09435.1| interleukin-1 beta [Scyliorhinus canicula]gi|38145475|emb|CAC80866.1| interleukin-1-beta [Scyliorhinus canicula]
+---------MTDDQDRSLILSeNLQLLAMSLQQSKDAVQLDVRYYKTTPTTEDDLPVVMAISNQNLFLSCvGTQDSPRVQLEKWDRKLQNIsSTTDLLRF
+VFFKkvSSSGLHFELESAMYRGWYVSTSRRNRQPIELDE--KKNH--KRITIF------
+>gi|225706200|gb|ACO08946.1| Interleukin-1 beta precursor [Osmerus mordax]
+--------SLFDCNQKMLVRKDSQALQLqATHLKENMDYKKVTFklVkyVNP-QARGRDAVILWIAGSSKILSCtrpHDSNTPILKLEKENCEQLKSieA
+MGEMARFLFYRRTVDvYDTIFESVKFPGWLIRSSLSEHKPVEMCE--------------------
+>gi|183223721|emb|CAP69657.1| interleukin 1 beta [Labeo rohita]
+----TLQCTICHKYKKSLVLSDelNtqdlHLKAVTLTGGNMNLKVRISMsaYYTSTPQNIGQPVCLGISNSNLYLACtKSDDSslPKLLLKEVSgPLNII
+NvgDSDEYDSLLFFRKETGTaYNTFESVKHPGWFISTAFEDTERVEMEKTPTD-----RPSNFTLED--
+>gi|58010|emb|CAA39086.1| interleukin-1 alpha [synthetic construct]gi|208534|gb|AAA72919.1| interleukin 1-alpha [synthetic construct]gi|208633|gb|AAA72560.1| interleukin 1-alpha [synthetic construct]gi|738207|prf||1924310A interleukin 1alpha
+-----YEFILNDALNQSIIRANDQYLtAAALHN--LDEAVKFDMGAYKsSKDDAKITVILRISKTQLYVTAQDEDQPVLLKEMPEIPKTITG--SETNLL
+FFWETHGTKNYFTSVAHPNLFIATKQDYW--VCLAG---GP---PSITDFQIL---
+>gi|197927464|ref|NP_001117868.2| interleukin-1 receptor antagonist [Oncorhynchus mykiss]gi|197631658|emb|CAD88595.2| interleukin-1 receptor antagonist [Oncorhynchus mykiss]
+-----------------------------------TP-EKITIYHYKsdCVdgEFRGVPVVLNFTSSNCFLKCvKDGERVSLCVGTCDQHRLKSirkDDE
+EIQAFVFYMKAEMSkQRRFESAYCQGWFIHTSNE--TKVVLGK-PQG----------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+V 1    *	*	*	*	*	*	*	*	*	*	*	*	2555	*	*	1372	*	1173	*	*	1
+       0	*	*	*	*	*	*	2228	0	0	
+
+L 2    *	*	*	*	*	*	*	*	*	269	*	*	*	*	*	2555	*	*	*	*	2
+       0	*	*	*	*	*	*	2228	0	0	
+
+S 3    3177	2536	*	*	*	3956	*	*	*	*	*	*	1879	*	*	1393	*	*	*	*	3
+       0	*	*	*	*	*	*	2513	0	0	
+
+G 4    *	*	*	5378	*	2910	5717	*	2294	4024	3652	4217	4883	3595	2408	3058	*	*	*	*	4
+       33	5466	*	2000	415	*	*	3928	1028	0	
+
+A 5    1936	4991	*	*	*	*	*	*	*	*	2882	*	4366	*	4126	1480	3390	6402	*	*	5
+       0	*	*	*	*	*	*	4093	0	0	
+
+L 6    *	*	4800	4831	5233	5953	4403	4609	4412	2869	5574	*	4747	2033	2842	4894	5528	3836	5987	5009	6
+       0	*	*	*	*	*	*	4963	0	0	
+
+C 7    4150	4384	3507	3625	6248	*	5969	6563	3851	3492	*	3268	4830	2878	6601	4231	3952	4874	*	3447	7
+       0	*	*	*	*	*	*	5259	0	0	
+
+F 8    *	1582	*	*	2159	3949	4723	6906	5736	6568	*	*	*	6773	4334	*	*	5663	*	2164	8
+       0	*	*	*	*	*	*	5455	0	0	
+
+R 9    4714	*	6027	5810	*	6974	4487	3660	3797	*	6330	4718	*	4309	2567	2287	2212	4838	*	*	9
+       25	*	5863	*	*	*	*	5480	0	0	
+
+M 10   *	*	*	*	5538	*	*	1204	*	2254	3539	*	*	*	*	*	*	2008	*	*	10
+       0	*	*	*	*	*	0	5483	0	1038	
+
+K 11   5748	2911	*	5946	4754	*	4042	*	2989	*	5723	3436	*	3055	3068	4370	3595	*	3205	5798	11
+       0	*	*	*	*	0	*	5483	0	1038	
+
+D 12   *	*	63	*	*	*	6256	*	5926	*	*	6239	*	*	*	*	*	*	*	*	12
+       0	*	*	*	*	*	*	5510	0	0	
+
+S 13   2836	5481	4891	5297	*	5681	6388	2930	3819	3284	6272	5780	6435	4173	7315	2628	3322	3716	*	*	13
+       0	*	*	*	*	*	*	5510	0	0	
+
+A 14   4271	*	3152	2495	6472	*	6261	*	6903	3442	*	2708	*	3538	3642	2884	*	6577	*	3869	14
+       0	*	*	*	*	*	*	5510	0	0	
+
+L 15   *	*	4380	6133	*	6164	3243	*	2473	5658	5869	3198	5926	1146	*	5387	*	*	*	*	15
+       0	*	*	*	*	*	*	5510	0	0	
+
+K 16   *	*	*	*	*	*	6261	*	869	6588	4201	*	5926	2506	2457	*	*	*	*	*	16
+       56	*	4707	*	*	*	*	5510	0	0	
+
+V 17   4228	3685	*	*	4615	5571	4925	5960	*	*	5465	5929	5105	*	7185	1757	3610	2007	*	4148	17
+       0	*	*	*	*	0	*	5492	0	1145	
+
+L 18   5926	*	*	*	2942	*	*	4289	*	895	5104	*	*	*	*	*	*	4099	2497	*	18
+       0	*	*	*	*	*	*	5510	0	0	
+
+Y 19   5670	5609	*	*	4044	*	5926	3201	*	6918	5302	*	*	*	*	6042	4926	958	4707	2845	19
+       0	*	*	*	*	*	*	5510	0	0	
+
+L 20   *	*	*	*	6652	*	*	4887	6472	559	5336	*	*	4086	3220	*	*	3732	*	*	20
+       45	5463	7002	1585	585	*	*	5510	1070	0	
+
+H 21   5326	*	3414	5229	*	*	4801	*	3968	4524	6221	5828	5907	2861	3043	2315	5660	2567	*	6037	21
+       205	3608	4310	0	*	384	2097	5497	1469	1109	
+
+N 22   *	6595	2522	3954	*	2710	*	*	5504	*	*	1912	4784	3262	5297	2791	*	*	*	*	22
+       392	2070	*	714	1358	0	*	5570	2070	1248	
+
+N 23   6282	4399	3300	4982	*	2453	7246	*	3932	4880	*	1764	*	4055	6249	3680	6085	6196	*	4516	23
+       36	5340	*	1611	572	*	0	5494	1075	1014	
+
+Q 24   5490	*	6755	3508	*	*	5182	4777	6263	5911	5568	4106	4372	1647	4963	2613	2924	6265	*	*	24
+       0	*	*	*	*	0	*	5494	0	1014	
+
+L 25   5481	7204	*	*	*	*	6245	3971	*	725	3055	*	5397	*	*	6736	5391	4810	*	3722	25
+       216	2847	*	2534	273	*	*	5510	1650	0	
+
+L 26   *	*	*	5119	*	6388	4877	3099	4067	1102	6435	*	*	5242	4176	*	4532	2772	*	*	26
+       253	2638	*	607	1542	*	*	5510	1731	0	
+
+A 27   600	*	*	*	*	5335	*	5486	*	*	*	6218	5926	2920	*	5524	4231	4159	*	*	27
+       179	*	3098	*	*	*	*	5510	0	0	
+
+G 28   2433	*	*	*	6034	1906	*	6261	4995	2743	4491	5883	5843	*	*	6480	4083	2397	*	*	28
+       290	2912	4346	1384	697	0	*	5486	1631	1556	
+
+G 29   3369	*	4228	6530	5129	2558	3168	*	5763	*	4869	5969	3980	4642	6240	4290	3186	2570	6087	*	29
+       0	*	*	*	*	0	*	5473	0	1164	
+
+L 30   5943	*	7457	5084	*	*	*	5998	5083	1398	*	7204	1759	6254	6004	3260	4294	4733	*	*	30
+       0	*	*	*	*	*	*	5510	0	0	
+
+H 31   6782	*	3169	6866	5699	4387	4281	5865	5335	4355	5086	2095	5323	2796	2906	4004	5209	7232	*	*	31
+       0	*	*	*	*	*	*	5510	0	0	
+
+A 32   3295	5810	4119	5586	*	2505	5245	*	3498	5027	7044	2991	6125	4473	5314	2417	4928	4900	*	6845	32
+       39	*	5220	*	*	*	*	5510	0	0	
+
+E 33   4995	5900	4179	3251	*	2738	3946	*	4287	3588	*	2663	4101	4180	4060	4569	4121	*	*	6424	33
+       354	*	2200	*	*	608	1539	5473	0	1108	
+
+K 34   4818	*	4784	4778	5997	6362	*	*	2205	*	*	1673	5936	2838	5888	3705	3847	*	*	6122	34
+       94	5696	4512	722	1345	1894	452	5154	1060	2109	
+
+V 35   3977	5960	4593	4973	*	5090	*	3139	4503	4180	3822	4369	*	*	*	4096	3932	1690	*	4263	35
+       20	6185	*	1585	585	148	3356	5258	1006	1971	
+
+I 36   4414	4490	3743	5212	5943	5189	5967	3343	3749	4107	4841	3165	6002	3602	6536	3459	3680	3570	*	6956	36
+       350	*	2216	*	*	*	0	5544	0	1048	
+
+K 37   3979	*	3619	3190	*	*	6544	*	5116	3327	*	*	1688	2948	3192	6432	*	4458	*	*	37
+       998	*	1002	*	*	3536	130	5308	0	2099	
+
+G 38   2618	*	4715	2060	*	3370	*	*	4652	4582	*	*	3489	2078	*	*	*	*	*	4184	38
+       0	*	*	*	*	0	*	4721	0	3817	
+
+E 39   4751	6696	6553	1875	4621	*	5368	*	5526	2502	*	6239	*	*	6609	5504	6212	1604	*	5721	39
+       0	*	*	*	*	*	*	5579	0	0	
+
+E 40   *	*	4930	4252	6028	*	*	3551	1619	6310	*	3145	5632	6696	4946	4240	2723	3378	*	*	40
+       0	*	*	*	*	*	*	5579	0	0	
+
+I 41   6239	*	*	*	2067	*	*	2020	*	3086	2760	*	*	*	*	*	6859	2135	*	*	41
+       0	*	*	*	*	*	*	5579	0	0	
+
+S 42   4026	3859	2799	5135	4668	*	5960	6070	5492	5265	*	6627	*	4686	4144	1629	2956	*	6239	6940	42
+       152	3618	5729	2322	322	*	*	5579	1364	0	
+
+V 43   6419	*	*	*	4624	*	*	3126	*	2949	2131	*	*	*	*	*	3029	2021	*	3232	43
+       272	2541	*	1000	1000	0	*	5626	1810	1064	
+
+V 44   4469	6143	*	*	4353	4794	*	3266	6070	2430	4971	*	*	*	*	*	6239	1893	*	2077	44
+       65	4512	*	1594	581	*	*	5579	1160	0	
+
+P 45   2885	*	5355	*	*	*	4287	4643	4930	3409	6370	6609	1552	4095	*	3865	5589	3509	*	5447	45
+       128	4464	4657	0	*	*	*	5579	1208	0	
+
+N 46   6827	2532	6972	4660	*	3241	4132	4290	6592	*	*	2252	6572	5693	6103	2930	4343	6170	*	3353	46
+       44	5057	*	715	1356	0	*	5552	1313	1152	
+
+R 47   4756	5504	4645	3198	*	4551	6742	*	3503	6889	5981	*	2811	4454	2097	3650	2989	*	*	*	47
+       615	3974	1819	1228	803	*	0	5566	1291	1070	
+
+A 48   2505	4659	2737	5504	*	4587	4287	*	*	5548	*	5805	3954	5041	*	2365	3798	6316	*	3228	48
+       47	4964	*	468	1851	617	1523	5302	1057	2527	
+
+L 49   5191	6653	5619	3330	5068	4994	*	4967	5669	2311	6819	6260	2255	5454	7134	3292	3807	3597	*	6505	49
+       277	2517	*	1369	706	2233	345	5559	1833	1529	
+
+D 50   4507	*	1977	1927	*	4580	*	7799	5094	6315	*	3937	4466	4578	5895	2705	5143	*	*	*	50
+       101	3887	*	1730	518	*	0	5573	1296	1407	
+
+A 51   3575	*	2944	3240	5615	4820	*	4966	3798	6581	*	2915	4476	4572	3681	3221	3507	5847	*	*	51
+       207	2901	*	135	3489	*	0	5573	1636	1407	
+
+S 52   4410	*	3535	3089	*	3522	*	6160	2041	*	*	3641	5798	4378	3289	2963	5138	*	*	*	52
+       34	5434	*	1542	607	199	2957	5563	1070	1474	
+
+L 53   2851	*	6155	*	*	1600	*	6000	2112	4817	6022	5772	4352	4380	4239	5260	7845	5564	*	*	53
+       49	4900	*	735	1325	0	*	5617	1129	1013	
+
+S 54   *	5661	3581	6630	5410	*	5454	2954	4538	3619	5626	2995	*	2986	3383	3790	4243	3635	*	6221	54
+       41	5174	*	1335	728	*	*	5629	1089	0	
+
+P 55   3998	*	*	*	*	*	5288	6630	*	5244	6815	*	463	*	*	4273	3486	*	*	*	55
+       0	*	*	*	*	*	*	5629	0	0	
+
+V 56   *	*	*	*	*	*	6902	2098	*	3946	4657	*	*	*	*	*	6356	641	*	*	56
+       0	*	*	*	*	*	*	5629	0	0	
+
+I 57   2225	3734	*	*	3119	*	*	3187	*	4340	*	*	*	*	*	*	3123	3250	*	2205	57
+       0	*	*	*	*	*	*	5629	0	0	
+
+L 58   *	*	*	*	*	*	*	4778	*	218	3569	*	*	*	*	*	*	5661	*	*	58
+       0	*	*	*	*	*	*	5629	0	0	
+
+G 59   4017	3531	*	6547	*	629	*	*	6221	*	*	4527	*	*	4050	4151	*	*	5564	*	59
+       0	*	*	*	*	*	*	5629	0	0	
+
+V 60   *	*	*	*	4293	*	*	621	*	2988	*	*	6041	*	*	*	6318	2783	*	*	60
+       18	6343	*	1000	1000	*	*	5629	1005	0	
+
+Q 61   4934	*	6872	3761	*	*	4600	*	1715	6280	*	5026	*	2941	3528	2193	4820	5347	*	*	61
+       0	*	*	*	*	*	*	5629	0	0	
+
+G 62   6638	*	2912	3616	*	1358	*	*	2696	*	*	2906	*	5475	6356	3988	*	*	*	*	62
+       0	*	*	*	*	*	*	5629	0	0	
+
+G 63   *	*	*	*	*	2106	*	*	2753	7107	*	4291	3186	4668	4424	2939	2177	*	*	6191	63
+       0	*	*	*	*	*	*	5629	0	0	
+
+S 64   *	*	3522	3229	*	6366	5667	*	3520	*	6356	1129	6014	3458	5064	3919	6004	*	*	*	64
+       14	6702	*	1585	585	*	*	5629	1001	0	
+
+Q 65   *	5715	*	*	4423	*	5418	*	3955	753	3962	5933	*	5352	3621	5515	*	6090	*	5060	65
+       0	*	*	*	*	*	*	5629	0	0	
+
+C 66   4971	1509	*	*	2804	6893	*	5564	*	*	*	*	*	*	*	4244	*	6091	*	1409	66
+       0	*	*	*	*	*	*	5629	0	0	
+
+L 67   *	*	*	*	4511	*	*	6842	*	218	6191	*	*	*	*	*	*	3761	*	*	67
+       0	*	*	*	*	*	*	5629	0	0	
+
+S 68   3013	2853	*	6139	3511	*	*	*	5715	*	7107	*	*	*	*	851	5515	*	*	4915	68
+       0	*	*	*	*	*	*	5629	0	0	
+
+C 69   3761	135	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	6004	*	*	69
+       2965	198	*	135	3483	*	*	5629	4870	0	
+
+G 70   5387	*	3837	2787	*	3334	5103	*	1533	5311	3637	6605	6736	3128	6895	*	5007	6922	*	*	70
+       16	6547	*	0	*	*	*	5629	1001	0	
+
+T 71   5576	*	2700	4438	*	5511	6139	3929	2656	6660	6874	4079	4973	*	5288	2392	2908	4065	*	*	71
+       19	*	6274	*	*	*	*	5629	0	0	
+
+E 72   4227	*	3196	2508	*	988	*	*	7153	*	*	4779	*	3877	6851	5537	5991	*	*	*	72
+       53	4793	*	779	1260	*	0	5614	1136	1013	
+
+K 73   4532	*	1850	2639	*	1557	6590	*	6793	*	*	5045	5149	4800	*	4546	5489	*	*	*	73
+       53	4801	*	0	*	*	0	5614	1156	1013	
+
+G 74   5926	*	6702	2444	*	4617	5594	*	2441	*	6144	6400	*	1852	3826	3587	3970	6002	*	6883	74
+       61	4601	*	404	2033	*	0	5614	1158	1013	
+
+P 75   5171	*	5927	*	*	*	*	6624	*	*	*	*	181	*	*	*	5443	4625	*	*	75
+       35	5401	*	808	1222	0	*	5615	1091	1013	
+
+I 76   5634	*	*	5648	6267	*	5624	3235	4878	6557	6869	*	*	4009	3562	3502	1412	2677	*	*	76
+       0	*	*	*	*	*	*	5629	0	0	
+
+L 77   *	*	*	*	6643	*	*	6088	*	63	*	*	*	*	*	*	*	5787	*	*	77
+       0	*	*	*	*	*	*	5629	0	0	
+
+K 78   *	5716	*	6730	*	6267	2521	5602	3950	3149	*	*	*	974	*	5113	5932	5624	*	6422	78
+       0	*	*	*	*	*	*	5629	0	0	
+
+L 79   *	*	*	*	*	*	*	4219	3757	342	*	*	*	*	*	6522	*	3789	*	*	79
+       14	*	6697	*	*	*	*	5629	0	0	
+
+E 80   *	*	*	754	*	4994	*	*	1908	*	6078	*	*	5824	6687	5023	6026	5597	*	*	80
+       24	*	5929	*	*	0	*	5627	0	1001	
+
+P 81   3206	*	3701	1254	*	*	5970	*	3021	5264	3842	7144	5861	5252	*	4850	3874	7157	*	*	81
+       0	*	*	*	*	0	*	5583	0	1054	
+
+V 82   4686	5716	*	3635	*	5511	*	4264	2704	4612	*	*	3757	4530	4844	*	*	1348	4965	5932	82
+       175	3132	*	0	*	*	*	5629	1577	0	
+
+N 83   6048	*	1619	2847	*	5298	*	*	2838	*	*	2153	5739	*	*	3625	5590	6697	*	*	83
+       182	3433	5281	0	*	*	*	5629	1431	0	
+
+I 84   *	5529	5446	*	*	7180	6348	1379	2910	3757	*	5072	3259	5691	4942	5457	3303	4854	*	*	84
+       28	*	5698	*	*	*	0	5592	0	1081	
+
+M 85   5045	*	4756	3451	*	*	5687	6345	2784	3206	2044	3888	3709	6208	*	4538	3608	6607	5595	*	85
+       27	5761	*	0	*	908	1098	5579	1042	1201	
+
+E 86   7135	*	1608	3498	*	*	*	*	3276	6141	6387	3430	*	3634	3594	2850	5072	5480	*	*	86
+       202	*	2939	*	*	*	0	5598	0	1064	
+
+L 87   *	*	*	*	*	*	*	4928	*	384	4962	5612	*	4794	*	*	3157	*	*	*	87
+       0	*	*	*	*	233	2745	5501	0	1729	
+
+Y 88   3942	*	4083	*	4430	*	6456	2662	3416	4141	*	5182	6321	5366	*	4093	*	7088	*	1397	88
+       12	6940	*	0	*	*	0	5598	1000	1064	
+
+L 89   5543	*	6952	5525	*	7357	3631	5171	2302	5690	5991	2630	3403	4125	4082	2876	3724	6385	*	*	89
+       467	2339	3667	1027	974	*	0	5598	1972	1064	
+
+G 90   3126	*	4013	3755	*	3477	4429	4163	3136	5390	6390	3192	5783	3678	4649	2911	5089	*	*	*	90
+       61	*	4589	*	*	*	0	5485	0	1493	
+
+A 91   4457	*	3893	4572	*	2060	*	5907	2211	*	5318	4025	3562	5352	4185	4178	4578	5327	*	*	91
+       11	7091	*	0	*	1944	434	5348	1000	1613	
+
+K 92   *	*	2504	1870	*	4734	*	*	2295	*	*	3786	6630	4354	6622	2868	6040	6059	*	*	92
+       10	7108	*	1000	1000	392	2072	5391	1000	1444	
+
+E 93   3566	*	2163	2557	*	4290	*	6631	4229	*	3878	5388	2738	3749	5452	4803	5915	5930	*	*	93
+       48	4946	*	0	*	*	0	5598	1135	1064	
+
+S 94   3209	*	3851	2468	6077	*	6472	5700	4851	3577	2920	4314	*	4234	*	3226	6227	3193	*	6265	94
+       106	3818	*	1792	492	0	*	5598	1432	1064	
+
+K 95   5029	*	4001	4437	*	*	6228	*	1402	4193	6256	4951	*	5716	4501	6003	2968	2882	5932	6603	95
+       0	*	*	*	*	*	*	5632	0	0	
+
+S 96   4113	5721	4580	*	*	*	*	*	*	6603	*	4443	2577	4859	1020	2941	*	*	*	*	96
+       57	4687	*	0	*	*	*	5632	1174	0	
+
+F 97   *	*	*	*	335	*	*	6003	*	2861	*	*	*	*	*	5510	*	*	*	4959	97
+       0	*	*	*	*	*	*	5632	0	0	
+
+T 98   5134	*	*	*	*	*	*	3102	*	1126	*	*	*	*	6567	6256	2470	2376	*	*	98
+       0	*	*	*	*	*	*	5632	0	0	
+
+F 99   *	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	99
+       0	*	*	*	*	*	*	5632	0	0	
+
+Y 100  *	*	*	*	2141	*	6866	3993	*	4012	6419	3328	*	*	*	*	*	*	*	920	100
+       0	*	*	*	*	*	*	5632	0	0	
+
+R 101  *	6985	*	*	*	*	2964	*	1545	6362	5716	6087	*	4491	1664	5184	6228	*	3748	*	101
+       20	6161	*	1000	1000	*	*	5632	1020	0	
+
+R 102  4396	*	7164	4374	*	6870	4300	4803	2517	4847	5648	3440	*	3713	3842	2220	3475	6125	6001	*	102
+       0	*	*	*	*	*	*	5632	0	0	
+
+D 103  4999	5932	2502	2316	5659	6267	7114	5172	3228	6729	*	5088	5156	3446	4832	3819	3325	4790	*	*	103
+       0	*	*	*	*	*	*	5632	0	0	
+
+M 104  6001	6274	4583	3402	7046	4789	4464	3148	*	6316	6801	4113	7114	5201	*	2195	2090	3915	*	*	104
+       86	4680	5729	759	1290	*	*	5632	1146	0	
+
+G 105  5697	*	4477	5213	*	410	*	*	3878	*	5700	4249	5915	*	*	*	*	*	*	*	105
+       49	4899	*	1125	885	*	0	5598	1119	1064	
+
+L 106  4723	*	3996	*	*	4065	6097	5983	6765	3608	*	3642	4613	*	4063	1805	2798	3544	*	5536	106
+       628	1502	*	291	2454	0	*	5598	2787	1064	
+
+T 107  4512	*	5163	*	5932	*	4959	3425	3112	4697	5325	4201	*	5716	5443	5927	1206	6963	6516	4569	107
+       10	7223	*	0	*	*	*	5632	1000	0	
+
+S 108  6362	4093	6349	*	3497	*	5491	*	*	5838	*	2610	*	4355	5716	1577	3153	3190	*	*	108
+       0	*	*	*	*	*	*	5632	0	0	
+
+S 109  6479	*	*	2863	*	*	4942	5556	*	*	6515	6249	*	6555	3106	2734	1316	4934	*	4013	109
+       0	*	*	*	*	*	*	5629	0	0	
+
+F 110  *	*	*	*	551	*	*	*	*	1718	*	*	*	*	*	*	*	*	*	6226	110
+       0	*	*	*	*	*	*	5629	0	0	
+
+E 111  *	*	*	469	*	*	*	*	4322	*	4691	*	*	3950	5206	*	4984	3929	*	*	111
+       0	*	*	*	*	*	*	5629	0	0	
+
+S 112  5294	*	*	*	*	5656	*	*	*	*	*	*	*	*	*	67	*	*	*	*	112
+       0	*	*	*	*	*	*	5629	0	0	
+
+A 113  927	*	*	6658	6479	*	*	*	*	6415	*	*	*	*	5656	5566	*	1321	*	*	113
+       0	*	*	*	*	*	*	5629	0	0	
+
+A 114  1088	*	6263	4480	*	7221	6961	*	3200	3966	4195	*	4485	4354	4827	4547	5088	6728	*	5716	114
+       0	*	*	*	*	*	*	5629	0	0	
+
+Y 115  6240	3609	*	*	1429	*	2402	*	*	*	*	5985	*	7005	6270	*	*	5653	5433	1918	115
+       0	*	*	*	*	*	*	5603	0	0	
+
+P 116  *	*	*	*	*	*	*	*	*	*	*	6624	306	5702	3326	4016	*	*	*	*	116
+       0	*	*	*	*	*	*	5603	0	0	
+
+G 117  *	*	3214	6210	*	631	*	*	4854	*	*	2452	*	5985	*	*	*	*	*	*	117
+       0	*	*	*	*	*	*	5603	0	0	
+
+W 118  5653	6355	*	*	*	5781	*	*	*	3737	*	*	*	*	*	6743	*	*	231	6240	118
+       0	*	*	*	*	*	*	5603	0	0	
+
+F 119  *	*	*	*	509	*	*	*	*	4885	*	*	*	*	*	*	*	*	*	1925	119
+       0	*	*	*	*	*	*	5603	0	0	
+
+L 120  *	*	*	*	6289	*	*	434	*	2422	*	*	*	*	*	5781	*	4562	*	*	120
+       0	*	*	*	*	*	*	5603	0	0	
+
+C 121  2044	2129	*	6564	6099	7147	5702	*	*	*	*	*	*	*	5540	1213	5340	*	*	*	121
+       11	*	7107	*	*	*	*	5603	0	0	
+
+T 122  5158	*	*	*	*	6311	*	*	*	*	*	*	5806	*	*	3171	336	4714	*	*	122
+       0	*	*	*	*	0	*	5662	0	1000	
+
+S 123  2020	4411	7241	*	5751	*	*	5933	3673	*	*	*	3959	6842	6352	1018	7098	*	*	*	123
+       37	6917	5883	0	*	*	*	5676	1000	0	
+
+P 124  5449	5042	6798	3450	4442	5354	*	*	3809	3746	5011	4840	3034	2682	5057	2777	3845	5073	*	6541	124
+       44	*	5042	*	*	0	*	5650	0	1027	
+
+E 125  4068	7085	3190	1497	*	4332	5330	4541	4119	6605	5395	4273	*	3359	6180	5570	4448	6978	*	5482	125
+       254	5001	2942	591	1572	0	*	5642	1162	1098	
+
+A 126  3045	6323	2415	2482	*	3549	*	*	4900	*	*	3273	2949	5009	5235	4313	6441	*	*	5130	126
+       0	*	*	*	*	2086	387	5460	0	1602	
+
+D 127  5584	*	2424	3515	*	2918	4987	5961	4631	*	*	2222	*	4183	3433	5433	6029	*	3687	7170	127
+       94	6752	4224	1000	1000	0	*	5466	1000	1451	
+
+Q 128  5917	4451	*	2521	*	6162	4834	*	1894	6344	4671	7178	*	1897	3829	5117	5697	*	*	*	128
+       30	5604	*	494	1785	536	1688	5611	1055	1126	
+
+P 129  *	*	*	6587	*	*	*	*	4321	3872	5649	5928	370	*	4719	*	5424	*	*	*	129
+       0	*	*	*	*	0	*	5608	0	1000	
+
+V 130  *	*	*	*	*	*	*	2522	*	3725	5998	*	*	*	*	*	*	445	*	*	130
+       0	*	*	*	*	*	*	5619	0	0	
+
+R 131  6168	6456	4884	2392	2455	2753	3917	3866	5297	*	6894	5499	*	4414	6442	4059	3938	5118	*	5936	131
+       0	*	*	*	*	*	*	5619	0	0	
+
+L 132  *	*	*	*	*	*	*	4861	*	683	1646	*	*	*	*	*	*	5413	*	*	132
+       0	*	*	*	*	*	*	5619	0	0	
+
+T 133  3725	2553	5075	6165	*	2746	*	*	*	*	*	6609	*	*	*	3215	1257	6301	*	6320	133
+       0	*	*	*	*	*	*	5582	0	0	
+
+Q 134  6608	*	4559	4897	*	6508	5044	*	2679	3953	*	2323	6343	2501	2780	3830	6994	5694	*	5650	134
+       903	*	1103	*	*	*	*	5582	0	0	
+
+I 135  *	*	*	3747	6228	*	4904	3371	2307	*	4168	3299	*	2911	3743	3837	2992	5678	*	*	135
+       64	*	4517	*	*	329	2293	4717	0	2980	
+
+P 136  *	*	4969	1631	6048	4060	5270	*	4081	4199	*	6606	2488	4686	3002	4413	4981	*	*	*	136
+       34	5411	*	0	*	430	1957	5180	1052	1529	
+
+E 137  3867	*	4710	4021	*	1855	*	*	3713	3656	*	4652	5248	4766	3700	2878	3576	*	*	*	137
+       144	6755	3548	2322	322	1440	663	5435	1000	1097	
+
+D 138  3861	*	2828	2909	*	1494	*	*	4912	4371	*	6300	5982	4000	5660	3986	4416	*	*	*	138
+       1184	*	837	*	*	*	0	5319	0	1418	
+
+P 139  4254	*	3748	4120	*	3191	*	4559	2323	4312	*	3926	2527	*	*	3132	4056	*	*	*	139
+       2163	*	364	*	*	*	0	4253	0	3358	
+
+A 140  2623	*	2190	*	*	*	1229	*	*	*	*	*	*	*	*	2380	*	*	*	*	140
+       1083	*	922	*	*	5454	33	2460	0	4383	
+
+W 141  *	*	*	*	*	1610	*	*	*	*	*	1632	*	*	*	*	*	*	1516	*	141
+       0	*	*	*	*	3709	115	1902	0	4434	
+
+D 142  2897	*	1843	*	*	2827	*	*	2017	*	*	3348	*	*	3310	*	*	*	*	*	142
+       0	*	*	*	*	215	2854	2850	0	4223	
+
+A 143  2788	*	*	3265	6108	*	5318	4464	4073	4864	*	4872	3236	2920	3562	3739	3247	4824	*	*	143
+       0	*	*	*	*	166	3203	5280	0	1489	
+
+P 144  4570	*	3459	3676	5273	*	4028	6718	4520	*	4584	4310	5071	4320	2189	3266	4983	5007	*	3464	144
+       22	6047	*	0	*	0	*	5377	1013	1003	
+
+I 145  *	*	*	*	4703	*	3200	1524	*	5443	4944	2433	6071	*	4515	6131	3879	4189	*	3863	145
+       0	*	*	*	*	*	*	5378	0	0	
+
+T 146  4727	*	*	*	*	*	*	3449	6054	*	*	*	6156	4865	3152	6071	580	6513	*	*	146
+       0	*	*	*	*	*	*	5378	0	0	
+
+D 147  4224	*	1408	4006	*	*	5095	4522	4629	4318	*	2636	*	5102	6489	4902	3521	*	*	5481	147
+       0	*	*	*	*	*	*	5378	0	0	
+
+F 148  *	*	*	*	21	*	*	*	*	*	*	*	*	*	*	*	*	*	*	6131	148
+       22	6021	*	1000	1000	*	*	5378	1013	0	
+
+Y 149  *	6119	*	3881	4376	5755	5861	4439	5000	5985	*	3408	*	3523	6868	3397	2558	*	*	1804	149
+       0	*	*	*	*	*	*	5307	0	0	
+
+F 150  *	*	*	*	1564	*	*	2171	*	1559	3318	*	*	*	*	*	*	*	*	*	150
+       14	6710	*	0	*	*	*	5307	1000	0	
+
+Q 151  6513	*	3304	1625	5983	6451	5122	4907	*	3660	*	5690	*	2149	4814	4448	3860	*	*	*	151
+       120	3648	*	1468	647	*	*	5290	1145	0	
+
+Q 152  *	*	2929	3298	5733	5277	4112	4559	4321	5249	5957	5079	3105	2846	2778	4680	5549	4695	*	*	152
+       0	*	*	*	*	*	*	4618	0	0	
+
+C 153  *	2214	1719	2261	*	*	*	*	*	*	*	*	*	*	*	1878	*	*	*	*	153
+       0	*	*	*	*	*	*	2577	0	0	
+
+D 154  2728	*	2824	2124	*	*	*	*	*	*	*	*	*	3185	1440	*	*	*	*	*	154
+       0	*	*	0	*	*	*	2248	0	0	
+
+//
+�HHsearch 1.5
+NAME  1189797f72eb6f0e100dc3369ccd8ffa
+FAM   
+FILE  1189797f72eb6f0e100dc3369ccd8ffa
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:20:13 2013
+LENG  122 match states, 122 columns in multiple alignment
+FILT  133 out of 572 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  6.1 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CHHHHHHHHHHHCCCCCHHHHHHCCCCCCCCCCCCCCHHHHHHHHHHHHHHHHHHCCCCCCCEEEEEEECCEEEECCCCHHHHHHHHHHHHHHHHHHHHH
+CCCCHHHCCCCHHHCCCCCCCC
+>ss_conf PSIPRED confidence values
+9899999999982998379996468762689999826057578862067887762268604326899989976869997689999785899999999852
+2423876278865457999898
+>Consensus
+xlxqlxxMixxxxxxxxxxxyxxYGCxCxxxGxGxPvDxiDxxCxxhxxCyxcxxxCxxxxxxYxxxxxxxxixCxxxxxCxxxlCeCDxxxAxcxxxxx
+xxynxxyxxxxxxxCxxxxxxc
+>1189797f72eb6f0e100dc3369ccd8ffa
+SLFELGKMIWQETGKNPVKNYGLYGCNCGVGGRGEPLDATDRCCFVHKCCYKKLTDCDSKKDRYSYKWKNKAIVCGKNQPCMQEMCECDKAFAICLRENL
+DTYNKSFRYHLKPSCKKTSEQC
+>gi|70907000|gb|AAZ15113.1| otoconin [Gallus gallus]
+-LLNFVNKMKCVSGFCP-RDFEDYGCSCRFEMEGLPVDEADECCFQHRKCYEEAmeMECtwDPSKISTDVTCSAENLSCENGDPCEQFLCTCDKDAIECF
+GNA--HINSSLNGLDV----------
+>gi|76468986|gb|ABA43328.1| phospholipase A21 precursor [Trichoplax sp. BZ10101]gi|76468988|gb|ABA43329.1| phospholipase A21 precursor [Trichoplax sp. BZ10101]gi|76468990|gb|ABA43330.1| phospholipase A21 precursor [Trichoplax sp. BZ46]gi|76468992|gb|ABA43331.1| phospholipase A21 precursor [Trichoplax sp. BZ264]gi|76468994|gb|ABA43332.1| phospholipase A21 precursor [Trichoplax sp. BZ264]gi|76468996|gb|ABA43333.1| phospholipase A21 precursor [Trichoplax sp. BZ413]gi|76468998|gb|ABA43334.1| phospholipase A21 precursor [Trichoplax sp. BZE8]gi|76469000|gb|ABA43335.1| phospholipase A21 precursor [Trichoplax sp. BZF1]
+SALNFQSMISYTTGRSA-LAFNGYGNWCGLGPYFstpPTVDSVDACCKAHDNCYSDT-GCNllqwEVLNPYDWHKsSTGRITCDDaPGSCDRANCECDRI
+AAECFARY--KYNCDYAPLS-----------
+>gi|313234543|emb|CBY10500.1| unnamed protein product [Oikopleura dioica]
+--SEFQTLMKFYNSNFSLDTHGQYGCKCQYMvtdrplsaGPAgpVSVDELDATCQAHKDCYRCAkekfgESCIPEFNNYQYEYVGNEIECTSsAGSCNRA
+LCECDLKFAKEHVAKIDVYDEKLTLFN-----------
+>gi|313220609|emb|CBY31456.1| unnamed protein product [Oikopleura dioica]gi|313226182|emb|CBY21325.1| unnamed protein product [Oikopleura dioica]
+-LRQFRRLYTFYLvGYrlRP-AHLVQYGCWCFPrgqliMGYGQPIDGIDATCRNHQLCLNCVgldtnYECNPHTQPYRVYgqiYQNGrRLMCKDpPGSCA
+WLACQCDVNMVTtSIIESLKGYKPRFWMYDPGRC-------
+>gi|313225501|emb|CBY06975.1| unnamed protein product [Oikopleura dioica]
+-VLTLKEIILKPTGKRNAiglErfginmGAFDYGCHCSAllagktAGFGTAVDALDMICKDYLGCTrcvQKVTNCQVS-VNYNFEMGDSGVICTEmDGSC
+EKNICECDAMFYRDLLHAAysgIVYNYKYNAdsFDpSSSCHV-----
+>gi|313212373|emb|CBY36361.1| unnamed protein product [Oikopleura dioica]
+------KLVQHFTSI-DIEKLQDYGCA-GRGyfdstepAVGLPVDEIDRSFIWWKKCIKCAqSEYSAydleynhfdYREFYEFDF--DSEICGGSETVEH
+AICQCDKSFAKRLIDL--TENNDFHNYDTDSCVRFTP--
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+S 1    4041	*	3832	*	*	4799	4020	*	*	*	*	1987	*	*	*	1129	4013	*	*	*	1
+       0	*	*	*	*	*	*	5013	0	0	
+
+L 2    4586	*	5982	*	3906	*	*	2385	*	937	4960	*	5890	*	*	*	*	3473	*	5435	2
+       0	*	*	*	*	*	*	5630	0	0	
+
+F 3    4105	*	5000	*	3298	4825	*	3301	*	1947	5468	4553	6168	*	5944	4942	5297	3684	3006	4127	3
+       0	*	*	*	*	*	*	5961	0	0	
+
+E 4    6680	*	3795	3405	6870	*	4748	*	*	*	*	2504	*	968	5156	4941	5067	*	*	*	4
+       0	*	*	*	*	*	*	6107	0	0	
+
+L 5    6728	*	*	6347	1317	*	*	5371	*	914	5490	*	*	*	*	*	*	*	*	*	5
+       0	*	*	*	*	*	*	6135	0	0	
+
+G 6    4049	6109	4304	3465	5658	2480	4950	6307	3241	3812	4447	4696	*	4583	3373	3838	*	4736	*	4930	6
+       0	*	*	*	*	*	*	6142	0	0	
+
+K 7    3628	6519	3932	3009	5414	5023	6132	6414	3448	4090	6470	2865	*	5523	3422	3338	3721	5653	6434	5775	7
+       13	*	6811	*	*	*	*	6167	0	0	
+
+M 8    6851	*	*	6368	*	5652	*	4350	*	3215	655	6289	*	4838	5974	*	4477	4323	6785	*	8
+       0	*	*	*	*	0	*	6199	0	1010	
+
+I 9    5642	*	*	*	4389	*	*	1095	6655	3579	2811	6378	*	6484	*	6359	4761	2882	6665	6596	9
+       0	*	*	*	*	*	*	6197	0	0	
+
+W 10   6478	*	5264	2915	5440	5573	5437	6791	2101	3952	4214	4189	*	3170	3965	3747	3866	6724	6948	6392	10
+       0	*	*	*	*	*	*	6216	0	0	
+
+Q 11   4289	1552	*	4567	3909	6778	3132	6810	4754	7081	5461	*	*	3942	6724	3881	*	4203	5726	3569	11
+       17	6376	*	0	*	*	*	6216	1002	0	
+
+E 12   3033	6865	*	4549	5344	5517	6457	3666	5584	3722	4993	5406	6181	*	5514	5477	2861	2450	*	2648	12
+       126	6522	3785	1000	1000	0	*	6199	1000	1002	
+
+T 13   4399	*	5543	4922	4515	5085	*	3662	6346	4421	4826	3231	*	3825	6141	4680	1338	*	*	5274	13
+       197	3185	5826	292	2450	606	1544	6197	1464	1389	
+
+G 14   *	7175	4224	5491	*	1241	5843	5581	4288	6857	*	4290	2730	4986	5731	3534	4119	*	*	*	14
+       27	5767	*	253	2637	340	2252	6288	1211	1221	
+
+K 15   5488	6519	6006	4253	5299	4046	4483	5091	2369	4892	6922	3619	6436	3806	2931	3356	3888	5657	*	5457	15
+       121	4753	4528	1921	443	0	*	6361	1200	1003	
+
+N 16   *	4618	4220	4719	2551	5699	6368	5664	5041	6757	6205	3305	3983	6920	2818	2477	4256	7404	6705	5017	16
+       203	3182	5560	1798	489	0	*	6267	1564	1166	
+
+P 17   2392	6726	3058	6355	4304	4308	6728	*	6583	5172	5672	3643	2424	5582	*	3255	4238	5226	6701	5783	17
+       298	4769	2736	2605	259	1243	792	6265	1200	1066	
+
+V 18   2972	*	5117	4101	3256	4628	*	2956	4897	2232	5051	*	4200	6468	*	4847	*	4165	4212	5344	18
+       119	3885	6449	1478	642	0	*	6205	1298	1857	
+
+K 19   4366	*	3940	3075	3030	4189	6421	6979	5827	2301	*	5211	6739	*	3669	4175	3483	6305	4314	5181	19
+       42	5835	6463	2971	197	0	*	6082	1069	1000	
+
+N 20   5293	*	2079	3777	7034	6005	5078	5824	2338	6548	5968	4206	*	4539	3759	3289	4627	5297	7526	5314	20
+       7	*	7599	*	*	0	*	6127	0	1024	
+
+Y 21   5760	*	*	*	2195	6684	6964	5524	*	3255	5214	*	*	6455	6605	6256	*	6648	6205	906	21
+       19	6256	*	1585	585	*	0	6170	1017	1000	
+
+G 22   4289	4567	5160	4434	3686	3824	5195	4282	5848	3210	*	3064	*	4755	5099	3978	4969	4347	3520	4001	22
+       21	*	6104	*	*	0	*	6198	0	1000	
+
+L 23   4394	*	2921	3933	4925	2397	*	*	3920	7254	7210	2349	*	5164	5147	3131	6873	6328	5741	4425	23
+       0	*	*	0	*	0	*	6188	1002	1057	
+
+Y 24   7359	*	*	*	*	*	*	*	*	5595	*	*	*	*	*	*	6105	*	*	61	24
+       0	*	*	*	*	*	*	6195	0	0	
+
+G 25   *	*	*	*	*	30	*	*	*	*	*	*	*	*	5595	*	*	*	*	*	25
+       0	*	*	*	*	*	*	6195	0	0	
+
+C 26   *	78	*	*	*	*	*	*	*	5595	*	4955	*	*	*	*	*	*	*	*	26
+       0	*	*	*	*	*	*	6195	0	0	
+
+N 27   5834	*	*	*	3496	*	2331	*	6995	5595	*	3610	*	7232	*	6804	7081	*	2774	1268	27
+       16	*	6506	*	*	*	*	6195	0	0	
+
+C 28   *	108	7359	*	*	5240	*	*	*	5591	*	*	*	*	*	*	*	*	5712	*	28
+       0	*	*	*	*	0	*	6178	0	1019	
+
+G 29   6773	*	6897	*	3378	1237	5681	7159	*	3233	5003	4094	*	4279	4268	4043	6333	5889	5031	6009	29
+       65	4515	*	2831	219	*	*	6195	1219	0	
+
+V 30   3761	*	*	7148	3003	6801	*	3392	5260	2471	4822	5518	2738	4921	3999	4374	5965	4953	4786	4369	30
+       627	1504	*	2961	198	*	*	6190	2995	0	
+
+G 31   5402	*	5673	3703	6672	1152	5794	4490	4404	4661	3953	5231	4236	5131	4845	4696	5655	7657	*	*	31
+       214	2861	*	2813	221	*	0	6189	1820	1002	
+
+G 32   5067	*	5771	*	*	492	*	*	*	*	4692	5028	4964	6724	4458	4884	4982	7064	*	6456	32
+       34	5436	*	2528	275	0	*	6205	1111	1002	
+
+R 33   4863	*	5052	5246	3876	4279	4235	4562	2619	6403	6527	6044	5156	3978	3102	2633	4845	4683	*	4305	33
+       56	5103	6842	2260	338	*	*	6222	1150	0	
+
+G 34   6089	*	*	*	7015	140	7254	*	*	*	7151	5809	*	*	6047	6807	*	7081	*	7180	34
+       175	3439	5487	356	2192	1276	769	6218	1619	1086	
+
+E 35   3670	*	5437	4393	6724	*	5017	5211	2678	4116	5896	5252	3483	3898	3654	4658	2479	4162	7216	6801	35
+       0	*	*	0	*	2183	359	6205	1002	1205	
+
+P 36   3180	*	*	*	*	6292	*	*	*	*	*	*	319	*	6577	5400	5039	*	6550	*	36
+       24	5896	*	0	*	*	0	6215	1046	1148	
+
+L 37   6586	*	*	*	*	7026	*	3580	4035	2799	4467	*	*	4707	5145	*	6080	819	*	*	37
+       0	*	*	*	*	*	0	6215	0	1148	
+
+D 38   *	*	61	5596	*	*	*	*	*	*	*	5585	*	*	*	*	*	*	*	*	38
+       0	*	*	*	*	*	0	6215	0	1148	
+
+A 39   2216	*	3169	1801	*	3605	6586	7510	6993	5824	6899	4112	4691	4817	5191	4322	6623	6119	6623	6562	39
+       0	*	*	*	*	1296	755	6215	0	1148	
+
+T 40   5581	*	*	6823	*	*	*	1518	6827	2080	*	6644	*	*	6822	4786	2610	2853	*	5742	40
+       0	*	*	*	*	*	0	6213	0	1065	
+
+D 41   *	*	32	*	*	*	*	*	*	*	*	*	6823	*	*	*	*	*	*	6249	41
+       18	*	6354	*	*	*	0	6213	0	1065	
+
+R 42   3305	7355	*	3749	7195	*	5640	5541	3174	5156	6811	4797	*	3930	1732	3222	4933	5809	4015	*	42
+       0	*	*	*	*	*	0	6206	0	1151	
+
+C 43   2910	1164	*	6538	6792	5878	5262	5200	4297	4273	*	6578	*	5851	*	5071	3335	3969	*	7044	43
+       0	*	*	*	*	1269	773	6157	0	1151	
+
+C 44   *	127	*	*	5569	*	*	5859	*	5976	*	*	*	*	*	5066	*	*	*	*	44
+       0	*	*	*	*	*	0	6172	0	1065	
+
+F 45   5591	*	*	6199	3676	*	3497	5833	2240	4436	4446	6918	6347	2438	2652	7179	6652	5077	6948	4089	45
+       0	*	*	*	*	*	0	6172	0	1065	
+
+V 46   3019	*	3361	3346	*	*	4019	4759	3223	4299	7035	3449	*	3627	4789	3842	4537	3559	6567	*	46
+       0	*	*	*	*	*	0	6172	0	1065	
+
+H 47   6851	*	*	*	4229	*	944	*	5976	2715	*	*	*	7200	6787	6347	*	*	3643	2818	47
+       36	5324	*	833	1188	*	0	6172	1132	1065	
+
+K 48   5437	*	1406	6892	5394	6192	4404	7743	2308	4815	*	4776	6347	5237	3846	4719	4798	6867	6339	5345	48
+       0	*	*	*	*	0	*	6172	0	1065	
+
+C 49   4909	3260	3670	3889	5041	6072	4875	7072	3251	4683	5290	4128	5986	3267	2788	4676	4191	6197	6947	5455	49
+       20	6154	*	1000	1000	*	*	6182	1059	0	
+
+C 50   6351	76	*	*	*	*	*	*	*	5986	*	*	6360	*	*	6512	*	*	*	*	50
+       11	7020	*	0	*	*	*	6182	1000	0	
+
+Y 51   7241	*	*	*	5480	6659	3909	5210	*	3269	*	5643	*	3942	*	6817	5505	4718	6191	746	51
+       21	6950	7316	1585	585	*	*	6182	1012	0	
+
+K 52   4030	7017	3164	3589	*	3705	4530	*	1831	*	5978	4023	*	3822	3791	3591	5305	*	7199	*	52
+       0	*	*	*	*	*	0	6184	0	1010	
+
+K 53   3824	1120	4461	3796	6168	6177	*	*	3549	6891	*	4383	*	4138	4457	4614	6692	5489	*	7100	53
+       31	5982	7438	1585	585	*	0	6184	1042	1010	
+
+L 54   1839	*	6555	7066	6913	*	*	3369	6401	2160	6662	6038	5176	*	*	4578	4133	2251	*	*	54
+       3129	225	5057	1988	419	0	*	6185	5436	1058	
+
+T 55   4592	*	3357	3111	6283	3093	5110	5598	3616	4927	5455	4640	3769	5237	4802	3212	3335	6978	7037	5063	55
+       64	4850	6840	1309	746	1095	911	6160	1164	1307	
+
+D 56   5386	*	2916	2554	*	2974	6026	4808	4142	7086	4499	4026	6336	4205	5662	3164	3338	5671	6822	*	56
+       88	4245	7291	2222	348	1258	781	6150	1345	1189	
+
+C 57   7111	222	*	*	6839	*	7102	6152	7186	5170	6668	*	*	*	*	6842	*	*	5434	5112	57
+       271	2853	4931	1933	438	1923	442	6165	1874	1138	
+
+D 58   4847	7110	2850	4759	7056	3859	5453	3190	4547	4254	7405	2904	6932	3672	5400	2988	4475	5970	5576	5602	58
+       256	3050	4576	1840	472	663	1440	6149	1834	1511	
+
+S 59   3593	*	*	4446	5281	3251	4954	5543	4388	5541	7262	4744	1381	*	*	3601	4393	4266	*	6988	59
+       44	5057	*	2740	234	432	1951	6142	1134	1482	
+
+K 60   5550	*	4389	2328	5738	5173	4341	6264	3847	3685	7258	5838	*	5711	6061	3467	4763	4970	*	1952	60
+       141	6032	3678	1373	704	*	0	6178	1062	1086	
+
+K 61   4897	*	4288	5902	2269	6986	7154	3727	4885	3016	5215	5134	*	4238	4624	4590	2370	5254	7083	5283	61
+       57	5295	6244	423	1977	290	2457	6095	1106	1578	
+
+D 62   3977	6800	3819	5759	6265	5336	5018	4804	3481	4297	7055	3889	6568	3416	4859	3721	2693	2947	*	5685	62
+       15	6632	*	575	1604	471	1844	6168	1062	1155	
+
+R 63   4768	6718	4827	5589	4815	4682	4545	4208	3832	3255	6757	3785	3535	4858	3925	2605	3604	5150	*	6933	63
+       37	5891	6908	1157	858	0	*	6176	1091	1003	
+
+Y 64   *	*	*	*	6410	*	*	5747	*	*	6734	*	*	*	*	5636	5647	*	*	120	64
+       11	*	6989	*	*	*	0	6163	0	1004	
+
+S 65   7064	6278	3162	3737	7111	4675	6213	*	2547	6874	*	2996	6843	3900	3754	2586	3758	5354	*	6219	65
+       22	6038	*	1264	777	*	0	6160	1036	1053	
+
+Y 66   6001	*	*	7323	2829	6730	4584	3995	*	4016	5527	*	*	*	6332	5505	7111	3922	2260	1627	66
+       101	4340	5786	1673	543	1155	860	6160	1324	1053	
+
+K 67   5000	*	3719	3390	4723	7264	5594	4860	3083	6868	7259	4420	4561	5116	3460	2878	2717	4827	*	4935	67
+       134	4225	4832	2079	390	1405	684	6204	1425	1198	
+
+W 68   5244	2063	*	5158	3009	5197	7554	3597	4425	3319	4667	*	*	5483	6964	6124	5317	3243	4710	3897	68
+       202	3058	6559	1878	458	3370	147	6167	1671	1340	
+
+K 69   5092	*	3243	3066	6135	4085	4467	4316	3713	5363	*	3387	6572	4317	4473	2931	4953	3281	6798	*	69
+       207	3018	6600	2199	354	1221	808	6154	1712	1424	
+
+N 70   4228	*	2877	3607	*	3056	6415	*	3722	*	7261	2252	4865	4557	6648	3545	3630	6585	6931	4945	70
+       270	2857	4925	2008	412	1346	721	6184	1849	1284	
+
+K 71   4326	5489	3855	5271	*	1659	5593	*	3122	*	*	2981	5222	4191	3536	5113	5086	5644	*	6994	71
+       106	4025	6768	1857	466	1299	753	6163	1400	1401	
+
+A 72   4136	6837	3914	3480	4691	4439	4844	5547	3513	6923	5905	3956	5562	3746	3365	3142	3512	4989	*	4824	72
+       39	5230	*	824	1200	234	2738	6189	1130	1286	
+
+I 73   4547	*	*	6588	5479	5149	5963	1468	5766	3238	5593	6735	3362	*	6571	5958	4403	2583	*	5255	73
+       41	5154	*	1463	650	*	0	6172	1135	1000	
+
+V 74   4531	*	4972	3348	4126	6929	6925	3328	4147	6735	6254	5477	6856	3897	5049	4672	2154	2870	7120	4714	74
+       10	7181	*	0	*	*	0	6172	1000	1000	
+
+C 75   6121	125	*	*	*	6979	*	*	*	6674	*	*	6555	*	*	5276	6962	7230	*	*	75
+       84	4142	*	389	2080	*	0	6172	1319	1000	
+
+G 76   4257	*	3597	4166	*	2933	6695	6170	3696	4158	5054	5023	7432	5400	4157	2292	3340	4763	*	4809	76
+       197	3117	6356	2071	392	0	*	6172	1726	1000	
+
+K 77   4374	6575	1942	3241	*	3285	*	*	4940	*	*	2867	3876	5210	6024	3011	4236	7176	*	6880	77
+       853	1185	7217	549	1660	*	0	6160	3557	1030	
+
+N 78   3404	*	4288	2470	7116	3865	6037	5518	3608	4406	*	3015	3518	4971	5093	3818	4932	4806	7247	6195	78
+       163	3226	*	2123	376	*	0	6151	1819	1158	
+
+Q 79   4278	*	2251	5863	*	1871	5880	*	5553	*	*	2557	6254	5486	6862	3128	4256	5117	*	*	79
+       138	3452	*	1580	587	0	*	6151	1737	1158	
+
+P 80   5515	*	4581	4093	*	4421	5623	7415	4406	4775	*	5798	3600	5111	4949	1919	2021	5206	6209	6980	80
+       50	5208	7214	229	2768	*	*	6176	1195	0	
+
+C 81   7035	208	5783	*	5968	*	*	*	*	5307	*	*	*	*	*	*	*	5821	4886	6013	81
+       0	*	*	*	*	0	*	6176	0	1000	
+
+M 82   2515	*	5364	1912	*	3130	*	*	2966	7169	7416	5619	*	3734	3227	4214	6066	6805	*	*	82
+       0	*	*	*	*	*	*	6176	0	0	
+
+Q 83   4205	*	5432	4920	6284	4828	4467	*	3587	5057	4597	6223	*	3056	1427	5402	6027	5707	5212	4291	83
+       0	*	*	*	*	*	*	6176	0	0	
+
+E 84   1903	*	3748	3974	4936	5410	5095	6463	4401	4142	5049	3210	*	3731	5816	3571	3975	*	6909	7319	84
+       0	*	*	*	*	*	*	6176	0	0	
+
+M 85   3946	*	*	*	5704	*	*	2139	6921	1482	5307	6034	*	6816	5979	4759	4038	2757	*	6407	85
+       0	*	*	*	*	*	*	6176	0	0	
+
+C 86   *	129	*	*	4447	6682	*	*	*	*	*	*	*	*	*	*	*	*	5704	6561	86
+       0	*	*	*	*	*	*	6176	0	0	
+
+E 87   4698	*	4643	944	*	7363	7137	*	4475	5572	5986	4371	*	2459	5412	5047	5461	*	*	*	87
+       0	*	*	*	*	*	*	6176	0	0	
+
+C 88   *	50	*	*	*	*	*	*	*	5535	*	*	*	*	*	*	6348	*	*	*	88
+       0	*	*	*	*	*	*	6176	0	0	
+
+D 89   6407	*	77	6582	*	*	6412	*	*	*	*	*	*	*	*	6697	6868	*	*	*	89
+       0	*	*	*	*	*	*	6176	0	0	
+
+K 90   3541	*	*	5363	5925	6048	6204	7296	1624	3227	6511	*	*	5014	2080	5439	4419	4482	*	6150	90
+       0	*	*	*	*	*	*	6176	0	0	
+
+A 91   2439	*	3783	2789	5377	5986	*	5167	3271	*	4988	4514	5704	2668	4539	4291	4193	5821	*	6842	91
+       17	6412	*	1000	1000	*	*	6176	1017	0	
+
+F 92   2101	*	*	*	1345	6460	*	5285	*	2269	5206	*	*	6434	*	5294	*	4642	*	5348	92
+       0	*	*	*	*	*	*	6176	0	0	
+
+A 93   559	*	*	*	*	6768	*	4296	*	6407	*	*	5704	*	*	4490	5067	2819	*	6132	93
+       15	6559	*	1585	585	*	*	6176	1018	0	
+
+I 94   7298	*	6128	2280	4566	7127	4321	3801	2590	3196	5066	4144	*	5050	4484	4799	4292	4882	*	4475	94
+       9	7371	*	0	*	*	*	6176	1000	0	
+
+C 95   5102	1060	3188	3863	*	5373	6808	*	5227	*	*	4185	*	4625	4540	4134	4904	5376	*	*	95
+       0	*	*	*	*	*	*	6167	0	0	
+
+L 96   6547	*	*	*	1726	*	4319	3300	7408	1387	4237	*	*	6337	*	*	6989	4381	5277	*	96
+       16	*	6547	*	*	*	*	6157	0	0	
+
+R 97   1519	*	7348	5974	4661	3497	5652	4495	3319	5551	7267	6221	*	4542	3304	3718	6110	4473	6861	7150	97
+       0	*	*	*	*	*	0	6146	0	1016	
+
+E 98   3380	*	3211	3443	5673	5378	4822	*	2789	5399	*	4074	6929	3820	2314	4195	4535	*	*	5692	98
+       106	*	3819	*	*	*	0	6146	0	1016	
+
+N 99   2646	*	6773	4866	5370	5902	4120	5432	4372	4000	5910	2660	*	4804	5702	2818	4217	3397	*	4506	99
+       475	3939	2217	450	1900	2200	354	6227	1273	1576	
+
+L 100  2823	*	5358	3148	5431	*	*	3359	4174	2241	6532	*	5357	6525	2962	3832	5694	4230	5908	*	100
+       115	3702	*	2477	286	1545	605	6023	1310	2572	
+
+D 101  3376	*	2775	4104	5800	3806	4000	4610	4974	6237	*	4145	2678	5142	4227	3902	5502	4382	6914	5518	101
+       45	5562	6667	1298	753	0	*	6076	1050	2050	
+
+T 102  5163	*	4532	3316	5214	5872	5400	5103	3444	5645	*	6843	3222	5433	6673	2615	2474	3073	*	6803	102
+       18	6301	*	0	*	*	0	6278	1018	1000	
+
+Y 103  *	6632	*	6325	2371	*	6871	5163	6738	5209	6124	*	6553	*	*	*	6492	5889	3043	897	103
+       0	*	*	*	*	*	0	6278	0	1000	
+
+N 104  5994	*	2412	5735	*	6917	4987	7404	4300	*	*	964	5641	6220	5431	4293	5096	4973	*	*	104
+       0	*	*	*	*	*	0	6275	0	1000	
+
+K 105  3672	5679	4863	3473	6866	5212	7035	5752	2751	4221	5476	3415	2974	3983	5333	3593	4970	4138	*	6568	105
+       32	*	5503	*	*	*	0	6275	0	1000	
+
+S 106  3176	*	3188	3358	*	4951	6226	*	2123	4605	*	3879	*	5344	3878	3376	4097	6527	6813	5026	106
+       39	6872	5784	0	*	458	1878	6206	1000	1121	
+
+F 107  *	*	*	*	2232	*	2854	*	6520	3411	*	3224	*	6573	*	*	*	*	*	1230	107
+       16	*	6514	*	*	*	0	6258	0	1122	
+
+R 108  4288	*	5575	4519	4061	*	2071	6881	3111	5423	5346	4701	*	4265	3144	3708	4611	5475	4786	4863	108
+       52	4825	*	597	1561	1511	623	6254	1124	1180	
+
+Y 109  4425	*	4239	4906	3679	3195	3659	4313	*	4071	5017	2723	4966	6084	4752	3370	4882	4341	*	4483	109
+       78	4255	*	1182	838	1714	524	6239	1233	1098	
+
+H 110  *	6161	6283	5348	1836	6421	3847	3966	6411	2972	4451	6362	6121	6479	*	5356	*	4406	6547	2195	110
+       85	4834	5497	414	2004	*	0	6196	1105	1051	
+
+L 111  *	*	1380	5075	4879	5277	5810	*	5495	4570	5960	3901	3003	6389	6309	3904	5191	*	3409	5403	111
+       308	2445	6824	829	1194	*	0	6105	1636	1166	
+
+K 112  4000	*	4819	5225	*	3870	*	*	2508	*	*	3273	5847	3215	2993	2789	3151	*	*	5657	112
+       108	3797	*	0	*	765	1281	6054	1218	1203	
+
+P 113  4131	*	4807	2706	5776	4917	*	5397	2625	4723	4370	3499	4243	4868	6466	2593	4240	5324	*	*	113
+       138	3762	5850	0	*	415	1999	5873	1168	1137	
+
+S 114  5732	*	6417	4041	3864	*	3492	5980	3051	3503	5486	3804	5957	4257	2786	3434	5376	5105	*	3767	114
+       43	5077	*	0	*	856	1160	5682	1029	1052	
+
+C 115  *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	115
+       22	6049	*	2000	415	*	0	5742	1010	1000	
+
+K 116  *	*	4630	3172	5830	3771	5175	*	2935	4853	*	*	*	2002	2966	4652	3679	3850	*	*	116
+       0	*	*	*	*	0	*	5555	0	1000	
+
+K 117  3142	*	4319	3832	*	1740	4938	*	1993	*	*	5492	*	*	3368	5128	*	4820	*	*	117
+       0	*	*	*	*	*	*	5213	0	0	
+
+T 118  3793	*	6065	2376	4078	*	3796	*	3636	*	*	4785	2878	4043	4283	5051	3162	4948	4323	*	118
+       0	*	*	*	*	*	*	4753	0	0	
+
+S 119  4894	*	*	*	*	*	*	*	2263	*	*	*	3423	*	2831	2305	1827	*	*	4638	119
+       0	*	*	*	*	*	*	4439	0	0	
+
+E 120  *	*	*	2428	*	*	*	*	*	3629	4307	*	806	*	*	4333	*	4029	*	*	120
+       100	3903	*	3907	100	*	*	4338	1010	0	
+
+Q 121  3373	*	*	3194	3902	*	*	*	2601	*	*	2664	4428	2727	*	3682	*	4040	3871	*	121
+       102	3871	*	1391	693	*	*	4234	1089	0	
+
+C 122  *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	122
+       0	*	*	0	*	*	*	4134	0	0	
+
+//
+�HHsearch 1.5
+NAME  11d0ff4d993e31f0a2ea189846a08655
+FAM   
+FILE  11d0ff4d993e31f0a2ea189846a08655
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:25:41 2013
+LENG  80 match states, 80 columns in multiple alignment
+FILT  25 out of 27 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  3.4 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCHHHHHHHCCCHHHHHHHHHCCCCCHHHHHHCCHHHHHHCCCCHHHHHHHHHHHHHHHHCCCCCCCCHHHCCC
+>ss_conf PSIPRED confidence values
+99888761999987168559999999869740999971788678745862899999999999987004568870451068
+>Consensus
+xpyxxDxSixsxLtxLGcxncidxFtxqglxxixqLxxxxmeDLxxmkIxxxxrxxIWkxlxexxqxxdyxxxpxlxrxx
+>11d0ff4d993e31f0a2ea189846a08655
+GSYHADPSLVSFLTGLGCPNCIEYFTSQGLQSIYHLQNLTIEDLGALKIPEQYRMTIWRGLQDLKQGHDYSTAQQLLRSS
+>gi|47218894|emb|CAG05660.1| unnamed protein product [Tetraodon nigroviridis]
+-PYPMDSSISSFLLRLGCAGCLDYFTAQGLTNIYQIENYNMEDLSRLKIPSEFQHIIWKGIMEHRQAMDFSPPPHIVRST
+>gi|323772104|gb|ADL27911.1| tumor suppressor p53-like protein [Branchiostoma belcheri tsingtauense]
+---DADGTVADWLTKLGCASCIETFHRKRINFLSQLEEINLQDLHEMKLTERLVDKIWKGIIEYKAAKDFSDTPSLLR--
+>gi|291224284|ref|XP_002732135.1| PREDICTED: p63-like transcription factor-like [Saccoglossus kowalevskii]
+----PDNSINEWLSKFGCENYSEIFKKKGYLSIHQLDDITIEDLDDMKISPQQKDKIWKAIIDHRAADNFSSTPSMLQ--
+>gi|217273135|gb|ACK28180.1| p63/p73 [Mya arenaria]
+---MQDNSVSTWLNALGLGAYIDGFHEQTLYSLLQLDDFSLDDLAKMKIGNSHRNKIWKSLLELRNQGFT----------
+>gi|82471258|gb|ABB77690.1| p63(62) transcription factor [Euprymna scolopes]
+---PNENTIAQWLTKLGLQAYIDNFQQKGLHNMFQLDEFTLEDLQSMRIGTGHRNKIWKSLLDYRRVLST----------
+>gi|115898454|ref|XP_001196748.1| PREDICTED: similar to p63(47) transcription factor [Strongylocentrotus purpuratus]gi|115945815|ref|XP_001184464.1| PREDICTED: similar to p63(47) transcription factor [Strongylocentrotus purpuratus]
+----QDPSIDCFLKRLGLRQHSDIFTQKNVHTVDQLEEINMEDLSS--IPHQQREILWKAILELKGGLQLNHTPTMNR--
+>gi|297522160|gb|ADI44410.1| p53-like transcription factor [Biomphalaria glabrata]
+----RDNSVAGWLDRLGLSNYIDRFHQNGYDNLFQLDECKKETLEHLGIPEVDRNKIWKSLVEFHQ--------------
+>gi|70632939|gb|AAZ05996.1| delta-N p63/p73-like protein [Mytilus edulis]gi|112819488|gb|ABI23724.1| delta-N p63/p73-like protein [Mytilus edulis]
+---NGDHSISNWLTTLGLSAYIDNFHQQNLFTMEQLDDFTVEDLQKMRIGTSHRNKIWKALVEFHSeSITISDSQSLQR--
+>gi|169349567|ref|ZP_02866505.1| hypothetical protein CLOSPI_00294 [Clostridium spiroforme DSM 1552]gi|169293642|gb|EDS75775.1| hypothetical protein CLOSPI_00294 [Clostridium spiroforme DSM 1552]
+---------------EGCSNC-EYFSKNGLPLIEeefgdhmKIVKYNMDDRESVDEVRNAYDEVVNNIIDFNQ-DDYGFGPFLV---
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+G 1    *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1000	0	0	
+
+S 2    *	*	*	*	*	*	*	*	*	*	*	*	93	*	*	3995	*	*	*	*	2
+       0	*	*	*	*	*	*	1905	0	0	
+
+Y 3    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	3
+       0	*	*	*	*	*	*	1905	0	0	
+
+H 4    *	*	3221	*	*	*	2631	*	*	3946	2856	1926	1915	*	*	*	*	*	*	*	4
+       0	*	*	*	*	*	*	2842	0	0	
+
+A 5    1996	*	*	*	*	4153	*	*	*	*	3659	4080	2637	3042	3903	3954	3390	4450	*	*	5
+       0	*	*	*	*	*	*	3139	0	0	
+
+D 6    *	*	88	4080	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	6
+       0	*	*	*	*	*	*	3139	0	0	
+
+P 7    *	3789	*	*	*	3597	4153	4119	*	*	*	1601	1599	*	*	3806	*	*	*	*	7
+       0	*	*	*	*	*	*	3139	0	0	
+
+S 8    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	220	2819	*	*	*	8
+       0	*	*	*	*	*	*	3139	0	0	
+
+L 9    *	*	*	*	*	*	*	1443	*	1609	*	*	*	*	*	*	*	1717	*	*	9
+       0	*	*	*	*	*	*	3139	0	0	
+
+V 10   1529	5057	3837	*	*	*	*	*	*	*	*	3860	*	*	*	2420	*	1747	*	*	10
+       0	*	*	*	*	*	*	3139	0	0	
+
+S 11   4119	3837	3597	3860	*	3903	*	*	*	*	*	4153	*	4080	*	1037	4281	*	*	*	11
+       0	*	*	*	*	*	*	3139	0	0	
+
+F 12   *	*	*	*	967	*	*	*	*	*	*	*	*	*	*	*	*	*	1034	*	12
+       0	*	*	*	*	*	*	3139	0	0	
+
+L 13   *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	13
+       0	*	*	*	*	*	*	3139	0	0	
+
+T 14   3789	*	3903	*	*	*	*	*	3837	3659	*	3198	*	*	*	3860	906	*	*	*	14
+       0	*	*	*	*	*	*	3139	0	0	
+
+G 15   4281	*	*	*	*	2152	4119	*	2248	*	*	*	*	*	1794	3174	4153	*	*	*	15
+       0	*	*	*	*	*	*	3139	0	0	
+
+L 16   *	*	*	2363	4210	*	*	4650	*	490	*	*	*	*	*	*	*	*	*	*	16
+       0	*	*	*	*	*	*	3641	0	0	
+
+G 17   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	17
+       0	*	*	*	*	*	*	3641	0	0	
+
+C 18   *	573	*	*	*	*	*	*	*	1609	*	*	*	*	*	*	*	*	*	*	18
+       0	*	*	*	*	*	*	3641	0	0	
+
+P 19   2516	*	*	4210	*	3476	*	*	*	*	*	*	2211	3379	4064	1692	*	*	*	*	19
+       0	*	*	*	*	*	*	3641	0	0	
+
+N 20   2027	*	*	*	*	4897	*	*	*	*	*	896	*	4064	*	3014	*	*	*	*	20
+       0	*	*	*	*	*	*	3641	0	0	
+
+C 21   *	769	*	*	4989	*	4064	*	*	*	*	*	*	*	*	*	*	*	*	1635	21
+       312	*	2363	*	*	*	*	3641	0	0	
+
+I 22   *	*	*	*	*	*	*	495	*	2722	*	*	*	*	*	2849	*	*	*	*	22
+       0	*	*	*	*	0	*	3139	0	1332	
+
+E 23   *	*	953	1048	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	23
+       0	*	*	*	*	*	*	3641	0	0	
+
+Y 24   *	5545	*	*	3746	4548	*	3135	*	*	*	2450	*	*	4224	4408	3906	*	*	1332	24
+       0	*	*	*	*	*	*	3641	0	0	
+
+F 25   *	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	25
+       0	*	*	*	*	*	*	3641	0	0	
+
+T 26   4989	*	*	*	*	*	1765	*	4210	*	*	*	*	4627	*	4025	948	*	*	*	26
+       0	*	*	*	*	*	*	3641	0	0	
+
+S 27   3954	*	*	2947	*	*	*	*	2009	*	*	*	*	2336	3906	2086	4131	*	*	*	27
+       0	*	*	*	*	*	*	3641	0	0	
+
+Q 28   *	*	*	*	*	*	4408	*	1576	*	*	2528	*	1171	*	*	*	*	*	*	28
+       0	*	*	*	*	*	*	3641	0	0	
+
+G 29   *	*	*	*	*	516	*	*	*	*	*	2388	*	*	3906	*	4548	*	*	*	29
+       0	*	*	*	*	*	*	3641	0	0	
+
+L 30   *	*	*	*	4650	*	*	2824	*	618	*	*	*	*	*	*	*	4064	*	3217	30
+       0	*	*	*	*	*	*	3641	0	0	
+
+Q 31   *	*	4224	*	3452	*	3318	*	*	3413	*	3411	2363	2086	*	*	3407	*	*	4548	31
+       0	*	*	*	*	*	*	3641	0	0	
+
+S 32   *	*	*	*	3906	*	*	*	*	2363	*	1790	*	*	*	1909	2446	*	*	*	32
+       0	*	*	*	*	*	*	3641	0	0	
+
+I 33   *	*	*	*	*	*	*	923	*	2432	3005	*	*	*	*	*	*	2621	*	*	33
+       0	*	*	*	*	*	*	3641	0	0	
+
+Y 34   *	*	4064	2472	2902	*	4210	4408	4098	4548	*	*	*	*	*	3906	*	*	*	1485	34
+       312	2363	*	2807	222	*	*	3641	1332	0	
+
+H 35   *	*	*	*	*	*	2230	*	2363	*	*	*	*	755	*	*	*	*	*	*	35
+       0	*	*	*	*	*	*	3641	0	0	
+
+L 36   *	*	*	*	*	*	*	1662	*	548	*	*	*	*	*	*	*	*	*	*	36
+       0	*	*	*	*	*	*	3641	0	0	
+
+Q 37   *	*	1635	2011	*	*	*	4098	*	*	*	*	*	2086	*	*	*	2879	*	*	37
+       0	*	*	*	*	*	*	3641	0	0	
+
+N 38   *	*	2410	1650	*	*	5070	*	2879	*	*	1880	*	*	*	*	4168	*	*	*	38
+       0	*	*	*	*	*	*	3641	0	0	
+
+L 39   *	4224	*	*	2221	*	*	2470	*	2086	*	*	*	*	*	*	*	*	*	1662	39
+       0	*	*	*	*	*	*	3641	0	0	
+
+T 40   *	*	4098	*	*	*	*	*	4224	*	*	1613	*	*	*	2066	1634	*	*	*	40
+       0	*	*	*	*	*	*	3641	0	0	
+
+I 41   *	*	*	*	*	*	*	2253	4224	1785	1314	*	*	*	*	*	*	4497	*	*	41
+       0	*	*	*	*	*	*	3641	0	0	
+
+E 42   *	*	1671	691	*	*	*	*	*	*	*	*	*	3906	*	*	*	*	*	*	42
+       0	*	*	*	*	*	*	3641	0	0	
+
+D 43   *	*	153	*	*	4413	*	*	*	*	*	*	*	*	*	*	4224	*	*	*	43
+       0	*	*	*	*	*	*	3641	0	0	
+
+L 44   3746	*	*	*	*	*	*	*	*	398	4413	*	*	*	4025	*	4098	*	*	*	44
+       0	*	*	*	*	*	*	3641	0	0	
+
+G 45   2578	*	4210	2528	*	2376	3906	*	*	*	*	*	*	3560	*	2607	3746	5486	*	*	45
+       0	*	*	*	*	*	*	3641	0	0	
+
+A 46   2279	4413	4210	3906	*	*	4224	*	2898	5486	*	*	*	*	3954	1769	4098	*	*	*	46
+       163	*	3228	*	*	*	*	3641	0	0	
+
+L 47   *	*	*	*	3595	*	*	*	*	1187	1282	*	*	*	*	*	*	3903	*	*	47
+       0	*	*	*	*	*	0	3484	0	1223	
+
+K 48   *	*	2741	*	*	4066	*	*	664	*	*	*	*	*	3386	*	3965	*	*	*	48
+       0	*	*	*	*	1007	993	3484	0	1223	
+
+I 49   *	*	*	2977	*	*	*	461	3675	3874	*	*	*	*	*	*	*	*	*	*	49
+       0	*	*	*	*	*	0	3580	0	1058	
+
+P 50   *	*	*	*	*	2173	*	*	*	*	*	*	1155	*	*	4163	3874	2285	*	*	50
+       0	*	*	*	*	*	0	3580	0	1058	
+
+E 51   *	*	3764	1666	*	*	4040	*	2833	*	*	3418	4163	*	3946	4834	2638	*	*	*	51
+       0	*	*	*	*	*	0	3580	0	1058	
+
+Q 52   3162	*	*	3889	*	4582	5016	*	3675	*	*	3946	*	1520	3874	2939	*	4114	*	*	52
+       0	*	*	*	*	*	0	3580	0	1058	
+
+Y 53   2285	*	4114	*	2702	*	2173	*	*	3874	*	*	*	3100	*	4915	*	*	*	2800	53
+       0	*	*	*	*	*	0	3580	0	1058	
+
+R 54   *	*	*	*	*	*	*	*	3527	*	*	*	*	3889	805	*	*	3874	*	2285	54
+       0	*	*	*	*	*	0	3580	0	1058	
+
+M 55   *	*	1603	4040	*	*	2972	*	*	4073	3150	1839	*	*	*	5016	*	*	*	*	55
+       0	*	*	*	*	*	0	3580	0	1058	
+
+T 56   3067	*	*	2977	*	*	3675	2715	1309	5496	5016	*	*	*	*	*	3910	*	*	*	56
+       0	*	*	*	*	*	0	3580	0	1058	
+
+I 57   *	*	3675	*	*	*	*	446	*	4040	*	*	*	*	*	*	*	2977	*	*	57
+       0	*	*	*	*	0	*	3580	0	1058	
+
+W 58   *	*	*	*	4413	*	*	4098	*	3746	*	*	*	*	*	*	*	4025	398	*	58
+       0	*	*	*	*	*	*	3641	0	0	
+
+R 59   *	*	*	3746	*	*	*	*	811	*	*	3061	*	4413	2407	*	*	*	*	*	59
+       0	*	*	*	*	*	*	3641	0	0	
+
+G 60   2256	*	*	*	*	1424	*	*	*	*	*	4025	*	3746	*	1826	*	*	*	*	60
+       0	*	*	*	*	*	*	3641	0	0	
+
+L 61   *	*	*	*	*	*	*	1239	*	1052	*	*	*	*	*	*	4413	4408	*	*	61
+       0	*	*	*	*	*	*	3641	0	0	
+
+Q 62   *	*	*	*	*	*	*	2055	4413	2185	3445	*	*	1926	*	*	*	2861	*	*	62
+       0	*	*	*	*	*	*	3641	0	0	
+
+D 63   *	*	1274	890	*	*	*	*	*	*	*	4413	*	*	*	*	*	*	*	*	63
+       0	*	*	*	*	*	*	3641	0	0	
+
+L 64   *	*	*	*	1775	*	2789	*	*	1671	5372	*	*	*	4413	*	*	*	*	2490	64
+       0	*	*	*	*	*	*	3641	0	0	
+
+K 65   *	*	3746	*	*	*	3354	*	1618	*	*	2747	*	*	1502	*	*	*	*	*	65
+       69	*	4413	*	*	*	*	3641	0	0	
+
+Q 66   3011	*	*	*	*	4040	*	*	5016	*	*	3418	*	929	4582	4457	*	*	*	3675	66
+       707	4372	1560	0	*	*	0	3580	1017	1058	
+
+G 67   1742	*	*	3792	*	2948	*	*	*	4255	4422	*	*	3971	*	2241	4314	3743	*	*	67
+       0	*	*	2041	402	300	2414	2986	1172	1757	
+
+H 68   *	*	1862	*	*	3331	1844	4268	3810	3206	3818	4490	*	*	*	*	*	*	*	*	68
+       0	*	*	*	*	*	0	3516	0	1058	
+
+D 69   4490	*	1033	3908	4409	*	*	*	*	4257	*	4062	*	2799	*	4466	4268	*	*	*	69
+       0	*	*	*	*	*	0	3516	0	1058	
+
+Y 70   *	*	*	*	1916	*	*	4268	*	3985	*	*	*	*	*	*	2790	*	*	1073	70
+       233	*	2746	*	*	*	0	3516	0	1058	
+
+S 71   *	*	*	*	*	1426	*	*	*	*	*	3297	*	*	*	1062	4403	*	*	*	71
+       194	*	2991	*	*	227	2778	3300	0	1336	
+
+T 72   *	*	2451	*	2812	3571	2796	3892	*	*	*	*	3426	*	*	2616	4665	3580	*	*	72
+       0	*	*	*	*	0	*	3461	0	1139	
+
+A 73   2302	*	*	*	*	1832	*	*	*	*	*	*	2645	*	*	3416	1927	*	*	*	73
+       0	*	*	*	*	*	*	3410	0	0	
+
+Q 74   4044	*	*	*	*	*	*	*	*	*	*	*	707	1613	*	*	*	*	*	*	74
+       0	*	*	*	*	*	*	3410	0	0	
+
+Q 75   *	*	*	*	2220	*	2645	*	*	*	*	*	*	1767	*	2031	3522	*	*	*	75
+       0	*	*	*	*	*	*	3410	0	0	
+
+L 76   *	*	*	*	*	*	*	3563	*	524	2651	*	*	4044	*	*	*	*	*	*	76
+       0	*	*	*	*	*	*	3410	0	0	
+
+L 77   *	*	*	*	*	*	*	2773	*	1490	*	3522	*	3416	*	*	*	1658	*	*	77
+       0	*	*	*	*	*	*	3410	0	0	
+
+R 78   *	*	*	*	*	*	*	*	*	3773	*	*	*	3328	274	*	*	*	*	*	78
+       0	*	*	*	*	*	*	2843	0	0	
+
+S 79   *	*	*	*	*	*	*	*	*	*	*	*	*	*	3391	677	1840	*	*	*	79
+       0	*	*	*	*	*	*	1905	0	0	
+
+S 80   *	*	*	*	*	*	*	*	*	*	*	*	3427	*	*	466	2450	*	*	*	80
+       0	*	*	0	*	*	*	1905	0	0	
+
+//
+�HHsearch 1.5
+NAME  13077d2b3643cabf3bccc22d84a0a439
+FAM   
+FILE  13077d2b3643cabf3bccc22d84a0a439
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:03:34 2013
+LENG  199 match states, 199 columns in multiple alignment
+FILT  138 out of 1079 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  6.7 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCCCCCCCCCHHHHHHHHHHHHHHHHHHHHHHHCCHHHHCCCHHHHHHHHHCCCHHHHHHHHHHHHHHHHHHHHCCCCCCCCCCCHHHHH
+HHHHHHCCHHHHHHHHHHHHHHCCCCEEEEEEECCCEEEEEECCCCCCCCCCCCEEEEEEECHHHHHHHHHCCCHHHHHHHHHHHCCCHHHHHHHHHCC
+>ss_conf PSIPRED confidence values
+9868999989221876770999999999989999999999996664655289999999876173348999865779998999860179999999899999
+999871899999999999997477871899997299179984267899666698647987330667688764569999999999665999999998639
+>Consensus
+xxxlpxLpyxxxxLepxgiSxxxlxxHxxkhhxxyVxxlNxxxxxxxlxxxxxxxxixxxxxxxxxxxxxxxagxxxNHxxfwxxLxpxxxxxpxxxLxx
+xIxxxFGSxdxfkxxfxxxAxxxxGsGWxwLvxxxxxLxixxtxnxxxpxxxgxxPlLxiDvwEHAYyldYxnxrxxYixxxwxxxinWxxvxxrxxxx
+>13077d2b3643cabf3bccc22d84a0a439
+AFVQEPLPFDPGALEPYGMSAKTLEFHYGKHHKGYVDNLNKLTQDTELADKSLEDVIRTTYGDAAKVGIFNNAAQVWNHTFFWNSLKPGGGGVPTGDVAA
+RINSAFGSYDEFKAQFKNAAATQFGSGWAWLVLEAGTLKVTKTANAENPLVHGQVPLLTIDVWEHAYYLDYQNRRPDFIDNFLNQLVNWDFVAKNLAAA
+>gi|153939066|ref|YP_001389886.1| Fe/Mn family superoxide dismutase [Clostridium botulinum F str. Langeland]gi|152934962|gb|ABS40460.1| superoxide dismutase, Mn/Fe family [Clostridium botulinum F str. Langeland]gi|295317969|gb|ADF98346.1| superoxide dismutase, Mn/Fe family [Clostridium botulinum F str. 230613]
+---IVAKKYPF-DNVKG-ISLKQLTEHYK-LYDGYVNMINKiwsiPNNSKDFKDSNATfSKLRCIK---L--GESYALDGVKLHELYFQNMT-SGHIPIN
+GPILDKILEDFNSVENFTELFKETGKS--MRGWVVLGIdpLDKKLHIFGSDSHDNGAIWLAYPLLVMDVYEHAYFMDFGTDKRKYMDAFLQ-NVNWNLIN
+NRLGM-
+>gi|121482735|gb|ABM53865.1| chromium (VI) response protein [Ochrobactrum anthropi]
+-YTMKPLSCDPSHIR--GMSERMIISHYENNYGGAVKRLNLIDEKlAELDYENAPGFlINGLK---R--EQLIATNSMILHEVFFDGLGDES--EPEERL
+KNALARDFGSYDRWRAEFIAMGKAlGGGSGWVLLSWspRDGKLVNQWAPDHCHT-LAGGTPILALDMYEHSYHIDYGAKAADYVGVFMA-AINWPSVQQL
+YDDL
+>gi|156057073|ref|XP_001594460.1| hypothetical protein SS1G_04267 [Sclerotinia sclerotiorum 1980]gi|154702053|gb|EDO01792.1| hypothetical protein SS1G_04267 [Sclerotinia sclerotiorum 1980 UF-70]
+-QKVPPLKHDFtKGIPEF-IGPQAFDLSWTAYQKLMVDKLTDATAGIPHlEGRQPKEIAIMTARDPDQAATFNYASMAFNNNFFFDCIQPNPAsePEMSE
+RLRVAIEASFSSVDSLKKEFVITASKMFGPGFVWLMKdRFDSLSLLTTYLAGSPFpgAhyrkqtkdmntEsenltdyhrqrlagppvntvgahgalsker
+kppgGieQTPILCVNTWEHVWIPDYGmgvdnvGGKKVYVENWWN-VIDWSVVADNAA--
+>gi|229008442|ref|ZP_04165897.1| Superoxide dismutase [Bacillus mycoides Rock1-4]gi|228752835|gb|EEM02408.1| Superoxide dismutase [Bacillus mycoides Rock1-4]
+-HRLPELSYDFHELAAF-ISPKESQLNYFEIHKWYVENLNKALSKyISYQQYSVTELMMKLKYLPGDLrqDVKKYGGMHFNYSVFWKVLTPNSRG-PIGT
+LKNAIRDTYRDFGVFKKEFTNIALDLNASdAWCWLLVQKGNLKIMKTYGYDCPISKDTYPVLCLKLWRVSSLFVKQKQNLKYINDFWN-FINWEEAENRY
+L--
+>gi|149241770|ref|XP_001526352.1| hypothetical protein LELG_02910 [Lodderomyces elongisporus NRRL YB-4239]gi|146450475|gb|EDK44731.1| hypothetical protein LELG_02910 [Lodderomyces elongisporus NRRL YB-4239]
+----------NADFEGL-FTHKALNELWFKQGEQLIQNLNQHIAQSaGLLehSadhePTVEELLAITTNKPHLHNVHKAAGRLYALTSFFENLRPMQTPl
+spvkierpsqealfqtptddfinQPTdPNLVAWISSSFGSVKEFRNLLINTAKAVKGDGTVWLVAqSkfshsnrpgasqqDyhhhpnhpnhhaspsfSEL
+ALVVTYNGGVVHDveragqlsrmreifkdkermakdeeevgesksekttealkskkevnelqlgsvqeaedrvafsnRKLIPALAIDASPRTYLVDYGVy
+GKQKYLENCWE-CIDWDVVMRRL---
+>gi|294948608|ref|XP_002785805.1| superoxide dismutase, putative [Perkinsus marinus ATCC 50983]gi|239899913|gb|EER17601.1| superoxide dismutase, putative [Perkinsus marinus ATCC 50983]
+-----DVPFStYANFFPL-VQPKALSYHYRSICGRDTARFNTGLRQLsLLPNlpthvrhMgfdallyfcEYENILSEEI--PLPLcdKLVYYGNSYIYHE
+IYFNCLRATGMyddfEEPlsleSSLLVQDITNAFGGMKELFEELLEAALSLDGYGWVWLLSlPEG-LSVITSQDYDGIHGDQIYAIFNIDLWEHAYIESH
+GANVEAYIKAWWG-AVDWNKLDVQY---
+>gi|238061592|ref|ZP_04606301.1| iron/manganese superoxide dismutase [Micromonospora sp. ATCC 39149]gi|237883403|gb|EEP72231.1| iron/manganese superoxide dismutase [Micromonospora sp. ATCC 39149]
+-YSLPDMPYAYGALKPA-MPGEILTLHRSKHHTAYAKGGNDALEQlAEVRDKgDFAGLVGLEK------TFAFTLSGHVPYSIFWPSG------------
+----------------------------------------------------------------------------------------------------
+-
+>gi|342180748|emb|CCC90224.1| conserved hypothetical protein [Trypanosoma congolense IL3000]
+-------------------------------------------------------------------RAHFLASEDFCHSLVKRCTRRVACPVP-AEWKG
+IVSRQFASEAALEAELVFRAANRREAGWTWLVYdnqrpEEQRLVVVNMPGNRTPLLLGLWPLGVVDMTDKAVV---------------------------
+----
+>gi|58267144|ref|XP_570728.1| hypothetical protein CNE01360 [Cryptococcus neoformans var. neoformans JEC21]gi|57226962|gb|AAW43421.1| hypothetical protein CNE01360 [Cryptococcus neoformans var. neoformans JEC21]
+-------------------------------------------------GLDITDLLSTTAKDRSLGLAYNYGALLANNSFFLESLNAGEPIEPSKVF--
+---------TPVLEKLEGYAEGIIGGGWLWIARtGdhEAQIDIIPTFGSGTLLVSgraqrsgavfeeplasspeppvvtsdmtgpspvsaipettappsv
+asqgsnlkrGssiyPAPLAVLNLFELAWLGdKYGVwAKRQYVRDWIK-SVDWKKVEERNS--
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+A 1    2676	*	5915	5741	5630	5527	*	4683	3064	*	3875	4643	2449	5409	5754	2796	3437	4711	*	*	1
+       157	3277	*	1908	447	*	*	4796	1433	0	
+
+F 2    4238	*	*	*	1675	6066	2072	6103	4740	5592	*	*	*	6295	*	*	*	4395	*	2011	2
+       0	*	*	0	*	*	*	6009	1000	0	
+
+V 3    4697	*	6301	3253	6787	4934	4466	6572	3073	5615	6061	6052	5291	4452	4019	3000	2045	4137	*	5659	3
+       0	*	*	*	*	*	*	6116	0	0	
+
+Q 4    7161	*	*	*	5014	*	*	3463	7050	798	5275	*	4114	4086	5098	5628	6136	3599	*	*	4
+       16	6488	*	1000	1000	*	*	6168	1000	0	
+
+E 5    5235	*	*	5439	*	*	*	5204	3507	5833	5354	*	744	6841	5074	*	3665	3886	*	6445	5
+       11	*	6995	*	*	*	*	6217	0	0	
+
+P 6    3587	*	2684	2793	*	5688	*	*	2712	6739	6926	5157	2162	5147	5807	4844	3583	6457	*	*	6
+       0	*	*	*	*	0	*	6284	0	1000	
+
+L 7    *	*	*	6611	6046	6508	7440	4072	4786	381	5790	*	5025	*	*	*	*	4452	*	*	7
+       13	*	6840	*	*	*	*	6343	0	0	
+
+P 8    5212	*	3710	4035	*	6147	*	6443	3532	5470	*	5983	962	5240	5440	3557	5198	6602	*	*	8
+       44	5053	*	869	1145	0	*	6338	1202	1000	
+
+F 9    6358	6316	*	6280	2440	*	5285	*	*	4497	*	4597	*	*	6303	6596	*	*	4926	711	9
+       13	*	6840	*	*	*	*	6343	0	0	
+
+D 10   2353	*	2425	4207	*	3995	5595	*	4296	4061	*	2610	4167	5028	6768	3529	*	5400	*	*	10
+       288	2544	6709	1099	907	*	0	6338	2028	1000	
+
+P 11   4863	*	5644	3491	3343	5894	*	6404	3336	3987	*	4768	4126	5684	5282	5082	4500	*	*	1496	11
+       183	3737	4503	1973	424	0	*	6426	1427	1066	
+
+G 12   3858	*	2207	3901	*	4564	4664	*	3420	*	*	2360	5572	4249	4637	3342	4326	*	*	6039	12
+       31	5565	*	1051	951	0	*	6350	1072	1244	
+
+A 13   1535	*	3142	4029	5699	2190	4820	6303	5596	5769	*	3900	*	6657	6833	4005	*	7173	*	*	13
+       16	6499	*	2322	322	*	*	6453	1018	0	
+
+L 14   6833	4928	*	*	5210	6303	*	3397	*	494	5667	6654	*	*	6675	4984	*	5293	*	5883	14
+       17	*	6439	*	*	*	*	6453	0	0	
+
+E 15   3942	*	4835	1140	6261	4482	6402	*	4285	3722	5035	4061	4130	7214	6446	4779	5426	5383	*	*	15
+       69	*	4417	*	*	*	0	6430	0	1016	
+
+P 16   5138	*	5484	6644	*	3065	*	*	4631	6300	*	4621	552	7229	5519	6022	*	*	*	*	16
+       81	4908	5563	1755	507	1970	425	6366	1150	1360	
+
+Y 17   3863	*	4562	*	2293	4019	3848	4496	5436	2640	*	5825	*	*	*	7712	6180	2768	*	2806	17
+       3580	*	126	*	*	280	2504	6469	0	1391	
+
+G 18   *	*	*	*	*	129	*	*	*	*	*	*	*	*	*	3551	*	*	*	*	18
+       0	*	*	*	*	0	*	3539	0	5765	
+
+M 19   *	*	*	*	3388	*	*	1048	*	2065	4283	*	*	*	*	*	*	3740	*	4167	19
+       0	*	*	*	*	*	*	6572	0	0	
+
+S 20   7076	6425	2549	*	*	5492	*	*	*	*	6157	5226	5952	6322	7385	517	6197	*	*	*	20
+       0	*	*	*	*	*	*	6572	0	0	
+
+A 21   2068	*	4339	2569	*	4040	6197	*	4216	5105	*	4704	3113	4864	3403	4019	4875	7027	*	*	21
+       12	*	6940	*	*	*	*	6572	0	0	
+
+K 22   4102	*	5265	1926	*	*	5217	*	2309	5954	5789	3615	*	2808	3209	*	4747	7289	*	6207	22
+       0	*	*	*	*	*	0	6549	0	1006	
+
+T 23   3118	*	*	5097	*	3610	*	2786	*	3778	6564	6513	*	2884	*	5401	1507	5425	*	*	23
+       0	*	*	1000	1000	0	*	6549	1006	1006	
+
+L 24   *	*	*	*	3100	*	*	3134	*	1446	2162	5736	*	*	*	6019	*	2983	*	5776	24
+       12	*	6940	*	*	*	*	6572	0	0	
+
+E 25   6442	*	3215	1927	5984	6819	5820	6569	2925	6153	5676	2647	*	3946	4260	4375	4206	*	*	5601	25
+       0	*	*	*	*	*	0	6566	0	1006	
+
+F 26   5132	6833	5643	3879	3755	*	*	3150	*	1710	5581	4802	6832	7162	6978	4378	3470	3573	6721	3837	26
+       0	*	*	*	*	*	0	6774	0	1006	
+
+H 27   3393	*	6535	*	*	*	450	5965	*	4477	*	5993	*	5671	*	5517	6576	4893	*	*	27
+       0	*	*	*	*	*	0	6774	0	1006	
+
+Y 28   5564	*	*	*	3496	*	1585	*	*	4688	*	*	*	*	6170	5752	7085	7100	2407	1823	28
+       57	*	4684	*	*	*	0	6793	0	1006	
+
+G 29   5442	6259	2650	3553	4015	3243	4615	6569	4119	4827	*	4525	*	4433	6367	2978	2734	5966	*	6293	29
+       118	6465	3896	1000	1000	284	2485	6750	1028	1326	
+
+K 30   5093	*	3518	4102	5159	4140	*	6850	1201	5928	7185	4651	*	4226	3814	5558	5575	4292	*	5958	30
+       50	*	4888	1734	516	331	2287	6653	1087	1496	
+
+H 31   *	*	*	7027	6093	*	752	4626	6277	3074	*	5036	*	6201	5355	7128	6723	6898	4983	3532	31
+       0	*	*	*	*	152	3321	6700	0	1293	
+
+H 32   6363	5694	7123	*	*	5350	1159	*	*	4699	*	*	*	2426	6208	6842	*	5649	*	2170	32
+       12	*	6925	*	*	0	*	6773	0	1000	
+
+K 33   2865	*	4681	4144	*	4191	6834	7111	2749	4128	*	3757	*	2096	3588	5279	4865	4668	*	*	33
+       11	7060	*	0	*	0	*	6958	1000	1000	
+
+G 34   2124	*	4523	5478	6638	1724	5250	7043	6508	5635	*	4743	*	5381	5375	4432	3112	5710	6313	4384	34
+       0	*	*	*	*	*	*	6863	0	0	
+
+Y 35   4479	5244	5746	*	5621	*	6116	6516	7043	3091	4868	*	*	*	*	5736	*	5159	*	603	35
+       13	6800	*	2585	263	*	*	6863	1002	0	
+
+V 36   5567	6803	*	*	6088	*	*	3191	6477	3186	6085	*	*	*	6369	*	3604	705	*	8804	36
+       12	*	6971	*	*	*	*	6864	0	0	
+
+D 37   3716	*	2212	3164	*	5963	*	5721	2836	6762	*	2375	*	4537	6748	4687	3288	5577	*	7643	37
+       11	*	7060	0	*	0	*	6853	1006	1006	
+
+N 38   6352	6793	6725	5773	7062	2944	6467	7089	2453	*	6900	1535	*	5369	2776	5329	3975	*	*	*	38
+       0	*	*	*	*	0	*	6860	0	1000	
+
+L 39   3456	*	*	7207	3681	7380	*	5061	*	728	5745	*	*	*	6886	5684	4432	4696	*	4238	39
+       9	*	7354	*	*	*	*	6864	0	0	
+
+N 40   *	5819	*	*	*	*	*	7336	*	6906	*	233	*	6102	6556	5216	4439	6800	*	6674	40
+       23	*	5964	*	*	*	0	6863	0	1000	
+
+K 41   2194	*	3481	2987	*	*	5246	6972	2727	4381	*	3944	*	3566	4677	4297	3676	6076	*	*	41
+       50	4871	*	1691	535	493	1789	6947	1302	1122	
+
+L 42   1755	6801	5603	5063	6461	5310	4444	3094	6971	1945	*	6800	6907	6013	5761	5403	5190	3895	*	7081	42
+       68	5793	5154	1953	431	*	0	6863	1078	1000	
+
+T 43   5455	7082	5534	3850	6743	*	5894	3642	6120	1386	5809	5034	*	4535	5298	*	3261	3056	6601	5392	43
+       69	5253	5591	772	1270	291	2452	6885	1169	1230	
+
+Q 44   2878	*	5460	2098	*	3904	5903	7059	2884	4265	*	4058	5628	4027	3973	4093	4773	5564	*	7040	44
+       345	4126	2686	1339	725	1968	426	6963	1393	1146	
+
+D 45   5412	6583	3038	4972	*	2063	7178	4822	2538	5842	7030	5692	5089	2954	5299	4455	4219	6880	6922	6123	45
+       694	1533	4772	378	2119	3129	175	6895	3113	2230	
+
+T 46   3863	*	4936	3721	6895	5435	*	4237	4089	3559	*	5664	2934	4877	6076	2814	2125	5394	*	*	46
+       207	3864	3946	0	*	183	3069	6829	1376	2315	
+
+E 47   3507	*	3350	1878	7558	4057	*	7188	3337	6390	6688	4127	3540	3213	5738	4636	5856	6938	*	6193	47
+       87	5753	4642	1423	673	2480	285	6768	1104	1563	
+
+L 48   4258	*	*	5443	3134	6490	5788	4338	*	1149	6706	4441	6850	5960	6825	5802	5219	7273	5580	3059	48
+       112	4845	4642	890	1119	621	1515	6857	1180	1797	
+
+A 49   2766	*	3569	2243	5611	4451	5542	*	4299	4645	*	5513	5537	3677	3507	3972	5134	5350	*	4242	49
+       97	5331	4637	664	1438	4072	88	6780	1102	1530	
+
+D 50   3522	*	2494	3071	6898	3121	6438	5557	3512	6587	*	3351	*	4451	5291	3186	4686	5819	7106	5698	50
+       200	3429	4759	2142	371	3072	183	6865	1634	1791	
+
+K 51   2558	*	5704	5230	6799	4483	5063	5998	2410	3460	3525	5802	5188	3863	3489	4792	5418	6550	*	4446	51
+       90	4312	6623	1947	433	828	1196	6677	1391	1941	
+
+S 52   4369	6238	3218	3744	6594	5009	5701	6620	*	5151	*	2830	4730	5946	4542	2021	2757	6148	*	6453	52
+       117	3680	*	2093	385	3293	155	6764	1516	1537	
+
+L 53   4003	7847	4924	5637	4815	6443	*	3093	4277	1743	7526	*	3353	6060	6484	5337	5152	2825	*	4568	53
+       77	5145	5411	623	1511	1757	506	6772	1153	1477	
+
+E 54   2804	6950	5300	2046	3586	5849	6302	4994	3541	5093	*	4419	4422	5367	6758	3942	3803	5873	*	4619	54
+       82	4178	*	2795	224	1134	877	6784	1554	1478	
+
+D 55   4063	7027	2259	2358	6471	3733	6691	*	4483	6893	*	3818	*	3184	7609	2964	4414	6420	*	7282	55
+       71	4387	*	1558	599	296	2429	6930	1441	1234	
+
+V 56   5932	*	4513	6884	4631	5590	*	1901	5999	1721	5444	6989	5921	4180	5959	6612	4552	3254	*	7119	56
+       72	4595	7077	479	1822	*	0	6878	1291	1000	
+
+I 57   4309	7349	*	7043	4549	*	*	1738	4820	1994	4020	5425	*	5724	6851	5621	4500	3122	7448	6750	57
+       7	7661	*	0	*	1114	895	6877	1004	1056	
+
+R 58   2966	*	7107	5654	6578	4195	4556	5009	3107	3353	4956	5042	6993	5023	2709	3005	3882	5775	*	5178	58
+       57	7656	4885	0	*	*	0	6875	1000	1000	
+
+T 59   5107	5972	3709	3244	6583	4739	3674	5044	3605	3762	5862	2823	7262	4270	3850	3162	4694	5985	6917	*	59
+       21	6814	7449	0	*	1157	858	6843	1002	1298	
+
+T 60   3845	*	*	3788	5022	6229	*	2993	6158	1926	6571	7287	6308	4231	6383	3339	2967	4215	5087	7301	60
+       161	5588	3565	2184	359	1857	466	6881	1098	1183	
+
+Y 61   2352	6734	4223	4355	5218	6169	4873	5232	2844	5525	7091	3495	6154	4546	6043	3244	4668	4346	*	3884	61
+       606	5442	1643	1041	960	*	0	6882	1096	1786	
+
+G 62   3175	6698	5337	4623	5823	3424	5308	*	3173	3772	4830	3047	*	4328	3299	3445	4249	6696	6095	5801	62
+       15	6592	*	0	*	5551	31	6269	1064	3736	
+
+D 63   4799	*	2415	5339	5442	*	6787	3594	4851	2474	5248	4104	6733	4068	6024	3076	*	3210	6050	6408	63
+       13	*	6821	*	*	1724	520	6284	0	3687	
+
+A 64   3898	6088	4278	5325	*	3433	*	6980	5179	5444	*	4967	1613	3962	2883	4426	4093	*	*	5223	64
+       77	*	4271	*	*	1022	978	6524	0	2991	
+
+A 65   2722	*	3661	2353	7099	3861	5286	7120	3567	4875	*	5799	4586	4738	4083	3416	3651	5887	*	*	65
+       638	3952	1771	1360	712	2242	343	6860	1411	2352	
+
+K 66   3291	*	2696	3354	6203	3784	4618	*	2629	3907	*	4082	4332	3120	4979	6436	5405	*	*	*	66
+       271	4556	2955	2428	297	4083	88	6073	1154	3641	
+
+V 67   2498	*	4564	*	6626	5423	4822	2679	5963	2321	*	*	5432	4566	3988	4707	6373	3211	6361	4620	67
+       1079	1077	4247	1064	939	216	2846	6081	2934	3928	
+
+G 68   2528	*	4520	3438	5682	3261	4696	5824	3162	4067	5752	5183	3926	5792	4471	4385	4173	4235	*	6998	68
+       70	7499	4576	2310	325	453	1892	7007	1050	1667	
+
+I 69   3629	*	*	3892	4151	*	6670	2168	*	1950	6723	*	*	6668	*	6663	4178	2263	*	6428	69
+       45	5609	6644	414	2003	0	*	6942	1098	1453	
+
+F 70   4663	*	*	*	1648	6557	3643	4267	3383	4813	*	4693	*	5242	2860	5411	4944	4744	6776	4009	70
+       0	*	*	*	*	0	*	6912	0	1010	
+
+N 71   4915	6994	7544	4056	2417	*	3608	4659	5049	6208	*	1304	*	5548	7767	4911	6813	*	6566	4124	71
+       17	*	6399	*	*	*	*	6928	0	0	
+
+N 72   3291	5514	*	6556	4205	5209	4225	7063	*	3693	6111	1431	*	4719	5377	6163	5409	*	*	2635	72
+       0	*	*	*	*	0	*	6941	0	1029	
+
+A 73   1279	7182	6818	*	5831	1932	*	5181	*	3485	5857	5138	*	*	7392	4212	4272	6814	*	6706	73
+       0	*	*	*	*	*	*	6931	0	0	
+
+A 74   2761	7022	5613	*	*	1056	6690	*	*	7392	*	4211	*	*	*	1933	6415	*	*	*	74
+       55	*	4730	*	*	*	*	6931	0	0	
+
+Q 75   6065	*	*	3798	*	1181	4803	6803	6599	4759	3867	6359	*	2300	5778	3867	*	6709	*	*	75
+       9	*	7411	*	*	0	*	6859	0	1257	
+
+V 76   2755	*	5673	*	5404	*	1791	3144	*	3531	4413	*	*	6928	*	5141	6143	2788	*	3689	76
+       87	*	4102	*	*	0	*	7004	0	1000	
+
+W 77   5309	*	*	*	2835	*	4039	2876	3892	2807	*	*	*	*	6431	5154	*	2942	3021	2896	77
+       10	*	7151	*	*	223	2802	6991	0	1400	
+
+N 78   5525	5668	*	*	*	*	*	*	*	2348	6647	527	7556	*	*	5133	6179	*	*	6534	78
+       0	*	*	*	*	0	*	6984	0	1053	
+
+H 79   *	*	*	*	*	*	446	*	*	4145	*	2852	*	6452	*	*	6838	*	*	4305	79
+       0	*	*	*	*	*	*	7002	0	0	
+
+T 80   3912	5030	4060	2344	*	5920	3365	5294	6530	*	*	3647	*	5787	6529	1963	3222	6130	*	6697	80
+       17	*	6452	*	*	*	*	7002	0	0	
+
+F 81   6871	*	*	*	1584	*	7062	3204	*	1443	5082	*	*	6975	6511	6223	*	5082	6629	3783	81
+       0	*	*	*	*	*	0	6989	0	1041	
+
+F 82   6404	*	*	*	958	*	*	*	*	5561	*	*	*	*	*	*	*	4684	5513	1353	82
+       0	*	*	*	*	*	0	6989	0	1041	
+
+W 83   *	*	*	6720	1407	*	*	*	6605	3788	5584	6501	*	*	5417	*	*	6802	1138	6359	83
+       0	*	*	*	*	*	0	6989	0	1041	
+
+N 84   3772	7080	3667	2095	*	4932	5016	*	2865	4776	7157	3670	5954	3775	4154	3501	5035	6221	*	7358	84
+       0	*	*	*	*	0	*	6989	0	1041	
+
+S 85   5784	2886	*	6953	7050	3416	6960	3718	*	7305	5713	1787	*	4096	*	2403	4444	4744	*	7090	85
+       0	*	*	*	*	*	*	7002	0	0	
+
+L 86   *	*	*	*	4907	6098	*	3514	*	768	2011	*	*	*	*	*	6615	5696	*	*	86
+       67	4457	*	244	2684	*	*	7002	1316	0	
+
+K 87   2372	5083	5357	*	7604	2967	*	5690	3510	*	*	4971	7500	4911	3435	2445	2910	4919	*	*	87
+       154	4594	4061	1596	579	*	*	6999	1264	0	
+
+P 88   4246	*	5777	5954	6456	3435	*	*	4250	7296	*	4612	734	7612	6507	4789	4560	7340	*	7104	88
+       239	2939	5505	1059	943	391	2074	6977	1919	1487	
+
+G 89   5248	7206	4405	3471	6912	2778	5590	*	2726	7620	6197	2337	4631	4929	5070	3749	4181	5290	5844	6445	89
+       202	5313	3242	1576	590	519	1726	6956	1224	1325	
+
+G 90   3589	7529	4342	3559	*	1537	*	*	4170	*	6840	4404	3520	5308	6483	3022	4670	5144	*	7161	90
+       205	3941	3898	2254	339	501	1768	7056	1451	1967	
+
+G 91   4608	6457	5945	4285	6538	1699	6757	*	3282	*	5609	4142	3957	5009	6096	2865	3548	5663	*	5683	91
+       206	3408	4684	1147	866	1350	719	6845	1605	1818	
+
+G 92   3853	*	4906	4518	*	1727	*	4443	4038	4613	*	3730	4523	4090	5348	3811	3272	7044	*	5672	92
+       223	3467	4239	2426	297	118	3667	6605	1684	1794	
+
+V 93   4146	*	5193	2618	4935	4266	5504	5038	3601	4057	6195	3598	4627	3366	3987	4365	3330	5114	*	*	93
+       64	4846	6864	262	2590	0	*	6947	1353	1388	
+
+P 94   4050	5634	5294	5786	*	5978	*	4037	6166	4670	6384	7289	703	5063	5625	5730	5746	5283	*	*	94
+       194	4068	3920	2871	212	*	0	6996	1415	1000	
+
+T 95   4368	*	3886	3407	6530	3323	7072	5236	3810	7253	*	3692	3812	6427	5141	2068	3519	5041	*	5469	95
+       70	4634	7197	1916	444	608	1541	6570	1226	1605	
+
+G 96   3103	*	3841	3648	*	1345	7369	6975	4591	*	6908	5294	3613	6114	3977	4287	5166	*	*	6340	96
+       114	3904	6765	3917	99	473	1838	6950	1449	1222	
+
+D 97   3031	*	4197	2576	5945	4611	5884	*	3401	3774	*	4010	3817	4153	3420	4802	4178	5854	*	5468	97
+       65	4821	6897	1672	543	958	1043	6859	1227	1102	
+
+V 98   5811	*	*	7832	4000	*	*	3067	*	641	6166	*	*	*	*	6698	5875	3744	5164	6422	98
+       10	*	7196	*	*	1045	956	6846	0	1092	
+
+A 99   2659	*	7703	4576	*	5577	6973	6217	2307	2241	4364	5691	*	4517	3353	4912	5753	4715	7121	4941	99
+       21	6093	*	2000	415	*	0	6889	1055	1087	
+
+A 100  2787	6622	2885	2533	*	4409	6431	*	2427	6104	7061	4075	5515	4185	5032	4144	5412	5885	*	7280	100
+       32	5527	*	0	*	*	0	6889	1089	1087	
+
+R 101  1463	*	5084	3773	7163	5113	6127	4700	3090	3062	6008	*	*	3659	4697	5182	6270	6550	5358	*	101
+       23	7008	7008	2202	354	911	1094	6889	1082	1087	
+
+I 102  6659	*	*	*	4792	*	*	778	*	2367	4456	*	*	*	6176	*	6471	3230	*	*	102
+       26	5819	*	0	*	1006	994	6892	1145	1077	
+
+N 103  4081	*	3411	2210	*	5659	4705	5484	3866	5326	*	2896	*	3845	4103	4475	3415	4616	*	6041	103
+       0	*	*	*	*	*	0	6903	0	1006	
+
+S 104  3421	5642	3904	2539	7078	5946	6474	*	2562	4687	6771	4729	*	3315	3147	3330	6243	5574	*	6534	104
+       25	6845	6907	1000	1000	*	0	6903	1011	1006	
+
+A 105  3624	*	2117	4543	7441	7109	5319	*	4085	*	*	4227	*	2689	6119	2415	3827	7095	5812	4555	105
+       0	*	*	*	*	1094	912	6899	0	1069	
+
+F 106  *	*	*	*	463	*	*	4790	*	4663	6540	*	*	*	*	*	*	*	3988	2996	106
+       23	6007	*	634	1491	*	0	6903	1066	1006	
+
+G 107  5978	*	*	4554	*	463	*	5353	5135	5785	*	6958	*	5743	6055	3689	7401	6219	*	7257	107
+       20	6191	*	1585	585	*	0	6854	1046	1006	
+
+S 108  *	*	3489	6907	*	3324	*	*	6713	*	*	4214	*	6894	*	543	4484	*	*	*	108
+       20	6191	*	1585	585	*	0	6854	1046	1006	
+
+Y 109  6253	6891	*	5883	1762	*	*	4306	5904	2267	4158	*	*	*	*	6224	5902	2697	5378	2973	109
+       12	6897	*	0	*	0	*	6928	1011	1006	
+
+D 110  4225	*	1405	1699	*	4824	7023	6968	4749	7490	*	4955	5732	6386	5963	4707	4924	5898	*	*	110
+       0	*	*	*	*	*	*	6993	0	0	
+
+E 111  2498	*	6604	2914	7077	4479	6044	6968	3457	7320	5916	2138	6275	4006	4094	4017	4480	5418	*	*	111
+       0	*	*	*	*	*	*	6993	0	0	
+
+F 112  6742	5477	*	*	875	*	*	7091	*	2031	4973	*	*	*	*	*	*	5085	3290	7088	112
+       0	*	*	*	*	*	*	6993	0	0	
+
+K 113  *	*	*	4348	5739	7519	5840	4306	1314	3650	5901	*	*	3545	2388	6572	5295	4397	*	*	113
+       0	*	*	*	*	*	*	6993	0	0	
+
+A 114  2881	*	3336	2101	5760	*	*	*	3042	5391	7286	3680	*	3776	5575	3236	3575	*	*	*	114
+       0	*	*	*	*	*	*	6993	0	0	
+
+Q 115  4181	*	3730	2116	6968	6271	5392	6200	3137	3375	*	4375	*	2806	5080	5360	4012	5056	*	4908	115
+       0	*	*	*	*	*	*	6993	0	0	
+
+F 116  5872	*	*	*	694	*	*	4319	*	2370	3867	*	*	6886	7025	7355	*	5037	*	*	116
+       0	*	*	*	*	*	*	6993	0	0	
+
+K 117  5400	6589	7047	4275	7384	5234	6580	3542	3246	2984	4525	3509	*	5734	4397	3229	2562	3782	*	*	117
+       0	*	*	*	*	*	*	6993	0	0	
+
+N 118  1930	*	4069	3304	6634	6433	*	5834	3124	5003	*	3471	*	4602	4002	3365	3521	6196	*	*	118
+       12	6886	*	0	*	*	*	6993	1000	0	
+
+A 119  1888	7857	*	4844	*	*	5680	4176	3602	3911	4888	7047	*	5199	4598	3358	2589	3810	*	5499	119
+       13	*	6794	*	*	*	*	6993	0	0	
+
+A 120  665	7017	*	*	6536	2684	*	*	*	4727	*	6528	*	*	*	3679	4255	5940	*	*	120
+       45	*	5018	*	*	0	*	6980	0	1013	
+
+A 121  2691	*	4867	4063	*	6999	6943	4476	3576	2013	4767	4597	6931	6762	*	3683	3256	3631	*	*	121
+       35	*	5402	*	*	*	0	7019	0	1210	
+
+T 122  2460	*	5393	5900	*	2274	*	*	4489	6554	5583	3552	*	6113	5602	1932	3152	*	*	*	122
+       108	5182	4486	0	*	223	2804	7010	1170	1418	
+
+Q 123  5931	5932	*	*	7669	5795	3897	2636	6353	2473	3992	5197	6734	4389	3403	4348	4886	2390	*	6887	123
+       134	5782	3828	2297	328	2657	249	6978	1077	1372	
+
+F 124  4044	*	6365	4416	1271	5643	5749	4683	4323	4864	*	5464	5058	2787	5059	4657	5777	6705	*	6787	124
+       69	4838	6419	309	2374	0	*	6818	1270	1854	
+
+G 125  3689	6734	*	5647	6948	343	*	*	*	*	5319	6455	*	*	*	4236	7167	*	*	*	125
+       0	*	*	*	*	*	0	6969	0	1016	
+
+S 126  3910	6959	4563	6525	*	4734	6785	4739	6708	*	*	4725	5021	4823	4180	829	5153	5838	*	6516	126
+       33	6074	6994	0	*	0	*	6969	1042	1016	
+
+G 127  4817	6584	6279	*	*	101	*	*	*	*	*	*	*	*	6780	*	*	*	*	*	127
+       12	*	6962	*	*	*	0	6912	0	1004	
+
+W 128  *	6968	*	*	4059	*	*	*	*	*	*	*	*	*	7107	*	6349	6512	278	3697	128
+       14	6723	*	1000	1000	*	0	6899	1003	1075	
+
+A 129  2126	4565	6222	6968	*	3128	*	3904	*	3840	*	7824	*	*	6776	*	3390	1564	6792	*	129
+       13	6776	*	2000	415	1014	986	6899	1014	1075	
+
+W 130  7117	*	*	*	3376	*	*	3512	*	4992	6760	*	*	*	*	*	6749	3969	633	4321	130
+       0	*	*	*	*	*	0	6980	0	1006	
+
+L 131  5702	7509	*	*	7080	*	*	5069	*	238	5172	*	6763	*	*	6810	5965	6401	7186	6726	131
+       43	5889	6362	0	*	*	0	6980	1084	1006	
+
+V 132  3390	4450	6738	*	6792	2914	*	5018	*	4157	6978	*	*	*	6624	3774	6021	1087	7322	4738	132
+       173	3223	7406	119	3663	717	1352	6861	1823	1115	
+
+L 133  4217	5096	3608	4308	4835	6553	6849	3922	4350	3361	7403	5444	*	3938	4721	5289	4539	3328	4178	2623	133
+       3479	136	*	935	1068	0	*	6983	6257	1062	
+
+E 134  4642	*	3828	3541	5169	4127	5235	7279	3032	4223	*	4627	3253	3674	3394	3568	3921	5384	*	5909	134
+       161	3536	5685	1858	466	605	1546	6954	1654	1276	
+
+A 135  5079	*	2093	2995	5335	3956	4990	*	4274	6425	5527	3884	7796	4844	4870	3059	3553	4867	6921	5973	135
+       104	4026	6893	3136	174	388	2085	6987	1488	1192	
+
+G 136  5152	6314	4003	6118	7165	1416	5966	*	2343	*	*	3537	6028	4277	4778	4084	4669	*	*	*	136
+       124	4083	5409	446	1911	0	*	6971	1497	1067	
+
+T 137  7476	*	4983	4013	5702	6048	5478	*	1905	5529	6736	3793	5261	4321	2307	3634	3344	7079	6754	*	137
+       50	5274	6915	1216	812	0	*	6970	1201	1136	
+
+L 138  5880	*	*	*	4001	*	*	4524	*	318	5514	*	7117	*	7186	7080	*	4977	*	*	138
+       13	*	6784	0	*	0	*	6980	1006	1006	
+
+K 139  3544	6542	4136	3534	4793	4147	4212	4981	3300	4605	7399	5148	*	4141	3576	3081	4826	3849	*	4572	139
+       0	*	*	*	*	0	*	6990	0	1003	
+
+V 140  5909	*	*	7189	5296	*	*	1313	*	2674	7564	3433	*	6798	6550	5937	6138	2204	*	5220	140
+       0	*	*	*	*	*	*	6993	0	0	
+
+T 141  4903	6684	7583	5780	3967	*	5210	2508	7181	2706	3917	5246	*	5292	7091	4732	3528	2174	*	4827	141
+       12	*	6952	*	*	*	*	6993	0	0	
+
+K 142  4304	7088	6039	5162	5221	3907	7366	6797	4121	4673	*	3194	3480	3520	5212	3223	2387	5232	4166	*	142
+       38	*	5272	*	*	*	0	6980	0	1006	
+
+T 143  4397	3825	*	*	5029	5475	6716	4551	7022	4650	4405	6701	6923	*	6101	3369	1050	4620	*	5109	143
+       10	7210	*	0	*	408	2021	6999	1005	1220	
+
+A 144  3772	7338	3694	4319	4069	5017	3932	7336	3412	5295	7134	4718	2999	4042	5553	3771	5554	6874	6794	2763	144
+       33	6790	6202	0	*	*	0	6980	1013	1006	
+
+N 145  3981	*	2319	4474	6665	3976	6171	*	5549	3938	*	1136	7003	5660	*	5884	6706	6915	*	*	145
+       0	*	*	*	*	721	1346	6974	0	1114	
+
+A 146  2216	*	4533	5303	*	3834	2565	*	5941	5711	*	3601	*	1853	*	4895	6429	6454	*	5273	146
+       0	*	*	*	*	*	0	6956	0	1006	
+
+E 147  4931	6845	1517	3720	5799	2149	4327	7367	*	*	*	3813	*	3765	5674	4470	6176	*	*	6550	147
+       51	*	4844	*	*	*	0	6899	0	1006	
+
+N 148  6563	3966	4290	7261	5979	5834	4356	4773	5509	4371	6723	2234	4951	5934	*	2742	2126	5088	*	*	148
+       10	7229	*	2158	366	0	*	6870	1057	1293	
+
+P 149  5294	6522	*	7318	6105	3784	*	4521	6892	3764	6130	4520	832	6763	5936	6729	5700	3822	*	*	149
+       33	*	5472	*	*	*	*	6912	0	0	
+
+L 150  3947	6824	6495	5856	4335	7052	4167	2790	*	1773	5236	5812	7501	4672	*	5699	4682	3292	*	3342	150
+       132	4030	5253	333	2278	0	*	6949	1430	1148	
+
+V 151  4740	6034	4629	5297	4281	4112	7314	4132	4714	3850	3143	5178	4224	4557	7434	3405	3389	2905	*	4818	151
+       400	2092	7045	4436	68	768	1276	6730	2633	1161	
+
+H 152  4093	*	3531	3860	4601	3804	4746	5661	4317	3815	7605	4796	4312	5186	4351	3465	4199	4326	3498	4518	152
+       279	2714	5419	4128	85	0	*	6881	2093	1144	
+
+G 153  5831	7872	3396	4709	*	974	*	6150	4437	6821	5445	3589	*	4931	5970	3909	4763	*	*	6846	153
+       432	2206	4576	3637	121	0	*	6870	2550	1107	
+
+Q 154  4388	5794	4764	5389	3834	3832	4862	3833	4088	2152	5032	5063	5315	4987	5255	3897	3902	5076	*	4722	154
+       62	4707	7978	615	1526	0	*	6756	1304	1292	
+
+V 155  5491	6979	*	4842	6051	6537	3683	2345	3963	4205	7177	5599	5484	6342	4869	6297	2762	2555	5795	3807	155
+       18	6340	*	0	*	0	*	6767	1032	1000	
+
+P 156  4241	*	*	*	*	*	*	4602	*	7134	*	6984	223	*	*	7549	7227	5492	*	*	156
+       15	*	6625	*	*	*	*	6733	0	0	
+
+L 157  6364	*	*	*	7185	*	*	1327	*	1055	5873	*	7510	*	7543	*	*	3941	*	6957	157
+       0	*	*	*	*	*	0	6747	0	1018	
+
+L 158  5379	*	*	*	3376	5703	*	3217	*	638	4377	*	*	*	*	*	*	4336	6293	*	158
+       11	*	6996	*	*	*	0	6747	0	1018	
+
+T 159  2290	2874	*	6286	7160	2302	*	4471	*	*	*	5032	6233	*	*	5517	2858	2412	*	*	159
+       0	*	*	*	*	912	1094	6725	0	1091	
+
+I 160  *	4426	*	*	6473	*	*	1721	*	1619	3555	5638	*	6703	*	5455	*	2559	7361	*	160
+       8	7517	*	0	*	*	0	6749	1000	1008	
+
+D 161  6699	6596	433	*	*	*	*	*	6175	*	*	2665	6701	*	6633	5059	7507	6284	*	*	161
+       0	*	*	*	*	*	0	6750	0	1008	
+
+V 162  3542	6858	*	6728	6769	6056	*	4330	*	2590	3758	*	*	*	*	4796	3973	1076	*	6955	162
+       0	*	*	*	*	0	*	6750	0	1008	
+
+W 163  7310	*	6299	*	4075	6177	4463	*	*	5174	*	*	*	6719	*	4438	5239	*	594	3474	163
+       0	*	*	*	*	*	*	6649	0	0	
+
+E 164  *	*	4535	362	*	*	*	*	5073	6294	*	6588	4453	4469	6125	6526	6657	*	*	*	164
+       0	*	*	*	*	*	*	6663	0	0	
+
+H 165  6887	*	*	6266	*	*	347	*	5639	7083	*	6737	*	6766	4903	5378	*	5016	*	4105	165
+       0	*	*	*	*	*	*	6663	0	0	
+
+A 166  484	4741	6219	*	*	6652	*	6250	*	*	4855	6518	6726	*	*	3072	6246	5361	*	*	166
+       0	*	*	*	*	*	*	6657	0	0	
+
+Y 167  *	*	*	*	4844	*	6926	*	*	6876	*	6652	*	6726	6142	6112	*	6828	3428	324	167
+       19	*	6250	*	*	*	*	6657	0	0	
+
+Y 168  *	6122	*	7243	3839	*	5144	4157	*	2808	4358	6762	*	7163	*	6948	5670	5212	5142	905	168
+       12	*	6908	*	*	*	0	6636	0	1040	
+
+L 169  6632	*	5110	4916	5290	5772	4691	2910	5183	1322	4818	5742	5331	*	5566	5446	4433	3469	6711	6018	169
+       28	5698	*	0	*	*	0	6571	1087	1110	
+
+D 170  *	*	695	5725	*	6481	*	*	2909	*	*	7024	*	2804	5938	5314	6519	5983	*	*	170
+       0	*	*	*	*	*	0	6571	0	1110	
+
+Y 171  *	*	*	*	3670	*	3487	*	5980	*	*	*	*	6737	6877	*	6510	*	6585	364	171
+       45	5029	*	2622	256	0	*	6566	1176	1110	
+
+Q 172  5640	6563	*	4554	6920	1584	5341	6608	2638	5807	*	5844	6056	2220	3502	5064	*	*	*	7315	172
+       226	3015	5545	971	1029	*	*	6566	1855	0	
+
+N 173  3984	*	5813	6971	5721	6784	6000	*	5979	3914	*	976	4668	5663	6921	4601	3468	4161	5501	*	173
+       133	3505	*	0	*	0	*	6573	1635	1102	
+
+R 174  3329	*	2605	6653	*	2342	7596	*	2858	5390	*	3609	*	5528	2697	6086	6563	3665	*	*	174
+       38	5254	*	2298	328	*	*	6566	1134	0	
+
+R 175  5116	*	*	*	*	*	*	*	1408	*	*	6047	*	6886	881	*	*	5184	*	*	175
+       15	6563	*	1585	585	*	*	6566	1018	0	
+
+P 176  1730	*	6591	3406	*	3640	6504	*	3912	4786	6218	5146	3050	4291	3330	4260	*	5317	*	6670	176
+       0	*	*	*	*	*	*	6566	0	0	
+
+D 177  3309	*	1821	2904	*	4979	*	*	2667	*	7139	4204	5836	4161	4582	4545	4743	4774	*	*	177
+       0	*	*	*	*	*	*	6566	0	0	
+
+F 178  *	*	*	*	3424	*	4634	6183	*	*	*	*	*	*	*	*	*	*	5195	277	178
+       0	*	*	*	*	*	*	6558	0	0	
+
+I 179  5946	*	*	*	4804	*	*	1672	*	1630	6710	*	*	*	7577	6480	6923	1853	*	*	179
+       0	*	*	*	*	*	*	6558	0	0	
+
+D 180  3932	*	2420	2422	*	6600	6183	*	2328	*	6972	3306	*	5027	4132	3927	4273	6069	*	6881	180
+       0	*	*	*	*	*	*	6558	0	0	
+
+N 181  1763	*	4055	3990	6468	6972	6610	7074	4131	*	*	1856	6783	5207	4311	3823	4492	6592	*	*	181
+       0	*	*	*	*	*	*	6548	0	0	
+
+F 182  *	5424	*	*	1235	*	*	3388	*	4932	5968	*	*	*	*	*	*	3146	1924	5011	182
+       0	*	*	*	*	*	*	6548	0	0	
+
+L 183  *	*	*	*	2295	*	6587	4511	*	2982	4734	*	7182	*	*	*	*	6064	880	6307	183
+       68	5091	5913	0	*	*	*	6548	1157	0	
+
+N 184  4803	*	2970	2894	*	5150	4919	*	2627	*	*	1805	*	3880	6842	3437	5404	*	*	*	184
+       4351	*	72	*	*	1957	430	6529	0	1131	
+
+Q 185  *	*	*	*	*	*	2742	2928	3336	*	2834	3143	*	3351	2734	3079	*	*	*	*	185
+       0	*	*	*	*	17	6438	2794	0	5948	
+
+L 186  4104	3670	*	*	5349	6655	4781	2651	4217	3397	6215	2638	7536	*	*	5607	5401	2134	*	4917	186
+       10	*	7161	*	*	0	*	6538	0	1018	
+
+V 187  4820	5993	*	*	*	*	*	1263	*	2806	5650	*	*	*	*	*	4971	1567	*	*	187
+       0	*	*	*	*	0	*	6545	0	1000	
+
+N 188  *	7062	1421	6345	*	*	6610	*	7191	6695	*	877	*	*	*	4815	*	*	*	*	188
+       0	*	*	*	*	*	*	6548	0	0	
+
+W 189  *	*	*	*	5778	*	6075	*	*	*	*	*	*	*	*	*	*	*	66	6407	189
+       0	*	*	*	*	*	*	6548	0	0	
+
+D 190  4358	*	2344	2444	*	5372	4565	6695	3107	7191	*	3295	4372	4548	5373	3227	5153	*	*	5676	190
+       0	*	*	*	*	*	*	6548	0	0	
+
+F 191  4328	*	4404	3093	2875	5781	6658	4404	3416	4560	*	5155	*	5118	5087	5529	4609	1959	7119	5334	191
+       11	7092	*	0	*	*	*	6548	1000	0	
+
+V 192  2165	5286	6075	7092	*	*	*	3073	*	4960	*	*	*	*	*	*	*	790	*	*	192
+       0	*	*	*	*	*	*	6548	0	0	
+
+A 193  3850	7115	4085	1404	*	6373	*	*	6690	*	6177	2165	*	4267	*	3268	5083	5794	6695	6057	193
+       0	*	*	*	*	*	*	6548	0	0	
+
+K 194  2721	6258	4048	3181	*	6675	5299	6070	2585	6878	*	3627	*	3337	2863	4093	6074	6293	6645	5279	194
+       0	*	*	*	*	*	*	6538	0	0	
+
+N 195  4342	7257	*	*	6465	*	6124	6161	5329	3905	*	2813	*	5234	830	6151	6121	5290	*	5178	195
+       23	5986	*	1330	731	*	*	6528	1056	0	
+
+L 196  5030	*	6831	*	2273	*	*	6573	*	1664	6115	6948	*	*	*	*	*	*	4730	1444	196
+       168	3186	*	1046	955	*	*	6523	1691	0	
+
+A 197  3422	*	3518	2979	4767	4874	6670	5433	3736	3525	5662	4147	*	3099	3840	3775	4231	5947	6759	6328	197
+       0	*	*	1000	1000	*	*	6320	1000	0	
+
+A 198  2120	*	4515	3620	6178	4074	6304	6282	3063	6219	6108	3959	*	3165	3560	3594	5392	4991	*	*	198
+       32	5523	*	0	*	*	*	5982	1000	0	
+
+A 199  1130	5294	*	*	4485	3214	*	2999	*	3461	5618	*	*	*	*	5428	4029	4492	*	*	199
+       0	*	*	0	*	*	*	5046	0	0	
+
+//
+�HHsearch 1.5
+NAME  14d53a48bb3d4cf83c4f637bd86d7e3e
+FAM   
+FILE  14d53a48bb3d4cf83c4f637bd86d7e3e
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:04:19 2013
+LENG  70 match states, 70 columns in multiple alignment
+FILT  18 out of 20 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  2.8 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCCCCCCCEEEEHHHHHHHCCCEECCCCCCCCCCCCCCCHHHHHHHHHHHHHHHHHHHHC
+>ss_conf PSIPRED confidence values
+9877888776437887536752134443203141246657899987766589999889998866777629
+>Consensus
+GxxxsxxkxnxnssGNxGxIinNfYsnqYqnSIDlsxxxxgxxxxxxxgxxSxllgxxxsAfxxxxpLLa
+>14d53a48bb3d4cf83c4f637bd86d7e3e
+GNSTSSDKNNSSSEGNEGVIINNFYSNQYQNSIDLSANATGSDPPKTYGQFSNLLSGAVNAFSNMLPLLA
+>gi|25121875|ref|NP_740424.1| capsid protein VP4 [Theilovirus]
+GNASSSDKSNSQSSGNEGVIINNFYSNQYQNSIDLSASGGNAgDAPQNNGQLSSILGGAANAFATMAPLLM
+>gi|209363551|ref|YP_002268402.1| polyprotein [Seneca valley virus]gi|108946001|gb|ABG23522.1| polyprotein [Seneca valley virus]
+GNVQTTSKNDFDSRGNNGNMTFNYYANTYQNSVDFStsSSASGAGPGNSRG---GLAG-LLTNFSGILnPLgyLK
+>gi|239830819|ref|YP_002956075.1| polyprotein [Human cosavirus B]gi|219525340|gb|ACL15190.1| polyprotein [Human cosavirus B1]
+-MGANNSKESVNSSGNNGTTVNNFYANNYYGSIDASAQGVGTSSTPENGTVSGFLGMASSAFNAL-SLLA
+>gi|25121702|ref|NP_740361.1| VP4 [Equine rhinitis B virus 1]
+-----------NESGNNGTIVNNYYMQHYQNSVDLDGMTsqnIGGQPGSSSNPFSSIL---------------
+>gi|168480158|ref|YP_001686938.1| VP4 [Bovine rhinitis B virus]
+--------GNVNESGNSGSIINNYYMQQYQNSIDVTVGDktteggsgSGdtagsathNNTTKEdkgkDDWFSSLVSGIGSAIP-------
+>gi|82468893|gb|ABB76803.1| polyprotein [Equine rhinitis A virus]
+------TTGNQNMSGNSGSIVQNFYMQQYQNSIDADLGDnviSPegqgsntssstssSQSsgl---GGWFSSLLN--------lgtk---LLA
+>gi|130454|sp|P15072.1|POLG_FMDVT RecName: Full=Genome polyprotein; Contains: RecName: Full=Leader protease; Short=Lpro; Contains: RecName: Full=Protein VP0; AltName: Full=VP4-VP2; Contains: RecName: Full=Protein VP4; AltName: Full=P1A; AltName: Full=Virion protein 4; Contains: RecName: Full=Protein VP2; AltName: Full=P1B; AltName: Full=Virion protein 2; Contains: RecName: Full=Protein VP3; AltName: Full=P1C; AltName: Full=Virion protein 3; Contains: RecName: Full=Protein VP1; AltName: Full=P1D; AltName: Full=Virion protein 1; Contains: RecName: Full=Protein 2A; Short=P2A; AltName: Full=P52; Contains: RecName: Full=Protein 2B; Short=P2Bgi|4456720|emb|CAA24960.2| unnamed protein product [Foot-and-mouth disease virus C1]
+GAGQSsPATGSQNQSGNTGSIINNYYMQQYQNSMDTQLGDnaiSGgsnegstdttsthTTNTQNNDWFSKLAS---SAFSGLFgALLA
+>gi|254547216|gb|ACT66682.1| polyprotein [Porcine teschovirus 5]
+GTGSSRMEnGNTNNSGNTGVINYNFYSNSYTDAIDLSGAMSTQESNAAENAASgpsSLLKAGINAAARIGPLLA
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+G 1    *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	2406	0	0	
+
+N 2    2971	*	*	*	*	*	*	*	*	*	1905	1116	*	*	*	*	2794	*	*	*	2
+       0	*	*	*	*	*	*	2728	0	0	
+
+S 3    3988	*	*	*	*	892	*	*	*	*	*	*	*	*	*	1892	*	2956	*	*	3
+       0	*	*	*	*	*	*	2728	0	0	
+
+T 4    1905	*	*	*	*	*	*	*	*	*	*	3731	*	1964	*	2271	2366	*	*	*	4
+       0	*	*	*	*	*	*	2728	0	0	
+
+S 5    *	*	*	*	*	*	*	*	*	*	*	1905	*	*	*	727	2956	*	*	*	5
+       197	2971	*	0	*	*	*	2728	1039	0	
+
+S 6    *	*	*	*	*	*	*	*	*	*	*	1905	2971	*	2794	1589	2956	*	*	*	6
+       0	*	*	*	*	*	*	2728	0	0	
+
+D 7    3310	*	1669	*	*	*	*	*	*	*	2898	*	*	*	*	1402	3793	*	*	*	7
+       0	*	*	*	*	*	*	2782	0	0	
+
+K 8    *	*	*	2898	*	*	*	*	529	*	*	*	*	*	*	*	2532	*	*	*	8
+       208	2898	*	0	*	*	*	2782	1068	0	
+
+N 9    *	*	*	2033	*	1490	*	*	*	*	*	1763	*	*	*	3251	*	*	*	*	9
+       0	*	*	*	*	*	*	2803	0	0	
+
+N 10   *	*	3173	*	*	*	*	*	*	*	*	836	*	*	*	1604	*	*	*	*	10
+       0	*	*	*	*	*	*	2803	0	0	
+
+S 11   *	*	*	*	3173	*	*	*	*	*	*	*	*	2725	*	1792	2972	1636	*	*	11
+       0	*	*	*	*	*	*	2803	0	0	
+
+S 12   *	*	3457	*	*	*	*	*	*	*	*	950	*	2812	*	2007	*	*	*	*	12
+       0	*	*	*	*	*	*	2859	0	0	
+
+S 13   *	*	*	2256	*	*	*	*	*	*	4138	2771	*	3761	*	961	*	*	*	*	13
+       0	*	*	*	*	*	*	2846	0	0	
+
+E 14   *	*	*	3248	*	*	*	*	*	*	*	2899	*	*	3477	576	*	*	*	*	14
+       0	*	*	*	*	*	*	2846	0	0	
+
+G 15   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	15
+       0	*	*	*	*	*	*	2846	0	0	
+
+N 16   *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	16
+       0	*	*	*	*	*	*	2846	0	0	
+
+E 17   *	*	*	1666	*	*	*	*	*	*	*	2328	*	3486	*	2505	2183	*	*	*	17
+       0	*	*	*	*	*	*	2846	0	0	
+
+G 18   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	18
+       0	*	*	*	*	*	*	2846	0	0	
+
+V 19   *	*	*	*	*	*	*	*	*	*	*	3477	*	*	*	2340	1757	1263	*	*	19
+       0	*	*	*	*	*	*	2846	0	0	
+
+I 20   *	*	*	*	*	*	*	224	*	*	3477	*	*	*	*	*	4203	*	*	*	20
+       0	*	*	*	*	*	*	2846	0	0	
+
+I 21   *	*	*	*	*	*	*	1283	*	*	*	2771	*	*	*	*	3477	1503	*	*	21
+       0	*	*	*	*	*	*	2846	0	0	
+
+N 22   *	*	*	*	3477	*	*	*	*	*	*	500	*	4138	*	*	*	*	*	2771	22
+       0	*	*	*	*	*	*	2846	0	0	
+
+N 23   *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	23
+       0	*	*	*	*	*	*	2846	0	0	
+
+F 24   *	*	*	*	719	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1350	24
+       0	*	*	*	*	*	*	2846	0	0	
+
+Y 25   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	25
+       0	*	*	*	*	*	*	2846	0	0	
+
+S 26   2100	*	*	*	*	*	*	*	*	*	1713	*	*	*	*	1115	*	*	*	*	26
+       0	*	*	*	*	*	*	2846	0	0	
+
+N 27   *	*	*	*	*	*	*	*	*	*	*	525	*	1713	*	*	*	*	*	*	27
+       0	*	*	*	*	*	*	2846	0	0	
+
+Q 28   *	*	*	*	*	*	3218	*	*	*	*	4203	*	841	*	2394	3477	*	*	*	28
+       0	*	*	*	*	*	*	2846	0	0	
+
+Y 29   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	29
+       0	*	*	*	*	*	*	2846	0	0	
+
+Q 30   *	*	*	*	*	*	*	*	*	*	*	*	*	588	*	*	2771	*	*	2408	30
+       0	*	*	*	*	*	*	2846	0	0	
+
+N 31   3495	*	2771	*	*	3326	*	*	*	*	*	588	*	*	*	*	*	*	*	*	31
+       0	*	*	*	*	*	*	2846	0	0	
+
+S 32   2771	*	*	*	*	*	*	*	*	*	*	*	*	*	*	229	*	*	*	*	32
+       0	*	*	*	*	*	*	2846	0	0	
+
+I 33   *	*	*	*	*	*	*	587	*	*	3761	*	*	*	*	*	*	1941	*	*	33
+       0	*	*	*	*	*	*	2846	0	0	
+
+D 34   *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	34
+       0	*	*	*	*	*	*	2846	0	0	
+
+L 35   2028	*	*	*	3477	*	*	*	*	932	*	*	*	*	*	*	3761	3900	*	*	35
+       0	*	*	*	*	*	*	2846	0	0	
+
+S 36   *	*	2606	*	*	*	*	*	*	*	*	*	*	3761	*	525	3900	*	*	*	36
+       224	2796	*	1000	1000	*	*	2846	1207	0	
+
+A 37   1125	*	*	*	*	1977	*	*	*	2937	*	*	*	*	*	3477	*	3900	*	*	37
+       105	3834	*	0	*	*	*	2846	1002	0	
+
+N 38   3710	*	*	*	*	2340	*	4254	*	*	2998	2332	*	2790	*	2285	*	*	*	*	38
+       0	*	*	*	*	*	*	2846	0	0	
+
+A 39   2358	*	2340	*	*	1692	*	*	*	*	3710	*	*	*	*	2588	4182	*	*	*	39
+       678	1414	*	1984	420	*	*	2846	1548	0	
+
+T 40   3966	*	*	*	*	3175	*	3218	*	*	*	*	*	*	*	1205	4598	2043	*	*	40
+       78	*	4254	*	*	*	*	2846	0	0	
+
+G 41   *	*	*	*	*	582	*	*	*	*	*	2393	4029	*	*	*	3638	*	*	*	41
+       488	1800	*	3104	178	0	*	2825	1417	1000	
+
+S 42   2346	*	*	*	*	2150	*	*	4205	*	*	3900	*	3710	*	2269	2532	*	*	*	42
+       54	4765	*	0	*	*	*	2846	1000	0	
+
+D 43   3834	*	1712	2450	*	3477	*	*	*	*	*	3900	*	3160	*	3334	3761	*	*	*	43
+       0	*	*	*	*	*	*	2846	0	0	
+
+P 44   3012	*	*	3834	*	4675	*	*	*	*	*	2966	1999	*	*	2415	2314	*	*	*	44
+       84	4138	*	1585	585	*	*	2846	1003	0	
+
+P 45   *	*	*	*	*	2247	*	*	*	*	*	2689	1880	*	*	4162	1705	*	*	*	45
+       0	*	*	*	*	*	0	2822	0	1003	
+
+K 46   1957	*	*	*	*	*	*	*	2223	*	*	3425	2731	2662	3920	4049	*	*	*	*	46
+       0	*	*	*	*	*	0	2822	0	1003	
+
+T 47   2689	*	*	1890	*	4130	*	*	*	3920	*	3046	4162	*	*	2703	3041	*	*	*	47
+       110	3762	*	2000	415	0	*	2822	1018	1003	
+
+Y 48   *	*	3900	3114	*	4138	*	*	*	*	*	1583	*	4205	2701	2998	4254	*	*	4598	48
+       0	*	*	*	*	*	*	2846	0	0	
+
+G 49   *	*	2829	*	*	710	*	*	*	*	*	2443	*	*	*	3966	*	*	*	*	49
+       136	*	3477	*	*	*	*	2846	0	0	
+
+Q 50   3624	*	*	*	*	*	*	3831	*	*	*	4359	2351	2157	*	*	2621	*	2203	*	50
+       0	*	*	*	*	*	0	2705	0	1095	
+
+F 51   3624	*	*	*	1141	*	*	*	*	2488	*	*	*	*	*	*	3715	2243	*	*	51
+       0	*	*	*	*	*	0	2705	0	1095	
+
+S 52   *	*	*	3831	*	*	*	*	*	*	4114	*	*	*	*	198	*	*	*	*	52
+       122	3624	*	1585	585	0	*	2705	1068	1095	
+
+N 53   *	*	*	*	*	1846	*	*	3761	3834	*	2561	*	*	*	1292	*	*	*	*	53
+       0	*	*	*	*	*	*	2846	0	0	
+
+L 54   *	*	*	*	2733	*	*	1731	*	867	*	*	*	*	*	*	*	*	*	*	54
+       0	*	*	*	*	*	*	2790	0	0	
+
+L 55   2557	*	*	*	*	*	*	*	*	523	*	*	*	*	*	3932	*	3863	*	*	55
+       0	*	*	*	*	*	*	2790	0	0	
+
+S 56   *	*	*	*	*	756	*	*	2972	*	*	3910	*	*	*	2224	*	*	*	*	56
+       573	*	1609	*	*	*	*	2803	0	0	
+
+G 57   2515	*	*	*	*	1375	*	*	*	2598	3495	*	*	*	*	2430	*	*	*	*	57
+       0	*	*	*	*	877	1134	2412	0	1458	
+
+A 58   893	*	*	*	3819	2739	*	3215	*	2909	*	*	*	*	*	*	*	*	*	*	58
+       0	*	*	*	*	*	0	2691	0	1152	
+
+V 59   1538	*	*	*	*	3215	*	2739	*	2909	*	*	*	*	*	2920	*	2911	*	*	59
+       0	*	*	*	*	816	1212	2691	0	1152	
+
+N 60   *	*	3846	*	*	*	*	*	*	*	*	1427	*	*	*	1188	3060	*	*	*	60
+       0	*	*	*	*	*	0	2809	0	1003	
+
+A 61   184	*	*	*	*	*	*	*	*	*	*	3060	*	*	*	*	*	*	*	*	61
+       0	*	*	*	*	*	0	2809	0	1003	
+
+F 62   2883	*	*	*	355	*	*	3596	*	*	*	*	*	*	*	*	*	*	*	*	62
+       0	*	*	*	*	*	0	2809	0	1003	
+
+S 63   2004	*	*	*	*	*	*	*	3846	*	*	2410	3596	*	*	1534	3945	*	*	*	63
+       0	*	*	*	*	*	0	2809	0	1003	
+
+N 64   2336	*	*	*	*	1964	*	*	*	*	*	2270	*	*	2794	3857	3000	*	*	*	64
+       0	*	*	2000	415	*	0	2728	1003	1003	
+
+M 65   2848	*	*	*	*	*	*	1521	*	1968	1960	*	*	*	*	*	*	*	*	*	65
+       317	*	2342	*	*	*	0	2728	0	1003	
+
+L 66   2087	*	*	*	2743	1669	*	*	*	1733	*	*	*	*	*	*	*	*	*	*	66
+       505	1760	*	0	*	478	1827	2660	1243	1290	
+
+P 67   2347	*	*	*	3839	*	*	*	*	*	*	*	724	*	*	2964	*	*	*	*	67
+       0	*	*	*	*	0	*	2728	0	1003	
+
+L 68   *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	68
+       192	3007	*	1000	1000	*	*	2782	1095	0	
+
+L 69   3904	*	*	*	*	*	*	*	*	100	*	*	*	*	*	*	*	*	*	*	69
+       0	*	*	*	*	*	*	2782	0	0	
+
+A 70   574	*	*	*	*	*	*	*	2949	4026	2865	*	*	*	*	*	*	*	*	*	70
+       0	*	*	0	*	*	*	2773	0	0	
+
+//
+�HHsearch 1.5
+NAME  17059f2501ae2a72fc19097f4d2b1341
+FAM   
+FILE  17059f2501ae2a72fc19097f4d2b1341
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:45:08 2013
+LENG  86 match states, 86 columns in multiple alignment
+FILT  103 out of 186 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  4.9 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCHHHHHHHHHHHHHHHHHHCCCCEEECCCCCCHHHHHHHHHHHHHHCCCEEEEECCCCEEEEEEECCCCCCCCCC
+>ss_conf PSIPRED confidence values
+98777888886066889999999999998398978981899998999999999999199300164799858999978987665679
+>Consensus
+xxxxxxxxxxxxxxexxxxxlxxxlxxFxxxxxxxlxFpxslsxxeRxxVHxlAxxxGLxsxSxGxgxxRxlvVxkxxxxxxxxxx
+>17059f2501ae2a72fc19097f4d2b1341
+MGSLNGGSPEGVESQDGVDHFRAMIVEFMASKKMQLEFPPSLNSHDRLRVHQIAEEHGLRHDSSGEGKRRFITVSKRAGSHHHHHH
+>gi|301116633|ref|XP_002906045.1| DNA polymerase alpha-associated DNA helicase A, putative [Phytophthora infestans T30-4]gi|262109345|gb|EEY67397.1| DNA polymerase alpha-associated DNA helicase A, putative [Phytophthora infestans T30-4]
+--KTASNDEKPEAAEATAIEPAVAVQE--EEEEEEIE-------DKAVATKSVFQMMVFDSDSSDDDNDEAVDVEV----------
+>gi|294877934|ref|XP_002768200.1| DNA-binding protein SMUBP-2, putative [Perkinsus marinus ATCC 50983]gi|239870397|gb|EER00918.1| DNA-binding protein SMUBP-2, putative [Perkinsus marinus ATCC 50983]
+--TTEIGEK-pVARVDLT---ieav-DAT---ldsL---aSEETYCFDNLLSAASRRLVHERAETRGFKHGSSGDGIMRYVWVR-----------
+>gi|321472095|gb|EFX83066.1| hypothetical protein DAPPUDRAFT_316187 [Daphnia pulex]
+------DDSSGSEPDDDIDDFRELLMEWVGGEEDIFTFPDTFSLAERRQIHNICDQLKLVHKSTGEGDSRRLVVTR----------
+>gi|332017832|gb|EGI58492.1| NF-kappa-B-repressing factor [Acromyrmex echinatior]
+---------------EIKTKCRKLFKDLLQTDnySRkDIVF-LDFPKEDRIVIHQVARTMGLKSRSQGK-DQRKLIVSSK---------
+>gi|170033973|ref|XP_001844850.1| ATP-dependent RNA helicase A [Culex quinquefasciatus]gi|167875095|gb|EDS38478.1| ATP-dependent RNA helicase A [Culex quinquefasciatus]
+-------------EEDVRIAIHYMIDKFVQDEKlNEFDFPVSFTREHRAYIHDYVKNKSLKSRSHGKGNQRYLTIYK----------
+>gi|110741780|dbj|BAE98834.1| hypothetical protein [Arabidopsis thaliana]
+--------GKPTSVEATRIWATKVIEDFRASGNEVYTFEHNLSNNERGVIHQMCRKMGIQSKSSGRGEQRRLSIFK----------
+>gi|302404235|ref|XP_002999955.1| conserved hypothetical protein [Verticillium albo-atrum VaMs.102]gi|261361137|gb|EEY23565.1| conserved hypothetical protein [Verticillium albo-atrum VaMs.102]
+---------------MGIEQIAQELENFLKNSQASLALPPM-DNHARKVLHELANKFNIKSKSTGSGDQRRPTLYRT---------
+>gi|330470828|ref|YP_004408571.1| single-stranded nucleic acid binding R3H domain-containing protein [Verrucosispora maris AB-18-032]gi|328813799|gb|AEB47971.1| single-stranded nucleic acid binding R3H domain-containing protein [Verrucosispora maris AB-18-032]
+-----------------RKELAAVARNAVEkvkEHGEAVRLE-PMSAFERKCVHDVVNAiDGVESESEGVEPNRRIVVRPA---------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1000	0	0	
+
+G 2    *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2
+       0	*	*	*	*	*	*	1000	0	0	
+
+S 3    3654	*	3636	3563	*	*	*	*	1668	*	*	3890	*	*	4016	2194	3427	*	*	*	3
+       0	*	*	*	*	*	*	3920	0	0	
+
+L 4    3709	*	3680	*	*	*	2735	*	*	2193	*	*	*	*	*	*	1332	3654	*	*	4
+       0	*	*	*	*	*	*	3920	0	0	
+
+N 5    2832	*	3680	2493	*	3654	3842	*	*	*	*	3789	*	3376	*	2855	*	2758	*	*	5
+       92	*	4016	*	*	*	*	3920	0	0	
+
+G 6    *	*	*	*	*	3714	*	3355	3591	3550	*	3530	3695	*	2697	2772	3267	3483	*	*	6
+       0	*	*	*	*	*	0	3856	0	1000	
+
+G 7    *	*	2401	2658	*	2694	*	3943	3853	*	*	2224	3779	*	3706	*	*	*	*	*	7
+       0	*	*	*	*	*	0	4083	0	1000	
+
+S 8    *	*	2081	3515	*	3779	*	*	2701	*	*	3640	2639	*	*	2799	3943	*	*	*	8
+       0	*	*	*	*	*	0	4083	0	1000	
+
+P 9    *	*	*	1906	*	2673	*	*	2803	3953	*	*	2769	3851	*	3426	4072	*	*	*	9
+       118	*	3670	*	*	*	0	4114	0	1000	
+
+E 10   4113	*	2928	1239	*	*	*	*	2146	*	*	*	*	3932	*	3388	*	*	*	*	10
+       444	3918	2330	0	*	431	1953	4013	1135	1083	
+
+G 11   3902	*	3555	*	*	1839	3983	*	*	*	*	*	2290	*	3630	3985	3525	3839	*	*	11
+       0	*	*	*	*	*	0	4091	0	1199	
+
+V 12   3048	*	4357	2169	*	4102	*	*	*	*	*	4488	2463	*	*	3077	2647	4453	*	*	12
+       0	*	*	*	*	212	2871	4539	0	1199	
+
+E 13   2956	*	4880	1272	4377	4834	*	*	4742	*	*	*	*	4857	4562	4656	*	2427	*	*	13
+       0	*	*	*	*	*	0	4867	0	1000	
+
+S 14   2260	*	*	3551	4569	4492	*	*	3246	*	*	*	3535	*	3829	3294	2706	3293	*	*	14
+       0	*	*	*	*	*	0	5049	0	1000	
+
+Q 15   *	*	2288	1396	*	*	5162	*	2819	*	*	*	*	2899	4245	*	*	4089	*	*	15
+       0	*	*	*	*	*	0	5169	0	1000	
+
+D 16   2793	*	2367	2635	5220	3702	*	4865	4547	3453	4391	5665	*	5552	*	3641	*	4804	5366	*	16
+       0	*	*	*	*	*	0	5460	0	1000	
+
+G 17   4359	*	3426	4118	3896	4837	*	4517	4920	3362	4930	3781	*	5193	5963	3559	1996	5450	*	5860	17
+       32	*	5532	*	*	*	0	5610	0	1000	
+
+V 18   3050	*	5690	4673	*	*	*	3993	2276	3525	*	4956	5555	4935	1921	*	3299	6293	*	*	18
+       0	*	*	*	*	*	0	5920	0	1083	
+
+D 19   3383	6398	3029	3011	*	6270	*	2533	2961	3201	6205	5528	*	5175	4131	6297	4158	4878	*	*	19
+       0	*	*	*	*	*	0	5958	0	1083	
+
+H 20   3377	*	3029	1815	*	4690	5075	*	3106	5180	*	4921	*	4189	4263	3402	5199	*	6554	6322	20
+       0	*	*	2000	415	1953	431	5968	1049	1083	
+
+F 21   4517	4415	*	*	3179	*	6513	2401	*	1535	6370	*	4161	*	*	*	*	3246	*	3639	21
+       0	*	*	*	*	0	*	5958	0	1049	
+
+R 22   3281	*	3768	4061	6243	6084	4197	6443	3723	4731	5557	4933	*	4822	2387	4815	4127	5555	5119	2910	22
+       0	*	*	*	*	*	*	5930	0	0	
+
+A 23   2918	6207	4782	2703	*	6460	6312	5443	2854	4701	6557	4250	*	3239	4827	3522	3768	3998	*	6249	23
+       0	*	*	*	*	*	*	5942	0	0	
+
+M 24   2930	*	*	3230	*	*	6580	2952	4630	2749	3647	*	*	3179	4227	4659	5416	3144	*	6195	24
+       21	*	6108	*	*	*	*	5942	0	0	
+
+I 25   3646	*	*	*	4764	5216	*	2373	*	1242	5032	*	*	*	*	*	*	2251	*	*	25
+       0	*	*	*	*	*	0	5882	0	1049	
+
+V 26   5868	*	4362	2542	*	*	6494	*	2573	3105	4357	5032	6671	2741	3376	*	3997	4090	*	6546	26
+       0	*	*	*	*	*	0	5882	0	1049	
+
+E 27   2806	*	3104	2175	*	*	*	*	3511	3753	4313	3052	*	4914	4231	4211	4836	6496	*	*	27
+       78	*	4252	1585	585	0	*	5886	1049	1049	
+
+F 28   3535	5247	*	*	675	5648	*	*	*	3991	*	6072	*	*	*	*	5363	*	4461	3415	28
+       53	*	4784	*	*	*	0	5713	0	1154	
+
+M 29   3130	5264	*	*	*	*	5370	2441	2839	2478	5645	*	*	6106	3406	4624	6702	2706	*	*	29
+       89	4065	*	0	*	913	1092	5659	1253	1329	
+
+A 30   2489	*	2928	2105	6856	4834	5672	*	3556	5050	*	3639	*	3900	5056	3583	*	*	6653	6817	30
+       368	2152	*	1900	450	1997	416	5856	1779	1130	
+
+S 31   3790	*	2051	2781	*	3185	5776	*	*	*	*	5663	4854	5172	5453	2006	4086	*	*	*	31
+       79	4231	*	428	1960	459	1876	5893	1269	1086	
+
+K 32   *	*	2488	2014	*	3557	5528	*	5196	6496	*	6052	3410	*	5012	2502	3602	5048	*	*	32
+       35	5377	*	3001	192	*	0	5859	1047	1000	
+
+K 33   4555	6669	4210	2435	*	3599	6727	*	3348	6512	4075	3212	*	3625	3649	3687	3830	4987	*	*	33
+       60	4615	*	2010	412	*	0	5862	1114	1000	
+
+M 34   3262	6448	3572	2618	*	6363	6669	6796	3980	5280	5858	4340	6032	4376	2894	4360	2806	4916	5689	6871	34
+       457	1880	*	426	1966	0	*	5862	1993	1000	
+
+Q 35   4007	*	2954	1749	*	*	*	4345	6363	6868	*	*	4799	4073	4045	3373	3641	3202	*	*	35
+       16	6489	*	0	*	*	*	5723	1009	0	
+
+L 36   6216	*	*	*	4681	*	6847	2917	5513	1442	3070	*	*	*	6653	*	6442	2710	*	3021	36
+       0	*	*	*	*	*	*	5695	0	0	
+
+E 37   2980	6198	4759	2025	*	*	4268	5072	5774	*	*	6669	*	5092	4409	3354	2921	2635	*	*	37
+       78	*	4245	*	*	*	*	5695	0	0	
+
+F 38   *	5962	*	*	444	*	*	*	*	2128	5641	*	*	*	*	*	*	*	*	*	38
+       32	*	5511	*	*	*	0	5506	0	1154	
+
+P 39   4813	*	4672	3565	*	*	6634	*	5605	5272	*	*	802	6406	5448	2507	*	*	*	*	39
+       282	*	2492	*	*	1779	497	5404	0	1236	
+
+P 40   2716	*	6485	*	*	*	5665	*	4882	5360	*	3644	1490	*	4691	2073	5596	5291	*	*	40
+       73	*	4345	*	*	402	2040	5118	0	1757	
+
+S 41   6580	*	3726	3855	*	4294	4948	6120	*	6119	6066	4023	2986	6416	*	1633	2351	*	*	*	41
+       31	*	5570	*	*	1288	760	5491	0	1292	
+
+L 42   *	*	*	*	2375	*	*	4631	*	916	2410	*	*	*	*	*	6702	5499	*	5872	42
+       0	*	*	*	*	2812	222	5425	0	1229	
+
+N 43   4659	4634	3379	*	6531	6499	*	*	*	6414	*	3048	6444	*	*	1545	1665	*	*	*	43
+       0	*	*	*	*	*	0	5430	0	1190	
+
+S 44   2062	*	*	*	*	4665	*	*	2893	5020	*	2762	2657	*	6342	2138	6602	*	*	*	44
+       0	*	*	*	*	239	2710	5430	0	1190	
+
+H 45   3162	*	3225	2638	2999	*	3425	7201	6698	5280	*	4216	6723	5649	3742	4880	4849	5299	*	3208	45
+       0	*	*	*	*	*	0	5636	0	1000	
+
+D 46   5139	*	2690	1103	6633	*	5064	*	3650	*	*	*	*	2427	*	4755	6883	*	*	*	46
+       0	*	*	*	*	*	0	5636	0	1000	
+
+R 47   4165	*	*	*	*	*	*	*	*	*	*	*	*	*	83	*	*	*	*	*	47
+       0	*	*	*	*	*	0	5636	0	1000	
+
+L 48   1897	*	*	*	*	5921	5267	6520	1944	3495	4546	*	*	6608	2332	6606	*	4165	6400	*	48
+       0	*	*	*	*	*	0	5636	0	1000	
+
+R 49   3036	5624	7012	5796	4348	*	*	3502	4835	2371	6102	*	*	3933	5928	5795	4303	2572	6029	3086	49
+       0	*	*	*	*	*	0	5636	0	1000	
+
+V 50   5462	*	*	*	5739	*	*	1394	*	3269	*	*	*	*	*	*	4189	1307	6029	*	50
+       0	*	*	*	*	*	0	5636	0	1000	
+
+H 51   *	*	*	*	*	*	81	*	4189	*	*	*	*	*	*	*	*	*	*	*	51
+       0	*	*	3322	152	0	*	5636	1000	1000	
+
+Q 52   3969	*	3010	2426	*	4575	6582	4830	5976	4783	6504	3798	*	2778	3691	3494	3980	5168	*	*	52
+       0	*	*	*	*	*	*	5635	0	0	
+
+I 53   4256	6454	*	5470	5201	*	*	2353	6578	1739	3335	*	*	*	4896	6673	5333	2708	5593	4654	53
+       0	*	*	*	*	*	*	5635	0	0	
+
+A 54   716	2708	*	*	4190	*	*	5616	*	*	*	*	*	*	*	3996	*	3315	*	*	54
+       0	*	*	*	*	*	*	5635	0	0	
+
+E 55   3285	*	3986	1992	*	5618	3518	6899	3155	5809	5359	3926	6582	2825	3954	5494	6906	*	*	*	55
+       0	*	*	*	*	*	*	5635	0	0	
+
+E 56   3629	*	4164	2681	*	*	5716	6052	1937	*	3947	3859	6482	4337	3447	4189	4294	*	5615	*	56
+       45	5015	*	0	*	*	*	5635	1078	0	
+
+H 57   4139	5904	6694	5555	2842	*	3993	6159	6406	1813	2373	5197	*	*	4236	*	*	*	6403	3353	57
+       0	*	*	*	*	*	*	5635	0	0	
+
+G 58   6816	*	5123	*	*	585	6908	*	3733	6639	*	4310	*	*	6033	4109	5389	4190	*	*	58
+       0	*	*	*	*	*	*	5635	0	0	
+
+L 59   *	5794	*	*	2909	*	*	4322	*	527	5136	*	*	*	*	*	*	4169	*	5591	59
+       15	*	6604	*	*	*	*	5635	0	0	
+
+R 60   4669	*	3593	3575	5164	4342	3895	4321	2068	*	6396	5234	6958	4677	4439	3583	4369	3694	*	5630	60
+       0	*	*	*	*	*	0	5645	0	1004	
+
+H 61   *	*	*	*	*	*	1170	*	*	*	*	*	*	5284	*	1012	4877	*	*	*	61
+       0	*	*	*	*	*	0	5645	0	1004	
+
+D 62   4026	6449	3810	2818	6492	5325	4734	6269	1741	7233	*	6672	*	3845	3882	4065	4976	3982	*	5670	62
+       0	*	*	*	*	*	0	5645	0	1004	
+
+S 63   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	63
+       0	*	*	*	*	*	0	5645	0	1004	
+
+S 64   4416	*	6724	3412	5759	*	3567	4497	5460	5264	6641	*	*	3694	3678	2542	3183	3292	*	3257	64
+       0	*	*	*	*	0	*	5645	0	1004	
+
+G 65   *	*	3941	*	*	151	*	*	*	*	*	*	*	*	6604	*	*	5389	*	*	65
+       0	*	*	*	*	*	*	5635	0	0	
+
+E 66   5244	6786	2954	1848	*	6272	6564	*	2162	5749	6633	6541	5968	5692	4944	3797	4848	3644	6465	7456	66
+       29	6829	6523	0	*	*	*	5633	1000	0	
+
+G 67   5134	*	3120	3597	*	704	*	*	4468	*	*	5096	5525	6251	5904	5491	6397	*	*	*	67
+       0	*	*	*	*	0	*	5624	0	1000	
+
+K 68   3481	*	2287	2787	*	4681	4651	6184	4744	6449	*	3145	2825	6844	4542	3695	4784	*	*	*	68
+       0	*	*	*	*	*	*	5633	0	0	
+
+R 69   4765	*	2456	2927	6486	4690	5639	6495	4651	4857	5333	2681	*	2924	4039	3175	6615	*	*	*	69
+       0	*	*	*	*	*	*	5633	0	0	
+
+R 70   *	*	*	4189	*	*	*	*	*	*	*	*	*	*	81	*	*	*	*	*	70
+       0	*	*	*	*	*	*	5633	0	0	
+
+F 71   4051	5785	6959	*	3431	*	2905	*	4024	*	*	6869	*	3600	2339	4455	5207	3953	*	2323	71
+       0	*	*	*	*	*	*	5633	0	0	
+
+I 72   5670	*	*	*	*	*	*	1971	*	1392	*	*	4435	*	*	*	6062	1822	*	*	72
+       0	*	*	*	*	*	*	5633	0	0	
+
+T 73   5974	5752	4189	5808	*	*	4453	3345	5283	5206	5646	*	*	5115	6642	4415	2080	1556	6184	*	73
+       0	*	*	*	*	*	*	5633	0	0	
+
+V 74   *	*	*	*	*	*	*	2000	*	2625	*	*	*	*	*	*	*	766	*	*	74
+       27	*	5745	*	*	*	*	5633	0	0	
+
+S 75   6782	*	*	3825	3942	4384	5686	5656	3677	4705	*	*	*	6496	3592	2050	2494	5590	5394	3409	75
+       0	*	*	*	*	0	*	5623	0	1030	
+
+K 76   *	*	5922	*	6325	6669	6233	*	1106	*	*	4746	4118	6474	1942	4957	5979	3859	*	*	76
+       27	5734	*	0	*	*	*	5608	1000	0	
+
+R 77   2873	5671	4515	4405	*	4475	*	4294	1494	4503	*	*	4258	*	3035	4678	4492	*	*	*	77
+       0	*	*	*	*	*	*	5278	0	0	
+
+A 78   2423	*	2607	2697	*	2589	*	*	1604	*	*	*	*	*	*	*	*	*	*	*	78
+       0	*	*	*	*	*	*	2558	0	0	
+
+G 79   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	79
+       0	*	*	*	*	*	*	1000	0	0	
+
+S 80   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	80
+       0	*	*	*	*	*	*	1000	0	0	
+
+H 81   *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	81
+       0	*	*	*	*	*	*	1000	0	0	
+
+H 82   *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	82
+       0	*	*	*	*	*	*	1000	0	0	
+
+H 83   *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	83
+       0	*	*	*	*	*	*	1000	0	0	
+
+H 84   *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	84
+       0	*	*	*	*	*	*	1000	0	0	
+
+H 85   *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	85
+       0	*	*	*	*	*	*	1000	0	0	
+
+H 86   *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	86
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  19505167af9ebfb7eba762c056361c1f
+FAM   
+FILE  19505167af9ebfb7eba762c056361c1f
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:31:27 2013
+LENG  240 match states, 240 columns in multiple alignment
+FILT  126 out of 1228 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  10.1
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCEECCCCCCCEEEEEEEECCCCCCEEEEEEEECCCEEEECHHHCCCCCCEEEEEEEEECCCCCCCCEEEEEEEEEECCCCCCCCCCCCCCEEEEEEC
+CCCCCCCCCCEEECCCCCCCCCCCCEEEEEEECCCCCCCCCCCEEEEEEEEEECHHHHHHHHHCCCCCCCCEEEEECCCCCCCCCCCCCCEEEEEECCEE
+EEEEEEEECCCCCCCCCCCCEEEEEHHHHHHHHHHHHHCC
+>ss_conf PSIPRED confidence values
+9999899987889899999916997746999999719999989889688875599981100356888607999999998998777777667768999957
+8753677644155265455557998899998366578887775568999998568993014331677886769861589966567787980799989989
+9999998657778888898559999799799999998539
+>Consensus
+ixxgxxxxxxxxPxxvxixxxxxxxxxxxCxGtlIsxxxVLTaaxCxxxxxxxxvxxgxxxxxxxxxxxxxxxvxxxxxhpxxxxxxxxxxxDiAlxxLx
+xxxxxxxxvxpiclxxxxxxxxxxxxxxxxgxgxxxxxxxxxxxlxxxxxxxxxxxxCxxxxxxxxxxxxxxxCxxxxxxxxxcxgdsGxplxxxxxxxx
+xlvGixsxxxxxxcxxxxxxxxxxxvxxxxxWIxxxxxxx
+>19505167af9ebfb7eba762c056361c1f
+VVGGTEAQRNSWPSQISLQYRSGSSWAHTCGGTLIRQNWVMTAAHCVDRELTFRVVVGEHNLNQNDGTEQYVGVQKIVVHPYWNTDDVAAGYDIALLRLA
+QSVTLNSYVQLGVLPRAGTILANNSPCYITGWGLTRTNGQLAQTLQQAYLPTVDYAICSSSSYWGSTVKNSMVCAGGDGVRSGCQGDSGGPLHCLVNGQY
+AVHGVTSFVSRLGCNVTRKPTVFTRVSAYISWINNVIASN
+>gi|74002660|ref|XP_535739.2| PREDICTED: similar to sperm-specific sodium proton exchanger [Canis familiaris]
+----------------------------------------------------------------------------------------------------
+--------YALLRVPSSPRHSSSPEDAYELIIPRRVFSYsLQQPHPPTPHLENRVSY-------------------------------------------
+-----------------------------------------
+>gi|334329721|ref|XP_001365700.2| PREDICTED: sodium/hydrogen exchanger 10-like [Monodelphis domestica]
+----------------------------------------------------------------------------------------------------
+------------NVVPkhmtkqladrc------------------ETEYAv-----------------VRvpsspQPSYSFQDEEYELIMPITHTHYPSH
+LNWMNSGNLNR----------------------------------------------
+>gi|328704879|ref|XP_003242629.1| PREDICTED: hypothetical protein LOC100575281 [Acyrthosiphon pisum]
+----------EYPYLVGLTIGgivdKTNRKTAICTGTLVSPVLVLSSAYCTlllmtTINESPEVTTLFAYWKTPTNSVKYHRATSVYTHPSYD--KATRM
+FDLSLIKLKKPFKHVE--RFVRLSSKTLSSDVELSCVVVGIGAPHERGyKVPVRVKYGRTACRIPKSNPGLEYLIGYTWADFLCSETvGPTTTRLPCDRA
+DPLVC--SGSRHQYGIFSYGydgtgaspatEATECGDPAIQGRHLFINRNAGWIAEIIANH
+>gi|329669138|gb|AEB96457.1| salivary serine protease [Simulium guianense]
+-------DNEQFPWFCTVY--SNEDFKPVCYCTILGKNAILTASKCFENrdttngdHPKYHVRFGSIAAN---GMRKLVNIEKIQGTQ-----------H
+LLMLKPKTPIE---GYHAIELAENNYVEPKNGNITVATFHSYGTKLSMKTHVHMVDMRLSkDAKNC--QFAY----PNKHFCA--AESQNRCNIGLGTAA
+VSQSpknSSRWILHGIVDQ-SPKCNGESKNADLFVKIDAeRWDFIKHNLN--
+>gi|194899249|ref|XP_001979173.1| GG13986 [Drosophila erecta]gi|190650876|gb|EDV48131.1| GG13986 [Drosophila erecta]
+--------------------RGhKPEFSVVCNATIVSPYILVTTERCFSEssiksvpstePVLYTVAEGKiygNSFLAHEPHPYKLHNVSHIVYARYL--
+----DKgivgTLVLVHLVQPLEFHMKLRPVCLTEELTDNWLtagDFTGVNPGHPIIDdRRQPGRYELREV------------------------------
+--------------------------------------------------------------
+>gi|86146281|ref|ZP_01064606.1| hypothetical protein MED222_16256 [Vibrio sp. MED222]gi|218709799|ref|YP_002417420.1| hypothetical protein VS_1811 [Vibrio splendidus LGP32]gi|85835992|gb|EAQ54125.1| hypothetical protein MED222_16256 [Vibrio sp. MED222]gi|218322818|emb|CAV18995.1| hypothetical protein VS_1811 [Vibrio splendidus LGP32]
+------------------------------SATLIDPYWVITANHVSGSKSegyENAVTCSSYEKDKNGKYNVVHTSRATTDPDgewgEYE--FTDGIYD
+FALVRLDTPIT---GIKPAKLPEKGMFDHSEVyEVNSVGFGNYNGRNGGKKFVKYNDTDK--------KWLAEYKYDPVIMPQSNL-QWLIIHGDSGSGI
+TIERDGEFYIIGEIGL---QYYGELGWQDTFDDVLGRLDSLQSDMQE-
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+V 1    4648	*	*	*	*	*	*	851	*	*	*	*	3923	*	*	*	*	1557	*	*	1
+       0	*	*	*	*	*	*	7379	0	0	
+
+V 2    3189	*	*	*	4851	*	*	1946	*	3817	*	3166	5095	*	*	3199	4914	2769	*	3386	2
+       0	*	*	*	*	*	*	7698	0	0	
+
+G 3    5505	*	3688	*	5182	1182	*	*	4390	*	*	1852	*	*	5080	4203	5412	*	*	*	3
+       38	5284	*	0	*	*	*	8293	1018	0	
+
+G 4    4378	*	*	*	*	523	5430	*	5363	*	*	5376	5545	4394	*	3780	*	5637	*	5467	4
+       0	*	*	*	*	*	*	8748	0	0	
+
+T 5    5853	*	3724	3010	*	*	5603	*	3704	*	*	5746	*	2722	3043	4023	2653	4098	4777	3669	5
+       0	*	*	*	*	*	*	9030	0	0	
+
+E 6    3671	*	2577	2538	*	*	*	4449	4353	4245	*	3917	2670	5879	3420	6197	3811	6010	*	*	6
+       0	*	*	*	*	*	*	9419	0	0	
+
+A 7    1883	*	3934	*	5949	*	*	5931	*	5867	*	*	4829	*	*	4307	2349	1648	*	6305	7
+       0	*	*	*	*	*	*	9503	0	0	
+
+Q 8    4182	*	3371	3502	*	4609	5925	5212	3630	6047	*	2900	3700	3822	4907	2866	3432	5772	*	5917	8
+       19	*	6231	*	*	*	*	9628	0	0	
+
+R 9    4055	*	3790	*	4614	*	5129	3689	4454	4107	5122	3827	2626	5244	3592	3552	6062	4041	4543	4555	9
+       0	*	*	*	*	0	*	9566	0	1000	
+
+N 10   5589	*	3539	3686	4410	1831	5265	6002	4213	5435	*	2659	*	5155	5929	4131	4622	*	*	3873	10
+       0	*	*	*	*	*	*	9638	0	0	
+
+S 11   6042	*	4487	1895	6219	5103	5435	*	4072	5517	6185	3562	3969	2955	3698	3504	4727	*	*	5050	11
+       17	6410	*	0	*	*	*	9706	1010	0	
+
+W 12   3615	6245	6281	*	1924	*	4329	4761	6295	4859	5268	*	*	4518	*	5267	4721	6458	2855	2238	12
+       0	*	*	*	*	*	*	9765	0	0	
+
+P 13   *	*	*	*	6512	*	*	6411	6116	*	*	6389	367	5538	4929	3789	5426	6184	*	6399	13
+       0	*	*	*	*	*	*	9862	0	0	
+
+S 14   4824	*	6185	6322	3154	6511	4148	*	*	*	*	6500	6612	6363	*	3501	5366	*	1200	2494	14
+       0	*	*	*	*	*	*	9958	0	0	
+
+Q 15   3957	6208	*	*	4961	*	4236	4265	*	2467	3177	5050	*	3416	5026	3700	5532	2523	*	3914	15
+       0	*	*	*	*	*	*	9993	0	0	
+
+I 16   2371	4907	*	*	*	3425	*	4377	*	5662	6248	6512	*	6859	*	*	4254	983	*	5555	16
+       0	*	*	*	*	*	*	10083	0	0	
+
+S 17   3420	*	*	3828	4537	3573	6874	3305	5512	4948	5165	*	6773	4977	3622	2171	4021	3786	*	4682	17
+       17	6419	*	2585	263	*	*	10136	1033	0	
+
+L 18   4249	*	*	6617	3156	4593	*	1687	*	1955	5014	6696	*	6578	*	*	6345	2719	*	*	18
+       13	6818	*	0	*	*	*	10136	1010	0	
+
+Q 19   4993	*	6764	4648	3772	3985	4252	5264	3587	3303	4670	4657	*	4106	3115	5849	4779	3763	6577	2946	19
+       250	5772	2827	1330	732	*	*	10136	1169	0	
+
+Y 20   4952	*	6358	4658	2839	*	4030	2627	4822	4457	4105	6285	*	6339	4906	5584	4381	3610	4363	2679	20
+       206	5644	3144	1000	1000	3837	105	9940	1169	3108	
+
+R 21   4136	*	4768	3943	6251	4207	5134	6000	3015	4836	6081	4300	3566	3879	3516	4518	3474	3409	6406	5244	21
+       304	2494	6312	1099	908	757	1292	9882	3104	4311	
+
+S 22   *	*	2647	5782	4424	3277	4888	*	3400	*	5599	3569	4739	5549	3683	2833	3413	5542	5367	5476	22
+       347	3972	2735	411	2011	518	1729	10141	1859	2568	
+
+G 23   5435	*	3069	3482	4904	3911	6365	6079	4066	6421	*	2870	4337	6219	3998	2592	3551	6320	5476	5529	23
+       142	4902	4056	1247	789	*	0	9926	1384	3528	
+
+S 24   4570	*	3528	3913	*	2259	*	5308	4390	5337	*	3101	3910	4729	5190	3211	4686	3491	*	6138	24
+       190	5286	3357	1144	869	4516	64	9995	1245	4194	
+
+S 25   5161	*	5069	3624	4135	2364	6121	5038	3295	*	*	3240	5882	3736	3506	3591	*	4198	6172	5262	25
+       156	6042	3518	2807	222	3366	147	9672	1008	4968	
+
+W 26   5969	*	3938	4345	3514	3712	4495	4148	3749	4770	*	2921	5296	4138	4452	4126	4580	4830	4574	4115	26
+       69	4987	6072	2004	414	295	2434	9841	1204	5381	
+
+A 27   5443	*	5503	6717	3889	3283	4891	5505	3132	4545	*	3910	5596	3643	3122	3166	3764	4277	*	4510	27
+       49	4898	*	3882	101	508	1753	10104	1386	2040	
+
+H 28   4272	5930	4798	5514	2956	5085	2913	4972	4659	4288	6711	5201	4386	5611	5218	4531	4346	3626	4864	3051	28
+       39	5218	*	1000	1000	1077	927	10148	1292	1193	
+
+T 29   4130	*	5121	*	2973	4734	4162	3862	4538	3085	5258	5658	5841	4764	3939	4167	3390	3388	5686	4952	29
+       44	5060	*	477	1828	0	*	10339	1451	1015	
+
+C 30   4938	227	*	*	6746	4247	*	*	*	*	*	*	*	*	6694	4957	6764	*	*	*	30
+       0	*	*	*	*	*	*	10338	0	0	
+
+G 31   3292	*	*	*	5833	2502	5954	*	*	4240	4612	4706	6460	6677	6795	2515	2130	3804	*	4305	31
+       13	*	6828	*	*	*	*	10354	0	0	
+
+G 32   2694	5902	*	6355	*	391	*	*	*	*	*	*	*	*	*	5245	*	5194	*	*	32
+       0	*	*	*	*	*	0	10355	0	1018	
+
+T 33   2982	6856	*	*	5797	6030	*	4835	*	5113	*	4980	*	*	*	2840	1534	2053	*	6651	33
+       0	*	*	*	*	*	0	10355	0	1018	
+
+L 34   5238	*	*	*	4087	*	6862	2202	6795	1143	4839	*	*	6533	*	*	*	3022	4966	5258	34
+       18	6355	*	2000	415	0	*	10355	1048	1018	
+
+I 35   6729	*	*	*	5945	*	*	1077	*	1924	6918	*	*	*	*	*	6054	2285	*	6883	35
+       82	4177	*	2601	260	*	*	10361	1918	0	
+
+R 36   3167	*	3914	5719	*	3157	4917	*	4552	*	6939	2920	*	6569	5507	1547	3315	*	*	*	36
+       0	*	*	*	*	*	*	10361	0	0	
+
+Q 37   4482	*	3573	2904	*	4480	5092	*	4274	4318	*	3622	2224	4676	3640	3555	4689	5430	*	*	37
+       0	*	*	*	*	*	*	10361	0	0	
+
+N 38   *	*	2839	4735	6900	5793	5248	5296	5154	6140	6770	2976	*	3773	1686	3970	4355	6724	5530	4708	38
+       81	4459	6802	2606	259	*	*	10361	1732	0	
+
+W 39   4822	6736	6000	*	2891	6667	2815	4363	7054	4093	5189	*	*	5678	5773	5393	3459	3989	2711	2811	39
+       12	6947	*	0	*	0	*	10347	1000	1000	
+
+V 40   4266	*	*	*	4623	*	*	1879	*	4191	5140	6492	*	*	*	*	*	928	6945	7017	40
+       0	*	*	*	*	*	*	10371	0	0	
+
+M 41   6492	*	*	*	6510	*	*	2508	*	664	5363	*	*	*	*	*	*	2771	*	*	41
+       0	*	*	*	*	*	*	10371	0	0	
+
+T 42   4861	*	*	*	5928	6402	*	6825	*	*	*	6679	6066	*	*	2662	440	6844	*	*	42
+       23	7189	6847	1585	585	*	*	10371	1000	0	
+
+A 43   1045	*	*	*	*	5979	*	5856	5719	*	*	7106	4504	*	*	2161	3126	4691	6042	5654	43
+       0	*	*	*	*	*	0	10365	0	1018	
+
+A 44   842	6822	5645	5171	*	3403	*	6042	4538	6766	*	4792	5790	*	5221	3433	4880	7180	*	6762	44
+       0	*	*	*	*	*	0	10365	0	1018	
+
+H 45   5022	*	4959	5753	5566	5025	1336	5401	4431	5969	7079	5043	*	4126	4245	2912	4473	6836	6833	4596	45
+       30	5600	*	2437	295	*	0	10365	1222	1018	
+
+C 46   5605	311	*	*	*	6766	*	4727	*	6489	*	6042	6643	*	*	4920	7047	4339	*	*	46
+       38	6714	5907	4459	67	*	0	10365	1005	1018	
+
+V 47   4858	5867	*	*	2078	5498	6681	3939	5891	2557	5362	5595	6781	*	*	5020	3850	2030	*	5128	47
+       308	2616	5098	2338	318	*	0	10345	3753	1374	
+
+D 48   4430	6513	3788	3702	4120	4063	4316	6057	4192	3927	*	4260	7126	3461	4478	3387	4558	4489	*	3148	48
+       69	7119	4651	0	*	*	0	10292	1000	1988	
+
+R 49   5163	*	2683	3493	*	2945	*	6591	3590	6437	*	2922	3942	4011	3957	3270	4837	*	*	5031	49
+       549	1745	5788	1925	441	1206	819	10268	5435	2735	
+
+E 50   3734	6842	3715	4207	5169	3866	5665	5733	4827	3281	6629	4169	3388	6052	3305	3259	4069	4783	*	4835	50
+       32	6277	6806	5492	32	1532	612	10302	1048	2306	
+
+L 51   4446	*	3522	3570	6785	4667	6625	*	2910	5863	*	3458	3515	4535	3358	3657	3531	3851	*	5649	51
+       167	3192	*	2764	230	1709	527	10304	2970	1979	
+
+T 52   4044	*	2543	3360	5923	4325	5389	*	4293	4558	*	3510	3779	4505	3705	4019	3999	5020	*	4314	52
+       31	5538	*	960	1041	*	0	10325	1342	1637	
+
+F 53   5204	*	4194	7147	4293	5185	*	2553	5749	2488	4960	4077	4814	5292	6563	4372	4528	3343	5961	3380	53
+       48	5453	6675	2126	375	1380	699	10285	1345	1818	
+
+R 54   4763	*	4396	3794	4852	5305	3962	4095	3654	4261	4975	4523	4736	5140	3817	3665	3415	3553	5406	4800	54
+       0	*	*	0	*	2065	394	10293	1018	1646	
+
+V 55   4152	*	6806	4864	4023	4738	*	2677	4278	4190	6721	5750	6055	*	6886	6949	5186	1185	*	6411	55
+       18	6351	*	3170	170	*	0	10295	1048	1453	
+
+V 56   4427	*	*	6728	3850	4506	5356	3769	4084	3662	4513	*	5308	4490	2603	4691	3509	3010	5750	4394	56
+       13	*	6814	*	*	*	0	10295	0	1453	
+
+V 57   3514	5887	*	5454	3119	4052	6040	3197	5930	2324	5149	6686	4824	7316	*	7056	4174	2600	*	4332	57
+       23	*	5978	*	*	*	0	10286	0	1617	
+
+G 58   4392	*	4390	4901	5134	992	*	5813	4861	4262	*	5392	6962	5486	4555	5125	5766	4174	7027	5115	58
+       59	6630	5066	2000	415	980	1020	10268	1033	1940	
+
+E 59   3464	*	4014	3924	4706	4016	5429	4481	4596	4130	5274	4281	3988	4584	4448	2695	4348	4206	*	5091	59
+       113	4948	4544	557	1642	1779	497	10259	1527	1926	
+
+H 60   3307	6662	3926	5048	5132	3893	3557	3953	5235	4480	*	4377	5040	4743	5052	3873	3970	3720	5440	3331	60
+       51	6493	5407	3907	100	*	0	10241	1044	2450	
+
+N 61   3936	7252	2696	3415	6702	4735	5650	6024	3577	5628	*	2995	6826	5193	5460	2720	4190	3904	*	4799	61
+       36	*	5347	*	*	3462	137	10227	0	2901	
+
+L 62   4502	6641	5519	4668	3118	5057	5932	3416	3867	3224	4852	6822	5151	4868	3937	3838	4683	3437	5223	4190	62
+       43	6258	5915	592	1570	1539	608	10220	1092	3170	
+
+N 63   5697	6550	3017	5466	5286	3371	5175	5852	4456	4544	6654	3076	4219	4107	4214	3727	3125	4638	*	4516	63
+       131	5956	3824	3700	115	3313	153	10251	1088	2719	
+
+Q 64   3827	*	3208	4551	4122	4117	5272	4620	4374	6552	6518	6584	3935	4044	3737	3049	3888	3680	6681	4651	64
+       14	*	6738	*	*	3140	174	10174	0	3739	
+
+N 65   4601	5903	3977	3897	4481	4171	5825	4778	5194	5141	6569	3671	3701	4051	3225	3510	4288	4101	5059	4609	65
+       43	5741	6520	1000	1000	2422	298	10188	1168	3572	
+
+D 66   3008	6709	2976	3127	6543	3344	5811	5983	4441	3802	*	5275	5260	5129	5832	3222	3940	4662	6597	4515	66
+       20	*	6176	*	*	1935	437	10214	0	3291	
+
+G 67   3944	*	2696	3565	5747	2938	5876	4849	4400	5258	*	4411	3810	3616	5712	3660	3831	5183	*	5262	67
+       60	6287	5172	0	*	*	0	10235	1048	2990	
+
+T 68   3930	4297	4341	5008	4132	3668	4646	5770	5156	4479	5847	3842	3495	4222	4771	3932	3033	5674	5155	4842	68
+       235	3538	3966	4476	66	1487	637	10201	2412	3400	
+
+E 69   4071	*	3913	3296	4456	3055	5804	4068	4100	5643	6518	5398	3953	5075	4118	3344	3713	3932	5391	*	69
+       68	4435	*	2965	198	1978	422	10195	1707	3561	
+
+Q 70   4993	*	3379	3112	7274	4215	6307	3729	4388	4316	*	4430	5189	2736	3063	5667	3995	4710	*	4430	70
+       42	5802	6567	1328	733	2200	354	10232	1169	2942	
+
+Y 71   4223	5455	4374	4140	4742	5621	*	3372	4342	4563	4432	4799	5761	4500	3489	4975	3001	2837	6993	4866	71
+       41	5171	*	3266	158	1174	844	10241	1362	2695	
+
+V 72   3838	6824	*	6880	3031	6740	3871	3554	6957	2962	5558	5847	5941	5122	2899	4865	5089	3209	*	3298	72
+       14	6730	*	2322	322	1092	914	10436	1000	1907	
+
+G 73   4456	*	3701	4442	6966	3459	5372	5807	3094	5172	5138	4738	3402	4253	3865	3680	3685	5758	5874	3780	73
+       14	6744	*	1000	1000	*	0	10319	1023	1409	
+
+V 74   3433	*	5997	5744	5995	5160	5102	1904	5758	4820	6495	6279	5411	6479	*	4194	5520	1597	*	6212	74
+       0	*	*	*	*	1537	609	10319	0	1409	
+
+Q 75   3704	6775	3658	2806	*	5121	4875	4126	2823	4888	6878	4869	5683	5287	3634	3291	4321	4340	*	5218	75
+       0	*	*	*	*	0	*	10332	0	1208	
+
+K 76   4397	*	4181	4101	6035	4785	4196	4894	2741	6899	6765	4003	6543	4134	3133	3181	3617	3945	6808	5467	76
+       36	7082	5853	2000	415	*	*	10352	1007	0	
+
+I 77   3965	6917	6896	5120	3787	6085	5567	2046	4836	5445	5696	6427	6754	5251	4263	4883	4168	2139	5947	5016	77
+       0	*	*	*	*	*	0	10321	0	1205	
+
+V 78   4751	6711	6987	5416	3370	5889	4925	2197	4985	3392	5235	5943	7216	5925	4864	6766	4432	3028	7041	2791	78
+       0	*	*	*	*	*	0	10321	0	1205	
+
+V 79   4447	6768	6849	4359	4050	6936	4947	2542	4455	3322	5047	5583	4856	7436	4241	4817	4432	2536	*	3820	79
+       0	*	*	*	*	*	0	10321	0	1205	
+
+H 80   6633	*	4572	*	5897	5879	1051	5303	4133	5876	7308	4034	3802	5310	4720	5261	4971	*	6120	4121	80
+       68	5895	5103	3487	135	*	0	10321	1192	1205	
+
+P 81   5367	*	4837	3353	6953	5765	5809	*	4840	5226	*	5317	1099	4894	5244	3169	5655	5166	6884	5824	81
+       141	5730	3755	1207	819	2575	265	10460	1276	1840	
+
+Y 82   4860	8109	2574	2988	5224	3147	5031	6652	3090	5730	*	3766	5088	3722	4035	4378	5166	5725	6763	7024	82
+       26	*	5834	*	*	3987	94	10170	0	3047	
+
+W 83   *	5608	6685	*	2068	6906	5295	4444	5462	5164	6457	4416	4740	6922	5516	4789	*	5798	4885	1369	83
+       83	5648	4806	1068	935	3510	132	10150	1178	3196	
+
+N 84   4852	*	2280	4497	5661	4272	5181	4929	3592	3961	*	3157	*	4625	3775	3283	4139	5086	6418	6657	84
+       1076	5572	986	1318	739	*	0	10328	1198	3574	
+
+T 85   3868	*	3314	4160	3917	3702	*	5661	3597	5746	*	5481	2598	*	*	3336	3784	4583	*	3184	85
+       138	4916	4113	2099	384	6478	16	9403	1134	8394	
+
+D 86   5723	*	2575	3238	5539	3478	4491	*	4033	*	*	2949	5681	4552	3975	3571	3334	4270	*	*	86
+       61	*	4584	*	*	324	2315	9334	0	8489	
+
+D 87   3412	*	3485	4459	4488	4091	5225	6522	3526	4762	6452	4055	3290	4866	4284	3237	3337	5356	7013	6623	87
+       43	5783	6507	1306	748	*	0	10331	1176	3564	
+
+V 88   4009	6736	3438	3111	5169	3158	6666	5076	3966	3983	*	3663	3945	5672	6570	4092	2983	5306	6571	5704	88
+       29	5646	*	622	1514	2034	404	10310	1208	3757	
+
+A 89   5359	6838	3736	4740	6947	2858	5492	5593	4769	4035	5412	4589	3981	4952	3784	2907	2966	5251	*	4413	89
+       10	7243	*	1000	1000	3835	105	10206	1000	3127	
+
+A 90   4199	4943	5113	4952	3613	3782	5365	4526	5710	3393	4482	4695	4012	5986	3688	3621	5535	4705	7067	2965	90
+       157	5155	3741	3596	125	2760	230	10214	1408	2983	
+
+G 91   4214	*	3210	3721	5690	3337	5041	4761	3707	4755	5532	3991	6570	4260	3804	3420	3803	5294	*	4219	91
+       61	4965	6703	2336	318	1897	451	10369	1374	3908	
+
+Y 92   5237	*	3674	5724	4505	4072	3954	5922	4608	5923	*	1810	4473	5122	5766	4097	4335	6428	6566	2979	92
+       76	4283	*	3635	121	349	2219	10416	1764	3337	
+
+D 93   6944	*	651	5258	*	4458	5142	*	7471	6061	*	2382	*	6994	5804	*	5875	*	*	*	93
+       11	7069	*	1585	585	550	1657	10319	1010	1416	
+
+I 94   6906	*	*	*	3864	*	*	1597	*	1866	5904	*	6895	*	*	6822	*	2157	5409	4784	94
+       0	*	*	*	*	0	*	10350	0	1008	
+
+A 95   633	4619	*	*	6098	3942	*	6796	*	6955	4610	7065	*	6936	5688	4270	6947	3613	*	*	95
+       0	*	*	*	*	*	*	10352	0	0	
+
+L 96   6863	*	*	*	6098	*	*	2105	*	1133	6112	*	6589	*	*	*	6866	1972	*	*	96
+       12	*	6917	*	*	*	*	10352	0	0	
+
+L 97   4779	5794	*	5409	3590	5276	*	2067	*	1778	4619	*	*	*	*	*	*	2102	6754	*	97
+       0	*	*	*	*	*	0	10346	0	1018	
+
+R 98   7081	*	5889	2739	5071	6900	6267	4609	1875	4587	5962	7108	*	4213	2452	4784	4080	4390	*	5922	98
+       10	*	7234	*	*	0	*	10346	0	1018	
+
+L 99   6075	6828	*	*	5832	*	*	3496	*	478	6184	6089	5837	*	*	7004	4808	4247	*	6619	99
+       48	5954	5902	577	1600	*	0	10348	1173	1000	
+
+A 100  3277	*	2370	3472	6566	4753	*	6773	3481	5475	5307	3341	4440	4311	4256	3281	4838	4885	*	*	100
+       0	*	*	*	*	1602	576	10328	0	1316	
+
+Q 101  5333	*	4183	2887	*	4814	5936	5437	2688	5272	*	4480	4775	3608	3544	3435	2993	4913	6611	5767	101
+       52	6883	5229	4087	87	*	0	10332	1012	1153	
+
+S 102  3677	*	3644	3921	7245	5442	*	6942	4493	5938	*	4468	1508	4677	3388	3782	4271	6392	*	6726	102
+       0	*	*	*	*	1402	686	10443	0	1735	
+
+V 103  2953	*	6601	*	3518	*	7037	1863	6728	2438	6035	4816	5345	6829	*	5461	5491	3036	6760	4775	103
+       168	3691	4940	1100	906	*	0	10305	2355	1396	
+
+T 104  5131	*	3927	3228	6070	4459	4960	5805	4196	5388	*	3469	3447	4226	3535	4219	2738	3951	*	5626	104
+       234	5030	3067	1583	586	2800	224	10401	1460	2107	
+
+L 105  4598	5528	5699	6612	1923	6060	6548	4749	4987	2638	5036	6635	5145	5635	6635	3849	5056	4478	5709	2984	105
+       102	4079	6757	1836	474	2895	208	10115	1916	4122	
+
+N 106  4344	*	3311	5618	6835	3629	6993	5522	3375	5748	6782	3383	4864	4582	6797	2344	2731	4112	*	*	106
+       21	6908	7314	1585	585	1918	444	10152	1000	3861	
+
+S 107  4429	*	2619	3118	6655	4306	4497	5585	3913	5097	5300	4566	3380	4484	3969	3830	4000	4656	*	6675	107
+       27	*	5752	*	*	2278	333	10247	0	3273	
+
+Y 108  4473	6687	4806	5727	3999	3096	3482	6812	3734	4050	*	2727	5243	4219	4119	4872	5890	4699	*	3337	108
+       29	5669	*	1479	641	1117	892	10254	1208	3116	
+
+V 109  2946	*	6590	*	4033	4639	*	2296	6665	3390	6176	*	6654	5966	*	5127	4574	1779	5899	5000	109
+       71	4647	6966	1907	448	1251	786	10498	1625	2126	
+
+Q 110  4634	6116	4866	5764	5257	3991	5067	4097	3534	5747	6884	4594	6018	2622	2874	2908	4611	4419	*	5296	110
+       11	*	6987	*	*	2395	304	10457	0	1771	
+
+L 111  4102	*	*	4219	5260	6982	6955	4208	4821	4629	7014	6687	1044	4554	5850	6618	3762	4464	*	5354	111
+       0	*	*	*	*	2294	329	10465	0	1757	
+
+G 112  2266	6854	*	6902	4780	4253	5815	1745	5954	3415	5307	6912	5282	*	*	5340	5775	2662	*	*	112
+       0	*	*	*	*	1752	508	10475	0	1572	
+
+V 113  4789	1180	6062	4810	*	4626	6540	7184	3492	5959	*	6235	3690	5230	4073	5938	4171	4521	*	5913	113
+       26	5833	*	614	1528	1659	549	10560	1167	1352	
+
+L 114  *	*	6837	*	3966	5296	*	2957	*	910	5556	*	6792	6395	5786	5830	4614	3362	*	5325	114
+       0	*	*	*	*	*	0	10563	0	1185	
+
+P 115  3047	6866	3903	6635	6134	4247	6731	4976	6912	4119	*	4359	1441	6953	5962	3731	5484	5619	4486	5984	115
+       112	4306	5385	1843	471	*	0	10563	1907	1185	
+
+R 116  4622	*	3449	3989	4139	5356	5427	6359	5193	3499	*	4132	4725	3875	4009	2612	3149	4257	6681	6810	116
+       6	7819	*	3459	138	*	0	10536	1031	1704	
+
+A 117  3860	6678	3397	4087	*	4947	6148	5003	3261	4908	6888	3512	4059	3516	4766	3140	3498	4486	*	5291	117
+       11	*	6996	*	*	2687	243	10465	0	1904	
+
+G 118  4547	*	3101	3479	5457	2979	6909	4931	4706	3910	7096	3241	4455	4149	5092	3878	3966	4276	5817	6690	118
+       51	5153	7202	2681	245	*	0	10472	1459	1894	
+
+T 119  4960	*	4360	3028	6197	6760	5252	4382	5394	3577	5796	4236	3484	4577	4289	3805	3181	3348	6670	4360	119
+       13	6807	*	1585	585	*	0	10527	1022	2031	
+
+I 120  4366	*	3328	4505	4942	5349	4927	4842	3955	3268	5939	4166	4507	5760	4030	3572	2992	3192	*	*	120
+       136	4599	4368	1648	554	1367	708	10527	1684	2031	
+
+L 121  6220	*	4556	4525	4354	6040	*	3806	3832	2652	6988	4223	3200	4384	4245	4172	5169	2824	6489	5095	121
+       692	*	1392	*	*	3237	162	10506	0	2569	
+
+A 122  4266	6113	3927	3515	4966	5929	4601	3732	4326	4556	6227	3787	2750	3614	6276	3285	4242	5191	6475	*	122
+       188	3031	*	135	3482	1664	547	9844	2396	7283	
+
+N 123  3278	6258	3574	3811	5461	4761	6444	4939	4345	3610	4809	3817	3485	5468	4903	4789	3009	4525	*	4719	123
+       61	4606	*	3887	101	348	2222	10144	1484	5967	
+
+N 124  4399	*	3468	3974	6693	2261	5534	5395	4873	4460	*	2976	3729	4532	4089	5234	4488	7246	5791	4180	124
+       13	6758	*	0	*	*	0	10508	1009	2237	
+
+S 125  3877	6844	3177	4354	6000	3910	5262	6946	4027	4924	5376	3914	6991	3680	3953	3494	2876	4039	*	5236	125
+       70	4685	6935	315	2352	*	0	10508	1650	2237	
+
+P 126  4018	*	3140	3662	5971	5060	5161	5659	3583	5460	5905	3816	3893	3125	4557	3735	3698	4006	6557	6831	126
+       13	6752	*	0	*	1648	555	10504	1009	2411	
+
+C 127  3855	2094	*	6907	4773	3424	*	4019	7039	2537	4748	*	6854	7136	7039	5655	5132	2668	*	4299	127
+       12	*	6944	*	*	*	0	10471	0	1930	
+
+Y 128  5070	7018	4115	6701	4279	6831	4706	3693	4457	3155	5377	4759	5776	5368	4271	3677	2854	3700	4894	3661	128
+       11	*	7012	*	*	2742	234	10516	0	2092	
+
+I 129  4435	*	6722	8090	4023	5864	*	2700	7004	2216	4127	5918	*	5270	*	5333	3442	1959	*	6465	129
+       13	6766	*	2807	222	2652	250	10523	1000	2059	
+
+T 130  3344	5305	6712	7013	4002	4649	6931	3542	6860	3509	7017	6416	5314	*	6831	2959	3164	2220	*	4108	130
+       5	8062	*	2807	222	1667	545	10480	1000	1872	
+
+G 131  5521	*	*	4957	*	671	7033	8154	5740	4136	6893	7418	6427	5812	6725	3989	3992	4514	*	6866	131
+       23	*	5980	*	*	*	0	10496	0	1551	
+
+W 132  5499	6732	*	*	2404	*	5420	4106	*	4626	5753	5205	*	*	*	5803	6411	*	1434	2236	132
+       140	*	3431	*	*	*	0	10491	0	1873	
+
+G 133  6111	*	3992	5180	6880	965	5779	6672	4412	6568	*	4198	3472	*	4669	4170	6271	5188	*	6805	133
+       84	5720	4726	1811	484	*	0	10374	1236	3544	
+
+L 134  4073	6344	3828	5312	4484	4745	5304	4388	4667	3171	4320	4198	5678	5400	3205	3558	3496	4693	5098	5078	134
+       90	5615	4637	571	1614	1766	502	10321	1224	4118	
+
+T 135  5122	*	3000	4075	4162	4707	5488	5453	6760	4431	*	3943	5255	4307	4413	3237	2278	4267	*	4670	135
+       50	5993	5777	1000	1000	2529	274	10466	1169	3853	
+
+R 136  5220	*	4863	3552	4291	3056	5914	*	2596	3947	*	3878	6560	5609	3497	3238	3744	4654	6385	6015	136
+       126	3883	6002	4026	91	1380	700	10503	2051	3655	
+
+T 137  4543	*	3529	3046	3441	4227	5801	5626	5491	3993	5736	4386	3775	4359	4935	3299	3791	5703	5333	4581	137
+       156	6838	3420	3322	152	1099	907	10565	1000	2962	
+
+N 138  3881	*	3565	3980	5168	2683	4215	5532	4430	5298	6403	3030	5189	4342	4283	3321	4552	6791	*	4665	138
+       159	6549	3412	0	*	1420	675	10476	1003	3607	
+
+G 139  5195	6238	3971	4291	5740	1856	5373	4664	4538	5801	6885	3281	4190	4929	6809	3474	3727	5033	*	5561	139
+       448	1959	6699	996	1004	954	1048	10226	4903	4131	
+
+Q 140  3819	*	3713	4119	5479	3281	4794	4386	3311	6030	7076	4177	3848	4584	4639	3262	3614	4056	*	6636	140
+       22	*	6041	*	*	2479	285	10251	0	2915	
+
+L 141  4851	6571	4895	4751	4340	3834	4870	4840	4006	3860	4780	5795	3474	4425	4341	3303	3965	3507	5979	4186	141
+       15	6643	*	0	*	2750	232	10285	1026	2888	
+
+A 142  3580	*	4897	3989	5494	4211	5125	4119	3965	4326	5835	4776	2895	4624	5496	2388	5332	4916	6845	4850	142
+       0	*	*	*	*	3323	152	10297	0	2609	
+
+Q 143  4362	6929	4372	4427	5529	3067	7028	4747	3975	3942	6465	4378	3448	3707	3641	3877	3582	4617	*	4888	143
+       0	*	*	*	*	1584	585	10299	0	2444	
+
+T 144  4239	6118	4845	4430	5824	4948	4295	5688	3712	5173	6887	3308	4578	3910	3264	3111	4046	3539	6764	4896	144
+       44	6575	5675	3907	100	1032	969	10305	1015	1931	
+
+L 145  5977	*	*	6084	3834	6033	*	3324	4582	1383	4590	5708	3742	5727	4793	4430	5539	3580	*	5862	145
+       0	*	*	*	*	2393	305	10301	0	1800	
+
+Q 146  5827	*	5372	4888	4854	4225	4249	4259	3244	3609	5281	6004	8155	2770	2652	3989	3928	6931	7071	4344	146
+       0	*	*	*	*	*	0	10470	0	1619	
+
+Q 147  4953	4920	5910	2921	6993	5867	4555	5296	2972	4652	5062	4442	4199	3946	4636	3701	4243	4219	4653	3896	147
+       18	6362	*	1585	585	*	0	10470	1048	1619	
+
+A 148  2809	*	*	5452	4583	4812	4435	3865	5828	2974	5410	4478	5119	5817	5019	3971	3567	2682	6751	4706	148
+       0	*	*	*	*	*	0	10470	0	1619	
+
+Y 149  5640	*	3677	2948	5144	5032	4269	7158	3380	6855	5422	3551	4209	4592	3935	3727	3362	4373	*	4078	149
+       26	*	5809	*	*	*	0	10299	0	1619	
+
+L 150  4239	6709	*	4888	4355	5959	*	3775	5462	2757	3608	5044	6711	5583	5177	5760	3160	1917	*	5080	150
+       14	6652	*	3459	138	1574	590	10419	1076	1992	
+
+P 151  4877	*	3600	3830	5338	5119	5260	4080	3885	5987	6914	3808	2893	5854	3344	3086	4070	3925	*	5816	151
+       0	*	*	*	*	*	0	10294	0	1612	
+
+T 152  4317	5104	5914	5275	6025	4417	*	2846	4364	2258	5251	6563	5677	7109	5619	3908	4008	2436	*	5507	152
+       57	*	4699	*	*	*	0	10294	0	1612	
+
+V 153  4397	6441	5790	6043	4965	5780	*	2782	4353	2344	4088	6657	5864	6931	3716	4620	3887	2926	6872	4388	153
+       93	4723	5333	1225	805	*	0	10246	1636	2442	
+
+D 154  3861	*	3111	3920	*	4767	6689	5784	4729	6707	*	3137	2450	6698	4421	2469	3616	6107	*	6983	154
+       13	*	6823	*	*	*	0	10204	0	2863	
+
+Y 155  4144	4931	3712	4099	4598	3577	4649	4732	4708	3378	6123	4059	4029	5035	3737	3969	4012	5690	6680	4541	155
+       28	6716	6647	2000	415	*	0	10200	1006	3013	
+
+A 156  3732	6657	3476	2788	*	4412	5702	5323	2873	5813	*	4646	5129	3585	4473	2686	4848	6847	5817	5553	156
+       22	6776	7449	2000	415	3595	125	10179	1000	3162	
+
+I 157  4470	6560	2954	2487	4401	*	*	4657	3488	4333	4539	3961	*	5791	4305	4099	3441	5001	6720	4504	157
+       31	5574	*	599	1558	1763	504	10179	1237	3106	
+
+C 158  5550	517	6915	*	6691	4736	*	5579	*	5641	6824	5368	4513	*	5267	5299	5194	7074	6449	6756	158
+       1040	7778	974	2322	322	*	0	10223	1031	2674	
+
+S 159  2886	5497	3652	4124	5978	5657	5444	4044	3864	5697	*	3806	4796	4152	2819	3771	5478	3796	5295	*	159
+       91	4620	5604	2305	326	*	0	9209	1257	8231	
+
+S 160  3118	*	3524	3413	*	3340	5630	5417	3813	5733	*	3615	5081	4766	2713	2923	5710	*	*	5623	160
+       0	*	*	*	*	399	2048	9172	0	8291	
+
+S 161  4864	*	5634	3554	4679	4355	4278	4647	4634	4025	5529	3964	4764	3177	2702	3579	4036	5542	6576	5981	161
+       0	*	*	*	*	*	0	10120	0	3581	
+
+S 162  4741	5938	5752	3351	5011	3921	4416	4699	3114	3457	4096	5006	4751	4753	4262	4156	3768	4401	6647	4715	162
+       29	*	5637	*	*	3011	191	10120	0	3581	
+
+Y 163  3183	*	5136	4721	4947	4576	4664	3767	4457	3865	5840	5722	4133	3897	3941	4101	4098	4526	5089	3224	163
+       52	5899	5727	3000	193	*	0	10118	1105	3566	
+
+W 164  4886	6744	3554	7204	2758	4994	5532	4803	5068	2958	4361	5244	4686	5251	4645	5432	5551	6705	5366	2242	164
+       136	4306	4664	2141	371	1933	438	10120	1834	3838	
+
+G 165  4376	*	4623	3325	5154	2473	5742	4640	4823	6797	*	3554	3840	4259	3892	2963	3897	6804	*	5556	165
+       124	4451	4782	2900	208	4218	80	10117	1686	3823	
+
+S 166  5788	6633	3886	3920	4922	2802	4064	5238	4314	3563	6516	3660	5021	4161	4113	3963	4607	4263	5872	4980	166
+       343	2316	6509	1094	912	1312	744	10069	4058	4209	
+
+T 167  5079	5418	4872	5537	3347	3453	5824	3506	3658	3164	*	5846	3899	4280	*	4034	3309	4671	7268	4018	167
+       30	5617	*	2297	328	2702	241	10159	1231	3167	
+
+V 168  4490	6938	4289	4483	3644	5785	*	3200	4800	2180	5789	4858	5042	5280	*	4611	3594	3077	6952	5112	168
+       102	3870	*	1568	593	1914	445	10187	2117	2844	
+
+K 169  4860	*	3360	4386	5882	3941	3940	4326	4756	4865	6899	3857	3488	4032	6543	3079	2801	*	6722	4565	169
+       14	6707	*	2807	222	*	0	10234	1009	2348	
+
+N 170  4445	6960	2841	2798	5258	5231	5784	5727	4506	4637	6709	3009	3635	5734	5583	3003	4210	4487	*	6449	170
+       11	*	7078	*	*	3044	186	10234	0	2348	
+
+S 171  5932	6850	2998	3709	5894	3539	5439	*	4107	4175	6715	3230	5619	4371	3921	3211	3280	4861	6726	5135	171
+       0	*	*	*	*	3417	142	10247	0	2333	
+
+M 172  6341	5888	5335	3302	4414	4554	3626	4453	3987	3782	3546	5298	6959	2976	5394	4762	3890	4309	*	3878	172
+       56	5093	6783	962	1039	*	0	10254	1454	2201	
+
+V 173  5139	*	*	*	2153	4696	*	2541	6442	2380	3094	5547	*	5394	6042	5673	6676	3623	6884	4781	173
+       15	*	6556	*	*	*	0	10244	0	2366	
+
+C 174  5588	428	5694	5535	*	*	*	5741	7390	6651	6606	5808	5314	*	*	4590	5111	5805	*	5743	174
+       52	*	4816	*	*	3280	157	10218	0	2527	
+
+A 175  1714	6395	6840	6730	5594	3286	*	5311	5825	3785	5229	4864	*	5787	5580	5646	2855	2655	*	6693	175
+       128	*	3559	*	*	3641	121	10178	0	2945	
+
+G 176  4169	*	4834	4052	6567	2618	6444	5087	3060	4224	*	5474	5688	4587	3873	3579	3535	4337	5560	3858	176
+       134	4162	4934	3231	163	2654	250	10093	1828	4046	
+
+G 177  4179	6643	4385	4545	5753	3423	5382	5487	5719	4530	*	3368	3625	4779	4049	2690	5014	3486	*	3759	177
+       574	1653	6621	672	1425	807	1223	10112	5358	4038	
+
+D 178  4139	*	4184	3459	5178	3786	4471	4421	3287	4097	5505	3713	4013	4160	4797	3726	4014	5885	6808	5105	178
+       201	*	2943	*	*	3323	152	10264	0	2517	
+
+G 179  5940	*	3609	4330	4968	2498	4407	*	3780	5541	6787	4037	3593	4617	3775	3652	3324	5428	*	4953	179
+       33	6420	6532	1000	1000	579	1598	10150	1033	4479	
+
+V 180  4252	7306	3236	4043	4516	2810	6772	6888	4451	4825	6861	3448	4662	5218	5066	3579	3111	5119	5439	4580	180
+       62	5664	5483	2712	239	1705	528	10248	1206	2377	
+
+R 181  3116	6809	3571	3589	6644	4062	5983	4751	3420	4908	5987	5975	4273	3657	5423	3290	3207	6578	6790	4538	181
+       0	*	*	*	*	2626	255	10241	0	2336	
+
+S 182  3548	*	2357	4333	6396	2656	6901	5224	4441	5765	*	4387	5282	4687	3828	3696	3101	*	*	5433	182
+       81	5914	4721	2304	326	*	0	10262	1162	2105	
+
+G 183  3053	6841	6839	5196	3772	5839	7800	3759	6836	3345	5147	4876	4199	4663	5183	3407	3058	2989	5988	5729	183
+       93	4226	6779	2269	335	1821	480	10208	1828	2782	
+
+C 184  5570	838	5752	5740	5829	5887	6620	5941	6190	4635	*	4769	6720	4804	5904	4253	4780	5100	5968	4853	184
+       44	5055	*	1668	545	849	1168	10238	1407	2424	
+
+Q 185  4238	*	4560	4098	5938	3546	3466	5398	5442	4931	5920	3106	2849	3456	3875	4009	4509	6644	5183	*	185
+       14	*	6654	*	*	0	*	10286	0	1564	
+
+G 186  5231	6763	5327	5005	5688	1006	7082	4499	5350	4552	4933	5358	5562	*	4481	5805	5280	4084	6098	4977	186
+       0	*	*	*	*	*	0	10347	0	1026	
+
+D 187  5301	7412	1157	3870	6092	4301	6674	7069	7014	4970	4392	4333	5209	3994	4950	5765	3676	6935	7519	*	187
+       11	6996	*	3170	170	*	0	10347	1000	1026	
+
+S 188  3346	6739	6463	4848	4565	5398	6810	4313	*	3518	*	6012	3767	6659	4647	1398	4167	4883	5939	6671	188
+       11	*	7039	*	*	0	*	10347	0	1026	
+
+G 189  5328	*	*	*	*	180	*	*	*	6824	6759	6815	*	*	*	4433	6505	6934	*	*	189
+       0	*	*	*	*	*	0	10335	0	1002	
+
+G 190  2817	6827	4385	6718	6382	1544	*	*	*	6824	5784	4360	*	*	*	1539	5869	*	*	*	190
+       0	*	*	*	*	*	0	10335	0	1002	
+
+P 191  2630	*	*	*	*	3217	*	*	*	6505	*	7865	690	6819	*	4714	5446	5281	*	*	191
+       0	*	*	*	*	0	*	10335	0	1002	
+
+L 192  3622	*	*	7055	5255	*	*	2481	*	1364	3859	*	*	*	*	*	6510	2195	5705	*	192
+       48	4921	*	1211	816	*	*	10343	1495	0	
+
+H 193  5958	*	*	5134	2675	5513	5222	2878	*	3649	4245	7865	6077	*	*	5893	4002	2093	4397	3301	193
+       22	7136	6985	1000	1000	*	*	10343	1000	0	
+
+C 194  3553	2217	6023	4532	4561	5673	5961	3879	5003	3689	6013	5881	*	4627	4024	4132	4024	3575	*	4332	194
+       322	*	2320	*	*	*	0	10310	0	1000	
+
+L 195  5604	*	3896	3607	5423	5016	6458	5424	4528	3614	4904	3574	4661	3402	2941	5462	3674	3344	*	4831	195
+       54	6526	5253	0	*	*	0	10095	1022	4555	
+
+V 196  3887	*	3272	4158	6238	*	3853	4784	3094	3153	6426	4456	*	4091	3341	3660	4339	4604	*	4624	196
+       461	1871	*	1003	997	77	4264	10052	4585	4852	
+
+N 197  5894	*	2248	3717	5285	2551	7039	*	4121	*	*	2238	5676	4662	5200	3660	4719	5643	*	*	197
+       54	5127	6977	1335	729	*	0	10272	1377	1076	
+
+G 198  5932	*	2782	4413	5727	1709	6630	5773	4041	6585	6390	2288	5727	4170	5356	4594	*	6629	*	*	198
+       66	5310	5669	2663	248	*	0	10272	1274	1277	
+
+Q 199  5223	*	6946	3590	6817	4166	4648	4577	2840	6707	6806	4211	6778	3573	2629	4154	2910	3653	*	*	199
+       445	4823	2120	1308	746	1746	511	10231	1540	1671	
+
+Y 200  4821	*	*	5411	3321	6203	5952	4816	4890	4198	5429	5393	3048	*	3535	5306	4938	3924	2276	3277	200
+       0	*	*	*	*	3244	161	9992	0	5100	
+
+A 201  4928	5610	*	5310	3403	*	4430	4231	4150	5651	6123	*	*	4883	4374	5517	3029	2693	*	1968	201
+       0	*	*	*	*	0	*	10025	0	4749	
+
+V 202  4425	*	*	*	5789	*	*	3034	*	1103	6465	*	*	3256	*	6660	6707	2309	*	6586	202
+       0	*	*	*	*	*	*	10282	0	0	
+
+H 203  4472	5803	*	*	4143	6916	5277	2301	5964	3870	*	*	*	4849	4687	6690	4517	1759	5612	3104	203
+       12	6894	*	1585	585	*	*	10282	1000	0	
+
+G 204  3535	*	6800	*	*	179	*	*	*	6417	*	*	*	6651	*	*	*	*	*	*	204
+       0	*	*	*	*	*	*	10265	0	0	
+
+V 205  5851	*	*	6790	6788	*	*	1218	*	2664	4617	5579	6843	6848	*	5708	5666	1948	*	*	205
+       24	*	5924	*	*	*	*	10265	0	0	
+
+T 206  4002	*	*	6560	4024	6794	5907	3490	5030	2577	4885	5079	5867	6785	5095	4993	3521	2158	5187	3972	206
+       15	*	6620	*	*	966	1035	10260	0	1161	
+
+S 207  3293	*	4152	*	*	4492	5792	4159	5165	5103	5556	5562	*	6493	6637	1302	2875	4043	*	*	207
+       100	*	3903	*	*	862	1153	10268	0	1190	
+
+F 208  4016	*	5587	4927	2413	3861	3946	5591	5761	3563	*	4822	6560	5523	3320	5290	4594	5718	3899	3078	208
+       723	5475	1428	1300	752	*	0	9952	1205	2215	
+
+V 209  4182	*	4817	*	*	1226	*	5754	4155	4707	*	6112	4243	4741	5492	3586	4274	3528	5606	*	209
+       550	3646	2076	2626	255	838	1183	9251	1664	6430	
+
+S 210  3308	*	6100	4442	5950	2789	4210	5073	4047	5117	4038	5260	3231	4444	4821	2952	3587	5851	*	*	210
+       251	5307	2897	1743	512	2521	276	9458	1167	5524	
+
+R 211  3557	5761	3457	3164	3660	4112	*	3756	4695	4976	*	3442	3517	*	3212	5876	3948	4521	*	*	211
+       30	*	5607	*	*	583	1590	9391	0	5822	
+
+L 212  3703	5351	4158	4290	3793	3495	4836	*	4229	4258	5396	4200	4541	6302	4954	3715	3714	3873	*	3273	212
+       16	6491	*	2000	415	846	1173	9822	1000	3047	
+
+G 213  6331	5645	3469	3596	4251	2051	4548	6538	4211	6147	6474	3452	*	4165	4026	3639	4881	5482	*	5452	213
+       131	4184	4970	2009	412	*	0	9910	1723	1871	
+
+C 214  *	794	5504	4547	6728	*	6629	6598	5463	6538	*	3891	4875	4774	5517	4096	5362	6251	6002	5384	214
+       53	*	4792	*	*	3252	160	9858	0	2381	
+
+N 215  3279	*	3544	3819	5586	2214	*	*	4786	6454	*	3557	4778	3742	5436	3000	4255	6436	6522	4744	215
+       208	4310	3577	1043	958	2006	413	9792	1657	2759	
+
+V 216  4416	6281	3264	4358	6411	3556	5208	4936	4167	3747	4899	3758	5146	4310	3646	4026	3508	4161	*	5077	216
+       583	6292	1645	1000	1000	2234	345	9700	1000	3391	
+
+T 217  3772	4654	3943	4006	5777	3463	5808	4964	3399	4198	*	4356	3092	*	4822	3279	3421	4825	*	5744	217
+       109	4922	4653	2000	415	1249	787	9124	1176	6079	
+
+R 218  6026	5277	2978	4111	4439	2113	6351	6352	4244	*	*	4707	5855	4468	4696	3437	2802	5193	*	5859	218
+       0	*	*	*	*	1340	725	9451	0	4612	
+
+K 219  4657	*	3674	4645	4465	3685	3883	3877	4139	4611	6448	3536	6083	4168	3768	5272	4277	5005	5306	3180	219
+       0	*	*	*	*	439	1931	9734	0	3316	
+
+P 220  4622	*	5649	5513	4586	3468	6054	4431	5556	3970	5388	5476	1512	4459	6521	4247	6642	4024	*	4022	220
+       60	4612	*	1491	634	989	1011	9938	1569	1538	
+
+T 221  2559	*	3214	3533	5014	2704	6572	4630	6671	3716	4093	6429	6641	*	6326	3655	4195	3902	*	5547	221
+       30	6544	6638	3322	152	*	0	9965	1000	1179	
+
+V 222  5212	*	*	6782	5546	4220	*	2519	6548	2446	4514	6463	*	*	5461	4428	4283	1777	5831	4830	222
+       56	4727	*	1212	815	586	1583	9956	1484	1352	
+
+F 223  3446	*	*	*	1985	4246	3602	5425	*	3971	4945	*	*	*	6252	4938	*	3738	*	1834	223
+       0	*	*	*	*	0	*	9964	0	1000	
+
+T 224  3995	6667	6427	*	*	6278	*	3114	6582	4268	4712	4392	6328	5062	*	4135	1451	2596	6812	*	224
+       0	*	*	*	*	*	*	9972	0	0	
+
+R 225  4025	*	2637	5466	5443	*	6714	*	2866	5127	*	2500	4184	4986	2380	4674	5080	6566	*	5501	225
+       0	*	*	*	*	*	*	9972	0	0	
+
+V 226  5636	*	*	*	*	*	*	1653	6065	2513	6714	*	*	*	*	*	3667	1382	*	*	226
+       0	*	*	*	*	*	*	9972	0	0	
+
+S 227  2430	*	3765	4629	*	4196	6365	6542	6565	4942	6602	5521	5723	*	3246	2059	5200	4487	5654	3446	227
+       30	6327	6901	1000	1000	*	*	9972	1015	0	
+
+A 228  4019	*	3732	4614	5408	4586	5627	*	4863	4467	*	5061	3065	4830	3242	2292	5008	5265	*	3242	228
+       92	4020	*	878	1133	*	0	9979	1904	1000	
+
+Y 229  6437	*	5355	5545	2402	*	2269	5052	*	4485	6257	6400	*	5576	5117	5651	*	3477	*	1802	229
+       0	*	*	*	*	0	*	9979	0	1000	
+
+I 230  3651	6641	6532	4712	6672	6742	6597	3863	4106	1942	5479	6617	*	*	3110	4018	3630	3253	5030	5756	230
+       13	6801	*	0	*	*	*	9972	1000	0	
+
+S 231  3798	*	1603	3490	*	6402	5419	*	3797	4912	6631	3409	3014	5089	6570	4208	5117	6660	*	6808	231
+       0	*	*	*	*	*	*	9963	0	0	
+
+W 232  *	*	*	5463	2580	*	*	*	*	6570	*	*	*	*	6266	4717	*	6494	484	5492	232
+       0	*	*	*	*	*	*	9956	0	0	
+
+I 233  6019	*	*	*	4896	*	*	489	*	2539	5348	*	*	*	*	5541	*	5632	*	*	233
+       18	6331	*	0	*	*	*	9956	1018	0	
+
+N 234  4165	6181	4156	2447	*	5321	5371	4310	2418	4216	6567	6757	6582	4066	3257	5387	4557	3959	5997	6701	234
+       0	*	*	*	*	*	*	9927	0	0	
+
+N 235  4160	5970	3196	3402	*	3718	4729	*	3648	6648	5405	3488	6476	2716	5205	2760	4150	*	6185	*	235
+       0	*	*	*	*	*	*	9849	0	0	
+
+V 236  4942	*	6172	5366	5186	6208	6619	2343	6395	4069	5520	2776	6438	3786	6283	5214	2711	2809	*	5465	236
+       0	*	*	*	*	*	*	9742	0	0	
+
+I 237  5102	*	*	*	4973	*	*	2070	*	2547	2580	5733	*	6096	*	6163	2522	2971	*	6208	237
+       0	*	*	*	*	*	*	9528	0	0	
+
+A 238  3534	*	4779	4123	*	2892	6050	*	2230	*	*	2869	*	3624	4058	3000	6141	5432	5910	*	238
+       0	*	*	*	*	*	*	9145	0	0	
+
+S 239  5033	*	5416	3526	*	5391	*	4296	2530	4759	*	2588	*	5221	3494	2055	5350	5187	*	*	239
+       0	*	*	*	*	*	*	8102	0	0	
+
+N 240  3825	*	3661	*	*	*	2138	*	*	*	*	682	*	*	*	*	*	*	*	*	240
+       0	*	*	0	*	*	*	5490	0	0	
+
+//
+�HHsearch 1.5
+NAME  1b2f6c29a7ee470020810a8013596703
+FAM   
+FILE  1b2f6c29a7ee470020810a8013596703
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:47:25 2013
+LENG  214 match states, 214 columns in multiple alignment
+FILT  126 out of 1562 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  10.2
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEEEECCCCCCHHHHHHHHHHHHCCCCCEEEEEECCCCCCCCCHHHHHHHHHCCCCCCCCCHHHHHHHHHHHHHHHHHHHHHHHHCCCEEEEECCCCHH
+HHHHHHHCCHHHHHHHHHHHHHHHHHHHHCCCCCEEEEEECCHHHHHHHHHHCCCCCCCCCCCHHHCCHHHHHHHHHHHHHHHHHCCCCCEEEEECCCCH
+HHHHHHHHHHHHCC
+>ss_conf PSIPRED confidence values
+9899988999999999999999844159638997157777532169999998424344456678999999987899999999998469989995873057
+9988752133445656999999999875068877699997999999999983566553220102223299999999999999975467998999599999
+99999999997369
+>Consensus
+xxIxixGxxGsGKtTxxxxLxxxlxxxxxxvxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxixxxxxxxxxvixDrxxxxx
+xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxdxivxLxxxxexxxxRlxxRxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxidxxxxx
+xevxxxIxxxlxxx
+>1b2f6c29a7ee470020810a8013596703
+MLIAIEGVDGAGKRTLVEKLSGAFRAAGRSVATLAFPRYGQSVAADIAAEALHGEHGDLASSVYAMATLFALDRAGAVHTIQGLCRGYDVVILDRYVASN
+AAYSAARLHENAAGKAAAWVQRIEFARLGLPKPDWQVLLAVSAELAGERSRGRAQRDPGRARDNYERDAELQQRTGAVYAELAAQGWGGRWLVVGADVDP
+GRLAATLAPPDVPS
+>gi|21668336|emb|CAC84481.1| thymidine kinase [Heliothis virescens ascovirus 3c]
+-YVSVEGNIGSGKSSVMRSVAKHFDDCI---LFCEEPVND--W--GLLEYMYRDPT-KY-AFAFEVQVLTSkYH------KWINALDEcrrtqKRIVVME
+RsplsayKVFTRMMRERGTISSQQYHIYTQMFAEFQPQ---LKTIDHIVHIDTRASTCQVRAGERNRKAE-E-----ALSLEYLLDVESYTNNYVRDH--
+SSVYTIDGDRSREHVAGELTAFLS--
+>gi|342733037|ref|YP_004771876.1| adenylate kinase [Candidatus Arthromitus sp. SFB-mouse-Japan]gi|342330492|dbj|BAK57134.1| adenylate kinase [Candidatus Arthromitus sp. SFB-mouse-Japan]
+-RILLIGPPGVGKGTQANLICSKYN---LKHISTgdilRkYISDDSEI-GKRISNYgIDC--GKFVSDDLVNSIV------------SQLKSDKildQSY
+LLDGYPRTVS--QAEF--------YINNILNK------N-EKYLVIYLSTSNEYILNRISNRLtciNCGNIynlQNdlpkiygkcdicgn-RLIIRSDDK
+VNILkerLEIYYRITsrvvDYFRNlDVLYEIDASYGINEIFSQVKKVIG--
+>gi|297182654|gb|ADI18812.1| shikimate kinase [uncultured SAR11 cluster bacterium HF4000_37C10]
+-------MMAVGKTTLGKIVAKKQELK---FIDIDAsIEK--KN-SMTIREIFKK---------KGEKFF-----RMEeENEILKSLEKNNCVIA-----
+-----LGGGAF-----MNKTVRENILK-------NAISIWLNVDIKTLNQRVKWNQK----RP--LLK-EEN-YqKKITKLYAERKNIY-KLANHQIAcD
+KLSKDNIAEKIIAL----
+>gi|26346689|dbj|BAC36993.1| unnamed protein product [Mus musculus]
+----------------------------FGTTvpfTSRKPRED-EKDGQ-AYKFVSRSEmEADIkAGKYLEHGEYEGNLYGTkIDSILEVVQTGRTCILD
+--------------------VNPQALKVLRTS---EFMPYVVFIAAPELETLRamhKAVVDAGITT----------KLLTDSDLkktvdESARIQRAYNH
+Y-FDLIIVNDN--LDKAFEKLQTAI---
+>gi|212703228|ref|ZP_03311356.1| hypothetical protein DESPIG_01270 [Desulfovibrio piger ATCC 29098]gi|212673494|gb|EEB33977.1| hypothetical protein DESPIG_01270 [Desulfovibrio piger ATCC 29098]
+-LITVAGLVGSGRGAIINLLSEWMDSKHVQNHVFWLVTDE-----EKARPWPWRF---W-------------------RQ-LP--AAGQTAVFYDGWYGE
+AMRQRCckDVGENEFTASMHRWQALESGLAESGMAIIKLWLHLNKKDHARALKE----------------------------------------------
+----------------
+>gi|78778435|ref|YP_396547.1| dephospho-CoA kinase [Prochlorococcus marinus str. MIT 9312]gi|109824304|sp|Q31DD4.1|COAE_PROM9 RecName: Full=Dephospho-CoA kinase; AltName: Full=Dephosphocoenzyme A kinasegi|78711934|gb|ABB49111.1| dephospho-CoA kinase [Prochlorococcus marinus str. MIT 9312]
+----------------------------------------------------------------------------------------------------
+-------------------------------ICTEIWLVKCPRELQKKRLITRDKISE----------KEAYETINLQLSF-EEKSK-FSDIILDNSDDQ
+NKWINTIREIL---
+>gi|189183429|ref|YP_001937214.1| hypothetical protein OTT_0522 [Orientia tsutsugamushi str. Ikeda]gi|189180200|dbj|BAG39980.1| hypothetical protein OTT_0522 [Orientia tsutsugamushi str. Ikeda]
+---------------MILALE----KLVYVV--ILKSATD-VI-AES-QAK---gDMRPWE-Q--pDfVDKIVLTQKLRQ----MNA--VCEVQFYDRSP
+FCAYALWHY-------------------------------------------------------------------------------------------
+-----------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    5098	*	*	*	*	*	*	5187	2092	3047	1836	*	*	*	2643	*	3905	4201	*	5237	1
+       32	5522	*	2034	404	*	*	8180	1182	0	
+
+L 2    5724	*	*	*	3259	*	*	2023	4989	1870	5291	4661	5263	*	4419	*	5428	3311	*	3975	2
+       0	*	*	*	*	*	*	9965	0	0	
+
+I 3    5344	6724	*	*	4863	*	*	875	*	3289	*	*	*	*	*	*	6874	2183	5174	5176	3
+       0	*	*	*	*	*	*	10190	0	0	
+
+A 4    2553	3802	7212	*	4774	4675	6993	3035	*	3370	5434	*	*	5074	7302	4143	4775	1961	4994	6918	4
+       0	*	*	*	*	*	*	10190	0	0	
+
+I 5    *	*	*	*	3212	*	*	1734	*	1524	5074	*	*	*	*	*	5307	2405	*	*	5
+       0	*	*	*	*	*	*	10190	0	0	
+
+E 6    4257	3644	3720	2532	5194	5055	6696	3380	6548	3219	6470	4473	*	5484	*	3618	3835	3349	*	6723	6
+       0	*	*	*	*	*	*	10190	0	0	
+
+G 7    4642	*	*	*	*	79	*	*	*	*	*	*	*	*	6215	*	*	*	*	*	7
+       0	*	*	*	*	*	*	10190	0	0	
+
+V 8    3332	4063	5471	*	4899	5078	*	3675	*	3134	4200	4000	2222	6815	6193	5004	4277	3304	6023	6674	8
+       0	*	*	*	*	*	*	10190	0	0	
+
+D 9    4898	*	2320	4835	5967	*	4789	3380	4245	6344	4825	4664	2110	*	6023	2879	4407	6256	*	*	9
+       0	*	*	*	*	*	*	10190	0	0	
+
+G 10   2556	*	*	*	*	609	6889	*	6780	*	*	5580	6935	*	5408	3859	6421	6164	*	6724	10
+       0	*	*	*	*	*	*	10190	0	0	
+
+A 11   2117	3837	*	*	*	5650	*	5564	*	6164	*	6386	*	*	*	1418	3503	2555	*	*	11
+       0	*	*	*	*	*	*	10190	0	0	
+
+G 12   *	*	6610	6164	*	58	*	*	*	*	*	*	*	*	6023	*	*	*	*	*	12
+       0	*	*	*	*	*	*	10190	0	0	
+
+K 13   *	*	*	*	*	*	*	*	87	*	*	*	*	6012	6023	6638	5837	*	*	*	13
+       0	*	*	*	*	*	*	10190	0	0	
+
+R 14   *	*	4889	6386	*	3770	*	*	*	6751	6699	*	6248	6033	5648	1377	1223	*	*	*	14
+       0	*	*	*	*	*	*	10192	0	0	
+
+T 15   4179	*	*	5328	5841	6430	5816	*	*	5716	*	*	*	6349	6805	3105	540	5105	*	*	15
+       0	*	*	*	*	*	*	10192	0	0	
+
+L 16   3753	5751	*	*	3775	6747	6758	3375	6045	1457	6110	6396	*	3878	6661	6507	4590	2533	*	6600	16
+       0	*	*	*	*	*	*	10223	0	0	
+
+V 17   1632	3536	*	*	*	3378	*	2904	*	3432	4277	*	*	6747	*	4082	3585	3936	*	*	17
+       54	*	4760	*	*	*	*	10223	0	0	
+
+E 18   4108	*	5696	2812	*	4213	5153	6924	2531	7094	6711	3939	5573	3569	2622	4278	3709	4675	*	*	18
+       33	5996	7182	1000	1000	*	0	10160	1070	1553	
+
+K 19   2802	*	4564	2971	4662	4552	4364	*	2877	3938	5020	5045	*	4219	3332	4893	*	5670	7185	3636	19
+       13	*	6846	*	*	2472	287	10159	0	1709	
+
+L 20   4127	*	*	*	4498	*	6508	3190	*	771	4152	*	*	*	*	*	5544	3133	*	*	20
+       30	6692	6499	0	*	*	0	10149	1000	1722	
+
+S 21   1815	5971	7447	3900	6394	4753	4714	6670	3903	4117	5990	*	*	4441	3927	2951	5268	3978	6108	4471	21
+       40	*	5210	*	*	886	1124	10099	0	2079	
+
+G 22   3988	*	3981	2673	6833	5012	5375	*	2036	6778	*	4695	5618	3310	3222	3649	4901	5653	*	*	22
+       32	6851	6269	3000	193	*	0	10109	1000	1979	
+
+A 23   3595	*	4831	3376	6641	6259	3471	4891	4006	3574	6961	4631	*	4563	2765	5609	3943	4173	4612	3777	23
+       14	6698	*	1585	585	1921	442	10107	1000	2257	
+
+F 24   5237	5008	*	6694	2565	6827	*	5072	*	1136	5963	6502	*	6120	4715	5712	5139	4599	4820	3909	24
+       78	6429	4606	0	*	2671	246	10134	1000	2064	
+
+R 25   5222	*	4244	4435	*	2615	6856	6437	2790	5507	*	3128	3605	3603	3133	4488	4750	4722	*	6410	25
+       165	6514	3365	1000	1000	1051	951	10094	1024	2650	
+
+A 26   2636	5048	3866	2905	*	4668	5659	4571	4195	4075	4188	4458	4382	4756	4132	4158	5040	5998	4852	6314	26
+       190	4753	3536	705	1371	3891	101	10136	1395	3389	
+
+A 27   4086	5247	4050	4283	*	6909	6034	6138	3895	3334	5346	4489	5812	3838	3147	3536	3973	2940	*	4353	27
+       465	5220	2008	1326	734	2575	265	9918	1220	4483	
+
+G 28   5760	*	4384	6660	3899	1223	4940	5949	4435	*	6248	3562	6039	4982	*	4316	5003	5251	5712	4014	28
+       201	3607	4380	704	1373	2196	355	9535	1792	6397	
+
+R 29   *	*	5847	5921	2658	6098	4608	3053	3744	2611	4345	4387	*	4959	5984	6084	4956	4982	4422	3023	29
+       70	4398	*	1468	647	2612	258	9565	1570	5990	
+
+S 30   5142	*	3065	4247	*	*	5494	*	2637	5158	*	3538	2653	4215	3823	3078	3714	6659	*	6111	30
+       87	4936	5260	1294	756	2504	280	9711	1260	5368	
+
+V 31   3246	4645	6618	5937	5740	*	5125	2823	*	4140	*	*	5562	*	6378	6234	2852	1405	*	5647	31
+       130	3990	5414	536	1689	1850	469	9741	1754	4996	
+
+A 32   3866	6264	5331	4350	4715	4077	5198	2505	6481	2837	6178	5617	5552	6201	*	5266	4261	2485	*	3906	32
+       139	3740	5873	570	1615	296	2429	9876	2020	4317	
+
+T 33   4277	5825	4249	5255	4289	4664	3838	3279	5610	2555	5446	7198	6343	*	4604	4042	3782	3537	4484	4311	33
+       31	6577	6515	2322	322	1426	671	10187	1024	1889	
+
+L 34   4477	5266	6961	5221	4848	4608	5219	2336	7362	2194	4800	*	*	*	4664	5227	3623	2598	*	5593	34
+       82	4748	5810	2097	384	*	0	10194	1551	1686	
+
+A 35   3430	6919	2774	3453	5028	4862	5824	*	3962	4358	*	4716	*	5393	2292	3525	4337	4840	6327	5972	35
+       296	3757	3162	2696	242	740	1317	10181	2278	2027	
+
+F 36   4445	6257	5231	1732	3002	6320	4439	4882	5144	4686	5077	4779	4431	3915	4202	4885	5056	*	5857	6091	36
+       196	3512	4665	2091	386	2482	285	10052	2310	3342	
+
+P 37   4612	*	2652	4453	6431	6546	4687	5081	3956	4328	*	4913	1594	6181	4944	4153	*	4054	*	5480	37
+       16	*	6544	*	*	*	0	10049	0	3533	
+
+R 38   3809	6372	3432	3390	6556	2681	6095	3916	5785	*	*	3913	5729	*	4318	4071	2904	3105	*	5771	38
+       142	*	3413	*	*	2191	357	10054	0	3676	
+
+Y 39   4924	6547	3627	4539	4049	2741	5156	4514	4738	3959	*	4230	4070	*	4686	3563	4528	4036	6435	3372	39
+       61	*	4584	*	*	2304	326	10064	0	4373	
+
+G 40   5597	5262	2071	3844	6338	3752	4760	5420	4119	4342	*	6465	*	5544	3399	2998	3940	3932	*	6873	40
+       1798	4702	569	1431	669	2799	224	10048	1384	4312	
+
+Q 41   3323	*	4878	3436	*	4759	3894	3218	3849	*	*	3018	3894	4835	4904	2802	3472	*	*	*	41
+       264	3579	3582	1249	787	922	1082	7797	1385	8820	
+
+S 42   3756	4927	3581	3110	5542	6245	5157	6356	4162	3826	6028	4680	2579	5085	3743	3743	5085	4000	*	*	42
+       0	*	*	*	*	1931	439	9671	0	6286	
+
+V 43   4317	*	5040	6538	2481	*	*	2965	5297	2020	5360	6128	7317	4310	6595	*	4789	3668	4727	3812	43
+       1667	6097	577	2000	415	4661	58	9923	1016	5222	
+
+A 44   3029	*	*	4140	4456	4752	3306	*	4930	1839	*	*	*	3980	3341	3754	3499	*	*	*	44
+       572	1829	4445	1584	586	577	1601	7195	2291	8981	
+
+A 45   3077	5110	6718	3518	*	1633	6597	5406	5627	3852	5068	5026	5304	4649	5695	3115	4339	*	*	*	45
+       226	6231	2926	0	*	1212	815	9724	1002	5079	
+
+D 46   4010	*	2640	2841	5248	3362	5166	4311	4043	5062	4999	5078	5015	4527	4152	3485	4771	5146	*	*	46
+       60	6472	5069	2000	415	3049	186	9820	1016	4920	
+
+I 47   3091	*	5473	2978	4635	6175	*	4173	4340	2962	*	4535	5984	3911	3472	3732	3509	4493	6438	6462	47
+       40	5719	6857	1585	585	2143	370	9821	1115	4808	
+
+A 48   3521	6249	*	5150	*	*	5125	2128	4188	2164	4101	5655	5675	6390	4194	5372	6350	3154	6562	6316	48
+       32	6599	6436	0	*	2242	343	9908	1003	4209	
+
+A 49   3579	*	4522	2915	5763	*	6075	*	3021	*	5576	4315	5113	3499	1657	4587	6386	6429	*	6267	49
+       42	5685	6748	606	1544	317	2340	9989	1179	3892	
+
+E 50   4455	*	3283	2520	7012	4989	5582	*	2922	6704	6348	5203	5180	2905	3401	3650	4745	6846	6341	4557	50
+       92	5257	4809	0	*	802	1229	10166	1495	1679	
+
+A 51   3487	4996	5686	5364	3287	5210	4688	3466	4880	2470	5538	*	5412	5356	5350	5259	5057	4555	6577	2649	51
+       202	3402	4802	1282	764	2438	294	10134	2481	1954	
+
+L 52   3839	5854	*	4590	3305	2901	6387	3606	5114	2282	4869	*	6650	5253	5054	*	7387	3653	7139	3126	52
+       85	5638	4740	2587	263	1213	815	10096	1206	2425	
+
+H 53   3214	4867	3716	3585	4133	5186	4962	5340	3949	3660	6783	4816	5898	5275	3393	3620	4261	4547	4188	*	53
+       29	*	5672	*	*	*	0	10146	0	2421	
+
+G 54   4396	*	2456	3663	5608	3345	*	7134	4079	5794	*	2980	4763	4520	3431	3792	3975	5098	*	5429	54
+       385	*	2094	0	*	2398	304	10115	1020	2704	
+
+E 55   4404	*	3777	2953	4272	3971	*	4129	3569	3900	*	4502	2818	5254	4414	3991	3664	6262	*	6277	55
+       1068	2952	1345	2219	349	*	0	9675	2473	5707	
+
+H 56   5483	*	4378	3701	5597	4760	5343	*	2854	4910	3991	3942	4534	4489	2559	3191	3621	5465	*	*	56
+       1485	924	3111	1731	517	1050	952	8565	4609	8108	
+
+G 57   3830	*	3707	2822	6410	2172	*	4352	4633	4662	*	4657	3786	3736	4693	5062	5125	5047	5468	6385	57
+       44	5069	*	0	*	1374	703	9613	1258	6162	
+
+D 58   4940	*	2861	3087	6410	3394	*	6443	3226	4377	4903	3345	3432	4270	4124	3715	*	5841	*	6456	58
+       66	6405	4936	1585	585	596	1562	9925	1017	4541	
+
+L 59   4923	*	5581	6561	3564	5415	*	3789	6188	2277	2766	*	5688	5667	5698	6193	4732	3360	3264	3697	59
+       1496	4246	754	2724	237	*	0	10090	1620	2752	
+
+A 60   5190	*	3851	4246	3491	4100	*	3713	4152	3189	4513	*	5460	5342	*	3545	3627	2668	*	4437	60
+       466	4024	2219	1160	856	3614	123	8446	1248	8394	
+
+S 61   3480	4873	4306	3686	*	4073	*	4234	*	5184	*	5324	2799	4125	2766	3171	3382	5155	*	*	61
+       36	5324	*	0	*	463	1866	8375	1016	8559	
+
+S 62   4150	5569	2322	3966	4921	3329	5246	*	6680	6602	*	4832	6295	5048	3700	2925	3444	4536	4474	6267	62
+       73	5401	5294	601	1554	2147	369	10094	1202	4074	
+
+V 63   2990	6462	2798	3427	4819	3574	6583	6428	3442	3810	*	6561	2601	6791	5605	4236	5616	4989	*	6450	63
+       72	*	4357	*	*	1106	901	10104	0	3875	
+
+Y 64   3629	6600	3678	3530	3297	6521	5556	4466	4834	3375	6456	5158	5353	3799	3974	5706	4265	4739	4521	3606	64
+       142	5034	3980	1143	870	2291	330	9963	1544	3334	
+
+A 65   2367	6547	4733	3616	*	3804	5316	4915	4499	3405	6480	6562	4180	5094	3293	3984	4137	4192	6149	6541	65
+       83	5541	4850	0	*	4299	75	10075	1206	3812	
+
+M 66   3425	*	5808	3222	3470	5846	6723	3201	4920	2970	5284	5502	*	5414	3979	5570	4551	3733	3657	4557	66
+       0	*	*	*	*	1582	587	9872	0	4117	
+
+A 67   2807	5866	4627	3946	4768	4019	5048	4302	5169	4420	*	6998	5331	2636	5574	3206	4352	4444	*	3990	67
+       49	6095	5730	1000	1000	*	0	10134	1030	3150	
+
+T 68   3031	5890	5722	3748	3850	4172	6509	3892	5342	2121	4413	*	*	5691	6366	5182	4584	3661	4703	4486	68
+       49	*	4899	*	*	2482	285	10106	0	3449	
+
+L 69   3469	*	6955	4251	2930	6578	*	3530	5567	2212	4856	6363	*	5348	3438	4143	4444	4940	6682	3728	69
+       240	6955	2785	0	*	3037	187	9940	1000	3481	
+
+F 70   4932	*	6095	4130	2128	*	6173	4186	*	2719	5914	*	5402	4252	4712	4716	4542	4510	6312	2492	70
+       76	6104	4776	0	*	4768	54	9648	1012	5189	
+
+A 71   2665	*	6495	3215	4682	5828	*	4971	4288	2772	4662	4416	*	3756	6278	2965	4419	4008	*	5195	71
+       78	6166	4695	0	*	2692	242	9605	1000	5418	
+
+L 72   2755	6185	4305	5131	4878	3853	*	3235	5524	2807	5203	6236	*	6096	3797	4108	3714	3679	4954	6214	72
+       147	6287	3576	1000	1000	2078	390	9633	1024	5245	
+
+D 73   3836	*	2725	3591	*	4772	4258	5900	4559	4264	*	3356	5389	4028	3376	3402	5446	4831	5120	4833	73
+       200	6422	3085	0	*	5067	44	9653	1000	5197	
+
+R 74   5057	5309	5418	5188	5063	*	4146	6266	4405	3991	*	4180	4914	6286	1240	4698	*	3770	*	4382	74
+       117	6287	3939	1585	585	3283	156	9409	1000	6111	
+
+A 75   2847	*	6799	4576	4550	5116	*	4451	5053	3043	5708	4713	*	6719	3562	3736	3869	4764	3765	2876	75
+       81	4942	5492	1356	715	2333	319	9541	1202	6206	
+
+G 76   3138	6049	3229	2866	*	3982	5186	5037	4103	3721	6288	4446	6459	3960	3780	4445	4797	4667	4911	6546	76
+       214	6582	2973	1000	1000	5177	40	9698	1000	5634	
+
+A 77   3044	*	*	4833	4277	5828	3337	2822	4130	3112	*	4044	*	3354	5135	4777	4836	3511	6033	*	77
+       1429	939	3227	621	1515	1176	843	9443	5822	6546	
+
+V 78   3475	5089	5740	3203	3962	6175	4640	6498	3706	2543	4349	6116	5184	4722	3898	3623	6546	5407	6340	4260	78
+       16	6498	*	1585	585	953	1049	9517	1003	5564	
+
+H 79   4747	6166	3012	3022	6365	5731	3686	5705	3786	4156	*	4003	4255	3713	2936	4466	4104	*	*	5625	79
+       0	*	*	*	*	1621	567	9926	0	3471	
+
+T 80   2727	*	3852	3164	6315	7161	6888	4004	3670	3252	5682	5706	6635	3363	3288	5316	4875	3782	*	6141	80
+       102	5522	4427	2322	322	1381	699	10031	1182	2692	
+
+I 81   3494	*	6933	*	4297	*	*	1780	5352	1998	5424	*	*	5230	*	*	4857	2674	5429	5517	81
+       28	*	5716	*	*	960	1041	10261	0	2756	
+
+Q 82   3503	6661	4399	2937	*	7088	6512	4934	3046	2921	4687	5420	*	3772	3161	3986	4197	5974	5068	6740	82
+       51	6904	5238	0	*	2983	195	10123	1000	2133	
+
+G 83   3815	*	3600	2284	6695	4632	5476	*	3339	3772	*	4724	2743	5688	3367	4728	4173	*	*	*	83
+       95	*	3972	*	*	2176	361	10108	0	2435	
+
+L 84   2843	6837	4937	3895	4944	5449	3631	4033	3349	2456	5223	5575	7730	6466	5023	3394	6119	5127	5841	5360	84
+       77	6440	4634	0	*	1365	709	9974	1009	3140	
+
+C 85   3683	6308	4503	5924	4737	*	*	3803	4173	1627	5516	*	5212	4273	4024	4019	5724	4092	*	4074	85
+       164	3361	6640	447	1909	1077	927	9975	2522	2986	
+
+R 86   2598	*	3939	3739	4712	4108	*	5452	3621	3572	5840	3535	5933	3678	3648	3634	4604	6539	*	*	86
+       123	3763	6928	1167	851	806	1224	10110	2299	2324	
+
+G 87   4756	*	4101	4324	5620	4287	5547	*	3074	4120	6865	3947	3953	3270	3536	2833	3671	5047	*	6847	87
+       110	4082	6140	871	1141	930	1073	10146	1891	1655	
+
+Y 88   4252	6001	4038	4298	5721	1498	4288	6402	3673	6565	*	4105	5552	7173	4255	4098	6228	4544	*	4580	88
+       164	4666	3878	1713	525	1435	666	10197	1641	1703	
+
+D 89   *	7111	2393	3723	5327	3774	5938	5624	3312	*	6313	4676	3932	4007	3185	3619	3771	6165	*	4906	89
+       30	6589	6656	1321	738	1320	739	10093	1215	2553	
+
+V 90   5952	6908	4243	*	5331	4389	4606	2349	7132	2889	*	4876	4449	*	*	4026	3691	3000	4068	3891	90
+       26	6721	6901	0	*	746	1309	10158	1175	2073	
+
+V 91   3362	*	6356	*	4312	6334	*	2079	*	3597	5043	*	*	7147	5731	*	6571	1259	*	5394	91
+       11	*	7003	*	*	2046	400	10210	0	1504	
+
+I 92   5197	*	*	*	4023	*	*	1333	*	2260	5074	*	*	*	*	*	*	1859	*	*	92
+       51	*	4853	*	*	2030	405	10201	0	1506	
+
+L 93   3397	3886	7128	6320	3503	*	*	3138	*	2812	2911	*	*	*	*	3870	4735	2273	*	5169	93
+       24	*	5942	*	*	356	2192	10164	0	2222	
+
+D 94   *	*	619	2889	*	6979	6017	5584	6053	6193	*	4898	4957	*	6360	5508	5995	5890	*	6892	94
+       573	*	1609	*	*	1108	900	10202	0	1502	
+
+R 95   4651	*	*	*	5165	2439	*	*	6288	*	5865	*	*	5554	886	4689	4115	6246	*	4452	95
+       103	5059	4684	2459	290	5343	36	9596	1187	6309	
+
+Y 96   5990	5818	6291	*	2534	4994	5266	*	6024	4840	*	3957	*	*	6239	2393	4584	*	3343	1915	96
+       20	6209	*	2000	415	*	0	9513	1000	6472	
+
+V 97   4508	*	*	5852	3585	5828	5797	2583	5468	3656	*	*	2250	*	*	3806	5109	3144	3817	4156	97
+       98	5264	4646	874	1138	3578	126	9513	1197	6472	
+
+A 98   3943	5884	3796	5144	3033	4834	4197	4556	*	4680	*	5715	3039	4844	3617	5565	5224	5548	4541	2687	98
+       20	*	6180	*	*	2743	233	9515	0	6433	
+
+S 99   4215	5498	3147	3621	6316	4301	4677	4648	3796	6348	*	4715	5337	*	6302	1756	3757	6118	*	4524	99
+       96	*	3959	*	*	5391	35	9707	0	5932	
+
+N 100  3718	*	3804	3868	4900	3818	5913	4367	6775	3811	7295	3707	4148	5098	4591	3527	2436	5153	*	5359	100
+       68	5249	5681	2585	263	3365	147	9478	1147	6362	
+
+A 101  3319	6115	5938	4581	3320	6081	*	2946	4940	2442	4114	5279	*	*	6176	4639	6013	2797	*	3855	101
+       112	4904	4594	1025	975	5042	44	9513	1229	6180	
+
+A 102  1743	5283	5997	6192	5047	5018	*	3326	*	3025	5016	4716	6249	5906	6078	4406	6272	2662	6197	5855	102
+       19	*	6249	*	*	*	0	9424	0	6349	
+
+Y 103  4847	*	4841	*	2455	5200	5850	*	5158	4003	*	5545	6044	6189	5076	*	3997	4428	4685	1376	103
+       20	*	6179	*	*	810	1218	9422	0	6425	
+
+S 104  2907	5669	6098	4380	4854	3124	4820	4900	5015	4677	4747	5029	*	2928	4138	3730	3063	5370	6920	6295	104
+       110	*	3772	*	*	1242	792	9922	0	3911	
+
+A 105  2870	4035	4507	3695	*	2828	4489	4816	4369	3477	*	5494	5048	5445	3432	4173	4360	4921	5890	*	105
+       31	6414	6698	0	*	2331	320	9922	1000	3744	
+
+A 106  2617	6776	5583	6502	3791	2510	*	4054	5104	4171	4070	4867	5322	5373	6346	3460	*	4221	5989	3507	106
+       536	4476	1913	1304	749	2319	323	9939	1541	3368	
+
+R 107  4031	6395	*	4183	6006	3012	6153	4445	3463	5428	4499	5178	4218	5981	2862	4844	2642	4651	*	4485	107
+       375	*	2126	*	*	3377	146	9547	0	6232	
+
+L 108  4206	5030	5325	4234	4934	5298	*	3126	*	1293	3798	*	*	*	*	3960	4521	5695	4123	*	108
+       302	*	2404	*	*	5839	25	9209	0	7332	
+
+H 109  *	*	3114	5689	*	4290	3093	4681	2996	3855	*	*	3692	3167	5421	3106	3951	5407	*	4415	109
+       193	*	2998	*	*	5927	24	8705	0	7965	
+
+E 110  4338	*	3292	2586	*	4362	4538	*	3828	*	*	2266	4313	5652	*	3247	4154	4261	*	5150	110
+       441	2977	2875	1101	905	6183	20	8458	1755	8239	
+
+N 111  *	*	2911	3928	*	4014	3996	*	1326	4836	*	3489	5141	4130	*	5527	*	4421	*	*	111
+       37	*	5302	*	*	*	0	8190	0	8494	
+
+A 112  5020	*	3125	2166	5221	*	4697	*	3023	4891	*	5124	*	4052	3952	4952	3625	5226	4956	3578	112
+       583	3859	1924	0	*	1304	749	8128	1230	8545	
+
+A 113  4632	*	3898	4676	3745	4749	5645	4000	3615	4777	5643	4020	5531	4690	1897	4406	4779	*	*	4410	113
+       206	4576	3451	0	*	4139	84	9104	1247	7354	
+
+G 114  4244	*	3085	3984	*	1642	4192	*	4048	4631	5056	3464	5654	5810	5964	4743	5561	4127	*	*	114
+       151	*	3329	*	*	1161	855	8958	0	7483	
+
+K 115  3411	*	4744	3833	*	*	4768	4579	3404	2921	3962	3826	5664	4311	5069	5951	5403	2869	5149	4211	115
+       43	7169	5469	0	*	1370	706	10237	1019	5875	
+
+A 116  4986	5990	3095	3924	3866	4595	5217	5247	5033	3526	5541	6761	4822	6583	3604	3655	4605	4151	*	2701	116
+       80	5512	4955	1567	594	1510	624	10454	1177	4551	
+
+A 117  4882	6553	5786	3390	3846	6169	*	3940	4097	2788	3909	5440	4020	4902	2675	4349	5414	5025	5507	5398	117
+       54	6293	5390	2322	322	3258	159	10145	1016	3803	
+
+A 118  3079	*	3155	2132	*	5732	5356	6756	3186	6374	5669	4912	4700	4588	3133	4141	5317	6337	6208	6353	118
+       45	*	5016	*	*	1895	452	9885	0	3858	
+
+W 119  4944	*	6335	2715	4438	5501	4295	3275	5361	3213	5662	6814	*	6414	4949	6009	5616	3898	2428	3529	119
+       29	*	5671	*	*	1448	659	9934	0	3528	
+
+V 120  3985	5892	5421	5472	3326	5799	6655	2328	6403	1955	5136	*	5432	*	5835	6494	5347	3709	4980	3951	120
+       62	5496	5662	1068	935	*	0	9997	1170	2939	
+
+Q 121  3285	*	3513	3031	6173	5674	5424	5435	3151	4134	*	4108	5145	3305	3343	4609	4730	4245	6820	6394	121
+       25	6813	6876	0	*	3009	191	9966	1000	3378	
+
+R 122  2749	5630	3429	2800	6839	4594	6192	6371	3710	4064	*	3808	5110	3246	3898	5552	4635	5707	5588	6940	122
+       137	6301	3683	0	*	1263	778	9983	1001	3241	
+
+I 123  4850	*	*	5725	3794	6607	6420	2644	5735	1516	3744	*	6367	*	6088	5139	4610	3292	*	4288	123
+       132	5366	3982	1358	714	1450	657	9989	1199	3470	
+
+E 124  3996	5493	4911	2698	6540	5581	5765	4688	3397	4569	6605	4308	4548	4350	3587	3990	3855	4651	6223	3626	124
+       96	6390	4245	1000	1000	3291	155	9975	1009	3816	
+
+F 125  3529	5455	5223	2958	4750	4583	4171	4639	2733	6322	4946	5419	4702	5534	2460	3758	6426	*	*	6112	125
+       309	5879	2510	0	*	*	0	9899	1071	4221	
+
+A 126  3110	*	5943	3498	3613	4267	4981	3717	4813	3987	4090	3803	*	4115	5016	4557	5008	3845	4483	4940	126
+       804	*	1227	*	*	3533	130	9493	0	6283	
+
+R 127  2401	5309	*	*	4196	*	*	3842	4297	2281	*	*	3277	4516	4221	4995	4380	4174	5297	4513	127
+       269	5196	2810	1585	585	3416	142	9074	1015	8226	
+
+L 128  3156	*	5052	5894	3902	*	5824	6324	3519	2602	*	3773	*	4690	3705	3391	3354	4182	*	4185	128
+       406	2462	3970	593	1570	2666	247	8939	2107	8211	
+
+G 129  3343	6105	2689	3640	5553	3400	4194	*	3621	5427	*	3854	*	4596	3655	3602	5186	3703	*	*	129
+       170	3173	*	1029	972	314	2355	9582	1971	7758	
+
+L 130  4016	*	4034	4469	3892	3278	4020	3808	5723	2387	7033	4186	6845	5396	5119	4171	5103	3888	*	4560	130
+       16	*	6492	0	*	1991	418	10871	1000	2834	
+
+P 131  5177	4456	5306	3813	4291	3243	6676	3909	4621	2875	*	4875	2474	6534	3854	5483	4664	5094	6860	5231	131
+       0	*	*	*	*	*	0	10725	0	2547	
+
+K 132  4284	7105	5304	4046	4502	6013	4764	4886	3299	3927	4398	4729	4110	3815	3446	3593	3871	4032	*	4652	132
+       9	7264	*	2585	263	0	*	10513	1000	2547	
+
+P 133  3365	5510	4302	5086	6034	7121	*	3618	6182	4201	*	5505	1434	5435	4467	4611	5535	4049	6584	4838	133
+       104	5535	4384	1680	540	*	*	11056	1312	0	
+
+D 134  4762	5491	1271	3577	4664	4602	4350	6195	5469	4624	*	5398	5151	4965	5182	4548	5509	4284	*	6810	134
+       84	4138	*	1195	828	806	1225	11271	2049	1803	
+
+W 135  4748	5690	*	6750	3757	5431	3813	3001	4608	1883	5882	*	*	5219	4260	7836	4652	3149	6602	3928	135
+       48	4930	*	0	*	1677	541	11030	1571	1440	
+
+Q 136  4562	4236	*	4318	5084	*	4182	2065	4410	4558	6927	*	7225	5023	5946	7006	3648	1986	6564	5114	136
+       20	7154	7218	0	*	0	*	11052	1000	1248	
+
+V 137  6437	5904	*	*	2927	*	*	1753	*	2886	5823	7325	*	*	*	7209	*	1458	6199	*	137
+       0	*	*	*	*	0	*	11660	0	1000	
+
+L 138  6523	7142	6659	5278	2373	5293	4505	4180	6861	2984	6620	6663	*	4609	4673	4645	6947	3693	4135	2244	138
+       0	*	*	*	*	*	*	11617	0	0	
+
+L 139  *	4151	*	6966	3817	7205	*	2860	6386	994	4151	*	*	*	5583	*	6719	3064	*	*	139
+       12	*	6863	*	*	*	*	11617	0	0	
+
+A 140  3955	5313	2295	3941	5507	6776	5449	5426	3282	5360	5900	3986	4828	4035	3598	4288	4214	4366	*	5325	140
+       24	7041	6825	0	*	*	0	11602	1000	1004	
+
+V 141  2548	3574	*	5439	5749	5207	7427	2958	*	2848	5470	*	4580	*	6747	4432	3435	2445	*	7212	141
+       0	*	*	*	*	0	*	11583	0	1183	
+
+S 142  4576	*	2142	4287	*	5549	5078	*	*	*	*	4031	1782	*	4169	2564	5059	7225	6637	7432	142
+       36	7225	5784	0	*	*	*	11617	1089	0	
+
+A 143  3432	*	4950	3061	5022	5424	5947	4292	3666	3031	6404	6461	2295	5538	3787	4931	5641	4672	6545	6786	143
+       14	6644	*	0	*	914	1092	11637	1000	1199	
+
+E 144  3615	6262	2330	1711	*	5691	6452	*	4068	5479	*	4812	4713	4027	5857	4626	4956	5222	5784	5765	144
+       33	7199	5975	1000	1000	*	0	11661	1002	1000	
+
+L 145  4628	*	5674	2774	4778	*	6575	3041	4988	3502	6128	5402	*	4492	5530	5756	2395	2457	7688	7379	145
+       0	*	*	*	*	*	0	11607	0	1314	
+
+A 146  2690	3331	*	*	5139	4667	5169	2728	6166	2755	6766	5833	*	4363	3416	4180	5764	3404	*	*	146
+       41	6929	5673	1000	1000	1476	643	11607	1000	1314	
+
+G 147  3991	6992	*	3965	4510	5869	5915	3546	3314	2518	4406	5255	*	4576	3755	5731	7766	3381	4349	3855	147
+       0	*	*	*	*	1136	876	11450	0	1512	
+
+E 148  3485	6631	4000	1955	*	7040	5340	*	2999	6826	6480	4373	*	3662	3140	3719	5175	5138	5652	6625	148
+       0	*	*	*	*	*	0	11470	0	1199	
+
+R 149  7219	6683	*	*	6296	*	6640	*	5448	5685	*	4934	*	5226	274	6251	*	*	6572	6891	149
+       55	6742	5151	1000	1000	*	0	11470	1014	1199	
+
+S 150  3393	6547	6448	6599	5770	6629	*	2355	4057	1730	5732	4518	*	6519	5031	5359	4814	3022	*	*	150
+       24	*	5918	*	*	2277	333	11351	0	1779	
+
+R 151  3144	*	6032	3706	4980	3615	6893	3875	3644	3831	4925	5125	5128	3730	3151	4626	4559	3575	*	6659	151
+       46	5870	6105	0	*	1660	549	11426	1125	1934	
+
+G 152  4084	6750	3781	3597	*	3791	*	6836	2345	3921	5355	3963	*	3687	3896	3650	3900	4930	6602	6744	152
+       69	6000	4995	590	1576	1048	953	11451	1161	1896	
+
+R 153  5784	*	3893	5203	*	5156	*	*	5036	7189	*	6431	4427	6722	537	5686	6180	5959	6811	7133	153
+       152	4513	4154	430	1955	2649	250	11436	1666	1954	
+
+A 154  3775	5919	2877	3406	6790	2668	5706	5513	4086	4177	5490	5228	5211	5141	4102	3245	4836	4615	6103	*	154
+       455	2957	2820	1733	516	*	0	11162	2890	2839	
+
+Q 155  3325	*	4323	3785	4292	3207	5298	4040	5026	4375	5796	4774	4839	4584	2329	4285	4615	6117	5915	*	155
+       457	4222	2198	794	1241	*	0	10354	1737	4639	
+
+R 156  *	4831	3630	2622	4990	4579	4508	4587	3105	4317	6038	*	3655	5848	3730	3752	3526	6145	6354	5526	156
+       193	*	3001	*	*	2518	277	9824	0	6512	
+
+D 157  4466	*	2830	3714	4388	1660	6091	6084	4955	*	4291	5397	4013	5812	4496	5445	5017	5575	*	4702	157
+       416	3722	2515	3149	173	3934	98	9930	1705	6581	
+
+P 158  4418	*	4325	2229	6041	5156	*	4970	3543	4283	*	4593	2530	4788	3211	4676	4022	5771	*	*	158
+       863	4284	1326	2865	213	2301	327	9537	1353	7412	
+
+G 159  3636	*	4634	2200	5375	4328	3281	*	4712	4250	5584	5513	*	4375	4466	3115	3338	5269	*	5821	159
+       259	3794	3435	1532	612	1699	531	9002	1369	8065	
+
+R 160  4015	*	5883	2925	*	5935	6180	4131	3423	4695	5270	4947	5781	*	1783	3502	4797	4024	*	5829	160
+       483	5781	1908	0	*	2880	211	9785	1004	7083	
+
+A 161  3007	*	4953	3558	*	5767	5551	3560	5535	2186	5597	*	3835	4473	5690	4347	*	5516	5424	2804	161
+       622	2354	2694	1980	422	560	1636	9405	2657	7597	
+
+R 162  3668	*	2487	2935	*	5499	4821	6336	3308	6860	6174	4359	5277	4509	3349	3303	4323	5323	5269	*	162
+       195	5601	3244	2440	294	3623	122	10409	1333	4793	
+
+D 163  3666	*	2274	2534	5616	6124	5484	5137	4748	*	*	4037	*	5318	2495	5114	3923	4398	*	6207	163
+       238	5189	3007	1000	1000	2664	248	10190	1182	5450	
+
+N 164  4133	*	6492	6196	3248	4782	5650	2295	*	2419	5458	5049	4060	6051	4909	4546	6109	4246	4812	4079	164
+       144	5870	3688	0	*	3105	178	10075	1001	5832	
+
+Y 165  *	*	3558	2371	3904	*	3200	5059	3389	3722	*	4872	5870	4996	3840	5539	5543	4292	6159	3563	165
+       382	4907	2326	3009	191	2735	235	9966	1222	5980	
+
+E 166  4413	*	3867	2500	*	5019	3961	4375	3619	4758	6127	4372	3870	5072	5051	3551	5567	3752	5041	4497	166
+       216	3460	4378	1979	422	394	2065	10373	1847	6756	
+
+R 167  3828	*	3575	2090	*	4460	5776	4019	4677	4588	4333	4579	5595	4586	3762	5494	4469	4963	4659	4703	167
+       49	5548	6405	2428	297	687	1400	10652	1329	3156	
+
+D 168  4406	6487	2572	3488	3628	3898	*	4711	4046	4114	6806	3228	4279	*	5299	4206	3503	6477	6567	5431	168
+       59	6399	5149	2322	322	701	1378	10731	1001	2035	
+
+A 169  5032	*	3387	3069	4741	4414	*	3344	4463	2613	7036	4485	3652	6951	3883	4190	5158	4247	6621	6685	169
+       28	*	5687	*	*	595	1565	11231	0	1798	
+
+E 170  4050	6547	2895	1637	5669	4744	5841	6780	3879	5781	*	5180	5051	4753	4678	3790	3883	5701	*	6603	170
+       128	4568	4551	3043	187	1880	457	11267	1778	1545	
+
+L 171  5155	6518	4688	4747	2500	*	6733	3226	4305	3067	5602	*	6403	4968	5244	5014	5869	3978	5124	2388	171
+       62	6779	4926	0	*	661	1443	11220	1009	2168	
+
+Q 172  4198	*	4974	3883	3718	6648	4319	4946	4577	2242	5026	6623	*	3365	3179	4377	*	4543	6305	3793	172
+       20	*	6183	*	*	2838	217	11270	0	2146	
+
+Q 173  3545	*	3904	2338	6652	4869	5008	5236	3071	3988	6338	3323	5739	3448	3841	4490	6354	7130	*	6700	173
+       61	5578	5591	3072	183	197	2972	11226	1190	2163	
+
+R 174  2887	6724	3617	3531	6460	5617	5153	4623	3162	5678	6230	5150	*	4820	2216	3984	5741	4570	*	4661	174
+       13	*	6762	*	*	1847	470	11241	0	1412	
+
+T 175  4522	5809	6220	4441	4817	*	5884	2897	*	2101	5197	5789	*	4410	3870	4928	4059	2665	*	4376	175
+       15	*	6571	3459	138	398	2053	11253	1071	1384	
+
+G 176  3950	6263	5309	3152	4658	4701	3812	5134	3453	3444	6872	3867	6855	4294	3025	4687	4891	4345	*	4563	176
+       47	6668	5473	0	*	757	1293	11293	1000	1153	
+
+A 177  3184	*	4497	2727	7019	4760	7010	6607	3865	5696	6253	4144	3674	3888	2705	3364	5645	4350	6794	*	177
+       43	5761	6482	1048	953	429	1958	11302	1131	1474	
+
+V 178  2464	6795	4767	3677	4757	4926	*	3842	6615	2701	4749	3826	6480	3608	4015	5881	4088	5335	*	5163	178
+       61	5682	5503	3296	155	*	0	11298	1170	1161	
+
+Y 179  3833	5498	*	5771	2815	6744	6459	4184	4769	3101	4144	6471	6830	*	5168	6617	6811	4842	*	1474	179
+       0	*	*	*	*	1187	835	11284	0	1685	
+
+A 180  3439	*	3906	2567	5215	5678	4901	5422	3265	4050	*	4202	5201	3315	3305	4868	3876	5695	*	*	180
+       40	6728	5813	2322	322	1538	609	11319	1000	1310	
+
+E 181  3687	*	3448	2695	6845	4707	*	5670	3419	4957	7246	5544	3836	3324	3209	3927	4096	5696	*	4858	181
+       54	*	4767	*	*	*	0	11294	0	1466	
+
+L 182  4515	*	5005	4237	4172	6297	*	2997	*	2011	4166	*	4603	4632	4092	6253	4914	4500	3412	4313	182
+       78	5435	5084	2000	415	1467	648	11232	1217	2114	
+
+A 183  2951	*	4577	3549	3908	6494	*	3241	3756	3030	5690	6547	5908	4548	5015	3777	3617	4697	6802	4604	183
+       220	3614	4063	1793	491	3108	178	11074	2337	2186	
+
+A 184  2864	*	3036	3244	6612	4666	6450	6828	3820	3928	*	3483	3813	4360	3694	3753	6403	5693	6352	5341	184
+       149	4945	3923	1060	942	1427	671	10917	1445	3078	
+
+Q 185  4910	*	3466	2997	4145	5426	5440	4362	2912	4026	5542	4227	5308	3559	4015	4488	6445	4039	5455	5730	185
+       100	5286	4600	0	*	1932	438	10953	1197	3284	
+
+G 186  6694	*	4516	3156	4094	4171	3730	4777	3852	3607	6492	4299	6503	6260	4669	4761	5217	4476	6486	2238	186
+       454	4578	2134	375	2128	1663	547	10961	1561	3276	
+
+W 187  4477	*	5057	3939	4058	3962	4578	6324	5323	5035	*	3844	1915	4989	3386	4085	5890	6014	4378	5351	187
+       983	6255	1056	0	*	5034	45	10607	1016	5303	
+
+G 188  4993	*	3018	5396	*	3032	5083	*	2176	5400	*	3145	5141	5169	3639	3588	5744	3769	*	*	188
+       844	1534	3355	713	1358	1036	965	8740	3002	8052	
+
+G 189  3168	4369	4096	3543	7144	2744	5399	3912	4899	*	*	3776	*	6155	*	2832	3553	4499	*	4074	189
+       40	5191	*	0	*	359	2182	10139	1161	6034	
+
+R 190  3378	6433	3619	4561	*	3848	5687	5066	2933	4814	*	3734	2554	6162	4253	3671	4011	5015	*	*	190
+       57	5090	6703	1603	576	390	2076	10812	1479	2295	
+
+W 191  4737	5708	3883	4235	4154	5951	5373	3538	6565	3156	5597	6845	6482	*	*	4622	4458	2413	3504	3126	191
+       54	5079	7191	487	1805	0	*	11059	1368	1324	
+
+L 192  5167	6626	6994	4581	4100	*	5118	2552	4036	2473	6582	5788	7029	4663	4545	5652	3856	3292	*	3264	192
+       0	*	*	*	*	0	*	11119	0	1000	
+
+V 193  7140	5454	5093	3289	5221	*	5236	2463	4647	4009	6503	*	5157	*	3928	4881	3224	2086	*	5616	193
+       19	6240	*	1000	1000	*	*	11126	1020	0	
+
+V 194  *	5804	*	5739	4134	*	*	1407	6997	2282	4887	*	5329	*	*	6465	*	2227	*	4945	194
+       28	5693	*	0	*	*	*	11126	1147	0	
+
+G 195  5896	6401	1254	3091	6880	5125	*	6997	5034	*	*	2960	4676	*	3759	4202	4755	6015	*	6537	195
+       71	4683	6764	0	*	*	*	11126	1540	0	
+
+A 196  2315	5420	5130	4998	6478	3828	6470	5003	*	6636	*	2624	5613	5759	6340	3312	2490	3642	6711	*	196
+       59	5855	5458	0	*	0	*	11109	1148	1000	
+
+D 197  3779	*	2247	3987	6625	4376	5774	6572	5693	6418	*	2921	6533	5493	3752	2849	2770	6555	*	*	197
+       322	2477	5613	405	2031	0	*	11065	3679	1236	
+
+V 198  3922	*	4569	3896	5843	2484	4439	6568	3723	2944	5945	4320	6567	3811	3066	6842	4373	5556	*	5607	198
+       206	3049	6355	973	1027	*	0	11057	2883	1257	
+
+D 199  6361	*	2342	4953	*	*	4277	6514	4860	5311	*	3843	2930	6587	6584	1914	2858	*	6491	*	199
+       16	6494	*	1000	1000	0	*	10982	1017	1474	
+
+P 200  3828	6493	6378	4224	5067	*	6951	2888	4126	2493	5349	6468	2869	5191	4318	5495	4716	3262	*	5041	200
+       15	*	6611	*	*	*	*	11075	0	0	
+
+G 201  3224	*	2129	1903	*	4193	*	5844	5486	6458	*	4313	4918	4627	4752	4115	4561	5054	*	*	201
+       67	4768	6799	1503	628	0	*	11062	1368	1059	
+
+R 202  4625	*	3226	1433	*	*	5080	4955	3226	6639	*	6849	*	3196	4771	4167	4684	4521	*	6529	202
+       0	*	*	*	*	0	*	11025	0	1000	
+
+L 203  3145	5520	*	6414	4615	*	*	2515	*	2955	5388	4370	*	6407	5818	5120	3759	1884	6772	5361	203
+       0	*	*	*	*	*	*	11037	0	0	
+
+A 204  2790	5064	*	6096	4196	4678	4582	3289	6337	2964	6517	5538	*	4932	4193	4738	4394	2529	*	4199	204
+       0	*	*	*	*	*	*	11037	0	0	
+
+A 205  3585	*	3271	2570	6414	5019	4790	6374	3440	5228	5284	3851	6354	3011	3584	3911	4583	6351	*	*	205
+       0	*	*	*	*	*	*	11037	0	0	
+
+T 206  3606	*	4097	2036	*	*	*	4574	4623	3416	5594	5660	*	2636	4257	3645	3801	6517	6523	6354	206
+       0	*	*	*	*	*	*	11037	0	0	
+
+L 207  4340	6756	*	6039	6867	*	*	1409	*	2351	4918	*	*	*	6322	*	6610	1790	*	*	207
+       14	6696	*	2807	222	*	*	11043	1000	0	
+
+A 208  5453	5775	6559	4083	5494	*	*	3199	3506	2281	3575	5903	*	3741	4502	6391	3577	3326	6544	4691	208
+       27	5745	*	927	1077	*	*	10918	1132	0	
+
+P 209  3805	*	4110	2815	*	4654	4615	*	3031	6419	*	2944	5284	3825	3452	3233	3903	6451	*	6415	209
+       0	*	*	*	*	*	*	10794	0	0	
+
+P 210  3471	*	*	4289	3822	5475	3826	2948	3480	3205	5951	*	5165	5363	3984	4671	*	3780	4615	3592	210
+       0	*	*	*	*	*	*	10540	0	0	
+
+D 211  *	6162	5811	*	4348	*	6406	2041	*	1422	5997	*	*	*	*	*	6277	2194	*	4505	211
+       0	*	*	*	*	*	*	10155	0	0	
+
+V 212  4256	*	5517	3182	*	5451	5245	5028	3310	3737	*	3696	*	3516	2706	2765	5409	3807	*	*	212
+       0	*	*	*	*	*	*	8698	0	0	
+
+P 213  3771	*	3524	2644	*	*	*	*	3675	3337	*	3480	2170	*	*	3390	*	*	*	3391	213
+       0	*	*	*	*	*	*	5134	0	0	
+
+S 214  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	214
+       0	*	*	0	*	*	*	2765	0	0	
+
+//
+�HHsearch 1.5
+NAME  1d1847456cd583e08ed67aaa11df98f2
+FAM   
+FILE  1d1847456cd583e08ed67aaa11df98f2
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:56:54 2013
+LENG  59 match states, 59 columns in multiple alignment
+FILT  24 out of 26 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  2.5 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCEEEEECCCCCCCCCCC
+>ss_conf PSIPRED confidence values
+96320136898766662073356768887458722433121100443103352014459
+>Consensus
+kxKxxxxKxxxgsxCxewxxgxCvPxxgDCGxGxreGtCxxxtkxxkCkiPCnwKKeFG
+>1d1847456cd583e08ed67aaa11df98f2
+KKKDKVKKGGPGSECAEWAWGPCTPSSKDCGVGFREGTCGAQTQRIRCRVPCNWKKEFG
+>gi|5031406|gb|AAD38156.1|AF149801_1 pleiotrophin 2 [Danio rerio]gi|37589708|gb|AAH59575.1| Midkine-related growth factor b [Danio rerio]
+MKKKEKGKEpKVDAECSEWQYGKCVPNSGDCGNGIREATCNEQTKKTKCKVPCNWKKDFG
+>gi|152003256|gb|ABS19628.1| midkine a [Carassius gibelio]
+KNKKEKNKGgKGGSDCAEWRFGSCVANNGDCGAGTREGTCSEQTKKVKCRVPCNWKKDFG
+>gi|73968106|ref|XP_851259.1| PREDICTED: similar to Midkine precursor (MK) (Neurite outgrowth-promoting protein) (Midgestation and kidney protein) (Amphiregulin-associated protein) (ARAP) (Neurite outgrowth-promoting factor 2) [Canis familiaris]
+KKKDKVTKGGPGERVRGVDLGALHPQQQGLRRGFPRG------------yprgpdpahpvpga--LQLKKEFG
+>gi|33312179|gb|AAQ04021.1|AF419846_1 midkine precursor [Gallus gallus]
+KAKKEKMK-KEGSECQDWHWGPCIPNSKDCGLGYREGSCGDESRKLKCKIPCNWKKKFG
+>gi|57471264|gb|AAW50957.1| truncated midkine [Mus musculus]
+KKKEKVKK---GSECQEtiRVTKPCTSKTK-------------------------------
+>gi|301625710|ref|XP_002942046.1| PREDICTED: pleiotrophic factor-beta-1 [Xenopus (Silurana) tropicalis]
+--KDKQEKKVKKSDCGEWQWSVCVATSGDCGLGTREGTrsgkeCKQTIKTQKCKIPCNWKKQFG
+>gi|260800027|ref|XP_002594938.1| hypothetical protein BRAFLDRAFT_244520 [Branchiostoma floridae]gi|229280176|gb|EEN50949.1| hypothetical protein BRAFLDRAFT_244520 [Branchiostoma floridae]
+--------KGPQEGCSGWTWQPCVPAEGDCGLGQRQGTqegpnCKILSKTIKCRIPCGRRKEYG
+>gi|72081315|ref|XP_780885.1| PREDICTED: similar to Pleiotrophin (PTN) (Heparin-binding growth-associated molecule) (HB-GAM) (Heparin-binding growth factor 8) (HBGF-8) (Osteoblast-specific factor 1) (OSF-1) (Heparin-binding neutrophic factor) (HBNF) (Heparin-binding brain mitogen) (HBBM)... [Strongylocentrotus purpuratus]gi|115960217|ref|XP_001176726.1| PREDICTED: similar to Pleiotrophin (PTN) (Heparin-binding growth-associated molecule) (HB-GAM) (Heparin-binding growth factor 8) (HBGF-8) (Osteoblast-specific factor 1) (OSF-1) (Heparin-binding neutrophic factor) (HBNF) (Heparin-binding brain mitogen) (HBBM)... [Strongylocentrotus purpuratus]
+----------------EWIWSECVPNTGSCGKGQKIGNCsgepcEVATKTVDCRVKCA------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+K 1    *	*	*	*	*	*	*	*	160	*	3255	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	2167	0	0	
+
+K 2    3383	*	*	*	*	*	*	*	985	*	*	1326	*	*	*	*	*	*	*	*	2
+       0	*	*	*	*	*	*	2167	0	0	
+
+K 3    *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	3
+       0	*	*	*	*	*	*	2280	0	0	
+
+D 4    *	*	1239	4264	*	*	*	*	931	*	*	*	*	*	*	*	*	*	*	*	4
+       0	*	*	*	*	*	*	2280	0	0	
+
+K 5    *	*	3936	1123	*	*	*	*	1072	*	*	*	*	*	*	*	*	*	*	*	5
+       0	*	*	*	*	*	*	2280	0	0	
+
+V 6    *	*	*	*	*	*	*	*	931	*	*	*	*	3254	*	*	*	1431	*	*	6
+       0	*	*	*	*	*	*	2280	0	0	
+
+K 7    *	*	*	3254	*	2655	*	*	2200	*	3568	2211	*	*	*	*	2707	3936	*	*	7
+       0	*	*	*	*	*	*	2280	0	0	
+
+K 8    *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	8
+       449	*	1901	*	*	*	*	2280	0	0	
+
+G 9    *	*	3172	3243	*	1258	*	*	1923	*	*	*	3298	*	*	*	*	*	*	*	9
+       688	1399	*	0	*	680	1412	2361	1174	1190	
+
+G 10   4232	*	*	3073	*	1288	*	*	1449	*	*	*	*	*	*	*	*	4262	*	*	10
+       0	*	*	*	*	*	0	2497	0	1029	
+
+P 11   *	*	4747	4584	*	1593	*	*	3480	*	*	5050	1595	*	4385	4403	*	4522	*	*	11
+       0	*	*	*	*	0	*	2500	0	1029	
+
+G 12   3363	*	4592	*	*	621	*	*	3468	*	*	*	*	3525	*	*	4886	*	*	*	12
+       72	*	4366	*	*	*	*	2542	0	0	
+
+S 13   3686	*	*	2159	*	*	*	4149	4006	*	*	*	*	*	*	787	*	*	*	*	13
+       93	4006	*	0	*	0	*	2552	1010	1000	
+
+E 14   4491	*	1749	1433	*	3530	*	*	3998	*	*	*	*	*	2852	*	*	*	*	*	14
+       0	*	*	*	*	*	*	2608	0	0	
+
+C 15   *	215	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2852	*	*	15
+       0	*	*	*	*	*	*	2608	0	0	
+
+A 16   1997	*	*	4097	*	3594	*	*	*	*	*	*	*	3811	2852	1881	2979	*	*	*	16
+       154	3308	*	515	1737	*	*	2608	1074	0	
+
+E 17   *	*	2860	622	*	2236	*	*	*	*	*	*	*	*	*	*	*	*	*	*	17
+       50	4876	*	1000	1000	*	*	2690	1029	0	
+
+W 18   *	*	*	*	*	*	*	*	4135	*	*	*	*	*	4876	*	4491	2933	447	*	18
+       0	*	*	*	*	*	*	2690	0	0	
+
+A 19   3648	*	2933	*	*	*	4983	3762	*	4979	*	*	*	3181	1688	*	2339	4876	*	*	19
+       0	*	*	*	*	*	*	2690	0	0	
+
+W 20   *	*	*	*	3568	*	*	*	*	2933	*	*	*	*	*	*	4876	*	1073	1860	20
+       0	*	*	*	*	*	*	2690	0	0	
+
+G 21   *	*	*	*	*	511	*	*	4876	*	*	*	*	3620	*	2452	*	*	*	*	21
+       0	*	*	*	*	*	*	2690	0	0	
+
+P 22   2933	*	*	3762	*	*	*	*	2554	*	*	3280	1578	*	*	3158	*	3734	*	*	22
+       0	*	*	*	*	*	*	2690	0	0	
+
+C 23   *	202	*	*	*	*	*	*	*	2933	*	*	*	*	*	*	*	*	*	*	23
+       0	*	*	*	*	*	*	2690	0	0	
+
+T 24   5039	*	*	*	*	*	2933	2621	*	*	*	*	*	*	*	*	2810	906	*	*	24
+       0	*	*	*	*	*	*	2690	0	0	
+
+P 25   2581	*	*	*	*	*	*	*	*	*	*	*	324	*	*	4876	*	*	*	*	25
+       0	*	*	*	*	*	*	2690	0	0	
+
+S 26   3620	*	*	3674	*	*	*	*	4876	*	*	1213	*	2933	*	2274	4748	*	*	*	26
+       0	*	*	*	*	*	*	2690	0	0	
+
+S 27   3461	*	*	3067	*	*	*	*	*	*	*	2400	*	2933	*	1467	3214	*	*	*	27
+       0	*	*	*	*	*	*	2690	0	0	
+
+K 28   *	*	*	*	*	761	*	*	1841	*	*	*	*	2933	*	*	*	*	*	*	28
+       0	*	*	*	*	*	*	2690	0	0	
+
+D 29   *	*	342	*	*	2898	*	*	*	*	*	*	*	*	*	3706	*	*	*	*	29
+       0	*	*	*	*	*	*	2651	0	0	
+
+C 30   *	208	*	*	*	*	*	*	*	2898	*	*	*	*	*	*	*	*	*	*	30
+       0	*	*	*	*	*	*	2651	0	0	
+
+G 31   *	*	*	*	*	297	*	*	*	*	*	*	*	*	2898	4264	*	*	*	*	31
+       0	*	*	*	*	*	*	2651	0	0	
+
+V 32   4176	*	4083	4431	*	*	*	*	3706	1943	4086	3817	*	4916	2898	*	4627	2599	*	*	32
+       0	*	*	*	*	*	*	2651	0	0	
+
+G 33   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	33
+       42	*	5112	*	*	*	*	2651	0	0	
+
+F 34   *	*	*	*	1389	*	*	4710	*	4403	4903	*	*	2637	*	*	2856	2943	*	3829	34
+       0	*	*	*	*	*	0	2690	0	1000	
+
+R 35   *	4166	*	*	*	*	*	*	3699	*	*	*	2919	*	444	*	*	*	*	*	35
+       0	*	*	*	*	*	0	2690	0	1000	
+
+E 36   *	*	*	619	*	*	*	3699	*	*	*	*	*	2841	2919	*	*	*	*	*	36
+       0	*	*	*	*	*	0	2690	0	1000	
+
+G 37   2476	*	*	*	*	286	*	*	*	*	*	*	*	*	*	*	*	*	*	*	37
+       205	*	2919	*	*	0	*	2690	0	1000	
+
+T 38   *	*	*	*	*	*	*	*	4709	*	*	3479	*	*	*	2759	465	*	*	*	38
+       303	2400	*	2322	322	*	0	2348	1173	1138	
+
+C 39   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	39
+       136	3479	*	2322	322	*	0	2348	1047	1138	
+
+G 40   *	*	3574	3479	*	2284	*	*	1528	*	*	2520	*	*	*	3324	*	*	*	*	40
+       0	*	*	*	*	*	0	2348	0	1138	
+
+A 41   3840	*	2094	1864	*	*	*	3305	*	*	*	*	*	2899	*	*	3994	3021	*	*	41
+       0	*	*	*	*	*	0	2348	0	1138	
+
+Q 42   3479	*	*	2922	*	*	3922	*	*	3305	*	*	*	1088	4246	*	3502	*	*	*	42
+       0	*	*	*	*	*	0	2348	0	1138	
+
+T 43   *	*	*	*	*	*	*	3502	*	*	4958	4451	*	*	*	2521	600	*	*	*	43
+       0	*	*	*	*	*	0	2348	0	1138	
+
+Q 44   *	*	4246	*	*	*	*	*	998	*	*	*	*	2590	2220	*	3922	*	*	*	44
+       0	*	*	*	*	*	0	2348	0	1138	
+
+R 45   *	*	*	*	*	*	3377	*	974	*	*	*	*	*	3840	*	1622	*	*	*	45
+       0	*	*	*	*	*	0	2348	0	1138	
+
+I 46   *	*	*	*	*	*	3922	1620	*	2067	4451	*	*	3502	*	*	4642	2351	*	*	46
+       0	*	*	*	*	*	0	2348	0	1138	
+
+R 47   *	*	2948	*	*	*	3048	*	719	*	*	*	*	*	2816	*	*	*	*	*	47
+       0	*	*	*	*	*	0	2348	0	1138	
+
+C 48   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	48
+       0	*	*	*	*	*	0	2348	0	1138	
+
+R 49   *	*	*	*	*	*	*	*	922	*	*	3922	*	*	1300	*	*	*	*	*	49
+       0	*	*	3807	107	*	0	2348	1138	1138	
+
+V 50   *	*	*	*	*	*	*	882	*	*	*	*	*	*	*	*	*	1129	*	*	50
+       0	*	*	*	*	*	0	2348	0	1138	
+
+P 51   *	*	*	*	*	*	*	*	3479	*	*	*	136	*	*	*	*	*	*	*	51
+       0	*	*	*	*	0	*	2348	0	1138	
+
+C 52   *	208	*	*	*	*	*	*	*	2898	*	*	*	*	*	*	*	*	*	*	52
+       0	*	*	*	*	*	*	2651	0	0	
+
+N 53   3706	*	*	*	*	3571	*	*	*	*	*	504	*	2898	*	*	*	*	*	*	53
+       0	*	*	*	*	*	*	2651	0	0	
+
+W 54   *	*	*	*	*	*	*	*	*	2830	*	*	*	*	3492	*	*	*	376	*	54
+       0	*	*	*	*	*	*	2514	0	0	
+
+K 55   *	*	*	*	*	*	*	*	134	*	*	*	*	*	3492	*	*	*	*	*	55
+       0	*	*	*	*	*	*	2514	0	0	
+
+K 56   *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	56
+       0	*	*	*	*	*	*	2514	0	0	
+
+E 57   4040	*	2188	935	*	*	*	*	3105	*	*	*	*	3635	*	*	*	*	*	*	57
+       0	*	*	*	*	*	*	2514	0	0	
+
+F 58   *	*	*	*	278	*	*	3537	*	*	*	*	*	*	*	*	*	*	*	3492	58
+       0	*	*	*	*	*	*	2514	0	0	
+
+G 59   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	59
+       0	*	*	0	*	*	*	2486	0	0	
+
+//
+�HHsearch 1.5
+NAME  203cc7f9db11472b54bca3769bfaf8df
+FAM   
+FILE  203cc7f9db11472b54bca3769bfaf8df
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:31:50 2013
+LENG  180 match states, 180 columns in multiple alignment
+FILT  116 out of 1192 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.4 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCEEEEEEEECCCCCCHHHHHHHHHHHHHHHHHCCCCCCEEEEEEECCCEEEEECCCCCCCHHHHHHHHHHHHHCCCCCHHHHHHHHHHHHHHHHHCCC
+CCCCCEEEEEEECCCCCCCCCHHHHCCCEEEEEEECCCCCCCCCHHHHHHHHCCCCCCEEEECCCHHHHHHHHHHHHHHC
+>ss_conf PSIPRED confidence values
+9843799999798888706999999999999996487884899999789326986476667789999999976505898749999999999987554057
+88996399999289988871379887988999997885434258999999965999855997399999999999998519
+>Consensus
+xxxxDixfllDxSxSmxxxxxxxxxxxxxxxxxxlxxxxxxvxiixfxxxxxxxxxlxxxxxxxxxxxxxxxlxxxxgxtxxxxalxxxxxxxxxxxxgx
+rxxxxxxivlxTDGxxxxxxxxxxxxxvxvxxvgigxxxxxxxxxxxLxxiaxxxxxxxxxxxxxxxxLxxxxxxixxxi
+>203cc7f9db11472b54bca3769bfaf8df
+MGNVDLVFLFDGSMSLQPDEFQKILDFMKDVMKKLSNTSYQFAAVQFSTSYKTEFDFSDYVKRKDPDALLKHVKHMLLLTNTFGAINYVATEVFREELGA
+RPDATKVLIIITDGEATDSGNIDAAKDIIRYIIGIGKHFQTKESQETLHKFASKPASEFVCILDTFECLKDLFTELQKKI
+>gi|260837234|ref|XP_002613610.1| hypothetical protein BRAFLDRAFT_127098 [Branchiostoma floridae]gi|229298996|gb|EEN69619.1| hypothetical protein BRAFLDRAFT_127098 [Branchiostoma floridae]
+------LYPYGSySGGYPPSNMEKTMG-PGNYRVPLvaGGETITIGSIKKTEETSPseslsaekQAVVAAQDTRECTMSSITiySEERLRGTKKTYSGNG
+WLPRDPS-----WVVDSAGPAWVDSNGVTWEDV-------VTVDNVQSGDQ------RQVFGGFQGKARYWKLVITQTYTGWQPYVRE-----
+>gi|317505805|ref|ZP_07963650.1| von Willebrand factor type A domain-containing protein [Segniliparus rugosus ATCC BAA-974]gi|316255887|gb|EFV15112.1| von Willebrand factor type A domain-containing protein [Segniliparus rugosus ATCC BAA-974]
+---ATVILLLDISESMRatdvkPSRVEAARAAAIKFVDGM-APTVQLGVVTFAGNAQPLVRPSTD--HETAKKVIDQMIrpdKLEKQTATGEGIYTALQQ
+IEtiAGalGGKNHA-PPARIVLVSDGKETVpdDLNAprgaYaaartaKEKHVPVCTVAFGTKAGKitldnqvdevPVDLESLKKISDLSNSPgnscRFFP
+AESQGELAQIYQSLNEDI
+>gi|268529744|ref|XP_002629998.1| Hypothetical protein CBG13361 [Caenorhabditis briggsae]gi|187028722|emb|CAP32249.1| hypothetical protein CBG_13361 [Caenorhabditis briggsae AF16]
+---LDLVLVIDNSQP--TNTIYETISGIFGAQSRIGthyedPRSSRVAIITYNNDATTVAQFPTFKSLDQLKTELTVLKNDGTsgnESYLDTGLSSA-QA
+ILNKTEDRM-NYKKVVLVFASTYDLLYDRpdyIAhalKSNGVTVITVYTGNDKT---VKGQLKSVASDG---FAFQMSVN-TTTDLQNAL----
+>gi|221107141|ref|XP_002168519.1| PREDICTED: similar to predicted protein [Hydra magnipapillata]
+VQPMDIGIAMDTSAAT-VANWPYYQQFCRNLVDKFQMgNIARIGLITFDTIAKVPVNLDTYREPTALKLHCNRLVPDPyGRRRTDAALDIARERLFAT--
+-ARPGVPKMLFLLEHGRINGGDPSinwnqqliepsQRlkQMGVNVFAVGATPI----AGVDELKTITSTIDDQsHVLPLQGYWQLPGVVPQIAA--
+>gi|227541544|ref|ZP_03971593.1| von Willebrand factor, type A [Corynebacterium glucuronolyticum ATCC 51866]gi|227182700|gb|EEI63672.1| von Willebrand factor, type A [Corynebacterium glucuronolyticum ATCC 51866]
+---AHEMFi-aVDTSSSMEGQPLERTKEILAELSKGMfEssygeyafRPGDKISffg---LTPQS----sgpSYVAYDP--EDPDSYRELEDfangLntG
+PKISTCETLIRGLLGA-----D-GMGNAVPAVIFTTGTDEDDPECEnfesnvdslpeESGPHPAYIFLLDPA-----HTEWMDTLAEITG-GQVFDATT-
+--------------
+>gi|332308254|ref|YP_004436105.1| LPXTG-motif cell wall anchor domain protein [Glaciecola agarilytica 4H-3-7+YE-5]gi|332175583|gb|AEE24837.1| LPXTG-motif cell wall anchor domain protein [Glaciecola sp. 4H-3-7+YE-5]
+--AREVVFLLDTSGSMAGESIVQAKRAVDFALTQLHPED-SVNVIEFNDAPQALWNLAMPATANNIQRARNWVASLSanGGTEMAPALSMALHKtNLEQq
+nINEGSPVQLRQVVFITDGSVSNEDALMSLienqlADSRLFTIGIGSAP----NSYFMTQAAQAGRGTFTY-IGDINQVQQKMTELFNKL
+>gi|334112791|ref|ZP_08487045.1| OmpA/MotB domain protein [Methylomicrobium album BG8]gi|333597114|gb|EGL01956.1| OmpA/MotB domain protein [Methylomicrobium album BG8]
+------YVINDSSSSMSEDylgsgftsghapaKLSVEKTILSRINQTIPDLKLTSGIRSFGFgpCSGWgstlyNLPLTAY-SKSTFNAGIDTLTCASGGS
+PMNAAAEAAASDL------SGTSGRIALLILSDGyELqASPVPAVQAlkqqygDRLCVYSVWVGnkHEE---NGKLLLNSLS------------------
+----------
+>gi|297283897|ref|XP_001104925.2| PREDICTED: integrin alpha-D-like [Macaca mulatta]
+----------------------------------------------------------------------------------------------------
+----------------TLAASTNRS-----WLLACGP------TLHRVCGENSYSKGSCLLLGSHWEIIQTVPDALPEcphqemdIV
+>gi|710012|dbj|BAA06482.1| hypothetical protein [Bacillus subtilis]
+--TARVGLVLDITGSMRPLYKNgTVQNVVERILAVADQfdDNGLLDVWVYDNEFPRlkPVSEKDFPGYVDREILNNDRLHKFGRNDEPPVMKDVLRNMLR
+RN---RARILLSLFLSMTGAV--K---SQSNRLIEassdkpvfwqF-VGIGNGNF--DFLNKLDTLEGRVIDNtNFLHIEEIDRISD---------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	1977	*	1088	2737	*	*	*	*	*	*	2992	*	*	1
+       0	*	*	*	*	*	*	4173	0	0	
+
+G 2    3138	*	*	5276	*	1207	4802	*	5082	3905	*	*	5156	3052	3489	5236	5016	*	*	*	2
+       0	*	*	*	*	*	*	7696	0	0	
+
+N 3    3815	*	4778	5298	5368	4495	4082	*	3006	5196	6173	3721	1828	5155	3893	4353	3794	*	*	*	3
+       18	*	6357	*	*	*	*	9163	0	0	
+
+V 4    2520	*	*	*	4542	*	6362	2760	4787	2560	4022	6384	6436	4864	3553	5610	4015	3184	*	5641	4
+       0	*	*	*	*	*	0	9324	0	1000	
+
+D 5    6641	*	662	3793	*	5840	4951	6518	5291	6701	*	3087	6651	*	6695	5618	4945	*	*	*	5
+       19	*	6258	*	*	*	0	9338	0	1000	
+
+L 6    5211	*	*	*	5625	*	*	1480	*	2056	4637	*	*	*	*	*	4346	1920	*	*	6
+       0	*	*	*	*	858	1158	9412	0	1207	
+
+V 7    3426	5757	*	*	4530	5207	5799	2944	*	2845	4198	6526	*	*	*	4521	5149	1734	6633	3586	7
+       0	*	*	*	*	*	0	9617	0	1000	
+
+F 8    5844	*	*	*	1003	*	*	2784	*	2291	5209	*	*	*	*	*	6648	4224	6748	4868	8
+       0	*	*	*	*	*	0	9617	0	1000	
+
+L 9    3205	6320	*	*	*	6536	*	3317	*	1275	6061	*	5831	*	*	6631	6457	1733	*	*	9
+       19	*	6220	*	*	*	0	9617	0	1000	
+
+F 10   4565	*	*	*	5078	6561	*	2592	*	1268	5887	6471	6579	*	*	*	*	1886	*	5194	10
+       12	*	6928	*	*	*	0	9594	0	1371	
+
+D 11   *	*	221	4879	*	5815	4745	*	6433	*	*	*	6513	6593	*	5621	*	*	*	*	11
+       0	*	*	0	*	1029	971	9579	1012	1555	
+
+G 12   3268	5800	4386	4462	6692	3529	6337	4068	*	4827	5310	4113	*	5622	4887	2910	2688	2896	*	5517	12
+       25	5848	*	0	*	*	0	9610	1158	1201	
+
+S 13   *	6651	6645	*	*	*	*	*	*	*	6829	6704	*	*	*	229	3208	*	*	*	13
+       0	*	*	*	*	*	0	9610	0	1201	
+
+M 14   3336	*	3595	3526	*	1730	5260	6750	5742	6528	6812	4908	6619	3920	5075	2789	4540	5800	*	6458	14
+       12	*	6933	*	*	*	0	9610	0	1201	
+
+S 15   5834	*	5043	6624	*	3943	6683	*	4691	*	6529	4473	6343	6643	5888	531	6655	5844	*	6172	15
+       56	6928	5071	0	*	1792	492	9601	1012	1352	
+
+L 16   5583	*	6479	*	7095	6564	*	2501	6495	3593	1209	6563	*	5702	*	7027	5926	2587	6767	5862	16
+       67	4793	6769	2347	316	1011	989	9602	1875	1936	
+
+Q 17   3119	*	6909	4495	*	2425	*	6802	4753	5919	*	4536	4237	4155	3682	2333	3096	5037	*	7072	17
+       278	3918	3197	1976	423	1917	444	9636	2293	1598	
+
+P 18   4950	6739	3965	2630	6373	2499	6857	*	5129	5688	*	4486	3184	4243	4575	3075	4824	4629	6440	4979	18
+       122	4615	4636	1381	699	120	3649	9525	1506	3214	
+
+D 19   3451	*	2871	2661	*	4043	5543	6853	3621	5007	5868	4332	*	5262	4465	2660	3900	5161	*	5693	19
+       99	4717	5132	2922	204	330	2292	9618	1533	1715	
+
+E 20   4220	*	3147	4005	6843	3732	6769	*	3051	6600	5575	2704	5756	5144	3407	3201	4152	6457	6722	4450	20
+       42	5140	*	2431	296	390	2077	9614	1407	1541	
+
+F 21   5661	*	6820	6753	1729	6849	6550	2960	5386	2848	4831	6947	5374	5776	5724	6339	*	4828	2909	3955	21
+       25	5835	*	2810	222	*	0	9667	1402	1000	
+
+Q 22   3523	7117	2967	2677	*	4881	5415	5249	3613	6804	7046	3750	6010	4259	3363	2941	4964	5200	*	6531	22
+       91	4032	*	1483	639	*	0	9695	2050	1000	
+
+K 23   3857	6935	3436	3768	5987	5580	5340	3836	3574	3010	5248	5115	*	3373	4000	4155	4132	4459	6009	5097	23
+       68	4926	6252	3447	139	*	0	9695	1485	1000	
+
+I 24   2310	6842	*	4379	4738	5546	*	3576	5330	3043	3134	*	*	5627	5325	5120	3301	2695	*	6813	24
+       13	*	6841	*	*	*	0	9672	0	1371	
+
+L 25   4941	*	6683	6695	*	6626	*	4212	1706	3428	4752	4531	*	3262	2653	4665	5805	4696	6628	4839	25
+       50	6002	5772	0	*	2009	412	9618	1099	1547	
+
+D 26   2993	*	2361	3831	*	4218	*	*	3100	*	*	3884	5261	3100	3680	3956	4337	4767	*	*	26
+       25	*	5872	*	*	2441	294	9640	0	1739	
+
+F 27   1940	5685	6534	6769	1783	5889	*	5580	5549	4200	5705	5837	6640	6320	5415	3866	4477	4303	4652	6761	27
+       0	*	*	*	*	1054	948	9563	0	1891	
+
+M 28   2961	6811	*	*	3841	5782	*	2226	6654	2233	4076	*	5898	*	6591	5799	4566	2383	*	*	28
+       0	*	*	*	*	*	0	9668	0	1389	
+
+K 29   3204	6913	5673	3364	5017	4590	*	5261	2688	3698	6004	4419	6903	3898	3501	3343	4132	4446	*	6939	29
+       0	*	*	*	*	*	0	9668	0	1389	
+
+D 30   3214	*	3383	3090	4846	4776	*	*	3133	4842	5318	3453	*	4421	3803	3015	3617	5725	*	*	30
+       0	*	*	2807	222	590	1575	9668	1201	1389	
+
+V 31   3144	*	6965	*	2713	*	*	2269	6343	2144	3762	*	*	*	*	5428	4400	3280	*	4917	31
+       0	*	*	*	*	*	0	9691	0	1012	
+
+M 32   3603	*	*	*	5229	4690	*	2377	6660	2154	4884	5684	5715	5611	5902	4958	4865	2163	*	5271	32
+       26	6723	6845	1585	585	*	0	9691	1004	1012	
+
+K 33   6150	*	3340	3711	*	4243	5543	6729	3253	4952	5201	3935	4485	3734	3268	2742	3633	5859	6787	5845	33
+       0	*	*	*	*	1035	965	9637	0	1195	
+
+K 34   3139	5888	4154	3703	6657	4561	4758	4902	3051	3900	5385	4326	4606	3915	3526	3676	4034	6752	*	6674	34
+       114	3715	*	1788	493	0	*	9686	2444	1012	
+
+L 35   7099	5802	*	*	2179	6615	*	3104	5971	1415	4023	6038	*	5744	*	7124	5010	3718	*	5219	35
+       567	1815	4618	1330	732	*	*	9705	5260	0	
+
+S 36   4399	*	3218	4736	5917	2265	5742	6589	4856	5196	6711	3522	5096	4017	4069	2507	4858	5220	7024	*	36
+       430	2116	5206	1859	465	1396	690	9578	4520	1826	
+
+N 37   4622	*	3418	2848	6653	4051	6525	4561	4122	6891	6803	3947	2000	4028	4019	5045	5767	5555	*	5585	37
+       294	2616	5560	1270	772	0	*	9572	3651	1963	
+
+T 38   5272	*	2051	3366	*	4529	6503	*	4036	4783	5237	3570	3520	4097	5068	3667	4163	4236	*	6570	38
+       10	*	7114	*	*	0	*	9670	0	1236	
+
+S 39   3866	6826	3242	5221	6392	2849	5166	5884	3191	4782	6800	3433	*	4216	4301	3158	3696	4837	*	5751	39
+       68	6749	4764	1000	1000	0	*	9709	1018	1000	
+
+Y 40   3160	6629	3133	*	4676	4777	*	2976	*	4345	*	5402	6709	5225	6541	3784	2997	2300	6750	5004	40
+       51	*	4838	*	*	0	*	9718	0	1662	
+
+Q 41   5427	*	5245	4130	6761	*	3061	6966	4276	5219	*	3692	6769	2841	1712	4123	4754	5771	*	4886	41
+       0	*	*	*	*	454	1888	9679	0	1499	
+
+F 42   4379	*	*	*	2412	*	*	2222	7206	3534	4540	*	6816	*	7309	4874	5879	1724	*	4482	42
+       0	*	*	*	*	0	*	9698	0	1005	
+
+A 43   2106	*	4702	5772	6683	1570	*	*	*	5752	6930	4010	6615	6897	5865	2356	5764	*	*	5264	43
+       0	*	*	*	*	*	*	9705	0	0	
+
+A 44   3463	*	*	*	3678	*	*	1792	*	1891	5225	*	*	*	*	5456	*	2163	*	*	44
+       12	6930	*	3585	126	*	*	9705	1000	0	
+
+V 45   4364	*	6879	*	4746	5278	6956	1895	*	3125	4891	5738	*	5919	5682	4485	3963	1932	5692	6699	45
+       0	*	*	*	*	*	*	9705	0	0	
+
+Q 46   3846	5885	5902	4490	4348	3392	6748	5841	4180	3617	5603	4508	6993	3226	4448	3563	2465	5021	6816	6148	46
+       11	*	6993	*	*	*	*	9705	0	0	
+
+F 47   *	*	6390	*	987	6604	5104	6942	5951	5287	*	*	*	*	*	5746	*	5753	*	1486	47
+       13	6830	*	2000	415	*	0	9690	1000	1012	
+
+S 48   2930	6923	3829	*	*	2336	5382	6390	7095	6737	*	3259	*	*	4654	1677	3762	6830	*	*	48
+       0	*	*	1000	1000	0	*	9690	1012	1012	
+
+T 49   3659	7006	2422	4542	5722	3142	5432	6851	5309	*	5782	3935	6743	5085	3726	2373	3423	*	*	6636	49
+       73	4343	*	2572	266	*	*	9705	1751	0	
+
+S 50   4664	6541	3555	3069	6923	3712	4491	4463	3310	*	6993	3962	4877	4752	4104	3274	3127	5878	5683	6088	50
+       78	4256	*	1710	526	*	*	9705	1940	0	
+
+Y 51   2267	*	6767	6819	5950	4185	5723	4282	6742	5975	*	5270	2892	*	6104	3428	3374	2355	*	4399	51
+       23	5975	*	2821	220	*	*	9705	1164	0	
+
+K 52   4203	6879	4385	3356	5532	6541	3617	5070	3081	5302	*	4469	6767	4133	3035	3302	3750	3845	*	5270	52
+       62	5862	5340	1000	1000	*	*	9705	1200	0	
+
+T 53   4290	*	5986	3257	6522	5168	5685	3915	3969	3656	5346	5641	3646	4926	5432	5294	2575	2751	5064	6874	53
+       159	3372	6959	1902	449	*	0	9691	2589	1338	
+
+E 54   4244	*	4203	3045	5022	5086	5213	4021	5157	2926	5895	4808	4536	3941	5308	5622	4704	2536	5560	5317	54
+       59	5009	6775	2461	289	2213	351	9676	1485	1524	
+
+F 55   4062	4760	6942	*	2024	5577	5629	3812	4501	2748	3989	*	*	5246	*	5139	5395	2759	5767	4787	55
+       49	5297	6960	1054	948	982	1019	9664	1307	1555	
+
+D 56   3930	7060	2944	6029	5830	3388	4587	6742	5233	4884	6889	3767	2553	4668	4614	3259	4274	4667	*	5097	56
+       18	6334	*	3700	115	*	0	9684	1068	1357	
+
+F 57   6581	6796	*	6768	2295	6780	6344	4398	*	1341	5966	*	3764	5621	6974	5194	4489	3924	*	4370	57
+       38	5929	6721	1883	456	1616	569	9684	1334	1357	
+
+S 58   3375	6882	3435	5415	6357	3807	5184	6076	5184	5388	*	2664	5958	5806	3421	3205	2638	5249	6770	6345	58
+       98	4853	4998	1191	832	1677	541	9676	1539	1365	
+
+D 59   3774	*	2626	3905	6722	5070	5184	*	4261	4409	6897	3115	4857	3919	3964	3244	3830	4791	5485	6739	59
+       24	5943	*	642	1477	2160	365	9553	1155	1879	
+
+Y 60   4839	*	3422	5869	2872	4591	4047	3473	5734	3351	5939	4627	4311	4942	5955	4743	5281	3828	6610	3189	60
+       97	6919	4146	1039	962	*	0	9588	1185	1652	
+
+V 61   4268	*	3065	3697	5249	5538	5609	4223	3289	5631	5421	3539	4019	4648	3590	3877	4132	5127	6518	4364	61
+       322	6610	2400	2807	222	1662	548	9561	1010	2635	
+
+K 62   6506	5674	2671	3805	5605	6529	*	*	6553	5503	*	2966	*	5339	5631	1632	2729	*	*	5034	62
+       66	6480	4892	0	*	1697	532	9336	1007	4802	
+
+R 63   3342	*	4169	3971	6360	*	5298	4081	2676	3725	5730	4652	4206	3928	3021	3888	5036	4575	*	6437	63
+       146	5333	3803	2140	371	456	1884	9389	1212	4160	
+
+K 64   3535	*	3015	2370	*	6561	6569	6653	3434	*	*	4358	4472	4718	4209	2951	3475	4398	6671	6551	64
+       98	*	3924	*	*	957	1045	9553	0	2869	
+
+D 65   3251	5182	2895	3165	4901	4502	4159	6543	4100	5184	*	3700	5834	3808	3654	4460	3684	5449	*	*	65
+       41	6762	5716	2807	222	2702	241	9511	1000	3037	
+
+P 66   4384	*	6592	*	3396	*	*	2585	4221	1879	3715	6443	5635	5480	4600	*	5797	2845	*	5257	66
+       0	*	*	*	*	1365	709	9513	0	2998	
+
+D 67   4189	*	3320	4445	6608	5264	6280	3976	3035	3634	4814	3934	6525	3066	3779	4097	4603	3987	7042	6701	67
+       49	5332	6847	1211	816	2908	206	9631	1306	2217	
+
+A 68   2821	*	3152	3012	6619	5581	6331	5883	4024	4789	5833	3566	*	3868	3731	2975	4935	6862	5552	5135	68
+       36	5331	*	2867	213	2089	387	9631	1306	2205	
+
+L 69   2437	*	4947	4790	4870	3618	5223	3469	4663	2923	6772	5417	*	5763	4750	4534	4693	2904	5805	5561	69
+       52	4807	*	1954	431	634	1491	9639	1874	1898	
+
+L 70   3949	5816	5497	*	3550	6886	*	1978	4646	2084	6682	6985	6609	6333	5934	4842	5351	2768	6774	*	70
+       12	*	6888	*	*	*	0	9676	0	1216	
+
+K 71   3313	*	2630	4264	6692	4168	7122	6712	3933	5487	*	2833	5704	4271	3696	2963	4449	6797	5814	5228	71
+       57	5914	5513	1000	1000	1642	557	9623	1158	1395	
+
+H 72   3060	6960	4437	3583	6019	4322	4753	*	3570	6674	*	3490	5817	4543	2988	2708	4721	5902	5981	4417	72
+       37	5894	6908	1352	717	780	1259	9599	1526	1740	
+
+V 73   4598	*	*	5278	4409	*	6597	2333	6828	1504	3621	*	*	*	*	7050	4171	2798	*	5183	73
+       92	4633	5523	1776	498	*	0	9613	1567	1391	
+
+K 74   4703	*	4301	3517	6518	4667	6436	5723	2961	5269	5789	4799	3064	3652	2728	3611	4078	4532	*	*	74
+       23	6870	7154	1585	585	557	1642	9580	1368	1920	
+
+H 75   5298	6522	3725	4561	3380	6901	5583	5133	4001	4530	*	5141	3065	3845	3904	3652	4254	4644	5814	3156	75
+       199	3457	4730	2445	293	620	1517	9629	2525	1337	
+
+M 76   3966	6823	4813	3540	4933	*	*	3842	4280	2654	3668	5978	4806	4347	4022	3981	3343	3971	*	5252	76
+       285	2921	4403	1712	526	818	1209	9587	3195	1779	
+
+L 77   3929	*	3693	4006	6773	1696	5698	*	5721	5723	6869	4027	5032	5641	3643	2932	4296	5222	*	6582	77
+       363	2167	*	1426	671	288	2466	9549	4398	2112	
+
+L 78   3753	*	4103	*	6171	1064	5716	*	4894	5186	6642	6381	6816	4450	5276	3513	3904	6911	6753	5579	78
+       55	4739	*	2261	338	0	*	9674	1885	1065	
+
+L 79   3025	*	4254	5234	4983	1837	*	6048	7206	3875	7000	3859	5774	4300	4531	3486	4078	5975	5640	5426	79
+       169	3178	*	692	1393	*	*	9705	2848	0	
+
+T 80   3848	6787	*	5082	*	6546	6987	5848	4974	5720	*	4325	5631	6595	4014	2809	1020	5209	*	*	80
+       33	6050	6993	578	1598	*	*	9705	1123	0	
+
+N 81   3269	5903	3661	5351	5876	5511	5283	5629	4581	7027	6763	1730	3457	6020	4577	3328	*	6674	6801	3960	81
+       19	*	6275	*	*	*	0	9690	0	1012	
+
+T 82   5634	*	*	*	6929	5983	*	2245	*	1979	3452	5772	*	5699	*	4400	2365	3746	6856	4730	82
+       0	*	*	*	*	*	0	9667	0	1389	
+
+F 83   2340	6791	4298	4545	6838	1672	5887	6888	5362	5291	*	4763	*	5879	*	3689	4202	6384	*	3262	83
+       13	*	6794	1585	585	1575	590	9667	1012	1389	
+
+G 84   2433	6600	3489	2760	*	4869	4403	*	3367	4860	6926	5721	5907	4374	4026	3488	3902	6017	*	5064	84
+       15	*	6597	*	*	1712	526	9670	0	1365	
+
+A 85   1088	*	*	*	*	1776	*	5854	*	*	6722	6542	6821	5674	5767	4249	5093	3810	*	*	85
+       0	*	*	*	*	*	0	9610	0	1455	
+
+I 86   6516	6845	*	*	4023	*	6327	2158	*	901	4276	5932	*	*	*	*	6694	3852	*	*	86
+       12	*	6972	*	*	*	0	9610	0	1455	
+
+N 87   4768	*	3885	2603	5339	5919	6864	4887	3597	3560	6988	4063	*	3269	3068	4001	4270	5743	6773	4409	87
+       13	6838	*	2086	387	541	1677	9596	1558	1638	
+
+Y 88   3338	6027	4603	4385	3680	5593	4347	5059	3718	3464	6942	5188	*	4945	5006	4403	3381	4684	4242	3082	88
+       31	*	5570	*	*	0	*	9634	0	1081	
+
+V 89   1436	4881	*	5751	6691	3530	*	3420	*	3552	4890	*	5021	*	*	5352	3704	2865	*	*	89
+       77	*	4261	0	*	590	1575	9667	1201	1389	
+
+A 90   2899	*	*	5202	4787	6587	4251	3900	3785	2900	4359	4388	5827	4941	3520	4233	5761	3649	5741	4006	90
+       78	6610	4565	588	1580	526	1710	9599	1202	2014	
+
+T 91   4714	*	3205	2643	5201	5246	5149	*	3180	5698	6896	3143	6944	3654	3132	3986	3882	*	6341	6011	91
+       24	7003	6879	1201	823	240	2703	9642	1159	1994	
+
+E 92   4931	*	4026	2771	4766	6883	5222	5436	4105	4088	5056	3875	5782	3432	4183	4135	4127	3537	6603	3784	92
+       31	6886	6269	0	*	*	0	9691	1000	1162	
+
+V 93   4890	*	6767	*	3875	5224	7006	2751	*	1942	3183	5851	4519	7067	5461	4812	6908	3181	*	3470	93
+       381	6847	2161	0	*	925	1079	9668	1000	1533	
+
+F 94   6528	*	4133	4180	1465	5611	6369	4807	*	2913	*	5349	6324	3995	5594	3595	4526	4160	*	6463	94
+       131	4466	4600	1056	946	2041	402	9340	1486	4723	
+
+R 95   3748	*	3561	3562	6316	2996	6561	5633	3691	4023	5606	4311	4432	4236	5060	3501	3345	4990	5762	6425	95
+       99	6552	4166	0	*	*	0	9246	1012	4412	
+
+E 96   3835	*	4483	3192	6720	4431	4851	4357	3861	5166	4520	5536	3653	3437	4818	2963	3444	6595	6061	5511	96
+       136	4821	4192	708	1367	1511	623	9169	1359	5064	
+
+E 97   3400	6159	3429	3835	*	3934	6607	4620	3313	3730	5600	3637	*	4172	3914	2776	4164	*	*	6444	97
+       115	4989	4465	1786	494	3724	114	9255	1329	4415	
+
+L 98   2837	*	5120	6532	4707	4201	6762	6907	3322	4190	4864	2901	5333	3483	3575	3213	4817	5601	6123	6511	98
+       276	5790	2682	550	1658	1917	444	9200	1099	4649	
+
+G 99   3670	*	4910	5540	6703	1052	5933	*	5289	5219	*	3761	6044	6544	4107	3190	6049	6439	*	6384	99
+       273	2994	4416	2754	231	972	1029	9173	2541	5399	
+
+A 100  2958	6122	3742	5677	5060	2706	5428	*	5001	4985	4364	4445	5014	5068	3676	3404	4179	4950	4542	4841	100
+       116	6041	4012	2430	296	824	1201	9462	1201	3915	
+
+R 101  5218	*	5176	4626	5567	4552	5694	*	5745	5112	*	4917	4631	6479	1037	4419	3406	4787	5993	6730	101
+       124	3598	*	975	1025	2285	331	9584	2286	3218	
+
+P 102  3496	6588	4789	3944	5771	4338	*	5417	3903	6986	*	3925	1757	4385	3536	3843	4986	4756	*	*	102
+       96	4439	5768	1861	464	742	1314	9614	1705	2780	
+
+D 103  3819	*	2718	3907	*	2520	4759	5993	4653	6404	5657	2358	6475	5168	4275	4607	4380	5618	*	5887	103
+       56	5201	6564	1875	459	816	1211	9670	1344	1985	
+
+A 104  2910	5893	4264	4415	5567	4294	3693	5343	5173	5890	5739	4232	4644	4779	4756	3268	6202	2693	*	3734	104
+       66	4795	6801	1815	482	1050	951	9615	1515	1523	
+
+T 105  4621	*	5169	3540	5681	*	6939	5449	3562	4410	*	3939	2215	5300	2487	4242	4044	3931	*	*	105
+       15	6590	*	1000	1000	*	0	9623	1021	1357	
+
+K 106  5943	*	5889	6864	*	3867	4175	4639	2341	4760	5784	3086	3380	4871	2279	4551	5335	5612	*	*	106
+       42	5761	6600	2280	332	1653	552	9623	1189	1357	
+
+V 107  3011	*	*	6596	3952	6569	5823	2364	5953	3822	5302	5191	5254	5140	4968	5304	3786	2347	7050	4306	107
+       19	*	6241	*	*	*	0	9605	0	1443	
+
+L 108  3778	5719	6660	*	5843	6747	*	1922	*	1820	4446	*	6290	*	*	*	5307	2056	*	*	108
+       0	*	*	*	*	1455	655	9581	0	1803	
+
+I 109  6581	*	*	*	3691	*	5554	1729	*	3258	4373	*	*	6788	*	*	*	1473	5390	4535	109
+       0	*	*	*	*	*	0	9610	0	1455	
+
+I 110  5875	6327	*	*	3694	*	*	2588	*	1309	4631	6367	*	*	*	*	6683	2052	*	5638	110
+       13	6823	*	0	*	*	0	9610	1000	1455	
+
+I 111  4236	*	5932	*	3304	*	6479	2119	*	1742	3864	*	*	*	*	*	6726	2385	*	5696	111
+       12	*	6962	*	*	1299	753	9610	0	1455	
+
+T 112  3518	*	*	6837	6591	5377	*	5910	*	6678	6694	6841	6362	*	6610	2134	825	6647	*	*	112
+       0	*	*	*	*	*	0	9630	0	1377	
+
+D 113  5897	*	609	5626	*	5202	5899	*	6675	*	6792	4530	5767	6556	6767	3236	5177	6647	*	5705	113
+       45	5454	6978	1721	522	558	1640	9630	1634	1377	
+
+G 114  3389	*	5639	5099	*	439	*	*	5663	*	*	5630	*	*	*	4148	5546	*	*	*	114
+       47	5657	6363	708	1366	953	1049	9640	1398	1192	
+
+E 115  3582	5722	4128	2964	5847	4659	5900	4972	3883	4827	6916	3196	4288	3836	3953	4472	4303	3739	5612	6739	115
+       57	6788	5069	1585	585	*	0	9623	1004	1244	
+
+A 116  4259	6867	4060	4024	5256	6671	5629	4258	6687	5092	*	4006	2345	5756	6572	2390	3439	4182	6926	4796	116
+       89	4341	6622	2529	274	1186	835	9576	2097	2093	
+
+T 117  4514	*	4284	3599	4919	4378	4849	*	5249	6879	6308	2776	5748	4444	4247	2979	2236	*	4751	5668	117
+       23	5977	*	1464	649	2292	329	9600	1492	1734	
+
+D 118  4364	6838	1732	2924	6670	3415	6712	*	5567	6030	5267	3471	5244	5861	5099	3402	5900	4892	6982	5751	118
+       34	6035	6949	1000	1000	399	2051	9585	1146	1554	
+
+S 119  4259	*	2963	3028	*	2373	5792	5314	4599	6921	*	3668	3496	5676	5264	3500	3653	5035	*	*	119
+       101	5418	4504	1868	462	*	0	9663	1448	1192	
+
+G 120  5129	6806	3083	4592	5822	3413	6841	3762	5121	4922	5783	5860	3796	4223	4263	3335	5246	2595	6841	4851	120
+       562	1714	5833	2845	216	2687	243	9526	5350	2011	
+
+N 121  3224	*	3200	3574	6971	5919	5930	*	4074	4090	6788	3264	2850	4575	4120	3703	3614	6641	*	5547	121
+       224	2795	*	2336	319	1159	857	9449	3266	2141	
+
+I 122  2909	*	4939	2956	6839	6069	*	4448	5158	2719	5506	5647	3092	5682	4391	4168	4241	3447	6588	5709	122
+       155	3429	6820	2332	319	1123	887	9532	2535	1753	
+
+D 123  1656	6784	4900	5504	6800	5932	5313	5881	4262	3148	5022	4264	3822	4549	4785	3917	6279	4620	5943	5860	123
+       135	3487	*	2563	267	2002	414	9530	2430	1501	
+
+A 124  2519	*	4028	3345	*	6305	5120	4610	3255	4479	5873	5461	4744	3296	3459	4490	4010	5158	6731	5644	124
+       183	3066	*	2348	315	1524	617	9533	3226	1335	
+
+A 125  2193	*	3650	3398	6742	4862	*	6105	3167	3640	5880	6017	4429	3874	3546	5307	4197	5198	6964	6760	125
+       349	2217	*	1762	504	*	0	9545	4324	1158	
+
+K 126  2481	*	4667	3884	6806	5281	4749	7089	2896	5402	4852	4111	5548	4505	3066	3353	4679	4820	*	5213	126
+       106	3825	*	2781	227	*	0	9545	2179	1158	
+
+D 127  5259	*	3307	4281	6778	1593	5251	*	3367	*	6986	3267	5659	4958	3673	3938	5801	5652	*	6337	127
+       65	5455	5557	3277	157	0	*	9545	1285	1158	
+
+I 128  4052	5678	*	6331	6807	*	4832	1797	*	3401	6719	*	6932	6285	5942	4814	4456	1641	*	4929	128
+       116	3829	7175	2403	302	1640	558	9597	2273	1377	
+
+I 129  4944	6512	4120	3954	5772	5795	4754	3444	3673	4452	6801	3868	4041	4457	3108	6941	2653	3869	*	6655	129
+       71	4646	6941	2556	269	*	0	9608	1564	1347	
+
+R 130  4410	5723	*	6590	5145	5256	*	2341	5234	3040	4202	*	7072	6284	3642	6895	4077	1731	*	*	130
+       127	3571	*	3076	182	*	0	9593	2398	1506	
+
+Y 131  4711	6889	5314	6646	1901	*	4968	2694	*	4549	*	*	*	6755	6883	5268	5954	3433	*	1895	131
+       37	*	5290	*	*	*	0	9579	0	1506	
+
+I 132  1950	4841	6827	6461	6617	5066	6557	4714	6848	5214	5006	5888	4806	5705	*	2831	2758	2552	*	*	132
+       15	6583	*	0	*	1271	772	9506	1010	1963	
+
+I 133  *	7180	*	*	3666	*	*	1420	*	3147	6837	*	*	*	*	6560	6325	1337	*	*	133
+       14	*	6660	2585	263	867	1147	9574	1201	1506	
+
+G 134  2262	5675	5829	6936	5874	1123	6527	5765	*	5844	6567	5117	5890	5819	6708	3606	5772	5111	6562	*	134
+       0	*	*	*	*	1413	679	9639	0	1320	
+
+I 135  4545	6762	5521	6872	3333	*	*	2044	*	2665	6501	6822	*	*	*	4373	5385	1944	*	3918	135
+       14	6659	*	2322	322	*	0	9650	1005	1134	
+
+G 136  5033	*	3749	6773	6712	767	6816	7095	4815	6560	*	4287	5904	5804	5203	4624	4582	5609	*	6574	136
+       64	5700	5377	601	1553	*	0	9632	1218	1134	
+
+K 137  3510	*	2618	3137	*	4611	6537	*	4380	6592	5832	3197	3113	4331	5738	3019	4096	5746	*	6103	137
+       38	6710	5906	522	1719	1419	676	9560	1215	1894	
+
+H 138  3062	*	3039	3465	5149	3255	4729	4320	3921	4986	6703	3685	5526	4214	5542	3560	4498	*	*	4782	138
+       1193	6176	866	3051	185	1353	717	9573	1441	1768	
+
+F 139  3509	*	4033	3919	3040	3636	*	4613	5624	3418	*	3220	3915	6100	4858	3825	*	3809	*	3974	139
+       813	5204	1308	4353	72	4094	87	8423	1201	7406	
+
+Q 140  4061	*	1988	3362	4851	2971	5010	*	4923	5557	4978	3335	*	5022	4932	4773	5728	*	*	3420	140
+       603	4061	1827	2174	361	4120	85	7583	1191	8182	
+
+T 141  3666	*	4545	4606	*	2949	*	*	3755	*	4741	2732	4625	3629	*	3738	2604	4543	*	4568	141
+       312	3755	3054	2889	209	6372	18	7348	1175	8346	
+
+K 142  1987	*	*	2597	4424	2873	*	*	3556	*	*	*	4656	3243	4470	4403	4782	4635	*	*	142
+       68	*	4440	*	*	1072	932	7194	0	8427	
+
+E 143  2394	*	5704	4432	5403	4003	5636	3396	*	3455	*	5948	5709	5799	4308	3908	4368	2225	*	5693	143
+       102	5903	4275	1000	1000	243	2689	8870	1010	6295	
+
+S 144  3763	5522	2039	3865	4778	3487	4918	6748	5737	5455	6500	2482	*	5479	7155	3618	4006	6718	*	6585	144
+       16	*	6501	*	*	394	2066	9435	0	2464	
+
+Q 145  4601	*	4395	3921	5525	5684	5168	5656	3002	3441	4111	6399	4276	4007	2790	4181	5789	3785	5839	4374	145
+       0	*	*	*	*	1844	471	9581	0	1427	
+
+E 146  2780	*	3501	2526	*	4161	5170	*	4181	6552	*	4348	5230	3129	3337	3861	3882	*	*	5851	146
+       0	*	*	*	*	833	1188	9589	0	1261	
+
+T 147  3728	*	4259	2400	4043	6875	*	*	5724	2743	6466	4354	5210	3301	5722	4796	3272	4251	6973	4726	147
+       14	6668	*	1000	1000	0	*	9620	1004	1014	
+
+L 148  4369	6769	*	*	4332	*	*	3614	*	698	3610	5352	*	*	6609	5446	*	5253	6712	5683	148
+       0	*	*	*	*	*	*	9622	0	0	
+
+H 149  3821	*	3989	2876	*	5218	5746	6767	2758	4092	6555	4092	6306	3399	2554	5194	4110	5843	*	5698	149
+       76	6899	4542	3170	170	*	*	9614	1000	0	
+
+K 150  3175	*	4217	2918	*	3763	5748	6857	3284	4065	6917	4272	*	3288	4190	2773	4347	6731	5812	*	150
+       14	6687	*	3459	138	0	*	9541	1018	1615	
+
+F 151  4635	6880	5357	*	3938	*	6276	1739	*	1641	3105	*	*	*	*	*	*	3156	*	*	151
+       0	*	*	*	*	*	*	9614	0	0	
+
+A 152  1008	*	6679	6747	5790	6985	6845	5822	6549	4661	*	*	*	5235	6711	2940	2848	3720	*	*	152
+       11	*	7094	*	*	*	*	9590	0	0	
+
+S 153  5066	5796	3801	3837	*	2380	6870	*	4336	5518	*	4659	6400	5065	4028	1882	3240	6567	*	6943	153
+       41	6755	5739	0	*	*	0	9517	1002	1000	
+
+K 154  3760	4982	3344	3116	*	3341	5550	6473	3691	3572	6270	4665	5044	4093	4482	3462	4116	5053	*	5417	154
+       72	*	4368	*	*	*	0	9476	0	1316	
+
+P 155  4388	*	5637	4989	*	3582	5522	5659	4242	5520	5264	3936	2005	*	4727	3663	2490	4285	*	6101	155
+       403	*	2036	*	*	3184	168	9457	0	2123	
+
+A 156  3192	5917	3069	6223	*	3162	6112	5817	3616	6039	4989	3020	4518	5155	4291	3116	3454	5918	*	*	156
+       200	*	2950	*	*	861	1154	9198	0	5009	
+
+S 157  5326	*	4600	2968	6364	1721	6177	6232	4455	6261	*	4287	4302	4586	3180	3290	6214	*	*	4829	157
+       157	*	3280	*	*	464	1862	9282	0	4189	
+
+E 158  4585	*	4638	2716	*	2882	5686	4751	3411	5274	*	3395	6479	3729	3551	3925	4360	5278	5561	5290	158
+       239	2710	*	832	1190	505	1760	9331	2873	3171	
+
+F 159  3922	6153	4718	4787	3133	5535	3216	6724	3531	4680	5632	2887	5466	4602	3816	4975	5463	5615	*	3286	159
+       0	*	*	*	*	484	1810	9438	0	1582	
+
+V 160  3606	*	*	5603	2386	5495	*	3730	*	2928	5801	*	6523	*	5794	*	4986	1720	*	3395	160
+       65	*	4499	*	*	*	0	9481	0	1041	
+
+C 161  5572	6552	*	*	1496	*	5447	3407	*	3649	5539	6257	*	5111	*	*	4367	4235	*	1991	161
+       15	*	6602	*	*	324	2315	9418	0	1769	
+
+I 162  4295	*	6312	3678	5362	5795	4231	3382	3370	4198	6474	5582	4020	3743	4559	3378	3369	3973	*	4377	162
+       0	*	*	*	*	0	*	9482	0	1188	
+
+L 163  2261	6634	6811	6731	5104	6481	6500	3215	6556	2605	5763	5562	4771	6614	*	4107	4161	2188	*	6769	163
+       16	*	6503	*	*	*	*	9499	0	0	
+
+D 164  4072	6537	2484	3119	*	5047	5509	*	4188	5829	*	3165	3529	4207	4196	3536	3213	*	*	6578	164
+       46	5631	6461	0	*	*	0	9394	1162	1043	
+
+T 165  5176	*	1826	3817	*	3736	6480	*	4786	6715	*	2603	5549	5031	4479	2587	4070	*	*	*	165
+       0	*	*	0	*	0	*	9313	1043	1229	
+
+F 166  2956	*	5104	4673	2584	4414	*	3910	*	6569	6334	5077	3160	5458	4665	4778	4518	4267	4493	3063	166
+       35	5389	*	1332	730	*	*	9391	1176	0	
+
+E 167  3157	5569	2843	2606	*	4210	4725	*	4662	6392	*	3292	5236	5560	4200	4042	3541	6643	6412	4398	167
+       42	5753	6607	0	*	*	*	9357	1201	0	
+
+C 168  2994	6397	2661	2716	6278	3671	*	*	3960	4285	6452	4819	*	3574	4808	3066	4421	6290	*	*	168
+       0	*	*	0	*	0	*	9294	1201	1363	
+
+L 169  4809	*	6195	*	5498	*	6648	3206	*	630	4369	*	6190	5510	6357	*	*	4760	5518	6752	169
+       17	6401	*	1585	585	*	*	9301	1000	0	
+
+K 170  3279	*	3184	4697	*	5142	6181	4331	3173	6199	*	4010	2910	3634	4389	3323	4831	4359	*	5326	170
+       37	5297	*	539	1682	*	*	9202	1152	0	
+
+D 171  4783	*	2784	3720	6342	3392	6282	*	3681	6168	6381	4380	4274	2459	5155	2555	6221	6451	*	6194	171
+       0	*	*	*	*	*	*	9157	0	0	
+
+L 172  3191	6327	*	5835	5188	*	*	2330	5175	2431	4177	5097	*	*	4632	6368	4995	2231	*	4659	172
+       0	*	*	*	*	*	*	9084	0	0	
+
+F 173  4725	*	*	*	2111	5932	*	2812	6039	2615	4661	6416	6177	5165	6067	4306	4533	2698	*	4726	173
+       0	*	*	*	*	*	*	9084	0	0	
+
+T 174  3499	*	2619	3558	*	4603	*	*	2847	4429	6258	3291	4104	4613	4279	3332	4150	*	*	5972	174
+       0	*	*	*	*	*	*	8958	0	0	
+
+E 175  5072	5096	3929	2479	*	4921	4549	5141	3439	4980	*	4454	5221	2779	3156	3491	4356	*	*	*	175
+       26	5828	*	4000	93	*	*	8944	1004	0	
+
+L 176  5847	*	*	*	4093	*	*	1344	*	1561	3710	*	*	*	*	*	*	3125	*	*	176
+       0	*	*	*	*	*	*	8686	0	0	
+
+Q 177  3041	*	*	*	3893	4525	*	2966	3562	2951	4692	5525	*	2874	4711	3904	5560	3284	*	*	177
+       0	*	*	*	*	*	*	8240	0	0	
+
+K 178  5281	*	2441	2659	4134	*	*	*	2731	*	5271	3060	*	4296	4244	3727	3778	*	5246	*	178
+       0	*	*	*	*	*	*	7960	0	0	
+
+K 179  3438	5022	2964	3191	*	*	*	*	1885	4904	*	*	*	3998	2977	4009	4157	5184	*	*	179
+       0	*	*	*	*	*	*	7588	0	0	
+
+I 180  *	*	*	*	*	*	*	791	*	2135	3059	*	*	*	*	*	*	3752	*	*	180
+       0	*	*	0	*	*	*	7096	0	0	
+
+//
+�HHsearch 1.5
+NAME  2136b1cea2992a6bf1cf63cb4e484430
+FAM   
+FILE  2136b1cea2992a6bf1cf63cb4e484430
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:08:22 2013
+LENG  189 match states, 189 columns in multiple alignment
+FILT  160 out of 1133 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  7.7 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEEEEEEEECCCCCEECCCCCCCCCCCHHHHHHHHHHHCCCCCCCCCEEEECCCHHHHHCCCCCCCCCCEEEEECCCCCCCCCCEEEEECCHHHHHHHH
+HHHHCCCCCCCEEEECCHHHHHHHHCCCCCCEEEEEEEEEECCCCCCCCCCCCHHCEEEEEECCCCCCCCCCCCCCEEEEEEEECCCCC
+>ss_conf PSIPRED confidence values
+9089999998899847469987873682689999999816765466876998334776515135788999699995999878998199949999999997
+64230279981999898999999970888898999993230257612788880243999850464445324589747999999734569
+>Consensus
+xxxixxxxAxsxdGxIgxxgxlpWxxxxxdxxxfxxxtxxxxxxxxxxxvimGRkTyexxxxxxxplxxrxxiVvSxxxxxxxxxxxxvxxxxxxxlxxl
+xxxxxxxxxxxIxViGGxxlxxxxlxxxlvDelxltxipxxxxgxxxfpxxxxxxxxlxxxxxxxxxxxxxxxxxxxxfxxyxxxxxxx
+>2136b1cea2992a6bf1cf63cb4e484430
+VRSLNSIVAVCQNMGIGKDGNLPWPPLRNEYKYFQRMTSTSHVEGKQNAVIMGKKTWFSIPEKNRPLKDRINIVLSRELKEAPKGAHYLSKSLDDALALL
+DSPELKSKVDMVWIVGGTAVYKAAMEKPINHRLFVTRILHEFESDTFFPEIDYKDFKLLTEYPGVPADIQEEDGIQYKFEVYQKSVLAQ
+>gi|294155964|ref|YP_003560348.1| dihydrofolate reductase [Mycoplasma crocodyli MP145]gi|291599950|gb|ADE19446.1| dihydrofolate reductase [Mycoplasma crocodyli MP145]
+---IKLIVATDKNNLIGNVDKMPWR-IKEEFEHFRNTTIS-------HSLLFGRTTFLGLPGklDKRTiYVLSEQTLdNCITIHNETE-L----KNL---
+---FAKFKTNNEV--LFIAGGKSIYEKYF--EYADELLISRVDGDYQGNVYL-NLNLSNYEVIKK----------QKFEKFVVETYKRIQ---
+>gi|343084894|ref|YP_004774189.1| bifunctional deaminase-reductase domain-containing protein [Cyclobacterium marinum DSM 745]gi|342353428|gb|AEL25958.1| bifunctional deaminase-reductase domain protein [Cyclobacterium marinum DSM 745]
+-KKIVYYVATSLDGYIAgENGDISqFLMQGKGVDKYQADLLNF------GTVIMGRKTYEfgyQYGlvPGQPAYPHMKHHIFSTTLKIDKlSEMVKIERG
+GLDRINEIQQN----TETDIYLCGGGQFAGYLLDHGKIDQLKIKLNPIVLgKGTKLFGsSTSNANWELIDN-ES------YAEGL--QILTYNRR----
+>gi|298245066|ref|ZP_06968872.1| bifunctional deaminase-reductase domain protein [Ktedonobacter racemifer DSM 44963]gi|297552547|gb|EFH86412.1| bifunctional deaminase-reductase domain protein [Ktedonobacter racemifer DSM 44963]
+-RKVIVLEFVTLDGVIQaPGgPEEDtsggfayggWvapY-DDDVAGtVMDKQMNLP------FDLLLGRKTFEIWAP-FWPqhadgwpgVMSATKYVASN
+SMTSSEwQPSVFLGGDIAEKVSKLKHQ----PGPDLHVYGSANLLQTLMKHDLVDAFWLKIFPLTLgSGKRLFTDGTiPAAFKVTES-------------
+---------------
+>gi|2506058|dbj|BAA22616.1| fusion protein, composed of HCV p21 (NS2), N-terminal region of HCV p70 (NS3) and TAX of HTLV-I [synthetic construct]
+-----IITSLTgrdknqVDGEVQVLSTATQS-FLAtcvnGVCWTVYHGAG-------SKTLAGPKgpitqmytnvDQDLVG---WPAPPGARSMTPCTCG
+SS-DLY-LVTRHADViPVRRRGD------SRGSLLsprpvsyLKGSAGGPLLC--PSGHVVGIFRAAVCTRGVAKAVDFI--PVESME------------
+-----------------
+>gi|12045067|ref|NP_072878.1| segregation and condensation protein A [Mycoplasma genitalium G37]gi|1723127|sp|P47455.1|SCPA_MYCGE RecName: Full=Segregation and condensation protein Agi|3844813|gb|AAC71432.1| segregation and condensation protein A [Mycoplasma genitalium G37]gi|166078768|gb|ABY79386.1| segregation and condensation protein A [synthetic Mycoplasma genitalium JCVI-1.0]
+---ISLIFDKSNSFN-------PQL-CVELLNHFKVVMLT-------KTIVVDYPSFQAWKA---QLKPFKLAVFSDNLQTelTpNSKL-TVFNNYQQLL
+VD---------NNDLIIFATPTLVQLFD--NEIDQLIVinptsks-----kdQFNCN--------wNDFVLIK---------------------------
+--
+>gi|302529715|ref|ZP_07282057.1| dihydrofolate reductase [Streptomyces sp. AA4]gi|302438610|gb|EFL10426.1| dihydrofolate reductase [Streptomyces sp. AA4]
+--KVVLYSSVSADGFIADENdQpgplFDWL-TSGDvpldesgvlkvaqasYDYTRAYWDQI------GVTVAGRHVFDLTDGwDGTPPSGiDHVVVVTHR
+PAPEgwNPDAPFhFVDGVKEAVAKAQEL----AGDRVVEVAAGDVGGQVFAAGLVDEVRMDVVPVVFgAGKRYFGSVR----------------------
+---------------
+>gi|326802356|ref|YP_004320175.1| hypothetical protein Sph21_5009 [Sphingobacterium sp. 21]gi|326553120|gb|ADZ81505.1| hypothetical protein Sph21_5009 [Sphingobacterium sp. 21]
+-MKIIIVANIAANGKVLVSDH-PHHQLPqETMDFYLKLVNQI------GNLVIGVRTFENFekfPDHVkALFKNVEIVVLADKPF-ISSTY-PVVNKPTE
+AIDYFSKK----GFTEIAIGGGTGTFNTFLEGNFVTDIYF------------------------------------------------------
+>gi|158335091|ref|YP_001516263.1| riboflavin biosynthesis protein RibD domain-containing protein [Acaryochloris marina MBIC11017]gi|158305332|gb|ABW26949.1| riboflavin biosynthesis protein RibD C-terminus domain protein [Acaryochloris marina MBIC11017]
+---TTVVLAMSADGKIADAQHSPPE-FGsdEDYAHLERQVAAA------DGILFGSATLKAGETAMrvvtqDLInarlergqpEQPAQIVCTRSGDLDPn
+lkffqqavPHWLVTTQAggqswqgtshFEQiftygteaqsidwgqTLASMP----ALGIHKIAVLGGGQIVAALLAEDLIDELHLTVCP-----------
+---------------------------------------
+>gi|306836172|ref|ZP_07469157.1| riboflavin biosynthesis protein RibD [Corynebacterium accolens ATCC 49726]gi|304567955|gb|EFM43535.1| riboflavin biosynthesis protein RibD [Corynebacterium accolens ATCC 49726]
+--HVTLKFAQTLDGFTAaADGTSQWITGPKAREWVHADRARR------DAIIIGTGTALADnPSlTARf-sdgsLREHqpRRVVIGKRD--LQaagekas
+hlqrl-GF-EQYDTIEGALKELYA----SGARDVLVEGGAGLAQSFIEAGAVDTLAAYIAPILLgqgrgvLANAVAHTLADaPHFTTVRT-TSL------
+--G-PDVLIEYEAR----
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+V 1    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	1
+       0	*	*	*	*	*	*	1000	0	0	
+
+R 2    4661	*	*	*	5688	2494	*	*	3611	*	3871	5860	2722	*	1737	3263	5616	*	5647	*	2
+       114	3721	*	885	1124	*	*	6496	1174	0	
+
+S 3    5570	6375	4865	4730	*	6623	4842	*	1436	5631	6540	5776	3811	4584	2940	3862	3791	7192	6322	5177	3
+       0	*	*	*	*	*	*	7643	0	0	
+
+L 4    *	6315	*	*	4319	6991	*	1393	7259	1998	4363	*	*	*	*	*	7129	2133	*	6937	4
+       0	*	*	*	*	*	*	8244	0	0	
+
+N 5    4920	5984	6805	4425	6821	6876	6011	2404	3198	4813	*	3819	*	5398	3618	3205	3012	3253	*	5967	5
+       11	6985	*	2585	263	*	*	8205	1028	0	
+
+S 6    3222	*	*	*	4493	5309	*	2584	*	1707	4054	*	*	*	*	4286	5346	3148	6271	3503	6
+       16	7174	7894	1000	1000	*	*	8303	1009	0	
+
+I 7    6862	6242	6316	6141	3616	4404	5897	1671	4681	5373	4883	4600	*	6396	7031	4033	5814	2940	5983	3195	7
+       0	*	*	*	*	0	*	8303	0	1000	
+
+V 8    2573	6728	*	5666	4571	5500	*	3059	*	3379	3802	5310	*	7190	*	5215	4163	2035	3706	6028	8
+       0	*	*	*	*	*	*	8343	0	0	
+
+A 9    681	5352	6578	*	4377	5142	5346	4804	*	6392	7343	4549	*	7097	7533	4100	5034	5127	7336	7063	9
+       0	*	*	*	*	*	*	8343	0	0	
+
+V 10   3761	5115	*	6526	6038	6664	7432	2686	6578	3625	3173	*	*	3631	6383	4702	3365	1960	*	6293	10
+       21	6773	7533	0	*	*	*	8343	1034	0	
+
+C 11   3729	6534	2622	*	*	4269	*	*	*	5635	*	5075	*	*	*	1117	2408	*	*	*	11
+       47	4952	*	3607	124	*	0	8301	1389	1002	
+
+Q 12   3100	*	6554	3908	7238	5413	*	4664	4360	1470	6284	4942	3863	4662	4515	5280	6167	3478	*	*	12
+       83	4155	*	2376	309	0	*	8362	1587	1002	
+
+N 13   6268	*	993	5410	6910	7407	5943	*	4949	*	*	1992	*	5211	4136	4840	6707	6598	*	6925	13
+       13	6803	*	1585	585	*	*	8361	1012	0	
+
+M 14   *	7342	7645	6803	5069	497	5299	6698	5602	4512	6019	4529	*	6873	4761	6925	*	*	5851	6330	14
+       0	*	*	*	*	*	*	8361	0	0	
+
+G 15   3710	6419	*	4319	2311	3069	7183	5262	4502	4083	5718	5901	*	5904	5637	6203	6478	3068	*	2407	15
+       15	*	6588	*	*	*	*	8361	0	0	
+
+I 16   5425	7068	*	*	3938	*	6178	751	*	3100	4920	*	*	*	*	*	7471	2974	*	6224	16
+       0	*	*	*	*	*	0	8326	0	1041	
+
+G 17   1598	*	4134	4428	*	1241	*	*	7199	6131	*	7339	6800	5130	7074	4540	5164	*	*	*	17
+       696	1413	7147	430	1957	*	0	8326	4115	1041	
+
+K 18   3752	*	4374	3744	5193	5999	4349	4605	3022	3292	*	3926	2914	5556	3817	5300	4337	4602	*	4723	18
+       10	7191	*	2000	415	*	0	8259	1000	1197	
+
+D 19   3603	5784	2129	3945	*	2922	5405	7638	4159	5395	6420	2452	4118	5796	5756	4116	6193	*	*	7411	19
+       20	7052	7389	0	*	*	0	8259	1000	1197	
+
+G 20   5959	*	3691	4923	*	1150	4511	7018	6431	6819	6904	2463	5297	5828	5614	3975	6408	6757	*	6241	20
+       127	4590	4542	1616	569	2259	338	8256	1320	1257	
+
+N 21   4802	*	2671	4080	*	2441	6982	*	3249	6543	6833	4542	*	3952	3746	2728	3558	7101	7369	*	21
+       133	4018	5249	2465	288	2043	401	8270	1561	1576	
+
+L 22   4615	*	*	5323	4027	4669	*	2643	6638	1546	2998	5578	4995	7379	*	6206	4483	3912	*	6284	22
+       28	5707	*	2985	195	123	3611	8255	1086	1651	
+
+P 23   4358	*	2401	5247	6667	5327	7262	5744	5542	3852	6518	*	1237	5418	5516	3633	5989	6936	*	*	23
+       101	4662	5162	1764	503	0	*	8359	1348	1000	
+
+W 24   5517	*	*	*	3585	*	6995	*	6036	5606	6090	*	*	4932	6411	7171	7186	5474	491	4505	24
+       167	3396	6143	987	1013	*	0	8288	1874	1205	
+
+P 25   4445	7379	6297	4832	4146	4714	2802	4295	4434	2652	4861	5122	4089	4835	4112	3917	4633	4391	*	4755	25
+       1865	4965	528	459	1876	1945	434	8245	1260	1516	
+
+P 26   5574	5295	5606	4224	*	3307	4417	*	3899	*	3998	4698	3466	4457	2496	3044	3202	*	5625	*	26
+       316	2505	5606	1083	921	26	5808	6917	1481	6303	
+
+L 27   5943	4857	5177	4351	3038	4993	6291	2958	5830	2359	7050	4359	7053	5878	5467	4409	4416	3465	6197	3968	27
+       30	6087	7438	2322	322	1660	549	8352	1156	1137	
+
+R 28   5695	*	3226	5062	*	3528	*	5140	3024	5126	*	5176	1694	5016	4996	3559	3828	5936	*	7234	28
+       156	3516	6020	2086	388	1685	537	8351	1805	1135	
+
+N 29   3077	7206	3088	1917	7503	3956	4558	*	4202	7390	6871	4377	4985	3705	6604	4179	5013	4909	*	5327	29
+       330	2366	6608	1537	609	1785	495	8309	2683	1250	
+
+E 30   4418	*	996	2316	6094	4328	5809	7216	5652	5291	*	6238	5705	5161	*	5536	5205	7029	*	*	30
+       80	4834	5718	3029	189	1192	830	8312	1256	1333	
+
+Y 31   3860	7205	4402	4880	4407	5321	5353	5989	5309	1736	2890	6373	7317	4869	4109	6377	5712	3785	6495	4467	31
+       0	*	*	*	*	*	0	8249	0	1341	
+
+K 32   2864	5968	2941	3849	6580	4431	4422	6308	2705	4531	4814	5541	5783	3875	3314	4130	5437	*	*	6609	32
+       278	2510	*	1244	791	*	0	8249	2590	1341	
+
+Y 33   4772	*	3796	5887	2459	3559	2636	6931	6493	5075	5277	4763	*	6498	3823	5017	5398	4250	4535	3275	33
+       10	7208	*	3089	180	511	1746	8249	1063	1395	
+
+F 34   4757	*	*	7232	935	6364	6349	4287	*	3227	5042	6245	7343	7342	*	5959	4439	5719	7073	3234	34
+       36	5340	*	0	*	*	0	8358	1178	1067	
+
+Q 35   3347	*	4697	3862	5575	6461	5016	6935	2250	4261	5939	4434	5983	3766	2967	3968	3885	4611	6910	*	35
+       20	6218	*	1839	473	1365	709	8358	1084	1067	
+
+R 36   3029	*	3106	2580	7318	5969	5752	*	3088	5630	7493	4084	6323	3398	3325	4056	4498	6591	*	5105	36
+       0	*	*	*	*	*	0	8357	0	1012	
+
+M 37   3970	*	7318	4592	3292	7041	5214	3555	4316	2294	3764	5221	6423	3878	4687	4839	4404	3922	7224	4686	37
+       48	4946	*	0	*	*	0	8357	1251	1012	
+
+T 38   4447	7638	6709	5241	4614	5194	6375	4561	6927	3035	3374	*	7351	6925	4859	6696	1298	4581	5835	4659	38
+       0	*	*	*	*	*	0	8357	0	1012	
+
+S 39   2587	6615	4110	3515	*	5390	6664	5651	3664	3530	4752	5128	*	4233	3571	4088	2849	4422	*	6432	39
+       21	7218	6975	0	*	*	0	8357	1000	1012	
+
+T 40   4955	*	3875	4042	*	2249	4619	*	3987	4201	*	2901	7315	4215	3805	3559	3605	*	6223	5355	40
+       346	6922	2286	3807	107	*	0	8349	1013	1102	
+
+S 41   3231	4881	*	*	4503	5526	4485	2617	3978	4759	5412	5042	4690	6104	7104	3223	3695	2482	*	6973	41
+       2533	4629	346	2095	385	*	0	7982	1301	3299	
+
+H 42   *	*	4581	4319	*	*	4460	4430	2584	*	*	*	1449	*	3753	4503	2598	*	*	*	42
+       595	4319	1798	4954	47	5633	29	5042	1051	6822	
+
+V 43   2829	*	3110	2940	*	*	*	*	*	2791	4150	2269	*	*	4281	*	3331	4208	*	*	43
+       72	4355	*	5248	38	*	0	4834	1014	6916	
+
+E 44   4301	*	3178	2038	*	*	*	*	4196	*	*	*	1667	3619	2791	*	*	*	*	*	44
+       0	*	*	*	*	6740	14	4834	0	6916	
+
+G 45   2436	*	4553	*	*	2225	*	4248	2857	*	*	3337	3558	4151	*	3731	4250	*	*	*	45
+       0	*	*	*	*	*	0	4973	0	6885	
+
+K 46   *	4248	*	2236	*	4171	*	3539	1942	2709	*	*	*	4389	3558	*	4393	*	*	*	46
+       95	*	3967	*	*	6844	13	4973	0	6885	
+
+Q 47   3596	*	*	4283	*	*	3592	4166	*	*	4141	2309	4401	1824	3467	*	4362	*	*	*	47
+       201	2940	*	2289	330	294	2440	4841	1123	6887	
+
+N 48   6048	7251	1740	5115	5995	2313	5049	*	4057	*	*	2526	*	4216	5699	4088	5041	*	*	7169	48
+       8	7468	*	2153	367	501	1768	8255	1061	2548	
+
+A 49   1642	4368	5576	*	*	5014	7470	3810	5056	4440	*	4661	4347	*	7412	5791	2867	2647	6601	7253	49
+       0	*	*	*	*	265	2575	8328	0	1434	
+
+V 50   5777	6130	*	7223	5477	7274	5311	2046	*	2549	3738	7282	*	*	*	7066	4300	1549	*	6351	50
+       0	*	*	*	*	*	0	8320	0	1012	
+
+I 51   7075	*	*	*	5829	*	*	1561	*	1723	6175	*	*	*	6674	*	*	1693	*	*	51
+       0	*	*	*	*	*	0	8321	0	1012	
+
+M 52   4505	*	*	5639	3829	*	7211	3818	*	3044	1026	*	*	7701	*	5977	6288	3277	5865	5515	52
+       0	*	*	4322	74	0	*	8321	1012	1012	
+
+G 53   *	*	6607	*	*	42	*	*	*	*	*	*	*	*	*	5762	*	*	*	*	53
+       0	*	*	*	*	*	*	8333	0	0	
+
+K 54   3562	6675	*	7499	*	4831	4543	*	4118	6222	*	6549	5332	*	632	6984	6502	6142	7124	5069	54
+       0	*	*	*	*	*	*	8333	0	0	
+
+K 55   5580	6912	7365	4430	*	3826	4360	7199	1525	6572	*	3352	6607	5640	2889	4855	3780	3973	*	*	55
+       37	6011	6675	3322	152	*	*	8333	1091	0	
+
+T 56   6364	7354	5998	*	*	5699	6448	6808	7176	5154	5515	7772	*	*	*	3473	408	5536	*	*	56
+       0	*	*	*	*	*	0	8304	0	1027	
+
+W 57   5461	*	6126	*	2016	*	6385	6565	*	4422	5830	*	*	5998	*	6956	*	5166	2718	1233	57
+       26	6299	7598	0	*	0	*	8304	1067	1027	
+
+F 58   4553	*	2393	1240	6576	5921	7496	7212	4035	4833	7375	6079	7122	3873	3847	6306	5949	6192	*	*	58
+       55	5721	5738	1590	582	0	*	8334	1190	1000	
+
+S 59   2718	6567	4279	5884	*	4215	6234	4524	7051	4168	4036	6211	7217	4634	5977	1858	3417	4385	5540	5705	59
+       64	5053	6272	1218	810	0	*	8333	1286	1153	
+
+I 60   5072	*	4049	5687	3589	6292	5658	2540	7270	2111	2586	*	6572	6230	*	5464	5696	3803	5060	5011	60
+       185	3893	4234	606	1543	876	1135	8326	1728	1065	
+
+P 61   3281	*	4589	4868	5564	2887	5617	5760	4575	4558	6668	5066	1822	4698	4039	3759	5389	6412	*	6591	61
+       349	5008	2445	1569	593	2480	285	8312	1261	1652	
+
+E 62   3094	5567	3801	3401	*	3306	6041	5965	3305	4916	7061	4319	3692	4184	4387	3175	4342	6470	7015	6398	62
+       1752	1476	1541	1536	610	2848	216	8097	3565	3310	
+
+K 63   4021	*	4619	5188	*	2482	4770	*	2374	*	6437	3123	4118	6271	3042	3575	4388	*	6414	*	63
+       448	2191	4379	951	1050	1309	745	7644	2176	5005	
+
+N 64   4323	*	4214	4421	2808	2921	4844	6916	5125	3469	6266	4157	4744	5623	6102	4159	5839	4418	5482	2958	64
+       200	3041	6985	1292	757	574	1608	7839	1856	3919	
+
+R 65   5156	*	5235	4940	6093	4788	5896	*	3109	4298	7376	5697	5260	5018	2486	4493	4382	*	1676	6335	65
+       100	4549	5364	2439	294	1068	935	8167	1467	2163	
+
+P 66   3787	*	4783	6026	7540	4410	6958	4505	5446	3923	6431	7652	1008	4981	7271	4392	6362	4489	*	5259	66
+       235	2804	7131	3759	111	709	1365	8186	2360	1871	
+
+L 67   5961	*	5790	6206	3280	5197	*	4388	5352	1344	4460	7569	4855	*	5704	6329	6136	6210	4524	2575	67
+       87	4476	6201	2543	272	504	1763	8325	1462	1378	
+
+K 68   3155	6413	4302	4085	*	4238	5401	*	2620	7365	6128	4044	1844	5871	4799	4806	4550	5851	7386	6288	68
+       44	5447	7197	2349	315	377	2120	8367	1150	1196	
+
+D 69   3811	*	2815	3804	7301	2167	5672	*	3935	7876	*	2228	5007	4660	5420	4319	5995	6720	*	6152	69
+       18	6323	*	985	1015	0	*	8328	1043	1068	
+
+R 70   3910	7432	5740	5936	5489	5179	6254	4484	3256	4112	4482	6746	4591	5866	1234	5627	5202	4745	*	*	70
+       93	4006	*	2062	395	*	*	8337	1596	0	
+
+I 71   4006	*	4684	3409	7505	7544	4216	3097	3795	3423	6019	5376	2608	4697	3716	5386	3751	5581	*	5596	71
+       8	7430	*	0	*	*	*	8337	1000	0	
+
+N 72   5169	4928	*	7281	4546	*	5380	3754	2666	5762	7563	1887	5867	5224	3566	4548	4221	3174	*	7726	72
+       48	4948	*	2000	415	*	*	8344	1251	0	
+
+I 73   5067	*	*	*	3374	*	5160	1893	*	3535	6722	*	*	*	7578	6008	7441	1860	5763	2641	73
+       8	7441	*	2322	322	*	*	8390	1000	0	
+
+V 74   7068	*	*	6818	6058	*	*	2529	*	6831	5303	*	*	*	*	*	6604	413	*	*	74
+       27	*	5737	*	*	*	*	8390	0	0	
+
+L 75   3763	6988	7091	*	3275	6702	*	2907	*	1717	5539	*	*	6890	*	*	5988	1700	*	7113	75
+       8	*	7511	0	*	1651	553	8379	1001	1163	
+
+S 76   5914	7389	5503	6701	*	5694	*	*	6883	*	*	*	5990	*	6807	819	1647	7154	*	*	76
+       35	6396	6365	3225	163	1487	636	8383	1081	1155	
+
+R 77   4539	5435	4578	7308	*	6104	2768	*	4060	5844	*	4151	*	5522	1658	2637	3455	*	*	*	77
+       60	5105	6438	1441	663	894	1114	8383	1268	1200	
+
+E 78   5826	6117	3461	5256	*	4983	4156	6168	3999	7578	*	3746	*	3695	3795	2448	1935	7346	*	7196	78
+       75	7437	4473	0	*	993	1007	8384	1000	1227	
+
+L 79   4682	5179	4914	4122	5938	4366	6101	6021	3592	1978	4423	5551	3029	5461	4250	4353	5045	4322	*	5934	79
+       173	3794	4605	1276	768	1995	417	8379	1697	1595	
+
+K 80   3464	6921	3259	3511	4909	5208	5669	4846	3219	4489	*	4005	3726	4987	3610	3626	3858	5470	*	5761	80
+       260	2876	5117	1284	763	2186	358	8322	2496	1880	
+
+E 81   4177	6535	3344	3341	4204	3856	5427	5183	5385	4319	6596	5004	3059	4640	4959	3095	4367	5352	7300	4092	81
+       290	2685	5232	3151	172	839	1181	8336	2553	1944	
+
+A 82   3265	7264	3037	3338	5460	5199	4872	4145	4317	3468	*	4711	3658	6057	6626	3557	3695	3593	*	*	82
+       459	2125	4535	1670	544	1350	719	8293	3152	1703	
+
+P 83   3521	*	4389	3629	7414	3827	4978	5723	3628	4874	6599	4060	2041	4856	4722	4183	4558	4408	7418	7323	83
+       541	1714	6955	1721	521	796	1238	8160	3592	1907	
+
+K 84   4160	*	2776	2553	*	4064	7425	6016	4559	6371	*	3937	2314	4299	6263	3754	4655	6401	5681	5891	84
+       129	3929	5635	681	1411	1305	748	8352	1573	1594	
+
+G 85   5118	*	2543	4669	7451	2080	4972	6075	4041	4892	*	2488	4939	5509	4952	4511	4492	7361	6638	7086	85
+       153	3502	6306	1731	517	630	1498	8347	1789	1657	
+
+A 86   2906	4576	5239	4757	4655	6419	5413	3323	7332	4310	5732	7320	6274	7200	5181	3466	3482	2105	6040	5071	86
+       682	4704	1563	2865	213	2201	354	8344	1345	1349	
+
+H 87   *	5481	6883	3700	4679	*	3332	3144	5516	3893	*	*	6753	3760	3752	5887	2093	3766	6287	4142	87
+       146	3844	5234	1674	543	111	3759	7936	1407	4648	
+
+Y 88   5752	6277	5423	5778	2590	5317	5403	3359	4573	2513	6408	5555	7034	6862	5825	6495	3125	2852	5947	4318	88
+       42	5850	6452	0	*	2150	368	8330	1087	1476	
+
+L 89   4849	6650	*	7122	3739	5626	7180	3032	5501	2948	5811	5951	*	4518	5833	6487	3776	1607	5310	4662	89
+       30	5585	*	899	1108	1375	702	8310	1127	1581	
+
+S 90   3741	5015	4505	5419	4765	5106	5035	4683	4113	4992	*	4402	5743	5282	3733	2682	3233	2936	*	4547	90
+       94	4552	5633	377	2120	730	1332	8342	1385	1333	
+
+K 91   3557	7536	3159	3778	7680	2513	4385	5308	3795	6092	6623	3873	4637	6631	3570	3282	4702	5720	*	6401	91
+       11	7022	*	0	*	707	1368	8364	1003	1294	
+
+S 92   5517	*	2087	4547	7116	3710	5552	*	4565	5147	7186	3610	4941	7300	5403	1772	4552	5289	7241	7448	92
+       71	5186	5611	3775	109	1116	893	8385	1191	1069	
+
+L 93   5334	7089	5764	6333	4489	6228	*	2671	7301	1714	5638	7096	2805	*	6359	5999	5398	2840	5607	5117	93
+       7	7753	*	1000	1000	286	2476	8378	1000	1352	
+
+D 94   3249	7842	2853	2135	6934	4198	6714	4648	4849	5397	*	5333	4804	4146	4217	4156	4416	3644	*	*	94
+       0	*	*	*	*	*	0	8390	0	1002	
+
+D 95   3300	6596	2579	1892	7479	5218	5321	7743	3934	5707	*	5529	7429	4624	6478	3081	4105	4509	7575	*	95
+       72	4538	7510	2961	198	*	0	8390	1353	1002	
+
+A 96   1607	6798	7359	4589	3776	6178	*	4030	6385	2422	7235	7350	6007	5673	5786	5761	4375	3229	6320	5913	96
+       22	*	6060	*	*	1259	781	8431	0	1058	
+
+L 97   4339	6362	6707	7532	5273	*	7429	2210	7243	1343	4422	*	7263	7477	7378	7468	*	2290	*	*	97
+       16	*	6520	*	*	506	1756	8370	0	1187	
+
+A 98   2606	*	4231	3100	*	6487	5269	6429	3315	4498	6694	3679	5998	3678	2702	3710	5040	5031	*	*	98
+       14	6704	*	0	*	*	0	8399	1019	1104	
+
+L 99   3159	7616	3323	3141	4922	4982	5905	4554	3537	3279	6239	5309	*	3879	3446	4294	5648	5872	5654	4307	99
+       50	7506	5142	0	*	1210	817	8399	1000	1104	
+
+L 100  2821	5440	*	5239	3787	*	7686	4016	5799	942	7204	*	*	7485	5578	6392	7658	4766	*	4493	100
+       103	5305	4523	503	1763	1042	960	8315	1265	1326	
+
+D 101  3877	*	4954	3489	*	4192	5869	6381	1656	5261	*	4420	*	3563	3100	3951	5514	6382	7535	4992	101
+       132	*	3514	*	*	*	0	8325	0	1679	
+
+S 102  2667	6757	2869	3021	*	5379	5704	*	2858	6029	*	3699	6102	3169	4241	3775	5105	5715	*	*	102
+       463	*	1865	1000	1000	2409	301	8216	1001	2553	
+
+P 103  3238	*	4439	2772	5525	4749	*	6589	4319	3522	6802	3613	4144	3412	3796	4106	4193	5277	5683	5391	103
+       2427	4064	407	2976	196	3230	163	7706	1406	4534	
+
+E 104  1791	*	4870	3952	5122	3131	*	4156	*	3639	4739	2926	3360	*	*	*	*	3908	*	*	104
+       372	*	2137	*	*	*	0	5873	0	6868	
+
+L 105  1686	*	4002	*	5247	4416	3679	3084	4507	4377	3737	*	*	3974	4793	*	4289	*	*	4653	105
+       218	2835	*	2008	412	3498	134	5153	1207	6999	
+
+K 106  *	4144	*	3320	*	*	*	*	3511	4950	*	3392	4214	4960	2258	2353	5696	3473	5169	*	106
+       139	3444	*	1822	479	2807	222	5694	1189	6690	
+
+S 107  2215	*	3507	4726	*	5703	5331	*	4404	*	*	3357	3618	4208	3440	3121	4173	5766	*	4221	107
+       40	5198	*	0	*	353	2205	6679	1016	6177	
+
+K 108  3479	*	4112	3861	7408	2029	5727	4864	3983	5971	*	5011	3553	4534	5738	2958	3635	7210	*	7310	108
+       34	*	5424	*	*	292	2448	8182	0	2476	
+
+V 109  4157	*	3084	4045	4483	2219	4962	3322	5979	4466	7207	5641	5352	6903	5510	4086	4550	3859	*	4044	109
+       74	5019	5683	980	1020	0	*	8370	1427	1468	
+
+D 110  5332	*	3638	3417	*	2573	5938	*	2668	*	*	3771	4862	2886	3173	4468	4627	6446	*	6849	110
+       38	5256	*	375	2127	0	*	8385	1303	1185	
+
+M 111  6430	*	2086	3315	7507	4222	4432	5412	3788	5898	6679	3083	3968	4560	3628	4466	4068	6821	*	7435	111
+       30	7190	6217	3000	193	*	*	8437	1000	0	
+
+V 112  4307	5976	6911	*	6201	*	*	1289	*	2680	5999	*	7257	7182	*	6005	6033	1803	*	*	112
+       0	*	*	*	*	0	*	8417	0	1062	
+
+W 113  3450	6466	*	7446	2480	*	6356	3212	*	3196	5503	7461	*	7264	7237	5615	5365	3705	2446	2865	113
+       52	7414	5089	3907	100	*	*	8437	1000	0	
+
+I 114  5142	4887	6809	7290	6384	6793	*	1741	*	2669	6374	*	*	*	*	7062	7115	1257	*	*	114
+       101	5979	4275	2304	327	0	*	8376	1177	1271	
+
+V 115  3525	4736	5951	4065	3939	4791	5935	1599	*	3035	4544	*	*	*	*	5151	5997	3294	6062	5239	115
+       20	*	6213	*	*	0	*	8412	0	1429	
+
+G 116  4850	*	5038	*	*	176	*	*	5999	6509	6893	*	*	*	*	6099	*	*	*	*	116
+       10	*	7191	*	*	0	*	8390	0	1054	
+
+G 117  6441	*	6519	*	7213	274	*	*	*	*	*	7066	*	*	*	3157	5379	*	*	*	117
+       18	*	6306	*	*	0	*	8387	0	1001	
+
+T 118  1742	*	7578	4457	7581	1931	6511	6357	5762	6366	7520	7569	3473	6550	5570	3235	4405	4734	*	7500	118
+       0	*	*	*	*	0	*	8383	0	1048	
+
+A 119  3514	*	4470	2746	7227	4306	6567	5272	3469	5889	7494	4600	6170	3280	3728	3049	3239	5053	*	5527	119
+       9	*	7316	*	*	*	*	8437	0	0	
+
+V 120  5888	*	*	*	5295	6007	*	1937	*	1507	5348	7645	6843	*	*	*	3425	2410	6720	*	120
+       15	*	6561	0	*	0	*	8427	1000	1000	
+
+Y 121  2616	6102	*	*	4224	4459	6022	3377	*	3253	*	5399	*	7002	*	7481	5019	3717	5993	1526	121
+       7	7639	*	0	*	0	*	8356	1000	1038	
+
+K 122  2884	*	3827	3715	*	4270	5294	7704	2887	*	*	4172	5480	3265	2915	3744	3542	6596	*	6020	122
+       0	*	*	*	*	*	*	8437	0	0	
+
+A 123  2572	*	4101	2945	*	5163	*	*	6827	3319	5918	5497	5599	2247	5619	2927	4743	5545	7262	5667	123
+       0	*	*	*	*	*	*	8437	0	0	
+
+A 124  2498	4980	7300	*	1890	5907	7839	7713	*	1684	4785	*	*	*	*	4653	5372	4287	*	5217	124
+       0	*	*	*	*	*	*	8437	0	0	
+
+M 125  4105	6015	5965	7558	4936	*	*	2654	7839	929	3897	*	*	*	7672	5615	5552	4936	5450	6098	125
+       456	*	1883	*	*	*	*	8437	0	0	
+
+E 126  3114	7480	2914	2348	6034	6918	*	6249	3520	5752	*	4481	4433	4175	2956	3324	4953	*	*	*	126
+       134	5356	3958	2127	375	*	0	8013	1157	3909	
+
+K 127  1626	6217	4453	3118	6975	5079	3232	*	4946	3109	*	4426	*	4331	4207	4702	6458	*	*	6772	127
+       71	*	4388	*	*	194	2991	7917	0	4296	
+
+P 128  5848	*	2634	4492	*	1644	7765	*	4591	*	*	3383	2438	5537	4468	4778	7436	*	*	5516	128
+       14	*	6654	*	*	801	1231	8368	0	1803	
+
+I 129  4601	5452	7372	4800	4203	*	4597	4028	5063	1042	7527	*	*	5572	4666	5293	7444	5639	6204	3461	129
+       10	7213	*	1000	1000	726	1338	8357	1009	1416	
+
+N 130  2733	4428	*	*	6582	6004	*	1976	*	3243	7293	6641	7782	6947	*	7567	5111	1706	5215	5601	130
+       21	6098	*	1585	585	839	1182	8372	1106	1122	
+
+H 131  5844	6966	592	4887	*	7437	4804	*	5225	*	6735	5302	*	5987	5277	5057	3408	6895	*	*	131
+       0	*	*	*	*	*	0	8382	0	1012	
+
+R 132  7106	7233	4433	1046	7230	6309	5114	5124	3899	*	*	*	*	3764	2983	4678	5100	4522	*	*	132
+       0	*	*	*	*	*	0	8382	0	1012	
+
+L 133  4870	5713	*	*	3409	*	*	2057	*	1658	4613	*	*	*	*	*	*	2618	6203	3679	133
+       0	*	*	*	*	*	0	8380	0	1012	
+
+F 134  6444	6349	6076	5141	3635	5515	2777	3129	6284	4524	7286	7252	*	4217	3357	5952	4255	3399	4595	2785	134
+       0	*	*	*	*	*	0	8380	0	1012	
+
+V 135  5465	5596	*	6363	4667	*	7458	2175	7396	1258	3682	*	*	*	7757	*	*	2631	*	6641	135
+       15	6607	*	2807	222	*	0	8380	1041	1012	
+
+T 136  5499	*	5304	5204	4098	5780	5182	5296	5214	5256	4756	4910	*	6584	6127	3134	1114	5341	6100	4934	136
+       0	*	*	3170	170	1226	804	8326	1012	1128	
+
+R 137  *	*	6037	5352	4579	*	4521	2376	4293	3424	6076	5720	*	5592	2911	5856	3184	2450	7414	4859	137
+       14	6700	*	2322	322	*	0	8376	1020	1041	
+
+I 138  3109	5944	7191	7421	5715	6270	4184	1902	*	3690	4596	4803	*	7683	*	4592	6146	1945	*	5278	138
+       0	*	*	*	*	*	0	8227	0	1041	
+
+L 139  4916	*	3693	3877	6708	6379	4587	6495	4423	5017	*	3962	899	6288	6724	5627	*	7128	*	5677	139
+       33	5458	*	1415	678	*	0	8258	1202	1041	
+
+H 140  4747	7091	4583	5028	*	3720	4086	3887	4447	4095	7729	5916	6340	7090	3959	5053	4184	1566	6447	4763	140
+       8	7469	*	1821	480	0	*	8228	1162	1041	
+
+E 141  3517	5111	3631	3676	5781	*	5066	3148	5685	2735	5471	5443	5574	5573	5492	4435	3265	2897	*	*	141
+       113	3936	6647	2232	345	*	*	8262	1621	0	
+
+F 142  4175	*	*	5327	2442	5336	6268	4122	6847	1717	7429	7244	4578	*	*	7262	4891	3051	*	3153	142
+       889	1159	6344	411	2011	0	*	8233	4395	1013	
+
+E 143  3270	*	3185	2395	*	3361	5559	6501	4325	5869	*	4157	4044	3858	3925	3649	4389	5597	*	*	143
+       40	5194	*	0	*	0	*	8185	1247	1032	
+
+S 144  2912	3278	6983	6444	*	673	6631	*	7097	*	7468	7259	*	5983	6027	5548	6102	5600	*	*	144
+       13	6761	*	0	*	*	*	8225	1015	0	
+
+D 145  5186	*	1405	5584	*	4047	5729	3909	4036	4745	*	4823	4766	5880	3626	5664	3734	3946	*	*	145
+       102	4100	6614	1564	596	*	*	8225	1500	0	
+
+T 146  3898	6029	7253	7107	*	6289	6829	5975	5169	4546	*	7202	2959	*	2251	3672	2124	2812	*	*	146
+       73	4768	6281	1614	571	*	0	8191	1328	1041	
+
+F 147  5850	6944	6429	7127	1827	5847	5057	7229	4727	2024	4604	7445	5158	7438	5392	*	6216	4931	4077	2986	147
+       23	*	6011	*	*	1064	939	8151	0	1148	
+
+F 148  3971	*	6630	*	767	*	*	3827	*	2550	5389	*	*	*	*	*	6943	5521	6256	5047	148
+       100	4817	5004	1217	812	694	1388	8176	1356	1228	
+
+P 149  4227	*	3146	4155	*	3433	*	*	4942	*	*	5408	1095	5842	4470	4287	5101	5822	*	*	149
+       246	3346	4092	578	1599	427	1963	8113	1883	1373	
+
+E 150  4406	*	2303	3052	5702	3489	5004	6169	3711	4426	6315	3757	3692	6333	4427	3416	6179	5914	*	7243	150
+       134	3994	5281	1950	432	249	2659	8137	1426	1640	
+
+I 151  5281	*	4745	5300	3013	3797	6589	2473	4994	2138	4786	6326	5383	6021	*	6892	4429	3252	7292	6329	151
+       88	5471	4775	0	*	2235	344	8120	1105	1254	
+
+D 152  4137	*	2180	3189	6834	4170	5323	3947	4841	4965	*	3902	3072	4766	5483	3842	4688	5161	*	6578	152
+       485	2808	2806	589	1577	767	1278	8115	2001	1570	
+
+Y 153  4523	*	3922	3605	4124	4161	6818	6267	3526	3284	4948	4624	2801	6876	3834	3711	4160	5658	6890	5149	153
+       329	2294	*	857	1158	237	2724	7757	2532	2400	
+
+K 154  4177	*	3089	4078	7018	4850	4392	4925	3673	3915	*	3432	4781	4613	3767	3027	3573	4567	*	6945	154
+       185	3304	5714	0	*	0	*	7999	1688	1164	
+
+D 155  3456	*	3296	3136	5607	3942	6993	7333	3721	4753	*	3342	4099	3677	2998	4535	4816	5556	*	5605	155
+       32	6110	7039	0	*	0	*	8032	1058	1102	
+
+F 156  6730	*	7092	5868	2226	*	*	6516	*	1785	7191	*	*	*	6718	*	*	3975	1782	3638	156
+       67	5158	5829	3184	168	*	0	8074	1208	1006	
+
+K 157  4850	*	4080	2236	6751	6566	4256	4683	2771	6910	5973	5111	*	4947	2374	4363	3627	5721	6720	*	157
+       25	*	5867	*	*	1745	511	8041	0	1169	
+
+L 158  *	6845	*	4093	5072	7533	5902	4112	4547	993	5172	5615	5969	5426	4934	4980	5086	3369	*	*	158
+       42	*	5108	*	*	1037	964	8046	0	1257	
+
+L 159  4540	*	4875	3860	*	*	6955	3120	3736	2946	5183	6271	*	4083	*	3931	3170	2000	*	*	159
+       10	7214	*	985	1015	1254	784	8000	1068	1370	
+
+T 160  3754	6281	3086	2335	6116	3411	5860	6116	4569	6960	*	5099	6263	4512	5946	2186	4478	7310	*	4897	160
+       127	5604	3979	2718	238	*	0	8013	1155	1186	
+
+E 161  3488	4736	4604	3141	5909	*	4798	4370	4273	5889	*	5348	6894	3401	3990	2618	3172	3559	*	*	161
+       2431	2893	557	2753	232	*	0	7788	1587	1722	
+
+Y 162  4115	*	3986	*	3926	2020	3913	*	*	3054	*	*	*	*	*	3920	2940	3033	*	4025	162
+       290	2457	*	0	*	990	1010	4726	1149	4013	
+
+P 163  4443	*	4457	1805	*	5060	*	5542	4156	3813	*	*	3808	4307	2835	4659	3546	4151	*	*	163
+       57	*	4686	*	*	2389	306	6187	0	2618	
+
+G 164  5149	*	3197	2732	4682	3322	4602	5005	4548	5595	*	5625	5485	5438	4658	2350	3687	4610	5830	*	164
+       395	5830	2173	0	*	4583	61	6284	1000	2435	
+
+V 165  *	*	5185	5393	5236	4317	2749	2853	4117	3527	4345	*	*	5811	*	*	5542	1506	*	*	165
+       223	*	2802	*	*	2870	212	5704	0	2869	
+
+P 166  4036	*	4184	3264	5298	4232	*	4817	5349	5409	*	5064	2022	4064	3982	4071	3301	4117	*	*	166
+       295	5458	2626	1585	585	2286	331	5510	1046	2893	
+
+A 167  2322	4898	*	3988	5073	*	*	5050	3036	*	*	4100	5396	4179	5497	2408	4020	3154	*	*	167
+       131	*	3525	*	*	3264	159	5464	0	2916	
+
+D 168  4255	*	1762	2626	5111	4980	*	*	*	*	*	4758	5122	*	3505	4170	4267	4068	4154	4231	168
+       684	4943	1534	1000	1000	4635	59	5499	1034	2938	
+
+I 169  *	*	*	3450	*	*	*	2491	*	*	*	*	*	*	3526	2224	3562	1961	3501	*	169
+       131	*	3526	*	*	4195	81	5012	0	3563	
+
+Q 170  *	*	2851	2984	4865	4459	4390	4460	2887	4555	*	*	*	3459	3487	4359	4736	4559	*	3726	170
+       0	*	*	*	*	507	1754	5138	0	3545	
+
+E 171  3845	*	2837	2414	5815	6029	3999	*	4700	5060	*	4062	5937	4477	5391	3918	3381	4370	5405	4063	171
+       25	5841	*	3459	138	324	2313	6389	1006	1796	
+
+E 172  4501	*	2441	1701	*	3993	5916	*	3565	6020	*	5125	6000	6116	4327	4120	4461	5407	*	4326	172
+       43	6077	6096	1585	585	*	0	6594	1035	1107	
+
+D 173  4708	*	3133	2869	6124	3553	3761	4895	3993	*	*	2040	*	5580	4864	4351	4013	6136	*	5838	173
+       25	*	5836	*	*	676	1419	6576	0	1167	
+
+G 174  4570	*	2499	5522	4868	1905	4149	5558	4417	6095	*	3664	4224	4642	*	4422	5171	*	*	3793	174
+       150	*	3340	*	*	1020	980	6700	0	1104	
+
+I 175  4058	5713	4971	6009	3862	5771	4364	2637	5851	3268	*	4906	3862	*	5773	4237	4365	3121	5069	3485	175
+       231	6151	2901	0	*	0	*	6551	1000	1442	
+
+Q 176  3534	4821	3992	3317	*	3382	5475	4229	4877	*	*	3701	3661	4237	3662	3265	3090	*	*	*	176
+       31	*	5537	*	*	2224	347	6465	0	1270	
+
+Y 177  *	5617	4899	*	1961	*	4422	3885	*	3459	*	*	*	*	*	*	4222	3992	5069	1566	177
+       52	5787	5873	2000	415	0	*	6448	1005	1285	
+
+K 178  5237	*	2984	3338	6081	*	4433	3664	2942	*	*	6195	*	3491	3403	3849	3389	3319	*	5973	178
+       0	*	*	*	*	0	*	6787	0	1000	
+
+F 179  *	*	*	*	1014	*	4955	2601	*	3935	5701	*	*	4363	*	*	*	3896	6010	3441	179
+       0	*	*	*	*	*	*	6805	0	0	
+
+E 180  4588	4897	6205	3166	*	*	5723	3572	3846	3280	5867	*	5913	4321	4017	*	2973	2239	6105	5316	180
+       0	*	*	*	*	*	*	6805	0	0	
+
+V 181  *	6425	4054	4441	6101	5640	6607	2933	3377	5181	*	4490	*	6037	5031	5701	1911	2708	5455	5001	181
+       24	5913	*	3700	115	*	*	6805	1028	0	
+
+Y 182  *	*	*	*	3604	6101	*	*	*	3482	*	*	*	*	*	4539	*	*	2685	701	182
+       0	*	*	*	*	*	*	6805	0	0	
+
+Q 183  4988	6205	5923	2375	5891	*	5870	5362	2906	*	*	4775	*	3293	2813	5106	3451	2856	*	6105	183
+       0	*	*	*	*	*	*	6805	0	0	
+
+K 184  4698	5701	*	*	*	*	*	*	1743	*	*	3292	3964	4474	1359	6118	*	5155	*	*	184
+       0	*	*	*	*	*	*	6805	0	0	
+
+S 185  4277	*	*	5659	*	*	4641	3218	2080	5386	6119	4084	3832	4563	2427	3109	6214	5682	*	*	185
+       289	2460	*	973	1027	*	*	6525	1075	0	
+
+V 186  *	*	*	*	*	*	*	*	3117	2008	*	*	*	*	3130	*	3003	1332	*	*	186
+       0	*	*	*	*	*	*	3508	0	0	
+
+L 187  *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	187
+       0	*	*	*	*	*	*	2074	0	0	
+
+A 188  0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	188
+       0	*	*	*	*	*	*	1000	0	0	
+
+Q 189  *	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	189
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  271643171bfa4abfd3da32e2d13e3392
+FAM   
+FILE  271643171bfa4abfd3da32e2d13e3392
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:29:03 2013
+LENG  186 match states, 186 columns in multiple alignment
+FILT  154 out of 1736 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  11.0
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCEEEEEEECCCCCCHHHHHHHHHCCCCCCCCCCCCCEEEEEEEEECCEEEEEEEEECCCCCHHHHHHHHHHHCCCEEEEEEECCCCCCHHHHHHHHH
+HHHHHHCCCCCEEEEEECCCCCCHHHHHHHHHHHHCCCCCHHHHHHHHHHCCCCEEEEEECCCCCCHHHHHHHHHHHHHCCCCCCC
+>ss_conf PSIPRED confidence values
+9985489999999999999999999658876665884321579999988906999999889961034788887614878999998977301789999999
+99997479996899998834663156788887642022579999999987499759999678886999999999998520322389
+>Consensus
+xxxxxxxixvxGxxxxGKstlixxlxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxixDxxGxxxxxxxxxxxxxxxxxxixvxdxxxxxxxxxxxxxxx
+xxxxxxxxxxxxivvxnKxDxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxSaxxxxgixxxxxxixxxxxxxxxxxk
+>271643171bfa4abfd3da32e2d13e3392
+GSPQAIKCVVVGDGAVGKTCLLISYTTNAFPGEYIPTVFDNYSANVMVDGKPVNLGLWDTAGQEDYDRLRPLSYPQTDVSLICFSLVSPASFENVRAKWY
+PEVRHHCPNTPIILVGTKLDLRDDKDTIEKLKEKKLTPITYPQGLAMAKEIGAVKYLECSALTQRGLKTVFDEAIRAVLCPPPVKK
+>gi|56698355|ref|YP_168728.1| elongation factor G [Ruegeria pomeroyi DSS-3]gi|56680092|gb|AAV96758.1| translation elongation factor G, putative [Ruegeria pomeroyi DSS-3]
+-------FTVLGPSQSGKSTLVEAI--SRLDSRPTTFDLSETVHLHGFSYLEEPWCAIDVDGGSDALAFAGPAMAISDAAVIVVPPDPEAAVLCAPYLRL
+VEEA----RIPAFLFINRMDNPngRIRDIVAALQAycsHHIALRQVPIR------------------------------------------
+>gi|321473698|gb|EFX84665.1| hypothetical protein DAPPUDRAFT_194445 [Daphnia pulex]
+-GSRVLQVAILGIPNAGKSTLVNQLSGWQTcsVSRKVHTTKKMSKTVLIRDETQIV--FLDTPGlvlpaeakqfnlDKSFVIDPEVALSKANLLLVLHDI
+SNKWTRGSLSSKILRLLHLY-PDKESVLVLNKIDLLKEKRLLLDytnkltegivggksiasntdqrkrsmsRQNSDMSTVNESNAElseptnsrsmseke
+vakRIEGKMGwpnFSRVFMISAIDGDGVSDIVEHLYGAAKPGRWM--
+>gi|290974801|ref|XP_002670133.1| predicted protein [Naegleria gruberi]gi|284083688|gb|EFC37389.1| predicted protein [Naegleria gruberi]
+-----VEYLIkytpIGEHSIGKSTFFNHVQFGHYENTsLWKS---EAIkKEFTISNeSSLVQVLFD--LDPRYQtkeTFIRGLIRHNMSFLLSFGINYEC
+TFEKLGDWYHLIKQEKLETMGIMI------------------------------------------------------------------------
+>gi|291530479|emb|CBK96064.1| small GTP-binding protein domain [Eubacterium siraeum 70/3]
+--MPFGAVkGGQSHENNQYWNSCPCRRWKDDLDGEPAICQRshfrtgerrkrdnedghhVFGAAA---WdyhssgshflpgHRCKVNIVDTPGHMDFLAE
+VYRSLAVLDGAILVISAKDGVQAQTRI--LFHALRKM--NIPTVIFINKIDQAgvDLQSVVQSVRDKLSADIIikqtvslspeivleentdieawdavie
+nndellekyiagepisreklAREEQQRVQDASLFPVYHGSAKNGLGIQPLMDAVTGLFQPIGE---
+>gi|320165903|gb|EFW42802.1| conserved hypothetical protein [Capsaspora owczarzaki ATCC 30864]
+---------LLTLPALTELKLeknqITDM--GAQSI-----------AVALRNKKAQLFRLclnWNKIGD----------FGARAIAegVAVSTALASLE
+YCSlAFDLWMNN--NQIGNVGAQAIGSALS------------------------------------------------------------------
+>gi|260810141|ref|XP_002599862.1| hypothetical protein BRAFLDRAFT_127644 [Branchiostoma floridae]gi|229285145|gb|EEN55874.1| hypothetical protein BRAFLDRAFT_127644 [Branchiostoma floridae]
+--KTNISIVVIGHVNSGKSNTTGHLiykcggidkrniekyereaaearfneiQQELSAcIKKVGYDPGT--VAFVPVSAQHGDNMVEPSGNMPWYKGWSi
+ernegngSGTTLlealdsilppqrpTDKPLRLPLAdvynfrpggmgtmpvgrvetgilKPGmevtfapagltaevepvdikhESVPEALPGDTVGInfK-
+-----NADVSVKELwrgcvagdSKNDPPKEAVSFD--------AEELSACIKKVGYdpgtVAFVPVSAQHGDNMVE-----------------
+>gi|148673550|gb|EDL05497.1| Ras-related GTP binding D, isoform CRA_c [Mus musculus]
+------RILLMGLRRSGKSSIQKVVFHKMSPSETLFLESTNRICREDVsNSSFVNFQIWDFPGQIDFFDPTFDYemiFRGTGALIFVIDSQDdyMEALAR
+LH-LTVTRAYKVNTDINFEVFIHKVDGLSDDHKIETQRDIHQR-ANDDLADAGLEKIH--LSFYLTSIYDHSIFEAFSKVVQKLIPQLP---
+>gi|195998195|ref|XP_002108966.1| hypothetical protein TRIADDRAFT_52490 [Trichoplax adhaerens]gi|190589742|gb|EDV29764.1| hypothetical protein TRIADDRAFT_52490 [Trichoplax adhaerens]
+-------VLVVGHDGSGKSTLISRMKNIEEKEKYHCSGLDYRYIDVDDEdsDEIYRFGVWILHGNAEHKSLLKFAINNDNlrdtAVVLVVDLSRPWEVMS
+CLTGWTKVLKEHMQSLNIdknVIEEMKSNIVNQFQGYSEVADDADKSLKEEEKVYLPLGEDGATLAYTTLKEKKNVDILLRYLLHRLY-------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+G 1    *	*	3264	*	*	781	*	*	*	*	1671	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	4652	0	0	
+
+S 2    4316	*	*	4598	3582	*	*	4365	3376	*	*	2250	2906	*	*	2208	3058	*	*	*	2
+       0	*	*	2322	322	*	*	7660	1014	0	
+
+P 3    5986	*	4301	3608	*	5295	5371	*	2425	3798	3182	4473	1984	5882	*	*	3418	5310	*	*	3
+       29	5650	*	1000	1000	*	*	9369	1008	0	
+
+Q 4    *	*	4040	4171	5857	*	4041	4911	2420	6042	*	3052	5217	3507	2930	3514	3879	4998	*	5869	4
+       42	5125	*	1406	684	*	*	10088	1296	0	
+
+A 5    4593	*	4950	3738	*	4670	4117	4514	3399	6535	4872	3445	3041	4104	3729	3229	3579	5477	*	6474	5
+       19	6281	*	0	*	*	*	10470	1000	0	
+
+I 6    5865	6301	6194	*	2968	6907	*	1788	6405	2513	3744	4785	6377	*	5237	5574	6570	3321	*	3994	6
+       23	5972	*	4807	52	*	*	10793	1116	0	
+
+K 7    5626	6913	5320	4933	6891	4668	4755	5095	1910	*	*	2486	*	5033	2391	4467	4282	4748	*	*	7
+       17	*	6454	*	*	*	*	10974	0	0	
+
+C 8    6813	4487	*	*	5573	*	*	1438	*	2538	7234	*	7001	*	*	7098	5452	1648	*	5612	8
+       0	*	*	*	*	*	0	11218	0	1038	
+
+V 9    2803	4334	*	7017	4359	3538	7206	3086	*	2187	3892	*	*	5830	7027	6114	4840	2486	*	*	9
+       0	*	*	*	*	*	0	11182	0	1038	
+
+V 10   6057	5559	*	*	3001	*	*	2325	*	2107	4192	6824	*	*	*	*	5642	1663	*	6990	10
+       0	*	*	*	*	*	0	11235	0	1038	
+
+V 11   3467	4311	7095	6721	3707	5695	*	2310	7509	1979	4175	*	*	7567	6968	5114	5109	2791	7076	7065	11
+       14	6721	*	1000	1000	*	0	11235	1024	1038	
+
+G 12   6054	*	*	7358	*	110	*	*	*	*	*	*	*	7295	6387	5352	6731	*	*	*	12
+       0	*	*	*	*	0	*	11261	0	1038	
+
+D 13   3790	*	2733	4402	4968	6394	4441	6151	4177	3493	5318	4173	2932	4764	4468	3016	5215	6038	*	5461	13
+       22	6059	*	3069	183	*	*	11288	1183	0	
+
+G 14   4381	6699	4584	4201	6184	5062	5126	5275	3512	5479	7039	5567	2370	4563	4737	2677	3503	3448	*	*	14
+       0	*	*	*	*	*	*	11288	0	0	
+
+A 15   4814	6370	3978	4481	6204	1537	6352	*	4110	6132	5505	2302	6862	4547	4999	3608	7320	*	*	7424	15
+       0	*	*	*	*	*	*	11288	0	0	
+
+V 16   2375	3898	7168	7148	6954	7168	5240	5009	*	5073	7360	6173	*	5867	7039	1994	3690	2030	*	7424	16
+       12	*	6905	*	*	*	*	11288	0	0	
+
+G 17   *	*	5883	6189	*	194	7102	*	*	*	*	5635	7077	*	*	4501	6723	7149	*	*	17
+       0	*	*	*	*	0	*	11279	0	1024	
+
+K 18   *	*	6850	6734	*	*	*	6016	297	6973	6752	*	5591	4774	4555	6173	6928	6239	*	*	18
+       22	6752	7360	3170	170	*	*	11288	1024	0	
+
+T 19   5220	*	*	*	6857	6379	7170	7193	4915	5545	*	6339	6022	5049	5356	1237	1432	*	*	7194	19
+       12	6952	*	0	*	*	0	11322	1009	1000	
+
+C 20   3375	4461	5336	6957	*	6952	7127	5513	4712	7636	7252	6515	*	5426	6224	1718	1512	6214	6810	6145	20
+       24	5897	*	2204	353	*	0	11322	1242	1000	
+
+L 21   5598	7252	*	*	2192	*	*	2886	7193	1159	5513	7013	*	*	6971	6948	4032	4469	*	6379	21
+       25	5880	*	1853	468	*	0	11322	1291	1000	
+
+L 22   4663	5116	*	*	4595	6738	7246	1765	*	2246	3880	*	*	6812	6853	6217	4711	2160	6884	*	22
+       109	5094	4532	1284	763	*	0	11281	1482	1000	
+
+I 23   4645	5838	4072	3602	6511	4231	6197	7537	3430	4184	6056	1952	6664	3811	3702	3866	4480	6826	*	5956	23
+       0	*	*	*	*	*	0	11261	0	2114	
+
+S 24   2580	5896	5373	6690	5470	5100	4795	6170	3310	4689	5886	5096	*	4267	2656	3283	3219	3902	*	7121	24
+       14	6664	*	2000	415	*	0	11261	1038	2114	
+
+Y 25   6923	*	*	6694	2725	*	7192	2831	*	1107	5287	*	*	6801	*	*	6008	3877	5312	3719	25
+       293	2661	5286	4203	81	*	0	11265	4034	2114	
+
+T 26   4497	4331	7265	6127	3513	6549	6880	3422	3488	2788	6957	5388	6600	4773	4838	3221	2630	4074	6744	*	26
+       10	7247	*	1585	585	*	0	11244	1000	2652	
+
+T 27   4216	6898	3220	3976	5813	2673	3890	6052	3617	5959	*	3044	5318	3766	4237	4277	4342	6062	*	5405	27
+       94	3987	*	1139	873	443	1919	11244	2300	2652	
+
+N 28   4020	7045	3158	3509	*	2345	5817	6222	3177	5623	*	3095	7084	4297	4180	3649	6301	4825	*	6167	28
+       90	4187	7456	831	1191	1381	699	11278	2099	1342	
+
+A 29   3830	6240	4012	3561	7038	4597	5961	4652	2494	3857	5349	5693	3884	4258	3360	3526	5613	4847	*	6041	29
+       37	6284	6356	521	1722	*	0	11277	1171	1291	
+
+F 30   3605	6189	5754	5391	2798	5546	5776	2824	4940	2986	*	7021	3928	4483	5523	4151	4573	3718	7295	4114	30
+       44	5752	6435	457	1882	1329	733	11253	1256	1587	
+
+P 31   3426	5742	4178	3728	5203	5507	6088	3636	4758	4095	5978	3991	3635	4956	5029	3342	3586	3321	*	6192	31
+       41	5662	6938	0	*	600	1555	11250	1236	1575	
+
+G 32   3947	7272	3283	2870	*	3345	6098	4378	3675	5376	*	4278	3914	4142	7264	2832	4527	4815	7256	5738	32
+       26	*	5827	*	*	0	*	11269	0	1299	
+
+E 33   3892	6041	3863	3031	5695	4312	4468	5069	3606	4467	*	3593	4638	4062	4083	4098	4055	4385	*	4436	33
+       214	3679	4063	3917	99	1324	736	11231	2596	1300	
+
+Y 34   4976	*	4169	4113	6207	5022	4542	4783	3499	4401	6228	4278	3549	4623	4807	4120	3814	4544	5564	2505	34
+       0	*	*	*	*	2257	339	11179	0	2415	
+
+I 35   3796	*	2916	3710	4624	5355	*	3390	4382	3845	5642	5657	4254	4384	4236	3312	3742	4013	*	6561	35
+       24	5907	*	1663	547	630	1498	11193	1220	2103	
+
+P 36   3630	6984	5764	5409	4658	3071	7109	4351	4455	6789	6135	5393	2118	4236	5684	2827	3710	5167	*	6177	36
+       33	5482	*	4472	67	*	0	11221	1339	1297	
+
+T 37   4017	*	4362	5481	4969	4705	4609	4325	5055	3827	6093	4028	4993	6254	7012	3491	1649	4091	*	6512	37
+       8	7549	*	0	*	*	0	11221	1000	1297	
+
+V 38   3950	6013	4440	3667	5112	5046	5348	3342	5699	3659	4359	6256	4128	4952	5007	4037	2565	3294	*	*	38
+       100	4053	7209	1202	823	*	0	11223	2298	1297	
+
+F 39   4800	5013	3620	3318	5019	2675	5505	5179	4746	3881	6418	5695	4233	4783	4544	3665	3489	4053	*	5809	39
+       55	5010	7314	2664	248	*	0	11210	1604	1484	
+
+D 40   5238	*	2807	3223	5163	3838	5166	4536	4557	5339	7272	3829	4604	6983	4535	3490	3503	3500	7256	4430	40
+       76	4279	*	3176	169	*	0	11217	2061	1626	
+
+N 41   4848	5562	3349	3579	4915	6124	5098	4114	4040	4034	5596	3859	4371	4967	4220	3684	3306	4499	7386	4226	41
+       17	*	6444	*	*	*	0	11217	0	1626	
+
+Y 42   4660	7149	4501	4858	3540	5451	5520	2997	4404	4406	6993	4940	5449	4333	4383	3664	3308	3775	7321	3259	42
+       96	4133	7145	1847	470	1647	555	11160	2110	1847	
+
+S 43   6110	7153	4146	3736	5156	5107	7230	4360	3373	5271	7165	4714	5763	3315	3546	3286	3630	2992	7298	4406	43
+       123	4065	5525	459	1877	735	1324	11175	2135	1676	
+
+A 44   4053	5961	6209	4568	4923	4335	4864	3369	3136	5005	7033	4882	5440	4722	3968	3838	3150	3504	7001	3952	44
+       28	7032	6462	2000	415	*	0	11246	1000	1712	
+
+N 45   4265	5347	5265	2986	6351	3964	6253	4029	3171	4371	4830	4234	4891	5756	3466	4036	3882	3577	7798	6257	45
+       43	6052	6098	2566	267	*	0	11244	1162	1962	
+
+V 46   4414	6994	5023	6042	3195	5428	6050	2663	5309	2986	4662	5539	5700	5461	5522	5397	4176	2574	*	3821	46
+       57	4902	7511	1126	885	349	2217	11251	1632	2437	
+
+M 47   4661	7018	4716	3985	5821	4892	5719	4196	3487	4452	4325	4335	4332	4300	4276	3622	3290	3319	5548	4827	47
+       36	6715	6071	1536	610	1869	461	11294	1111	1331	
+
+V 48   5132	5524	4111	4905	3379	6315	5232	2439	5444	3736	4800	4498	4594	5506	4144	4692	3934	3521	*	4337	48
+       91	4236	6977	1534	611	2166	364	11238	2167	1521	
+
+D 49   5194	6878	2477	3417	6283	4335	7006	*	3459	5603	6013	2550	4143	4204	6133	3713	3872	5364	*	5105	49
+       124	3601	*	3130	175	*	0	11236	2776	1524	
+
+G 50   4090	6892	2820	3421	6373	2441	5782	6931	3783	4229	6948	3130	5138	6399	4185	4137	5237	7239	7145	4849	50
+       68	4667	7243	2030	405	1058	944	11236	1772	1524	
+
+K 51   3943	5125	3432	2988	6395	4016	4342	4759	2978	5184	6934	4085	5177	4337	4257	4822	4047	4122	*	5417	51
+       9	*	7395	*	*	1758	506	11248	0	1346	
+
+P 52   5972	*	4570	3487	6931	2824	5455	5366	3944	4023	7025	3353	3930	3399	4351	4353	3283	4982	6798	5468	52
+       48	5662	6302	2585	263	1668	545	11244	1292	1360	
+
+V 53   4814	5831	6778	6050	3868	5493	5746	2838	4422	2767	6112	6322	5429	5268	4557	4623	4541	2843	6009	3025	53
+       43	5436	7253	1194	829	2012	411	11281	1374	1562	
+
+N 54   6214	6166	4182	3715	5550	5741	5339	4313	2736	4771	6402	3876	4965	3579	3441	3920	3214	4352	*	5099	54
+       252	4540	3089	4613	60	*	0	11286	1874	1556	
+
+L 55   5259	4973	5678	*	2541	5951	6560	2763	6813	1937	5395	*	6754	*	*	*	5641	2472	5008	4569	55
+       11	7020	*	1585	585	3324	152	11158	1000	4047	
+
+G 56   7067	4422	5893	3457	4711	5534	4303	3893	3961	4034	7202	3652	*	3396	3719	5119	2896	3712	*	4706	56
+       16	6541	*	4248	78	239	2712	11178	1026	3773	
+
+L 57   5684	7089	6338	5987	2640	6327	*	2044	*	1868	4409	*	*	6091	*	6374	5821	2824	*	5437	57
+       31	6724	6404	1585	585	*	0	11246	1114	1338	
+
+W 58   5277	5706	7210	6531	4520	*	6209	2687	7292	3151	5209	6222	*	*	6130	5721	4000	2897	2147	3185	58
+       8	7583	*	2585	263	*	0	11206	1000	1613	
+
+D 59   6879	7088	712	2714	*	5779	7078	5606	7208	6106	7431	4771	*	*	6464	6095	4171	5058	*	*	59
+       9	7362	*	2807	222	*	0	11206	1000	1613	
+
+T 60   4486	4836	5318	7135	3541	6283	7191	3148	6690	3102	6192	5213	6536	*	5978	3662	1840	3265	*	6165	60
+       9	7325	*	3170	170	*	0	11206	1000	1613	
+
+A 61   3405	*	4282	7068	6029	2957	6960	5453	5594	5442	5865	4530	1591	5597	6024	2970	5728	4233	*	*	61
+       41	6142	6151	1333	730	1478	642	11206	1197	1613	
+
+G 62   5129	*	4767	5540	6249	577	8585	6349	6279	7713	*	4186	4777	*	6104	4801	5126	7317	7126	6243	62
+       531	1840	5140	3595	125	2583	263	11247	6075	1681	
+
+Q 63   4981	5659	3144	4420	5243	4579	3271	3856	4089	4284	6020	5058	7262	2662	4075	3829	6149	4093	6841	5898	63
+       41	7578	5457	1000	1000	3048	186	11304	1000	2147	
+
+E 64   5121	4804	3146	2088	5640	4981	4924	3881	4224	5556	5848	3683	4133	4371	3731	4845	5744	6818	6987	6155	64
+       19	7245	7225	1000	1000	1853	467	11365	1000	2560	
+
+D 65   4690	*	3355	3004	5445	5128	4589	6183	3328	4983	6975	3812	5201	4702	2645	3158	6089	4580	6178	6173	65
+       50	6723	5340	3536	130	2199	354	11304	1560	2258	
+
+Y 66   3840	6314	5150	4376	2472	5165	5144	4751	5706	3089	4886	4419	5179	5296	5628	3794	4689	5155	4632	3351	66
+       21	6110	*	3104	178	2394	305	11293	1171	2520	
+
+D 67   4120	*	3682	3785	5056	6129	4766	4766	4130	3998	6169	3946	4896	4270	2478	3862	5273	5627	5623	3726	67
+       125	3700	7294	1808	485	1405	684	11309	2416	2219	
+
+R 68   3277	6912	4311	3864	5205	4006	5341	5023	4118	5247	7220	3757	4333	4589	4047	2597	3338	5357	*	5652	68
+       34	8178	5656	1462	651	2047	400	11323	1095	1895	
+
+L 69   5102	4865	6995	3741	4396	4945	6782	3416	3623	2423	3971	4602	5922	4707	6409	4926	3588	3770	*	4546	69
+       28	5724	*	2316	323	*	0	11253	1299	2170	
+
+R 70   4271	6006	5000	6296	5019	5510	4616	3843	5170	2759	4899	3850	6390	7465	3501	3282	3853	4414	3302	5578	70
+       0	*	*	*	*	1887	455	11253	0	2170	
+
+P 71   4110	6916	4376	2866	4609	4358	5073	4113	4464	3883	*	4458	3229	3933	3995	3887	4481	4274	*	6178	71
+       72	5623	5129	2238	344	2420	298	11358	1271	1824	
+
+L 72   3817	*	5020	4053	4904	4506	4070	4549	4433	2738	4788	3529	5207	4351	4546	3492	4436	4406	7072	5022	72
+       138	3567	7246	1807	486	1720	522	11306	2716	2452	
+
+S 73   3360	4556	5354	6057	2976	3980	4814	4274	5279	2877	6128	6152	6346	5874	4884	3601	4750	3456	*	3667	73
+       70	6113	4913	1365	709	1521	618	11304	1152	2142	
+
+Y 74   3986	5158	*	5317	2831	5921	5017	3412	4863	2205	4316	5590	7022	5937	6874	4491	4832	3489	6727	3857	74
+       39	6164	6316	4058	89	3308	154	11283	1319	2440	
+
+P 75   4677	6899	5068	3351	7100	3934	5065	7236	2491	4119	7281	5353	4107	4299	2686	3280	4066	6151	*	6927	75
+       10	*	7139	*	*	2506	279	11291	0	2564	
+
+Q 76   4053	*	3726	3300	5905	3441	7175	4619	3162	4311	6126	3105	4361	3569	5326	3646	5033	5594	6039	6738	76
+       24	5896	*	4481	66	946	1056	11304	1214	2414	
+
+T 77   2043	4081	5172	*	5610	4891	6614	3563	6924	4653	5641	4854	4563	*	4763	2592	4703	3030	*	6253	77
+       30	6636	6538	3851	104	*	0	11338	1106	1621	
+
+D 78   4169	7382	1375	6180	5958	6013	3211	5892	5681	6187	*	3394	4700	5308	4914	3661	4431	4969	*	*	78
+       30	5621	*	1681	539	602	1552	11339	1507	1872	
+
+V 79   2120	4935	*	5456	4663	2645	6343	3096	4581	3033	4820	*	5869	8020	*	4468	*	3294	7359	6351	79
+       0	*	*	*	*	*	0	11410	0	1195	
+
+S 80   2851	4859	5929	7315	2999	6958	4965	2581	6773	3124	5456	7359	5854	7143	*	6500	5495	2360	*	3901	80
+       23	5962	*	1000	1000	*	0	11410	1271	1195	
+
+L 81   4627	6121	*	*	5037	6476	6943	1792	*	1989	4696	*	*	6153	*	6773	5169	2056	*	5356	81
+       9	7341	*	1000	1000	*	0	11410	1000	1195	
+
+I 82   4492	7477	6922	8506	2555	7281	6055	2697	6459	1771	6014	7468	*	*	6564	*	*	2825	6066	3307	82
+       21	6091	*	1000	1000	*	0	11410	1163	1195	
+
+C 83   4523	3407	*	6922	4775	*	*	3192	7313	2538	4548	7036	6644	*	*	*	4678	1239	*	7274	83
+       0	*	*	*	*	*	0	11410	0	1195	
+
+F 84   5569	6410	*	*	2526	5644	6459	2779	7341	2954	5794	*	5781	6127	*	6805	6417	2434	5210	2336	84
+       0	*	*	*	*	*	0	11410	0	1195	
+
+S 85   4334	6943	1170	7468	7600	5908	7078	6117	4840	5767	*	3027	6087	*	5033	2498	5884	6282	6777	6459	85
+       35	5373	*	3461	137	*	0	11410	1369	1195	
+
+L 86   2390	7416	6113	5421	6008	4635	6211	2931	*	2898	4871	6542	4407	7271	5759	3210	5457	2537	*	6509	86
+       24	5947	*	3810	107	*	0	11410	1226	1195	
+
+V 87   4135	7152	3079	4606	8250	4094	6777	6203	3937	5449	7281	3475	7274	4149	4581	2540	2388	4893	*	7312	87
+       55	4731	*	1344	722	*	0	11410	1694	1195	
+
+S 88   5167	4943	2323	3524	6280	4654	5960	6139	3904	5796	*	2810	5462	4309	4660	3100	3671	5532	*	6252	88
+       214	2930	7185	759	1290	*	0	11410	3789	1195	
+
+P 89   6363	5384	6631	3507	7025	2808	6253	4478	3645	4062	5577	5214	2415	3657	3231	4911	5385	7056	7037	5372	89
+       67	4755	6928	3476	136	1574	591	11406	1711	1377	
+
+A 90   4304	6137	3004	2549	5283	6305	4452	4805	4044	4502	5914	4429	5776	3929	5225	3191	3821	5198	6056	5733	90
+       20	6210	*	1875	459	*	0	11437	1177	1387	
+
+S 91   3513	6065	4875	4155	5676	4861	6316	5678	5335	4926	*	4410	4699	4392	3952	1906	2712	5479	6967	5971	91
+       17	6963	8149	2585	263	*	0	11437	1042	1387	
+
+F 92   4558	7201	4645	4696	2222	4932	5926	3515	6368	2444	4775	6394	*	6430	6294	3964	5204	3737	5473	3971	92
+       0	*	*	*	*	*	0	11392	0	1536	
+
+E 93   4246	6865	3047	2175	6266	6329	5448	4509	4244	4088	*	4358	4996	3566	4100	3838	3950	5445	*	6389	93
+       0	*	*	*	*	*	0	11366	0	1536	
+
+N 94   3809	6167	2905	3062	5708	4990	4462	5286	3630	5076	6627	3692	4845	4428	4793	3609	4199	5627	5917	4279	94
+       40	6865	5751	0	*	*	0	11366	1114	1536	
+
+V 95   2641	5193	*	4498	3956	5120	6938	3012	5687	2256	6246	7227	5493	4686	4407	4266	*	3214	7304	5655	95
+       60	7362	4837	1000	1000	*	0	11352	1023	1979	
+
+R 96   3596	6086	3585	3512	5567	4858	5998	4066	3585	3581	5700	6236	4236	3981	3170	4227	3975	4725	6281	7344	96
+       599	*	1558	*	*	3413	142	11304	0	2763	
+
+A 97   4376	5397	3752	3596	5619	4577	5665	3820	3528	5327	6000	4792	4743	3625	3400	3162	4389	5411	6166	4471	97
+       92	6362	4339	2000	415	283	2489	10912	1052	7551	
+
+K 98   3851	5893	4615	3320	3666	5270	4819	4471	3242	3123	6339	5499	6162	3917	4892	4774	4343	3623	*	4266	98
+       15	6569	*	0	*	568	1621	11258	1026	3197	
+
+W 99   4580	7855	5859	4569	3110	6254	7432	3634	5107	2406	4860	5538	*	5890	4551	6290	4590	4239	2724	3516	99
+       12	*	6892	*	*	*	0	11316	0	1661	
+
+Y 100  4207	5574	5067	4363	4115	*	5492	2776	5992	2156	4126	4805	7142	4995	3860	5997	5185	3845	6886	4087	100
+       4	*	8653	*	*	2374	309	11293	0	1859	
+
+P 101  4114	*	3372	3320	5866	4260	6383	4802	3513	4192	7028	3397	4663	3456	3804	3683	4728	4120	*	6935	101
+       49	4906	*	4597	61	*	0	11299	1825	1820	
+
+E 102  4336	5205	5575	3615	5306	5250	6828	2973	3482	2913	5581	4358	5777	3589	4839	4193	4487	4082	6137	4945	102
+       23	*	5989	1000	1000	2601	260	11299	1000	1820	
+
+V 103  3565	5311	7950	6142	3829	6779	*	1903	*	1990	5729	5222	*	*	5469	4720	4614	3254	*	5529	103
+       16	6468	*	1000	1000	2768	229	11264	1066	2072	
+
+R 104  4255	6444	4432	3123	4903	4370	4579	5536	2983	3948	7223	3912	*	4250	3395	3594	5305	4170	7101	4416	104
+       198	5806	3181	3103	179	1958	429	11284	1255	1899	
+
+H 105  4106	6869	3544	3027	*	4510	4522	5136	3172	4933	6166	3875	5156	3376	3295	3774	5078	5476	7388	5273	105
+       94	5291	4737	0	*	3625	122	11084	1361	3909	
+
+H 106  4909	5929	4955	4328	3777	6036	4885	4577	2890	3720	6551	3522	5370	4590	3236	4111	4910	5294	5989	3448	106
+       195	6938	3077	0	*	*	0	11146	1000	4422	
+
+C 107  3626	3707	5528	4502	3939	4158	5256	3661	4353	2967	*	4366	6678	5277	3752	3398	5778	3837	6116	5828	107
+       531	1784	5847	1314	742	3780	109	11021	5157	6064	
+
+P 108  3989	*	3822	3449	5164	3747	5888	6721	2782	6587	*	4462	2501	3627	4200	3783	4972	5780	*	6626	108
+       131	3526	*	1218	811	363	2167	10982	2529	5976	
+
+N 109  6190	6037	2567	4299	6711	2816	5308	6356	3325	5334	7129	2492	7349	4371	4551	4107	4181	5009	*	6423	109
+       94	3992	*	1454	655	3025	189	11287	2278	2264	
+
+T 110  4527	6029	5280	6184	4148	6223	*	2496	2896	3355	4862	5529	4441	6723	4846	3724	4157	2893	*	6641	110
+       21	6107	*	2373	309	735	1326	11292	1175	2098	
+
+P 111  5149	*	5577	5766	7336	4812	5664	4813	3881	4585	7284	3387	1303	5887	4020	4058	5300	5674	*	4832	111
+       38	5280	*	4067	89	*	0	11371	1499	1353	
+
+I 112  4258	4781	*	*	3877	5089	*	2600	5075	2625	3621	6941	6052	6942	5667	6102	4297	2191	*	4627	112
+       63	4540	*	3169	170	0	*	11371	1782	1353	
+
+I 113  4310	5805	6570	6893	4121	5464	*	1905	*	2309	4612	7168	*	6793	*	5968	4807	2302	6629	4557	113
+       21	6145	*	0	*	*	*	11425	1188	0	
+
+L 114  6129	6055	*	*	3948	5679	*	1993	*	1947	5199	*	6439	*	*	6771	*	1668	6780	7923	114
+       0	*	*	*	*	*	*	11425	0	0	
+
+V 115  3497	4592	*	*	3744	6282	*	2607	8041	2561	5729	*	*	7041	6486	6570	*	1371	*	6596	115
+       0	*	*	*	*	*	*	11425	0	0	
+
+G 116  3144	6123	7387	6752	4422	1827	6998	3169	7930	2316	5671	*	*	5751	6123	*	*	3012	6154	6136	116
+       27	6273	7564	2124	376	*	*	11433	1195	0	
+
+T 117  5809	6291	6949	5467	5568	5406	5423	5569	6561	5540	6703	1079	7281	*	*	4675	1905	5516	*	*	117
+       0	*	*	*	*	0	*	11435	0	1000	
+
+K 118  5393	7074	6981	4718	5709	5657	3680	*	629	4948	5249	5537	7340	5227	6092	6312	7344	6309	*	*	118
+       0	*	*	*	*	*	*	11470	0	0	
+
+L 119  3352	3654	7453	*	5272	4995	5790	2645	4447	3998	3921	4929	*	3911	6055	3094	3517	4162	6268	5670	119
+       15	6575	*	3000	193	*	*	11470	1066	0	
+
+D 120  *	*	458	3152	*	7355	7047	*	*	7051	*	5363	4381	5331	6300	5678	*	6799	*	*	120
+       34	6017	6934	3700	115	*	*	11463	1145	0	
+
+L 121  4924	5074	5172	3855	7150	4789	*	3865	3804	1595	5309	5256	4758	4334	4897	4463	4608	4625	*	5176	121
+       109	5548	4276	2772	228	0	*	11120	1711	1195	
+
+R 122  3678	6046	4590	3685	5432	5085	6774	4653	4058	2373	5791	4116	3737	4087	5559	4017	6049	3282	*	5477	122
+       143	3648	6081	4182	82	*	0	11148	2636	2106	
+
+D 123  4164	6849	2946	2875	*	3466	5440	6888	3542	5695	*	3489	3653	4144	3498	3833	5373	6996	*	5236	123
+       70	6078	4929	0	*	1338	726	11137	1353	2403	
+
+D 124  3496	6910	3330	2861	4951	4594	6035	5464	3955	*	5884	3375	3792	4168	4324	3541	6116	4962	7289	4060	124
+       118	6947	3824	0	*	*	0	11122	1008	2440	
+
+K 125  4351	5237	2853	2881	5932	4465	5742	5347	4264	3904	*	3696	4007	4377	3684	3680	5317	4357	*	6741	125
+       194	5381	3293	1861	465	*	0	10991	1311	3958	
+
+D 126  4012	6768	3678	3701	5528	4263	5107	4959	2884	5125	6766	3691	4092	3859	4114	3471	4878	4103	6556	6683	126
+       390	6661	2138	2000	415	4058	89	10842	1011	5406	
+
+T 127  3890	5342	4456	3965	5366	5437	5517	3186	4457	3279	*	5517	3915	6379	3953	3601	3430	2935	*	*	127
+       36	*	5356	*	*	5535	31	10613	0	7397	
+
+I 128  4692	6566	4264	3062	4807	5335	*	2947	3254	3788	5373	3822	*	3879	6573	3425	5379	3378	6400	6260	128
+       50	6239	5600	0	*	*	0	10608	1035	7443	
+
+E 129  3578	*	3837	1727	*	3961	4816	5269	3759	4721	*	4328	5261	4014	4591	4557	4717	5335	6566	6423	129
+       19	*	6274	*	*	6049	22	10599	0	7563	
+
+K 130  3322	*	4253	2643	4335	6436	4773	4425	3133	3244	*	5265	5814	4778	4597	3379	6114	4287	5184	6282	130
+       33	*	5467	*	*	*	0	10575	0	7563	
+
+L 131  3636	5317	4658	4525	5037	6419	4659	2573	3683	2547	5191	4706	*	3975	6393	3682	4612	4756	*	5994	131
+       57	6245	5281	1000	1000	*	0	10534	1000	7682	
+
+K 132  4120	6085	3326	3077	*	4070	6312	4171	3313	4678	6351	3719	*	3686	3991	4004	3382	5238	6090	6158	132
+       46	6053	5933	3459	138	*	0	10545	1026	7799	
+
+E 133  4649	6124	3579	2820	*	3920	6263	5487	2729	3687	4749	3852	*	4160	4641	2837	5252	5502	*	*	133
+       271	2905	4724	1250	787	4728	55	10489	2506	7888	
+
+K 134  4747	*	4304	4251	5229	5067	6329	3779	3290	2428	5904	4144	*	3474	3998	4538	4647	3703	6008	5128	134
+       59	6112	5273	0	*	6137	21	10499	1009	7929	
+
+K 135  3715	*	3918	3700	6514	4767	4118	4540	2932	3594	5200	4122	6001	4257	4345	4343	4177	5343	6116	3769	135
+       34	*	5418	*	*	3439	140	10481	0	8004	
+
+L 136  4705	*	4911	4578	5297	5482	6244	2940	4241	2163	4120	4613	5463	4113	4169	3408	4824	6137	6044	5276	136
+       41	*	5144	*	*	3901	100	10481	0	7734	
+
+T 137  4312	5213	3802	3376	5330	4115	5204	4147	3466	3456	6363	4645	6343	4066	2729	4395	4844	5397	*	5276	137
+       111	*	3760	*	*	4063	89	10546	0	7585	
+
+P 138  3752	*	3945	3273	6156	4320	6286	4184	3603	3680	5066	4226	3433	2859	4776	4028	*	4710	*	6018	138
+       20	*	6212	*	*	463	1865	10433	0	7748	
+
+I 139  4140	6169	5840	5260	4050	4979	4992	3051	4897	3022	4971	6073	4575	4953	4610	6015	5256	2092	6852	4708	139
+       37	*	5306	*	*	3194	167	10949	0	3555	
+
+T 140  5920	5709	3560	4333	5498	5989	6236	5814	3652	4424	5787	4288	3607	5531	4018	2053	3376	4661	7178	5922	140
+       58	4657	*	4850	51	2084	388	10932	1930	3717	
+
+Y 141  4537	*	3365	3538	4156	5331	6919	4137	3493	3164	6867	3970	4272	5004	3764	4503	4837	3755	6693	4812	141
+       55	6302	5337	0	*	2020	408	11135	1151	3111	
+
+P 142  3654	*	2906	2340	6001	4189	5680	4378	3771	3908	*	4570	4258	3402	5108	4709	4761	6887	*	6615	142
+       56	5073	6855	1528	615	2129	375	11120	1461	3104	
+
+Q 143  4967	*	2569	2009	5698	6922	6100	3676	4205	3709	5428	5410	*	3288	4813	4382	7165	4548	6721	6933	143
+       12	*	6943	*	*	3762	110	11132	0	2789	
+
+G 144  2678	6925	6036	4636	6139	2420	5999	2930	6000	3511	4415	5329	5598	7067	3931	4303	5206	3827	6892	7205	144
+       40	*	5209	*	*	2067	393	11129	0	2786	
+
+L 145  3805	7912	4410	3057	6598	5734	5442	3606	2725	4168	5168	5107	5529	3362	4004	3676	4664	4949	6709	5770	145
+       72	4667	6697	2606	259	*	0	11073	1567	2831	
+
+A 146  3114	5855	3706	2553	6138	5805	6005	5914	3029	4765	5315	4173	5977	3341	4029	4143	4515	5075	*	6608	146
+       22	6843	7222	3459	138	*	0	10993	1000	2992	
+
+M 147  4803	5592	4591	*	2258	6618	7227	4674	4245	2055	3435	5887	6849	6060	*	7290	5890	4688	4019	3527	147
+       44	5540	6888	2814	221	2036	403	10999	1306	3111	
+
+A 148  1921	3517	5081	4983	4658	5899	*	3809	3840	3521	*	4990	5871	*	4858	2950	4936	4743	6895	6391	148
+       20	6170	*	0	*	*	0	11044	1136	2731	
+
+K 149  3457	*	3783	3887	6962	5059	4668	5601	2671	3739	5133	4323	7109	2867	3086	5343	5451	4627	*	6579	149
+       36	6089	6628	1569	593	*	0	11044	1154	2731	
+
+E 150  4163	5818	6013	2918	5540	5966	6430	4907	2551	3151	5430	4715	5816	3427	3329	3825	4710	5298	*	7087	150
+       40	5193	*	2274	334	3539	130	11019	1435	2905	
+
+I 151  7268	5417	*	6025	3992	5882	3818	3335	4377	2790	5416	3328	7065	5014	3951	4383	5124	4156	4391	3240	151
+       157	3501	6082	2957	199	2428	297	11006	2495	2743	
+
+G 152  5531	7068	3403	4978	6874	1799	5260	6611	3740	5305	6827	3247	3918	4937	3490	4058	7355	6698	4856	*	152
+       137	5036	4052	1516	621	*	0	11029	1507	2682	
+
+A 153  3133	4022	4337	5367	3382	4233	5762	3653	4186	3804	4591	4093	5315	4300	4636	5862	5062	3639	*	4896	153
+       634	3583	1877	1664	547	801	1231	10903	2567	3712	
+
+V 154  3636	4273	4934	*	5618	5611	5556	3737	5029	3185	5446	4987	3676	4834	4673	3821	4125	2658	6313	4281	154
+       28	5686	*	537	1686	34	5420	10746	1143	6074	
+
+K 155  4643	7009	3647	3588	5313	5031	4145	5353	3191	3931	7252	5668	2656	3572	4594	4044	4278	5793	*	4765	155
+       29	5629	*	1925	441	0	*	11069	1320	1000	
+
+Y 156  4752	5020	7497	5586	2689	7250	4581	2345	*	3128	5264	*	7106	7158	6776	5301	5404	3187	4991	2723	156
+       23	7152	6872	0	*	*	*	11078	1000	0	
+
+L 157  5469	7104	7174	7148	2229	5693	5089	2136	*	2975	4709	*	*	5394	*	6931	4801	2750	6009	3851	157
+       17	6434	*	0	*	0	*	11070	1111	1024	
+
+E 158  7050	*	7226	1754	3537	7014	5219	4786	3461	4728	7039	*	3007	5004	4679	4105	3494	4781	*	5772	158
+       46	5829	6180	1619	568	*	*	11032	1210	0	
+
+C 159  4728	3124	*	*	4673	4987	*	2891	*	3189	4579	7664	7534	*	6975	4173	2567	2131	*	5658	159
+       0	*	*	*	*	0	*	10961	0	1116	
+
+S 160  5966	4774	4056	*	5954	6109	5541	5602	*	*	6865	3652	6219	*	6040	713	4209	4888	*	*	160
+       11	6990	*	2585	263	*	*	11032	1005	0	
+
+A 161  1448	4161	*	5311	*	4476	5938	5423	6015	4200	4922	6380	5010	5451	6277	2489	4037	4687	*	6925	161
+       11	7021	*	0	*	*	*	11028	1014	0	
+
+L 162  5269	*	7036	4760	5008	7094	5074	4150	1895	2655	7227	5067	*	3702	4662	3962	4021	3484	*	6721	162
+       46	5390	7094	2819	220	*	*	11096	1373	0	
+
+T 163  4398	*	2711	3438	*	6950	4297	6818	3338	5021	*	3732	4729	4709	4954	3895	2481	6715	6255	4115	163
+       37	5307	*	1213	815	0	*	11086	1388	1000	
+
+Q 164  4849	6859	3294	4287	4841	1929	6502	5434	3867	5099	*	2868	3644	4284	4953	4303	6179	6784	*	*	164
+       26	5808	*	1389	694	*	*	11092	1221	0	
+
+R 165  4455	7022	3252	2757	5075	5022	4348	4159	4166	3899	5454	3562	6100	4583	5617	4991	4587	4147	4988	4050	165
+       34	5441	*	1630	563	*	*	11092	1358	0	
+
+G 166  5616	*	4035	6028	7673	1173	5754	6180	6081	5293	*	2176	6838	4913	6851	3678	5624	7932	*	7003	166
+       12	6957	*	2585	263	*	*	11031	1000	0	
+
+L 167  6972	5402	7262	*	4330	*	7186	1908	5067	2538	4387	6297	5383	*	7081	6390	4586	1826	*	6745	167
+       0	*	*	*	*	*	*	11031	0	0	
+
+K 168  3772	*	2343	2829	5344	5365	6894	6870	3204	4418	6864	4375	6956	3162	4597	3969	4621	5747	7037	5706	168
+       50	4875	*	2852	215	*	*	11017	1552	0	
+
+T 169  4414	7066	3329	1949	7164	5452	5819	7189	3057	4475	*	5069	6955	3517	4242	4063	3565	4722	*	7059	169
+       0	*	*	*	*	*	*	11017	0	0	
+
+V 170  3472	5562	*	5985	6003	5446	6775	2779	*	1560	5011	*	4920	*	6667	4585	5238	2528	5885	6976	170
+       0	*	*	*	*	*	*	10972	0	0	
+
+F 171  5347	5890	6825	5518	1833	7066	5997	4393	3329	2808	4585	*	*	5459	3481	6131	5956	3710	4803	4730	171
+       0	*	*	*	*	*	*	10972	0	0	
+
+D 172  5019	5911	3005	2132	5842	5314	4378	6934	4168	4689	5955	2968	*	4234	4075	4061	4075	6811	*	5510	172
+       0	*	*	*	*	*	*	10922	0	0	
+
+E 173  3980	6884	4823	3836	4588	4304	4189	5184	3123	3200	5202	7308	*	4067	4578	4035	4114	5155	3478	4235	173
+       0	*	*	6083	21	*	*	10916	1195	0	
+
+A 174  3966	*	*	*	4931	5439	*	1550	*	1534	5710	*	*	*	*	5740	5189	3064	*	6889	174
+       0	*	*	4392	70	*	*	10912	1000	0	
+
+I 175  3399	5507	5828	6708	5919	4559	*	2694	3917	2610	5336	4756	*	4468	4043	4129	4732	3181	*	4643	175
+       0	*	*	*	*	*	*	10769	0	0	
+
+R 176  4405	6451	3525	3073	6787	4120	4627	6614	2868	*	*	5693	*	2988	2667	3376	3603	*	*	*	176
+       0	*	*	*	*	*	*	10751	0	0	
+
+A 177  3669	4712	*	4164	6379	6456	5210	4440	3385	2899	5749	4823	*	3420	3816	3803	3778	4255	6804	3700	177
+       13	6831	*	0	*	*	*	10713	1000	0	
+
+V 178  2896	5520	*	*	3467	*	*	2220	5731	2094	4971	*	*	5627	*	6817	5451	2708	6369	4766	178
+       0	*	*	*	*	*	*	10673	0	0	
+
+L 179  4401	6678	4902	4905	3706	*	*	3293	5477	2303	4272	5134	3869	4478	4667	4602	4547	3411	6046	4430	179
+       17	6414	*	1585	585	*	*	10399	1045	0	
+
+C 180  4306	6600	3640	2635	6106	5196	4977	5097	3746	4955	*	3232	4516	4708	3554	3641	4167	6200	*	3934	180
+       0	*	*	*	*	*	*	10227	0	0	
+
+P 181  3898	5697	4901	3585	6151	3294	*	4901	3921	4297	5971	3532	3388	3173	4385	3057	4742	5951	*	*	181
+       0	*	*	*	*	*	*	9916	0	0	
+
+P 182  4832	5859	5740	3751	*	4639	5848	5836	2866	4118	5793	3771	2562	3665	3491	4601	4024	5914	*	4746	182
+       0	*	*	*	*	*	*	9654	0	0	
+
+P 183  *	5228	*	3282	*	4618	4422	*	3883	2850	*	4033	2180	3924	4499	3655	5684	4572	5450	5569	183
+       45	5020	*	0	*	*	*	9252	1011	0	
+
+V 184  5095	*	*	*	2916	4962	5158	2889	4376	1857	3594	4172	*	*	*	4210	5223	3745	5309	*	184
+       0	*	*	*	*	*	*	8756	0	0	
+
+K 185  3743	*	2790	*	*	3851	4667	*	1222	*	*	4638	*	4962	3764	3359	*	*	*	*	185
+       0	*	*	*	*	*	*	7966	0	0	
+
+K 186  *	*	*	*	*	*	*	*	138	*	*	*	*	*	3451	*	*	*	*	*	186
+       0	*	*	0	*	*	*	5347	0	0	
+
+//
+�HHsearch 1.5
+NAME  2798277b8842d36de2206ba3ae8863fc
+FAM   
+FILE  2798277b8842d36de2206ba3ae8863fc
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:16:48 2013
+LENG  221 match states, 221 columns in multiple alignment
+FILT  109 out of 1133 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.7 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCEEEEECCCCCHHHHHHHHHHHCCCCCEEEEECCHHHHHHHCCCCCCCCCCCCEEEECCEEEECHHHHHHHHHHHCCCCCCCHHHHHHHHHHHHHHHH
+HHHHHHHHHHCCHHHHHHHHHHHHHHHHHHHHHHHHHHHHHCCCCCCCCCCCCHHHHHHHHHHHHHHHHCCHHHHCCHHHHHHHHHHHCCHHHHHHHHHH
+HHCCCCCCHHHHHHHHHCCCC
+>ss_conf PSIPRED confidence values
+9966999789990599999999986999779972743778874211368778777799899877758999999998446689999999999999999999
+9999999872671344489999999999999999999998559970569999999999999999999829112101889999999998499999999863
+740799956677764201085
+>Consensus
+MxxxxLyxxxxspxxxxvxxxlxxxxixxxxxxxxxxxxxxxxxxxxxxpxxxvPxLxxxxxxixesxxIxxyLxxxxxlxpxxxxxxxxxxxxxxxxxx
+xxxxxxxxxxxxxxxxxxxxxxxxxxxlxxxlxxlexxLxxxxxxxlxGxxxtxADixxxxxlxxxxxxxxxxxxxxpxlxxwxxxxxxxpxxxxxxxxx
+xxxxxxxxxxxxxxxxxxxxx
+>2798277b8842d36de2206ba3ae8863fc
+AGKPVLHYFNARGRMECIRWLLAAAGVEFEEKFIQSPEDLEKLKKDGNLMFDQVPMVEIDGMKLVQTRAILNYIATKYDLYGKDMKERALIDMYTEGILD
+LTEMIGQLVLCPPDQREAKTALAKDRTKNRYLPAFEKVLKSHGQDYLVGNRLTRVDVHLLELLLYVEELDASLLTPFPLLKAFKSRISSLPNVKKFLQPG
+SQRKPPLDAKQIEEARKVFKF
+>gi|241668347|ref|ZP_04755925.1| glutaredoxin 2 [Francisella philomiragia subsp. philomiragia ATCC 25015]gi|254876880|ref|ZP_05249590.1| glutaredoxin [Francisella philomiragia subsp. philomiragia ATCC 25015]gi|254842901|gb|EET21315.1| glutaredoxin [Francisella philomiragia subsp. philomiragia ATCC 25015]
+---MKIYLYHHCPYCIKVRLVADLSKLDYEMIILANDDEKSHID---RIGSKQVPFLEkDDGTFIKESDEICKFIAKTQNFEIAESTIDNYAKESVAKLA
+EHYRRIVYPRiphhpgnecdFPTQSakdyfinKKSQYIgdfDallrnpPyDSIIAINKILREIAPFVKT--PF-ING-DnFSWDDINIFPVFFILTMARD
+L-LEIPNNISNYIKNIETKTNIEL--------------------------
+>gi|195171951|ref|XP_002026765.1| GL26999 [Drosophila persimilis]gi|194111704|gb|EDW33747.1| GL26999 [Drosophila persimilis]
+MAQPlKFYFDFLNQSSRALYIFLEASKIPFEAIPISMLkesmqatatttatatTLW-RlktpiqpirsdalyavevnigfyclwgLNRNvPISSYYRIIM
+AELFNYSLSSLSSLFPFHPPEPasPldWVPFRSLGRSRIDEYLAWQqtnmgvacTDYFQQKWLVPYLQKTRPAENAVNVAGKQLEHTLNDFEQLFLN-SR
+KFMLGNNISFADLSAICEIDQPKSIGFNAFQNRNKLARWYEAVRDElgPYYKDVHAEFE--------------------
+>gi|224014714|ref|XP_002297019.1| predicted protein [Thalassiosira pseudonana CCMP1335]gi|220968399|gb|EED86747.1| predicted protein [Thalassiosira pseudonana CCMP1335]
+---MKLHVLPISANSHGCLAIVKHLNLDDKVEIIDAygktrTPEFIAMN-----PAHCCPTLQFsneSDGAIWESAAVMRCLCNSFEggeeLYPTDAIKR
+GKIDMVLDWKNStLYPDLFHIaymMFGVA-VDEDMAKTQFGKLIDTHFPMlLDTFLKD--TKFCYSDTPTIADLAVAPMITLLKGRK-KFWEKVPeGVKE
+YYGRVLeAFPGMGEYVK-----------------------
+>gi|198434929|ref|XP_002128793.1| PREDICTED: similar to methionyl-tRNA synthetase [Ciona intestinalis]
+---MMEINGQPSPEKLKVLLACFETG-------------LhkIKVN-----Skp--GSALsVRLdNEIEFTSSNAAVRYTYE------TQGVKVdVETLH
+WFEWEVTILRK-LVgsyFSLSDKKILNI----NEFPNLISSLQYLENSInsg-K--LECDFSTKISAANCVIFctisPLFCN--PG----iEGEFPVLRK
+HFAIFMNRGSFRSAW-kE----------------------
+>gi|219118467|ref|XP_002180005.1| predicted protein [Phaeodactylum tricornutum CCAP 1055/1]gi|217408262|gb|EEC48196.1| predicted protein [Phaeodactylum tricornutum CCAP 1055/1]
+-PKITLFrdHAGWCPYCEKTMLLIEEKQVPVKIDLVPMRsygdkpQEFLRKV-----PNGLLPAIEVNGQVVTESQVIMELLDQWHSkqdgyrpMLPReg
+DTAGWERYKKLARLERDLFGWWCTLLFRPEGGNPltmlmassRDSMSGAMQGFLDCMQKVDQELLSSNGPWFFDehDYPTMIDFVYGLDLRNPKW-----
+--NLKGLNAWLEAFEKREPYLAFKSDYYTNVMDIPPQYGPGYDGGFN-
+>gi|151967130|gb|ABS19445.1| multivalent antigen sj97-23 [synthetic construct]
+MATLGTGMRCLKSCVFILNIICllcslvligagAYVEVKFSQYEANLHKVWQAA------PIAI--------IVVGVVILIVSF-------LGCCGAIKE
+NVCMLYMyafflivlLIAELVAAIVAVVYkdkiDDEINT---LMTGALENPNEEITATMDKIqtsfhcCgvkgpddykgnvpasckegQ--EVYVQGCLS
+VFSAFLKRNLIIVACVAFGVCFFQLLSIViacCLGQRIHDYQNV----------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+A 1    4504	*	*	*	*	4469	*	*	*	*	208	*	*	*	*	*	*	4464	*	*	1
+       149	*	3349	*	*	*	*	7434	0	0	
+
+G 2    2830	*	*	4845	*	4861	*	*	*	*	*	4705	1375	4843	*	2148	4757	3862	*	*	2
+       327	*	2303	*	*	1326	735	8167	0	1275	
+
+K 3    5252	*	2976	4285	*	5379	*	5098	2774	*	2767	5199	5341	4393	3689	2414	3567	*	*	*	3
+       0	*	*	*	*	213	2863	8776	0	2287	
+
+P 4    4614	*	*	*	4010	5253	*	2705	*	2663	2234	5945	3235	6382	*	*	*	4383	*	2603	4
+       38	5283	*	0	*	0	*	9846	1161	1015	
+
+V 5    5278	6371	6226	3223	*	5796	4292	3372	2084	4743	5322	*	*	6641	3465	*	2355	3612	*	*	5
+       0	*	*	1585	585	*	*	9926	1000	0	
+
+L 6    *	*	*	6215	3629	*	*	3556	*	504	5165	*	*	*	*	*	5093	4102	*	*	6
+       0	*	*	*	*	*	*	9937	0	0	
+
+H 7    6435	*	*	*	3657	4285	4248	3350	6036	3571	6504	*	*	6261	*	6140	5209	4114	5439	1115	7
+       73	4748	6398	811	1218	*	*	9969	1687	0	
+
+Y 8    6235	*	5438	*	4113	2453	3649	6387	6015	5379	5118	4159	*	5326	6251	3405	3249	4731	5325	2272	8
+       0	*	*	*	*	0	*	9952	0	1000	
+
+F 9    4508	*	3821	6407	2646	4027	4340	4913	6418	3259	4886	4182	5401	6306	4700	3378	4898	6597	3735	3742	9
+       19	6240	*	0	*	*	*	10015	1009	0	
+
+N 10   3327	5902	3603	4869	5461	3775	4328	6579	5578	4894	*	3582	2453	5402	4120	4858	3250	*	5623	4342	10
+       127	5551	3990	2700	241	*	*	10099	1149	0	
+
+A 11   3381	*	4341	5434	3934	2535	4537	4188	*	3287	5627	4810	3986	4474	6285	4707	3843	4035	6490	4787	11
+       75	6406	4685	0	*	0	*	10037	1000	1918	
+
+R 12   4597	3157	5444	6401	5398	6586	5222	*	5173	*	6348	3272	4854	*	3557	1167	5771	*	*	5371	12
+       16	6484	*	2000	415	0	*	10117	1000	1389	
+
+G 13   3545	5457	*	*	4287	2905	4962	4943	*	4987	*	6587	1190	5553	*	3794	4501	6451	*	6271	13
+       0	*	*	*	*	*	*	10286	0	0	
+
+R 14   5020	4116	6368	4629	2768	5443	*	6308	5349	4631	*	4749	5011	6285	2772	3116	4833	*	4170	2488	14
+       0	*	*	*	*	*	*	10286	0	0	
+
+M 15   2723	2635	*	6559	*	3237	*	*	6481	6339	6676	6434	5069	6497	*	1855	3097	3445	*	*	15
+       65	*	4497	*	*	*	*	10324	0	0	
+
+E 16   4045	6400	6226	3282	4758	*	4797	4525	6237	2788	4884	6302	5402	2992	2103	*	5501	5628	4945	4897	16
+       21	6095	*	1000	1000	0	*	10268	1037	1596	
+
+C 17   2965	5625	*	*	*	5730	6589	4766	2401	3278	4587	6631	5052	6451	1732	5009	5494	4835	6541	*	17
+       0	*	*	*	*	*	*	10322	0	0	
+
+I 18   2773	5378	*	*	*	5642	*	2206	*	3162	5747	6660	5011	*	*	5624	4833	1449	*	*	18
+       0	*	*	*	*	*	*	10310	0	0	
+
+R 19   5062	5469	6625	4381	5470	6828	5061	4728	3625	2765	5085	5404	*	4050	1655	*	4668	6646	4645	4574	19
+       16	6467	*	0	*	*	*	10351	1030	0	
+
+W 20   3435	5710	*	*	4571	4970	6709	2036	6673	2608	2690	6541	*	*	*	4928	5534	3770	3783	5567	20
+       0	*	*	*	*	*	*	10351	0	0	
+
+L 21   2000	5797	*	*	4325	6609	*	3385	*	2287	5806	*	*	5489	5475	5101	4370	2595	5229	4686	21
+       14	6705	*	0	*	*	*	10351	1000	0	
+
+L 22   2786	3709	*	*	3770	*	*	3757	*	945	5185	*	*	*	*	5633	*	5006	6722	5404	22
+       53	4791	*	2416	299	*	*	10360	1494	0	
+
+A 23   2271	*	4361	2252	4314	4998	3925	6522	3362	4080	*	5053	*	5088	3217	*	4994	*	5575	*	23
+       0	*	*	*	*	*	*	10360	0	0	
+
+A 24   3348	6425	6522	2135	3864	*	4584	4204	4973	2438	5084	4777	*	6683	5597	6621	*	4877	5159	3294	24
+       14	6696	*	3585	126	*	*	10360	1000	0	
+
+A 25   2827	4631	*	*	5625	4505	5505	5972	2043	2414	6603	6729	*	5070	3906	3399	5048	6086	5619	6647	25
+       43	5087	*	1243	792	*	*	10360	1361	0	
+
+G 26   5200	6622	3709	2997	*	1484	*	*	3039	*	*	3560	6976	3541	4664	4608	*	6385	*	6549	26
+       38	*	5251	*	*	*	*	10363	0	0	
+
+V 27   4123	6559	6524	*	5496	6408	6674	1690	5066	2069	*	7016	5923	5117	5690	*	5437	2295	*	*	27
+       42	5129	*	2105	382	*	0	10343	1300	1321	
+
+E 28   4352	*	3032	2896	*	5557	6651	6969	3459	5083	6229	4243	1769	5143	5518	3821	5166	5244	*	*	28
+       45	5029	*	383	2100	868	1145	10343	1362	1321	
+
+F 29   *	6038	6536	6581	2269	6488	3582	4629	6464	3569	*	*	*	*	*	*	5460	2543	4510	1799	29
+       16	6464	*	2000	415	*	0	10337	1000	1036	
+
+E 30   3818	*	3029	1617	*	6488	6626	5011	3666	*	*	4324	*	3485	4148	5291	3398	4898	*	*	30
+       15	6581	*	1000	1000	*	0	10337	1060	1036	
+
+E 31   4362	5649	3943	3545	3724	5492	5772	3677	4726	2675	5527	5734	6644	4753	5749	4740	3797	2896	6665	4950	31
+       0	*	*	*	*	*	0	10337	0	1036	
+
+K 32   4598	6374	4010	3581	6751	6713	3749	3746	3453	5670	*	5688	*	5784	3475	3826	3274	2407	6941	5368	32
+       11	*	7000	*	*	*	0	10337	0	1036	
+
+F 33   3982	*	4082	3918	5100	5590	5708	4299	4955	3669	6683	3817	3125	5588	3308	6592	3626	3770	5071	3850	33
+       27	5776	*	0	*	*	0	10343	1139	1227	
+
+I 34   3525	6625	*	5046	4201	6702	6506	2597	*	3187	3900	5113	5618	6561	4648	4644	5488	2037	*	4320	34
+       32	6465	6557	3170	170	*	0	10343	1000	1227	
+
+Q 35   3658	5556	1940	5405	*	4978	6647	5674	5581	5552	6735	3175	3310	5228	4382	3123	4025	5646	6579	6698	35
+       111	5426	4298	2574	265	*	0	10320	1240	1410	
+
+S 36   4015	6476	4994	6496	3436	4553	5689	3423	5410	2804	3350	4986	2706	*	4475	4455	6524	4605	5492	5478	36
+       587	2194	3111	2094	385	3051	186	10215	4400	2271	
+
+P 37   3161	*	3980	4364	6349	3079	4646	6374	3761	3854	*	5364	3136	5335	4054	3245	4117	*	4765	5164	37
+       591	1700	5136	2274	334	629	1501	10017	5096	3686	
+
+E 38   3004	6225	2685	2426	6424	4479	6240	*	3636	6362	*	4206	3346	4370	5634	4310	3965	6626	6319	*	38
+       145	3968	4978	1476	643	*	0	10188	1893	2327	
+
+D 39   3576	6217	2617	2986	6440	3169	4780	6682	5306	3935	*	4862	4495	4450	6499	3387	5440	4697	4716	5436	39
+       208	3903	3886	2954	199	1338	726	10168	1832	2767	
+
+L 40   5403	*	4466	4824	2285	6278	6093	4867	4379	3113	5434	*	4942	*	5056	5570	5297	4837	2477	3079	40
+       79	6370	4595	1000	1000	1703	529	10168	1036	3034	
+
+E 41   4374	*	6570	3252	3593	4794	5447	4837	3426	2546	5155	6370	3558	5959	4808	3644	4085	4194	*	5335	41
+       33	6485	6485	0	*	778	1263	10124	1000	2958	
+
+K 42   2352	*	3423	3644	*	4453	5494	5913	2650	5592	6541	3954	4589	3723	3864	4011	6971	4833	*	*	42
+       94	5573	4570	4955	47	1706	528	10244	1161	1926	
+
+L 43   3431	6484	*	4940	4599	4900	4521	2556	4497	2119	4481	6294	5491	5463	5422	6306	5063	3199	*	5410	43
+       105	5013	4662	764	1282	1969	426	10230	1367	2323	
+
+K 44   5389	6434	4475	4076	4921	4434	6251	5102	2515	4893	*	1973	6614	5717	4009	3180	5567	5064	6420	6486	44
+       1185	4945	922	1479	641	*	0	10157	1347	2589	
+
+K 45   3800	*	3670	3487	*	*	5381	*	3133	3841	*	*	2488	4366	3465	3773	3114	4416	*	*	45
+       527	3851	2078	1375	703	5937	24	8842	1348	7766	
+
+D 46   3577	*	2752	3145	*	3514	*	4055	4093	4890	*	4099	2501	4970	5085	4915	4164	*	5086	*	46
+       689	2061	2835	1072	931	2799	224	8376	2295	8270	
+
+G 47   3247	*	3655	2682	*	2954	*	4271	4171	5142	*	3688	3658	5258	5379	3519	4465	4177	*	*	47
+       158	4206	4343	1498	630	3230	163	8715	1185	7981	
+
+N 48   *	*	*	5497	3444	3450	*	4465	3374	3779	4472	5711	3872	3741	4354	5289	4375	3162	5351	3135	48
+       68	*	4442	*	*	3978	95	8938	0	7692	
+
+L 49   5441	*	5240	5592	3857	5542	3918	4455	5395	2714	*	1908	*	*	4477	2899	3565	5534	*	*	49
+       170	3171	*	2287	331	147	3365	9030	1818	7579	
+
+M 50   3259	*	5498	5620	*	4558	6536	6605	5731	5127	5681	*	781	6697	4305	4442	6533	5390	*	*	50
+       31	5563	*	1273	771	1596	579	10324	1205	1844	
+
+F 51   3893	*	5586	5694	3271	4245	6285	5299	3798	2637	4362	3787	5071	5476	4952	4990	5060	3490	*	3195	51
+       15	*	6568	*	*	2593	261	10292	0	1734	
+
+D 52   2675	*	6702	4717	*	1490	6477	5689	4017	4287	5210	6580	5022	*	3561	3948	4918	6514	*	4860	52
+       0	*	*	*	*	310	2370	10274	0	1764	
+
+Q 53   4768	*	6647	4618	*	4999	4912	6103	2271	4175	5564	3808	*	2523	3677	3630	2997	6614	*	6619	53
+       51	5626	6103	2004	414	*	0	10378	1264	1000	
+
+V 54   4301	6546	5474	*	5506	6671	*	3191	*	2014	6169	*	4544	6559	*	5699	5112	1351	*	5665	54
+       15	6554	*	3895	100	1376	702	10324	1170	1294	
+
+P 55   5417	*	*	*	*	*	*	6528	5570	7036	*	*	159	*	6730	6455	6756	6425	*	*	55
+       0	*	*	*	*	*	0	10339	0	1105	
+
+M 56   3049	5543	*	6468	4063	5773	*	2904	6562	3946	5088	6272	*	5567	6486	5703	2579	2173	*	3712	56
+       15	6623	*	0	*	*	0	10364	1036	1105	
+
+V 57   5537	*	*	*	4251	*	6468	3008	7066	748	4052	*	*	*	*	*	*	3090	*	6665	57
+       57	5135	6589	2012	411	*	0	10364	1423	1105	
+
+E 58   5196	*	4523	2519	5031	6267	6633	3384	3513	4125	*	6640	6996	4355	4023	6466	3970	2135	6482	5783	58
+       128	3562	*	673	1424	1395	690	10340	2431	1290	
+
+I 59   5013	5678	2189	3859	4705	5818	3453	3634	6618	3147	*	6708	5496	5807	6566	5588	3509	3297	6486	5129	59
+       381	2109	*	1567	594	*	0	10364	4742	1105	
+
+D 60   5741	6509	1677	4477	6538	2347	6856	6530	3883	*	*	2945	5742	5314	4912	3495	5466	*	*	*	60
+       88	4079	*	747	1308	*	0	10375	1964	1105	
+
+G 61   5524	*	2257	3927	*	1429	*	*	4931	5574	*	3665	5896	5429	5675	3332	4629	*	*	*	61
+       554	1649	*	1231	801	0	*	10375	5509	1105	
+
+M 62   3780	*	4341	3882	3689	5111	5132	4230	4351	3977	6832	3815	*	3871	3702	3924	3396	3591	5585	5682	62
+       33	5483	*	0	*	0	*	10417	1218	1009	
+
+K 63   3690	5828	*	5215	4114	5357	4730	3406	4375	4387	5888	*	3982	4855	4428	5150	2942	2010	*	*	63
+       0	*	*	*	*	*	*	10440	0	0	
+
+L 64   5755	*	*	6307	4862	*	6614	1757	6508	1749	4646	5398	*	*	5770	*	6375	2501	6705	4660	64
+       0	*	*	*	*	*	*	10440	0	0	
+
+V 65   3954	5680	6670	7289	3323	4318	5107	5188	6804	6534	5637	5042	6748	5811	6631	2480	2185	4186	4739	3407	65
+       17	6375	*	0	*	*	*	10440	1032	0	
+
+Q 66   *	*	1827	1593	*	3687	5371	*	7023	*	*	5648	5411	3023	6509	4074	5846	5443	*	*	66
+       13	*	6790	*	*	*	*	10440	0	0	
+
+T 67   3580	*	6715	4833	5768	6866	6753	5149	6294	5584	6422	4974	6785	5709	*	1017	2899	4710	6523	5326	67
+       26	*	5780	*	*	*	0	10407	0	1000	
+
+R 68   3901	6730	4372	6620	6650	4702	5530	4844	6697	2598	4043	4142	3997	4355	3573	3463	3563	4238	6581	4879	68
+       0	*	*	*	*	1678	541	10390	0	1421	
+
+A 69   1498	*	3306	4038	5734	5244	6694	4943	4975	3917	*	5628	4699	5270	*	4156	4235	3393	*	6703	69
+       0	*	*	*	*	*	0	10400	0	1230	
+
+I 70   5040	4950	*	6308	6550	6785	*	559	*	3832	4323	*	*	*	*	5716	5819	3848	*	*	70
+       0	*	*	*	*	*	0	10425	0	1230	
+
+L 71   2630	3691	6710	4631	4729	7262	*	3483	*	2183	4025	6715	*	6719	5729	4321	5050	2724	*	5243	71
+       0	*	*	*	*	*	0	10425	0	1230	
+
+N 72   4699	6923	3366	2622	7011	6329	5789	4703	4745	3469	6660	4727	4727	3868	2193	4498	5221	*	5800	5167	72
+       18	6308	*	1000	1000	*	0	10425	1022	1230	
+
+Y 73   6611	*	6488	6741	3332	*	3405	*	6617	4126	7262	*	*	4597	4102	*	*	5614	3586	1005	73
+       36	6632	6127	1585	585	*	0	10425	1000	1230	
+
+I 74   4315	6536	*	*	4391	*	6493	2482	6296	765	6601	*	*	*	*	*	6605	3868	6498	*	74
+       16	6545	*	0	*	*	0	10358	1000	1525	
+
+A 75   2958	4798	2475	2514	4568	3731	6571	5696	5652	4092	*	5582	6493	4251	5327	3758	6599	4599	6720	6605	75
+       16	6516	*	0	*	*	0	10358	1000	1525	
+
+T 76   3359	*	3389	2327	*	5249	4125	6317	4018	5014	*	5758	5040	3617	2691	3872	4152	6776	*	*	76
+       62	6320	5080	2322	322	*	0	10358	1032	1525	
+
+K 77   6742	7053	5767	3272	5743	*	3978	5402	2369	2772	5406	5284	*	3263	3434	5570	3323	4636	6911	*	77
+       95	6554	4236	0	*	*	0	10290	1000	2086	
+
+Y 78   3718	*	6496	6922	2844	4115	3018	5294	6727	3733	*	6511	6317	4428	6357	3768	5559	3975	*	2097	78
+       129	3908	5731	1476	643	*	0	10192	1957	2952	
+
+D 79   3791	*	3231	4325	*	2444	5467	6312	4843	6619	*	4264	1987	5284	4120	3405	5887	6869	*	*	79
+       2040	459	5088	2001	415	1170	848	10152	8333	3251	
+
+L 80   4873	6408	*	5664	3109	6535	6639	3998	*	931	4490	*	*	6573	6401	6549	5525	3921	4970	6213	80
+       31	6689	6475	0	*	2029	406	10201	1071	3254	
+
+Y 81   4966	6570	4155	*	4180	*	4712	3588	*	1814	4351	5778	4697	4650	5812	5523	4864	4805	5797	2580	81
+       14	6695	*	0	*	1905	448	10276	1000	2876	
+
+G 82   4213	*	4253	5449	*	2414	*	6392	6342	*	*	5467	1079	6555	4301	5195	4911	4899	*	7034	82
+       191	3247	5760	458	1878	182	3075	10343	2642	2368	
+
+K 83   3631	6087	3841	2636	5102	4973	*	6802	3618	3950	*	4759	4339	4467	2848	3343	3830	5755	*	*	83
+       170	3166	*	1540	608	595	1566	10405	2995	1376	
+
+D 84   4392	5404	1585	6762	5731	2924	6786	*	4993	4642	*	3162	5576	5230	5695	3423	3729	7023	*	*	84
+       178	4371	3889	1471	645	*	0	10442	1713	1000	
+
+M 85   2726	*	3895	5038	5488	3377	6770	6535	6272	3845	4665	4219	2310	4747	6664	3948	4871	4222	4808	*	85
+       42	5133	*	2096	384	1410	681	10321	1329	2281	
+
+K 86   2402	5511	4639	3338	5305	5151	5827	4991	3736	3152	5434	5609	4161	3670	4608	5764	4657	4025	*	5564	86
+       22	7151	7005	4170	82	0	*	10390	1000	1750	
+
+E 87   2712	*	3373	2390	*	3962	5175	4899	3525	4111	6475	4915	5105	2894	6587	6472	5191	5540	*	6452	87
+       43	5594	6827	1516	621	*	0	10471	1193	1000	
+
+R 88   3502	6556	6707	3723	4839	6793	3942	5610	3664	3650	6275	5890	*	4206	1721	5050	5707	5108	5242	4812	88
+       14	6690	*	0	*	*	0	10470	1036	1113	
+
+A 89   1717	*	4559	3803	4379	4114	5759	5070	6795	5089	*	4802	4735	4041	4628	3604	4321	5003	5532	5080	89
+       40	5668	7009	3840	104	872	1140	10470	1162	1113	
+
+L 90   3886	6719	4464	2675	5222	6010	*	4060	3485	3169	4797	5363	*	3337	2863	5319	5677	4644	4761	*	90
+       23	*	5989	*	*	*	0	10461	0	1133	
+
+I 91   2447	5618	4818	5586	4684	6664	*	2322	*	3678	3665	6719	*	5661	6359	4641	4768	2406	6698	5812	91
+       118	3918	6359	1958	429	1113	896	10441	2008	1415	
+
+D 92   3903	5307	2568	4111	6511	5626	6371	4424	4793	2890	4107	3895	6749	5063	3061	4108	6809	5039	5673	5696	92
+       31	6514	6590	0	*	1992	418	10420	1009	1362	
+
+M 93   3700	*	6730	2674	4685	6503	5944	5717	4397	5670	3920	4816	5561	3219	3240	3652	3379	4650	6510	4564	93
+       118	3666	*	2585	263	*	0	10400	2189	1485	
+
+Y 94   3553	*	6471	*	4307	5639	6744	3565	*	2195	4351	6555	*	6604	5061	6707	5089	5059	2016	3257	94
+       37	5311	*	1763	503	*	0	10378	1250	1663	
+
+T 95   4068	4751	6555	4639	4945	5451	6382	3451	6782	1922	4819	4567	6420	*	5659	4008	4651	2531	*	4767	95
+       111	3887	7275	1204	821	2238	344	10378	2229	1663	
+
+E 96   2688	*	2723	3491	4677	4261	6858	5479	4988	5082	6136	4105	5222	4169	4291	3164	4706	5896	5778	5039	96
+       81	4190	*	3572	127	*	0	10381	1821	1664	
+
+G 97   3029	5312	4742	4112	3875	4104	7024	5678	3860	3047	6519	5024	*	4221	4454	4673	3698	5074	3264	5454	97
+       102	3875	*	2120	377	353	2205	10381	2039	1664	
+
+I 98   2990	3791	5231	3802	3369	5161	*	2801	5842	2848	6771	6635	6743	4811	7291	4211	4042	3732	*	5749	98
+       252	2641	*	2086	388	*	0	10452	3623	1000	
+
+L 99   3277	6696	3256	3868	5024	3633	4109	6730	6465	3612	5610	3171	*	4292	4535	4402	3660	4520	*	4426	99
+       11	7070	*	3000	193	*	0	10452	1008	1000	
+
+D 100  3506	*	2066	3188	6588	4165	5074	6732	5113	5204	6675	4141	2981	4654	4483	4341	4478	5719	*	6467	100
+       230	3030	5321	3036	188	*	0	10452	3195	1000	
+
+L 101  3595	4863	5899	5082	3436	*	6923	2886	5117	2079	3981	6516	6338	5846	*	4213	6434	3290	6679	4220	101
+       64	4529	*	1111	897	*	0	10410	1680	1523	
+
+T 102  *	5174	*	6733	2642	*	5043	3167	*	2125	4669	5472	6454	4678	4408	6717	4491	3360	7041	3139	102
+       75	4306	*	2655	249	*	0	10410	1707	1523	
+
+E 103  3323	6516	3713	4443	6820	3744	6664	5007	3879	3964	5100	3489	3318	3420	3400	4152	5204	6672	*	6564	103
+       109	3784	*	1568	594	2037	403	10410	2180	1523	
+
+M 104  2161	*	4832	4027	5095	4666	*	6753	3193	3392	5359	5045	3460	4149	4107	4572	4686	6454	5785	5210	104
+       83	4446	6652	3121	176	*	0	10418	1676	1351	
+
+I 105  3108	5753	7152	6710	2845	4735	5745	3792	4425	2408	5762	5608	5425	5302	5576	5286	5796	3221	5131	4098	105
+       28	6698	6707	1000	1000	1740	513	10394	1000	1578	
+
+G 106  3211	4800	5613	5201	2976	4769	*	3266	6338	2950	4048	7133	6648	5244	3716	5789	5170	3220	5319	4616	106
+       30	5606	*	983	1017	2062	395	10410	1189	1523	
+
+Q 107  2672	*	4742	4944	5126	4854	7092	3984	3853	2680	5672	4990	4414	4345	3621	4073	4801	5234	6692	4205	107
+       485	1948	5234	1663	548	592	1571	10435	4900	1353	
+
+L 108  3649	*	5874	4137	3700	4063	3697	4263	5740	3128	5040	4808	5558	3988	4370	4488	5098	3539	6707	3657	108
+       203	3163	5658	2092	386	1849	469	10406	3014	1590	
+
+V 109  5096	5330	4882	6713	3787	3661	*	4378	3747	3203	5051	5512	3412	4883	3281	4779	4970	3420	5129	4423	109
+       118	4337	5094	1237	796	1245	790	10393	1711	1778	
+
+L 110  4312	6773	6682	5074	2342	5721	5550	4256	5505	2950	5116	6480	*	4856	3232	6914	6726	4209	6031	2383	110
+       95	3974	*	2309	325	1625	565	10387	1965	1907	
+
+C 111  3665	6116	4476	4057	5246	3262	5727	5528	4339	3667	4615	3882	5550	5553	3374	3077	5118	3922	6643	4993	111
+       86	4694	5712	2860	214	2003	414	10384	1605	1561	
+
+P 112  3756	6656	3301	4697	5631	3320	5239	*	3042	4390	6596	5199	2512	4364	5590	3290	5140	5671	6602	5840	112
+       137	4161	4845	3135	174	2420	298	10398	1944	1776	
+
+P 113  3788	6629	3462	2728	*	3335	6347	5705	3811	4123	5226	5402	3536	4625	4578	3870	3827	4316	*	6866	113
+       43	5717	6572	0	*	1569	593	10369	1171	2336	
+
+D 114  4627	5447	2984	3016	5282	3687	4531	4390	3190	4671	6750	5006	3877	5117	5151	4705	3839	4364	*	5551	114
+       200	3472	4673	2657	249	886	1123	10361	2354	2017	
+
+Q 115  3396	6574	4465	2897	5708	3501	6614	5492	3813	5208	6626	4779	3984	4685	3463	3384	4096	3797	6464	*	115
+       76	5649	5002	1612	571	3135	174	10383	1173	2061	
+
+R 116  3378	*	4528	3897	5555	4243	6610	4275	2731	4589	*	4308	4141	5669	3148	3275	3582	5144	*	6563	116
+       418	2760	3264	1566	595	*	0	10327	3215	2464	
+
+E 117  4954	*	3140	2217	5058	4719	5424	6546	3683	4515	6386	4191	4451	3715	4073	3211	5327	6483	6596	6249	117
+       85	4446	6505	2421	298	1926	441	10140	1821	4006	
+
+A 118  3444	*	3331	2353	6869	5593	5429	4857	2936	5650	*	5434	3701	4183	4190	3741	4102	6321	*	5640	118
+       114	6419	3959	1585	585	4061	89	10195	1000	3413	
+
+K 119  3746	6393	3695	2993	6468	4032	6165	*	3424	3480	6480	4121	3310	4050	4705	5438	4246	3648	*	5804	119
+       141	4943	4043	1101	906	2275	334	10129	1393	4202	
+
+T 120  3235	5521	4862	4865	4569	5547	6330	2878	5348	2744	5547	4743	4886	6391	5230	4215	4181	3256	4066	6264	120
+       123	4289	5043	2717	238	2518	277	10128	1643	4312	
+
+A 121  4077	*	4823	3320	3837	4822	*	4938	3313	3730	4226	6457	4526	4499	3139	6191	3608	3379	6471	5488	121
+       20	6191	*	2896	208	1349	720	10129	1218	4175	
+
+L 122  2665	*	3318	2597	*	5111	5769	*	2649	4887	*	3584	4594	4936	3868	5090	3836	*	*	6522	122
+       32	6523	6514	3807	107	2008	412	10288	1015	3012	
+
+A 123  3280	*	4536	3162	4086	3375	5124	5293	3707	4063	6555	3544	*	4569	3450	4939	6637	3822	5432	5062	123
+       57	5027	6914	3876	102	1522	617	10334	1347	2688	
+
+K 124  2216	4890	6701	6570	4374	3713	5885	3195	5089	2961	4441	5048	5704	4259	5613	3788	*	4319	5499	6660	124
+       32	6554	6426	4248	78	1497	631	10377	1015	2215	
+
+D 125  4237	*	4028	3437	5570	5469	6549	4480	3239	3077	5677	3870	6472	4637	3099	4708	3645	4255	6598	4932	125
+       0	*	*	*	*	1795	491	10367	0	2116	
+
+R 126  2819	7503	3471	2690	7264	3890	6600	*	4164	5236	5751	3712	4044	3453	4427	3710	3810	*	*	*	126
+       25	*	5859	2585	263	251	2649	10408	1015	1754	
+
+T 127  3809	5041	3711	3272	5133	5250	5600	5663	3474	4764	6629	3804	6722	3663	3039	3440	4331	4626	5490	*	127
+       18	*	6296	*	*	1617	569	10451	0	1440	
+
+K 128  3576	5152	*	6712	4084	6295	5587	3033	5749	1607	5240	6357	5006	*	5908	*	5146	2497	*	5318	128
+       14	*	6712	*	*	1502	628	10431	0	1466	
+
+N 129  3559	6507	4010	2923	4667	5968	4362	3891	3934	4419	5926	3133	4271	3795	3890	5685	5077	4163	*	*	129
+       0	*	*	*	*	1704	529	10457	0	1423	
+
+R 130  3560	*	4199	3085	7245	5244	4303	6568	2914	*	6079	4748	5697	4235	2252	3978	3874	4658	*	6582	130
+       13	*	6809	*	*	*	0	10478	0	1235	
+
+Y 131  2542	5174	4557	4547	4208	3835	4636	3621	5724	3466	5591	5718	7161	5165	5629	3933	3688	3417	6602	5762	131
+       0	*	*	*	*	416	1998	10474	0	1417	
+
+L 132  5182	5689	*	*	3023	*	6993	3288	6856	1003	4459	5691	*	*	5616	*	6813	4176	5802	4476	132
+       13	6764	*	5209	40	*	0	10484	1000	1000	
+
+P 133  2952	*	3503	2754	6571	4279	5671	6772	3867	6856	*	3560	4386	3478	3334	4335	3549	6666	*	*	133
+       15	6635	*	3585	126	*	0	10484	1015	1000	
+
+A 134  2712	5853	5079	3334	4697	5091	*	4796	3859	3258	5103	5445	6798	3611	4398	4827	4947	3678	5112	4084	134
+       13	6764	*	4585	61	*	0	10465	1000	1171	
+
+F 135  4490	5717	*	*	2916	*	*	3004	*	1064	4863	*	*	*	*	*	6182	3209	5168	5890	135
+       13	6798	*	0	*	*	0	10465	1000	1171	
+
+E 136  3643	*	2395	1435	*	7141	6625	*	6753	5661	4844	3040	*	4395	*	4291	4696	5632	*	*	136
+       0	*	*	*	*	1578	589	10461	0	1355	
+
+K 137  2446	*	3228	3395	*	3973	6853	*	3075	*	6450	3555	5982	3444	3429	4053	5883	4339	*	*	137
+       0	*	*	*	*	*	0	10465	0	1171	
+
+V 138  4937	*	5089	3918	5673	4784	4152	4717	4121	2614	4453	6646	6602	2934	3126	5640	3955	4405	5640	4729	138
+       0	*	*	*	*	*	0	10465	0	1171	
+
+L 139  4343	4319	*	*	3692	6621	*	4929	5571	604	5814	*	6553	6868	*	*	*	4186	*	6742	139
+       80	4507	6689	1860	465	*	0	10465	1709	1171	
+
+K 140  2434	4926	3511	3718	6603	2485	*	5892	3553	4525	6739	5135	4991	4222	5676	3555	4772	5651	*	*	140
+       104	6157	4162	4248	78	917	1088	10422	1105	1577	
+
+S 141  3782	*	2887	3013	6630	4534	4592	*	2651	5253	6232	3917	6377	3681	3821	3600	5905	5087	6298	7230	141
+       1472	3534	854	1579	588	*	0	10403	2281	2186	
+
+H 142  3846	*	3845	5377	5615	3673	3102	*	3925	5224	*	3814	*	3391	2399	3540	4456	*	*	4595	142
+       591	1896	3889	2032	404	2583	263	8898	2850	8056	
+
+G 143  4105	6136	4098	5565	*	1178	5669	*	4132	5627	*	4079	*	4753	4904	3060	4474	6086	*	*	143
+       87	4635	5769	3173	169	185	3052	9225	1197	7599	
+
+Q 144  3681	6727	5327	4987	6680	2434	5066	5512	3173	5013	6755	4197	7183	3120	2751	3546	4737	6589	*	*	144
+       27	5778	*	754	1296	649	1465	10401	1336	2254	
+
+D 145  7115	*	3994	3270	*	3497	6556	6358	2935	4832	6731	7063	2116	3457	4121	4759	3808	4969	6293	*	145
+       29	5635	*	1029	971	1439	664	10452	1261	1350	
+
+Y 146  *	6701	*	*	1626	5913	6624	6722	*	4415	*	*	5045	5577	*	5496	*	*	2436	1621	146
+       23	*	5996	*	*	852	1165	10470	0	1149	
+
+L 147  *	*	5533	*	2885	6640	*	2752	*	1149	4352	*	6353	7225	*	5585	6476	3799	6626	4276	147
+       15	6629	*	4322	74	*	0	10446	1000	1241	
+
+V 148  3189	4188	4801	6591	2604	3884	6738	4345	6967	2620	3859	*	5514	6155	6653	6006	5201	2635	*	6751	148
+       24	6791	7044	3907	100	*	0	10465	1000	1241	
+
+G 149  5684	5671	4428	4446	*	529	*	*	6786	*	*	5123	4319	*	6855	4077	7228	6273	*	*	149
+       170	3474	5564	611	1535	1016	984	10468	2696	1376	
+
+N 150  3936	5443	1784	2281	*	3778	*	*	4095	*	*	3075	*	5721	5044	5110	3833	6628	*	7159	150
+       90	5483	4721	0	*	323	2318	10466	1206	1477	
+
+R 151  3667	7069	4467	2954	*	4807	4682	6762	2763	6158	6741	5183	*	3324	3043	3076	3696	5497	*	5760	151
+       14	6721	*	1000	1000	0	*	10459	1000	1640	
+
+L 152  5644	6787	6609	5747	2698	*	*	3085	7226	2282	3985	6624	1960	*	7036	6186	*	3586	6028	7055	152
+       0	*	*	*	*	*	*	10522	0	0	
+
+T 153  6429	5843	4615	*	*	3276	5312	*	7226	*	*	5281	*	*	*	1513	1303	6186	*	*	153
+       0	*	*	*	*	*	*	10522	0	0	
+
+R 154  2783	6729	*	4566	3785	6835	*	2685	*	2249	3886	6984	5866	4893	5670	5304	6429	3577	4829	4210	154
+       0	*	*	*	*	*	*	10522	0	0	
+
+V 155  702	5254	*	6662	6373	5246	*	5838	*	4446	*	*	5273	*	*	4022	6835	2844	*	6382	155
+       0	*	*	*	*	*	*	10522	0	0	
+
+D 156  4685	*	239	4155	*	*	6609	*	*	*	*	5621	*	6624	*	7226	*	6573	*	*	156
+       0	*	*	*	*	*	*	10522	0	0	
+
+V 157  3331	3900	*	6429	2675	*	6624	1862	*	2780	4071	*	*	*	*	*	5954	3003	*	4869	157
+       0	*	*	*	*	*	*	10522	0	0	
+
+H 158  2631	5169	5769	5566	3529	*	4844	4381	*	3052	3981	6614	6811	*	5735	3637	4148	2595	6766	3869	158
+       0	*	*	*	*	*	*	10522	0	0	
+
+L 159  2729	5551	*	*	4328	*	7081	3179	6186	1655	4456	*	*	*	*	4795	4036	2976	5165	4988	159
+       0	*	*	*	*	*	*	10522	0	0	
+
+L 160  2188	*	*	*	2403	3701	*	4042	6466	3650	5026	7534	*	6780	6186	5130	5950	3647	3689	3296	160
+       40	5178	*	2000	415	*	*	10522	1400	0	
+
+E 161  2929	3519	*	4473	5347	3341	6607	5548	7226	5844	5713	4937	1889	6766	*	4142	4417	3741	5590	5178	161
+       0	*	*	*	*	*	*	10522	0	0	
+
+L 162  2783	6766	5279	5164	3899	5685	5075	3458	6614	2807	4684	5961	6641	4812	5566	3959	3817	3574	4352	4581	162
+       0	*	*	*	*	*	*	10522	0	0	
+
+L 163  3609	6607	*	*	3300	6030	*	2976	7226	1292	4532	6749	*	*	*	6927	5195	3120	5653	5281	163
+       78	4511	6811	470	1846	*	*	10522	1754	0	
+
+L 164  3401	6713	2835	4338	4903	4804	4003	4014	5053	3676	6802	4307	5995	5340	3727	3475	3966	5608	5003	5413	164
+       0	*	*	*	*	*	0	10517	0	1000	
+
+Y 165  4304	6935	4874	6478	3985	4511	5107	5052	7104	3677	5529	3910	6647	2975	2979	6765	4170	4511	3185	3765	165
+       92	5853	4487	1000	1000	0	*	10517	1146	1000	
+
+V 166  3048	*	*	7168	3782	4657	4470	3417	*	1931	4217	7092	4585	5932	*	4567	5602	2744	5947	6447	166
+       119	3658	*	2637	253	*	0	10438	2191	1751	
+
+E 167  3492	6114	3174	3276	4746	4657	5581	6697	3280	3995	5149	5021	*	4379	2963	4377	4671	3707	*	6597	167
+       129	3669	7168	1837	474	315	2350	10438	2407	1751	
+
+E 168  3884	*	4228	6902	3993	5275	4359	4190	4163	3399	4574	6511	4806	5056	3666	3921	3490	3291	5249	4421	168
+       64	4811	6980	1797	490	*	0	10452	1471	1278	
+
+L 169  3705	5544	*	5536	3036	5101	6015	3475	5674	2546	5116	*	5460	5530	3890	6713	3776	3323	4401	3995	169
+       121	4007	5785	1932	438	2334	319	10450	2151	1741	
+
+D 170  4161	*	3611	3687	3707	1778	4996	*	5566	4312	6021	3641	3957	5100	5069	4105	6615	5916	*	6683	170
+       230	2943	5830	1838	473	2033	404	10442	3196	1944	
+
+A 171  4448	*	6638	4667	3901	3899	5759	4079	3943	3030	*	5297	2366	5023	3722	5670	5549	3602	6712	4414	171
+       281	3010	4242	996	1004	1281	765	10453	2996	1981	
+
+S 172  3530	5573	2691	2882	5713	3765	5258	*	4231	4966	*	4439	3482	6707	4658	3783	4374	3845	*	5456	172
+       220	4147	3557	1966	427	1571	592	10423	1974	2467	
+
+L 173  5549	6014	3858	4003	4287	6469	6523	2854	5019	2979	4033	5124	4059	6638	4282	4393	4834	4813	3660	4216	173
+       172	3633	4964	1792	491	352	2207	10345	2423	3472	
+
+L 174  5354	6523	4474	3664	3481	5209	*	3148	5265	2026	5605	6109	4493	5664	3538	4740	5108	4440	6542	4993	174
+       144	3528	6867	397	2057	715	1356	10499	2451	1993	
+
+T 175  3829	6962	3035	2274	5588	4553	*	*	3436	5531	5751	3921	4410	3968	3553	3429	4941	6732	*	*	175
+       109	5543	4277	1535	611	0	*	10518	1179	1434	
+
+P 176  3890	*	3235	3443	5053	2987	6740	5714	3370	7168	6517	3157	4365	3730	3940	3700	4768	6664	6590	*	176
+       42	5552	7093	0	*	2519	277	10443	1210	1861	
+
+F 177  5918	4442	5011	6625	2270	*	4061	6416	5077	3382	6840	6769	4026	*	3741	5024	5577	4737	4298	2338	177
+       15	6570	*	0	*	0	*	10428	1000	1866	
+
+P 178  3976	*	4587	5092	*	5779	6769	6014	4226	4638	*	4351	1104	5823	5132	3586	3549	*	*	*	178
+       0	*	*	*	*	*	*	10522	0	0	
+
+L 179  3603	*	4128	4831	*	4382	3848	4701	2462	4251	6518	3210	4888	4984	3178	3782	5677	5210	6729	6382	179
+       13	6760	*	0	*	*	*	10522	1000	0	
+
+L 180  5735	6819	*	*	4701	*	*	2520	*	1173	4859	4907	*	*	*	6201	4788	2470	*	5787	180
+       0	*	*	*	*	*	*	10499	0	0	
+
+K 181  3234	7521	5606	4375	5927	5924	4376	6619	3400	3649	4362	4332	*	3358	2914	4296	5092	3583	5483	4669	181
+       20	6178	*	1585	585	*	*	10499	1105	0	
+
+A 182  1753	6178	4124	4235	*	4042	5171	6781	2907	6750	*	5020	5684	5769	2309	4926	5246	*	*	6763	182
+       0	*	*	*	*	*	*	10499	0	0	
+
+F 183  4640	7133	*	*	3880	*	5125	6555	*	3017	5821	*	*	*	6289	*	*	4734	1235	2125	183
+       0	*	*	*	*	*	*	10447	0	0	
+
+K 184  4490	4759	6358	6289	3020	6161	4548	4018	5808	2629	4098	5712	*	5812	3873	4884	*	2985	5050	3077	184
+       0	*	*	*	*	*	*	10447	0	0	
+
+S 185  2824	*	3017	2392	*	5286	*	*	3388	4246	6643	3777	*	2835	3784	5080	4782	*	6762	*	185
+       0	*	*	*	*	*	*	10447	0	0	
+
+R 186  2514	5790	*	3913	5200	5595	5208	5178	3908	5103	*	3775	*	*	1473	4349	4409	6289	*	*	186
+       0	*	*	*	*	*	*	10447	0	0	
+
+I 187  5103	5041	*	*	3278	*	7518	2638	6687	2732	2515	5999	*	6531	6561	6570	6551	2023	6409	5628	187
+       0	*	*	*	*	*	*	10447	0	0	
+
+S 188  3367	6325	4510	2999	4631	4738	4887	4726	3841	3581	3492	5649	*	4241	3532	3865	4623	4713	*	5423	188
+       0	*	*	*	*	*	*	10366	0	0	
+
+S 189  2483	*	3609	2786	*	3503	6774	*	3836	*	6507	3761	*	3110	4692	3074	4745	6721	6474	6540	189
+       28	5706	*	0	*	*	*	10366	1202	0	
+
+L 190  6644	5977	5286	4804	5581	*	4195	4589	4997	2342	4746	4994	*	6725	1726	3835	4216	5669	5574	5490	190
+       63	4545	*	1000	1000	*	*	10334	1515	0	
+
+P 191  3905	*	3735	2862	5916	5653	6391	5152	5071	6527	*	*	1146	5357	5855	3679	6593	5527	*	*	191
+       17	6390	*	0	*	*	*	10218	1000	0	
+
+N 192  2080	*	6416	3017	6379	3456	5038	4957	4147	3701	6434	4823	4733	4548	6443	2939	*	5084	6923	5490	192
+       19	*	6257	*	*	*	*	10218	0	0	
+
+V 193  5025	*	6515	*	1965	6457	*	3192	*	3947	5255	*	*	6361	*	*	4209	1799	4659	3362	193
+       0	*	*	*	*	*	0	10198	0	1022	
+
+K 194  2633	*	*	3765	*	6781	6401	6089	2288	5505	5364	4787	5123	3407	2410	4498	4508	4538	*	*	194
+       14	*	6709	*	*	*	0	10023	0	1022	
+
+K 195  2444	*	4410	2691	5354	6401	6237	6372	2233	4689	*	5307	6244	3546	3995	3876	4845	*	6436	*	195
+       0	*	*	*	*	0	*	9979	0	1230	
+
+F 196  2777	5294	*	*	3348	4841	5213	5059	*	5080	*	6919	*	*	*	3949	3115	2002	5576	2736	196
+       14	*	6725	*	*	*	*	9768	0	0	
+
+L 197  4727	*	5878	4235	4532	*	4032	3479	4435	1747	4018	4543	5955	6188	5217	*	*	2935	5053	4975	197
+       72	*	4366	*	*	*	0	9632	0	1000	
+
+Q 198  2546	*	5681	3477	*	3711	5639	6039	3222	4687	*	4191	3644	3488	3990	3312	4173	5729	*	*	198
+       60	5667	5573	2474	286	465	1859	9367	1347	1657	
+
+P 199  3573	*	3535	2399	*	5496	5366	4435	3686	4614	5522	5437	3231	4568	3791	3327	5867	4431	*	*	199
+       0	*	*	*	*	1143	870	9071	0	1239	
+
+G 200  2196	*	4221	2728	4415	4264	5465	5463	4097	5920	5241	*	*	4266	3607	3401	5286	*	*	3693	200
+       0	*	*	*	*	0	*	8611	0	1041	
+
+S 201  3809	4891	3693	2663	*	4190	*	*	5160	3579	*	5173	2821	5126	*	2900	5315	5168	4173	4236	201
+       0	*	*	*	*	*	*	8463	0	0	
+
+Q 202  *	*	4653	1950	4841	4896	*	*	3390	4829	*	*	3714	3347	3359	*	2862	*	*	3427	202
+       0	*	*	*	*	*	*	7960	0	0	
+
+R 203  4731	4539	4483	3494	*	*	*	3448	2590	*	*	2937	*	*	2224	3081	4626	5324	*	*	203
+       0	*	*	*	*	*	*	7239	0	0	
+
+K 204  4317	*	*	4139	*	*	*	4305	3351	3449	*	4220	*	2270	2288	*	*	2906	*	4218	204
+       0	*	*	*	*	*	*	6726	0	0	
+
+P 205  5167	*	*	4420	*	4273	4139	*	3302	2663	4233	*	1332	4187	*	*	4254	*	*	*	205
+       0	*	*	*	*	*	*	6726	0	0	
+
+P 206  2366	*	2888	*	4734	*	*	*	*	*	3164	*	2372	*	2363	*	*	*	*	2898	206
+       0	*	*	*	*	*	*	6134	0	0	
+
+L 207  2239	*	3835	*	*	*	*	3751	*	3895	*	3087	2283	*	*	*	2835	*	*	3144	207
+       0	*	*	*	*	*	*	5942	0	0	
+
+D 208  *	*	3700	2611	*	*	*	*	*	*	3643	2128	2601	3634	2979	3676	*	*	*	*	208
+       0	*	*	*	*	*	*	5688	0	0	
+
+A 209  3700	*	*	3646	3634	2703	*	*	*	*	*	*	3557	3633	*	3611	1804	*	*	3733	209
+       0	*	*	*	*	*	*	5688	0	0	
+
+K 210  2581	*	3519	3616	*	*	3504	*	1954	*	*	*	*	2464	2873	*	*	*	*	*	210
+       0	*	*	*	*	*	*	5483	0	0	
+
+Q 211  3393	*	*	*	2386	3494	*	*	*	3455	*	*	*	3393	*	*	3372	4209	*	1797	211
+       0	*	*	*	*	*	*	5233	0	0	
+
+I 212  3365	*	*	2617	*	3184	*	3182	2236	3318	*	3227	*	*	*	3316	*	*	*	*	212
+       0	*	*	*	*	*	*	4950	0	0	
+
+E 213  *	*	2661	2425	*	2638	*	*	2606	*	*	2635	2558	*	*	*	*	*	*	*	213
+       0	*	*	*	*	*	*	3814	0	0	
+
+E 214  *	*	*	1279	*	2328	2372	*	*	*	*	*	*	*	*	*	*	*	*	2354	214
+       0	*	*	*	*	*	*	3437	0	0	
+
+A 215  1271	2373	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2372	*	2328	215
+       0	*	*	*	*	*	*	3437	0	0	
+
+R 216  *	*	1628	*	*	*	*	*	*	1665	*	*	*	*	1470	*	*	*	*	*	216
+       0	*	*	*	*	*	*	2400	0	0	
+
+K 217  *	*	*	*	*	1628	*	*	564	*	*	*	*	*	*	*	*	*	*	*	217
+       0	*	*	*	*	*	*	2400	0	0	
+
+V 218  *	*	*	*	*	1081	*	*	*	*	*	*	*	*	*	*	*	923	*	*	218
+       0	*	*	*	*	*	*	1788	0	0	
+
+F 219  *	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	219
+       0	*	*	*	*	*	*	1788	0	0	
+
+K 220  *	*	*	*	*	*	*	*	923	*	*	1081	*	*	*	*	*	*	*	*	220
+       0	*	*	*	*	*	*	1788	0	0	
+
+F 221  *	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	221
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  2a3d9802bfcbb4c8a6063b33f02f6538
+FAM   
+FILE  2a3d9802bfcbb4c8a6063b33f02f6538
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:04:17 2013
+LENG  132 match states, 132 columns in multiple alignment
+FILT  111 out of 603 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  5.2 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCCCCCEEEEEECCCCCEEEEEEEECCCCCCCCCCCCCCCCEEEEEEEECCCCCCCCEEEEEEEEEECCCCCCCCCEEEECCCEEEEECC
+CCCEEEEEEECCCCHHHHHHCHHHHHHCCCCC
+>ss_conf PSIPRED confidence values
+9875465111405768999945799848999998164684465776641879999998632676897888999987045204899789848888999959
+99893617853504998740348865223109
+>Consensus
+xxxxxxxxxxmIqxxTxlxVxDNSGakxvxcIxvxxxxgxxxrxxxaxvGDxIxvsVkkxxxxxkgxvxxAvIVrtkkxxxRxdGxxixFxxNaxVLinx
+kxxpxGtrIxGpvxxElrxkxxkixslaxxii
+>2a3d9802bfcbb4c8a6063b33f02f6538
+MEALGADVTQGLEKGSLITCADNTGARELKVISVHGYSGTKNRHPKAGLGDKITVSVTKGTPEMRRQVLEAVVVRQRKPIRRPDGTRVKFEDNAAVIVDE
+NEDPRGTELKGPIAREVAQRFGSVASAATMIV
+>gi|301353215|ref|YP_003795212.1| ribosomal protein L14 [Proteromonas lacertae]gi|301353235|ref|YP_003795232.1| ribosomal protein L14 [Proteromonas lacertae]gi|290573163|gb|ADD46350.1| ribosomal protein L14 [Proteromonas lacertae]gi|290573183|gb|ADD46370.1| ribosomal protein L14 [Proteromonas lacertae]
+----------MIQMNTILKVADNSGAKTVFCFKFPN--KLKHN--ATFFNEKAKVSIRSLRKRGslkikKGDIYTALVLRQKINLRRFNGSFIKFSNNSV
+ILFDPKKdnTPLGTRIFGIVNKELRLKkYLKIISLASCLI
+>gi|119614253|gb|EAW93847.1| hCG2041309 [Homo sapiens]
+-------------------------------------------------hGDG--HSQERQTRAQKKGTSSSGHLTTKVIW-RKDGVFLYFEGNAGVIIK
+NKDEMKGSAITGPVAKECADLWPRIAFNTGSIA
+>gi|260076070|gb|ACX30948.1| ribosomal protein L14 [Euplotes minuta]
+-----------IQRLTWLKVADSSQAQWLKTFHL--YGGFSRAV--SAVGDLVRGSVRVIQA--ipdpykgftvrrinKGRILAGIIIRQTYKAQLKSTT
+TVQAKTNGVVILKDDRSVLIKHVVGPCFSLL---------------
+>gi|32563935|ref|NP_495527.2| hypothetical protein F45E12.5 [Caenorhabditis elegans]gi|24418262|gb|AAA68795.2| Hypothetical protein F45E12.5b [Caenorhabditis elegans]
+-------PSMGIHRRTRLNVVDNSAlgkeadttGKLPYCIHVYKQGRRAKHMPHAELGDKILVAI-------RGQMRKAYVVGANThVHYRKHGVP-VTD
+QNMIVLLDEEGNPLGNRITAPIPTKLMAnrgnvQFSKVLALANKFI
+>gi|114329853|ref|YP_740757.1| ribosomal protein L14 [Tetrahymena malaccensis]gi|114150086|gb|ABI51666.1| ribosomal protein L14 [Tetrahymena malaccensis]
+----------MVQKETNLKPIDKCGVWSVRVFHLYG--GSFRK--QSYISNFVKVSVKKTRPNNwvpKKTKLKSIIVTGKNEIKKIDGSYIKFRSLNTVL
+LKKRLTPKGKILMGPVSVSLKRkKFL----------
+>gi|49147208|ref|YP_025801.1| ribosomal protein L14 [Pseudendoclonium akinetum]gi|33439223|gb|AAQ18760.1| ribosomal protein L14 [Pseudendoclonium akinetum]
+----------MLISRSKLIVKDNSGIILAQCIQVQRSKKSQK---PCKIGDFLKATVKKGSAKSqtqrlkkltgSERLRNLVVIQTKSALRRLDGGAIRF
+NANCGITVNERKLPLFKRVTSVVPFELKKKCNPVLNLARAVI
+>gi|1171600|emb|CAA64584.1| rpl14 [Plasmodium falciparum]
+----------MIYINSILDVIDNSGIFKFKYICTLN------KYKNPKYGDIVIGVVYSLYNNnlyKKSDKCKGILVQQKKFLNFKKYYSIKFNKNAVII
+INNKLNFVGTKSNNYISK-----------------
+>gi|224140519|ref|XP_002323630.1| predicted protein [Populus trichocarpa]gi|222868260|gb|EEF05391.1| predicted protein [Populus trichocarpa]
+---------------THLNVAYNSEVRELMF--------SNRR--YIYIGDVIIIVIKKVVPNSpleRFEVIRAVIMHTLKELKCDNSMIKRYNDNAT--
+-----------------------------------
+>gi|10802917|gb|AAG23665.1|AF288091_10 ribosomal protein L14 [Thraustochytrium aureum]
+----------MVYPETNVFIVDNSNVKEVRCVHVYN--QSSNN--FGSTGSFIIGVITKLKKNnlkstqKRGDLVKVLIVFTRKEKNniKGSGIFVKAPK
+NFGILFDKK-IAVGSRCKGVLPIKIKP-------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    3052	*	*	3994	*	*	*	*	*	*	981	*	4164	*	2844	*	*	3121	*	*	1
+       0	*	*	*	*	*	*	2875	0	0	
+
+E 2    *	*	*	3128	*	*	*	4106	643	4134	*	4000	*	*	3885	*	*	*	*	*	2
+       0	*	*	*	*	*	*	2875	0	0	
+
+A 3    3115	*	*	3121	*	2318	*	*	2896	4106	*	*	2391	*	3885	*	4164	4000	*	*	3
+       0	*	*	*	*	*	*	2875	0	0	
+
+L 4    3835	*	*	*	2846	*	*	1625	2817	4459	*	*	*	*	3461	4515	4584	3279	*	*	4
+       0	*	*	*	*	*	*	3004	0	0	
+
+G 5    4373	*	*	*	*	1839	*	*	3835	*	*	*	*	4459	2060	2160	4584	4275	*	*	5
+       163	3230	*	1826	478	*	*	3004	1077	0	
+
+A 6    2859	4633	*	4429	2346	2888	*	*	*	*	*	*	3655	*	*	2478	4486	4706	*	3297	6
+       0	*	*	*	*	*	*	3278	0	0	
+
+D 7    *	*	3754	*	*	3755	3368	*	3118	*	*	3936	*	*	1663	2741	3805	*	*	4735	7
+       53	4806	*	1000	1000	*	*	3476	1016	0	
+
+V 8    5044	*	*	5140	4039	*	*	1799	*	4119	4979	*	3903	*	4006	*	5064	1776	*	4243	8
+       0	*	*	*	*	*	*	3858	0	0	
+
+T 9    *	4830	5172	*	*	*	*	5706	3870	4242	*	*	3644	4573	3193	1440	2575	5107	*	*	9
+       0	*	*	*	*	*	*	4001	0	0	
+
+Q 10   4281	4651	*	*	*	*	*	*	2657	2528	4454	2911	5072	5382	1899	*	*	5298	*	4295	10
+       0	*	*	*	*	*	*	4060	0	0	
+
+G 11   4000	6015	*	*	5761	2320	6546	*	6216	*	839	*	*	6378	*	4697	4503	7141	5784	*	11
+       0	*	*	*	*	*	*	5096	0	0	
+
+L 12   *	6469	*	*	5657	*	*	717	*	1844	*	*	*	*	*	*	5140	4217	*	*	12
+       0	*	*	0	*	*	*	5372	1022	0	
+
+E 13   *	*	6073	7251	5602	4878	5279	3795	5197	4632	6049	5636	3670	1130	4662	5781	5832	5782	6126	3642	13
+       12	6894	*	0	*	*	*	5396	1000	0	
+
+K 14   4945	6563	7681	6352	6284	*	5585	4237	2065	2984	4398	5567	3889	4858	4380	4070	4359	2635	*	*	14
+       0	*	*	*	*	*	*	5420	0	0	
+
+G 15   *	5342	*	3151	5935	1604	*	*	3491	3815	5876	3720	*	2499	4367	5798	6772	*	*	6372	15
+       0	*	*	*	*	*	*	5420	0	0	
+
+S 16   3196	*	*	*	*	*	*	*	*	6705	*	*	*	*	*	1647	912	5031	*	*	16
+       0	*	*	*	*	*	*	5450	0	0	
+
+L 17   7104	6894	7425	4566	4529	5703	6201	3305	3156	3718	5170	4054	6705	4727	2693	7436	*	2858	5440	3132	17
+       25	5871	*	2000	415	*	*	5450	1084	0	
+
+I 18   6073	7302	*	*	3971	*	*	3541	*	712	4566	*	*	*	*	5437	*	2705	*	*	18
+       0	*	*	*	*	*	*	5450	0	0	
+
+T 19   6060	*	4397	5186	5104	5828	5560	5933	1894	7393	*	2092	6644	4485	3540	6142	3445	4792	*	4900	19
+       0	*	*	*	*	*	*	5450	0	0	
+
+C 20   *	2476	*	*	*	*	*	2283	*	6783	*	*	6044	*	6064	*	7353	812	*	*	20
+       0	*	*	*	*	*	*	5450	0	0	
+
+A 21   1423	6189	*	*	*	4583	*	2844	5933	4466	6898	6674	*	*	*	4054	3664	2406	*	5342	21
+       0	*	*	*	*	*	*	5450	0	0	
+
+D 22   *	*	54	*	*	*	*	*	*	*	*	*	*	*	*	*	5437	*	*	6201	22
+       0	*	*	*	*	*	*	5450	0	0	
+
+N 23   *	*	*	*	*	*	*	*	6044	*	*	151	*	*	*	5123	4166	*	*	*	23
+       0	*	*	*	*	*	*	5450	0	0	
+
+T 24   *	4783	*	*	*	*	*	*	*	*	*	*	*	5437	*	461	2224	*	*	*	24
+       16	6481	*	3000	193	*	*	5450	1010	0	
+
+G 25   5530	*	5693	4214	*	279	*	*	6552	*	*	6131	*	6184	*	5341	5812	*	*	*	25
+       84	4142	*	2686	244	*	*	5450	1285	0	
+
+A 26   812	*	*	*	*	3285	*	3578	*	4889	*	*	6032	*	*	6510	6064	2753	*	5597	26
+       37	5322	*	2257	339	*	*	5450	1096	0	
+
+R 27   6879	6032	*	*	5035	*	*	4344	1016	5005	*	5309	*	4401	2433	6588	4471	6632	4998	5934	27
+       0	*	*	*	*	*	*	5450	0	0	
+
+E 28   4982	*	*	3273	4884	*	5847	3042	2713	2364	5874	4194	4871	4764	5308	6045	4485	3828	4957	6039	28
+       0	*	*	*	*	*	*	5452	0	0	
+
+L 29   2420	*	*	*	5913	3962	*	3425	*	2590	*	*	3791	*	*	*	5847	1383	*	*	29
+       0	*	*	*	*	*	*	5452	0	0	
+
+K 30   6851	4343	*	3416	5279	5898	*	*	2194	3845	3378	5954	*	3089	2521	5137	*	5564	*	3963	30
+       0	*	*	*	*	*	*	5452	0	0	
+
+V 31   6045	885	*	*	5372	*	*	2302	*	5196	*	*	*	*	*	5874	4877	3042	*	5913	31
+       20	*	6202	*	*	*	*	5452	0	0	
+
+I 32   5838	*	*	*	3055	*	*	416	*	4653	*	*	*	*	*	*	*	3778	*	*	32
+       0	*	*	*	*	*	0	5434	0	1040	
+
+S 33   6296	5293	7036	*	*	2782	2912	*	1884	6911	6768	4901	*	2804	3759	2962	6864	*	*	*	33
+       12	*	6861	*	*	*	0	5434	0	1040	
+
+V 34   5254	*	*	*	4998	*	*	2556	5584	3607	6157	3979	*	*	*	5858	4432	966	*	5916	34
+       24	*	5893	*	*	*	0	5427	0	1084	
+
+H 35   *	6468	5455	*	4975	5169	5378	3859	3128	1558	6146	5108	4312	5922	5290	6252	*	6902	*	2306	35
+       196	5847	3187	945	1057	*	0	5398	1042	1163	
+
+G 36   *	*	5578	5265	*	1562	6885	*	2525	*	*	2810	4466	4706	2981	5199	4263	*	*	*	36
+       1149	*	865	*	*	3376	146	5342	0	1743	
+
+Y 37   *	*	*	*	6076	*	4343	3473	2323	5676	*	*	5077	4047	4288	3350	5229	4818	4899	1778	37
+       232	3911	3611	1544	606	*	0	4552	1052	3621	
+
+S 38   5237	*	*	*	4665	2791	3082	*	1398	*	*	5180	*	3835	4475	3039	5164	*	*	*	38
+       0	*	*	*	*	374	2129	4470	0	3718	
+
+G 39   4543	*	6335	*	*	907	5947	*	2853	*	*	4824	7204	5998	4908	3294	3966	*	*	*	39
+       120	*	3646	*	*	1507	625	5306	0	1673	
+
+T 40   4826	*	*	*	3592	5413	5452	*	3094	6503	*	3725	6582	5051	2222	2339	3862	4048	5244	5408	40
+       105	*	3837	*	*	1424	673	5335	0	1793	
+
+K 41   4381	*	*	*	4758	4701	4853	*	2173	3099	*	3056	4824	3774	2778	3903	4982	6940	6940	6124	41
+       21	*	6124	*	*	950	1052	5324	0	1768	
+
+N 42   4636	7171	4501	*	*	3414	5244	7223	2060	*	*	2820	5920	4622	1852	5176	5386	*	*	6092	42
+       56	*	4719	*	*	2479	285	5370	0	1411	
+
+R 43   5217	*	6335	*	5196	5774	4916	6987	2078	*	5934	4545	*	5942	1079	4195	5436	6533	*	*	43
+       1335	6211	761	0	*	*	0	5372	1010	1516	
+
+H 44   4683	*	*	*	5876	4341	4177	3161	*	1875	4110	*	*	4450	5063	5259	5377	4635	*	2114	44
+       480	*	1822	*	*	*	0	4582	0	3753	
+
+P 45   2946	4165	5463	*	*	4137	*	*	2802	*	*	3241	1041	*	*	*	*	*	*	*	45
+       0	*	*	*	*	385	2094	4104	0	4070	
+
+K 46   2875	7110	*	*	3892	4383	4527	4549	3977	4164	*	3734	4698	*	5533	4277	2898	3795	6276	2946	46
+       0	*	*	*	*	484	1810	5370	0	1802	
+
+A 47   765	5285	*	*	*	2545	*	5421	*	5256	6991	*	5873	*	*	4209	5057	4153	*	*	47
+       0	*	*	*	*	*	0	5418	0	1201	
+
+G 48   4077	*	6649	4806	5138	2335	7189	7254	2672	*	*	4339	5919	6476	3457	2500	3231	5267	*	5598	48
+       0	*	*	*	*	1812	484	5418	0	1201	
+
+L 49   5311	6397	*	*	4601	*	*	1742	*	3097	*	*	5157	6488	*	5362	4454	1396	*	5891	49
+       0	*	*	0	*	0	*	5410	1037	1130	
+
+G 50   5249	*	*	*	*	171	*	*	*	*	*	4656	6145	*	*	6069	5901	*	*	*	50
+       0	*	*	*	*	*	*	5482	0	0	
+
+D 51   6612	6798	399	4957	6145	*	6141	*	*	5878	*	4311	*	6587	*	4043	6660	*	*	6183	51
+       0	*	*	*	*	*	*	5482	0	0	
+
+K 52   5339	*	*	5643	3397	6305	6121	2577	3200	2714	3906	*	*	6696	4441	*	3284	2539	*	7076	52
+       18	*	6305	*	*	*	*	5482	0	0	
+
+I 53   4750	*	*	*	5394	*	*	993	*	5211	6041	*	*	*	*	*	*	1343	*	*	53
+       0	*	*	*	*	*	0	5458	0	1037	
+
+T 54   *	*	*	*	6118	*	*	2788	2470	2451	3658	*	*	*	3707	7055	3572	2120	*	*	54
+       0	*	*	*	*	0	*	5458	0	1037	
+
+V 55   2717	4907	*	*	*	3264	4464	3773	*	4569	6183	*	*	*	*	*	7167	918	*	*	55
+       0	*	*	*	*	*	*	5482	0	0	
+
+S 56   3104	*	*	*	*	*	*	5901	6108	*	*	*	*	*	*	1101	2470	2281	*	*	56
+       0	*	*	*	*	*	*	5482	0	0	
+
+V 57   5802	6664	*	*	*	*	*	1657	*	6928	*	*	*	6305	*	*	5857	697	*	*	57
+       17	*	6446	*	*	*	*	5482	0	0	
+
+T 58   *	*	*	6303	6619	5871	*	*	776	3925	*	5995	*	3099	3031	*	5057	6770	*	5939	58
+       32	*	5495	*	*	*	0	5462	0	1015	
+
+K 59   3857	*	3935	2767	*	4289	*	*	1330	*	*	7413	*	6319	3479	3284	5026	6183	*	6092	59
+       50	5545	6301	1256	783	*	0	5422	1060	1142	
+
+G 60   2552	5337	*	5997	*	2263	*	3241	4035	2768	5264	*	*	4656	*	3935	4027	3741	*	*	60
+       0	*	*	*	*	*	0	5399	0	1240	
+
+T 61   6445	*	5263	6706	*	*	5011	3974	1978	4935	5343	4529	6680	7228	2528	3391	3331	3644	*	4667	61
+       30	*	5605	*	*	*	0	5399	0	1240	
+
+P 62   3042	*	*	*	5334	5558	*	5629	3586	5015	6969	4914	1352	4393	3522	3640	5001	*	*	5702	62
+       219	4486	3380	2994	194	1565	595	5397	1216	1370	
+
+E 63   5053	*	3542	2743	7382	5239	4905	4773	2681	5667	7170	3104	*	3191	2980	4836	5002	5020	*	*	63
+       307	2563	5487	2902	207	*	0	5294	1677	1690	
+
+M 64   5342	4814	*	*	4728	3884	5132	4968	2581	2931	3670	4840	5101	4298	4884	2939	4427	5345	*	4419	64
+       1100	907	*	2308	325	816	1211	5279	3397	1783	
+
+R 65   5306	*	*	6311	*	*	*	5295	906	*	5810	*	*	6226	1810	4762	6329	6729	*	5168	65
+       39	6329	6139	1000	1000	1558	599	5418	1009	1319	
+
+R 66   6643	*	*	5970	6090	970	5224	*	2305	*	*	5973	*	*	4300	2709	*	*	*	*	66
+       0	*	*	*	*	*	0	5439	0	1251	
+
+Q 67   *	*	2641	2321	*	5340	6029	6712	2469	*	7209	6681	*	2109	4326	4135	4564	6377	*	*	67
+       11	7007	*	1000	1000	*	0	5439	1000	1251	
+
+V 68   *	5940	*	*	*	*	*	1825	3503	3097	5001	*	5130	*	*	*	5108	1295	*	*	68
+       0	*	*	*	*	1765	503	5439	0	1251	
+
+L 69   *	3477	*	7002	3588	5967	3019	4973	4769	3383	4993	5696	5989	7459	3395	4680	6375	2397	*	3220	69
+       20	6172	*	0	*	0	*	5446	1021	1163	
+
+E 70   7127	*	6898	7344	5091	6795	4414	*	1591	4777	*	3600	4089	5209	2353	4557	5951	*	5387	3680	70
+       0	*	*	*	*	*	*	5486	0	0	
+
+A 71   568	5722	*	*	*	2163	*	*	*	6009	*	*	*	*	*	4912	6048	5705	*	*	71
+       0	*	*	*	*	*	*	5486	0	0	
+
+V 72   6637	*	*	*	5903	6306	*	2145	*	2247	5629	*	*	*	*	*	*	1202	4712	5011	72
+       0	*	*	*	*	*	*	5486	0	0	
+
+V 73   *	6130	*	*	5998	*	6306	996	*	3618	*	*	*	*	*	*	*	1417	*	*	73
+       0	*	*	*	*	*	*	5486	0	0	
+
+V 74   *	6048	*	*	*	5722	*	1970	*	3901	6209	*	*	*	*	*	*	693	*	6394	74
+       0	*	*	*	*	*	*	5486	0	0	
+
+R 75   5722	6637	*	3981	4790	3834	5485	*	4607	*	*	*	*	3943	653	*	4756	*	*	*	75
+       0	*	*	*	*	*	*	5486	0	0	
+
+Q 76   5414	5550	*	6637	5452	*	7413	6130	*	3702	5311	*	*	2075	6003	3842	1209	4865	6552	*	76
+       21	*	6130	*	*	*	*	5486	0	0	
+
+R 77   4199	*	*	*	5441	*	*	6051	1050	5071	*	6443	5706	5278	1968	4176	6016	6384	*	*	77
+       33	5993	7248	348	2221	0	*	5465	1100	1022	
+
+K 78   4549	*	*	*	4464	*	5384	4700	1198	*	4682	5100	*	4472	3602	4062	5158	6296	*	3090	78
+       79	4867	5737	0	*	*	0	5488	1130	1000	
+
+P 79   4758	6926	*	2315	4478	4032	5500	6280	3437	6901	6106	3923	2407	4363	5688	3551	4234	5164	6810	*	79
+       16	6462	*	0	*	*	0	5466	1010	1100	
+
+I 80   7295	5638	*	*	4905	7378	4727	2492	4194	2731	6175	5683	6926	4033	4832	5181	3759	3483	4188	2944	80
+       65	7219	4745	0	*	628	1502	5466	1000	1100	
+
+R 81   5230	*	*	*	*	4779	5196	6325	2744	5219	5922	3531	3970	3183	1610	4433	5190	5244	*	5938	81
+       76	4917	5787	3163	171	801	1231	5418	1180	1228	
+
+R 82   *	6111	*	*	5292	*	*	5068	3144	5405	6498	6863	5981	5978	556	5761	*	6695	*	4887	82
+       9	*	7326	*	*	2016	410	5446	0	1165	
+
+P 83   4154	*	4501	4733	4446	5534	5271	4655	1816	3725	*	4710	3313	4703	4022	4405	5638	5230	5678	5866	83
+       22	*	6064	*	*	1016	984	5457	0	1162	
+
+D 84   6669	6728	924	*	*	6650	5339	5816	5262	6771	6512	2206	7241	6549	*	3531	5350	6617	*	*	84
+       9	*	7293	*	*	1790	492	5466	0	1146	
+
+G 85   *	*	6624	4944	*	337	*	*	5772	*	*	4496	6535	*	5879	4723	5557	*	*	5927	85
+       0	*	*	*	*	991	1009	5479	0	1129	
+
+T 86   5575	6497	*	5717	4451	5528	5756	3452	*	4720	3469	4615	*	4376	5903	1923	2870	3404	*	4546	86
+       29	6571	6776	0	*	0	*	5484	1003	1039	
+
+R 87   5967	*	*	7411	3353	5418	4413	3876	5639	4455	5986	4958	5022	5129	2800	3357	3641	3627	4181	3165	87
+       32	*	5494	*	*	0	*	5480	0	1006	
+
+V 88   5988	*	*	*	4952	*	*	1331	6202	2677	*	6705	3856	6874	*	6842	6768	2047	*	4734	88
+       14	*	6727	*	*	0	*	5438	0	1076	
+
+K 89   5355	6945	*	5387	6791	6660	*	5887	1987	6609	*	4744	*	4201	1783	2878	6484	4916	*	3598	89
+       0	*	*	*	*	0	*	5484	0	1000	
+
+F 90   4641	6048	*	*	278	*	6394	*	*	*	*	5957	*	*	*	5608	5196	*	6733	4844	90
+       0	*	*	*	*	*	*	5486	0	0	
+
+E 91   6048	*	1662	2153	6877	4400	6515	6776	5364	5119	*	2963	6233	4528	5225	3411	6749	*	*	*	91
+       0	*	*	*	*	*	*	5486	0	0	
+
+D 92   5344	*	1587	2435	*	5627	*	6869	2946	7049	*	3934	*	5657	3670	3409	5702	*	*	6130	92
+       0	*	*	*	*	*	*	5486	0	0	
+
+N 93   *	*	6144	*	*	*	*	*	*	*	*	111	6130	*	*	6782	4765	*	*	*	93
+       0	*	*	*	*	*	*	5486	0	0	
+
+A 94   1010	5377	*	*	6233	3401	*	*	5722	*	6464	3354	*	*	6000	2735	5513	4421	6827	*	94
+       0	*	*	*	*	*	*	5486	0	0	
+
+A 95   1965	3193	*	4757	5092	3926	*	3278	*	5880	5594	*	*	*	*	*	6209	1523	*	*	95
+       0	*	*	*	*	*	*	5486	0	0	
+
+V 96   3835	*	*	*	*	*	*	2076	*	4416	*	*	*	*	*	*	*	631	*	*	96
+       0	*	*	*	*	*	*	5474	0	0	
+
+I 97   6191	*	*	*	*	*	*	2139	*	530	7245	*	*	*	*	*	6003	4498	*	*	97
+       0	*	*	*	*	*	*	5474	0	0	
+
+V 98   *	6034	*	*	5006	5346	*	1745	*	1559	5697	*	*	*	*	*	6897	1924	*	*	98
+       0	*	*	*	*	*	*	5474	0	0	
+
+D 99   5962	*	2279	5609	*	6733	*	*	3219	*	*	1216	*	*	*	3971	2951	*	*	5879	99
+       0	*	*	*	*	*	*	5474	0	0	
+
+E 100  4521	*	2822	3639	*	7432	*	6718	1943	6828	*	2087	3358	6152	4159	4607	7238	*	*	*	100
+       100	4741	5072	2754	232	*	*	5474	1150	0	
+
+N 101  *	*	3479	3547	*	*	*	*	1444	5853	*	2558	*	2760	3965	6160	5353	6641	*	6664	101
+       44	5908	6240	1007	993	0	*	5438	1042	1116	
+
+E 102  *	6652	5575	4310	5005	1449	7046	5360	3169	3017	5340	2971	*	*	4421	7040	7156	*	*	4601	102
+       65	4494	*	234	2740	0	*	5445	1193	1016	
+
+D 103  5963	*	4258	2231	*	4942	7489	5858	2934	3563	*	2399	*	4584	6523	4169	3299	4368	*	*	103
+       48	4942	*	1585	585	*	*	5474	1116	0	
+
+P 104  5302	*	*	*	5295	6819	*	3905	*	2945	4592	*	758	*	*	5223	*	4280	*	4942	104
+       0	*	*	*	*	*	*	5474	0	0	
+
+R 105  5449	*	*	6704	5963	*	*	2556	2478	1791	4258	5879	*	5834	3294	*	*	3009	*	*	105
+       0	*	*	*	*	*	*	5474	0	0	
+
+G 106  4072	*	*	*	4875	257	*	4713	*	*	*	*	*	*	*	6192	6780	6819	*	*	106
+       0	*	*	*	*	*	*	5474	0	0	
+
+T 107  *	*	*	*	*	5624	*	*	3878	*	*	3384	*	*	4942	1944	955	7043	*	*	107
+       0	*	*	*	*	*	*	5474	0	0	
+
+E 108  4071	*	5846	3428	*	6819	6207	5028	3304	5704	*	7238	7043	6572	786	5160	6620	6167	*	*	108
+       0	*	*	*	*	*	*	5474	0	0	
+
+L 109  *	6237	*	*	4778	*	*	762	*	3617	*	*	*	*	*	5950	6167	2006	*	*	109
+       11	7043	*	2000	415	*	*	5474	1000	0	
+
+K 110  5366	*	*	5955	1908	*	6172	5675	2800	3587	4855	4261	*	7188	3135	4544	2902	5211	*	5505	110
+       10	7145	*	1585	585	*	*	5475	1000	0	
+
+G 111  5003	*	6150	*	*	302	*	*	*	*	*	5945	*	*	*	4156	6233	4333	*	6879	111
+       0	*	*	*	*	*	*	5475	0	0	
+
+P 112  5466	7145	*	*	5642	5803	*	3985	*	4136	6379	*	716	5344	*	6365	5685	3071	*	5945	112
+       0	*	*	*	*	*	*	5475	0	0	
+
+I 113  6903	6196	*	*	5015	*	*	1674	*	3040	6679	*	*	*	*	*	4731	1106	*	*	113
+       8	*	7485	*	*	*	*	5475	0	0	
+
+A 114  1761	6711	6229	*	4146	4597	6757	*	6147	4312	*	5832	1915	*	*	2973	3540	7402	*	6860	114
+       0	*	*	*	*	0	*	5480	0	1000	
+
+R 115  4858	*	*	5904	5955	*	4655	4508	1796	4808	*	5871	*	6586	1895	3301	5132	6372	*	3521	115
+       0	*	*	*	*	*	*	5480	0	0	
+
+E 116  5311	*	*	559	5597	5960	*	7038	3928	5209	5577	4168	*	5771	6863	5909	*	7143	4974	*	116
+       0	*	*	*	*	*	*	5447	0	0	
+
+V 117  3467	4833	*	*	3699	5340	6120	3700	*	981	*	*	*	*	*	*	5142	2771	*	*	117
+       43	*	5101	*	*	*	*	5447	0	0	
+
+A 118  2599	6400	*	5814	*	6601	*	5579	2551	7339	5646	5129	*	5491	1058	5920	6943	6058	7251	*	118
+       368	2150	*	143	3407	0	*	5339	2061	1094	
+
+Q 119  3664	*	3239	2479	*	5897	4415	4810	2529	4249	*	4054	4808	4302	4215	4502	4618	6193	*	6424	119
+       625	1551	6588	1110	898	*	*	5360	2436	0	
+
+R 120  5222	6431	3999	6970	*	3624	*	*	1238	4293	*	4077	*	6220	2274	4901	6433	6563	*	*	120
+       222	2896	6872	560	1636	1505	627	5248	1501	1037	
+
+F 121  4814	4100	*	*	1726	6491	4493	6998	6535	3510	7034	6403	*	*	*	*	*	*	2215	2272	121
+       0	*	*	0	*	826	1198	5199	1006	1050	
+
+G 122  3568	*	7250	*	4972	5879	*	3723	*	2578	3819	4072	2005	7030	*	3007	3718	5465	*	7153	122
+       0	*	*	*	*	0	*	5208	0	1000	
+
+S 123  5974	*	6782	5266	6236	7131	*	*	621	*	*	5609	5694	6894	2406	4585	*	*	*	*	123
+       0	*	*	*	*	*	*	5138	0	0	
+
+V 124  *	*	*	*	4953	*	*	949	*	2325	5149	6384	*	*	*	*	*	2251	*	*	124
+       0	*	*	*	*	*	*	5138	0	0	
+
+A 125  2491	6882	*	*	5343	4140	*	2850	6085	2090	4281	5030	*	*	5044	3874	6422	2851	*	6234	125
+       0	*	*	*	*	*	*	5138	0	0	
+
+S 126  2704	6258	*	*	5228	6403	*	*	4582	5633	*	4100	5334	6232	5734	877	5584	5487	*	5044	126
+       0	*	*	*	*	*	*	5138	0	0	
+
+A 127  4439	*	*	*	*	*	6474	2652	*	848	4217	4574	*	6097	5266	4176	5721	5852	*	*	127
+       0	*	*	*	*	*	*	5138	0	0	
+
+A 128  689	6428	*	*	*	4816	*	6097	*	*	*	*	*	*	*	2041	4234	5521	*	*	128
+       0	*	*	*	*	*	*	5138	0	0	
+
+T 129  4123	*	6000	5460	*	3186	6504	*	2963	4815	*	4656	2511	4354	3746	2287	4000	6196	*	*	129
+       0	*	*	*	*	*	*	5104	0	0	
+
+M 130  3883	6283	5016	2985	6058	3640	5705	3939	3206	6761	4699	4334	*	5497	3671	2916	4427	4406	*	4321	130
+       0	*	*	*	*	*	*	5068	0	0	
+
+I 131  6876	6767	*	*	3016	*	*	1380	*	3965	*	4559	*	6608	*	5527	4697	1878	*	5287	131
+       0	*	*	2000	415	*	*	4984	1022	0	
+
+V 132  3546	*	*	*	3606	6514	6789	1568	*	2861	6266	6066	*	*	*	*	*	1768	5982	*	132
+       0	*	*	0	*	*	*	4908	0	0	
+
+//
+�HHsearch 1.5
+NAME  2aaa64efe58cc449ac3f69c82cc966f0
+FAM   
+FILE  2aaa64efe58cc449ac3f69c82cc966f0
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:08:35 2013
+LENG  156 match states, 156 columns in multiple alignment
+FILT  113 out of 646 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  6.4 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCCCCCCCCCHHHHHHHHHHHHCCHHHHHHHHHHHHHHHHHHHCCCCHHHHHHHHHHHCCCCEEEEEEECCCEEEEEEEEECHHHHHHHH
+HHHHHHHHHHCCCCCHHHHHHHHHHHHHHCCCHHHHHHHHHHHHHHHHHHHCCCCC
+>ss_conf PSIPRED confidence values
+9998888757789996437899999999988563199999999999999998748858999999999658808999971198899995771799999999
+99999999756999889999999999980873777689999999999685620679
+>Consensus
+mxrxxxxxxxxxxxdxxxxxxxvxkxinxlmkxGKKxxAxxixxxalxxixxxxxxnpixilxxAixnxxPxxxvxxxrxggxxyqvPvxixxxrrxxlA
+irWiixaaxxrxxxxxxxxLaxEiixaxxxxgxaikkKxexhkxAxaNRaxxxxRw
+>2aaa64efe58cc449ac3f69c82cc966f0
+MARRRRAEVRQLQPDLVYGDVLVTAFINKIMRDGKKNLAARIFYDACKIIQEKTGQEPLKVFKQAVENVKPRMEVRSRRVGGANYQVPMEVSPRRQQSLA
+LRWLVQAANQRPERRAAVRIAHELMDAAEGKGGAVKKKEDVERMAEANRAYAHYRW
+>gi|87043010|ref|YP_492624.1| ribosomal protein S7 [Dictyostelium citrinum]gi|122074018|sp|Q2LCR8.1|RT07_DICCI RecName: Full=Ribosomal protein S7, mitochondrial; Short=MRP-S7; Short=S7mtgi|84682110|gb|ABC60375.1| ribosomal protein S7 [Dictyostelium citrinum]
+----------------------EKRLINAFMRKGNYIKAERIYFTVLNRLTTLGIQNPYKFLRETLIKMTPIMGVVKKKRGVKEKIYPKYLEPRMGEKYA
+IKWLLKKLEKSKGDLLINNIVDEFLKASKDQGEVLKEKWALY--------------
+>gi|119623074|gb|EAX02669.1| hCG18724, isoform CRA_a [Homo sapiens]
+----------------------------------------------------ISLQDYIAVkekytKQEPSAGSGecqhqmwPWEDSTYIEQAETVRQQD
+VDMSPLYHVNQAIWLLYTGTSEaafQNIKTITEYLADKLISIAKNSSnyYAIE-KNNLELMAKSNC-------
+>gi|336378070|gb|EGO19229.1| hypothetical protein SERLADRAFT_479598 [Serpula lacrymans var. lacrymans S7.9]
+-----------------PEDPLLQYLTSALLHHGHRAKAARMTSLTLLHIHAFTRAPPLPILREAIMAAAPAVRCMSHKHGSKNVAKPIALGEKQRVRTA
+VQMIIKASEKKNGKTIAERLAREMIAVVQGDSRALEERETIHRFAMVNRGNTLL--
+>gi|11465896|ref|NP_066445.1| ribosomal protein S7 [Ochromonas danica]gi|10505229|gb|AAG18411.1|AF287134_36 ribosomal protein S7 [Ochromonas danica]
+---------------------IYKNLLGNIIKRGKKVKAKLILNSSIEIVSSRLNSNSDILLQRLAQKIGSLVELRKIKIRKNVHIVPFPVKSYRRKFLF
+SKELVSYIFSdKKKTNSVEKLNFNIFSYLIKKGSNYNKKDATLKEVIINRSNIHYRW
+>gi|324309737|gb|ADY18518.1| ribosomal protein S7 [Phaeodactylum tricornutum]
+---------------------IKNKLTNHLTTSGKKTKGEKILFKSVKTIQRQSRKQVNSLIKLAIFSSSPVFKLHiltqKKRKKKKSKEIPAFmQSPQA
+RVSLSIKLIILSIRKRKLNNFSIGLGKEILLNANCKGETIKIKNKLQEQVFAKKHLLkYYRW
+>gi|319412297|gb|ADV41834.1| ribosomal protein S7 [Bigelowiella natans]
+-------------HDPLYKSWFFRKIIGGLPLKS-RSRNKALFRRALARLRHEhHSLDTPFALVWSIHKIRPLFWIRTVKKGKREYKIPFKLTPRGQYRR
+ALYWVVKSFRGRTEPRLETRLFLELKDLLDGKSKVFSWRDTLYNEVGRNRHNANFRW
+>gi|301500888|ref|YP_003795300.1| ribosomal protein S7 [Chromera velia]gi|300069434|gb|ADJ66542.1| ribosomal protein S7 [Chromera velia]
+------------------------FMVNRIQRRGCNSLARKIWSKTLLKVEKQLNRSIKDILEEIFRFLIPPVGITFLKKANQVTELPVIQPYYRAVPMA
+INWILEAARKKRGVKFVNALVTEFVDLYNFTGAASSQRNKYLR-------------
+>gi|11467069|ref|NP_042545.1| ribosomal protein S7 [Acanthamoeba castellanii]gi|1173306|sp|P46756.1|RT07_ACACA RecName: Full=Ribosomal protein S7, mitochondrialgi|562050|gb|AAD11838.1| ribosomal protein S7 [Acanthamoeba castellanii]
+---------------------------QGLTSRGKKKLSISIFKTLFLLLKFKYKRKFIDCYLQFLEKVRPLIYYKVMFIGGKKYKIPTLMPISKSYSTS
+IRWLINNADKR---DIATSLFSQINISLKNEGSLIKYRKEYHSASFENKSYIRF--
+>gi|301353213|ref|YP_003795210.1| hypothetical protein PROLAC_032 [Proteromonas lacertae]gi|301353237|ref|YP_003795234.1| hypothetical protein PROLAC_057 [Proteromonas lacertae]gi|290573161|gb|ADD46348.1| hypothetical protein PROLAC_032 [Proteromonas lacertae]gi|290573185|gb|ADD46372.1| hypothetical protein PROLAC_057 [Proteromonas lacertae]
+--------------------YILILFLNYLNKTGNKVLAESIIYRLLFLLKKTsltknsilfsQQESSLCILNQAFINVMPSFKLILKNkkeytvvsfqd
+likdhsillnkqqftdsknsnnknsfdLLNIITVIPVPLNLNTRCLKGCTFLFKSAVLhKNSFDFASKLYEELLLAYYSCGRSVYLKNEIDKIACIHRSN
+IKF--
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	*	*	128	*	*	*	*	*	4521	*	*	4596	1
+       0	*	*	*	*	*	*	4131	0	0	
+
+A 2    3044	*	*	4596	*	4973	*	*	*	*	*	4185	3334	*	4004	763	*	*	*	*	2
+       0	*	*	*	*	*	*	4131	0	0	
+
+R 3    *	*	*	*	*	*	*	*	2883	*	*	*	*	*	383	4185	4544	*	*	*	3
+       0	*	*	*	*	*	*	4131	0	0	
+
+R 4    *	*	*	4185	*	5230	*	*	1607	*	*	*	*	*	959	*	4596	4873	*	*	4
+       200	*	2947	*	*	*	*	4131	0	0	
+
+R 5    4931	3427	*	*	4767	2472	*	*	1890	*	*	3651	*	*	2317	3643	5205	*	*	*	5
+       163	3228	*	212	2869	0	*	3904	1247	1210	
+
+R 6    4730	4596	*	*	*	5107	4540	4953	3121	3273	*	4185	*	*	2298	3721	2441	4667	4624	*	6
+       0	*	*	*	*	*	*	4131	0	0	
+
+A 7    2066	*	*	4591	4057	*	*	5069	3462	3845	*	*	3541	4544	4624	3428	*	3163	*	3386	7
+       198	5069	3343	1000	1000	*	*	4131	1000	0	
+
+E 8    *	*	*	4155	4488	*	*	5034	1125	*	*	4944	4423	4384	3525	3469	5091	3704	*	*	8
+       0	*	*	*	*	0	*	3936	0	1165	
+
+V 9    5049	*	*	3645	*	*	*	*	1041	4806	*	5169	5291	4299	2570	*	3793	5416	*	*	9
+       103	3854	*	0	*	*	*	4260	1118	0	
+
+R 10   3652	*	*	*	*	*	*	*	2178	*	*	4299	*	*	858	*	3370	*	*	*	10
+       59	*	4638	*	*	*	*	4260	0	0	
+
+Q 11   4764	*	*	3314	4967	3399	5094	3293	2997	5408	*	3599	5034	4178	4108	4632	3555	3263	*	*	11
+       0	*	*	*	*	*	0	4214	0	1044	
+
+L 12   3494	4842	*	5074	5084	5159	*	2047	*	1984	*	*	5073	*	4760	4768	4351	3191	*	4938	12
+       0	*	*	3235	162	*	0	4387	1109	1044	
+
+Q 13   3802	*	*	4231	4248	*	*	4259	2593	1789	4082	*	4098	5620	*	3916	*	3170	*	*	13
+       296	5307	2642	0	*	0	*	4500	1000	1044	
+
+P 14   3237	*	*	5760	5653	5542	4426	*	4769	*	*	3427	1637	4461	*	4070	2273	*	*	5350	14
+       67	4468	*	2193	356	510	1748	5089	1057	1312	
+
+D 15   *	4142	794	4100	*	6720	4624	4902	5676	4318	5528	*	4105	*	*	4280	*	*	*	5396	15
+       0	*	*	*	*	*	0	5316	0	1043	
+
+L 16   4840	*	4455	4706	*	5871	*	6321	*	6591	*	5649	1196	5011	5539	1803	6063	5019	*	*	16
+       0	*	*	*	*	*	0	5372	0	1043	
+
+V 17   *	*	4747	4779	3705	5871	*	2170	2750	2739	5239	*	4975	3901	6163	*	4557	2940	*	*	17
+       117	5839	4048	0	*	*	0	5372	1000	1043	
+
+Y 18   3875	5988	*	*	1601	*	*	*	*	4713	*	5330	4555	4996	5655	5617	*	*	*	1288	18
+       28	5710	*	1750	509	636	1487	5397	1109	1250	
+
+G 19   *	5638	4798	3101	6089	3690	*	*	3696	*	*	2064	*	3476	2856	3834	*	6029	*	3246	19
+       22	6065	*	0	*	*	0	5668	1000	1043	
+
+D 20   6145	4831	1303	*	*	5340	4859	4473	4502	5612	5096	4065	*	6277	6301	1932	*	*	*	*	20
+       0	*	*	*	*	*	0	5893	0	1043	
+
+V 21   4463	*	6396	3461	5886	*	5676	5528	3861	3941	6377	4850	1565	5802	4499	4472	4880	4445	5256	4013	21
+       18	6343	*	3170	170	*	0	6103	1006	1043	
+
+L 22   6697	*	6655	5793	3628	*	*	2080	6635	1555	4939	*	*	5839	6796	6899	4339	2578	*	6615	22
+       0	*	*	*	*	0	*	6419	0	1043	
+
+V 23   5127	*	*	4451	4994	*	*	2391	4742	2244	5586	*	*	6754	*	6655	6374	1444	*	4808	23
+       19	*	6231	*	*	*	*	6468	0	0	
+
+T 24   3263	6837	4728	2626	*	5427	3698	6002	3107	4865	5709	3969	*	3812	4016	2801	4304	*	*	6508	24
+       20	6172	*	1000	1000	0	*	6505	1010	1020	
+
+A 25   7567	*	*	6524	4741	*	4419	7268	1314	4402	4184	5018	*	4422	2330	5137	4288	*	*	4936	25
+       0	*	*	*	*	*	*	6588	0	0	
+
+F 26   7042	6680	*	*	1477	*	*	3277	*	1368	4517	*	*	*	*	*	6983	3861	*	6343	26
+       0	*	*	*	*	*	*	6627	0	0	
+
+I 27   4866	*	*	5703	*	6767	*	1433	5170	3209	5900	*	*	*	*	5683	2623	2106	*	*	27
+       0	*	*	*	*	*	*	6627	0	0	
+
+N 28   6503	6343	5983	*	*	3499	6734	*	4532	6100	*	751	*	5408	3734	3617	5358	7283	*	*	28
+       0	*	*	*	*	*	*	6703	0	0	
+
+K 29   4783	4421	*	*	4046	4967	3420	4602	3669	2841	3435	4055	*	5343	2939	4598	5169	3967	*	5013	29
+       0	*	*	*	*	*	*	6703	0	0	
+
+I 30   *	4538	*	*	4032	*	*	2155	*	1022	3338	*	*	*	*	*	*	3643	*	*	30
+       0	*	*	*	*	*	*	6703	0	0	
+
+M 31   *	6411	*	*	6558	*	*	4070	*	2667	945	5634	4917	4478	*	*	3040	*	*	5526	31
+       0	*	*	*	*	*	*	6713	0	0	
+
+R 32   *	*	6890	*	5831	*	4456	4143	1354	3684	5593	5434	*	6006	2341	4294	4630	4402	7070	*	32
+       47	4977	*	3014	191	*	*	6713	1148	0	
+
+D 33   4368	*	2643	7313	*	4259	2890	*	2160	*	*	2945	6451	5046	3632	3713	4776	*	*	6735	33
+       103	3859	*	2525	275	*	*	6713	1399	0	
+
+G 34   *	*	*	*	*	47	*	*	*	*	*	*	*	*	*	5837	*	*	6083	*	34
+       56	5618	5837	1585	585	*	*	6748	1073	0	
+
+K 35   6395	6236	4643	5263	*	*	4642	*	620	6136	*	2956	*	6645	4333	6017	*	*	*	*	35
+       0	*	*	*	*	0	*	6693	0	1052	
+
+K 36   *	*	*	*	5289	6722	*	*	529	6649	*	6250	*	5360	2530	*	*	5977	*	4812	36
+       0	*	*	*	*	*	*	6748	0	0	
+
+N 37   2946	*	6997	3671	6125	4700	4649	3992	4237	5628	*	4264	*	3441	4577	2079	3384	4768	*	*	37
+       0	*	*	*	*	*	*	6748	0	0	
+
+L 38   5865	*	*	*	*	*	6231	4424	1687	1891	6125	5219	*	7264	3171	5612	4498	3068	*	*	38
+       30	5618	*	3585	126	*	*	6748	1073	0	
+
+A 39   539	6231	*	*	*	5510	*	5562	*	4972	*	5837	*	*	*	2651	5419	5410	*	*	39
+       0	*	*	*	*	*	*	6748	0	0	
+
+A 40   4318	*	*	1869	5054	*	4694	3504	4298	5954	6822	5545	*	3184	2844	5014	5109	5485	5618	3834	40
+       9	*	7319	*	*	*	*	6748	0	0	
+
+R 41   4447	*	*	5321	*	4342	6810	6025	1655	5176	6781	3369	*	4939	2230	3246	4457	*	*	7022	41
+       0	*	*	*	*	*	0	6753	0	1000	
+
+I 42   6226	*	*	*	5094	*	5443	1130	*	2169	4790	4831	*	*	*	5352	5034	3334	*	5076	42
+       0	*	*	*	*	*	0	6753	0	1000	
+
+F 43   *	4957	*	*	2613	*	*	3194	6227	1938	3426	*	6032	*	*	*	5141	2226	5096	4601	43
+       0	*	*	*	*	*	0	6719	0	1000	
+
+Y 44   5152	6087	5404	3998	3877	*	5014	5177	3506	4066	5237	3348	*	5308	3975	3334	4569	6482	*	2116	44
+       0	*	*	*	*	*	0	6719	0	1000	
+
+D 45   4722	*	3335	3492	*	3993	5332	5565	2204	4778	6818	3331	*	4248	2991	4033	4667	6845	*	5963	45
+       0	*	*	*	*	*	0	6719	0	1000	
+
+A 46   1335	*	*	*	*	*	*	3743	*	3285	5065	6016	*	*	*	2883	2639	3557	*	*	46
+       0	*	*	*	*	*	0	6719	0	1000	
+
+C 47   *	4383	*	*	1856	7127	*	3504	*	1337	3062	*	*	*	*	*	*	4230	*	6410	47
+       12	*	6870	*	*	0	*	6719	0	1000	
+
+K 48   4639	*	3573	2462	4335	7491	5018	4540	3218	2912	*	3627	*	4737	4163	3883	5937	5988	*	4295	48
+       0	*	*	0	*	0	*	6706	1000	1000	
+
+I 49   5622	6958	7384	4200	4823	7130	3663	2538	3568	2295	5458	3872	*	6588	4580	4371	4733	4653	*	4044	49
+       0	*	*	*	*	*	*	6714	0	0	
+
+I 50   4824	*	*	*	5980	*	*	1204	*	1635	4669	*	*	*	*	*	*	2705	*	*	50
+       64	5177	5998	2778	227	*	*	6714	1132	0	
+
+Q 51   3988	*	5077	3178	5715	6029	3441	7484	1600	5927	*	4647	*	3199	4054	3730	*	*	*	4873	51
+       56	5247	6419	3231	162	0	*	6716	1236	1056	
+
+E 52   4540	5980	5060	3341	5470	6144	4089	5846	1966	3959	6775	5366	5647	3677	3343	4327	3756	5291	*	*	52
+       35	7398	5788	1585	585	0	*	6698	1000	1003	
+
+K 53   3994	*	4654	3336	6586	5791	*	3186	1975	4222	4936	4621	*	3960	3556	5397	4178	5129	*	5496	53
+       339	2486	5009	3701	115	1328	733	6781	2200	1096	
+
+T 54   5459	*	5056	7385	5985	4929	5789	3321	3584	3449	6971	5342	7160	4147	6557	4582	1632	4911	*	3394	54
+       65	4690	7526	1581	587	1214	813	6748	1230	1271	
+
+G 55   *	*	*	3287	*	2728	5871	4853	2660	5852	*	2568	3430	4784	3091	4642	5453	4591	*	*	55
+       63	4557	*	3902	100	1125	885	6775	1287	1178	
+
+Q 56   4131	*	7367	3034	*	4912	*	3988	2258	2953	6952	5060	*	2800	3552	4657	5664	4208	*	*	56
+       23	5956	*	2950	200	1734	516	6764	1085	1064	
+
+E 57   7536	*	1879	6080	*	6920	6014	5861	4780	*	*	1331	3375	4969	5057	4598	6175	5666	*	*	57
+       0	*	*	*	*	*	0	6744	0	1023	
+
+P 58   3350	*	*	5941	6157	5912	*	5130	6096	*	*	*	717	*	*	3511	5355	4077	*	4959	58
+       9	7411	*	0	*	*	0	6744	1006	1023	
+
+L 59   *	*	5322	5550	4386	*	*	1773	5132	1675	4963	5496	5825	*	7009	6586	5435	3336	*	4073	59
+       0	*	*	*	*	*	0	6744	0	1023	
+
+K 60   4669	5563	3589	3322	5135	7539	4890	3998	3206	5067	6567	7366	3766	2616	4898	3550	4633	4027	*	6133	60
+       21	*	6113	*	*	0	*	6740	0	1023	
+
+V 61   4911	6203	*	*	4050	*	6936	1800	6276	2438	7637	*	*	6048	6878	*	5191	1723	*	4604	61
+       24	5897	*	2322	322	*	0	6770	1074	1050	
+
+F 62   6017	*	*	*	1844	*	*	2882	5897	1147	*	*	6159	*	*	*	*	4245	6135	5576	62
+       0	*	*	*	*	*	0	6770	0	1050	
+
+K 63   *	*	7021	3599	5338	*	2890	4638	2906	3783	6310	3964	6878	3532	3635	7085	4051	3038	6175	4366	63
+       0	*	*	*	*	0	*	6770	0	1050	
+
+Q 64   5888	*	3661	2932	5533	5941	5732	5575	2598	3657	5454	4906	6936	2481	4080	4793	4206	5621	5836	5629	64
+       0	*	*	*	*	*	*	6768	0	0	
+
+A 65   465	6475	*	*	5372	4317	*	4840	*	6007	*	*	5913	*	6183	3952	6635	4866	*	*	65
+       0	*	*	*	*	*	*	6768	0	0	
+
+V 66   6007	6874	*	*	4329	*	*	1334	*	1816	6154	*	*	*	*	5913	*	2218	*	*	66
+       0	*	*	*	*	*	*	6768	0	0	
+
+E 67   4827	*	3178	2321	4616	5267	5241	4349	3054	4422	6576	4867	*	4232	3189	4418	5835	5584	*	4264	67
+       0	*	*	*	*	*	*	6768	0	0	
+
+N 68   5630	*	5245	4762	6321	5336	*	*	2471	5167	6051	854	*	5480	5588	4772	6755	*	*	6170	68
+       0	*	*	*	*	*	*	6768	0	0	
+
+V 69   2737	3289	*	*	*	*	*	2667	*	3127	4632	*	*	*	*	3355	4906	1716	*	*	69
+       0	*	*	*	*	*	*	6768	0	0	
+
+K 70   2430	*	*	5346	*	4009	6041	4431	2558	6542	3843	6220	*	3888	3687	3310	2675	*	*	*	70
+       24	5913	*	2807	222	*	*	6768	1074	0	
+
+P 71   *	*	*	*	*	*	*	*	*	6411	*	*	111	6686	6592	5110	*	6251	*	*	71
+       0	*	*	*	*	*	*	6768	0	0	
+
+R 72   3859	6296	4653	6584	3973	*	5647	3218	5648	2156	5365	6798	5286	7039	3690	2940	7520	3047	5913	6017	72
+       20	6170	*	0	*	*	*	6768	1029	0	
+
+M 73   6805	4642	*	3069	3222	*	*	2994	*	2490	3339	*	*	*	*	*	*	1702	*	6051	73
+       0	*	*	*	*	*	*	6768	0	0	
+
+E 74   6092	*	4157	1360	*	2963	*	5191	3135	5129	7051	5440	*	5175	4567	6584	4706	4411	5836	5161	74
+       0	*	*	*	*	*	*	6768	0	0	
+
+V 75   6542	5683	*	*	4913	*	*	2777	*	2015	5636	*	6763	*	*	4333	3321	1511	*	6209	75
+       29	5638	*	2585	263	*	*	6768	1071	0	
+
+R 76   6682	*	*	6874	*	*	6484	4231	1730	6388	5537	*	*	4054	1821	7145	2928	3310	*	*	76
+       36	6484	6181	2000	415	*	*	6768	1007	0	
+
+S 77   4182	*	*	*	6311	5589	*	4889	2717	4920	6369	4874	4273	4670	3531	1879	2740	5034	*	5896	77
+       13	6833	*	0	*	0	*	6743	1123	1027	
+
+R 78   5159	7142	6489	6592	4954	*	6576	2497	3093	3665	5128	6109	*	5213	2418	6170	4601	2415	*	5167	78
+       17	6411	*	2807	222	*	*	6768	1018	0	
+
+R 79   6648	*	*	5913	6209	5567	*	4545	1525	5012	*	5627	4399	4843	1401	6388	5357	*	*	*	79
+       116	3693	*	2944	201	*	*	6768	1553	0	
+
+V 80   6069	*	*	*	*	5186	5683	2578	2314	4101	5882	4949	*	4227	2682	*	4285	2438	*	5878	80
+       22	6032	*	1585	585	*	*	6768	1040	0	
+
+G 81   3286	*	*	6763	*	818	*	6592	3914	6300	*	*	6923	*	3294	3219	6170	*	*	*	81
+       113	4067	6015	1309	745	*	*	6768	1367	0	
+
+G 82   3993	*	*	5929	5650	710	*	6582	4159	*	*	4229	*	*	5048	3646	5684	5205	*	6259	82
+       0	*	*	*	*	0	*	6732	0	1041	
+
+A 83   3617	*	*	*	*	*	6188	3648	2048	7125	5813	4046	*	4260	3008	2654	3571	3679	*	*	83
+       0	*	*	*	*	*	*	6768	0	0	
+
+N 84   4961	*	5475	4836	5026	*	*	4125	3415	5387	5894	2998	6475	*	4626	3365	1957	2743	7165	*	84
+       43	5102	*	0	*	*	*	6768	1154	0	
+
+Y 85   4834	*	*	*	4809	*	5151	4812	4377	3510	*	*	*	3800	4278	5090	4164	3857	6170	1190	85
+       61	5540	5638	0	*	*	*	6768	1098	0	
+
+Q 86   5502	*	5555	4330	4247	*	*	4880	3079	4693	6466	5939	4430	1396	3790	6098	5176	3942	7127	5472	86
+       0	*	*	*	*	0	*	6749	0	1071	
+
+V 87   6682	*	*	6388	4578	*	*	1730	3827	4035	*	*	*	5161	4917	*	5996	1334	*	5050	87
+       12	6965	*	1000	1000	*	*	6768	1000	0	
+
+P 88   4162	*	5913	*	6170	*	*	*	*	6542	*	*	236	5743	*	4819	*	*	*	*	88
+       0	*	*	*	*	*	*	6768	0	0	
+
+M 89   3688	*	*	*	3487	6823	6803	3028	4697	5907	4979	6475	*	*	4999	4614	3652	1405	*	3936	89
+       0	*	*	*	*	*	*	6768	0	0	
+
+E 90   3008	6176	3229	2726	4443	6153	*	3698	4561	4076	*	*	1888	*	*	4924	5875	5890	*	5144	90
+       29	5667	*	0	*	*	*	6773	1066	0	
+
+V 91   *	*	*	*	7047	*	*	1676	5465	1812	4521	*	*	5405	*	5183	4398	2120	*	*	91
+       0	*	*	*	*	*	*	6773	0	0	
+
+S 92   4263	6807	6174	5009	*	3973	5712	*	2994	6589	*	3142	3528	5062	4384	1818	3233	7047	*	*	92
+       0	*	*	*	*	*	*	6773	0	0	
+
+P 93   4368	*	3950	2559	*	7460	6042	4998	5799	3568	*	5936	1822	4992	4979	3158	5363	5040	*	4884	93
+       9	7366	*	0	*	*	*	6773	1000	0	
+
+R 94   5364	*	5006	3303	6425	*	5700	5241	2504	4293	6596	2829	5077	4336	2663	3598	6947	5846	*	3999	94
+       0	*	*	*	*	*	*	6773	0	0	
+
+R 95   5540	6695	7349	5006	*	5845	6486	6903	2496	*	6646	5109	*	2733	1093	6984	6306	5481	*	5934	95
+       0	*	*	*	*	*	*	6773	0	0	
+
+Q 96   2898	7349	*	*	*	3441	5934	*	5665	*	*	*	*	2403	1257	3010	*	*	*	*	96
+       0	*	*	*	*	*	*	6773	0	0	
+
+Q 97   *	5596	*	3387	5686	*	7332	2869	4251	2984	5783	4711	*	3404	3477	*	3148	2995	*	3979	97
+       0	*	*	*	*	*	*	6773	0	0	
+
+S 98   4258	*	3852	*	2728	5246	5446	5781	3497	4857	6174	3121	5450	*	2787	3139	3311	7464	*	5601	98
+       0	*	*	*	*	*	*	6773	0	0	
+
+L 99   *	*	*	*	4785	*	6951	3361	3724	1028	5088	7117	*	3593	4219	6831	3936	6301	*	4953	99
+       12	*	6952	*	*	*	*	6773	0	0	
+
+A 100  475	*	*	*	6007	2827	*	*	*	*	*	*	*	*	*	3760	*	4311	*	*	100
+       0	*	*	*	*	*	0	6766	0	1000	
+
+L 101  6184	5390	*	*	4801	*	*	1240	*	1922	2764	7158	*	*	*	5351	6049	5698	5261	*	101
+       20	6181	*	474	1837	0	*	6766	1090	1000	
+
+R 102  *	7117	6710	6809	7349	5786	*	4719	1568	5799	6927	4739	*	4411	1527	6552	5171	6934	4595	5097	102
+       0	*	*	*	*	*	*	6773	0	0	
+
+W 103  *	*	*	6012	3632	*	*	*	6221	3477	5778	5533	*	*	6169	5106	6969	6487	537	6684	103
+       0	*	*	*	*	*	*	6773	0	0	
+
+L 104  *	*	*	*	5107	*	*	1250	*	1204	3900	*	*	*	*	5321	*	5350	*	*	104
+       0	*	*	*	*	*	*	6773	0	0	
+
+V 105  4029	6473	*	*	5815	*	*	1976	4745	1758	6211	6184	*	6478	4952	5699	5088	2421	*	5934	105
+       20	*	6184	*	*	*	*	6773	0	0	
+
+Q 106  4725	*	3212	2228	*	5432	*	6288	2144	5501	7626	4499	*	3556	5532	3894	3219	6384	6161	*	106
+       0	*	*	*	*	*	0	6749	0	1027	
+
+A 107  1370	6226	6491	4868	7641	2939	6470	6155	5962	5757	*	3975	*	6581	*	3029	4908	3975	*	3930	107
+       20	6161	*	1000	1000	*	0	6749	1030	1027	
+
+A 108  1305	3547	*	*	5839	5123	*	4266	5962	4673	6665	*	6161	*	*	2352	3818	3933	*	*	108
+       0	*	*	*	*	*	0	6749	0	1027	
+
+N 109  5746	*	4699	4230	5291	*	6470	5472	2189	4271	6035	3838	*	7487	1505	4651	6288	5414	6810	5008	109
+       49	4906	*	1039	962	*	0	6749	1203	1027	
+
+Q 110  5733	*	5031	2772	6792	4658	*	6256	1614	3666	*	3498	*	3902	4168	3587	6550	5357	7035	*	110
+       290	2457	*	1367	708	0	*	6726	2197	1027	
+
+R 111  7512	*	*	6671	6661	5600	6760	6180	1417	5814	*	4597	*	4840	1218	7540	6897	6504	*	6927	111
+       124	4099	5390	2269	335	*	*	6748	1391	0	
+
+P 112  4166	*	6111	7169	5974	5175	5385	6582	2368	*	*	2559	3220	5888	3763	2340	4164	5039	*	*	112
+       148	3544	6400	1304	749	2122	376	6704	1595	1157	
+
+E 113  5847	*	3461	2743	6345	2111	4585	5116	3215	5024	*	5696	4726	*	3831	3233	4896	6945	*	6132	113
+       196	3044	7436	1429	670	*	0	6685	1816	1188	
+
+R 114  6915	*	5608	4018	6230	6441	5706	4728	1757	4661	4527	3416	5737	4848	2875	3719	4220	4799	*	*	114
+       74	4322	*	574	1608	1669	545	6696	1316	1228	
+
+R 115  6998	6612	3726	5013	5015	4814	5236	*	3769	4519	6882	3385	3531	5087	3492	2313	2776	*	*	6777	115
+       16	6497	*	1714	524	2337	318	6766	1061	1134	
+
+A 116  3818	*	*	*	1738	*	*	2381	5434	2895	2443	*	*	*	*	5266	5000	5528	*	5876	116
+       0	*	*	*	*	987	1013	6717	0	1093	
+
+A 117  2357	6973	4755	4055	*	4629	4651	4044	4425	6409	6982	*	3367	5390	5986	2920	4985	3403	4123	4627	117
+       0	*	*	*	*	*	0	6734	0	1009	
+
+V 118  5315	*	4101	1989	*	*	4556	3601	3673	4551	5801	3187	5716	4088	6297	4223	4734	3628	*	5138	118
+       0	*	*	*	*	0	*	6734	0	1009	
+
+R 119  3100	4613	6415	*	5884	5386	6197	4905	1749	5612	7149	4267	*	7184	2334	3769	4933	4986	*	5425	119
+       25	5889	*	3243	161	*	*	6748	1068	0	
+
+I 120  *	*	*	*	6760	*	*	2884	*	308	6916	*	6145	*	*	*	*	5307	*	*	120
+       0	*	*	*	*	*	*	6748	0	0	
+
+A 121  1160	6084	*	5304	5023	3560	5250	*	*	6013	*	5341	*	6795	5626	2984	4380	3725	*	4287	121
+       0	*	*	*	*	*	*	6748	0	0	
+
+H 122  3935	*	3019	3294	5318	5266	4749	5451	3104	3732	6594	2745	*	4139	4840	4287	4396	5145	7165	5542	122
+       0	*	*	*	*	*	*	6748	0	0	
+
+E 123  6504	*	*	228	*	*	*	6514	5059	*	*	4545	*	5097	*	6984	7194	7040	*	*	123
+       0	*	*	*	*	*	*	6748	0	0	
+
+L 124  *	6273	*	*	3716	*	*	1254	*	1296	5781	*	6955	*	*	6172	*	4498	*	*	124
+       0	*	*	*	*	*	*	6748	0	0	
+
+M 125  5558	*	*	*	4047	*	*	1766	5335	1845	4014	6231	*	6077	*	4573	6514	3099	6945	4232	125
+       0	*	*	*	*	*	*	6748	0	0	
+
+D 126  2587	*	1787	3538	*	6066	*	6231	4899	3203	6172	3322	*	3860	*	3379	6856	*	*	*	126
+       0	*	*	*	*	*	*	6748	0	0	
+
+A 127  765	*	*	6202	*	*	*	3921	*	3820	*	6469	*	*	*	4043	4241	3050	*	6016	127
+       0	*	*	*	*	*	*	6748	0	0	
+
+A 128  2332	*	*	*	3960	*	4639	4095	5302	2756	*	*	*	5547	*	2194	6037	4046	*	2743	128
+       10	7184	*	0	*	*	*	6748	1000	0	
+
+E 129  4724	5979	4280	3663	6604	*	4201	6016	1999	4900	*	2200	*	3366	4143	5003	5162	*	*	5524	129
+       0	*	*	*	*	*	*	6748	0	0	
+
+G 130  6742	6469	5034	5350	6344	2035	5575	5292	2772	5294	*	1603	*	6206	5223	4053	5658	*	*	*	130
+       0	*	*	*	*	*	*	6748	0	0	
+
+K 131  *	6284	3506	3009	*	5626	6658	5140	2314	6172	4833	3641	*	2706	3651	4205	3335	*	*	*	131
+       82	4171	*	1000	1000	*	*	6748	1329	0	
+
+G 132  6066	6827	5548	6172	*	632	*	6202	*	*	*	5492	6934	5549	*	2119	*	*	*	*	132
+       131	3525	*	1501	629	*	*	6748	1558	0	
+
+G 133  2893	*	5794	3380	4958	4083	*	6273	2757	5077	5807	3463	5361	6436	3927	2922	4468	*	*	3604	133
+       20	6202	*	2000	415	*	*	6748	1027	0	
+
+A 134  1020	5519	*	*	*	6051	*	5400	*	4616	*	5014	5561	6172	*	3319	3460	2753	*	*	134
+       0	*	*	*	*	*	*	6748	0	0	
+
+V 135  7501	5379	*	*	3549	*	*	1833	6730	2633	5277	*	*	*	4045	6344	5440	2046	5780	4279	135
+       0	*	*	*	*	*	*	6748	0	0	
+
+K 136  5599	*	5050	3808	*	4572	*	*	1372	*	6508	3890	*	3674	2943	3797	4375	5794	*	5352	136
+       40	6478	5924	0	*	*	*	6748	1012	0	
+
+K 137  6004	*	*	3931	*	*	6376	4682	926	4680	6951	*	*	4389	3106	6096	5082	6531	5316	4305	137
+       0	*	*	*	*	0	*	6659	0	1074	
+
+K 138  6568	6548	*	*	6638	*	*	*	756	6536	*	*	*	6104	1669	*	6491	6160	*	6403	138
+       0	*	*	*	*	*	*	6710	0	0	
+
+E 139  6558	*	2516	1694	*	*	4522	5066	3675	4386	7672	3507	*	3520	5259	*	6708	5641	5278	4487	139
+       0	*	*	*	*	*	*	6710	0	0	
+
+D 140  4083	*	2836	1318	*	*	*	*	3614	5664	6610	4070	*	3361	5583	4103	4612	6453	*	*	140
+       0	*	*	*	*	*	*	6726	0	0	
+
+V 141  *	*	*	*	5463	*	6387	2820	5142	1543	3351	4514	*	4835	6631	*	3434	3235	6064	4277	141
+       0	*	*	*	*	*	*	6726	0	0	
+
+E 142  6869	*	6187	2849	6902	*	1027	5652	6493	4328	*	5078	*	5199	4511	6366	*	6596	*	2879	142
+       18	*	6294	*	*	*	*	6726	0	0	
+
+R 143  *	*	*	4609	*	*	7268	*	903	4869	*	4472	*	5594	1841	4688	*	*	*	*	143
+       0	*	*	*	*	0	*	6607	0	1021	
+
+M 144  4489	*	*	4060	5768	*	*	3384	4250	2213	2152	4542	*	3697	*	5695	3501	4954	*	5149	144
+       13	*	6845	*	*	*	*	6579	0	0	
+
+A 145  467	3649	*	*	*	5771	*	6596	6655	7111	*	*	*	5629	*	4524	6645	3689	*	*	145
+       0	*	*	0	*	0	*	6572	1000	1000	
+
+E 146  3992	6090	3807	1378	4108	4871	6725	4569	4333	4203	4321	*	*	4836	6732	4634	4878	4975	*	5793	146
+       0	*	*	*	*	*	*	6579	0	0	
+
+A 147  1469	*	7217	4890	*	5507	6228	4640	*	4378	6564	4713	5851	4513	4737	2234	3908	4371	*	*	147
+       0	*	*	*	*	*	*	6576	0	0	
+
+N 148  3770	*	*	*	6172	6541	4627	7081	4975	7112	*	508	*	6255	*	4129	6663	5704	*	6278	148
+       23	6012	*	2807	222	*	*	6576	1027	0	
+
+R 149  *	5671	*	*	*	*	6962	*	2238	6209	*	6530	*	4559	543	7135	*	*	*	*	149
+       0	*	*	*	*	*	*	6505	0	0	
+
+A 150  1232	*	*	*	*	4244	4383	4353	5529	5397	6800	6112	5034	6540	4361	2583	4289	4699	*	6753	150
+       0	*	*	*	*	*	*	6310	0	0	
+
+Y 151  *	*	*	*	1749	*	6108	5924	*	3089	*	2054	*	*	5310	5397	*	*	*	1920	151
+       0	*	*	*	*	*	*	6310	0	0	
+
+A 152  1377	*	*	*	5464	*	5387	2359	5980	3802	5320	*	*	*	6673	3116	4823	3561	*	5997	152
+       44	5062	*	2179	360	*	*	6199	1089	0	
+
+H 153  6571	*	*	*	*	*	1154	5500	3388	5575	*	2894	5167	4904	3297	6382	*	*	*	3441	153
+       0	*	*	*	*	*	*	6126	0	0	
+
+Y 154  6698	6328	*	*	1970	*	*	5184	5406	3194	6313	*	6392	6177	5802	4546	*	4783	*	1228	154
+       21	6099	*	1000	1000	*	*	6071	1003	0	
+
+R 155  6406	*	*	*	*	4878	6132	*	3791	*	*	4686	*	*	271	*	*	*	*	*	155
+       39	5218	*	1000	1000	*	*	5570	1050	0	
+
+W 156  4632	*	*	*	2910	*	*	4545	5752	6272	*	*	*	5202	*	*	*	5099	561	5802	156
+       0	*	*	0	*	*	*	5499	0	0	
+
+//
+�HHsearch 1.5
+NAME  2b78356947507e56ed56d054e1215b8c
+FAM   
+FILE  2b78356947507e56ed56d054e1215b8c
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:10:25 2013
+LENG  120 match states, 120 columns in multiple alignment
+FILT  108 out of 1047 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  10.5
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCEEECCHHHHHHHHHCCCEEEEEEECCCCHHHHHHHHHHHHHHHHHHHCCCCEEEEEEECCCCHHHHHHCCCCCCCEEEEEECCCEEEEEEEC
+CCCCHHHHHHHHHHHHCCCC
+>ss_conf PSIPRED confidence values
+9977899839938899999985699299999899986899999999999999773088689999976668999998499853389999899178999953
+88999999999998655899
+>Consensus
+xxxxxxxxxxxxxxxxxxxxxxxxxxxvvxfxxxxCxxCxxxxxxlxxxxxxxxxxxxxixxxxxdxxxxxxxxxxxxixxxPxxxxxxxgxxxxxxxxx
+gxxxxxxxxxxixxxxxxxx
+>2b78356947507e56ed56d054e1215b8c
+DAPEEEDHVLVLRKSNFAEALAAHKYLLVEFYAPWCGHCKALAPEYAKAAGKLKAEGSEIRLAKVDATEESDLAQQYGVRGYPTIKFFRNGDTASPKEYT
+AGREADDIVNWLKKRTGPAA
+>gi|239636570|ref|ZP_04677572.1| thioredoxin [Staphylococcus warneri L37603]gi|239597925|gb|EEQ80420.1| thioredoxin [Staphylococcus warneri L37603]
+-----------SIEIDDVTENFGEEKHLIFGYTPTCGTCKVSE----RMLDIANEILK-LPVKKIDMNFHPKFSETHQIMSVPVLMLMNKD---------
+--------------------
+>gi|71020229|ref|XP_760345.1| hypothetical protein UM04198.1 [Ustilago maydis 521]gi|46099969|gb|EAK85202.1| hypothetical protein UM04198.1 [Ustilago maydis 521]
+----SSQGFIDVDTNE-fSQII-QVPrdyAVTALLTTttGGikC-pPCQVFQPE--feK-lAQQWNknkSVKSKNVFI--kaEFSRAQGVFARYQLQHAP
+VLYTFpAPtASNgspd--HVSFDfneRSFSAPDVADHLNKL-lN---
+>gi|313898805|ref|ZP_07832339.1| putative bacteriocin transport accessory protein [Clostridium sp. HGF2]gi|312956387|gb|EFR38021.1| putative bacteriocin transport accessory protein [Clostridium sp. HGF2]
+---DEPGRVENITVAKMQEMVDKKESFAIVFTQTTCSHCIEFKKMLDGYLL-----DHNVVLYDVVLDEAPASQRKSDLNtirktfpgmnETPSLYYVKE
+GK--LENLLEngdDGLTEEKFDSWVQRY-----
+>gi|256421245|ref|YP_003121898.1| alkyl hydroperoxide reductase/ Thiol specific antioxidant/ Mal allergen [Chitinophaga pinensis DSM 2588]gi|256036153|gb|ACU59697.1| alkyl hydroperoxide reductase/ Thiol specific antioxidant/ Mal allergen [Chitinophaga pinensis DSM 2588]
+DKPAPGFALRDLNGKKWSLKNLKGKVVVLNFWFVTCPPCIQEMPELNELTKDYQSKEVVFLAMTYNDKEevtdfledhtfdynllvdSHDTDQAYNVASW
+PVSFVIdKEGIVKFVVKGGQATIRQQLTKAIEQVL----
+>gi|317121579|ref|YP_004101582.1| hypothetical protein Tmar_0740 [Thermaerobacter marianensis DSM 12885]gi|315591559|gb|ADU50855.1| hypothetical protein Tmar_0740 [Thermaerobacter marianensis DSM 12885]
+------------TVADLERALRDPQPVMIFKHSTACPISARAYRAFRQFVARQpAAARYYLVQVIEQRPLSNEIARRLGVPhASPQVLLWHRGA-VRWHA
+SHGAITERALATALAAVRAP--
+>gi|302348009|ref|YP_003815647.1| Protein-disulfide oxidoreductase [Acidilobus saccharovorans 345-15]gi|302328421|gb|ADL18616.1| Protein-disulfide oxidoreductase [Acidilobus saccharovorans 345-15]
+------------LIKELKDTLAymVSPVTVDLFIDdASrCETCEDAYKLVKTIADASPVRDGKKMLQLRVFSKskpeDLEEFKRQNVERVPTVTLLGGV-
+----IRYTGTPAGEEIRGFIETIMR---
+>gi|70726027|ref|YP_252941.1| hypothetical protein SH1026 [Staphylococcus haemolyticus JCSC1435]gi|68446751|dbj|BAE04335.1| unnamed protein product [Staphylococcus haemolyticus JCSC1435]
+------------SDDRINQLKDSSYSKVLVISEDWCGDAMMNLPILKRISES-----LQLEVRVFHRDEDTNLIDQYltnGtARSIPIFIFMNDQF--EQ
+VSVWGPRA-REAQEFVTQ------
+>gi|221059209|ref|XP_002260250.1| hypothetical protein, conserved in Plasmodium species [Plasmodium knowlesi strain H]gi|193810323|emb|CAQ41517.1| hypothetical protein, conserved in Plasmodium species [Plasmodium knowlesi strain H]
+------------NEEEYKKLFeeKNDILYIVDVYTKWCGPCLFTFEIINKIYKANFTFTESVKIVAV-CAQNIASLKNYDNNSKPFYIILKNGE--IIRQ
+IQGCNTPH-IFALIDEHL----
+>gi|123448520|ref|XP_001312989.1| hypothetical protein [Trichomonas vaginalis G3]gi|121894856|gb|EAY00060.1| hypothetical protein TVAG_196200 [Trichomonas vaginalis G3]
+DRREQVDVVIEMTDQNFQFKTSDGRPWVILVYQHYYDY-QSNKPFLEDLFQ---KTGLLFGIARMQISQSPKIVEKFGIRYSPQLVVYDSKT-NNHFLFN
+GEMKLGKVINFATRKFGADV
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+D 1    3370	*	724	*	*	*	*	*	*	*	*	*	*	*	*	2393	*	*	3219	*	1
+       0	*	*	*	*	*	*	5211	0	0	
+
+A 2    2648	*	4501	3026	*	3743	3492	*	2910	4774	*	3065	3601	4560	4367	*	4392	*	*	*	2
+       0	*	*	*	*	*	*	7730	0	0	
+
+P 3    3228	*	*	*	3857	3652	*	3618	4832	3087	4456	4723	2796	*	4449	*	3131	*	*	3022	3
+       0	*	*	*	*	*	*	7937	0	0	
+
+E 4    2934	*	2157	2602	4877	4058	*	4698	4998	5067	5000	3913	3977	4950	*	4091	*	*	*	4861	4
+       0	*	*	*	*	*	*	8298	0	0	
+
+E 5    5272	*	5071	2174	*	3400	5207	5061	5282	5327	*	5215	3557	3101	5206	2505	4082	5069	*	*	5
+       52	4832	*	0	*	*	*	8662	1107	0	
+
+E 6    5308	*	3064	2684	*	4123	*	5228	3553	*	*	3162	3311	4167	5014	2967	5457	4167	*	5327	6
+       0	*	*	*	*	*	*	8823	0	0	
+
+D 7    5608	*	2583	3284	4771	2614	4751	4918	3398	*	*	4611	4284	4566	*	2540	5913	5510	*	*	7
+       23	5956	*	3907	100	*	*	9585	1000	0	
+
+H 8    4893	*	3162	2984	5743	3668	4908	5911	3094	*	5784	3282	6031	4883	3308	*	3713	3888	*	4353	8
+       81	4661	6022	551	1656	*	*	9740	1262	0	
+
+V 9    5631	6027	*	5051	4501	5978	*	2826	5019	2456	4013	6087	5941	5462	5907	6036	*	1566	*	4842	9
+       0	*	*	0	*	0	*	9885	1057	1057	
+
+L 10   4019	*	5056	4090	*	5499	4104	3027	4048	3493	*	6035	*	4561	3348	*	3173	2424	*	4499	10
+       0	*	*	*	*	*	*	9960	0	0	
+
+V 11   3448	*	2894	2083	5897	*	*	5231	4544	4132	4866	4565	4379	*	5948	4080	3718	3278	*	6004	11
+       22	6072	*	0	*	*	*	10060	1000	0	
+
+L 12   6058	*	*	*	4063	*	*	2296	4609	1694	4554	5193	*	5080	6326	*	4774	2502	4939	6171	12
+       17	6434	*	1000	1000	*	*	10229	1040	0	
+
+R 13   4399	5297	2858	5985	6222	4167	6152	*	6200	6065	*	2658	*	5323	6734	2488	1971	5345	*	6506	13
+       15	6557	*	2807	222	*	*	10438	1000	0	
+
+K 14   3774	5904	2256	2980	*	3586	6504	4689	6815	5286	5510	4786	4126	3691	3862	4456	4886	5005	6271	5545	14
+       13	*	6827	*	*	*	*	10536	0	0	
+
+S 15   3185	*	2623	2794	*	4458	6317	6168	3291	4737	*	4130	4833	3108	4445	4005	4858	6547	*	6586	15
+       18	6324	*	1000	1000	*	0	10535	1015	1000	
+
+N 16   2962	*	3212	2862	*	4262	6545	6379	3754	5270	*	2666	5346	4505	4850	3662	3344	6257	*	*	16
+       0	*	*	*	*	*	0	10535	0	1234	
+
+F 17   4063	*	*	5974	1637	*	*	3577	6568	2481	5429	6593	*	5476	6365	6477	*	3917	4509	2839	17
+       13	6772	*	0	*	936	1067	10536	1000	1234	
+
+A 18   3392	*	2926	2482	*	6547	5509	4553	2802	4909	*	3502	6320	4116	4445	3906	4416	6176	*	6574	18
+       66	4885	6526	0	*	*	0	10670	1506	1000	
+
+E 19   3487	*	3558	2330	5485	4787	6406	5318	3009	4399	5554	4804	6665	3730	3921	3759	4970	4448	*	*	19
+       17	6406	*	0	*	*	0	10681	1030	1215	
+
+A 20   2554	*	6485	5599	3604	6260	*	3301	4771	2426	4384	6583	*	5662	4119	4928	3712	3340	5346	6599	20
+       0	*	*	*	*	*	0	10681	0	1215	
+
+L 21   3619	6496	6424	*	5077	*	*	2424	3551	2432	4993	5246	*	4957	5037	4418	3957	2595	*	6371	21
+       168	3351	6424	1619	568	1006	994	10711	2809	1215	
+
+A 22   2950	6783	3644	3550	6762	4357	4984	*	2757	4556	*	3988	*	3240	3962	3489	4551	6760	5557	5582	22
+       113	3728	*	1734	516	*	0	10683	2579	1236	
+
+A 23   4014	*	3564	3053	6052	3171	*	*	2977	5566	*	3821	6656	3310	3626	2813	5127	5298	*	*	23
+       25	5845	*	1228	803	0	*	10779	1453	1236	
+
+H 24   5836	5755	3648	4450	5067	1978	4477	6623	3450	6517	*	3055	3582	5631	6854	3113	5057	*	*	5721	24
+       108	3799	*	1114	894	*	*	10854	2456	0	
+
+K 25   4911	6650	3413	3604	*	4367	5696	6692	2013	5644	6737	5427	3608	4055	2694	4742	5000	5954	*	5548	25
+       124	3988	5680	1116	893	*	*	10854	2349	0	
+
+Y 26   4206	7022	4706	5684	6740	5788	6420	5053	4018	3774	*	4633	2309	6607	4921	3967	4021	2582	6691	3495	26
+       19	*	6265	*	*	0	*	10846	0	1171	
+
+L 27   3248	*	*	6593	3525	6756	*	3354	5100	3210	5899	5759	6227	5098	5117	4391	4092	1827	4311	6961	27
+       34	6682	6227	0	*	0	*	10830	1000	1059	
+
+L 28   4579	5669	*	*	2903	6706	*	2850	*	2029	5085	*	*	*	*	*	6359	1518	*	5600	28
+       11	*	7074	*	*	*	0	10909	0	1107	
+
+V 29   4584	6558	6350	*	6263	*	*	2007	*	1820	5648	*	*	*	*	*	5743	1626	*	5163	29
+       0	*	*	*	*	0	*	10926	0	1323	
+
+E 30   6517	*	3581	3908	2888	6467	4768	5400	4754	2490	3633	4878	*	6491	5585	5779	6747	2982	*	3103	30
+       0	*	*	*	*	*	*	10964	0	0	
+
+F 31   6780	5801	*	*	1042	6626	6321	3089	5843	3542	6396	*	*	*	*	6876	*	2687	6394	4153	31
+       58	5038	6843	2783	226	*	*	10964	1452	0	
+
+Y 32   6759	6445	*	5533	2827	3294	3525	6368	5770	5742	*	6482	*	6944	5771	3971	3326	4913	2886	2256	32
+       72	4662	6719	346	2229	*	0	10959	1648	1000	
+
+A 33   2481	5735	3287	5223	6687	3455	5526	*	3956	4347	6634	4036	*	4769	4643	2523	3700	5790	6598	6707	33
+       84	4517	6265	1176	843	0	*	10949	1739	1198	
+
+P 34   4083	*	3255	2973	4966	6507	5710	*	4757	5691	6905	4804	2315	5033	4553	2903	3728	4493	*	5748	34
+       0	*	*	*	*	0	*	10918	0	1056	
+
+W 35   5025	6741	4091	5830	4652	2985	5759	5185	5163	5776	6734	4525	5762	3941	5162	3729	3440	5645	2044	5008	35
+       46	4983	*	733	1327	*	*	10964	1561	0	
+
+C 36   5678	559	4473	6282	5669	6321	5244	*	*	*	*	6515	*	5633	6746	3095	6644	6832	*	6794	36
+       16	6467	*	5492	32	*	*	10964	1009	0	
+
+G 37   3785	*	5064	3249	5595	3164	5102	6971	4020	4931	5674	*	2250	4404	4030	3099	6276	4955	*	5125	37
+       0	*	*	*	*	*	*	10964	0	0	
+
+H 38   3711	*	3739	4249	5229	6962	3886	5043	4154	5077	4969	3902	2665	5109	5083	4708	4252	4191	5237	3464	38
+       23	*	5955	*	*	*	*	10964	0	0	
+
+C 39   4236	559	6260	6507	6392	*	*	*	5606	*	*	*	*	6523	6717	2769	5929	5678	*	6824	39
+       0	*	*	0	*	0	*	10955	1057	1331	
+
+K 40   4364	6433	5682	3600	6532	5713	4345	3277	2870	3780	4760	5841	6741	3442	2979	4828	5283	3750	*	5142	40
+       13	6834	*	0	*	*	*	10964	1000	0	
+
+A 41   2609	6321	4040	3149	6819	4624	5141	5199	3115	4387	4500	4587	*	3876	3179	4905	4132	5201	*	*	41
+       28	6709	6644	2322	322	*	*	10964	1012	0	
+
+L 42   3087	*	5815	3883	2413	*	*	4190	4402	2588	3241	4360	6509	5014	*	7056	4685	3791	*	5293	42
+       0	*	*	0	*	0	*	10937	1000	1000	
+
+A 43   3555	6529	3786	2925	4902	6321	4037	5051	3179	3509	4776	5325	*	4355	4202	4448	4956	3636	6467	5047	43
+       0	*	*	*	*	*	*	10964	0	0	
+
+P 44   3643	6539	3802	3036	6543	5889	6276	5569	3208	5647	*	4806	1918	4728	4337	3963	4421	5186	*	*	44
+       12	6971	*	0	*	*	*	10964	1001	0	
+
+E 45   3390	*	4402	3284	5191	3924	4522	3807	3717	4492	4836	4804	*	4834	4807	4059	3542	3050	*	5813	45
+       16	6523	*	4700	57	*	*	10964	1000	0	
+
+Y 46   5523	*	*	*	2544	*	*	3163	*	1431	4531	6394	*	*	*	*	5618	2629	4446	4597	46
+       43	5092	*	1585	585	*	*	10964	1479	0	
+
+A 47   4038	7008	3596	2518	4599	5027	*	5168	2672	4057	6727	4305	5645	4407	3997	3839	5271	4242	6450	7062	47
+       0	*	*	*	*	*	*	10964	0	0	
+
+K 48   3923	*	3327	2798	7056	4244	5806	5101	3047	5579	*	3594	4539	3392	3337	4609	4400	5636	*	6276	48
+       37	*	5286	*	*	*	*	10964	0	0	
+
+A 49   3327	*	4903	6793	3864	6725	6501	2413	*	1954	5188	5685	*	5079	5874	4634	5786	3234	5659	4474	49
+       27	6662	6890	2322	322	*	0	10946	1000	1429	
+
+A 50   2337	6594	7047	4107	5016	4893	5662	4657	4240	3480	7006	4421	4314	5009	5104	3722	5269	3597	*	3179	50
+       11	7104	*	1000	1000	1067	936	10938	1057	1606	
+
+G 51   3804	*	3822	2664	*	4471	4968	*	2771	7176	*	4162	3776	3476	3365	3849	4259	5475	*	6707	51
+       206	*	2911	*	*	*	0	10950	0	1215	
+
+K 52   3368	*	3389	3021	5593	6460	*	4506	3004	4467	5643	5449	6482	3411	4705	3676	3716	3888	*	5049	52
+       174	6405	3297	2807	222	3153	172	10698	1001	4058	
+
+L 53   4017	*	*	*	2470	6386	5511	4413	*	2481	4636	6388	6404	5386	4434	4751	6114	3510	6145	2251	53
+       209	*	2889	*	*	3333	151	10608	0	5140	
+
+K 54   5292	*	3604	3669	*	5944	4591	*	2376	4618	*	5182	3229	3729	3381	3672	4481	3625	*	6303	54
+       382	5243	2277	1776	498	1932	438	10449	1227	6269	
+
+A 55   3281	*	3290	2974	5135	3686	5033	*	2972	4172	5749	4193	5231	3857	4323	4008	*	4909	*	4887	55
+       236	5077	3044	1277	768	3973	95	10309	1474	7025	
+
+E 56   3389	*	3398	4571	5021	4276	5933	4395	3001	3556	*	4369	5885	4301	4283	3497	4340	6036	4832	4170	56
+       194	6179	3155	0	*	2059	396	10147	1000	7571	
+
+G 57   5221	*	2866	3409	5711	2252	4844	5848	5737	4499	*	2508	3849	6575	5066	4871	4323	*	*	5154	57
+       159	4008	4557	1056	946	438	1932	10219	1653	7229	
+
+S 58   5311	6452	3222	4737	5037	2860	4975	4004	3753	3741	*	4479	3400	5648	5008	3227	4444	4286	*	6284	58
+       13	6758	*	1585	585	1034	967	10753	1242	3986	
+
+E 59   3708	*	3204	3888	*	4534	4303	6640	2724	5096	5528	3199	6428	4169	3304	6481	4331	4306	6592	4568	59
+       16	6481	*	0	*	0	*	10894	1035	2557	
+
+I 60   5323	5113	*	*	3128	5487	*	2164	6371	2408	5655	*	*	*	6874	6515	4550	2086	5862	4290	60
+       0	*	*	*	*	*	*	10964	0	0	
+
+R 61   3820	6673	4755	4142	6983	4405	6668	3221	2858	3261	6371	4254	6515	5244	3928	5242	3916	3106	*	4835	61
+       0	*	*	*	*	*	*	10964	0	0	
+
+L 62   3963	6673	*	*	2225	4643	6523	2828	6764	2853	4288	6626	*	*	*	4518	5849	2573	5677	3990	62
+       16	*	6529	*	*	*	*	10964	0	0	
+
+A 63   3121	6825	*	5864	5026	3351	5600	3031	4413	2738	5131	6803	*	5389	6751	6916	6377	2421	*	3148	63
+       0	*	*	*	*	*	0	10916	0	1050	
+
+K 64   3672	6941	4552	4506	5881	4246	5193	4370	2942	5372	5872	5494	6841	3925	3358	3252	3895	3587	6527	4336	64
+       11	6993	*	2000	415	*	0	10916	1000	1050	
+
+V 65   3886	4765	*	5284	3811	5770	*	2642	6901	2720	3766	6522	*	5495	5500	4792	5728	2219	6472	4314	65
+       0	*	*	*	*	*	0	10916	0	1050	
+
+D 66   5425	*	1437	3979	5546	4290	6751	5785	6411	*	6892	2046	4528	5837	6541	5282	5240	4673	*	5738	66
+       173	3395	5821	5189	40	*	0	10916	2896	1050	
+
+A 67   3420	3029	6683	5715	4308	4696	*	3273	6496	3151	7036	5244	5100	4764	3918	3936	5120	2836	6525	5158	67
+       59	5163	6366	1709	527	*	0	10907	1400	1498	
+
+T 68   3874	*	2114	2970	6465	4987	5118	5075	3873	4676	*	3958	5256	7004	6340	3288	3390	5657	5693	5891	68
+       67	4966	6207	4475	66	801	1231	10846	1686	1972	
+
+E 69   5501	*	2831	2448	6662	*	5517	5257	3259	4563	6026	3927	5038	3040	4413	3926	3796	5529	*	6645	69
+       129	3549	*	4762	54	1521	618	10854	2615	1572	
+
+E 70   3307	4389	3396	2750	6939	4922	3753	5328	6420	5624	6885	3132	5141	3832	5085	3672	4686	4724	6500	5742	70
+       39	7072	5711	1000	1000	1075	929	10906	1000	1299	
+
+S 71   4282	*	3956	3736	*	5748	5128	6746	2944	4962	6402	3964	2687	3446	4092	3246	3999	5770	*	5453	71
+       247	2755	6788	2624	255	0	*	10893	3864	1492	
+
+D 72   3140	*	3144	2236	6539	3982	*	*	3633	5731	6976	4777	4665	4482	4786	3018	4122	5517	6832	6458	72
+       38	5767	6976	1590	582	*	0	10946	1216	1000	
+
+L 73   3753	*	6838	5050	3194	*	6661	2451	5108	1857	5209	*	5657	*	6469	5767	3996	3605	4931	5286	73
+       27	*	5747	*	*	*	0	10957	0	1214	
+
+A 74   2412	3166	5657	4256	3363	3776	6728	3896	4418	4411	*	5914	4123	4992	4805	4497	*	3705	*	5274	74
+       41	5678	6881	1282	765	0	*	10927	1259	1606	
+
+Q 75   3833	*	3486	3330	*	5139	5070	*	2540	6455	4913	4485	4401	2793	2865	5358	5312	*	6801	4856	75
+       30	6443	6837	4700	57	0	*	10948	1007	1000	
+
+Q 76   4794	*	3477	3440	5775	5722	5976	6755	2827	4449	5581	5630	5628	2893	2687	3879	4374	5635	*	4461	76
+       41	5767	6684	1265	776	*	0	10958	1191	1000	
+
+Y 77   3847	5611	6475	*	2028	*	4537	6020	6356	2280	5770	6696	5826	5589	*	5210	6736	5212	5939	2113	77
+       131	3674	6898	2162	365	0	*	10944	2478	1189	
+
+G 78   5196	*	4584	3954	6755	1673	5058	*	3576	6478	6734	3111	4847	3402	4100	4316	5152	5652	*	7052	78
+       57	5139	6639	450	1901	0	*	10948	1423	1000	
+
+V 79   4323	*	5122	*	5220	5845	*	1732	5825	3054	5728	*	4388	5621	6731	4275	*	1921	5959	6660	79
+       14	*	6660	*	*	0	*	10937	0	1000	
+
+R 80   3790	*	4000	4028	4750	6469	4651	4650	4273	4746	5289	3843	5041	4099	2931	4199	2781	4791	*	4809	80
+       139	3793	5667	1395	690	0	*	10946	2324	1000	
+
+G 81   3398	5730	5677	3497	4488	2247	4792	5562	4395	*	5853	4213	*	5182	4622	2899	3624	4794	*	5178	81
+       58	5063	6709	2780	227	732	1329	10898	1656	1463	
+
+Y 82   3852	*	*	5136	3465	6496	*	3020	*	3668	6683	*	4912	4889	*	4696	2891	2276	4797	3235	82
+       48	4945	*	1397	689	1148	866	10905	1472	1277	
+
+P 83   6517	*	*	*	*	6692	*	6513	*	6482	*	*	198	6541	5578	6803	5663	5323	*	*	83
+       0	*	*	*	*	0	*	10916	0	1050	
+
+T 84   2750	5810	4716	6667	4235	5232	5235	4738	5498	5028	*	6421	*	3765	4658	3083	1919	3838	*	6396	84
+       0	*	*	*	*	*	*	10964	0	0	
+
+I 85   4413	*	*	*	2497	6746	*	3722	*	1812	3871	6532	*	6932	*	5828	3311	2944	6396	4099	85
+       21	*	6122	*	*	*	*	10964	0	0	
+
+K 86   4161	5736	*	5797	2727	*	*	2935	4727	2391	4825	*	6815	4348	6309	5912	5399	2714	*	3341	86
+       0	*	*	*	*	0	*	10957	0	1274	
+
+F 87   4793	6560	*	6668	2255	5557	5505	2887	*	2356	5588	*	*	*	6747	5655	6818	2067	6928	4196	87
+       71	*	4386	*	*	*	*	10964	0	0	
+
+F 88   5673	*	6464	6507	1959	*	5678	3089	6700	2785	4756	*	5647	6697	*	5750	6509	3786	*	2055	88
+       379	2311	5088	824	1200	*	0	10891	4592	1879	
+
+R 89   4228	*	3307	4956	6189	3235	5079	*	2328	4298	6893	4455	4115	3736	2847	6686	6612	4622	*	5178	89
+       59	5902	5429	3450	138	664	1438	10859	1215	2624	
+
+N 90   3485	*	2473	3431	*	3581	4782	6722	3668	*	6783	2536	4552	4036	6605	4187	4698	6413	*	5093	90
+       0	*	*	*	*	343	2239	10860	0	1939	
+
+G 91   4838	4684	2992	4938	6315	878	6901	*	5801	6945	*	3487	6387	4434	*	*	5862	6362	*	*	91
+       258	5390	2840	2215	350	0	*	10943	1366	1028	
+
+D 92   5587	*	4617	3298	6573	3202	*	4452	2183	6334	5490	3358	*	4572	3787	3452	3635	4913	*	*	92
+       1274	6464	798	1000	1000	*	0	10738	1000	3689	
+
+T 93   4171	*	4217	3762	5196	4335	5010	5021	3229	5379	4125	3246	2881	*	3638	*	5731	2987	5391	*	93
+       122	*	3628	*	*	3077	182	9163	0	9140	
+
+A 94   4688	*	4464	*	*	3769	*	5300	2247	3056	4451	4330	4360	4489	3143	5531	3343	4534	*	5568	94
+       0	*	*	*	*	101	3890	9402	0	8869	
+
+S 95   5530	*	5774	3185	4325	*	4446	3597	3268	3211	6601	5725	3876	3992	3879	3886	4778	3212	*	5661	95
+       14	6719	*	0	*	*	0	10915	1029	1738	
+
+P 96   4166	5827	5619	4475	4994	3987	5091	3276	4650	3098	5827	*	3730	5209	5598	5613	4510	2274	6901	4118	96
+       19	*	6229	*	*	1870	461	10915	0	1738	
+
+K 97   3509	*	3879	3753	3977	3820	3887	3217	4753	3778	5207	4568	6602	4707	5649	4509	5235	3176	6376	5667	97
+       77	4573	6658	819	1207	517	1731	10881	1636	1774	
+
+E 98   4927	*	4741	3216	4957	5129	6482	4604	3758	4229	6504	4901	6868	2979	2553	4106	4134	3493	6653	5819	98
+       57	5893	5508	0	*	1716	524	10892	1149	1497	
+
+Y 99   3957	5780	4968	5290	2723	4761	5112	4196	5150	3298	4993	*	6605	4788	5324	3995	5693	3333	5089	2789	99
+       34	6247	6655	1585	585	1210	817	10857	1056	1744	
+
+T 100  4639	6982	3759	3567	6693	4160	4462	3497	4280	4877	5646	4051	3625	5747	5110	3487	3524	3541	6717	5151	100
+       98	3923	*	1258	782	719	1349	10869	2367	1549	
+
+A 101  4884	*	4091	3386	5314	1002	*	*	4757	6576	6613	4115	5583	6693	4796	4181	5583	6563	*	5715	101
+       68	4738	6832	770	1274	*	0	10905	1695	1082	
+
+G 102  4410	*	4048	3225	4513	3038	*	4406	6410	4807	5699	4016	3461	3565	4112	3897	5615	4283	5837	4189	102
+       75	5071	5573	612	1532	1181	839	10895	1474	1323	
+
+R 103  3481	*	4645	4617	5562	6591	4519	4235	5651	2447	4694	5694	3874	4277	4004	4683	3956	3266	4572	6832	103
+       109	3780	*	905	1102	539	1683	10833	2775	1539	
+
+E 104  4566	*	2901	3409	*	5670	*	4928	4473	5548	6498	3061	3442	5135	*	2529	2682	*	*	5035	104
+       63	5974	5234	0	*	0	*	10919	1178	1015	
+
+A 105  3200	*	4090	3935	5713	3880	5049	4304	3539	3469	6732	6422	3214	5084	4983	4960	4425	3299	5568	4982	105
+       0	*	*	*	*	0	*	10915	0	1381	
+
+D 106  3898	*	3093	1967	5603	3907	5537	*	3724	4189	*	4582	3980	4176	4598	3629	5614	5811	*	*	106
+       31	5579	*	1866	463	*	*	10940	1289	0	
+
+D 107  3821	6521	3303	2535	5752	5657	5064	6859	3048	6608	4521	4045	6642	3465	4528	3736	3972	5713	6361	5755	107
+       19	6268	*	0	*	*	*	10940	1082	0	
+
+I 108  5799	6760	*	5510	2803	*	*	2677	6531	1844	3793	*	*	6625	6537	5923	5557	2933	4993	3859	108
+       0	*	*	*	*	*	*	10940	0	0	
+
+V 109  3712	*	3683	3015	6801	*	5602	2965	3634	3006	5194	5570	*	3997	3180	5110	4808	4498	5614	6845	109
+       0	*	*	*	*	*	*	10934	0	0	
+
+N 110  3327	*	3206	2710	*	4980	*	6666	3107	4538	5723	3592	*	3670	3772	3414	4222	5686	*	5794	110
+       15	6637	*	1585	585	*	*	10920	1000	0	
+
+W 111  2912	6601	5701	4375	2069	*	*	5570	5449	3417	3985	*	*	6837	3630	*	4631	5094	2783	4446	111
+       0	*	*	*	*	*	*	10927	0	0	
+
+L 112  5039	5657	*	*	4254	*	*	1759	5421	1639	4538	*	*	6459	*	*	5500	2557	*	6489	112
+       0	*	*	*	*	*	*	10876	0	0	
+
+K 113  4212	*	3083	3081	*	4831	5119	6259	3914	3893	*	3466	*	2748	3741	3399	4512	4947	*	6156	113
+       17	*	6375	0	*	*	*	10652	1000	0	
+
+K 114  3783	*	3470	2371	*	6463	*	*	2697	5242	5571	3283	5509	3233	3859	3564	5334	*	*	5538	114
+       0	*	*	0	*	0	*	10501	1000	1000	
+
+R 115  2747	6229	*	4638	4150	6290	3233	3205	4163	2467	*	3745	*	*	4720	6360	5492	3941	5970	4355	115
+       24	5918	*	0	*	*	*	10284	1000	0	
+
+T 116  3785	3870	*	6151	4293	5873	5856	3627	4909	1717	3809	*	5053	*	4193	3740	3375	6176	*	*	116
+       0	*	*	*	*	*	*	9981	0	0	
+
+G 117  3410	*	3115	4414	*	2216	*	*	3932	4449	*	3958	4311	5163	3067	4441	3471	*	*	5720	117
+       0	*	*	*	*	*	*	9419	0	0	
+
+P 118  3339	*	3172	3013	*	3219	*	*	3392	4030	4789	*	1935	*	4774	3873	*	*	*	*	118
+       0	*	*	*	*	*	*	8443	0	0	
+
+A 119  2097	*	4188	4365	*	*	*	4197	*	4248	4460	3398	1674	4438	*	*	*	4163	*	*	119
+       0	*	*	*	*	*	*	7340	0	0	
+
+A 120  1671	*	*	3911	*	*	*	*	*	*	*	*	*	*	*	3843	3809	1064	*	*	120
+       0	*	*	0	*	*	*	6609	0	0	
+
+//
+�HHsearch 1.5
+NAME  2b86eaed0dd0462632e7bb6e0a56ceb8
+FAM   
+FILE  2b86eaed0dd0462632e7bb6e0a56ceb8
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 14:12:52 2013
+LENG  118 match states, 118 columns in multiple alignment
+FILT  143 out of 1887 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  10.8
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCHHHHHHHCCCHHHHHHHHHCCCCCCCCCCCCCCHHHHHHHCCCHHHHHHHHHCCCCCCCCCCCCCCHHHHHHHCCCHHHHHHHHHCCCCCCCCCCC
+CCCHHHHHHHHCHHHHHC
+>ss_conf PSIPRED confidence values
+9853999999958999999999849997756889998999999949999999999839987764889998999999949999999999859997766889
+998999999827998849
+>Consensus
+xxxxxlxxaxxxxxxxxxxxllxxxxxxxxxxxxgxxxlxxAxxxxxxxxxxxLlxxxxxxxxxdxxgxtxlxxaxxxxxxxxxxxLxxxgxxxxxxxxx
+gxtxlxxaxxxxxxxxlx
+>2b86eaed0dd0462632e7bb6e0a56ceb8
+MCDKEFMWALKNGDLDEVKDYVAKGEDVNRTLEGGRKPLHYAADCGQLEILEFLLLKGADINAPDKHHITPLLSAVYEGHVSCVKLLLSKGADKTVKGPD
+GLTALEATDNQAIKALLQ
+>gi|123416765|ref|XP_001304968.1| hypothetical protein [Trichomonas vaginalis G3]gi|121886455|gb|EAX92038.1| conserved hypothetical protein [Trichomonas vaginalis G3]
+----CLTQAVRESSLEVVEFLLSLGASILEGDDNEFTPFITSFAYNRKDMAYSMLFYKSNV----------LTYCYGL----IVMLILFILLKFMKR---
+------------------
+>gi|281351399|gb|EFB26983.1| hypothetical protein PANDA_009999 [Ailuropoda melanoleuca]
+--------RQHRGVTLCQRY--REGIAEEEEGKLGMCAARGDTGAAcrrregtTRQVCS---KTRTWPGRTDAQDGGPGSQASEAHASWVRRRLASQGER
+STGFVHRVEAP--------------
+>gi|123453151|ref|XP_001314609.1| hypothetical protein [Trichomonas vaginalis G3]gi|121897165|gb|EAY02294.1| hypothetical protein TVAG_275680 [Trichomonas vaginalis G3]
+--NECFIHSTMFNIPSFSEYFFQELKTSILK-INMELRLSIMQLFSIVKKQPNFLFHMVQIsmkkmkk--------------------------------
+-------------------------
+>gi|281202058|gb|EFA76263.1| hypothetical protein PPL_10024 [Polysphondylium pallidum PN500]
+---KLLEISPKSHNLEMVQYIAKIY-KQRLPAHHKIDKDSCrvlntVAFVGRLDMFNWAIANEF----DEFRVKRLLRESAQGGNIEFFQYLMVHYPRK-
+LDSHHFQKFMVCAASADSLELMK
+>gi|123474918|ref|XP_001320639.1| hypothetical protein [Trichomonas vaginalis G3]gi|121903449|gb|EAY08416.1| hypothetical protein TVAG_354750 [Trichomonas vaginalis G3]
+---TPYLYACIYGKPETLRILEKHGADPYFrlvrasdhviyhapkckidtkeyfeqcqeeakKKQSGLNAVALSIMKDNIDVLVYLHREKKFSLDEKSNG
+FYPIHIAARQNASKCFEYLKNNmeNCDPNLRTGEHST---------------
+>gi|86143535|ref|ZP_01061920.1| periplasmic protease [Leeuwenhoekiella blandensis MED217]gi|85829982|gb|EAQ48443.1| periplasmic protease [Leeuwenhoekiella blandensis MED217]
+-----LDYTISTNNNTLYTLLLEQGIYADAGANKTYTALQEAVKEANTGWVVKLVDAGADAQVKDDGDNNLLHLAAATGNTTLINYLYGLEPQlIDSENR
+AGDLPERVAKDKGYKKVFK
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	3298	*	*	2806	*	4268	1992	*	*	1330	*	*	*	*	*	4205	1
+       0	*	*	*	*	*	*	6668	0	0	
+
+C 2    5651	4007	*	5619	*	912	*	5522	4641	*	*	3868	*	5490	4447	2766	5587	*	*	*	2
+       30	5591	*	3170	170	*	*	8736	1000	0	
+
+D 3    *	*	3195	2864	5887	3989	5895	6027	3893	5159	5120	2866	4947	3939	3371	3479	5062	6048	4916	5800	3
+       0	*	*	*	*	*	*	9289	0	0	
+
+K 4    5116	*	*	3688	6156	5277	*	*	3677	5404	*	3006	4635	*	4919	2422	1644	*	*	4392	4
+       30	5585	*	1701	530	*	*	9856	1153	0	
+
+E 5    2154	4882	4847	5007	*	6777	*	4960	*	2933	*	6291	2039	5432	6429	3618	5754	3636	*	4964	5
+       17	*	6449	*	*	*	*	9975	0	0	
+
+F 6    6326	*	6633	6613	2898	*	*	2580	*	919	4412	*	5741	*	*	*	5921	4508	6531	*	6
+       0	*	*	*	*	*	0	10517	0	1015	
+
+M 7    6793	5194	4832	5040	2934	6346	1731	3165	6814	4426	4656	5235	6831	4395	5723	4200	*	4865	6835	4385	7
+       13	*	6831	*	*	*	0	10554	0	1015	
+
+W 8    4131	7011	5538	4115	3548	6582	4671	2751	4273	2962	6824	4877	*	4098	5067	4526	4633	4103	5072	3483	8
+       0	*	*	*	*	*	0	10631	0	1186	
+
+A 9    787	4100	5336	*	*	6087	*	5328	*	5587	6792	6618	6984	7245	4464	3252	5266	4079	*	6998	9
+       25	6770	6931	3320	152	917	1088	10785	1168	1186	
+
+L 10   1928	3738	*	6979	*	5158	*	2193	5663	3973	6867	*	5628	6062	4656	4972	4179	2784	*	6859	10
+       16	6464	*	2322	322	*	0	10938	1048	1161	
+
+K 11   4331	5769	4504	3832	5082	5988	4728	4555	2778	3569	3933	6552	*	4269	2848	3705	5037	4627	6774	4704	11
+       22	7139	6987	4524	64	*	0	10946	1047	1161	
+
+N 12   4427	4659	5223	3709	3818	4807	4907	5746	3888	4473	*	2595	6962	5423	3988	3221	3956	5807	*	3472	12
+       11	7107	*	2807	222	0	*	10932	1000	1392	
+
+G 13   5797	6099	4070	4193	*	1542	4504	7129	4109	5856	*	2491	6048	4762	4375	3766	6932	5405	*	*	13
+       22	*	6067	*	*	*	*	10975	0	0	
+
+D 14   5431	5320	2881	5963	5014	*	3307	5978	4111	5622	*	2527	5492	3842	3038	3038	5740	5043	*	5971	14
+       33	5454	*	1254	784	904	1102	10983	1436	1188	
+
+L 15   4324	*	4917	3980	4075	6847	6166	2709	4347	2414	5497	6619	3836	5559	5350	4403	3755	4147	6108	4585	15
+       12	6964	*	2000	415	0	*	11000	1011	1000	
+
+D 16   4383	5728	2249	2251	7080	4712	5048	5744	3537	5562	7147	3634	4747	4018	5019	4089	5691	6017	*	*	16
+       0	*	*	*	*	*	*	11019	0	0	
+
+E 17   3452	3824	6173	4787	3994	6973	5184	2696	5272	3147	2882	5542	5485	5779	7180	5335	5504	3136	6797	5469	17
+       18	6369	*	3356	148	*	*	11019	1118	0	
+
+V 18   3456	4356	*	6950	3231	*	*	2378	*	2528	4737	*	*	6171	*	6963	3896	1982	*	*	18
+       6	7898	*	1585	585	0	*	11128	1000	1000	
+
+K 19   4475	6867	4415	2832	6887	7066	6974	4289	2320	5109	6917	5066	5034	3188	2644	6272	5232	4760	6928	4971	19
+       12	6930	*	0	*	*	0	11125	1029	1000	
+
+D 20   5501	5665	4893	3819	3442	6111	4772	4220	3521	3282	4609	6346	*	4605	6041	4576	4912	3972	3986	2684	20
+       50	6967	5252	2807	222	*	0	11125	1000	1000	
+
+Y 21   4547	5379	*	*	3752	*	5278	2757	6532	1083	4663	6652	*	6067	*	5713	*	3999	6990	4359	21
+       29	6117	7516	4004	93	1383	698	10937	1180	1542	
+
+V 22   5095	4667	7023	*	4330	6663	6790	2083	6913	1651	4748	*	*	6018	*	4941	6944	2954	5818	4258	22
+       58	4666	*	2766	229	284	2483	10940	1898	1544	
+
+A 23   4147	6245	3066	2634	6799	5414	5986	*	3149	4678	6550	3613	4999	3825	4117	2665	6062	6315	*	6289	23
+       53	5579	6044	3529	131	*	0	11130	1323	1000	
+
+K 24   4464	5479	5318	3305	5696	6038	3026	4738	3275	3846	5448	2957	6014	3823	4163	4121	5048	4989	*	5295	24
+       20	6893	7544	5170	41	1995	417	11099	1008	1341	
+
+G 25   5755	5682	3430	4331	4856	1863	4936	4872	3427	4982	6131	3936	4704	5036	6782	3598	4698	6118	*	5292	25
+       64	4952	6460	2235	344	1835	475	11078	1605	1435	
+
+E 26   2276	4594	4997	3773	4075	4383	6043	3728	4285	4233	6532	6338	3521	6136	5042	4704	4322	3873	7153	5225	26
+       199	3292	5226	874	1138	1431	669	11061	3071	1521	
+
+D 27   4703	*	1840	4116	*	5886	4826	5087	3604	4149	*	3237	6065	4653	4589	3130	4892	4714	7271	6679	27
+       108	4010	6679	2562	268	1114	895	11087	2300	1939	
+
+V 28   3915	6523	5412	4802	3816	5997	*	2602	5463	2465	7026	5565	3868	5266	6367	4994	5445	2446	7157	5149	28
+       0	*	*	*	*	1943	435	11065	0	1643	
+
+N 29   5355	5978	2935	2893	4744	5626	5948	4329	4532	4756	5262	1940	6351	6091	5152	3895	3753	*	*	7094	29
+       103	4827	4893	279	2510	*	0	11092	1623	1435	
+
+R 30   2809	7267	4603	3948	4970	5243	5562	3627	3828	3480	7467	5040	4736	3868	4246	3848	4760	3400	*	5127	30
+       68	5504	5371	4255	78	2910	206	11041	1331	2292	
+
+T 31   5994	6959	5854	4042	6022	4942	*	3991	2735	3321	5962	5690	3864	3517	3107	4253	4431	3256	5656	7284	31
+       101	5871	4304	4218	80	2423	298	11025	1214	2570	
+
+L 32   6415	6730	1715	3975	5449	3977	7240	6043	4269	5362	5445	2386	7034	5263	5848	3598	4393	6818	*	5512	32
+       57	4688	*	2172	362	1315	742	10992	1628	3381	
+
+E 33   4437	6064	3606	3554	5211	3781	3920	5591	3704	4247	5962	3547	4215	5678	4928	3373	3967	5097	7344	4265	33
+       36	5323	*	3840	104	*	0	11075	1344	2431	
+
+G 34   4314	5648	3262	4047	5152	5207	4248	6964	3329	3916	5177	3206	4286	4314	4484	4137	4091	5074	6768	4416	34
+       84	5045	5252	2544	271	2350	315	11075	1483	2431	
+
+G 35   5099	*	4118	5839	3748	1116	6015	*	4288	4456	5769	3855	*	5758	4535	4418	5362	6797	6641	6824	35
+       25	*	5847	2807	222	1837	474	11064	1000	2673	
+
+R 36   6012	*	3677	3001	6018	4498	7057	4563	3534	3945	4350	3231	5159	3734	3747	5135	4015	7026	4754	4252	36
+       32	5507	*	1238	796	577	1601	11102	1511	2501	
+
+K 37   5222	4838	4545	6198	*	7106	6696	6172	4426	5123	6163	3054	4266	5988	4520	2545	1660	5948	*	5258	37
+       21	7287	6942	2585	263	1612	571	11173	1000	1404	
+
+P 38   2227	3827	7119	7076	*	6193	6189	4393	6542	2825	5944	*	1776	7560	5152	4026	5782	4651	*	6202	38
+       0	*	*	*	*	1605	575	11179	0	1405	
+
+L 39   5209	5617	6545	7238	3029	*	*	2470	*	973	5093	*	6701	*	*	5618	6105	4622	*	6882	39
+       0	*	*	*	*	*	0	11188	0	1216	
+
+H 40   5946	4996	5447	4851	3904	5237	1579	3794	*	4787	4074	5126	5882	4241	5131	4277	5044	5420	7026	4077	40
+       18	*	6322	*	*	*	0	11197	0	1216	
+
+Y 41   4240	4587	6527	4846	4137	5414	6015	3132	5041	2617	4376	4620	7394	5782	3997	5178	4808	4086	4170	3275	41
+       16	6541	*	2322	322	*	0	11162	1084	1570	
+
+A 42   737	5344	6239	6421	7160	5119	6079	6964	6599	4578	5133	6668	7115	6781	5659	3795	5509	3810	*	*	42
+       9	7291	*	0	*	*	0	11162	1000	1570	
+
+A 43   1885	3767	*	7166	6263	6040	*	2435	*	3774	6218	*	5804	5382	6705	3818	3839	2742	7085	*	43
+       38	6911	5827	0	*	*	0	11162	1013	1570	
+
+D 44   4108	5376	4755	3216	5073	5515	5350	3814	2948	3531	4937	4488	*	4440	4068	3537	4709	4696	5867	4410	44
+       9	7266	*	0	*	*	0	11084	1064	1961	
+
+C 45   4020	5264	6944	5458	4080	4681	4519	4466	3910	3344	4694	3817	*	4141	3944	3104	4464	4220	*	3591	45
+       11	7011	*	2322	322	*	0	11084	1000	1961	
+
+G 46   4487	6828	3567	4467	5474	1634	5345	6013	3345	7112	6140	2623	6266	5653	4537	4431	5573	7239	*	*	46
+       61	4928	6886	2317	323	937	1066	11084	1561	1961	
+
+Q 47   5070	5603	3187	4351	7019	7166	3340	4777	3989	4440	*	2477	5807	3579	3312	3732	6241	5985	*	4450	47
+       70	4402	*	2248	341	2134	373	11167	1932	1540	
+
+L 48   4229	6671	5576	4545	4151	6152	6180	3171	4818	2839	5090	5250	3240	6915	4382	4599	4452	2755	7454	4504	48
+       22	6961	7126	0	*	*	0	11166	1029	1380	
+
+E 49   4537	7152	2680	1863	6059	5549	6033	5555	3216	6193	*	5011	5469	3398	4380	3877	4572	6627	*	6955	49
+       10	7183	*	0	*	899	1109	11118	1000	1549	
+
+I 50   4103	4232	5307	7020	4840	*	*	2053	6309	2604	2964	7391	7115	6005	*	4522	3868	2978	*	7190	50
+       0	*	*	*	*	*	0	11192	0	1163	
+
+L 51   3037	4117	*	*	3536	*	6682	2393	7258	2422	3955	*	*	6988	*	5181	4783	2358	6691	*	51
+       9	7302	*	1585	585	*	0	11133	1000	1163	
+
+E 52   4496	6335	4711	3469	*	5726	5471	4528	2151	6176	7228	3613	5825	2838	3184	3977	5156	4773	*	7151	52
+       26	7881	6230	1000	1000	1383	698	11123	1000	1334	
+
+F 53   3393	4711	5986	4179	3394	*	4665	4361	4481	2850	4808	5760	*	7113	4887	5426	5889	4984	4243	2257	53
+       14	*	6680	*	*	*	0	11077	0	1573	
+
+L 54   5525	5008	*	*	3720	*	*	2771	*	775	3904	*	*	*	5962	6990	*	4817	*	6126	54
+       29	6284	7201	1314	742	1669	545	11056	1124	1791	
+
+L 55   5075	4819	*	7124	5418	*	*	2345	*	1430	4001	6782	6993	6433	7597	4612	6618	2713	6470	5307	55
+       151	3877	4997	1005	995	194	2993	11055	2845	1935	
+
+L 56   4491	6854	2778	2421	5907	5478	*	*	2863	6242	6161	3566	*	3796	3804	3055	4849	5181	*	*	56
+       48	6268	5639	3006	192	883	1127	11138	1133	1807	
+
+K 57   3354	7106	5936	4825	6082	5254	3245	4433	3315	3559	6207	3113	5787	3889	4085	4613	4357	4939	6537	4094	57
+       162	3435	6181	882	1128	1285	762	11173	2859	1791	
+
+G 58   4622	4868	5282	4406	6125	1504	5478	*	3807	4491	5855	3618	4274	5010	4368	4752	4758	7312	*	4766	58
+       80	4210	*	1973	424	1476	642	11129	2023	1717	
+
+A 59   2174	4577	5778	4831	4098	4130	7280	3297	5645	3667	4927	5552	3480	*	5852	4628	4584	3258	*	6268	59
+       55	7200	5029	0	*	1411	680	11136	1000	1403	
+
+D 60   4700	6586	2135	3817	5020	5452	*	4580	5790	5455	*	2367	4442	4031	3971	3660	5332	5636	6198	6185	60
+       157	3551	5815	3825	106	*	0	11083	2770	1939	
+
+I 61   4608	5237	*	6896	4844	6983	6752	2555	4423	2487	5791	6146	2686	5963	5847	4776	6747	2653	7114	4509	61
+       47	6094	5857	2044	401	688	1399	11026	1291	2316	
+
+N 62   5418	7195	3010	3089	6091	4364	4999	6156	4480	4918	6659	1897	6249	5257	4475	3584	3687	*	6691	6915	62
+       52	5240	6763	1100	906	2282	332	11024	1532	1796	
+
+A 63   2933	5604	5404	4512	5176	6124	5962	3616	3952	3576	4544	4225	4711	4096	4185	3522	5105	3907	5979	4430	63
+       30	6261	7011	3811	107	544	1671	11035	1178	1942	
+
+P 64   5267	6111	5231	5133	7043	5350	6315	5202	2363	3648	5053	6018	4325	3705	2934	4204	3261	3702	*	5637	64
+       39	*	5228	*	*	*	0	11119	0	1366	
+
+D 65   5261	6357	1316	4577	6760	5003	7189	5260	3808	*	*	2904	6921	*	6831	3704	3285	4896	*	6672	65
+       55	4737	*	211	2875	1397	689	11154	1688	1991	
+
+K 66   4351	*	3925	2911	5646	4041	4424	4245	2851	5042	5406	3370	5870	4560	4433	3485	5214	6156	6764	4732	66
+       134	3809	5838	4603	61	985	1015	11104	2322	1561	
+
+H 67   4549	6010	3256	3312	4806	5963	4258	5276	4395	4456	6010	2910	6826	3260	3925	4056	4124	6610	6191	4491	67
+       72	5959	4926	2519	277	1370	706	11102	1375	1885	
+
+H 68   5754	7030	3595	5658	5079	1060	6330	7099	5532	5417	5063	3736	7099	4458	5719	5183	4638	5128	5642	7913	68
+       29	6138	7446	2099	384	2090	386	11059	1538	2225	
+
+I 69   7285	4041	3539	3822	5118	4197	6162	5114	3257	4659	5735	2882	*	3610	3612	3928	5201	6930	4516	4547	69
+       12	6886	*	1000	1000	761	1287	11072	1019	2056	
+
+T 70   4963	6636	5489	5890	7132	5102	5719	5598	4465	4197	6037	2808	4925	5486	4886	2923	1553	*	*	5429	70
+       44	5258	7945	1698	532	0	*	11109	1557	1343	
+
+P 71   2066	5187	*	6702	5262	6271	6205	4567	*	3308	6819	*	1567	*	5953	4369	5476	3610	*	6261	71
+       24	5903	*	2267	336	*	0	11199	1219	1000	
+
+L 72   4644	6959	*	*	3568	6249	*	3076	6563	979	3860	*	5977	5086	6831	5397	*	3982	6982	*	72
+       18	7323	7360	5170	41	*	0	11199	1000	1000	
+
+L 73   6671	7250	4045	5773	3577	*	1327	4895	5608	3758	4684	5619	6875	4868	5280	5016	4319	4883	5223	5329	73
+       0	*	*	*	*	865	1148	11178	0	1188	
+
+S 74   5374	4913	5628	4545	4063	4978	5678	2930	5096	2484	7308	5436	*	4671	4856	5559	4396	3163	4388	3352	74
+       0	*	*	*	*	*	0	11199	0	1000	
+
+A 75   777	4719	6702	7441	6184	6831	7058	4911	5909	3618	6208	5704	6089	*	*	3864	5540	4219	*	6563	75
+       11	*	7094	*	*	*	0	11199	0	1000	
+
+V 76   2189	3260	5727	6030	6023	6060	7055	2866	*	3583	5720	7433	5220	4753	5903	4014	4624	2711	7251	5909	76
+       56	5082	6814	2984	195	*	0	11188	1537	1166	
+
+Y 77   3862	5667	4887	3685	4260	6031	7185	3383	3717	4337	4393	4903	4829	4090	3211	3942	4139	4232	7013	4698	77
+       34	5406	*	2287	331	*	0	11146	1354	1375	
+
+E 78   3632	5899	*	5098	5180	4590	4335	5593	4472	3930	5600	3084	5941	4702	3535	3158	3975	5105	6054	3011	78
+       21	6110	*	2276	334	1983	421	11137	1157	1520	
+
+G 79   4957	7155	3447	4506	*	1535	5403	5690	3315	*	*	2969	6165	4510	3775	4938	6985	7220	6456	5690	79
+       61	4870	7148	2109	380	901	1107	11080	1662	1493	
+
+H 80   4097	4206	3683	5102	5108	7029	3087	4959	4551	4439	7278	2253	6841	3589	4684	3762	7226	4846	6526	4959	80
+       133	3508	*	2758	231	*	0	11144	2807	1376	
+
+V 81   4890	6800	4886	3837	3987	*	6085	3068	3326	2782	6201	4616	3608	5065	5674	4349	4311	4538	5847	3928	81
+       0	*	*	*	*	*	0	11142	0	1376	
+
+S 82   4527	6890	2500	1834	7172	5480	7118	6866	3460	5742	5576	3442	*	5246	4283	4223	4773	4569	6231	*	82
+       46	4980	*	2133	373	823	1202	11142	1592	1376	
+
+C 83   3600	3464	7316	6833	4403	5107	7348	1939	*	3162	3276	6031	*	5308	*	4913	4200	2994	*	*	83
+       22	7158	6998	2000	415	*	0	11097	1000	1064	
+
+V 84   2636	5254	*	*	3984	6944	*	2575	7182	2641	4255	6583	5722	7188	5370	5252	5136	2572	5150	4548	84
+       10	*	7171	*	*	*	0	11146	0	1256	
+
+K 85   5593	6473	4190	2891	*	6137	6100	4358	2000	4454	7460	5270	5484	2523	3169	4522	6929	6105	*	*	85
+       9	7276	*	1000	1000	1575	590	11127	1000	1471	
+
+L 86   4017	5891	5339	5162	3004	7211	*	3366	5136	2144	4599	5429	*	5369	4818	6765	4727	4033	5350	2954	86
+       0	*	*	*	*	*	0	11129	0	1426	
+
+L 87   6244	6214	7321	*	4025	*	*	3397	5745	719	3899	*	*	*	6874	4922	6025	4837	*	5276	87
+       25	*	5880	3585	126	1812	483	11129	1000	1426	
+
+L 88   4576	4642	*	7197	3379	6250	5048	2535	6015	1970	3929	5214	*	5600	5992	4284	*	3076	*	5074	88
+       39	5986	6537	3265	158	*	0	11097	1248	1655	
+
+S 89   4330	*	2737	2428	*	*	4791	6270	3568	5121	5632	3752	4899	3583	4781	2896	4395	5455	*	*	89
+       22	6050	*	2106	381	1394	691	10926	1221	1852	
+
+K 90   3758	7027	7094	4876	4939	4626	3098	5521	3131	4613	6920	3135	5908	4637	3952	3841	4503	4215	*	3336	90
+       312	2563	5317	1121	889	1964	427	10966	4215	1686	
+
+G 91   4935	5387	4148	5169	*	1145	5555	7072	4736	4937	6834	4089	5393	4751	4635	3780	5367	5432	*	5700	91
+       69	4747	6721	2194	356	*	0	10906	1639	2155	
+
+A 92   2024	4379	*	4985	4492	5336	6738	3242	5519	4208	5847	5884	3085	6569	6001	3406	5434	3179	*	6947	92
+       40	5642	7136	531	1700	1512	623	10873	1233	2348	
+
+D 93   5881	6551	1880	3862	5216	5128	4639	5463	4282	4074	6686	3031	5216	4727	4229	3460	6056	5748	6390	5926	93
+       173	3534	5219	1007	993	1640	558	10814	2564	1998	
+
+K 94   4279	*	5868	5858	3994	5386	6754	2681	3838	3071	6111	6017	3990	6897	6763	3832	4876	2243	5933	5008	94
+       59	5647	5655	2911	206	*	0	10788	1446	2200	
+
+T 95   4106	*	2697	4081	*	5158	6753	5565	3966	4384	*	1907	5535	6797	4961	3459	3524	5179	5951	7093	95
+       40	5860	6611	1916	444	1480	641	10722	1181	2567	
+
+V 96   3304	5175	5072	4461	4959	4700	5876	3110	4561	3521	4843	5826	4904	4557	4490	3740	3708	3246	6681	5400	96
+       58	5072	6736	2562	268	882	1128	10815	1512	2172	
+
+K 97   4610	5685	6376	4227	4756	7076	5813	3978	2525	4007	4893	4672	4012	4011	3112	4928	3661	3635	*	7052	97
+       12	6960	*	2585	263	1065	938	10803	1000	1656	
+
+G 98   4504	6709	1645	4332	6185	4042	*	5801	4679	5429	*	1926	6036	*	*	3554	4737	6195	*	7031	98
+       16	6524	*	0	*	*	0	10850	1031	1264	
+
+P 99   3964	*	4013	3509	5405	4333	4021	4269	3292	4203	5313	3025	5570	5442	4880	3094	4425	6951	6065	5041	99
+       10	*	7174	*	*	973	1028	10839	0	1264	
+
+D 100  4533	5002	2703	3998	4070	4328	4070	6056	4084	4215	4954	3621	7263	4850	3809	3746	4905	6983	*	3819	100
+       0	*	*	*	*	846	1172	10868	0	1212	
+
+G 101  6498	6123	4229	4288	6415	1195	5248	6774	4089	5411	*	3874	*	4674	4319	3853	5240	4997	*	5697	101
+       53	4802	*	1772	500	*	0	10891	1567	1000	
+
+L 102  5364	5757	3758	3255	6284	4558	4112	5926	3146	3660	4254	3055	*	4051	4148	4337	3991	6056	6984	4954	102
+       12	6900	*	0	*	*	0	10827	1000	1229	
+
+T 103  5052	6396	5200	5855	5791	6984	5902	5010	3981	4857	6055	3542	4795	6928	5482	3139	1336	5375	*	4618	103
+       14	6646	*	1301	751	1235	798	10827	1195	1229	
+
+A 104  2069	*	*	*	5728	4792	*	3742	*	3344	*	*	1270	*	6884	5823	5949	3711	*	*	104
+       0	*	*	*	*	0	*	10815	0	1057	
+
+L 105  5098	6662	7080	5570	3439	5917	*	2739	*	1350	4279	*	*	6809	5262	5076	5851	3592	6755	4162	105
+       15	6635	*	0	*	*	*	10744	1011	0	
+
+E 106  6419	*	2675	3928	3728	*	2285	5062	*	5725	4030	4397	5665	3801	6850	3594	5134	4536	*	3767	106
+       0	*	*	*	*	*	*	10404	0	0	
+
+A 107  4852	6144	*	5132	4887	7033	3810	3203	5703	1871	5825	6574	*	6880	6565	4088	5288	3379	5165	2705	107
+       0	*	*	*	*	*	*	10395	0	0	
+
+T 108  629	3612	*	6449	5823	6558	6713	5786	*	4302	*	6679	*	4835	*	4220	4742	5804	*	*	108
+       41	5161	*	1209	818	*	*	10270	1308	0	
+
+D 109  2654	3851	5194	3686	6705	4649	5476	3358	4141	3715	*	5683	6127	6188	4308	3231	4096	3300	*	*	109
+       46	5547	6619	944	1058	*	*	10226	1165	0	
+
+N 110  4920	*	3501	4108	5073	5600	3814	6311	2873	3939	6426	3352	6295	5686	2652	3481	4758	6227	*	4501	110
+       78	4248	*	1762	504	0	*	10213	1656	1006	
+
+Q 111  3333	6263	4528	3758	4997	5481	5495	4998	3338	4856	4774	3376	3948	4633	4025	3165	5010	5187	6117	4437	111
+       0	*	*	*	*	*	*	10137	0	0	
+
+A 112  4986	5329	3309	3353	5535	2213	6338	4050	3746	*	5471	2612	5190	*	5403	3804	4569	6724	*	*	112
+       0	*	*	*	*	*	*	10118	0	0	
+
+I 113  4904	6252	4619	4663	5371	*	3274	2843	3902	3907	4055	2686	*	3600	6111	5147	5228	3815	5465	6402	113
+       15	6582	*	2807	222	*	*	10030	1000	0	
+
+K 114  3384	*	5176	5473	*	6062	*	3607	2983	3147	6285	4869	5386	4486	3666	4439	3106	3184	6114	4777	114
+       0	*	*	*	*	*	*	9972	0	0	
+
+A 115  4537	*	3576	1478	6541	6209	5907	*	2706	5389	*	3534	6349	3945	4660	4427	5492	*	*	5363	115
+       0	*	*	*	*	*	*	9972	0	0	
+
+L 116  4272	6014	*	*	4335	*	*	2029	6242	1906	2922	6169	*	*	*	5210	5281	3315	6260	4436	116
+       0	*	*	*	*	*	*	9879	0	0	
+
+L 117  5121	*	*	5945	4266	*	*	2500	6269	1326	3194	*	*	*	*	6068	*	2631	5941	6315	117
+       0	*	*	*	*	*	*	9601	0	0	
+
+Q 118  4843	*	*	2252	*	*	*	*	1681	*	*	*	*	2151	2955	3833	*	5700	*	*	118
+       0	*	*	0	*	*	*	9036	0	0	
+
+//
+�HHsearch 1.5
+NAME  2c276c7332b4ac4757cbea933e3f987e
+FAM   
+FILE  2c276c7332b4ac4757cbea933e3f987e
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 11:56:55 2013
+LENG  78 match states, 78 columns in multiple alignment
+FILT  106 out of 1048 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.7 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCEEEEEEECCCCEEEEEECCCCCHHHHHHHHHHHHCCCHHHEEEEECCEECCCCCCHHHCCCCCCCEEEEEEECCCC
+>ss_conf PSIPRED confidence values
+957999990899899999699890999999999987979689799999999789883899599999899999947999
+>Consensus
+xxmxixvkxxxxxxxxxxvxxxxtvxxlkxxixxxxxxxxxxxxlxxxgxxLxdxxxlxxxxixxxxxixxxxxxxxx
+>2c276c7332b4ac4757cbea933e3f987e
+MGMIVFVRFNSSYGFPVEVDSDTSILQLKEVVAKRQGVPADQLRVIFAGKELPNHLTVQNCDLEQQSIVHIVQRPRRR
+>gi|154417020|ref|XP_001581531.1| hypothetical protein [Trichomonas vaginalis G3]gi|121915759|gb|EAY20545.1| hypothetical protein TVAG_239180 [Trichomonas vaginalis G3]
+-GYRVKVNCMDHFIInVSGVRDDMSSTEFLQQIAQAAVLTPNDFKIVFGIRQFFENHPLSDYKMHDGSVLKLSLRNRG-
+>gi|118353549|ref|XP_001010040.1| Ubiquitin family protein [Tetrahymena thermophila]gi|89291807|gb|EAR89795.1| Ubiquitin family protein [Tetrahymena thermophila SB210]
+--ISIQIKTLTGQTLAFKCKLNQKVYQLKNQIQEQFQISPSQQKLIYAEQQLEDDQQLYCYNLQSDCVVHLAQTLKK-
+>gi|242010787|ref|XP_002426140.1| ubiquitin domain-containing protein, putative [Pediculus humanus corporis]gi|212510187|gb|EEB13402.1| ubiquitin domain-containing protein, putative [Pediculus humanus corporis]
+--CTLKLRLSTScTDVKLLINSNKTIGMAKKKLcqqlkNSDINLEPSGQRWYFGGRLLVDKMKINEIHIQPGYVIQVIYN----
+>gi|254585453|ref|XP_002498294.1| ZYRO0G06864p [Zygosaccharomyces rouxii]gi|238941188|emb|CAR29361.1| ZYRO0G06864p [Zygosaccharomyces rouxii]
+--MNLTISnETNEEVYgPLEVSDDMTLPDLVALIELECGFDRSKHDLYHSVTLLDpNDTkSLTAIGMGDNELLLI-------
+>gi|194223268|ref|XP_001490596.2| PREDICTED: ubiquitin D-like [Equus caballus]
+------VHSEQWKLMTFNANSYDRVKKINEHVRSKTKVPVQDQILLLGSKTLKPMRKLSSYGIDKETTIHLTLK----
+>gi|297719771|ref|NP_001172247.1| Os01g0234850 [Oryza sativa Japonica Group]gi|255673035|dbj|BAH90977.1| Os01g0234850 [Oryza sativa Japonica Group]
+---RTAVRTVYGRKFKFQVDQRRNARYMKQEISrnveSPNGIG-ESMTL-VNGEKLDESTLISTICETNTSDTDFLANK---
+>gi|297823061|ref|XP_002879413.1| hypothetical protein ARALYDRAFT_321011 [Arabidopsis lyrata subsp. lyrata]gi|297325252|gb|EFH55672.1| hypothetical protein ARALYDRAFT_321011 [Arabidopsis lyrata subsp. lyrata]
+--ITLKVKNQQGAEDLYKIGAHAHLKKLMSAYCMKRNLDYGSVRFVYNGREIKARQTPAQLKMEEEDEICSVM-----
+>gi|335282306|ref|XP_003123059.2| PREDICTED: midnolin-like [Sus scrofa]
+--VPQFIGGVPHGKTGVPGGVEVPAAGVGGAAAASFACVPAGfrICLAAPSARLSSG-KLQEFGVGDGSKLTLV------
+>gi|149634203|ref|XP_001511134.1| PREDICTED: hypothetical protein [Ornithorhynchus anatinus]
+--KKVEILDyKTKKQLCFldKVEPHASINDIRLMFHkFYPQWYPARQSIRldPKGKSLRNEEILQRLPVGTTATLYF-------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	3156	*	*	3182	*	363	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	4649	0	0	
+
+G 2    4777	*	2843	4423	*	2062	*	*	*	5067	4507	*	3420	4626	*	2617	2942	4747	*	*	2
+       82	4182	*	2000	415	*	*	7258	1138	0	
+
+M 3    6147	6171	*	*	4756	5859	*	2487	6203	3457	1417	6023	6376	5308	6349	5746	5268	3057	*	5033	3
+       0	*	*	*	*	*	*	9346	0	0	
+
+I 4    *	*	4666	3144	5841	*	4928	4518	3106	6353	5597	5093	3907	2387	3085	3877	3340	5461	*	6628	4
+       0	*	*	*	*	*	*	9573	0	0	
+
+V 5    *	*	*	*	4357	*	*	1633	*	2022	6413	5527	*	5938	*	5087	*	1721	*	*	5
+       14	6689	*	0	*	*	*	9684	1000	0	
+
+F 6    4850	5554	6584	5067	2689	*	4429	3393	2990	3493	6556	4262	*	6345	3939	4244	3052	4084	*	5653	6
+       0	*	*	*	*	*	*	9695	0	0	
+
+V 7    6428	4224	*	*	5393	6429	5574	2017	*	2495	6145	*	*	6673	*	6171	6636	1397	*	5238	7
+       0	*	*	*	*	*	*	9731	0	0	
+
+R 8    5568	6604	*	4790	*	4720	5538	6519	1573	4067	6600	3444	5414	5555	2090	4703	4749	6812	*	*	8
+       125	3596	*	2010	412	*	*	9753	2369	0	
+
+F 9    4278	4920	3455	5644	4331	4085	4298	4991	5490	3827	5583	4167	6361	4255	5723	2522	3002	4976	5579	6798	9
+       119	4886	4466	0	*	*	0	9666	1400	1106	
+
+N 10   3947	6232	6598	4972	3977	4926	4605	3947	3809	3322	4107	5664	3226	3768	4903	3779	3951	4214	6281	6598	10
+       48	5565	6398	1000	1000	479	1822	9726	1148	1861	
+
+S 11   4902	5739	2936	4346	*	2595	5650	6453	3403	4991	6642	2802	5447	6184	3925	3920	3365	5973	*	6622	11
+       52	4822	*	0	*	1301	751	9791	1533	1316	
+
+S 12   5402	*	3368	3754	*	1495	4545	*	3817	6649	6092	3526	6676	4637	4697	3700	5115	6801	*	5502	12
+       78	6421	4611	0	*	*	0	9805	1009	1106	
+
+Y 13   4310	*	4335	2742	6303	3973	4140	*	3001	6408	*	4649	4406	3542	2999	3484	4259	4938	*	6848	13
+       176	3791	4548	503	1763	779	1262	9896	2134	2007	
+
+G 14   5774	5477	3275	3914	5172	5571	4006	3116	3680	4128	6405	*	5607	4299	5576	3505	3004	3487	6778	6257	14
+       44	5044	*	527	1708	854	1162	9852	1404	2096	
+
+F 15   4041	6800	6146	4188	2661	5714	4668	2947	4132	3370	5623	5643	6408	5663	4885	5101	3731	3459	5490	4714	15
+       69	4420	*	272	2540	0	*	9967	1600	1397	
+
+P 16   5028	5626	5375	2811	4277	4431	*	4470	4887	4087	7158	5078	3688	4388	4035	3094	3486	3234	*	6478	16
+       0	*	*	*	*	*	*	10097	0	0	
+
+V 17   5759	6758	*	*	2429	*	6848	2583	4795	2055	5346	5802	6669	6688	6855	4696	6836	2591	*	4312	17
+       66	4834	6725	816	1211	*	*	10097	1527	0	
+
+E 18   3842	*	2977	2775	*	4515	4816	6608	3537	5099	*	4121	3798	4482	4605	3425	3483	4839	6521	6834	18
+       79	4582	6413	681	1411	0	*	10078	1643	1000	
+
+V 19   4919	4739	*	*	2893	4516	*	2370	6054	3329	6873	*	5718	6388	*	5525	4225	1659	*	6415	19
+       64	5668	5381	0	*	*	0	10065	1283	1029	
+
+D 20   5182	*	2941	2932	*	3402	5441	*	4415	5017	*	3973	3502	4380	4170	2428	4164	*	*	5744	20
+       41	5161	*	1977	423	1671	544	9991	1352	1529	
+
+S 21   4270	*	4220	3445	6539	4554	5829	*	3633	3204	*	4548	1959	4353	4947	3889	4700	4435	6768	*	21
+       0	*	*	1585	585	*	0	10022	1106	1303	
+
+D 22   5051	6549	2756	3433	5661	3572	4264	6844	5260	5759	7072	2619	6859	4434	*	3493	3275	4523	*	4362	22
+       0	*	*	*	*	0	*	10022	0	1303	
+
+T 23   2718	5086	2744	3437	*	5180	*	5604	4499	4262	4685	4344	6556	3846	5757	4356	3340	4153	4933	6763	23
+       10	7135	*	1000	1000	*	*	10097	1000	0	
+
+S 24   6386	5853	5117	6058	6684	*	6250	5346	4319	4870	5807	4846	3362	5849	5634	2448	1262	*	*	7078	24
+       25	5847	*	2865	213	*	*	10097	1178	0	
+
+I 25   4716	*	*	*	5614	5115	*	1836	*	2705	5240	*	6286	5300	*	4727	5421	1501	*	*	25
+       0	*	*	*	*	*	*	10097	0	0	
+
+L 26   3612	*	6909	2941	6646	2404	6610	6809	3171	4121	*	4993	6921	3858	3513	3325	5113	6162	*	4203	26
+       0	*	*	*	*	*	*	10097	0	0	
+
+Q 27   4122	*	2434	2374	*	6417	6215	6860	3934	4559	5153	4569	*	2548	*	3570	4796	4538	*	5757	27
+       0	*	*	*	*	*	*	10097	0	0	
+
+L 28   5766	*	*	6162	2940	*	*	2518	*	1295	6534	*	*	*	*	5300	*	2190	*	*	28
+       0	*	*	*	*	*	*	10097	0	0	
+
+K 29   6162	6843	*	6690	5601	5721	6031	4606	828	4365	5483	*	*	4232	2843	5312	*	5668	*	*	29
+       0	*	*	*	*	*	*	10097	0	0	
+
+E 30   3080	*	3618	2603	*	5443	5884	7026	2652	5114	5248	4339	6040	3514	4794	3312	4128	5168	*	*	30
+       15	6591	*	4459	67	*	*	10097	1037	0	
+
+V 31   2945	*	6418	3952	4765	*	4622	5231	2682	3719	4183	*	6275	2973	2987	5599	4597	4804	*	4683	31
+       10	*	7213	*	*	*	0	10073	0	1037	
+
+V 32   6412	*	*	*	3705	6267	5791	1514	5881	1803	5606	6364	*	*	*	6667	*	2651	*	5320	32
+       79	4894	5672	1024	977	1497	631	10071	1607	1169	
+
+A 33   1818	5468	5818	3741	4454	6526	4509	6870	4667	5260	*	5867	*	3352	4177	3385	5410	4337	6392	3720	33
+       54	4772	*	277	2515	*	0	10037	1518	1444	
+
+K 34   3565	6350	3427	2615	5714	*	*	5913	3244	4803	6209	4608	5420	2848	3951	2786	4886	6674	*	*	34
+       45	5015	*	2552	270	*	0	10037	1581	1444	
+
+R 35   3326	*	4747	3326	*	6647	5252	3842	2358	3875	6661	6733	5607	3559	2896	4872	5191	4952	*	4595	35
+       40	5183	*	0	*	*	0	10037	1339	1444	
+
+Q 36   5032	4911	6676	3284	3358	4581	5068	4254	3721	3872	6742	6452	5191	5965	4168	4222	2840	5056	6725	3245	36
+       38	7173	5736	1000	1000	*	0	10037	1000	1444	
+
+G 37   4568	*	4157	4869	6459	1326	4764	*	3793	5760	6226	3529	5392	3757	4648	3906	6161	6423	*	*	37
+       190	3016	*	2116	378	1396	689	10027	3201	1853	
+
+V 38   5666	4750	6372	5773	4364	5298	*	2177	4386	2607	5467	5731	4573	5678	6667	4756	4311	3134	4931	4086	38
+       102	4986	4766	1607	574	636	1488	10065	1452	1464	
+
+P 39   4052	*	3451	3384	6662	6468	5006	5570	4992	4694	6792	4814	2235	4226	6161	2646	4873	4259	*	4699	39
+       78	5092	5419	0	*	1001	999	10012	1326	1797	
+
+A 40   2378	*	4572	4007	5596	6666	6632	3850	7064	4561	6525	6146	2231	5678	4776	4558	3705	3556	5517	5409	40
+       48	5698	6192	0	*	1137	875	9973	1179	1719	
+
+D 41   3611	*	2699	3326	*	3080	4854	6160	4122	5370	6356	3136	5835	3633	5519	3247	4426	5779	*	*	41
+       55	5835	5665	0	*	*	0	9986	1219	1577	
+
+Q 42   4061	*	2776	3409	4924	4603	5865	6748	3566	4714	*	3779	6638	3144	2790	4399	4672	6329	*	4751	42
+       18	6334	*	1000	1000	*	0	9944	1051	1950	
+
+L 43   *	6768	6485	6329	4208	*	5365	2531	6153	2780	3527	6686	*	1646	*	*	6656	3508	6454	5016	43
+       16	6485	*	2108	381	1500	629	9944	1242	1950	
+
+R 44   *	5653	6011	3877	*	5676	5914	5777	2250	5643	6622	4971	*	5152	1603	3823	4301	3872	6629	6279	44
+       24	5939	*	0	*	1816	482	9992	1106	1557	
+
+V 45   *	6561	*	*	3549	*	6191	2145	*	875	6896	*	*	6023	*	*	*	3810	5387	*	45
+       29	6736	6561	0	*	1013	987	10010	1010	1345	
+
+I 46   4556	4746	*	4754	3665	*	5845	3154	6678	2486	4516	5152	*	4592	4750	3982	3895	2678	5558	5167	46
+       97	4161	6744	1000	1000	*	0	10046	1865	1313	
+
+F 47   4183	4742	6437	6824	2514	*	3348	4216	5538	3044	*	6797	4838	7063	6633	4073	4941	4236	*	2246	47
+       63	5121	6144	2047	400	0	*	10040	1545	1520	
+
+A 48   3496	6145	3301	4892	6174	2409	5814	6752	2842	5675	5884	2818	5137	3639	4596	5614	5567	*	*	5398	48
+       39	5215	*	1730	517	*	0	10047	1426	1067	
+
+G 49   5803	*	4262	4925	*	876	7093	6459	5076	6191	6898	4128	*	4754	5693	3287	5567	*	*	4492	49
+       187	3219	6174	1530	613	0	*	10047	2758	1067	
+
+K 50   4376	*	5773	4015	4849	4806	4497	6678	2017	4901	*	5072	5474	3704	2420	3415	5121	5135	*	*	50
+       41	5876	6502	0	*	0	*	10037	1128	1054	
+
+E 51   5223	7117	4417	3739	3907	*	*	3486	4334	2934	*	6416	3330	3350	3873	4435	4693	3021	6363	6627	51
+       48	4940	*	1144	869	*	0	10063	1443	1008	
+
+L 52   *	*	6794	6172	4411	*	5796	4115	6408	670	4391	*	5069	6449	6363	6729	*	3272	*	*	52
+       159	3261	*	1185	836	*	0	10063	3027	1008	
+
+P 53   3807	6201	3228	2831	6459	6468	4497	*	2534	4711	6584	3746	4029	5632	3828	3361	6556	4821	6679	*	53
+       91	4265	6752	1779	497	*	0	10063	1760	1008	
+
+N 54   4357	*	1132	3490	*	5022	5828	6628	5761	5099	6718	3065	3500	*	*	3822	6403	*	*	*	54
+       45	5022	*	2179	360	1024	977	10044	1628	1227	
+
+H 55   4350	6835	2358	2733	*	3711	4788	*	4977	*	*	2748	6285	4676	3879	3788	3676	5432	*	6672	55
+       17	*	6393	*	*	*	0	10078	0	1015	
+
+L 56   4097	6387	4330	4659	6824	6679	4437	4522	2347	3846	4849	3845	*	3274	3935	3564	4106	5794	6523	5542	56
+       99	3914	*	674	1422	895	1113	10036	2012	1269	
+
+T 57   4896	*	4371	6199	*	*	*	4087	3655	3085	6726	6545	4095	5346	5086	2567	1769	4579	*	6418	57
+       47	4974	*	1388	694	*	0	10078	1460	1015	
+
+V 58   7029	6845	*	*	4065	*	*	2425	*	933	5493	6545	5311	*	5515	5409	*	3360	6251	*	58
+       0	*	*	*	*	*	0	10078	0	1015	
+
+Q 59   2837	*	4680	3251	5358	3487	6418	*	3400	5371	*	4594	5372	3603	4329	2599	3750	5262	*	6824	59
+       18	*	6366	*	*	*	0	10078	0	1015	
+
+N 60   4507	*	1731	2648	5667	5547	5681	*	5525	5488	*	3812	*	3514	5808	2762	5739	6607	*	4724	60
+       16	6530	*	3807	107	*	0	10052	1000	1292	
+
+C 61   4463	3962	*	*	4125	6138	6669	3762	5897	2273	6537	4719	6580	5238	6149	4594	5835	4304	*	1725	61
+       50	5328	6791	1968	426	837	1184	10052	1549	1292	
+
+D 62   4604	4776	4153	4062	*	1606	4913	6129	3669	4789	*	2753	4729	4351	5666	4818	5311	*	*	*	62
+       65	6611	4879	1000	1000	1563	596	10064	1021	1357	
+
+L 63   5475	5056	*	6654	5737	6540	*	1537	*	2473	4162	6792	6206	5390	5584	5707	5005	2479	5033	*	63
+       19	6241	*	3323	152	2056	397	9987	1339	1896	
+
+E 64   4430	*	3921	3296	4020	3680	4652	5167	3027	5886	*	3878	4294	3820	4045	4047	3455	4760	*	*	64
+       54	5005	7418	0	*	2485	284	10032	1365	1642	
+
+Q 65   4835	*	2295	2806	*	*	4645	5581	4123	4139	5700	2547	4112	5165	5276	3221	5467	*	*	6455	65
+       16	*	6533	*	*	0	*	9917	0	1649	
+
+Q 66   5071	5568	3003	4618	*	1608	6686	6717	4240	4915	*	2768	5593	4701	3820	5079	4827	6839	*	*	66
+       89	5546	4706	2340	317	*	0	10001	1233	1000	
+
+S 67   3422	4298	2121	5633	6066	4328	5229	5315	6000	*	4854	5612	5592	5479	*	2039	4515	3937	*	5439	67
+       21	6138	*	1585	585	1219	810	9861	1069	1827	
+
+I 68   6942	*	5497	3914	5140	6482	5612	2937	3893	3815	4704	5083	6154	4271	3494	4900	2584	2817	*	6663	68
+       0	*	*	*	*	2141	371	9830	0	1657	
+
+V 69   6447	*	*	*	4918	*	*	1514	*	1616	5668	6601	6243	*	*	*	*	2142	*	6738	69
+       28	5723	*	561	1635	745	1310	9857	1349	1468	
+
+H 70   4689	4613	3722	5639	4999	*	2578	3711	5437	4327	5508	4653	*	3764	4720	5568	4092	3306	*	3031	70
+       0	*	*	*	*	*	0	9864	0	1070	
+
+I 71   4934	4247	*	*	4270	*	6129	3236	*	1828	3912	*	*	6274	*	5371	6132	1755	5109	5825	71
+       17	6439	*	0	*	*	0	9864	1093	1070	
+
+V 72   4951	6545	6067	4687	5619	*	4508	2124	5228	3126	4257	5269	*	5126	*	4676	4272	2256	4648	5556	72
+       0	*	*	*	*	*	0	9666	0	1070	
+
+Q 73   5944	4181	*	5153	5093	5901	*	2767	4768	2518	5583	*	5114	6161	3649	3500	4845	2440	5135	5877	73
+       25	5883	*	2000	415	*	0	9148	1021	1070	
+
+R 74   *	5608	4111	3801	*	*	5037	*	2057	*	*	4089	4710	5860	1506	3806	5600	5588	*	*	74
+       0	*	*	*	*	0	*	8798	0	1070	
+
+P 75   5111	*	*	4250	*	5337	4242	5035	3159	2235	*	3638	2591	4001	5516	3335	*	5052	*	5249	75
+       0	*	*	*	*	*	*	8115	0	0	
+
+R 76   3895	*	*	3670	*	*	4807	*	3280	*	*	*	3055	4639	1140	3807	5060	*	*	*	76
+       0	*	*	*	*	*	*	7139	0	0	
+
+R 77   4260	*	*	4622	*	1366	*	4376	3221	*	*	3334	*	*	2181	4502	*	*	*	*	77
+       0	*	*	*	*	*	*	6461	0	0	
+
+R 78   *	*	*	*	*	2682	*	*	1781	*	*	*	*	2976	2778	1836	*	*	*	*	78
+       0	*	*	0	*	*	*	4071	0	0	
+
+//
+�HHsearch 1.5
+NAME  2cf47989aa11bbeeda0f0b4af2c1f1ad
+FAM   
+FILE  2cf47989aa11bbeeda0f0b4af2c1f1ad
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:11:37 2013
+LENG  136 match states, 136 columns in multiple alignment
+FILT  142 out of 1017 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  11.4
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCEEEEEECCHHHHHHHHHHHHHCCCEEEEECCHHHHHHHHHCCCCCEEEEECCCCCCCHHHHHHHHHHHCCCCEEEEEECCCCHHHHHHHHHCCCCE
+EEECCCCHHHHHHHHHHHHHHHHCCCCHHHHCCCCC
+>ss_conf PSIPRED confidence values
+9975799996999999999999997797899978999999998618998899956888875899999999718997099996798879999999689869
+992899999999999999975133696334141209
+>Consensus
+xxxxxvliixxxxxxxxxlxxxlxxxxxxxxxxxxxxxxxxxxxxxxxdlvlxdxxxxxxxxxxxxxxlxxxxxxxxxixlxxxxxxxxxxxxxxxgxxx
+xlxkpxxxxxlxxxlxxxxxxxxxxxxxxxxxxxxx
+>2cf47989aa11bbeeda0f0b4af2c1f1ad
+HMNKKILVVDDEESIVTLLQYNLERSGYDVITASDGEEALKKAETEKPDLIVLDVMLPKLDGIEVCKQLRQQKLMFPILMLTAKDEEFDKVLGLELGADD
+YMTKPFSPREVNARVKAILRRSEIRAPSSEMKNDEM
+>gi|258405286|ref|YP_003198028.1| response regulator receiver protein [Desulfohalobium retbaense DSM 5692]gi|257797513|gb|ACV68450.1| response regulator receiver protein [Desulfohalobium retbaense DSM 5692]
+--DYKVRIEIGNRLVRRQFETVV--------GQk------------selsilegqslERPDLLIKEISDDPDHIFDLVQNS-------lyndeagEIFLT
+SESKDQNLVLKAMRSGAREFFGPYTVEDEISSALDRFMTRQa--------------
+>gi|119897298|ref|YP_932511.1| signaling protein [Azoarcus sp. BH72]gi|119669711|emb|CAL93624.1| hypothetical signaling protein [Azoarcus sp. BH72]
+--PKEPFRPDLSEgAETGVY---LALLELLD-EGLIITGDETVLDANSAACALLqrDYRELAGQPLANLFPSER-AFIeARARLFIQGQMRGTLTVALPA
+GGTAALRfiaaprlRPGIHALILSPLPSATaAAQP-------------
+>gi|261251799|ref|ZP_05944373.1| response regulator VbsA [Vibrio orientalis CIP 102891 = ATCC 33934]gi|260938672|gb|EEX94660.1| response regulator VbsA [Vibrio orientalis CIP 102891 = ATCC 33934]gi|342816460|gb|EGU51357.1| LuxR family transcripitonal regulator [Vibrio orientalis CIP 102891 = ATCC 33934]
+---IHFIVIEPQPLLRHSLTELVASQPfvgnvYALSDCSDVE----ailqTKPVHGIIFDPTNDLSAASELMTFLAE---Srp--HI----------yti
+aysmnmtSSYRR-lFDTmnimgivsrldsi-------------ETLQASLMAAAHGYA-------------
+>gi|293606334|ref|ZP_06688694.1| response regulator [Achromobacter piechaudii ATCC 43553]gi|292815194|gb|EFF74315.1| response regulator [Achromobacter piechaudii ATCC 43553]
+-CGIELITFGPASVSSDAVDALLKNGALREVrAACGLDALIEALCQQDADVILCEVHGVPCEALLLPGHLqrefdaGRLRRLPAVLWISDLPRSIleaca
+GSFRTAGGKLQIATIATGVAASLDLFAKAGRG--GAPAAAA-------
+>gi|119487283|ref|ZP_01621034.1| Putative diguanylate cyclase (GGDEF domain) [Lyngbya sp. PCC 8106]gi|119455838|gb|EAW36973.1| Putative diguanylate cyclase (GGDEF domain) [Lyngbya sp. PCC 8106]
+--ETQFLLqaiwaIEKSQT-LEEAISSI-LDVICQNICWDYGEGWLPNPdKGVLEYIpqfqSCSAAFERFQKQSrlitfasgegLPGRIWQsHKpewied
+cstcsepvylrtqlvvDAglkavfgVPVVESEKLLAILVFYHTQAIPYQSRIVELI--QAVATQLSSSLQQAQLK-----------
+>gi|288573489|ref|ZP_06391846.1| response regulator receiver modulated diguanylate cyclase [Dethiosulfovibrio peptidovorans DSM 11002]gi|288569230|gb|EFC90787.1| response regulator receiver modulated diguanylate cyclase [Dethiosulfovibrio peptidovorans DSM 11002]
+--NSQLQKLSGDYRSALDDVKRV-QANFQTIMETTGDGIVVVDDAGLVRYVnpaaelLFESSSSEMIGNPF--SYDVdeDGDW--EISIKTSKGE-IYV-
+--DMRVVGS-NWDGDLVRLATLR-DISETVCLR-----------
+>gi|307721789|ref|YP_003892929.1| response regulator receiver modulated diguanylate cyclase [Sulfurimonas autotrophica DSM 16294]gi|306979882|gb|ADN09917.1| response regulator receiver modulated diguanylate cyclase [Sulfurimonas autotrophica DSM 16294]
+--NSISVIASTQH--VSFASKSF-LKYFGVADADEFNEKY----AS-----IINIFENNEDSintkniksyLHegksLYDFINFldETQRiTII----QN
+SENEQKSFLINIS-QI------NETQFLMNFTDVTEIEKQR-----------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+H 1    1638	*	*	*	*	1555	1563	*	*	*	*	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	2441	0	0	
+
+M 2    3906	4349	4743	*	4700	*	*	3665	3732	*	1196	4701	*	*	4764	3770	3855	*	*	*	2
+       52	*	4810	*	*	*	*	8246	0	0	
+
+N 3    4417	*	5488	3854	5750	2560	5799	5064	3306	*	4408	3108	3090	4217	3512	4030	4592	*	*	*	3
+       161	3736	5044	2224	347	*	0	11054	2079	1000	
+
+K 4    3636	*	6443	4471	5546	5505	6105	2938	2867	3780	4060	4495	4136	4812	3993	4137	3952	4947	6190	4734	4
+       65	4513	*	1674	542	1846	470	11631	1663	1412	
+
+K 5    3881	*	4837	4091	5625	6857	4055	5843	3021	5315	6524	3433	6099	4030	2302	3403	3687	5084	*	*	5
+       54	5434	6189	1481	640	0	*	11932	1441	1246	
+
+I 6    3836	6941	*	6973	4609	*	6854	1977	5667	2612	5531	7043	5575	*	5516	7194	4529	1797	*	5888	6
+       57	5217	6431	4938	48	0	*	11936	1645	1157	
+
+L 7    3211	5013	*	*	5565	*	6975	2856	*	1155	6971	*	7090	6650	5813	*	4290	2898	6635	7279	7
+       46	5924	6041	2389	306	*	0	11917	1261	1087	
+
+V 8    4846	6121	*	*	4139	*	6386	2019	6640	2093	4606	*	*	*	5655	*	5169	1987	6667	4634	8
+       86	4369	6764	2198	355	525	1712	11907	1903	1432	
+
+V 9    2998	4182	*	4836	4513	5668	*	2077	*	2641	5114	*	6448	*	6808	5691	5313	2291	6652	5977	9
+       27	6984	6589	0	*	*	0	11947	1000	1235	
+
+D 10   4431	*	1992	2185	6884	4013	5409	5423	4986	*	4924	4987	*	4480	6807	3539	3410	5906	*	5759	10
+       0	*	*	*	*	1827	477	11917	0	1483	
+
+D 11   4551	5085	2102	3553	6955	3532	4843	5752	4126	4998	6684	3967	3462	4558	4591	3312	5889	7076	*	*	11
+       0	*	*	3459	138	*	0	11935	1000	1296	
+
+E 12   4217	*	2214	4422	5472	4362	4245	6659	5509	4803	*	3049	4499	4297	4605	2663	5197	4951	*	5788	12
+       35	5860	7183	2000	415	1054	948	11943	1203	1296	
+
+E 13   3525	*	4788	2569	6183	4340	7586	4710	3882	3929	*	5611	2766	3900	4022	3607	5083	5105	7013	5373	13
+       67	6473	4865	850	1168	752	1300	11967	1240	1234	
+
+S 14   3594	*	3325	3073	5424	4127	5679	4984	5057	2800	6374	4098	5126	5225	4303	3874	4397	4143	5848	5204	14
+       79	6403	4589	1000	1000	2284	332	11906	1079	1818	
+
+I 15   3991	5401	4417	3749	3510	5363	7452	4264	5552	2927	6149	4698	5856	3955	4449	3674	4238	3461	5969	4286	15
+       68	5649	5249	1948	433	0	*	11755	1396	2507	
+
+V 16   2798	4468	4485	5530	4721	4559	6279	4246	4901	2968	5971	5138	5613	4797	2753	4004	4536	3843	7533	6985	16
+       10	*	7177	0	*	434	1945	11965	1082	1507	
+
+T 17   3683	6830	3107	2717	4734	4711	5685	5211	4150	4441	*	3968	5417	4214	3634	3653	3903	5135	7019	5935	17
+       75	7038	4544	1023	978	1064	939	12004	1155	1160	
+
+L 18   3455	6070	4936	3428	5010	3764	4772	4535	4138	3476	5665	5447	5491	3632	4326	3991	4802	4073	4843	4355	18
+       24	6767	7138	1097	909	0	*	11903	1248	1959	
+
+L 19   3962	6325	5766	6493	5447	*	*	2515	6028	1363	4165	*	*	6077	6352	7434	4833	2889	5518	6462	19
+       35	*	5389	*	*	*	0	12023	0	1000	
+
+Q 20   2645	5433	5008	3584	5245	5744	6087	5083	3345	3844	6406	4424	5341	3880	3216	4542	4572	3412	*	7002	20
+       24	7126	6722	1000	1000	*	0	11966	1000	1550	
+
+Y 21   3100	6995	3783	2314	*	4865	4884	5850	3546	4917	*	3994	6335	4047	4377	3154	4262	5582	7059	5582	21
+       44	7235	5423	0	*	*	0	11927	1000	1766	
+
+N 22   3209	5351	5617	5457	6328	5941	6379	3694	7050	1659	5122	7525	6737	3504	4875	4576	4993	3825	7082	3943	22
+       0	*	*	*	*	1359	713	11879	0	2301	
+
+L 23   5389	5271	*	6831	3525	6718	*	2763	*	1087	4423	*	6741	5415	6828	5827	5752	3286	*	*	23
+       219	4343	3450	2163	365	1502	628	11948	2378	1742	
+
+E 24   3301	7031	3820	2690	6962	4269	4814	7118	3443	4753	5555	5532	6061	3300	4766	2875	4566	4598	7033	6656	24
+       97	4156	6805	854	1162	179	3100	11533	2109	3541	
+
+R 25   3585	7289	3329	3186	5967	4024	7141	6268	3594	3795	7018	4069	6249	3661	3153	3869	4326	4833	7113	5965	25
+       158	4016	4577	766	1279	931	1072	11986	2344	1515	
+
+S 26   3161	6157	4448	4088	4763	4380	4069	4687	4312	2661	6728	4673	5125	4252	3718	4868	4753	6114	4866	4264	26
+       216	3973	3727	801	1231	385	2093	11999	2246	2182	
+
+G 27   4016	6866	3825	3756	5017	1778	4991	6979	4401	4789	*	4198	4744	5081	3957	4854	4481	4229	6182	7051	27
+       136	3474	*	1599	578	781	1258	11957	2998	2950	
+
+Y 28   3593	6033	7342	5990	2349	5768	3899	3419	7251	2941	7394	5468	7124	6325	5601	5022	6202	3725	4374	2932	28
+       50	5887	5879	642	1477	274	2530	11996	1188	1755	
+
+D 29   3776	5698	3234	2886	7228	5024	4411	4721	4720	4930	*	4445	4818	3848	3309	3667	3630	4541	*	5729	29
+       93	4222	6848	1612	571	1897	451	11997	2113	1380	
+
+V 30   3682	5078	4842	6836	3864	*	6006	3054	6490	2797	6972	*	4346	5872	4930	4738	3625	2048	7318	6007	30
+       38	*	5261	*	*	*	0	11987	0	1433	
+
+I 31   3510	6009	3961	3710	5130	4740	4787	3612	5319	4457	*	4873	6430	4531	4222	4255	3459	2657	5422	4886	31
+       211	3037	6120	535	1691	864	1150	11913	3998	2052	
+
+T 32   3116	6933	4626	3827	4057	4633	5477	3590	6133	4573	5826	4675	4680	4067	5234	3099	3593	3554	6985	5122	32
+       104	3994	7275	318	2339	748	1306	11994	2491	1720	
+
+A 33   2128	3642	*	4687	3051	5325	7051	3884	6523	4704	5198	5737	5123	7166	*	4389	4103	2550	*	5385	33
+       33	*	5455	*	*	1397	689	12041	0	1354	
+
+S 34   3882	5120	3785	3355	5049	3706	5930	5858	5546	4776	*	3486	4583	5016	3602	2880	3705	4747	6684	5011	34
+       52	6692	5295	1892	453	290	2459	12006	1361	1711	
+
+D 35   5078	5094	2569	3784	6995	5458	6313	6490	5112	4528	6778	3038	5330	7276	4463	2283	2772	6156	*	*	35
+       8	*	7456	0	*	0	*	11981	1000	1580	
+
+G 36   3238	7048	4787	4530	4846	2926	5878	3841	4865	3316	5695	4810	3496	4528	5313	3300	5363	4145	*	5345	36
+       39	5244	*	980	1020	0	*	12071	1476	1000	
+
+E 37   3225	5766	2842	2908	7382	4450	5573	5318	4542	4137	*	5391	4186	3962	4033	3636	3535	4893	*	*	37
+       56	5356	6225	1650	554	*	*	12065	1398	0	
+
+E 38   3092	*	2436	2436	6904	3370	5474	6108	4068	5701	5666	4310	6906	3467	5629	4244	5068	5607	*	*	38
+       20	7220	7166	0	*	*	0	12035	1000	1217	
+
+A 39   1851	5514	4501	5160	3788	3924	6893	3292	6039	3304	5777	*	5329	6715	5661	5400	5157	3089	7084	6094	39
+       39	*	5245	*	*	*	0	12013	0	1417	
+
+L 40   4432	*	6983	3932	4275	5619	*	2839	5493	1778	4344	5898	5454	4663	5078	5497	5363	3451	5803	4606	40
+       37	*	5312	*	*	2762	230	11981	0	2083	
+
+K 41   3333	*	3360	3727	5486	4162	6947	4841	4665	3758	*	4583	5228	3120	3085	3573	4020	4429	*	*	41
+       18	*	6309	1782	496	1268	774	11917	1375	2487	
+
+K 42   3009	6966	5071	4810	6783	5018	5116	5800	4624	2406	3894	5430	5401	3655	4900	4272	4659	3671	4600	4372	42
+       67	4950	6268	1669	544	1948	433	11943	1770	2172	
+
+A 43   4647	4729	5165	5139	3788	5899	*	3027	5643	1992	4069	5520	5521	5980	5412	5103	4821	3142	6215	4344	43
+       88	5224	4959	1289	759	2063	394	11947	1538	2125	
+
+E 44   2894	5774	4034	3414	6764	4922	5020	4766	3873	3873	*	5009	4677	3795	3044	3281	5545	5131	7053	5480	44
+       153	3416	7113	685	1403	1363	710	11903	3026	2543	
+
+T 45   3580	7064	3535	3369	5896	3850	5885	6122	3995	4554	6362	4154	6635	3261	3541	3260	3750	4613	*	6062	45
+       107	4164	5979	1399	688	*	0	11968	2193	2241	
+
+E 46   3890	7003	3892	4075	6754	3279	4307	4906	5461	3777	6131	3119	4755	3324	3941	3983	4178	4666	6668	7118	46
+       173	4004	4307	2066	394	*	0	11892	2200	3045	
+
+K 47   3806	6752	3833	3355	5350	4463	4376	5355	3786	4363	6491	3950	3348	4669	4030	3658	3993	4211	*	5859	47
+       116	5426	4215	1322	737	1141	872	11753	1475	4270	
+
+P 48   3306	4951	6080	5260	2931	6849	7145	4375	6551	4690	*	5609	1819	*	7003	6034	6000	3366	5959	2993	48
+       55	4968	7467	131	3525	676	1418	11775	2339	3759	
+
+D 49   3642	*	1248	3122	7476	4311	5162	5594	4898	6991	*	4497	5781	5170	4014	4646	5156	5801	*	*	49
+       54	5331	6415	1404	685	*	0	11926	1389	2156	
+
+L 50   4129	4135	6185	6409	4885	5449	6486	2404	*	1597	5947	6478	*	*	6717	*	7015	2262	*	5654	50
+       9	7335	*	3322	152	3253	160	11944	1000	2469	
+
+I 51   3808	5075	7309	6681	4690	5477	*	2142	6828	2286	5923	*	5722	*	*	*	6424	1795	*	4441	51
+       55	5054	7058	2429	296	1169	849	11935	1525	2307	
+
+V 52   7166	*	5841	7017	2789	*	*	2040	*	1451	5868	*	7315	7359	*	5598	*	2874	*	5179	52
+       0	*	*	0	*	1618	569	12017	1000	1843	
+
+L 53   3566	4895	*	6869	5960	*	*	2677	6820	2098	4034	*	*	6785	*	4732	4114	2088	5312	4939	53
+       36	5800	7289	697	1384	*	0	12033	1224	1515	
+
+D 54   4015	5999	1269	2905	6055	4162	6605	7119	5494	*	*	3140	5501	6518	5322	4106	6857	5900	*	6857	54
+       74	7181	4541	0	*	2497	281	12023	1000	1681	
+
+V 55   3377	5521	4489	4976	4075	6089	5790	3120	6797	2307	3841	6037	4462	*	5885	4114	4591	3639	5639	4622	55
+       70	6969	4656	1585	585	*	0	11956	1000	2525	
+
+M 56   4511	5076	2793	4019	6093	4243	4477	6346	5113	4145	5391	3933	4731	3810	3359	3479	4423	4194	*	5396	56
+       18	6346	*	2000	415	2854	215	11897	1056	3301	
+
+L 57   4254	6996	5353	4801	3418	5357	5154	3763	5183	1928	3223	5328	5060	5117	5864	4325	5183	3874	*	5972	57
+       77	4471	7171	2283	332	1382	699	11938	2041	2990	
+
+P 58   3451	7564	3510	3361	6006	4050	6980	7301	4482	4521	6112	4061	2245	6757	4266	3298	5065	4407	*	6108	58
+       149	3659	5713	1189	833	1187	835	11980	2706	2351	
+
+K 59   3389	*	2438	3816	*	2686	4711	5207	4394	5173	5970	4246	4425	4964	3799	4434	5064	4111	*	*	59
+       81	5250	5156	610	1537	3126	176	11982	1463	2369	
+
+L 60   3529	5566	3579	3559	4130	3824	4739	3997	4274	3018	3314	4625	4801	4821	6080	4452	4984	5930	*	*	60
+       60	6283	5180	928	1075	2225	347	11977	1146	2929	
+
+D 61   4620	6007	2267	3002	5979	4263	6019	5232	4739	4437	5923	3422	4462	4022	4994	3490	4341	4998	*	*	61
+       12	6881	*	0	*	1473	644	11884	1010	3037	
+
+G 62   3242	6074	4126	4512	6621	1778	6163	4318	4579	3964	5501	5901	5869	7207	4282	4323	3950	4073	7161	6453	62
+       23	*	5990	0	*	1101	905	11927	1000	2287	
+
+I 63   3508	6274	4850	4476	4582	5705	6194	3261	5408	2004	4192	5229	6869	4748	5011	4863	4736	4130	5851	3982	63
+       67	4991	6187	807	1223	*	0	11967	1564	1974	
+
+E 64   3239	6402	3066	2692	5895	4574	6091	6869	3969	4740	*	4496	3575	3573	4386	3360	4279	7206	*	6799	64
+       139	3670	6200	2222	348	1906	448	11962	2653	2269	
+
+V 65   3379	5962	7197	5352	2687	7097	5976	3647	7044	1676	5050	5606	6757	5470	4900	5234	4299	3840	*	6117	65
+       44	*	5044	1000	1000	397	2054	11981	1000	2217	
+
+C 66   3194	4081	6087	*	4438	4977	6868	2648	6621	1780	5051	*	5322	5693	4725	5713	4519	3680	*	5920	66
+       40	5620	7226	1742	513	1651	553	11978	1514	1899	
+
+K 67   3181	*	3338	3247	6494	3512	5460	4879	3588	4063	6010	4200	7025	3741	3397	3618	4731	6140	*	7275	67
+       34	7010	5980	425	1972	667	1433	11989	1313	1715	
+
+Q 68   3311	*	4366	3484	6210	*	4859	6222	3543	4048	4870	4013	5588	3868	3326	3075	4620	4807	4387	5276	68
+       55	5831	5659	1793	491	1666	546	12003	1269	1594	
+
+L 69   3886	*	*	5639	4544	*	6834	2120	*	1498	4536	7182	7558	7217	5963	5432	*	2665	*	5826	69
+       62	5933	5286	2053	398	1731	517	11979	1409	2069	
+
+R 70   4072	6209	4275	3812	7188	3934	5467	5371	3623	3525	5487	4737	6866	4130	1977	4978	4180	5236	5370	*	70
+       75	5594	5067	804	1227	1354	716	11961	1440	2241	
+
+Q 71   3080	7164	4405	3006	6870	5472	7140	6396	3119	5041	7520	3978	5320	3358	3387	3492	4377	4622	7212	4788	71
+       337	2944	3670	558	1639	773	1269	11994	3742	2347	
+
+Q 72   3755	6146	3780	4350	4655	4947	3761	4671	4491	3035	6877	3705	5715	3951	3763	4436	3847	4235	*	5206	72
+       308	2568	5414	2285	331	532	1698	11975	4350	3413	
+
+K 73   3714	5885	3246	4790	3968	3713	4307	6226	3883	3822	6001	4331	5488	4383	3874	3317	4767	5259	*	4164	73
+       147	3624	6013	3838	105	1686	537	11947	2534	2731	
+
+L 74   3380	4426	3854	3786	4523	5088	5008	4283	4935	5582	*	4160	2455	4897	3534	3812	6168	5441	*	4628	74
+       74	4741	6277	2971	197	1683	538	11891	1683	2659	
+
+M 75   3568	7026	3221	4430	5521	3930	4486	3695	4455	4896	5784	3313	4286	4002	4379	4012	5170	4584	5377	5062	75
+       194	3231	5710	1836	474	1503	628	11932	3132	2405	
+
+F 76   3363	5065	5287	4557	5091	4781	5966	3387	6090	2826	4539	5321	3647	4722	5088	4132	3383	3506	*	5990	76
+       61	6155	5190	2893	209	742	1315	11931	1146	2280	
+
+P 77   3841	6956	7019	5497	4681	6302	4809	4649	3579	3954	5446	6350	1797	5547	3693	5647	4029	3789	5270	5982	77
+       53	4801	*	1357	714	947	1055	11956	1817	2304	
+
+I 78   4730	5750	6881	6688	3991	*	*	2152	5180	2163	5997	*	5141	6788	4136	5248	4549	2454	5916	6825	78
+       13	6825	*	1000	1000	*	0	12023	1011	1552	
+
+L 79   3466	7226	*	6023	4582	*	*	1760	6457	2588	4851	*	5742	6672	6500	4966	7049	2045	7135	6722	79
+       36	7208	5828	1000	1000	2100	383	12023	1000	1552	
+
+M 80   3242	5687	*	5839	3452	4837	*	2804	6942	2369	4781	*	5687	6792	7086	5449	5127	2124	5878	5960	80
+       0	*	*	*	*	1530	613	11978	0	1801	
+
+L 81   5495	6136	6428	*	3804	*	6096	2265	*	1719	4932	*	*	*	6531	4193	4447	2498	7207	5256	81
+       28	6256	7285	1585	585	*	0	11992	1115	1466	
+
+T 82   2841	5660	5108	6678	*	3753	6069	3880	5237	4422	5984	5211	6720	5451	4196	2167	2575	4511	*	7016	82
+       35	5395	*	682	1409	1241	793	11999	1427	1754	
+
+A 83   3324	6092	4117	3714	*	3974	6132	7593	4001	6163	6470	3881	2746	4683	4119	2737	3393	5492	*	*	83
+       87	4652	5727	855	1161	1919	443	12037	2050	1362	
+
+K 84   4890	5699	4435	3133	5704	3410	4346	5627	5219	4205	4908	4909	5123	3602	3671	3100	3924	4212	*	5035	84
+       105	4597	5118	1512	623	1466	648	12024	1773	1696	
+
+D 85   3672	6212	2990	3756	5201	4449	4848	6063	4223	3417	6774	4381	3153	4258	5877	3574	4210	4535	7176	6439	85
+       175	3358	5893	714	1357	2042	401	11965	3169	2121	
+
+E 86   3621	6958	2911	3195	5314	3567	4925	6778	6197	6076	5804	3783	3915	3738	4236	3197	4057	5238	6969	*	86
+       11	*	6984	3400	144	830	1193	11942	1217	2173	
+
+E 87   4114	5457	3567	3955	4493	5118	5944	4516	4812	4165	5061	4566	3681	3647	3195	3783	4397	3994	7157	5867	87
+       70	7207	4634	0	*	1023	978	11989	1000	1590	
+
+F 88   3699	*	3451	2901	3918	4218	6992	4017	4622	3789	5531	4757	5109	3924	4406	3358	4524	5064	*	5400	88
+       128	4461	4663	2140	371	1129	882	11932	1980	2156	
+
+D 89   3791	*	3512	3232	4494	5119	7265	4136	5118	3161	5564	4465	4905	5279	3685	4259	3951	3401	6213	5146	89
+       12	*	6943	*	*	648	1467	11969	0	2389	
+
+K 90   2739	6933	5053	3734	5038	7230	6020	3521	4555	2931	4334	5230	5065	6140	3601	5019	5550	3119	5990	4723	90
+       33	6844	6194	1000	1000	1138	874	12029	1059	1574	
+
+V 91   3098	5466	5175	3741	4166	5688	5741	4148	3997	3167	5565	5287	6970	5557	3353	4088	5099	3299	6294	4112	91
+       103	6781	4069	3170	170	*	0	12022	1034	1538	
+
+L 92   3894	5708	3712	3137	4449	5488	4766	7113	3817	3827	6919	5411	6674	3416	2629	3718	4255	5560	*	5398	92
+       86	6012	4558	298	2422	1263	778	11852	1576	2902	
+
+G 93   1831	6060	4241	5226	4504	4967	5742	4150	4877	2370	*	7378	*	5494	5532	4031	4378	3978	7076	5982	93
+       59	6751	5034	0	*	2626	255	11902	1020	2963	
+
+L 94   3707	*	6274	4291	2806	6814	7105	3173	4649	2557	3872	5577	4862	5810	4337	6033	4629	3723	5740	4697	94
+       48	5386	6785	449	1903	417	1995	11917	1383	3276	
+
+E 95   3285	6258	3503	2856	7069	3998	5341	5150	3700	4946	6317	4669	5331	3835	3153	3757	4166	5080	7086	*	95
+       36	5675	7644	3304	154	1735	516	11954	1400	1721	
+
+L 96   2421	7210	4843	4433	4891	4636	4653	4557	5618	3197	4521	5510	7046	4419	5743	3298	3876	4068	5901	4177	96
+       46	6498	5608	2322	322	2904	207	11988	1056	1999	
+
+G 97   4179	5869	5088	3530	6745	1138	5010	*	5283	4941	*	5241	4761	4817	5448	4340	5333	5740	7130	4758	97
+       73	5351	5321	354	2199	1433	667	11980	1514	2283	
+
+A 98   1703	4387	6758	5216	4848	3937	7128	3355	7279	4142	7197	6075	4090	7254	7006	6169	5615	2507	7336	5065	98
+       61	5187	6146	899	1109	905	1102	11920	1433	2365	
+
+D 99   3022	5483	2710	4447	3570	5087	4738	5005	5961	4146	5503	6013	7563	4464	4638	3827	5059	3154	5405	4780	99
+       55	4730	*	1761	504	1689	536	12001	1752	1909	
+
+D 100  3320	6310	1893	4163	4375	3074	5319	5023	5431	7066	6490	4559	7013	4753	4066	3795	5259	5075	*	5450	100
+       20	6170	*	1784	495	1384	697	11991	1178	1755	
+
+Y 101  4502	6071	6447	7640	2365	6906	5992	3635	7119	3272	6057	*	6827	*	5284	5186	4703	2722	5045	2198	101
+       68	6804	4751	512	1743	1678	540	12019	1244	1400	
+
+M 102  5561	5901	*	5568	3588	*	4834	2302	*	1204	4912	*	6589	6854	6875	*	6727	3340	*	5884	102
+       48	4930	*	3558	128	1508	625	11914	1693	2130	
+
+T 103  3621	6104	6169	6055	5530	4573	7268	3719	7519	2642	5126	4852	3848	4561	3590	3449	3256	3801	7114	5051	103
+       27	5746	*	2313	324	*	0	11974	1243	1682	
+
+K 104  4062	*	6021	4042	5367	6028	6186	5672	1416	3856	6139	*	5923	5417	2957	3573	4412	6076	6689	6791	104
+       43	5564	6981	443	1920	*	0	11974	1563	1682	
+
+P 105  4315	*	3948	5994	5791	5435	6010	*	*	4458	*	4877	746	5443	5675	4772	4598	5923	*	*	105
+       32	7175	6053	0	*	1566	595	11954	1242	2103	
+
+F 106  4014	7152	5860	6147	2881	4225	6125	2564	5645	2016	*	6732	7081	*	5251	4478	4900	3546	7406	4415	106
+       96	6560	4212	2324	321	509	1751	11917	1201	2137	
+
+S 107  4687	6700	2466	3950	5707	4066	5243	5755	4817	4710	5816	3765	4875	5450	3564	2993	3321	4952	*	5833	107
+       31	5987	7530	2317	323	*	0	11736	1134	2385	
+
+P 108  3208	6845	4929	3878	4662	5063	5625	4082	3940	3314	*	5417	2796	4458	3533	4000	4316	4881	*	5513	108
+       11	6997	*	2322	322	140	3430	11718	1000	2692	
+
+R 109  3274	*	2739	2603	5486	3840	*	5492	5313	*	6966	5136	4122	4015	4543	3293	3916	4220	6072	7103	109
+       12	6942	*	1000	1000	*	0	12016	1008	1000	
+
+E 110  3900	*	3775	2128	4995	6951	5189	4174	4339	4104	6966	5022	6902	3562	3153	3597	4808	6070	*	5383	110
+       10	7168	*	2000	415	*	0	12016	1000	1000	
+
+V 111  4987	*	5895	5749	3148	*	6657	2864	7220	1153	7039	*	*	6734	6029	*	5158	2936	5952	6730	111
+       0	*	*	*	*	*	0	11992	0	1000	
+
+N 112  3235	6139	5798	3483	6015	4824	5282	3578	3598	2632	*	4952	5640	3975	4225	3887	5099	3923	*	4794	112
+       0	*	*	*	*	*	0	11956	0	1000	
+
+A 113  3491	6684	3704	3026	6681	4847	6039	4311	3639	3225	6211	3957	5263	3743	3841	4419	3452	7230	*	6455	113
+       0	*	*	*	*	*	0	11956	0	1000	
+
+R 114  2558	5304	6642	5885	5052	6358	5777	4127	4299	2836	7165	5973	5700	4281	3256	3599	3351	3465	*	*	114
+       30	6195	7162	3182	168	*	0	11956	1182	1000	
+
+V 115  4565	7230	*	6474	4053	*	*	2041	*	1657	4416	*	6842	*	5309	*	*	2189	*	5693	115
+       111	6010	4089	0	*	1075	929	11954	1344	1162	
+
+K 116  4615	5805	3798	3347	5883	4706	4876	5498	3479	4466	5170	4840	5489	4809	2512	2912	4208	5931	*	5290	116
+       21	7195	7040	0	*	1343	723	11747	1000	2377	
+
+A 117  2827	5866	3604	3670	*	6028	4697	4621	3354	5310	7058	3963	*	4188	3444	3119	4232	5434	6871	4468	117
+       34	7286	5891	1399	688	519	1728	11774	1429	1933	
+
+I 118  1968	4709	*	6576	4998	6663	6851	4093	6908	2281	5365	6900	5559	5933	4709	4520	5024	2602	*	5275	118
+       84	4348	7029	1242	793	385	2095	11809	1875	1486	
+
+L 119  2969	6916	*	4963	5006	7107	5429	3237	5315	2062	5195	4688	*	4768	4390	4556	3712	3284	6723	5768	119
+       107	4165	5988	317	2342	0	*	11741	2028	1128	
+
+R 120  2857	*	4266	2831	*	4281	5324	5430	4096	3909	6612	3869	5685	3863	2804	3888	5016	6907	*	5157	120
+       44	5831	6296	3703	115	*	0	11708	1115	1119	
+
+R 121  3098	*	5753	5096	*	3216	5398	5571	5044	3667	4326	4501	6928	4397	2189	3795	4314	4621	6493	5013	121
+       69	4421	*	2319	323	838	1183	11491	1884	1361	
+
+S 122  3091	5207	*	2911	4276	4017	4707	5457	3443	3775	*	6390	6159	3358	3582	4306	4762	4600	6276	4852	122
+       33	6478	6488	0	*	0	*	11238	1002	1052	
+
+E 123  3963	5940	4924	3497	4682	3506	6361	5367	3278	3887	6263	5991	4847	3207	2500	4650	4325	5279	*	*	123
+       78	6036	4737	4000	93	*	0	11230	1088	1107	
+
+I 124  3048	*	5597	4571	4744	4061	4760	4329	3609	2998	4475	5730	*	3658	5324	4775	4335	3392	4105	5810	124
+       133	5522	3912	2322	322	0	*	10302	1000	1525	
+
+R 125  3792	*	4331	3290	*	*	5370	3024	2939	5182	5413	4907	4249	4435	2815	5500	3879	5104	5535	4945	125
+       0	*	*	0	*	934	1070	9813	1000	1650	
+
+A 126  3078	5045	5139	5208	*	5016	4987	4058	5130	4059	4935	5140	3574	3966	3167	3105	4009	4199	*	4983	126
+       0	*	*	*	*	*	0	8818	0	1215	
+
+P 127  2353	*	4767	4181	*	5192	*	*	3949	4036	*	3992	2927	4020	4072	4148	2415	*	*	*	127
+       0	*	*	*	*	*	0	8743	0	1215	
+
+S 128  4604	*	*	3790	*	3407	4691	*	4852	2910	*	3707	3237	5000	4810	1727	*	*	*	4870	128
+       70	4404	*	0	*	*	0	8466	1082	1215	
+
+S 129  2823	*	4450	4467	4519	3482	*	4621	*	4371	4334	*	*	2927	3445	2492	3396	*	*	*	129
+       0	*	*	*	*	0	*	7729	0	1215	
+
+E 130  4012	*	4123	1904	*	4132	*	*	4047	3230	*	4123	4150	*	4187	2560	4291	*	*	*	130
+       110	3770	*	2585	263	*	*	7107	1113	0	
+
+M 131  3860	*	*	2811	3856	*	*	3833	*	1620	3025	*	3966	*	3781	*	*	3958	*	*	131
+       0	*	*	*	*	*	*	6410	0	0	
+
+K 132  2045	*	3804	3779	*	3730	*	*	2752	*	*	*	3603	2713	3658	3732	*	*	*	*	132
+       158	3268	*	3585	126	*	*	6106	1095	0	
+
+N 133  *	*	1285	*	*	*	*	*	3263	3413	*	1352	*	*	*	*	*	*	*	*	133
+       0	*	*	*	*	*	*	5337	0	0	
+
+D 134  *	*	1459	*	*	2955	*	2983	*	2916	*	*	*	2959	3063	*	*	*	*	*	134
+       0	*	*	*	*	*	*	4807	0	0	
+
+E 135  2983	*	*	987	*	*	*	*	*	*	*	*	*	*	3063	*	2959	3050	*	*	135
+       0	*	*	*	*	*	*	4807	0	0	
+
+M 136  *	*	*	*	*	*	*	3050	2956	3063	1437	*	*	*	2955	*	*	2916	*	*	136
+       0	*	*	0	*	*	*	4807	0	0	
+
+//
+�HHsearch 1.5
+NAME  2dc7af2028fa424ea0f21cfb017ac190
+FAM   
+FILE  2dc7af2028fa424ea0f21cfb017ac190
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:25:20 2013
+LENG  145 match states, 145 columns in multiple alignment
+FILT  142 out of 652 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  6.4 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCHHHHHHHCCCCCCHHHHHHHHHHHHHHCCCCCCCCCEEECCCCCCCEEEEEEEEECCEECCCEEEEEEEEEECCCCCCCCCEEEEECCCCCCCCCC
+CCCCCCCCCCCHHHCCCCCCCCCHHHHHHHHHHHHHHCCCCCCCC
+>ss_conf PSIPRED confidence values
+9468899997630378888999999999997889863875178889990043799999575487988836799995888999999899958987312888
+879999889434242689666859999999999980489976788
+>Consensus
+xxxxxxxxxxxxxxYxxxxxxxxdxxxxlxxyxxLxpxxxxxxxxdGxxxxLlxlxGtIpxxyxgxxyxiPvxixlpxxYPxxpPxvxvxptxxmxixxh
+pxVdxxGxvxlpxLxxWxxxxxxLxxllxxlxxxfxxxpPxxxxx
+>2dc7af2028fa424ea0f21cfb017ac190
+MAVSESQLKKMVSKYKYRDLTVRETVNVITLYKDLKPVLDSYVFNDGSSRELMNLTGTIPVPYRGNTYNIPICLWLLDTYPYNPPICFVKPTSSMTIKTG
+KHVDANGKIYLPYLHEWKHPQSDLLGLIQVMIVVFGDEPPVFSRP
+>gi|224066317|ref|XP_002302080.1| predicted protein [Populus trichocarpa]gi|222843806|gb|EEE81353.1| predicted protein [Populus trichocarpa]
+--------------------FIRKhLLSLIQDYPTFTLSTNTFFHDDGTTVNLLYATGHLHVANHT--PSIPLTIWIHENYPCMPPMVYVLSDSTSPIHQ
+DhPFVHSSGATSSPYLQTWVFPRCHLTELVHNLVRIFSHDHPFVY--
+>gi|50289071|ref|XP_446965.1| hypothetical protein [Candida glabrata CBS 138]gi|49526274|emb|CAG59898.1| unnamed protein product [Candida glabrata]
+------LFKVIQPIYKQPKLVFHDAVQTLTEFKNLRPRTRVFTDEDGSPRLLLCLYGGIPIEQ---GLDVPVLIWIPESYPIAKPLLFIDlelLDKDLQL
+ATNESVEPDGRVHTRLLRQWNPQSANLFNVIQDLADMCNAIAPIQpvtfsstvapgT--
+>gi|156087172|ref|XP_001610993.1| hypothetical protein [Babesia bovis T2Bo]gi|154798246|gb|EDO07425.1| hypothetical protein BBOV_IV010720 [Babesia bovis]
+------------RHFYDELIVCNDVTDVLKKYKSLSVALDRI---GG--EVVLNLKGTLPYTHANVEYHCPIGITIGTLYPKTPPLFKVISSGTIRIATN
+hPCVAKNGNIVMAYFDKWSA-RCTVMDAINLVLGEFNKQSPIYQ--
+>gi|154416614|ref|XP_001581329.1| hypothetical protein [Trichomonas vaginalis G3]gi|121915555|gb|EAY20343.1| hypothetical protein TVAG_193190 [Trichomonas vaginalis G3]
+--------------------ICRDIELFIQRYNTLQPR--QFSSSVGN---LIAISGYLLFNIGGTQSYVNLDITLTPKFPMKSPYIQFRIDPS-QICPS
+HGLTPQGVVNMPVVHNWVFRQSTLLQMGDDLYRFFMQNPPIM---
+>gi|145487706|ref|XP_001429858.1| hypothetical protein [Paramecium tetraurelia strain d4-2]gi|124396952|emb|CAK62460.1| unnamed protein product [Paramecium tetraurelia]
+-----ELYRVISqCAYRNHSQVATDAANILYNYPKLFNPLITQTSENGVIKQLLELKGELPIKYKGSTYSIITSIQFPFIYSDAPAVIRIyNPDISKfSV
+NqyfiQGASQDQSvVNIHNTELQSWYQHRSiarVMVALVRELEGHF----------
+>gi|300175628|emb|CBK20939.2| unnamed protein product [Blastocystis hominis]
+------------------------------------SKCEVYDINiNGVNTR--CLKCSVnhYCTYYNQKYLIPIDLFVPNSFPYVDPILYIRPPAGSKI
+VPIpNVVDADGRIIYILVSNIK--NITLNQFFASLDSCFATCFPI----
+>gi|340713047|ref|XP_003395063.1| PREDICTED: ubiquitin-conjugating enzyme E2-17 kDa-like isoform 2 [Bombus terrestris]
+------------------------------------PPTGVSGAPTDN--NIMIWNAVIFgphdTPFEDGTFK--LTIEFTEEYPNKPPTVRfISKMF--
+----HPNVYADGGICLDILQNrWSP-TYDVSAILTSIQSLLDE--------
+>gi|32967283|ref|NP_861515.1| ubiquitin-conjugating enzyme E2 C isoform 2 [Homo sapiens]gi|114682254|ref|XP_001156756.1| PREDICTED: ubiquitin-conjugating enzyme E2 C-like isoform 2 [Pan troglodytes]gi|119596211|gb|EAW75805.1| ubiquitin-conjugating enzyme E2C, isoform CRA_b [Homo sapiens]
+--------------------------------------KGISAFPESD--NLFKWVGTIHGaagtAVGSIRTS--STVCLLSGPRETQDSSkPLV-----
+---------------------WGL-GWDMRLLLeLTLQLFLQ---------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	3211	*	*	3151	*	3176	783	*	*	*	*	*	3512	*	*	*	1
+       197	*	2968	*	*	*	*	2642	0	0	
+
+A 2    1884	*	2962	2876	*	3829	*	3245	*	*	*	*	*	*	3702	2239	*	*	*	*	2
+       0	*	*	*	*	*	0	3135	0	1005	
+
+V 3    *	4055	*	3898	3231	*	*	3273	*	3301	3795	*	*	*	*	*	*	1215	*	4094	3
+       0	*	*	*	*	*	0	3722	0	1005	
+
+S 4    *	*	2594	3343	*	3716	*	*	*	*	*	2267	*	*	*	1346	*	*	*	4094	4
+       0	*	*	*	*	0	*	3722	0	1005	
+
+E 5    3532	4802	*	1400	*	*	*	4715	*	2952	4930	*	4701	4172	*	3095	*	3512	*	*	5
+       0	*	*	*	*	*	*	3964	0	0	
+
+S 6    2975	*	3799	2208	*	5525	3609	*	3954	*	*	3428	4990	5236	4434	3530	3896	*	3933	*	6
+       0	*	*	*	*	*	*	4597	0	0	
+
+Q 7    4115	*	4104	4404	5333	4474	*	5231	4203	1452	*	5702	*	3952	4205	*	4111	4186	5239	4524	7
+       0	*	*	4248	78	*	*	5167	1010	0	
+
+L 8    6056	*	*	*	2015	*	*	2799	*	1363	4714	*	*	*	5496	5723	5506	5559	*	3596	8
+       0	*	*	*	*	*	*	5337	0	0	
+
+K 9    4105	*	4274	*	*	4978	4534	4624	2235	4222	*	4097	*	3531	2104	4025	6214	4762	*	5691	9
+       43	*	5093	*	*	*	*	5376	0	0	
+
+K 10   3756	*	4267	5591	*	*	*	*	3832	4832	*	4950	*	3039	2984	3186	6128	1542	*	*	10
+       0	*	*	*	*	*	0	5364	0	1060	
+
+M 11   5662	5932	*	*	4518	*	5904	2318	5007	1723	4685	5740	5686	4588	4779	3945	5578	3153	*	5985	11
+       0	*	*	*	*	*	0	5471	0	1060	
+
+V 12   4196	*	*	*	4434	5398	*	4678	5798	1828	5060	5693	*	2064	3918	3600	4117	4572	*	*	12
+       63	4546	*	3161	171	*	0	5471	1197	1060	
+
+S 13   4930	4047	*	4123	*	3120	4190	*	5070	4203	*	*	1796	6343	2944	3187	4175	*	*	*	13
+       280	2924	4482	2039	402	*	0	5664	1446	1060	
+
+K 14   4169	*	*	3382	4942	*	3661	3004	2123	4583	5973	3320	4113	4270	4793	4609	5769	5649	*	*	14
+       45	5018	*	1781	496	0	*	5622	1157	1489	
+
+Y 15   5155	*	*	*	4491	*	6331	*	*	*	*	*	*	*	*	*	4891	*	6091	206	15
+       21	6091	*	2807	222	*	*	5643	1003	0	
+
+K 16   4576	5780	5000	5187	5759	*	4595	6056	2761	5254	*	3452	3749	4363	2364	3881	3501	*	*	3884	16
+       0	*	*	*	*	*	*	5670	0	0	
+
+Y 17   5031	*	1957	4987	3723	*	3156	*	*	5371	*	2977	*	3693	*	*	*	*	5200	2079	17
+       0	*	*	*	*	*	*	5659	0	0	
+
+R 18   4616	4582	*	4326	*	5628	4322	*	2636	5494	6305	*	1778	*	2705	4349	*	3215	*	*	18
+       0	*	*	*	*	*	*	5674	0	0	
+
+D 19   4349	*	1641	3645	*	6097	5251	*	3758	5358	5295	5588	5890	3320	3454	3492	4981	4793	*	*	19
+       0	*	*	*	*	*	*	5674	0	0	
+
+L 20   6495	*	6063	3712	*	*	6685	3113	4675	2417	5251	5302	*	3549	2720	4156	3141	4808	4905	5750	20
+       20	6182	*	1000	1000	*	*	5674	1003	0	
+
+T 21   2609	5611	*	*	6053	*	*	3163	5590	4135	5049	6171	*	*	*	*	1933	1712	*	*	21
+       27	*	5761	*	*	*	*	5940	0	0	
+
+V 22   3727	4726	6158	6464	3057	*	*	3002	2915	3614	*	*	*	4325	4266	5716	4927	3417	*	2692	22
+       0	*	*	*	*	0	*	6038	0	1040	
+
+R 23   4471	*	*	3448	*	*	3215	5139	3134	5682	*	2792	6426	4009	2065	4730	3335	*	*	*	23
+       0	*	*	*	*	*	*	6115	0	0	
+
+E 24   *	*	781	2434	*	*	3720	*	4207	*	*	4881	*	3857	*	*	*	*	*	*	24
+       167	3190	*	0	*	*	*	6149	1441	0	
+
+T 25   3166	*	*	*	*	*	5435	2155	*	2067	7393	*	*	*	*	4618	3811	1814	*	*	25
+       0	*	*	*	*	*	*	6149	0	0	
+
+V 26   3104	*	3961	3543	6261	*	*	4524	4779	2248	5232	*	*	4664	4756	4056	3550	2681	*	5281	26
+       34	5435	*	0	*	*	*	6149	1045	0	
+
+N 27   2910	6733	3897	3629	6423	5166	4113	6348	4198	3778	*	3101	*	3997	3475	3393	4570	4536	*	5432	27
+       0	*	*	*	*	*	*	6148	0	0	
+
+V 28   2700	6881	*	*	3754	*	*	3781	*	1618	6531	*	*	*	*	6760	4218	1780	*	*	28
+       18	*	6315	*	*	*	*	6148	0	0	
+
+I 29   4578	4972	*	*	5072	*	5728	3280	*	918	5417	5822	*	5097	6180	4392	6577	3382	7051	*	29
+       10	7111	*	2000	415	0	*	6158	1000	1000	
+
+T 30   3833	*	6027	4183	6939	6280	7101	4655	3606	5929	6458	4105	*	2083	2935	2729	3931	6681	*	5037	30
+       73	4780	6252	743	1314	*	*	6162	1132	0	
+
+L 31   3381	5862	3724	4941	5598	6473	3254	5203	3997	5399	*	3728	*	3297	3019	4135	4109	3779	*	4638	31
+       0	*	*	*	*	*	0	6149	0	1006	
+
+Y 32   *	6466	*	*	1657	4950	4306	6255	*	*	*	5439	*	6497	6216	6372	6912	6721	*	1005	32
+       73	*	4349	1000	1000	0	*	6149	1006	1006	
+
+K 33   6260	*	6437	4719	*	*	3971	*	2383	5238	*	4356	1299	4086	3820	4470	5292	*	*	*	33
+       58	4663	*	1445	660	842	1178	6038	1184	1182	
+
+D 34   5099	*	3075	4571	5701	4087	3333	*	3752	6257	*	2934	*	6331	*	2187	2598	*	*	5836	34
+       45	6455	5701	0	*	0	*	6117	1000	1049	
+
+L 35   *	*	*	*	2780	6425	*	5278	*	341	5720	*	*	*	*	*	*	6921	*	*	35
+       0	*	*	*	*	*	0	6128	0	1022	
+
+K 36   4474	*	*	4601	5011	6635	4993	4777	2361	6192	*	4993	*	3048	2313	3186	3772	4534	*	5906	36
+       0	*	*	*	*	*	0	6128	0	1022	
+
+P 37   4866	4130	*	*	5179	*	4975	3317	*	4153	*	4645	937	*	*	5588	*	3539	*	5413	37
+       71	6539	4740	3459	138	0	*	6452	1000	1022	
+
+V 38   4115	6275	5113	4719	*	4849	5490	5642	2298	*	6668	5396	3561	5893	2020	3025	5543	4902	*	5461	38
+       51	*	4844	*	*	*	0	6402	0	1148	
+
+L 39   4143	4734	5370	3844	5963	*	*	5885	4998	3541	4294	*	5615	6538	5224	3873	1614	2826	*	5868	39
+       25	*	5886	1000	1000	1631	563	6422	1060	1303	
+
+D 40   3753	*	1999	2932	*	2175	*	5242	5806	6875	*	5179	*	5333	3063	3670	5667	*	*	*	40
+       0	*	*	*	*	1022	978	6367	0	1260	
+
+S 41   6563	6135	5270	4134	4817	*	*	3376	4199	5279	*	5461	4083	4274	4533	5654	2477	1937	*	4535	41
+       58	6247	5244	1000	1000	867	1146	6575	1032	1105	
+
+Y 42   6284	6033	*	6163	1440	5904	6068	6146	5158	5253	*	*	*	5335	5866	3521	5323	6848	5170	1743	42
+       97	6960	4128	1585	585	1680	540	6634	1000	1177	
+
+V 43   2807	*	4960	6330	5446	6407	5473	4736	*	4760	4998	5662	*	5839	4991	4864	1361	3022	*	4867	43
+       0	*	*	0	*	1330	732	6512	1006	1387	
+
+F 44   5159	7159	4231	6358	1969	4858	2951	4729	*	4736	6497	5724	*	5986	4509	2874	5074	*	6408	2862	44
+       0	*	*	*	*	2080	389	6575	0	1212	
+
+N 45   5875	*	2962	3230	5381	*	*	4556	5798	5206	6908	1865	2288	6515	7365	3325	5663	6336	*	*	45
+       101	3893	*	0	*	0	*	6591	1263	1149	
+
+D 46   5216	*	1143	5443	*	4387	*	*	4134	6107	*	2395	*	5313	6307	3606	4744	5031	*	*	46
+       20	6157	*	2322	322	*	*	6696	1001	0	
+
+G 47   5677	*	5340	4658	*	397	*	*	5656	*	*	5133	6216	*	7114	4049	*	6131	*	6253	47
+       72	*	4361	*	*	*	*	6696	0	0	
+
+S 48   4649	*	3740	6383	*	6269	4117	4042	4548	*	*	3738	5686	4163	2417	2665	2892	4064	*	6699	48
+       351	5845	2330	1000	1000	*	0	6579	1026	1180	
+
+S 49   3354	6505	6430	3665	*	5639	5061	4669	3900	6325	*	4707	3985	3282	4835	1973	3199	5545	*	7024	49
+       27	*	5769	*	*	1916	444	6018	0	2038	
+
+R 50   3090	7339	5042	2611	*	6411	4332	6685	2474	5175	6269	5125	*	3074	4496	4178	3488	4197	*	*	50
+       57	4680	*	0	*	487	1803	6328	1096	1800	
+
+E 51   *	6454	2778	3574	*	6321	5679	5620	5079	2294	7480	2146	5149	3905	5024	6348	4690	4650	*	5322	51
+       38	6321	6221	0	*	0	*	6879	1025	1196	
+
+L 52   4690	*	*	*	7199	*	*	3254	5618	713	4465	4904	6247	7190	5174	*	6106	4248	*	5283	52
+       20	*	6205	*	*	*	0	6951	0	1031	
+
+M 53   5879	*	6919	6422	3321	*	7546	3719	5971	1129	4459	4507	*	5651	6041	6899	3987	4052	*	4254	53
+       12	*	6895	*	*	1006	994	6897	0	1119	
+
+N 54   4736	2434	5842	4161	*	*	4106	6468	3062	5416	6052	2918	*	4085	4372	3774	4081	4805	*	3856	54
+       0	*	*	*	*	0	*	6928	0	1090	
+
+L 55   4013	*	*	*	4467	*	*	2974	*	1249	5799	*	*	*	*	7091	*	3984	2033	6367	55
+       7	*	7779	*	*	*	*	7003	0	0	
+
+T 56   4459	5754	3787	2986	5736	5602	4702	4674	2463	7190	*	4581	*	4647	4338	3774	3952	4448	*	3090	56
+       0	*	*	0	*	0	*	7002	1000	1000	
+
+G 57   3316	4502	*	*	4901	585	*	5261	*	6019	*	*	*	*	*	*	7063	3236	*	*	57
+       0	*	*	*	*	*	*	7003	0	0	
+
+T 58   4841	*	*	4588	5282	4553	5893	3901	4352	3471	*	5059	*	*	5587	4081	1145	4786	*	4879	58
+       0	*	*	*	*	*	*	7003	0	0	
+
+I 59   *	*	6583	*	5553	*	*	1121	*	1740	5832	6626	6914	*	*	*	*	2634	*	6367	59
+       97	3945	*	1840	473	*	*	7003	1357	0	
+
+P 60   4876	7188	4255	4098	6429	5178	4396	5311	4979	4104	6142	5398	1062	5364	5446	5141	5469	6167	*	5822	60
+       539	1849	4874	1909	447	*	*	7003	2650	0	
+
+V 61   6168	5350	*	*	6127	4126	*	1942	*	5863	4440	*	5093	*	*	2841	2720	2196	7185	5593	61
+       65	5276	5780	2000	415	*	0	6945	1138	1198	
+
+P 62   3438	6382	4711	5901	5371	5751	5510	6611	4299	4716	4986	4211	2057	7620	4720	3985	3294	3655	*	3973	62
+       20	6730	7904	1000	1000	*	0	6921	1000	1311	
+
+Y 63   *	*	6870	6587	2499	7034	4354	3889	5926	*	*	5175	6375	6576	*	6489	*	4821	4246	960	63
+       53	*	4796	*	*	1592	582	6924	0	1354	
+
+R 64   3135	*	5477	2397	*	4347	4951	*	2528	7051	5806	4525	*	3445	2668	4041	*	*	*	4634	64
+       35	*	5367	*	*	3166	170	6939	0	1454	
+
+G 65   5163	6480	4532	4770	*	801	*	*	4555	*	*	2893	7026	6890	6105	4160	5044	6262	*	*	65
+       80	5506	4957	4010	92	3816	106	6895	1076	1553	
+
+N 66   2878	*	5619	*	6290	1672	5521	5237	4263	5312	6219	3570	*	5184	4995	3532	3779	3726	*	*	66
+       30	*	5609	*	*	1685	538	6839	0	1698	
+
+T 67   6353	5818	*	4678	*	5151	4783	4062	3298	4956	4918	4537	5223	4071	3509	3879	2023	3333	*	6738	67
+       77	4550	6700	0	*	1712	525	6844	1197	1579	
+
+Y 68   *	6242	*	*	1625	*	5507	5774	*	6553	6225	*	5130	*	*	5498	5767	6503	7140	968	68
+       71	*	4386	*	*	349	2217	6901	0	1463	
+
+N 69   5158	6374	5854	4059	5286	4434	4274	*	3059	5665	*	1786	5008	4741	4294	3124	5231	5176	*	4606	69
+       528	*	1706	*	*	1849	469	6885	0	1348	
+
+I 70   5303	5423	*	*	2926	*	*	1112	*	2787	*	*	5526	*	*	*	5130	2627	*	*	70
+       59	*	4634	*	*	2907	207	6371	0	2938	
+
+P 71   6011	*	6455	*	5629	*	6585	5174	4900	6493	*	5847	406	6529	*	6275	4644	5696	*	6034	71
+       9	*	7388	*	*	118	3666	6451	0	2833	
+
+I 72   5446	*	*	*	4648	*	*	1965	*	1861	4477	*	6407	*	*	5776	5172	1722	*	*	72
+       0	*	*	*	*	720	1347	6981	0	1213	
+
+C 73   3565	3925	3686	3028	6864	6698	4826	4717	4009	3763	7107	4543	*	4611	3968	3378	3265	4038	*	7378	73
+       28	6415	7071	1585	585	*	0	7004	1023	1049	
+
+L 74   4688	5662	*	*	4122	*	*	1095	*	2322	3923	*	*	*	*	*	*	2796	*	7394	74
+       0	*	*	*	*	*	0	6998	0	1106	
+
+W 75   6039	5785	5451	3367	4264	*	5125	5510	6131	5986	5399	7582	*	4460	*	5857	3144	5957	1274	3646	75
+       0	*	*	*	*	*	0	6998	0	1106	
+
+L 76   6815	6785	*	*	2298	*	*	2157	*	1294	*	*	*	*	*	*	*	2930	*	6019	76
+       0	*	*	*	*	1522	618	6998	0	1106	
+
+L 77   6669	7356	*	6815	5899	6104	4351	*	6977	3472	5607	7110	845	4883	6016	4990	3348	5676	6174	*	77
+       0	*	*	*	*	*	0	7004	0	1049	
+
+D 78   4547	*	3161	2354	5178	7035	4374	5637	3387	4424	*	4679	3666	4067	4237	3646	4553	*	*	4290	78
+       9	7327	*	0	*	*	0	7004	1000	1049	
+
+T 79   4578	*	2249	2911	6701	4492	*	5711	4683	5675	6677	2711	6292	5274	4508	3407	2797	*	*	*	79
+       0	*	*	*	*	*	0	7004	0	1049	
+
+Y 80   *	*	*	*	2525	*	3150	*	*	*	*	*	5790	*	*	*	*	*	6794	543	80
+       0	*	*	*	*	*	0	7004	0	1049	
+
+P 81   *	*	*	*	*	6972	*	*	*	*	*	6808	80	*	5790	5711	*	*	*	*	81
+       11	6997	*	1000	1000	*	0	7004	1004	1049	
+
+Y 82   4787	6819	5711	4931	2153	6595	4118	4233	5790	3541	4879	4121	8822	4146	3401	4874	5152	5239	*	3064	82
+       0	*	*	*	*	*	0	7004	0	1049	
+
+N 83   3199	6990	4897	2931	*	*	5823	5389	2654	5955	5193	4338	*	4394	3995	2917	3366	4043	*	5326	83
+       39	5223	*	3462	137	*	0	7004	1167	1049	
+
+P 84   2264	*	6268	*	6652	*	4805	*	5131	*	5666	7508	855	5355	6160	4817	5745	5205	*	7206	84
+       0	*	*	*	*	*	0	7003	0	1049	
+
+P 85   5709	*	5789	*	*	*	*	*	*	*	6634	*	70	*	*	*	*	*	*	*	85
+       15	6590	*	0	*	*	0	7003	1011	1049	
+
+I 86   6542	7092	6795	5486	4262	*	5264	2527	3275	2475	3841	7563	*	7552	4172	3594	3599	3519	*	5194	86
+       7	7753	*	0	*	*	0	7008	1000	1049	
+
+C 87   4917	2410	*	*	4095	7022	*	2329	*	3447	5550	*	6226	*	*	5790	6482	1482	*	*	87
+       155	3293	*	568	1620	*	0	7008	1625	1049	
+
+F 88   7202	6591	*	*	1914	7118	6147	5693	2971	5602	5103	7092	5790	5041	4399	4906	4550	5020	6601	1840	88
+       81	4473	6686	0	*	*	0	7008	1298	1049	
+
+V 89   5930	4756	7262	*	2201	*	*	2316	*	2878	7569	*	*	6158	7513	6582	5950	1580	*	*	89
+       52	5691	5976	0	*	1366	708	6997	1130	1117	
+
+K 90   4374	5512	3545	6434	5631	7439	6615	4404	4340	3509	4622	4329	5090	6549	2838	4154	2394	3389	*	*	90
+       283	4567	2881	2689	243	1865	463	6995	1339	1168	
+
+P 91   6521	6488	*	6698	*	5699	*	4679	4176	4254	6203	3970	904	*	5951	4813	2849	*	*	*	91
+       240	*	2705	*	*	*	0	6777	0	1980	
+
+T 92   4274	*	3269	4959	6905	6088	6353	3660	6522	6469	5673	6375	4146	6046	6886	3340	1346	3794	*	*	92
+       19	6230	*	0	*	4137	84	6626	1023	2659	
+
+S 93   3484	5418	6563	3901	3975	4082	5582	4714	5248	5909	*	4029	2661	4537	4290	3279	5067	5249	5458	3479	93
+       351	4880	2457	0	*	4517	64	6609	1138	2638	
+
+S 94   5391	*	2508	3702	*	2867	5016	6019	*	5390	6462	2712	6166	*	6378	2428	3024	*	*	5834	94
+       127	5380	4058	1000	1000	*	0	6203	1057	3274	
+
+M 95   6297	4941	*	5682	*	*	6452	4212	4066	4306	755	*	6095	5316	4898	3960	6522	*	*	5757	95
+       104	3843	*	679	1413	3158	171	6073	1241	3475	
+
+T 96   3950	*	6369	3688	*	5108	6916	3310	3221	4861	6345	*	4805	3457	3376	3341	5432	2546	*	4743	96
+       46	4996	*	592	1571	1866	463	6174	1107	3231	
+
+I 97   6155	*	*	*	*	*	6428	1286	*	2875	*	*	5776	5615	*	*	2835	2006	*	*	97
+       53	4802	*	0	*	1137	875	6576	1149	2668	
+
+K 98   4401	6130	*	6376	*	6570	5744	5614	1719	4865	7811	3872	3834	5732	1964	4186	7354	4067	*	*	98
+       32	5514	*	2000	415	*	0	6770	1062	1928	
+
+T 99   4494	6526	6383	4297	*	*	*	2172	4494	7014	6191	4503	2021	3970	5627	4937	3759	3143	*	*	99
+       598	1560	*	98	3934	398	2053	6770	2728	1928	
+
+G 100  6948	*	5115	*	*	2485	1258	6257	6902	*	*	3093	*	6646	6262	2507	5846	6455	*	*	100
+       222	2809	*	373	2133	1573	591	6951	2016	1313	
+
+K 101  4499	5957	7407	4603	6494	5713	4783	6911	3461	6471	6166	4033	1173	3959	3799	4246	*	6899	*	*	101
+       47	4954	*	0	*	*	0	6940	1231	1190	
+
+H 102  6336	4244	6322	7232	3801	5501	2637	6243	7323	5416	6623	1328	*	7060	6097	4305	7498	6265	*	3075	102
+       0	*	*	*	*	*	0	6940	0	1190	
+
+V 103  5265	*	*	*	6911	*	*	2197	*	4668	6455	*	*	5584	*	*	7584	595	*	6813	103
+       86	4403	6577	178	3108	*	0	6940	1231	1190	
+
+D 104  4490	6818	820	4380	7117	5838	6804	*	5250	6345	6516	3074	5371	*	*	3882	5716	*	*	5713	104
+       50	4875	*	1010	990	860	1155	6919	1256	1255	
+
+A 105  2833	*	4504	3270	6965	4297	4456	5506	4659	4599	6035	4924	2658	4414	6081	2765	4292	4713	*	*	105
+       58	4671	*	635	1489	*	0	6943	1207	1084	
+
+N 106  6169	*	2908	4347	6956	*	*	6494	4484	6365	*	2261	*	3858	5032	1708	3386	*	*	5803	106
+       44	5067	*	0	*	1458	653	6919	1120	1164	
+
+G 107  *	6627	7079	*	*	159	7353	6160	*	*	*	*	*	*	5428	*	5471	5586	*	*	107
+       29	7776	6018	0	*	*	0	6943	1000	1084	
+
+K 108  3891	5191	7013	3475	5358	4187	*	*	3173	3513	4469	3306	*	4115	2183	5327	4842	4797	6666	*	108
+       0	*	*	*	*	*	0	6925	0	1185	
+
+I 109  *	3991	*	*	3692	*	*	1477	*	5827	5708	7732	6715	*	6411	*	5256	1281	*	*	109
+       29	5658	*	1585	585	*	0	6925	1077	1185	
+
+Y 110  4997	1517	6957	6881	5229	5690	3436	5252	*	6875	7349	4313	*	5112	5732	3726	4287	5892	*	2461	110
+       30	*	5595	*	*	*	0	6925	0	1185	
+
+L 111  5766	*	6805	6320	5140	5558	3141	3473	6778	1270	4160	5148	5292	*	*	4495	4847	3854	6447	6153	111
+       0	*	*	2000	415	1191	832	6882	1044	1338	
+
+P 112  4764	*	2941	4130	*	5424	6879	4896	5893	*	6335	3962	1065	5777	5876	3683	5271	*	*	*	112
+       46	*	4989	*	*	*	0	6911	0	1166	
+
+Y 113  4678	6865	*	4585	4750	5352	*	2425	*	3255	4390	*	5540	*	6761	6584	5140	4326	6898	1386	113
+       7	*	7697	0	*	2091	386	6871	1044	1370	
+
+L 114  6002	*	*	6146	4644	7203	*	3229	*	452	6116	*	7721	5905	*	*	*	4544	*	7129	114
+       177	3112	*	576	1603	2453	291	6892	1693	1304	
+
+H 115  4186	*	3111	3327	*	4217	3023	*	3823	6124	5217	4321	*	2979	3637	2949	4465	6802	*	*	115
+       79	4589	6389	1218	811	2019	409	6890	1294	1239	
+
+E 116  4849	*	2581	2582	*	4319	5978	*	4345	*	7535	3027	6907	3320	3628	3086	4352	7570	*	5236	116
+       387	2088	*	941	1062	348	2220	6890	2455	1432	
+
+W 117  *	*	*	*	6362	*	*	6259	*	*	*	*	*	*	6628	*	*	*	100	4996	117
+       48	4938	*	1000	1000	*	0	7001	1201	1049	
+
+K 118  3996	*	3966	5546	5777	5369	4545	5653	2579	4677	6662	3226	7632	4791	4749	2630	3566	3970	*	4818	118
+       28	*	5707	*	*	0	*	6996	0	1049	
+
+H 119  3667	6955	6607	5750	3733	5030	4039	5857	6884	5415	*	7601	1383	4080	4738	3961	5005	6419	5319	4285	119
+       1028	4080	1151	2255	339	1207	819	6975	1455	1098	
+
+P 120  4293	*	3991	3203	*	3853	4346	*	4853	*	*	5947	1840	2979	4006	4572	4136	4974	*	6772	120
+       86	4353	6772	3115	177	0	*	5890	1170	3647	
+
+Q 121  2798	5173	5953	7203	*	3764	7574	6199	4203	*	5542	3961	6825	3803	3057	2119	3218	5260	6859	*	121
+       57	5013	7025	3192	167	*	0	7004	1179	1049	
+
+S 122  5262	3283	*	*	*	5773	4362	4275	4925	3670	4424	4925	6508	6435	*	1655	4051	5162	5185	3239	122
+       28	5677	*	1585	585	1414	679	6987	1062	1113	
+
+D 123  *	*	2832	5781	*	6331	5090	*	4047	*	*	1976	6257	5478	4669	2697	2108	5386	*	*	123
+       7	*	7770	*	*	*	0	6985	0	1049	
+
+L 124  6548	6655	*	*	*	*	*	2667	*	778	4524	*	*	*	*	6526	5366	2642	*	*	124
+       16	6500	*	0	*	*	0	6983	1009	1083	
+
+L 125  4204	6620	5007	4466	4319	6195	5927	5219	4200	2786	5932	5261	6854	4436	3780	3182	4017	2474	*	5029	125
+       18	*	6349	*	*	*	0	6983	0	1083	
+
+G 126  4082	*	3106	2784	*	3146	5445	6850	4654	4602	5873	4109	7582	2878	4510	2960	4345	7160	*	6761	126
+       0	*	*	*	*	*	0	6951	0	1165	
+
+L 127  4545	5180	*	*	4300	6652	*	3224	*	1070	5329	*	*	*	*	*	7109	2197	*	4822	127
+       0	*	*	1365	709	938	1065	6951	1059	1165	
+
+I 128  4811	5441	6527	*	4259	6327	*	1922	*	1644	5148	*	*	*	*	*	5309	2130	*	*	128
+       38	5262	*	0	*	*	0	6984	1133	1049	
+
+Q 129  3788	6491	4352	2922	7247	4750	4746	4347	3856	3508	6034	4711	*	2269	3324	4774	5450	5144	*	*	129
+       15	*	6642	*	*	*	0	6978	0	1049	
+
+V 130  3664	*	3800	3210	5330	3734	5110	3987	5932	5362	*	4440	6488	4735	5456	2746	4046	2578	7330	7017	130
+       0	*	*	0	*	932	1071	6990	1060	1166	
+
+M 131  5837	5330	*	*	4511	*	6652	2581	*	1037	2815	6525	*	*	*	6491	*	3549	*	*	131
+       0	*	*	*	*	*	0	6978	0	1049	
+
+I 132  3660	4357	5278	5135	*	5146	5784	3241	5015	3455	4933	*	7051	2725	3531	3296	5489	3839	*	3802	132
+       0	*	*	*	*	*	0	6978	0	1049	
+
+V 133  3171	6317	3132	3661	5047	4233	4793	5720	4692	4327	5818	5290	7125	3333	3729	2719	5935	4767	*	5245	133
+       0	*	*	*	*	*	0	6974	0	1049	
+
+V 134  3337	5319	6385	4892	4241	*	4969	3230	4899	1797	4129	*	*	5149	*	5180	4400	2790	*	6292	134
+       15	*	6601	4087	87	0	*	6974	1049	1049	
+
+F 135  *	5834	*	*	979	*	*	4222	*	1513	6151	*	*	*	6469	6932	*	5581	6773	7017	135
+       0	*	*	*	*	*	0	6971	0	1010	
+
+G 136  3205	6555	5148	5078	*	2346	5565	4922	5265	5383	5122	4027	7374	3817	4789	1868	4919	*	*	6374	136
+       14	6666	*	3964	96	0	*	6734	1074	1010	
+
+D 137  2876	5513	3544	2306	6536	*	4122	5277	4006	5101	6043	3745	*	4388	3763	3722	4161	6367	*	6203	137
+       0	*	*	*	*	*	0	6587	0	1006	
+
+E 138  6223	4573	2822	1497	5596	*	6360	4297	5597	*	5546	3475	5675	3858	4926	5014	5149	6724	*	4534	138
+       0	*	*	*	*	*	0	5915	0	1006	
+
+P 139  5909	4382	*	*	4246	*	4059	5287	*	5490	5112	*	641	*	*	4329	5193	*	*	5181	139
+       0	*	*	*	*	*	0	5834	0	1006	
+
+P 140  *	*	*	*	*	6331	*	*	*	*	*	5653	47	*	*	*	*	*	*	*	140
+       0	*	*	*	*	*	0	5834	0	1006	
+
+V 141  *	6190	*	*	3734	*	*	2856	5645	1484	6254	*	*	5765	*	6326	*	1508	*	*	141
+       0	*	*	*	*	*	0	5831	0	1006	
+
+F 142  *	*	*	*	2007	6250	*	5135	*	3900	4568	*	*	5445	4147	4575	4298	4789	*	1351	142
+       39	5245	*	3459	138	*	0	5411	1004	1006	
+
+S 143  1845	*	5307	*	*	*	5212	*	5394	5119	5409	6005	5991	4221	*	1444	3086	*	*	5438	143
+       24	5893	*	0	*	*	0	5046	1018	1006	
+
+R 144  *	*	*	*	*	*	*	*	1065	4641	*	*	*	4570	1523	5899	4194	5617	*	*	144
+       0	*	*	*	*	0	*	4543	0	1006	
+
+P 145  4442	*	*	*	4096	*	*	5023	4785	*	*	*	758	4025	*	2907	*	*	*	4559	145
+       0	*	*	0	*	*	*	4230	0	0	
+
+//
+�HHsearch 1.5
+NAME  2ebbe0783d204f9b6a288ba6e9641f90
+FAM   
+FILE  2ebbe0783d204f9b6a288ba6e9641f90
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:23:44 2013
+LENG  128 match states, 128 columns in multiple alignment
+FILT  133 out of 1234 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  8.5 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEEEEECCCCHHHHHHHHHHHHHHHHHHHCCCHHHEEEEEEEECCCCEEECCCCCCCEEEEEEEECCCCCHHHHHHHHHHHHHHHHHHHCCCCCEEEEE
+EEECCHHHEEECCEEHHHHHHCCCCCCC
+>ss_conf PSIPRED confidence values
+9999993899999999999999999999849892796999999676036707999897699999987899999999999999999999969390639999
+9987989946988998998762797779
+>Consensus
+xixixxxxgxxxexxxxlxxxixxxxxxxxxxPxxxxxvxxxxxxxxxxxxgxxxxxxxxxIxvxxxxgrxxexkxxlxxxixxxlxxxlgixxxxvxix
+ixexxxxxwxxxGxxxxxxxxxxxxxxx
+>2ebbe0783d204f9b6a288ba6e9641f90
+MITVFGLKSKLAPRREKLAEVIYNSLHLGLDIPKGKHAIRFLCLEKEDFYYPFDRSDDYTVIEINLMAGRMEGTKKRLIKMLFSELEYKLGIRAHDVEIT
+IKEQPAHCWGFRGMTGDEARDLDYDIYV
+>gi|334881627|emb|CCB82523.1| 4-oxalocrotonate tautomerase [Lactobacillus pentosus MP-10]gi|339638689|emb|CCC17842.1| 4-oxalocrotonate tautomerase [Lactobacillus pentosus IG1]
+-MRIDMIRGRSQSEIKQILDIAYHAASTALHLRPRDRYQIVTQHDPDEMIIEDvglgfERTSAFLMFSL-T-sSPRKVEDKQQFYQLLVHDLHQQLGIAP
+ADVMINITTNSYEDWSFGDG--------------
+>gi|197123365|ref|YP_002135316.1| tautomerase [Anaeromyxobacter sp. K]gi|196173214|gb|ACG74187.1| tautomerase [Anaeromyxobacter sp. K]
+--LFDLSVSPPDDDRARFGAAVARRFGEIMDTGTDHVAVLVRAHSQGSLTLGLAsdPARGVALASADIRVGRTQDQERRLCLAFIEELERWFGIPKDQVY
+VVLTRHDGPEF-------------------
+>gi|182676840|ref|YP_001830987.1| hypothetical protein Bind_3691 [Beijerinckia indica subsp. indica ATCC 9039]gi|182636470|gb|ACB97243.1| hypothetical protein Bind_3691 [Beijerinckia indica subsp. indica ATCC 9039]
+--RLTLTSIPTLDQANHLATELTELIAHDLGKRQELTSILVETSGISHWAIGAegRLTAAHLEVCVTA-GTNSEQEKRAFIANAMTILRTVLPGLNPATY
+VVIRELPATDWGYDGRTQADRA--------
+>gi|127512436|ref|YP_001093633.1| 5-carboxymethyl-2-hydroxymuconate isomerase [Shewanella loihica PV-4]gi|126637731|gb|ABO23374.1| 5-carboxymethyl-2-hydroxymuconate isomerase [Shewanella loihica PV-4]
+-------------AIDNLVEQVHRGAIESELFEPASIKSRAYSA--EHYCVGEAKAASFIHISFKIMPGRSSEQKLHLMQCVDRLIAPL-CASVSSITME
+VLDIEREHYFK-----------------
+>gi|239820694|ref|YP_002947879.1| 4-oxalocrotonate tautomerase family enzyme [Variovorax paradoxus S110]gi|239805547|gb|ACS22613.1| 4-oxalocrotonate tautomerase family enzyme [Variovorax paradoxus S110]
+-VIVEMWEGRTVDQKRNLVKAITQAMVDHAGCKPDHLHVVIHDTPKESWGRNG-----------------------------------------------
+----------------------------
+>gi|336380645|gb|EGO21798.1| hypothetical protein SERLADRAFT_474679 [Serpula lacrymans var. lacrymans S7.9]
+--------------TKAFVSEFSKFCATTIDKPEK--AFSVNFIYNPHLTFA-GTFDPAIMLNVMSLYNTNPTSVQKWSKAFADYFEEKLGVTSDRGYMA
+FQDPGPAFIGTRGSTVEVL---------
+>gi|262202814|ref|YP_003274022.1| 4-oxalocrotonate tautomerase [Gordonia bronchialis DSM 43247]gi|262086161|gb|ACY22129.1| 4-oxalocrotonate tautomerase [Gordonia bronchialis DSM 43247]
+QIQLTVPAGaLTDQGRTTIQQDLARALLKWEGAPDNDFFKAlgwsyLHELPEGAQVTA-ADTEPRFRVDVTVPQFaLNDERKAGLSKEVTGLVLAAAGLG
+PEhalRVWVLINEQTDGTWSVGGQ--------------
+>gi|28378091|ref|NP_784983.1| hypothetical protein lp_1348 [Lactobacillus plantarum WCFS1]gi|342241468|emb|CCC78702.1| hypothetical protein lp_1348 [Lactobacillus plantarum WCFS1]
+-------------------------------VPGKSEEVLMVGIEDQYDLYLHGDdRVNLAYISVAIYGIPHHEGYVNLNLAITKLFYEVLKIHPENIFI
+DYADI--RAWGNSGYFIDGK---------
+>gi|54024265|ref|YP_118507.1| hypothetical protein nfa22960 [Nocardia farcinica IFM 10152]gi|54015773|dbj|BAD57143.1| hypothetical protein [Nocardia farcinica IFM 10152]
+--HIYHPPAtYTEADKQQFAQAVTRSYRSWG-LPDFYVVVLFHEIAAVDCYVGGRPADSTVRVVVEHLARqlEDPDMRRIMTEKLDTVMAPFTHDRGLHC
+EFHVDETPRDLWMIGGL--------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	4011	*	*	4154	*	1284	2762	3639	*	2918	*	*	4217	4126	*	*	1
+       0	*	*	*	*	*	*	5049	0	0	
+
+I 2    5741	*	*	*	4490	*	*	1377	*	2984	5252	*	*	*	*	*	4001	1571	*	*	2
+       0	*	*	*	*	*	*	7163	0	0	
+
+T 3    *	*	5216	5656	*	*	3095	5457	2833	3825	*	3092	*	3618	2004	*	2693	*	*	*	3
+       0	*	*	*	*	*	*	7827	0	0	
+
+V 4    4981	4919	*	*	3521	*	*	1175	*	3506	*	*	*	*	*	*	5501	1760	*	*	4
+       0	*	*	*	*	*	*	7928	0	0	
+
+F 5    5501	*	2312	3261	5437	*	3066	*	3746	*	*	4920	*	4571	*	3052	2916	5438	5933	3512	5
+       22	*	6063	*	*	*	*	7928	0	0	
+
+G 6    4616	*	*	5491	*	4468	5725	2683	*	1977	3055	*	*	*	*	4907	5977	2301	4703	4254	6
+       67	4471	*	0	*	0	*	7923	1339	1000	
+
+L 7    3560	5527	*	*	4299	5433	6026	3484	4241	3024	*	*	2556	4151	3312	3642	5136	3826	4925	*	7
+       0	*	*	*	*	*	*	7928	0	0	
+
+K 8    2776	*	5661	2729	*	5018	5498	*	2135	*	*	6063	3947	3368	3434	5136	3611	5430	*	*	8
+       29	5631	*	0	*	*	*	7928	1030	0	
+
+S 9    4458	*	4691	4358	*	815	*	4480	4484	*	*	5295	5501	4831	4679	3883	5664	*	*	*	9
+       318	2436	6263	0	*	*	*	7928	2121	0	
+
+K 10   5488	*	*	*	4083	5657	4697	3847	3568	2470	5513	5739	4271	5523	1926	*	3883	5738	5422	4685	10
+       79	5270	5204	0	*	0	*	7938	1018	1057	
+
+L 11   *	*	3517	4862	*	*	*	*	5995	5480	*	3620	3029	*	5532	1905	1674	5995	5743	*	11
+       0	*	*	0	*	0	*	8158	1027	1027	
+
+A 12   2785	*	2539	3653	*	4430	5075	*	4671	3324	*	*	2958	3466	3536	5305	4841	5466	*	*	12
+       27	5729	*	0	*	*	*	8654	1000	0	
+
+P 13   2992	*	2854	1411	5135	*	*	*	*	4327	*	5904	4687	3709	4802	4538	5896	4216	*	*	13
+       0	*	*	*	*	*	*	8654	0	0	
+
+R 14   3211	*	3109	3096	*	5941	5874	6081	4970	5347	4994	3993	5881	2129	5938	5132	3625	5313	*	3968	14
+       0	*	*	*	*	*	*	9002	0	0	
+
+R 15   4149	6135	*	4301	6321	5370	*	3624	2138	3730	5340	5864	3594	6419	2215	6557	4148	4666	*	*	15
+       0	*	*	*	*	*	*	9527	0	0	
+
+E 16   2893	*	4039	2825	*	5562	*	*	2648	6528	*	3544	6637	3170	2911	4818	4267	4483	*	*	16
+       0	*	*	*	*	*	*	9628	0	0	
+
+K 17   2235	*	3952	3188	6642	3617	5770	*	3027	5234	*	4136	*	3748	3054	4133	4859	6512	*	*	17
+       0	*	*	*	*	*	*	9628	0	0	
+
+L 18   5544	5753	*	*	2543	*	*	1958	*	1301	5113	*	*	*	*	*	6422	3821	6162	*	18
+       0	*	*	*	*	*	*	9628	0	0	
+
+A 19   2356	5435	*	*	6281	4227	5084	3952	5251	2196	3599	5184	*	4473	*	3498	6474	3037	*	*	19
+       0	*	*	*	*	*	*	9652	0	0	
+
+E 20   3184	*	2689	2522	*	6499	5897	*	3108	4308	6462	5956	6735	3925	3422	3726	3932	5092	*	*	20
+       26	*	5799	*	*	*	*	9652	0	0	
+
+V 21   2478	6149	4117	2265	*	4548	*	4647	3512	4446	*	6269	*	4149	3745	3932	3998	4253	*	*	21
+       0	*	*	0	*	0	*	9634	1065	1065	
+
+I 22   4001	*	*	*	3788	*	*	1842	*	1921	*	*	*	*	*	6097	3540	2249	*	6485	22
+       0	*	*	*	*	*	*	9652	0	0	
+
+Y 23   3973	6486	*	5450	6211	5044	2009	6076	*	6566	*	4703	*	5489	6374	2382	2130	5313	*	3913	23
+       0	*	*	*	*	*	*	9652	0	0	
+
+N 24   3539	*	2951	2421	6647	5452	4155	*	3294	4330	*	4295	5799	3340	3035	5092	5259	*	*	6343	24
+       0	*	*	*	*	*	*	9652	0	0	
+
+S 25   1779	4051	*	5456	3593	4630	*	4137	*	3347	5363	*	*	5616	5476	3188	4508	2987	*	*	25
+       0	*	*	*	*	*	*	9652	0	0	
+
+L 26   2870	6268	*	*	6323	*	4343	2545	*	1852	3846	*	*	*	6525	6622	4387	2557	*	4970	26
+       0	*	*	*	*	*	*	9652	0	0	
+
+H 27   2338	3991	6673	6021	5378	5609	4111	4100	*	4749	5847	*	*	6725	4733	2699	4199	2167	*	5591	27
+       0	*	*	*	*	*	*	9652	0	0	
+
+L 28   3423	*	3273	1850	*	6198	5782	6068	3349	5173	*	4000	*	3611	3626	4282	3708	*	*	*	28
+       20	6198	*	0	*	*	*	9652	1003	0	
+
+G 29   2828	5847	4631	4525	5556	4921	4712	2787	6977	3370	*	6012	6198	*	*	4275	2333	3331	5469	6076	29
+       15	*	6622	*	*	*	*	9652	0	0	
+
+L 30   4476	6175	*	3588	2622	3220	*	3896	*	1898	3601	6705	5039	*	*	5353	4037	5784	6518	5967	30
+       17	6408	*	0	*	0	*	9664	1000	1000	
+
+D 31   4102	6532	2785	4403	*	1744	4122	4805	3684	3965	*	3247	*	4953	6525	6724	6374	5456	*	6356	31
+       26	*	5799	*	*	*	*	9652	0	0	
+
+I 32   2672	4120	*	*	3286	*	*	3956	1839	4621	5266	6039	*	*	5579	*	4259	2606	*	5650	32
+       0	*	*	0	*	0	*	9736	1065	1065	
+
+P 33   5004	*	3581	4751	*	5163	*	*	4296	*	*	5250	736	5031	5805	4267	4562	*	*	*	33
+       0	*	*	*	*	*	*	9761	0	0	
+
+K 34   3809	*	4211	1860	*	5210	6110	4915	3760	4574	4759	5409	2882	4288	4972	5035	4708	4040	*	*	34
+       0	*	*	*	*	*	*	9761	0	0	
+
+G 35   2758	*	2788	2467	5618	3810	*	5451	3518	6736	6092	3632	5993	4785	5447	3915	4266	*	5769	6897	35
+       318	*	2339	*	*	*	*	9761	0	0	
+
+K 36   3800	*	1482	4715	4944	4085	4407	*	4302	4492	*	4602	5044	*	5135	3948	4674	6199	5053	4295	36
+       25	5879	*	2322	322	*	0	9295	1000	2969	
+
+H 37   5746	4613	5999	5117	5256	*	6093	2330	4617	3030	6516	*	*	3706	3613	*	4363	1960	*	5777	37
+       0	*	*	*	*	0	*	9295	0	2969	
+
+A 38   3544	*	6033	4947	2525	6533	5494	6527	2924	*	4139	4380	*	4396	3040	5805	5242	4422	6592	2816	38
+       0	*	*	*	*	*	*	9761	0	0	
+
+I 39   4770	*	*	*	6317	6143	4582	2234	6446	5456	4645	6598	*	3058	6008	4907	3451	1567	*	*	39
+       0	*	*	*	*	*	*	9761	0	0	
+
+R 40   3685	5194	*	*	4435	6120	6087	2695	*	3024	3317	*	*	6835	2242	5464	3809	3390	5406	6818	40
+       55	4732	*	2322	322	*	*	9765	1320	0	
+
+F 41   3090	*	*	*	2386	6454	*	2684	*	2656	4486	*	*	*	*	5477	5846	1996	5879	6206	41
+       84	*	4139	*	*	*	*	9765	0	0	
+
+L 42   4876	*	4681	3791	*	6987	3017	4870	*	3507	5360	3241	*	3738	3312	3847	3173	3498	*	5235	42
+       0	*	*	*	*	*	0	9622	0	1473	
+
+C 43   4525	5071	3977	1882	6215	5593	6619	4828	6315	3592	6431	*	3312	5082	3751	5565	4901	3395	5123	5469	43
+       93	*	3998	*	*	0	*	9627	0	1473	
+
+L 44   5102	5843	4156	3861	3881	*	3020	2803	5111	3226	4845	5884	*	6285	4690	5774	4983	3002	*	3638	44
+       145	*	3388	*	*	*	0	9644	0	1492	
+
+E 45   3748	*	3078	2421	*	4135	5961	*	4612	5656	*	5576	2371	4949	7873	3226	3469	*	*	4695	45
+       0	*	*	*	*	1333	729	9356	0	2346	
+
+K 46   2688	6271	2667	3853	*	4317	6131	5728	4746	6378	6331	4516	2452	3871	4622	3790	6405	4620	*	*	46
+       45	5917	6131	2322	322	0	*	9567	1050	1794	
+
+E 47   4359	*	2859	2568	*	3064	6508	*	3896	5768	5604	4633	5206	3625	5376	3460	3732	5198	*	4563	47
+       13	*	6777	*	*	*	0	9732	0	1000	
+
+D 48   4642	6101	2364	3431	6611	6000	2734	6038	4722	4490	*	3078	4382	4147	3864	5003	6587	6356	6721	5069	48
+       0	*	*	*	*	0	*	9723	0	1100	
+
+F 49   4729	5781	6712	*	2682	*	5872	3492	*	2789	2561	*	*	5461	6337	4772	6051	3981	3177	3353	49
+       99	4058	7337	1930	439	*	*	9770	1757	0	
+
+Y 50   3080	5622	6449	5630	3986	4620	6582	3121	5866	3617	4626	5338	6212	6526	4116	4490	3313	3200	5669	3626	50
+       0	*	*	*	*	*	0	9709	0	1172	
+
+Y 51   5034	*	*	*	1925	*	5320	2785	5738	3556	4691	*	5334	6829	4463	*	4104	2882	*	3048	51
+       0	*	*	*	*	1250	787	9709	0	1172	
+
+P 52   2589	6288	4204	5274	6626	1349	6410	*	5136	5053	5290	5415	3504	4671	4745	4209	*	*	*	*	52
+       455	*	1887	*	*	*	0	9697	0	1050	
+
+F 53   3880	*	2553	4034	5884	1677	6522	*	4510	4100	*	4620	3232	*	4186	4606	6092	*	*	*	53
+       1389	694	*	1883	456	69	4424	9003	4774	3922	
+
+D 54   2553	*	3393	3742	*	1850	6733	*	3841	*	*	4058	4041	3928	4747	5917	3990	*	*	*	54
+       39	6128	6326	1000	1000	*	0	8996	1028	1050	
+
+R 55   3822	*	4271	3537	*	*	6310	6538	3559	5088	6529	5686	3592	5476	1956	3175	3087	5489	*	6684	55
+       93	4356	6173	192	3002	704	1373	9022	1670	1315	
+
+S 56   3198	*	2785	3278	5291	3480	5149	6228	4799	5350	5260	4489	6670	5199	5241	2690	2871	*	*	*	56
+       98	6398	4212	0	*	1183	838	9004	1000	1182	
+
+D 57   3164	*	2194	2358	*	4308	4777	6687	4876	6115	5851	4492	3564	4009	4403	4804	*	4709	*	*	57
+       75	*	4311	*	*	385	2094	8994	0	1586	
+
+D 58   3738	*	3320	5242	6050	3572	4936	*	4185	*	*	3346	1754	4796	3807	4234	7001	6062	*	4897	58
+       0	*	*	0	*	1201	824	8937	1050	1525	
+
+Y 59   3384	3085	*	*	2390	4851	4813	5107	*	4031	3062	6462	6630	6530	4406	*	4105	3562	*	3424	59
+       15	6550	*	0	*	1642	557	9044	1264	1250	
+
+T 60   2556	4577	*	*	5403	6343	*	2116	*	2847	4227	*	3817	*	6027	6249	3960	2598	*	*	60
+       32	6638	6383	1000	1000	0	*	9035	1000	1133	
+
+V 61   6812	5474	5811	5159	2687	6806	3280	3616	5948	3387	3670	4571	*	4829	4579	6070	5159	3053	7130	3409	61
+       0	*	*	*	*	0	*	8670	0	1050	
+
+I 62   4696	5163	*	*	4700	5424	*	1094	*	3533	4948	*	*	*	6927	*	*	1856	*	*	62
+       26	*	5824	*	*	*	*	8740	0	0	
+
+E 63   5552	6445	4162	2699	5090	6527	3545	5452	3951	*	*	3085	*	3167	4716	2903	3033	6562	*	6612	63
+       0	*	*	*	*	*	0	8745	0	1165	
+
+I 64   4617	5951	*	*	4508	4465	*	1689	*	2734	6605	*	*	*	*	*	6414	1429	*	*	64
+       28	*	5726	*	*	*	0	8745	0	1165	
+
+N 65   3601	6445	4000	3932	5306	*	4326	*	2495	5005	6077	5660	*	4117	3587	3873	2543	4601	6565	5194	65
+       0	*	*	*	*	0	*	8717	0	1439	
+
+L 66   3399	4374	5858	*	5250	4514	4841	2640	5779	2377	4329	*	*	*	5821	2869	3859	3738	6005	*	66
+       216	*	2845	*	*	*	*	8740	0	0	
+
+M 67   3861	6925	*	*	2953	4724	*	2298	6455	2913	3502	5411	4999	6678	3258	5194	6517	5474	5044	4057	67
+       63	*	4556	0	*	0	*	8501	1163	2809	
+
+A 68   3057	*	5452	3217	*	2289	4754	*	4125	*	*	4255	2619	4763	4425	3760	5093	4911	*	6008	68
+       40	6315	6095	0	*	0	*	8689	1174	1312	
+
+G 69   5000	*	6374	6588	6886	941	5969	6157	3966	6868	6839	4973	4587	5444	3802	4543	4061	4848	*	*	69
+       71	4377	*	493	1790	0	*	8755	1530	1136	
+
+R 70   5845	*	5139	*	4388	6914	6607	3777	5198	2974	*	4571	5015	7366	1125	7192	4591	4167	*	5709	70
+       67	4459	*	0	*	*	*	8740	1333	0	
+
+M 71   6679	*	2766	4655	*	3998	6163	*	5139	*	6423	3420	4091	6693	6563	1818	2113	*	*	*	71
+       17	*	6385	*	*	*	*	8740	0	0	
+
+E 72   3346	*	2550	3073	7233	5939	4776	4626	4242	3895	6669	*	3360	3916	4138	5806	3821	3771	*	*	72
+       9	7276	*	0	*	0	*	8749	1224	1148	
+
+G 73   3037	*	3304	1090	*	4538	5945	*	4293	*	*	5712	5719	3911	*	4346	5109	6129	*	*	73
+       0	*	*	*	*	*	*	8740	0	0	
+
+T 74   3542	*	4215	3602	5682	6163	6891	6218	4018	4216	5671	5161	*	1541	4248	4979	3750	4601	*	5973	74
+       0	*	*	*	*	*	*	8740	0	0	
+
+K 75   6869	4810	6779	5741	6822	*	*	4561	947	4492	6642	3371	6758	5499	3213	*	5024	5441	*	6163	75
+       62	4581	*	1192	831	*	*	8740	1375	0	
+
+K 76   3128	*	3809	3083	*	6104	6209	*	2515	4308	6129	5914	6215	3036	2529	4371	4955	5460	*	*	76
+       0	*	*	*	*	*	*	8740	0	0	
+
+R 77   2670	*	4498	2675	*	4945	5183	5318	2527	7078	5569	3868	*	4031	2616	5268	4785	*	*	*	77
+       0	*	*	*	*	*	*	8740	0	0	
+
+L 78   5150	*	*	*	2734	*	6416	3103	*	1067	3710	*	*	*	*	*	6052	5032	6106	3653	78
+       0	*	*	*	*	*	*	8740	0	0	
+
+I 79   2433	6524	*	*	4616	5104	6642	2981	*	3874	4095	5385	*	*	7953	2457	4379	3347	*	3130	79
+       0	*	*	*	*	*	*	8740	0	0	
+
+K 80   2535	*	3806	2567	*	5825	5770	*	2082	4129	*	*	6758	3634	3524	5239	4920	5528	*	*	80
+       7	*	7600	*	*	*	*	8740	0	0	
+
+M 81   1943	6522	3559	2653	*	4011	*	*	3349	3850	4973	6448	*	4253	3641	5076	5489	5750	*	6739	81
+       0	*	*	*	*	*	0	8745	0	1065	
+
+L 82   5169	*	*	*	3463	*	*	1722	*	1726	4240	*	*	*	*	*	5560	2308	*	*	82
+       0	*	*	1000	1000	0	*	8745	1065	1065	
+
+F 83   2709	4127	6527	6247	3919	*	5110	5628	6497	5234	4345	7052	*	*	5185	3485	1636	3470	*	5189	83
+       19	7953	6816	0	*	*	*	8740	1000	0	
+
+S 84   2943	6436	2533	2157	*	4997	5217	6628	3850	6865	*	5228	5485	3818	3614	4457	4359	6748	*	6636	84
+       16	6521	*	0	*	0	*	8725	1019	1025	
+
+E 85   2347	*	7316	3522	4034	6550	*	3440	6865	3061	4472	4500	6400	5895	4048	6124	4633	3127	*	3826	85
+       7	*	7672	*	*	*	*	8740	0	0	
+
+L 86   3688	6628	*	*	4457	*	*	2447	*	1370	3932	*	*	*	*	6927	4486	2750	5603	6818	86
+       12	*	6862	*	*	0	*	8754	0	1107	
+
+E 87   2342	4839	6029	2869	*	7343	4140	6921	4646	5238	5599	6673	*	4101	4387	2838	3909	3045	*	6158	87
+       44	5497	6971	2219	349	0	*	8738	1233	1014	
+
+Y 88   3876	*	4073	1970	*	5828	6123	*	3088	4930	5972	4315	5014	3290	2983	4339	4381	*	*	6421	88
+       12	*	6909	*	*	0	*	8737	0	1000	
+
+K 89   3319	*	4651	3429	*	*	3744	3730	3205	4435	4875	3666	7077	5129	4367	4286	3775	3238	6521	5380	89
+       77	*	4259	*	*	0	*	8680	0	1000	
+
+L 90   3270	5535	*	*	4024	6126	*	4887	5578	1118	5691	*	4952	*	6743	5847	2681	4593	*	6994	90
+       41	5160	*	1418	676	0	*	8574	1233	1464	
+
+G 91   4461	6430	3672	4128	5244	1094	4975	*	3461	5688	*	3938	5005	5988	*	4341	6776	*	*	*	91
+       0	*	*	*	*	*	0	8653	0	1233	
+
+I 92   3728	4238	*	6994	6793	5566	6165	1878	4687	3351	6988	5153	4866	5589	*	5319	4829	2001	*	6689	92
+       0	*	*	*	*	*	0	8653	0	1233	
+
+R 93   5695	*	2986	3775	*	6041	5571	*	3948	5044	*	4648	1506	5664	3679	3144	4660	7009	*	*	93
+       0	*	*	*	*	*	0	8653	0	1233	
+
+A 94   3533	*	4600	3463	*	4129	5642	4072	2916	4187	6680	4862	2009	5518	5668	4588	5240	4435	*	6753	94
+       0	*	*	*	*	0	*	8653	0	1233	
+
+H 95   4070	*	2187	1754	6216	4675	6421	5627	6761	*	*	3425	6465	4411	4966	3325	5381	5412	*	*	95
+       41	5171	*	1585	585	*	*	8684	1320	0	
+
+D 96   3055	6421	2410	4747	6053	*	5595	*	4806	5732	*	3703	5862	4506	1824	3732	5450	5783	6862	7183	96
+       11	7000	*	0	*	*	*	8684	1000	0	
+
+V 97   *	6842	*	*	4021	6120	*	1764	*	3450	6648	6500	*	5994	*	5231	3916	1372	6216	*	97
+       0	*	*	*	*	*	*	8684	0	0	
+
+E 98   6353	5150	7290	4890	3148	*	6027	5282	5641	3933	3622	7027	*	*	4285	3150	3218	3927	4711	2211	98
+       17	6454	*	0	*	*	*	8684	1019	0	
+
+I 99   6020	6666	*	*	5053	6933	*	1370	*	3743	3368	*	*	*	*	*	5700	1479	*	*	99
+       0	*	*	*	*	*	*	8684	0	0	
+
+T 100  3613	*	5031	3355	4054	6538	5394	3145	4752	3728	6215	3234	*	4687	*	3949	3788	2812	*	4986	100
+       11	*	6987	*	*	*	*	8684	0	0	
+
+I 101  6853	6098	*	*	2132	*	*	1562	*	2442	4799	*	*	6449	*	*	6753	3312	*	3868	101
+       0	*	*	*	*	*	0	8676	0	1000	
+
+K 102  4841	*	3325	3202	5453	5774	4058	4624	5012	5361	*	3809	6684	3379	3891	3916	3096	3753	*	4115	102
+       0	*	*	*	*	*	0	8676	0	1000	
+
+E 103  5119	*	2021	960	5813	*	6597	6556	*	*	*	4631	5529	6146	4848	6582	4930	6998	*	6647	103
+       0	*	*	*	*	0	*	8676	0	1000	
+
+Q 104  4764	5392	*	6797	5158	*	4607	2429	*	3045	4177	3423	5593	5145	*	5284	4491	2018	*	4646	104
+       69	*	4424	*	*	*	*	8684	0	0	
+
+P 105  3678	*	2940	2934	*	4096	6565	*	4825	5763	*	3942	1986	4840	4613	3688	4408	5646	*	*	105
+       24	*	5901	*	*	*	0	8566	0	1462	
+
+A 106  2440	*	3749	5487	*	4662	6201	*	3446	3450	6477	*	2051	5134	3051	4715	5424	*	*	5675	106
+       13	*	6816	*	*	537	1685	8563	0	1713	
+
+H 107  2881	*	2996	2258	*	3996	5518	5919	4536	6082	*	6923	5164	3432	4263	3106	4473	7015	6405	6726	107
+       0	*	*	*	*	0	*	8683	0	1262	
+
+C 108  4348	6421	2378	4789	4672	5880	3313	6410	6648	5026	4855	1915	*	5303	4266	3837	4198	*	*	*	108
+       0	*	*	*	*	*	*	8684	0	0	
+
+W 109  5674	6101	*	*	3894	6670	*	3534	6912	5039	4164	*	*	*	*	6975	5882	4521	967	2967	109
+       13	6844	*	0	*	*	*	8684	1000	0	
+
+G 110  3158	5459	6484	*	4675	1214	*	*	4997	*	6817	5745	*	5982	5568	2171	*	6543	5019	5357	110
+       0	*	*	*	*	*	*	8602	0	0	
+
+F 111  5043	*	5021	*	2018	6767	*	3428	2988	4276	6731	4005	*	6758	5787	4999	5389	3085	3387	4487	111
+       0	*	*	*	*	*	*	8348	0	0	
+
+R 112  2724	*	4153	6113	*	1471	6329	*	4693	6451	*	2443	*	4505	4125	3847	*	*	*	*	112
+       74	4313	*	0	*	*	*	8145	1780	0	
+
+G 113  5624	*	*	5369	5366	367	*	*	*	6496	*	3970	*	4302	5786	6352	*	*	*	*	113
+       47	6104	5814	1000	1000	*	*	8128	1030	0	
+
+M 114  5419	*	4833	3763	*	2547	5210	4362	2988	6922	5133	6644	*	4845	3896	3834	2804	3128	*	5739	114
+       22	6014	*	0	*	0	*	8074	1149	1041	
+
+T 115  4798	*	*	*	5516	*	5534	4318	6201	2273	6217	5371	3399	6107	5413	4199	1490	3853	*	*	115
+       26	5781	*	1000	1000	0	*	7747	1000	1149	
+
+G 116  3024	*	*	5833	2252	3348	6084	3694	4763	2841	5214	5944	*	3993	6407	6003	*	2902	5979	*	116
+       53	4790	*	0	*	*	*	7695	1143	0	
+
+D 117  2482	6068	2508	3776	5659	3364	5281	*	3553	*	*	*	5081	5200	4778	2769	4555	4949	*	6090	117
+       99	3911	*	1635	560	*	*	7585	1223	0	
+
+E 118  5590	5153	2072	2310	*	4359	5622	4231	4422	*	*	*	4032	3890	4231	5298	4512	3894	*	5362	118
+       0	*	*	*	*	*	*	7041	0	0	
+
+A 119  4231	*	4437	*	*	5878	*	2896	2894	2458	5618	*	3814	4541	2577	5306	5368	3622	*	*	119
+       0	*	*	*	*	*	*	6980	0	0	
+
+R 120  3031	*	2398	3053	4315	*	*	*	3156	3506	*	4573	*	*	2990	4854	3125	*	*	*	120
+       1837	*	474	*	*	*	*	5954	0	0	
+
+D 121  *	*	1563	*	1513	*	*	*	1684	*	*	*	*	*	*	*	*	*	*	*	121
+       622	1514	*	2000	415	242	2693	2250	1133	2277	
+
+L 122  *	*	*	2359	2423	*	*	*	3122	1358	*	*	*	*	*	*	3136	*	*	*	122
+       0	*	*	*	*	0	*	4047	0	1111	
+
+D 123  3689	*	2428	2364	*	1449	*	*	3312	*	*	*	*	*	*	3725	*	*	*	*	123
+       0	*	*	*	*	*	*	4270	0	0	
+
+Y 124  *	*	*	*	2504	*	*	3093	*	3184	*	2971	*	*	*	*	*	*	*	1092	124
+       0	*	*	*	*	*	*	4011	0	0	
+
+D 125  2620	*	1326	*	*	*	*	*	2853	*	*	2727	*	*	*	*	2746	*	*	*	125
+       0	*	*	*	*	*	*	3178	0	0	
+
+I 126  *	*	*	*	*	*	*	732	*	*	*	*	*	*	*	*	*	1329	*	*	126
+       0	*	*	*	*	*	*	2814	0	0	
+
+Y 127  2290	*	1370	*	*	*	*	*	*	*	*	*	*	*	2335	*	*	*	*	2249	127
+       0	*	*	2585	263	*	*	2814	1166	0	
+
+V 128  *	*	*	*	*	*	*	*	*	2023	*	*	*	*	*	*	*	408	*	*	128
+       0	*	*	0	*	*	*	2467	0	0	
+
+//
+�HHsearch 1.5
+NAME  2f38e0381f5a1497aa929335a94cdbc7
+FAM   
+FILE  2f38e0381f5a1497aa929335a94cdbc7
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:18:21 2013
+LENG  89 match states, 89 columns in multiple alignment
+FILT  113 out of 1640 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  10.3
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCHHHHHHHHHHHHCCHHHHHHHHHHHHHHCCCCCCCCCHHHHHHHHHHHCCCCCHHHHHHHHHHHCCCCCCCCCHHHHHHHHHHCCCC
+>ss_conf PSIPRED confidence values
+98999999999983670089999999998778999938699999999993799999999999998688999949699999999867899
+>Consensus
+ixxxeFxxxxxxxxxxxxxxxxxxxxFxxxDxxxxgxixxxexxxxxxxxxxxxxxxxxxxxxxxxdxxxxgxixxxefxxxxxxxxxx
+>2f38e0381f5a1497aa929335a94cdbc7
+MNFGDFLTVMTQKMSEKDTKEEILKAFKLFDDDETGKISFKNLKRVAKELGENLTDEELQEMIDEADRDGDGEVSEQEFLRIMKKTSLY
+>gi|66808853|ref|XP_638149.1| EF-hand domain-containing protein [Dictyostelium discoideum AX4]gi|74996819|sp|Q54MZ4.1|MCFB_DICDI RecName: Full=Mitochondrial substrate carrier family protein Bgi|60466585|gb|EAL64637.1| EF-hand domain-containing protein [Dictyostelium discoideum AX4]
+---------------------------------------MSNNNNNNNNNNNNNNNNNN----NNNNNNNNDKNNNNNIDSSIK-----
+>gi|330796947|ref|XP_003286525.1| hypothetical protein DICPUDRAFT_77398 [Dictyostelium purpureum]gi|325083506|gb|EGC36957.1| hypothetical protein DICPUDRAFT_77398 [Dictyostelium purpureum]
+ITKDEAISYF-KNSGSKFPERNASYLFKAMDLDHDGKLTLDEIRAGLIKEYSEkledTIELDIDAFFLKHDINKDQKIHKKEMIQYFEDLGT-
+>gi|313213218|emb|CBY37065.1| unnamed protein product [Oikopleura dioica]gi|313233994|emb|CBY10162.1| unnamed protein product [Oikopleura dioica]gi|313246556|emb|CBY35452.1| unnamed protein product [Oikopleura dioica]
+-------------LEDDELQSRLRKLVVRMDHNRDGYVDKEELTSWGLVSIYNIQGKDGREDYEFLLHDGASg-LDFDHLSDDI------
+>gi|74189848|dbj|BAE24569.1| unnamed protein product [Mus musculus]
+---------------EKEPIAASTNRGKDLIGVQNLLKKHQALQAEIAGHEPRIKavt----------------------------------
+>gi|67471481|ref|XP_651692.1| EF-hand calcium-binding domain containing protein [Entamoeba histolytica HM-1:IMSS]gi|56468461|gb|EAL46305.1| EF-hand calcium-binding domain containing protein [Entamoeba histolytica HM-1:IMSS]
+ISFYEYMGMHK-------FLEICYNVFIQCDTNRSGTMEPHEIIPALRILGFFVNQRTAIVLHRLFAHGs---tICDLNCWIALCA-----
+>gi|256075808|ref|XP_002574208.1| mitochondrial solute carrier [Schistosoma mansoni]gi|238659407|emb|CAZ30441.1| mitochondrial solute carrier, putative [Schistosoma mansoni]
+IHYDEFTQIIH-V-----KYNFSYTCIYFSYK--TGTITVDQFKSIILQLkSRLLTPLIKENLLTVVlqsemdGGR----ITFAYYMAF-------
+>gi|221117548|ref|XP_002159552.1| PREDICTED: similar to apoptosis-inducing factor (AIF)-like mitchondrion-associated inducer of death [Hydra magnipapillata]
+-------------VQYTKISDYVEMLY---DTEIKNGKNLSQFEELIEKGKMKYPHLSyhfkelkklynSKVLKLESEGs-----LSLKDLHSLAKIVDS
+-
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    4850	5406	*	*	*	5080	*	1416	*	2053	3520	*	*	*	*	*	5022	2486	*	*	1
+       43	5080	*	0	*	*	*	9486	1202	0	
+
+N 2    *	*	1479	5719	*	4183	6101	5958	6170	*	*	3232	5745	*	5675	2182	2801	*	*	6149	2
+       0	*	*	*	*	*	*	9583	0	0	
+
+F 3    *	6335	*	*	1331	*	*	6084	4434	2061	6509	5859	4998	*	4450	5735	*	4694	*	2980	3
+       0	*	*	*	*	*	*	9721	0	0	
+
+G 4    3805	*	3322	2200	*	5190	*	*	3313	5982	5999	3887	4159	6034	4246	3096	3826	6100	*	4114	4
+       0	*	*	*	*	*	*	9746	0	0	
+
+D 5    5204	*	3742	912	*	*	*	5866	3952	6104	5718	4166	*	3736	6345	3644	*	*	*	5137	5
+       0	*	*	*	*	*	*	9768	0	0	
+
+F 6    6074	*	*	*	543	*	*	6334	*	3328	*	*	*	*	*	*	*	4613	5206	3070	6
+       0	*	*	*	*	*	*	9768	0	0	
+
+L 7    4605	3895	6076	6281	*	*	5053	2689	4019	2296	4031	6093	*	6148	4331	4630	3658	3047	*	4911	7
+       0	*	*	*	*	*	*	9768	0	0	
+
+T 8    3109	4475	4230	3755	5213	4035	5077	5164	3417	4224	4631	4087	*	3817	3685	4564	3920	4307	*	6331	8
+       22	6014	*	0	*	*	*	9774	1088	0	
+
+V 9    2749	*	6031	5250	2708	3963	5425	3247	*	2749	4206	6027	*	6336	6071	3907	4399	3987	*	4597	9
+       0	*	*	*	*	*	*	9842	0	0	
+
+M 10   4547	5266	*	*	4112	*	5048	4390	*	1870	2816	*	*	5939	*	3474	4707	2959	4110	4355	10
+       200	*	2950	*	*	*	*	9914	0	0	
+
+T 11   3160	5804	*	4998	5951	4414	3966	5778	3074	3039	5913	3707	*	4572	4048	2678	4215	5040	*	5870	11
+       326	3626	3041	1363	710	316	2344	9732	1868	2732	
+
+Q 12   4078	4878	6295	3426	6121	4048	4651	6021	3453	4479	4963	4863	3655	4174	4414	3733	3906	3685	*	3899	12
+       45	*	5041	*	*	2450	292	9701	0	2729	
+
+K 13   5827	*	6162	3629	3222	*	6092	3203	2933	2640	*	*	4998	3458	3826	6044	4739	3474	5928	6168	13
+       66	5908	5145	0	*	2423	298	9764	1009	2736	
+
+M 14   4565	5016	*	4481	4344	*	4618	3648	5985	1911	4346	6104	4817	5024	4258	3367	4528	3592	*	5310	14
+       60	4628	*	2528	275	1366	708	9982	1388	2733	
+
+S 15   6666	3891	4488	4157	5140	3310	4672	5466	3109	3755	4013	3634	4604	4724	4517	3566	5210	5357	*	4635	15
+       88	5569	4707	2000	415	*	0	10003	1221	2026	
+
+E 16   4205	*	4321	3399	4198	5174	6100	*	3238	4716	6300	3427	3073	3590	4182	3500	5050	6237	5383	4586	16
+       0	*	*	*	*	1636	560	10083	0	2588	
+
+K 17   4546	5944	4909	2898	*	4233	4613	6462	3234	3729	*	3912	3290	3973	4130	4112	3040	5831	*	*	17
+       88	5156	5020	359	2184	2667	247	10227	1508	2045	
+
+D 18   4598	*	2925	2673	4862	6392	6457	5395	3771	3939	4307	3274	4425	6197	5396	3012	4315	4709	*	*	18
+       52	*	4816	*	*	0	*	10233	0	2372	
+
+T 19   5290	*	5037	3972	3757	6465	4778	4750	3854	3254	*	3511	2913	4936	3617	3476	4008	4691	6425	6596	19
+       66	6509	4878	1000	1000	*	0	10408	1002	1418	
+
+K 20   4243	*	4760	2837	6353	6629	5753	3665	3674	2724	4946	6582	4610	4323	4057	3884	3674	4147	6264	6446	20
+       0	*	*	*	*	537	1687	10374	0	2088	
+
+E 21   4278	*	2632	2152	5783	4624	*	4543	3958	4227	5909	6524	6550	4106	3522	4533	4209	4577	*	5613	21
+       14	*	6694	*	*	939	1064	10429	0	1209	
+
+E 22   4358	*	4015	2537	5284	4093	4583	5192	2757	3337	5606	6482	*	5083	3466	4274	4115	4474	*	6533	22
+       77	4268	*	1735	515	0	*	10475	1865	1247	
+
+I 23   3431	5080	6873	6524	3059	6330	*	2752	6666	1968	4897	*	5164	6962	6676	5530	6889	3246	5086	3885	23
+       0	*	*	*	*	*	*	10581	0	0	
+
+L 24   4070	*	4748	3248	5597	5205	5330	4385	3094	3638	5900	4591	*	3690	2658	3939	4886	4471	5690	5477	24
+       43	5571	6872	0	*	*	*	10592	1236	0	
+
+K 25   3703	6822	3748	3087	4553	5492	5094	3953	3208	4319	5171	4497	*	3637	3508	4974	3879	4507	5563	*	25
+       11	*	7034	*	*	*	0	10592	0	1000	
+
+A 26   2234	4884	*	6841	5635	6404	5748	2831	5149	2175	5639	*	*	5843	5528	5283	4692	2763	5319	6927	26
+       50	4874	*	671	1428	*	0	10591	1482	1142	
+
+F 27   6187	*	*	*	543	6231	*	5682	*	4079	5533	*	*	6415	*	4929	*	5248	5924	3335	27
+       29	6591	6710	3000	193	*	0	10591	1000	1142	
+
+K 28   3548	*	3816	3430	6626	5116	4753	6215	3046	4349	4227	3564	*	3894	2800	3659	4432	5894	*	*	28
+       45	5582	6688	1000	1000	*	0	10523	1198	1372	
+
+L 29   3691	6447	4573	3924	5907	6963	4972	4777	3106	2865	3987	6854	*	3606	4248	4007	4258	3572	7081	4499	29
+       11	7081	*	2345	316	2275	334	10560	1101	1551	
+
+F 30   3861	3799	6697	*	2397	5624	5283	3663	5078	2474	4222	6968	*	*	5796	6114	5168	4607	6799	2703	30
+       90	5716	4587	0	*	0	*	10521	1226	1398	
+
+D 31   5721	5685	571	4601	*	5351	*	6165	6680	*	*	4519	6430	6593	4242	5129	4262	*	*	*	31
+       12	6945	*	0	*	275	2527	10580	1000	1847	
+
+D 32   4032	*	6263	4330	*	4655	6574	4196	2310	3583	*	4550	3954	5555	4053	3197	2865	5296	*	5282	32
+       83	5198	5136	721	1346	0	*	10569	1402	1000	
+
+D 33   4678	5763	1879	3043	5440	4388	7064	*	5322	*	6079	2159	5945	4822	5107	3781	5017	6132	*	6824	33
+       12	6897	*	0	*	425	1971	10478	1000	1735	
+
+E 34   5000	6340	3863	3947	*	2401	4002	5660	3014	*	6832	2828	*	4016	3266	3541	5256	*	*	*	34
+       37	6881	5908	2322	322	*	0	10554	1000	1037	
+
+T 35   5339	6605	1971	3899	6431	7123	6806	5711	2849	5932	6083	2850	*	5623	5200	2975	3568	5133	*	*	35
+       28	6710	6683	0	*	0	*	10549	1000	1385	
+
+G 36   4843	6667	3459	5183	*	726	5814	6838	6889	6238	6665	4653	*	6024	4166	5432	5438	6926	*	6786	36
+       36	5350	*	1197	827	0	*	10598	1562	1007	
+
+K 37   5548	5223	6986	4048	3655	4940	5184	5511	3256	3700	5309	4770	4813	4725	4306	3709	3022	4336	5982	3479	37
+       0	*	*	*	*	0	*	10564	0	1000	
+
+I 38   *	*	*	*	5540	*	*	1605	4934	1538	4473	*	*	6479	*	6140	*	2304	*	*	38
+       14	*	6745	*	*	*	*	10571	0	0	
+
+S 39   5900	5423	2418	3638	7078	4779	*	6993	6238	4719	*	3863	4621	7021	6758	2189	2164	6793	*	6420	39
+       0	*	*	0	*	0	*	10598	1007	1007	
+
+F 40   3387	5670	5551	3759	3620	5285	6247	3900	2942	3092	4380	*	4304	4813	3762	5002	5819	4391	6464	4674	40
+       0	*	*	*	*	*	*	10647	0	0	
+
+K 41   4255	*	2976	2068	6855	4520	4972	4610	3841	6788	5691	3679	4991	3569	4215	3653	5421	6905	*	*	41
+       15	6601	*	6000	23	*	*	10647	1000	0	
+
+N 42   4359	*	2340	1252	*	6558	*	5983	5976	*	*	3997	7091	3407	6823	5079	5003	6808	5434	5288	42
+       13	*	6788	*	*	*	*	10647	0	0	
+
+L 43   5983	6008	*	*	2027	*	7006	3065	*	1697	4856	6189	*	*	6499	6808	5732	2753	5812	4859	43
+       98	4165	6610	1629	563	0	*	10629	2194	1007	
+
+K 44   4360	5997	6528	3968	6594	3580	4798	3614	2814	3521	*	4950	6326	3612	2890	4518	4975	3815	6383	*	44
+       13	*	6780	*	*	*	0	10616	0	1038	
+
+R 45   4137	*	3806	3032	6148	6868	5049	5238	2737	4302	6541	3776	5508	3562	3564	3238	3804	5894	*	*	45
+       23	*	6002	0	*	1097	909	10598	1007	1253	
+
+V 46   2845	4699	*	6244	3578	4631	6891	2788	*	2193	3976	6193	*	*	*	6642	5079	3004	4194	5874	46
+       47	5357	6976	1553	601	1229	803	10597	1426	1365	
+
+A 47   4104	4497	6733	*	4124	*	6643	2522	*	1900	2930	6196	*	6792	6898	6769	4834	2711	*	5670	47
+       30	7053	6266	2807	222	*	0	10624	1000	1299	
+
+K 48   5489	6653	4196	3557	*	3707	5716	6018	3117	4480	5199	3584	*	3595	2838	3273	4682	3769	*	6917	48
+       40	*	5189	1585	585	2167	363	10594	1000	1537	
+
+E 49   2955	6859	4331	3347	6155	5274	*	4632	3304	3754	6887	4054	4746	4651	4274	3509	3528	3880	*	5711	49
+       123	4471	4772	1450	657	1198	826	10524	2107	2062	
+
+L 50   3879	5754	*	4538	3757	5599	4627	2912	7096	2147	3584	4990	4995	5016	5781	3853	5000	4119	*	5959	50
+       182	3401	5388	1395	690	276	2522	10591	3045	2149	
+
+G 51   4069	6738	5022	4237	5367	1882	4727	*	3223	5812	4946	3187	5562	4916	5765	3412	4767	5686	*	5385	51
+       105	4448	5350	4215	80	0	*	10539	1774	1627	
+
+E 52   6546	5660	4473	3835	3436	5741	4287	4335	4599	3604	5800	4087	4168	4852	4084	3258	6115	3053	*	4223	52
+       113	4706	4760	653	1458	*	0	10595	1532	1364	
+
+N 53   4225	6695	4176	3671	6218	3656	5976	4459	2957	5944	6700	3085	3108	4410	3691	3833	5198	5124	*	6672	53
+       85	4121	*	2669	247	1163	854	10504	2093	2332	
+
+L 54   4084	6990	5266	6730	4002	6792	6677	3223	4026	2421	4048	4300	4148	6946	5162	4746	4176	3460	4947	4581	54
+       15	6591	*	2585	263	1176	843	10506	1002	1672	
+
+T 55   3423	5767	2991	6577	5920	5086	5260	5302	3723	4985	7051	3398	3235	6819	5693	2964	2958	4902	*	5619	55
+       64	4537	*	2576	265	*	0	10516	1795	1290	
+
+D 56   3976	*	3422	2542	*	*	4933	4489	3170	4171	5889	4064	3653	3862	4048	*	4064	4788	*	4433	56
+       56	4706	*	2419	299	*	0	10428	1587	1290	
+
+E 57   3759	*	2856	2841	5657	3876	6729	4783	3326	4402	6540	4364	6880	3843	4383	3664	5650	3754	6734	*	57
+       11	7087	*	4170	82	*	0	10428	1000	1290	
+
+E 58   4601	7044	2989	2170	*	5170	5076	5086	3877	3819	4944	4176	5397	4689	4675	4447	4803	3809	6130	5608	58
+       45	5029	*	3133	175	906	1101	10428	1414	1290	
+
+L 59   2820	5103	6517	5665	5052	5717	*	2670	5525	2586	4807	5566	6764	5759	6430	4384	4760	2344	*	5242	59
+       71	4873	6172	3209	165	*	0	10482	1525	1024	
+
+Q 60   4362	6756	3260	2612	5458	5683	5048	5506	2691	5046	6344	3713	*	3311	3320	5872	4325	6797	*	5098	60
+       27	6516	7096	5358	36	*	0	10405	1009	1360	
+
+E 61   3504	5766	3602	2652	*	4777	5637	6402	3277	4409	4777	4189	*	2831	4324	6880	4462	4808	6262	4349	61
+       34	5419	*	2102	383	1924	441	10398	1642	1558	
+
+M 62   3458	4784	*	5479	3085	*	*	2257	*	1886	3762	*	*	5327	6287	*	4278	4033	6601	5770	62
+       22	7045	7048	2000	415	*	0	10405	1000	1360	
+
+I 63   5626	5737	*	6443	1959	7029	5432	2911	5673	2023	3674	*	*	*	*	*	5480	3922	4263	4507	63
+       49	6661	5413	1407	683	551	1656	10370	1154	1518	
+
+D 64   4437	*	5009	3167	6675	4347	4406	5629	2506	3964	6570	3520	5243	4201	3131	3414	5113	6578	*	5700	64
+       42	5663	6790	1288	760	*	0	10392	1177	1501	
+
+E 65   3418	*	4088	3003	4725	5555	6463	4836	3314	4281	4468	3986	6480	3635	4408	4661	4683	3256	*	4824	65
+       0	*	*	*	*	885	1125	10378	0	1670	
+
+A 66   3113	5768	*	6679	2612	*	5645	3637	6533	2763	4395	5297	5064	*	5525	4913	6884	3415	4516	2937	66
+       72	6347	4772	1000	1000	1212	815	10439	1186	1201	
+
+D 67   3928	6802	1292	3920	*	4274	6001	5875	4840	5489	*	3336	5410	5573	6307	4453	4344	4971	*	5252	67
+       53	7004	5156	0	*	687	1401	10387	1000	1811	
+
+R 68   3671	5531	4299	4038	*	3532	6181	3791	2937	3286	5351	4596	4196	5210	5891	3541	4429	3934	*	5603	68
+       69	4840	6389	1069	934	735	1325	10421	1458	1761	
+
+D 69   4471	5644	2083	3558	6852	4388	5426	6958	4865	5518	6310	2173	5868	5806	4749	3304	4543	*	*	5681	69
+       77	4523	6917	1928	440	1833	475	10378	1887	1652	
+
+G 70   4198	*	4092	4409	6685	2648	6673	5121	2588	*	6702	3132	5413	3775	3693	3392	4558	5030	*	*	70
+       55	6621	5201	0	*	*	0	10360	1000	1834	
+
+D 71   5037	*	1543	3583	6812	4500	6404	*	3389	5717	*	3181	*	4552	5145	3311	4063	*	*	5527	71
+       32	5522	*	378	2117	1106	901	10337	1371	2371	
+
+G 72   5416	*	3655	3631	5943	1141	5611	6721	4496	6516	*	3622	5034	4488	5796	4780	5729	5481	6684	*	72
+       71	5354	5408	1152	862	1750	509	10358	1532	1668	
+
+E 73   4131	6456	5777	4249	5306	5033	3756	4968	2449	5140	5455	5858	*	3199	3076	4021	3574	4971	*	4561	73
+       59	4648	*	2246	341	440	1928	10328	1816	2372	
+
+V 74   *	4820	*	*	4201	*	*	1553	6357	1788	3839	6145	*	*	*	*	*	2446	*	*	74
+       0	*	*	*	*	1097	909	10446	0	1229	
+
+S 75   6688	6500	2368	4195	*	4884	6467	*	5225	6783	*	2508	3903	6789	5019	2189	2856	6636	*	*	75
+       0	*	*	*	*	*	0	10452	0	1024	
+
+E 76   5542	*	*	5581	2000	5064	*	3675	3944	2685	4294	6143	*	5881	4298	6728	*	4802	4536	2666	76
+       0	*	*	*	*	*	0	10451	0	1024	
+
+Q 77   3656	*	2288	2229	*	6165	*	5323	3781	4463	*	3938	5175	3862	6773	3432	4781	5946	6911	5554	77
+       15	6550	*	0	*	*	0	10452	1038	1024	
+
+E 78   4676	6227	2279	1218	4237	3809	7000	*	4829	6753	*	6145	*	4167	6760	4466	*	*	*	6566	78
+       15	6636	*	2322	322	*	0	10452	1002	1024	
+
+F 79   *	6654	*	6636	884	*	*	4516	*	2728	4291	6550	*	*	6467	*	5461	4269	4693	4127	79
+       0	*	*	*	*	*	0	10452	0	1024	
+
+L 80   4104	4093	6145	4126	5024	*	5564	2620	3760	2772	4345	5645	6636	4620	3544	6276	4770	3174	6500	*	80
+       0	*	*	*	*	*	0	10452	0	1024	
+
+R 81   2586	7272	3057	3462	*	5151	*	5259	3416	4785	5558	3623	6632	4252	3758	3093	4361	5802	*	6751	81
+       0	*	*	*	*	*	0	10451	0	1024	
+
+I 82   3734	3960	*	5478	2882	6612	5599	3668	5670	2261	3388	6716	6459	6829	6493	4363	6127	3520	4989	4417	82
+       0	*	*	*	*	*	0	10424	0	1024	
+
+M 83   4325	4281	*	6062	4296	5327	*	2897	6232	1929	2936	6432	*	*	*	*	5712	2783	5507	3853	83
+       0	*	*	*	*	*	0	10348	0	1024	
+
+K 84   3620	6264	6408	4150	5474	6717	5539	4365	2472	4345	6416	3260	5270	3388	3514	3498	3879	6399	*	6305	84
+       0	*	*	*	*	0	*	10061	0	1024	
+
+K 85   4458	*	3824	3706	*	3229	5430	5850	2643	6131	*	3222	*	4714	2550	3030	4402	*	*	*	85
+       47	*	4969	*	*	*	*	9835	0	0	
+
+T 86   4203	5781	4267	4492	4732	*	*	3895	3336	2369	*	3681	*	4853	4468	4631	4253	2989	4643	5868	86
+       25	5868	*	501	1769	0	*	9291	1142	1207	
+
+S 87   3812	*	2696	3843	*	4050	*	*	5542	5264	*	4526	1985	*	5553	3086	2850	5428	*	*	87
+       0	*	*	*	*	*	*	9120	0	0	
+
+L 88   4896	*	4872	5062	5116	*	*	3111	3868	2192	*	2802	*	4835	4882	3317	3985	3402	*	*	88
+       0	*	*	*	*	*	*	8191	0	0	
+
+Y 89   *	4007	*	*	2515	*	4010	*	3054	2103	*	*	*	4051	*	*	*	*	4013	2150	89
+       0	*	*	0	*	*	*	6487	0	0	
+
+//
+�HHsearch 1.5
+NAME  2f4c86088a47ef73c12ffc801e19fb3c
+FAM   
+FILE  2f4c86088a47ef73c12ffc801e19fb3c
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:14:23 2013
+LENG  227 match states, 227 columns in multiple alignment
+FILT  149 out of 1419 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  10.1
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEEECCCCEEEECCCCEEEEEEECCCCCCCCEEEEEEECCCCCCEEEEEEECCCCCCEECCCCCCCEEEEECCCCCCEEEEEECCCCCCCEEEEEEEEC
+CCCCEEEEEEEEEEEECCCCCCEEEECCCCCEECCCCEEEEEEEECCCCCCCEEEEECCCCCCCCCCCEEEEECCCCEEEEEEEEEEECCCCCCEEEEEE
+EECCCCEEEEEEEECCCCCCCCCCCCC
+>ss_conf PSIPRED confidence values
+9399576868996899899999972888888589999918999828999995478850105555772899852778705799812531143548999942
+8862561248999974033364488618742211697599999945757998699988995457731103485499789999999960456797799999
+948898789999920569999498999
+>Consensus
+xxxxxxpxxxxvxxGxxvxLxCxxxxxxxxxxxvxWxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxrxxxxxxxxxxxxxLxIxxvxxxDxgxYxCxvxx
+xxxxxxxxxxxlxvxxxxxxxpxxxxxxxxxxxxxgxxxxlxCxxxxxxPxxxxvxWxxxxxxxxxxxxxxxxxxgxxxxxsxLxixxxxxdxgxyxCxv
+xxxxxxxxxxxxxxxxxxxxxxxxxxx
+>2f4c86088a47ef73c12ffc801e19fb3c
+EVQLQQPGAELVKPGASVKLSCKASGYTFTNYWINWVKQRPGQGLEWIGNIYPGSSYTHYNEKFKNKATLTVDTSSSTAYMQLSSLTSDDSAVYYCANKL
+GWFPYWGQGTLVTVSAAKTTAPSVYPLAPVCGDTSGSSVTLGCLVKGYFPEPVTLTWNSGSLSSGVHTFPAVLQSDLYTLSSSVTVTSSTWPSQSITCNV
+AHPASSTKVDKKIEPRGPTIKPCPPCK
+>gi|1853|emb|CAA32113.1| mu-immunoglobulin C(U) [Suncus murinus]
+----------------TSQLICQASGFSPRTIVMSWL--QRGEPVQPSL-VSTSAVEAEPKGSGPTTFRVI-------SRLTITENEWLSQREFTCQALH
+KG-LTFQKNVSSVCmGDDTSTGISVFLLPPTFANIfLTQSAQLTCLVTGLATyDSLDISWsrQNGEALQTHVNISESHPNSTFTAKGHASVCREEWEsGE
+KFTCTVQHSDLPSPLKQSLSR------------
+>gi|332835951|ref|XP_003312984.1| PREDICTED: b7 homolog 6-like [Pan troglodytes]
+KVEMMAGGTQITPLNDNVTIFCNIFYSQPLNitsmgITWFWKSLTFDKEVKVFEFF----GDHQEAFRPGAIVSPWRLKSG-DASLRLPGIQLEEAGEYR
+CEVVVTPLKAQGT-VQLEVV-----ASPASRLFLDQVGVKENEGKYMCESSGFYPEAINITWekqtqkfpHPIEISEDVITGPTIKNmDGTFNVTSCLKL
+NSSQEDpGTVYQCVVRHASLHTPLRSNF--------------
+>gi|334323375|ref|XP_001366403.2| PREDICTED: butyrophilin subfamily 2 member A2-like [Monodelphis domestica]
+QFTVVAPAKPLlVMVGEDAILHCHLFPKKNAEQmEVRWFRSQFSPAIYVY--KDGKNRDEEQMEEYRSRTTFMRDnIKDGSVALKIHNVTAFENGRYHCY
+FQE--GRSYDEAFIDLKVASMGSDPLIEI-----TGYEYGWIQLECTSAGWYPQP-RVEWrnLSEETIPSLEENLVPSEDGLFIVKLSVNITDHT--VVS
+VFCSIQNSLLSQELLAMMSIPE----------
+>gi|148690707|gb|EDL22654.1| mCG22132, isoform CRA_c [Mus musculus]
+---LQVQRIVKAQEGLCIFVPCSFSSPEGkwlnRSpLYGYWFKGIRKPSLSFP--VATNNKDKVLEWEARGRFQLLGDISKKNCSLLIKDVQWGDSTNYF
+FRMERGfERFSF-K-EEFRLQVeVpdLHENPSHLE------VQQGQSLRLLCtadsqppaTLSWVLEDqvlswsSPVgsrtlaleLPW----------VK
+AG------------dsghytcqaenrlgsqqhtldlsvlceyd---lpkVPGPKkDkGVTSGYKqsdycAACVGDPMSDAPThpqlpslggmfcperraw
+pvwnqFP-------------
+>gi|326703679|gb|AEA06491.1| MHC class I antigen [Macaca mulatta]
+----------------------------------------------------------------------------------------------------
+-------------------------------------htiqtmygcdlgpdgrllrgyeqyaydgrdyfalne--DLRSWTAADMAAQN-----------
+---tqrkweaagvaeqw----RAYlEGECLEWLRRYLEKGK-----------------et--LQ--raEPs-SQSTIP-----
+>gi|47215549|emb|CAG06279.1| unnamed protein product [Tetraodon nigroviridis]
+--------------------------------------------------------------------------------ILIRNLQPSFNADYVCTAKV
+KGVEKTSKAFSINVIQKLRFPPYVFLEMDEYVRIVGEELKIRCMTHNP-NFNYNVTWNYTTKSVSMRHHAVYLHREnRLDIQSILTISAVVLaDTGNISC
+IGTNEAGVNSSNTYLL-------------
+>gi|301623029|ref|XP_002940823.1| PREDICTED: beta-2-microglobulin isoform 1 [Xenopus (Silurana) tropicalis]gi|301623031|ref|XP_002940824.1| PREDICTED: beta-2-microglobulin isoform 2 [Xenopus (Silurana) tropicalis]
+----------------------------------------------------------------------------------------------------
+----------------SNISPPVVKVYTAEPVE-FGKKNELICYAYDYHPPRMEISLlkNGVEIPDT-kQKDPSFHHNWKYYTMMSAHVHIDS--DD--k
+vE-----clvah-------------------------
+>gi|312373456|gb|EFR21197.1| hypothetical protein AND_17411 [Anopheles darlingi]
+------KPVMDAVEGQSFSVMCNATGKPV--PEFQWIKQGTQQNAADL-----------------DRFSVN----AITGQLDISKVEQQDHDSYACIARN
+P-AGQSESVMKPNVL----IRPKIIELINITVSEDTE-AVFVCKAFGRPEPEITFRRygtleeysIGLQVSDDRIQLEQSVDVDKGESVGTLRISKVTTt
+DDGLYECIARNRGDvafkAGHITVEYSPI-----------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+E 1    4758	*	2415	2169	*	4183	*	4941	*	*	*	*	3441	1784	*	4571	4604	*	*	*	1
+       0	*	*	*	*	*	*	7596	0	0	
+
+V 2    5309	*	*	*	3383	5448	*	3038	*	2014	*	5074	5372	5038	*	4323	3633	1987	*	5684	2
+       0	*	*	*	*	*	*	8786	0	0	
+
+Q 3    4277	*	*	4605	5378	4439	4391	5585	2810	4297	*	*	*	4596	4421	2976	3003	2496	*	4108	3
+       0	*	*	*	*	*	*	9045	0	0	
+
+L 4    5838	*	*	*	4226	*	*	2851	5966	1715	3921	*	*	*	*	5640	3376	1798	*	*	4
+       23	5966	*	0	*	*	*	9577	1016	0	
+
+Q 5    *	*	5107	3610	6218	6606	6108	4263	5022	4813	*	3946	4904	2731	6021	2719	2313	3120	*	*	5
+       0	*	*	*	*	*	*	9856	0	0	
+
+Q 6    3102	*	5981	4155	*	4465	5253	*	3525	3683	5893	4811	5200	1855	5179	4302	4587	3332	*	*	6
+       89	4066	*	0	*	*	*	9939	1535	0	
+
+P 7    5952	*	5266	5296	*	6498	4683	5909	4305	5431	*	4482	924	4546	5918	3323	4038	*	*	*	7
+       15	6572	*	0	*	*	*	10107	1015	0	
+
+G 8    3267	6495	5632	2591	*	3536	5524	*	4622	4827	*	4201	2315	5713	5111	3632	4008	4187	*	6148	8
+       46	5783	6260	588	1578	*	*	10243	1101	0	
+
+A 9    4089	*	3572	3620	6475	4679	4186	5902	4650	3574	*	3698	4640	4024	5445	2330	3401	4837	*	*	9
+       55	4743	*	423	1977	0	*	10290	1361	1000	
+
+E 10   5089	*	5451	3733	6600	4836	6480	2855	5737	2377	5121	*	6039	4243	5499	4283	4777	1945	*	*	10
+       0	*	*	*	*	*	*	10444	0	0	
+
+L 11   5665	6565	4716	4605	4808	6808	6376	3758	4911	3914	4743	5093	4808	4772	3821	2660	2678	3032	*	6160	11
+       64	4524	*	0	*	*	*	10476	1496	0	
+
+V 12   2149	6616	*	6986	*	4497	5950	3753	5743	3787	5696	6689	4744	5668	5768	5208	4684	1539	*	5935	12
+       0	*	*	*	*	*	*	10520	0	0	
+
+K 13   3552	*	*	4522	7096	5692	*	6826	2975	3758	4447	4476	4412	3000	3893	3484	3527	3589	5029	6096	13
+       0	*	*	*	*	*	*	10580	0	0	
+
+P 14   4709	*	5986	2121	*	5653	*	5048	3567	3064	*	*	3170	4708	4100	3660	4372	3464	6893	5158	14
+       0	*	*	*	*	*	*	10685	0	0	
+
+G 15   6664	*	5147	4265	7193	426	*	*	5797	*	*	4540	*	5450	5541	4768	*	6940	*	6906	15
+       11	7047	*	1585	585	*	*	10735	1000	0	
+
+A 16   4656	*	2913	2217	*	3164	6714	*	3347	5912	6841	5074	*	3385	5987	2792	3960	5795	*	*	16
+       0	*	*	*	*	*	*	10749	0	0	
+
+S 17   4537	5315	3517	4294	6386	7283	6105	*	4264	*	*	3052	3225	4174	4427	2470	2722	4408	*	*	17
+       25	*	5850	*	*	*	*	10770	0	0	
+
+V 18   2067	*	*	6145	4998	5717	7187	3687	6518	3837	4053	*	6225	*	*	6280	4895	1311	*	6930	18
+       0	*	*	*	*	0	*	10799	0	1169	
+
+K 19   6108	*	5017	4191	5844	6630	5525	3481	4301	5080	6387	4007	5081	4822	4318	3244	1811	3541	*	6046	19
+       0	*	*	*	*	*	*	10804	0	0	
+
+L 20   *	*	*	*	3303	*	*	2553	*	695	4869	*	*	6723	*	*	*	3900	*	*	20
+       0	*	*	*	*	*	*	10804	0	0	
+
+S 21   *	*	3790	4798	6049	6884	4715	4815	4826	4256	5031	3958	2685	4477	3300	2783	3189	4488	*	6551	21
+       0	*	*	*	*	*	*	10804	0	0	
+
+C 22   5655	135	*	*	5839	6871	6420	5917	*	*	*	*	*	*	*	6815	*	7327	*	*	22
+       10	7191	*	0	*	*	*	10804	1000	0	
+
+K 23   4380	*	5131	3636	6131	4978	4276	5380	3569	3960	*	3185	4386	4474	3951	2548	3538	4896	6970	7207	23
+       22	6984	7063	2322	322	*	*	10804	1000	0	
+
+A 24   3357	6888	*	6603	2862	6229	6955	3189	5841	2862	*	7055	4476	7091	*	4994	4626	2365	*	2896	24
+       118	4456	4922	695	1387	*	0	10798	1670	1000	
+
+S 25   5297	*	3975	3562	6499	4803	4436	4559	4468	5194	6676	3882	3893	4117	4493	2903	2438	4676	7428	6944	25
+       191	3920	4102	1412	680	751	1300	10752	2026	1563	
+
+G 26   3814	7242	4451	3931	*	1905	6758	5329	4598	4491	5171	3069	5589	3877	5289	3560	4225	6215	*	6492	26
+       113	*	3728	*	*	1280	765	10733	0	2234	
+
+Y 27   4289	7138	4569	4760	3156	4192	4635	7041	4147	4141	5962	4543	4115	3924	4841	2872	3614	4496	6734	4458	27
+       68	*	4447	*	*	208	2896	10667	0	2891	
+
+T 28   4542	6951	3406	4145	6875	5047	6736	5949	3603	4169	*	4087	2502	4470	5424	2883	3295	4695	7430	6614	28
+       226	5771	2984	2664	248	786	1251	10724	1226	1906	
+
+F 29   4590	4827	5310	3493	3775	4835	6721	5333	4224	3362	6984	5478	2759	4795	4940	3473	5245	4108	*	3396	29
+       413	5915	2107	536	1689	2140	371	10657	1113	3577	
+
+T 30   4103	*	2987	4321	5338	3414	5590	*	3379	5321	6249	4232	3590	4762	4144	3424	2920	6193	*	5421	30
+       138	4372	4548	953	1048	3658	119	10362	1464	6153	
+
+N 31   6843	*	2360	3614	*	4197	4179	4549	4332	3866	*	3504	4060	4502	4441	3976	4548	3856	6937	5481	31
+       189	3023	*	645	1471	352	2208	10368	2638	6149	
+
+Y 32   7413	*	4001	4837	3894	4815	5294	3556	5003	3161	5385	5061	3112	4620	5615	3809	3784	3218	*	4100	32
+       111	3911	7003	796	1237	1143	870	10719	2066	2340	
+
+W 33   4173	*	4529	4892	5678	5422	4857	3339	4952	5043	4508	5311	5083	4042	4330	2796	3297	3472	6027	3868	33
+       16	6516	*	0	*	*	0	10755	1079	1845	
+
+I 34   5352	7078	*	*	5016	5950	*	2095	5511	2061	5773	*	*	*	6942	7006	6159	1459	*	6234	34
+       0	*	*	*	*	2640	252	10755	0	1845	
+
+N 35   5044	*	*	3560	3480	5046	4901	4558	4566	4327	6746	4092	*	4102	3897	3052	2851	4562	6793	3425	35
+       24	5896	*	0	*	*	0	10761	1186	1691	
+
+W 36   *	*	*	*	5047	6912	*	5975	6407	5306	*	*	*	*	*	*	*	4551	208	*	36
+       40	*	5205	*	*	*	0	10761	0	1691	
+
+V 37   6896	5858	6025	5372	2376	*	5179	4820	3965	3335	7049	*	*	4552	4886	4474	4190	4572	5848	1874	37
+       48	*	4932	*	*	*	0	10728	0	2176	
+
+K 38   *	6354	*	*	4931	6766	4870	5145	1805	4604	5915	5034	*	3495	2121	5152	5308	4144	4283	5104	38
+       63	7086	4824	1585	585	1971	425	10690	1000	2800	
+
+Q 39   5258	*	2982	4559	7386	3849	5209	6891	4604	4676	5336	4219	6186	2042	4137	3965	4058	3619	7066	6810	39
+       168	7150	3284	0	*	2847	216	10710	1000	2944	
+
+R 40   4408	6293	3511	4204	5820	3705	4821	5054	3024	4732	5129	4379	4134	4626	2938	4181	3889	5800	*	4940	40
+       355	*	2197	*	*	2225	347	10590	0	4317	
+
+P 41   4920	*	3430	3707	4653	4385	6573	4702	3809	4021	*	4015	1919	5007	5445	3334	5252	5481	*	*	41
+       99	4109	6917	1280	766	701	1377	10375	1598	6200	
+
+G 42   4922	*	3329	3896	*	1449	6697	*	4872	6354	*	3484	5683	4644	4181	3580	4179	5145	*	7152	42
+       27	7154	6412	1000	1000	2422	298	10723	1007	3470	
+
+Q 43   3937	*	3984	3964	7100	3351	5369	*	2487	4451	6983	3261	4721	2802	5820	4155	3899	5678	*	*	43
+       104	6850	4044	1585	585	*	0	10668	1000	3222	
+
+G 44   3132	*	3988	3339	5464	3164	5534	4846	5943	4796	*	4076	3023	4446	4191	3244	3931	5799	6757	*	44
+       84	4807	5606	542	1675	1981	421	10607	1420	4178	
+
+L 45   5378	*	5133	4828	5287	6660	6999	3043	5282	2601	4916	5503	2229	5262	3894	4461	4713	3300	6608	*	45
+       0	*	*	0	*	1953	431	10613	1000	3746	
+
+E 46   4968	*	3863	2479	5589	4960	6939	4771	4302	4503	*	4417	5167	3042	3446	3192	4102	4236	*	5717	46
+       131	7905	3601	2585	263	2107	381	10674	1000	3087	
+
+W 47   4738	7068	4249	5105	2941	6153	5883	5016	4545	2654	4627	5616	4433	5414	4240	4212	4323	3604	3947	4470	47
+       13	*	6811	*	*	*	0	10608	0	3901	
+
+I 48   6921	5897	6900	4301	4548	6535	5995	2285	6673	1904	5968	6858	4710	6710	7008	3233	*	2590	*	6403	48
+       648	5945	1532	1001	999	1816	482	10605	1172	4001	
+
+G 49   2442	4809	6189	6394	3248	3062	5332	3513	*	3223	*	6493	*	4636	*	3996	3764	3785	5174	5493	49
+       96	6253	4278	1585	585	5224	39	10051	1101	6797	
+
+N 50   4168	*	*	3775	3626	4798	5189	5336	4005	4792	5168	6515	4654	6118	4108	2993	3516	4672	4507	2673	50
+       0	*	*	*	*	833	1188	10055	0	6944	
+
+I 51   5153	6585	5505	6383	3674	6782	5809	2237	4277	3372	5288	5816	*	5106	4132	5058	4167	2704	6007	3685	51
+       27	*	5736	*	*	*	0	10573	0	4203	
+
+Y 52   4129	*	3625	4808	4720	6072	4609	5072	6029	4063	5672	3860	5126	3758	5302	2816	4306	4076	6805	2734	52
+       461	5936	1960	1712	525	4805	53	10575	1149	4390	
+
+P 53   3278	*	4843	4477	5248	3548	5218	5557	3265	5479	6410	4363	3357	5393	6177	2987	3498	3896	*	4226	53
+       260	*	2601	*	*	2148	369	10106	0	6666	
+
+G 54   4960	6472	3623	4671	5477	2819	4367	4992	4277	4700	6099	3428	4479	4260	6615	2499	3568	6059	*	6503	54
+       91	6046	4440	1585	585	5193	40	10155	1000	6795	
+
+S 55   6309	6221	2786	4276	4551	2838	5515	6253	3484	5483	7288	4146	5342	6416	4579	2848	3058	5389	*	5366	55
+       153	5002	3846	1240	795	2037	403	10091	1327	6971	
+
+S 56   6410	*	3641	5339	*	2026	6589	5267	2966	5375	*	3479	4119	4591	4223	3608	4423	4505	*	4860	56
+       136	5256	3972	2186	358	3292	155	10329	1161	6372	
+
+Y 57   4523	6677	3491	4949	6474	3746	5015	4551	4363	4808	*	4897	5840	4809	3510	2695	3011	3072	*	6663	57
+       0	*	*	2807	222	2868	213	10360	1000	6483	
+
+T 58   5514	*	4884	4824	5552	5151	4680	4127	3082	4746	6498	4458	3592	5560	3724	2708	3296	3209	6868	*	58
+       89	5044	5093	1852	468	3252	160	10450	1271	5951	
+
+H 59   4137	*	3918	2825	4157	6562	4826	5214	4182	3677	*	3364	6596	3601	3993	4076	4193	3793	*	4836	59
+       52	5322	6601	1000	1000	3902	100	10458	1336	5814	
+
+Y 60   4632	5080	5174	4675	3037	3921	5610	5469	5769	4113	*	3883	5607	4010	4005	4283	4224	3200	*	2945	60
+       0	*	*	*	*	1530	613	10456	0	5654	
+
+N 61   3806	*	4159	3585	4952	4158	5305	5070	4189	4818	5104	3598	3685	4299	4164	3280	4083	3830	6554	5910	61
+       7	*	7714	*	*	*	0	10630	0	4320	
+
+E 62   4360	6675	3588	2289	*	3231	4766	6528	5040	5738	6960	3775	2956	5034	*	2741	4496	6801	*	7153	62
+       49	4897	*	1513	623	*	0	10623	1480	4406	
+
+K 63   4688	*	3026	3188	*	2899	6728	5350	4152	5694	*	5044	3618	4142	5721	3000	3484	3586	*	*	63
+       45	7024	5432	2178	360	3993	94	10623	1112	4406	
+
+F 64   5049	*	5306	4873	3235	4361	4745	4145	6277	3099	5926	5054	6906	5273	4123	4315	3884	3271	*	2537	64
+       52	5169	6980	4665	58	5037	45	10630	1527	4519	
+
+K 65   4661	7131	2841	3138	5476	5779	4759	7123	2885	5601	4730	4061	4020	3846	3717	3827	4134	6748	*	5802	65
+       67	4463	*	494	1787	297	2426	10625	1574	4519	
+
+N 66   3822	6518	3042	3387	*	2170	5402	6455	3911	5264	*	3426	4499	4678	4538	3311	5324	7290	*	*	66
+       29	6941	6434	0	*	2383	307	10806	1000	1656	
+
+K 67   6850	*	5424	4437	*	4858	5508	5967	3762	7059	6439	5048	4463	4716	887	4747	4468	5661	*	*	67
+       25	5868	*	0	*	1859	465	10772	1155	1746	
+
+A 68   3053	5938	*	6617	1912	4496	4767	3438	6807	3374	5852	7189	*	*	5398	6360	4445	3330	7274	3368	68
+       12	*	6914	*	*	2312	324	10820	0	1505	
+
+T 69   5392	*	4509	4349	4986	4715	4375	5074	4201	4101	*	4755	7478	3945	3579	2301	2702	5013	6008	5128	69
+       51	5918	5799	0	*	*	0	10816	1129	1533	
+
+L 70   3459	5772	5978	5488	3487	5308	*	3219	4570	2337	4533	6616	*	5102	6801	4413	6145	2515	6053	4375	70
+       33	*	5447	*	*	3039	187	10820	0	1851	
+
+T 71   5016	*	3473	3233	4276	5381	5713	4462	5949	4009	6500	4730	5059	3478	4193	2743	2846	4774	*	7354	71
+       274	7142	2593	1585	585	2093	385	10793	1000	2160	
+
+V 72   4460	6914	4337	4472	3836	2823	6689	5024	3299	4467	*	4783	3624	4564	3240	3686	4789	4490	5733	6598	72
+       63	6754	4897	0	*	4797	53	10635	1011	4520	
+
+D 73   5254	6617	2176	3331	5848	4797	6912	4694	3645	4914	5235	3408	4569	4006	4381	4214	4421	5927	6486	5141	73
+       489	3189	2493	586	1582	983	1017	10627	2397	4796	
+
+T 74   3981	*	4237	3636	6440	3014	4915	5239	3385	4635	6480	3891	3368	4483	4588	3791	4799	3920	*	4780	74
+       61	*	4588	*	*	3790	108	10622	0	5408	
+
+S 75   3494	*	3662	4071	4363	3946	6134	6547	5309	4414	6955	3968	4369	4146	5164	2567	3642	5600	3907	5549	75
+       203	4682	3442	379	2114	1153	862	10556	1486	5548	
+
+S 76   4101	*	3843	3491	*	2755	4638	6733	3421	3944	6534	3594	4773	3499	4379	3723	4379	5117	6998	*	76
+       47	*	4965	0	*	1306	748	10626	1000	4746	
+
+S 77   4135	6415	4183	4291	6564	2405	6743	6117	3913	5397	6666	3514	6594	4472	3637	2741	3065	6707	*	*	77
+       138	6827	3602	0	*	3581	126	10721	1000	3797	
+
+T 78   4248	5698	2630	6045	*	4447	5559	4429	3994	5247	5368	3230	5254	4429	4059	3066	3006	5014	6563	*	78
+       33	*	5456	*	*	1134	878	10618	0	4678	
+
+A 79   2982	4052	*	*	2559	3091	6280	3917	*	3365	5686	5945	6014	6998	7169	3421	5773	4053	5251	3541	79
+       0	*	*	0	*	848	1170	10704	1000	3490	
+
+Y 80   4295	*	5371	4776	5963	7141	6975	5335	4450	4975	5782	3834	4962	4040	4278	1986	2253	5146	*	4979	80
+       41	5141	*	1014	986	634	1492	10777	1326	2118	
+
+M 81   *	5840	*	*	4502	*	*	3038	*	523	6234	*	*	*	*	*	5893	4132	6482	5466	81
+       0	*	*	*	*	*	0	10826	0	1316	
+
+Q 82   4824	*	6034	3509	5051	5609	4817	3935	3336	4394	6144	6063	5582	3814	4112	3328	2391	4044	7242	5205	82
+       0	*	*	2000	415	*	0	10826	1000	1316	
+
+L 83   *	*	7282	*	4989	*	*	996	4822	2021	4622	6673	*	*	*	*	5495	3509	7068	6499	83
+       0	*	*	*	*	*	0	10826	0	1316	
+
+S 84   4495	6835	4801	4490	*	5576	4833	6844	3694	4075	5238	4215	4147	3726	3309	2380	3079	6304	5837	6471	84
+       13	*	6835	*	*	1361	711	10826	0	1316	
+
+S 85   4874	6712	2601	4233	5393	4632	4872	7367	4131	5833	*	2009	4942	4794	3649	3331	5193	7125	*	5122	85
+       14	*	6730	*	*	*	0	10848	0	1299	
+
+L 86   2589	7314	*	7572	5486	6650	*	3752	6481	2400	6848	*	7167	6968	*	5135	3370	1537	5523	*	86
+       0	*	*	*	*	*	0	10853	0	1488	
+
+T 87   4593	*	5902	2939	6005	4710	7089	5539	3462	5302	*	5185	6466	2721	2553	3786	2767	5886	6003	*	87
+       0	*	*	0	*	1072	931	10853	1000	1488	
+
+S 88   3799	*	6393	3312	5985	*	5636	4636	3826	2245	5277	6084	3329	4366	4308	3671	6072	3193	5945	*	88
+       0	*	*	*	*	808	1221	10904	0	1186	
+
+D 89   4407	*	3858	1922	6628	3627	*	*	3930	4456	*	4712	6055	4343	3772	2404	4461	7016	*	*	89
+       10	7243	*	2322	322	*	0	10900	1000	1000	
+
+D 90   *	6524	425	4601	7968	5867	3956	*	6618	6930	*	6296	6693	5600	5412	5578	7371	7412	*	*	90
+       49	*	4913	*	*	*	0	10900	0	1000	
+
+S 91   2643	*	4217	2287	6974	3842	7276	*	*	6769	4722	4553	6713	4505	*	2067	3825	4485	*	*	91
+       14	6655	*	2585	263	2549	270	10839	1000	1683	
+
+A 92   2571	*	5289	5926	*	753	*	*	6690	5764	*	5434	*	6083	5516	3758	7991	5033	*	*	92
+       27	5778	*	1206	820	739	1318	10850	1289	1545	
+
+V 93   6865	5520	3946	3819	6375	5105	6227	3949	3783	3627	4021	4650	*	4718	4403	4656	2544	3022	7212	4898	93
+       14	6719	*	2000	415	*	0	10894	1028	1130	
+
+Y 94   *	6487	*	*	3727	*	5548	*	*	5909	*	*	6886	*	*	6721	*	*	*	222	94
+       9	*	7322	*	*	1143	870	10902	0	1130	
+
+Y 95   5183	5441	*	4739	3731	*	4867	3930	4750	4487	6705	6505	*	4035	3676	4373	2604	3881	4948	2456	95
+       0	*	*	*	*	932	1071	10881	0	1172	
+
+C 96   *	160	*	*	5347	*	*	6085	*	5490	*	*	*	*	6728	*	6704	6867	*	5968	96
+       0	*	*	*	*	*	0	10903	0	1001	
+
+A 97   2827	7295	5860	3683	6271	5259	5479	4004	4539	3917	5444	7416	*	3849	2858	3516	4085	2992	*	5935	97
+       45	*	5027	*	*	*	0	10903	0	1001	
+
+N 98   2376	5931	*	6167	6558	6876	7185	3346	5197	3278	5422	7137	*	6275	5964	3799	5493	1499	*	6055	98
+       125	5032	4249	1777	498	*	0	10799	1421	1698	
+
+K 99   4695	6528	4351	3349	5141	4359	6531	4443	3733	4392	5054	3710	6803	4002	3938	3321	3863	4810	3818	5142	99
+       143	4213	4634	1262	779	*	0	10681	1872	2634	
+
+L 100  4203	*	4288	3431	4885	4350	3107	6126	4608	3701	6686	2676	7162	5451	4567	4237	3385	4581	*	4580	100
+       566	2147	3340	1765	503	3165	171	10614	4168	3248	
+
+G 101  4366	5070	3788	4385	5529	2383	5650	5691	3954	4986	6536	3772	3323	5452	4172	3406	4442	5809	*	4951	101
+       279	5116	2768	1688	536	3610	123	10406	1390	4255	
+
+W 102  3652	6643	3988	4723	5861	2684	6515	5269	5533	3983	*	3346	4958	4717	4865	3737	3830	4885	4554	3465	102
+       167	3736	4871	906	1100	483	1814	10250	2015	5681	
+
+F 103  3709	*	4631	3517	3751	3571	5158	5299	3521	4931	4504	5411	3772	3687	5075	4123	4188	4386	5784	4726	103
+       41	5891	6453	553	1651	872	1141	10657	1155	3020	
+
+P 104  4475	*	3325	3460	5457	3651	6012	4053	4291	3460	5411	3446	3384	3872	4431	4438	5428	5074	8105	5971	104
+       61	5943	5321	1346	721	2473	287	10802	1387	2111	
+
+Y 105  4643	*	*	4059	5618	6835	6976	4271	3867	3198	6929	4601	4209	4229	3993	3648	2844	3099	4550	4813	105
+       58	5356	6050	949	1053	1791	492	10762	1316	2475	
+
+W 106  4074	*	6131	5520	1786	5541	5235	3931	4997	4102	6131	6049	5172	5994	3506	4101	4951	4066	4369	4270	106
+       25	7097	6620	0	*	1843	471	10771	1000	2290	
+
+G 107  4529	*	4656	3338	6073	1638	7174	*	4370	4752	6878	4716	4717	5470	4359	2984	3783	5846	6788	6938	107
+       84	4684	5824	1469	647	1295	755	10778	1617	2160	
+
+Q 108  3883	5969	4648	3665	*	4277	5652	5402	2947	4384	*	3903	2986	3748	5151	2922	4145	5165	*	6266	108
+       95	*	3973	*	*	*	0	10783	0	1916	
+
+G 109  3443	6091	5436	4516	5773	1674	5106	4778	3725	7161	5977	5401	4913	6644	3828	3787	4036	4250	7032	*	109
+       64	5913	5220	3335	151	393	2068	10526	1118	3076	
+
+T 110  3194	7250	5171	5328	5431	7353	4761	3134	4527	3972	6066	5696	5753	5371	5790	4509	1721	3750	*	5167	110
+       21	7169	7109	1585	585	2055	397	10594	1000	1957	
+
+L 111  5279	6929	5989	3079	5049	5841	5992	4383	2998	4487	4759	4968	6259	2890	3838	3158	3558	4721	6016	6172	111
+       0	*	*	*	*	2875	211	10599	0	1826	
+
+V 112  4183	5672	5774	4586	7147	7069	*	3343	4491	1311	*	5973	5419	6757	6699	4062	5647	2732	6812	7045	112
+       24	7048	6812	1000	1000	2485	284	10603	1000	1698	
+
+T 113  4452	*	6898	3827	5371	4968	4397	4040	3757	4166	5926	3928	5960	4385	3886	3744	2270	4337	*	4784	113
+       9	7377	*	2322	322	*	0	10593	1015	1704	
+
+V 114  7059	4868	6312	7031	6992	6041	*	2679	4417	3260	5828	5276	*	5494	*	5958	6106	1092	*	4562	114
+       29	*	5627	*	*	1032	969	10593	0	1704	
+
+S 115  4669	6655	5226	3926	4395	6974	5553	3648	3666	2623	6092	4486	6594	4488	3666	3528	3408	3528	*	*	115
+       589	6743	1618	1765	503	1408	682	10553	1163	1594	
+
+A 116  3333	*	3436	4155	6564	3544	*	4209	3901	3633	6099	5994	4106	5874	3314	3780	3667	4929	6296	4286	116
+       345	2471	4939	1259	781	1666	546	10469	3397	6139	
+
+A 117  2723	7561	3493	4081	*	3622	*	4414	3328	4512	6194	5070	4689	4050	3968	3994	5738	3035	*	6168	117
+       93	4583	5584	490	1796	1889	454	10503	1540	5121	
+
+K 118  3949	*	4245	4295	*	4268	5484	4965	3699	5519	5302	5480	2757	5301	3753	3768	3190	2835	*	6931	118
+       43	5090	*	2949	200	1495	632	10547	1312	4522	
+
+T 119  3846	5722	4253	3842	5252	4840	6849	5826	4281	3211	*	4509	2617	4673	5106	4806	4076	2679	*	5952	119
+       33	*	5462	*	*	641	1479	10627	0	3399	
+
+T 120  3471	6936	7728	3418	3791	4413	5357	5494	5041	6679	7093	4877	3172	5843	4084	2741	3443	3375	6044	5997	120
+       68	4723	6885	2390	305	606	1543	10635	1525	2307	
+
+A 121  2733	5355	4393	4063	5210	5405	*	5620	3036	5623	6046	4416	2049	4770	5541	4152	4790	4524	*	7183	121
+       0	*	*	*	*	2105	382	10698	0	1526	
+
+P 122  4423	*	5583	6717	5180	*	*	4923	5723	4070	7949	*	733	5090	6059	4545	4226	5127	*	6805	122
+       12	*	6908	*	*	*	0	10708	0	1371	
+
+S 123  4530	*	4521	3339	7124	6334	5442	4480	3240	4653	5503	6255	4633	4022	4805	3010	2552	3512	*	5249	123
+       47	5234	7584	1316	741	*	0	10693	1459	1526	
+
+V 124  4401	6517	6686	4237	4488	*	*	2235	7441	2668	6161	6123	4289	4538	5875	5973	4825	1973	*	6215	124
+       37	7085	5819	2153	367	1360	712	10671	1180	1656	
+
+Y 125  5519	7169	6177	3676	4098	6920	5520	4131	4143	3826	6253	6016	4675	4315	4553	3462	2796	3406	5838	3330	125
+       54	*	4778	*	*	2715	238	10714	0	1674	
+
+P 126  4920	*	5876	4016	6679	6264	6858	2582	4652	2923	4952	6071	2946	4373	5228	5053	4135	2703	*	5287	126
+       59	6496	5107	0	*	1769	501	10678	1291	2206	
+
+L 127  5932	4795	6289	7570	3311	4753	6897	3775	3933	2304	4702	4239	5368	3785	5582	4639	3902	3739	6600	4609	127
+       38	5743	7059	1246	790	836	1185	10415	1248	2282	
+
+A 128  4488	6629	5064	5062	6083	4021	5828	5377	3685	3932	6890	4631	2273	4106	5089	2745	3464	4780	*	7692	128
+       91	4229	6946	899	1109	2657	249	10445	2038	1622	
+
+P 129  3921	*	4580	4129	*	4124	*	4409	4223	4674	6333	5313	1930	3859	4583	3116	3968	5444	5782	7197	129
+       0	*	*	*	*	*	0	10500	0	1647	
+
+V 130  4444	6328	4317	4026	6071	4899	4946	5848	3991	5356	6951	4452	3245	4264	4639	2005	3849	4288	5412	*	130
+       49	*	4915	*	*	*	0	10433	0	1647	
+
+C 131  4026	5501	5049	3102	5832	3807	6902	3885	4963	3406	6731	5875	3584	4285	5304	3172	4628	3434	*	4380	131
+       28	6921	6477	0	*	2856	214	10198	1000	2199	
+
+G 132  3656	6225	4465	3553	6661	6198	5960	6098	4951	3436	*	6774	4797	4347	4806	2331	3347	3069	5997	4790	132
+       11	7091	*	2807	222	1379	700	10230	1000	2246	
+
+D 133  3468	*	3369	3062	6998	4790	5531	3823	5973	3431	6762	6084	4263	7376	5459	4006	4083	2170	*	*	133
+       113	3971	6437	1188	833	1544	606	10263	2068	1731	
+
+T 134  4327	*	4928	4074	5072	6187	4700	3125	4081	3386	4929	3733	4997	3639	4703	3800	3790	3737	6723	5642	134
+       116	3698	*	2567	267	1528	614	10279	2171	1688	
+
+S 135  3969	6954	4151	2682	5721	4582	*	4987	3858	3740	*	6161	3557	4813	7010	3247	3854	2805	6450	6859	135
+       157	3968	4662	515	1736	2526	275	10277	1967	1557	
+
+G 136  5912	5289	3999	4153	*	999	4570	7103	6157	6800	*	4382	6925	5975	4985	3583	4330	6571	*	5725	136
+       99	4631	5278	1422	674	2186	358	10256	1591	2125	
+
+S 137  5310	*	3107	2517	6966	2905	5855	5915	3867	5105	*	3438	*	3205	4617	3274	4935	7000	*	5283	137
+       74	*	4314	5170	41	2235	345	10220	1197	2296	
+
+S 138  3893	*	4420	3124	*	6279	5593	6739	3660	6414	5968	3398	3519	4281	6491	2671	2742	4643	5744	6420	138
+       13	6775	*	3322	152	995	1005	10202	1008	2823	
+
+V 139  2761	6590	7333	7019	4940	5209	6865	4074	*	2286	4732	4774	5821	4776	5344	5322	4527	1955	*	5933	139
+       12	6897	*	2807	222	478	1827	10341	1000	1882	
+
+T 140  5274	*	8019	3056	*	5799	*	5006	3585	5939	4464	3732	*	4875	4134	3191	2001	3302	6986	5557	140
+       12	*	6893	*	*	*	0	10366	0	1147	
+
+L 141  4975	*	6834	*	3610	*	*	2846	*	947	5581	*	*	*	7218	7175	6014	2724	*	5767	141
+       49	4915	*	0	*	1600	578	10361	1453	1294	
+
+G 142  4370	7015	4947	4196	5439	5329	5412	4647	4620	3630	4971	4516	5467	4271	4771	2663	2331	4361	*	4958	142
+       0	*	*	*	*	1095	911	10366	0	1147	
+
+C 143  6732	59	*	*	*	6631	*	6999	*	*	*	*	*	*	*	8027	*	6758	*	*	143
+       12	*	6907	1585	585	0	*	10309	1006	1006	
+
+L 144  4690	*	5434	4158	5034	5672	4197	3895	3910	2753	4899	6009	5910	4015	4594	3145	3507	3179	8029	6473	144
+       0	*	*	*	*	*	0	10299	0	1000	
+
+V 145  1810	6738	*	7016	6065	4862	*	3305	*	4255	7100	*	6609	*	*	3194	4293	1945	*	4123	145
+       0	*	*	*	*	*	0	10299	0	1000	
+
+K 146  3978	7027	5501	3411	5946	5392	4602	4928	4404	5468	*	4374	4102	3985	3421	2411	3349	4912	5776	5145	146
+       44	5904	6201	2321	322	0	*	10299	1168	1000	
+
+G 147  3922	6771	3186	4665	*	1441	5050	*	4262	*	*	2699	*	6093	4991	3624	4807	*	*	6945	147
+       58	6814	5039	0	*	1078	926	10283	1315	1167	
+
+Y 148  4311	*	5573	6947	2008	2746	6073	6879	6006	6588	5649	3626	5242	5756	4167	3582	4948	3621	6490	3970	148
+       428	4643	2205	626	1507	*	0	10276	1524	1717	
+
+F 149  4565	4851	*	6712	2903	6272	5755	*	3372	6352	5245	5055	3128	*	4511	2725	5971	4763	*	2178	149
+       18	*	6352	*	*	458	1878	9891	0	5031	
+
+P 150  5154	*	5245	6040	*	*	5295	7016	6782	6337	*	5346	498	5388	4891	6026	4049	6687	*	*	150
+       135	5193	4016	0	*	0	*	10228	1300	2348	
+
+E 151  3798	*	3646	3141	7159	3623	5359	7009	4177	4833	5417	4396	2914	3383	4367	3672	4252	4463	*	*	151
+       196	4085	3872	1221	808	0	*	10253	1822	1822	
+
+P 152  3826	*	3351	3513	*	4329	5154	4851	4966	4199	*	3944	1891	5631	4721	3466	5197	5307	*	6755	152
+       153	6821	3448	0	*	3146	173	10186	1007	2156	
+
+V 153  3037	*	*	5069	5364	*	4734	2632	5602	3105	5348	6073	4575	4173	6789	5157	3567	2286	*	5312	153
+       488	*	1801	*	*	357	2190	10279	0	3385	
+
+T 154  4792	*	4997	3614	5599	6257	6237	5246	3506	5405	6492	2915	5460	3656	3880	3105	2309	6436	*	5460	154
+       67	6475	4870	1000	1000	256	2620	9845	1000	5283	
+
+L 155  *	*	6531	*	2951	*	6694	2348	*	2403	5182	*	5734	*	*	7175	*	1564	5852	4160	155
+       0	*	*	0	*	695	1387	10228	1012	2141	
+
+T 156  6157	*	4502	4296	7076	*	5947	4372	4058	5790	7261	4385	*	3980	3429	2447	2094	4662	*	3771	156
+       7	*	7647	*	*	1639	559	10269	0	1360	
+
+W 157  *	*	*	*	6973	*	*	*	*	4587	*	*	*	*	6759	6924	7091	*	140	5803	157
+       1668	691	3923	1019	981	1727	519	10281	7939	1346	
+
+N 158  5596	*	3423	3752	4926	4533	5290	5904	2233	4438	5899	2843	5784	6513	3586	3988	5211	6814	*	3892	158
+       48	5201	7531	812	1216	2282	332	10198	1425	2288	
+
+S 159  *	*	2421	3543	6538	2030	5904	*	3611	4702	*	3127	5905	*	3618	3603	*	5429	6681	7136	159
+       6	7969	*	0	*	3356	148	10208	1000	2146	
+
+G 160  7111	*	3816	3703	7032	1428	5833	5826	3104	6668	*	3698	5327	4256	4796	4605	4335	5414	*	*	160
+       89	4284	6859	1499	630	2088	387	10215	1687	2026	
+
+S 161  4873	*	3969	2817	*	4065	5876	6729	3438	4109	6853	4557	3360	3492	4022	3989	3327	4009	*	*	161
+       148	6680	3514	1000	1000	3215	164	10195	1006	2062	
+
+L 162  4510	*	4893	3514	4000	5020	*	4241	4632	1998	5741	4449	4406	5151	4182	4750	5541	2885	*	6768	162
+       97	5078	4813	2611	258	*	0	10088	1270	3455	
+
+S 163  6762	*	4971	4214	*	5622	5617	2824	3755	3077	5782	6404	3087	4762	3719	3093	3492	4210	6645	*	163
+       54	6098	5478	1595	580	1968	426	9998	1316	3871	
+
+S 164  4174	*	3702	3378	6316	5713	6738	3860	3705	3282	5327	3820	3629	3889	5809	3374	3515	5983	*	5601	164
+       15	6641	*	0	*	4313	74	10040	1015	3436	
+
+G 165  3639	6631	3176	3324	*	2467	*	7713	6785	4982	*	2730	5703	6765	4489	2714	3701	*	6543	6782	165
+       30	6687	6556	1000	1000	2634	253	10026	1028	3453	
+
+V 166  3472	*	6900	3357	4844	5272	5618	3877	5222	4111	5969	4342	3968	4509	4907	3533	3449	2858	6757	4697	166
+       27	6619	6893	0	*	2699	241	10055	1135	3313	
+
+H 167  4160	6484	5205	3823	5115	4454	4454	4166	4713	5755	4942	3678	3810	3498	4299	3714	3418	4031	*	4310	167
+       55	6770	5133	3041	187	2505	279	10112	1511	3076	
+
+T 168  4941	*	4513	5302	6506	5748	5185	5211	4026	4983	*	2780	5188	3794	4125	2447	2536	4201	*	6862	168
+       72	4366	*	1010	990	2665	248	10129	1631	3184	
+
+F 169  5885	*	5022	5515	3437	5847	4994	3552	4256	4085	5788	3526	4383	6498	4155	2739	3011	4278	*	4399	169
+       12	6863	*	3000	193	2263	337	10153	1000	2854	
+
+P 170  4080	*	6955	3613	5307	3834	6578	4401	5099	2994	6536	*	2931	6577	3954	3672	2420	4511	7178	6613	170
+       26	6771	6838	1585	585	2080	389	10189	1007	2471	
+
+A 171  4542	6560	5329	3259	6803	3558	4957	4302	5340	4462	5277	5605	3610	3666	4286	3061	3310	4155	*	4828	171
+       33	6646	6320	2000	415	2059	396	10198	1000	2240	
+
+V 172  4896	6626	5886	3623	6009	4854	4006	4745	5212	3819	6871	4899	4156	4276	3882	3310	3880	2266	*	5929	172
+       12	6906	*	0	*	3181	168	10196	1131	2164	
+
+L 173  4966	*	4213	4020	5617	3912	4258	4800	4365	2653	4829	3863	4837	3768	3418	4797	4794	4345	*	4544	173
+       226	5264	3074	810	1219	2925	204	10203	1430	2027	
+
+Q 174  5774	6382	3328	3144	*	4143	4898	5175	3304	4303	5637	3991	4263	2675	5698	3880	4002	4993	*	6087	174
+       1172	914	5293	746	1309	301	2408	10017	6646	3595	
+
+S 175  4824	7276	1858	4673	*	3521	*	6678	5273	4727	6760	2526	4408	5756	4493	3025	4464	5533	*	*	175
+       20	7163	7276	0	*	1914	445	10151	1000	2004	
+
+D 176  7082	*	3492	3729	*	1093	5100	*	5231	5997	5625	4672	5767	6768	5020	3081	5753	5470	7850	7201	176
+       114	3891	6890	1936	437	1774	499	10163	2036	1864	
+
+L 177  6554	*	4167	5011	6742	6828	6816	5378	3657	2598	5859	5498	*	4654	4221	2787	1941	4658	*	5085	177
+       145	5881	3672	0	*	*	0	10177	1279	1702	
+
+Y 178  5810	7733	6578	5081	2022	6564	5225	5154	5710	3742	*	6644	4361	6842	5919	5025	4159	5302	7073	1606	178
+       18	*	6365	*	*	1978	423	10257	0	2918	
+
+T 179  3847	6741	4527	4421	4559	5697	4444	5622	5835	5107	3796	4507	6870	5142	4889	2035	2302	5755	*	7712	179
+       41	6520	5874	4585	61	*	0	10050	1006	2699	
+
+L 180  4108	*	*	5192	4798	4650	5678	3482	3982	2915	3707	6665	*	5146	5067	4653	3940	2129	5851	4694	180
+       75	*	4309	*	*	1922	442	10050	0	2923	
+
+S 181  5687	*	6766	6853	4369	5846	5848	5305	5520	5116	5286	3820	5097	5316	3935	2689	2396	2921	4577	3867	181
+       15	6611	*	2807	222	2969	197	10018	1000	3163	
+
+S 182  5688	6595	5158	6039	*	3702	*	*	5057	4373	4551	4772	*	5587	7003	705	4910	5861	*	*	182
+       0	*	*	*	*	2947	200	10044	0	2899	
+
+S 183  5623	*	5205	4869	7485	7052	5087	4310	4858	3533	*	4722	*	3384	3188	2856	2732	3091	5045	5328	183
+       94	4192	6889	1551	602	258	2612	10093	1755	2658	
+
+V 184  4142	*	*	6961	5736	5443	5907	3670	*	724	6888	6702	6764	6803	6539	*	5223	3428	*	5251	184
+       13	6852	*	0	*	510	1747	10201	1000	1298	
+
+T 185  5011	*	5886	3480	*	5776	5206	3408	4243	3770	5759	3633	6570	4400	3887	3066	2708	3884	*	4961	185
+       12	6877	*	1000	1000	*	0	10230	1000	1000	
+
+V 186  5931	6808	*	*	2978	*	6630	1891	*	1996	7039	*	*	6719	5974	7210	*	2041	6917	5247	186
+       23	5996	*	571	1613	*	0	10230	1130	1000	
+
+T 187  4954	6615	4603	4403	6042	5859	5103	5062	3718	4417	6826	3777	3337	5292	3222	3061	2839	3924	*	5961	187
+       13	*	6802	*	*	*	0	10230	0	1000	
+
+S 188  3516	6591	3446	3705	5721	4902	4967	4424	3779	3650	5665	4282	3147	5895	5065	3473	4321	3799	7015	*	188
+       12	*	6875	*	*	1048	954	10199	0	1126	
+
+S 189  3612	6789	5343	2980	6647	4818	4652	6043	5624	4356	*	6879	4776	4505	4779	2381	2670	3137	*	*	189
+       11	*	7092	*	*	*	0	10201	0	1117	
+
+T 190  3650	*	2582	2971	*	4565	4885	*	3913	4477	*	5314	4622	3623	3357	3805	3705	4845	*	6516	190
+       222	*	2808	*	*	1402	686	10200	0	1227	
+
+W 191  3821	6664	5017	3102	5009	5479	5725	6373	4163	2979	5012	6972	4638	4194	3747	4646	4602	4286	2606	*	191
+       693	1601	4266	371	2142	*	0	9986	5269	3499	
+
+P 192  *	*	911	3576	*	*	4730	6626	4374	*	*	3642	4236	4746	4362	4090	6577	*	*	*	192
+       900	1107	*	193	3000	539	1681	9902	5807	4038	
+
+S 193  2789	*	3137	4526	*	2439	4674	6692	5115	*	*	3102	7795	4938	5673	2723	4892	5160	*	4327	193
+       15	6623	*	0	*	2159	366	10160	1012	1970	
+
+Q 194  3681	*	4213	4949	*	1135	5191	7049	3103	5783	5840	6072	*	5225	5929	4237	5867	4188	*	6568	194
+       14	*	6678	*	*	2577	265	10166	0	1729	
+
+S 195  6910	*	4833	3357	7042	5223	6943	3548	3988	4921	4665	3305	4708	5160	3990	3492	2685	3143	7043	*	195
+       11	7017	*	0	*	1380	700	10157	1000	1859	
+
+I 196  *	*	*	7382	2437	*	6581	4013	*	4153	*	*	*	*	*	*	*	3317	7039	804	196
+       9	7382	*	542	1676	2206	352	10184	1152	1481	
+
+T 197  *	*	*	5015	4408	6013	4842	4098	3670	5425	5239	7043	*	4233	4249	3414	1487	4311	6653	4042	197
+       0	*	*	1585	585	1727	519	10190	1000	1346	
+
+C 198  *	42	*	*	*	*	*	6641	*	*	*	*	*	*	*	*	*	5729	*	*	198
+       39	5222	*	0	*	*	0	10191	1288	1197	
+
+N 199  3897	6787	*	3133	6080	*	6761	4625	4106	4398	5450	4769	*	2972	3539	3483	3375	2604	6928	6926	199
+       0	*	*	*	*	*	0	10191	0	1197	
+
+V 200  1599	*	*	6793	5876	7158	*	4289	6546	6651	*	*	*	6908	*	5985	5811	959	*	6838	200
+       37	5322	*	753	1298	*	0	10158	1311	1197	
+
+A 201  5811	*	3506	4351	5659	4580	4032	6477	3729	5363	6799	4223	*	3081	3949	2494	2729	4730	*	*	201
+       8	7545	*	0	*	*	0	10088	1000	1197	
+
+H 202  6520	*	5658	6727	5988	6709	1484	*	5577	*	6577	1417	*	6744	6636	3712	5691	*	*	4155	202
+       15	6634	*	1548	604	1727	519	10056	1135	1346	
+
+P 203  4550	6393	3799	2462	5740	4268	4985	6437	3861	4670	*	5480	3225	3391	3587	3288	4963	6514	7414	6485	203
+       50	4867	*	1354	716	*	0	9907	1405	1197	
+
+A 204  2395	*	4159	6491	5665	2214	5726	5082	5411	4134	5675	4050	5603	4752	6437	2978	4714	4600	*	5428	204
+       0	*	*	*	*	*	0	9876	0	1197	
+
+S 205  4694	*	5436	5290	*	2066	6729	5007	4683	2101	6516	3410	5759	3876	5477	3692	5079	5081	*	6552	205
+       121	4621	4654	1080	924	*	0	9864	1432	1197	
+
+S 206  4736	*	5246	2999	6499	6202	6269	*	4782	*	6563	*	2260	2824	4313	2692	2944	5102	*	6336	206
+       71	4905	6105	399	2048	2813	222	9808	1290	1882	
+
+T 207  2984	*	3721	4238	*	3425	5478	4878	5239	4685	*	4345	4827	3388	5082	3134	2978	4220	*	5272	207
+       35	5381	*	639	1483	1533	611	9647	1470	1976	
+
+K 208  5473	*	4181	3352	*	4697	3817	6166	3204	5058	6397	4221	2745	3406	3707	4178	4280	3834	*	*	208
+       11	7048	*	0	*	1588	584	9660	1000	1599	
+
+V 209  3334	6234	4384	6276	*	6270	*	2990	3582	1971	5651	6356	*	6060	5161	5489	3791	2476	*	*	209
+       0	*	*	*	*	542	1675	9651	0	1354	
+
+D 210  5381	*	3194	3556	*	*	5317	4893	3798	4756	*	3912	*	3985	4771	2817	2259	3820	*	5253	210
+       0	*	*	*	*	*	0	9638	0	1006	
+
+K 211  3576	6251	6330	5959	4511	5281	5796	2785	3640	5107	6217	6150	*	3038	4198	6306	4261	1997	*	6205	211
+       44	6680	5630	2129	374	0	*	9513	1116	1006	
+
+K 212  *	*	6126	3173	5931	*	3624	5219	4199	6237	5809	4075	4178	4567	4566	2566	2110	5171	*	4730	212
+       0	*	*	*	*	1831	476	9500	0	1332	
+
+I 213  5731	*	*	*	2869	*	*	2133	6001	1668	4275	*	5828	5723	*	5001	5911	2915	*	5845	213
+       0	*	*	1000	1000	0	*	9278	1197	1197	
+
+E 214  *	*	3944	2844	*	5694	5620	5617	4574	2922	*	2563	5694	3806	4186	2738	3631	5953	*	*	214
+       44	5055	*	0	*	*	*	9038	1000	0	
+
+P 215  *	4825	5100	*	*	*	*	3529	2749	4837	*	4023	2705	3919	4354	3604	4854	2432	4912	*	215
+       22	6046	*	0	*	*	*	7762	1197	0	
+
+R 216  3431	*	4686	*	*	3653	*	2170	4651	4598	*	*	4202	3558	2828	3000	3634	*	*	*	216
+       0	*	*	*	*	0	*	6963	0	1197	
+
+G 217  2811	*	3593	2412	*	4287	*	*	3311	*	*	4474	4121	4393	*	2120	4197	*	*	*	217
+       85	4136	*	4858	51	*	*	6553	1119	0	
+
+P 218  *	1516	*	3535	*	*	4147	*	*	*	*	*	2063	5769	4225	*	3824	2990	*	*	218
+       104	3841	*	4087	87	*	*	5876	1101	0	
+
+T 219  3958	*	*	*	*	*	*	4191	3664	*	*	*	1533	*	4000	3350	2542	3011	*	*	219
+       0	*	*	*	*	*	*	5426	0	0	
+
+I 220  *	*	1964	*	*	*	*	3350	3736	*	*	*	1947	*	*	2553	5322	3112	*	*	220
+       0	*	*	*	*	*	*	4897	0	0	
+
+K 221  3655	*	*	*	*	*	2705	5322	2475	*	*	3639	1373	*	*	3380	*	*	*	*	221
+       146	*	3380	*	*	*	*	4897	0	0	
+
+P 222  *	*	*	3540	*	*	*	*	*	*	*	*	323	*	*	3128	*	*	*	*	222
+       518	1730	*	2501	280	0	*	4622	1354	1123	
+
+C 223  *	1259	*	*	*	*	*	*	*	*	*	*	*	*	*	2984	1709	2739	*	*	223
+       0	*	*	*	*	*	*	3788	0	0	
+
+P 224  2907	*	*	*	*	*	2739	*	3013	*	*	*	754	*	*	*	*	*	*	*	224
+       223	2806	*	1585	585	*	*	3788	1101	0	
+
+P 225  2907	2739	1906	*	*	*	*	*	*	*	*	*	1628	*	*	*	2984	*	*	*	225
+       0	*	*	*	*	*	*	3788	0	0	
+
+C 226  *	493	*	*	*	*	*	*	*	*	*	*	1789	*	*	*	*	*	*	*	226
+       0	*	*	*	*	*	*	3788	0	0	
+
+K 227  *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	227
+       0	*	*	0	*	*	*	1652	0	0	
+
+//
+�HHsearch 1.5
+NAME  2ff05444e7145a5dd540ec42015fcba1
+FAM   
+FILE  2ff05444e7145a5dd540ec42015fcba1
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:29:31 2013
+LENG  177 match states, 177 columns in multiple alignment
+FILT  110 out of 1146 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.3 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEEEEEECCCCCCHHHHHHHHHHHHHHHHHCCCCCCEEEEEEECCCEEEEECCCCCCCHHHHHHHHHHHHCCCCCCHHHHHHHHHHHHHHHHHCCCCCC
+CCEEEEEEECCCCCCCCCHHHHCCCEEEEEEECCCCCCCCCHHHHHHHHCCCCCCEEEECCCHHHHHHHHHHHHHHC
+>ss_conf PSIPRED confidence values
+9499999788888806999999999999996498885899999889026986477767899999999975505898759999999999987554058889
+96299999179988885758887988999997884334248999999966999853997199999999999999649
+>Consensus
+xDvxfllDxSxSmxxxxxxxxxxxixxxxxxlxxxxxxvxvixfxxxxxxxxxlxxxxxxxxxxxxxxxlxxxxgxtxxxxalxxaxxxxxxxxxxxrxx
+xxxxiilxTdGxxxxxxxxxxxxxixvxxigxgxxxxxxxxxxxLxxiaxxxxxxxxfxxxxxxxLxxxxxxixxxi
+>2ff05444e7145a5dd540ec42015fcba1
+VDLVFLFDGSMSLQPDEFQKILDFMKDVMKKCSNTSYQFAAVQFSTSYKTEFDFSDYVKRKDPDALLKHVKHMLLLTNTFGAINYVATEVFREELGARPD
+ATKVLIIITDGEATDSGNIDAAKDIIRYIIGIGKHFQTKESQETLHKFASKPASEFVKILDTFEKLKDLCTELQKKI
+>gi|260837234|ref|XP_002613610.1| hypothetical protein BRAFLDRAFT_127098 [Branchiostoma floridae]gi|229298996|gb|EEN69619.1| hypothetical protein BRAFLDRAFT_127098 [Branchiostoma floridae]
+---LYPYGSySGGYPPSNMEKTMG-PGNYRVPLvaGGETITIGSIKKTEETSPseslsaekQAVVAAQDTRECTMSSITiySEERLRGTKKTYSGNGWLP
+RDPSW-----VVDSAGPAWVDSNGVTWEDV-------VTVDNVQSGDQ------RQVFGGFQGKARYWKLVITQTYTGWQPYVRE-----
+>gi|21675085|ref|NP_663150.1| hypothetical protein CT2279 [Chlorobium tepidum TLS]gi|21648325|gb|AAM73492.1| conserved hypothetical protein [Chlorobium tepidum TLS]
+IDIIFM-------ldisnsmLardtaPDRLTH-------aktellqISRRL--GDGRKALLLFAGTPVVQCPLTDDE--E-----dfeilLD-mA-apeL
+ITTqGTD------yrrafdA-aLKL-TNSGG-ELSSNETV------lvlasdGE--dhg-NDLGDIatamkTRG------vhlhviGVG--gvqpvpipm
+qggpkrdqqgkiVLTSFKPEPLASLIKTAKG-KFYYSRPDAp-vHDAVADDI----
+>gi|317505805|ref|ZP_07963650.1| von Willebrand factor type A domain-containing protein [Segniliparus rugosus ATCC BAA-974]gi|316255887|gb|EFV15112.1| von Willebrand factor type A domain-containing protein [Segniliparus rugosus ATCC BAA-974]
+--VILLLDISESMRatdvkPSRVEAARAAAIKFVDGM-APTVQLGVVTFAGNAQPLVRPSTD--HETAKKVIDQMIrpdKLEKQTATGEGIYTALQQIEt
+iAGalGGKNHA-PPARIVLVSDGKETVpdDLNAprgaYaaartaKEKHVPVCTVAFGTKAGkitldnqvdeVPVDLESLKKISDLSNSPgnscRFFPAES
+QGELAQIYQSLNEDI
+>gi|341895816|gb|EGT51751.1| hypothetical protein CAEBREN_12317 [Caenorhabditis brenneri]
+LDIVLVIDNTKIMQMDGVYQTIQLMFGASVRIGtdyqdPRSTRVAIVTYNEKATVVADFNKFKSLKQLNDELEMLNGTEKsdsfSAYMDLGLQSA-YDLI
+QDVNNANDrrRYKKLIILFTSNYAYKNKRPdvlAltiRQSGVDIATVYTGTGTT---RNTQFQlTfVGNYN---MNFHMADATpIVKELQGAT----
+>gi|227541544|ref|ZP_03971593.1| von Willebrand factor, type A [Corynebacterium glucuronolyticum ATCC 51866]gi|227182700|gb|EEI63672.1| von Willebrand factor, type A [Corynebacterium glucuronolyticum ATCC 51866]
+AHEMFi-aVDTSSSMEGQPLERTKEILAELSKGMfEssygeyafRPGDKISffg---LTPQS----sgpSYVAYDP--EDPDSYRELEDfangLntGPKI
+STCETLIRGLLGA-----D-GMGNAVPAVIFTTGTDEDDPECEnfesnvdslpEeSGPHPAYIFLLDPA-----HTEWMDTLAEITG-GQVFDATT----
+-----------
+>gi|332308254|ref|YP_004436105.1| LPXTG-motif cell wall anchor domain protein [Glaciecola agarilytica 4H-3-7+YE-5]gi|332175583|gb|AEE24837.1| LPXTG-motif cell wall anchor domain protein [Glaciecola sp. 4H-3-7+YE-5]
+-EVVFLLDTSGSMAGESIVQAKRAVDFALTQLHPED-SVNVIEFNDAPQALWNLAMPATANNIQRARNWVASLSanGGTEMAPALSMALHKtNLEQqniN
+EGSPVQLRQV-VFITDGSVSNEDALMSLienqlADSRLFTIGIGSAP----NSYFMTQAAQAGRGTFTY-IGDINQVQQKMTELFNKL
+>gi|297283897|ref|XP_001104925.2| PREDICTED: integrin alpha-D-like [Macaca mulatta]
+----------------------------------------------------------------------------------------------------
+--------------LAASTNRS-----WLLACGP------TLHRVCGENSYSKGSCLLLGSHWEIIQTVPDALPEcphqemdIV
+>gi|311103581|ref|YP_003976434.1| von Willebrand factor type A domain-containing protein 1 [Achromobacter xylosoxidans A8]gi|310758270|gb|ADP13719.1| von Willebrand factor type A domain protein 1 [Achromobacter xylosoxidans A8]
+--T---------lvlldlsasA---ndlAsdagttvLDLEKQAAMLLAQATSGEGDRIAVHGFCSDTRAAVyyyRLLEPGAPVA-TALG-RIGAAQARys
+TRLGAALRHAGGLA-----LLVPGERRAIIVVTDGEPSDVDahdprylvddareavLEL----rgrgVSVHCVALDAK-----AEPQLRAMFGF---RGY
+RIVTNPA-aLPQALVRV----
+>gi|156404021|ref|XP_001640206.1| predicted protein [Nematostella vectensis]gi|156227339|gb|EDO48143.1| predicted protein [Nematostella vectensis]
+IDIVFVLSASSMKSSTTFSLMQNCILKIGSKFGVYTFHYSVILYGSSSVKKFDFNtAFPYREALIEESNNLVKENGSSAITEALSFARTVLNDASA--RS
+NVRRGVAVIFDKATGKTVqqlqsaaRPLHDEGIIVVASGVGPE----VTKEEARAMTSRR--NDATHVNDTYQPGPLGDHIVRRI
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+V 1    2347	*	*	*	4932	*	*	2822	*	2186	4105	*	6052	*	4239	6086	6298	2250	*	4450	1
+       0	*	*	*	*	*	*	8772	0	0	
+
+D 2    *	*	574	3158	*	6353	4339	*	*	*	*	3471	*	5034	6360	6553	6483	*	*	*	2
+       18	*	6353	*	*	*	*	9165	0	0	
+
+L 3    5916	6868	*	6350	6664	*	6504	1881	*	2003	4874	*	*	*	*	*	4778	1551	*	6808	3
+       0	*	*	*	*	0	*	9474	0	1036	
+
+V 4    3221	4386	*	*	5335	4825	*	3085	*	2914	4457	6511	*	*	*	5732	3775	1790	5681	3693	4
+       0	*	*	*	*	*	*	9593	0	0	
+
+F 5    6433	6642	*	*	906	*	*	2911	*	2259	5869	*	*	*	*	*	*	3876	*	5814	5
+       17	6423	*	0	*	*	*	9593	1051	0	
+
+L 6    3549	6284	*	*	*	6469	*	2909	*	1161	*	6505	5784	*	*	6399	6543	1953	*	*	6
+       9	*	7381	0	*	0	*	9554	1051	1051	
+
+F 7    5886	*	*	*	5055	*	*	2417	*	1288	4866	6407	6604	*	*	*	*	1875	*	5197	7
+       0	*	*	*	*	*	0	9590	0	1020	
+
+D 8    *	*	264	4412	*	5273	5201	*	6542	*	*	6654	5425	6641	*	6252	*	*	*	*	8
+       0	*	*	*	*	*	0	9590	0	1020	
+
+G 9    3270	5705	5492	4740	6685	3489	5668	4053	5799	4509	6825	4313	*	4651	3997	3113	2747	2900	*	5886	9
+       41	5811	6654	0	*	*	0	9590	1182	1020	
+
+S 10   6537	6671	6503	*	*	*	6374	*	*	*	*	6542	*	*	*	253	3234	*	*	*	10
+       0	*	*	*	*	1088	917	9578	0	1204	
+
+M 11   3667	*	3394	3995	*	1624	5577	6544	5085	6390	7003	4619	6641	4795	5032	2597	4483	6554	6689	6563	11
+       29	*	5628	*	*	*	0	9590	0	1020	
+
+S 12   4878	*	4568	*	6619	3864	6687	*	4473	*	5502	5164	*	6656	5766	612	5542	5700	*	5866	12
+       16	*	6535	*	*	1784	495	9561	0	1398	
+
+L 13   4408	*	6388	*	7033	*	*	2824	6282	3323	1266	6612	*	5816	*	5819	5015	2565	*	5788	13
+       64	4808	7013	3144	173	1574	591	9567	1686	1423	
+
+Q 14   3169	6831	5058	4561	*	2432	*	6773	4402	5083	*	3633	4740	4324	3725	2442	3332	6722	*	*	14
+       252	4045	3324	2017	409	*	0	9575	2093	1410	
+
+P 15   3959	*	3623	2635	6550	2438	5408	6932	3904	5768	6515	3606	3267	5692	5504	3161	5687	6392	*	*	15
+       120	4895	4442	1872	460	595	1565	9439	1339	3056	
+
+D 16   3404	*	2930	2486	*	5371	5504	5619	3150	5002	6490	4189	5797	4591	4571	2915	4195	5535	*	6768	16
+       96	4376	5972	2590	262	972	1029	9408	1790	2343	
+
+E 17   3720	*	2723	3521	*	3654	*	6952	3153	6375	5492	2978	5522	5625	3436	3987	4005	5596	6494	4926	17
+       41	5153	*	1609	573	672	1425	9439	1331	1916	
+
+F 18   5614	*	*	*	1631	6520	*	3251	*	2683	4684	*	5726	6745	5274	5121	*	4049	2788	4104	18
+       13	6793	*	0	*	1009	991	9567	1000	1237	
+
+Q 19   3270	*	2819	2661	*	4504	4855	5765	3965	5234	6844	4422	7091	3487	4266	3020	5293	4798	*	5619	19
+       93	4006	*	2874	212	*	0	9589	2020	1027	
+
+K 20   3087	*	3145	4131	6840	4648	5229	4362	3158	2776	5813	5562	*	3677	3773	4122	4521	5098	*	6677	20
+       33	5917	7420	2749	232	0	*	9589	1396	1027	
+
+I 21   2273	*	*	5036	4594	*	6640	3866	6303	2821	3651	*	*	4713	*	4024	3120	2364	*	*	21
+       16	*	6544	*	*	*	0	9606	0	1020	
+
+L 22   6438	*	6670	5820	*	*	*	4509	1586	3624	5206	4467	*	3580	2338	4558	5674	4357	6441	5224	22
+       14	*	6659	*	*	1024	977	9478	0	1220	
+
+D 23   2903	*	3324	3547	6865	3803	5267	*	2826	6897	6735	4278	5954	3222	3118	4203	4707	4911	*	*	23
+       26	*	5811	*	*	*	0	9591	0	1217	
+
+F 24   2177	5612	5117	6750	1579	5650	*	4596	6506	4113	5490	5571	*	*	6288	3782	4410	4361	5012	*	24
+       0	*	*	*	*	449	1903	9505	0	1574	
+
+M 25   2897	6912	*	*	3626	6966	*	2155	*	2376	3934	*	5820	*	*	*	4571	2202	*	6855	25
+       0	*	*	*	*	*	0	9606	0	1020	
+
+K 26   3634	6841	4505	2812	5675	4426	5263	4693	3765	3792	5826	4101	*	3624	3658	3697	4657	3655	*	6026	26
+       0	*	*	*	*	*	0	9606	0	1020	
+
+D 27   3480	*	2792	2839	4862	3943	6914	*	4243	4531	5597	3577	6564	4827	4184	2976	3989	5208	*	*	27
+       0	*	*	2807	222	0	*	9606	1020	1020	
+
+V 28   3445	*	*	*	2877	*	*	2488	6332	1978	3708	*	*	*	*	6905	4175	2712	*	4848	28
+       0	*	*	*	*	*	*	9609	0	0	
+
+M 29   3381	*	*	*	5498	5369	6422	2454	*	2153	3701	6483	*	*	4793	4506	4733	2226	*	5707	29
+       44	6447	5742	1585	585	*	*	9609	1039	0	
+
+K 30   6829	*	3529	3172	*	4670	5269	6741	3288	4322	6833	4080	4504	3283	3514	2925	3556	5106	6884	6625	30
+       17	6443	*	1585	585	1068	935	9472	1008	1232	
+
+K 31   3729	5702	4527	3834	6425	3766	4517	4805	3584	4258	6806	4367	4756	3526	3351	2849	4509	6652	*	5662	31
+       80	4451	6914	1735	515	*	0	9605	1746	1033	
+
+C 32   6522	4724	*	*	1896	*	*	2933	*	1438	4183	5970	*	5530	*	6897	*	4031	*	5623	32
+       556	1884	4358	1366	708	1037	964	9612	5002	1241	
+
+S 33   5152	*	2855	4350	6879	2112	5571	5895	6681	6958	6567	3704	4996	4196	4491	2338	5148	5206	6863	6677	33
+       430	2121	5163	1841	472	765	1281	9488	4400	2094	
+
+N 34   4857	*	2971	2951	6451	3992	6448	5711	3987	5606	*	3961	1963	4454	4546	4064	*	4984	*	5663	34
+       275	2608	6711	1044	957	0	*	9540	3681	1849	
+
+T 35   3980	*	2329	2945	*	4515	5704	6784	3913	5681	5068	3824	3704	5177	5473	3281	3784	4858	*	6314	35
+       12	*	6927	*	*	0	*	9610	0	1000	
+
+S 36   3917	6736	3377	4044	6576	2730	4534	*	3070	4139	5717	3554	6787	4847	5624	3014	4101	6580	7181	5656	36
+       65	6661	4870	1000	1000	0	*	9622	1016	1005	
+
+Y 37   3324	*	3411	5617	4544	5083	*	2677	*	3525	6726	6769	6706	4401	6513	4134	2936	2629	6600	5378	37
+       52	6805	5256	1000	1000	0	*	9597	1000	1619	
+
+Q 38   4855	*	4813	4831	6801	*	3903	*	3276	5236	6957	4489	6871	2903	1532	4241	4629	5556	*	4877	38
+       0	*	*	*	*	0	*	9614	0	1337	
+
+F 39   4889	*	*	*	2293	*	*	2276	*	3138	4941	*	*	*	7486	6400	5715	1662	*	4128	39
+       13	*	6819	*	*	*	*	9518	0	0	
+
+A 40   1961	5115	5475	5621	6945	1811	*	*	*	6419	6720	3945	*	*	6002	2255	4373	*	*	5720	40
+       17	6447	*	1585	585	*	0	9617	1051	1000	
+
+A 41   4379	*	*	*	3847	*	*	2111	*	1946	4369	*	*	*	*	5059	*	1675	*	*	41
+       24	5923	*	3585	126	1184	837	9579	1158	1236	
+
+V 42   3826	*	*	*	4388	5626	*	1868	*	2797	4730	5569	*	6682	6480	5296	4992	1908	5566	5675	42
+       0	*	*	*	*	*	0	9583	0	1051	
+
+Q 43   3952	*	5884	4134	5277	3558	5959	4752	4464	3543	4713	4444	*	2974	5145	3077	2602	5264	6645	7023	43
+       0	*	*	*	*	0	*	9583	0	1051	
+
+F 44   *	*	*	*	1094	*	5098	6782	5807	5642	*	*	*	*	*	5131	*	4994	*	1338	44
+       0	*	*	*	*	*	*	9518	0	0	
+
+S 45   3187	5848	4768	*	*	2302	5513	*	6627	6768	*	2783	6086	*	4813	1609	4129	*	*	6415	45
+       11	7042	*	3170	170	*	*	9518	1006	0	
+
+T 46   4528	6854	2730	3469	6400	3627	4810	*	4858	*	5557	3289	4989	5019	4362	2796	2942	5747	6931	6858	46
+       46	5003	*	2411	300	*	*	9518	1388	0	
+
+S 47   4376	6400	3749	2810	6009	3548	5847	4649	3614	6689	*	3682	5578	3746	3811	3325	3446	6750	6768	5736	47
+       129	3546	*	2075	391	*	*	9518	2427	0	
+
+Y 48   2005	*	6907	*	4760	4378	6653	5349	5874	6497	*	5312	3156	*	6858	3227	3412	2342	*	4294	48
+       47	5620	6416	563	1630	*	*	9518	1196	0	
+
+K 49   4378	6537	4174	3474	6525	5669	3603	5266	3137	4883	6900	4596	4732	3635	3008	3541	3868	4406	*	5999	49
+       0	*	*	*	*	*	0	9583	0	1051	
+
+T 50   3913	*	5230	3636	5643	5159	6887	4064	4286	3841	4888	5499	3384	5106	4492	5257	2951	2695	4206	*	50
+       174	3393	5765	1748	510	*	0	9583	2600	1051	
+
+E 51   5458	6063	3965	3176	5313	4517	5175	3432	5055	3208	6627	5922	5560	3940	5115	4889	4652	2276	*	4706	51
+       57	5193	6463	2135	373	*	0	9453	1396	1397	
+
+F 52   3401	7419	6635	*	2277	4980	5716	2804	5968	3001	4485	*	6893	4731	*	4337	5300	3112	5682	4392	52
+       51	5851	5833	1306	748	827	1197	9428	1373	1604	
+
+D 53   3723	7003	3077	4584	6583	3597	5119	6871	3977	5291	6845	4138	2630	4446	4797	3171	4271	4551	*	5475	53
+       32	6412	6613	3700	115	1838	474	9481	1052	1491	
+
+F 54   5729	5889	7099	5069	2472	6598	*	3956	6502	1376	5746	*	4324	4759	6534	5723	5526	3842	*	4344	54
+       28	5709	*	1904	448	*	0	9586	1168	1460	
+
+S 55   3522	*	3799	5772	*	4747	5210	6507	4178	5421	6534	2875	5688	4258	3184	3146	2696	5011	6863	4909	55
+       121	3843	6502	1192	830	925	1079	9586	2082	1460	
+
+D 56   3825	*	2823	3478	6444	3576	5681	*	4397	4616	6832	3434	4436	3811	4158	3647	3399	5699	5937	6606	56
+       38	5979	6617	1309	746	*	0	9482	1162	1337	
+
+Y 57   4319	*	3212	6965	2638	6382	4128	3723	6692	3250	*	4629	4042	4767	5010	4365	5262	5090	5836	3020	57
+       76	*	4287	*	*	1259	781	9464	0	1543	
+
+V 58   4098	6623	3298	4120	5131	5191	5566	4610	2949	4970	5334	3450	4444	5323	4455	3387	3929	4739	*	4025	58
+       310	5810	2508	555	1646	*	0	9496	1142	2260	
+
+K 59   4817	5602	2479	3766	6517	*	6307	*	5452	*	*	2718	5325	4810	5183	2044	2874	*	*	5291	59
+       82	5252	5111	599	1556	1431	668	9226	1190	4799	
+
+R 60   4140	*	3459	5141	6307	5645	5620	3986	2572	4385	6615	4067	4831	4022	3016	3621	4165	4261	*	6317	60
+       178	4606	3740	1017	983	382	2102	9208	1554	3881	
+
+K 61   3284	*	3013	2621	6636	*	*	6365	3642	6197	5058	4266	4054	4914	4610	3010	3534	4665	6763	5676	61
+       66	*	4475	*	*	1448	659	9442	0	2799	
+
+D 62   2923	5052	3167	2803	5358	4090	4286	*	4379	5178	*	3649	6716	3659	4054	4555	3455	6505	*	*	62
+       59	6666	5041	2807	222	2046	400	9390	1000	2923	
+
+P 63   4391	*	6279	*	3117	6481	*	2748	6672	1957	4152	6399	4595	*	4329	*	4756	2635	6527	5120	63
+       0	*	*	*	*	575	1605	9414	0	2907	
+
+D 64   3865	*	3606	4411	6550	5497	5868	4070	2823	3585	4697	4397	5414	3137	3168	3875	4510	6626	*	6437	64
+       29	5648	*	498	1776	*	0	9486	1196	1557	
+
+A 65   3033	*	3016	3159	6503	4554	5635	4974	4036	5090	5857	4351	*	4237	3477	2958	4212	5795	5926	5636	65
+       12	6894	*	4392	70	1060	942	9486	1000	1557	
+
+L 66   2174	6902	5292	5028	4952	4542	6521	3203	4182	2952	5071	6553	*	4778	5822	4067	4974	3156	5867	5679	66
+       40	5208	*	1452	656	0	*	9606	1578	1206	
+
+L 67   4416	5688	6564	*	3588	6519	*	2040	5889	1884	6776	5588	*	6323	5382	4628	5249	2800	6654	6440	67
+       29	6713	6564	2585	263	0	*	9588	1000	1224	
+
+K 68   4106	*	2639	3753	6469	4179	6876	6606	3588	*	*	2718	6934	3515	3770	3132	4007	6655	5395	6988	68
+       35	5790	7472	1000	1000	*	0	9493	1182	1013	
+
+H 69   3578	*	3911	3514	5748	4444	5270	*	3911	*	5280	2939	*	3584	3137	2803	4018	5718	6868	5673	69
+       13	6837	*	0	*	977	1024	9491	1217	1220	
+
+V 70   4303	*	*	5171	4078	6458	6750	2009	6839	1557	3991	*	*	*	*	6884	4811	3288	*	4820	70
+       77	4437	7472	1980	422	*	0	9493	1701	1013	
+
+K 71   4023	*	4748	3191	5594	5135	5276	5716	3044	5248	5725	4151	3546	3799	2930	3634	3889	4705	*	*	71
+       86	5325	4927	1470	646	977	1024	9491	1535	1220	
+
+H 72   4520	5558	3417	4727	3802	5690	5712	4997	3619	4975	*	4775	3173	3255	4191	4377	4775	5063	5831	3182	72
+       334	2728	4163	2029	406	0	*	9463	3453	1737	
+
+M 73   3254	*	4746	3282	6757	5706	*	3048	3738	2545	3572	5228	4457	5554	5634	3552	4463	5555	*	6660	73
+       218	3598	4115	934	1069	240	2707	9600	2275	1914	
+
+L 74   4639	*	3848	4278	*	1934	6593	6725	3659	5725	6973	3583	4393	5519	3541	2957	5257	4404	*	6588	74
+       259	2603	*	1261	779	0	*	9530	3709	2049	
+
+L 75   3920	*	5152	5710	6849	1136	5651	*	4540	5808	6708	*	5416	4352	4669	3298	3814	*	5118	5681	75
+       90	4050	*	2293	329	*	*	9518	2118	0	
+
+L 76   3836	6942	4442	4196	5121	1663	5726	5944	4485	3641	5907	4198	4646	5981	6627	3911	4045	5967	5144	6882	76
+       159	3258	*	1125	885	*	*	9518	2696	0	
+
+T 77   3475	6609	6558	5734	*	5211	*	5591	5250	5117	*	3960	4397	5627	4772	3157	1133	5006	*	*	77
+       0	*	*	*	*	*	*	9518	0	0	
+
+N 78   3504	6940	4062	5395	5852	5716	4760	5068	4535	6774	6907	1866	3383	7000	3846	3390	7000	6855	6664	3521	78
+       8	*	7486	*	*	*	*	9518	0	0	
+
+T 79   4575	*	6858	6676	5760	5875	*	2344	*	2397	3332	6428	6546	6448	*	4022	2382	3318	*	5033	79
+       0	*	*	*	*	*	0	9619	0	1020	
+
+F 80   2766	4765	3984	5132	5161	1467	6033	5767	6920	4435	*	5503	5895	6825	6557	4314	4671	5783	*	3631	80
+       12	*	6920	*	*	*	0	9619	0	1020	
+
+G 81   2802	*	3647	2891	6833	4846	4423	6946	3452	4818	*	5134	5369	5574	3938	3094	3185	5043	*	5604	81
+       0	*	*	*	*	1187	834	9615	0	1182	
+
+A 82   1085	*	*	*	6789	1891	*	*	*	5862	5878	6428	6740	5594	5193	4664	5559	3535	*	*	82
+       0	*	*	*	*	*	0	9619	0	1020	
+
+I 83   5589	5376	*	*	4201	*	*	2385	*	907	3892	5823	*	*	6898	*	*	3769	*	6738	83
+       14	*	6676	*	*	*	0	9619	0	1020	
+
+N 84   4695	*	4928	2471	*	5113	6752	5125	3160	3364	4961	4036	*	3475	3429	3912	4124	6635	5842	4464	84
+       51	4846	*	1878	458	1024	976	9599	1719	1233	
+
+Y 85   3659	6923	4842	3937	3904	5300	4048	6317	3425	3799	5287	5199	*	4192	4192	5010	3717	4236	4079	3311	85
+       8	*	7442	*	*	*	0	9568	0	1432	
+
+V 86   1225	5572	*	5575	*	3309	*	3322	*	3911	5239	6489	6637	*	*	4563	4605	2923	*	*	86
+       60	*	4619	0	*	429	1959	9565	1222	1629	
+
+A 87   2658	6453	*	6374	4810	6741	4087	4226	3607	2169	5369	5861	5739	5599	3678	4511	5841	3857	6656	4125	87
+       134	6905	3635	0	*	340	2251	9544	1033	1815	
+
+T 88   5631	6827	2828	2848	4768	4665	4669	*	3752	4887	*	3530	6958	3277	3239	3886	3774	*	6357	6478	88
+       43	6800	5615	868	1145	180	3089	9417	1376	2533	
+
+E 89   4241	*	4014	3079	4606	5120	6446	*	3331	5078	4585	4107	5154	2862	5050	4432	4123	3535	6528	4051	89
+       45	6835	5493	0	*	1627	565	9589	1002	1383	
+
+V 90   4338	*	6753	*	3366	4528	6873	2896	*	2024	3201	6787	4703	*	*	5017	*	2911	*	3440	90
+       173	*	3144	*	*	1422	674	9591	0	1765	
+
+F 91   *	*	4413	4098	1991	5613	*	3801	5692	3142	5291	5379	*	4228	4974	3763	3341	3916	*	4473	91
+       57	5140	6577	1249	788	2514	278	9315	1323	3405	
+
+R 92   4573	6870	3624	3538	*	3450	4669	*	3949	3663	4888	5389	4519	4701	3712	3130	3173	5101	5062	7036	92
+       121	6612	3834	0	*	3879	102	9314	1000	3147	
+
+E 93   3493	*	4318	3474	5584	4614	4659	5307	3742	4379	5546	6590	3580	3448	3936	2893	4059	5651	6334	5482	93
+       179	4288	3932	891	1118	1761	505	9236	1655	3961	
+
+E 94   3184	6267	3922	3764	*	4233	6443	4447	3768	3949	6729	3713	6666	3404	3908	3203	3793	5310	*	5255	94
+       181	3959	4222	1262	779	4487	66	9162	1833	3976	
+
+L 95   3090	6792	5028	4425	4574	4079	4885	6959	3076	4076	5280	3080	5506	4095	4191	3524	4388	4962	*	5088	95
+       312	4997	2616	1887	455	1842	472	9305	1417	4442	
+
+G 96   3364	*	4722	4390	*	1192	*	*	3995	4632	6492	3857	5220	5378	5544	3508	5254	6641	*	*	96
+       214	3880	3840	2746	233	1572	592	9069	1777	5243	
+
+A 97   2847	6064	3201	5491	5495	2658	6141	*	4200	4422	4886	4544	4102	5590	4449	3613	4634	5231	4694	5030	97
+       56	6044	5461	1000	1000	1156	859	9045	1015	4700	
+
+R 98   5270	*	4546	5014	5085	4207	6819	5712	4328	6221	6734	5161	6626	5467	1008	4860	3804	5653	5519	6560	98
+       179	3484	5186	1045	957	2480	285	9427	2286	3478	
+
+P 99   4044	*	4243	3651	5687	6270	*	5143	4231	6490	5297	4098	1843	4532	3910	3084	5523	4367	*	5539	99
+       130	3873	5793	2216	350	1007	993	9452	2064	3441	
+
+D 100  4622	*	2888	3156	*	2435	5420	6720	4789	6432	6487	2293	5478	4605	5946	4514	3521	6514	6669	*	100
+       81	4831	5705	1810	484	752	1299	9430	1377	2545	
+
+A 101  2789	5764	4827	4472	5520	3968	4779	4627	6606	5730	6981	4217	4351	5050	4077	3248	4543	2430	*	5003	101
+       100	4339	5853	1449	658	292	2449	9452	1698	1954	
+
+T 102  3127	*	5573	4484	*	7140	6748	6886	3371	4608	*	3709	1897	4653	3020	4060	4778	4237	*	*	102
+       0	*	*	*	*	*	0	9518	0	1351	
+
+K 103  5229	*	5719	*	*	3581	3469	4902	2208	5070	6452	3467	4566	4419	2606	3577	5711	4544	*	*	103
+       41	5150	*	1987	419	738	1320	9518	1384	1351	
+
+V 104  3451	*	*	*	4086	6387	5052	3056	*	3053	5909	5132	5096	6707	3981	5139	3660	1919	*	4389	104
+       24	*	5947	*	*	*	0	9540	0	1030	
+
+L 105  3409	6492	*	*	5663	6630	*	1865	*	2464	3558	*	*	*	*	*	4466	1841	*	*	105
+       12	*	6915	*	*	595	1566	9526	0	1420	
+
+I 106  6389	*	*	*	3209	*	*	1470	*	3443	4045	*	*	6547	*	*	*	1757	5838	4564	106
+       0	*	*	*	*	1247	789	9545	0	1171	
+
+I 107  4906	*	*	*	4407	*	*	3021	*	1224	5214	5599	*	*	*	*	7156	1818	*	5061	107
+       0	*	*	*	*	*	0	9547	0	1020	
+
+I 108  4442	*	5846	*	2700	*	6359	2146	*	1811	3768	*	*	*	*	*	6639	2706	*	5448	108
+       22	*	6023	*	*	*	0	9547	0	1020	
+
+T 109  3794	*	*	*	6382	5686	*	6508	6836	6597	7099	*	*	*	*	2291	651	5811	*	*	109
+       15	6635	*	2585	263	*	0	9436	1017	1360	
+
+D 110  4860	6836	689	5066	*	5773	6786	*	6457	*	6524	4442	6508	6585	6643	3098	4570	6580	*	6615	110
+       16	6470	*	1820	481	1413	680	9436	1222	1360	
+
+G 111  3598	*	5444	5512	*	480	*	*	5499	*	*	5612	*	*	*	3840	4924	6639	*	*	111
+       18	6317	*	0	*	*	0	9448	1042	1157	
+
+E 112  3879	*	5148	3371	5105	4218	5624	5835	3194	5080	6717	3491	3723	3665	4005	4383	3872	3617	5454	6384	112
+       39	6683	5877	1000	1000	*	0	9448	1025	1157	
+
+A 113  3914	*	3266	3881	6581	6444	6775	5876	6366	4428	*	3812	2331	5699	*	2340	3445	4367	5863	6516	113
+       58	4656	*	244	2687	2040	402	9426	1751	1530	
+
+T 114  4467	*	5070	3892	5038	3865	4767	6644	5590	5719	6161	3321	5373	4641	5082	2818	1968	6836	5120	5089	114
+       25	5836	*	1864	463	*	0	9413	1334	1360	
+
+D 115  5025	5876	1591	3416	6968	3806	*	5921	4980	*	4676	3892	4738	*	5285	3421	4679	4332	6856	4694	115
+       25	5869	*	1000	1000	1413	680	9449	1172	1360	
+
+S 116  4607	*	2222	3328	5806	2666	*	5307	5990	5240	*	4220	3450	5531	4750	3471	3828	4736	*	*	116
+       70	6472	4790	0	*	*	0	9444	1031	1157	
+
+G 117  4647	*	3561	4147	4375	3535	5087	3405	6375	4316	6712	4732	4017	4334	4577	3218	*	2621	*	5165	117
+       634	1613	5126	2641	252	*	0	9387	5388	1770	
+
+N 118  3413	*	2825	3326	6751	4981	6381	*	4396	4680	6501	3375	2834	4324	4945	3378	3464	6816	*	*	118
+       139	3449	*	2073	392	1995	417	9276	2345	2263	
+
+I 119  2998	6205	5143	3090	6688	5920	*	4096	4622	3176	6473	6382	2978	*	3585	4125	3686	3712	*	4849	119
+       154	3300	*	1810	484	1059	943	9277	2537	2122	
+
+D 120  1887	*	5646	4168	6719	5675	*	5053	4730	3173	3784	6612	2964	5680	7197	3659	6716	3758	5675	5217	120
+       228	2774	*	2654	250	*	0	9350	3202	1516	
+
+A 121  2733	*	4632	3010	*	*	4226	5675	2873	4119	*	*	5036	2853	3243	4655	4618	5034	6646	5469	121
+       196	3238	5583	2324	321	1051	950	9350	2932	1516	
+
+A 122  1836	*	3859	3638	5875	4761	6669	5026	2996	4288	5585	4322	5377	4284	4611	5040	4889	5090	6976	6498	122
+       407	2026	*	2197	355	*	0	9304	4682	1580	
+
+K 123  2483	*	5333	3219	6609	4579	6298	*	2458	5383	6785	3665	*	4297	3534	3281	5004	4694	*	5614	123
+       102	3879	*	2778	227	*	0	9304	2036	1580	
+
+D 124  4604	*	3174	4570	6692	1721	5067	6650	3108	*	*	3156	5466	3999	3625	5445	5343	6484	*	*	124
+       75	5212	5412	2734	235	0	*	9304	1335	1580	
+
+I 125  3388	5569	*	6751	6608	*	5443	1749	6507	3802	4872	*	*	6097	6799	5194	4014	1725	*	6480	125
+       116	3889	6648	2263	337	680	1413	9437	2306	1360	
+
+I 126  5069	5525	4700	4009	5173	5100	5631	3426	3614	4590	6723	3882	4289	5110	2816	5383	2588	4209	*	6523	126
+       66	4487	*	2760	231	*	0	9425	1595	1217	
+
+R 127  4510	5645	*	7058	4586	5878	*	2500	4926	3301	3994	*	6754	6091	4025	7030	4290	1507	*	*	127
+       82	4177	*	2229	346	*	0	9425	1775	1217	
+
+Y 128  5579	6774	4691	6853	2074	6514	4387	2896	*	3917	6528	6700	*	*	*	6672	5189	3036	*	2022	128
+       22	*	6065	*	*	*	0	9409	0	1217	
+
+I 129  2034	4261	5040	*	*	5526	*	4148	*	4996	5396	5712	4110	5636	*	3468	2469	2538	*	*	129
+       17	6390	*	0	*	1373	704	9355	1014	1464	
+
+I 130  *	6929	*	*	3636	*	*	1421	*	3159	5197	*	*	*	*	6327	6297	1421	*	*	130
+       17	*	6386	2585	263	967	1034	9409	1020	1217	
+
+G 131  2263	*	6408	6741	*	927	6405	6486	*	6251	*	5802	6753	5702	*	3519	5054	4953	6309	*	131
+       0	*	*	*	*	971	1030	9377	0	1216	
+
+I 132  4659	*	4944	6880	3525	*	*	2122	6733	2506	6467	6800	*	*	6689	4537	5160	2012	*	3870	132
+       17	6403	*	2322	322	*	0	9395	1018	1011	
+
+G 133  4276	*	3555	6547	*	684	*	5828	4516	6280	*	5148	6427	*	5633	4564	5043	5411	*	*	133
+       30	6344	6932	1000	1000	*	0	9395	1042	1011	
+
+K 134  3419	*	2641	2784	*	4159	6326	6730	3783	5521	6839	3596	3143	4506	5494	3646	4255	*	*	5286	134
+       31	6620	6525	1000	1000	*	0	9383	1000	1217	
+
+H 135  2920	*	2805	3561	4738	3918	4796	5514	3398	4799	*	3547	4902	4095	6501	3511	5379	6668	*	4733	135
+       1190	6034	872	4371	71	1573	591	9334	1273	1423	
+
+F 136  4432	*	4538	5365	2898	3451	*	4568	4511	2749	*	3874	4275	*	5448	4221	5441	3083	5542	3898	136
+       1111	*	897	*	*	4635	59	8212	0	7167	
+
+Q 137  4620	*	2754	2429	*	2472	*	*	3426	*	4435	3439	*	4456	4336	4686	4992	*	*	4369	137
+       856	2587	1831	2809	222	4971	47	6770	1586	8270	
+
+T 138  4057	*	3954	4078	*	*	*	*	4093	*	4360	2665	*	4053	*	4033	1907	3308	*	4008	138
+       385	4093	2511	2322	322	6380	17	6328	1000	8407	
+
+K 139  2338	*	*	2903	3795	2829	*	3196	3939	*	*	*	3092	*	3852	4654	*	4181	*	*	139
+       105	*	3833	*	*	1232	800	6051	0	8485	
+
+E 140  2577	*	*	3381	6066	3554	4624	3479	*	5829	*	5559	4536	*	*	5539	5519	1481	*	5459	140
+       31	5565	*	1000	1000	299	2420	8361	1033	6704	
+
+S 141  3497	5446	2109	3855	5149	3664	5214	6562	4992	4821	6294	2501	*	6636	4603	3991	4297	6736	*	6329	141
+       19	*	6281	*	*	1214	814	9200	0	2383	
+
+Q 142  4222	*	3798	3771	*	4158	6500	6754	2632	3538	4136	5353	4229	4631	3317	3971	4962	4031	6665	4827	142
+       0	*	*	*	*	1155	860	9306	0	1939	
+
+E 143  3117	*	3382	2284	*	4301	5018	6624	4064	5571	*	5759	5009	3124	3391	4134	4182	6766	*	5055	143
+       0	*	*	*	*	596	1563	9333	0	1450	
+
+T 144  4982	*	3864	2290	3850	6769	*	6420	5331	3049	4648	4120	5483	3281	*	4687	3513	4153	5519	4953	144
+       0	*	*	*	*	0	*	9375	0	1031	
+
+L 145  5413	*	*	*	4525	*	*	3401	*	660	3356	*	6460	*	6364	5329	*	4740	*	5501	145
+       0	*	*	*	*	*	*	9388	0	0	
+
+H 146  3242	*	3467	2801	6678	5732	5618	6653	2782	5004	*	3614	*	3493	2929	4254	4647	6710	*	5554	146
+       44	*	5044	*	*	*	*	9388	0	0	
+
+K 147  3363	*	4052	3560	6404	3474	6403	*	3485	4066	6574	4359	5658	3622	3978	2509	3538	*	6696	*	147
+       16	6524	*	3459	138	0	*	9368	1016	1362	
+
+F 148  4975	*	6564	*	3743	*	6281	1432	*	1739	3358	*	*	*	*	*	*	3288	*	*	148
+       0	*	*	*	*	*	*	9374	0	0	
+
+A 149  837	*	6772	5969	5076	5552	*	6443	6472	4885	*	*	*	5719	*	2724	3275	4883	*	*	149
+       13	*	6839	*	*	*	*	9356	0	0	
+
+S 150  6509	5663	3602	4109	6448	2415	*	*	3604	6605	*	4857	6389	6585	4576	1800	3081	5550	*	6370	150
+       46	*	5009	*	*	*	0	9288	0	1000	
+
+K 151  3500	4896	3682	3731	*	3072	5418	6171	3723	3489	4748	4248	4754	3747	4266	3261	5404	5468	*	*	151
+       95	6686	4218	0	*	*	0	9296	1000	1532	
+
+P 152  3712	*	5450	5420	*	2888	5379	*	3923	*	5445	4813	1940	6445	4058	3640	2982	4683	*	5958	152
+       462	*	1867	*	*	2192	356	9247	0	2339	
+
+A 153  3405	*	3193	*	5953	2533	5924	5569	3691	5817	5601	4123	4501	5832	3486	2658	3518	*	*	*	153
+       130	*	3541	0	*	1451	657	8854	1224	5150	
+
+S 154  6352	*	3979	3888	*	1625	5912	5074	3355	6092	*	5167	4533	4824	3435	2884	6101	*	*	5315	154
+       248	*	2661	*	*	204	2922	8928	0	4525	
+
+E 155  5286	*	4547	2427	*	3090	5482	*	4200	4325	*	2971	6261	3265	3615	3733	4682	4689	5479	*	155
+       256	2872	5271	718	1351	644	1474	9076	2566	3264	
+
+F 156  3858	5160	5000	5310	2901	4819	2900	*	3584	4387	4861	3146	5279	4011	4049	6695	4725	*	*	3855	156
+       55	*	4730	*	*	1211	816	9160	0	2116	
+
+V 157  3115	*	*	5478	2766	6215	*	3804	6435	3436	6396	*	*	*	*	4755	4404	1678	*	3088	157
+       37	*	5300	*	*	237	2723	9145	0	2089	
+
+K 158  5367	*	*	6610	1239	*	6527	2817	6493	3476	5535	*	*	5548	*	*	4661	4885	*	2540	158
+       30	*	5580	*	*	567	1622	9222	0	1401	
+
+I 159  4524	*	6163	3722	4744	5753	3623	3954	3834	4916	4410	5356	4333	3833	5364	3908	2943	4059	*	3476	159
+       0	*	*	*	*	0	*	9253	0	1357	
+
+L 160  2344	*	6556	6598	5358	*	6465	3406	5591	2588	6361	5327	4411	*	6455	4538	4262	1921	*	6606	160
+       0	*	*	*	*	*	*	9275	0	0	
+
+D 161  4011	*	2381	2961	*	6569	5191	*	3889	5508	*	3483	3649	4210	4806	3871	2618	*	*	*	161
+       44	5065	*	0	*	*	*	9275	1323	0	
+
+T 162  5491	*	1750	3553	*	3641	*	*	5525	6333	*	2839	6117	5604	4906	2534	3317	*	*	*	162
+       35	6614	6208	0	*	*	*	9251	1000	0	
+
+F 163  3320	*	6727	4389	2463	3934	*	4472	*	4880	*	5335	3320	4406	4633	4283	4380	4255	5495	2937	163
+       70	4407	*	1068	935	0	*	9148	1510	1025	
+
+E 164  3323	5362	2748	2880	*	4398	4688	*	4245	5330	*	3405	5291	5027	4063	3528	3437	6705	*	5149	164
+       16	6516	*	0	*	*	*	9150	1020	0	
+
+K 165  3038	*	2696	2729	6284	3820	6471	*	4075	3450	4970	4327	*	3763	5312	3331	4755	*	*	6584	165
+       0	*	*	0	*	0	*	9112	1020	1020	
+
+L 166  5379	*	6026	*	6505	*	*	3567	*	602	4459	*	6068	5355	5297	*	6379	4304	5470	6504	166
+       0	*	*	*	*	*	*	9133	0	0	
+
+K 167  3377	*	3143	4833	*	3358	6539	5308	3028	*	6491	3282	3110	3603	4055	3914	4356	6382	*	*	167
+       18	6300	*	1000	1000	*	*	9027	1000	0	
+
+D 168  6120	*	2551	3508	*	3379	6431	*	3093	6087	6393	3072	4588	3073	4999	3006	5192	6259	*	*	168
+       0	*	*	*	*	*	*	9010	0	0	
+
+L 169  2879	*	*	5027	4517	*	*	2102	5297	2343	4352	5943	*	5827	4704	*	4562	2961	*	4561	169
+       0	*	*	*	*	*	*	8876	0	0	
+
+C 170  4245	6086	*	*	2341	5771	*	2500	5243	2931	4566	*	*	5025	5186	4640	5124	2410	*	5303	170
+       0	*	*	*	*	*	*	8876	0	0	
+
+T 171  3464	*	2511	3776	6208	4153	6631	*	3814	5066	6053	3783	5095	3975	2960	3134	4563	*	*	6070	171
+       0	*	*	*	*	*	*	8807	0	0	
+
+E 172  4154	6205	4142	2435	5366	5135	4979	5312	2946	4408	*	5187	6421	3017	3818	3123	4216	*	*	*	172
+       29	5640	*	4000	93	*	*	8790	1039	0	
+
+L 173  5764	*	*	6027	4934	*	*	1434	*	1436	3973	*	*	*	*	*	*	2941	*	*	173
+       0	*	*	*	*	*	*	8542	0	0	
+
+Q 174  3121	*	*	*	3857	4575	5547	3199	3910	2954	4698	5687	*	2852	4620	3575	4130	4370	*	5520	174
+       0	*	*	*	*	*	*	8156	0	0	
+
+K 175  *	*	2849	2985	4151	*	*	*	2567	*	5240	2789	*	4107	3681	3782	3307	*	5106	*	175
+       0	*	*	*	*	*	*	7872	0	0	
+
+K 176  3529	5111	4078	3326	*	5115	*	*	1783	3448	*	*	*	4081	2756	3646	5183	*	*	*	176
+       0	*	*	*	*	*	*	7650	0	0	
+
+I 177  *	*	*	*	*	*	*	849	*	2147	3179	*	*	*	*	*	4785	3786	*	*	177
+       0	*	*	0	*	*	*	7159	0	0	
+
+//
+�HHsearch 1.5
+NAME  3067be314a806ff137315081e104742e
+FAM   
+FILE  3067be314a806ff137315081e104742e
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:26:38 2013
+LENG  171 match states, 171 columns in multiple alignment
+FILT  188 out of 1401 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  7.7 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCHHHHHHHCCCCCCCCCCCCCCCCCEEEEEEEEEEECCCCCCEEEEEEEEEEECCCCCCCCCCCCCCCCCCHHHHHHHHHHHHHHHHHHCCCC
+CCEEEEEEEEEEECCCEECCCEEEEEEEEEEEEEECCCCEEEEEEEEEECCEEEEEEEEEEEEEECCCCCC
+>ss_conf PSIPRED confidence values
+9866789999998655877579960008999879999999993799820156999999937987400367899983778999999999999998633578
+86158555589981660079989999999999985479889999999999999999986099993688889
+>Consensus
+xxxxxxxxxxxxxxxxxxxxxxxxxxxLPxxpxlxvDxvxxxxxxxGxxxxgxixxxxxvxxdxxxfxgHFpxxpvxPGvlxiExxaQxxxxxxxxxxxx
+xxxxlxgixxxkFxxpVxPGdxxLxxxvxvxxxxxxxxgxxxxxxxxxxxgxxvxxxxxxxvxxxxxxxxx
+>3067be314a806ff137315081e104742e
+VDKRESYTKEDLLASGRGELFGAKGPQLPAPNMLMMDRVVKMTETGGNFDKGYVEAELDINPDLWFFGCHFIGDPVMPGCLGLDAMWQLVGFYLGWLGGE
+GKGRALGVGEVKFTGQVLPTAKKVTYRIHFKRIVNRRLIMGLADGEVLVDGRLIYTASDLKVGLFQDTSAF
+>gi|149174078|ref|ZP_01852706.1| probable hydroxymyristoyl-(acyl carrier protein) dehydratase [Planctomyces maris DSM 8797]gi|148847058|gb|EDL61393.1| probable hydroxymyristoyl-(acyl carrier protein) dehydratase [Planctomyces maris DSM 8797]
+-------------------------------RFSLVDQILEMEKG--K----SITAVKNLSLSEEYLQDHFPGFAVMPGVLMVESIVQAGAWLMRYTNDf
+QYSTILLkQTKAIRFNSFVTPGKQ-LRVSLSIQKWE---DNLCTLKASSQVEGEAAVSGR-------------
+>gi|269967927|ref|ZP_06181967.1| putative beta-hydroxydecanoyl-ACP dehydrase [Vibrio alginolyticus 40B]gi|269827450|gb|EEZ81744.1| putative beta-hydroxydecanoyl-ACP dehydrase [Vibrio alginolyticus 40B]
+------------------------EQLLPhDKPMILVDRALDVQQD-------TIHCQVDIAEHNPFFD---STSQTVPAYVGIEFMAQSVAAWSGYHAl
+mkEQapPIGFLLGSRRYTSECDTFSRGQ--VLDVYAEKVMED-NGMAVFSARIELQGTVVATCQ-------------
+>gi|325300363|ref|YP_004260280.1| hypothetical protein Bacsa_3281 [Bacteroides salanitronis DSM 18170]gi|324319916|gb|ADY37807.1| hypothetical protein Bacsa_3281 [Bacteroides salanitronis DSM 18170]
+----------------------------------------------------TPSFHVELLPGCDVYRGHFPGHPVCPGVCNIGM----LKECMEEAVG-
+VKLAIETIKQCRMTAVASPEICsELDIRMHIQSL--GEA-RWAVQAKLYDAERTYMEYK-------------
+>gi|300726872|ref|ZP_07060300.1| conserved hypothetical protein [Prevotella bryantii B14]gi|299775819|gb|EFI72401.1| conserved hypothetical protein [Prevotella bryantii B14]
+-------------------------ELLLqQEPFVFIDQLTYYDER-------LTTSVFRVSPNHLYV-----EEGKLQTCALAEVIAQTCAARIGYINk
+yilKrTIqMGFIGAIRNLKVYATPLVGDL-LETQVEIKEE---IMGMLLVEAQIKRGEDLIAEGT-LKMSLT------
+>gi|94265785|ref|ZP_01289519.1| conserved hypothetical protein [delta proteobacterium MLMS-1]gi|93453677|gb|EAT04061.1| conserved hypothetical protein [delta proteobacterium MLMS-1]
+-----------------------------------------------------LVGNYSFALDFPGFIGHFPELPILPAVVQLAAVRYLAELAVAS----
+-NLQTVGCQGAKFRGMVRPRE-LLSVSLTL--VQRAEPPGCQAKFKLTRADVLVAGG--------------
+>gi|312114350|ref|YP_004011946.1| MaoC domain-containing protein dehydratase [Rhodomicrobium vannielii ATCC 17100]gi|311219479|gb|ADP70847.1| MaoC domain protein dehydratase [Rhodomicrobium vannielii ATCC 17100]
+-----------------------------------------------------------VHLDEAFAATTPFKQRIAHGMLSAAYI---SAVFGTKLPGP
+GCIYI--SQTLNFKGPVHIGDE-VVTTVRVTDLITEKR-RAIFHCECKVGGKTVVVGEA------------
+>gi|52840605|ref|YP_094404.1| 3-hydroxymyristoyl/3-hydroxydecanoyl-(acyl carrier protein) dehydratases [Legionella pneumophila subsp. pneumophila str. Philadelphia 1]gi|52627716|gb|AAU26457.1| 3-hydroxymyristoyl/3-hydroxydecanoyl-(acyl carrier protein) dehydratases [Legionella pneumophila subsp. pneumophila str. Philadelphia 1]
+-------------------------------RFLFVDRIVQLSP--GEWIKG----IKHVTRDDAYLTTDDHGRLCFMPSLIGETLGQLAAWNVMQHN-H
+FTARpVAGVvSSARLYRPAYVGET-ILLESNIDSLDE---KAVQYHSIAKVGNDIIFTIDG------------
+>gi|301062223|ref|ZP_07202900.1| FabA-like domain protein [delta proteobacterium NaphS2]gi|300443655|gb|EFK07743.1| FabA-like domain protein [delta proteobacterium NaphS2]
+--------------------------LIPHrGLMRLVDEIISVDEK-------TAVTASTVTESWPMVEGGA-----ANCIVLVELIAQTAGICLGWKEP
+RkkeeelaGTGWIVGVKEAVFHHSEIPLNSRII-TA-SDRVFQV-EFYSEIAGTARVGDETLAEV---KLQMVQSDS--
+>gi|334140009|ref|YP_004533209.1| MaoC-like dehydratase [Novosphingobium sp. PP1Y]gi|333938033|emb|CCA91391.1| MaoC-like dehydratase [Novosphingobium sp. PP1Y]
+--------------------------------------------------------------DAELAKKSEFGRILVNSTFTF-SLA--IGLSVADT-TV
+GTlVANLGFDKVVTPKPTFIGDT-LTCTSEVIELREsksRPgQGIVVFRHELTNqKGEVVLSCQR------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+V 1    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	1
+       0	*	*	*	*	*	*	1000	0	0	
+
+D 2    *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2
+       0	*	*	*	*	*	*	1000	0	0	
+
+K 3    *	*	*	*	*	*	*	1973	1843	*	*	*	1100	*	*	*	*	*	*	*	3
+       0	*	*	*	*	*	*	2257	0	0	
+
+R 4    2721	*	*	*	*	*	*	*	1587	*	*	*	*	*	956	*	*	*	*	*	4
+       0	*	*	*	*	*	*	2847	0	0	
+
+E 5    2972	*	*	1795	*	*	*	*	*	*	*	*	*	*	2690	1839	2738	*	*	*	5
+       0	*	*	*	*	*	*	3081	0	0	
+
+S 6    3029	*	*	*	*	*	2935	*	*	*	*	*	*	*	2866	714	*	*	*	*	6
+       0	*	*	*	*	*	*	3243	0	0	
+
+Y 7    *	*	*	*	704	*	*	*	*	2935	*	*	*	*	*	*	*	*	*	1969	7
+       0	*	*	*	*	*	*	3243	0	0	
+
+T 8    *	*	1900	*	*	*	*	*	2945	*	*	2997	*	*	*	3072	1482	*	*	*	8
+       0	*	*	*	*	*	*	3243	0	0	
+
+K 9    2082	*	*	2866	*	2997	*	*	1943	*	*	*	3072	*	3029	*	*	*	*	*	9
+       0	*	*	*	*	*	*	3243	0	0	
+
+E 10   2134	*	2935	988	*	*	*	*	*	*	*	*	*	2866	*	*	*	*	*	*	10
+       0	*	*	*	*	*	*	3243	0	0	
+
+D 11   3168	*	1145	3127	*	*	3056	*	*	*	*	*	*	2307	*	*	*	*	*	*	11
+       170	3168	*	1000	1000	*	*	3476	1110	0	
+
+L 12   *	*	*	*	*	*	*	846	*	1509	*	*	*	*	*	*	*	3440	*	*	12
+       0	*	*	*	*	*	*	3476	0	0	
+
+L 13   *	*	3320	3377	3289	*	*	*	3315	1686	*	3157	*	*	3563	*	*	3422	*	*	13
+       0	*	*	*	*	*	*	3600	0	0	
+
+A 14   870	*	*	*	*	3283	*	*	*	3531	*	2405	*	*	*	3739	*	*	*	*	14
+       0	*	*	*	*	*	*	3806	0	0	
+
+S 15   *	*	*	*	3549	*	*	*	*	1473	*	*	3370	3480	3531	2403	*	*	*	3437	15
+       0	*	*	*	*	*	*	3806	0	0	
+
+G 16   1960	*	*	*	*	1843	3531	*	*	*	3294	*	*	*	3452	3442	3437	*	*	*	16
+       0	*	*	*	*	*	*	3806	0	0	
+
+R 17   *	*	3672	3375	*	*	*	*	*	*	*	3588	*	2041	1276	3539	*	*	*	*	17
+       124	3601	*	0	*	*	*	4044	1110	0	
+
+G 18   2640	*	*	*	*	711	*	*	*	*	*	*	*	3830	3778	*	3546	*	*	*	18
+       0	*	*	*	*	*	*	4252	0	0	
+
+E 19   3546	*	1372	2833	*	*	3728	*	*	*	*	*	*	*	2898	*	2489	*	*	*	19
+       0	*	*	*	*	*	*	4252	0	0	
+
+L 20   3557	*	*	*	*	*	*	2243	*	1100	*	*	3074	*	4195	*	*	3967	*	*	20
+       99	3919	*	1585	585	*	*	4459	1137	0	
+
+F 21   2960	*	*	*	1569	*	*	*	*	2727	*	*	3846	*	*	*	4065	2325	*	4195	21
+       0	*	*	*	*	*	*	4459	0	0	
+
+G 22   1734	*	3983	*	*	1628	*	*	*	*	*	3159	*	*	*	2916	*	*	*	3876	22
+       0	*	*	*	*	*	*	4472	0	0	
+
+A 23   3007	1958	*	*	*	4296	*	*	3954	*	*	3870	1620	*	4144	4251	*	*	*	*	23
+       183	3068	*	1000	1000	*	*	4472	1216	0	
+
+K 24   3357	*	2653	4217	1938	4517	*	3070	4247	4216	*	4183	4424	*	*	4111	*	*	*	*	24
+       512	1907	4950	3032	188	*	*	4954	1628	0	
+
+G 25   2528	*	*	2236	*	1885	*	*	4236	*	*	4723	*	4234	5607	2755	5010	*	*	*	25
+       42	5112	*	1000	1000	*	0	6377	1025	1001	
+
+P 26   3158	*	3480	3059	*	5999	6101	6030	3322	3382	*	3707	2826	3833	3329	6005	5951	*	5806	*	26
+       120	3646	*	3276	157	*	0	7001	1592	1001	
+
+Q 27   5043	*	*	*	5014	*	*	3748	4949	1398	6213	*	4332	4114	2930	5971	4208	4738	5629	3780	27
+       29	5674	*	2798	224	*	0	7192	1186	1001	
+
+L 28   6187	*	*	*	5692	*	*	2449	*	569	5840	5699	*	5700	*	*	*	4221	*	*	28
+       0	*	*	3700	115	0	*	7192	1001	1001	
+
+P 29   4405	*	6176	*	*	*	6176	*	*	5838	*	5639	297	*	4785	5709	*	5755	*	*	29
+       763	1322	6529	0	*	*	*	7221	2607	0	
+
+A 30   3333	*	4440	4636	*	3202	1741	*	5320	*	*	5839	4813	4022	2616	3494	6055	*	*	*	30
+       576	1670	6055	0	*	*	0	7241	2413	1001	
+
+P 31   3704	*	3726	3667	3266	2332	5158	*	4112	*	5149	*	2656	4414	4542	5481	6309	*	*	3860	31
+       25	5879	*	1000	1000	*	0	7592	1079	1057	
+
+N 32   4843	*	5233	5702	*	*	4330	*	4487	6594	4885	5676	803	4730	3193	6562	6054	*	*	6017	32
+       0	*	*	*	*	*	0	7678	0	1057	
+
+M 33   6412	6683	*	*	1470	6264	*	4549	*	3070	1552	*	*	*	6276	6304	7016	*	4412	5534	33
+       11	*	7066	*	*	*	0	7770	0	1057	
+
+L 34   6795	6551	*	5104	4189	*	6538	4122	*	1152	4443	*	*	4415	3163	5179	5942	2944	*	*	34
+       0	*	*	1567	594	0	*	7758	1069	1125	
+
+M 35   5161	6893	*	*	2636	*	*	6475	*	1451	1698	*	*	5680	6448	*	*	6350	4600	4921	35
+       0	*	*	*	*	*	*	7759	0	0	
+
+M 36   *	5481	*	*	4968	*	*	1887	*	1898	6568	*	*	*	*	*	*	1334	*	*	36
+       0	*	*	*	*	*	*	7800	0	0	
+
+D 37   *	*	255	4667	*	6670	6013	*	6604	6500	*	7099	*	6368	6657	4428	*	*	*	*	37
+       0	*	*	*	*	*	*	7800	0	0	
+
+R 38   4699	*	6710	2486	*	4479	4790	*	2912	*	*	4585	*	3373	1651	4738	4170	*	*	6629	38
+       18	*	6324	*	*	*	*	7800	0	0	
+
+V 39   4249	*	*	6412	5199	*	*	1726	*	2782	*	*	*	6459	*	*	*	1154	*	*	39
+       42	7094	5562	1000	1000	0	*	7773	1003	1079	
+
+V 40   5430	5644	5293	3656	6942	*	*	2844	6503	1972	5491	*	*	6498	6984	6065	2473	2562	*	4924	40
+       25	6709	7099	2000	415	0	*	7791	1000	1098	
+
+K 41   3661	6707	2528	2413	*	5167	4663	5455	4532	4966	6374	4551	*	4633	5454	2534	4362	5723	6694	5869	41
+       26	7095	6556	1000	1000	0	*	7806	1003	1001	
+
+M 42   5078	4888	*	5642	2590	*	6809	3273	*	2561	4813	*	6593	5800	6573	4115	6527	2300	5691	3275	42
+       11	7077	*	0	*	476	1830	7786	1000	1177	
+
+T 43   4575	*	2191	2239	7014	3760	*	5738	4891	*	*	3593	*	5442	6074	3771	3897	3159	5635	*	43
+       96	5590	4515	2890	209	0	*	7791	1194	1003	
+
+E 44   3944	*	3228	2213	6348	6888	4354	6729	4363	5148	*	*	1647	5625	4400	4233	*	*	*	5908	44
+       492	*	1792	*	*	*	0	7764	0	1204	
+
+T 45   4512	5117	2944	2557	*	2415	5058	*	4302	6024	5262	3411	*	5893	4130	4682	3354	6264	*	*	45
+       1736	6065	546	2000	415	*	0	7535	1013	2888	
+
+G 46   4666	4160	*	4226	*	926	*	*	4208	*	*	*	*	4244	4103	3206	4285	*	*	*	46
+       80	*	4208	*	*	1626	565	5354	0	5106	
+
+G 47   4325	*	5716	4068	*	333	*	*	*	*	*	5555	*	*	*	4154	*	*	*	*	47
+       78	*	4248	*	*	2584	263	6599	0	4069	
+
+N 48   4743	*	*	2948	*	*	*	3201	2286	4933	*	5801	3070	4212	3073	4843	4830	3227	*	*	48
+       787	*	1250	*	*	5905	24	6722	0	3748	
+
+F 49   2770	5237	*	*	2576	*	3463	*	4075	5232	*	4963	*	4971	3536	2808	4825	*	3022	5005	49
+       401	*	2044	*	*	6251	19	6002	0	4662	
+
+D 50   2793	*	4763	*	*	1125	*	3641	*	*	*	*	4458	3726	*	4627	4444	3782	*	*	50
+       0	*	*	*	*	2213	350	5629	0	4946	
+
+K 51   3296	*	*	3325	*	4569	5479	*	2724	2146	*	*	*	5706	3162	3966	3531	3735	*	*	51
+       38	*	5259	*	*	3872	102	6482	0	4267	
+
+G 52   2814	*	5905	5612	*	860	*	4768	3511	*	*	5962	4259	4716	*	5629	5719	*	*	*	52
+       204	*	2920	*	*	374	2130	6603	0	4136	
+
+Y 53   4352	*	6447	4096	4307	5268	3942	3817	5093	5736	6764	6358	*	4406	3097	2426	3323	5038	6452	3221	53
+       13	*	6784	*	*	592	1572	8388	0	2188	
+
+V 54   2153	6790	*	6554	6785	5445	6517	1826	4469	2393	6634	*	6249	*	5704	*	5363	3271	*	5346	54
+       75	*	4297	*	*	2780	227	8521	0	1431	
+
+E 55   6000	7177	7265	3636	*	6581	4298	3980	3224	5269	*	6780	*	5301	2811	3400	2444	2494	*	*	55
+       0	*	*	*	*	2073	391	8527	0	1752	
+
+A 56   1679	3802	*	*	4816	2151	*	5858	6942	5114	*	*	*	*	*	4177	2677	3588	*	7331	56
+       55	*	4748	*	*	0	*	8546	0	1565	
+
+E 57   4787	*	6679	2537	4585	6665	4911	3662	4521	3725	*	4751	*	4700	2860	4003	3802	3449	6703	4315	57
+       0	*	*	*	*	*	0	8611	0	1219	
+
+L 58   3542	5814	*	*	3615	6113	5999	5288	1710	3237	5717	*	*	7065	3870	5005	4427	3015	7399	4464	58
+       14	*	6722	*	*	395	2063	8579	0	1219	
+
+D 59   4976	4810	3453	4296	5034	*	4696	5799	4466	4045	*	3334	5522	4376	3680	3974	2495	3964	*	4464	59
+       9	*	7411	*	*	1015	985	8633	0	1070	
+
+I 60   4993	*	*	7167	3405	7212	6913	1996	*	2563	7133	*	5365	*	*	7360	6166	1442	6284	*	60
+       0	*	*	*	*	*	0	8700	0	1046	
+
+N 61   4013	6840	3137	6856	*	5581	4670	*	4203	6717	*	2970	3210	5370	3684	2387	2802	*	*	6522	61
+       9	*	7349	2322	322	0	*	8700	1003	1046	
+
+P 62   2274	5609	5048	3017	5817	4074	4523	4373	4704	4068	6449	4980	2440	*	4630	4735	5656	6275	*	6144	62
+       84	*	4152	*	*	*	0	8711	0	1000	
+
+D 63   4009	*	1398	3448	*	3788	6192	*	4896	7317	*	2262	6961	5841	*	3740	4967	*	*	*	63
+       14	6722	*	0	*	*	0	8878	1004	1522	
+
+L 64   3674	5447	2732	1945	4644	4392	2850	7274	7388	3890	*	3701	*	*	*	3942	5983	6659	6874	7365	64
+       24	*	5923	*	*	388	2085	8878	0	1522	
+
+W 65   3772	*	3437	3637	4879	*	7260	3624	5851	3854	6043	*	1911	5750	5261	5962	6698	4557	2832	6427	65
+       36	*	5344	*	*	1000	1000	8847	0	1216	
+
+F 66   5259	6443	7359	*	1520	5295	5198	3490	*	3658	5229	7992	*	6740	*	*	7148	3396	4590	2299	66
+       72	7091	4590	0	*	725	1340	8827	1072	1290	
+
+F 67   2997	6013	*	*	1288	6711	*	4616	6740	2606	6345	6609	*	*	*	6000	*	3835	6957	3193	67
+       43	6961	5558	0	*	1682	539	8801	1000	1442	
+
+G 68   2667	7112	3649	3038	6490	4940	5989	6320	3459	4954	6543	5222	4873	2896	3436	4297	4299	5768	7132	6240	68
+       187	*	3037	*	*	*	0	8804	0	1490	
+
+C 69   2749	4556	3759	4502	6531	941	*	6846	6663	*	*	4409	*	*	5785	5024	4850	6664	*	*	69
+       114	5042	4446	0	*	*	0	8658	1101	2458	
+
+H 70   5568	*	5299	6372	6545	5097	524	*	6899	6389	*	*	7043	6503	5415	4067	4101	*	*	5274	70
+       56	6233	5354	0	*	1764	503	8144	1000	2750	
+
+F 71   5152	7242	6514	5668	634	4415	5675	5124	7127	5394	7257	6282	5133	*	6275	5995	6040	6806	*	3978	71
+       33	*	5467	*	*	1592	581	8747	0	2435	
+
+I 72   5323	6896	4244	*	3508	7200	4549	5234	3786	4283	6771	6313	1022	5604	*	4897	5900	6059	6817	5861	72
+       0	*	*	1000	1000	565	1625	8723	1001	2158	
+
+G 73   4195	*	3508	3096	6905	1406	6847	7521	4806	*	*	3206	5106	4642	4419	4617	4645	*	*	*	73
+       28	6166	7626	2322	322	1526	615	8828	1067	1351	
+
+D 74   3941	6150	2429	4591	3473	4410	4697	6139	5022	4481	5732	2595	6866	3711	3891	5694	6140	7107	*	4299	74
+       11	6986	*	926	1078	2441	294	8841	1067	1255	
+
+P 75   5106	*	4652	6140	6814	3180	5227	6723	6428	4940	*	6083	922	5376	4079	4414	5377	*	*	5598	75
+       7	7736	*	0	*	2468	288	8843	1001	1197	
+
+V 76   4072	4256	6914	7294	5895	4857	6200	2038	6999	3417	5678	4746	5941	6562	6151	5443	5250	1659	*	*	76
+       10	*	7163	*	*	362	2173	8843	0	1215	
+
+M 77   3507	5984	*	*	3313	*	7152	4879	*	2202	2437	*	*	6230	*	*	4111	2305	7267	3784	77
+       18	*	6364	*	*	1110	898	8847	0	1070	
+
+P 78   4490	*	7014	6127	*	*	3792	*	*	6799	6882	5542	338	*	*	5429	*	6944	*	*	78
+       0	*	*	*	*	1305	748	8856	0	1166	
+
+G 79   2881	7003	*	5515	7310	696	6197	7168	*	*	6056	5688	4202	7437	5155	4520	*	5917	7039	*	79
+       7	7658	*	1585	585	935	1068	8868	1000	1073	
+
+C 80   3656	5248	*	7071	6400	*	7015	4315	*	5081	4657	6969	4771	*	*	3103	3544	1396	3570	4754	80
+       0	*	*	1585	585	0	*	8878	1001	1001	
+
+L 81   4331	3768	*	*	3748	5181	5937	3630	7015	1206	4149	*	*	*	*	6255	6281	2820	*	6291	81
+       0	*	*	*	*	*	*	8878	0	0	
+
+G 82   4667	*	*	7138	6153	2834	7157	2974	*	1868	3169	6910	*	3119	*	6580	3973	3906	*	5994	82
+       7	7774	*	0	*	*	*	8878	1001	0	
+
+L 83   4261	6081	*	*	4225	6913	7154	1946	*	1934	4415	*	7032	7216	*	5502	5107	2207	*	6141	83
+       157	*	3278	*	*	0	*	8878	0	1001	
+
+D 84   6109	*	4009	419	*	4590	6199	*	6838	*	*	7071	*	3409	*	6616	*	*	*	*	84
+       0	*	*	*	*	0	*	8717	0	1691	
+
+A 85   2036	4246	*	*	4986	3602	5742	3459	*	3138	4077	5690	*	*	7572	2829	4204	6978	4530	4784	85
+       91	*	4036	*	*	*	*	8878	0	0	
+
+M 86   3840	5054	*	*	4326	5481	*	2495	7023	2737	1817	*	*	*	*	5114	6683	2809	6148	6210	86
+       48	*	4941	*	*	*	0	8781	0	1442	
+
+W 87   985	4921	7205	6650	5121	3615	7065	5094	*	3204	4613	*	*	6824	6865	4476	7429	4051	7384	6168	87
+       167	7680	3256	0	*	*	0	8751	1001	1703	
+
+Q 88   5483	*	6273	4671	*	*	4931	7319	*	*	*	5481	*	272	5224	*	*	*	*	6779	88
+       0	*	*	*	*	4563	62	8536	0	2380	
+
+L 89   1896	6529	*	*	6069	6812	*	4357	6685	2062	6020	*	*	*	*	2975	2316	4384	*	7096	89
+       0	*	*	*	*	175	3131	8535	0	2324	
+
+V 90   1916	4078	6700	6311	*	2844	*	3118	*	3652	4280	*	*	*	*	3528	5126	2942	*	5472	90
+       7	*	7755	0	*	1151	864	8842	1012	1105	
+
+G 91   1996	5235	6318	3929	*	1784	*	5210	3835	5775	7473	6344	7382	4453	4256	3660	6107	5423	*	*	91
+       8	*	7437	0	*	0	*	8870	1001	1094	
+
+F 92   2380	6263	6112	3963	3774	7283	*	2785	7426	2494	5399	7154	6175	4766	*	5964	4627	3375	4669	4841	92
+       61	7489	4814	0	*	*	0	8832	1000	1000	
+
+Y 93   3609	4231	*	7168	4690	6291	5258	4034	6696	1722	4555	6882	*	5554	5526	5639	5198	4069	4624	2599	93
+       50	5198	7181	895	1113	1253	785	8773	1235	1278	
+
+L 94   2394	5873	4676	7069	4511	5523	5863	3674	7194	2216	4200	6219	*	5836	6259	3950	4156	3211	5891	5730	94
+       189	3687	4469	1766	502	*	0	8822	2008	1183	
+
+G 95   3159	*	5276	3575	5593	1957	4591	5129	5049	2890	4862	6894	*	3933	3931	5092	5184	7522	*	5122	95
+       177	3765	4571	1319	739	1028	972	8794	1534	1599	
+
+W 96   3653	6944	5241	3664	5073	4433	5335	5094	3626	4235	5150	7343	5616	4164	4152	3492	4584	5325	3624	2842	96
+       237	3850	3608	1047	954	2407	302	8763	1635	1613	
+
+L 97   3745	7170	5371	3597	7033	4700	4771	3611	3646	2511	5759	7010	5607	3563	4529	3941	3719	3717	*	*	97
+       416	2704	3365	1626	565	2912	206	8663	2390	2203	
+
+G 98   4107	6789	3288	4168	5840	2063	5688	5219	5603	4857	*	4455	3092	5048	3537	4541	4418	4689	*	6790	98
+       585	2019	3533	1494	633	1051	951	8527	2680	2594	
+
+G 99   4441	*	3181	4226	4686	1863	5419	*	4059	3435	5983	3640	4733	4861	6068	4554	5917	5010	*	5179	99
+       518	2227	3507	2080	389	849	1169	8639	2691	2682	
+
+E 100  3359	7241	3746	2837	6969	4475	4467	7074	3972	4984	6736	3937	2729	3801	3812	4213	4963	5813	*	6909	100
+       228	3192	4772	1446	660	579	1597	8611	1870	2384	
+
+G 101  4144	*	4401	4037	4483	2300	4882	5519	3305	4633	7436	4383	3663	7419	3547	3752	6171	3795	*	7365	101
+       115	3705	*	1065	938	634	1492	8785	1792	1735	
+
+K 102  4013	5946	3799	4212	7419	5016	6090	4257	3105	3802	5002	4386	3882	4507	3744	4160	3281	3753	*	7418	102
+       501	1768	*	907	1100	633	1494	8801	3115	1293	
+
+G 103  4629	5821	5807	4805	5788	1418	4938	4097	*	3610	6276	6799	3805	5873	4810	5719	5284	3593	5742	5031	103
+       104	3847	*	2231	346	654	1456	8845	1791	1140	
+
+R 104  3166	*	6829	5238	2280	6082	4930	5066	3922	4503	4385	*	6423	4444	3904	5462	4887	3372	4688	3385	104
+       197	3166	5963	1892	453	*	0	8871	2000	1010	
+
+A 105  3913	7130	6939	*	2871	7409	7042	3383	*	1163	5596	7009	6462	7376	5252	5489	4857	3723	*	5565	105
+       46	7144	5368	0	*	379	2112	8847	1000	1256	
+
+L 106  2779	8039	6784	5831	5514	3533	*	6848	5425	1905	4510	8018	4080	5790	4517	4082	4253	3159	6013	6785	106
+       110	3861	7812	1605	575	*	0	9576	1988	1193	
+
+G 107  2930	6611	*	3946	*	1365	*	*	3845	6523	7067	5675	6306	4222	5234	2863	4938	5657	*	6039	107
+       34	7324	5855	2322	322	701	1378	9574	1137	1233	
+
+V 108  3857	5712	6457	7131	5350	6191	5924	1970	6823	3687	3888	7119	6872	*	5659	3986	3918	2056	5829	7257	108
+       66	5797	5225	2236	344	821	1204	9611	1234	1199	
+
+G 109  5271	*	2964	3470	6217	4667	5409	6551	3109	5649	*	4247	4974	3548	2053	4929	4203	5918	*	5777	109
+       92	4010	*	529	1703	623	1512	9661	2301	1361	
+
+E 110  5293	*	2950	3108	7471	4347	4986	*	2941	6336	6885	2820	*	3673	3389	2903	5379	6052	8132	*	110
+       0	*	*	591	1573	0	*	9667	1086	1086	
+
+V 111  2526	4313	*	6942	3661	6770	*	3718	*	2953	3902	7344	*	*	7346	5544	5486	2120	4014	4065	111
+       0	*	*	*	*	*	*	9677	0	0	
+
+K 112  7468	*	4687	3643	*	6189	5748	*	1611	*	5856	5908	*	4495	1953	3930	3798	4801	7411	*	112
+       29	5662	*	1564	596	*	*	9677	1294	0	
+
+F 113  5184	4257	*	*	887	*	6744	5050	6683	4896	5074	6691	*	*	*	6228	6997	4477	3606	3199	113
+       43	5419	7401	1416	678	*	*	9677	1145	0	
+
+T 114  7181	*	6373	5908	4374	5936	3401	6033	3155	2666	6218	4641	4562	5314	2127	4891	4471	4175	*	4798	114
+       9	7312	*	1585	585	0	*	9649	1079	1070	
+
+G 115  2634	*	6052	5524	*	2756	4897	5948	2825	4979	*	5167	*	3899	2771	3071	5914	4354	*	7457	115
+       0	*	*	*	*	*	*	9677	0	0	
+
+Q 116  3658	7224	5068	4861	4152	5103	7978	6389	5211	4405	4462	6454	1395	3430	*	4245	5175	4215	*	6589	116
+       7	*	7790	*	*	*	*	9677	0	0	
+
+V 117  2798	6407	*	7261	5280	7309	5835	2748	7369	3364	7035	*	5291	7181	5648	5607	5305	1238	7279	*	117
+       7	*	7794	*	*	0	*	9680	0	1000	
+
+L 118  5829	*	6668	4743	3047	6928	5350	4253	4031	3098	*	5025	4758	6269	2639	4890	3605	3297	*	3439	118
+       0	*	*	*	*	*	0	9680	0	1001	
+
+P 119  3637	*	6265	7272	7042	6818	6071	5003	5336	4915	*	*	662	6744	5465	7683	5669	3582	*	7020	119
+       0	*	*	1000	1000	0	*	9680	1001	1001	
+
+T 120  4768	6812	4406	4192	*	814	5874	7002	5908	6088	5125	4016	4951	6120	7269	5786	5485	4927	*	6577	120
+       7	*	7687	*	*	*	*	9677	0	0	
+
+A 121  4366	5916	1170	2928	*	3196	5586	7053	7464	6986	6595	4212	*	4222	5586	4887	5279	6650	*	*	121
+       202	*	2933	*	*	*	0	9681	0	1000	
+
+K 122  4471	5608	3765	3432	*	5273	5652	*	3481	7248	*	5603	6110	3305	3613	4296	1920	3562	*	6866	122
+       2867	3903	329	0	*	42	5139	9614	1382	2396	
+
+K 123  *	5620	5525	2554	5737	*	*	5552	3373	3128	*	*	5349	3525	3563	4706	3023	2479	*	*	123
+       0	*	*	*	*	262	2591	7578	0	6036	
+
+V 124  4735	*	*	*	7577	*	*	2322	*	1044	3735	*	6601	*	*	*	*	2504	*	6545	124
+       0	*	*	*	*	82	4170	9376	0	2098	
+
+T 125  5659	*	4572	2965	6739	5181	4263	4307	4815	4008	5969	6461	*	4597	2702	4899	2198	3960	6444	5415	125
+       21	*	6087	0	*	0	*	9678	1003	1003	
+
+Y 126  3805	5116	*	*	3955	5852	6752	2579	*	1996	4883	*	*	*	*	5104	4799	2338	*	3415	126
+       26	6426	7299	0	*	646	1470	9667	1042	1174	
+
+R 127  4946	6313	3836	2326	6697	6686	4311	7786	3941	5261	6934	5422	*	4322	2848	3992	2618	4119	*	5924	127
+       16	*	6547	*	*	1322	737	9647	0	1151	
+
+I 128  2740	4305	*	*	5490	5562	*	2817	*	2925	4619	7018	*	6661	7332	3847	5239	1656	*	7636	128
+       34	*	5404	*	*	1169	849	9640	0	1225	
+
+H 129  5225	6362	4477	2515	5500	6937	3939	5555	3295	6798	*	4790	*	5209	3121	3781	2390	4745	*	4848	129
+       52	*	4820	1000	1000	614	1529	9641	1003	1409	
+
+F 130  3796	5188	*	*	4371	6099	6957	2055	5334	2839	5131	6958	5127	7607	5278	5730	5536	1855	6456	*	130
+       67	*	4453	*	*	*	0	9637	0	1488	
+
+K 131  4256	*	3580	3688	7244	7126	5389	4723	2620	3357	*	6114	7100	4667	3966	4518	2608	3083	*	*	131
+       6	*	7846	*	*	1395	690	9603	0	1889	
+
+R 132  3702	6155	3469	2173	5010	4410	5998	6469	3211	5491	6535	5436	5806	4485	3158	3219	4766	*	*	6765	132
+       323	*	2319	*	*	81	4194	9661	0	1572	
+
+I 133  4841	6886	*	4355	5373	5636	5330	2584	3255	3072	4754	5957	7291	5317	4919	4178	3791	2502	5715	7080	133
+       160	*	3251	206	2908	2529	274	9342	1260	2662	
+
+V 134  4566	*	3684	3914	4474	3943	*	3528	3639	3714	6117	*	*	4996	2127	3993	4591	4100	7098	5976	134
+       465	4007	2229	1081	924	4325	74	9212	1509	3124	
+
+N 135  3628	*	4437	2822	6831	5145	*	6987	3842	4563	5688	5707	3235	3574	2873	4038	4441	3863	*	4887	135
+       447	2682	3174	1018	982	1120	889	9011	1962	4195	
+
+R 136  3957	*	2583	3552	*	3794	*	6631	4335	4980	5262	4994	*	4471	3023	2332	4404	4359	*	*	136
+       240	3104	4760	860	1155	1340	725	9490	1605	3437	
+
+R 137  3636	*	3253	3656	4404	3245	6658	4974	2840	5203	*	5549	3169	4882	3089	4890	5025	7206	7069	6454	137
+       604	2354	2773	559	1639	393	2069	9493	2406	2873	
+
+L 138  4003	6656	3621	3467	4709	2850	*	7245	5152	6359	5446	3769	4129	4896	2386	3670	5401	5471	6250	5978	138
+       211	6191	3029	0	*	503	1765	9430	1083	2474	
+
+I 139  3974	*	3549	5922	5782	1379	*	6271	4795	4722	7210	3204	3544	6626	4145	4777	5947	5827	*	7156	139
+       18	*	6359	*	*	332	2284	9305	0	2217	
+
+M 140  4141	7559	5438	5556	3189	5910	5866	2677	7726	3192	3503	4977	6918	5101	3868	6036	3825	3149	6461	4510	140
+       54	5024	7314	0	*	1143	870	9576	1140	1397	
+
+G 141  2762	4417	*	6490	5976	2924	5238	3672	6190	3761	6562	7649	*	7813	6885	4378	4686	2033	4350	4448	141
+       102	4285	5868	2034	404	333	2277	9585	1427	1264	
+
+L 142  4332	6184	5070	4421	4681	6556	5318	3569	3757	3506	6112	7144	*	4573	3775	3953	2955	2390	*	5769	142
+       18	*	6296	*	*	565	1626	9595	0	1145	
+
+A 143  3081	4916	7080	7422	2218	5039	*	3967	7995	2859	5330	7250	*	6988	6194	5640	4645	2377	6197	3939	143
+       8	*	7416	*	*	1469	647	9579	0	1109	
+
+D 144  4016	7081	2363	2891	7685	5750	5264	5379	3172	7430	7386	5468	7195	4428	3253	3278	3510	5726	*	6084	144
+       34	5418	*	1710	526	1997	416	9595	1151	1105	
+
+G 145  2320	2855	6529	7082	4579	2307	5590	5584	*	4847	6423	5414	*	6251	5729	4673	4353	2665	6628	*	145
+       0	*	*	*	*	1104	903	9593	0	1063	
+
+E 146  4818	6933	4386	2353	5317	5953	*	4516	3382	5225	5552	7202	*	3905	3228	5437	2866	3095	5856	6771	146
+       7	*	7753	*	*	*	0	9600	0	1003	
+
+V 147  2328	4648	*	*	*	3599	*	2739	6769	2435	4991	*	*	*	7267	5241	4046	2254	*	*	147
+       0	*	*	0	*	1027	974	9603	1001	1069	
+
+L 148  5717	7432	7255	4501	4128	*	4696	4232	3200	3571	5494	7632	*	5074	3314	3523	2964	3514	4480	3691	148
+       88	4284	6949	196	2980	*	0	9600	1350	1003	
+
+V 149  4399	4857	4577	5472	6442	5445	5370	4635	5287	4825	6591	2326	7143	7142	4146	4987	4641	1699	*	4884	149
+       367	2156	*	551	1656	0	*	9580	2759	1074	
+
+D 150  3742	*	1976	3617	7601	2254	4705	6708	4822	*	*	2943	*	5250	3614	4713	6021	*	*	*	150
+       11	*	7102	*	*	*	*	9593	0	0	
+
+G 151  5927	*	2304	2929	*	1277	6466	*	4977	*	*	3619	*	5139	5252	4955	6005	6611	*	*	151
+       14	*	6697	*	*	*	0	9580	0	1010	
+
+R 152  5335	*	4160	1952	*	6518	*	5370	2648	5383	*	5207	7363	3351	2772	6351	3744	3685	*	*	152
+       9	7363	*	2367	311	1020	980	9537	1074	1082	
+
+L 153  5408	5664	5957	4272	6836	*	*	3708	3517	2407	*	6951	3505	6747	3582	6433	2685	2543	*	*	153
+       54	6631	5226	1000	1000	*	0	9573	1004	1010	
+
+I 154  2560	4323	*	*	5140	7387	6871	2575	7347	2798	6258	*	*	7468	*	*	5932	1425	*	6347	154
+       0	*	*	*	*	2031	405	9497	0	1194	
+
+Y 155  1669	3377	*	*	4241	4926	*	4250	*	2794	4552	*	*	4163	*	5093	5060	3391	*	4217	155
+       0	*	*	1000	1000	689	1398	9524	1057	1131	
+
+T 156  *	*	4924	2177	6505	7226	4158	*	3173	4833	7293	5508	6693	4125	3760	2742	2446	5797	*	7364	156
+       26	*	5797	2585	263	0	*	9549	1010	1010	
+
+A 157  2009	4886	6944	6989	5222	1850	*	4864	*	3335	5295	*	*	5712	*	4507	5384	3217	*	4504	157
+       24	*	5908	0	*	0	*	9530	1057	1057	
+
+S 158  4526	6808	4137	2271	*	5107	6224	4716	3780	6314	6695	4956	5219	4045	3647	3787	2650	3809	7477	*	158
+       134	*	3494	*	*	1398	688	9442	0	1181	
+
+D 159  3032	5644	4834	4391	*	3838	5436	4532	6222	4582	5125	2898	4884	6647	3566	2822	4026	3892	5483	*	159
+       0	*	*	*	*	551	1655	8181	0	1645	
+
+L 160  4998	*	5787	5001	5410	*	*	2590	3379	2160	2562	4994	5055	*	*	4325	4097	3822	*	*	160
+       0	*	*	*	*	602	1552	7977	0	1167	
+
+K 161  4235	*	5148	*	5065	2485	5867	3977	2772	3029	5196	6095	*	*	3729	3486	4392	3233	*	*	161
+       0	*	*	*	*	0	*	7906	0	1014	
+
+V 162  *	5971	*	*	4848	*	*	3005	*	1673	2888	*	*	*	*	*	5417	1504	*	*	162
+       45	5013	*	0	*	*	*	7755	1009	0	
+
+G 163  2554	4767	*	4435	*	3015	*	*	*	*	*	4474	4611	3627	2936	4842	3627	4725	3753	3356	163
+       0	*	*	*	*	*	*	6040	0	0	
+
+L 164  *	*	*	4444	3574	*	*	2028	4744	1581	3644	*	*	*	*	*	4517	2946	*	*	164
+       0	*	*	*	*	*	*	5852	0	0	
+
+F 165  3430	*	4089	4235	2515	*	*	3933	4355	*	*	*	*	*	2758	4451	*	1678	*	*	165
+       0	*	*	*	*	*	*	5337	0	0	
+
+Q 166  *	*	2848	2908	*	*	*	*	*	*	*	*	1508	1410	*	*	*	*	*	*	166
+       0	*	*	*	*	*	*	4075	0	0	
+
+D 167  *	*	2397	2274	*	2308	*	*	2359	*	*	*	*	*	*	2276	*	*	*	*	167
+       0	*	*	*	*	*	*	3128	0	0	
+
+T 168  *	*	1682	*	*	*	*	*	*	*	*	*	*	*	*	*	539	*	*	*	168
+       0	*	*	*	*	*	*	2177	0	0	
+
+S 169  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	169
+       0	*	*	*	*	*	*	1638	0	0	
+
+A 170  0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	170
+       0	*	*	*	*	*	*	1000	0	0	
+
+F 171  *	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	171
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  3155c91c2cbf7967cb4ba20d80ff989c
+FAM   
+FILE  3155c91c2cbf7967cb4ba20d80ff989c
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:34:41 2013
+LENG  142 match states, 142 columns in multiple alignment
+FILT  169 out of 1174 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.6 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCHHHHHHHHHHHHHHHHCCCCCCCHHHHHHHHHCCHHHHHHHHHCCCCHHHHHHHHHHHHHHCCCCCCCCCCCCCCCCCHHHHHHHHHHHHHHHHCCC
+CCCCHHHHHHHHHHCCCCHHHHHHHHCCCCHHHHHHHHHCCC
+>ss_conf PSIPRED confidence values
+9689999999999999999299940599999999868579999999399999999998988873044567777767777699999999999999998599
+854799999999826430899999996999999999987359
+>Consensus
+xxtxxxxxxlxxAxxxAxxxxxxxixxeHlLxallxxxxxxxxlxxxgxxxxxlxxxlxxxlxxxxxxxxxxxxxxxxxxsxxxxxxlxxAxxxaxxxxx
+xxixxxhLllalxxxxxxxxxxxLxxxgixxxxxxxxixxxx
+>3155c91c2cbf7967cb4ba20d80ff989c
+MLNQELELSLNMAFARAREHRHEFMTVEHLLLALLSNPSAREALEACSVDLVALRQELEAFIEQTTPVLPASEEERDTQPTLSFQRVLQRAVFHVQSSGR
+NEVTGANVLVAIFSEQESQAAYLLRKHEVSRLDVVNFISHGT
+>gi|58270056|ref|XP_572184.1| chaperone [Cryptococcus neoformans var. neoformans JEC21]gi|57228420|gb|AAW44877.1| chaperone, putative [Cryptococcus neoformans var. neoformans JEC21]
+-------------------------------------------------------------------------------------------------MLA
+RKHLIRTARLSI-PRPSV--ATRAVALGFVRTYAQGPP----
+>gi|257440207|ref|ZP_05615962.1| Clp protease, ATP-binding subunit ClpC [Faecalibacterium prausnitzii A2-165]gi|257197241|gb|EEU95525.1| Clp protease, ATP-binding subunit ClpC [Faecalibacterium prausnitzii A2-165]
+-PAIIFVQRMENGQMKNEGYCLHCAREMHI--------kPVDDLMKQFGMSDEDM-DAMEDRMENmM-QEM---------gdmSNMNPFSMMMGMGQPDQ
+SEEDGDLVPGSSATFPL-gVNGGA-------QNGKNEKK---------
+>gi|303273680|ref|XP_003056193.1| predicted protein [Micromonas pusilla CCMP1545]gi|226462277|gb|EEH59569.1| predicted protein [Micromonas pusilla CCMP1545]
+----------------------------------MTSDverVRVALMMSAGVTTAAVLVLSSKTVRGA----IaG-TL-KSVA-STiQPTELIEAFDKSD
+TPV----INTKMTNISSVqS--QAS-EP--LNTGIPHDIAPKNM----
+>gi|302664673|ref|XP_003023964.1| hypothetical protein TRV_01906 [Trichophyton verrucosum HKI 0517]gi|291187987|gb|EFE43346.1| hypothetical protein TRV_01906 [Trichophyton verrucosum HKI 0517]
+---KEEEKDFFPSERSGDRGGRLPWATRRELGGELHGWdRTAAFWS-------L---REGPSTRGR-PSQ-------RL-dI--iyiyikgkawyvglqq
+vkahtmscrlvmRGSRQLLQAPRAAAHInttarRGLYgllprqlskqyVPASGFVRHY-A--NGR-PH--PPGGTHRMN---------
+>gi|50294636|ref|XP_449729.1| hypothetical protein [Candida glabrata CBS 138]gi|49529043|emb|CAG62705.1| unnamed protein product [Candida glabrata]
+-------------------------------------------------------------------------------M---LS-RVCRSSLRNSVARV
+-SRYAGPRALALSMV---VSGRQVSG------S---------
+>gi|55376027|gb|AAV50022.1| heat shock protein 104 [Pleurotus ostreatus]
+-FTDKTRRTITAAVQLAKDYANAQVHPVHIASALLNDTgedeqsgglgdtssssrsqsLFHSAISKAGGDPAVVKRGIQRAVVRL-PTQD-P-PPEEVYF
+SGPALKVVREAQSLQKTMHDSYIAQDHLLLAVLKDA--TIQAIIKEAGLTEATLKTAI----
+>gi|342839815|ref|ZP_08713678.1| ATP-dependent Clp protease ATP-binding subunit clpE [Streptococcus criceti HS-6]
+-------------------------------------------------------------MLCQnCKLN----DASIHLYANVNGQ-------------
+QKQIDLCQNCYRIMKaDPENILNSNLTSqnpQNQSMDSFFD------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	3704	3529	1689	2849	3273	3570	*	3246	*	3402	*	*	1
+       1274	3246	1056	0	*	*	*	4341	1031	0	
+
+L 2    *	6439	6326	*	1487	*	*	5144	*	1725	4082	*	5576	*	*	6373	5560	4545	5557	3171	2
+       0	*	*	*	*	0	*	8878	0	1701	
+
+N 3    4060	*	3272	6807	*	5916	6150	6414	6568	*	*	3446	*	6442	*	1648	1505	*	*	*	3
+       12	*	6866	*	*	*	*	9051	0	0	
+
+Q 4    4285	6329	3363	2315	*	5525	5070	4986	3905	4713	6739	4474	3249	3713	3775	3937	4545	4914	*	*	4
+       0	*	*	*	*	0	*	9552	0	1000	
+
+E 5    3364	6284	3429	2553	6055	5665	5123	4326	3120	5904	6057	4069	*	4409	3640	3699	4122	5430	*	5485	5
+       0	*	*	*	*	*	*	9549	0	0	
+
+L 6    1762	4622	*	5500	5028	5511	*	5664	*	2155	4747	6350	*	*	*	4584	3820	2445	*	*	6
+       11	7032	*	1000	1000	*	*	9581	1000	0	
+
+E 7    4027	6394	5165	3737	6118	5661	6298	4295	3184	5027	5852	3949	*	2664	2926	4891	3832	4438	4740	5234	7
+       0	*	*	*	*	*	*	9596	0	0	
+
+L 8    4058	*	4357	2831	7036	5613	5464	*	2932	5786	6080	3504	*	2874	2926	3742	5159	4455	*	4986	8
+       0	*	*	*	*	*	*	9565	0	0	
+
+S 9    1863	6058	6138	*	6873	6145	*	2381	*	2920	5518	*	*	*	6300	3886	4234	2612	*	5051	9
+       0	*	*	*	*	*	*	9538	0	0	
+
+L 10   6862	*	*	*	2775	*	6470	2302	*	1072	4013	*	*	*	7182	6897	*	3770	*	7581	10
+       10	*	7197	*	*	*	*	9538	0	0	
+
+N 11   3891	*	3511	2432	6126	5403	4697	5099	4467	4851	5589	3695	*	3400	3799	3730	3922	3986	*	7669	11
+       16	*	6465	*	*	*	0	9535	0	1004	
+
+M 12   2928	5902	3584	3529	4481	4702	5467	4049	4553	3439	5212	3898	6010	4014	4147	3889	6038	4549	*	5186	12
+       0	*	*	*	*	1567	594	9481	0	1261	
+
+A 13   532	6598	*	*	*	3629	*	*	*	6910	*	*	*	*	*	2644	5594	5156	*	*	13
+       0	*	*	*	*	*	0	9485	0	1131	
+
+F 14   3291	*	7796	3399	5133	5521	5663	4452	3977	3844	4894	5209	*	2183	3643	4967	4967	3346	*	5239	14
+       0	*	*	*	*	*	0	9485	0	1131	
+
+A 15   3475	*	3514	2580	7089	4571	5874	6972	3563	4529	5114	4181	6910	3126	3514	3501	4646	6200	*	5907	15
+       9	7387	*	1585	585	*	0	9485	1000	1131	
+
+R 16   4644	7036	6845	2046	4460	7161	6102	3147	4366	2388	5777	5539	*	4724	4585	4359	6228	4060	7560	4815	16
+       0	*	*	0	*	1611	572	9498	1000	1255	
+
+A 17   428	4016	*	*	*	5500	*	*	*	4960	6858	6282	*	7931	6495	3839	6082	5686	*	*	17
+       0	*	*	*	*	*	0	9485	0	1131	
+
+R 18   4207	*	5760	3963	5181	4815	6321	3490	2586	3308	6045	4887	*	4089	2641	4915	4214	4278	6812	5998	18
+       0	*	*	*	*	0	*	9485	0	1131	
+
+E 19   3333	6168	4843	3309	7349	4364	*	6181	2885	4823	5988	4271	*	3601	2294	3509	4877	6714	*	5228	19
+       0	*	*	*	*	*	*	9544	0	0	
+
+H 20   4715	*	5527	5026	4346	5024	3952	*	4718	2408	4062	3712	6497	5276	2408	5803	5085	5587	6807	3323	20
+       9	*	7401	*	*	*	*	9544	0	0	
+
+R 21   5155	5687	4986	6028	6880	1827	3630	*	2973	*	7305	3576	*	3797	2878	3945	5943	*	*	5174	21
+       27	*	5739	*	*	*	0	9555	0	1000	
+
+H 22   4031	5323	3731	6410	*	4431	1757	6958	6025	5721	6559	2901	*	3604	4100	3649	6033	4951	6783	5596	22
+       0	*	*	*	*	501	1769	9568	0	1299	
+
+E 23   3547	6821	4132	3280	6854	4545	5635	5352	4589	4968	*	3235	3494	3253	3786	3554	3685	6755	*	4985	23
+       0	*	*	*	*	0	*	9597	0	1000	
+
+F 24   4921	6340	5552	2777	3420	*	5739	4576	5397	4649	5316	4682	6167	3097	6108	3529	3747	4855	*	2602	24
+       0	*	*	*	*	*	*	9588	0	0	
+
+M 25   4852	7294	*	*	7220	*	*	1476	*	2192	5302	*	7125	*	*	*	5509	1752	6167	6853	25
+       16	*	6548	*	*	*	*	9588	0	0	
+
+T 26   3946	*	2588	2883	*	3065	6580	*	5708	5520	5690	7028	*	4984	4449	3165	2160	6234	*	6747	26
+       0	*	*	*	*	*	0	9544	0	1080	
+
+V 27   4652	6962	6503	4516	6914	5841	*	3693	*	4483	*	6209	1813	6181	6837	3154	2122	3523	*	*	27
+       0	*	*	*	*	0	*	9544	0	1080	
+
+E 28   3302	6669	4538	1067	7234	5553	7199	4692	7484	3511	5711	6083	4167	6754	5662	5979	7357	4703	6911	6101	28
+       0	*	*	*	*	*	*	9588	0	0	
+
+H 29   6470	7419	4304	*	5101	*	376	7813	*	5792	5296	6073	*	7036	4866	7006	*	6347	*	7000	29
+       0	*	*	*	*	*	*	9588	0	0	
+
+L 30   7051	*	*	6167	4252	*	*	2465	*	1017	5542	*	*	6942	*	*	6510	2748	4293	6590	30
+       28	*	5695	*	*	*	*	9588	0	0	
+
+L 31   3872	*	*	*	3079	*	*	7465	*	544	4497	*	*	*	*	*	5924	4402	6159	*	31
+       10	*	7184	*	*	1561	597	9504	0	1207	
+
+L 32   3750	6664	7411	5140	4248	5082	4999	4067	4175	1520	5106	5995	6482	5017	6043	4011	*	5149	4081	4231	32
+       8	*	7498	*	*	1548	604	9508	0	1208	
+
+A 33   1257	5208	*	5370	7340	2504	7158	5003	5725	7121	7157	6708	7238	5301	*	3114	4410	3940	*	7080	33
+       0	*	*	*	*	1649	554	9507	0	1197	
+
+L 34   4578	7414	*	6146	4474	*	*	2625	*	1005	2971	*	*	6147	*	*	5817	3995	*	6545	34
+       33	*	5488	*	*	*	0	9512	0	1094	
+
+L 35   3957	7524	*	*	3386	*	*	3295	*	969	4127	*	6572	*	*	7017	5014	3370	6909	6612	35
+       62	5017	6518	0	*	*	0	9429	1416	1597	
+
+S 36   4270	7151	3272	2513	6356	7404	4478	7453	2913	5621	6816	3672	7067	3912	4028	3129	3497	6040	*	*	36
+       89	4224	7364	1933	438	3130	175	9433	1774	1772	
+
+N 37   4434	*	2262	2935	7173	4377	6107	6845	5102	4170	5065	3651	5690	2908	5152	3842	4237	5306	*	6238	37
+       47	5247	7399	583	1589	3576	126	9434	1319	1814	
+
+P 38   5657	7033	2209	3075	*	3915	7555	5978	3469	*	*	3903	2565	4422	4269	3279	7292	*	5957	*	38
+       1910	460	7160	810	1218	1072	932	9430	8145	1828	
+
+S 39   4429	7316	3327	3532	4888	4970	6193	3631	4662	3212	7071	5637	3371	4911	3585	4088	4111	3616	*	6082	39
+       102	3879	*	1217	811	1828	477	9500	2202	1705	
+
+A 40   1795	5532	6751	6908	3318	4618	*	3672	*	3049	*	7002	7217	6390	6674	4382	3844	2868	*	4589	40
+       0	*	*	*	*	2674	246	9513	0	1477	
+
+R 41   2668	6348	4671	5035	6014	4310	5344	4562	3986	5110	6014	4135	4571	4646	3110	3138	4903	4426	6904	3975	41
+       21	6848	7445	0	*	*	0	9510	1020	1385	
+
+E 42   3376	7475	3330	3358	7390	4827	6231	5646	2883	5190	*	3996	5767	3578	2451	4137	5557	5583	*	5873	42
+       41	5843	6586	0	*	2511	278	9510	1213	1491	
+
+A 43   3147	6118	*	6700	3688	6043	*	1820	*	1958	5657	*	*	7046	7272	7134	4213	3287	5821	6087	43
+       9	7391	*	2322	322	1804	487	9470	1000	1584	
+
+L 44   5213	5273	*	*	3021	*	*	3439	*	843	3863	*	*	*	*	7111	*	4180	5469	5600	44
+       30	*	5626	*	*	1313	743	9523	0	1506	
+
+E 45   3990	*	5632	2629	7277	4547	5442	5184	2786	5449	5845	4256	6589	3292	2975	3487	4256	4768	*	*	45
+       50	6935	5262	1000	1000	2294	329	9649	1015	1627	
+
+A 46   3737	5939	3397	3727	7309	4307	3905	*	2764	5101	6297	5120	6202	3808	3117	2671	5488	*	*	5853	46
+       62	6989	4879	1000	1000	*	0	9500	1002	1972	
+
+C 47   2767	3282	*	6890	3299	*	4307	4477	5498	2164	5201	4263	*	4267	5902	4393	5373	4947	5851	5054	47
+       0	*	*	*	*	2866	213	9480	0	2478	
+
+S 48   6780	*	3943	4633	5783	936	4850	*	4871	6038	*	3053	5434	*	5224	4006	7089	7577	*	6025	48
+       11	*	7006	*	*	*	0	9488	0	2275	
+
+V 49   3506	5658	5853	7000	6056	3445	*	1914	6724	3046	5627	6885	4838	*	*	5512	4402	2244	7111	6243	49
+       54	5104	7000	577	1600	*	0	9484	1339	2385	
+
+D 50   5257	*	1477	5566	*	5902	7275	7194	5276	7045	*	2435	5525	5247	5346	2964	3115	6152	*	6054	50
+       57	4698	*	987	1014	2355	314	9422	1516	2598	
+
+L 51   4031	7054	5371	3708	4998	6878	6247	3046	4874	2703	4824	*	3450	6061	4871	4402	3902	3104	7213	4166	51
+       12	6968	*	2807	222	2168	363	9536	1002	2286	
+
+V 52   3144	*	2373	2734	6019	3686	*	6306	3617	5682	*	3925	4592	4257	4609	4402	4630	4801	*	6305	52
+       24	6582	7338	1440	664	173	3149	9464	1166	1990	
+
+A 53   2432	*	3906	2849	*	4427	*	4922	3028	4521	6443	4516	5912	3967	3769	4020	4950	5042	7311	5393	53
+       97	5045	4842	1935	437	*	0	9676	1687	1105	
+
+L 54   3702	7258	7190	6902	3558	*	7410	2943	*	1320	4017	*	*	7031	*	6184	6291	2651	*	5337	54
+       27	*	5743	*	*	*	0	9524	0	1860	
+
+R 55   3807	*	6438	3677	7301	7519	7082	4198	2804	2817	6477	4978	7071	4241	2231	4706	5056	4513	7015	4512	55
+       0	*	*	*	*	2083	388	9418	0	2170	
+
+Q 56   3184	*	3021	3138	7367	5139	5937	5183	3324	4338	*	4415	5725	4022	2738	3456	4601	6746	*	7209	56
+       8	*	7412	*	*	403	2035	9520	0	1880	
+
+E 57   2363	5360	3214	2455	7140	7438	*	4807	5077	3696	*	4939	*	4525	3644	3878	5293	4333	6853	5163	57
+       82	4171	*	0	*	579	1597	9734	1796	1251	
+
+L 58   4142	7472	*	4963	5516	*	6658	2237	7288	1589	4203	*	*	6766	*	5133	4162	2513	*	*	58
+       62	4792	7326	4228	79	*	0	9746	1559	1000	
+
+E 59   4116	*	2990	2175	*	3731	5268	4836	3287	7529	6414	4564	7279	3393	3611	4929	4577	5329	6874	7536	59
+       31	6016	7437	2444	293	*	0	9736	1273	1229	
+
+A 60   3364	*	3463	3360	7235	5149	5553	6239	3506	4891	6011	3187	5408	4137	2879	3358	4161	5128	*	*	60
+       20	6171	*	1951	432	2206	352	9828	1104	1326	
+
+F 61   3339	*	6046	3456	3942	5487	6174	4040	4106	3559	5637	6654	*	4634	3547	2987	4150	4055	*	3451	61
+       38	6399	6128	0	*	*	0	9815	1075	1347	
+
+I 62   5512	*	5700	5311	3892	*	6150	2619	5176	1422	3922	*	*	7086	5360	5171	4711	3409	6891	5482	62
+       30	7168	6209	0	*	2584	263	9812	1142	1597	
+
+E 63   3858	*	3069	3175	*	2871	5970	5152	4144	4627	*	3617	5106	4168	3517	3582	4005	5375	*	*	63
+       111	4606	4934	2606	259	1677	541	9831	1551	1738	
+
+Q 64   3744	5818	4218	3269	5761	3957	5794	5396	2503	7047	5997	3745	5380	3419	3423	3806	5136	6179	*	5217	64
+       39	5845	6784	647	1469	2249	341	9714	1377	2264	
+
+T 65   4459	*	5334	4431	5023	3223	4760	3968	4346	2817	4615	4330	7376	2813	4418	4519	4228	5170	6882	4849	65
+       1695	3740	698	1786	494	*	0	9736	2198	2109	
+
+T 66   4951	5468	4850	4734	5462	5812	4840	3330	4210	2953	4197	3638	3569	*	4811	5782	3143	3229	*	5502	66
+       195	2986	*	882	1129	182	3077	8203	1676	7895	
+
+P 67   3414	*	3965	3653	*	3862	7654	5415	5281	*	*	5516	1339	4207	4636	3667	6147	5111	*	7267	67
+       102	5305	4536	414	2003	3758	111	9622	1288	2351	
+
+V 68   3964	*	5743	4420	5804	4810	5898	5063	2633	5132	5465	5421	5187	3696	3707	2350	3342	4093	*	*	68
+       303	4314	2848	833	1188	2014	410	9591	1701	2954	
+
+L 69   4063	6874	3657	6638	5894	3627	5883	3594	*	4089	4728	5383	4858	4116	4379	3551	3895	2281	*	5272	69
+       595	3888	1886	815	1212	1936	437	9494	1884	4171	
+
+P 70   3556	*	3752	2575	6454	4121	5406	4772	5027	5863	6342	3535	3740	4701	5532	2500	5012	4510	*	6538	70
+       559	4092	1929	419	1987	1979	422	9029	1560	6195	
+
+A 71   4266	*	3252	3537	5312	1787	6068	6030	4840	4739	*	3444	4604	4896	4853	3570	5130	6417	*	6184	71
+       417	4346	2308	963	1038	2736	235	8818	1389	6695	
+
+S 72   4325	*	3715	4035	*	5618	*	6210	4035	4016	*	3193	2179	4398	4407	2770	4839	4323	*	*	72
+       438	4642	2172	356	2192	3930	98	8552	1239	7048	
+
+E 73   3813	*	3542	2616	*	3603	5979	4184	6020	4800	5017	4058	4440	4400	4591	4452	4176	2925	*	5888	73
+       555	4509	1861	2317	323	1976	423	8446	1177	7543	
+
+E 74   3898	*	3953	3379	6299	5241	*	4220	4205	4978	*	6398	2207	3689	4781	3187	3692	4335	*	6111	74
+       546	2503	2848	1342	723	425	1972	8446	2224	7428	
+
+E 75   3854	7106	4200	3434	7046	3083	6969	4924	4306	4237	*	5218	3287	4780	4665	3169	3775	4118	*	4068	75
+       186	4235	3886	1553	601	1227	804	9430	1828	4210	
+
+R 76   4802	6650	3544	3163	5967	2163	*	7654	4900	5433	*	3993	7188	4855	4018	3111	3249	4914	*	4798	76
+       110	5431	4320	1088	917	1197	827	9454	1276	3861	
+
+D 77   3922	*	3423	2874	7347	4384	4126	4085	4085	4017	*	3525	4723	3159	3704	4179	5980	7067	*	5537	77
+       85	4283	7415	2085	388	1767	502	9482	1739	3564	
+
+T 78   4902	*	6019	5832	4954	6165	6067	2801	*	2305	6003	*	2356	4687	4937	4233	4579	3008	*	5326	78
+       142	4607	4253	2741	234	70	4396	9529	1734	2949	
+
+Q 79   4158	*	4082	3886	4864	3742	6208	4510	4487	4147	7211	5700	3086	4288	3486	3561	4529	4298	6658	3703	79
+       24	*	5934	0	*	1552	602	9621	1144	1981	
+
+P 80   4335	*	7261	7163	2315	*	*	3257	6005	1826	3770	5462	3804	5353	*	6034	6207	4264	6082	4440	80
+       59	7265	4900	2000	415	1131	880	9646	1000	1979	
+
+T 81   3801	*	4420	5552	*	4036	7306	5068	7035	6963	6465	4713	*	7026	6060	941	2694	*	*	*	81
+       0	*	*	*	*	3768	110	9631	0	2272	
+
+L 82   3880	*	3626	3535	7001	3982	5233	6873	4861	5680	*	3810	2461	3284	3759	3791	4176	5757	*	5095	82
+       40	5181	*	3122	176	2338	318	9634	1795	2176	
+
+S 83   3354	*	3603	2979	7606	4089	4890	6268	4038	5219	6987	4335	5282	3694	3018	2974	3967	6282	*	7191	83
+       0	*	*	*	*	916	1090	9736	0	1933	
+
+F 84   2725	6286	*	7100	3536	5292	*	3843	*	1628	4768	6085	6726	6036	*	4259	3702	3266	*	6084	84
+       0	*	*	*	*	1001	999	9922	0	1385	
+
+Q 85   4120	*	4435	3102	5751	5719	6025	4964	2684	5635	5105	4273	7151	3898	3379	3601	3432	3530	*	7275	85
+       21	*	6099	*	*	*	0	9960	0	1132	
+
+R 86   3425	*	4594	2308	7238	6220	6126	7163	2963	4803	5879	4476	5533	3858	2633	4264	4002	5984	*	6139	86
+       14	*	6687	*	*	2345	316	9767	0	1592	
+
+V 87   2574	7449	*	*	7532	*	6954	2621	*	2191	4282	6986	*	4965	5960	4653	5398	2163	4744	*	87
+       18	7292	7367	0	*	2273	335	9765	1059	1765	
+
+L 88   6329	*	*	7014	3318	*	*	2554	*	996	4169	*	7191	*	5774	*	6891	3362	6728	6389	88
+       0	*	*	*	*	2700	241	9768	0	1760	
+
+Q 89   3841	7731	3594	2022	*	4049	*	5356	3829	4145	6238	4043	7930	3272	3369	4282	5168	5686	*	7007	89
+       14	6702	*	455	1887	2065	394	9760	1166	1629	
+
+R 90   3135	7245	3241	3466	5268	5463	5049	4697	3434	3735	5891	3513	7336	4216	2947	4543	5580	6314	7039	5635	90
+       15	*	6612	*	*	*	0	9712	0	1557	
+
+A 91   593	7677	*	*	6829	4075	*	6076	6803	5470	6052	*	*	*	6329	3012	5093	4752	*	*	91
+       11	*	7010	*	*	3029	189	9718	0	1736	
+
+V 92   4722	6149	4810	2815	4421	5274	5802	4428	4453	3521	8191	5075	6229	4163	4268	3666	4731	3300	3760	4192	92
+       0	*	*	*	*	*	0	9779	0	1761	
+
+F 93   4024	*	3658	3734	5809	4873	5310	4167	3107	3228	5124	3972	5818	3318	3443	4065	5335	4840	*	7195	93
+       0	*	*	*	*	*	0	9779	0	1761	
+
+H 94   4903	*	5553	2622	5754	5571	5213	2842	5103	3031	5202	5056	7449	5774	4495	4142	4206	4389	6214	2967	94
+       24	*	5947	2000	415	3523	131	9779	1000	1761	
+
+V 95   1055	6213	5483	6899	*	5579	7120	5534	3966	4332	4185	6272	*	4108	4995	3361	5747	4719	*	*	95
+       68	5352	5520	816	1211	3455	138	10269	1309	2035	
+
+Q 96   3445	*	4699	3346	6689	6884	4599	4879	2914	4448	6962	3883	7344	3600	2848	3488	4084	5906	*	4996	96
+       40	5659	7038	782	1257	4148	84	9669	1311	2653	
+
+S 97   3203	*	4376	3240	6729	6273	5687	5527	2960	3643	6236	4810	6308	4509	2887	3459	3960	4647	*	5080	97
+       183	3068	*	1078	926	3927	98	9829	2911	2739	
+
+S 98   3687	6008	*	4959	3791	5135	5563	5582	6996	2276	2897	4519	*	5075	3591	3855	5070	4582	5014	4173	98
+       62	5351	5835	1778	497	341	2246	9717	1360	3560	
+
+G 99   5373	*	3549	5019	7241	1460	4750	7177	3546	5056	*	3581	5557	4123	4105	3550	6285	6486	*	*	99
+       38	6954	5818	2980	196	1660	549	9875	1154	1878	
+
+R 100  2998	5858	1889	4464	7098	4200	4408	*	4799	5479	*	4592	6768	4335	3325	3024	5660	5468	*	6655	100
+       9	*	7353	*	*	2927	203	10603	0	1870	
+
+N 101  3908	*	3397	2571	7201	4697	5544	*	3750	4636	7682	3902	4689	4601	3759	2651	3939	4685	*	*	101
+       169	4749	3767	2018	409	1661	548	10219	1620	1878	
+
+E 102  4007	*	6851	3538	3265	*	5471	4948	4401	3442	5660	5687	5526	3944	4493	4182	4719	3495	7297	2424	102
+       69	4424	*	2049	399	232	2752	10589	1868	2847	
+
+V 103  3945	7639	*	*	*	7038	7805	1532	*	2533	4421	6039	*	*	6090	7226	5531	1763	*	*	103
+       10	7226	*	2322	322	*	0	10799	1000	1193	
+
+T 104  3366	*	2763	3962	*	2922	6357	7105	5389	4634	*	4371	4414	7447	3993	2406	3239	7416	*	6400	104
+       0	*	*	*	*	1500	629	10799	0	1193	
+
+G 105  3852	4960	7122	4423	*	4153	*	3358	6670	4351	*	5490	3009	6773	*	3145	2422	2596	6422	*	105
+       0	*	*	*	*	*	0	10809	0	1080	
+
+A 106  3876	5480	3302	1791	6248	3301	7094	4318	5112	5598	5950	6418	4745	4600	4249	3655	5310	4884	*	*	106
+       30	5585	*	553	1651	*	0	10809	1328	1080	
+
+N 107  3919	6112	2957	6394	6016	6146	1165	5609	7933	4942	5484	5173	5063	5413	6874	4567	4511	5691	6550	5800	107
+       0	*	*	*	*	0	*	10804	0	1188	
+
+V 108  5024	*	7488	*	3565	*	*	2759	7991	964	6514	6941	*	7423	6446	5455	6561	2854	*	7191	108
+       0	*	*	*	*	*	*	10854	0	0	
+
+L 109  4555	6941	*	*	3561	7179	*	3672	5953	940	6580	6561	6658	5390	6053	7142	5242	2921	7270	*	109
+       6	7974	*	0	*	*	*	10854	1000	0	
+
+V 110  3916	5072	*	5670	5530	5495	6157	2764	5289	1509	4553	5401	6695	4345	4123	5325	5793	5699	5956	4592	110
+       0	*	*	*	*	*	0	10730	0	1000	
+
+A 111  917	5479	*	6259	7001	2606	5866	*	5084	6740	*	5326	6304	5574	6123	3410	5619	5683	*	*	111
+       10	*	7184	*	*	*	0	10730	0	1000	
+
+I 112  5050	7445	*	*	4026	*	*	2393	6871	1276	3065	*	*	6465	*	4799	4766	3930	7358	6002	112
+       113	6691	3929	0	*	*	0	10722	1059	1101	
+
+F 113  3348	5859	7113	*	2966	*	7091	3949	*	1572	3435	*	6802	7051	*	5431	5009	3180	4436	5552	113
+       126	3703	7195	1344	723	72	4363	9639	2782	2907	
+
+S 114  3789	*	3212	3059	6272	5787	4653	7541	3314	4337	5788	3959	7291	3142	3318	3467	4237	6755	*	5766	114
+       145	5064	3934	444	1917	1543	606	10700	1515	1198	
+
+E 115  4675	5738	2427	2919	*	5034	5607	6374	4238	3317	*	3639	5436	4149	6344	3956	3469	4244	*	5167	115
+       156	7267	3383	0	*	*	0	10507	1000	2569	
+
+Q 116  4877	*	3184	3054	*	3443	5641	5711	3145	*	6721	3988	2768	4497	4539	3285	4065	5473	*	*	116
+       138	*	3450	*	*	937	1066	9452	0	3907	
+
+E 117  4787	*	2487	3234	*	3944	5200	6893	5487	5459	*	3067	5644	4290	3752	2492	4110	5109	*	7897	117
+       93	5072	4925	0	*	597	1561	10277	1308	3569	
+
+S 118  4597	4041	4456	5128	7152	2795	6999	7145	4377	3735	7527	3949	5537	5576	4770	1997	3686	4591	*	6027	118
+       262	4099	3212	862	1153	613	1530	9828	1796	2524	
+
+Q 119  3910	*	4951	4442	4321	4713	5911	3893	6937	3691	5391	4569	4206	4859	3410	4113	4143	3575	4377	3289	119
+       101	*	3888	*	*	1398	688	9698	0	3683	
+
+A 120  1538	6904	*	*	4315	4175	*	3619	6326	3554	6923	*	5351	5071	5860	3407	3874	3054	*	*	120
+       16	*	6470	*	*	713	1359	9325	0	3860	
+
+A 121  2771	4325	*	5298	6118	3642	5161	5384	3522	4367	7266	3508	5219	5097	3247	3386	4255	4382	*	4492	121
+       83	4384	7012	0	*	468	1851	9766	1912	2365	
+
+Y 122  4284	7194	4434	3437	5982	5056	5218	5482	3101	4429	7433	4357	4836	4065	2628	3861	4107	4607	*	3916	122
+       62	*	4561	*	*	1295	755	10624	0	1426	
+
+L 123  4736	5929	7463	6389	4281	6921	6910	2402	6276	1864	5597	6104	6777	5240	4325	4931	5132	3460	4855	3712	123
+       0	*	*	*	*	2832	218	10434	0	2214	
+
+L 124  4936	7495	*	*	3275	7345	*	3932	5966	719	4217	*	5975	7013	6151	6119	*	4554	*	6063	124
+       26	6624	7079	2302	327	290	2459	10424	1066	2038	
+
+R 125  3034	*	5094	3294	5653	4561	4837	5109	2606	3898	6308	3625	5967	4187	3547	4175	4099	5303	*	*	125
+       31	6000	7472	2882	210	608	1540	10640	1351	1209	
+
+K 126  3404	*	3791	2567	6057	6582	7140	7173	2764	6031	6882	4086	5819	3311	3320	3212	4149	6344	*	*	126
+       87	6155	4495	1585	585	*	0	10425	1164	1212	
+
+H 127  2738	6068	7203	4966	3827	4692	5250	4542	5019	2463	5114	4143	5877	4156	7174	3806	4741	5350	*	3225	127
+       167	3550	5385	111	3749	886	1124	9792	2284	2172	
+
+E 128  5099	*	4822	3863	*	884	5584	6828	6937	7137	*	3211	4341	4969	6479	4388	5325	7189	*	*	128
+       0	*	*	*	*	585	1584	10343	0	1937	
+
+V 129  3851	7049	7039	6069	3896	7264	*	1759	5446	2668	5308	*	6027	5005	*	5408	5206	2219	*	6166	129
+       55	*	4739	*	*	*	0	10324	0	1240	
+
+S 130  5640	*	2517	5017	6487	5524	5852	6526	4186	6174	5848	2854	5661	4140	4973	2703	2498	4324	*	*	130
+       65	5382	5620	2300	327	1493	633	10617	1425	1853	
+
+R 131  3994	*	6811	3526	6198	5888	4404	3958	3843	3094	4818	6799	3536	4676	3361	4596	3700	4052	*	3898	131
+       0	*	*	*	*	1542	607	10581	0	1829	
+
+L 132  3352	6626	3110	2894	5744	6741	5198	4433	2947	4596	5039	4052	4116	3811	4870	4182	4514	5935	*	*	132
+       11	*	7050	1000	1000	0	*	10628	1372	1511	
+
+D 133  3388	*	2932	3470	5095	4837	6965	4742	3012	5933	6051	3635	5504	3473	4589	3582	5132	4163	*	5945	133
+       14	6652	*	1000	1000	*	0	10623	1000	1000	
+
+V 134  3596	*	*	*	3183	*	6283	2179	6493	1720	6706	*	6598	*	6331	5299	5142	2631	*	6470	134
+       0	*	*	*	*	0	*	10216	0	1000	
+
+V 135  5870	*	4835	3128	4659	6343	*	3972	4476	2281	5775	4557	5955	4364	2909	3890	4486	3883	*	5124	135
+       77	*	4275	*	*	*	*	10223	0	0	
+
+N 136  3340	*	5427	2125	*	4245	5443	*	2830	4828	*	4221	*	3188	4102	2883	4642	*	*	*	136
+       0	*	*	*	*	*	0	9678	0	1528	
+
+F 137  1900	*	4070	4113	5831	*	6251	4160	4405	2391	*	4258	5659	3029	5407	6757	6771	4220	*	*	137
+       191	3014	*	1453	656	0	*	9122	2107	1528	
+
+I 138  5199	6427	*	5264	4720	6057	6875	1764	*	2206	3647	6990	4245	6347	5505	4991	*	3075	*	4734	138
+       0	*	*	*	*	*	*	9827	0	0	
+
+S 139  3425	*	*	3341	5965	*	*	3785	3053	3666	*	3212	4881	4930	5255	2899	3524	3343	*	*	139
+       217	2840	*	2681	245	*	*	7179	1652	0	
+
+H 140  *	*	*	4254	4645	*	1867	4519	4240	4277	*	3167	4125	3127	4163	3784	4803	4717	*	*	140
+       0	*	*	*	*	*	*	6676	0	0	
+
+G 141  3207	*	*	3981	*	1990	4562	2731	*	*	*	*	4075	4192	2649	3987	4403	*	*	*	141
+       1740	513	*	2759	231	*	*	6174	1762	0	
+
+T 142  *	*	*	*	*	*	*	*	*	*	*	*	*	*	1042	*	960	*	*	*	142
+       0	*	*	0	*	*	*	1717	0	0	
+
+//
+�HHsearch 1.5
+NAME  3472662a6001a05156368eef829706af
+FAM   
+FILE  3472662a6001a05156368eef829706af
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:26:29 2013
+LENG  237 match states, 237 columns in multiple alignment
+FILT  133 out of 1363 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.8 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCEEEECCCCEEEECCCCEEEEEEECCCCCEEEEEEECCCCCCEEEEEECCCCCEECCCCCCCEEEEECCCCEEEEEECCCCHHHCCEEEEEEECCCCCE
+ECCCEEEEEEEEECCEEEEEEEEECCCCEEEEECCCEEEEEEECCCCCCCEEEEEEECCEECCCCCEEEEEEEECCCCCEEEEEEEEEECCCCCCCCCEE
+EEEEECCCCCCCEEEEECCCCCCEEEECHHHCCCCCC
+>ss_conf PSIPRED confidence values
+9879935972899789989999997189977999994799984899996378722256667747997267716899991357533956999998588630
+1351488999861100001248972674367621308899999178899829999999999768713500489738994999999999145520499479
+9999807888555998647898424888135142679
+>Consensus
+xxxvxxxpxxxxvxxGxxvxLxCxxxxxxxxixWxxxxxxxxxxxxxxxxxxxxxxxxxxxxrxxxxxxxxxxxxLxIxxvxxxDxgxYxCxvxxxxxxx
+xxxxxxlxvxxxxxxxxxpxxxxxxxxxxxxxxgxxxxlxCxxxxxxpxxxxxxWxxxxxxxxxxxxxxxxxxxxxxgxxxxxsxLxixxxxxxxxxxxy
+xCxvxxxxxxxxxxxxxxxxxpxxxxxxxxxxxxxxx
+>3472662a6001a05156368eef829706af
+EAAVTQSPRNKVAVTGGKVTLSCNQTNNHNNMYWYRQDTGHGLRLIHYSYGAGSTEKGDIPDGYKASRPSQENFSLILELATPSQTSVYFCASGGGGTLY
+FGAGTRLSVLEDLRNVTPPKVSLFEPSKAEIANKQKATLVCLARGFFPDHVELSWWVNGKEVHSGVSTDPQAYKESNYSYCLSSRLRVSATFWHNPRNHF
+RCQVQFHGLSEEDKWPEGSPKPVTQNISAEAWGRADC
+>gi|34364807|emb|CAE45841.1| hypothetical protein [Homo sapiens]
+----------------------------------------------------------------------------------------------------
+----------------E----------------------------LKtPLGDTTHtCPRCPEPKPCDTPPP-CPRCPEPKSCDTPPPCP-----------
+---RCPEP-KSC---------------------------
+>gi|332245853|ref|XP_003272066.1| PREDICTED: patr class I histocompatibility antigen, CH28 alpha chain-like isoform 2 [Nomascus leucogenys]
+----------------------------------------------------------------------------------------------------
+-----------------------------------htlqgmngcdmgpdgrllrgyhqhaydgrdyislne--DLRSWTAADTVAQI-------------
+---tqrfyeaeeyaeef-----RTYLEGECLELLRRYLENGK-------------------et--LQ--raEPs-SQPTIPI----------
+>gi|47227730|emb|CAG08893.1| unnamed protein product [Tetraodon nigroviridis]
+---------------GGTLVIPCNtgAIkaEDILITKWKYDKGDGLSGDLLVRQ-RSqnAsiIANDEYKGRVSMAAN----SSLLLSDAKLSDQRTFTCM
+AVV-GANIAEYPVNVVVYK------KPTELKISDKAEELEIGKLTKVGvF------N-AKCCFYLRNFRHLKHQgktriSIHTSVLIDAMTGLSTTSSTL
+EYSAKKEDTN-AQFTC---RTVEEDLV---SQP------------------
+>gi|149754992|ref|XP_001496343.1| PREDICTED: butyrophilin subfamily 1 member A1 [Equus caballus]
+---VIGPPEPILAIVGEDAELPCHLSpnvsAEDMELRWFRKKVSPAVFVHREGREQEGEQMAEYRGRATLVKTNvtAGRVAVKIHGVKASDDGEYRCFFR
+---QEDSFEEAIVQLKVA-ALGSDPHIHMEVQE------SGEIWLQCTSVGWYPEPQ-VQWRtPKGEKFPS---MSEARNPDEEGLFTVTASVVIRDTSM
+KN----VSCCIQNLLLGQEKEGEISIPAPFFPRLTP--WMVA--
+>gi|301610340|ref|XP_002934715.1| PREDICTED: vascular endothelial growth factor receptor 2-like [Xenopus (Silurana) tropicalis]
+--------------ERDNITLICTADkFTYGNVMWFKLSPstvekhhMGWPIPVCKNLVG---LVR-MHATTTNTNGDNVTSALVLHNISMREQGNYVCV
+AQD-----KKTQKKYCLIRHIRIQAQKVPFIYQdLKNQTRNVSETVVVKCQASGTPDPQII--WFKDDDSL---VEDSGIILKDHNRT------LTIQRV
+RKEDE-GIYSCRA---------------------------------
+>gi|158298944|ref|XP_319079.4| AGAP009947-PA [Anopheles gambiae str. PEST]gi|157014131|gb|EAA14041.5| AGAP009947-PA [Anopheles gambiae str. PEST]
+------------VRRGDPVHLFCEYEledNErLYSIKWYKGKRE------FYRYTPQVHpSVQVFStVSgIDVEVryfSISQHSVWNLQK--RTRSQKIP
+TKLSFGAiFFVDLISVRFLLAH--FPSHCPTVTGVQARYRP---GDILRANCTSHNSKP-AANLTWTINDVPIPAqYVKLYRPIRDTFTGLETSIAGVNf
+mVAHDHFVKGKLKLKCSAS--------------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+E 1    2268	*	2764	2220	*	2177	*	*	2790	*	*	*	*	*	*	*	*	3946	*	*	1
+       0	*	*	0	*	*	*	6107	1000	0	
+
+A 2    1614	*	4692	*	*	*	*	2550	*	2738	*	*	4073	3863	*	3196	4718	*	4689	*	2
+       0	*	*	*	*	*	*	7863	0	0	
+
+A 3    5661	*	4203	4904	5695	3871	5835	5711	2359	4518	*	*	*	2402	4054	5578	3673	2467	*	*	3
+       0	*	*	*	*	*	*	9276	0	0	
+
+V 4    6044	*	*	*	2977	*	4961	2263	*	3004	5035	*	4751	*	5807	6091	4018	1755	*	4852	4
+       51	6138	5595	0	*	*	*	9764	1006	0	
+
+T 5    *	*	6099	4388	4829	*	6118	3962	4987	2872	4283	4950	4461	4990	5402	6193	1651	2843	*	*	5
+       37	6016	6656	0	*	*	0	9639	1000	1056	
+
+Q 6    4388	*	*	3139	5895	*	4558	5180	3568	4442	5885	6225	4096	2088	3358	5318	4196	3055	*	*	6
+       41	*	5155	*	*	710	1363	10113	0	1196	
+
+S 7    3899	6008	5145	3524	6118	4543	5324	4639	4386	4722	5040	5121	2965	3500	5426	2839	2943	5297	*	*	7
+       0	*	*	*	*	432	1951	10134	0	1376	
+
+P 8    4664	*	4386	3477	6226	5501	6431	5464	5408	6203	*	6606	1042	4229	6342	3369	4850	5426	*	*	8
+       19	*	6226	*	*	*	0	10157	0	1000	
+
+R 9    3314	*	6597	3118	*	3400	5364	*	3100	4086	*	4325	3202	6227	4104	2670	4885	4550	*	5998	9
+       18	6351	*	0	*	*	0	10155	1000	1125	
+
+N 10   6025	*	3242	3553	4651	5355	5171	3563	5527	4437	*	4094	3661	4794	4114	2592	3490	4712	*	5329	10
+       0	*	*	*	*	957	1044	10170	0	1125	
+
+K 11   6493	*	*	4562	6869	5134	6557	3575	3471	2262	4408	*	6674	4137	5364	3318	4351	2288	6501	6246	11
+       15	*	6554	*	*	*	0	10224	0	1000	
+
+V 12   6503	5390	4156	4001	*	*	4225	4059	3965	3881	4933	3860	5411	4773	6811	3346	2889	2861	*	4069	12
+       13	6793	*	3468	137	0	*	10264	1156	1137	
+
+A 13   2102	*	*	*	5059	4704	*	4465	4277	3990	6514	*	*	5800	6364	4645	4147	1412	*	5290	13
+       0	*	*	*	*	*	*	10335	0	0	
+
+V 14   3552	*	5887	4163	3902	4279	6813	4895	3179	3211	5028	4694	4415	4134	4651	3901	4170	3211	6798	6596	14
+       26	*	5792	*	*	*	*	10383	0	0	
+
+T 15   4334	*	5495	1979	6350	5976	*	5288	5500	3249	5622	*	3144	5257	3354	3470	5176	3496	*	5077	15
+       16	6532	*	1462	651	*	0	10427	1173	1196	
+
+G 16   6957	*	5101	4337	*	492	*	*	5212	*	*	4211	*	3952	7155	4328	*	*	*	*	16
+       21	*	6084	*	*	*	0	10490	0	1196	
+
+G 17   5068	6922	2803	2155	*	3874	*	*	4722	6844	6217	4795	*	2750	4558	2716	3845	5873	*	*	17
+       0	*	*	*	*	1194	829	10512	0	1472	
+
+K 18   4007	6875	3502	4093	6823	*	4897	*	3621	6006	5873	3232	3253	4750	4717	2430	3318	4790	*	5825	18
+       12	6976	*	1000	1000	710	1363	10513	1012	1196	
+
+V 19   2034	*	*	6767	4582	5108	*	4904	6952	2943	5289	*	*	*	6480	5679	5140	1253	*	*	19
+       12	6919	*	0	*	*	0	10544	1012	1000	
+
+T 20   4663	*	5214	3843	7078	*	5847	4082	5220	4486	7114	4541	4942	5845	3822	3072	1691	3315	*	6824	20
+       0	*	*	*	*	*	0	10544	0	1000	
+
+L 21   6777	*	*	*	3165	*	7558	3043	6986	666	4408	*	*	*	*	6474	6423	4879	*	6546	21
+       0	*	*	*	*	*	0	10544	0	1000	
+
+S 22   6212	6588	4437	4190	6795	5341	5299	5708	6480	5122	6022	3688	2562	4596	3479	2667	2750	5194	*	5051	22
+       0	*	*	2807	222	0	*	10544	1000	1000	
+
+C 23   5567	178	*	*	5661	*	*	5966	6988	*	*	*	*	*	6118	6686	6819	5757	*	*	23
+       19	7051	7535	0	*	*	*	10546	1006	0	
+
+N 24   5964	7558	4566	4063	*	4232	3920	5731	3599	4134	6636	3268	3869	5491	3656	3054	3194	3861	6888	6924	24
+       39	6718	5876	638	1484	0	*	10544	1152	1000	
+
+Q 25   3136	*	7021	6669	3317	7087	4970	3513	*	3174	*	6667	4759	5226	6575	4337	5165	1864	*	3401	25
+       93	4198	6942	1157	859	1338	726	10516	1799	1162	
+
+T 26   5085	*	3178	4322	6252	4167	6457	4478	3900	6658	*	3629	3758	4990	3956	2617	2700	*	5929	5371	26
+       1744	528	6950	1437	665	0	*	10512	8381	1312	
+
+N 27   3568	*	3550	4068	4144	3853	4357	4813	4335	3284	*	3778	3365	5626	4948	3549	4565	4747	*	5587	27
+       70	5322	5474	474	1837	*	0	10584	1304	1000	
+
+N 28   4820	*	3000	4031	*	3487	*	*	3209	5226	*	4435	2637	6592	4367	2837	4023	4637	7032	4668	28
+       47	5894	6006	607	1542	969	1032	10527	1128	1454	
+
+H 29   6565	*	3459	4154	6775	4601	3634	5078	5845	2773	*	3610	3289	5021	5032	3829	4288	3534	7001	4138	29
+       150	3566	6155	1644	556	*	0	10555	2289	1461	
+
+N 30   4787	*	4650	4755	4936	5030	4512	4571	5436	2934	3909	4417	2511	4676	5408	6803	3578	4258	6511	3711	30
+       30	5607	*	626	1505	1365	709	10516	1297	2084	
+
+N 31   4045	*	5416	3599	5800	4519	6029	3654	4882	4772	4791	4684	5924	3891	4372	2406	2905	4822	7000	4875	31
+       9	7376	*	0	*	2366	311	10525	1000	1617	
+
+M 32   5770	6594	*	6948	3847	4781	*	1947	5211	2376	5195	*	6634	*	*	*	5048	1842	*	4976	32
+       0	*	*	*	*	*	0	10525	0	1469	
+
+Y 33   4322	*	*	4192	3990	6065	5416	3956	3463	5288	5774	4089	6746	3306	4779	2939	3026	4887	6542	3446	33
+       14	6746	*	1000	1000	2194	356	10525	1004	1469	
+
+W 34   *	*	*	*	6529	*	*	*	6652	*	*	*	*	5814	6541	6470	*	4856	168	6078	34
+       75	6682	4603	0	*	*	0	10523	1000	1333	
+
+Y 35   *	6490	6712	6355	2306	*	*	3689	3831	3190	6486	5141	*	5421	4020	4203	4426	4376	6615	2159	35
+       14	*	6674	3000	193	2848	216	10433	1013	2078	
+
+R 36   5802	6822	6761	6472	4721	5706	4394	5848	1731	3959	*	5596	6380	4457	1910	5624	5563	5431	5052	5260	36
+       233	5640	2953	704	1372	1037	964	10425	1186	2064	
+
+Q 37   5552	*	2854	3643	*	3417	5036	5517	3879	5402	4556	5284	5574	2062	5096	5532	4098	3952	5626	*	37
+       300	6550	2496	0	*	4177	82	10327	1000	3478	
+
+D 38   6206	*	2969	4544	5332	3892	6418	6273	3107	6112	5311	4283	3766	6107	2682	4118	3582	4508	*	3987	38
+       113	5711	4152	2322	322	1450	657	10204	1049	5384	
+
+T 39   3653	*	4823	3973	*	3237	*	5413	3491	5110	6597	3640	2350	4838	4872	3157	4047	5450	5458	*	39
+       74	5286	5362	1975	423	3213	165	10179	1128	4548	
+
+G 40   4940	*	3345	3716	*	1710	5462	5660	4785	6631	6553	3801	5294	3963	4638	3801	4462	4482	5353	*	40
+       77	5208	5342	1233	799	2257	339	10184	1321	4435	
+
+H 41   4562	7156	4026	3612	*	3092	5726	5438	2314	4438	6239	4600	4905	3482	3551	4122	4009	6782	*	6685	41
+       118	4975	4424	1789	493	2748	233	10201	1312	4035	
+
+G 42   3268	*	3442	3556	6676	2820	6238	5149	4564	4562	6588	3792	3199	4932	5183	3482	3773	5197	*	*	42
+       40	6655	5817	0	*	3330	151	10276	1012	4140	
+
+L 43   4925	6324	6471	4038	*	4151	*	5135	3945	2778	5520	4606	1873	6927	4625	3975	4203	3998	*	5506	43
+       52	6442	5391	1000	1000	2358	313	10268	1000	4113	
+
+R 44   4731	*	5037	1910	6745	4040	5549	4261	3797	4354	*	5563	5640	3169	4122	4498	3385	4585	*	6658	44
+       25	*	5835	1585	585	1927	440	10244	1000	3835	
+
+L 45   3818	*	4062	4633	3276	5743	6736	5407	4341	3094	6599	4799	6520	4684	4632	4279	3607	2659	4979	4394	45
+       13	6810	*	0	*	4099	87	10281	1000	3412	
+
+I 46   5079	*	4697	3907	4551	6612	5637	2503	5082	2216	4939	*	4785	*	6259	5366	4106	2338	*	6784	46
+       54	*	4760	*	*	4065	89	10320	0	3281	
+
+H 47   3040	6297	6531	6931	3665	4952	4879	2598	4778	2622	6238	*	6415	6381	5729	3624	4507	3088	6523	5150	47
+       83	7255	4337	2807	222	*	0	10291	1013	3599	
+
+Y 48   4079	*	4873	6539	3792	6527	4557	5005	4942	3958	*	4205	6775	3553	4216	3056	3854	4290	3855	2939	48
+       10	*	7164	*	*	2888	209	10147	0	4123	
+
+S 49   5153	*	4093	4620	4024	3441	5474	4111	5574	3527	5615	4767	5428	4792	4508	3583	4343	3466	4606	3234	49
+       110	*	3765	*	*	3561	128	10213	0	3853	
+
+Y 50   5538	*	3908	4078	4098	4566	5068	4865	4826	5383	5456	3392	6587	4849	4640	2679	3830	3992	5220	3193	50
+       180	3433	5324	1234	798	3662	119	10093	2193	4462	
+
+G 51   4953	5780	3370	3455	5478	2808	4333	5585	4431	5639	6553	4084	5665	*	5534	2333	4206	6317	5469	4037	51
+       110	*	3765	*	*	3178	169	10115	0	4578	
+
+A 52   4894	*	3414	4515	6705	2434	6625	*	3811	*	*	3725	4437	3915	4007	3152	2913	4903	*	5393	52
+       428	5532	2087	969	1032	2488	283	10030	1243	4971	
+
+G 53   *	*	3281	4585	4752	2715	5323	6267	3580	5942	6229	3426	3709	4474	4858	2790	3372	5344	*	*	53
+       219	2827	*	735	1324	*	0	9813	2389	6245	
+
+S 54   3906	*	4170	4508	6477	5874	5171	4216	3238	4322	6204	3812	3309	4554	5969	3424	3254	3183	*	5998	54
+       116	4076	5803	2047	400	3200	166	9813	1488	6245	
+
+T 55   3991	*	4414	3395	5201	6129	5238	4184	3930	3827	*	3789	4879	3296	4439	3847	4707	3136	*	4051	55
+       83	4550	6214	3034	188	1616	570	10355	1435	5930	
+
+E 56   4497	5358	4343	4466	3906	5115	*	4219	4471	3003	*	4151	5043	3804	4569	4864	4145	3515	4985	3218	56
+       13	*	6815	*	*	3300	154	10645	0	4741	
+
+K 57   3698	*	4359	3224	4511	5219	6299	4573	4344	4815	5506	3237	3675	4300	3718	3546	4127	4441	4837	*	57
+       10	*	7182	*	*	1409	681	10218	0	4518	
+
+G 58   4503	*	3356	3330	6589	3196	5059	6854	4286	4809	*	4236	2682	4105	4676	3115	4365	5516	*	5520	58
+       23	5980	*	1000	1000	3314	153	10426	1129	3462	
+
+D 59   3879	*	4166	2676	6418	2822	*	3983	3677	5942	6475	3872	4911	4289	4965	3474	3298	6446	6630	*	59
+       40	6697	5842	560	1635	4052	90	10458	1173	3232	
+
+I 60   4370	*	5249	5067	3073	4542	5530	3518	6587	3290	5669	4956	4242	4825	5560	3838	4985	3203	*	2827	60
+       141	3633	6299	1040	961	4308	75	10467	2198	3416	
+
+P 61   5486	5769	3795	4419	5438	4000	4687	*	2853	5088	6636	3706	2635	3918	4284	3685	5580	4857	*	4322	61
+       59	6470	5110	0	*	1457	654	10449	1000	3440	
+
+D 62   3761	*	3300	3572	*	2317	4378	5724	5080	4804	*	3158	5518	4802	4660	3514	3740	4801	*	*	62
+       114	4201	5515	1168	850	1039	962	10443	1831	2998	
+
+G 63   6594	*	5748	4546	*	3325	4952	*	3072	5140	*	4189	6585	4715	1107	5203	5172	7334	*	5636	63
+       31	5571	*	2698	241	*	0	10462	1195	2351	
+
+Y 64   3541	*	6828	6739	2261	4925	6687	3470	6398	3190	*	6750	*	6659	4634	6866	4460	2381	*	2972	64
+       60	6526	5062	0	*	2961	198	10462	1000	2351	
+
+K 65   5146	*	6553	4861	5059	4077	3944	4784	5414	4958	*	4278	*	3048	3998	2160	2697	4958	5766	5878	65
+       21	6096	*	0	*	2511	278	10421	1049	2642	
+
+A 66   3808	*	5570	5505	3307	3523	5650	3382	*	2660	4169	6787	4637	5655	6656	3840	4519	3201	5225	4646	66
+       58	*	4654	*	*	3112	177	10429	0	2350	
+
+S 67   4498	*	3991	4152	6065	5285	5875	5817	5177	3323	5215	4102	5183	4256	3638	2802	2727	3933	6624	5769	67
+       247	6780	2752	0	*	3519	132	10378	1000	2728	
+
+R 68   4105	6222	4230	3666	6067	3315	4652	6155	3366	4899	5730	4198	3660	4034	3537	3635	3779	6959	5325	6532	68
+       218	3325	4628	1471	645	1243	792	10157	2430	4468	
+
+P 69   4986	*	2724	4260	4977	4356	5736	5056	4286	4415	6804	3108	3770	4068	4565	3446	3257	5720	*	5516	69
+       470	2413	3466	219	2826	1909	447	10352	3521	3716	
+
+S 70   3822	6464	3643	3472	6458	3515	6582	5575	3932	4477	*	3029	4948	3903	5169	2784	3396	5852	*	*	70
+       156	3709	5260	658	1449	2820	220	10343	2211	4188	
+
+Q 71   3341	*	4113	3731	6737	2553	5098	5806	5790	3788	6174	3230	*	4327	4600	3163	3411	5558	*	6308	71
+       102	4969	4776	1151	863	3218	164	10327	1262	4105	
+
+E 72   3789	4616	4217	4800	5362	2323	*	5610	3743	6813	*	3154	*	4943	5059	2352	4046	5331	6280	*	72
+       134	5407	3943	591	1574	*	0	10235	1147	4186	
+
+N 73   3260	6132	2767	4112	6687	5784	4602	3833	5683	*	6573	2994	4664	3082	4476	4030	4157	6923	*	4212	73
+       14	*	6718	1585	585	1887	455	10099	1000	4783	
+
+F 74   2956	4998	*	5214	2909	3258	5007	6368	*	3248	*	*	4341	*	6717	2364	5875	6122	6299	2949	74
+       0	*	*	*	*	4444	68	10215	0	4024	
+
+S 75   5446	*	5626	5210	6913	5426	3596	5067	*	5247	*	3477	5032	4544	3866	1740	2930	4045	*	4780	75
+       27	*	5750	*	*	333	2277	10226	0	3902	
+
+L 76   6671	*	*	6845	4967	*	*	2974	*	473	6899	*	*	*	*	*	6112	4338	*	5073	76
+       8	7535	*	0	*	1631	563	10544	1115	1878	
+
+I 77   5483	*	4922	4200	6740	5911	3667	4099	3947	3727	5993	4258	4633	3912	3534	4260	2697	3769	6221	4935	77
+       16	*	6482	*	*	*	0	10579	0	1552	
+
+L 78   *	*	*	*	4868	*	*	1135	5954	2228	5025	6829	*	*	*	5708	6166	2399	5733	*	78
+       11	*	7049	*	*	*	0	10559	0	1853	
+
+E 79   3832	*	4485	4894	6838	5959	3964	6892	3222	4051	6691	3986	3539	5169	3552	2914	2869	5398	*	5537	79
+       0	*	*	*	*	*	0	10544	0	1999	
+
+L 80   3414	6447	3074	5353	*	4354	4576	*	3573	5439	*	2433	3981	5351	3386	2952	4780	*	*	5694	80
+       12	*	6910	*	*	*	0	10544	0	1999	
+
+A 81   2554	*	*	7160	5859	5877	5219	3975	*	2540	4852	*	6816	*	*	3995	3981	1488	*	*	81
+       0	*	*	*	*	*	0	10548	0	2160	
+
+T 82   5062	*	4282	3001	5982	4664	7277	6764	3167	*	*	5048	5396	2230	3424	4217	2615	5287	6865	*	82
+       12	*	6931	*	*	*	0	10548	0	2160	
+
+P 83   3746	*	6803	3990	5453	*	5103	4391	3552	3006	4031	*	2455	5287	4508	3944	4404	4262	3905	*	83
+       13	6848	*	2866	213	2188	357	10559	1180	2292	
+
+S 84   3870	*	3677	2216	*	4323	5801	6293	3806	5254	*	4307	6815	3768	3946	2241	4302	*	*	*	84
+       11	*	7042	*	*	3001	193	10569	0	1991	
+
+Q 85   5029	*	555	4549	6808	6811	4423	6654	6933	5958	*	4655	6020	4693	5608	6325	6832	*	*	6418	85
+       20	6204	*	2000	415	*	0	10557	1040	1966	
+
+T 86   2872	6422	4797	2559	*	5476	4901	6761	4714	6124	4470	4094	5908	3890	*	2418	3076	5717	*	5968	86
+       14	6724	*	2585	263	2704	240	10557	1000	1966	
+
+S 87   3079	6438	4313	6936	*	942	4806	*	5299	6588	*	6092	*	5226	4565	3387	5455	5836	*	*	87
+       23	5987	*	923	1081	*	0	10600	1204	1800	
+
+V 88   4006	6127	4301	3172	6811	5696	5518	4877	3970	3660	4663	4626	5562	4722	4023	5986	2363	3710	5029	5871	88
+       32	5525	*	397	2055	1087	918	10557	1275	1800	
+
+Y 89   *	*	*	*	3150	*	5580	5518	*	6492	*	*	*	*	*	6518	*	5042	6269	360	89
+       0	*	*	*	*	*	0	10605	0	1356	
+
+F 90   5337	*	*	3898	5221	*	4580	3135	4269	3472	6889	7191	*	3968	4122	3729	2797	4069	5577	2763	90
+       0	*	*	3700	115	1896	452	10605	1000	1356	
+
+C 91   *	227	*	*	5291	*	6258	*	*	4388	*	*	*	*	7080	6927	6906	5309	*	6626	91
+       26	6293	7552	1000	1000	*	0	10620	1040	1217	
+
+A 92   3678	6011	5430	2926	5821	5328	*	3566	4026	4092	4231	5119	*	3982	2899	4214	3958	3450	*	6017	92
+       74	6160	4792	0	*	*	0	10618	1139	1356	
+
+S 93   2000	6992	*	6990	5779	6236	5773	3288	5728	3672	6908	5988	*	6790	5913	4261	4330	1624	6815	*	93
+       126	4127	5232	2468	288	3059	184	10564	1927	1969	
+
+G 94   3843	*	4505	4085	4423	4777	5861	3991	3569	4955	5514	4220	*	5287	3848	2553	3969	3802	4729	4905	94
+       289	6805	2534	0	*	*	0	10533	1167	2269	
+
+G 95   3789	6550	4950	4263	5111	4282	4505	4455	5723	4354	6630	2074	5706	5513	4063	3944	3976	3803	*	4440	95
+       132	*	3511	1585	585	2716	238	10691	1000	4685	
+
+G 96   3778	5685	3306	5130	*	2943	4769	*	5093	4266	6395	3451	3190	4755	4786	3557	4088	5225	4728	4812	96
+       484	3607	2301	1350	718	2389	306	10640	1964	5084	
+
+G 97   3397	5141	6358	3800	5602	2213	*	*	4240	6094	6220	3482	6263	6073	4369	3123	4659	3543	*	3845	97
+       656	1452	*	1118	891	866	1148	9993	4797	6157	
+
+T 98   3175	*	4311	3197	3607	3425	4865	*	3744	5117	6667	5202	3376	4309	4314	5103	3915	4089	*	5121	98
+       21	*	6127	0	*	3477	136	10744	1000	3848	
+
+L 99   4493	6541	4104	4012	4888	3515	4670	4269	4932	3651	*	3869	5594	5050	3895	3543	3285	3493	7248	5081	99
+       15	6574	*	1000	1000	2896	208	10470	1017	3904	
+
+Y 100  5669	6752	6741	4171	5353	4615	3641	3517	4157	4269	5782	7284	4466	4393	4794	3907	3043	2709	6502	4058	100
+       49	5378	6741	1020	981	390	2076	10499	1317	3554	
+
+F 101  4541	5904	*	4145	2524	5232	5248	3761	5962	3171	4832	5184	5665	5558	3411	3729	4237	4151	6041	4089	101
+       0	*	*	*	*	2558	268	10645	0	1698	
+
+G 102  *	*	5655	3372	5768	1796	*	5511	4549	6522	6759	5411	4213	4223	4924	2224	3882	4906	6208	*	102
+       48	7070	5320	0	*	*	0	10630	1000	1556	
+
+A 103  3024	*	5112	4226	7108	3710	6964	6022	3515	5124	6169	3659	3432	4458	4127	2693	3817	5023	5923	6599	103
+       19	6244	*	0	*	3133	175	10581	1190	2026	
+
+G 104  3411	6064	4710	4021	*	1829	5358	6158	4321	*	*	5223	4290	4647	3736	4145	3596	3983	6898	5836	104
+       15	6561	*	0	*	*	0	10583	1056	1897	
+
+T 105  3128	6248	5808	5983	4867	5060	5848	3462	4799	4441	6940	4846	4615	6946	5749	3755	1963	2911	*	6567	105
+       53	5441	6274	1680	540	2124	376	10583	1396	1897	
+
+R 106  6800	*	5117	3828	6863	6602	*	4974	2680	4297	4172	5098	4727	3012	3288	2986	3634	5573	5080	5150	106
+       12	6930	*	2322	322	1501	629	10645	1000	1855	
+
+L 107  4475	6979	5356	4630	6027	5690	*	3903	4609	1493	6211	7005	6944	4604	5314	4695	4361	2370	*	6933	107
+       12	6886	*	3000	193	1775	499	10713	1000	1505	
+
+S 108  4338	6736	*	3282	5112	5297	4031	4175	3744	4558	7067	3480	6860	4166	3833	3624	3235	3272	6782	5727	108
+       50	7087	5212	2322	322	*	0	10735	1005	1469	
+
+V 109  4375	6486	6901	5166	5644	6739	6196	3232	5684	3539	5923	6008	5472	5155	5709	5345	5239	1065	6791	6672	109
+       97	7114	4108	3000	193	960	1041	10578	1015	2058	
+
+L 110  5180	6605	5047	5292	3809	7039	4386	3940	3201	2473	5638	5721	4613	4732	3576	4921	3157	4085	*	5631	110
+       214	5789	3062	3540	130	*	0	10617	1146	2423	
+
+E 111  3129	5577	3498	3400	3892	5891	*	5664	3377	4187	4852	4979	3944	5871	3776	3178	6153	3637	*	*	111
+       1296	5552	807	1459	652	*	0	10697	1175	4093	
+
+D 112  2560	*	2504	4211	5676	5356	*	5479	3100	*	5350	3380	5533	5155	3494	3890	5484	5073	*	4692	112
+       418	5509	2122	1000	1000	*	0	8919	1000	8277	
+
+L 113  3319	*	3991	3964	4917	3986	*	3579	4425	2947	4702	*	3627	*	*	3834	2603	4000	*	*	113
+       86	4104	*	598	1559	777	1263	8182	1125	8731	
+
+R 114  2403	*	4115	4180	6302	4414	6758	5441	3458	3558	4860	6150	3879	4093	3874	3757	5300	3919	*	5532	114
+       36	6342	6359	1000	1000	1413	679	10100	1000	5611	
+
+N 115  3644	6759	3267	4325	*	3972	6504	6139	3761	4534	*	4041	2911	5317	4289	5204	3360	2770	*	6622	115
+       138	5061	4034	1438	664	*	0	10328	1256	4273	
+
+V 116  4115	*	3784	5317	4201	5103	5055	4590	5574	4453	5344	4902	2945	4043	5145	4802	3963	2469	6518	4197	116
+       0	*	*	*	*	4565	62	10230	0	4917	
+
+T 117  3032	*	4396	3977	5385	4500	6156	4705	3432	5573	*	6485	3621	3773	4005	2584	4006	3946	*	6532	117
+       33	*	5446	*	*	1768	501	10147	0	4784	
+
+P 118  3682	*	4509	3413	5655	3638	6576	5305	3455	4730	6830	6477	2443	4363	4911	3112	4393	4223	*	5891	118
+       44	5737	6477	3576	126	846	1173	10376	1164	4357	
+
+P 119  3707	*	6965	4853	6814	4495	7449	6407	5001	5338	*	6711	726	7068	4927	4408	5469	5910	*	6219	119
+       71	5329	5444	1606	575	2767	229	10497	1389	2700	
+
+K 120  3527	*	4019	3894	4891	7127	5882	5592	3287	5017	6949	5316	5058	4013	4689	3342	2442	3369	*	5104	120
+       40	*	5205	*	*	1803	487	10373	0	3013	
+
+V 121  5165	4770	*	5678	*	5610	6826	2734	7159	2402	5357	6745	3526	6072	*	5343	3449	1844	*	6641	121
+       24	*	5944	2585	263	949	1053	10525	1000	2896	
+
+S 122  4667	*	5815	4405	3382	5312	7003	4395	4841	4607	6769	*	3977	5014	3816	2841	2686	3482	4745	4411	122
+       33	6775	6184	2807	222	2089	386	10207	1000	2178	
+
+L 123  4294	*	6096	5911	6379	5441	*	2853	4413	2579	5857	5752	3273	5670	6050	5849	4569	2134	4991	4747	123
+       22	*	6044	*	*	*	0	10227	0	2220	
+
+F 124  5001	*	5724	4642	3510	5032	5555	3155	4006	2948	4769	4364	5880	4939	5783	3708	3246	4399	6561	3774	124
+       129	5234	4086	2559	268	2511	278	10175	1453	2462	
+
+E 125  4656	6738	5339	3420	6970	3537	4475	5271	4584	3808	*	5100	2587	3279	3847	4128	4444	3943	*	5759	125
+       97	4367	5901	544	1670	3108	178	10504	1651	3204	
+
+P 126  4594	6569	3728	4884	*	3663	4918	5247	4108	3988	*	5066	1870	3702	4732	2858	5404	*	*	*	126
+       96	5710	4471	1555	600	1576	590	10564	1366	3321	
+
+S 127  4075	4883	5169	3782	6668	4970	*	5736	3408	4671	5843	5875	3152	4128	4527	2297	3097	4818	*	6815	127
+       79	6773	4502	0	*	3230	163	10121	1140	3257	
+
+K 128  4105	*	3751	4369	6062	3943	4664	4270	4514	4500	5802	3796	4646	3881	4219	2727	3986	3889	*	5213	128
+       0	*	*	0	*	3277	157	10476	1000	3725	
+
+A 129  3597	*	4814	2686	*	4241	6001	3905	4463	4407	4489	5813	4628	3824	4406	3325	4860	2909	*	6536	129
+       157	6709	3421	0	*	4256	78	10511	1001	3470	
+
+E 130  4096	*	3283	2942	5483	5468	7055	5209	5839	4096	6422	5206	3898	5109	5413	2811	2974	2998	*	*	130
+       217	5702	3051	2511	278	4893	49	10109	1123	4553	
+
+I 131  4474	*	6204	6452	5884	5564	6164	2433	4516	2179	4872	6238	4509	*	*	4826	5301	2033	*	4969	131
+       105	4797	4866	1406	684	3823	106	9929	1730	5672	
+
+A 132  3416	*	3482	2991	6687	6131	*	*	2785	3863	5494	4865	4598	3923	6378	3132	3678	4692	*	4425	132
+       337	6468	2343	1585	585	2662	248	10226	1000	5665	
+
+N 133  4815	*	3556	2333	6509	4182	6152	5194	6924	3990	5942	3458	4004	4284	4466	4316	4941	3032	5852	6181	133
+       175	3251	6775	2383	307	283	2488	9932	2207	6699	
+
+K 134  5583	5416	3922	4900	7010	1138	5962	6025	4276	*	*	3840	*	4336	5014	4432	3807	5289	*	5834	134
+       0	*	*	*	*	2437	295	10568	0	2411	
+
+Q 135  4490	6222	2521	2863	*	3589	6077	6612	3832	5219	*	4446	6113	2992	6671	3057	4140	4546	*	6688	135
+       24	5916	*	0	*	3114	177	10571	1141	2139	
+
+K 136  5171	*	3936	3015	5896	5355	5788	6429	4098	4324	*	3503	2823	4442	5279	3176	3096	4617	6368	5493	136
+       10	7204	*	0	*	*	0	10197	1000	1997	
+
+A 137  2341	6783	*	6017	5106	4794	6066	3505	7040	3623	4340	4991	6255	6901	6761	4551	3504	1965	*	5452	137
+       12	6919	*	0	*	1878	458	10197	1000	1997	
+
+T 138  4839	*	6750	3961	5923	7007	5867	4214	3621	5056	4834	3017	*	5004	3889	3932	2111	3597	5848	5026	138
+       12	*	6917	*	*	*	0	10443	0	1693	
+
+L 139  4395	7303	7159	*	2734	6445	6647	3042	*	1182	4926	6735	6381	*	*	5429	*	2968	*	*	139
+       28	6735	6679	0	*	2709	240	10218	1000	1841	
+
+V 140  4748	*	5975	4251	5148	4747	4614	4954	4192	3691	6046	5785	6276	3875	3891	3288	2111	3352	*	6628	140
+       43	5104	*	0	*	2939	202	10191	1482	2008	
+
+C 141  5207	100	*	*	6543	*	*	6333	*	*	*	*	*	*	*	*	6926	6843	*	*	141
+       55	*	4735	2065	394	1714	524	10189	1156	1863	
+
+L 142  4197	*	5814	3227	5025	6285	3908	4686	3974	3711	4228	4431	4957	4436	4104	3321	3467	3363	6961	*	142
+       38	6328	6228	584	1588	*	0	10140	1108	2165	
+
+A 143  1798	5054	*	*	5228	5378	*	3433	*	6988	5445	*	*	*	*	2519	4264	2084	*	4447	143
+       22	6853	7219	0	*	3785	109	10147	1107	2471	
+
+R 144  4697	*	3601	3696	6731	5189	4694	5432	3557	4969	6934	6005	4680	4905	3015	2542	3065	4276	*	5407	144
+       68	6713	4773	2000	415	3529	131	10136	1000	2485	
+
+G 145  4684	5946	3250	4315	*	1478	5873	*	4769	6597	*	3024	6551	5906	4823	3412	4570	6266	6663	5514	145
+       106	5744	4254	2781	227	329	2293	10096	1557	2984	
+
+F 146  4428	6972	4716	6633	2115	2830	5580	4929	4929	4634	6952	4273	3858	6816	4795	3563	4329	4381	5899	5239	146
+       39	5215	*	312	2363	1185	836	10219	1449	2271	
+
+F 147  5069	5526	4861	*	3972	5263	4853	6349	3979	4581	*	3539	2557	5807	3597	2863	4318	6706	*	3077	147
+       132	5717	3871	419	1987	916	1089	10202	1369	1665	
+
+P 148  4961	*	4768	4312	6557	7362	6706	5536	4902	4499	5209	6455	810	5085	4601	5558	4741	5862	*	*	148
+       422	*	1978	*	*	2053	398	10123	0	2689	
+
+D 149  4259	*	3146	3404	5979	3760	6011	6885	3132	5080	*	4468	2413	4199	4810	3687	4430	4796	*	*	149
+       66	5311	5667	446	1912	269	2557	10101	1333	5409	
+
+H 150  3374	6818	3483	3388	6575	5033	5789	5306	4223	5274	*	3764	2230	5707	4950	3204	4364	4502	*	7265	150
+       206	*	2907	*	*	3125	176	10175	0	2097	
+
+V 151  3245	*	6477	4982	5209	5853	4061	2351	4935	3354	5774	5728	3989	6652	5801	5106	4571	2621	6778	4316	151
+       120	7005	3796	3000	193	681	1410	9985	1056	4053	
+
+E 152  5010	5625	3889	3354	6544	4737	6853	*	5821	5019	5856	2899	6004	4421	4631	2581	2272	4985	*	5770	152
+       61	*	4604	*	*	296	2429	10155	0	3339	
+
+L 153  6790	6516	*	*	2689	*	6286	2383	5450	2534	6055	*	6599	*	*	5135	6562	1895	6689	3609	153
+       0	*	*	*	*	1629	563	10183	0	2019	
+
+S 154  6018	*	5090	5032	5430	*	4778	4933	4457	5463	4781	5226	*	3294	3720	2290	2225	4193	*	4320	154
+       28	6577	6786	0	*	575	1605	10212	1190	1651	
+
+W 155  *	7218	*	*	5113	*	*	*	6995	5699	*	*	*	*	6929	6394	*	*	174	5008	155
+       27	*	5779	*	*	1892	453	10431	0	1356	
+
+W 156  4803	6603	7266	4358	2871	6831	5828	4408	4299	2929	5397	5156	5843	3869	4860	4406	3407	5812	5196	2759	156
+       207	2904	*	1395	690	*	0	10200	3185	1549	
+
+V 157  6127	*	6983	3711	4077	5566	4820	5781	1652	3835	5545	6875	7033	5749	2324	5161	5868	4566	5836	5762	157
+       28	7144	6377	1585	585	614	1528	10200	1000	1549	
+
+N 158  5804	6663	2278	3286	7104	3207	7041	4480	5075	5463	*	1640	5507	5209	5625	4874	6706	*	6733	*	158
+       25	6986	6721	1000	1000	1325	735	10146	1000	1252	
+
+G 159  7099	*	3068	5053	6475	1254	5992	*	5230	6653	*	2893	4745	7183	4551	3449	4931	7048	7122	*	159
+       112	*	3746	*	*	696	1386	10142	0	1240	
+
+K 160  5027	6759	5307	2895	*	3875	5325	4526	2900	4806	*	4484	5028	3121	3889	3594	3718	3687	*	*	160
+       93	4432	5963	1331	731	*	0	10103	1616	2300	
+
+E 161  4728	*	3672	2839	*	5515	5780	6446	4261	3523	5186	4502	2606	4239	4119	4110	4147	3657	*	6216	161
+       45	6260	5809	2322	322	3923	98	10090	1038	2511	
+
+V 162  5207	6747	7006	5259	4170	*	*	2622	4696	1749	5742	6813	7348	4315	4283	5070	6854	2527	*	5133	162
+       214	4437	3448	1563	596	2926	204	10080	1549	2734	
+
+H 163  4235	*	3891	3240	6389	6541	4798	3900	3590	4564	6646	5027	2999	4304	4477	3102	3188	5350	*	6537	163
+       110	5009	4565	433	1947	1095	911	10043	1340	3857	
+
+S 164  4864	6517	3869	3047	*	3539	6392	3982	3812	5846	5489	3838	3504	4170	4779	3152	4031	4677	6797	5540	164
+       76	5621	4997	550	1658	1434	667	10003	1138	3241	
+
+G 165  4382	*	2962	3672	*	2546	6646	4447	4426	6637	*	3715	4742	4984	4973	2603	4019	4784	*	5504	165
+       71	4694	6696	1706	528	1725	520	9998	1472	3026	
+
+V 166  4816	*	7222	4243	6181	3901	4304	3899	5154	4051	6780	4021	5707	3883	5023	3423	2742	2498	*	6635	166
+       13	*	6788	*	*	1614	571	10071	0	2563	
+
+S 167  4716	*	4504	3248	4271	5188	5947	3730	4468	5075	*	4283	5004	3556	3403	3177	3499	4406	*	4093	167
+       43	5095	*	1575	590	2338	318	10037	1282	2175	
+
+T 168  5896	*	5111	5890	7025	4913	4076	3847	4311	3990	5278	3969	3856	3769	3780	3867	2281	4464	6384	5796	168
+       56	6523	5188	3322	152	2763	230	10047	1157	1924	
+
+D 169  3789	*	3064	5218	4655	3589	4702	6766	6622	3873	5976	3872	6428	7000	4232	3399	3008	4333	*	3226	169
+       252	6445	2747	1000	1000	3213	165	10055	1028	2205	
+
+P 170  6574	*	4423	4279	4196	3263	6273	4880	5142	4741	5450	3851	2459	4016	5536	2616	4680	4045	*	*	170
+       182	*	3080	*	*	1244	791	9791	0	4489	
+
+Q 171  4763	6861	6417	3594	6580	6612	6619	4074	4898	3659	5474	4018	3440	3475	4133	2922	3358	3985	*	4602	171
+       18	6309	*	0	*	2641	252	9946	1134	4409	
+
+A 172  4339	*	*	4446	*	4589	4215	3534	4478	3410	4558	*	3136	3891	4955	3558	3418	2740	*	*	172
+       143	6121	3648	0	*	4789	53	9794	1023	3936	
+
+Y 173  4736	6325	5720	4168	3936	6385	4181	3960	6969	2684	6548	5339	*	4333	3394	3971	3617	2771	*	4531	173
+       68	4444	*	1751	508	2596	261	9725	1594	4676	
+
+K 174  5377	6384	3903	4266	*	5497	4349	3668	2838	4154	6565	4768	3199	3993	2585	4967	4752	4490	*	*	174
+       269	5536	2750	1832	476	*	0	9797	1131	4161	
+
+E 175  3439	*	2921	2898	6019	4804	4737	*	6256	5153	5766	2525	5180	4286	3674	3711	4036	6435	*	6217	175
+       174	4411	3908	1355	715	888	1121	9967	1489	5537	
+
+S 176  3263	*	3049	3696	6767	3258	5090	5260	4339	4531	5493	4093	4693	5471	6399	3098	3025	4557	*	*	176
+       18	*	6354	*	*	589	1577	9952	0	3939	
+
+N 177  5314	*	1754	3597	*	2899	*	*	4630	6551	*	3219	5098	5536	4462	2677	4300	*	*	*	177
+       90	5743	4588	0	*	*	0	10021	1182	2229	
+
+Y 178  *	*	4719	4282	5280	1166	4711	*	3802	6895	6200	3246	*	*	4735	3740	5197	5058	5456	6697	178
+       135	4209	4834	325	2311	2207	352	9987	1636	2860	
+
+S 179  4507	*	5696	*	*	5689	*	5268	3341	2327	*	3586	*	5079	4089	3169	1909	5627	*	5366	179
+       309	*	2373	*	*	2564	267	9963	0	2987	
+
+Y 180  *	4735	*	4308	2081	5580	5866	4615	6694	3553	6279	6223	6313	*	6764	5078	5142	5136	7237	1470	180
+       45	*	5023	*	*	3384	145	9667	0	4880	
+
+C 181  5480	5341	3490	4088	6278	5236	6139	5238	6381	5270	6281	3695	*	4318	5002	2022	2065	6156	*	5922	181
+       81	5136	5261	1644	556	3363	147	9631	1192	4827	
+
+L 182  3822	6389	*	6188	4278	5881	*	3351	4740	3417	4013	4846	6454	5403	4488	3413	3041	2497	6447	5273	182
+       0	*	*	*	*	*	0	9670	0	4725	
+
+S 183  6584	*	6232	4725	5120	*	4740	5357	5445	4721	6096	6231	4438	4531	4656	2521	2046	2771	4812	4990	183
+       0	*	*	2322	322	4004	93	9670	1000	4725	
+
+S 184  3899	5403	5585	5853	*	3684	*	6279	6807	3911	6428	6278	5463	*	*	763	4696	5048	*	*	184
+       90	*	4051	*	*	2035	404	9689	0	4534	
+
+R 185  5449	*	5180	4153	5600	6182	5506	3241	5598	4145	*	4453	5607	4088	3474	2878	2403	4027	*	4252	185
+       0	*	*	0	*	656	1453	9703	1000	4329	
+
+L 186  4860	6529	*	6854	5264	*	6626	3822	*	523	5412	*	*	*	*	*	6439	3674	*	5072	186
+       0	*	*	*	*	454	1889	9912	0	2285	
+
+R 187  *	*	4505	4998	6926	6705	4008	4177	5984	3615	5306	3478	5314	5300	3261	2919	2389	3596	*	5940	187
+       46	5600	6565	1308	746	*	0	10050	1145	1245	
+
+V 188  5797	*	*	6686	3573	6640	*	1665	*	1999	5226	5710	*	5781	*	5856	6801	2616	6971	4281	188
+       0	*	*	*	*	*	0	10001	0	1591	
+
+S 189  4403	*	4047	5390	*	5246	5292	5777	4500	6691	5879	3377	2466	4894	3696	2435	3094	5833	*	5662	189
+       14	*	6656	*	*	*	0	10001	0	1591	
+
+A 190  3428	*	4665	4752	6652	5637	3794	6074	3795	3645	4979	4220	2461	5420	4568	2847	4045	5083	*	*	190
+       13	*	6799	*	*	*	0	9994	0	1762	
+
+T 191  4427	5645	4776	4339	6599	4196	5534	4846	4381	3820	6697	5577	6882	3851	4303	2489	3205	2708	*	6822	191
+       125	*	3590	*	*	*	0	9974	0	1903	
+
+F 192  3804	6677	2966	4004	6677	4236	5318	*	3813	5361	6554	3968	4675	3297	3318	3666	3541	3953	*	*	192
+       99	*	3912	*	*	1881	457	9844	0	3271	
+
+W 193  4433	*	5781	2871	3977	6871	4648	5587	5234	4255	4225	*	5582	5498	3258	4388	5049	4179	2292	4356	193
+       57	6526	5172	1000	1000	*	0	9803	1000	3553	
+
+H 194  4672	*	2426	2544	*	4394	4644	5416	5486	4580	*	4906	*	4912	3645	2531	3931	5496	*	5577	194
+       31	6536	6599	3007	192	2972	197	9781	1267	3930	
+
+N 195  5798	*	1523	4226	*	3948	4095	5373	3245	5731	5050	3997	4694	4961	5751	3904	4336	6594	*	*	195
+       151	*	3333	*	*	2845	216	9785	0	3690	
+
+P 196  3022	*	2842	3924	6890	2503	6403	5661	6316	4869	5406	3636	6486	5427	5211	2518	4937	*	*	4811	196
+       1542	*	607	*	*	1244	791	9674	0	4517	
+
+R 197  4253	*	3675	4356	*	1372	*	4159	5360	6093	*	3529	*	4070	3654	3597	5023	*	*	*	197
+       0	*	*	*	*	282	2495	8470	0	7912	
+
+N 198  3233	*	4900	4706	*	1556	5952	6633	3003	5343	*	3520	*	5282	5792	4754	3858	4032	*	6947	198
+       236	*	2729	*	*	3678	117	9915	0	2793	
+
+H 199  5657	*	4045	4179	6145	6449	5487	3763	4005	3473	6232	3823	6346	4842	4530	3586	2131	3628	*	5403	199
+       0	*	*	*	*	209	2892	9859	0	4548	
+
+F 200  *	6700	*	*	2174	*	*	3783	6802	3658	*	*	*	*	*	*	*	3983	6255	911	200
+       0	*	*	*	*	1274	770	10004	0	1437	
+
+R 201  6663	*	6711	3552	5553	6689	5939	4687	3740	6688	5194	4906	*	4275	3564	3388	1734	3791	6332	4413	201
+       0	*	*	*	*	0	*	10047	0	1190	
+
+C 202  *	71	*	6954	*	*	*	6790	*	*	*	*	*	*	6568	*	*	5621	*	*	202
+       16	*	6468	*	*	*	*	10093	0	0	
+
+Q 203  4329	4585	*	3018	*	6809	5469	3255	4038	4124	4678	5938	6672	3838	3019	4906	3175	3103	*	6420	203
+       12	*	6934	*	*	*	0	10058	0	1010	
+
+V 204  2075	6672	*	5642	4276	6453	*	3783	*	5167	*	*	6486	*	*	3899	*	1026	*	*	204
+       26	5793	*	5136	42	1128	883	10010	1156	1160	
+
+Q 205  4920	*	4665	2936	*	4899	4705	6646	2827	6032	6241	4851	*	3736	3075	2792	2703	5696	*	*	205
+       21	6109	*	0	*	0	*	9955	1023	1010	
+
+F 206  6390	*	5237	6738	4254	4729	1667	*	6434	*	6564	1639	6319	5704	5412	3835	5522	*	*	4131	206
+       64	*	4520	*	*	*	*	9844	0	0	
+
+H 207  4645	6318	5006	2652	6084	3753	4634	5124	3275	4498	*	4450	3477	4585	4370	3256	4214	4911	*	4862	207
+       0	*	*	*	*	377	2120	9654	0	1894	
+
+G 208  2374	*	4973	4831	4544	2388	5613	6372	6086	5372	*	4072	*	4686	6446	2613	3493	4826	6269	5353	208
+       0	*	*	*	*	*	0	9626	0	1085	
+
+L 209  5267	*	*	4746	5593	2009	*	5439	6279	1815	4631	6378	5192	4804	6604	2754	5433	4725	*	6324	209
+       0	*	*	*	*	*	0	9518	0	1085	
+
+S 210  5194	6016	4711	2913	6164	5292	5336	*	4821	6327	*	3347	2942	3181	5237	2550	3373	5166	*	6169	210
+       20	6202	*	0	*	0	*	9506	1001	1085	
+
+E 211  5021	*	2996	2824	*	3860	4649	5016	4540	4580	5215	4023	*	3711	5034	3698	3752	3177	*	5572	211
+       19	*	6279	*	*	*	*	9424	0	0	
+
+E 212  4557	*	5990	3108	*	4284	5682	*	5083	5771	5679	3128	2347	3056	3606	3148	4995	5045	*	*	212
+       241	2700	*	2192	356	*	0	9392	2340	1006	
+
+D 213  3655	*	2925	4513	*	*	4928	*	2567	2947	*	4883	6027	4063	2981	3868	4819	4159	*	5777	213
+       180	3659	4708	1411	680	*	0	9185	1618	1006	
+
+K 214  4077	*	5666	5238	*	*	5674	5020	4338	4702	*	3471	5675	4063	4846	2800	1938	2939	*	5885	214
+       56	5814	5614	2322	322	1308	746	9006	1043	1417	
+
+W 215  3687	5550	5830	*	3541	5591	*	2265	*	2725	4506	*	*	5787	*	*	3390	2959	3733	4152	215
+       0	*	*	*	*	*	0	8878	0	1332	
+
+P 216  *	*	3371	3924	*	4371	*	5494	3894	4722	5495	4449	3268	3988	3285	2741	2949	4463	*	*	216
+       29	5644	*	3459	138	1499	630	8782	1015	1332	
+
+E 217  3813	*	4552	3737	5353	5253	*	4346	3131	1948	*	5623	*	*	2958	3026	5765	*	5532	5246	217
+       64	4524	*	3081	181	*	0	8649	1294	1157	
+
+G 218  4239	*	3797	3864	*	5444	*	4359	5174	*	*	2640	4402	3872	4341	2440	4355	2993	*	5445	218
+       97	3937	*	771	1272	*	0	8649	1338	1157	
+
+S 219  5364	*	*	4414	*	*	5209	3479	*	3846	4219	*	2042	*	3690	3284	4532	2167	*	*	219
+       0	*	*	*	*	*	0	8537	0	1157	
+
+P 220  *	*	*	4460	5392	5138	3214	5209	4956	4316	*	3599	2532	5486	4262	3186	4243	3122	*	3685	220
+       79	4238	*	0	*	*	0	8291	1195	1157	
+
+K 221  5226	*	5271	2831	*	4262	3953	5392	3469	*	*	*	3273	2897	2665	5312	3620	*	*	3751	221
+       39	5246	*	0	*	0	*	8291	1000	1157	
+
+P 222  *	*	*	3563	5630	*	*	*	5016	4375	*	*	908	4297	4249	2688	5358	*	*	*	222
+       38	5280	*	1000	1000	*	*	8353	1001	0	
+
+V 223  3410	*	5282	3630	*	3449	*	2823	4163	3187	*	*	2949	*	4174	5149	5246	2901	*	5187	223
+       0	*	*	*	*	*	*	8201	0	0	
+
+T 224  5175	5187	5267	3080	4102	*	5250	3552	*	3209	*	5293	3952	5140	4286	2616	4178	4373	*	3534	224
+       0	*	*	*	*	*	*	8201	0	0	
+
+Q 225  5185	*	*	*	*	*	*	3510	4329	2882	*	5238	4803	2588	4132	3624	*	1712	*	5187	225
+       41	5155	*	0	*	*	*	8201	1001	0	
+
+N 226  *	*	4028	4042	*	*	*	2696	4984	*	*	2220	4071	3935	4952	3087	2519	*	*	5164	226
+       0	*	*	*	*	*	*	7949	0	0	
+
+I 227  4075	*	*	*	*	*	*	1595	4890	2066	*	*	*	4092	*	*	3104	2999	4755	*	227
+       0	*	*	*	*	*	*	7949	0	0	
+
+S 228  4869	*	4887	*	3878	5105	4818	4770	4765	*	*	5002	4853	4871	*	1223	2606	4900	*	*	228
+       0	*	*	*	*	*	*	7611	0	0	
+
+A 229  1758	4732	*	3641	*	4682	*	4896	*	3588	*	*	2069	*	3715	3102	*	*	*	*	229
+       0	*	*	*	*	*	*	7316	0	0	
+
+E 230  *	*	3685	1125	*	4619	*	*	4843	*	4543	4700	*	4558	*	2906	*	2932	*	*	230
+       0	*	*	*	*	*	*	7126	0	0	
+
+A 231  1798	*	3306	2618	3523	*	*	*	*	*	*	2484	*	*	*	*	2453	*	*	*	231
+       0	*	*	*	*	*	*	5187	0	0	
+
+W 232  *	3095	*	*	*	*	3100	3178	*	*	*	*	*	*	*	*	2835	*	955	*	232
+       0	*	*	*	*	*	*	4342	0	0	
+
+G 233  *	*	*	*	*	1456	*	*	*	*	*	2636	*	*	2538	2727	*	2723	*	*	233
+       0	*	*	*	*	*	*	3631	0	0	
+
+R 234  *	*	*	2232	*	*	*	*	*	*	2405	*	*	*	1322	*	2332	*	*	*	234
+       0	*	*	*	*	*	*	3307	0	0	
+
+A 235  425	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1972	*	*	235
+       515	*	1735	*	*	*	*	2901	0	0	
+
+D 236  *	*	942	*	*	*	*	*	*	1060	*	*	*	*	*	*	*	*	*	*	236
+       0	*	*	*	*	0	*	1725	0	1086	
+
+C 237  *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	237
+       0	*	*	0	*	*	*	2256	0	0	
+
+//
+�HHsearch 1.5
+NAME  377b625a8e52f94cba9ef9a525219056
+FAM   
+FILE  377b625a8e52f94cba9ef9a525219056
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:22:57 2013
+LENG  161 match states, 161 columns in multiple alignment
+FILT  122 out of 212 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  3.9 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCCCCCCCCCCCCCHHHHHHHHHHCCCCCCCCCCCCCCCCCCCCCCCHHHHHHHHHCCCCCCCEEEEECCCCEEEECCHHHHHHHHHHHH
+CCCCCCHHHHHHHHHHHHHCCCEEECCCCEEEEECCCCHHHHHCCCHHHHHHHHCCCCCCC
+>ss_conf PSIPRED confidence values
+9863444403388886868999989999786666257888887443568789987349999999854912257279978988899659999999999872
+8999888999699998860686675578878987486899995899999998845498999
+>Consensus
+xxxxxxxxxxxxxxxxxxxxxxxsxxxxvxxxxxxxxxxpxxPxxxxxxxxxxgxxxLwqFLxxLLxdxxxxxxIxWtxxxxeFklvdpxxVAxlWGxxK
+nkxxMtYeKLSRaLRyYYxkxIlxKvxGkrxxYrFxxxxxxxxgxsxxxxxxxxxxxpxxx
+>377b625a8e52f94cba9ef9a525219056
+VPSYDSFDYEDYPAALPNHKPKGTFKDYVRDRADLNKDKPVIPAAALAGYTGSGPIQLWQFLLELLTDKSCQSFISWTGDGWEFKLSDPDEVARRWGKRK
+NKPKMNYEKLSRGLRYYYDKNIIHKTAGKRYVYRFVCDLQSLLGYTPEELHAMLDVKPDAD
+>gi|340380278|ref|XP_003388650.1| PREDICTED: hypothetical protein LOC100638140 [Amphimedon queenslandica]
+------------PSPPCFPppPPPFTTEDFIRPHHPpkpnKRPRKPKPPATVDPSEIKDipASAQLWEFLLKVLKKPKYAYMVSWENqqDG-LFRFHDPP
+AFAALWGRHRNRPSMTYDKVARALRYYYRRDILE-QVGGRLTYKFSPRLCKQFS-----------------
+>gi|268579031|ref|XP_002644498.1| Hypothetical protein CBG14386 [Caenorhabditis briggsae]gi|187027866|emb|CAP32937.1| hypothetical protein CBG_14386 [Caenorhabditis briggsae AF16]
+----------------------------------SYVPSPVYPSPIMNDepmtddelVKMKGPSRLIGFLVHIAMNEKARRALRWTGNGLEFVLVNKELV
+AKMWGNRKhNTKDMDYYKLSRAIREKYEKKnSSNSRgGGKlkkgtrTYSYVFtenaYPDLINQTEKSIE-------------
+>gi|291389803|ref|XP_002711338.1| PREDICTED: Spi-C transcription factor (Spi-1/PU.1 related)-like [Oryctolagus cuniculus]
+---------------------EGNVHQSLQNATENQLVQPAIFP--QKGGKGRKKLRLFEYLYDSLCNPEMASCIQWVDKnKGIFQFVskNKEKLAELWG
+KRKgNRKTMTYQKMARALRNYGRTGEITKIR-RKLTYQFSEAIlqrlspSYILG---KEIFYSQYLQPDQE
+>gi|309366055|emb|CAP22188.2| hypothetical protein CBG_00832 [Caenorhabditis briggsae AF16]
+-----------------------------------------------------SKLCLLPFLRGLLEDESNQHLICWTDKsRLQFRFVDHMKVTELWAAT
+KpgRKVRaMKYDNMCKSLRTFCKQDkTLEKVEGKLFEWRFLES-----------------------
+>gi|189234183|ref|XP_967290.2| PREDICTED: similar to DNA polymerase delta catalytic subunit [Tribolium castaneum]
+-----------------------------------------------------VPPSAPLLYVSNATSSSILLKWKIGNDGgApvSGFTLNYR-------
+----------------------------------------------------------------
+>gi|256077175|ref|XP_002574883.1| hypothetical protein [Schistosoma mansoni]gi|238660099|emb|CAZ31116.1| conserved hypothetical protein [Schistosoma mansoni]
+----------------------------------------------------------DEFILHLFNPnSQYLNCVQWIDKqARIFQIRNPQKLSQLWGY
+YRKNVNMTFESVSRSLRLYYVSGKLERIRGQRNQYRFL-------------------------
+>gi|341878556|gb|EGT34491.1| hypothetical protein CAEBREN_21643 [Caenorhabditis brenneri]
+-----------------------------------------------------RTHRLLRFIPRLINSGDYPDKIIWVNEeEREFRFLEPHFFAKLYGKA
+IGNPDMKYDNMTRSLREYCKQGFAVKTEGQ-SSWRILNNPVALEV-----------------
+>gi|123123380|emb|CAM24571.1| E74-like factor 5 [Mus musculus]gi|123123589|emb|CAM17513.1| E74-like factor 5 [Mus musculus]
+---------------------------------------------------SLQSSHLWEFVRDLLLSPeENCGILEWEDReQGIFRVVKSEAL------
+---------------------------------------------------------------
+>gi|341903063|gb|EGT58998.1| hypothetical protein CAEBREN_15325 [Caenorhabditis brenneri]
+-------------------QSVGSLETFVKKVNLKSVKSPKLP-----------KVNILDFIRDTIESGEHSEVITWVDQnKSGSQIVDPMAVVELYNKA
+TGKRYTKFDNFCRPLRRLAEEGVLFKPKTMRSTWYFVETV----------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+V 1    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	1
+       0	*	*	*	*	*	*	1553	0	0	
+
+P 2    *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	2
+       0	*	*	*	*	*	*	1553	0	0	
+
+S 3    *	*	*	2673	3605	*	*	*	*	*	*	*	*	*	*	394	*	*	*	*	3
+       0	*	*	*	*	*	*	1553	0	0	
+
+Y 4    *	*	*	*	2213	*	*	*	*	*	*	*	*	*	*	*	*	*	*	350	4
+       246	*	2673	*	*	*	*	1553	0	0	
+
+D 5    *	*	425	1970	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	5
+       0	*	*	*	*	*	0	1496	0	1031	
+
+S 6    *	*	*	*	*	2572	*	*	*	*	*	*	*	*	*	266	*	*	*	*	6
+       0	*	*	*	*	*	0	1496	0	1031	
+
+F 7    *	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	7
+       0	*	*	*	*	*	0	1496	0	1031	
+
+D 8    *	*	1334	968	*	*	*	*	3439	*	*	*	*	*	*	*	*	*	*	*	8
+       1334	*	729	*	*	*	0	1496	0	1031	
+
+Y 9    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1171	*	*	*	847	9
+       0	*	*	*	*	244	2685	1217	0	1352	
+
+E 10   *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	10
+       0	*	*	*	*	*	0	1496	0	1031	
+
+D 11   *	*	458	2474	*	*	*	*	*	*	*	3439	*	*	*	*	*	*	*	*	11
+       0	*	*	*	*	0	*	1496	0	1031	
+
+Y 12   *	2213	*	*	*	2844	*	*	*	2740	*	*	*	*	*	*	*	*	*	1013	12
+       234	*	2740	*	*	*	*	1553	0	0	
+
+P 13   *	*	*	*	*	3103	*	*	*	*	*	*	491	*	*	2539	*	*	*	*	13
+       0	*	*	*	*	0	*	1920	0	1036	
+
+A 14   3349	*	*	*	*	*	*	*	*	3199	*	*	*	2048	*	1856	1863	*	*	*	14
+       0	*	*	*	*	*	*	1943	0	0	
+
+A 15   1515	*	*	*	3032	*	*	*	*	*	*	*	1055	*	*	4435	*	*	*	*	15
+       0	*	*	*	*	*	*	1943	0	0	
+
+L 16   *	*	*	*	*	*	*	*	*	1109	*	*	1877	3291	*	2627	*	*	*	*	16
+       0	*	*	*	*	*	*	2071	0	0	
+
+P 17   *	1206	*	*	*	3460	*	*	*	*	*	*	2240	*	1921	*	*	*	*	*	17
+       0	*	*	*	*	*	*	2071	0	0	
+
+N 18   *	*	*	*	2069	*	*	*	*	1159	*	1672	*	*	*	*	*	*	*	*	18
+       0	*	*	*	*	*	*	2071	0	0	
+
+H 19   *	*	*	*	*	*	2240	*	4878	*	*	3623	2069	1984	*	3644	3291	*	*	*	19
+       393	2069	*	1000	1000	*	*	2071	1049	0	
+
+K 20   *	*	*	*	*	*	*	*	1238	*	*	*	2506	2212	2440	*	*	*	*	*	20
+       0	*	*	*	*	*	*	2590	0	0	
+
+P 21   *	*	*	*	*	*	4074	*	*	5107	*	*	676	*	*	1807	*	*	*	*	21
+       105	3830	*	2322	322	*	*	2590	1031	0	
+
+K 22   *	*	3464	2218	*	4440	4204	*	2963	*	*	4147	2523	*	*	*	3927	2559	*	*	22
+       0	*	*	*	*	*	*	3004	0	0	
+
+G 23   *	*	*	*	2924	813	*	*	*	*	3211	*	3464	*	3317	*	*	*	*	*	23
+       0	*	*	*	*	*	*	3004	0	0	
+
+T 24   *	*	4298	*	*	*	*	3647	*	*	*	3397	5609	*	*	965	2050	*	*	*	24
+       0	*	*	*	*	*	*	3109	0	0	
+
+F 25   *	*	*	*	1038	*	*	3548	*	2711	*	*	*	*	*	*	3150	3515	*	3740	25
+       0	*	*	*	*	*	*	3209	0	0	
+
+K 26   *	*	*	1675	*	*	2699	*	1647	3386	*	4642	*	*	*	3680	*	*	*	*	26
+       0	*	*	*	*	*	*	3382	0	0	
+
+D 27   *	2743	1321	4724	4079	*	*	*	*	*	*	*	*	2791	*	*	2258	*	*	*	27
+       0	*	*	*	*	*	*	3446	0	0	
+
+Y 28   3942	*	*	*	1648	*	3982	*	*	4136	3529	*	*	*	*	2826	*	*	*	1900	28
+       0	*	*	*	*	*	*	3454	0	0	
+
+V 29   *	*	*	*	*	*	*	2141	*	2332	4136	*	*	*	*	3803	*	1164	*	*	29
+       0	*	*	*	*	*	*	3454	0	0	
+
+R 30   *	*	*	*	4963	4824	3942	*	2850	4121	*	3982	*	1445	2054	*	*	*	*	*	30
+       0	*	*	*	*	*	*	3454	0	0	
+
+D 31   *	*	3201	3075	*	*	*	*	1852	*	*	1668	3569	*	*	4763	4064	*	*	*	31
+       43	*	5091	*	*	*	*	3644	0	0	
+
+R 32   2860	*	*	*	*	*	3540	*	*	*	*	*	4662	4901	984	*	*	2338	*	*	32
+       0	*	*	*	*	*	0	3657	0	1031	
+
+A 33   1917	3766	*	*	*	*	3563	3436	*	*	*	2681	4168	4328	*	2971	3385	*	*	*	33
+       0	*	*	*	*	*	0	3646	0	1031	
+
+D 34   4328	*	2768	2320	*	*	*	*	3487	2174	*	3496	3563	5225	4770	4168	*	*	*	*	34
+       520	2640	2814	932	1071	*	0	3646	1225	1031	
+
+L 35   3571	*	*	*	*	3079	*	*	1952	3641	*	3358	*	5182	*	3251	3960	3083	*	4423	35
+       0	*	*	1950	432	969	1031	3759	1139	1344	
+
+N 36   4695	*	*	2053	4717	*	*	*	4359	*	*	3292	*	2584	3955	2665	*	4716	*	3257	36
+       186	*	3045	*	*	2334	319	3868	0	1156	
+
+K 37   *	*	3795	*	4736	*	4778	*	3490	2427	*	*	3235	3432	*	*	2718	2294	*	5364	37
+       48	*	4948	*	*	2298	328	3799	0	1207	
+
+D 38   4808	*	2611	5778	*	2069	*	*	3284	5119	*	*	3414	4584	4148	5314	2785	4310	*	*	38
+       0	*	*	*	*	2460	289	3923	0	1193	
+
+K 39   *	5389	5205	5237	4680	*	4775	*	2719	4566	*	3831	4952	3269	3303	1908	*	4113	5573	*	39
+       39	*	5218	*	*	*	0	4082	0	1153	
+
+P 40   5886	*	*	*	*	*	*	*	5801	4784	*	3889	473	4273	*	4418	*	4559	*	*	40
+       0	*	*	*	*	*	0	4081	0	1190	
+
+V 41   3214	*	4600	*	*	*	*	5152	2143	5434	4916	*	4189	4818	*	3158	4533	1762	*	*	41
+       27	*	5773	*	*	2565	267	4120	0	1190	
+
+I 42   4943	*	5498	*	3802	*	4849	1972	4056	2837	4022	*	4039	*	5395	4082	4490	3841	5399	4615	42
+       0	*	*	*	*	*	0	4152	0	1184	
+
+P 43   5139	*	5106	*	5320	5655	*	*	*	*	*	5341	421	6296	*	3700	*	4775	*	*	43
+       141	*	3427	*	*	2800	224	4148	0	1184	
+
+A 44   1796	*	5328	*	4825	4922	4955	*	5026	*	*	4691	3245	4106	*	3108	2463	4149	*	*	44
+       78	*	4239	*	*	*	0	3842	0	1227	
+
+A 45   1459	*	*	4715	4910	5114	*	*	*	4508	*	4751	3693	5408	3993	2798	3300	4444	*	*	45
+       83	*	4166	*	*	3435	140	3795	0	1310	
+
+A 46   3423	*	5271	*	*	5404	4716	2901	4945	3502	*	*	2885	4883	4422	4589	4527	2088	5131	*	46
+       0	*	*	*	*	2956	199	3832	0	1376	
+
+L 47   4195	*	4457	5131	*	5545	5181	3748	3922	1459	4569	*	5125	4056	4454	3953	4365	5136	*	*	47
+       42	5125	*	1000	1000	2006	413	3822	1000	1325	
+
+A 48   1918	*	4956	*	*	4822	3487	5590	3659	4853	*	2995	3144	*	*	5422	2641	5507	*	*	48
+       73	*	4332	*	*	3750	111	3753	0	1238	
+
+G 49   5664	*	4629	4020	5511	978	*	*	5454	*	*	5106	3538	*	4217	3192	5512	5290	*	*	49
+       248	2922	5277	2577	265	*	0	3809	1113	1259	
+
+Y 50   6137	*	4750	3968	3349	4441	*	3493	*	6342	*	4402	3220	*	3537	*	3320	3468	*	2265	50
+       0	*	*	*	*	3961	96	3765	0	1281	
+
+T 51   4256	*	4478	5577	*	4371	4239	3773	3119	*	*	5809	3403	4580	3238	4561	2114	4596	*	5847	51
+       144	4044	4865	3268	158	2666	247	3815	1105	1262	
+
+G 52   4388	*	*	*	*	1175	4461	*	3030	*	3769	4370	*	*	3258	3116	*	*	*	*	52
+       142	4916	4047	1583	586	3688	117	3855	1074	1269	
+
+S 53   *	*	4244	*	*	4118	6282	*	3138	5716	*	2698	*	5770	2192	1503	*	*	*	*	53
+       109	3778	*	2415	300	2193	356	3927	1108	1328	
+
+G 54   5398	*	4676	*	*	871	*	*	3017	*	*	4495	*	5033	3581	4342	5939	4551	*	*	54
+       52	6386	5420	0	*	1327	733	4326	1000	1251	
+
+P 55   6811	4104	5634	*	*	4778	5815	*	1922	*	6221	6030	2028	3095	4513	3303	4088	*	*	*	55
+       12	6883	*	2139	372	1497	631	4565	1001	1200	
+
+I 56   5914	*	*	5772	*	6984	4421	1995	5286	2508	4428	5297	3363	6829	4728	3978	4329	2950	*	*	56
+       16	6499	*	2000	415	*	0	4641	1000	1119	
+
+Q 57   *	4395	*	6249	*	6501	3034	5374	4111	4049	*	5095	7454	2060	2074	4479	3885	*	*	4682	57
+       0	*	*	0	*	*	0	4756	1000	1119	
+
+L 58   5053	*	*	*	6211	*	*	3424	*	236	*	*	*	*	*	*	*	6138	*	*	58
+       0	*	*	*	*	*	0	4819	0	1119	
+
+W 59   *	5758	5955	*	4061	*	*	4181	6572	2681	*	*	4520	6519	6168	6448	*	*	810	4895	59
+       0	*	*	*	*	*	0	4853	0	1119	
+
+Q 60   4292	*	3486	2061	*	5523	5780	7610	4870	3874	*	5618	4145	1515	5823	5145	*	*	*	*	60
+       49	*	4897	*	*	*	0	4853	0	1119	
+
+F 61   *	*	*	6522	188	*	*	*	*	4622	5484	*	*	*	*	*	*	*	*	4374	61
+       0	*	*	0	*	1643	557	4795	1041	1188	
+
+L 62   *	*	*	*	*	*	*	2488	*	530	*	*	6572	*	*	6003	*	3771	*	5078	62
+       0	*	*	*	*	*	0	4853	0	1119	
+
+L 63   6755	*	*	5427	5376	*	4211	4911	5988	1426	6263	*	5823	4496	2050	7279	*	3429	7294	4440	63
+       15	*	6572	*	*	*	0	4853	0	1119	
+
+E 64   5495	*	2240	1733	*	3787	4223	*	4172	*	6239	4307	*	3918	4407	5037	3979	*	*	6270	64
+       0	*	*	*	*	*	0	4853	0	1156	
+
+L 65   5227	6619	*	7424	*	*	*	4498	*	552	4134	4516	*	*	*	3855	5202	4880	*	*	65
+       0	*	*	*	*	*	0	4853	0	1156	
+
+L 66   4021	*	*	4856	5943	*	*	4478	*	306	*	*	6244	*	*	*	*	5605	*	*	66
+       10	*	7184	*	*	*	0	4853	0	1156	
+
+T 67   5085	5366	3130	2766	6142	*	6211	4590	4308	3027	4665	2953	*	4126	5267	4784	2694	*	*	*	67
+       11	7103	*	0	*	3819	106	4855	1000	1170	
+
+D 68   6239	5904	1159	6029	*	4941	5044	*	4029	7080	*	2677	5410	7479	6304	2762	5068	*	*	*	68
+       181	3252	6244	499	1775	2317	323	4853	1226	1156	
+
+K 69   5911	*	4096	2874	*	2868	5596	*	3072	*	*	4630	2034	3892	5786	3058	7043	6128	*	*	69
+       100	3900	*	0	*	2552	270	4791	1193	1150	
+
+S 70   4357	*	4090	2201	*	*	5997	*	3369	5367	*	4404	7091	4387	4028	1957	4353	5644	*	4375	70
+       46	5003	*	515	1735	*	0	4853	1060	1119	
+
+C 71   4425	2825	7091	*	4853	*	3176	5078	3950	4585	4249	2788	*	4553	6597	4995	6246	5421	6622	2355	71
+       130	3542	*	902	1105	*	0	4853	1201	1119	
+
+Q 72   4049	5518	5034	4128	*	3716	7294	5731	3436	4451	6150	5136	3005	2980	3599	2509	5534	5889	*	*	72
+       21	7883	6572	0	*	*	0	4853	1000	1119	
+
+S 73   *	*	2323	3545	*	3894	2979	*	4576	5037	*	3245	5118	3842	4003	2629	6979	*	*	6372	73
+       23	5962	*	0	*	*	0	4853	1008	1156	
+
+F 74   4207	2553	*	7556	3490	*	5962	2121	3614	3452	5493	*	*	7014	*	5909	6550	3162	*	3425	74
+       0	*	*	*	*	*	0	4853	0	1156	
+
+I 75   5023	*	*	*	*	*	*	368	*	4319	*	*	*	*	*	*	*	3136	5037	*	75
+       0	*	*	*	*	*	0	4853	0	1156	
+
+S 76   3399	3556	*	3957	*	*	6750	5820	2675	*	5500	6379	*	3425	2612	3146	3693	4370	4837	7001	76
+       15	*	6550	*	*	*	0	4853	0	1156	
+
+W 77   *	*	*	*	*	5947	*	5009	*	*	*	*	*	*	*	*	*	*	70	*	77
+       8	7495	*	0	*	3253	160	4854	1000	1178	
+
+T 78   7578	*	*	2687	5074	5037	*	3664	4848	5787	*	*	6550	6346	5962	4708	1350	2491	*	*	78
+       57	4689	*	200	2951	*	0	4853	1066	1156	
+
+G 79   *	5788	1475	5290	*	2180	*	5962	4576	6154	*	2247	*	6305	4499	5609	6579	*	*	7532	79
+       318	2393	7094	413	2006	*	0	4853	1454	1156	
+
+D 80   *	*	2401	2951	*	5438	*	*	2152	*	*	3405	5854	3676	2581	5027	6674	*	*	4806	80
+       590	1576	*	254	2631	3273	158	4851	1848	1177	
+
+G 81   4060	*	4541	2556	*	2186	*	5351	3134	*	*	3360	4583	5013	3739	4254	4821	5326	*	6472	81
+       217	3081	5536	191	3013	*	0	4853	1281	1156	
+
+W 82   4713	*	5776	*	4165	1495	5560	7017	5137	2321	5189	7399	*	6104	3720	3941	7089	*	3787	7166	82
+       114	3713	*	788	1249	1499	630	4851	1169	1256	
+
+E 83   *	5788	*	1115	*	5202	6248	3017	4851	5051	6091	*	*	4107	6979	4604	4393	3032	*	*	83
+       0	*	*	*	*	*	0	4853	0	1156	
+
+F 84   *	*	*	*	123	5037	*	*	*	6225	*	*	*	*	*	4724	*	*	*	*	84
+       0	*	*	*	*	*	0	4853	0	1156	
+
+K 85   *	*	*	6429	5037	*	7191	4421	1395	6501	*	*	*	2632	1930	4973	*	4118	*	*	85
+       0	*	*	*	*	*	0	4853	0	1156	
+
+L 86   *	*	*	*	1992	*	*	2232	*	1481	4260	*	*	*	*	4239	5037	4579	*	*	86
+       17	6429	*	1000	1000	*	0	4853	1019	1156	
+
+S 87   5875	7457	*	4905	*	*	6372	3217	3740	2410	5510	5355	*	6256	5091	3601	4102	1592	*	*	87
+       7	7595	*	1000	1000	*	0	4853	1024	1156	
+
+D 88   *	*	1215	4007	*	6726	5562	*	3172	*	*	2236	*	4097	5427	4346	5488	*	*	*	88
+       49	4914	*	1000	1000	2317	323	4853	1041	1156	
+
+P 89   5481	6168	5154	*	*	6621	5807	*	2953	*	*	*	1073	5079	4508	2644	5718	5565	*	5078	89
+       28	6621	6780	1585	585	*	0	4853	1000	1119	
+
+D 90   3690	*	2683	1676	*	7509	2820	*	4276	*	4685	3817	5440	4257	5078	5811	7200	5986	*	*	90
+       0	*	*	*	*	*	0	4852	0	1139	
+
+E 91   2389	*	*	1824	5705	4264	6092	5613	2540	4071	5420	*	*	6281	3630	*	5654	4264	*	*	91
+       37	*	5321	*	*	3109	178	4699	0	1139	
+
+V 92   6176	*	*	*	4027	*	*	3537	*	2066	*	*	*	*	*	*	*	737	*	*	92
+       0	*	*	*	*	*	0	4650	0	1226	
+
+A 93   252	*	*	*	*	*	*	*	*	*	*	*	*	5073	*	4009	5861	4289	*	*	93
+       44	*	5073	*	*	*	0	4650	0	1226	
+
+R 94   6329	*	6578	2276	7115	5385	5507	5594	2177	8020	5593	5786	*	3352	1684	6363	7559	7279	*	*	94
+       9	*	7374	*	*	2302	327	4615	0	1289	
+
+R 95   7137	*	*	5463	7119	*	*	5927	5278	856	3595	*	*	5240	2485	6167	5072	5484	6095	*	95
+       0	*	*	*	*	*	0	4650	0	1240	
+
+W 96   *	*	*	*	*	*	*	*	*	*	5072	*	*	*	*	*	*	*	153	3813	96
+       0	*	*	*	*	*	0	4650	0	1240	
+
+G 97   4872	*	*	*	*	132	*	*	*	*	*	5153	*	*	*	5302	*	*	*	*	97
+       0	*	*	*	*	*	0	4665	0	1240	
+
+K 98   2606	7729	5013	3742	*	*	5131	3534	2464	4110	5312	4026	6132	3167	3763	6998	5544	5280	*	5031	98
+       0	*	*	*	*	*	0	4665	0	1240	
+
+R 99   3707	*	*	4834	6946	*	3076	5162	4351	5214	5974	6130	*	3114	1432	4703	4474	6331	5509	5398	99
+       0	*	*	*	*	*	0	4665	0	1240	
+
+K 100  *	*	*	5131	*	*	*	4588	314	*	*	*	*	*	4706	*	3523	*	*	*	100
+       229	2770	*	142	3417	*	0	4665	1392	1240	
+
+N 101  *	5698	7242	4562	*	2452	6315	*	4399	*	*	988	4820	5011	3624	4740	*	*	*	*	101
+       14	6720	*	0	*	*	0	4665	1000	1240	
+
+K 102  *	*	*	*	*	4511	4371	*	1649	*	*	1867	*	4590	2139	*	4436	*	*	*	102
+       116	4354	5131	528	1707	*	0	4665	1066	1240	
+
+P 103  4980	6565	4816	5279	*	*	5767	*	2400	4158	6991	5468	1402	5449	3761	5409	4698	4260	6255	*	103
+       62	4562	*	925	1079	*	0	4632	1073	1303	
+
+K 104  3937	5804	3491	4894	6644	4235	6521	5762	3138	*	*	2573	4509	5077	3107	3179	4629	4321	*	5069	104
+       20	6180	*	0	*	4558	63	4632	1000	1303	
+
+M 105  *	*	*	*	*	*	*	6158	*	5425	142	*	*	*	*	*	4146	*	*	*	105
+       9	*	7385	*	*	893	1115	4631	0	1289	
+
+N 106  5191	*	3572	*	*	5409	*	*	3487	*	*	1598	*	*	*	3987	1387	*	*	*	106
+       0	*	*	*	*	*	0	4712	0	1133	
+
+Y 107  *	5191	*	*	3254	*	*	5409	*	*	*	*	*	*	*	5943	*	*	*	272	107
+       0	*	*	*	*	*	0	4712	0	1133	
+
+E 108  *	*	1593	1189	*	6526	*	*	6791	5770	*	4852	*	3217	7182	5686	*	*	*	5426	108
+       0	*	*	*	*	*	0	4712	0	1133	
+
+K 109  *	5632	5549	4452	6756	*	*	6791	629	*	*	3153	*	6391	7186	4188	4704	5409	*	*	109
+       0	*	*	*	*	*	0	4712	0	1133	
+
+L 110  *	*	*	*	3498	*	*	*	*	963	1433	*	*	*	*	*	*	5150	*	*	110
+       0	*	*	*	*	*	0	4712	0	1133	
+
+S 111  2903	3468	*	6314	*	6021	*	*	*	*	*	*	*	*	5191	511	5722	*	*	*	111
+       0	*	*	*	*	*	0	4712	0	1133	
+
+R 112  *	*	*	*	*	*	*	*	5429	*	*	5770	5465	5191	158	6375	*	*	*	*	112
+       40	5191	*	1585	585	*	0	4712	1036	1133	
+
+G 113  1000	*	*	5770	*	2867	*	5191	*	*	*	5632	5186	*	*	1946	*	6648	*	*	113
+       0	*	*	*	*	*	0	4712	0	1133	
+
+L 114  *	*	*	*	6314	5632	*	3307	*	594	2564	*	*	*	*	6391	*	5465	*	*	114
+       0	*	*	*	*	*	0	4712	0	1133	
+
+R 115  5465	*	*	*	*	*	*	*	5632	*	*	*	*	*	99	5409	*	*	*	*	115
+       0	*	*	*	*	3512	132	4712	0	1133	
+
+Y 116  4922	*	4950	3690	5416	*	4721	*	5550	3741	*	3693	5770	5854	5187	4653	4743	*	*	1052	116
+       7	*	7664	*	*	*	0	4712	0	1119	
+
+Y 117  *	6382	*	*	3127	*	5200	*	4939	4323	*	*	*	5632	*	5662	*	*	*	466	117
+       0	*	*	*	*	*	0	4715	0	1130	
+
+Y 118  4422	3714	*	6992	*	5674	*	5531	*	5477	*	*	*	*	5444	5378	5547	*	5409	487	118
+       0	*	*	*	*	*	0	4715	0	1130	
+
+D 119  4107	*	2650	3021	*	4308	5969	*	1617	*	*	4742	5477	4797	3373	4694	6128	5526	*	*	119
+       10	7179	*	0	*	98	3930	4715	1000	1130	
+
+K 120  5673	*	4499	4643	*	5803	*	6383	1333	6045	4803	4339	7488	3820	2924	3887	3624	6355	*	*	120
+       33	*	5476	*	*	0	*	4720	0	1000	
+
+N 121  *	7139	3348	5120	*	1384	5337	*	3016	*	*	2199	*	5318	5469	6016	5296	5158	*	*	121
+       168	3726	4860	0	*	*	0	4657	1158	1017	
+
+I 122  *	*	5253	3938	5640	6493	*	835	5858	3611	5034	*	*	6970	6473	6105	3845	3579	*	*	122
+       0	*	*	0	*	0	*	4689	1041	1087	
+
+I 123  5690	*	*	*	6979	5348	*	1903	*	1391	2398	*	*	5386	*	5225	*	4079	*	*	123
+       45	*	5035	*	*	*	*	4708	0	0	
+
+H 124  5140	*	6238	1861	3765	7125	3986	6094	3513	4577	6436	4398	*	3603	3318	4680	4450	3992	*	7382	124
+       19	*	6259	*	*	0	*	4694	0	1040	
+
+K 125  *	*	*	*	*	*	7027	*	461	*	*	*	4665	5565	3271	4525	4103	*	*	*	125
+       11	7060	*	1585	585	0	*	4702	1000	1049	
+
+T 126  4324	5964	*	3771	5737	6336	*	3057	4225	4967	4824	*	4788	6353	6139	6423	3803	1175	*	*	126
+       67	5026	6115	2027	406	*	*	4708	1043	0	
+
+A 127  3111	*	3731	4012	7527	4723	3915	7630	3211	4144	*	7446	2431	3955	4499	3456	6952	4329	*	5720	127
+       88	5336	4872	527	1708	0	*	4697	1073	1007	
+
+G 128  5322	*	7167	*	*	428	5309	6178	4439	*	*	7310	6983	*	4162	5467	4417	*	*	*	128
+       35	7073	5941	0	*	0	*	4662	1000	1107	
+
+K 129  4426	*	*	3237	*	5618	7838	6198	1705	7204	4798	*	*	2235	2321	5409	*	5424	*	*	129
+       103	5183	4597	2585	263	0	*	4682	1041	1029	
+
+R 130  *	7489	4745	5251	6278	5316	*	6139	2176	4742	*	4500	*	*	963	5204	4803	*	*	*	130
+       0	*	*	*	*	0	*	4641	0	1077	
+
+Y 131  6924	4751	*	*	3003	*	5398	6192	*	1316	*	5878	*	*	*	3266	*	*	5337	2029	131
+       52	*	4817	*	*	*	*	4688	0	0	
+
+V 132  3771	5501	*	4355	*	6056	6446	5018	*	5334	5639	6924	*	5145	3344	4059	2337	1471	*	*	132
+       0	*	*	*	*	0	*	4624	0	1039	
+
+Y 133  *	7493	*	*	4838	5337	6267	*	*	5380	*	*	*	*	*	6511	*	*	3212	361	133
+       19	*	6226	*	*	*	*	4688	0	0	
+
+R 134  6157	7481	*	*	6174	*	5653	*	1679	4996	*	*	*	2434	1521	*	6487	5142	*	5059	134
+       0	*	*	*	*	*	0	4685	0	1000	
+
+F 135  5323	7008	*	*	191	*	*	5630	*	6174	*	5364	6487	*	*	*	*	*	*	5538	135
+       66	4920	6394	1951	432	872	1141	4685	1149	1000	
+
+V 136  4355	5885	4636	7190	6156	2553	*	3667	7139	2389	*	5563	4336	*	5218	4356	4676	2240	*	5117	136
+       96	6301	4271	2305	326	1450	658	4718	1019	1026	
+
+C 137  4616	2648	3908	2573	5487	4749	*	*	4047	5602	*	4067	2106	*	6013	4351	4671	5122	*	*	137
+       0	*	*	0	*	723	1343	4629	1000	1123	
+
+D 138  4468	*	1672	3119	6914	6483	6876	*	4563	4580	*	3502	6564	4405	4456	3259	3336	6763	*	6699	138
+       15	6606	*	0	*	*	0	4600	1000	1031	
+
+L 139  3381	*	4574	*	5434	*	*	3931	6385	1888	*	*	1801	6470	4885	5197	4955	3726	5891	7157	139
+       68	4933	6223	2150	368	0	*	4500	1048	1031	
+
+Q 140  5590	5308	4882	2586	*	6696	4110	3917	2640	3741	6025	*	*	3337	2983	5111	5417	4191	5512	6093	140
+       28	5679	*	1585	585	*	0	4246	1000	1000	
+
+S 141  2543	*	4864	3878	*	4479	*	4597	2624	6050	6176	2348	6334	4169	6615	3330	4874	5764	*	5484	141
+       0	*	*	*	*	*	0	4112	0	1000	
+
+L 142  4386	*	5559	*	*	6167	*	3008	*	1488	4183	*	*	2480	5048	4846	*	3500	5103	5674	142
+       0	*	*	*	*	0	*	4098	0	1000	
+
+L 143  4293	*	*	2793	2716	*	5192	3501	5220	1790	*	5715	*	*	*	4277	4002	3511	*	*	143
+       0	*	*	*	*	*	*	3992	0	0	
+
+G 144  *	*	5480	3194	*	844	*	4394	*	*	5645	3862	*	6149	5989	3889	*	4137	*	5594	144
+       141	*	3422	*	*	*	*	3984	0	0	
+
+Y 145  *	4089	*	*	4034	*	3328	4161	3487	3702	3117	4831	*	*	4620	*	*	3739	3483	2299	145
+       0	*	*	*	*	*	0	3525	0	1132	
+
+T 146  3945	*	4306	5814	*	*	*	*	3043	4630	5934	*	4881	*	*	1167	2256	*	*	*	146
+       102	3876	*	0	*	*	0	3492	1036	1132	
+
+P 147  2908	*	3458	4105	5439	5245	*	3330	*	4763	*	5031	1470	*	*	4450	4803	4088	*	*	147
+       0	*	*	*	*	0	*	3425	0	1132	
+
+E 148  4342	*	2857	1183	*	4084	*	*	3608	4967	4063	*	5123	*	*	4685	4371	*	*	5402	148
+       0	*	*	*	*	*	*	3538	0	0	
+
+E 149  4747	*	3331	979	*	3715	*	4764	4240	*	*	*	3485	3311	*	*	*	*	*	*	149
+       0	*	*	*	*	*	*	3271	0	0	
+
+L 150  3880	*	*	4101	*	*	*	2296	*	1236	3147	*	*	*	*	*	*	2913	*	*	150
+       0	*	*	*	*	*	*	3233	0	0	
+
+H 151  *	*	*	*	3222	*	1185	*	3394	*	*	4200	*	3499	4848	4774	*	4480	3734	5388	151
+       0	*	*	*	*	*	*	2986	0	0	
+
+A 152  2300	*	*	*	*	3776	4109	*	2951	*	*	4732	*	4248	4773	2508	3045	*	*	3147	152
+       0	*	*	*	*	*	*	2934	0	0	
+
+M 153  4528	*	*	*	*	*	*	5359	4673	2965	1680	4130	*	3309	2892	3059	*	*	*	4632	153
+       0	*	*	*	*	*	*	2920	0	0	
+
+L 154  3500	*	*	*	3129	*	*	*	*	1235	*	*	*	2910	*	4073	*	3090	*	4001	154
+       0	*	*	*	*	*	*	2845	0	0	
+
+D 155  *	*	2819	4343	*	1778	*	*	*	*	*	*	3412	3063	3203	*	4205	*	*	2825	155
+       0	*	*	*	*	*	*	2814	0	0	
+
+V 156  3368	*	*	*	5043	*	3831	3255	*	2109	*	*	*	3020	*	*	*	1545	*	*	156
+       0	*	*	*	*	*	*	2802	0	0	
+
+K 157  *	*	*	3614	*	*	2189	*	2625	*	*	*	*	1137	*	*	*	3601	*	*	157
+       0	*	*	*	*	*	*	2345	0	0	
+
+P 158  *	*	*	*	*	*	*	3480	*	*	*	*	135	*	*	*	*	*	*	*	158
+       89	4060	*	2807	222	*	*	2326	1031	0	
+
+D 159  *	*	1046	3183	*	2860	*	*	*	3133	*	4516	*	*	*	3182	*	*	*	*	159
+       0	*	*	*	*	0	*	2244	0	1031	
+
+A 160  3943	*	3784	*	*	*	*	*	*	*	*	*	*	2108	1924	3760	1771	*	*	*	160
+       0	*	*	*	*	*	*	2151	0	0	
+
+D 161  *	*	2474	619	*	2567	*	*	*	*	*	*	*	*	*	*	*	*	*	*	161
+       0	*	*	0	*	*	*	2067	0	0	
+
+//
+�HHsearch 1.5
+NAME  37afc7acd88623f9df7bf8f423af00c0
+FAM   
+FILE  37afc7acd88623f9df7bf8f423af00c0
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 14:51:38 2013
+LENG  74 match states, 74 columns in multiple alignment
+FILT  107 out of 1036 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  10.2
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCEEEEEECCCCCCCHHHHHHHHHHHCCEEEEECCCCCEEEEEECCHHHHHHHHHHHCCCEECCEEEEEEECCC
+>ss_conf PSIPRED confidence values
+97499996899999999999999970938999708875899997999999999998289868985899996899
+>Consensus
+xxxxlxvxxlpxxxxxxxlxxxxxxxgvxxxxxxxxxxxafvxfxxxxxaxxaxxxlxxxxxxgxxlxvxxxxx
+>37afc7acd88623f9df7bf8f423af00c0
+HMRKILIRGLPGDVTNQEVHDLLSDYELKYCFVDKYKGTAFVTLLNGEQAEAAINAFHQSRLRERELSVQLQPT
+>gi|115402163|ref|XP_001217158.1| polyadenylate-binding protein 2 [Aspergillus terreus NIH2624]gi|114189004|gb|EAU30704.1| polyadenylate-binding protein 2 [Aspergillus terreus NIH2624]
+--RSIFVGNVDYGASPEEIQAHFQSCGsINRVTIlldkftGQPKGMPTSNLQSPVWWPNSGV-KRKCVPWSQS-EVVPKRT
+>gi|335282457|ref|XP_003123153.2| PREDICTED: scaffold attachment factor B1 [Sus scrofa]
+-MAKFCRTGRSIAKESRAVTIVQPALGpSFG--VapcGERsggPAAG---RGTQGEPASFLPLWPVPPAGG----------
+>gi|338723967|ref|XP_001497902.3| PREDICTED: insulin-like growth factor 2 mRNA-binding protein 3-like [Equus caballus]
+-LGSLYLESemgvssvVGARCVGAPSLRSSSHSRlSLPGrpeqgegpgrPHLKKvnvapsPGSVCGESPRR-WAggqRPSCGCRGSkVELHGKLIEVEHS
+--
+>gi|194222666|ref|XP_001498933.2| PREDICTED: insulin-like growth factor 2 mRNA-binding protein 2-like isoform 1 [Equus caballus]
+-DYELPMEAFPSWSRLSTYTKcrfqlwLYlgsdpGSPPpPSSSQdpgrpPSFPLGTKFAQLEPGRRSLEGARRRSRsveFCKVElhgKIMEVDYS--
+>gi|302763791|ref|XP_002965317.1| hypothetical protein SELMODRAFT_406603 [Selaginella moellendorffii]gi|300167550|gb|EFJ34155.1| hypothetical protein SELMODRAFT_406603 [Selaginella moellendorffii]
+NQGTLVVFNLDVAISIETINSVFKKYGdVKEIREtPIKRTHKFVEFFDVRDAARAKEALDGEDILGSTVKIEFSRP
+>gi|7498075|pir||T30930 hypothetical protein D1007.7 - Caenorhabditis elegans
+--RTLWLKKIPTNIVENDLKQAVESCGeASRVKVIGNRACAYITMENRRSANDVVSKMREVSVAKKMVKVYWA--
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+H 1    4182	*	4232	*	*	*	3215	*	*	*	*	887	3905	*	*	3873	4122	4296	*	*	1
+       0	*	*	*	*	*	*	5669	0	0	
+
+M 2    3753	4779	4058	*	4903	5045	*	*	*	3517	1982	3883	*	4854	2735	3318	*	4950	*	4649	2
+       0	*	*	*	*	*	*	7451	0	0	
+
+R 3    3515	4135	*	5739	5632	4384	*	*	2620	5765	6030	6206	5899	6008	1671	4802	3143	5694	*	4497	3
+       0	*	*	*	*	*	*	9159	0	0	
+
+K 4    5989	5191	6181	4508	6188	*	*	6347	2708	4967	*	4654	6469	5263	3185	2924	1706	4411	*	5980	4
+       0	*	*	*	*	*	*	9964	0	0	
+
+I 5    5072	5119	*	*	5038	6275	6641	2072	*	1424	6556	*	*	*	5078	5882	6816	2241	*	*	5
+       26	5829	*	0	*	*	*	10253	1145	0	
+
+L 6    *	5795	*	5403	2073	5797	4369	4353	5204	4238	6408	*	5946	4966	5578	5062	5235	3786	4038	1975	6
+       0	*	*	*	*	*	*	10257	0	0	
+
+I 7    5622	5733	*	*	4896	*	6929	1792	5901	2940	4183	*	*	*	4446	*	*	1387	*	*	7
+       0	*	*	*	*	*	*	10257	0	0	
+
+R 8    4280	*	5109	4415	4544	1968	5880	*	3717	6337	*	5515	*	*	2892	2662	3287	6560	6447	5072	8
+       31	6837	6337	0	*	*	*	10311	1057	0	
+
+G 9    5124	*	5448	5336	*	1993	4645	6501	4508	6029	6684	1618	4780	6872	4639	3483	4891	*	6620	6920	9
+       23	5973	*	2807	222	0	*	10276	1080	1022	
+
+L 10   6509	*	*	*	3464	*	*	2159	*	1201	6454	*	4919	*	4872	*	*	2893	*	5254	10
+       42	5732	6673	0	*	*	*	10311	1194	0	
+
+P 11   4413	6767	3550	5114	*	3915	5169	6257	5587	5317	*	5556	1135	5614	5930	3339	5032	5317	*	6839	11
+       100	4794	5006	1033	967	0	*	10316	1802	1000	
+
+G 12   4190	4731	5086	4371	4680	6045	7090	4372	3818	3594	5745	5018	2614	3831	4181	3751	3942	6753	5500	4125	12
+       12	6882	*	0	*	0	*	10349	1057	1607	
+
+D 13   4403	5731	3416	3944	5592	3889	4805	5246	4665	5676	6728	3375	4991	5214	4284	2533	4411	5706	3912	4474	13
+       0	*	*	*	*	*	*	10382	0	0	
+
+V 14   3601	4119	5673	*	4067	4619	*	3215	4783	3228	5444	*	5973	*	7094	4338	2936	2509	5936	3815	14
+       0	*	*	*	*	*	*	10382	0	0	
+
+T 15   *	5112	4117	4888	6905	3867	5798	6363	4423	6612	5676	3619	4493	5023	3300	2444	2112	5429	*	*	15
+       39	6572	5948	2000	415	*	*	10388	1000	0	
+
+N 16   4518	*	3281	2219	6528	3961	6219	4810	3771	3729	6850	7132	5332	4792	3900	5138	5005	4063	3770	5080	16
+       41	5156	*	1060	943	0	*	10420	1538	1121	
+
+Q 17   2993	6482	2690	2609	*	4360	*	5742	3931	5609	6674	4847	5259	3599	4743	2952	4750	5355	6706	*	17
+       10	7196	*	2000	415	*	*	10625	1000	0	
+
+E 18   4358	*	2239	2436	5841	5263	6836	4726	3710	5806	6208	4894	5198	3361	4652	4180	3982	5227	6205	*	18
+       11	*	7049	*	*	*	*	10625	0	0	
+
+V 19   5282	*	*	*	4311	*	*	2215	*	1250	5212	*	*	*	*	3793	6791	2784	*	4846	19
+       44	5045	*	2518	277	*	0	10649	1439	1040	
+
+H 20   3905	5781	*	3465	6011	*	4579	4641	2214	3692	5013	5910	*	4903	2516	6049	3782	4806	5702	4815	20
+       13	6833	*	4248	78	*	0	10649	1000	1040	
+
+D 21   3965	*	3208	3209	6703	5059	5640	6065	3225	*	*	4339	5184	3934	2270	2939	4842	5433	*	*	21
+       21	6128	*	2585	263	*	0	10649	1112	1040	
+
+L 22   3335	6012	*	4502	2706	6237	3628	3644	4948	2616	5180	5088	*	*	4332	5101	5535	3685	5616	3991	22
+       42	5136	*	1429	670	*	0	10649	1373	1040	
+
+L 23   5055	4582	*	*	1484	*	6313	3733	5119	1771	5656	*	*	6065	*	4191	*	4663	*	4961	23
+       21	6128	*	2322	322	*	0	10649	1112	1040	
+
+S 24   3216	5689	4767	3213	6544	3522	5913	6750	3228	4396	5160	3846	4876	5550	3661	2732	6694	4378	*	6607	24
+       39	*	5246	*	*	*	0	10649	0	1040	
+
+D 25   4325	*	4166	2867	6592	5812	5099	*	2758	6410	*	3693	3611	2755	3584	4050	3989	5758	*	6996	25
+       14	*	6661	*	*	1915	445	10542	0	1617	
+
+Y 26   5024	4157	*	*	2232	6639	3968	5474	5983	3371	4694	4687	6027	4608	6864	3205	5632	4554	5660	2661	26
+       94	4161	7130	1504	627	1754	507	10565	2033	1642	
+
+E 27   3985	*	5176	4834	*	771	5442	*	*	6485	*	3557	5030	6467	4619	5036	5989	5180	6299	*	27
+       2664	248	*	333	2279	1827	478	10560	9681	1659	
+
+L 28   4442	4313	*	*	*	*	*	2403	6831	3106	4899	6756	3592	6595	5664	3599	4975	1758	*	5378	28
+       33	5485	*	1381	699	*	0	10464	1259	2147	
+
+K 29   4258	6650	3767	3215	5872	4975	7008	3712	3185	3375	6515	4954	6657	4093	4032	4001	3892	3680	*	4768	29
+       16	*	6463	*	*	2583	263	10464	0	2147	
+
+Y 30   4111	*	3909	3929	3607	3679	4452	6598	4431	5075	*	3746	4209	4671	3921	2546	5443	4846	6732	4461	30
+       54	5644	5880	2008	412	*	0	10450	1264	2175	
+
+C 31   3599	3863	6625	6982	4318	4559	5738	2580	5652	2993	4473	*	*	6658	6451	3349	6658	2236	*	5641	31
+       56	5921	5552	3322	152	1008	992	10264	1080	2503	
+
+F 32   5062	6687	4440	4228	4003	5395	5702	4300	2488	4688	*	5754	4737	3437	2704	3920	5166	4322	5916	5298	32
+       86	4903	5348	2045	400	1142	871	10422	1610	2063	
+
+V 33   5162	6277	*	6783	3792	*	5051	2151	5351	2568	3843	6670	5225	*	6935	4425	*	2207	5964	4799	33
+       1362	711	*	2089	387	1779	497	10430	8622	2255	
+
+D 34   4358	6793	3515	6452	5686	2408	6871	5111	4199	3473	5626	4433	3318	4674	3302	4324	4817	6240	*	4398	34
+       200	3029	7108	2634	253	1670	544	10429	3236	2441	
+
+K 35   4760	*	4718	3726	4738	4173	5000	4792	2449	4826	7053	3835	4595	4388	2865	4251	4403	4109	*	6770	35
+       64	4516	*	1615	570	2542	272	10501	1876	2121	
+
+Y 36   4706	6685	4858	4780	4978	3537	4878	*	3075	5675	5149	3766	3734	4545	3313	2364	4613	5632	*	6013	36
+       119	3659	*	1592	582	1852	468	10501	2489	2051	
+
+K 37   4733	*	3983	5386	*	5062	4383	*	2086	4362	6911	4394	4742	4798	2095	4369	4893	4266	*	5971	37
+       37	7079	5797	2000	415	*	0	10507	1000	1916	
+
+G 38   4067	6382	4870	5137	5594	1428	5877	6643	4104	6745	*	4621	4760	4891	3459	3238	5076	5237	*	6116	38
+       52	5776	5887	1134	877	1874	460	10492	1181	2363	
+
+T 39   5323	4508	5238	4327	1919	*	4713	3966	6357	4943	6881	5683	*	4599	4725	3698	3994	4373	6853	2840	39
+       0	*	*	*	*	2112	380	10439	0	2283	
+
+A 40   1301	3897	6526	6410	5505	2165	*	6892	4843	6591	6616	*	*	*	4970	4257	6522	3484	*	6504	40
+       38	6526	6072	2707	240	1288	760	10521	1247	1955	
+
+F 41   6408	5348	5462	6883	1206	*	*	3904	6687	2732	6674	7002	*	5971	5227	5765	6920	4972	5220	2981	41
+       27	5748	*	2585	263	*	0	10458	1170	1841	
+
+V 42   4073	5766	*	*	6648	6057	*	2231	5404	3417	*	*	6526	*	5748	6018	5383	1044	6247	*	42
+       17	6408	*	3807	107	*	0	10458	1020	1841	
+
+T 43   5343	*	3136	2146	5764	4405	5047	4847	3824	5864	*	4633	6526	3519	3605	3947	3317	6282	*	5740	43
+       34	5427	*	2185	358	783	1255	10458	1269	1841	
+
+L 44   *	6786	5778	*	1201	6673	*	7105	*	2835	4869	*	6219	6342	4742	5090	*	4413	6694	2343	44
+       51	5747	5936	1000	1000	*	0	10641	1199	1235	
+
+L 45   3425	*	3881	2938	4744	3971	6742	5631	3686	4848	5059	5162	3675	4362	3666	3580	4128	6856	*	4255	45
+       0	*	*	*	*	1129	882	10548	0	1608	
+
+N 46   5857	5646	2585	4546	*	4959	6832	*	5338	5754	*	2841	6105	5396	4252	1926	2765	*	*	5139	46
+       0	*	*	*	*	*	0	10641	0	1235	
+
+G 47   3608	*	5008	3727	6319	4362	6832	4656	4262	4878	5868	7216	2362	4536	2735	3859	5790	4231	6492	4250	47
+       43	6113	6068	0	*	*	0	10641	1121	1235	
+
+E 48   3506	*	3255	2103	6425	3739	*	5792	4958	5022	*	4024	6463	3644	3547	4366	3315	6693	*	6672	48
+       30	5608	*	1459	652	420	1986	10567	1240	1527	
+
+Q 49   3140	6769	2681	2929	6214	4586	4942	5308	4128	6734	7041	5632	6817	3988	3958	2721	3956	5995	6073	*	49
+       16	*	6475	*	*	*	0	10641	0	1000	
+
+A 50   1022	4223	*	*	6937	4982	*	5863	6242	3887	4358	*	6030	5318	4743	3389	4675	4880	6698	6453	50
+       93	4630	5515	3816	106	*	0	10623	1808	1220	
+
+E 51   3605	*	4127	2884	7159	5183	5805	4351	3599	4636	5032	3597	*	3085	3368	4175	3507	5070	*	*	51
+       0	*	*	*	*	*	0	10562	0	1693	
+
+A 52   3203	*	4328	3623	5569	5683	*	5792	2896	4326	4708	3717	4158	4213	3170	4207	3778	5699	*	4796	52
+       0	*	*	*	*	2011	411	10458	0	1693	
+
+A 53   1284	3198	*	5215	4558	4606	*	4509	*	4356	5579	*	6641	5491	5065	4593	5148	3124	*	6667	53
+       31	5546	*	1468	647	1487	637	10482	1471	1473	
+
+I 54   3678	5271	*	*	5659	6120	*	2454	4437	2208	4057	6803	5294	4842	5116	5132	*	2692	6914	3901	54
+       13	*	6803	*	*	*	0	10496	0	1229	
+
+N 55   3466	*	4180	2673	*	4971	4671	5921	3182	4842	6534	4549	4776	3307	2990	3638	4076	*	*	6903	55
+       38	*	5248	0	*	1610	572	10471	1000	1443	
+
+A 56   2726	5449	4723	3371	4941	4679	4375	5896	2905	4116	6870	4104	*	4508	3441	4094	4153	5240	6553	6783	56
+       81	6094	4650	0	*	642	1477	10489	1070	1887	
+
+F 57   5518	6618	*	6677	3792	*	6802	4675	5278	1158	3274	*	5422	*	3377	4322	5643	4577	5982	6241	57
+       27	5774	*	1863	464	0	*	10591	1163	2013	
+
+H 58   6580	*	3021	5762	5671	5048	2845	6736	4877	6960	*	1955	4568	4158	3708	3570	4268	5531	*	5876	58
+       12	*	6960	*	*	*	*	10551	0	0	
+
+Q 59   4788	*	3902	4751	*	1535	4735	6720	3396	7233	6745	3905	5962	4845	3572	4053	5471	4240	7025	6429	59
+       128	3555	*	757	1293	*	0	10544	2591	1000	
+
+S 60   4347	5190	4379	5395	3181	5965	4331	4748	3242	3242	5182	6919	5209	3619	4501	3663	4010	3848	*	5146	60
+       39	*	5214	*	*	0	*	10488	0	1000	
+
+R 61   5774	6059	4403	2805	5149	3837	6616	4435	3324	4018	4537	5053	3891	3918	3582	4423	4384	4169	*	5649	61
+       29	6575	6775	1000	1000	626	1506	10472	1000	1420	
+
+L 62   5248	6244	6101	6654	2408	5820	5952	2588	4966	2080	4973	*	6576	5208	5455	4254	6386	4460	4326	5211	62
+       103	4717	5022	1725	520	*	0	10444	1545	1206	
+
+R 63   4787	6919	2632	3381	4830	3146	3842	*	3841	4929	5169	3333	*	4670	3468	4423	4415	6021	*	6372	63
+       34	5432	*	972	1029	347	2227	10189	1277	1817	
+
+E 64   5012	*	3336	3622	*	1093	5171	*	5093	6706	5562	3758	5157	5427	4596	4929	6587	5476	*	*	64
+       103	4753	4964	1827	478	0	*	10473	1579	1007	
+
+R 65   4354	6556	6624	4691	6704	4891	4964	4655	2737	4244	6713	3778	*	4047	1941	4204	5483	3942	*	5122	65
+       27	*	5753	*	*	574	1608	10375	0	1397	
+
+E 66   5170	*	4615	3891	6353	6434	5064	4081	2372	5225	5609	4742	3325	4946	2776	3752	3910	5153	*	5242	66
+       13	6814	*	1000	1000	1480	640	10311	1000	1346	
+
+L 67   4587	6260	5635	*	4079	5657	*	2301	*	1445	4668	*	6426	*	*	5105	6667	2607	*	5498	67
+       19	*	6227	*	*	0	*	10306	0	1145	
+
+S 68   6561	5127	4106	3030	*	6648	5348	6516	2518	5088	6474	4234	5608	4595	2441	3767	3982	3581	*	*	68
+       48	6292	5643	3585	126	*	0	10309	1022	1039	
+
+V 69   3041	4605	5940	6373	6520	6427	*	3028	6345	4245	5585	*	5353	5410	4889	6421	6956	1069	*	*	69
+       22	6066	*	2000	415	696	1386	10268	1042	1452	
+
+Q 70   5407	*	3501	2515	5580	5730	6602	4435	3173	5248	4900	4343	*	3251	3085	3249	6674	5814	*	4601	70
+       19	*	6229	*	*	*	0	10181	0	1039	
+
+L 71   5316	*	*	4134	3066	5252	4324	4165	4067	3064	4886	5498	4868	5163	3682	6014	5603	3726	3944	3123	71
+       0	*	*	*	*	973	1028	10126	0	1287	
+
+Q 72   1824	*	4023	*	6875	4952	*	6260	3322	4601	6281	5227	5795	4063	4254	2187	4902	6419	*	5243	72
+       67	4459	*	1297	754	*	0	9905	1182	1029	
+
+P 73   3441	*	3137	*	*	*	*	5727	*	4466	5521	4529	1609	4646	4578	2952	4013	3961	*	*	73
+       0	*	*	1585	585	0	*	8265	1029	1212	
+
+T 74   5007	*	*	4045	*	4907	*	*	4480	*	*	3147	1518	4797	*	4873	1746	*	*	*	74
+       0	*	*	0	*	*	*	7216	0	0	
+
+//
+�HHsearch 1.5
+NAME  389317ac7330494edc8db3812c39f6d3
+FAM   
+FILE  389317ac7330494edc8db3812c39f6d3
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:11:32 2013
+LENG  97 match states, 97 columns in multiple alignment
+FILT  109 out of 310 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  5.1 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCEECCCCHHHHHHHHHHHHHHHHHCCCCCEEEEEEEEEEEEEEECCCCCCEEEEEEEEEEEEEEECCCEEEEEEEEECCCCEEEEECCCCCCCC
+>ss_conf PSIPRED confidence values
+9987798899899999999999987636587549999999999763035636359864899999998078739999998279918989702789998
+>Consensus
+xGgwxxidvxxxvqxlaxfAVxexNkxxxxxxLxxxxVvxxxxxxxxxxxxgxQvVaGxnYxLxixaxxxxyxaxVxxxpwxxxxkLxsFxpxxxxx
+>389317ac7330494edc8db3812c39f6d3
+MGEWEIIDIGPFTQNLAKFAVDEENKIGQYGRLTFNKVIRPCMKKTIYENEGFREIKGYEYQLYVYASDKLFRADISEDYKTRGRKLLRFNGPVPPP
+>gi|224089663|ref|XP_002308795.1| predicted protein [Populus trichocarpa]gi|222854771|gb|EEE92318.1| predicted protein [Populus trichocarpa]
+-DGWIPIkNLEnKHVVKIAEFAVKEHNRQA-GSELRLYSIHKGEL----------QVKEGTDYRLLLAVI--GagglHEAVVHE-SYDYSTVLISFVP-L
+---
+>gi|15225164|ref|NP_180758.1| cysteine proteinase inhibitor 2 [Arabidopsis thaliana]gi|125991828|sp|Q8L5T9.2|CYT2_ARATH RecName: Full=Cysteine proteinase inhibitor 2; Short=AtCYS-2; Flags: Precursorgi|4263720|gb|AAD15406.1| putative cysteine proteinase inhibitor B (cystatin B) [Arabidopsis thaliana]gi|110738361|dbj|BAF01107.1| putative cysteine proteinase inhibitor B [Arabidopsis thaliana]gi|330253521|gb|AEC08615.1| cysteine proteinase inhibitor 2 [Arabidopsis thaliana]
+-GGKSGVpNIRtnREIQQLGRYCVEQFNQQA-qneqgnigsiaktdtaiSNPLQFSRVVSAQK----------QVVAGLKYYLRIEVTQPngstrMFDSV
+VVIQPWLHSKQLLGFTP-VVSP
+>gi|47115697|sp|Q7M429.1|CYTL_TACTR RecName: Full=L-cystatin; Flags: Precursorgi|1587012|prf||2205298A L-cystatin
+-GGWIDANVGdTDVKEAARFATEAQSSRS-NSLYHHklLKIHKART----------QVVSGINYEVFIETGTttckksevpledlkrcavpenGvKhlCQ
+AIVWVQAWIPRTKVTKLE------
+>gi|242036759|ref|XP_002465774.1| hypothetical protein SORBIDRAFT_01g045610 [Sorghum bicolor]gi|241919628|gb|EER92772.1| hypothetical protein SORBIDRAFT_01g045610 [Sorghum bicolor]
+--AWVPVlDVNeLVIKQVAQFAVLVYG-LAHHRDLAYVGVVRGQTEQA--------VGGGTNFRLVVVAarpDDGgstaQYDCLVWGVPgsRSDTWKLRR
+FRK-----
+>gi|225717196|gb|ACO14444.1| Cystatin-F precursor [Esox lucius]
+-GAPHEISRNdSGVLKAALHGTYSFNNKT-NDAFLFkpSAIEKAER----------QIVKGLNYIMEVDISRTvchkngqnntdlarcvfqpdgLlkqtf
+hCHFEVWTIPWLNFMKTI---------
+>gi|241999596|ref|XP_002434441.1| secreted cystatin, putative [Ixodes scapularis]gi|215497771|gb|EEC07265.1| secreted cystatin, putative [Ixodes scapularis]
+-GGYTRKtDhQTnPKYLELAHFATSSWSAGQ-ANKAYYDTVEEVLEAQT-------QVVAGINYKLTLKVAESvceitsqytkeactpkpdavrkTCTTV
+IYEKVWENMKSVSSFS------
+>gi|109093141|ref|XP_001097898.1| PREDICTED: cystatin-D [Macaca mulatta]
+-GDIHAADLNdKSVQRVLNFTIREYNKDiS-KDEYYSrpLQVMAA--YQ--------QVVGGVNYYFNVKfgrttctKSQPNldncpfndqpelkeeefC
+SFQINEVSQENKISILNYK------
+>gi|123408571|ref|XP_001303223.1| Clan IH, family I25, phytocystatin-like peptidase inhibitor [Trichomonas vaginalis G3]gi|121884585|gb|EAX90293.1| Clan IH, family I25, phytocystatin-like peptidase inhibitor [Trichomonas vaginalis G3]
+-GAAKPANVQdEHVIQAFKDAIALGNQKN-GTTLEYIQLLSATQ----------KVVSGYIFEGVVKTNDGDYKVKIWCKPGNTEKELQLFE------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    3653	*	*	*	*	*	*	2882	*	3069	1804	*	*	*	*	3745	*	1714	*	*	1
+       0	*	*	*	*	*	*	3332	0	0	
+
+G 2    3574	*	6210	*	*	231	*	*	*	*	*	6487	*	6201	6796	5898	*	*	*	*	2
+       0	*	*	*	*	*	*	5173	0	0	
+
+E 3    4119	*	*	3555	6190	679	*	*	3799	*	*	6147	6250	5844	5372	4783	6361	5057	*	*	3
+       39	5230	*	0	*	*	*	5547	1069	0	
+
+W 4    5392	*	*	6612	5160	*	*	3772	6731	4656	*	*	3612	6804	5007	6956	6427	5927	792	3639	4
+       28	5716	*	2609	258	*	*	5565	1037	0	
+
+E 5    4708	*	*	3146	4823	7366	4819	3662	3954	*	5277	4398	*	4462	4298	2811	2332	3665	7470	4904	5
+       48	4942	*	1125	885	*	*	5565	1104	0	
+
+I 6    4393	*	2886	3215	*	6731	*	4034	3616	*	*	4758	1562	6042	5067	5253	3836	4624	*	*	6
+       12	6907	*	0	*	*	*	5643	1000	0	
+
+I 7    2426	6750	*	*	6675	6871	*	1320	4811	4438	5580	6512	*	6478	4737	4135	6909	2661	*	*	7
+       840	1180	*	65	4510	*	*	5643	2910	0	
+
+D 8    5711	*	893	4632	6864	6043	6295	*	5652	*	*	1938	5928	5685	7107	4592	*	*	*	*	8
+       17	6419	*	0	*	*	*	5667	1002	0	
+
+I 9    4118	*	*	4981	6881	*	*	2492	*	4180	5383	*	2786	5631	6984	7246	4362	1261	*	*	9
+       47	5635	6411	0	*	*	*	5665	1049	0	
+
+G 10   5236	*	3964	4809	*	3446	5069	6309	4131	*	*	1645	*	3762	6674	2793	2890	*	*	*	10
+       2780	227	*	151	3330	0	*	5651	4437	1001	
+
+P 11   4698	*	4248	3437	*	5001	5418	6923	2899	3797	*	5778	1342	5810	5107	5187	4235	7040	*	*	11
+       21	6118	*	0	*	*	0	5673	1028	1000	
+
+F 12   4891	5418	3352	1891	3553	4106	2892	*	3953	4303	*	5784	*	4333	5803	5065	6738	4533	*	6150	12
+       0	*	*	1000	1000	0	*	5673	1000	1000	
+
+T 13   3348	*	*	*	5858	*	*	1895	*	5890	*	*	*	*	*	6428	3750	1130	*	4160	13
+       0	*	*	*	*	*	*	5699	0	0	
+
+Q 14   6678	*	4361	3892	*	*	6543	3431	3138	3812	*	6913	*	1121	4053	*	6719	4372	*	*	14
+       0	*	*	*	*	*	*	5715	0	0	
+
+N 15   4314	*	3439	1830	*	5567	*	*	2776	6487	*	3917	*	2244	3791	5393	7194	7146	*	6545	15
+       0	*	*	*	*	*	*	5715	0	0	
+
+L 16   1981	*	*	*	6682	*	5940	3238	*	1503	4544	*	*	*	*	6428	*	2325	*	7004	16
+       0	*	*	*	*	*	*	5715	0	0	
+
+A 17   912	*	*	*	6082	2065	*	5825	*	2994	6727	*	*	*	*	*	*	4010	*	*	17
+       12	6917	*	1585	585	*	*	5660	1000	0	
+
+K 18   4513	6340	4389	3537	6943	6188	4346	*	2083	5175	6597	3292	5696	3970	2181	5730	4633	*	*	*	18
+       16	*	6526	*	*	*	*	5683	0	0	
+
+F 19   7159	*	5509	*	728	*	5574	6386	7189	4568	6453	*	*	*	5898	4427	5906	*	3039	3788	19
+       0	*	*	*	*	0	*	5666	0	1000	
+
+A 20   333	5359	*	*	*	5438	*	5696	*	5912	*	6596	*	*	*	4518	5431	4460	*	*	20
+       0	*	*	*	*	*	*	5683	0	0	
+
+V 21   5005	*	*	6920	*	*	*	3846	*	2494	4580	6340	*	*	*	*	3988	746	*	*	21
+       36	5938	6884	1000	1000	*	*	5683	1038	0	
+
+D 22   2703	*	2956	3263	*	5858	7211	5872	3869	4100	6581	5296	*	4666	5976	2619	3124	4558	6230	5563	22
+       0	*	*	*	*	*	0	5679	0	1000	
+
+E 23   3429	*	6794	1093	*	*	7098	5445	4020	6052	6730	*	*	3060	5223	4306	5391	3446	*	*	23
+       14	*	6645	*	*	0	*	5679	0	1000	
+
+E 24   *	*	*	3373	3063	6047	2228	4300	*	*	3853	5314	*	5218	5569	5513	6465	4586	6397	1861	24
+       43	5082	*	1350	719	*	0	5684	1089	1000	
+
+N 25   5019	*	3910	7210	*	5016	*	7057	5415	*	*	653	5525	6079	6230	3072	6825	5593	*	*	25
+       15	*	6581	*	*	*	0	5684	0	1000	
+
+K 26   4200	*	5394	5663	6302	4382	*	*	1460	4331	5784	3899	*	3414	2986	4453	4841	5020	6440	*	26
+       68	5112	5841	1845	471	0	*	5680	1077	1051	
+
+I 27   3231	6445	4904	5064	*	4914	5446	3723	2901	3864	4955	4158	*	2281	3543	4094	5121	5852	*	*	27
+       10	7147	*	2454	291	*	0	5605	1044	1125	
+
+G 28   2800	*	5813	4491	6658	3208	3334	6425	5665	6760	5821	4425	6207	3453	5330	2111	3743	4789	*	*	28
+       2031	5227	457	2707	240	*	0	5605	1125	1125	
+
+Q 29   3463	*	*	*	*	2700	4474	*	*	*	*	3024	3319	2699	3747	3068	2840	*	*	*	29
+       46	4993	*	3868	102	244	2684	4142	1096	4194	
+
+Y 30   3886	*	6527	4796	*	2289	4503	6930	4174	6026	*	1490	6867	7081	5089	3678	5369	*	*	4206	30
+       0	*	*	*	*	2714	239	5639	0	1553	
+
+G 31   3194	5955	1819	6249	*	2613	4989	*	5558	4862	*	4415	*	*	*	2949	3714	4962	6277	5061	31
+       15	6583	*	1000	1000	2241	343	5691	1000	1464	
+
+R 32   3942	6400	5005	4127	6043	2982	4374	5277	3383	3924	4990	3833	3970	5315	3051	3635	5053	4826	*	*	32
+       39	5224	*	704	1374	*	0	5717	1083	1357	
+
+L 33   6381	*	*	6559	4249	*	5831	5243	6625	689	5843	5328	*	*	5605	6846	*	4102	*	3050	33
+       9	7257	*	1000	1000	0	*	5717	1000	1357	
+
+T 34   4852	4931	*	3183	5116	*	4519	7026	2329	3516	5771	7407	7010	3441	4212	4240	2887	4330	*	4639	34
+       13	6772	*	1000	1000	*	*	5688	1000	0	
+
+F 35   *	6445	*	6734	1397	*	5698	6772	*	1947	6943	*	5921	*	5681	4315	*	7611	6504	2315	35
+       218	2835	*	1000	1000	*	*	5688	1683	0	
+
+N 36   4656	*	3723	3986	*	5982	7357	3414	3245	4838	6504	3360	*	4819	4503	3053	5950	2315	*	4651	36
+       63	4556	*	2467	288	*	*	5688	1165	0	
+
+K 37   4834	5675	6055	3503	*	4636	6497	5236	1629	*	*	4450	*	4280	2319	3508	4518	*	*	6409	37
+       29	5630	*	0	*	*	*	5688	1061	0	
+
+V 38   *	*	*	*	*	*	*	2050	*	4028	6739	6988	*	*	*	6346	5110	647	*	*	38
+       0	*	*	*	*	*	*	5688	0	0	
+
+I 39   5589	*	5044	5596	5404	*	4651	2261	5110	2682	5525	5175	*	*	*	4496	5910	1608	*	4927	39
+       0	*	*	*	*	*	*	5688	0	0	
+
+R 40   4617	6533	5382	2649	*	4668	7219	*	2135	5632	5554	3998	*	5271	2932	2229	5885	*	*	*	40
+       0	*	*	*	*	*	*	5688	0	0	
+
+P 41   1426	5087	*	*	*	1776	*	6846	*	4236	*	*	4212	*	*	6504	*	2476	*	*	41
+       190	6782	3131	0	*	*	*	5688	1000	0	
+
+C 42   *	4121	*	1675	*	6685	5316	5578	3139	4306	7257	*	*	3101	3473	4043	4446	*	3478	*	42
+       39	*	5229	*	*	*	0	5603	0	1552	
+
+M 43   5075	*	*	2550	5517	*	*	6322	2937	6596	3803	*	*	4024	5061	2575	2125	4644	*	5366	43
+       2256	*	339	*	*	267	2564	5569	0	1669	
+
+K 44   3668	*	*	2947	*	*	*	4238	1802	*	*	*	*	3178	2671	3994	*	3041	*	*	44
+       0	*	*	*	*	5972	23	4119	0	4185	
+
+K 45   3485	*	*	2768	*	*	*	*	2442	*	*	4317	3334	2927	3199	*	5050	3101	*	4529	45
+       445	4444	2188	0	*	5542	31	4242	1026	4144	
+
+T 46   2531	*	*	*	*	*	*	*	*	*	*	*	*	1222	*	*	1830	3093	*	*	46
+       2837	*	218	*	*	5770	27	4120	0	4332	
+
+I 47   1188	*	*	*	*	*	*	834	*	*	*	*	*	*	*	*	*	*	*	*	47
+       834	*	1188	*	*	*	0	1616	0	4883	
+
+Y 48   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	48
+       0	*	*	*	*	4734	55	1000	0	4927	
+
+E 49   *	1771	*	1225	*	*	*	*	*	*	1842	*	*	*	*	*	*	*	*	*	49
+       0	*	*	*	*	5789	26	1801	0	4816	
+
+N 50   *	*	2270	2189	*	*	*	*	*	*	*	802	*	*	*	*	*	*	*	*	50
+       0	*	*	*	*	5524	32	2146	0	4763	
+
+E 51   *	*	*	1866	*	*	*	*	*	888	*	*	*	*	*	*	*	*	2431	*	51
+       0	*	*	*	*	4940	48	2424	0	4700	
+
+G 52   2728	*	*	*	*	236	*	*	*	*	*	*	*	*	*	*	*	*	*	*	52
+       414	*	2005	*	*	6214	20	2925	0	4607	
+
+F 53   *	*	*	*	1376	1704	*	2791	*	*	*	2614	*	*	*	*	*	*	*	*	53
+       870	*	1142	*	*	209	2891	2776	0	4686	
+
+R 54   5771	*	6189	*	*	4863	*	*	5957	*	6348	*	*	437	2989	*	6361	5837	*	6525	54
+       67	6539	4863	3322	152	753	1298	5205	1000	1822	
+
+E 55   4652	*	*	3657	5566	*	5103	2987	*	4529	5616	4651	5316	*	*	*	4694	896	*	*	55
+       14	6654	*	1585	585	845	1174	5280	1014	1449	
+
+I 56   4551	6573	*	6456	*	4272	5497	4103	6714	5598	*	*	*	5342	*	5589	7110	500	*	6228	56
+       19	6228	*	0	*	1729	518	5592	1018	1174	
+
+K 57   1613	*	4440	4903	*	3845	*	6537	3671	6663	*	3314	*	5931	*	1889	5142	6713	*	*	57
+       79	4232	*	0	*	*	0	5611	1212	1107	
+
+G 58   6058	*	*	*	*	166	*	5469	6031	*	*	4157	*	*	*	*	*	*	*	*	58
+       27	5760	*	0	*	369	2146	5592	1026	1174	
+
+Y 59   7424	*	5972	6624	6706	*	*	2744	3688	3462	2719	5454	*	*	5700	5250	2467	2871	*	3278	59
+       0	*	*	*	*	*	0	5706	0	1000	
+
+E 60   6813	*	4220	3838	*	*	6540	5003	2285	4182	4052	1143	*	7801	6477	6624	6452	7029	*	7119	60
+       17	6452	*	0	*	*	0	5706	1007	1000	
+
+Y 61   *	*	*	*	3803	*	5032	6748	*	*	*	*	*	*	*	6185	*	6601	6934	224	61
+       0	*	*	*	*	*	0	5706	0	1000	
+
+Q 62   3902	*	5794	4819	5326	*	4390	4018	2811	5996	5675	5084	*	3544	1933	4870	*	7330	5972	2899	62
+       0	*	*	3000	193	0	*	5706	1000	1000	
+
+L 63   *	*	*	*	3241	6056	*	2913	*	610	3926	*	*	*	*	*	*	5287	*	*	63
+       0	*	*	*	*	*	*	5718	0	0	
+
+Y 64   5109	*	4334	3356	7051	*	3734	3880	3713	4990	7367	5129	*	5419	6138	5613	1964	2721	*	3945	64
+       0	*	*	*	*	*	*	5718	0	0	
+
+V 65   *	*	*	*	3331	*	*	1676	*	1939	4498	*	*	*	*	*	*	1822	*	*	65
+       0	*	*	*	*	*	*	5718	0	0	
+
+Y 66   3940	*	3650	1745	*	*	*	*	2879	5307	*	4418	*	4214	4108	3775	3776	5140	*	3997	66
+       183	3071	*	1951	432	*	*	5718	1559	0	
+
+A 67   1276	6803	6522	*	*	4774	*	3672	5291	3417	4527	6607	*	*	*	*	4244	2212	*	6552	67
+       104	3842	*	2748	233	*	0	5698	1286	1036	
+
+S 68   2684	*	5408	4548	*	4629	6967	4896	3242	5235	5286	4107	7312	4967	6800	2208	2623	4621	*	6207	68
+       14	*	6657	*	*	*	0	5698	0	1036	
+
+D 69   6970	*	1445	3874	*	4114	*	*	4693	6865	*	2904	4331	3868	3328	3714	5933	7040	*	*	69
+       200	3051	6833	3901	100	797	1236	5693	1613	1100	
+
+K 70   3810	5882	5112	5246	4971	1441	*	6854	3417	4876	*	*	3244	6908	4910	3889	4065	5372	5555	*	70
+       1294	756	*	2582	264	0	*	5667	3619	1073	
+
+L 71   5398	*	4221	3659	*	3628	6605	6563	3412	2713	5300	3964	3781	3635	5243	3517	3531	4513	*	6861	71
+       982	1018	*	2296	329	*	*	5671	3258	0	
+
+F 72   6886	2057	*	*	2831	*	6688	6861	*	*	6490	*	*	*	*	*	*	*	3845	967	72
+       0	*	*	*	*	*	*	5671	0	0	
+
+R 73   7153	*	3311	2052	*	5677	4165	*	3318	6342	*	3651	5628	3512	3806	4435	3462	4415	*	5621	73
+       0	*	*	*	*	*	*	5671	0	0	
+
+A 74   701	4356	*	*	3311	*	*	4968	*	5199	6469	*	*	*	*	4959	4684	3412	*	*	74
+       4	*	8625	*	*	*	*	5671	0	0	
+
+D 75   6415	*	3700	3389	5068	*	*	2918	2839	4002	6409	*	*	4249	5615	*	3813	1811	*	6526	75
+       0	*	*	*	*	*	0	5647	0	1000	
+
+I 76   6444	*	*	*	*	*	*	2060	*	5754	*	*	*	*	*	*	*	454	*	*	76
+       0	*	*	*	*	*	0	5647	0	1000	
+
+S 77   6536	*	*	*	3046	6652	4995	5729	*	3629	*	5684	*	*	4742	4284	*	4870	1342	2393	77
+       30	5584	*	0	*	*	0	5851	1044	1000	
+
+E 78   6329	6101	3837	1461	*	3362	6841	5796	6325	*	*	6052	*	5658	3907	3815	4239	2644	6881	6731	78
+       68	*	4446	*	*	0	*	5851	0	1000	
+
+D 79   *	*	3937	4078	*	*	5525	3310	1701	6371	5897	*	6984	2368	3704	6272	5540	3271	*	*	79
+       67	*	4465	*	*	356	2194	5616	0	1173	
+
+Y 80   3995	5514	5302	4234	5445	6234	*	6597	4873	4942	6029	*	1084	5480	6347	3413	5509	4957	*	4208	80
+       221	3044	5573	1058	944	0	*	5620	1460	1227	
+
+K 81   *	*	6299	*	6436	3227	6182	*	4009	4007	*	6499	*	7535	4768	4252	5655	7413	768	6361	81
+       33	*	5465	*	*	0	*	5680	0	1040	
+
+T 82   4543	*	5803	2534	*	5017	*	4947	4998	2509	4057	4203	5697	5193	6541	3039	2418	5987	*	*	82
+       64	4536	*	854	1162	*	0	5600	1142	1056	
+
+R 83   7048	*	3737	5032	*	3967	3764	*	3037	*	*	1592	5100	4648	3453	5206	3582	*	6295	6370	83
+       62	*	4560	*	*	0	*	5600	0	1056	
+
+G 84   *	6131	4312	4642	2511	3598	6189	4177	3988	5672	6183	5351	*	5820	3800	3805	2006	5116	*	6858	84
+       36	5328	*	0	*	*	0	5667	1060	1166	
+
+R 85   *	*	*	*	4268	*	*	2999	2219	3817	4284	6131	*	6674	2077	7203	3732	5680	3168	6365	85
+       0	*	*	*	*	468	1852	5667	0	1166	
+
+K 86   5784	*	7187	2563	*	5547	*	5516	1480	*	*	3951	*	2852	4890	3026	*	5096	6051	*	86
+       31	5549	*	0	*	*	0	5701	1044	1010	
+
+L 87   *	*	*	*	5260	*	*	6208	*	453	4733	*	*	*	*	*	6019	2500	*	*	87
+       0	*	*	*	*	*	0	5664	0	1010	
+
+L 88   5785	*	*	3463	*	*	6742	2687	6063	2194	4822	*	6262	4241	4510	4191	2465	3327	6328	*	88
+       22	6051	*	2807	222	*	0	5660	1015	1010	
+
+R 89   5264	*	4924	2901	6303	5635	*	*	3373	5118	*	4285	*	6244	3350	1155	5640	*	*	5840	89
+       0	*	*	*	*	*	0	5638	0	1010	
+
+F 90   *	*	*	6664	435	*	*	4943	*	4710	6254	4723	*	*	*	3712	6359	*	*	4626	90
+       30	5580	*	0	*	*	0	5631	1038	1010	
+
+N 91   4823	*	4373	3594	*	*	*	*	1856	3778	*	3160	*	5365	4121	3472	3018	3694	*	*	91
+       105	*	3831	*	*	*	0	5617	0	1010	
+
+G 92   4384	*	*	*	*	2995	5511	*	*	3851	*	*	718	4745	4675	5555	5066	*	*	*	92
+       1951	*	432	*	*	0	*	4306	0	1204	
+
+P 93   *	*	3024	*	*	*	*	*	3153	*	*	*	735	*	*	2610	*	*	*	*	93
+       189	3024	*	3459	138	0	*	2494	1010	1788	
+
+V 94   1489	*	*	*	*	*	*	5162	*	2659	*	4847	*	*	*	3877	*	1495	*	*	94
+       165	3206	*	1000	1000	*	*	3543	1036	0	
+
+P 95   3846	*	*	*	*	*	3895	*	*	*	*	2075	1435	*	3822	4033	4057	3961	*	*	95
+       0	*	*	*	*	*	*	2989	0	0	
+
+P 96   *	*	*	*	*	*	*	*	*	*	*	*	1175	*	*	844	*	*	*	*	96
+       458	1879	*	1000	1000	*	*	1865	1008	0	
+
+P 97   *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	97
+       0	*	*	0	*	*	*	1602	0	0	
+
+//
+�HHsearch 1.5
+NAME  38a44a0cf7d477bebe8b2606d936e643
+FAM   
+FILE  38a44a0cf7d477bebe8b2606d936e643
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:20:43 2013
+LENG  102 match states, 102 columns in multiple alignment
+FILT  113 out of 510 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  6.5 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCCCCHHHHHHHHHCCCCCCHHHHHHHHHHCCCCCCCHHHHHHHHHHHHHHHHHHHHHHHHHHHHCCCCCCCHHHHHHHHHHCCCCCCCC
+CC
+>ss_conf PSIPRED confidence values
+9988788888766523689988740578986799999997799634399999999999999999999999999982997675999999999759867787
+98
+>Consensus
+xxxxxxxxxxxxxxxxxxxxxxxxxxxxixxaxixrlaxxxgvxxisexalexlxeaxexxxrxVixxaxxxaxhaxRktVtxxDIxxAlkxxgxxxygf
+xx
+>38a44a0cf7d477bebe8b2606d936e643
+SGRGKGGKGLGKGGAKRHRKVLRDNIQGITKPAIRRLARRGGVKRISGLIYEETRGVLKVFLENVIRDAVTYTEHAKRKTVTAMDVVYALKRQGRTLYGF
+GG
+>gi|222823380|ref|YP_002574954.1| NADP-dependent alcohol dehydrogenase [Campylobacter lari RM2100]gi|222538602|gb|ACM63703.1| NADP-dependent alcohol dehydrogenase [Campylobacter lari RM2100]
+-----------------------------------DFSLEHGIYPEIElIKPSEIDKAYENLTsgkakfRYVIdmseqD---------------------
+--------------
+>gi|281210047|gb|EFA84215.1| hypothetical protein PPL_03292 [Polysphondylium pallidum PN500]
+-----------------------------------QFIDEGkllksPLIGKV-fKGIESVPSAHDYLEnnqesfgKVQV-----YSYFFD-------LIV
+CPLNKIVDDKVD---
+>gi|313903307|ref|ZP_07836699.1| zinc-binding alcohol dehydrogenase family protein [Thermaerobacter subterraneus DSM 13965]gi|313466395|gb|EFR61917.1| zinc-binding alcohol dehydrogenase family protein [Thermaerobacter subterraneus DSM 13965]
+-----------------------------------AVAASVPLQVAVQrYPFEQANQALAAVKesrvrgAAVLvldepagr-------------------
+-----------------
+>gi|254504613|ref|ZP_05116764.1| Alcohol dehydrogenase GroES-like domain family [Labrenzia alexandrii DFL-11]gi|222440684|gb|EEE47363.1| Alcohol dehydrogenase GroES-like domain family [Labrenzia alexandrii DFL-11]
+-----------------------------------AFAAEGKVASHYAtESLDNINDIFGRMElgkidgRIVMtl-------------------------
+-----------
+>gi|303391124|ref|XP_003073792.1| transcription initiation factor TFIID subunit TAF6 [Encephalitozoon intestinalis ATCC 50506]gi|303302940|gb|ADM12432.1| transcription initiation factor TFIID subunit TAF6 [Encephalitozoon intestinalis ATCC 50506]
+----------------------------FSKETLKSFAQSKGISNIDDDALRVLSQDLEYRIKEVCQEGSKFMVGSKRTKLSIDDINYALISRnVDPLFG
+YDP
+>gi|50423321|ref|XP_460243.1| DEHA2E21626p [Debaryomyces hansenii CBS767]gi|49655911|emb|CAG88519.1| DEHA2E21626p [Debaryomyces hansenii]
+---------------------IKEQDRFLPIANVGRVMKKALPPhaKLSKESKECIQECVSEFISFITSHASDRGRLEKRKTLNGEDILWSMYILGFENY
+----
+>gi|328769656|gb|EGF79699.1| hypothetical protein BATDEDRAFT_7075 [Batrachochytrium dendrobatidis JAM81]
+---------------------------------ISLILQAAEVDDYEPRIIPQLLEFAHRYVQDVLQDSQVFADHAGHKDLEVDDIRLAIES--RVAHSF
+--
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+S 1    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	1
+       0	*	*	*	*	*	*	1000	0	0	
+
+G 2    *	*	*	*	*	985	*	1015	*	*	*	*	*	*	*	*	*	*	*	*	2
+       0	*	*	*	*	*	*	1522	0	0	
+
+R 3    *	*	*	*	*	1015	*	*	*	*	*	*	*	*	985	*	*	*	*	*	3
+       0	*	*	*	*	*	*	1522	0	0	
+
+G 4    1559	*	*	*	*	598	*	*	*	*	*	*	*	*	*	*	*	*	*	*	4
+       0	*	*	*	*	*	*	1840	0	0	
+
+K 5    *	*	*	2280	*	*	*	*	772	*	*	*	*	*	2262	*	*	*	*	*	5
+       0	*	*	*	*	*	*	2366	0	0	
+
+G 6    *	*	*	*	*	747	*	*	2280	*	*	*	*	*	*	2333	*	*	*	*	6
+       0	*	*	*	*	*	*	2366	0	0	
+
+G 7    *	*	*	*	*	337	*	*	2262	*	*	*	*	*	*	*	*	*	*	*	7
+       0	*	*	*	*	*	*	2366	0	0	
+
+K 8    *	*	*	*	*	*	*	*	779	*	*	*	*	*	*	1262	*	*	*	*	8
+       0	*	*	*	*	*	*	2366	0	0	
+
+G 9    *	*	*	*	*	754	*	2333	2262	*	*	*	*	*	*	*	*	*	*	*	9
+       0	*	*	*	*	*	*	2366	0	0	
+
+L 10   2262	*	*	*	*	*	*	*	*	1379	*	*	*	*	*	1297	*	*	*	*	10
+       0	*	*	*	*	*	*	2366	0	0	
+
+G 11   1271	*	*	*	*	772	*	*	*	*	*	*	*	*	*	*	*	*	*	*	11
+       0	*	*	*	*	*	*	2366	0	0	
+
+K 12   *	*	*	*	*	*	*	*	772	*	*	*	*	*	1271	*	*	*	*	*	12
+       0	*	*	*	*	*	*	2366	0	0	
+
+G 13   *	*	*	*	*	337	*	*	*	*	*	*	*	*	*	2262	*	*	*	*	13
+       0	*	*	*	*	*	*	2366	0	0	
+
+G 14   *	*	*	*	*	772	*	2262	*	*	*	*	*	*	*	2280	*	*	*	*	14
+       0	*	*	*	*	*	*	2366	0	0	
+
+A 15   1369	*	*	*	*	*	*	*	1297	2280	*	*	*	*	*	*	*	*	*	*	15
+       319	2333	*	2000	415	*	*	2366	1185	0	
+
+K 16   *	*	*	*	*	*	*	*	285	*	*	*	*	*	*	2478	*	*	*	*	16
+       0	*	*	*	*	*	*	3097	0	0	
+
+R 17   *	*	*	2948	*	*	*	*	2879	*	*	*	*	*	445	*	*	*	*	*	17
+       0	*	*	*	*	*	*	3714	0	0	
+
+H 18   *	*	*	2879	*	*	954	3219	*	*	*	*	*	2057	*	*	*	*	*	*	18
+       344	*	2237	*	*	*	*	3714	0	0	
+
+R 19   *	*	*	*	*	*	*	*	2862	2660	2891	*	*	2674	1980	*	*	*	*	2651	19
+       0	*	*	*	*	844	1175	3368	0	1582	
+
+K 20   *	2900	*	*	*	*	*	*	1308	3018	3018	*	*	*	2215	*	*	*	*	*	20
+       0	*	*	*	*	0	*	3890	0	1222	
+
+V 21   3323	*	*	*	*	*	*	3508	3536	*	*	*	*	3166	*	*	3519	923	*	*	21
+       0	*	*	*	*	*	*	4100	0	0	
+
+L 22   2909	*	4023	*	*	*	*	3104	*	2709	*	*	*	2690	*	2382	3321	3485	*	*	22
+       0	*	*	*	*	*	*	4259	0	0	
+
+R 23   2173	*	*	3706	*	*	4458	*	2958	*	*	*	*	*	1594	2350	*	*	*	*	23
+       0	*	*	5209	40	*	*	4677	1024	0	
+
+D 24   *	*	2339	2918	*	4194	3173	*	3773	*	*	4463	*	3987	*	2422	2874	*	*	*	24
+       81	4194	*	0	*	*	*	5214	1222	0	
+
+N 25   4409	*	4817	*	*	3371	*	*	2517	4788	*	3041	*	3127	3846	4227	2281	4464	*	*	25
+       0	*	*	*	*	*	*	5397	0	0	
+
+I 26   4955	*	2748	2641	*	*	*	2308	4990	3499	4980	3543	*	*	4879	3241	*	3650	*	*	26
+       0	*	*	*	*	*	*	5448	0	0	
+
+Q 27   4178	*	5174	4833	5040	4677	5084	*	*	3467	3248	4548	2999	3213	2856	3534	5163	*	*	4075	27
+       55	4731	*	1000	1000	*	*	5601	1074	0	
+
+G 28   *	*	4754	2689	3159	2217	*	4661	3869	2460	*	*	5918	*	*	5590	*	*	*	2701	28
+       154	3301	*	1510	624	*	*	5838	1643	0	
+
+I 29   *	*	*	*	2861	*	*	1330	*	1460	5068	*	*	*	*	*	*	3812	*	*	29
+       0	*	*	5285	37	*	*	6489	1013	0	
+
+T 30   4233	*	*	*	*	4130	*	*	4874	5153	*	5621	1336	5939	4674	2248	2785	*	*	*	30
+       0	*	*	*	*	*	*	6539	0	0	
+
+K 31   5802	*	*	*	4852	*	5306	3435	1670	3864	*	3554	4353	4998	4817	3626	3607	3595	*	*	31
+       0	*	*	*	*	*	*	6584	0	0	
+
+P 32   1391	*	5908	3124	*	4889	*	4385	*	5837	*	5658	3120	5791	5459	2707	4067	*	*	*	32
+       0	*	*	*	*	*	*	6584	0	0	
+
+A 33   2151	5816	4889	*	4456	*	*	4626	5491	*	5983	3228	2133	*	*	2773	3359	*	*	5584	33
+       21	6099	*	2322	322	*	*	6584	1000	0	
+
+I 34   5279	*	*	*	2862	*	*	1382	*	3034	4151	*	*	*	*	*	*	1985	5508	*	34
+       0	*	*	*	*	*	*	6755	0	0	
+
+R 35   3452	*	4670	4876	*	4515	3671	5203	2018	*	5349	*	*	3160	2421	4306	*	4604	*	5364	35
+       20	6207	*	2000	415	*	*	6755	1000	0	
+
+R 36   3628	*	4125	2883	*	*	6711	*	3461	5240	6435	5158	*	3445	1442	4970	6932	4063	*	*	36
+       0	*	*	*	*	*	*	9080	0	0	
+
+L 37   6051	*	*	*	2020	*	*	1981	*	1511	5024	*	*	*	*	*	*	3599	6543	6608	37
+       0	*	*	*	*	*	*	9080	0	0	
+
+A 38   1251	4998	*	6408	5114	5831	6129	3294	*	3118	4204	*	*	6782	*	4964	5432	2917	*	6990	38
+       0	*	*	*	*	*	*	9080	0	0	
+
+R 39   2626	*	6150	3575	*	5973	4378	*	2513	4494	5461	4298	*	3659	2153	4470	*	4881	*	*	39
+       0	*	*	*	*	*	*	9080	0	0	
+
+R 40   4520	*	4620	2477	*	4897	4984	6901	3133	3967	6982	6848	*	4201	2422	2279	6354	6830	*	*	40
+       36	5343	*	2000	415	*	*	9080	1254	0	
+
+G 41   2702	5624	*	5669	6339	2181	3535	4347	4213	3899	6216	4122	*	5305	4987	3167	5451	4180	*	*	41
+       237	2725	*	2328	320	*	*	9080	1989	0	
+
+G 42   6205	*	3421	6201	*	1118	*	*	3652	4171	6657	4623	4712	5375	4199	3495	5171	*	*	*	42
+       53	4791	*	743	1314	*	*	9080	1286	0	
+
+V 43   3383	5422	6537	6051	5357	6819	6221	2028	*	3388	6952	5734	4927	6599	5565	4259	4999	1891	*	5421	43
+       22	6051	*	0	*	*	*	9080	1064	0	
+
+K 44   4504	*	3777	3764	6825	5845	4380	5099	2439	4566	4749	5687	*	6021	2788	3975	3172	4322	*	4721	44
+       168	3500	5538	364	2166	0	*	9066	1750	1064	
+
+R 45   3797	6898	4179	6196	*	3816	5618	5648	3260	5900	*	4989	2644	5294	1816	5689	5529	3710	*	*	45
+       13	6837	*	2585	263	0	*	9041	1017	1108	
+
+I 46   4994	6060	6135	3976	4130	*	5981	2189	4221	3323	3969	*	5180	5714	6714	*	5337	2189	4654	5245	46
+       20	*	6153	*	*	*	*	9092	0	0	
+
+S 47   4093	5268	6454	3812	*	5082	*	3012	6602	*	*	5258	4992	5709	5989	1737	3525	2398	*	*	47
+       87	*	4088	*	*	0	*	9033	0	1083	
+
+G 48   3419	7022	2799	1975	6108	5114	5395	*	2816	6936	*	5942	4766	4058	4027	3923	5410	5665	*	*	48
+       729	1373	6571	0	*	273	2536	8879	2649	1354	
+
+L 49   4688	6423	2178	2956	3904	4912	6895	5449	3777	4528	6566	*	6920	5191	3325	4412	4355	4407	6065	4374	49
+       0	*	*	*	*	644	1473	9030	0	1043	
+
+I 50   1837	3779	*	5063	*	4249	*	4129	3348	*	*	5218	2932	6797	5046	3554	4820	3447	*	*	50
+       23	5958	*	0	*	*	0	9079	1000	1000	
+
+Y 51   3397	*	*	*	3351	*	*	3264	3868	1741	3720	*	5562	*	6440	6054	6628	3597	*	3071	51
+       0	*	*	*	*	0	*	9079	0	1000	
+
+E 52   3729	6842	2268	1489	*	6153	*	5243	3770	4583	*	5037	5459	5457	6482	3739	6364	5483	*	*	52
+       0	*	*	*	*	*	*	9092	0	0	
+
+E 53   3129	6990	3069	2185	*	*	6345	*	3732	4898	6068	5378	5607	3005	5727	4062	3615	4787	*	4756	53
+       29	5645	*	4597	61	*	*	9092	1009	0	
+
+T 54   3322	*	*	*	4602	4650	*	2305	*	1514	4757	*	*	6254	*	6530	6831	2438	*	6334	54
+       0	*	*	*	*	*	*	9092	0	0	
+
+R 55   3206	*	5128	4012	*	6545	6060	6550	4782	4750	4636	2118	3533	2928	3573	5107	4995	4362	*	6666	55
+       0	*	*	*	*	*	*	9092	0	0	
+
+G 56   4611	*	2225	1742	*	5514	6438	*	3595	6530	*	4565	4862	3297	4873	4756	4090	6487	*	*	56
+       19	6254	*	1585	585	*	*	9092	1222	0	
+
+V 57   1573	4126	4507	4875	3841	5168	6054	3328	6848	6334	4682	6262	*	5573	*	4641	6335	2885	*	4863	57
+       0	*	*	*	*	*	*	9092	0	0	
+
+L 58   3429	*	*	*	3037	6547	5495	2886	*	2519	3811	*	*	6060	6093	4933	4464	2476	*	3574	58
+       20	*	6153	*	*	*	*	9092	0	0	
+
+K 59   4147	5556	2834	1475	*	*	5205	*	3573	6500	*	4274	*	4014	4409	4236	4327	5466	*	6159	59
+       0	*	*	*	*	0	*	9033	0	1083	
+
+V 60   4163	*	2737	2785	4757	*	6975	6916	3325	4562	4952	5400	*	4494	3041	6104	5334	4826	4833	3031	60
+       0	*	*	*	*	*	*	9092	0	0	
+
+F 61   5408	*	*	6068	2737	*	5329	4583	6262	2073	2904	6683	*	*	3793	7140	6138	4053	*	2341	61
+       15	*	6628	*	*	*	*	9092	0	0	
+
+L 62   3014	6059	4867	3685	4242	6062	5160	2928	4146	2340	4305	*	*	5918	4144	6532	3946	3865	*	*	62
+       789	1247	*	2594	261	0	*	9093	2684	1000	
+
+E 63   6012	6597	5494	3090	6723	4852	6458	6838	2543	4691	*	*	*	4753	1464	3807	4570	4412	*	*	63
+       0	*	*	*	*	*	*	9092	0	0	
+
+N 64   3330	6556	3508	3023	4060	5447	6153	3748	3886	5539	3658	3834	*	3277	5660	4997	5250	4183	*	4897	64
+       0	*	*	*	*	*	*	9092	0	0	
+
+V 65   5744	*	*	*	6254	5749	6068	2394	*	3124	4981	*	*	6157	6819	*	6823	820	*	*	65
+       0	*	*	*	*	*	*	9092	0	0	
+
+I 66   3390	5016	*	*	3739	3725	*	2173	6763	1987	4178	*	*	*	*	5116	5063	2988	*	*	66
+       802	1277	6157	2155	367	*	*	9092	2550	0	
+
+R 67   6393	*	4963	3227	*	3356	4691	6165	2486	4744	6310	5089	*	2728	2831	3622	4968	5354	*	6371	67
+       0	*	*	*	*	*	0	7137	0	1089	
+
+D 68   4709	*	1622	2378	*	*	5945	6287	3199	4786	*	3794	*	4511	3370	*	5628	6090	*	5455	68
+       0	*	*	*	*	*	0	7021	0	1089	
+
+A 69   802	4694	*	*	*	5860	*	5971	*	3491	*	5530	*	*	*	3053	4772	3521	*	*	69
+       0	*	*	*	*	*	0	6997	0	1089	
+
+V 70   3352	5150	*	4641	4890	4133	4402	2848	5802	3724	5054	3454	*	4057	5389	3636	3399	3594	*	*	70
+       0	*	*	*	*	*	0	6997	0	1089	
+
+T 71   2962	*	5262	3357	5427	*	*	2670	2044	3768	5041	5944	5581	5377	5963	6704	3414	4617	*	*	71
+       0	*	*	*	*	0	*	6997	0	1089	
+
+Y 72   6328	3322	*	*	2271	*	*	3240	6196	2931	6290	5117	*	*	4833	*	6013	4889	*	1719	72
+       0	*	*	*	*	*	*	7069	0	0	
+
+T 73   1175	3348	*	*	*	*	*	6153	*	5771	3659	*	*	4911	4842	2722	3421	4859	*	*	73
+       0	*	*	*	*	*	*	7069	0	0	
+
+E 74   4359	*	3294	2479	*	5763	6442	3610	4042	5318	4089	3452	*	3501	3078	6290	5299	4322	*	5197	74
+       27	5771	*	2322	322	*	*	7069	1010	0	
+
+H 75   4916	6080	5763	4988	5197	5854	884	*	5041	5428	*	5663	6013	5285	4713	4202	*	*	*	3200	75
+       0	*	*	*	*	*	*	7069	0	0	
+
+A 76   1343	6426	6011	3249	5197	3499	5968	*	5771	*	*	3599	*	*	5364	2373	*	5392	*	*	76
+       0	*	*	*	*	*	*	7069	0	0	
+
+K 77   *	*	3811	*	*	1607	5944	*	1789	*	*	3019	*	4697	3373	5799	5771	*	*	*	77
+       41	*	5174	*	*	*	*	7069	0	0	
+
+R 78   *	*	*	*	*	5412	5669	*	4395	*	*	*	*	*	176	5363	*	*	*	*	78
+       0	*	*	*	*	*	0	6944	0	1089	
+
+K 79   4423	*	*	*	4584	*	*	5340	1070	5763	5411	*	5910	4813	3263	4703	3225	3898	*	*	79
+       66	4475	*	1000	1000	*	0	6944	1167	1089	
+
+T 80   *	*	4535	5364	5363	*	*	4086	3720	5956	6024	*	*	3532	4001	*	810	5462	*	*	80
+       0	*	*	*	*	*	0	6944	0	1089	
+
+V 81   *	5411	*	*	*	*	*	1581	*	2481	6149	*	*	*	*	5364	*	1236	*	*	81
+       0	*	*	*	*	*	0	6944	0	1089	
+
+T 82   *	*	4277	3236	6208	*	*	6312	2930	6001	4978	3547	*	4565	5641	3273	1418	*	*	6363	82
+       0	*	*	*	*	*	0	6944	0	1089	
+
+A 83   1960	4307	*	3144	4347	3859	*	3832	5337	5912	*	*	3407	6047	5363	4165	5427	3092	*	5660	83
+       0	*	*	*	*	*	0	6944	0	1089	
+
+M 84   6220	*	2683	2023	5411	*	6149	5364	3351	*	4821	4205	*	4079	4364	2807	5055	4504	*	6561	84
+       0	*	*	*	*	0	*	6944	0	1089	
+
+D 85   *	*	168	*	*	5610	4742	*	*	5119	*	*	*	*	*	*	5428	*	*	*	85
+       0	*	*	*	*	*	*	7080	0	0	
+
+V 86   5540	*	*	*	5363	*	*	1107	*	4575	3631	*	*	*	*	*	*	1446	*	*	86
+       0	*	*	*	*	*	*	7080	0	0	
+
+V 87   4150	6017	3405	2946	*	*	*	3392	3090	3355	*	3630	*	4150	3815	4958	3966	3486	*	*	87
+       0	*	*	*	*	*	*	7080	0	0	
+
+Y 88   5243	4325	*	4938	3725	4774	3903	5939	5966	1760	4963	6389	*	4254	3805	4841	3749	5943	4311	4619	88
+       0	*	*	*	*	*	*	7054	0	0	
+
+A 89   540	5428	*	*	*	*	*	5887	*	3467	*	*	5106	*	*	3443	5921	4510	*	*	89
+       0	*	*	*	*	*	*	7106	0	0	
+
+L 90   4603	6321	*	*	4704	*	*	2803	5285	1057	2761	*	*	*	4898	4769	*	6296	*	5152	90
+       37	*	5306	*	*	*	*	7146	0	0	
+
+K 91   4757	*	*	2387	*	4663	4998	5799	1591	5244	*	3880	*	4279	2624	5171	6022	*	*	*	91
+       34	5412	*	0	*	*	0	7005	1060	1064	
+
+R 92   4122	*	3680	4180	*	5844	5282	4273	3319	3522	4860	*	*	3864	2203	3367	4196	4171	*	*	92
+       113	*	3735	*	*	*	0	6962	0	1064	
+
+Q 93   5644	*	5345	*	*	4653	*	4827	3834	1831	3500	4556	*	2733	2993	*	5562	3630	*	5622	93
+       320	2328	*	301	2411	1804	487	6791	1743	1401	
+
+G 94   3897	*	*	*	*	880	*	6032	*	4154	*	3884	*	*	3210	*	5323	3091	*	*	94
+       0	*	*	*	*	0	*	6857	0	1268	
+
+R 95   *	*	4120	2089	3115	*	4826	3045	4512	4629	5717	5709	*	4659	2633	5239	5493	*	*	3970	95
+       77	4274	*	0	*	*	*	6950	1091	0	
+
+T 96   *	*	2873	5605	*	*	*	4922	5419	*	5025	*	1829	*	4460	3683	2261	2810	*	*	96
+       0	*	*	*	*	*	*	6621	0	0	
+
+L 97   3179	*	*	*	*	*	*	3401	4333	1717	5287	4453	*	4739	4856	5204	4306	2741	*	3823	97
+       0	*	*	*	*	*	*	6112	0	0	
+
+Y 98   *	*	*	*	2366	*	4825	3909	*	4625	4906	*	*	*	*	*	*	4333	*	784	98
+       0	*	*	*	*	*	*	6112	0	0	
+
+G 99   *	*	4012	*	*	520	*	*	*	*	*	*	*	4447	*	3322	*	4433	*	4359	99
+       0	*	*	*	*	*	*	5640	0	0	
+
+F 100  *	*	*	*	506	*	*	3834	*	*	*	*	*	*	*	*	*	3486	*	2875	100
+       0	*	*	*	*	*	*	5118	0	0	
+
+G 101  3594	*	3124	3731	4270	2635	*	*	*	4242	*	3580	*	4468	*	2959	2292	*	*	*	101
+       0	*	*	*	*	*	*	4252	0	0	
+
+G 102  2910	*	*	*	*	1622	*	*	*	*	*	*	2801	*	*	1327	*	*	*	*	102
+       0	*	*	0	*	*	*	3018	0	0	
+
+//
+�HHsearch 1.5
+NAME  38dd9955ccfba0d5be1c28ca6ce0751d
+FAM   
+FILE  38dd9955ccfba0d5be1c28ca6ce0751d
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:54:43 2013
+LENG  76 match states, 76 columns in multiple alignment
+FILT  134 out of 700 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  6.8 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCCCCCCCCCCHHHEEEEEECCCCCCCCCEEEEEECCCCEEECCCCCHHHHHHHHHHHHCCCCCCC
+>ss_conf PSIPRED confidence values
+9876579998135771681795692599990899999737999987899897598708999999999863457899
+>Consensus
+xxxxxxxxxxCCxxxxxxxIpxxxIxxyxxxtsxxCxxxaVIfxtkxgxxiCxdPxxxWVkxxixxlxxxxxxxxx
+>38dd9955ccfba0d5be1c28ca6ce0751d
+QPDAINAAVTCCYNFTNRKISVQRLASYRRITSSKCPKEAVIFKTIVAKEICADPKQKWVQDSIDHLDKQTQTPKT
+>gi|293630689|gb|ADE58987.1| CC chemokine CK7 [Sparus aurata]
+IVEPESINKSCCLMATRKPVPGKIIQNVER-SHSSCPVPAIILTTTRGRQICLDGSWIWAERVLRAFETSP-----
+>gi|229365878|gb|ACQ57919.1| C-C motif chemokine 19 precursor [Anoplopoma fimbria]
+----AEVPRDCCLSVKNKEVKKILVVDYSRQISGgGCSIDATVLVTRGGRKLCVPADESWIQAVMKHVDHL------
+>gi|297673795|ref|XP_002814937.1| PREDICTED: c-X-C motif chemokine 10-like [Pongo abelii]
+-----------CISISNQPVNPRSLEKLEIIpASQFCPHVEIIATMKKkGEKRCLNPESKAIKNLLKAVSKERS----
+>gi|327281413|ref|XP_003225443.1| PREDICTED: stromal cell-derived factor 1-like [Anolis carolinensis]
+--------YRCPCRYVESSVAKSHIKHLKILTVPGCSLQ-IIARLKNSsKQICIDPKLKWIQEYLEKYLH-------
+>gi|139472813|ref|YP_001129363.1| K4.1 [Human herpesvirus 8]gi|1778606|gb|AAC56951.1| similar to beta-chemokine genes [Human herpesvirus 8]gi|2246547|gb|AAB62672.1| ORF K4.1 [Human herpesvirus 8]gi|87196834|gb|ABD28860.1| K4.1 [Human herpesvirus 8]gi|261853486|gb|ACY00408.1| K4.1 [Human herpesvirus 8]gi|312275154|gb|ADQ57891.1| K4.1 protein [Human herpesvirus 8]
+-----IMASDCCENSlSSARLPpDKLICGWYW-TStVYCRQKAVIFVTHSGRKVCGSPAKRRTRLLME-----------
+>gi|149639456|ref|XP_001507067.1| PREDICTED: similar to shroom family member 3 protein [Ornithorhynchus anatinus]
+-----LMPRTCnCLKHTSNFIHPRFIRRLEKFeAGPYCRRLELLVILKSNQIVCVDPDAQWMKELLRYMDQRSREP--
+>gi|327274220|ref|XP_003221876.1| PREDICTED: c-X-C motif chemokine 11-like [Anolis carolinensis]
+-----------CQGRRMIRVNMLDVAEVEYHrSSPSCSEDELIIFFKTNGkTGCLDITKKQGRIIKEAIMRKR-----
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+Q 1    1939	*	5120	3146	4994	2856	*	3705	4937	*	*	4132	*	4661	*	2620	4073	*	*	*	1
+       0	*	*	*	*	*	*	5346	0	0	
+
+P 2    3802	*	*	5078	*	3784	*	*	4293	5382	5329	*	1576	4296	4136	3365	3617	3607	5475	*	2
+       303	4465	2794	0	*	*	*	5502	1073	0	
+
+D 3    2771	*	2546	3207	*	4077	*	5359	*	4995	3066	5357	*	5057	3163	3410	*	5546	*	4106	3
+       71	5247	5546	0	*	*	0	5434	1020	1342	
+
+A 4    1962	*	5292	5076	5221	2023	*	*	5103	*	3088	*	4798	4109	*	2991	*	4981	5843	*	4
+       133	4109	5040	1435	666	1690	535	5435	1376	1404	
+
+I 5    2200	*	*	4234	5267	*	5070	3185	4719	5308	*	4489	3765	5399	4327	3079	4017	3233	5482	*	5
+       35	*	5370	*	*	363	2168	5476	0	1445	
+
+N 6    4885	*	2837	4652	*	3868	4096	4036	*	4496	*	2177	*	4859	4645	2625	5579	4066	*	5972	6
+       59	4642	*	0	*	*	0	5856	1051	1167	
+
+A 7    3065	*	5136	5162	4810	4763	*	2940	5597	3862	3647	4564	3139	*	4996	3274	6018	2929	6082	*	7
+       241	3790	3613	179	3097	569	1617	6098	1280	1285	
+
+A 8    3281	*	5727	3469	4316	4713	5781	6614	5209	6156	*	3195	1722	5249	5249	3450	*	4201	*	5695	8
+       44	5056	*	0	*	560	1637	6411	1091	1401	
+
+V 9    3529	*	5262	3191	6179	3822	5766	6028	3766	5682	4207	5667	5197	4875	3710	2497	4149	3415	*	5171	9
+       11	7106	*	0	*	*	0	6646	1025	1084	
+
+T 10   4458	*	2557	4670	5026	4231	6435	4920	4486	*	6885	4728	4574	4551	3023	2792	3613	3439	*	*	10
+       0	*	*	*	*	0	*	6698	0	1084	
+
+C 11   *	87	*	*	*	*	*	5187	6086	*	*	*	*	*	*	5915	*	*	*	*	11
+       93	4003	*	0	*	*	*	6767	1344	0	
+
+C 12   *	64	*	*	*	*	*	*	*	*	*	*	6366	*	*	*	*	6303	*	5744	12
+       0	*	*	*	*	*	*	7191	0	0	
+
+Y 13   5534	5509	*	4557	2863	*	*	3749	4582	2013	4475	5920	5463	5123	4696	5404	3538	3226	*	4486	13
+       0	*	*	*	*	*	*	7191	0	0	
+
+N 14   4582	*	4910	4017	7179	2934	5626	*	2385	7034	5441	3083	6770	3586	3519	2927	4215	*	*	*	14
+       43	5466	7159	666	1435	*	*	7191	1135	0	
+
+F 15   5836	*	*	6842	2780	6893	5314	4242	4897	4183	6648	6516	5522	*	4990	5285	3010	2677	*	1874	15
+       12	6930	*	0	*	*	0	7191	1000	1000	
+
+T 16   5186	6927	6607	6921	5757	5279	3855	3794	*	4247	6215	4891	*	4788	4991	2148	2035	3380	7129	5640	16
+       35	7169	5879	0	*	0	*	7191	1060	1000	
+
+N 17   4686	*	3914	4095	*	5715	3965	5997	3337	5704	6035	3455	4426	4624	3410	2800	2781	4549	*	*	17
+       67	7212	4689	0	*	0	*	7235	1000	1069	
+
+R 18   3878	*	*	5853	5661	3557	5152	5490	2140	4742	6874	3493	5096	3736	2453	4391	4709	*	*	5315	18
+       39	*	5242	0	*	628	1502	7169	1034	1222	
+
+K 19   4513	*	*	4551	4286	6635	5260	5228	2625	5919	4761	*	2582	4727	2039	3816	5696	4771	*	6816	19
+       10	*	7229	*	*	0	*	7176	0	1267	
+
+I 20   6054	*	*	*	5695	6643	*	1029	6683	2301	5783	7163	6245	*	7054	*	7406	2400	6443	*	20
+       17	6443	*	0	*	0	*	7194	1068	1000	
+
+S 21   5253	*	5046	6691	*	5142	4114	*	3758	6761	*	3596	1120	6858	3313	3838	4998	6448	*	*	21
+       89	4717	5513	1250	787	*	*	7197	1261	0	
+
+V 22   4873	4882	5686	5051	3821	6109	7215	4269	3429	2263	6019	*	3048	5503	3238	4591	5441	3893	5462	5765	22
+       25	*	5844	*	*	0	*	7170	0	1118	
+
+Q 23   5091	*	4045	4386	7069	3784	5644	7020	2150	6041	6902	3023	5997	4097	2158	5082	4682	5962	*	*	23
+       0	*	*	*	*	0	*	7172	0	1062	
+
+R 24   4613	7165	4094	*	3486	7446	4112	4238	3811	2918	7031	3098	4544	5381	3069	4799	5664	3443	7452	5612	24
+       52	4826	*	2768	229	*	*	7197	1226	0	
+
+L 25   6057	*	*	*	7005	*	*	1074	6023	2133	6958	*	*	*	*	*	5477	2199	*	6599	25
+       0	*	*	*	*	*	*	7197	0	0	
+
+A 26   3573	6934	5158	3379	*	6507	*	4792	2594	4128	5462	*	6910	2950	3205	7113	4237	2437	*	*	26
+       0	*	*	*	*	*	*	7197	0	0	
+
+S 27   4429	4470	3599	4190	*	2685	5156	5480	3240	7147	5374	4704	*	6332	3598	2044	4593	*	*	6522	27
+       7	7745	*	1585	585	*	*	7197	1000	0	
+
+Y 28   5030	5945	*	*	3714	*	5962	3694	*	3155	4931	*	*	*	*	*	6507	2527	5526	1210	28
+       115	3708	*	878	1133	*	*	7197	1717	0	
+
+R 29   4953	7115	5380	2372	6125	*	4241	5131	3494	4542	7071	7142	*	3076	3217	4565	3931	4326	7072	3180	29
+       25	5886	*	607	1542	0	*	7199	1088	1021	
+
+R 30   7481	*	*	3753	5683	*	4868	2371	3584	3587	4869	6169	5918	3873	3664	7367	4827	2661	4475	4312	30
+       796	4955	1352	0	*	*	*	7197	1193	0	
+
+I 31   *	*	*	4999	3522	*	4466	2504	5571	3408	4493	*	*	1497	6045	4995	4045	5310	*	6156	31
+       1606	575	*	46	5008	119	3657	6840	3879	4249	
+
+T 32   3238	*	6301	5006	*	*	5869	4930	5063	5089	6130	4669	2748	6131	6048	3685	1463	3861	*	*	32
+       99	4067	7243	0	*	1750	509	7212	1491	1252	
+
+S 33   5813	*	3330	6384	6002	2663	5623	6795	4650	6801	7153	4744	4502	6648	4450	1345	3856	6357	*	*	33
+       32	6095	7090	346	2231	299	2416	7201	1124	1209	
+
+S 34   5613	6782	5120	4211	6686	2758	5931	4837	5546	4874	*	4195	2326	3901	4792	2130	5646	5813	*	*	34
+       8	7482	*	0	*	*	0	7194	1000	1050	
+
+K 35   5548	*	3589	4148	6708	3048	3118	6397	7114	4147	6304	3732	4356	3679	4211	2573	4929	6103	*	4891	35
+       0	*	*	*	*	1187	835	7194	0	1050	
+
+C 36   6306	52	*	*	*	6305	*	*	*	*	*	*	*	*	*	*	*	6645	*	*	36
+       86	*	4115	*	*	0	*	7196	0	1000	
+
+P 37   4206	*	3487	4752	*	4860	4749	7191	3743	5116	*	3506	2371	5367	3241	2483	4401	*	*	*	37
+       19	*	6253	*	*	0	*	7081	0	1401	
+
+K 38   *	*	7253	5381	4542	*	5428	2979	2775	2943	5303	3786	*	3442	2890	7017	4436	3231	*	6041	38
+       32	5998	7262	0	*	*	0	7168	1092	1035	
+
+E 39   4936	*	3302	4216	*	*	6740	5931	2948	5128	5061	4106	2261	3893	3695	5585	3084	5207	7436	6017	39
+       41	*	5141	*	*	*	0	7161	0	1116	
+
+A 40   798	*	7080	1951	*	3204	6483	*	*	6709	*	*	*	6662	*	*	6763	6585	*	*	40
+       0	*	*	0	*	428	1962	7123	1000	1330	
+
+V 41   6758	*	*	*	5751	*	*	1334	*	3621	6595	*	*	*	*	*	5511	1164	*	6018	41
+       0	*	*	*	*	*	0	7168	0	1035	
+
+I 42   6625	*	*	*	*	*	*	619	*	4018	4791	*	*	*	5672	*	*	2176	*	*	42
+       0	*	*	*	*	0	*	7168	0	1035	
+
+F 43   2801	*	*	*	1070	*	*	3967	*	2622	*	*	*	*	*	*	*	2701	*	*	43
+       9	*	7337	*	*	*	*	7247	0	0	
+
+K 44   5187	6454	*	4741	4238	6934	3800	3879	3071	4101	6601	7347	*	4911	4589	5786	1607	3919	6827	4925	44
+       20	*	6215	0	*	0	*	7244	1000	1000	
+
+T 45   *	*	*	*	4463	6038	*	6001	*	1831	3798	*	6127	*	6302	5954	1044	4545	*	*	45
+       7	*	7679	*	*	0	*	7226	0	1034	
+
+I 46   5975	*	6917	6630	5474	5358	4738	5047	1092	5422	6780	4311	5022	5368	3005	5280	5426	3823	*	*	46
+       78	5227	5278	727	1337	0	*	7254	1150	1000	
+
+V 47   4324	6328	4976	4393	*	4743	6273	*	2149	7224	5950	2596	*	5264	2168	3540	4249	7119	*	*	47
+       111	6986	3915	0	*	0	*	7223	1119	1139	
+
+A 48   5715	*	4587	5039	6787	813	5635	5373	3934	6475	*	2754	*	5363	5860	5638	*	*	*	*	48
+       65	5479	5525	1690	535	0	*	7145	1099	1434	
+
+K 49   5343	*	6503	4427	5699	5191	7383	4183	1939	4706	5576	5336	6125	4377	1631	5337	5287	5976	*	6182	49
+       190	4065	3978	597	1561	0	*	7236	1392	1102	
+
+E 50   4670	*	6040	2520	4891	*	5274	5581	2199	5258	5192	5002	*	2668	3657	3867	3879	6037	*	*	50
+       9	7347	*	0	*	0	*	7170	1000	1420	
+
+I 51   5090	*	*	*	3409	6053	*	1810	4644	2773	5972	*	*	*	5214	6228	4802	2006	*	4353	51
+       9	7366	*	0	*	*	*	7247	1000	0	
+
+C 52   6377	53	*	*	*	*	*	*	*	*	*	*	*	*	5368	*	*	*	*	*	52
+       0	*	*	*	*	*	*	7247	0	0	
+
+A 53   1878	*	*	*	*	4661	*	4430	*	2130	6531	*	*	*	*	3457	4300	2090	*	5257	53
+       31	6066	7291	529	1703	*	*	7247	1093	0	
+
+D 54   5513	*	1235	6885	*	*	4554	*	4304	5266	*	1944	4273	5952	4660	5072	5128	*	*	*	54
+       8	7473	*	549	1659	0	*	7238	1029	1073	
+
+P 55   5196	*	*	6796	6346	6920	*	6047	7081	4928	*	7038	390	5552	5968	5098	4836	*	5983	*	55
+       10	7231	*	1000	1000	*	*	7236	1047	0	
+
+K 56   4959	*	3015	2968	6970	5329	4507	6655	2592	*	*	2959	*	3901	3714	3307	3581	7085	*	*	56
+       37	5307	*	959	1042	*	*	7236	1179	0	
+
+Q 57   2306	*	3041	3027	6337	4980	*	6605	3750	4483	5918	3870	*	3323	6740	3192	5740	5030	5564	7330	57
+       10	7164	*	2000	415	0	*	7238	1000	1021	
+
+K 58   4828	*	4371	3448	5800	4439	4928	6920	2200	5155	*	4749	2007	5882	4071	4591	3970	7319	*	*	58
+       0	*	*	*	*	*	*	7236	0	0	
+
+W 59   7143	6807	*	*	5204	5677	*	6591	5441	4938	5399	7263	6729	4679	5139	6221	5707	6001	482	*	59
+       9	*	7332	*	*	*	*	7236	0	0	
+
+V 60   3956	*	*	*	5024	4044	*	3711	*	3620	6993	*	*	*	*	6119	4368	722	*	6699	60
+       0	*	*	0	*	0	*	7234	1000	1000	
+
+Q 61   7231	*	6347	5209	*	6120	7607	5169	1612	5480	4829	5105	4397	1913	2685	6413	6324	*	*	*	61
+       14	6688	*	0	*	*	*	7236	1008	0	
+
+D 62   4521	*	4122	2851	*	*	6689	4989	1732	5342	5724	3328	6994	3681	2797	5232	6773	6711	*	*	62
+       0	*	*	*	*	*	*	7184	0	0	
+
+S 63   3216	6128	*	*	5968	5957	4499	2810	4626	1933	6286	5052	*	6270	5441	7116	5624	3186	5270	3126	63
+       9	*	7279	*	*	*	*	7184	0	0	
+
+I 64   *	*	*	*	5271	7143	*	1734	5497	2048	2408	*	*	6729	*	*	5204	2711	6335	6339	64
+       9	*	7288	*	*	*	0	7182	0	1000	
+
+D 65   5005	*	4345	2836	5900	*	5447	*	1808	6132	5113	3716	*	3265	3311	4264	4128	6137	*	7211	65
+       8	7414	*	2102	382	1178	842	7181	1073	1041	
+
+H 66   3699	5383	5584	3863	4603	4792	4531	4495	2146	5169	4640	4257	*	4338	2990	5470	4995	6992	*	4025	66
+       0	*	*	*	*	0	*	7174	0	1000	
+
+L 67   5085	*	*	6955	3622	*	*	2751	4521	1263	3751	*	5931	4537	6255	6682	*	3921	5774	4982	67
+       10	7235	*	2000	415	*	*	7164	1011	0	
+
+D 68   7077	*	2269	3022	7239	5380	*	5625	2572	3865	5230	3629	4837	3864	4681	3556	5148	*	*	6519	68
+       17	6428	*	0	*	*	*	7110	1007	0	
+
+K 69   4088	*	5029	3099	*	*	4656	6679	2012	4463	5155	3538	5056	4450	3734	3696	3897	4901	6906	*	69
+       24	5937	*	2000	415	*	*	7064	1034	0	
+
+Q 70   4392	4927	6739	4323	*	5734	*	6793	1861	4761	6019	4841	5749	4075	2017	3114	5095	*	*	*	70
+       44	5046	*	0	*	*	*	6983	1062	0	
+
+T 71   3125	6249	4857	*	5966	5696	6186	5964	2439	4216	4213	3193	3464	4825	4277	3208	3547	*	*	*	71
+       0	*	*	*	*	*	*	6458	0	0	
+
+Q 72   3075	*	5413	4368	5129	*	4289	*	2688	*	4556	5086	*	1906	3889	4620	3807	5198	*	5112	72
+       59	4642	*	1000	1000	*	*	5914	1000	0	
+
+T 73   4785	*	*	3580	*	*	*	4887	1346	*	*	*	3645	3472	3608	4494	2675	*	*	*	73
+       0	*	*	*	*	*	*	5394	0	0	
+
+P 74   2878	*	*	*	*	2560	*	*	3592	3839	*	4031	2008	2632	3826	*	*	*	*	*	74
+       0	*	*	*	*	*	*	4196	0	0	
+
+K 75   *	*	*	*	*	*	*	*	1219	*	2522	*	*	2884	*	1938	*	*	*	*	75
+       0	*	*	*	*	*	*	2968	0	0	
+
+T 76   2615	*	*	*	*	*	*	*	*	*	*	*	1038	*	*	*	1515	*	*	*	76
+       0	*	*	0	*	*	*	2838	0	0	
+
+//
+�HHsearch 1.5
+NAME  3b63735b431780c58c19dd032083016e
+FAM   
+FILE  3b63735b431780c58c19dd032083016e
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:32:41 2013
+LENG  185 match states, 185 columns in multiple alignment
+FILT  122 out of 1583 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.3 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCEEEECCCCEEEEEEEECCCCCEEEECHHHCCCCCEEEEECCCCEEEEEEECCCCCCCCEEEEEECCCCCCCCCEEEEECCCCCCCCCCCCEEEEE
+EECCCCCCCEEEEEEEEEECCCCCEECCEEECCCCCCCCCCCCEEEECCEEEEEEEECCCCCCCCCCEEEEEHHHHHHHCCEEEC
+>ss_conf PSIPRED confidence values
+9487789949987888999982987899989678579868999758963888996567898888999988877468553354436876778999999999
+8069987647999887870555715405365021258998578499999999999734788877787899998998976591989
+>Consensus
+xxxGxxixxxxxxctxGxxvxxxxxxxiLTaxHcxxxxxxvxxxxxxxxxigxxxxxxxxxxDiAllxlxxxxxxxxxixxxxxxxxxxxxxxgxxvxxx
+GxxxgxxxgxixxxxxxxxxxxxxxxxxxxxxxxxxxxGDSGgPvxxxxxxvGixsxgxxxxxxxxxxxxxxixxxxxxlxxxxx
+>3b63735b431780c58c19dd032083016e
+ISGGDAIYSSTGRCSLGFNVRSGSTYYFLTAGHCTDGATTWWANSARTTVLGTTSGSSFPNNDYGIVRYTNTTIPKDGTVGGQDITSAANATVGMAVTRR
+GSTTGTHSGSVTALNATVNYGGGDVVYGMIRTNVCAEPGDSGGPLYSGTRAIGLTSGGSGNCSSGGTTFFQPVTEALVAYGVSVY
+>gi|183981692|ref|YP_001849983.1| hypothetical protein MMAR_1678 [Mycobacterium marinum M]gi|183175018|gb|ACC40128.1| conserved hypothetical membrane protein [Mycobacterium marinum M]
+--PGLEIHQGSVVCVIGFV--EPQMRIAFSAGRCNGDP-MVT--DRYGNAVGAVTLAGqatvsevavdgaAAGVDYEVITLAPEVAA-TDLLPTGLRLQs
+kpGFRVQPGARVCE-ATAARQSCGRVDTVT------E-----SRFVIAgMDADQHEIGAPVYVlddDnHaLIAGLLDGVRGST-----------------
+------
+>gi|163757015|ref|ZP_02164121.1| hypothetical protein KAOT1_09946 [Kordia algicida OT-1]gi|161323019|gb|EDP94362.1| hypothetical protein KAOT1_09946 [Kordia algicida OT-1]
+--SGQEISMtnaSQAKGTIGAIVELEnhKGDFILSNWHVMMQSSGdLGAGIdNKsDEKIAELfWGLNNEYYDIALSKIISKKQIIKER-KIDTVKKYKDI
+RIGDSVKIEGFKSGFDKNTIYSKNAYVKVGNEERIfKNQIMTGKLSVSGDSGSIVLNKKnEIIGIVCAGDNkKF-----SICNHLHSLLSS------
+>gi|313224875|emb|CBY20667.1| unnamed protein product [Oikopleura dioica]
+-------------------------------------------------------------QYSCMLHFKEDILWsgtdDSYTN-TPCM-PQEPIVah-D
+QECWIAgwGSTAV-igiPSDELRSRGVRLrNDTDcQDQFl--YKNSGACiEGeypvsgeiyheapscGNDIGGPVICpiDGkaVLAGVMGPGG--CGIyG
+RKSLYLDVFTQM--------
+>gi|281357362|ref|ZP_06243851.1| peptidase S1 and S6 chymotrypsin/Hap [Victivallis vadensis ATCC BAA-548]gi|281316393|gb|EFB00418.1| peptidase S1 and S6 chymotrypsin/Hap [Victivallis vadensis ATCC BAA-548]
+------------GSGTGFVIDGNR---IITNAHVVAYPTFITVRKP-GDQTRYPAKVVAVNHecDLAILTVEDPKFFDG--IKPLELA--DLPPMQSSVA
+AVGYPVGgdnvsITVGVLSRVEPL-EYShSGKEL-LGAQIDAAINPGNSGGPVLHEGKVVGIAFQGLgesQNI-----GYMIPC------------
+>gi|156378061|ref|XP_001630963.1| predicted protein [Nematostella vectensis]gi|156217994|gb|EDO38900.1| predicted protein [Nematostella vectensis]
+------------------------PLWLLTAAHCvirSNNSADYTVIVGAHKrvldgTehkLStFYKHEKYvggkdKKHDLALIKLAKPATFSTKVSPVc
+LPKQGDLMKE-RE-NCFAtgwGRVSSSLlhsrAKKLQQGKAPIvDHQTcirkISQWkDGIDQQsMVCAGgagnsvcHGDSGGPLVCeesgHWVLRGAASW
+vSSMTCPGKKYAIYVRVSS----------
+>gi|158299042|ref|XP_001238092.2| AGAP010015-PA [Anopheles gambiae str. PEST]gi|157014178|gb|EAU76076.2| AGAP010015-PA [Anopheles gambiae str. PEST]
+----------QFLCS-GNIITPS---HVLSLEYCFEiFVFQMSIYGGgtsplsggisiPVNKITIHPNf-EYrygrSDFDVAVISVPINTFQgMANMASI
+ALQ--TSEVLPGSRcyVIGWGVSKifgpidlnGLHYGTMNIVSQSAcsrSWAsvNENVTSNMICAKYcfgvDICYGDLGGPLVCDGKLTGIIGYTEYGCT
+KNNPAVFTRIMApsIR--------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+I 1    *	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	2177	0	0	
+
+S 2    2674	*	*	*	*	*	*	2633	2487	*	*	*	*	*	3357	2599	*	3617	*	2648	2
+       0	*	*	*	*	*	*	4916	0	0	
+
+G 3    2714	*	*	*	*	658	*	*	*	*	*	*	2707	*	*	4039	*	*	*	*	3
+       0	*	*	*	*	*	*	6060	0	0	
+
+G 4    *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	4
+       0	*	*	*	*	*	*	6498	0	0	
+
+D 5    2874	*	2007	4636	*	*	4640	2986	*	4416	4526	*	*	4363	*	3219	3636	3616	*	*	5
+       0	*	*	*	*	*	*	6498	0	0	
+
+A 6    1999	*	*	2500	*	*	*	*	1910	*	*	*	*	4618	3586	3484	4475	4360	*	*	6
+       0	*	*	*	*	*	*	6498	0	0	
+
+I 7    *	*	*	*	4441	*	*	779	*	2519	*	*	*	*	*	*	3442	4028	*	4534	7
+       0	*	*	*	*	*	*	6498	0	0	
+
+Y 8    4721	*	*	4681	4441	3126	3470	4316	*	*	*	2575	*	4360	*	2619	4618	2976	*	3738	8
+       0	*	*	*	*	*	*	6498	0	0	
+
+S 9    *	*	4636	4529	*	2943	4441	3014	*	3504	3485	4703	*	3470	4579	3552	4682	3333	*	4467	9
+       915	1090	*	1165	852	*	*	6498	2894	0	
+
+S 10   *	*	4876	4800	*	1573	*	*	4815	*	*	2203	3529	*	4936	2444	4713	*	*	*	10
+       52	4834	*	0	*	*	*	6928	1000	0	
+
+T 11   5501	*	3694	5575	*	1551	5185	5568	*	*	*	*	5465	2879	*	2061	4618	5444	*	5167	11
+       104	3848	*	1908	447	*	*	7943	1410	0	
+
+G 12   2495	*	*	4571	5391	2272	4607	4781	4695	4745	*	5498	*	5766	*	2419	4653	4440	*	3588	12
+       129	3991	5449	1391	692	*	*	8385	1378	0	
+
+R 13   3188	*	5871	*	5708	*	6123	3428	3925	4295	5726	*	6173	4364	3353	2573	3899	3487	6026	3168	13
+       0	*	*	*	*	0	*	8688	0	1085	
+
+C 14   3598	1003	*	6081	*	1596	*	*	*	*	*	*	*	*	5364	5864	*	6021	*	5972	14
+       0	*	*	*	*	*	*	8759	0	0	
+
+S 15   3821	*	*	*	*	2883	*	*	*	*	5926	6072	*	*	6332	2267	966	5037	*	*	15
+       205	*	2919	*	*	*	*	8844	0	0	
+
+L 16   2867	*	*	*	3907	6046	*	3595	*	1957	4569	*	*	*	*	3071	2439	3393	*	*	16
+       0	*	*	*	*	0	*	8531	0	2075	
+
+G 17   3964	*	*	*	6341	368	*	*	*	*	*	4313	*	*	*	4084	4659	*	*	*	17
+       0	*	*	*	*	*	*	9150	0	0	
+
+F 18   2396	4103	*	*	1525	*	6469	6115	*	4059	6498	5121	4856	*	*	5335	4645	3523	5359	3875	18
+       16	*	6541	*	*	*	*	9150	0	0	
+
+N 19   3209	*	*	*	4860	6022	*	2451	*	2472	*	4464	5342	*	5079	3306	4674	2146	6239	*	19
+       42	*	5130	*	*	*	0	9154	0	1021	
+
+V 20   2776	*	*	*	5983	4762	*	2142	*	2982	5902	*	*	*	*	6304	*	1347	6118	6461	20
+       35	*	5381	*	*	1757	506	9096	0	1465	
+
+R 21   5231	*	4146	4603	4958	4768	6249	*	2736	*	*	3728	5816	6400	2889	2551	2689	4399	*	5039	21
+       71	4826	6323	0	*	0	*	9061	1282	1613	
+
+S 22   3756	*	2256	3973	*	3560	5851	5422	5303	4222	*	2837	3323	4258	3793	4459	*	*	*	4686	22
+       127	5482	4013	597	1561	*	0	9193	1151	1000	
+
+G 23   3835	*	3361	4230	*	2521	5259	5325	3076	*	*	2610	3733	*	4103	3797	3918	*	*	*	23
+       555	3400	2153	2577	265	*	0	9091	2098	1656	
+
+S 24   2981	*	3340	4795	*	1946	4802	*	3385	4954	*	4383	5648	4583	3695	3655	4904	5999	*	*	24
+       552	2042	3734	511	1745	*	0	8532	3280	3812	
+
+T 25   3967	*	3936	3491	*	3683	*	6101	5090	4932	5711	3608	3776	3883	3279	3428	2855	4754	*	6149	25
+       74	4321	*	1760	505	1145	868	9002	1362	4415	
+
+Y 26   6227	*	6282	4454	5500	3012	6429	5498	3268	4183	6538	3196	5360	4140	2725	4341	3599	4818	5248	4517	26
+       19	6227	*	1000	1000	252	2644	9392	1038	3001	
+
+Y 27   6735	5412	6923	*	2573	3680	3721	4582	5745	4256	5551	*	*	*	5265	5638	4582	5064	2463	2294	27
+       35	5380	*	649	1464	0	*	9643	1277	1214	
+
+F 28   4198	*	*	*	3394	4116	*	1683	*	2714	5740	*	*	*	*	6734	6394	1904	6574	6480	28
+       0	*	*	*	*	*	*	9706	0	0	
+
+L 29   5331	*	*	*	4601	6539	*	3420	*	765	5998	*	*	*	*	*	4496	2609	*	5825	29
+       0	*	*	*	*	*	*	9706	0	0	
+
+T 30   6571	*	*	*	6507	*	*	6249	*	4628	5407	*	*	6539	*	2846	478	4909	*	*	30
+       0	*	*	*	*	*	*	9706	0	0	
+
+A 31   800	5627	*	*	*	*	*	6624	*	6331	*	2751	*	*	*	3084	3517	5114	*	*	31
+       0	*	*	*	*	*	*	9706	0	0	
+
+G 32   1523	6792	*	5489	6591	2016	6601	*	3700	*	5451	3731	*	*	4131	4318	*	*	5651	4305	32
+       0	*	*	*	*	*	*	9706	0	0	
+
+H 33   6492	*	6591	*	*	*	226	*	*	6791	*	*	*	4192	6442	6574	6211	6373	*	6331	33
+       0	*	*	*	*	*	*	9706	0	0	
+
+C 34   5687	807	*	*	6666	*	*	4577	*	5456	*	*	*	*	*	*	6211	1753	6507	6249	34
+       29	5654	*	2641	252	*	*	9706	1173	0	
+
+T 35   3117	*	5009	6464	3498	2924	6771	3818	6495	2810	5320	6428	6230	*	6604	6610	4966	2139	6623	4363	35
+       17	6457	*	0	*	0	*	9671	1000	1028	
+
+D 36   2975	6591	4101	3227	5620	2904	5154	6246	3538	5576	4347	3800	5882	4242	5721	3928	3994	5073	*	5196	36
+       96	4881	5025	1860	465	*	*	9706	1334	0	
+
+G 37   3605	*	2579	5265	6292	2430	6877	6803	4183	5078	5838	3658	3660	3439	5646	4279	4905	4616	*	6602	37
+       86	4376	6698	1074	930	1885	455	9655	1697	1329	
+
+A 38   2677	5779	3735	4165	4903	2464	5292	6703	4815	4611	5852	4362	4388	6451	6332	3537	5054	3727	6367	5218	38
+       82	4995	5400	1770	501	1148	866	9647	1285	1338	
+
+T 39   3820	*	2968	4295	6284	3169	6585	4411	3680	5319	6450	3265	5659	4038	4726	3526	3285	5526	*	5582	39
+       165	3507	5657	1672	543	294	2438	9633	2176	1551	
+
+T 40   3612	6586	4127	3781	4924	4957	5596	4555	3671	*	4966	3605	4849	3951	4486	3554	2585	5172	*	4910	40
+       388	2085	*	2466	288	747	1307	9675	4166	1334	
+
+W 41   3623	6571	6848	5388	5259	*	5729	3096	5730	3086	6325	*	*	5421	4359	5663	4443	1568	4438	4523	41
+       76	4581	6695	1696	532	0	*	9677	1504	1035	
+
+W 42   5133	6464	4566	4495	5132	3742	4214	4247	4400	5359	*	7030	4984	3894	4025	4036	3418	3223	5188	2889	42
+       144	4042	4874	1960	429	*	0	9682	1782	1069	
+
+A 43   3579	6873	5045	4944	5036	3697	*	3110	5492	3399	6638	*	3796	5381	6096	4141	3769	2219	*	4677	43
+       182	3578	4836	582	1591	1090	916	9613	2110	1665	
+
+N 44   6523	*	4976	3538	*	2308	4534	5555	4041	5284	*	3249	4701	4071	3853	3415	4905	3576	*	4831	44
+       190	4802	3513	1329	732	423	1976	9644	1421	2094	
+
+S 45   4422	*	3055	4370	5587	3289	5578	5384	5600	2267	6412	4927	5098	4635	4046	3717	3592	4485	*	6630	45
+       388	2420	4345	1935	437	1377	701	9594	3357	2673	
+
+A 46   3737	*	4394	5476	5123	1579	3928	6080	5654	6105	*	4323	6450	6911	3713	3467	4763	5655	*	3579	46
+       558	1870	4406	2155	367	1065	938	9553	4213	2696	
+
+R 47   3488	6495	3043	3384	6801	3360	5836	5462	3140	5391	6156	4149	4375	4126	4132	4420	3513	5715	*	6312	47
+       420	2099	5710	1867	462	552	1654	9533	3840	2606	
+
+T 48   3792	*	3417	4248	4848	2527	6431	*	4274	4845	*	3646	6036	5613	4137	2825	5762	3929	6238	3956	48
+       187	3037	*	1627	564	812	1217	9615	2612	1849	
+
+T 49   4420	*	5455	4174	*	3973	4514	4499	4383	4442	6558	3217	5634	4439	4223	3578	2483	3212	*	5577	49
+       100	3894	*	1947	433	2019	409	9665	1845	1413	
+
+V 50   3569	6566	3478	4478	6216	4468	5584	*	3526	4230	*	4394	2438	4637	3369	3720	5799	3682	*	6636	50
+       79	4238	*	1521	618	1705	529	9673	1706	1272	
+
+L 51   *	*	6726	6468	4200	6862	5559	1949	4398	3049	5055	*	4896	5845	4978	6714	4507	2006	*	4249	51
+       16	*	6519	*	*	543	1673	9685	0	1271	
+
+G 52   3368	*	6656	4386	6897	1119	6447	6217	3177	6223	*	5767	5050	6481	6718	4250	4834	4276	*	5697	52
+       89	4679	5593	1626	565	0	*	9658	1460	1238	
+
+T 53   3467	6317	4652	3147	3904	6833	6808	4299	3534	6906	6528	4306	4651	5151	4056	4169	2912	3428	5541	5500	53
+       89	4628	5679	551	1656	803	1228	9661	1427	1245	
+
+T 54   5156	6617	*	4597	3705	6874	3725	3204	4267	3189	5057	5715	6134	5540	4339	4960	3978	1945	*	*	54
+       159	3358	7164	1543	606	*	0	9633	2168	1350	
+
+S 55   2920	*	5436	4019	6170	4581	4731	4688	3804	5079	6880	4977	5457	4203	3923	3244	3410	2897	6399	5583	55
+       119	4561	4770	987	1013	0	*	9637	1460	1455	
+
+G 56   4033	*	4481	3959	4939	3639	2830	3073	5399	4024	*	4885	5436	6560	3363	6652	5716	3497	4733	4253	56
+       249	3609	3713	2718	238	1031	970	9667	2143	1501	
+
+S 57   3689	6467	*	3736	4963	4983	4813	4885	4959	5323	*	5629	2876	3539	4148	2362	4878	3648	*	4688	57
+       203	4522	3512	1856	466	169	3177	9529	1497	2457	
+
+S 58   4730	6403	3861	4053	5642	3012	6536	4635	3451	4480	*	3421	5656	4058	3502	2862	3873	5456	*	*	58
+       85	4429	6528	3084	181	181	3081	9590	1725	2362	
+
+F 59   3651	5567	3325	4940	2955	5694	3967	3972	6770	4748	5703	4163	*	6689	5717	5292	3602	6928	5281	2328	59
+       308	2381	*	1798	489	975	1026	9687	3489	1222	
+
+P 60   4175	6727	3748	3904	6924	3164	4816	*	5356	4452	5517	3780	2211	5768	4874	3152	4360	5471	*	5521	60
+       190	3106	7083	2437	295	0	*	9722	2424	1023	
+
+N 61   3362	*	2592	3526	5708	2915	5778	5238	4228	4236	*	3600	5574	5464	6727	3871	3817	4719	*	4862	61
+       96	4146	6971	2047	400	0	*	9752	1863	1000	
+
+N 62   3843	6263	3565	*	4876	4983	3531	6845	5627	4417	*	1763	4781	5124	4117	4606	4641	4916	6430	4019	62
+       460	1873	*	957	1044	0	*	9886	5326	1021	
+
+D 63   *	*	188	5690	*	5437	6480	*	*	*	*	4138	*	*	*	*	*	*	*	6408	63
+       0	*	*	*	*	*	*	9887	0	0	
+
+Y 64   3066	6044	6968	*	4112	6935	6853	1660	*	2503	5065	*	*	*	*	5559	*	2793	4710	4146	64
+       0	*	*	*	*	*	*	9887	0	0	
+
+G 65   595	5731	5365	4593	*	3600	*	*	7081	6893	3972	*	6480	5871	*	5382	7280	4936	*	*	65
+       0	*	*	*	*	*	*	9887	0	0	
+
+I 66   5425	*	*	*	4031	*	*	2529	*	1154	5140	*	*	6220	6442	*	7270	2404	4505	*	66
+       0	*	*	*	*	*	*	9887	0	0	
+
+V 67   4433	6515	*	*	4753	6972	6835	1791	*	1469	5836	*	*	*	*	5393	*	2659	6126	5341	67
+       0	*	*	*	*	*	*	9887	0	0	
+
+R 68   5859	*	4934	2291	6685	6899	6408	6978	2169	4186	*	6977	5738	4202	2475	3976	4700	5615	*	4405	68
+       0	*	*	*	*	*	*	9887	0	0	
+
+Y 69   5099	*	*	6835	3989	5718	*	3210	7013	1475	6030	*	3705	*	*	5246	3890	2555	7213	4573	69
+       17	6414	*	0	*	*	*	9887	1061	0	
+
+T 70   3903	5765	2961	3130	6729	4912	*	4900	3667	7145	6515	3576	4046	4651	5034	2857	3663	4148	*	6480	70
+       39	5220	*	2677	245	*	*	9887	1355	0	
+
+N 71   4736	*	3031	3353	*	4505	5926	6071	4033	5095	*	3244	3282	4741	3757	3028	3351	5297	*	6536	71
+       77	5204	5350	336	2265	*	*	9887	1379	0	
+
+T 72   3197	*	4069	3363	*	3224	7007	5973	3497	5561	6703	4054	2519	5461	5839	3276	4116	4717	*	6590	72
+       43	6703	5667	1412	680	1767	502	9858	1204	1393	
+
+T 73   2959	*	4147	5596	4300	4501	*	3783	5198	3620	6693	3817	6131	5289	4119	4432	4779	2430	4910	4692	73
+       56	5547	5918	1057	945	870	1143	9814	1419	1817	
+
+I 74   4446	*	3949	3538	3993	5840	6046	4450	3854	4111	*	3901	3791	4868	5328	3882	2700	3120	*	*	74
+       142	3681	5984	2266	336	553	1652	9837	2348	1608	
+
+P 75   3878	5997	5378	*	2748	4269	7148	3669	5413	3345	5317	7043	4162	4911	5793	4113	4467	2939	4226	4123	75
+       133	4176	4937	1458	653	858	1158	9845	1862	1523	
+
+K 76   4451	*	3727	4449	6822	4462	6762	5768	4879	6939	6916	2208	4288	7089	5171	1999	3286	7059	*	4721	76
+       132	4550	4480	1432	668	1196	828	9773	1683	2161	
+
+D 77   3885	*	2868	4244	5990	4426	5922	5838	4505	4932	6744	3450	2408	5649	6866	2887	3933	5126	*	5478	77
+       264	3143	4207	2887	210	2057	397	9780	2827	2380	
+
+G 78   3884	*	4047	4185	4557	4140	4354	*	4090	4820	5660	2759	5343	4372	3421	4080	3881	5735	*	3396	78
+       127	5742	3932	720	1348	1312	744	9747	1311	2934	
+
+T 79   5434	*	6736	6937	4796	6632	*	1981	5667	3486	4663	6807	4722	4895	5286	4677	3350	2081	6675	5493	79
+       173	4865	3663	1800	489	2186	358	9721	1568	3227	
+
+V 80   3152	*	5169	5802	6202	4080	5567	4228	3067	3074	*	3702	4954	4756	3898	4831	5810	3489	6394	3484	80
+       650	2458	2468	2298	328	2136	372	9692	3693	3879	
+
+G 81   3634	*	6539	4719	3770	4174	6413	4975	4430	4978	*	5408	2486	6142	4776	3057	3083	4473	5273	4092	81
+       101	4544	5353	2515	277	933	1071	9437	1502	5219	
+
+G 82   4308	*	5997	5275	4393	4929	*	2158	6562	2749	6248	5400	3200	6433	5243	5661	3104	3366	*	5192	82
+       141	3566	6889	1235	798	2750	232	9770	2291	3555	
+
+Q 83   3177	4190	4369	4651	6984	2741	6854	3712	4733	3429	5219	5255	3843	6085	4821	4290	4479	3381	*	6828	83
+       54	*	4761	*	*	2000	415	9769	0	3474	
+
+D 84   4159	4784	3538	3829	5632	4834	*	5154	3905	2181	5521	4489	3574	4491	6397	4269	3629	4907	*	6957	84
+       73	5192	5490	743	1313	821	1205	9733	1463	3350	
+
+I 85   4685	*	6457	6978	4865	*	*	2901	*	2466	5117	5476	2147	5327	4723	6024	5560	2354	*	5604	85
+       315	4480	2723	1114	894	1171	847	9821	1535	2384	
+
+T 86   3378	6721	4077	5167	5313	3911	*	6995	3844	3277	*	4762	3844	4151	3943	2814	3336	4532	*	5468	86
+       211	4346	3523	1317	741	1023	977	9658	1634	3955	
+
+S 87   3009	6816	3579	6901	4941	1797	*	5851	4593	3926	*	4003	5051	5158	*	2902	4560	6821	6441	6279	87
+       118	4261	5250	1871	461	654	1456	9641	1985	3545	
+
+A 88   4216	*	3637	4033	5237	4161	5999	4362	4499	4165	5332	5012	3856	4882	5636	3159	3704	3523	4530	4054	88
+       88	4293	6964	1665	547	745	1310	9767	1628	2321	
+
+A 89   3010	*	4238	3405	4859	3585	6951	6603	4015	5244	5338	4064	7022	5847	4948	3066	3545	3350	6595	4364	89
+       142	3531	7111	624	1510	599	1556	9798	2601	1610	
+
+N 90   2988	*	2834	3595	5464	4618	6017	4743	5086	4067	5784	3739	4096	5486	4461	3627	3821	4123	*	5848	90
+       42	6145	6076	2479	285	572	1611	9876	1165	1231	
+
+A 91   2729	*	5323	6833	5627	*	6649	3476	6425	3204	5300	5173	1740	5753	5631	4750	6520	3082	*	5801	91
+       64	4812	7043	557	1643	493	1789	9885	1468	1283	
+
+T 92   3433	5641	5061	3727	6282	5370	4379	6562	2902	3916	6808	4475	3737	3801	4248	3576	4510	3869	6422	5316	92
+       41	5143	*	916	1089	879	1132	9877	1513	1119	
+
+V 93   4101	*	4256	3723	*	5749	4756	3953	4663	2653	*	4841	2669	6213	6418	4958	3702	2720	6871	6908	93
+       60	5763	5489	1387	695	737	1321	9854	1181	1159	
+
+G 94   4258	*	3748	5160	*	713	*	*	4759	*	*	3201	*	4431	6192	5725	6577	*	*	*	94
+       40	5176	*	2399	303	0	*	9878	1357	1421	
+
+M 95   3721	*	3142	2852	*	4452	*	4781	4224	4287	5055	6347	6101	3038	4784	3317	2693	6922	*	7066	95
+       121	4911	4395	1000	1000	*	*	9895	1375	0	
+
+A 96   3494	*	4236	4248	*	6785	5255	4862	4281	3728	4601	4611	3267	4102	3002	5210	3155	3915	6067	5680	96
+       144	3555	6696	1230	802	0	*	9863	2246	1786	
+
+V 97   3739	3950	*	6954	4990	5053	*	2984	*	3097	7077	*	6576	7182	7040	*	5182	1083	*	6001	97
+       97	4176	6661	882	1129	1041	960	9862	1817	1146	
+
+T 98   3508	2129	*	5671	4919	5709	5770	3719	4798	3842	7012	6643	*	4706	3683	3899	3987	4140	5227	3960	98
+       53	5149	6948	3304	154	998	1002	9856	1282	1154	
+
+R 99   3779	*	*	6828	3865	2662	6880	3761	2456	4706	5255	7149	6609	4453	4821	5503	3448	3007	5740	7042	99
+       69	4728	6828	825	1199	677	1417	9861	1480	1261	
+
+R 100  3800	*	5444	6663	4396	*	5779	3493	5717	3764	4940	*	*	7033	4186	2857	4195	2973	2622	3824	100
+       184	3241	6155	1249	788	0	*	9859	2686	1213	
+
+G 101  4899	*	6491	7073	*	194	*	6815	*	*	*	6904	*	6314	6650	7133	5899	6610	*	*	101
+       193	3238	5709	1825	479	606	1544	9883	2752	1323	
+
+S 102  2791	6707	4594	4293	4428	7087	5762	5345	5230	5470	6961	4319	*	4987	2341	3331	4960	4316	4615	3352	102
+       99	4367	5814	1694	533	*	0	9859	1727	1371	
+
+T 103  3951	*	5003	*	5231	4253	5693	4077	4792	5404	5129	4885	3443	4999	3500	3092	2048	4518	*	6642	103
+       91	4425	6116	1793	491	652	1459	9808	1704	1829	
+
+T 104  4555	6712	4792	4418	*	3397	5962	*	5784	5375	*	3947	5417	4621	3956	1780	2524	5161	*	5294	104
+       216	3203	5025	2111	380	1174	845	9843	2737	1494	
+
+G 105  4885	*	3706	3610	6671	1225	*	*	4276	6363	*	4186	4523	5956	4436	5040	4803	4019	5839	*	105
+       474	2250	3844	1802	487	506	1758	9839	4124	1792	
+
+T 106  4723	*	6535	3985	3767	4386	4375	4194	5356	2672	*	4552	4288	4394	3515	5681	4873	3354	5837	3555	106
+       121	3791	6944	1065	938	679	1413	9702	2337	2517	
+
+H 107  5439	*	5121	4884	5288	5348	4003	4822	4754	3479	6800	4380	5682	3636	3917	2854	2256	3861	*	*	107
+       104	4031	6956	813	1215	907	1099	9829	2009	1661	
+
+S 108  4113	2235	5309	3883	6226	6520	7128	5737	5855	4857	6878	4104	3143	4745	4985	2655	3751	6599	*	4549	108
+       83	4881	5504	770	1274	750	1303	9848	1371	1385	
+
+G 109  4425	7034	3944	5555	5936	946	5718	*	5226	4941	7124	6639	*	5286	6504	3385	5398	4205	*	5776	109
+       122	3626	*	1306	747	267	2567	9813	2197	1616	
+
+S 110  4492	5719	4686	3980	6117	5526	5939	3559	3420	7022	*	4489	5457	4535	3127	3534	2759	3797	7020	4123	110
+       51	4856	*	566	1625	*	0	9890	1500	1000	
+
+V 111  7152	*	*	*	5152	5521	*	1907	5732	1897	5395	6676	5243	6873	6734	*	5665	1950	*	4943	111
+       44	5481	6980	0	*	*	0	9890	1292	1000	
+
+T 112  4089	5401	5737	5430	7005	4328	7053	4224	3207	3613	7039	4991	*	3041	3420	3412	3061	3794	7139	5643	112
+       28	5719	*	1056	946	*	0	9881	1224	1172	
+
+A 113  3452	7053	4268	3797	7159	3574	4669	5310	3719	5564	4974	4346	7059	4973	4385	2443	3442	4539	6448	5255	113
+       36	5749	7335	0	*	*	0	9881	1141	1172	
+
+L 114  3128	6274	*	6835	*	7039	7052	2767	4443	2859	4243	6161	5419	5933	4527	4963	2906	2523	6624	5748	114
+       68	6878	4747	2585	263	*	0	9887	1000	1360	
+
+N 115  3570	*	2360	3383	5512	3186	5727	6241	4613	6255	*	2908	5999	5141	5398	3596	4602	4757	7022	4725	115
+       83	*	4155	*	*	3052	185	9858	0	2053	
+
+A 116  2957	6521	6961	4393	5204	4387	6376	4430	4041	3055	7066	5972	4039	4521	3999	4561	4061	2661	*	4660	116
+       113	4645	4833	2338	318	3077	182	9804	1708	2977	
+
+T 117  4704	5376	4082	4179	6782	5256	4373	6812	3777	5036	5199	4546	3782	4236	3818	3230	2655	3799	6337	6480	117
+       357	2720	3887	641	1478	2604	259	9778	3263	3297	
+
+V 118  3796	6298	*	5099	4634	*	5459	2758	4647	2803	4356	6238	4626	*	6443	4241	3611	2308	*	4595	118
+       895	1240	4687	1224	806	2180	360	9691	5761	3794	
+
+N 119  4996	4692	3632	6910	5278	3623	4516	5689	5494	4376	6482	2922	5121	4528	4761	2562	3109	4735	6530	6070	119
+       231	3956	3584	1730	518	2045	400	9769	1905	3673	
+
+Y 120  5210	6930	5320	7293	4418	3716	4625	5117	4821	4071	6333	3758	4121	6319	4221	6785	4330	5604	4105	1742	120
+       77	5222	5305	1788	493	3480	135	9665	1376	4103	
+
+G 121  3408	*	3907	3870	5354	2644	4659	6780	4615	4832	5658	3981	3270	4734	4118	3269	4567	7130	6458	6028	121
+       362	2752	3767	887	1122	1558	599	9682	3145	4186	
+
+G 122  5783	5774	2961	2792	5187	3604	4632	*	3913	5936	6405	3313	4758	3517	6645	3220	3964	4649	*	*	122
+       523	2044	4026	611	1534	1173	845	9716	4101	4151	
+
+G 123  3760	3560	4758	4634	6903	1770	*	4161	4021	3588	*	5156	5701	3744	4064	5557	5866	5455	7148	6374	123
+       271	3384	3729	1126	884	2567	267	9626	2361	3794	
+
+D 124  4499	*	2858	3354	5926	5151	5103	4009	4489	5030	*	3662	4864	3411	3839	4797	3637	3450	*	5375	124
+       358	3319	3067	1455	654	1879	458	9631	2870	4283	
+
+V 125  3213	4554	5001	4267	4427	3947	6707	5132	4670	4004	4154	5374	4868	4448	4196	3784	4237	3642	6702	3553	125
+       94	3989	*	1263	778	993	1007	9551	2170	4906	
+
+V 126  3587	5709	6997	*	2664	*	4468	3195	4151	2880	5095	*	6787	6764	5419	4719	4289	3317	4925	3436	126
+       696	1793	3409	678	1415	1008	992	9707	5136	3261	
+
+Y 127  4266	4526	3814	4849	5910	4374	6889	6264	3174	4860	6493	3744	4629	4154	3446	3387	3630	4233	*	3973	127
+       67	4830	6600	1651	553	1342	723	9580	1470	3806	
+
+G 128  5953	*	3071	4322	5131	2378	5838	5429	5228	4052	6886	3329	4095	4521	4380	3483	3648	5649	*	5711	128
+       165	3516	5607	1183	837	683	1407	9722	2306	2886	
+
+M 129  5506	*	6939	3996	3452	5796	5601	3119	5287	3055	4465	5486	5068	2608	5660	4375	4642	3373	7220	4522	129
+       177	3372	5715	2142	371	2336	318	9855	2443	2208	
+
+I 130  4777	*	4871	*	4089	4813	6535	2281	4296	2466	4856	6561	*	*	6939	4463	3324	3146	7085	3884	130
+       88	4073	*	1079	925	1659	550	9829	1941	2413	
+
+R 131  5003	3988	3997	3219	7026	4570	*	4476	4275	4853	5707	4504	4108	3533	4343	3793	3898	3449	4961	4835	131
+       155	3950	4749	1279	766	375	2127	9856	2088	1942	
+
+T 132  3281	6909	4387	4808	5401	3098	5895	4442	4536	5712	5698	4674	6619	5895	4707	3873	2034	3736	5577	7001	132
+       113	4045	6066	2020	408	1198	826	9867	1959	1826	
+
+N 133  4094	*	2730	4859	5938	3220	3988	6300	5462	4928	3726	3598	6484	4173	4556	3411	3351	5726	7001	6023	133
+       137	3467	*	1178	841	346	2228	9865	2400	1688	
+
+V 134  2928	5735	5476	4668	3983	4033	5418	3200	4413	2831	4288	4126	5139	4482	*	5983	4965	3519	*	5193	134
+       62	4579	*	1944	434	0	*	9888	1682	1159	
+
+C 135  4658	1675	4074	6224	4224	5423	5124	5013	5153	5362	4399	4225	3767	5098	5665	4067	5124	4125	*	5902	135
+       109	3786	*	1991	418	*	*	9895	2157	0	
+
+A 136  2201	5238	5457	4935	*	4101	*	3684	*	4117	4995	7054	4705	6905	*	2427	3226	3280	5983	6682	136
+       158	3995	4611	1401	687	*	*	9895	1851	0	
+
+E 137  3948	3705	3264	3381	7019	2825	5885	4815	3987	5036	*	4849	6848	3613	4813	4570	4316	3805	7003	4998	137
+       452	1895	*	3084	181	311	2366	9856	4805	1564	
+
+P 138  5080	*	4930	4596	*	2499	5013	*	4403	4594	6458	4249	2070	3940	4055	3422	5218	*	*	4260	138
+       0	*	*	0	*	0	*	9893	1000	1105	
+
+G 139  6111	6619	5753	4589	*	300	5715	*	*	6190	*	6410	*	*	5540	*	6655	5778	*	6838	139
+       11	*	7066	*	*	*	*	9895	0	0	
+
+D 140  5591	6285	323	5614	*	6879	6877	*	*	*	6119	4761	*	5720	*	5252	6643	5921	*	7259	140
+       0	*	*	*	*	*	0	9881	0	1000	
+
+S 141  4345	*	*	6565	*	5738	*	5599	5485	5949	*	6324	*	*	6638	397	3829	6646	*	*	141
+       0	*	*	*	*	*	0	9868	0	1000	
+
+G 142  5718	*	*	*	*	83	*	*	*	*	*	*	*	6408	*	5303	*	*	*	*	142
+       18	6324	*	1265	776	0	*	9868	1219	1000	
+
+G 143  2459	6485	5874	*	*	996	*	*	*	6335	*	*	*	*	*	1986	5400	*	*	*	143
+       11	*	7053	*	*	*	*	9883	0	0	
+
+P 144  3637	*	*	*	5393	5198	*	4544	*	4603	*	*	567	*	*	4738	*	3796	*	*	144
+       0	*	*	*	*	*	0	9868	0	1000	
+
+L 145  4520	7050	*	*	5550	6874	6810	3446	*	1703	5238	6201	*	*	*	6421	6837	1410	4569	4965	145
+       22	6019	*	2585	263	*	0	9868	1095	1000	
+
+Y 146  6773	*	*	*	2427	6586	6471	2844	*	2749	4557	*	*	*	*	*	6399	1835	4489	3109	146
+       104	4100	6473	1919	443	1425	672	9866	2211	1250	
+
+S 147  4527	3363	2376	*	5423	5768	4940	4844	6003	4478	5790	2887	*	4381	4218	3613	4036	4289	*	4366	147
+       231	2839	6984	1959	429	774	1268	9858	3053	1281	
+
+G 148  3831	*	2969	3472	6586	3351	5877	6525	3734	6891	6173	3394	3747	3846	4844	3558	4513	4826	6867	4977	148
+       193	3001	*	1189	833	876	1136	9831	3263	1175	
+
+T 149  6900	*	2706	4317	5691	2454	6807	6855	3994	5312	*	2312	6458	3917	3633	4311	4460	5857	6936	*	149
+       1113	895	*	436	1939	*	0	9853	7413	1000	
+
+R 150  4814	6955	5860	3289	*	4793	5355	4742	2850	5897	5877	3220	5265	3392	3624	5114	3698	4025	5184	4013	150
+       77	4273	*	1595	580	0	*	9853	1897	1000	
+
+A 151  2906	6054	6503	5272	4568	6459	5709	2596	6708	1753	*	6745	4383	5187	*	*	6505	2593	*	6803	151
+       44	5067	*	1042	960	*	*	9867	1317	0	
+
+I 152  3558	*	6378	5330	*	6503	*	2302	*	3648	*	5607	*	4987	4947	5829	5294	1200	*	5519	152
+       54	5089	7112	1953	431	*	*	9867	1299	0	
+
+G 153  3344	*	6509	*	6481	245	*	*	*	*	*	*	*	*	*	6809	*	6296	*	6180	153
+       12	*	6956	*	*	*	0	9851	0	1000	
+
+L 154  *	*	*	*	6472	*	*	1605	*	1716	4942	6393	*	*	*	6506	5204	1873	*	*	154
+       14	*	6706	0	*	1059	944	9834	1000	1157	
+
+T 155  4212	5588	*	6800	5052	6024	3498	2935	*	2249	4460	4259	*	5186	*	4552	3931	2528	6845	5289	155
+       12	6948	*	0	*	0	*	9839	1000	1154	
+
+S 156  4423	6552	5084	6636	3785	4026	5380	5289	4858	5473	5296	4951	6408	5859	*	1427	4484	3662	5095	4287	156
+       53	5699	5883	0	*	*	*	9843	1183	0	
+
+G 157  2558	*	7222	6949	3305	1800	6864	7035	5359	*	6400	*	6358	5910	4380	3606	5896	7050	3113	3721	157
+       132	4940	4194	1266	775	1239	795	9827	1408	1173	
+
+G 158  3736	*	5532	5808	7042	1217	6829	4338	5156	5839	5687	5098	5449	*	4950	3448	4203	3929	6984	5590	158
+       97	4215	6519	985	1015	2901	207	9692	2199	1958	
+
+S 159  3585	*	3164	3914	4738	3510	5028	5327	5104	4755	6295	3909	3913	5087	5605	3387	3821	3865	6207	4394	159
+       297	3310	3549	1039	962	1016	984	9676	2686	1963	
+
+G 160  3924	*	3259	4997	*	2785	5621	*	3907	5684	5576	3758	3835	5223	3119	3487	3968	4633	*	4423	160
+       228	4287	3397	1149	865	1206	820	9643	1740	2661	
+
+N 161  4535	3878	2776	3707	6602	3158	*	4824	4384	5593	5609	3140	4354	4022	6114	3851	3894	4840	*	6674	161
+       115	5595	4158	1683	538	648	1467	9534	1362	3108	
+
+C 162  3743	1407	4224	5760	5585	3363	6608	5623	*	*	*	4310	5480	6523	6191	3635	3549	6660	5638	4857	162
+       582	4488	1800	1778	497	3186	168	9660	1575	2506	
+
+S 163  3691	*	3662	4625	*	2269	5856	5117	6276	5071	5997	3756	5180	4384	3406	2994	3895	4791	*	5756	163
+       337	3373	3159	1619	568	2352	315	9089	1791	5450	
+
+S 164  3536	*	6151	3944	*	3874	5873	4102	3415	4178	4031	6127	3179	*	3765	2630	4040	5086	*	5011	164
+       322	2925	3872	603	1549	2588	262	8833	1977	5455	
+
+G 165  3953	*	3397	4008	5935	1674	*	*	3910	5994	5860	4407	4789	4449	3301	5063	4998	5878	*	4629	165
+       185	3052	*	1710	526	729	1334	8885	2370	5260	
+
+G 166  4349	*	4083	5554	4896	2288	4681	6431	3798	6316	*	3889	4222	5319	3646	3707	4935	4829	*	2978	166
+       73	4343	*	1923	442	3828	105	9401	1541	2923	
+
+T 167  3633	*	6199	5386	4313	5032	*	4379	5008	4874	6688	6089	1735	*	3986	3990	3136	3509	5500	6222	167
+       37	5289	*	652	1460	0	*	9406	1189	2792	
+
+T 168  2531	*	3730	5682	6609	2646	*	5363	*	4760	*	3561	6517	6866	*	2155	2920	4642	*	*	168
+       14	*	6714	*	*	*	*	9592	0	0	
+
+F 169  4201	*	*	*	2620	3994	*	3066	6380	3294	6605	*	6031	5686	6519	4833	4274	2478	6377	2711	169
+       14	6712	*	1585	585	0	*	9585	1000	1000	
+
+F 170  2807	6258	*	*	1782	4132	5684	4353	*	3913	5559	6716	*	*	*	*	*	5705	*	1682	170
+       16	6467	*	2807	222	*	*	9592	1000	0	
+
+Q 171  3225	5399	*	4843	6641	6670	*	4132	*	3590	3647	4227	*	4368	*	3515	1927	2910	*	6734	171
+       0	*	*	*	*	*	*	9592	0	0	
+
+P 172  5625	*	3680	6765	6071	4594	4876	*	3450	5539	*	4129	1400	*	2734	3442	6527	*	*	*	172
+       16	*	6501	*	*	*	*	9592	0	0	
+
+V 173  3728	*	*	*	4280	5865	*	1510	*	2760	5001	6087	5288	*	*	6714	4473	2113	*	*	173
+       0	*	*	*	*	*	0	9554	0	1019	
+
+T 174  3321	*	5364	4856	4569	3818	6166	6313	4871	5198	5574	3660	4165	4971	5274	2049	3312	4569	*	4571	174
+       22	6032	*	1000	1000	*	0	9493	1012	1019	
+
+E 175  3300	*	3761	3989	5597	4844	5284	6546	4744	5214	*	5533	3680	4418	3220	3443	3292	5259	6541	3046	175
+       38	5258	*	2536	273	0	*	9464	1185	1019	
+
+A 176  3239	*	5978	*	3445	*	4934	2626	*	3302	5637	6283	6439	5604	6108	4757	4643	2389	*	2807	176
+       49	*	4891	*	*	*	*	9266	0	0	
+
+L 177  5170	*	*	5822	4567	*	4902	4242	5222	1429	3358	4456	6139	4479	3874	4808	4545	3661	*	*	177
+       0	*	*	*	*	0	*	9069	0	1320	
+
+V 178  2844	*	2553	3212	*	4614	5034	*	3724	5907	*	3990	*	5914	2763	2994	4810	5026	*	*	178
+       0	*	*	*	*	*	*	8657	0	0	
+
+A 179  2267	*	2778	3004	*	*	4752	*	4047	3899	4901	5630	*	4157	4548	3292	5586	4618	4604	*	179
+       33	5472	*	1000	1000	*	*	8300	1000	0	
+
+Y 180  5694	*	*	*	2706	5692	*	4636	*	970	3986	*	*	5318	5617	*	*	5754	3435	4719	180
+       0	*	*	*	*	*	*	8098	0	0	
+
+G 181  *	*	1889	3796	4485	1776	4150	*	4223	*	*	2890	*	*	5291	*	5310	5269	*	*	181
+       0	*	*	*	*	*	*	7478	0	0	
+
+V 182  3894	4909	*	*	3730	*	*	2787	*	2019	*	*	*	*	*	4784	4868	1620	4771	*	182
+       0	*	*	*	*	*	*	7042	0	0	
+
+S 183  *	*	*	2053	*	*	*	*	3794	*	*	*	*	3576	3163	2223	2092	*	*	4550	183
+       0	*	*	*	*	*	*	6821	0	0	
+
+V 184  *	*	*	*	*	*	*	1995	*	1153	*	*	3425	*	4477	4566	*	3067	*	*	184
+       0	*	*	*	*	*	*	6559	0	0	
+
+Y 185  *	*	*	*	3552	*	*	3603	*	1792	*	*	*	*	*	*	*	3338	*	1169	185
+       0	*	*	0	*	*	*	4701	0	0	
+
+//
+�HHsearch 1.5
+NAME  3dddac6f1a46a0d944548b4f8648c5d1
+FAM   
+FILE  3dddac6f1a46a0d944548b4f8648c5d1
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:39:16 2013
+LENG  107 match states, 107 columns in multiple alignment
+FILT  107 out of 267 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  6.0 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCCCCCCCCCCHHHHCCCCHHHCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCHHHHHHHHHCCCCCCCHHHHHHHHHHCCCCCCCCCCC
+CCCCCCC
+>ss_conf PSIPRED confidence values
+9989887655578779845785886568353345878887774533255456565566766101999975541467603657767765321347898756
+6888869
+>Consensus
+xxxxpxxxxxxxxxxxxVxFxHxxHxxxxCxxCHHxxxxxxxxxxCxxxxCHxxxxxxxxxxxxxxxAxHxkxxxxxxCxgCHxxxxxxxxxxxxgpxxC
+xxxxCHx
+>3dddac6f1a46a0d944548b4f8648c5d1
+APKAPADGLKMEATKQPVVLNHSTHKSVKCGDCHHPVNGKEDYRKCGTAGCHDSMDKKDKSAKGYYHVMHDKNTKFKSCVGCHVEVAGADAAKKKDLTGC
+KKSKCHE
+>gi|258404546|ref|YP_003197288.1| cytochrome c class III [Desulfohalobium retbaense DSM 5692]gi|257796773|gb|ACV67710.1| cytochrome c class III [Desulfohalobium retbaense DSM 5692]
+AQMPPSNityeAPEIMPRLGPSHFSHDSHYAHDCMTCHHMWDGFSEIKSCSAEGCHDQRGT--MkmEGSTIYYAFHKKSSQAS-CLGCHMQL--KKAGEP
+TGPIGC--TTCHE
+>gi|224371554|ref|YP_002605718.1| TmcA2 [Desulfobacterium autotrophicum HRM2]gi|223694271|gb|ACN17554.1| TmcA2 [Desulfobacterium autotrophicum HRM2]
+------------RQRSAVFFPHGLHMDnLECLDCHHVY-EGGkNlqdedelyednpDIRCQ--DCHNTDAS-----IDTTKAFHH-----Q-CMGCHIKS
+--TKEQaKIKTPEMC--GDCHT
+>gi|95929129|ref|ZP_01311874.1| conserved hypothetical protein [Desulfuromonas acetoxidans DSM 684]gi|95135030|gb|EAT16684.1| conserved hypothetical protein [Desulfuromonas acetoxidans DSM 684]
+----KGKSLTFAgSSMGAVTFDGTLHNNAaeKgCRDCHNP-----DVF-----------PKM-KQgtvK----ITMAQIYAGKQ-CGICHDG---GR---
+AFAAKgHC--AKCHK
+>gi|224371107|ref|YP_002605271.1| hypothetical protein HRM2_40490 [Desulfobacterium autotrophicum HRM2]gi|223693824|gb|ACN17107.1| conserved hypothetical protein [Desulfobacterium autotrophicum HRM2]
+-------------KKGIVQFTHQKHVadyKIGCGECHHGDDGSpladmkagDDAVGCA--ECHAEPGTApkskDKKLSdSEKLEYHAEALHEN-CITCHK
+AYNKEN-NTKDAPASC--AKCHP
+>gi|220918631|ref|YP_002493935.1| hypothetical protein A2cp1_3539 [Anaeromyxobacter dehalogenans 2CP-1]gi|219956485|gb|ACL66869.1| conserved hypothetical protein [Anaeromyxobacter dehalogenans 2CP-1]
+------------AEQPAVEFTHEAHimAEVACLDCHSGIDKATRLepkrhvsVSCS--DCHDDARGQVKvperVKqvrFTFSHQDHLAKV-KD-CKTCHQ
+ALPEpGDKEIKaPPMAAC--TSCHN
+>gi|320449434|ref|YP_004201530.1| chaperone protein HtpG [Thermus scotoductus SA-01]gi|320149603|gb|ADW20981.1| chaperone protein HtpG [Thermus scotoductus SA-01]
+-------------VEQPVPFSHAFHAGglgLSCRYCHSSVERAayaglPPTEACM--TCHTFIKPDSpnlalvrrswetgeplrwnrvinlPDFVYFNHG
+AHV-AKGVG-CAECHGRVDqmaVVRQPQAFTMKFC--LDCH-
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+A 1    428	*	3374	*	*	2644	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1
+       148	3356	*	2585	263	*	*	3302	1025	0	
+
+P 2    4052	*	*	*	*	*	*	*	*	*	2873	*	2070	1760	*	*	*	2279	*	3975	2
+       85	*	4127	*	*	*	*	3833	0	0	
+
+K 3    3257	*	3056	1648	*	*	*	*	2511	*	3983	4338	*	*	*	*	3322	3882	*	*	3
+       0	*	*	*	*	*	0	4013	0	1009	
+
+A 4    1050	*	*	*	*	*	*	4071	*	*	*	4080	4139	3243	*	*	*	2083	*	*	4
+       0	*	*	*	*	*	0	4191	0	1009	
+
+P 5    4904	*	3740	*	*	4044	*	3448	3794	*	*	*	583	*	*	*	*	*	*	*	5
+       0	*	*	1585	585	0	*	4660	1009	1009	
+
+A 6    2605	4673	2678	3844	*	2680	4798	5497	3860	*	*	4224	4862	3230	*	3716	5871	*	*	*	6
+       0	*	*	*	*	*	*	4967	0	0	
+
+D 7    3401	*	1681	3776	*	4449	*	*	1831	4798	*	3950	*	*	4918	4941	5189	*	*	*	7
+       443	2112	4918	2138	372	*	*	4967	1486	0	
+
+G 8    4043	*	4878	5231	*	3198	*	*	3304	*	*	5206	1523	*	4820	4395	3551	2999	*	*	8
+       0	*	*	*	*	0	*	5513	0	1009	
+
+L 9    3176	*	5274	4063	*	*	*	2656	5908	2347	4242	3619	3823	*	5683	5823	5267	3557	5308	4220	9
+       0	*	*	*	*	*	*	5602	0	0	
+
+K 10   5335	*	4598	1460	*	3674	*	6102	3487	5277	*	*	3082	*	5547	5726	2691	4345	*	*	10
+       161	3527	5726	1198	826	*	*	5623	1213	0	
+
+M 11   4527	*	5845	4373	2593	*	*	2851	4085	2690	2317	5537	5705	*	*	*	5620	4466	5955	4333	11
+       113	5086	4436	440	1928	814	1213	5240	1116	1066	
+
+E 12   3800	*	3295	2219	*	3648	4917	*	2186	*	5002	3284	3910	6027	*	5945	4413	*	*	*	12
+       320	2329	*	1519	619	*	0	5179	1706	1149	
+
+A 13   2393	6836	5884	4179	*	2597	6751	*	4252	6357	6195	2508	4447	5124	4625	3342	4380	5181	*	6540	13
+       61	*	4584	*	*	446	1910	6151	0	1149	
+
+T 14   4517	*	*	4008	*	5123	*	*	2017	3443	6583	6302	4139	4183	4241	3573	2449	5147	4890	6711	14
+       99	4372	5797	979	1021	698	1383	6323	1231	1216	
+
+K 15   5584	*	4937	5050	4378	3817	5820	4698	2442	3923	2744	4859	5707	3948	3573	5172	7045	5483	*	3613	15
+       0	*	*	2000	415	840	1181	6463	1042	1232	
+
+Q 16   3296	*	5087	5146	*	1540	*	*	3218	5033	4849	6509	2786	3717	*	4736	4583	*	*	6303	16
+       0	*	*	*	*	*	0	6516	0	1066	
+
+P 17   3388	*	3983	4456	6264	6384	*	4377	2886	6080	*	4713	1427	5126	5397	5585	3832	6955	*	6509	17
+       17	*	6417	*	*	0	*	6516	0	1066	
+
+V 18   3923	*	6618	*	5241	*	*	4796	5724	5010	*	*	6182	*	*	4971	*	385	*	*	18
+       0	*	*	0	*	0	*	6508	1018	1018	
+
+V 19   3331	*	4633	3215	6744	*	6304	4442	4367	5003	3957	4318	3952	4522	4099	4032	2951	2906	*	*	19
+       0	*	*	*	*	*	*	6530	0	0	
+
+L 20   *	*	*	*	119	*	*	*	*	5240	6370	*	*	*	*	*	*	*	5092	6477	20
+       0	*	*	*	*	*	*	6530	0	0	
+
+N 21   6045	*	1911	6017	*	5151	7014	*	*	*	6760	2507	2615	*	*	2305	3098	*	*	*	21
+       21	6127	*	1585	585	*	*	6530	1014	0	
+
+H 22   *	*	*	*	5746	4753	83	*	*	*	*	*	*	*	*	*	*	*	*	*	22
+       10	*	7144	*	*	*	*	6530	0	0	
+
+S 23   2806	*	2949	4196	5795	4147	*	6263	2219	4471	*	6895	*	3397	4948	3253	5258	5940	*	4553	23
+       0	*	*	*	*	*	0	6531	0	1000	
+
+T 24   2222	*	3845	4349	5970	6407	7392	5060	2539	3283	5421	7050	6638	4884	4466	3703	3637	4282	*	*	24
+       0	*	*	*	*	*	0	6531	0	1000	
+
+H 25   *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	25
+       148	3555	6310	1173	846	*	0	6531	1524	1000	
+
+K 26   1833	*	5736	2814	5094	4442	7431	5282	4069	5841	4203	4440	*	3590	4470	4280	4394	4881	*	6261	26
+       120	3652	*	1322	737	2048	399	6526	1577	1093	
+
+S 27   2867	*	3196	2707	*	2633	*	6166	3153	*	7624	4027	6437	4207	5009	3504	4015	*	*	*	27
+       478	1825	*	1703	529	0	*	6528	2712	1055	
+
+V 28   3446	*	*	5370	4337	6574	6304	2980	3461	3282	4678	6040	*	*	6534	6841	4462	2043	*	2952	28
+       769	1275	*	947	1055	*	*	6530	3530	0	
+
+K 29   3420	*	1562	2595	*	6493	*	*	3747	6486	*	4299	6606	6935	5099	2873	3823	*	*	*	29
+       29	5650	*	0	*	667	1434	6520	1125	1054	
+
+C 30   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	30
+       0	*	*	*	*	*	0	6531	0	1000	
+
+G 31   3526	*	4807	4411	5179	3163	*	6718	3634	3786	4913	4435	*	4123	3270	3510	3067	3624	*	*	31
+       0	*	*	2000	415	0	*	6531	1000	1000	
+
+D 32   3936	*	2197	3665	6476	5981	*	6460	4391	4255	6411	7394	*	3967	7766	3445	2146	3652	*	5988	32
+       0	*	*	*	*	*	*	6530	0	0	
+
+C 33   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	33
+       10	*	7144	*	*	*	*	6530	0	0	
+
+H 34   *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	34
+       34	*	5438	0	*	0	*	6531	1000	1000	
+
+H 35   4230	*	4917	5228	*	6821	392	*	5365	*	*	5658	*	*	*	4672	4925	*	*	*	35
+       58	4661	*	1111	897	1484	638	6498	1183	1139	
+
+P 36   4723	*	3089	3734	6088	2826	4249	5715	3010	5185	3750	4966	5091	5486	5675	4774	3202	4095	*	6744	36
+       309	5144	2605	939	1064	0	*	6516	1180	1066	
+
+V 37   3804	*	4357	3922	4442	3218	*	4680	3594	4423	6133	4579	5879	6758	4972	4863	3709	3645	4014	3002	37
+       54	6941	5118	4524	64	3835	105	6388	1000	2175	
+
+N 38   4467	*	1624	2580	*	5159	*	6651	3770	6075	*	5224	2896	6163	*	5299	3364	6098	*	5330	38
+       160	3251	*	1580	588	3583	126	6040	1574	2248	
+
+G 39   3924	*	3143	2412	*	1914	*	4000	4919	5056	5464	6176	3655	5528	5498	4580	5957	5349	*	*	39
+       252	3991	3356	3278	157	*	0	6061	1279	2146	
+
+K 40   3564	6094	3288	2830	6019	2440	*	*	2195	5689	*	6218	4575	6094	5069	4134	4328	*	*	6190	40
+       595	1965	3608	2412	300	1951	432	6196	2160	2686	
+
+E 41   3933	*	3340	2933	*	2065	*	*	5194	*	5439	4796	3093	4650	7542	3309	3652	6803	6014	6358	41
+       37	5304	*	1044	958	285	2480	5966	1249	2637	
+
+D 42   4705	*	3007	2356	*	4483	*	4999	3486	5048	*	4777	3734	5565	4038	2996	3278	5349	*	*	42
+       59	4653	*	3093	180	1285	762	6489	1270	1264	
+
+Y 43   6469	*	4868	4878	3068	4528	*	2285	5669	4170	5818	5740	2884	*	*	5403	4106	2925	*	3438	43
+       85	4705	5749	2657	249	2157	366	6505	1182	1275	
+
+R 44   3180	*	4659	4038	5093	5348	*	4522	3220	4468	5430	4770	5961	2194	5081	*	3849	2893	*	6475	44
+       160	5326	3643	0	*	3076	182	6495	1092	1319	
+
+K 45   3028	*	5620	6877	*	3047	6221	6730	2123	5524	6753	5116	3668	7009	5563	1794	5685	*	*	*	45
+       127	5207	4126	1000	1000	3663	119	6328	1107	1862	
+
+C 46   6228	137	*	*	*	*	*	*	*	4642	5695	*	*	*	*	*	*	*	*	5806	46
+       88	5541	4723	0	*	*	0	6246	1075	2162	
+
+G 47   2225	*	6410	5600	*	3078	*	6119	3346	*	3723	5325	*	6524	4291	2430	3306	5016	*	4562	47
+       1722	*	521	1585	585	4238	79	6212	1016	2389	
+
+T 48   2310	3222	*	4461	*	*	*	*	*	*	*	4451	*	*	*	1897	1593	*	*	*	48
+       0	*	*	1000	1000	*	0	4381	1010	5004	
+
+A 49   1967	*	4391	1630	*	*	*	*	3615	*	*	*	*	4477	*	2318	4425	*	*	*	49
+       124	*	3601	0	*	430	1956	4381	1042	5004	
+
+G 50   3939	*	2845	2618	*	1967	*	*	6245	*	*	4192	4455	5149	7460	3655	3352	6952	*	4502	50
+       0	*	*	*	*	4314	74	6179	0	2353	
+
+C 51   *	45	*	*	*	*	*	*	*	*	*	*	*	*	*	5017	*	*	*	*	51
+       0	*	*	*	*	*	0	6185	0	2287	
+
+H 52   *	*	*	*	5017	*	45	*	*	*	*	*	*	*	*	*	*	*	*	*	52
+       213	3467	4425	717	1352	*	0	6185	1488	2287	
+
+D 53   4569	*	1551	4613	*	3964	*	6095	5398	6399	6560	3718	4874	6902	4828	3779	2332	5272	*	*	53
+       61	5913	5335	1000	1000	4764	54	6161	1022	2493	
+
+S 54   3452	*	3384	3638	4391	4680	6439	4237	3572	4089	5119	4406	4291	4885	5753	3717	3130	3864	*	*	54
+       66	*	4474	1820	480	1498	631	6138	1101	2552	
+
+M 55   3125	*	4487	4500	4454	5479	*	4520	2549	3087	5199	5601	3292	6666	5111	3675	2950	*	*	*	55
+       128	6139	3827	1000	1000	1505	627	6191	1000	2215	
+
+D 56   3072	*	3076	3972	*	2249	*	6051	2920	*	4908	*	3687	6422	4647	3828	3785	4809	*	*	56
+       146	6051	3623	0	*	4650	59	6298	1006	2204	
+
+K 57   3358	*	3751	3666	4223	3947	*	5006	1917	*	*	6405	3487	6039	5257	4364	3713	4241	*	6050	57
+       473	4270	2136	2640	252	3973	95	6284	1155	2511	
+
+K 58   2571	*	3092	3291	*	6221	5698	5736	1993	*	4047	5649	4906	4710	3602	6323	3992	*	*	*	58
+       626	2484	2528	1274	770	1794	491	6007	1595	3417	
+
+D 59   5176	*	2059	3071	6062	4668	6030	4906	2839	*	5976	4421	3959	6254	3118	5363	3826	5592	*	*	59
+       190	3020	*	3024	189	975	1025	5999	1486	3412	
+
+K 60   *	*	*	4295	*	2034	*	6454	1923	*	5293	4440	3555	3765	4794	3542	4092	5711	*	*	60
+       167	3190	*	1443	662	2377	309	6294	1471	2305	
+
+S 61   4233	*	2320	3585	*	3306	5630	4821	2827	6137	*	3926	4477	5362	*	3329	3965	4673	*	6194	61
+       170	3635	5029	2026	406	*	0	6364	1459	2058	
+
+A 62   3585	6604	4288	2529	3754	5450	*	3863	3427	3577	*	5038	3651	5553	4172	6962	3939	4764	*	4556	62
+       152	5969	3575	3866	102	2333	319	6310	1095	2190	
+
+K 63   5066	*	4026	4379	4499	6269	5054	3546	3773	3241	4322	4563	2934	*	5335	3189	4200	3367	*	*	63
+       55	4743	*	0	*	4759	54	6133	1108	2452	
+
+G 64   4376	*	4446	5545	*	2665	6762	6048	3826	6062	6087	4585	4624	4497	5690	1942	3405	6331	*	3485	64
+       0	*	*	*	*	3102	179	6116	0	2491	
+
+Y 65   6708	6374	5054	6173	2301	*	*	4382	4191	1630	5326	*	6618	4946	5633	*	4797	5033	5980	2881	65
+       21	*	6130	*	*	4792	53	6184	0	2325	
+
+Y 66   4457	*	6425	4020	2904	6197	*	4089	2822	*	4479	4924	5026	6423	4480	4072	6483	5157	*	1888	66
+       106	3821	*	0	*	825	1199	6170	1248	2338	
+
+H 67   4204	*	3377	4099	6306	4737	3817	4507	2139	5573	4291	3270	6303	4612	3574	5611	5700	5574	*	5319	67
+       0	*	*	*	*	*	0	6387	0	1574	
+
+V 68   697	*	5738	4335	6127	5834	*	*	5669	5554	*	*	*	5164	*	4960	3749	3218	*	*	68
+       56	4725	*	2322	322	2128	375	6387	1123	1574	
+
+M 69   3700	*	6200	6389	2164	6613	5940	5284	6169	3180	2531	6566	*	6212	*	*	*	3634	4124	2616	69
+       0	*	*	*	*	1779	497	6491	0	1431	
+
+H 70   4462	*	*	6395	*	*	264	*	5005	*	6240	4955	*	7310	6526	5930	*	*	*	*	70
+       0	*	*	*	*	0	*	6507	0	1289	
+
+D 71   2830	*	2726	6220	*	3694	5243	7000	3304	3758	4541	3917	*	3607	4266	4084	4094	4966	*	6020	71
+       1101	3624	1144	0	*	*	*	6542	1435	0	
+
+K 72   5337	*	*	3816	5703	4433	5028	4942	1218	3961	4448	*	4725	5370	3500	*	4839	4314	*	*	72
+       170	3758	4755	1232	800	2653	250	5814	1340	3535	
+
+N 73   3113	*	2503	3489	*	4573	*	*	2605	*	*	2960	5603	3298	5527	4129	4671	6172	*	5063	73
+       51	4849	*	2316	323	3772	110	5968	1053	3374	
+
+T 74   2417	*	5098	6344	*	4152	*	*	4362	3954	5896	4118	5407	6384	*	1993	2839	3651	5542	*	74
+       129	*	3543	*	*	3226	163	6000	0	3220	
+
+K 75   2921	5173	3005	2848	5408	2572	4791	5610	3531	6274	3801	*	3851	5476	*	*	5705	*	*	4429	75
+       73	5477	5224	1729	518	1927	440	5880	1245	3280	
+
+F 76   2775	*	6265	3869	4246	5551	2534	4662	2576	*	*	4510	4131	4478	3248	6041	6019	4768	*	*	76
+       84	4146	*	668	1432	0	*	6102	1232	2827	
+
+K 77   4868	*	6248	5457	*	4541	5381	*	3632	4409	6579	3371	4772	2894	4493	1693	4245	5901	6047	5739	77
+       2305	*	326	*	*	*	*	6542	0	0	
+
+S 78   *	*	*	*	*	*	4152	*	3768	2760	*	4224	*	*	2715	2293	1677	*	*	*	78
+       363	2168	*	1248	788	0	*	3849	1304	5048	
+
+C 79   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	79
+       0	*	*	*	*	*	*	6542	0	0	
+
+V 80   4475	*	6228	5356	5879	4193	*	2575	3018	2396	3242	*	*	4477	5018	*	6570	2762	*	5318	80
+       0	*	*	*	*	*	*	6542	0	0	
+
+G 81   3788	*	3345	4467	*	1110	*	6677	*	*	*	4135	5734	6682	4922	3209	3567	*	*	*	81
+       0	*	*	*	*	*	*	6542	0	0	
+
+C 82   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	82
+       0	*	*	*	*	*	*	6542	0	0	
+
+H 83   *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	83
+       31	6126	7229	591	1573	*	*	6542	1084	0	
+
+V 84   4246	*	4529	3299	*	5142	*	4908	1971	4296	3772	4330	*	3456	4151	5569	3704	3908	*	*	84
+       0	*	*	*	*	0	*	6527	0	1080	
+
+E 85   2977	*	3237	2682	*	3925	*	*	1900	5099	*	5361	*	3428	4248	6714	3859	*	*	*	85
+       146	*	3380	*	*	*	*	6542	0	0	
+
+V 86   4420	*	*	2889	6761	5848	6226	4611	3503	2541	2334	4798	*	4798	5922	4629	*	3310	6456	4719	86
+       784	5781	1318	2322	322	*	0	6300	1014	1721	
+
+A 87   2675	*	5158	5241	2963	4698	*	*	2901	5815	*	3691	4454	2907	4815	*	5068	2962	*	5600	87
+       400	4937	2256	1585	585	4903	49	5851	1037	3702	
+
+G 88   3281	*	3823	2566	*	2216	*	*	2680	*	*	4520	*	5083	4956	4730	*	2802	*	*	88
+       191	3333	5329	1907	447	755	1295	5336	1170	4078	
+
+A 89   3645	*	3795	2771	*	2878	*	*	1533	5834	*	*	*	4913	4420	*	3536	4787	*	*	89
+       206	*	2913	*	*	3165	171	5990	0	2429	
+
+D 90   4065	*	2834	3874	5848	6439	6135	*	1922	5152	*	4744	*	4493	2275	5580	4366	*	*	4683	90
+       261	*	2597	*	*	*	0	5897	0	2741	
+
+A 91   2275	*	5913	2567	*	5887	4671	*	2624	*	*	*	2134	3508	5783	4916	5459	*	*	*	91
+       97	5307	4661	0	*	5380	35	5603	1042	3377	
+
+A 92   4417	*	3336	3085	*	1368	5268	*	2945	*	*	4347	4768	4554	5150	5723	5839	*	*	*	92
+       421	4402	2279	1817	482	*	0	5589	1077	3408	
+
+K 93   *	*	4557	3196	*	5024	5140	4947	1552	2168	*	*	5439	4477	4124	*	4887	*	4865	*	93
+       196	5140	3338	0	*	1032	969	5285	1000	3883	
+
+K 94   2510	*	*	5900	*	3348	*	5778	1397	*	*	4163	3385	4578	5759	4620	4081	*	*	*	94
+       169	3532	5361	486	1805	757	1292	5755	1323	2811	
+
+K 95   2843	*	3972	5863	3150	5530	*	5898	2437	5142	5295	3531	3502	*	5636	5091	2819	5366	*	*	95
+       43	5710	6647	1693	534	397	2056	5923	1039	1909	
+
+D 96   2759	*	4280	6560	5949	1141	*	5969	3723	*	6522	5250	3894	6433	*	4389	4517	5544	*	*	96
+       15	*	6587	*	*	0	*	6103	0	1238	
+
+L 97   5017	*	*	*	5160	5732	*	5515	*	3120	3402	6149	718	6137	*	5642	*	4857	*	*	97
+       0	*	*	*	*	0	*	6147	0	1009	
+
+T 98   3287	*	5890	5373	*	*	*	4215	2498	3247	*	6681	6867	6763	6544	5217	1888	2517	*	6590	98
+       126	3584	*	0	*	*	*	6158	1539	0	
+
+G 99   2991	*	4427	4531	5586	1965	4912	*	3364	5657	5653	4613	6054	*	4364	2825	3443	*	*	*	99
+       11	7011	*	0	*	*	*	6158	1000	0	
+
+C 100  *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	100
+       2928	*	203	*	*	*	*	6158	0	0	
+
+K 101  1714	*	*	*	*	*	*	*	2211	3099	*	*	*	*	*	3008	2070	*	*	*	101
+       164	*	3222	*	*	*	0	3093	0	5059	
+
+K 102  *	*	*	*	*	2996	*	*	1680	*	*	1776	*	2916	*	*	2854	*	*	*	102
+       205	*	2916	*	*	0	*	2930	0	5091	
+
+S 103  3057	*	6861	5613	6038	2906	6132	*	3144	4827	6532	3051	6412	5426	4551	2693	2590	6689	*	*	103
+       0	*	*	*	*	0	*	6127	0	1042	
+
+K 104  3789	*	2660	2751	*	2911	*	*	2973	7057	*	6704	4331	4066	4463	3095	4400	5358	*	*	104
+       35	5371	*	0	*	*	*	6158	1093	0	
+
+C 105  *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	105
+       0	*	*	*	*	*	*	6158	0	0	
+
+H 106  *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	106
+       0	*	*	*	*	*	*	6158	0	0	
+
+E 107  4384	*	5773	3519	*	6552	6193	6426	1881	*	*	4650	2526	3971	5040	4707	2962	3944	*	*	107
+       0	*	*	0	*	*	*	5957	0	0	
+
+//
+�HHsearch 1.5
+NAME  3e7b90809bd446a538f9eb1a1ca0e551
+FAM   
+FILE  3e7b90809bd446a538f9eb1a1ca0e551
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 11:58:24 2013
+LENG  153 match states, 153 columns in multiple alignment
+FILT  118 out of 1086 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  8.5 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHCCCHHHHCCCCCCCCCHHHHHCCHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHCCCC
+HHHHHHHHHHHHHHHHHHCCCCCCHHHHHHHHHHHHHHHHHHHHHHHHCCCCC
+>ss_conf PSIPRED confidence values
+9699999999999999985388899999999999894377668002466768988609888899999999999999815236999999999888872999
+89999999999999998765369999999999999999999999998758899
+>Consensus
+xltxxexxxixxsWxxvxxxxxxxgxxxfxxlFxxxPxxxxxFxxfxxxxxxxxlxxxxxxxxhxxxvxxxlxxxixxldxxxxxlxxlgxxHxxxxgvx
+xxxfxxxxxxlxxxlxxxlgxxxtxxxxxAWxxxxxxixxxxxxxxxxxxxxx
+>3e7b90809bd446a538f9eb1a1ca0e551
+VLSEGEWQLVLHVWAKVEADVAGHGQDILIRLFKSHPETLEKFDRFKHLKTEAEMKASEDLKKHGVTVLTALGAILKKKGHHEAELKPLAQSHATKHKIP
+IKYLEFISEAIIHVLHSRHPGDFGADAQGAMNKALELFRKDIAAKYKELGYQG
+>gi|194015055|ref|ZP_03053672.1| oxidoreductase, FAD-binding domain protein [Bacillus pumilus ATCC 7061]gi|194014081|gb|EDW23646.1| oxidoreductase, FAD-binding domain protein [Bacillus pumilus ATCC 7061]
+MLSKDQMNAIKQSAPLLKAEGTKLVTVFYQNMIRQHPELLNQFN----Q-------TNLMNGSQPEALAVTLYQAALHIDRLEellPVVKQIAHKHVS-V
+MVKKEQYPIVGYHLIEAMKEVFGLTEKDDTLLAWKAAYDIIANIFITieaeMMEVnvkqpGGWAD
+>gi|297697626|ref|XP_002825953.1| PREDICTED: hemoglobin subunit alpha-like [Pongo abelii]
+-----------------------------------------------------------------------------------------GQRDGRDFQWD
+PVKIKLLSHCLLVTLAAHLPAEFTPAVHASLDKFLASVSTVLTSKYR------
+>gi|108797450|ref|YP_637647.1| oxidoreductase FAD-binding region [Mycobacterium sp. MCS]gi|119866535|ref|YP_936487.1| oxidoreductase FAD-binding subunit [Mycobacterium sp. KMS]gi|108767869|gb|ABG06591.1| Oxidoreductase FAD-binding region [Mycobacterium sp. MCS]gi|119692624|gb|ABL89697.1| Oxidoreductase FAD-binding domain protein [Mycobacterium sp. KMS]
+-----ALAVLRDAVDP-RRGSDPLIADFYTRWFAADLSVRDLFPP--DM------------ARQRTAFAEAMTWLFGELiaQraeEPVAFLAQLGRDHR-
+KYGVVQRHYDTMGDALYAALRSGLADQWSDRVAEAAHDAVALATGVMRGA--------
+>gi|198419488|ref|XP_002119301.1| PREDICTED: hypothetical protein [Ciona intestinalis]
+PLTEIEIEGVQESWEKVSSgGPKTTGLILMEKLFNTYPASIAVFSHLGIPSKPdgaitvSDLASIGGVSNHAVSLASRIGKLVGLLNNeteLKESSTEVG
+RIHVK-YGVTSEHVDLLGSVLLSVISENQGLSNTSELIGWWSKTWNIIGNYVKTGL-------
+>gi|119474700|ref|ZP_01615053.1| hypothetical protein GP2143_12811 [marine gamma proteobacterium HTCC2143]gi|119450903|gb|EAW32136.1| hypothetical protein GP2143_12811 [marine gamma proteobacterium HTCC2143]
+--DQ-----IVSCLEQVGDRCKDPTALVYERLFSANPEMKPLFI----M-D-----GNDAVKGQM--LFQVLDGIIDFVGDRRYaetLFLSELINHDI-I
+GVPPRVFSTFFRTIMETFRDIMGADWTAEFDQAWAQLLSDLDEMIREKAEVA----
+>gi|341887822|gb|EGT43757.1| CBN-GLB-25 protein [Caenorhabditis brenneri]
+----RDFFTLKNWWKSVDRKRVEASTYMFSRYLNDFPENKAFYAKLKNVNAqtVDMNCSDPGFEAMAAQYLKVFDDVITAveekPGDVQSacdRLSAVGK
+MHRAKvSGagMESSMFQNMEEPFIQMVKYILQDRFNEKAEMLYRKFFQFCLKYLLEGF-------
+>gi|339235297|ref|XP_003379203.1| putative WAP-type 'four-disulfide core' [Trichinella spiralis]gi|316978179|gb|EFV61192.1| putative WAP-type 'four-disulfide core' [Trichinella spiralis]
+-LSVYDKRLIEESWCALR-DKDEVAKQIFLRVLTSNEKIRTIFDLH--TCPDDELEENSAFQRHVKSLSLFLSICADSlsvsPDRLVSIARSIGEKHVNF
+RWvsFDAEYWLLMKCAMVEVISSKQRPKISHLVNTAWNSLLSFVIFEIKHSFLEA----
+>gi|294979326|pdb|2WTG|A Chain A, High Resolution 3d Structure Of C.Elegans Globin-Like Protein Glb-1gi|294979327|pdb|2WTH|A Chain A, Low Resolution 3d Structure Of C.Elegans Globin-Like Protein (Glb-1): P3121 Crystal Formgi|294979328|pdb|2WTH|B Chain B, Low Resolution 3d Structure Of C.Elegans Globin-Like Protein (Glb-1): P3121 Crystal Form
+--------------------NIENGNAFYRYFFTNFPDLRVYFKGAEKY-TADDVKKSERFDKQGQRILLAChllANVYTNEEVFKGYVRETINRHR-IY
+KMDPALWMAFFTVFTGYLESVG--SLNDQQKAAWMA--------------------
+>gi|194745446|ref|XP_001955199.1| GF16359 [Drosophila ananassae]gi|190628236|gb|EDV43760.1| GF16359 [Drosophila ananassae]
+-FTLSERLALRQAWNIVRPFTRRYGQEIFFNYLNDAYLRISKFKHTKGN-------YLHVLHNHFRGFLCFIGSLIEEQDPvmFQLMLNDNNMTHSR-CK
+VGAAFILELAQAMTDYILKVFEKVSSASLESGFRKIVD-----------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+V 1    4865	4754	4858	*	*	3862	3292	*	*	4864	3522	4800	1479	4967	*	2877	*	4673	*	*	1
+       102	3874	*	1671	544	*	*	6449	1270	0	
+
+L 2    6390	*	*	*	2775	6389	*	5187	*	682	3753	*	6579	*	*	*	6479	3809	6378	*	2
+       0	*	*	*	*	*	*	8204	0	0	
+
+S 3    6541	*	4492	*	*	*	*	*	*	*	6481	4585	*	6363	*	1359	1102	5361	*	*	3
+       0	*	*	*	*	*	*	8310	0	0	
+
+E 4    2557	6360	3279	2616	7155	3864	6687	5062	4276	5145	*	5648	2532	5497	6324	3964	4639	6356	*	6304	4
+       18	*	6335	*	*	*	*	8407	0	0	
+
+G 5    2722	*	2843	2457	6074	5096	5716	5449	2938	6621	*	5674	5400	4590	3271	3661	5582	*	*	6378	5
+       0	*	*	*	*	*	0	8452	0	1024	
+
+E 6    6454	*	2184	1467	*	*	6212	6708	5569	*	6568	6362	*	1642	*	*	5690	*	*	*	6
+       0	*	*	*	*	*	0	8463	0	1024	
+
+W 7    5154	6134	*	5125	6048	*	6292	2129	2183	4193	6623	*	*	6425	2330	*	4822	3095	6575	6147	7
+       0	*	*	*	*	*	0	8612	0	1024	
+
+Q 8    2803	*	3879	2981	4661	6930	4651	5002	2408	4909	*	5445	6434	3338	3494	4510	5008	7035	*	5882	8
+       0	*	*	*	*	*	0	8629	0	1024	
+
+L 9    2405	*	4117	4868	6693	5529	5699	3435	*	1432	6132	4374	*	5487	6950	*	3746	4707	*	*	9
+       0	*	*	*	*	0	*	8649	0	1024	
+
+V 10   5091	*	*	*	*	*	*	1496	*	1888	4857	*	*	*	*	*	5622	1780	*	*	10
+       0	*	*	*	*	*	*	8761	0	0	
+
+L 11   4500	*	*	4806	*	6751	5076	4926	2433	3991	*	5755	*	2135	1916	*	5171	4028	*	*	11
+       16	*	6532	*	*	*	*	8761	0	0	
+
+H 12   3400	*	3547	2937	*	4959	5215	*	2998	6826	*	3621	*	3138	3676	2631	4387	*	*	6176	12
+       0	*	*	*	*	*	0	8740	0	1020	
+
+V 13   3838	5621	4678	*	6505	*	6310	4845	*	5286	6826	4975	*	*	*	1069	2183	4834	6134	*	13
+       0	*	*	*	*	*	0	8740	0	1020	
+
+W 14   *	*	*	*	3514	6928	*	5163	*	4954	6549	*	*	*	*	*	*	4956	338	6606	14
+       0	*	*	*	*	0	*	8740	0	1020	
+
+A 15   2719	5190	3530	2903	6325	3891	*	*	3624	6943	*	3074	4001	4973	3719	3319	4568	*	*	*	15
+       0	*	*	*	*	*	*	8761	0	0	
+
+K 16   3505	*	6551	4948	4749	4499	*	3823	2666	3586	4723	4454	5815	3907	3481	4121	4160	3252	*	*	16
+       33	5479	*	1000	1000	*	*	8761	1169	0	
+
+V 17   3681	*	6528	6932	5178	*	*	2136	*	2225	4439	6341	6282	7064	6538	*	5736	1618	*	*	17
+       106	6454	4071	1000	1000	*	*	8774	1024	0	
+
+E 18   3667	5822	4781	3720	5269	4283	5729	4751	2855	4537	5200	6531	*	5636	3218	2893	5207	5090	4570	3681	18
+       107	4386	5415	1298	753	2629	254	8694	1503	1685	
+
+A 19   2939	*	3758	4364	6453	3505	5646	6147	2648	5065	5914	5287	3183	3845	3815	3847	4404	6107	*	*	19
+       88	4870	5328	450	1900	0	*	8658	1300	1849	
+
+D 20   5307	6638	1826	4387	5272	3443	4482	*	3440	4414	*	2491	6452	5149	4047	5970	6233	5272	*	*	20
+       63	4940	6601	947	1055	*	0	8765	1318	1221	
+
+V 21   3144	5912	4997	6577	6002	3779	5868	4239	2819	2832	4588	7453	3425	4640	4063	5348	4900	4746	5001	5578	21
+       108	4240	5687	2026	406	1843	471	8773	1608	1355	
+
+A 22   3786	*	2651	3075	*	5746	6148	4678	3851	6379	5840	4097	3909	3514	4265	6329	3316	3466	*	6470	22
+       42	5123	*	721	1346	934	1069	8789	1247	1598	
+
+G 23   3489	*	3421	2161	6242	4041	4741	6928	3601	6510	*	4625	6437	3507	4231	4510	3510	4156	*	*	23
+       0	*	*	*	*	0	*	8781	0	1221	
+
+H 24   3198	6827	7050	*	2932	*	3737	2797	*	3408	5955	3112	4999	6621	*	5103	3767	3352	5666	4744	24
+       0	*	*	*	*	*	*	8790	0	0	
+
+G 25   2406	6316	6039	6930	6322	850	6612	6908	6217	*	*	*	*	7145	*	4343	4581	3906	*	6463	25
+       11	7048	*	3000	193	*	*	8790	1000	0	
+
+Q 26   4038	*	4193	4481	5913	5850	7112	3850	3690	3530	5322	4625	4704	3881	4007	3102	3342	3205	*	7049	26
+       34	5405	*	2860	214	*	*	8790	1177	0	
+
+D 27   3117	6316	3485	3178	*	4715	5281	3858	3377	3646	6954	3991	*	4399	3479	4472	3929	5016	*	6163	27
+       0	*	*	*	*	*	*	8790	0	0	
+
+I 28   3684	6267	*	*	1946	*	*	1899	*	2828	3942	*	*	*	*	6322	5455	2832	*	*	28
+       0	*	*	*	*	*	*	8790	0	0	
+
+L 29   *	*	*	*	1143	*	*	*	*	2342	4442	*	*	*	*	*	*	5646	*	1815	29
+       0	*	*	*	*	*	*	8790	0	0	
+
+I 30   3597	*	4243	3842	4209	4594	4517	3121	3475	2863	5806	5889	*	5017	4459	4208	3814	4460	*	4989	30
+       35	5388	*	3073	183	*	*	8790	1206	0	
+
+R 31   3621	5588	4493	5433	6573	4316	5404	6017	2365	4730	5657	3901	*	5196	1720	4684	5650	*	6516	6460	31
+       20	6217	*	3000	193	*	*	8790	1045	0	
+
+L 32   *	*	*	*	2442	*	*	3583	*	1064	3846	*	*	*	*	*	6513	3971	5487	3511	32
+       0	*	*	*	*	*	*	8792	0	0	
+
+F 33   6904	5418	*	*	514	*	5527	4198	*	2583	*	*	*	6837	*	*	*	5957	*	*	33
+       0	*	*	*	*	*	*	8792	0	0	
+
+K 34   3450	*	4730	1918	5595	6667	6038	*	2826	5761	6604	4048	*	4448	4290	4170	2779	5490	*	6676	34
+       14	*	6725	*	*	*	*	8792	0	0	
+
+S 35   2600	*	3727	3448	*	6944	4687	4089	3307	3201	4673	4463	*	4429	3774	4139	3571	7065	*	*	35
+       0	*	*	*	*	0	*	8786	0	1000	
+
+H 36   3400	5443	3550	5626	3640	*	2591	*	5641	6049	*	2766	*	5739	4587	4415	5910	4359	*	2509	36
+       0	*	*	*	*	*	*	8792	0	0	
+
+P 37   6778	*	6700	4710	*	6837	*	*	5602	6567	*	*	272	6468	*	5807	4916	*	*	6305	37
+       0	*	*	*	*	*	*	8792	0	0	
+
+E 38   4097	*	2285	2246	6225	4249	5139	6955	4669	5468	5111	3919	*	4103	5224	3219	4453	6505	5860	*	38
+       0	*	*	*	*	*	*	8792	0	0	
+
+T 39   3259	6225	5703	6827	3912	*	*	2966	*	2901	4433	4360	*	6910	6305	3742	3041	3386	6831	3194	39
+       0	*	*	*	*	*	*	8792	0	0	
+
+L 40   4624	*	*	5227	*	5894	6505	4340	1633	3507	6042	*	*	2618	2474	6711	6225	4163	*	6904	40
+       12	*	6910	*	*	*	*	8792	0	0	
+
+E 41   3238	*	3527	3152	7034	6003	*	5300	2812	5101	*	4227	3834	4090	3806	3193	3778	5174	*	6510	41
+       15	6556	*	2585	263	0	*	8782	1025	1000	
+
+K 42   4856	*	*	5459	2857	*	4303	4109	3203	1824	3631	6904	5287	5147	6934	7099	*	4915	*	3138	42
+       0	*	*	*	*	*	*	8792	0	0	
+
+F 43   *	*	*	*	162	*	*	6289	*	4825	*	*	6567	*	*	*	*	*	5611	5204	43
+       25	*	5862	*	*	*	*	8792	0	0	
+
+D 44   4723	*	5023	5936	6608	3142	5016	6723	2697	*	*	4466	2168	5583	4601	2881	3932	4439	*	5662	44
+       170	*	3169	*	*	891	1117	8780	0	1127	
+
+R 45   4327	*	4180	5053	5616	3613	3276	5359	2491	5431	*	4197	7315	3500	3524	3430	5145	5442	6601	4516	45
+       316	5005	2593	721	1346	984	1016	8612	1273	2657	
+
+F 46   4353	*	6350	6018	1131	*	6274	4861	*	2744	4978	5420	*	6195	*	4899	4265	4028	6331	4566	46
+       249	6422	2769	0	*	4478	66	8434	1014	3623	
+
+K 47   3399	*	4012	3376	*	2884	*	*	2218	5665	*	6044	6096	4269	2910	3082	4981	6344	*	*	47
+       47	6844	5436	1000	1000	789	1247	8270	1000	4685	
+
+H 48   4739	*	1748	3960	6415	2725	3654	6497	3877	5461	*	2703	*	*	*	3909	4789	*	*	*	48
+       93	*	4006	*	*	947	1055	8552	0	2926	
+
+L 49   6564	5356	6409	6551	4015	5655	4599	3242	2985	2490	3601	4667	5550	5062	5618	5311	5569	2557	*	*	49
+       1232	*	800	*	*	4205	80	8628	0	2655	
+
+K 50   3993	5247	3529	2166	5102	4411	4223	5441	4298	4118	*	4816	5065	*	5358	2447	5373	4538	*	*	50
+       186	*	3049	*	*	551	1655	7560	0	6783	
+
+T 51   4049	*	2793	4762	*	4896	*	6258	3347	5564	*	4709	2362	6630	*	2294	2779	*	*	*	51
+       207	4683	3403	494	1785	2304	326	8408	1303	3940	
+
+E 52   3703	*	3757	4237	4117	6612	*	3701	5528	2804	5315	3381	3229	3604	6386	6694	4586	3426	*	5627	52
+       199	5283	3280	3388	145	3646	120	8321	1130	4218	
+
+A 53   3503	*	2196	2112	*	4214	6130	*	4398	*	*	4606	5977	3513	5210	3491	5037	4685	*	5884	53
+       0	*	*	*	*	*	0	8241	0	4691	
+
+E 54   2935	*	2601	1872	*	5881	6567	*	4721	5619	5815	4413	5356	3368	5147	3688	4980	6394	*	6612	54
+       0	*	*	*	*	3948	97	8263	0	4691	
+
+M 55   *	5966	6316	5670	6135	6475	*	2535	*	993	3523	5843	*	6263	*	6014	6174	3670	6076	6461	55
+       0	*	*	*	*	*	0	8326	0	4500	
+
+K 56   3064	5843	6425	3406	4288	*	*	4797	2345	3100	4653	6016	3988	4014	3183	4218	6321	*	*	*	56
+       33	*	5465	*	*	777	1264	8326	0	4500	
+
+A 57   3315	*	3933	4578	4650	3235	5505	6588	3458	6288	*	3694	*	3763	4246	2907	3101	5670	*	4766	57
+       36	*	5359	*	*	3880	101	8621	0	2791	
+
+S 58   6625	*	2672	5484	5335	5561	5911	5648	6327	6129	6673	1717	*	5678	*	1808	3783	6713	*	*	58
+       13	6853	*	2807	222	*	0	8613	1000	2912	
+
+E 59   2811	*	4465	3425	*	4258	5170	6458	4030	6801	*	4171	1906	5670	4919	3069	4621	6267	*	6676	59
+       29	6674	6613	1585	585	3311	153	8606	1000	3010	
+
+D 60   3077	6216	4182	3191	4609	4038	5175	6134	2993	5712	6339	4111	5821	4056	3355	3903	5711	4078	6333	6414	60
+       14	*	6703	*	*	1962	428	8602	0	2924	
+
+L 61   5172	*	*	6378	1548	6659	*	3653	6671	2086	3436	5455	*	6850	*	6728	*	3202	6605	4991	61
+       0	*	*	*	*	1984	420	8653	0	2548	
+
+K 62   4811	6273	*	3580	6575	4442	4579	6629	2068	4085	*	4938	*	3191	2271	5763	3748	*	*	5657	62
+       13	*	6826	*	*	2408	301	8706	0	2154	
+
+K 63   1999	*	5844	4609	5061	4154	4219	6279	3610	3672	*	3820	*	5040	3524	3526	4320	4958	6903	6275	63
+       0	*	*	*	*	*	0	8721	0	2036	
+
+H 64   6500	*	*	*	6405	*	767	5672	6253	4898	4938	*	*	2073	6331	*	6458	6715	*	5683	64
+       32	*	5519	*	*	1249	787	8721	0	2036	
+
+G 65   1403	4381	*	5307	5251	2350	6945	4343	7167	5897	5032	*	*	6111	5636	4087	4955	3494	*	*	65
+       29	*	5672	*	*	1582	586	8676	0	1878	
+
+V 66   3667	6434	5307	3509	5779	4668	5400	3818	3101	3090	6636	4791	*	5102	3747	3498	3893	3659	*	5281	66
+       0	*	*	*	*	*	0	8633	0	1827	
+
+T 67   3250	*	*	*	*	6239	5211	4275	2612	5283	5694	4930	*	4890	1770	3862	3357	4127	*	6504	67
+       0	*	*	*	*	1751	509	8633	0	1827	
+
+V 68   *	6416	*	*	2410	*	*	2570	*	2587	4936	*	*	*	*	6331	6491	1421	*	4809	68
+       0	*	*	*	*	1616	570	8674	0	1552	
+
+L 69   3034	5885	*	*	3696	4352	*	3168	*	2457	2641	*	*	6408	6767	4497	4343	2965	6620	5135	69
+       0	*	*	*	*	1639	559	8702	0	1333	
+
+T 70   3578	5359	3357	2884	*	3533	*	5761	3388	4421	4740	2827	*	3643	4562	4599	4565	6743	*	5777	70
+       12	6939	*	0	*	0	*	8720	1000	1185	
+
+A 71   2169	5684	*	6827	3891	3068	*	4704	6255	3936	4327	*	*	5938	4856	3280	3171	3169	*	5643	71
+       16	*	6540	*	*	*	*	8749	0	0	
+
+L 72   *	6967	*	*	3329	*	*	2415	*	1143	3549	7299	*	*	*	*	6783	2723	*	*	72
+       0	*	*	*	*	*	0	8772	0	1027	
+
+G 73   4694	5716	1867	3924	*	2835	5012	*	6507	5304	6822	2719	5835	5609	*	3670	3711	4885	*	7078	73
+       16	6485	*	4087	87	*	0	8772	1030	1027	
+
+A 74   3931	5754	3569	3552	4369	6656	4954	5471	3355	4649	5609	3766	*	3945	5081	3164	3400	4568	6694	4348	74
+       13	6783	*	0	*	*	0	8772	1000	1027	
+
+I 75   2567	4349	*	*	3543	4491	*	2492	*	2701	4425	*	*	*	7299	4557	5923	2520	5894	5849	75
+       9	7299	*	1585	585	0	*	8772	1000	1027	
+
+L 76   3752	6486	*	*	6902	*	*	1327	*	3587	4178	*	7293	*	*	6551	6994	1580	*	6689	76
+       18	6331	*	2807	222	*	*	8749	1046	0	
+
+K 77   4747	6813	2310	2836	*	3253	6339	7011	2947	6691	*	3691	6451	3843	4167	4198	4435	4926	*	*	77
+       21	6108	*	1585	585	*	*	8749	1107	0	
+
+K 78   3750	7001	*	4246	5004	5068	3656	7278	4619	3276	6691	2282	6898	5092	4297	2456	5323	4912	*	5049	78
+       182	3076	*	1626	565	*	*	8749	2464	0	
+
+K 79   5235	*	*	7278	4859	5815	*	2933	6869	1063	3635	6017	3774	6339	6963	*	5115	4136	*	5527	79
+       106	3983	7091	1461	651	*	*	8749	1798	0	
+
+G 80   4974	*	1162	3064	7271	2683	4872	*	5088	*	*	3836	6948	6681	5282	4840	6798	5769	*	*	80
+       57	4688	*	1435	666	*	0	8743	1450	1000	
+
+H 81   6748	*	1534	3434	4975	5645	4751	7166	3701	*	*	2173	5587	5151	4887	4821	5060	*	*	6603	81
+       738	1321	*	1616	570	0	*	8743	5428	1000	
+
+H 82   4202	5761	5663	5269	3653	7080	5865	3615	5932	1476	5113	6379	3155	*	5307	5337	5272	3584	*	7052	82
+       70	4395	*	1585	585	*	*	8769	1548	0	
+
+E 83   3117	*	2561	2287	6454	5992	5583	6653	3610	5425	5680	5408	5237	4368	5173	3322	5052	3807	*	*	83
+       210	2883	*	1541	607	*	*	8769	2869	0	
+
+A 84   2850	6579	4843	2774	6702	2663	5202	6934	3881	5347	6965	4087	4941	4787	6986	2843	4567	4976	*	5820	84
+       455	1954	6337	1602	576	*	*	8769	4183	0	
+
+E 85   3591	*	6038	4345	4059	6870	5747	3163	4412	2432	4588	5343	7156	3908	5400	5276	4498	3406	6559	3591	85
+       16	6467	*	4585	61	*	0	8727	1030	1046	
+
+L 86   3652	6729	*	*	3911	*	*	2806	*	974	5815	*	*	*	6960	5255	*	3275	5616	5883	86
+       0	*	*	*	*	*	0	8727	0	1046	
+
+K 87   3449	7159	4530	3732	6681	5516	4624	5050	2465	4824	5184	3534	5402	4179	3431	4459	4343	4405	*	4769	87
+       0	*	*	*	*	0	*	8727	0	1046	
+
+P 88   3266	*	3502	3051	6431	5105	4391	*	2891	4880	6719	4743	5885	3457	3322	3472	5493	5394	*	4676	88
+       0	*	*	*	*	*	*	8769	0	0	
+
+L 89   *	*	*	5820	3801	*	*	2625	6379	1084	3540	5227	*	5431	*	*	5293	3592	*	5622	89
+       25	6895	6823	1585	585	*	*	8769	1000	0	
+
+A 90   2240	5873	*	*	*	1096	6703	5544	6452	5812	6603	6327	*	*	5171	3253	5482	3933	*	*	90
+       0	*	*	*	*	0	*	8756	0	1000	
+
+Q 91   3675	*	4279	3456	*	4657	4708	6727	2250	6591	5343	5228	6379	3258	3572	4107	3860	4048	*	4975	91
+       0	*	*	*	*	*	*	8769	0	0	
+
+S 92   4654	*	3849	5364	*	6568	6431	4419	3559	4158	5625	3695	6948	4638	2010	3807	3360	3793	*	5513	92
+       34	6431	6457	1000	1000	*	*	8769	1110	0	
+
+H 93   *	*	*	*	7360	6775	67	*	*	*	*	6609	*	*	*	6134	*	*	*	7481	93
+       12	6909	*	0	*	*	0	8752	1000	1031	
+
+A 94   2688	4997	5096	6542	4223	*	4745	4129	2925	3657	6927	7445	6909	4312	3534	3630	4638	3096	6936	6689	94
+       41	*	5164	*	*	*	0	8752	0	1031	
+
+T 95   3399	6535	3630	3866	5533	3371	5832	6025	3333	6620	*	3689	4007	6734	2707	4012	3450	5889	*	6398	95
+       1901	4629	532	1010	990	972	1029	8713	1427	1465	
+
+K 96   4991	*	*	3685	3878	5015	5880	3649	1920	*	4816	*	*	4188	2452	4781	5099	3439	*	*	96
+       225	3498	4154	340	2252	37	5304	7346	1410	7228	
+
+H 97   6875	6312	7114	*	3373	*	4158	5809	5951	2520	4873	6998	5122	6276	1828	4410	6628	5901	*	2544	97
+       71	5102	5727	1244	791	421	1982	8790	1275	1370	
+
+K 98   6874	6806	4835	*	*	1032	4816	*	3461	6326	*	3668	6155	3148	4344	4496	*	*	6572	6640	98
+       35	5393	*	1000	1000	1164	853	8789	1201	1392	
+
+I 99   4632	*	*	*	3800	6551	*	2128	6431	3120	4646	*	*	7080	*	*	6908	1101	*	*	99
+       70	4392	*	548	1662	831	1191	8791	1555	1159	
+
+P 100  6835	*	3407	3716	*	3802	5266	6788	3366	5104	7105	3412	3753	4373	4698	3327	2309	5355	*	*	100
+       17	6434	*	1000	1000	*	0	8809	1028	1000	
+
+I 101  3484	*	4665	5640	*	5101	5580	4820	3788	5110	5618	5900	1564	3920	4098	3885	4420	4313	*	*	101
+       34	5429	*	2321	322	*	0	8809	1195	1000	
+
+K 102  3123	*	2979	1815	6087	4789	4788	6684	3246	6637	*	6778	5902	3824	4900	4154	5342	4596	*	6666	102
+       0	*	*	*	*	*	0	8774	0	1159	
+
+Y 103  4986	6422	3804	4934	4277	5908	2022	5915	6729	4009	3685	4178	6923	3238	6906	4695	*	5773	6625	2973	103
+       14	6684	*	0	*	0	*	8774	1167	1159	
+
+L 104  6357	*	*	*	1141	*	*	4629	*	3164	4511	*	*	*	*	5982	*	4789	3026	2611	104
+       31	5564	*	1788	493	*	*	8802	1166	0	
+
+E 105  4075	*	2629	2480	*	4338	*	*	2791	4877	5963	3716	3811	4077	4382	5215	5923	5196	5029	*	105
+       9	7350	*	1000	1000	*	*	8802	1000	0	
+
+F 106  2997	*	4000	3481	5268	5253	*	3935	5153	2671	4588	3233	4055	5107	5745	5660	4368	3964	5956	5975	106
+       0	*	*	*	*	*	*	8802	0	0	
+
+I 107  4128	*	*	*	1730	5872	*	3551	*	2049	2803	*	*	*	*	*	6769	3042	6426	6419	107
+       29	*	5651	*	*	*	*	8802	0	0	
+
+S 108  2877	6135	*	4032	4264	1893	*	4720	2738	4264	*	*	5937	6453	4005	3746	7312	5950	5541	5723	108
+       15	6566	*	0	*	1058	945	8790	1151	1157	
+
+E 109  4412	6589	3807	2116	5839	4160	4854	6443	3730	6768	7044	4489	4182	3877	3597	3646	4828	4748	6554	6007	109
+       0	*	*	*	*	0	*	8787	0	1017	
+
+A 110  1839	3579	6727	6963	*	7095	*	3562	*	5635	6899	5762	4095	6834	*	2928	4174	2191	*	7085	110
+       0	*	*	*	*	*	*	8802	0	0	
+
+I 111  7294	*	*	*	2079	*	*	2555	*	1302	4200	*	*	*	*	*	5556	3788	5534	6429	111
+       0	*	*	*	*	*	*	8802	0	0	
+
+I 112  5024	*	6829	5488	6327	5194	*	2664	5898	1638	3948	*	5878	6429	5882	*	4071	2300	*	5070	112
+       0	*	*	*	*	*	*	8802	0	0	
+
+H 113  3623	*	2968	2352	4512	4307	5170	5770	3912	5036	6579	5829	5666	3625	4606	3867	4926	4995	5916	4694	113
+       0	*	*	*	*	*	*	8802	0	0	
+
+V 114  2554	5034	*	5871	4681	*	6812	6794	*	4974	4725	6433	*	6435	6521	3598	2238	2342	*	2946	114
+       0	*	*	*	*	*	*	8802	0	0	
+
+L 115  4918	6419	*	*	3261	*	*	2387	*	1254	3108	*	*	*	*	*	5607	3267	*	*	115
+       22	*	6025	*	*	*	*	8802	0	0	
+
+H 116  2900	6851	5885	2852	*	3823	6782	6543	2509	4919	*	6375	5443	3374	3148	3668	4836	4485	*	*	116
+       17	6413	*	4755	54	1072	931	8787	1028	1087	
+
+S 117  3379	6426	3108	1916	6730	4962	6638	*	3856	7045	6514	4458	6799	3451	4201	3308	4610	5902	*	6246	117
+       83	5729	4751	1844	471	0	*	8790	1152	1000	
+
+R 118  2681	5816	6967	3634	6480	4451	3337	4344	3455	4231	6523	6691	*	5993	4244	4746	3497	3410	4923	4430	118
+       223	5238	3098	671	1427	0	*	8770	1212	1419	
+
+H 119  5259	3856	5387	6459	3500	5903	5049	5157	6912	1251	4270	5623	*	5513	*	5714	5219	3610	6351	4520	119
+       270	6728	2631	4322	74	704	1373	8662	1006	2393	
+
+P 120  4716	*	5407	5241	*	816	6476	*	3611	*	*	*	2898	4393	4814	5412	*	*	*	6654	120
+       73	6136	4843	2322	322	810	1219	8598	1028	3497	
+
+G 121  3061	6568	2871	4349	*	3581	6430	6566	3498	4667	*	3969	3022	4696	4283	3162	4923	5126	*	*	121
+       82	5371	5013	577	1601	605	1546	8725	1190	2442	
+
+D 122  3683	4462	3027	3901	6185	3350	4745	6867	3240	5655	6679	3531	6631	4099	3534	3934	5221	4636	*	5625	122
+       110	4052	6269	2190	357	2036	403	8723	1914	1963	
+
+F 123  4666	5960	5669	*	1729	*	6350	4884	*	3540	5223	6653	5224	*	4510	4145	*	4813	2298	3499	123
+       12	*	6874	*	*	1345	722	8714	0	1857	
+
+G 124  5265	*	2571	5287	*	5844	5483	*	6958	*	*	2706	6836	6554	*	2264	1508	*	*	*	124
+       14	6683	*	2807	222	1417	677	8777	1014	1587	
+
+A 125  2346	*	3566	2990	*	4203	5110	6051	4553	5103	6331	5482	2488	4655	4177	3566	5033	*	*	*	125
+       91	6374	4341	1585	585	*	0	8793	1028	1323	
+
+D 126  2975	*	2640	1849	6935	5729	*	6238	3759	5419	*	4211	5533	4300	5955	3457	4515	6414	*	6922	126
+       29	6412	6974	1408	683	2309	325	8756	1141	1986	
+
+A 127  2827	6217	5834	5634	5588	6195	4811	3325	*	2927	4615	6966	*	3647	6286	5022	2719	2528	*	6771	127
+       12	6903	*	1000	1000	3193	167	8755	1000	1876	
+
+Q 128  3390	6686	4127	2220	*	5862	4748	4023	2623	4679	5706	6534	6503	3966	2982	5946	5759	4660	*	*	128
+       0	*	*	*	*	0	*	8761	0	1771	
+
+G 129  2756	*	2889	3083	*	3618	6883	5787	3465	4276	6255	4336	*	3434	4647	4029	4110	4856	*	*	129
+       0	*	*	*	*	*	*	8802	0	0	
+
+A 130  570	*	*	*	*	4691	*	4473	*	4864	*	*	*	*	7474	3076	4335	5310	6723	*	130
+       24	5899	*	2385	307	*	*	8805	1133	0	
+
+M 131  6671	*	6813	*	4502	*	*	*	*	4824	5539	*	*	*	*	*	*	5811	300	4311	131
+       0	*	*	*	*	*	*	8805	0	0	
+
+N 132  3119	*	3619	3417	*	3993	5384	6199	3054	4320	5580	3929	5688	5656	3018	4289	3700	4588	5636	*	132
+       0	*	*	*	*	*	*	8805	0	0	
+
+K 133  3488	*	4244	3690	5597	3915	5262	4889	1506	5037	*	4474	7147	4458	4547	4439	4375	5905	*	*	133
+       0	*	*	*	*	*	*	8797	0	0	
+
+A 134  2371	4578	*	*	2802	4698	*	3656	*	2000	4437	*	*	*	*	6660	4560	2786	*	6626	134
+       0	*	*	*	*	*	*	8797	0	0	
+
+L 135  6366	*	*	*	2102	5586	*	3327	*	1969	3959	5149	*	*	*	6506	5606	4240	4597	2637	135
+       0	*	*	*	*	*	*	8797	0	0	
+
+E 136  3226	*	2372	4018	*	3111	6395	*	3383	6704	6190	4137	6600	4244	4643	3075	3429	6493	*	6815	136
+       13	*	6784	*	*	*	*	8797	0	0	
+
+L 137  3915	5702	5206	4861	2908	4621	4869	3886	*	4086	5962	4412	6392	5110	4239	4187	5197	2528	*	3237	137
+       12	6975	*	2000	415	*	0	8720	1000	1002	
+
+F 138  5332	6203	*	*	2930	7341	*	1601	*	2268	4898	*	*	*	*	*	5713	2092	*	*	138
+       0	*	*	1585	585	0	*	8685	1002	1002	
+
+R 139  2349	4477	5602	*	4219	4328	*	2712	6307	3940	5311	5270	*	5915	5112	4088	4052	2761	*	4606	139
+       18	*	6366	*	*	*	*	8629	0	0	
+
+K 140  3272	7187	2871	2750	5643	3706	5000	*	3799	5228	*	3066	5753	5803	4477	3734	3943	5728	*	5794	140
+       19	6219	*	0	*	0	*	8605	1027	1016	
+
+D 141  2414	*	6698	4441	4710	3771	4835	3873	5078	3907	4675	6841	5545	5763	3851	4981	3358	3257	*	4187	141
+       0	*	*	*	*	*	*	8616	0	0	
+
+I 142  6549	6718	*	*	4746	*	6743	1979	*	1600	1896	*	*	6558	*	*	6639	4051	*	*	142
+       18	6355	*	2000	415	*	*	8572	1054	0	
+
+A 143  3730	6711	5563	3856	4024	4069	*	4086	2499	3714	5560	7464	*	5820	3209	3156	4339	3689	*	*	143
+       0	*	*	*	*	*	*	8497	0	0	
+
+A 144  2684	*	5453	2701	*	4409	4594	*	4057	5173	*	4540	*	4392	3200	2476	4161	4550	*	6192	144
+       56	5259	6376	2000	415	*	*	8369	1224	0	
+
+K 145  2667	5990	*	3048	4882	1684	4591	6142	3432	5552	6237	*	5421	4665	*	5256	4289	6568	*	5196	145
+       0	*	*	*	*	*	0	8216	0	1090	
+
+Y 146  3650	4728	*	*	2731	5815	5563	4413	*	3338	3058	*	*	5950	*	5656	5957	6296	5531	1554	146
+       0	*	*	*	*	0	*	7843	0	1090	
+
+K 147  3655	5463	3731	2923	5240	*	3696	*	2287	4228	*	4821	*	4598	2625	4481	5357	*	*	5582	147
+       155	3293	*	1669	545	*	*	7452	1429	0	
+
+E 148  4596	*	3911	1168	*	*	4888	*	2584	*	*	*	*	3959	3834	*	3680	4870	*	*	148
+       65	4509	*	2322	322	*	*	6692	1051	0	
+
+L 149  2548	*	3614	*	*	4557	4316	4989	4248	2222	3469	3976	*	*	4192	4633	4153	*	*	4290	149
+       0	*	*	*	*	*	*	6043	0	0	
+
+G 150  3037	*	*	4376	*	621	*	*	*	*	*	4752	*	*	*	2809	*	*	*	*	150
+       0	*	*	1000	1000	*	*	5393	1000	0	
+
+Y 151  *	*	*	*	*	*	2490	*	*	*	*	2499	*	*	*	*	*	*	1159	2343	151
+       0	*	*	*	*	*	*	3475	0	0	
+
+Q 152  *	*	1489	*	*	*	*	*	*	*	*	*	*	2048	2573	2096	*	*	*	*	152
+       0	*	*	*	*	*	*	2910	0	0	
+
+G 153  *	*	*	*	*	384	*	*	*	*	*	*	*	*	*	*	2096	*	*	*	153
+       0	*	*	0	*	*	*	2910	0	0	
+
+//
+�HHsearch 1.5
+NAME  3efa288e683aab27e0db9e3baf300765
+FAM   
+FILE  3efa288e683aab27e0db9e3baf300765
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:25:08 2013
+LENG  219 match states, 219 columns in multiple alignment
+FILT  133 out of 1330 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  10.3
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEEEECCCEEEEECCCCEEEEEEEECCCCCCCCCCEEEEEEECCCCCCEEEEEECCCCCCCCCCCEEEEECCCEEEEEEEECCHHHCCEEEEEEECCCC
+CEEEEEEEEEEEECCCCEEEEECCCCEEEECCCEEEEEEEEECCCCCCCEEEEEECCEECCCCCCCCEEEEECCCCCEEEEEEEEECCCCHHHCCEEEEE
+EECCCCCCCEEEEEECCCC
+>ss_conf PSIPRED confidence values
+9299937972899789979999997078766678878999990899973799970454466778617875047657999950565549589999853888
+4241358999971132116896288517861982999999816779986899998998977775432036863898288899999824887769389999
+9968888228999845779
+>Consensus
+xxxvxxxxxxxxvxxGxxvxLxCxxxxxxxxxxxxxxvxWxxxxxxxxxxxxxxxxxxxxxxxxxrxxxxxxxxxxxLxixxxxxxDxgxYxCxvxxxxx
+xxxxxxxxlxvxxxxxxpxvxxxxxxxxxxxxxxxxlxCxxxxxxpxxxxvxWxxxxxxxxxxxxxxxxxxxxxxxxxxxxsxLxixxxxxxdxgxyxCx
+vxxxxxxxxxxxxxxxxxx
+>3efa288e683aab27e0db9e3baf300765
+DVVMTQTPLSLPVSLGDQASISCRSSQSLVHSNGNTYLHWYLQKPGQSPKLLIYKVSNRFSGVPDRFSGSGSGTDFTLKISRVEAEDLGVYFCSQSTHVP
+RTFGGGTKLEIKRADAAPTVSIFPPSSEQLTSGGASVVCFLNNFYPKDINVKWKIDGKERQNGVLNSWTDQNSKDSTYSMSSTLTLTKDEYERHNSYTCE
+ATHKTSTSPIVKSFNRNEC
+>gi|34536129|dbj|BAC87548.1| unnamed protein product [Homo sapiens]
+--------------DNSPVVLACLITGYH--PT-SVTVTWYMGTQSQP-----------QRTFPEIQRRDSYYMtSSQLSTPLQQW-RQGEYKCVVQHTA
+SK----SKKE------I---------------------------FR-------WPESPKAQASSV-PTAQPQAEGSLAKATTAPATTRNTGRGGEEKKKE
+KEKE----------------
+>gi|118129764|ref|XP_001233426.1| PREDICTED: hypothetical protein [Gallus gallus]
+--KIMPPNKPVVGVIGKGVVLPCQLEAKT----VSERLlvQWif--TGKSPNigvTTYDGINTLnpvREEKTYQGRthfFQSEVNRGNLSLHLKNVMLSD
+KGKYICFV-SLENWYDEVVVDLDVAAQSE-eSEVFL-----DGHMGQGIGLTCKSQGWFPQP-EVIWLdSKGQTRKE---KVVTqSLQTSSGLFDVVSSM
+TLEPGS---DMEVSCRIVNDLLNTACES-------
+>gi|242010303|ref|XP_002425908.1| beat protein, putative [Pediculus humanus corporis]gi|212509884|gb|EEB13170.1| beat protein, putative [Pediculus humanus corporis]
+---------PKIIDVRESGILTCEFDLENGK---LYSVKWYK----NDLEFFRFMPNGNPIvqifKVDG-INLTdKDCNMTTVVLNRLEFTTSGLYTCEV
+STegPYFKTVQTSSNMTVLGiPEKNPTITG--IENIYNVGDYVRGNCTSDLSYPVS-NIDWYINDNKVESWQLEKYPVIIFNDKMIISTLGISF------
+---------------------------
+>gi|185135274|ref|NP_001118211.1| macrophage colony stimulating factor receptor-like [Oncorhynchus mykiss]gi|34392449|dbj|BAC82552.1| macrophage colony stimulating factor receptor [Oncorhynchus mykiss]
+--SVLIEVDGYVSIVGEELRIPCITSNPNH----FYNVTWKHSSLKA------------LNFFQTVIQDKQVHITSTVTIPAVTMSDTGNFTCTAMNE--
+--AGASRSTIYLEVVDEPYIRFIPRlspnlyqNGSLVNvkeGENLEISILIEAY-PQIKKHWWDVPMSHSQNIS--THgDTWTA-QDNNRYESSLLLHRV
+RSEERGQYTLHTRSTRLNSSITFNI-----
+>gi|327265502|ref|XP_003217547.1| PREDICTED: macrophage colony-stimulating factor 1 receptor-like [Anolis carolinensis]
+--KIGLIVKGFIIFYYIFTYFFVTAHCIVL----AFGSY-----CKC------------HIKLELSFK-----------------------ICILTK---
+-----KQSALIKTINTPISVTIGAKDNVRIQGEPFNISCNV-SY-PSFGyQIRWDYPSTANVSLE-SRESFDDS-SESYNTQHILSIPAVQLNDSGKYTC
+FASTNARVSNSSANL-----
+>gi|170037717|ref|XP_001846702.1| fasciclin [Culex quinquefasciatus]gi|167881048|gb|EDS44431.1| fasciclin [Culex quinquefasciatus]
+GLTVRDD-----TEGd-VSDSRFTVA---------AAATPSTtFTLPSSSQQVALTPGQPAANGL-QYFGEGYQKGQCGV--tiDRITTAHNGQVKCSVF
+vDGLSAE----glIDVVVAVSPSQPTIQLEPETTYFEAGKQITAHCV---ttgG-nPDP-QLAWFLE-nDPIYDG----Vdk-qqdFEQDGTTGTAL--T
+L-rRIINGNDN-gKRLICQARHLAYpEGSSQTSL-----
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+D 1    *	*	2602	3289	*	*	4197	*	*	4183	*	4302	4117	1520	4113	4206	4197	*	*	*	1
+       0	*	*	*	*	*	*	6962	0	0	
+
+V 2    3247	*	5183	5150	5443	*	*	2879	*	1667	5512	5486	3675	5386	4154	*	4027	3305	*	*	2
+       0	*	*	*	*	*	*	8775	0	0	
+
+V 3    4528	*	4694	4043	5760	5794	*	*	3505	*	*	5595	*	3078	3681	2445	3082	2353	*	5764	3
+       0	*	*	*	*	*	*	9591	0	0	
+
+M 4    5952	*	*	*	4434	*	*	2640	5533	1897	5907	*	5652	5820	*	4953	*	1386	*	5799	4
+       20	6160	*	0	*	*	*	9817	1000	0	
+
+T 5    5791	*	4283	3580	6086	5932	4274	3157	5026	3940	*	4889	6100	4143	6096	2969	1950	4314	*	*	5
+       0	*	*	*	*	*	*	9661	0	0	
+
+Q 6    4899	*	6115	4171	*	4477	5209	5021	5218	3709	4466	5126	3194	1802	3942	5884	4121	3928	*	6018	6
+       298	*	2420	*	*	*	*	9905	0	0	
+
+T 7    3586	6132	6143	4325	*	5930	6366	4927	5230	5230	*	4397	2512	6093	5840	1963	3106	3378	*	*	7
+       0	*	*	*	*	123	3616	9841	0	2972	
+
+P 8    4357	*	5419	4835	6102	4093	6490	*	5222	4701	*	6616	1190	3506	5227	3204	4400	5369	*	*	8
+       39	*	5212	*	*	*	0	10215	0	1012	
+
+L 9    3943	*	4921	3221	6425	4394	4953	6707	3782	4238	6216	4217	2708	4133	3817	2979	4225	5345	*	6070	9
+       54	5321	6425	553	1651	1629	564	10200	1169	1408	
+
+S 10   3686	*	4402	4743	4539	4543	4378	5914	4986	3730	7113	4259	3081	4433	5632	2852	4172	3747	6573	4131	10
+       12	*	6961	*	*	1499	630	10332	0	1404	
+
+L 11   4643	*	6859	4226	5594	6697	6768	3279	5678	2490	6484	6928	5546	3222	4706	6393	4865	1620	*	*	11
+       0	*	*	*	*	0	*	10412	0	1357	
+
+P 12   4393	*	4170	4508	4431	6444	4864	3495	5668	4443	5229	3828	5170	3827	4446	3664	2689	3326	*	4987	12
+       0	*	*	*	*	*	*	10504	0	0	
+
+V 13   2236	*	*	5811	5717	4014	*	3039	4594	3172	6555	6724	*	6605	5845	6413	5024	1622	*	*	13
+       12	6924	*	0	*	*	*	10534	1000	0	
+
+S 14   4376	*	5265	4856	3849	5899	4874	6694	3828	3264	4367	5453	3797	4179	3778	3628	5353	2918	5161	4324	14
+       0	*	*	*	*	*	*	10613	0	0	
+
+L 15   4765	*	4905	2021	*	6685	6669	4716	5050	2998	*	6695	3738	4969	3843	3849	3686	3145	6975	5943	15
+       0	*	*	*	*	*	*	10686	0	0	
+
+G 16   *	*	4287	3722	*	591	5112	*	4903	*	*	4346	*	5172	4835	5832	6743	*	*	6961	16
+       0	*	*	*	*	*	*	10676	0	0	
+
+D 17   4378	6858	2373	2378	6978	3182	5761	6997	3460	5933	*	3697	*	3536	7135	3475	4703	7070	*	*	17
+       9	*	7264	*	*	*	*	10746	0	0	
+
+Q 18   4554	5930	3495	3598	6131	5317	6928	*	4998	5410	*	3788	2895	4559	4261	2442	2717	5545	*	6878	18
+       13	6804	*	2322	322	0	*	10774	1000	1000	
+
+A 19   2381	*	*	6903	5071	6971	*	3531	7070	2652	5817	*	*	6119	*	*	4941	1227	*	5881	19
+       0	*	*	*	*	*	*	10746	0	0	
+
+S 20   4173	*	*	3309	6852	*	7117	3841	4691	4455	7304	3800	5601	3827	4996	3679	1797	3829	*	4754	20
+       0	*	*	*	*	*	*	10746	0	0	
+
+I 21   6227	*	*	*	3216	*	7784	2753	6858	766	5124	*	*	*	*	*	*	3312	*	*	21
+       0	*	*	*	*	*	*	10746	0	0	
+
+S 22   4599	*	4998	4768	6012	4751	3955	5412	4972	5031	*	4079	2946	4826	3758	3110	2367	3787	*	7070	22
+       0	*	*	*	*	*	*	10746	0	0	
+
+C 23   *	120	*	*	*	*	*	6877	6858	5966	*	*	*	*	6212	*	*	5398	*	6738	23
+       0	*	*	*	*	*	*	10746	0	0	
+
+R 24   6003	7784	6107	3346	5418	5419	4664	6744	3708	3734	5581	3449	5288	4266	3505	2711	3219	4309	*	5009	24
+       13	6770	*	1000	1000	*	*	10746	1024	0	
+
+S 25   2761	6767	*	6803	4357	*	5729	3176	7343	3321	5988	4363	5559	5925	*	4392	4100	1931	*	3651	25
+       23	*	5963	*	*	*	*	10746	0	0	
+
+S 26   4453	*	3244	4495	6017	5369	4074	5552	4473	4661	5792	4708	3882	4314	4222	2723	2742	5329	6206	4956	26
+       52	5088	7341	1495	632	*	0	10721	1453	1177	
+
+Q 27   4200	6974	3149	4631	6879	1858	5597	*	5402	4074	6632	3828	3672	6111	4872	3830	3808	4971	*	6031	27
+       61	6632	4987	0	*	1791	492	10719	1169	1319	
+
+S 28   3796	7134	4034	4335	3897	4365	5667	3711	4194	4202	*	4690	3805	5032	5338	2650	4618	4173	6902	4053	28
+       156	*	3285	*	*	2539	272	10690	0	1871	
+
+L 29   3822	*	4125	3734	4027	4163	4918	5085	4173	3863	6860	3982	2693	6701	*	3741	3798	3909	*	4519	29
+       1248	*	789	*	*	3301	154	10567	0	3585	
+
+V 30   4463	4777	6082	3277	3962	4859	4026	*	*	3038	*	4762	2615	5895	6413	3120	5522	3560	5301	4541	30
+       471	*	1844	*	*	*	0	9243	0	8689	
+
+H 31   4275	*	3516	2873	5091	5056	5207	5102	2766	3602	5088	5093	5197	3438	4030	*	3611	4103	*	*	31
+       1245	*	791	*	*	2498	281	8373	0	9284	
+
+S 32   3965	4880	3397	3667	*	*	3906	*	*	4730	*	4790	1265	4920	*	3275	*	4820	*	*	32
+       219	3829	3824	553	1650	4410	70	8026	1208	9422	
+
+N 33   3364	*	2305	4963	*	2940	*	4134	*	3397	*	4101	*	3928	4165	3312	3810	4859	*	*	33
+       700	5022	1500	0	*	3477	136	8220	1000	9330	
+
+G 34   3932	*	2524	3492	*	3890	*	*	4041	*	4804	2759	4741	3764	*	3225	2815	*	*	*	34
+       0	*	*	*	*	86	4113	7892	0	9434	
+
+N 35   3855	*	3638	3931	5301	4374	4253	4896	4213	3755	*	3414	3462	5094	4724	3156	4178	3826	7004	*	35
+       45	5266	7745	1008	992	997	1003	10713	1370	1809	
+
+T 36   3888	*	4957	5780	4989	4108	5131	4520	5315	2800	5316	5506	2636	5877	4994	4945	3762	3181	6990	3816	36
+       21	6098	*	819	1206	582	1590	10736	1291	1568	
+
+Y 37   4482	*	5127	3489	6985	4286	5402	4878	3875	4890	5368	3804	5371	3684	4203	2878	3084	4986	*	3620	37
+       0	*	*	*	*	*	0	10764	0	1073	
+
+L 38   6732	7046	6827	6832	3207	6750	6798	2126	6070	2792	5160	*	7021	*	5975	6042	6780	1708	5942	4256	38
+       9	*	7346	*	*	*	0	10764	0	1073	
+
+H 39   4485	*	*	4685	3996	*	3903	4187	3578	5777	*	4157	*	3280	4823	2982	2284	5489	*	3615	39
+       47	6102	5846	1774	499	1197	826	10752	1141	1266	
+
+W 40   6801	*	*	*	7306	*	*	6764	*	5113	*	*	*	*	*	*	6739	5260	185	4982	40
+       148	4575	4173	897	1111	*	0	10735	1718	1471	
+
+Y 41   6700	5854	6754	5391	3084	6626	4310	4629	4484	3641	4534	4044	*	5310	4209	5263	4477	4269	5453	1903	41
+       88	5344	4866	1888	454	2943	201	10678	1589	2630	
+
+L 42   *	6750	5789	5205	5363	5834	5219	6777	1846	4250	5465	6000	5394	5251	1856	5702	6011	3559	4831	5809	42
+       328	5588	2453	1081	923	1373	704	10647	1242	2969	
+
+Q 43   5305	6452	3027	3227	*	3249	3507	6518	3985	5753	6507	3414	6379	2540	5279	4166	4698	5195	*	6374	43
+       51	5269	6859	1723	521	2662	248	10467	1268	5046	
+
+K 44   5227	5851	3083	4687	4658	3023	5544	5621	3372	4876	6764	3623	4771	5635	3805	3365	4117	3812	*	5676	44
+       18	6341	*	1000	1000	810	1219	10500	1024	4619	
+
+P 45   4053	5788	2946	4334	6148	3287	6622	6642	3701	4154	*	4067	2681	4770	4860	3433	6648	4099	*	5333	45
+       57	5994	5438	0	*	2422	298	10609	1157	2661	
+
+G 46   4025	*	3888	4962	6919	1676	5412	5820	3703	4681	7050	3723	5253	5267	4914	3642	4003	5876	*	4935	46
+       64	7005	4817	0	*	1421	674	10623	1012	2766	
+
+Q 47   4494	5923	3815	3142	6002	4224	4791	4795	3020	3653	*	4969	4343	3232	4396	4315	3982	4007	*	*	47
+       153	6959	3434	0	*	2289	330	10626	1027	2718	
+
+S 48   2574	*	4666	3254	6134	3165	6796	3891	3876	3908	5549	4604	3992	5693	5157	4005	3633	5216	*	6895	48
+       152	4417	4236	722	1344	2674	246	10513	1663	3930	
+
+P 49   4005	5843	5104	4500	5356	5696	*	4185	5163	2574	7028	5234	2231	5230	5178	3875	3883	3121	*	*	49
+       98	*	3935	*	*	4569	62	10469	0	4404	
+
+K 50   4664	*	4687	2891	5632	4017	6596	5099	3492	5520	*	4246	5720	3272	4346	2869	3137	4361	*	4998	50
+       98	5844	4381	4253	78	4391	70	10401	1112	5057	
+
+L 51   3998	*	4928	5557	3109	4358	4677	3808	5571	3054	5017	4638	5603	4614	3542	4490	4147	3453	4154	*	51
+       92	*	4023	*	*	3252	160	10464	0	5391	
+
+L 52   4752	7147	4633	5674	3822	4362	*	2679	4248	2351	4884	5583	4835	*	4590	5181	4202	2970	*	5011	52
+       16	6466	*	0	*	4097	87	10298	1002	5643	
+
+I 53   3162	5504	5573	5499	5600	4414	*	2669	5394	2713	5414	6063	6454	6603	5704	4143	3337	3110	6475	4055	53
+       288	4884	2768	1876	459	*	0	10326	1566	5435	
+
+Y 54   4000	*	4687	5280	3055	4673	4266	5619	4056	4934	6165	5122	*	4764	5402	3490	3919	4402	5022	2238	54
+       134	5387	3944	0	*	5565	31	10209	1175	6749	
+
+K 55   4423	6200	3445	4672	4303	3285	*	4250	3621	3433	3939	4541	6291	5149	6117	4326	3837	4144	6238	3719	55
+       19	6285	*	1585	585	*	0	10068	1087	7065	
+
+V 56   4063	*	3361	4772	5314	3139	4932	*	3092	4681	*	3612	3971	5158	5146	2906	4083	4694	*	4456	56
+       26	5783	*	1744	512	*	0	10068	1277	7065	
+
+S 57   *	*	4227	4430	5078	3087	*	4693	3791	6324	4175	3948	4209	4008	3776	2818	3122	6235	*	4317	57
+       694	1540	4721	1958	429	5236	39	10050	4851	7169	
+
+N 58   4566	*	4562	3377	6682	4581	4585	4594	4601	4216	*	2464	4176	3292	5035	3379	3903	5285	*	4972	58
+       46	4981	*	2046	400	5711	28	10022	1211	7268	
+
+R 59   4614	*	4608	3690	4260	4207	5215	3883	4039	5140	*	3832	4226	3582	3544	3663	4662	3347	*	4614	59
+       35	5368	*	2000	415	2063	395	10039	1116	7193	
+
+F 60   3890	6538	4443	2919	4854	3405	4494	4070	5037	4704	5626	6391	3887	3444	4808	3792	4241	4345	6283	5191	60
+       61	6274	5142	2322	322	2309	325	10366	1014	6160	
+
+S 61   4950	*	3916	2822	4775	3512	5731	4984	3889	5384	5397	4489	2890	3540	4104	4473	3847	4959	*	*	61
+       137	4037	5061	1566	594	5182	40	10353	2036	5700	
+
+G 62   3902	*	3855	3867	*	2375	*	5656	3712	5033	4180	3432	6526	3743	6425	3055	3175	*	*	*	62
+       0	*	*	1000	1000	727	1338	10435	1001	5955	
+
+V 63   4455	*	5884	3847	3068	*	5796	3649	5770	3157	6964	4490	5749	4277	4802	4612	3490	3519	*	2787	63
+       119	4462	4884	1718	523	2446	293	10613	1661	3269	
+
+P 64   3726	*	3239	4078	5086	6064	5310	6742	4013	5026	5721	3935	2673	4406	3946	3066	3663	4793	*	*	64
+       50	5207	7132	1299	753	1451	657	10614	1525	3420	
+
+D 65   5713	6908	3908	2785	5274	2166	5755	7093	4138	4758	*	3331	4338	4854	4115	3568	4351	6708	*	6865	65
+       90	4471	6017	2394	305	2467	288	10690	1998	2686	
+
+R 66   5759	*	5133	4782	*	4903	5488	6699	2913	6782	6620	4136	4848	4610	1386	4072	7204	4096	5410	4804	66
+       123	3962	5815	945	1057	2650	250	10684	2175	2642	
+
+F 67   3858	*	5863	4796	2660	5689	4253	3756	5792	3508	5317	6845	*	4508	6040	5762	4145	3013	5491	2701	67
+       33	6062	6980	1308	746	2347	316	10671	1361	2886	
+
+S 68   4523	7004	4836	4017	7190	4193	3986	5636	4135	6775	*	3788	5816	3758	4353	2376	2782	4015	6938	5631	68
+       78	7025	4477	0	*	2126	375	10673	1000	2693	
+
+G 69   3218	*	5164	4256	4888	3133	5856	3235	6964	3679	5319	4695	5057	*	5143	3484	4300	2559	5777	7683	69
+       74	6954	4571	1585	585	2644	251	10593	1000	3169	
+
+S 70   5767	*	4512	4441	5444	3259	*	4832	3747	3846	5110	3553	5103	6760	4075	2431	2966	4627	*	5676	70
+       710	1364	*	1104	903	1750	509	10556	6381	3531	
+
+G 71   6796	*	4290	4028	4793	3250	4432	4526	3455	3429	4821	4700	3813	5235	4849	4208	2881	3887	*	*	71
+       115	*	3700	*	*	2613	258	10622	0	2807	
+
+S 72   5807	*	2761	3438	5742	5216	4646	4381	4268	4142	*	3540	5968	3761	4558	3204	3633	4514	6759	4643	72
+       77	5039	5557	750	1303	3324	152	10520	1379	3746	
+
+G 73   3926	6757	4149	3287	6574	3252	4787	5693	3779	4671	5840	4060	5729	4116	4236	3717	3104	5914	5788	4352	73
+       99	4367	5785	991	1009	2159	366	10497	1954	3836	
+
+T 74   4024	5644	3914	5641	6954	2499	6847	5701	3690	5882	5626	3041	5155	5099	4093	3114	3086	5714	*	6067	74
+       39	5222	*	972	1029	1108	900	10568	1374	3519	
+
+D 75   5009	*	2651	4128	4535	5961	4680	5147	5212	*	4598	3347	6139	3730	5109	2541	3187	4581	6911	6751	75
+       28	6688	6761	3907	100	581	1592	10612	1054	2504	
+
+F 76   3374	3911	*	6039	3213	3913	5908	5915	7306	3780	*	5460	5848	*	4323	2279	4457	4171	5141	3187	76
+       13	6780	*	0	*	2261	338	10681	1000	1630	
+
+T 77   5901	*	4691	4647	5412	4014	4955	6646	5475	7692	6198	3926	6784	3822	3999	1953	2508	3800	*	5500	77
+       31	6107	7238	2000	415	*	0	10691	1185	1466	
+
+L 78   6742	*	*	*	4105	*	6827	3483	*	616	5396	*	6803	*	*	*	5142	3516	7139	5249	78
+       0	*	*	*	*	2429	296	10695	0	1608	
+
+K 79   4349	6910	5550	3726	5260	6821	4374	3890	4374	3921	7298	4190	4968	4101	3789	3867	2775	3306	5932	5320	79
+       7	*	7692	*	*	*	0	10691	0	1466	
+
+I 80   *	*	*	*	4839	*	*	1213	5905	1708	4419	*	6938	*	*	6881	6699	3142	5791	7264	80
+       0	*	*	*	*	*	0	10684	0	1706	
+
+S 81   4307	6999	3630	4898	*	6823	4855	*	3517	4105	*	3953	3482	4014	2498	2893	3871	6707	6861	5365	81
+       38	6770	5916	0	*	*	0	10684	1022	1706	
+
+R 82   4437	6884	3667	4904	6873	4432	5343	*	3959	5934	*	2027	3807	4543	3557	2870	3971	6764	6886	6621	82
+       0	*	*	*	*	2552	270	10655	0	2078	
+
+V 83   2450	6919	6966	6780	5487	6088	5867	3401	*	2488	*	6691	5292	*	6947	3161	4128	1987	*	*	83
+       0	*	*	*	*	*	0	10674	0	1874	
+
+E 84   6042	*	4358	3295	*	4439	5436	7130	3703	4769	*	4456	6000	2640	3349	3101	2496	5021	*	*	84
+       83	5405	4941	1933	438	2589	262	10674	1309	1874	
+
+A 85   4387	6668	6137	3885	4361	6699	4660	3969	3576	3060	6951	*	3050	5372	4901	4121	3885	3174	3785	*	85
+       82	6087	4623	4454	67	*	0	10647	1389	2333	
+
+E 86   4528	*	3406	2179	7299	4470	*	*	3325	5926	5991	3345	6585	4364	4880	2481	3836	*	5826	*	86
+       40	5201	*	0	*	1400	687	10604	1431	3107	
+
+D 87   5761	*	570	4244	7002	*	3597	*	5227	5892	*	5554	*	5363	5872	5319	5329	*	*	6823	87
+       24	7066	6793	0	*	1681	539	10664	1000	2305	
+
+L 88   3497	*	4147	2859	*	3751	5681	6681	5827	5103	6091	5959	6701	4380	6989	1784	2873	5783	*	5282	88
+       0	*	*	*	*	1579	588	10661	0	2037	
+
+G 89   2726	*	4959	7008	*	780	5907	*	4516	5787	*	5935	*	6939	4949	3926	6782	5950	*	*	89
+       49	4916	*	554	1649	2160	365	10675	1513	1646	
+
+V 90   6208	5067	5361	3235	5830	6823	7006	3629	4480	3537	4192	4486	6181	3954	4636	4374	2496	3528	5785	4970	90
+       40	5210	*	716	1354	1735	515	10684	1444	1466	
+
+Y 91   *	*	*	*	2825	*	4821	4717	*	5902	*	*	*	*	*	*	*	4396	6997	487	91
+       0	*	*	*	*	1014	986	10703	0	1276	
+
+F 92   6073	*	*	3555	4571	*	5473	3646	3500	3819	7035	*	*	4482	3707	3766	2416	4710	4937	2882	92
+       0	*	*	*	*	*	0	10724	0	1051	
+
+C 93   6937	150	*	*	5918	*	6711	*	*	5345	6958	*	*	*	*	*	*	4981	*	*	93
+       0	*	*	*	*	*	0	10724	0	1051	
+
+S 94   3485	7308	6120	2811	*	6835	6122	3934	4060	3888	5368	6006	*	3535	2995	4027	3169	3217	*	*	94
+       36	7107	5845	0	*	*	0	10724	1000	1051	
+
+Q 95   1869	*	*	*	5362	5293	5961	3840	6907	3616	5003	7093	*	5385	6959	5275	4205	1514	*	*	95
+       68	4990	6072	2365	311	*	0	10700	1646	1435	
+
+S 96   4538	*	3982	3255	4915	4355	5288	4632	4290	4565	7017	4232	*	4750	4578	2686	3250	4242	4535	4289	96
+       244	2859	5836	1406	684	*	0	10697	3535	1753	
+
+T 97   4542	7140	3295	4850	5182	5371	2680	4856	4561	4832	*	2853	6334	4652	4240	3752	3594	3858	*	5367	97
+       146	3625	6016	1177	842	*	0	10670	2371	2080	
+
+H 98   3596	6938	3854	5219	6767	2497	7008	6740	3392	3800	6815	4603	2700	5256	5344	3166	4330	5887	*	6667	98
+       500	3787	2182	1059	943	3036	188	10614	2450	2607	
+
+V 99   4476	*	4583	3521	6376	2895	5929	6374	5488	4114	5552	3510	4878	6365	4446	2401	4248	4194	5470	4294	99
+       242	3344	4163	853	1164	781	1259	10336	2571	5738	
+
+P 100  4025	*	3733	4148	4341	3322	5098	4854	3302	3204	6783	4650	4035	4948	4669	3984	3890	4789	*	4817	100
+       87	5081	5100	1862	464	*	0	10512	1378	3960	
+
+R 101  4357	6966	3888	3872	4676	3565	6581	4422	3611	3948	6147	4838	4697	4306	4301	3139	3497	3657	*	6697	101
+       11	*	7065	*	*	*	0	10476	0	4342	
+
+T 102  4781	6683	6827	3271	6521	5456	5593	3828	3594	4464	*	5961	4632	3886	4323	3945	2910	2707	*	3977	102
+       29	6450	6866	2000	415	1683	538	10460	1057	4448	
+
+F 103  3241	6522	5820	3900	2694	7122	4397	4145	5470	3325	5395	*	5809	4414	4165	4897	4022	3277	5161	4639	103
+       12	6910	*	3807	107	1919	443	10550	1000	3586	
+
+G 104  4131	*	4862	3137	6715	2114	*	6030	4947	5332	7014	4095	4784	4171	5275	2489	3855	4303	*	*	104
+       129	5390	4016	1384	697	802	1230	10606	1321	2935	
+
+G 105  3336	*	4829	4517	*	3526	5688	4549	2792	4869	6839	3737	4029	4068	5173	3948	3148	4076	6716	5976	105
+       19	*	6221	*	*	987	1013	10593	0	2904	
+
+G 106  3308	*	3995	4567	6979	2565	5452	4260	3648	5762	6281	3924	5849	4212	4067	3441	3113	5769	*	6918	106
+       21	6144	*	3113	177	*	0	10701	1125	2140	
+
+T 107  3429	5716	5531	3742	4602	5085	7172	3380	4404	4303	5144	6662	7106	5847	3944	3444	2334	3586	*	5709	107
+       23	6918	7111	0	*	762	1285	10701	1000	2140	
+
+K 108  4879	6838	4618	3111	5924	6816	4832	4357	3136	4651	*	5001	5671	3706	3042	3414	3141	5631	5324	4761	108
+       0	*	*	*	*	*	0	10699	0	1537	
+
+L 109  5431	6670	7090	5936	4939	5832	*	3105	4681	1393	5352	7014	6017	6779	4895	6115	4655	2342	*	6024	109
+       11	*	7041	*	*	1140	872	10699	0	1537	
+
+E 110  4419	*	5454	4176	4628	5289	4570	4081	3420	4845	5810	3702	5319	4824	4125	3774	2615	3768	*	4119	110
+       14	6714	*	5807	26	*	0	10721	1044	1421	
+
+I 111  5204	*	7096	5765	5550	7334	*	2745	*	3069	*	7062	5908	4481	6697	5478	5758	1014	6053	5523	111
+       66	6655	4839	4248	78	1865	463	10721	1029	1421	
+
+K 112  3782	*	5945	4338	4355	6772	5880	3716	3452	2386	*	4519	4349	4403	4321	4212	3595	4552	*	4098	112
+       138	4689	4260	992	1008	*	0	10710	1755	1970	
+
+R 113  2998	*	3690	3036	6029	3277	6767	5898	3502	4871	5622	*	4871	6958	3352	4059	5257	3094	6635	4847	113
+       869	1462	3482	1666	546	2466	288	10587	6157	2944	
+
+A 114  3358	*	3766	5096	5801	5488	5680	3995	3515	3520	6632	5570	2735	5205	5603	3641	3869	3251	*	5646	114
+       29	6878	6419	2000	415	526	1710	10509	1000	4051	
+
+D 115  4218	6640	3943	4083	5854	4117	5221	5758	4664	4461	6823	5331	2582	3866	4512	4317	3455	2880	*	5892	115
+       25	5885	*	3601	124	167	3192	10620	1180	2149	
+
+A 116  3410	6852	4446	3446	4152	4663	5845	4693	3620	4435	*	*	4184	4093	4286	3623	3360	3027	*	6144	116
+       78	4468	7072	2436	295	*	0	10734	1757	1000	
+
+A 117  2786	*	4637	3897	6224	4552	5132	5571	2850	5006	6946	4380	2651	4418	4661	3823	4436	4437	*	7037	117
+       10	7132	*	2322	322	*	0	10720	1027	1181	
+
+P 118  4103	*	5787	4861	4187	4995	*	4410	5454	5001	*	*	874	5827	6786	4403	5035	5307	*	5232	118
+       11	7092	*	2000	415	*	0	10720	1000	1181	
+
+T 119  3726	*	4159	3462	6688	6000	*	5416	3054	4449	*	4922	4597	4016	5472	2456	3285	3518	*	4965	119
+       11	7102	*	2585	263	1249	788	10720	1000	1181	
+
+V 120  6122	6700	6901	*	5406	*	*	2211	6810	2609	5104	6824	4148	4829	*	5200	4357	1547	7021	*	120
+       24	*	5946	*	*	*	0	10719	0	1030	
+
+S 121  4881	*	3810	3275	4205	6766	5200	4581	4388	4230	7273	5491	5213	4976	4037	2345	3119	5136	*	3851	121
+       109	5437	4330	1996	416	*	0	10688	1398	1360	
+
+I 122  4614	*	5781	5844	5255	4654	6303	2434	4040	2749	4548	*	4327	5322	*	4424	4584	2284	6157	5313	122
+       52	7019	5189	0	*	1673	543	10639	1000	2331	
+
+F 123  7209	*	6584	4113	3425	4961	4134	4026	3585	2478	5004	4507	5437	4570	5009	3146	4208	4950	5833	5046	123
+       67	5116	5926	2519	277	3232	162	10654	1423	2375	
+
+P 124  3656	*	5862	3680	6855	4252	5063	7166	3693	4240	*	4933	2430	4531	3528	2990	4276	5095	7176	4826	124
+       11	*	6985	*	*	2507	279	10624	0	2561	
+
+P 125  5899	6801	5177	4090	6768	3922	6511	5150	3565	3645	6458	4976	2149	3675	5962	2666	4487	4500	*	*	125
+       77	*	4260	1000	1000	945	1057	10612	1017	2408	
+
+S 126  3921	*	3526	3947	6555	6605	*	6775	3768	4971	5162	5021	2996	4322	4493	2221	3296	5169	*	5357	126
+       77	5832	4863	1585	585	2219	349	10627	1177	2602	
+
+S 127  5988	5338	5491	3672	6836	4243	5186	4049	4639	3211	*	3498	3376	4803	3857	3128	4314	3225	*	*	127
+       86	5787	4662	1585	585	3996	93	10637	1194	2993	
+
+E 128  4451	*	4885	3084	5280	*	5897	4436	3867	3437	4512	5676	4228	4431	4735	2688	3765	3141	6616	*	128
+       48	7111	5278	0	*	1546	605	10499	1000	3765	
+
+Q 129  4280	*	3809	3023	*	4214	*	3955	5400	3105	6810	5280	5919	4233	5895	4218	2612	3392	*	4007	129
+       79	*	4237	1000	1000	2321	322	10527	1001	3275	
+
+L 130  4507	*	5729	4519	4824	5784	5852	2843	4099	2624	3698	4695	4644	4808	4308	4509	5739	3232	5914	4819	130
+       126	3854	6084	720	1347	1839	473	10541	2060	3788	
+
+T 131  3483	*	4258	2760	*	5873	5437	7118	3356	3920	5116	4745	3816	5680	3261	3450	4825	3161	*	*	131
+       111	4165	5777	2312	324	683	1407	10580	1843	3297	
+
+S 132  4083	6604	3684	3503	*	1393	5726	6969	*	4769	6927	4157	4887	4374	6727	4626	4500	4205	6863	5864	132
+       132	3866	5724	1165	852	435	1941	10644	2138	2164	
+
+G 133  5108	6912	2983	2586	*	2017	6334	7095	4079	5810	*	3566	5471	3308	5983	4084	5954	5766	*	6856	133
+       396	2058	*	250	2651	2081	389	10691	5157	1623	
+
+G 134  4889	*	3709	2764	*	7027	5271	5886	3845	5825	6633	3312	3600	5497	5562	2652	2894	4097	6962	6932	134
+       23	5973	*	2975	196	1275	769	10699	1207	1603	
+
+A 135  2286	6834	*	6910	4576	5358	*	3634	6762	3266	6717	5037	5221	5967	5057	5951	4682	1678	6541	5227	135
+       0	*	*	*	*	*	0	10717	0	1286	
+
+S 136  5270	*	4861	3782	7133	6541	6973	4363	5133	4377	5438	3476	5888	4612	4424	3203	1865	3230	6803	*	136
+       10	*	7133	*	*	856	1160	10717	0	1286	
+
+V 137  4153	*	7142	6834	2802	6954	6807	2841	*	1101	4989	*	*	*	8005	5937	*	3260	*	7454	137
+       11	*	7093	*	*	1009	991	10714	0	1235	
+
+V 138  5519	*	5425	4333	*	5499	6216	4323	4248	3796	5810	3627	4930	4434	3449	3047	2328	3649	*	5272	138
+       17	7019	8008	1000	1000	*	0	10707	1000	1225	
+
+C 139  6037	97	*	*	*	*	*	*	*	6567	*	*	*	*	6891	*	6965	5954	*	7237	139
+       23	5957	*	992	1008	605	1545	10650	1362	1425	
+
+F 140  4210	6008	4516	3416	5095	7147	5466	4210	5056	3336	4649	4308	6078	3304	4359	3556	3019	3865	8010	6055	140
+       23	*	5980	*	*	*	0	10724	0	1030	
+
+L 141  2256	4940	*	7007	5020	6591	*	3408	*	3754	*	6620	5826	*	*	3174	4961	1802	6756	3756	141
+       115	4463	5002	295	2434	707	1368	10708	1905	1356	
+
+N 142  4758	*	3546	3576	7287	4670	4787	*	3868	5132	*	4572	4643	4420	4106	2244	2662	4544	*	5978	142
+       59	5362	5980	1874	460	689	1397	10624	1428	1704	
+
+N 143  3384	*	2997	5177	6839	1799	4926	*	5996	5400	*	3604	6058	6021	4160	2862	4574	6670	5860	6987	143
+       13	*	6806	*	*	396	2058	10653	0	1521	
+
+F 144  4375	*	5288	7137	2255	3044	7146	4379	4671	4124	6935	5559	5003	4401	6856	3575	3780	3898	5932	3646	144
+       359	6674	2247	1000	1000	*	0	10721	1029	1171	
+
+Y 145  5560	5521	4650	*	2854	5588	6438	5505	3385	6551	*	3711	3859	6339	3787	2909	3910	5769	6097	2685	145
+       184	4786	3579	323	2316	266	2571	10352	1588	4939	
+
+P 146  7110	*	5121	4548	*	5814	*	6858	4860	4650	5624	5305	682	6612	5562	3619	5432	*	*	5984	146
+       74	5980	4873	1116	893	2190	357	10547	1313	3142	
+
+K 147  4081	6647	3125	2673	5812	4882	6017	6657	2953	5286	6680	5332	3308	4359	4181	4228	5174	3622	*	5268	147
+       172	4779	3718	731	1331	339	2256	10566	1850	3227	
+
+D 148  3019	6585	3358	3758	5134	4252	4467	6007	5682	5745	5670	3668	2155	4979	5778	3184	7025	7192	6888	6780	148
+       601	5241	1669	757	1292	3705	115	10625	1332	2700	
+
+I 149  3947	*	*	*	4727	5543	6118	2602	5210	2687	*	6165	3719	6050	6260	5345	3761	2170	5178	4368	149
+       37	6456	6141	0	*	72	4356	9975	1047	6719	
+
+N 150  5909	6700	4005	3387	4576	4795	4246	4813	4284	4911	6985	3382	6000	4049	4615	3330	2385	5365	*	5090	150
+       35	6045	6879	0	*	627	1505	10692	1163	1409	
+
+V 151  *	5933	6805	6705	3467	*	7034	2014	5943	2248	6664	*	6900	*	*	5988	6353	1861	6978	3982	151
+       0	*	*	*	*	*	0	10660	0	1222	
+
+K 152  7298	*	4659	4140	5518	6792	*	5510	3593	4988	5436	5826	7935	3820	3439	2199	2329	4088	6768	4730	152
+       13	*	6836	*	*	946	1056	10660	0	1222	
+
+W 153  *	7945	6795	*	4851	*	7321	7044	6120	5089	*	*	*	*	*	5401	*	7047	242	5793	153
+       24	*	5949	*	*	0	*	10666	0	1200	
+
+K 154  6407	7051	6963	4239	3140	*	5634	5052	3748	2423	4806	6704	6667	4206	7363	3843	3894	6203	4765	2378	154
+       139	4153	4821	1103	904	*	0	10670	1967	1180	
+
+I 155  4828	*	6686	4144	3764	*	5028	4441	2255	3922	*	4937	6665	4478	2022	6733	*	3547	6766	4837	155
+       121	3744	7422	3393	144	2882	210	10638	2246	1928	
+
+D 156  6629	*	2466	3375	*	2976	4625	7850	4880	5340	5822	1651	5926	5624	4736	4842	4767	*	*	*	156
+       23	*	6004	*	*	1570	593	10598	0	1961	
+
+G 157  6055	6642	3232	4239	6902	1406	*	*	6214	*	6870	3162	4840	5296	5437	3060	4593	6741	7092	4851	157
+       60	4942	6962	3678	117	594	1568	10585	1466	1896	
+
+K 158  4423	*	4641	2719	*	4048	5749	5894	2462	3994	7104	3415	*	4648	4379	4303	3512	3679	7167	6803	158
+       34	5404	*	1536	610	*	0	10627	1339	1351	
+
+E 159  4770	*	5077	2471	*	4912	6765	4657	3588	4126	6735	4095	3234	4731	4233	4565	3147	3777	6897	5085	159
+       47	7131	5327	1000	1000	1746	511	10627	1000	1351	
+
+R 160  *	*	5785	4122	4699	*	7296	2658	6995	1916	4465	4570	5260	4959	5075	4698	6119	2404	*	5008	160
+       69	5324	5510	1997	416	*	0	10603	1299	1699	
+
+Q 161  3905	*	3431	4315	5741	4252	5283	4068	4018	5086	*	4353	3720	3725	4829	2821	3268	4523	6720	6843	161
+       167	4400	4013	0	*	1444	661	10595	1774	2142	
+
+N 162  5770	*	3225	3361	6881	3756	7007	6440	3876	4479	*	3157	3129	4887	4429	2871	4137	5253	6767	5208	162
+       279	6919	2576	1585	585	3959	96	10487	1000	3044	
+
+G 163  4790	*	3510	3382	*	2178	4985	6403	4503	4565	5419	3425	4804	4513	4267	3692	5032	4278	6553	6482	163
+       86	*	4111	0	*	1533	612	10283	1054	5273	
+
+V 164  4304	*	5077	4262	4026	4380	5127	3415	4826	3697	4702	5069	4763	4999	5451	2926	3490	3431	5022	5624	164
+       982	5536	1082	508	1753	4031	91	10333	1180	4728	
+
+L 165  3982	*	4734	3530	4775	5758	5777	4088	5852	3139	*	4144	3635	5762	3291	3471	4131	3815	*	3760	165
+       193	5030	3399	0	*	292	2449	9257	1112	8416	
+
+N 166  6768	6319	4200	3061	4321	4546	5581	4463	3823	4878	5178	3963	4356	3794	3970	3241	3445	5694	*	4413	166
+       41	6512	5855	2807	222	2208	352	10465	1000	3687	
+
+S 167  4618	*	5221	4041	*	3706	5573	5769	3934	5464	6538	3661	5223	4155	3031	4055	2152	4726	*	4335	167
+       49	6947	5299	2585	263	2441	294	10479	1000	3403	
+
+W 168  4591	*	3944	4652	3143	4266	4429	4441	6730	3946	5581	3800	3957	6680	5023	2776	4460	3846	5786	4469	168
+       29	5672	*	0	*	*	0	10461	1206	3381	
+
+T 169  4786	*	4891	4210	5895	4624	5853	5803	3796	3052	6549	4375	3549	4669	3598	3185	3179	3514	*	5898	169
+       14	6706	*	2347	316	2126	375	10461	1179	3381	
+
+D 170  3647	*	4460	3893	5821	4273	4684	3928	3844	4410	*	4754	3152	5823	4334	3049	4046	3289	*	5944	170
+       13	6811	*	1581	587	3778	109	10497	1145	2856	
+
+Q 171  4174	6704	4831	3900	4137	5320	6754	3844	4092	3813	5285	5812	5166	3742	4029	3211	4022	2960	6674	5198	171
+       75	5237	5360	1200	824	*	0	10498	1339	2721	
+
+N 172  5831	*	4147	3238	5785	5164	4490	4234	3207	3438	*	4460	3537	3727	3573	3933	4853	3927	*	5738	172
+       24	5933	*	574	1607	3760	111	10454	1112	3166	
+
+S 173  3756	*	3056	2794	4858	5841	5095	*	4179	5983	6636	2762	5602	4930	3808	3356	4632	4505	6765	4803	173
+       171	3951	4402	1919	443	1923	442	10465	2125	3013	
+
+K 174  3349	*	3709	2513	*	3113	5087	5820	3700	5129	*	4071	6795	4887	4448	3501	3120	5648	6555	*	174
+       83	6581	4453	1000	1000	867	1147	10431	1158	3295	
+
+D 175  4711	5129	1847	4290	6530	3660	4930	6683	4865	5708	*	3345	4068	5966	4472	2874	4845	5155	*	*	175
+       76	*	4275	*	*	*	0	10487	0	2804	
+
+S 176  5289	*	5209	3240	6637	1356	*	*	3627	6812	5587	2643	6513	5691	*	3578	5207	6460	5826	*	176
+       86	5869	4616	0	*	1654	551	10411	1175	3630	
+
+T 177  5256	5611	5620	4203	4728	5819	*	4848	3538	3049	5746	3673	*	6937	3139	3151	2420	4538	*	5608	177
+       132	*	3513	*	*	*	0	10395	0	3413	
+
+Y 178  4951	5673	5572	5184	2471	6825	4711	4880	5625	4183	5573	4190	6568	6427	5148	4600	4039	4304	*	1816	178
+       120	*	3642	*	*	3539	130	10297	0	4541	
+
+S 179  4121	5407	3628	4361	5477	5082	4909	5461	4203	5380	*	3209	6537	5243	6679	2070	2691	4912	6420	6612	179
+       82	5319	5051	3659	119	1738	514	10225	1176	5135	
+
+M 180  3088	*	*	6948	4688	3872	6404	3503	4805	3627	4269	6369	5537	4481	5152	3683	3178	2857	5522	4506	180
+       16	*	6488	*	*	3653	120	10308	0	4438	
+
+S 181  4800	5793	5076	4633	4277	4657	6651	4780	5727	5645	*	5799	*	5044	3747	2232	2096	4150	4910	4624	181
+       14	*	6745	*	*	2258	338	10331	0	4331	
+
+S 182  4039	5559	5689	4413	3856	4820	4582	4660	*	3747	*	6597	*	5152	4795	1139	4387	6039	*	*	182
+       96	4151	6919	2920	204	2828	219	10401	1754	3820	
+
+T 183  5252	*	5380	4918	6481	5834	4135	3893	5108	4697	6762	4209	*	4695	2881	3095	2506	3090	5636	5164	183
+       11	*	7065	*	*	479	1824	10427	0	3583	
+
+L 184  5755	6459	*	*	4151	*	*	3384	*	532	6213	*	*	5731	*	6994	6918	4224	*	5339	184
+       12	6948	*	2322	322	2686	244	10561	1000	1832	
+
+T 185  *	*	5495	4770	*	7080	4272	4310	3932	3179	4797	4484	5283	4563	2891	3096	2520	3974	6903	6804	185
+       74	5454	5191	1784	495	526	1710	10550	1511	1832	
+
+L 186  5393	6485	*	*	3762	6642	*	1696	5638	2100	5303	6691	*	*	5847	7830	5356	2130	*	6693	186
+       24	*	5906	*	*	*	0	10556	0	1673	
+
+T 187  5831	6625	4677	5457	*	6626	3911	4881	3421	4717	*	3355	3017	4379	4061	2854	2849	4494	*	5808	187
+       0	*	*	*	*	2578	264	10529	0	1979	
+
+K 188  2931	*	4494	4848	*	4533	5281	4453	3520	4079	5139	3253	2954	5407	3456	3380	4416	6814	*	*	188
+       0	*	*	*	*	1600	577	10546	0	1794	
+
+D 189  3070	*	4419	5559	*	5090	7018	4112	7381	3154	7062	5263	5226	4488	4651	2695	3130	2529	*	6254	189
+       25	*	5850	*	*	947	1056	10563	0	1482	
+
+E 190  3895	7773	4058	4216	6574	4933	4323	5888	4142	4791	5635	5368	4004	2872	3372	3446	3458	4016	6829	5780	190
+       81	*	4194	*	*	*	0	10569	0	1472	
+
+Y 191  5172	5267	5929	3448	4396	5564	6916	6626	4538	3283	4498	5271	3383	4646	3764	4852	4561	4849	2484	4819	191
+       70	5141	5694	0	*	2696	242	10516	1309	2755	
+
+E 192  3693	*	2354	2272	6881	4202	*	5833	4192	5715	7012	3509	5781	5975	4886	2862	4452	6638	*	6759	192
+       48	5342	6921	473	1840	2070	393	10503	1286	2796	
+
+R 193  6813	*	1219	3610	*	*	3489	5721	4221	6727	6700	3142	5113	6665	4807	4069	5046	*	*	5547	193
+       38	5932	6652	0	*	174	3136	10523	1203	2542	
+
+H 194  3478	*	3316	3991	7048	2472	5353	6775	4323	5642	4892	3110	5722	5815	4082	2416	6810	*	*	6155	194
+       12	*	6866	*	*	*	0	10576	0	1231	
+
+N 195  3247	*	4783	5378	*	1138	5597	6665	3874	4622	5900	5240	*	5640	4999	4950	3532	5192	*	*	195
+       21	6091	*	1574	590	1770	501	10560	1128	1397	
+
+S 196  6134	*	3602	3196	6882	*	5195	3876	3415	5431	5241	3290	4882	4637	3725	3820	3509	3254	5987	5979	196
+       11	7028	*	2585	263	1025	976	10576	1000	1231	
+
+Y 197  *	*	*	*	2763	*	*	4219	*	2946	6750	*	*	*	*	*	*	3890	5270	820	197
+       0	*	*	*	*	1201	824	10577	0	1190	
+
+T 198  5217	*	6155	3964	4815	6890	4823	5251	4662	6672	5208	6151	*	3220	3185	4592	1653	3874	6571	4522	198
+       11	7046	*	0	*	0	*	10595	1000	1030	
+
+C 199  *	112	*	7135	6626	7178	*	7081	*	6923	6777	*	*	7006	*	*	*	5799	*	*	199
+       0	*	*	*	*	0	*	10592	0	1000	
+
+E 200  4247	5917	6657	2511	5243	6754	5291	4371	4068	4054	5604	*	*	3198	3326	4813	3598	2734	*	5775	200
+       0	*	*	*	*	*	*	10598	0	0	
+
+A 201  1889	*	*	5882	4768	*	*	4085	6686	4167	*	6634	6687	*	*	5253	5836	1034	*	*	201
+       64	*	4529	*	*	*	*	10589	0	0	
+
+T 202  4343	*	5632	3010	4028	4421	*	*	3956	6779	6722	5102	5662	3233	4683	2622	2428	5243	4681	7071	202
+       15	6555	*	390	2077	319	2333	10409	1388	1671	
+
+H 203  4650	*	4686	*	4821	4614	1640	*	6666	6434	*	1559	6759	4210	5738	5585	5723	5634	*	5535	203
+       28	5696	*	3314	153	*	0	10340	1188	1000	
+
+K 204  5678	6244	4979	1888	6435	3814	*	5492	3612	4971	*	4547	2881	5593	4154	3395	6325	4355	*	4833	204
+       0	*	*	*	*	*	0	10216	0	1000	
+
+T 205  2307	*	4286	4065	5361	2564	4798	6343	5222	5370	*	3635	6211	6150	5303	2412	4751	4807	*	*	205
+       0	*	*	*	*	0	*	9970	0	1000	
+
+S 206  4628	*	6156	4522	4587	3383	*	5141	4092	1612	4187	6138	*	4565	4678	3029	4300	6306	*	6144	206
+       45	6069	5989	0	*	*	*	9805	1000	0	
+
+T 207  4525	*	5048	4490	*	3556	4138	6133	3840	6113	*	5039	2525	4005	4969	2151	3529	4997	*	*	207
+       200	4215	3723	639	1483	0	*	9639	1764	1054	
+
+S 208  3168	*	4926	2517	*	4317	4958	*	*	*	5021	4402	5901	3332	3911	2513	4313	3383	*	5885	208
+       0	*	*	*	*	2300	327	9502	0	1777	
+
+P 209  4963	*	5765	5163	4794	5905	*	4743	4822	5773	*	3281	1359	3929	4703	2939	4908	5849	*	*	209
+       0	*	*	*	*	0	*	9370	0	1590	
+
+I 210  3274	*	5694	*	*	*	6659	2259	3858	2201	4965	5346	*	5899	5661	4952	4919	2344	*	5915	210
+       28	*	5722	*	*	*	*	9392	0	0	
+
+V 211  *	4646	5021	3800	*	*	5708	*	6021	4930	*	3479	5725	4644	3463	3204	1535	3362	*	*	211
+       0	*	*	*	*	0	*	9331	0	1045	
+
+K 212  2317	*	4778	5733	5547	*	4671	3913	3155	4293	5844	5734	*	4744	3639	3877	4137	2514	*	*	212
+       0	*	*	*	*	*	*	9304	0	0	
+
+S 213  4865	*	4097	4351	5702	5712	*	5707	6271	*	5658	3377	5038	*	5642	1684	1971	4182	*	*	213
+       0	*	*	*	*	*	*	9247	0	0	
+
+F 214  4925	5496	*	*	2637	*	*	2954	*	1976	4536	*	*	*	5591	5558	6062	2314	4799	3968	214
+       0	*	*	*	*	*	*	9078	0	0	
+
+N 215  5175	*	4327	2841	*	5850	*	*	3446	*	*	2608	5212	4430	3188	2293	3027	*	*	*	215
+       69	4427	*	3585	126	*	*	8555	1027	0	
+
+R 216  4491	*	*	*	3686	*	4436	*	2560	2588	3616	*	3744	4407	2333	*	4285	*	4549	*	216
+       0	*	*	*	*	*	*	7204	0	0	
+
+N 217  *	*	4355	3528	*	2981	*	*	3501	3591	*	2580	3492	*	*	1928	*	4396	*	*	217
+       0	*	*	*	*	*	*	7190	0	0	
+
+E 218  *	*	3516	1173	*	*	*	*	3417	*	*	*	*	*	*	3463	2444	3307	*	*	218
+       0	*	*	*	*	*	*	5257	0	0	
+
+C 219  *	389	*	*	*	*	*	*	*	*	*	*	*	*	*	2080	*	*	*	*	219
+       0	*	*	0	*	*	*	2856	0	0	
+
+//
+�HHsearch 1.5
+NAME  409d1b78279b50a32005612fe5003760
+FAM   
+FILE  409d1b78279b50a32005612fe5003760
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:03:42 2013
+LENG  200 match states, 200 columns in multiple alignment
+FILT  196 out of 1298 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.4 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCEEEECCCCEEECCCCEEEEEECCCCCCEEEEEECCEECCCCCCCCCCCCCCCCCEEEECCCCHHHCEEEEEEEEECCCCCCCCCCCCCEEEE
+EEECCCCCEEEECCCCCCCCCCEEEEEEEECCCCCEEEEEECCCCCCCCCCCEEECCCCCEEEEEECCCCCCEEEEEEEEECCCCCCCCCCCCCEEEEEC
+>ss_conf PSIPRED confidence values
+9887699999958998662799099999788998589999899375431014310256655479984467778856999999477887531127719999
+9820478779978987301698299999837998579999899104542231231278630089975668897999999969998405578888999969
+>Consensus
+xxxxxxxPxixxxpxxxvxxGxxVtLxCxxxxxxxxxxxxkxgxxxxxxxxxxxxxxxxxxxxlxixxvxxxdsGxYxCxaxxxxxxxxxxxxSxxxxlx
+VxxxxxxpxlxxxpxxxvxxGxxvtLxCxxxxxxxxxxwxkxgxxxxxxxxxxxxxxxxxxxxlxixxvxxxGxYxCxaxxxxxxxxxsxxSdxxxlxVx
+>409d1b78279b50a32005612fe5003760
+HEGVHRKPSLLAHPGPLVKSEETVILQCWSDVRFEHFLLHREGKYKDTLHLIGEHHDGVSKANFSIGPMMQDLAGTYRCYGSVTHSPYQLSAPSDPLDIV
+ITGLYEKPSLSAQPGPTVLAGESVTLSCSSRSSYDMYHLSREGEAHERRFSAGPKVNGTFQADFPLGPATHGGTYRCFGSFRDSPYEWSNSSDPLLVSVT
+>gi|148699261|gb|EDL31208.1| leukocyte-associated Ig-like receptor 1, isoform CRA_d [Mus musculus]
+QLCSLPDITIFPNSSLMISQGTFVTVVCSYSDKHDLYnmvRLEKDGSTFME----KSTEPYKTEDEFEIGPVNETITGHYSC---IYSKGITWSERSKTL
+ELKVI-----------------------------------------------------------------------------------------------
+---
+>gi|297701545|ref|XP_002827772.1| PREDICTED: platelet endothelial cell adhesion molecule-like [Pongo abelii]
+-----------SLPDWTVQNGKNLTLQCFADVSTtshvkpqHQMLFYKDDVLFYN------ISSMKSTESYFIPEVRIYDSGTYKCTVIVN----NKEKT
+TSEYQVLVEG-VPNPRVTLDKK-EAIQGGVVRVNCSVPEEKapIYFTIEKLELNkKMAKQ----KREKASRDqNFVIleFPVEEQdrvLSFRCQARII--
+----------------
+>gi|7650326|gb|AAF65994.1|AF226640_1 pregnancy-specific glycoprotein 70 [Papio hamadryas]
+-----AQVMIEAQPTK-VSEGKDVlLPVRNLPQEVAAYIWYKGQIMDF-HQFItaytidteriifGAAYSGRetvySNGSLLIRNVTKNDTGSYTVKIR-
+-KPAEETKGVTVHFTL--YLETPKPYISSSNLNPREGTETVILSCDPETQDVSYLWWINGQSLPISRP-WQLSE--NNRILMLYGVTKdiAGPYECEMK-
+--NP-VSSSRSDPVTLNL-
+>gi|332031157|gb|EGI70734.1| Tyrosine-protein kinase-like 7 [Acromyrmex echinatior]
+----------QRERVGlAMRGKKRLRVPCRSTAISArLFAAvlgDVDDAPF---LQAPSTT---dDDvereeigsggcgdrlSRPSLLSFDVTaLYSDFL
+CRSTRRN---lVEKRRNVDGKKSFGiseAivQLQQPKLP----STIHVDNEIELRCHVDGSGDmKYEWFKNTVSVA--K---SDRVEIKKKKLHIHRAIP
+edSGMYTCVA---------------------
+>gi|213982747|ref|NP_001135545.1| v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene homolog [Xenopus (Silurana) tropicalis]gi|195539639|gb|AAI68021.1| Unknown (protein for MGC:185004) [Xenopus (Silurana) tropicalis]
+-----AVPKINEgQDRFTIKVGERFQLICRDAQLVKWTFqKsglvKKPRDVQ------SR-SYNKSEtdQILFIGKADLKHVGRYTCTNTE------TY-
+ENTSISLFVKDP-ARPFLDVPF-IDVIEGSDAVGMCFPSDPDiVDIAIEKCDGSPLAEDFT---FTTDIEAGITIKMVQVsfDGCYVCTGNQSG------
+-----------
+>gi|281371402|ref|NP_001163795.1| carcinoembryonic antigen-related cell adhesion molecule 20 [Rattus norvegicus]
+---SLAKPILTVRQRVVTEQRDMADFYCATNAV--NATIHWVFNNS-LLVLNERMKLSADNKNLTVLVVQREDSGSYLCEVQS----GFEVGRSDDTLLE
+VNYGPDPVSIKLDSgvatGDVveVMEGNTVNF-wVETQsypaPTYTWYLPT--DS---IQP---------PpiTGQLTIPAISreQEGMYRCLVS-----
+---------------
+>gi|157888749|emb|CAP09304.1| novel immunoglobulin domain containg protein [Danio rerio]
+----TAPPVLTETSPPEVevFVGRSLTLKCAAQGnPRPTITWSKDGAPIKPQHK-----VKMVNGSVSFHAVSREAAGQYQCYTSNSE-----GNATHVT
+RLKIIG---PPVIIIPPSdTVLNMSQDAKLKCQAEADppNMTYVWQRQGVDIYhidsLKSRIKVIVDG----TLLISRLAPedSGNYTCMPT--N--GLP
+VSPSASAVL---
+>gi|312385976|gb|EFR30357.1| hypothetical protein AND_00104 [Anopheles darlingi]
+----------------YYKDGSEVFITCSINCtDPFNVIWLHDNREIKNSADFEYLND--GDIyTLHIAEIFPEDAGTYTCEAF-NK----GGESFSSCT
+ISVLapeDQKEKATFAKFPASLsVLDGAKAVFSCETY-ePPSKLQWYKDGEPI--Ne-SSnrYRFVKKDNKYTFSVAKCSFedIGQYQVR----------
+------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+H 1    *	*	*	*	*	*	1851	*	*	*	*	*	*	468	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	2438	0	0	
+
+E 2    2116	*	*	3191	*	*	*	*	4047	4028	*	*	*	*	*	4189	1050	*	*	*	2
+       0	*	*	*	*	*	*	5382	0	0	
+
+G 3    3478	*	3374	1881	*	1184	*	*	*	*	*	*	*	4344	5102	*	5387	*	*	*	3
+       35	5387	*	0	*	*	*	7167	1027	0	
+
+V 4    3909	*	4327	3976	*	5548	4305	4055	3933	2611	4651	*	3496	3969	5580	3603	4501	3069	*	*	4
+       26	*	5781	*	*	*	*	7826	0	0	
+
+H 5    5742	*	*	5716	2723	*	4316	*	5741	1255	*	5657	5174	*	5755	*	4954	4235	*	2544	5
+       27	5755	*	0	*	*	0	8111	1013	1000	
+
+R 6    2838	*	4848	3824	*	4446	*	5516	4719	*	*	*	1606	5505	4665	2415	6897	4375	6044	*	6
+       20	6204	*	1000	1000	*	0	8861	1000	1000	
+
+K 7    3912	*	*	4562	*	*	6245	6594	1699	*	5030	5780	2536	3925	3218	4252	3966	4668	*	6731	7
+       15	*	6625	*	*	*	0	9047	0	1000	
+
+P 8    4383	*	*	*	*	6770	*	*	6621	4798	*	*	344	6311	6947	5756	5682	4322	*	*	8
+       0	*	*	*	*	*	0	9144	0	1122	
+
+S 9    6860	*	*	3632	5255	*	*	3371	3660	6787	5170	5546	5384	4726	3604	2414	2987	2834	6918	4498	9
+       0	*	*	*	*	*	0	9186	0	1122	
+
+L 10   5359	*	*	*	3608	*	*	1281	*	1572	*	*	*	*	*	*	*	2778	*	*	10
+       15	6550	*	0	*	*	0	9295	1000	1122	
+
+L 11   6081	*	4904	4294	4023	*	4841	5703	5342	3892	*	5461	*	3679	4141	1849	2623	5006	3950	*	11
+       32	5527	*	2520	276	*	0	9381	1342	1122	
+
+A 12   2234	*	6903	4489	4887	*	5923	2827	5484	3987	6135	5862	3955	5507	5215	3284	5523	2472	*	6889	12
+       139	3753	5819	1076	928	612	1533	9402	1979	1122	
+
+H 13   4965	*	3537	3160	7180	4195	3259	4939	4820	4058	7225	3523	*	3337	5067	2853	3795	6228	5535	6936	13
+       22	6068	*	1459	652	407	2024	9386	1104	1213	
+
+P 14   5143	*	4948	5589	*	6079	6825	6711	*	4641	*	5093	779	5410	6350	2852	4820	5403	*	*	14
+       88	4924	5249	1865	463	1417	677	9490	1401	1104	
+
+G 15   5334	*	4014	3139	*	3611	5023	*	4153	5033	*	4034	3435	4015	3971	2262	4575	4388	6820	6122	15
+       63	4789	7214	0	*	363	2169	9481	1523	1374	
+
+P 16   5807	*	4566	4537	4835	3564	*	7145	3990	4141	6939	4022	2703	4306	6229	2552	3654	3891	4991	6104	16
+       465	2019	5111	754	1297	638	1485	9566	4020	1233	
+
+L 17   3989	*	4200	3887	6335	5660	5713	4653	6303	4523	4404	5879	3776	5227	4338	3662	2928	2459	5230	4812	17
+       9	*	7350	594	1567	0	*	9677	1133	1405	
+
+V 18   3290	*	*	7473	5068	7194	*	2044	*	4297	6803	7313	6990	6493	6164	6387	5497	1159	7741	5196	18
+       22	6668	7498	1000	1000	0	*	9741	1111	1000	
+
+K 19   3641	*	5007	3350	3970	*	5106	4054	3696	3721	5959	4331	3982	3608	3970	4329	3647	4136	*	5430	19
+       22	*	6016	*	*	0	*	9747	0	1000	
+
+S 20   3736	*	5309	1781	*	6830	6098	4059	4097	3915	7260	5347	3398	4514	4358	3976	5293	3427	*	*	20
+       21	6093	*	528	1706	0	*	9748	1173	1164	
+
+E 21   6345	*	5518	5274	7621	380	7799	*	6039	*	7268	4749	*	6682	5163	5501	6579	*	6264	5655	21
+       0	*	*	*	*	*	*	9766	0	0	
+
+E 22   5956	6024	2232	2354	*	3364	7384	*	3540	5801	*	4830	*	3697	4614	3160	4056	5503	*	7425	22
+       0	*	*	*	*	*	*	9766	0	0	
+
+T 23   4771	*	3603	4142	*	5973	6095	7317	4830	*	6420	2650	4013	4999	3894	2470	2314	5511	*	5836	23
+       0	*	*	*	*	*	*	9766	0	0	
+
+V 24   3316	*	*	*	4601	*	7623	2994	*	2903	5117	*	7287	*	*	*	5479	915	*	7304	24
+       14	6693	*	0	*	*	*	9766	1068	0	
+
+I 25   5761	7710	5327	4604	5491	*	6030	4796	4001	4424	7816	5151	7024	4891	4329	3318	1241	4274	7401	5401	25
+       0	*	*	*	*	*	*	9766	0	0	
+
+L 26   *	*	*	*	3004	*	*	2769	7024	701	4758	*	6693	*	*	*	*	4075	*	*	26
+       0	*	*	*	*	*	*	9766	0	0	
+
+Q 27   7279	6703	7869	3512	6113	7461	4636	5907	3881	4521	5433	5318	4447	3459	2655	3351	2544	4192	5639	6016	27
+       0	*	*	*	*	*	*	9765	0	0	
+
+C 28   6906	46	*	*	*	*	*	*	7025	*	*	*	*	*	6696	*	*	7383	*	*	28
+       34	6748	6127	0	*	*	*	9765	1088	0	
+
+W 29   4394	6241	3973	3070	6379	5938	3838	5529	4175	4124	7553	4877	5517	3115	3062	3353	3974	4796	5880	6266	29
+       0	*	*	0	*	978	1022	9747	1048	1196	
+
+S 30   2415	6083	4959	6662	5502	3271	7470	3318	*	4352	7432	7264	4836	6986	7501	2869	3571	2461	7389	7427	30
+       46	4989	*	1469	647	*	0	9749	1533	1043	
+
+D 31   4398	*	2823	3416	5365	4968	5170	5022	5032	7613	6422	4048	3198	3760	4715	3072	3597	4828	5632	5862	31
+       206	3052	6295	984	1016	*	0	9749	2908	1043	
+
+V 32   3817	5612	4237	6443	7316	1989	6284	5420	4673	4266	5796	4573	3720	3867	4986	3149	4253	5270	7009	5405	32
+       418	1992	*	521	1722	1370	706	9725	4798	1277	
+
+R 33   4738	*	4264	3677	6203	3580	4744	6106	4167	3621	*	3973	2162	4692	4531	3569	5760	5313	6552	4690	33
+       263	2703	6262	1028	973	*	0	9741	3536	1130	
+
+F 34   3194	*	3865	4640	4600	3490	6367	5900	5573	4737	7376	4462	2378	5503	5984	3896	4021	3036	*	4960	34
+       75	4498	7247	1494	633	*	0	9723	1765	1398	
+
+E 35   3612	*	3803	4158	7100	4549	4789	3906	3814	4230	5746	5770	2588	4219	5273	4110	4369	3680	5151	5798	35
+       130	3532	*	1065	938	607	1541	9702	2490	1655	
+
+H 36   5530	*	5615	3204	5976	5933	4556	3595	3990	3967	7386	3795	4199	4301	4342	3709	2843	4291	4285	6131	36
+       23	5989	*	627	1504	849	1168	9736	1358	1162	
+
+F 37   5399	6423	6598	5466	1990	*	5700	2987	6815	4889	5147	*	5369	5768	7707	5241	4269	2955	6594	2331	37
+       27	5738	*	619	1519	*	0	9753	1234	1013	
+
+L 38   4851	*	5377	4509	3712	5942	4218	3624	5208	3529	6370	5398	7383	5122	4296	2989	3098	3936	3387	5001	38
+       112	4466	5101	1040	961	*	0	9753	1713	1013	
+
+L 39   6791	*	*	7410	3406	7538	*	4189	5681	1873	5813	6329	*	7591	6462	6589	5256	5079	1279	6263	39
+       75	4813	6028	1498	630	1449	658	9730	1651	1569	
+
+H 40   7588	*	5675	5555	3145	*	3744	5338	4249	3191	5668	6564	7239	4623	3450	4388	3968	6625	3812	2200	40
+       29	5998	7975	794	1240	1293	756	9717	1169	1747	
+
+R 41   *	*	*	5533	6385	6400	4812	4862	1092	5095	6397	4683	5692	5049	2371	5393	6459	5243	5685	6422	41
+       51	5302	6744	1625	565	1459	652	9726	1337	1511	
+
+E 42   5682	*	1848	2659	*	3391	5091	8301	4718	5138	5781	2266	5041	6061	5971	5230	6492	6253	*	6383	42
+       34	5880	7246	1585	585	1421	674	9726	1263	1495	
+
+G 43   5552	*	3541	3811	7237	1177	5771	7255	4580	6131	*	2822	*	5645	4661	4426	5830	7368	7301	6126	43
+       32	7780	5840	0	*	2302	327	9739	1000	1397	
+
+K 44   4346	*	4213	3232	*	3662	5503	4785	3102	4832	5736	3846	5910	3736	3921	4883	3515	3196	7090	5820	44
+       0	*	*	*	*	1762	504	9711	0	1639	
+
+Y 45   4440	*	4717	3684	4863	4767	7605	3786	4304	3089	5607	5378	2857	4249	4816	3348	4212	3932	5196	7494	45
+       22	7277	6819	0	*	2101	383	9721	1012	1425	
+
+K 46   4890	*	4147	4363	4644	5035	6523	3159	3889	2079	4839	5640	5464	4729	6348	4194	4326	3127	7406	6478	46
+       500	6146	1843	6348	18	*	0	9725	1168	1461	
+
+D 47   5578	6768	4806	4272	4486	4636	5035	4449	3686	3943	5908	3789	2474	4686	3686	3264	5306	4574	*	5532	47
+       581	5189	1718	2540	272	2812	222	9457	1211	5397	
+
+T 48   4600	*	4422	4515	3947	5669	6537	4129	6567	3336	*	4172	2705	6159	4277	2600	3190	5061	6540	5897	48
+       309	6437	2465	1000	1000	2894	209	9211	1013	6926	
+
+L 49   4424	6589	4518	4286	6434	5460	5647	4278	5614	2430	5701	4937	6697	3433	4269	3268	4240	3954	3510	5548	49
+       464	4642	2091	0	*	3023	189	9136	1281	7139	
+
+H 50   3168	*	3088	4172	4677	6398	3938	6418	4388	4089	*	4106	5837	3907	3231	4696	3102	4602	5567	6040	50
+       309	4291	2818	1387	695	4190	81	9011	1361	7481	
+
+L 51   5292	*	3448	3680	3901	*	4826	5049	5324	2659	6521	4147	5267	4070	2670	4650	3342	6195	*	5203	51
+       297	4629	2777	3077	182	2215	350	8783	1333	7666	
+
+I 52   4361	*	4787	4399	6170	4037	5632	2798	5644	3934	6372	2969	6365	3746	4375	3580	3860	3392	*	5554	52
+       207	4112	3723	2638	253	1999	415	8931	1473	7243	
+
+G 53   4158	7359	4022	3732	*	2259	6529	5417	3542	3605	5851	*	4240	4005	5093	2796	4361	5859	6590	6980	53
+       448	3806	2354	1650	554	2396	304	9313	1773	6565	
+
+E 54   3880	*	5556	2911	5476	5320	5401	4097	5897	5928	6648	4010	4498	3808	2192	3895	3481	5190	*	5354	54
+       380	4971	2324	3213	165	1737	515	9193	1257	6788	
+
+H 55   4204	*	4531	4137	6338	5896	5739	4145	4343	2911	4018	5528	5004	5266	3436	3603	3601	3217	*	4216	55
+       170	4050	4305	1097	909	1656	551	9334	1540	6552	
+
+H 56   4966	*	3601	3710	5124	4844	4609	5223	4967	3895	5772	4288	4331	5992	3663	2800	4062	4022	6192	3535	56
+       107	5954	4174	660	1446	2066	394	9480	1098	5605	
+
+D 57   3743	*	3954	4163	*	5078	5108	4679	5520	3820	6894	3713	3859	3959	3640	3087	3400	3884	*	4774	57
+       116	6121	3997	896	1112	1680	540	9570	1185	5235	
+
+G 58   5093	*	4470	4016	7220	3177	7046	4458	4516	3355	5559	4294	4010	6224	4444	2651	3111	4127	6656	5929	58
+       53	4784	*	1405	684	1225	806	9652	1370	4702	
+
+V 59   4101	7204	5268	5011	6399	2943	5735	4506	3730	3584	7540	4491	4642	3564	4236	3307	3902	3768	5391	5521	59
+       33	6427	6478	1196	827	434	1945	9613	1295	3308	
+
+S 60   5356	5903	2937	3354	5113	3210	4921	*	4709	4228	7151	3435	4571	4674	4345	2888	3744	5883	*	6343	60
+       65	4969	6376	1163	853	1399	688	9731	1497	1805	
+
+K 61   4604	*	4089	3626	*	2670	5131	5644	4359	6363	5014	2846	5441	4204	3931	3171	3371	6594	7250	6052	61
+       131	3956	5480	1846	470	672	1426	9683	2187	1858	
+
+A 62   2289	7492	4996	4415	5872	2678	6725	7120	5487	4528	6542	4558	4699	3889	4543	3119	4007	4659	7389	5006	62
+       48	5254	7233	520	1724	*	0	9673	1334	1656	
+
+N 63   4925	*	5008	3223	6269	7357	6066	3199	4198	4760	7813	3437	7417	4309	4855	2501	2658	4167	*	5945	63
+       9	7357	*	1659	549	710	1363	9667	1081	1761	
+
+F 64   *	*	*	*	2078	*	5903	4463	*	845	6441	7183	6890	*	*	*	7400	5792	6845	3556	64
+       22	6576	7830	0	*	*	0	9722	1084	1240	
+
+S 65   *	*	5024	4196	5141	7592	3750	3532	4207	4370	6012	4913	5786	4269	3843	2688	2518	3951	*	4835	65
+       36	7179	5820	0	*	*	0	9722	1013	1320	
+
+I 66   7605	*	6298	*	3865	*	*	1020	5976	1958	4797	*	*	*	6837	*	6541	3705	7600	6686	66
+       40	6429	5988	599	1557	1392	692	9691	1111	1672	
+
+G 67   3758	*	4336	4431	4841	3766	5567	5722	4014	4081	7435	3532	3706	4051	4115	2912	3502	5490	6269	5828	67
+       17	7584	7248	1000	1000	1445	660	9697	1026	1726	
+
+P 68   3463	*	3425	4646	7142	4600	4973	6257	3445	5050	*	2551	4269	4258	3699	2786	5507	5578	*	5551	68
+       15	*	6606	*	*	807	1223	9701	0	1549	
+
+M 69   2167	*	6401	7256	5725	*	*	2657	6990	3569	4086	*	5679	7269	*	6385	4526	1518	*	*	69
+       8	*	7554	*	*	2182	359	9710	0	1423	
+
+M 70   5331	*	3863	3861	5825	4834	5926	8132	3805	7355	4951	4726	*	3071	3984	2688	1994	5870	6417	*	70
+       18	7261	7457	1000	1000	1157	858	9714	1026	1406	
+
+Q 71   4075	7478	5728	4232	4662	6548	6515	4177	3372	4535	4844	*	2440	4598	2877	4292	4537	3513	6413	5885	71
+       13	*	6766	*	*	*	0	9715	0	1296	
+
+D 72   3397	*	4007	2348	7181	4798	5682	7842	4049	5975	5894	3565	*	3402	5227	2575	3587	*	6440	5775	72
+       39	5215	*	0	*	1426	672	9701	1472	1514	
+
+L 73   5775	*	777	5668	7110	*	3009	*	6021	5747	7833	3332	*	4285	*	5618	5849	*	*	5605	73
+       0	*	*	1000	1000	748	1306	9719	1011	1288	
+
+A 74   1963	*	5250	4756	7820	4150	7282	6594	4846	7387	5192	5709	6297	4819	4697	1866	3060	5485	*	6357	74
+       7	*	7654	*	*	*	0	9733	0	1055	
+
+G 75   4570	*	6394	*	*	188	6622	*	7415	*	*	*	*	7285	*	5204	*	6479	7047	*	75
+       0	*	*	*	*	1370	706	9732	0	1155	
+
+T 76   4629	*	4590	4317	6321	*	6011	3648	4129	4329	5488	3548	4644	4113	3903	3628	2299	3862	8034	5376	76
+       8	*	7469	*	*	*	0	9733	0	1055	
+
+Y 77   *	7052	*	*	4127	*	7215	*	*	*	*	*	*	*	*	*	*	*	*	107	77
+       0	*	*	0	*	1244	791	9723	1011	1171	
+
+R 78   6648	7259	7758	4862	5741	8011	5778	3876	3535	4236	6336	5591	*	3247	2765	3804	2131	4579	5506	4414	78
+       0	*	*	*	*	*	0	9733	0	1055	
+
+C 79   *	48	*	*	*	*	*	6980	*	6891	*	*	*	*	*	7347	*	6638	*	*	79
+       62	6527	4991	1504	627	*	0	9733	1126	1055	
+
+Y 80   5673	6458	7655	3104	4601	5821	5749	4021	3491	4384	4353	6107	7472	4131	2984	4007	3504	3134	6362	4543	80
+       119	*	3664	*	*	*	0	9707	0	1711	
+
+G 81   1353	5808	*	6165	5654	3419	7187	4240	6267	6838	7141	6388	7608	*	7440	4287	4722	2856	*	3004	81
+       85	*	4132	*	*	3492	134	9669	0	3127	
+
+S 82   6731	6251	4743	3808	4446	4259	4865	5807	4824	5267	*	4712	6153	4398	2517	2807	3197	4480	4726	4372	82
+       414	6979	2050	0	*	1917	444	9608	1020	3724	
+
+V 83   5026	6905	3461	4761	5707	5390	5428	3961	4945	4195	6575	1716	4714	6083	4270	4337	6217	3467	6964	4845	83
+       440	5204	2085	1043	959	2034	404	9500	1276	5615	
+
+T 84   5204	5756	4940	4822	7001	3278	4169	4677	4344	4305	5246	2951	6689	4237	3131	3392	3728	5200	*	4307	84
+       321	5249	2529	329	2293	3125	176	9268	1222	6337	
+
+H 85   4660	6690	3544	3371	4987	3444	3951	5246	3392	5773	6309	2787	5426	4287	4991	5252	5068	3608	*	4686	85
+       546	5626	1761	0	*	1996	416	9074	1127	6817	
+
+S 86   3551	*	4955	5076	*	4274	6944	5498	5090	6170	*	2062	4073	5834	4887	2572	3258	5014	6658	3971	86
+       178	4123	4092	2133	373	2326	321	9069	1465	7106	
+
+P 87   3089	*	3995	4306	*	3178	6737	*	5812	4658	4181	3142	1924	4797	4485	4080	*	5622	*	*	87
+       291	6517	2542	0	*	1550	603	9238	1012	6592	
+
+Y 88   3301	*	4400	3832	4834	4208	4229	5345	5706	4328	5925	3829	4744	5255	5972	3146	3090	4093	*	3478	88
+       77	4630	6427	280	2501	1675	542	9226	1700	6258	
+
+Q 89   4323	*	4463	3942	6834	1995	5478	4296	4483	4113	5943	5426	7346	5283	4731	5378	3680	2535	*	5607	89
+       198	4874	3407	1399	688	840	1181	9413	1340	5171	
+
+L 90   6004	6086	4794	4001	4347	2667	6707	4983	5206	4600	7214	4995	4998	4319	4887	3016	3786	3987	3301	4601	90
+       72	*	4354	1760	505	994	1006	9610	1143	4054	
+
+S 91   4562	*	6358	3900	5723	2913	5698	5421	4976	4875	5631	6065	5384	6365	4532	1664	3426	3588	*	6381	91
+       130	7205	3653	1000	1000	708	1366	9682	1012	3287	
+
+A 92   3761	6098	5330	2876	4987	4237	5408	5019	3459	4419	4926	4461	3789	3434	4423	3805	4021	4428	*	7773	92
+       78	5447	5087	822	1203	934	1069	9610	1247	3102	
+
+P 93   3472	6781	4283	4453	7446	7216	5225	5245	4473	3336	5995	5104	2990	3963	3418	3797	3648	3925	*	4372	93
+       77	5831	4865	576	1604	806	1225	9694	1202	2507	
+
+S 94   7876	*	7469	5534	6259	5450	7877	7989	4583	5690	7412	4007	6389	4780	6719	737	3375	4603	*	*	94
+       45	6508	5661	2398	303	778	1263	9711	1074	2181	
+
+D 95   3010	6558	2212	3648	*	4563	5352	4947	3820	6562	7250	3661	6310	4723	4901	3161	4952	3809	*	7957	95
+       9	7344	*	0	*	695	1387	9691	1123	1798	
+
+P 96   4550	*	5088	3533	*	5631	6109	4437	5320	6422	*	4184	2256	4933	4694	2746	2629	4050	*	5859	96
+       24	6613	7267	5986	23	859	1156	9723	1074	1250	
+
+L 97   3064	6200	*	5815	4309	5580	7616	3651	4426	2275	5582	7603	*	5647	6560	6630	4366	1716	6864	6397	97
+       20	6775	7718	1000	1000	*	0	9716	1071	1202	
+
+D 98   7601	*	4320	2660	6537	5560	4098	6395	3822	4902	6450	3442	*	3893	3767	3514	2453	5596	*	4472	98
+       19	6231	*	4015	92	*	0	9720	1146	1289	
+
+I 99   7257	*	*	*	5185	*	7288	2126	6885	1074	7156	*	*	*	*	*	6333	2134	*	*	99
+       53	7288	5089	1585	585	*	0	9725	1004	1289	
+
+V 100  6371	*	4554	4581	4862	8046	4797	3791	4604	3361	4901	3616	*	4427	4026	3281	2908	3102	7489	4726	100
+       15	*	6573	*	*	*	0	9703	0	1776	
+
+I 101  5220	8088	*	8042	5195	7136	*	2737	*	3920	7043	*	*	7203	7692	*	7456	576	6114	7561	101
+       107	6128	4131	1656	551	1719	522	9696	1306	1949	
+
+T 102  5134	*	5806	4645	5879	5551	5998	3747	3002	3953	6704	5559	5017	3924	3763	3133	2485	3993	*	4674	102
+       130	3931	5614	4118	86	2970	197	9713	2170	2561	
+
+G 103  3475	*	2234	3038	7435	2240	6724	6488	6494	5999	6425	5562	5645	6116	6451	4279	6407	3610	*	3521	103
+       331	3751	2934	1706	528	1372	704	9736	2084	2675	
+
+L 104  3298	*	6006	3454	5717	3951	5842	4366	4606	3234	6655	4510	2334	3804	5042	4504	4931	3978	*	*	104
+       383	3164	3038	1049	952	514	1738	9681	2629	3986	
+
+Y 105  5786	*	5702	6198	3182	7200	7038	4944	5218	1827	6473	*	2932	6897	5399	4569	4507	3852	5403	2944	105
+       150	4446	4247	996	1004	1335	729	9571	1638	3571	
+
+E 106  3528	*	3572	4527	6771	4813	7212	5489	4294	5576	7033	5826	1815	4375	4460	3543	3887	4251	6739	5516	106
+       76	4581	6730	5167	41	1258	781	9685	1584	3335	
+
+K 107  4229	*	5364	3879	*	5440	5818	6391	2076	5547	7174	3900	2416	4462	3272	5474	4013	5240	*	5495	107
+       20	*	6177	*	*	787	1251	9723	0	2536	
+
+P 108  3749	*	6380	5560	*	*	*	5972	6670	4676	7552	5948	682	7742	*	6657	3347	3970	7346	*	108
+       36	5763	7346	5788	26	523	1718	9717	1258	1845	
+
+S 109  4671	*	7659	4391	3953	5904	5623	4713	3584	4483	6439	5068	7689	5245	4413	2263	2996	2841	4985	5968	109
+       14	*	6646	0	*	0	*	9742	1043	1339	
+
+L 110  7189	5784	*	7391	3215	*	7289	1973	6642	1602	5992	*	7208	7382	5267	7614	5816	2646	5739	7608	110
+       64	5601	5458	810	1219	*	0	9739	1305	1087	
+
+S 111  5082	*	5565	4082	5732	7246	5817	4938	4621	3627	6173	6823	4776	4712	3894	2328	2535	3261	4883	5761	111
+       138	5414	3887	812	1216	2064	394	9731	1322	1516	
+
+A 112  2587	*	7421	5284	6491	5031	5453	2822	4655	3234	5953	6360	5045	4915	4560	4022	4578	2288	6990	*	112
+       48	6389	5601	700	1380	1536	610	9663	1146	2520	
+
+Q 113  5159	*	4308	3847	4188	4931	4542	4750	4802	3611	7585	4637	3123	3150	4277	3126	4449	4381	5481	6451	113
+       62	4919	6748	1103	904	1716	524	9715	1638	2348	
+
+P 114  6547	*	5352	5067	6419	6106	5502	7280	4640	4980	7533	4492	880	4761	5945	3486	4601	5847	6117	*	114
+       164	3686	5070	893	1115	1824	479	9692	2340	2214	
+
+G 115  4227	*	3638	3643	*	2684	6424	5918	5123	4613	*	3981	4736	4116	4651	2174	4395	5387	*	4591	115
+       172	4195	4107	1101	906	101	3892	9665	1831	2393	
+
+P 116  4018	*	3593	4090	6412	3396	5600	5048	4694	3540	6596	3961	3461	4142	5150	2941	4405	3790	6860	7379	116
+       216	3060	5689	459	1875	337	2263	9693	2875	2034	
+
+T 117  4497	*	4502	3184	6196	*	5578	4201	5391	3873	5046	4911	4111	4415	4780	3579	2594	2875	5431	7142	117
+       164	3215	*	228	2773	0	*	9717	2660	1504	
+
+V 118  3246	*	*	6858	5430	6855	*	2840	5969	3733	6673	*	6506	7522	5281	6280	5452	962	7337	5952	118
+       30	5586	*	1497	631	*	*	9751	1350	0	
+
+L 119  3431	*	5366	3271	4793	5520	5253	3556	4524	3802	4311	5762	4096	3996	3540	4387	3530	4060	7385	5725	119
+       29	6894	6438	0	*	*	*	9751	1099	0	
+
+A 120  4605	*	5274	1624	8004	5988	5902	5282	4453	3858	6588	6369	3093	5094	4959	3871	4912	3084	7435	7462	120
+       30	5909	7991	341	2248	878	1133	9729	1408	1167	
+
+G 121  5910	*	5512	5354	*	367	5222	*	4954	*	7452	5003	*	7630	7612	5029	6714	6351	8382	*	121
+       0	*	*	*	*	1393	691	9745	0	1096	
+
+E 122  4368	7429	2467	2298	*	3448	4983	*	4075	5107	*	4507	7130	3492	5023	3116	4270	7094	*	7733	122
+       0	*	*	*	*	*	0	9745	0	1019	
+
+S 123  4670	*	3038	3796	6087	5503	5920	*	4377	6518	6076	3102	4148	5975	5231	2324	2453	4785	*	7411	123
+       10	7161	*	1000	1000	0	*	9745	1014	1019	
+
+V 124  2630	*	*	7122	6014	6462	*	3195	*	2797	4814	*	*	*	*	7750	5966	1014	*	*	124
+       10	7122	*	1000	1000	*	*	9751	1030	0	
+
+T 125  5257	*	5407	3487	6755	*	*	4922	5462	4160	5011	5444	7821	5475	4241	3424	1481	3116	7564	4865	125
+       0	*	*	*	*	*	*	9751	0	0	
+
+L 126  *	7412	*	*	2937	6513	*	2704	*	688	5428	*	*	*	7502	*	*	4331	*	*	126
+       21	*	6138	*	*	*	*	9751	0	0	
+
+S 127  7021	7376	4932	3878	5899	7492	4240	5537	4846	4089	4752	5048	3956	3752	2649	3014	2640	5508	7064	5960	127
+       0	*	*	0	*	1207	819	9736	1011	1164	
+
+C 128  *	51	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	4848	*	*	128
+       22	8023	6497	0	*	*	0	9749	1025	1048	
+
+S 129  4753	*	5261	3496	6407	5211	3767	4434	4905	3632	6088	4391	6016	3063	3719	2678	3586	4440	6342	7818	129
+       59	4886	7367	1275	769	558	1640	9732	1757	1278	
+
+S 130  1966	7640	5610	7614	6279	3481	*	4320	7814	4387	*	7766	4761	*	6695	3058	2969	2253	*	*	130
+       30	5582	*	1090	915	1138	874	9727	1405	1166	
+
+R 131  4275	*	2980	3391	7017	7468	5179	6584	3894	4740	6350	4678	3459	4088	3986	3415	2840	5387	5296	5426	131
+       80	4595	6299	1014	987	*	0	9736	1626	1043	
+
+S 132  3542	7401	3743	3905	5279	1977	4177	5311	4951	4707	5583	5413	4597	5814	4961	3352	4497	4670	7348	6298	132
+       282	2496	*	1283	764	440	1926	9699	3964	1257	
+
+S 133  4834	7510	3565	4341	*	3205	5211	6496	4781	6626	7760	3228	1815	4574	6223	3350	4933	5976	7111	5172	133
+       359	2219	7574	1124	886	0	*	9717	4234	1000	
+
+Y 134  4187	*	4372	4330	5567	3093	6657	7813	4135	4050	7485	3894	2444	5184	5739	3770	3526	4806	6717	3859	134
+       277	2637	6177	1329	732	0	*	9717	3653	1000	
+
+D 135  3582	*	3063	5469	*	5050	*	3678	4901	3607	5600	5353	2461	5528	5455	3609	3967	3108	7555	6372	135
+       237	2722	*	646	1470	644	1474	9693	3453	1317	
+
+M 136  4504	*	4305	3701	6670	4865	6638	5027	3909	4687	5257	3944	5524	4066	3999	3441	2464	3675	4671	6363	136
+       62	4791	7359	927	1077	*	0	9717	1706	1048	
+
+Y 137  *	6709	6640	*	1763	*	*	2926	6364	4208	6289	6493	6409	*	*	6602	*	2511	4546	2159	137
+       16	7438	7653	525	1712	1022	978	9702	1159	1196	
+
+H 138  4246	*	6062	4355	4236	5715	5249	3620	4921	3726	5658	6163	6232	3870	3633	2527	2972	4452	5849	4834	138
+       43	8203	5263	0	*	1415	678	9716	1012	1139	
+
+L 139  *	*	*	*	3530	*	*	3640	*	1753	6923	*	7230	8367	7290	6477	6318	*	1111	5303	139
+       51	4851	*	1540	608	789	1248	9695	1514	1522	
+
+S 140  6314	7340	6421	4199	3325	7244	4534	4831	5994	3311	5464	6016	7071	5543	3895	3256	3983	4921	4411	2108	140
+       59	5175	6368	811	1217	1217	811	9715	1423	1163	
+
+R 141  *	6999	5407	5605	5264	*	5041	5699	1245	4647	7090	5489	*	3974	1981	5524	6368	5688	7703	7420	141
+       49	5500	6463	2009	412	*	0	9695	1297	1263	
+
+E 142  4736	5228	1631	2566	*	4406	*	*	3676	4909	7305	2529	7474	5411	5116	5810	6392	6284	*	7581	142
+       46	5562	6571	1328	733	1428	670	9667	1376	1471	
+
+G 143  5847	*	3003	3978	6383	1080	6651	*	4985	*	*	3579	7342	5062	4654	4114	4490	7358	*	*	143
+       18	6936	7919	3018	190	658	1449	9687	1260	1435	
+
+E 144  4387	*	3972	2827	6282	3775	5293	7493	3188	4750	5950	4310	5320	3411	3990	3328	4217	4059	*	5524	144
+       59	6682	5054	0	*	1850	469	9706	1091	1225	
+
+A 145  3747	7260	3602	3890	5118	5440	5042	4294	4594	3503	6987	4490	3270	4391	3857	3359	4112	4616	5185	6629	145
+       72	4951	5928	1958	429	*	0	9680	1417	1658	
+
+H 146  4487	*	5205	4357	5961	5129	5935	3482	3999	2130	7340	7560	4312	4739	4573	3819	4872	2633	6302	5814	146
+       172	6622	3294	807	1223	1339	726	9688	1104	2039	
+
+E 147  3660	*	4521	3691	4840	4884	4684	6013	4552	3466	4635	5121	2475	4540	4818	3052	5017	4078	*	7468	147
+       267	4445	3024	1401	687	1455	655	9628	1741	3233	
+
+R 148  4846	*	6042	5564	4075	4466	*	3332	6166	2765	4477	4874	2908	4716	4757	3272	4250	3942	5106	5237	148
+       284	4479	2903	0	*	1938	436	9511	1530	4060	
+
+R 149  4775	*	3938	3797	4432	3955	5730	6893	3790	4033	6413	4198	5498	2471	4358	3404	3727	5575	5383	5470	149
+       211	5664	3100	393	2067	2250	340	9482	1364	4840	
+
+F 150  5486	*	3550	4130	4692	4892	3884	4855	4638	3669	4979	6003	5159	4357	2838	3112	3931	4493	7040	4487	150
+       358	5388	2350	485	1809	4738	55	9507	1234	5248	
+
+S 151  5531	*	5588	4583	5157	4976	6370	4773	5181	2567	4244	4152	3620	3473	3685	2727	3851	5381	*	6868	151
+       155	*	3295	1000	1000	3170	170	9279	1000	6365	
+
+A 152  5028	*	2897	5155	*	4625	5590	5344	4394	4225	*	3910	6643	5543	3231	2590	2767	3446	*	6523	152
+       705	4325	1571	271	2545	3023	189	9263	1466	6498	
+
+G 153  4318	6267	5384	4034	4263	4591	*	3428	5980	4289	*	5193	3776	5135	4141	2630	2954	3685	5890	5173	153
+       317	4362	2748	844	1175	2983	195	8714	1315	7470	
+
+P 154  3645	*	*	3673	*	*	5455	3796	4192	3968	4649	4764	4242	2435	3240	3536	3741	4846	*	6368	154
+       216	5992	3019	0	*	3463	137	8817	1005	7407	
+
+K 155  6290	*	4456	3684	3978	*	3055	3489	3641	3378	6964	5220	5304	6395	4727	2712	4232	4583	*	4126	155
+       128	4636	4486	2661	248	1751	509	8805	1193	7434	
+
+V 156  4392	*	4811	4879	4440	4946	5025	5153	4404	4136	4656	4279	3117	4112	3690	3470	3676	3518	*	4514	156
+       108	6428	4044	0	*	1612	572	9364	1013	6397	
+
+N 157  3322	6946	3765	4341	5285	4630	7056	4469	5223	5044	6791	2859	*	6434	4229	2579	3135	3798	7697	5406	157
+       216	*	2847	*	*	2221	348	9381	0	5468	
+
+G 158  4596	*	5970	3482	4855	1841	5618	*	5060	4461	5108	4050	4378	3951	6221	3772	3970	4498	*	4411	158
+       329	6178	2396	549	1660	1084	920	9407	1041	5705	
+
+T 159  4476	*	3183	3277	*	2913	*	4493	4376	5840	6832	3996	6546	3499	4151	3133	3717	4394	5346	6659	159
+       68	*	4438	*	*	1855	467	9362	0	5320	
+
+F 160  5132	*	3217	4365	4004	4260	5498	5160	4060	6427	5084	3130	3924	7086	4928	2461	3110	6815	6829	6125	160
+       97	4765	5136	1838	473	1037	964	9463	1440	4715	
+
+Q 161  5412	7059	4406	3716	*	3834	4879	5903	3509	5724	6035	3221	4759	3531	3429	3607	3093	4497	6079	5575	161
+       80	4404	7188	1662	548	1420	675	9559	1715	3414	
+
+A 162  2348	7293	4739	7242	7182	2620	5497	7212	4990	5287	5514	5216	4429	5210	3656	3471	3317	3819	*	4855	162
+       28	7203	6368	2826	219	689	1397	9602	1269	2686	
+
+D 163  6575	*	3478	3949	6094	4035	6720	4168	3974	5079	6458	3579	*	4873	4214	2800	2363	3788	*	7022	163
+       10	7230	*	4051	90	1024	976	9658	1101	1833	
+
+F 164  7458	*	*	*	1901	*	6272	3720	*	1058	5954	*	6750	7708	*	6596	5865	5840	5723	3982	164
+       0	*	*	3536	130	*	0	9690	1128	1383	
+
+P 165  5482	*	*	4166	5213	7482	4125	3781	5332	3208	4561	5840	7494	4286	4096	2966	2207	3820	8340	4937	165
+       8	7495	*	1807	486	1076	927	9690	1266	1383	
+
+L 166  7949	*	6446	*	4425	*	6535	1131	5198	1748	5255	7044	7197	7747	7488	6002	7807	3745	*	*	166
+       37	5660	7451	1450	658	*	0	9702	1237	1273	
+
+G 167  4252	*	4265	5721	5223	5127	4339	6686	3705	4819	6058	5206	3038	4221	3277	2621	3896	4438	6645	4526	167
+       26	*	5783	*	*	773	1269	9681	0	1497	
+
+P 168  3767	7141	3976	4428	6901	4536	5636	*	4365	6599	6367	2063	3326	3951	3918	2905	4975	5783	*	6209	168
+       73	5419	5269	509	1749	1427	671	9694	1326	1507	
+
+A 169  2483	7075	7338	6068	7635	*	*	3368	5366	3946	4811	*	7019	*	*	5944	6448	914	*	*	169
+       52	5475	6271	1112	896	1904	449	9655	1335	1742	
+
+T 170  5213	*	4603	3747	*	4305	6743	5942	3928	5409	5969	5592	*	2872	4472	2609	1825	7172	7438	6067	170
+       366	2157	*	1047	955	0	*	9656	4361	1740	
+
+H 171  3859	*	2931	4870	4460	6346	2683	6524	4019	4033	5955	5939	3078	4180	3483	4109	5607	5284	7971	6054	171
+       1337	727	*	1120	889	*	*	9691	7610	0	
+
+G 172  2063	*	5130	3551	7170	3598	6030	5684	7399	*	7261	3571	6225	5037	7019	2161	3197	5839	*	5360	172
+       79	4395	7435	1074	930	*	*	9691	1872	0	
+
+G 173  5416	*	6632	7307	7339	187	6389	*	7228	7340	7193	*	*	7305	6795	6579	5790	*	*	*	173
+       13	6795	*	0	*	0	*	9682	1183	1011	
+
+T 174  5159	5245	5199	4109	5812	6554	4993	4017	3690	4174	4561	3874	4951	3447	4524	3927	2526	3957	6419	6327	174
+       12	*	6922	*	*	*	*	9691	0	0	
+
+Y 175  *	*	*	*	5026	*	*	6790	*	*	*	*	*	*	*	*	*	*	*	58	175
+       0	*	*	0	*	0	*	9689	1048	1048	
+
+R 176  6675	7111	*	4218	5760	6517	4687	4399	4550	5000	6220	7324	*	3528	2906	2411	2892	4020	4797	3652	176
+       0	*	*	*	*	*	*	9690	0	0	
+
+C 177  *	55	*	*	*	*	*	7310	*	6052	*	*	*	*	*	*	*	5946	*	*	177
+       19	6290	*	0	*	*	*	9689	1143	0	
+
+F 178  5676	5926	6391	3140	5809	*	5823	4196	5314	4076	5376	5752	*	3270	3278	3845	2640	2795	6285	5163	178
+       51	6090	5648	1585	585	*	*	9719	1166	0	
+
+G 179  964	5763	*	*	6935	2781	*	5393	6900	6192	6317	*	7415	*	6414	4898	5632	3694	*	3208	179
+       13	6804	*	2322	322	1562	597	9589	1011	1313	
+
+S 180  5254	6419	4774	4383	5134	6069	4993	6064	3299	4858	*	5977	6765	4851	2603	2189	3035	5732	5222	4624	180
+       253	4588	3065	0	*	*	0	9359	1313	1172	
+
+F 181  5212	*	4617	5388	4080	6291	4854	3496	5236	4594	6309	2134	6001	3550	4789	4296	4461	3260	5994	4284	181
+       218	5021	3195	0	*	1745	511	9029	1168	2406	
+
+R 182  *	*	4448	4297	6444	3750	5739	4980	3907	4403	*	4600	3146	5021	2082	3260	3695	*	4528	7138	182
+       241	3993	3460	1042	960	1776	498	8693	1379	2837	
+
+D 183  3680	*	4416	5051	6832	1498	4109	5840	4937	4894	6029	3139	*	4424	6031	4053	3761	6003	*	*	183
+       202	5906	3131	3322	152	619	1519	8626	1000	2898	
+
+S 184  3404	5926	3825	3849	5884	3380	5835	*	4741	5018	5991	3031	4198	4993	4808	2331	4519	5003	*	5861	184
+       237	5951	2888	0	*	2536	273	8399	1017	2310	
+
+P 185  4503	5798	3896	5767	*	5493	*	*	5830	6011	*	5023	1092	4710	2955	3803	*	4654	5754	*	185
+       216	*	2846	*	*	1791	492	8262	0	2961	
+
+Y 186  3508	*	5428	5472	2472	3158	4105	5820	*	3546	5487	6439	5307	5692	4558	3062	3505	4584	*	4564	186
+       122	4416	4858	0	*	1211	816	7864	1168	3044	
+
+E 187  3296	5796	6649	3707	3582	4092	*	3292	5656	2247	*	5872	*	5594	5140	3654	6487	3276	5685	4664	187
+       75	*	4296	*	*	846	1173	7988	0	2359	
+
+W 188  4436	*	5750	5566	5751	3238	5464	4189	*	5859	*	4317	4653	4217	5675	2914	3818	4235	2306	3780	188
+       25	*	5859	*	*	2280	333	8037	0	1926	
+
+S 189  5032	*	4189	*	*	3932	*	*	4222	6122	*	*	*	5897	4805	623	4512	4815	*	*	189
+       0	*	*	*	*	1040	961	8054	0	1832	
+
+N 190  3408	*	*	2006	4761	4408	4303	*	3324	4855	*	5887	3505	3329	3871	3598	5900	*	*	6012	190
+       24	*	5948	*	*	391	2073	8113	0	1387	
+
+S 191  5184	*	4779	3766	*	*	6256	4786	4804	3066	*	5899	2276	4925	2220	4350	3959	4919	*	4618	191
+       0	*	*	*	*	0	*	8147	0	1118	
+
+S 192  *	*	*	*	*	5878	*	*	*	5561	*	*	*	*	4849	133	6053	*	*	*	192
+       0	*	*	*	*	*	*	8173	0	0	
+
+D 193  4040	*	1140	3304	*	*	4836	*	4357	*	*	2650	5149	5650	*	4553	5938	4883	*	*	193
+       22	6053	*	0	*	*	*	8173	1036	0	
+
+P 194  4184	*	*	5046	5874	*	4882	4257	6037	6299	5011	4466	1118	4564	*	4457	3479	3858	*	*	194
+       0	*	*	*	*	*	*	8173	0	0	
+
+L 195  3390	*	*	5711	6233	*	*	2781	4939	1496	*	*	*	*	*	*	5858	1634	*	*	195
+       0	*	*	*	*	*	*	8142	0	0	
+
+L 196  5793	*	4406	2309	*	*	6051	4998	3790	4813	5765	4374	5566	4970	4995	4037	1970	4144	*	4182	196
+       0	*	*	*	*	*	*	7964	0	0	
+
+V 197  *	*	*	*	*	*	*	1576	*	956	*	*	*	*	*	*	5754	2935	*	*	197
+       16	*	6541	*	*	*	*	7937	0	0	
+
+S 198  5655	*	5085	4686	*	*	4855	3586	3643	*	5464	3930	*	4162	3704	3354	2418	2579	4619	*	198
+       0	*	*	*	*	*	0	7866	0	1016	
+
+V 199  5565	*	*	*	5767	*	*	2389	*	4395	5427	*	*	*	*	*	*	517	*	*	199
+       0	*	*	*	*	0	*	7841	0	1016	
+
+T 200  3191	*	*	3091	*	*	*	4033	*	*	*	*	*	*	*	2546	887	*	*	*	200
+       0	*	*	0	*	*	*	5434	0	0	
+
+//
+�HHsearch 1.5
+NAME  4162710e327474bbbd96cdac5a602313
+FAM   
+FILE  4162710e327474bbbd96cdac5a602313
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:20:50 2013
+LENG  159 match states, 159 columns in multiple alignment
+FILT  160 out of 1038 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  8.0 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEEEEEECCCCCEECCCCCCCCCHHHHHHHHHHHCCCEEEEECCHHHHCCCCCCCCEEEEECCCCCCCCCEEEECCHHHHHHHHCCCCCEEEECCHHHH
+HHHHHHCCEEEEEEEEEEECCCCCCCCCCCHHCEEEEEEEECCCCCCCCCEEEEEEEEC
+>ss_conf PSIPRED confidence values
+9999999968984847998786587999999997439879990776762865579996999979998899979989999999986079969999889999
+99997669999999637505761279888013299998860245678965899999979
+>Consensus
+mixxxxAxsxdGxIgxxgxlxWxxxxdxxxfxxxtxxxxvlmGrxTyexxxxxxxxxxxxVvSxxxxxxxxxxxxxxxxxxlxxxxxxxxixvxGGxxlx
+xxxlxliDelxltxxpxxxxGxxxfpxxxxxxxxlxxxxxxxxxxxxxxxxxxxxyxrx
+>4162710e327474bbbd96cdac5a602313
+MISLIAALAVDRVIGMENAMPWNLPACLAWFKRNTLDKPVIMGRHTWESIGRPLPGRKNIILSSQPGTDDRVTWVKSVDEAIAACGDVPEIMVIGGGRVY
+EQFLPKAQKLYLTHIDAEVEGDTHFPDYEPDDWESVFSEFHDADAQNSHSYCFEILERR
+>gi|2506058|dbj|BAA22616.1| fusion protein, composed of HCV p21 (NS2), N-terminal region of HCV p70 (NS3) and TAX of HTLV-I [synthetic construct]
+---IITSLTgrdknqVDGEVQVLSTATQSFLAtcvnGVCWTVYHGAGSKTLAGPKgpitqmytnvDQDLVGWPAPPGARSMTPCTCGSSDLYLVTRHADV
+iPVRRRGDSRGSLLsprpvsyLKGSAGGPLLCPSGHVVGIFRAAVCTRGVAKAVDFIP--VESMETTMRSPVFTDNSSLVA------
+>gi|330723554|gb|AEC45924.1| dihydrofolate reductase [Mycoplasma hyorhinis MCLD]
+MIISILAMGKNNLIGKGDDLPWYVKEDFDFYREQTKHHDILVGKNTFFTLPKSLQKWSKIYIVSddkNFNYEnENVKTINNFSNLIKEYQNhpSKHLFVS
+GGYTLYKSIINKCDQLIISFIKGEHSGDIFLNELKWEKFEEISSKDK-------GKFIVKKYKK-
+>gi|158316784|ref|YP_001509292.1| deaminase-reductase domain-containing protein [Frankia sp. EAN1pec]gi|158112189|gb|ABW14386.1| bifunctional deaminase-reductase domain protein [Frankia sp. EAN1pec]
+-LVYFVASTVDGFVaGPDGADptgpdGFWPvPQDyvehlAtEYPETLpgparaalgvtaagIHFDTVLEGRRSYEVglrvgLTNAFPHLRHLVFSRTLTV
+SpdPGVELVAdDPVATVRELKrqDGKDVWLVGGGELAGALYQEIDELVVKLGPLTLgTGIPLFSrtAAFDpRIWVLADHSVLK----SG--AVFLTYRR-
+>gi|258650872|ref|YP_003200028.1| riboflavin biosynthesis protein [Nakamurella multipartita DSM 44233]gi|258554097|gb|ACV77039.1| putative riboflavin biosynthesis protein [Nakamurella multipartita DSM 44233]
+-VVMYSSVSVDGFIAdENDQpgplFDWLVSgdvplddsgalkvsqTSYDYVRPYWDeIGVTVVGRHVFDLTDgwdgQPPSGIDhVVVVTHRPAPEgwdpE
+APfHFVGDVESALASAQelaGERTVEVAAG-DVGGQVLAagLIDEVRMDVVPVVFgSGKRFFGSVDAPHL--------------------------
+>gi|254389245|ref|ZP_05004474.1| conserved hypothetical protein [Streptomyces clavuligerus ATCC 27064]gi|326444933|ref|ZP_08219667.1| putative riboflavin-specific deaminase/reductase [Streptomyces clavuligerus ATCC 27064]gi|197702961|gb|EDY48773.1| conserved hypothetical protein [Streptomyces clavuligerus ATCC 27064]
+-VVLSAAMTVDGYLDDASPERLLlsNAADFDRVDQVRAQsDAILIGATTVRKDNprllvnsdERRAKrvadgksayPLKVTVTRTGDLSADLnfwhhggk
+klVIt-VDdavekvrttlgdLADVVsvgpdlrdwglvl---delgRrNVGQLMVEGGGTIHTQLMaaDLADEVHLAIAPLLVG-qpGAArflgaadYPGG
+STARMKVLEVRA-------------------
+>gi|326802356|ref|YP_004320175.1| hypothetical protein Sph21_5009 [Sphingobacterium sp. 21]gi|326553120|gb|ADZ81505.1| hypothetical protein Sph21_5009 [Sphingobacterium sp. 21]
+-IIIVANIAANGKVLvSDH--PHHqlPQETMDFYLKLVNqIGNLVIGVRTFENFekfPdhvkALFKNVEIVVLADKPFISSTYPVVNKPTEAIDYFSkkG
+FTEIAIGGGTGTFNTFLEgnFVTDIYFNISPIIT----------------------------------------
+>gi|338707733|ref|YP_004661934.1| riboflavin biosynthesis protein RibD [Zymomonas mobilis subsp. pomaceae ATCC 29192]gi|336294537|gb|AEI37644.1| riboflavin biosynthesis protein RibD [Zymomonas mobilis subsp. pomaceae ATCC 29192]
+-ITLKLATSLDGCIAlENGKSHWITGErARAhaHLERM-RSELIVVGRGTWEVDnPrldvRlLgLEHRspIRAVLGHGSLP-PDWIGLEQ-PTDVSLTAA
+-DHVLVEGGAKAAAAFIkaDIVDRILFYRAPILIgGGiaslsDIGLQNLAEThgRWCHKETRMLGN-------DQLDAYVR-
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    3785	*	*	*	*	*	*	5171	*	4730	332	4943	*	*	*	*	*	4823	*	*	1
+       232	2753	*	977	1023	*	*	5430	1320	0	
+
+I 2    *	6890	*	*	4411	*	*	1204	6808	2321	4715	*	*	*	6750	*	5859	2127	*	7003	2
+       0	*	*	*	*	*	*	7963	0	0	
+
+S 3    4080	*	*	4224	5795	6218	5767	2356	2984	5047	7068	4605	*	5377	3455	3400	3368	3155	*	5801	3
+       0	*	*	*	*	*	*	8030	0	0	
+
+L 4    3588	*	*	*	4422	5199	*	3061	*	1548	3373	*	*	*	*	4148	*	3143	*	3118	4
+       26	6251	7804	711	1362	*	*	8277	1087	0	
+
+I 5    6124	7113	5197	6375	3960	6040	5135	1549	4289	6370	4299	4386	*	6553	*	4167	7045	3163	5798	3010	5
+       11	7045	*	0	*	0	*	8273	1000	1000	
+
+A 6    2657	5388	*	6081	4109	5753	*	3167	*	3328	3472	4859	*	5644	7725	4815	4207	2405	3816	5908	6
+       7	*	7660	*	*	*	*	8264	0	0	
+
+A 7    630	5377	6431	*	4729	6338	5497	4807	*	7124	6383	4218	7233	6559	7226	4321	5756	4695	7350	*	7
+       0	*	*	*	*	0	*	8264	0	1011	
+
+L 8    4024	5268	*	5933	6799	*	7196	2577	5833	3267	3048	7183	*	4030	6505	4898	3367	2048	*	5709	8
+       0	*	*	*	*	*	*	8279	0	0	
+
+A 9    4497	6035	2913	6307	*	3599	*	*	*	*	*	5578	*	*	7085	1145	2108	*	*	*	9
+       97	4273	6212	3309	153	*	*	8279	1630	0	
+
+V 10   3518	*	6252	3849	7270	6871	*	4108	3407	1509	4975	5217	4701	5004	4286	5338	*	3219	*	*	10
+       32	5518	*	1306	748	604	1548	8275	1314	1117	
+
+D 11   6251	*	872	5320	*	7020	6148	*	4793	*	*	2086	*	5401	5592	4790	5177	7243	*	7090	11
+       23	5991	*	897	1111	*	0	8285	1135	1000	
+
+R 12   *	7139	*	6899	5510	397	5516	*	6050	5014	5484	4763	*	*	4720	7090	*	*	5350	7376	12
+       9	7273	*	1000	1000	*	0	8285	1000	1000	
+
+V 13   4602	5227	*	4194	2304	3341	5388	6104	4048	3752	5594	4959	*	5124	6273	*	7182	3173	*	2389	13
+       16	*	6462	*	*	*	0	8285	0	1000	
+
+I 14   5547	5390	*	*	4087	*	7313	776	*	3083	4609	7103	*	*	*	*	6167	3232	*	5730	14
+       298	2421	*	449	1904	*	0	8244	2998	1128	
+
+G 15   1878	*	3692	4977	*	1086	7258	*	*	6148	*	*	6923	4953	6086	4684	5270	7142	*	*	15
+       502	1800	7177	561	1633	*	0	8244	3907	1128	
+
+M 16   3328	*	4668	3388	4678	5522	4988	4965	2783	3393	5515	4332	2893	5020	4196	4954	5445	4755	*	5878	16
+       0	*	*	*	*	*	0	8232	0	1295	
+
+E 17   3419	6469	2125	4497	*	2830	7126	*	4465	4949	7325	2264	4847	4489	6028	4553	4747	*	7069	*	17
+       58	4917	7325	1823	479	*	0	8232	1284	1295	
+
+N 18   4814	*	3023	*	7121	1204	5078	6738	4875	*	6785	2519	7035	5641	6006	3679	7108	7000	*	7141	18
+       69	5262	5581	2061	395	2517	277	8232	1285	1365	
+
+A 19   4568	*	2512	3392	7052	2612	5748	*	3275	6941	5690	5346	*	4183	3324	3671	4142	5101	6074	6963	19
+       134	3754	6117	2742	234	2776	228	8213	1824	1523	
+
+M 20   5173	*	4738	6430	4349	5094	6329	3171	6752	1315	3100	6035	5189	*	6339	5066	4723	4155	*	6106	20
+       95	4082	7670	1501	629	330	2289	8201	1579	1592	
+
+P 21   4973	*	2498	4513	6790	4109	7086	7309	5026	4314	7134	6221	1245	6241	5227	3823	5363	6883	*	*	21
+       126	4643	4509	1767	502	590	1576	8284	1463	1121	
+
+W 22   7359	*	6998	6924	3932	*	7073	*	6121	4998	6712	*	*	4759	6223	5895	*	5104	499	4452	22
+       301	2558	5763	639	1482	*	0	8260	2727	1475	
+
+N 23   3938	6528	6227	5279	4593	*	2659	4252	4724	2485	6225	5123	5061	5101	3894	3268	5622	4493	7321	3776	23
+       263	2661	6924	1611	572	194	2991	8243	2690	1935	
+
+L 24   5803	4835	5169	4307	2757	5063	5179	2775	7073	2445	5665	5992	5238	7261	6918	3517	4889	3929	6586	4257	24
+       188	3425	5104	1510	624	1830	476	8272	2109	1145	
+
+P 25   4789	*	4098	3313	7311	3521	*	6567	2904	4941	*	5779	1738	5575	4487	3789	4263	5664	*	7157	25
+       82	4454	6660	1813	483	1015	985	8240	1545	1534	
+
+A 26   2922	*	3007	2025	6166	3251	6247	*	4084	7227	*	4669	4817	3939	6188	4030	4393	5745	*	5717	26
+       351	2276	6724	2103	382	1339	726	8279	3180	1378	
+
+C 27   4243	6486	1075	2406	5428	3632	5703	7167	7835	5164	*	*	5096	*	7374	4700	5890	5666	*	*	27
+       105	3836	*	2352	314	905	1101	8271	1854	1313	
+
+L 28   4816	7170	5967	6440	3034	6074	5879	*	4928	1983	2887	6218	6431	5281	4368	4829	5001	3103	6532	4005	28
+       96	3958	*	1246	790	*	0	8279	1724	1102	
+
+A 29   2584	5818	2802	4004	6298	4403	5456	7116	2693	4399	6039	4744	5525	3687	3514	5007	4608	*	*	7331	29
+       31	5535	*	793	1242	*	0	8279	1188	1102	
+
+W 30   4648	*	4251	4647	2357	4982	2972	*	4430	4975	6213	5644	*	4007	3246	6441	5681	5318	4547	2885	30
+       20	7222	7090	3058	185	955	1047	8279	1093	1102	
+
+F 31   6090	*	6295	7289	986	7190	*	5023	6818	3560	5066	5759	7413	5890	5673	7363	4695	4287	5339	3073	31
+       35	5403	*	1585	585	*	0	8271	1197	1090	
+
+K 32   3988	*	5196	3935	4636	*	*	4328	2579	3004	5095	4712	5932	4381	2653	5039	5203	4208	6995	4267	32
+       120	3648	*	227	2780	*	0	8271	1811	1090	
+
+R 33   3116	*	3057	2608	6351	6331	7166	*	3014	4586	7126	4554	6322	4131	2841	3894	4817	5369	*	5816	33
+       35	5363	*	319	2332	*	0	8271	1203	1090	
+
+N 34   3589	*	5749	4300	5844	5336	4921	3915	4198	2619	4033	5230	7279	4042	3889	5302	2912	3962	7232	4740	34
+       226	7413	2843	3807	107	1049	952	8271	1000	1090	
+
+T 35   3967	7273	6001	4833	*	4551	6000	3546	*	3305	3988	*	*	5912	4456	5555	1285	4169	6066	7305	35
+       149	3701	5553	1085	920	3192	167	8156	1666	2596	
+
+L 36   3063	*	4260	3040	*	4472	5597	6377	3251	3188	4725	4796	*	5058	3415	4003	3574	5567	6411	4741	36
+       309	2377	*	708	1366	332	2284	8187	2694	2600	
+
+D 37   3613	5979	3928	4557	5680	2366	5150	3984	6154	7420	6003	2932	5450	4831	4696	4931	4217	3217	*	4958	37
+       353	2309	6031	1908	447	1189	833	8284	3136	1289	
+
+K 38   5230	6198	1745	6208	6171	2398	3446	6355	3820	*	*	3290	*	4829	5953	3514	5582	*	*	7086	38
+       20	7250	7137	0	*	290	2455	8261	1096	1405	
+
+P 39   1733	5285	5092	7555	*	5731	7137	3692	5109	4111	7422	4999	4165	*	6596	5696	2475	3004	7409	5969	39
+       0	*	*	*	*	1055	947	8275	0	1089	
+
+V 40   4813	5314	*	*	7784	*	4999	1989	*	2319	4365	7079	*	7275	*	6778	3853	1841	*	5000	40
+       0	*	*	*	*	*	0	8280	0	1005	
+
+I 41   7175	7385	*	*	5891	*	*	1851	*	1527	5420	*	*	*	6609	*	7145	1711	*	*	41
+       0	*	*	*	*	*	0	8279	0	1005	
+
+M 42   5007	5712	*	5323	3384	*	6026	4025	*	3045	1299	*	*	6589	*	5498	*	3020	5274	4540	42
+       0	*	*	4322	74	0	*	8279	1005	1005	
+
+G 43   6796	*	6475	*	*	47	*	*	*	*	*	*	*	*	*	6417	*	*	*	*	43
+       0	*	*	*	*	*	*	8284	0	0	
+
+R 44   3475	6611	*	6308	*	7233	4603	6839	4344	5586	*	*	4953	*	678	4725	5666	7184	5850	5522	44
+       6	*	7866	*	*	*	*	8284	0	0	
+
+H 45   5654	6569	*	4787	*	4156	4674	6405	1730	7493	*	2613	6467	5661	2451	5429	3791	4690	*	7041	45
+       41	5823	6609	3322	152	*	0	8285	1139	1000	
+
+T 46   5744	7431	5813	*	*	*	6406	5941	*	5097	4650	*	*	*	*	3091	452	6327	*	*	46
+       0	*	*	*	*	*	0	8259	0	1105	
+
+W 47   4885	*	7208	*	1697	*	*	5322	*	4680	6276	*	*	5813	*	6793	*	5926	3283	1224	47
+       17	7090	7729	2834	218	656	1452	8259	1091	1105	
+
+E 48   4612	*	2348	1274	5549	5944	6076	6220	4220	4880	7203	6223	7017	3746	4316	*	5471	5610	*	*	48
+       29	6223	7216	1601	577	781	1259	8285	1176	1081	
+
+S 49   3342	*	4438	4828	6614	4493	5619	5294	5171	3452	3610	6293	6330	5022	6150	1919	3530	4496	5229	5243	49
+       77	4667	6315	2386	306	884	1126	8292	1491	1066	
+
+I 50   5471	7097	4127	5268	3042	6296	6267	2834	7091	2172	2584	*	6633	6004	*	5421	5698	3625	4570	6353	50
+       521	1774	6528	2196	355	517	1732	8276	4166	1145	
+
+G 51   3148	*	4179	3987	6899	2585	6214	5861	4297	*	*	5029	1661	5476	4014	4385	7416	6354	6979	7092	51
+       1280	834	5193	1516	621	1063	940	8263	5921	1435	
+
+R 52   4730	7028	4744	4798	5155	5019	5866	7226	2781	5436	6292	4423	5556	6253	2940	4707	4839	*	1618	7150	52
+       202	3452	4669	1466	648	1544	606	8248	2272	1752	
+
+P 53   3588	*	4394	5618	5822	4542	5287	4785	4239	4057	7227	6011	1475	5808	5267	4122	4580	4055	*	5140	53
+       296	2496	6906	3607	124	641	1478	8181	2927	1885	
+
+L 54   4732	*	5048	6490	3489	5538	6972	4077	4884	1425	4887	7196	4945	*	6128	5549	5672	5527	4709	2750	54
+       51	5479	6368	1467	648	741	1315	8258	1286	1368	
+
+P 55   3485	7028	3877	4754	*	4004	4775	7081	3233	5589	7418	4048	1722	5024	4702	4234	4272	5565	*	*	55
+       78	4575	6544	3740	112	821	1205	8280	1396	1239	
+
+G 56   3284	*	2991	3845	*	2189	5080	7523	4052	*	6825	2572	4811	4325	4260	4313	7068	*	7393	6807	56
+       78	4411	7401	2256	339	0	*	8291	1536	1199	
+
+R 57   3620	6399	5082	5801	5138	4324	7308	4667	3859	4217	4698	6178	4922	5961	1415	5062	4528	4184	6989	*	57
+       143	3402	*	2556	269	0	*	8299	2034	1000	
+
+K 58   3771	*	3843	3621	*	7588	4156	3566	3513	3823	6268	5468	2640	5610	3531	4896	3773	4134	*	7586	58
+       8	7447	*	0	*	*	*	8300	1000	0	
+
+N 59   6357	4366	6871	*	4436	*	3637	3853	2318	5031	5663	2396	6388	5658	3508	4171	4933	3536	*	*	59
+       16	7288	7805	2000	415	*	*	8306	1000	0	
+
+I 60   5291	*	*	7186	3185	7191	5038	1979	*	2835	*	7347	7125	*	7283	5829	6465	2127	6318	2874	60
+       14	7597	7869	2322	322	*	0	8305	1000	1000	
+
+I 61   6831	*	*	7058	5754	*	*	2999	*	4613	5823	*	*	*	*	*	6873	386	*	7059	61
+       19	*	6226	*	*	*	0	8306	0	1049	
+
+L 62   4377	6046	7012	*	2969	*	*	2981	*	1822	6483	*	*	5915	*	6261	5819	1642	*	6304	62
+       48	4923	*	1686	537	312	2363	8297	1487	1246	
+
+S 63   5030	*	6390	*	*	4884	7297	6845	*	*	7347	*	5829	6894	5076	1019	1532	7070	*	*	63
+       60	4914	7030	2587	263	0	*	8305	1420	1000	
+
+S 64   4762	5805	3870	*	*	6163	2730	*	4298	6324	*	4656	6884	5534	1763	2378	3441	*	*	*	64
+       51	5034	7873	933	1070	*	0	8299	1333	1005	
+
+Q 65   5663	7058	3366	5140	6643	5319	4305	7579	4049	7501	*	2865	7292	3763	2958	2992	2320	6532	*	6997	65
+       82	6484	4513	494	1785	0	*	8299	1154	1075	
+
+P 66   4180	5010	4690	4281	5331	4050	5781	6147	3378	2229	4349	4979	2813	6675	4614	4703	4736	4552	*	7814	66
+       205	4250	3650	958	1043	1656	551	8292	1658	1532	
+
+G 67   4660	*	3131	3508	5216	4273	5725	3997	3424	3948	6062	3893	3817	4187	5134	3400	3662	6984	*	5509	67
+       69	4561	7796	2349	315	3806	107	8203	1586	2288	
+
+T 68   4193	*	4887	3649	3853	4336	5342	4734	4214	3336	6177	5035	3034	4231	5745	3661	4185	4507	7748	3698	68
+       140	4042	4986	2719	238	1904	448	8205	1887	2257	
+
+D 69   3120	7544	3481	2881	*	5583	5547	5071	4152	4294	7698	4916	3307	5166	4793	3082	4778	3254	*	6293	69
+       2956	223	6150	1232	800	799	1234	8168	7345	2225	
+
+D 70   3674	6857	3180	2560	7190	4117	6893	6505	3938	*	*	3919	2221	5831	5967	3909	4671	5984	5078	5749	70
+       179	3352	5715	2669	247	1342	724	8221	1977	2121	
+
+R 71   5675	*	2757	4745	*	1997	6328	*	4858	4974	*	2041	5117	6279	3841	4138	4932	6181	*	6943	71
+       148	3723	5533	1362	711	1309	745	8221	1896	1968	
+
+V 72   2769	5075	5376	5993	4453	5839	6087	3281	*	3984	6015	4932	5560	*	6828	3829	3146	2110	*	4424	72
+       291	2555	6338	1640	558	1833	475	8225	2714	1797	
+
+T 73   5594	5936	*	3449	4526	6792	3805	3648	4944	3039	*	7398	5054	4768	3601	5454	2462	3682	*	3717	73
+       43	5094	*	553	1651	1310	745	8240	1266	1967	
+
+W 74   4968	7237	6383	5423	2903	7397	6995	2818	5301	2916	6402	7459	5362	5102	5475	6515	5497	1859	5296	4278	74
+       94	4164	7148	607	1542	1738	514	8243	1737	1642	
+
+V 75   3737	4949	4895	5266	3923	5938	4289	2993	*	2970	6443	4687	7367	6554	6036	6107	3717	2196	5276	5082	75
+       167	3316	6792	414	2002	1564	595	8212	2168	1683	
+
+K 76   3561	*	5196	4120	7403	3471	4313	5503	3642	7562	*	2930	4317	5839	2971	2830	3625	6804	7361	6202	76
+       569	1618	*	346	2231	230	2760	8238	4207	1517	
+
+S 77   6257	*	1806	4571	6313	4240	5395	7429	4167	6002	*	3113	4310	5678	7203	2116	4368	7022	7071	7382	77
+       85	4127	*	3679	117	0	*	8302	1686	1005	
+
+V 78   4029	*	5745	5732	4160	5795	*	2825	7473	2118	4930	*	2965	*	7002	4961	5277	2432	5544	5886	78
+       27	*	5731	*	*	685	1404	8282	0	1226	
+
+D 79   3139	7239	3050	2209	*	4848	5527	4471	4739	4876	5999	5148	4742	4239	5048	4044	3676	3907	*	*	79
+       7	*	7793	*	*	567	1622	8281	0	1276	
+
+E 80   3413	6880	2863	1758	6650	5545	6307	7531	4316	7354	*	5833	5202	3433	7423	2835	4949	4732	7497	*	80
+       35	5380	*	272	2539	1498	631	8308	1277	1098	
+
+A 81   1994	7104	*	3768	4168	4102	*	3407	5823	2854	6080	6652	5309	6074	6180	6202	3710	3083	*	5833	81
+       0	*	*	*	*	*	0	8309	0	1033	
+
+I 82   4285	5693	7026	7233	5972	*	5971	2198	7371	1525	4463	7391	7450	*	7196	*	7305	2091	*	7172	82
+       56	4897	7802	3144	173	*	0	8309	1360	1033	
+
+A 83   2513	*	3835	2497	*	7110	5163	7176	3309	4188	7642	4190	5173	3909	3307	3911	5371	5258	*	6980	83
+       81	4521	6492	674	1421	2521	276	8291	1542	1284	
+
+A 84   3522	7327	4370	3437	4554	5714	4668	5066	3352	3175	7091	6353	*	3434	2627	4360	5091	5632	5549	4924	84
+       55	*	4738	*	*	2768	229	8293	0	1515	
+
+C 85   2163	5314	6088	6289	4688	6970	7065	3910	6410	1362	5121	5767	*	*	5321	6016	6440	4783	*	3897	85
+       195	3720	4314	913	1092	805	1225	8251	2138	1899	
+
+G 86   4844	*	4491	4038	6440	3957	5623	*	1511	6358	5845	4805	7109	3991	2772	4575	4905	7110	7336	4573	86
+       887	1173	5969	1582	586	1141	871	8222	5120	1921	
+
+D 87   2855	6203	3309	3180	*	2818	4473	6376	3791	7047	*	4355	4104	3517	4131	4293	4314	*	*	7487	87
+       771	1363	5309	1198	826	108	3799	8227	4770	1785	
+
+V 88   4338	*	2731	3926	5038	2196	5745	3413	5791	4801	*	4070	7377	6062	4477	3709	4648	4325	*	5190	88
+       16	6480	*	867	1146	704	1372	8298	1175	1328	
+
+P 89   6356	*	3330	3407	*	2742	5640	7135	2267	*	6840	4023	4950	3710	2991	4212	4295	*	*	*	89
+       36	5326	*	942	1061	0	*	8309	1353	1076	
+
+E 90   5533	*	2069	3110	*	4241	4428	6156	3530	5618	6036	3591	3574	5453	3789	4411	4101	6148	*	7124	90
+       10	*	7128	0	*	0	*	8310	1000	1000	
+
+I 91   4910	7125	5208	7568	*	*	*	1422	*	2313	6065	7375	7095	*	*	5831	5757	1851	7874	7152	91
+       17	7568	7277	0	*	0	*	8294	1031	1003	
+
+M 92   3353	6422	*	6576	2381	7372	*	3466	7328	3347	4920	7212	*	7122	*	4969	6471	3537	2372	3090	92
+       12	7873	7872	0	*	0	*	8305	1000	1000	
+
+V 93   4677	5642	*	7249	6315	6241	*	1886	*	2726	4773	7003	7180	*	*	7162	5763	1286	*	*	93
+       84	5824	4674	2398	303	820	1206	8305	1228	1075	
+
+I 94   4134	3795	5662	3791	4243	4534	4601	1706	*	2988	4948	*	*	*	*	5301	5985	3568	5076	5519	94
+       7	*	7753	*	*	0	*	8288	0	1456	
+
+G 95   4778	*	6297	7130	*	141	*	*	5831	*	7094	*	*	*	*	7255	*	7476	*	*	95
+       11	*	6999	*	*	0	*	8309	0	1000	
+
+G 96   6166	*	6421	*	*	262	*	*	*	*	*	*	*	*	*	3045	5690	*	*	*	96
+       19	*	6254	*	*	0	*	8297	0	1011	
+
+G 97   1781	*	7489	4318	*	2233	5766	5662	5213	4627	*	7284	3420	7623	6237	3586	4391	3886	*	5771	97
+       0	*	*	*	*	0	*	8302	0	1068	
+
+R 98   4066	*	4286	2811	6824	3349	7539	5313	4421	6209	7410	5079	5893	2962	3922	2976	2923	5169	*	6014	98
+       10	*	7130	*	*	*	*	8310	0	0	
+
+V 99   6051	*	*	*	5529	5239	*	2105	*	1482	5098	*	*	*	*	7058	3366	2304	6624	*	99
+       19	*	6288	0	*	0	*	8294	1003	1003	
+
+Y 100  2426	6480	*	*	3420	4718	7813	3327	*	3399	*	5319	7296	6317	*	6837	6126	3456	5161	1805	100
+       0	*	*	*	*	0	*	8312	0	1070	
+
+E 101  3063	*	4428	3452	*	3535	5081	6299	3218	6258	6532	3910	4892	3493	3068	3301	4476	7348	7129	6088	101
+       0	*	*	*	*	*	*	8310	0	0	
+
+Q 102  2680	*	5356	2929	*	5772	5763	6385	7161	2947	5595	4868	5437	2538	5283	2806	4289	6956	6309	6375	102
+       13	*	6824	*	*	*	*	8310	0	0	
+
+F 103  2789	5148	*	*	1583	5806	7364	6334	*	1713	4767	7069	*	*	*	5509	5646	5356	7261	4844	103
+       7	7614	*	447	1909	0	*	8301	1124	1048	
+
+L 104  3477	5834	6483	6772	4126	*	6496	2966	6464	1080	3860	*	*	6700	*	6440	5099	4844	5407	6136	104
+       231	2757	*	1000	1000	*	*	8310	2831	0	
+
+P 105  3247	*	2450	2912	7239	5391	5881	6874	3754	*	*	3991	2423	4009	3306	5258	*	*	*	6643	105
+       885	1124	*	989	1012	*	*	8310	5202	0	
+
+K 106  4023	5327	*	4730	4313	*	3691	5501	4758	1267	5271	*	*	5265	4633	4878	*	5199	6089	3246	106
+       69	4721	6809	1000	1000	*	0	8305	1494	1005	
+
+A 107  2996	3368	7314	*	5398	5412	*	1835	*	3504	7121	*	*	6817	*	5473	5984	1970	5012	6034	107
+       25	5842	*	1677	541	748	1306	8295	1311	1139	
+
+Q 108  6168	6856	539	4482	*	*	4528	*	5738	*	*	4564	*	5496	*	4198	4348	7554	*	6809	108
+       7	7795	*	2585	263	*	0	8305	1000	1005	
+
+K 109  *	6895	5783	989	*	*	4307	5206	4079	6437	*	*	*	4494	2893	5115	4479	4002	*	7291	109
+       0	*	*	*	*	*	0	8305	0	1005	
+
+L 110  4852	5657	*	*	3272	*	*	2235	*	1423	5764	*	*	*	*	*	*	2960	5700	3466	110
+       0	*	*	*	*	*	0	8305	0	1005	
+
+Y 111  5984	*	4930	4436	3827	5830	2669	3141	6263	3778	*	6420	*	4715	3276	*	5033	3748	4229	2743	111
+       0	*	*	*	*	*	0	8305	0	1005	
+
+L 112  5808	6005	*	6189	4452	*	6809	2025	6429	1306	4100	*	*	7683	7861	*	*	2680	*	6289	112
+       16	6482	*	2807	222	*	0	8305	1059	1005	
+
+T 113  5306	6836	5257	5495	3438	5439	4750	4916	5443	3914	5681	4878	*	6303	6100	2665	1498	5673	7118	5410	113
+       0	*	*	3170	170	1371	705	8263	1005	1149	
+
+H 114  *	*	7094	4379	4853	*	4511	2112	4336	3377	7119	6347	*	5200	2883	7211	3718	2437	7401	4900	114
+       10	7173	*	0	*	*	0	8269	1020	1059	
+
+I 115  2793	5537	7541	5821	4561	4975	4864	1808	*	3426	5934	5158	*	6130	6296	4893	5579	2443	*	6150	115
+       0	*	*	*	*	*	0	8269	0	1059	
+
+D 116  4270	*	3921	4715	6868	6300	4543	*	4304	5917	5092	5600	777	6370	7219	6434	6410	5467	*	6126	116
+       8	7476	*	0	*	*	0	8269	1018	1059	
+
+A 117  3878	6173	5180	5405	*	3574	6642	3042	5597	3750	6377	7517	5792	7010	4090	5721	3700	1771	5955	4336	117
+       14	6696	*	545	1668	0	*	8269	1226	1059	
+
+E 118  3842	5834	3582	3573	4771	*	6021	2987	5647	2710	5723	4932	7340	6483	5937	4535	3606	2487	*	7603	118
+       49	5252	7104	1769	501	*	*	8310	1274	0	
+
+V 119  4156	*	6194	6275	2367	5496	7059	3878	6381	1748	6591	*	7458	*	6047	7184	4439	2856	*	3415	119
+       1095	911	*	162	3231	0	*	8307	5754	1040	
+
+E 120  3202	7273	3289	2741	*	3006	4973	*	3065	*	*	4183	4779	3963	3977	3729	4319	6319	*	*	120
+       63	5687	5418	900	1108	*	0	8293	1203	1000	
+
+G 121  3021	3469	*	6981	*	485	6595	*	7049	*	7630	*	*	6959	7281	*	6400	*	*	6089	121
+       82	4307	7800	1683	538	592	1570	8259	1671	1307	
+
+D 122  6439	*	1451	4933	6333	4358	6189	3751	3457	5368	7524	4863	5073	*	3487	7427	3625	3643	*	*	122
+       81	4727	5893	1123	887	0	*	8302	1630	1117	
+
+T 123  3665	6154	*	7317	*	6974	6016	4961	5688	4818	*	*	2260	6938	2160	4378	2470	3044	*	*	123
+       0	*	*	0	*	1686	537	8266	1000	1123	
+
+H 124  4733	5391	6983	6990	2164	6039	5528	4903	4751	1680	5241	*	5196	*	5382	6093	6146	4832	5113	3189	124
+       62	5364	5824	2881	210	*	0	8268	1196	1059	
+
+F 125  4470	*	7117	*	782	*	7373	4652	*	2619	4548	7005	*	*	5784	5732	7189	5146	7317	5119	125
+       53	5393	6377	257	2617	701	1377	8219	1430	1285	
+
+P 126  3833	*	3328	4084	*	3774	5794	7398	5278	5489	5486	4534	1124	*	7574	4567	5128	5733	*	7163	126
+       134	3883	5594	1114	894	833	1189	8261	1858	1241	
+
+D 127  3583	7156	3106	2513	6468	3019	6447	6257	3985	5104	7338	4576	3706	4942	4245	4013	4376	4775	6603	*	127
+       108	4791	4805	1504	627	1192	830	8218	1430	1338	
+
+Y 128  5037	*	3970	5085	3330	3987	6756	3075	6137	2294	5691	4314	5131	5601	5667	6155	4293	3090	5346	5503	128
+       122	4939	4357	1732	517	632	1495	8195	1290	1529	
+
+E 129  4421	*	2019	3802	5957	3929	4474	4039	4726	4219	5982	4379	3320	4551	4462	4912	4574	5451	7459	*	129
+       114	4845	4605	1024	976	620	1518	8146	1408	1703	
+
+P 130  3222	*	3784	3075	4658	4273	5550	*	3743	3987	6121	5093	2822	4181	4911	3875	4710	5591	5075	5579	130
+       162	4061	4426	112	3746	582	1591	8135	1791	1671	
+
+D 131  3957	6577	3579	3374	5843	4732	5967	7128	4217	5201	5816	3370	3817	3653	3229	3055	5451	4386	*	5425	131
+       742	1367	6123	182	3074	1243	792	7987	4225	1644	
+
+D 132  4047	*	3869	3319	5266	3412	4479	5401	3981	5139	*	3572	4104	3330	3071	3798	5379	5557	*	6278	132
+       0	*	*	*	*	540	1679	8014	0	1611	
+
+W 133  6914	*	7317	7196	2379	*	*	5241	*	1412	7194	*	*	*	7169	*	*	4531	1995	3715	133
+       27	6868	6686	3000	193	917	1088	8189	1018	1138	
+
+E 134  4703	*	4660	2396	7227	7007	4542	4690	2453	7099	5773	4438	5666	3912	2826	6086	3669	4244	6906	*	134
+       17	*	6447	*	*	*	0	8189	0	1120	
+
+S 135  5771	*	*	4694	6982	*	6023	3791	4651	897	5647	7315	5136	*	4317	4623	5886	3206	*	*	135
+       15	*	6634	0	*	1341	725	8182	1049	1252	
+
+V 136  4524	*	3956	4130	6257	7025	6071	3428	3714	2860	5528	5325	*	4960	5678	3925	3593	2067	*	7175	136
+       31	6171	7101	2774	228	*	0	8176	1156	1252	
+
+F 137  3573	7189	3653	2389	6294	4237	5428	6883	3881	6030	*	5306	7276	5379	4224	1809	4310	7480	*	7070	137
+       10	*	7167	*	*	2146	370	8177	0	1348	
+
+S 138  4052	5040	5690	3120	5939	*	5163	6658	4471	4356	5998	5898	7079	3539	3702	2971	2595	3023	*	6949	138
+       105	4399	5475	661	1444	862	1153	8152	1537	1366	
+
+E 139  4135	*	5460	2446	*	5707	4482	7372	2897	5871	*	6789	4620	3756	2629	4015	2894	5348	*	6749	139
+       53	6128	5522	2488	283	2050	399	8095	1072	1344	
+
+F 140  3806	7020	3232	3520	5173	5112	4456	5874	4254	5640	5411	*	3835	3709	3044	3574	3753	3881	*	5784	140
+       142	3807	5494	2035	404	1880	457	8050	1564	1524	
+
+H 141  5126	6436	6542	5273	2179	5578	3814	4002	5054	3376	*	6414	*	6271	4808	4282	3975	3491	5175	2949	141
+       345	*	2234	*	*	*	0	7826	0	1630	
+
+D 142  3281	5775	3373	2622	4706	2769	*	5432	5111	*	*	*	4631	3120	5468	3320	5358	4587	*	4695	142
+       478	*	1826	*	*	2782	227	6574	0	2598	
+
+A 143  3001	5361	4479	3216	*	3751	*	3239	3313	*	*	*	2755	5197	4178	5444	5198	2872	*	*	143
+       225	5325	3068	1895	452	2709	239	6042	1133	3145	
+
+D 144  5062	5012	1311	2828	*	*	*	4933	4841	5110	*	5129	*	3091	*	*	*	3004	*	5163	144
+       115	5236	4311	1000	1000	1816	482	6099	1000	3087	
+
+A 145  3942	*	4462	1647	3372	*	4434	5280	5288	4956	*	*	3772	5386	4216	3784	3053	*	*	*	145
+       73	5468	5220	2196	355	2371	310	5979	1118	2668	
+
+Q 146  4587	*	2420	1894	*	5464	*	*	3212	5563	5455	3449	*	4623	4094	5404	3907	5601	*	5253	146
+       30	*	5579	*	*	927	1077	6060	0	2432	
+
+N 147  *	*	2750	4597	*	2954	3848	5364	5989	*	*	1738	4818	5877	5388	3926	3674	5693	*	4967	147
+       53	*	4793	*	*	3139	174	6785	0	1738	
+
+S 148  3586	*	3253	3659	4723	1444	*	*	3222	*	*	3805	4405	4023	*	5986	*	*	*	5373	148
+       441	5925	2017	2585	263	1103	904	6844	1028	1818	
+
+H 149  5461	*	5575	5371	3535	4287	5833	4429	5512	4035	*	5369	3444	*	*	3529	4514	2429	4628	2513	149
+       0	*	*	*	*	1601	577	6191	0	2228	
+
+S 150  4698	5990	4936	3286	*	3768	*	4520	3353	5720	*	4089	2993	4696	2951	2535	4925	5727	*	*	150
+       0	*	*	*	*	102	3874	6326	0	1817	
+
+Y 151  5596	4980	5423	6011	1982	*	4139	4966	*	2864	*	*	5324	*	*	*	5130	3514	5953	1876	151
+       70	6043	4962	2000	415	0	*	7151	1018	1000	
+
+C 152  3858	5115	4429	3134	*	*	4372	3260	4456	5759	*	6117	*	3474	4450	4461	2657	2694	*	5920	152
+       0	*	*	*	*	0	*	7102	0	1127	
+
+F 153  4507	*	*	5633	1357	*	6267	3055	*	3192	6220	5330	*	4851	5546	*	6027	3752	6024	3275	153
+       23	5959	*	2000	415	*	*	7149	1020	0	
+
+E 154  5832	4007	6095	3641	5081	*	4757	5972	3892	2251	*	6128	*	3239	3958	*	3809	2625	5866	5042	154
+       19	6254	*	2000	415	*	*	6869	1000	0	
+
+I 155  *	*	6163	3321	5970	4616	4625	3731	3625	4500	6355	4815	*	6011	3805	*	2220	2156	*	6113	155
+       0	*	*	*	*	*	*	6855	0	0	
+
+L 156  *	*	*	*	3967	*	*	5249	5970	3227	*	*	*	*	5900	5345	*	*	2966	695	156
+       0	*	*	*	*	*	*	6855	0	0	
+
+E 157  4381	6079	4969	3370	*	*	5469	3994	3436	4835	5928	4386	*	3470	2213	5052	4947	3067	*	4515	157
+       0	*	*	*	*	*	*	6855	0	0	
+
+R 158  *	*	*	*	*	5962	*	*	1988	4890	*	3154	4898	5939	1009	6008	*	5418	*	*	158
+       82	4185	*	0	*	*	*	6810	1149	0	
+
+R 159  5356	*	5140	4313	*	*	5107	4013	1577	*	*	*	3140	4126	2981	3394	5157	4318	*	*	159
+       0	*	*	0	*	*	*	5599	0	0	
+
+//
+�HHsearch 1.5
+NAME  4186931bf3bd591aa12aac05cbb54275
+FAM   
+FILE  4186931bf3bd591aa12aac05cbb54275
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:15:10 2013
+LENG  69 match states, 69 columns in multiple alignment
+FILT  106 out of 1048 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  7.6 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCEEEEEEEEECCCCEEEEECCCCCEEEEEEHHHHHCCCCCCCCCCCEEEEEEEECCCCCEEEEEEEC
+>ss_conf PSIPRED confidence values
+997879999987999826895389971489876780045877689999999999989999587899979
+>Consensus
+xxxxxGxVkxxxxxkgyGfIxxxxxxxdiffhxsxxxxxxxxxlxxGxxVxfxxxxxxxGxxAxxVxxx
+>4186931bf3bd591aa12aac05cbb54275
+SGKMTGIVKWFNADKGFGFITPDDGSKDVFVHFSAIQNDGYKSLDEGQKVSFTIESGAKGPAAGNVTSL
+>gi|288961931|ref|YP_003452241.1| cold-shock DNA-binding domain protein [Azospirillum sp. B510]gi|288914211|dbj|BAI75697.1| cold-shock DNA-binding domain protein [Azospirillum sp. B510]
+---mAYGTVRWYNLDSQSGLIEPWEDGATVYFDRATLRQSGLDIVADGEDVRYLAVGSEDAPVAQRVELI
+>gi|57339988|gb|AAW49981.1| hypothetical protein FTT1051 [synthetic construct]
+--MKIKAASVCNDSKTIKktWQTP-------MLSTQHQESE---SI-EGKAPAGNEQFGTQG-------LS
+>gi|242032877|ref|XP_002463833.1| hypothetical protein SORBIDRAFT_01g007080 [Sorghum bicolor]gi|241917687|gb|EER90831.1| hypothetical protein SORBIDRAFT_01g007080 [Sorghum bicolor]
+-----------------------------MAIRITMSYSGYvaQNLAASFGLRCTTA--------------
+>gi|307152296|ref|YP_003887680.1| cold-shock protein DNA-binding protein [Cyanothece sp. PCC 7822]gi|306982524|gb|ADN14405.1| Cold-shock protein DNA-binding protein [Cyanothece sp. PCC 7822]
+----EALVVRLFPEQDYGFLKTLDG-EEIYFHRNSVLHNDFERLAVGTGVRYSAIEDDQGPRATTVQI-
+>gi|82914243|ref|XP_728783.1| hypothetical protein [Plasmodium yoelii yoelii str. 17XNL]gi|23485305|gb|EAA20348.1| hypothetical protein [Plasmodium yoelii yoelii]
+-------------VQAHGpdFPADSGG-RLRHHRDAGRPG---NLFSPAQRVRFAEEMGEEGPQASSVRV-
+>gi|323498541|ref|ZP_08103534.1| hypothetical protein VISI1226_09719 [Vibrio sinaloensis DSM 21326]gi|323316430|gb|EGA69448.1| hypothetical protein VISI1226_09719 [Vibrio sinaloensis DSM 21326]
+--MaIQGTISEWDQHKGYGYIAVDDQEAQIRFHLFDFEAFGHP-PQLRDRVQFRLAKDDQGeLRAVHVER-
+>gi|294788309|ref|ZP_06753552.1| membrane protein,putative [Simonsiella muelleri ATCC 29453]gi|294483740|gb|EFG31424.1| membrane protein,putative [Simonsiella muelleri ATCC 29453]
+----SGKIVKWNSERGFGFVKTAEVANDIFFHVNTLVGKDEISPQQNESVtvYAKYDDDKKRWSATKITS-
+>gi|50085859|ref|YP_047369.1| hypothetical protein ACIAD2809 [Acinetobacter sp. ADP1]gi|49531835|emb|CAG69547.1| hypothetical protein; putative membrane protein [Acinetobacter sp. ADP1]
+---MKGKILDYSIQTSTGIIRAENQ-QRYSFSGSAWKEQ--QAPMRGMHVDFEID--------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+S 1    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	1
+       0	*	*	*	*	*	*	3105	0	0	
+
+G 2    3654	*	2230	*	*	1415	*	*	1985	*	*	3646	*	*	*	*	*	*	*	*	2
+       101	3888	*	2000	415	*	*	4582	1000	0	
+
+K 3    *	*	*	5537	*	*	*	5588	4015	3509	1274	*	5030	*	1458	*	*	*	*	*	3
+       83	4162	*	0	*	*	*	6947	1281	0	
+
+M 4    4526	*	*	4366	4208	*	4824	3400	3951	3428	3512	*	4663	4137	3562	4077	5588	3472	*	2970	4
+       0	*	*	*	*	*	*	7872	0	0	
+
+T 5    4213	*	*	6778	4879	*	4784	4226	3256	4127	5759	4765	*	2720	3125	4159	2616	5325	*	3545	5
+       0	*	*	1000	1000	*	*	7719	1000	0	
+
+G 6    3651	*	6592	*	*	296	*	*	5310	*	*	*	*	*	5400	6602	6369	5369	*	*	6
+       0	*	*	*	*	*	*	7755	0	0	
+
+I 7    4006	*	*	*	5363	*	*	4185	2392	5488	6876	5676	*	*	3180	5678	1453	3293	6474	6743	7
+       0	*	*	*	*	*	*	7755	0	0	
+
+V 8    5310	4775	*	*	*	5400	*	1510	*	3566	*	*	*	*	*	*	*	1062	*	*	8
+       0	*	*	*	*	*	*	7755	0	0	
+
+K 9    4722	6546	5781	*	6769	5400	7091	4407	1364	4579	*	6980	*	6402	3090	3176	4026	3673	*	5159	9
+       0	*	*	*	*	*	*	7755	0	0	
+
+W 10   6337	6212	4220	4113	3705	*	5091	6918	3875	6702	*	4834	*	5884	3153	2369	4668	4832	2069	*	10
+       12	*	6914	*	*	*	*	7755	0	0	
+
+F 11   *	4789	*	*	1536	5395	*	4847	*	3423	5554	*	*	*	*	*	6745	5088	2240	2354	11
+       63	*	4553	0	*	0	*	7740	1000	1000	
+
+N 12   *	6753	1887	6754	4039	6783	5381	5659	3966	4995	5723	1707	*	6943	4843	3654	*	4202	*	*	12
+       55	6783	5144	2807	222	*	0	7711	1000	1319	
+
+A 13   4813	*	2833	3619	6740	6398	4123	5610	5573	6258	5986	5663	2299	4294	3525	3320	3961	4176	*	6245	13
+       35	5365	*	2000	415	198	2963	7777	1114	1583	
+
+D 14   3361	*	2942	2498	*	5054	5678	6599	3146	6051	*	4806	5989	4028	3843	3934	3648	3860	*	6515	14
+       0	*	*	*	*	0	*	7824	0	1000	
+
+K 15   6031	*	4455	3467	*	4087	6438	6777	1595	5930	5656	3805	*	3685	2410	4829	5087	*	*	*	15
+       0	*	*	*	*	*	*	7824	0	0	
+
+G 16   5446	*	4933	5740	*	656	5710	*	4582	*	6330	4754	*	5095	3495	5073	5356	6898	*	*	16
+       0	*	*	*	*	*	*	7824	0	0	
+
+F 17   6707	*	*	*	1594	*	4763	4720	6745	5307	*	*	6232	*	6613	6436	4253	6373	4553	1294	17
+       33	5459	*	0	*	*	*	7824	1114	0	
+
+G 18   6373	*	*	5459	*	163	*	*	5356	6393	*	*	*	*	5487	*	6232	*	*	*	18
+       59	4635	*	1000	1000	*	*	7824	1384	0	
+
+F 19   4971	*	*	*	688	*	*	4955	*	4217	5930	*	*	*	5566	6310	6107	3989	4407	3532	19
+       0	*	*	*	*	*	*	7824	0	0	
+
+I 20   6393	6673	*	*	*	5459	*	633	*	3239	*	*	5980	5356	*	*	6629	2921	*	5487	20
+       0	*	*	*	*	*	*	7824	0	0	
+
+T 21   3574	6472	4637	3001	*	*	6383	4948	3580	4559	*	4539	6467	4084	3409	3495	2509	3517	*	6620	21
+       15	*	6629	*	*	*	*	7824	0	0	
+
+P 22   3834	5018	3781	4387	*	3999	6641	5929	*	6789	*	4693	2207	4462	3558	3238	3740	3270	*	6566	22
+       69	6454	4836	2322	322	*	0	7820	1059	1005	
+
+D 23   4171	*	1844	2852	4697	5066	5478	5938	5124	4085	*	4103	3115	6924	4320	4729	5657	4988	6414	*	23
+       79	4226	*	2114	379	2328	320	7661	1553	1421	
+
+D 24   3969	*	2205	2925	5113	2508	4523	*	5361	5300	*	3492	4840	6307	4296	4105	4874	*	*	6624	24
+       83	4368	7069	810	1218	*	0	7676	1375	1318	
+
+G 25   3996	6541	3812	5082	5094	1376	6841	6925	4953	5451	6822	5214	4317	4454	5281	4088	3455	6827	*	5435	25
+       426	*	1968	*	*	*	0	7679	0	1440	
+
+S 26   3472	*	3124	3119	*	1602	6195	6610	5922	6051	*	5675	3756	3669	3675	5647	6512	6170	*	*	26
+       37	5309	*	993	1008	237	2724	7363	1078	3724	
+
+K 27   4662	*	3080	2418	6284	3265	6538	6494	2855	6017	5002	4401	3521	3908	4613	4663	4678	6502	*	*	27
+       0	*	*	*	*	1423	673	7676	0	1388	
+
+D 28   4591	*	1173	2928	*	5375	*	*	5205	4330	*	3677	*	4904	3462	4497	5443	6264	*	*	28
+       0	*	*	*	*	*	0	7683	0	1205	
+
+V 29   4676	5708	*	*	4877	5321	*	1517	*	3742	5098	*	*	6345	5080	*	*	1780	*	3378	29
+       0	*	*	*	*	0	*	7683	0	1205	
+
+F 30   4428	*	6675	*	845	*	5983	*	6806	3971	4252	*	*	5503	4409	5733	*	*	4665	3075	30
+       0	*	*	*	*	*	*	7854	0	0	
+
+V 31   4789	6334	5460	*	1078	6327	5983	3901	*	3206	5141	*	*	*	6304	5531	*	2404	*	*	31
+       0	*	*	*	*	*	*	7854	0	0	
+
+H 32   6968	*	4409	6628	7158	5969	773	6886	6322	6362	6821	4869	4518	5397	4539	3181	6980	*	*	5519	32
+       0	*	*	*	*	*	*	7854	0	0	
+
+F 33   2616	*	5983	*	3339	5546	*	2829	3578	4265	5839	6424	6469	4279	2917	5216	4568	3711	*	4193	33
+       0	*	*	*	*	*	*	7854	0	0	
+
+S 34   3099	6806	4826	4248	6783	6622	5849	5406	3991	*	*	3162	*	4876	4285	1655	2748	*	*	*	34
+       0	*	*	*	*	*	*	7854	0	0	
+
+A 35   2232	6903	2370	3964	*	3783	4550	5614	5737	5001	*	3160	*	4250	*	4045	3805	4683	*	*	35
+       0	*	*	*	*	*	*	7854	0	0	
+
+I 36   6970	*	*	6469	2662	*	*	2567	*	1669	5697	*	*	5365	5983	5943	5578	2158	5721	*	36
+       51	5751	5939	1780	496	*	*	7854	1087	0	
+
+Q 37   4093	5784	4488	2661	*	5662	6208	5144	3318	4521	*	6010	3996	3513	3456	3193	4849	4255	*	4013	37
+       58	5743	5577	0	*	*	0	7839	1081	1080	
+
+N 38   3631	6647	3254	4358	*	2512	4405	6746	3141	5912	6222	4413	4317	3679	4171	3289	5626	6925	*	5719	38
+       114	6283	3986	885	1126	1572	592	7860	1105	1309	
+
+D 39   3479	4944	3656	3300	4811	4694	5631	5338	4025	5504	6788	3607	3931	4467	4564	3349	3577	5247	6619	4974	39
+       396	6854	2112	0	*	1063	940	7772	1000	1828	
+
+G 40   4155	*	2336	5242	*	1637	5488	*	6527	6139	6228	3442	5341	5287	6286	2894	4398	*	*	*	40
+       280	3057	4158	1748	510	1522	618	7354	1778	3521	
+
+Y 41   4394	5615	*	5632	2832	6255	3793	4297	*	2842	5453	5475	5264	4036	3209	5523	5609	3328	6586	3277	41
+       428	4488	2238	1489	636	580	1596	7354	1427	3076	
+
+K 42   4627	6157	3263	3740	6325	3791	5368	5453	3750	4761	*	3972	3804	4065	2531	3801	5536	5412	*	4695	42
+       120	6671	3831	0	*	225	2793	7489	1000	3306	
+
+S 43   3925	6647	3572	3775	*	5471	6341	4830	4377	4032	5232	5862	4418	5156	3341	2683	2805	4873	6893	5102	43
+       13	*	6769	1000	1000	0	*	7747	1000	1836	
+
+L 44   5679	*	*	*	4670	*	*	2951	*	1342	5422	*	1949	6401	*	*	6080	3343	*	6648	44
+       36	*	5354	0	*	0	*	7808	1000	1000	
+
+D 45   3551	4802	4432	4406	6513	4861	5544	5206	2821	5938	6670	5647	5992	3142	3613	2905	3849	4187	6347	5442	45
+       25	6796	6946	1000	1000	0	*	7680	1000	1205	
+
+E 46   3949	6448	3817	2576	6080	*	*	4278	4725	4402	5761	4490	2822	4495	4821	4244	4683	2737	*	6966	46
+       0	*	*	0	*	0	*	7808	1000	1000	
+
+G 47   5963	*	4078	*	*	483	*	*	5445	*	*	2981	*	*	6778	4661	*	*	*	6488	47
+       0	*	*	*	*	*	*	7821	0	0	
+
+Q 48   3815	*	1904	2516	6904	*	6496	6160	4472	6111	3732	6961	*	2782	6398	4664	3578	5719	*	6470	48
+       0	*	*	*	*	*	*	7821	0	0	
+
+K 49   3920	*	3943	3190	*	5667	5517	5022	4523	4885	5413	*	3407	3997	2104	4075	4166	4325	6504	5587	49
+       13	6841	*	1000	1000	*	*	7821	1000	0	
+
+V 50   *	6820	*	*	6327	6290	*	3649	*	3157	5902	*	5357	*	*	*	*	448	*	*	50
+       13	6855	*	1000	1000	*	*	7821	1000	0	
+
+S 51   4968	5624	5069	1973	6509	6810	5773	5226	4976	4516	*	*	*	4697	3712	2609	2843	4579	6111	4367	51
+       0	*	*	*	*	*	*	7821	0	0	
+
+F 52   4977	5897	*	6083	756	4905	*	6111	*	5139	*	*	*	*	*	*	*	3601	*	2426	52
+       14	6664	*	1000	1000	*	*	7821	1000	0	
+
+T 53   4496	6202	3460	1889	*	6354	6888	5554	3784	5653	7040	3920	*	3893	3789	3562	3496	4383	*	6356	53
+       27	*	5748	*	*	*	*	7821	0	0	
+
+I 54   4646	6398	6948	4140	4937	*	*	2391	5860	2329	4716	*	4231	*	5815	6664	4106	2117	6378	5364	54
+       30	6594	6584	1585	585	0	*	7854	1001	1099	
+
+E 55   3547	4769	4066	2592	5400	2876	5567	5907	4352	6034	*	7170	5147	3689	3987	5119	4458	2834	*	*	55
+       0	*	*	*	*	1052	950	7786	0	1105	
+
+S 56   4001	4857	3705	2642	5356	5648	5073	5402	3724	5399	4826	4459	3575	3723	3462	6103	3563	5001	7042	*	56
+       14	*	6737	*	*	*	0	7650	0	1001	
+
+G 57   *	*	2227	6778	6873	1966	*	5471	5829	6232	4459	3839	*	5265	4191	3220	3236	4328	*	*	57
+       62	5039	6451	1265	776	971	1030	7599	1282	1108	
+
+A 58   3857	*	2754	3188	6650	4246	6765	5499	3582	*	5545	4690	2602	3764	3588	4118	4965	5355	*	*	58
+       116	3693	*	2125	376	959	1042	7651	1654	1110	
+
+K 59   6021	*	4373	3625	5869	3884	5689	*	1930	6490	6230	4225	6185	3253	2230	4953	5286	*	*	5583	59
+       32	5490	*	1251	786	*	0	7660	1119	1000	
+
+G 60   4827	5259	*	6468	*	533	*	*	3747	6226	*	5645	*	*	4520	3560	*	*	*	*	60
+       591	1766	4575	627	1504	*	0	7650	3483	1000	
+
+P 61   4907	4853	5602	4700	4806	6268	*	4663	3274	2236	5828	*	1932	5624	4383	*	6241	4419	5188	4886	61
+       19	6266	*	0	*	1882	457	7463	1003	1461	
+
+A 62   3992	6471	6448	3673	*	*	5808	5066	3203	5244	4576	5109	*	2176	2711	3493	5592	3466	6905	*	62
+       30	5617	*	0	*	*	0	7499	1113	1310	
+
+A 63   208	6459	*	*	*	5238	*	*	*	*	*	*	*	5063	*	5953	*	4319	*	*	63
+       0	*	*	1000	1000	1988	419	7499	1000	1310	
+
+G 64   3115	*	6459	3367	4348	6140	6878	3918	3633	3642	*	*	6711	5488	4958	3939	3239	2283	*	4756	64
+       0	*	*	*	*	*	0	7510	0	1205	
+
+N 65   4053	*	2916	3403	*	6387	4860	*	3941	*	*	1916	*	3732	3562	3307	4733	5544	*	5942	65
+       0	*	*	*	*	*	0	7510	0	1205	
+
+V 66   4315	*	*	5689	5882	*	*	1709	*	4089	*	*	*	*	*	*	*	866	*	*	66
+       18	6356	*	0	*	*	0	7471	1000	1205	
+
+T 67   4703	4837	*	3490	6772	*	3740	5382	3359	4647	*	*	*	2999	2266	4190	2729	5311	*	5134	67
+       0	*	*	*	*	0	*	7443	0	1205	
+
+S 68   4566	*	*	6820	5243	*	*	3567	3524	1835	*	*	3173	6269	3331	4307	*	2590	6002	6003	68
+       0	*	*	*	*	*	*	7215	0	0	
+
+L 69   *	*	*	*	*	*	*	1596	*	1521	4239	*	*	*	*	3755	*	2845	*	4192	69
+       0	*	*	0	*	*	*	5467	0	0	
+
+//
+�HHsearch 1.5
+NAME  448f640ce08539f9f492ab947cf5c879
+FAM   
+FILE  448f640ce08539f9f492ab947cf5c879
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:10:18 2013
+LENG  196 match states, 196 columns in multiple alignment
+FILT  117 out of 167 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  5.7 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCCEEEEEEEECCCEECCEEEECCCEEEEECCCCCCCCCEEECCCCCCCCCCHHHHHHHHHCCCEEEEEEECCEEEEEECCCCCEEEECC
+CCCCCCCCCCCCEEEECCCCEEEECCHHHHHHHHHHHHHCCCCCCCCCCCEEEEEEEEECCCCCCCCCCCCCCCCEEEEEECCHHHHHHHHHHHCC
+>ss_conf PSIPRED confidence values
+9854554578996599999745976715289509989993762799998777645778898789999997447738999989989999878998897179
+777302688785289699986998177999999999862478765673010479999976779987868835588599999385899999998619
+>Consensus
+xxxxxvxxxxxxxWcxIxYyExxxrVGexfxxxxxxvxIDGfxdxxxxxrfcLgxlxnxxrxxxxxxxRxxIGxGvxLxxxxgxVxxxnxsxxxIFVqSx
+xxnxxxxxxxxtVxKvxpgxxxkvFdxxxfxxxlxxxxxxxxxxxxxlxxxcxiRISFvKGWGxxYxRqxItxxPCWiEIxlxxplxxlDxvlxxm
+>448f640ce08539f9f492ab947cf5c879
+LDLQPVTYSEPAFWCSIAYYELNQRVGETFHASQPSLTVDGFTDPSNSERFCLGLLSNVNRNATVEMTRRHIGRGVRLYYIGGEVFAECLSDSAIFVQSP
+NCNQRYGWHPATVCKIPPGCNLKIFNNQEFAALLAQSVNQGFEAVYQLTRMCTIRMSFVKGWGAEYRRQTVTSTPCWIELHLNGPLQWLDKVLTQM
+>gi|308489650|ref|XP_003107018.1| CRE-DAF-3 protein [Caenorhabditis remanei]gi|308252906|gb|EFO96858.1| CRE-DAF-3 protein [Caenorhabditis remanei]
+-----------VRWGVVSYYEEGDCYIER-ECYRGNFHIDSgFI--ISEQRLSLGLIQNPSRSTMAFKIRKAMIDGIRFSYKtDGSVWLQNNMRLPIFVT
+SGYLDDqCPGIRVNKVHKLYGHAKVKVFGFTRVKQIIRDrlyskqmarLYLQqnGnrnpMFEVYhripliaiqrearvttdSLVKYCCVKVSFGKGFGDA
+YPeRPIVSQCPVWLELKINSAFDYMDAILNDL
+>gi|24652852|ref|NP_725091.1| CG13188, isoform A [Drosophila melanogaster]gi|23240327|gb|AAF58603.2| CG13188, isoform A [Drosophila melanogaster]
+-------QIDDEIWAKVIVFERNRRVAKAY-ARAPVLTINGSDDGFDGMRIGLCGFDNPMRDQKTDEMKRVIGQGVKIKMDdAGNILIRRYAKSNVYVKS
+TASSPnEETSIGAEILKLPNQAlesekIVKLFDMKKFQSNVNRELRRAYPDRRRLETQCLSAVAFVKS------ENDILECPIWVLIVNVVAMDMLK---
+---
+>gi|268552851|ref|XP_002634408.1| C. briggsae CBR-DAF-14 protein [Caenorhabditis briggsae]gi|187035781|emb|CAP25118.1| CBR-DAF-14 protein [Caenorhabditis briggsae AF16]
+------------TWCHVQTFQLGVkkkaQAKEVFQTSQPTFTIEGGitTVGSTSSRMQLTC----GNSSKIQGIHQTFGEGIRMTKEKGTVWLTVLTaKC
+VVFIQSPFFNHINGKPLDTVIRVQNEHdelgnllhedklpTIKLFDSELYASELNAARSDPINRMETMEAFCKTRVSLAKGFNGDYAKK-----------
+----------------
+>gi|313232554|emb|CBY19224.1| unnamed protein product [Oikopleura dioica]
+------------DWARVSFYQKKMKRGPDFIARSRSFTIDGMTGPRCTsTRMPLGIRTLGLRgCPDTDRLLETVGHGIVIENKENCVLLRNISPVSVYVK
+SCQID-------STPIRIPAAHEVDLFFYDEFSRSIAER--NTLADLWQLREHCTLFISFGLCWGSStVQVESVDGLPCWLKLDLQHCW----------
+>gi|221125810|ref|XP_002162815.1| PREDICTED: hypothetical protein [Hydra magnipapillata]
+----------VSGWCRVDCYERQHHVAT-FRMDEPVICIDGIHPVSDKHRISFAGLPTRSEDLKVLKVKSCIGKGVQLHQDErQNLWATRLGKNPIFVRG
+HTLCPELVK---LNGKLTQGVPMKVLDTSAFKEYMKKECeTSGLV-DDELRDKIMsrlkVCMSFIKD------TVVDEETPCWFEVWLI-----------
+--
+>gi|167517705|ref|XP_001743193.1| hypothetical protein [Monosiga brevicollis MX1]gi|163778292|gb|EDQ91907.1| predicted protein [Monosiga brevicollis MX1]
+----------RDVVASITYHERDSPLAQFY-LNQPIFNISCFRPVEDNtTTVSLSDIDNPCRDSRTEKIRRFIGSGLQVSIRRKCLYVTRLSRNPVFLKN
+YQSPStvSDSILLRENGELPDGAEVCLFDYQVFSKEIARMPAE-----L-ALKMATVSLAFVRT------GEFDDKIPCWIRIRMGDALR---------
+>gi|313217634|emb|CBY38686.1| unnamed protein product [Oikopleura dioica]gi|313218130|emb|CBY41437.1| unnamed protein product [Oikopleura dioica]gi|313231875|emb|CBY08987.1| unnamed protein product [Oikopleura dioica]
+----------EKPWCNVSVYECNNKIevystaktqlGVEYKVADanryaKKEAMKG-KNATQSDVFDLSSISNVNRSTDTWDLLEKLQRGLTLVYDREKR
+IVSChnNcKNLKIYVLSYLMNVECGKHEQSLIQVGPGASRVVYDGYQLAKTIEG-VNSTT--QNDLQKwalisqyanyFTVFRISFQP-WGPEYTKKRLT
+DCDLWLEIFMREYLDWINQIE---
+>gi|256052771|ref|XP_002569925.1| smad [Schistosoma mansoni]gi|227284678|emb|CAY17438.1| smad, putative [Schistosoma mansoni]
+-----------KPWANISYWESHHHVGRRWISGNNsSVIrssskqckkcynyVDSFNDTSL--------IPNLivHssmykSSSGWKQCCRLGSQGISLT
+LTTyGCVWLSNQAlatNLPIFVSSPCFHFHNAncssssssslnssaedFLvDRPVYRVPAGYSLLVFDLSSYENWLQQHSSssssassssyRQYsgnnhn
+gdnsnlsgnsnnsnnIDFDelhkthlwaknnNLCKNPIIHISLGKGWGPSYRRPDVTHCPARLEVWIN-------------
+>gi|71985803|ref|NP_492746.2| Temporarily Assigned Gene name family member (tag-68) [Caenorhabditis elegans]gi|38422270|emb|CAB70215.2| C. elegans protein F37D6.6, confirmed by transcript evidence [Caenorhabditis elegans]gi|38422275|emb|CAB70221.2| C. elegans protein F37D6.6, confirmed by transcript evidence [Caenorhabditis elegans]
+----------NRSWAKMTRYERKEQIGDTVWLHGPFAAV-GVLSKSvhDAQLECSpWDLKN----EVSfALIRQadPIG-----STNPEDVWLYNSGTRP
+LFL-SMTPNVSS--TKDTLRRLSPGYCIRVHRGEVSASAPASERTKVrRPSKDPALAQQNLVISVGKGWGPNYSRLYLTDIPCRYEVSF-----------
+---
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+L 1    *	*	*	*	*	2943	*	*	*	1740	*	*	1928	*	2730	*	2670	*	*	*	1
+       0	*	*	*	*	*	*	1984	0	0	
+
+D 2    *	*	1821	2520	*	3783	3882	*	*	*	*	1993	4377	3938	*	*	*	4732	*	*	2
+       0	*	*	2000	415	*	*	2712	1030	0	
+
+L 3    4933	*	*	*	3260	*	*	2184	*	3327	3826	*	4817	4156	*	4179	4386	2148	*	4254	3
+       0	*	*	*	*	*	*	2954	0	0	
+
+Q 4    *	*	2555	5313	*	4241	3572	3308	*	4803	*	*	5352	2546	2658	5212	2740	*	*	*	4
+       211	3093	5707	915	1090	*	*	3000	1093	0	
+
+P 5    3324	3214	5328	3863	*	*	*	*	*	4389	*	4926	1449	*	*	2312	*	*	*	4309	5
+       26	*	5823	*	*	0	*	3359	0	1000	
+
+V 6    *	*	*	*	4152	4060	*	3524	*	*	*	*	4526	*	*	*	*	408	*	*	6
+       0	*	*	3322	152	0	*	3359	1000	1000	
+
+T 7    3801	2706	3814	2937	*	*	4926	*	*	4951	*	5510	2972	3898	3115	3724	3607	5757	*	*	7
+       0	*	*	*	*	*	*	3617	0	0	
+
+Y 8    5214	*	*	4113	3325	4736	*	*	*	6426	*	5618	4812	3132	*	5823	*	*	*	789	8
+       0	*	*	*	*	*	*	4050	0	0	
+
+S 9    5253	5640	6326	1730	*	5215	5075	3787	5823	*	*	5783	3937	3147	3129	3287	3644	*	*	*	9
+       74	5783	4968	0	*	*	*	4664	1000	0	
+
+E 10   4145	*	2888	1175	*	4448	4858	*	4736	5711	6984	3958	5061	5599	5493	*	4617	5556	5533	*	10
+       0	*	*	2322	322	*	0	5061	1028	1048	
+
+P 11   4554	*	2358	4518	*	4650	*	*	*	4766	5382	4324	1741	3863	3956	3865	4982	4813	*	*	11
+       20	6217	*	2700	241	*	0	5672	1030	1048	
+
+A 12   4287	*	3218	2213	*	3447	*	*	2887	7420	7336	5878	3911	3780	4196	3026	5524	6167	7035	6673	12
+       31	5909	7657	1657	550	0	*	5834	1139	1048	
+
+F 13   3554	5781	5421	4600	4403	4563	3153	3064	6520	*	*	3427	3693	6206	6259	4379	3939	3763	*	3110	13
+       0	*	*	0	*	0	*	5938	1000	1000	
+
+W 14   *	*	*	*	*	*	*	*	*	6273	*	*	*	*	*	*	*	5883	65	6155	14
+       0	*	*	*	*	*	*	5949	0	0	
+
+C 15   1986	729	*	*	*	3683	*	6076	*	4275	*	*	*	*	*	*	*	*	*	*	15
+       0	*	*	*	*	*	*	5949	0	0	
+
+S 16   5111	*	7885	*	*	5481	4338	*	2355	*	7165	3775	*	4002	4134	1691	2923	4488	*	6155	16
+       8	*	7526	*	*	*	*	5949	0	0	
+
+I 17   6342	*	*	*	*	*	*	1231	6150	2791	5760	*	*	*	*	*	*	1378	*	*	17
+       0	*	*	*	*	*	0	5946	0	1000	
+
+A 18   1466	7922	5703	*	5310	5979	6582	3095	*	4630	*	*	*	3324	*	2735	3962	4435	*	4465	18
+       28	5701	*	3170	170	*	0	5946	1060	1000	
+
+Y 19   7613	5731	*	*	4302	*	*	6091	*	4629	*	*	*	*	5058	*	5814	3724	5708	459	19
+       0	*	*	*	*	*	0	5967	0	1000	
+
+Y 20   *	*	*	*	2727	*	4746	*	*	6583	4180	5720	*	6169	5708	*	*	*	1980	1182	20
+       0	*	*	2000	415	0	*	5967	1000	1000	
+
+E 21   5946	*	*	118	*	*	*	*	5267	*	*	*	*	4779	*	*	*	*	*	*	21
+       17	*	6405	*	*	*	*	5969	0	0	
+
+L 22   *	5512	*	3074	4470	5012	4711	5702	3494	1356	4942	*	*	6238	2929	5881	6737	6155	*	5108	22
+       20	6155	*	0	*	0	*	5949	1023	1031	
+
+N 23   4497	4995	2962	6666	*	2768	5180	5946	4026	*	*	1639	*	5732	3271	4625	4316	*	*	*	23
+       0	*	*	*	*	*	*	5969	0	0	
+
+Q 24   5747	*	4891	3154	*	6236	4017	*	4628	4481	5741	3760	*	3105	3411	3066	2378	4047	*	*	24
+       74	4763	6238	2608	258	*	*	5969	1165	0	
+
+R 25   *	4522	*	*	5246	*	4467	*	3157	*	6561	*	4925	2792	885	4520	*	*	*	*	25
+       0	*	*	*	*	0	*	5946	0	1020	
+
+V 26   5819	*	*	*	*	*	*	2196	5709	3515	5150	*	*	6604	4766	*	*	812	*	6298	26
+       38	5516	8007	3322	152	*	*	5969	1082	0	
+
+G 27   2792	*	5337	*	*	420	*	6297	5818	*	5944	*	*	6236	*	6451	*	6400	*	*	27
+       0	*	*	*	*	*	0	5977	0	1000	
+
+E 28   5083	*	3718	1339	*	*	*	*	2641	6400	*	*	3700	4622	2723	6288	5728	5243	*	*	28
+       67	6388	4893	0	*	*	0	5977	1044	1000	
+
+T 29   2452	7499	5655	5439	4243	*	6315	4604	4432	2494	4582	*	3805	4737	4547	7277	2532	4050	*	7565	29
+       71	*	4388	0	*	125	3586	5871	1044	1268	
+
+F 30   5320	*	*	6673	757	6683	*	*	*	*	*	*	*	*	*	*	*	4753	4983	1761	30
+       204	*	2924	*	*	129	3545	5890	0	1259	
+
+H 31   4451	7045	4673	3887	5432	*	2673	4114	2309	5505	*	5866	3268	3757	4325	4506	5127	4936	5602	7033	31
+       0	*	*	*	*	0	*	5644	0	1687	
+
+A 32   1872	3757	*	*	4984	3977	*	5204	*	3227	5732	*	*	*	*	4787	3842	1742	*	*	32
+       141	3424	*	1000	1000	*	*	5969	1490	0	
+
+S 33   5516	6084	4938	4017	5770	4625	3453	6935	4163	6491	*	4770	7260	4050	2128	2332	4009	7038	6666	4910	33
+       70	4404	*	993	1007	*	*	5969	1259	0	
+
+Q 34   3455	6076	4484	3696	7309	3873	4174	5633	4007	6826	6893	3872	5633	3263	3313	2738	4280	5185	*	5600	34
+       32	5508	*	2080	389	0	*	5974	1115	1000	
+
+P 35   5340	*	4355	5676	*	4147	4737	6634	4202	6021	5709	4042	1449	4135	3998	3631	3526	*	*	*	35
+       45	5310	7558	1674	542	*	*	5969	1091	0	
+
+S 36   3813	5562	5029	4921	4110	*	4126	5230	4678	*	*	4452	5327	6154	7254	2003	2441	3065	6590	6915	36
+       0	*	*	0	*	0	*	5967	1000	1000	
+
+L 37   4179	5019	*	5516	3093	*	*	2792	*	2766	*	*	*	*	*	*	6194	1124	*	6501	37
+       8	*	7558	*	*	*	*	5969	0	0	
+
+T 38   4116	5205	6272	*	5772	*	4062	2685	4634	3716	*	2593	*	6013	5610	4910	2148	3972	6020	6328	38
+       24	5916	*	3700	115	*	0	5967	1037	1000	
+
+V 39   *	*	*	*	*	*	*	959	*	6154	5515	*	*	*	*	*	*	1153	*	*	39
+       381	*	2109	*	*	*	0	5967	0	1000	
+
+D 40   *	*	370	5529	*	5555	5549	*	5162	*	*	3710	*	*	*	4818	*	*	*	5497	40
+       0	*	*	*	*	2834	218	5659	0	2338	
+
+G 41   4806	4656	*	5573	*	315	*	*	*	*	*	4790	*	*	*	3976	*	*	*	*	41
+       193	4125	3886	0	*	49	4902	5768	1232	2156	
+
+F 42   6054	*	*	*	1054	3419	7125	5681	*	3855	5648	*	*	*	6296	2818	6515	5723	*	3189	42
+       105	4901	4778	1523	617	474	1837	5853	1169	1301	
+
+T 43   6132	5149	3475	4420	6527	6689	4971	4244	4799	4545	6412	5120	*	4204	4960	5976	1596	3427	6535	4071	43
+       151	4465	4207	1072	931	560	1637	5900	1286	1255	
+
+D 44   3315	7120	1083	3948	*	4281	6221	*	*	6182	*	3506	4753	5157	*	3575	5621	5675	*	*	44
+       40	5865	6659	3785	109	*	0	5849	1044	1372	
+
+P 45   4698	*	*	4845	*	2750	6239	5975	5694	3186	*	*	1254	4667	6133	4087	5783	3844	*	*	45
+       33	*	5471	*	*	412	2010	5862	0	1455	
+
+S 46   4668	5525	*	4798	3168	5644	5299	4950	*	6807	*	4403	2744	5978	4414	1458	4688	5266	*	5874	46
+       52	5029	7728	1000	1000	496	1781	5961	1153	1208	
+
+N 47   5428	4926	1891	4263	*	3427	4894	7488	5312	4041	*	3476	*	3968	4669	3890	3763	4169	*	6117	47
+       181	3490	5120	1777	498	513	1741	5973	1541	1054	
+
+S 48   4284	6683	5138	3852	*	1534	7624	5383	4597	*	*	3167	3678	4953	5275	3242	4411	5309	*	*	48
+       461	1869	*	419	1989	1572	591	5944	2648	1146	
+
+E 49   5242	6141	2113	3552	4990	4236	4471	*	4379	*	6622	2949	6815	4119	*	3118	3205	6279	*	5452	49
+       0	*	*	*	*	*	0	5931	0	1078	
+
+R 50   6564	*	*	6181	*	2748	5125	*	4660	5773	*	6352	*	*	752	4340	4372	4774	*	*	50
+       0	*	*	*	*	*	0	5931	0	1078	
+
+F 51   *	5931	*	5773	1116	*	*	2721	*	2672	3215	*	*	*	*	6461	*	4603	*	4835	51
+       0	*	*	*	*	*	0	5931	0	1078	
+
+C 52   5659	994	5487	*	*	2973	*	*	*	*	*	5170	5716	5785	*	1968	*	*	6993	*	52
+       0	*	*	*	*	*	0	5931	0	1078	
+
+L 53   *	*	*	*	3941	*	*	5437	*	265	5691	6356	*	*	*	5782	*	5054	*	*	53
+       74	4320	*	0	*	*	0	5929	1267	1078	
+
+G 54   3393	5577	*	5270	6021	951	6144	*	*	5832	*	3482	*	6355	4548	3762	4681	7373	5041	*	54
+       20	6219	*	0	*	*	0	5929	1022	1078	
+
+L 55   3368	5791	3831	4017	4343	3473	4629	5370	6918	2231	*	6730	*	2990	5775	3031	4806	*	6689	7255	55
+       56	5666	5791	0	*	528	1706	5929	1060	1078	
+
+L 56   *	5425	6217	5523	2704	*	*	2730	5992	1114	5120	*	*	6093	4626	*	*	4883	*	4578	56
+       21	*	6093	*	*	*	0	5933	0	1091	
+
+S 57   3979	5459	3520	2808	*	*	5770	*	5297	*	*	4025	4025	4539	6192	1577	3075	7259	*	*	57
+       59	6233	5234	0	*	1381	699	5906	1021	1181	
+
+N 58   6144	*	*	4536	*	*	5230	6220	5863	4556	*	672	5388	5184	4684	3388	5696	6619	*	*	58
+       97	5619	4475	2048	399	*	0	5928	1059	1257	
+
+V 59   5236	6599	5162	5129	5824	5008	7268	4566	5507	3980	*	5555	2122	4405	5602	4279	4889	1645	*	*	59
+       113	3867	7216	1414	679	1391	693	5839	1427	1538	
+
+N 60   7145	5393	5044	5564	6716	3501	2721	5728	4573	5067	3924	1803	5637	6252	5773	3508	4138	5874	*	6410	60
+       58	5012	6897	2604	259	2284	332	5882	1144	1353	
+
+R 61   5023	*	6724	5254	5770	*	4748	6063	4871	*	*	4449	4582	7135	585	4879	5644	6181	*	*	61
+       69	4743	6724	0	*	3418	142	5883	1166	1317	
+
+N 62   7188	5176	2193	4585	*	7601	5596	*	4287	7102	*	2491	4419	*	5183	2101	2977	6863	*	*	62
+       57	5063	6812	1357	714	939	1064	5880	1132	1341	
+
+A 63   3814	*	2700	2327	6692	7267	7637	5759	4887	4850	*	4189	3290	3386	*	2874	4000	*	5976	*	63
+       0	*	*	*	*	2193	356	5958	0	1189	
+
+T 64   2739	6896	3272	4247	*	4549	6063	6908	2963	4933	5668	5422	*	4033	4398	3588	2665	3915	*	*	64
+       0	*	*	3700	115	2219	349	5963	1000	1135	
+
+V 65   3480	*	*	7385	*	*	*	2480	*	*	*	*	*	*	*	2303	2257	1846	5894	5764	65
+       44	5774	6389	0	*	*	0	5962	1053	1094	
+
+E 66   3690	*	4515	1666	4685	5422	*	5011	2786	4661	7471	6239	6988	3415	4686	3855	*	6391	5440	5462	66
+       29	*	5661	2807	222	1285	762	5945	1000	1194	
+
+M 67   6064	*	3956	3380	*	4955	5159	*	2502	4306	4453	2757	*	4428	2442	4027	5316	5226	*	*	67
+       30	*	5616	*	*	*	0	5889	0	1207	
+
+T 68   2379	4078	*	*	*	5912	*	2373	7354	4086	6616	6567	*	*	6686	6346	1851	2699	*	*	68
+       0	*	*	0	*	3256	160	5859	1000	1350	
+
+R 69   *	5838	*	*	*	*	5674	*	3449	4089	*	*	*	6687	342	6133	*	*	*	*	69
+       0	*	*	*	*	745	1310	5861	0	1308	
+
+R 70   3570	4933	*	4346	*	4147	5329	5954	2941	3893	5538	4168	*	3184	2130	3851	4211	*	*	*	70
+       31	5575	*	1686	537	1638	559	5948	1100	1092	
+
+H 71   4319	5732	*	5776	5112	*	1780	*	1962	3888	5804	5706	5592	3744	7063	4629	4138	6679	*	5533	71
+       12	*	6944	*	*	*	0	5964	0	1044	
+
+I 72   *	*	*	*	4765	5637	*	393	*	4611	5263	*	*	*	*	*	*	3122	*	*	72
+       13	*	6772	0	*	1452	656	5968	1001	1102	
+
+G 73   6069	*	5885	5782	*	366	6614	5394	5684	*	*	6584	*	4825	6607	5050	*	4850	*	*	73
+       30	*	5585	*	*	*	0	5963	0	1104	
+
+R 74   5003	7154	3309	3891	5758	*	4399	*	2081	3271	6561	5163	*	3701	2431	4524	*	*	*	4531	74
+       10	7219	*	3585	126	*	0	5898	1000	1212	
+
+G 75   *	*	*	*	*	19	*	*	*	*	*	*	*	*	6231	*	*	*	*	*	75
+       0	*	*	*	*	*	0	5898	0	1212	
+
+V 76   5100	6890	*	*	6280	*	*	1574	*	2407	6158	*	*	*	*	*	7945	1297	*	*	76
+       0	*	*	*	*	*	0	5898	0	1212	
+
+R 77   4839	*	*	4030	*	6057	4198	4030	2746	4889	7211	7360	*	2757	2399	4936	2692	4251	*	*	77
+       0	*	*	*	*	*	0	5898	0	1212	
+
+L 78   6231	*	*	*	3861	*	*	2281	*	739	5338	*	*	*	*	*	7945	3568	*	*	78
+       0	*	*	*	*	1308	746	5898	0	1212	
+
+Y 79   6161	6525	4091	4287	5013	6336	4410	*	3147	5930	6938	*	*	*	3926	1750	3362	4275	*	2995	79
+       0	*	*	*	*	*	0	5963	0	1104	
+
+Y 80   6479	4745	*	5781	5782	6651	5356	4070	3857	3092	3392	4612	*	4736	3313	7203	4229	4566	*	1953	80
+       20	6198	*	0	*	*	0	5963	1027	1104	
+
+I 81   *	6428	2550	1812	6617	6651	5488	4499	3289	4115	7959	5585	*	6018	3717	6607	4644	3065	*	*	81
+       300	2414	*	568	1619	*	0	5963	2056	1104	
+
+G 82   3218	7153	3067	3723	*	2143	6725	*	4111	5809	*	3124	3611	3955	4247	5879	4865	7168	*	7166	82
+       246	2674	*	301	2409	2844	216	5965	1865	1180	
+
+G 83   *	*	2680	4064	*	685	6261	*	4688	*	*	5138	*	5740	*	5146	5612	*	*	6122	83
+       56	4891	7823	1015	985	2245	342	5960	1158	1147	
+
+E 84   7666	4035	2548	2216	*	2784	*	*	5491	*	*	2663	*	4719	6610	3297	4094	6160	*	*	84
+       11	7040	*	1000	1000	2555	269	5968	1039	1137	
+
+V 85   6336	6804	*	*	5348	*	*	2307	*	3692	*	*	*	*	5258	*	7576	636	*	*	85
+       0	*	*	*	*	*	0	5963	0	1104	
+
+F 86   *	*	*	*	3171	*	5774	4422	4286	3775	7047	*	*	6614	*	5406	6780	5195	1175	2480	86
+       0	*	*	*	*	*	0	5963	0	1104	
+
+A 87   2012	7469	*	*	*	6067	*	2319	*	1793	7443	*	*	*	*	*	*	2078	*	*	87
+       35	*	5377	*	*	*	0	5964	0	1104	
+
+E 88   *	5394	4972	2314	*	*	*	*	3589	*	4927	*	*	3816	3469	3918	2743	*	*	1997	88
+       0	*	*	0	*	2038	403	5939	1018	1247	
+
+C 89   4957	2012	*	*	*	*	*	*	6563	4956	*	1000	*	*	2992	*	*	4284	*	*	89
+       33	5454	*	1000	1000	1718	523	5958	1082	1174	
+
+L 90   *	7603	*	5681	6047	*	6261	5762	*	1264	6883	3614	*	5542	1924	4942	5543	4466	6018	5462	90
+       33	5474	*	0	*	*	0	5964	1082	1104	
+
+S 91   4512	4167	*	*	*	2567	*	*	5477	*	4456	*	*	*	*	695	4445	*	*	*	91
+       64	4532	*	789	1247	*	0	5968	1199	1104	
+
+D 92   4741	7380	1940	2336	*	5757	4812	*	2738	5899	*	3060	4551	5498	5118	4986	4964	*	*	*	92
+       0	*	*	*	*	*	0	5968	0	1104	
+
+S 93   3824	4518	*	*	5432	5559	2887	5711	5384	4285	6115	3274	*	4805	5254	2255	5820	3398	6622	3325	93
+       0	*	*	*	*	*	0	5968	0	1104	
+
+A 94   2623	*	6041	*	*	4728	*	6174	4524	*	*	4623	1216	*	6606	2309	5220	5852	*	*	94
+       0	*	*	*	*	*	0	5968	0	1104	
+
+I 95   *	*	*	*	5806	*	*	1093	*	4119	6622	*	*	*	*	*	*	1166	*	*	95
+       0	*	*	*	*	1417	677	5968	0	1104	
+
+F 96   *	*	7321	*	309	*	*	4492	*	5828	*	*	*	6809	*	*	*	*	*	3115	96
+       0	*	*	*	*	*	0	5968	0	1044	
+
+V 97   6253	6103	*	*	*	*	*	3041	*	4772	6809	*	*	*	*	6105	*	339	*	*	97
+       49	*	4906	*	*	*	0	5968	0	1044	
+
+Q 98   *	*	4836	*	*	6850	5679	5887	3282	5425	*	2631	*	1145	4479	4862	3849	*	*	4982	98
+       0	*	*	0	*	631	1497	5885	1018	1226	
+
+S 99   5282	6182	*	*	*	3536	6308	*	*	*	*	4808	*	*	*	314	5520	*	*	*	99
+       29	6809	6540	0	*	*	0	5968	1004	1044	
+
+P 100  4521	5760	*	*	*	4137	5746	4149	5602	*	4455	7197	1514	5410	3656	5080	3931	4933	4437	3235	100
+       0	*	*	*	*	*	0	5967	0	1131	
+
+N 101  5090	5971	*	5048	3310	6701	*	5604	6098	4842	6261	2394	*	4854	7317	3457	1988	5386	*	2912	101
+       90	6102	4440	2000	415	*	0	5967	1047	1131	
+
+C 102  4719	2786	*	5780	4380	*	6331	5285	5873	1267	4530	5762	4431	*	*	4162	4947	6063	4470	5405	102
+       99	*	3915	*	*	2247	341	5907	0	1396	
+
+N 103  3853	5635	1598	6354	*	*	5836	*	5744	*	*	1206	4350	7034	*	4583	*	*	*	*	103
+       101	4413	5594	468	1851	2358	313	5893	1211	1678	
+
+Q 104  6505	*	3793	4857	3757	5416	3810	4775	6907	3288	4740	4330	3407	4140	3186	4926	5944	4220	*	3113	104
+       162	3668	5193	283	2488	3607	124	5855	1393	1647	
+
+R 105  4663	5277	4773	2315	5566	*	4936	4925	4205	5327	4309	6864	3068	4025	3577	3244	3998	4657	*	*	105
+       24	6864	6975	2000	415	1716	523	5863	1000	1727	
+
+Y 106  3154	5400	3795	3440	6685	4564	2545	6371	5328	4554	6789	2745	4569	5348	5702	3123	6167	*	*	5373	106
+       41	*	5169	*	*	1373	704	5871	0	1586	
+
+G 107  3536	4907	7241	7182	*	1444	4329	*	5696	*	*	2654	7279	5306	6862	2695	4476	4978	*	*	107
+       105	5162	4564	3431	140	3482	135	5837	1104	1496	
+
+W 108  5124	4204	6208	4606	2828	6544	*	4366	2993	2826	6910	*	6535	4567	2902	4018	6124	5004	3882	5287	108
+       235	*	2733	0	*	1077	927	5811	1000	1782	
+
+H 109  4741	7590	3547	5018	*	6127	2095	3347	5187	3783	6635	6715	3091	5368	2905	4547	4790	5588	*	*	109
+       65	4512	*	1074	929	851	1166	5722	1156	2153	
+
+P 110  5025	*	5866	5371	*	3089	6555	6005	4911	2877	4779	4152	1787	6145	4149	3955	3946	6246	*	5690	110
+       60	5376	5911	0	*	1406	684	5823	1082	1504	
+
+A 111  2667	*	2820	5242	5333	3462	*	6165	4486	3045	7077	3762	6549	4363	4862	3274	3793	5764	*	6555	111
+       127	3564	*	1372	705	749	1304	5888	1481	1401	
+
+T 112  3161	*	4148	4114	*	*	*	6618	3623	3294	*	*	5183	*	4118	4451	1301	5788	*	5269	112
+       35	7317	5798	2000	415	*	0	5967	1008	1131	
+
+V 113  *	*	*	*	*	*	*	3042	6458	4069	*	4411	4707	*	*	7953	6463	500	*	*	113
+       16	6458	*	459	1876	1379	700	5949	1131	1247	
+
+C 114  *	2593	*	6549	4319	4432	2541	3023	5352	3928	6102	7049	*	*	3787	5206	3705	3552	7515	4235	114
+       13	*	6805	*	*	*	0	5967	0	1131	
+
+K 115  *	*	5868	4551	6481	*	*	*	695	*	*	*	5781	4669	2096	5638	*	*	*	*	115
+       26	*	5781	*	*	*	0	5967	0	1191	
+
+I 116  *	7180	*	*	6185	*	*	1783	*	1922	6267	6553	*	*	5544	6632	6447	1550	*	5895	116
+       41	5385	7971	2985	195	1824	479	5923	1178	1297	
+
+P 117  6285	6187	*	6506	5037	4251	5104	*	5030	4467	3905	5845	1298	4199	6214	4004	5365	*	*	2951	117
+       34	5925	7180	3807	107	748	1305	5948	1045	1225	
+
+P 118  3660	*	4959	*	*	4050	*	*	5858	*	*	3242	1058	4058	5489	2858	7696	*	*	*	118
+       0	*	*	*	*	*	0	5988	0	1122	
+
+G 119  5155	6565	*	3877	6011	879	4998	*	4181	6200	6288	3260	*	5180	4985	4922	6115	*	*	6592	119
+       121	3638	*	2106	382	1474	644	5988	1424	1122	
+
+C 120  2511	2625	*	4722	3645	3720	3494	7577	5145	6180	*	7833	*	5791	5872	3963	*	3999	*	2587	120
+       225	2790	*	2123	376	*	0	5993	1810	1058	
+
+N 121  4817	2768	5809	4867	*	5390	6032	4849	4341	5554	*	4601	4351	4985	5395	1632	3797	5872	7317	4116	121
+       26	5809	*	4000	93	*	0	5993	1052	1058	
+
+L 122  3859	6346	*	5872	4077	6599	*	2379	7287	1715	2981	6139	*	*	5096	6299	*	3324	*	4431	122
+       0	*	*	*	*	*	0	5993	0	1058	
+
+K 123  5425	4118	5234	5341	*	*	*	5157	753	5279	*	4733	*	6371	3278	*	5061	5005	*	7194	123
+       13	*	6804	*	*	*	0	5993	0	1058	
+
+I 124  3978	*	*	*	*	*	*	1552	*	2607	*	*	*	*	*	*	6557	1249	*	*	124
+       9	*	7267	*	*	*	0	5993	0	1118	
+
+F 125  *	*	*	*	154	*	5050	*	*	5745	*	*	*	*	*	*	*	*	*	4252	125
+       9	*	7275	*	*	*	0	5988	0	1182	
+
+N 126  *	5428	670	4755	5729	4427	7178	*	*	*	*	2867	*	7155	4447	4688	6613	*	*	*	126
+       0	*	*	*	*	*	0	5991	0	1221	
+
+N 127  *	7681	6003	5307	3780	3981	4935	4303	6157	2786	2675	3023	6750	*	5626	4773	3676	*	6503	2828	127
+       39	6092	6377	3298	155	2804	223	5991	1034	1221	
+
+Q 128  4393	*	4005	2369	*	7535	5462	5754	3713	*	*	3652	*	2511	2720	4448	3738	*	*	4433	128
+       55	4736	*	2544	271	2495	282	5971	1172	1281	
+
+E 129  4444	7695	4527	3706	*	6770	4950	5185	2263	3038	6365	5671	6625	2842	3042	4494	*	3749	*	6859	129
+       126	5061	4225	3641	121	*	0	5971	1118	1222	
+
+F 130  3288	4926	*	*	890	7167	5985	6150	*	4860	6295	*	7068	*	*	3421	5240	5515	*	3445	130
+       64	5543	5498	2405	302	861	1154	5956	1080	1551	
+
+A 131  1591	5487	7456	4256	7014	4833	5547	*	3163	5867	5792	4583	6735	3584	4675	2939	6455	6017	*	4449	131
+       6	7931	*	2322	322	*	0	5955	1000	1345	
+
+A 132  4719	7622	4517	2828	*	6750	5204	*	3021	5282	5266	3609	7815	2155	4133	3284	4321	5579	7324	6232	132
+       10	7244	*	4392	70	2656	249	5955	1000	1345	
+
+L 133  3680	*	6062	3868	*	*	4386	4690	6693	2165	3234	3378	*	4498	4353	4200	4714	4876	5409	3762	133
+       42	5440	7425	3402	143	*	0	5960	1078	1282	
+
+L 134  4989	6467	*	6144	*	6236	*	2892	5202	905	5386	7638	5147	4606	4545	7228	6154	3792	*	*	134
+       93	6035	4399	1008	992	3453	138	5962	1036	1316	
+
+A 135  2015	6783	7186	3048	5294	5533	4748	7217	5203	*	6813	4211	7257	3405	3189	2618	4864	6622	*	5907	135
+       29	6387	6918	1719	522	1055	947	5894	1119	1543	
+
+Q 136  3082	5673	3937	3464	*	4534	5251	6202	4125	4356	5893	*	4648	2433	2443	4498	4931	6826	*	7497	136
+       179	3489	5164	2910	206	1205	821	5951	1457	1299	
+
+S 137  2100	4909	*	2475	*	5666	5383	*	5014	6220	5177	5270	5929	5156	3453	2518	3650	6459	*	6569	137
+       66	7130	4728	3157	172	1062	940	5896	1023	1314	
+
+V 138  3160	5160	5688	4756	4679	*	6411	5308	4407	3458	7592	6122	5352	4998	3573	3693	4135	2125	5446	4512	138
+       230	4196	3426	2137	372	2348	316	5857	1375	1349	
+
+N 139  3704	5963	*	4673	*	4523	4322	4991	3537	4690	*	2848	4176	3670	3567	3071	3152	5084	*	*	139
+       177	3115	*	2500	281	267	2563	5798	1550	1791	
+
+Q 140  4548	*	3919	3760	6545	4053	3240	6775	3740	4726	7262	4409	5363	2964	2454	3397	6184	5538	*	*	140
+       161	4515	4019	3240	161	1275	769	5953	1204	1092	
+
+G 141  3521	*	7606	4580	6612	1176	6036	6672	7110	4851	6062	6576	3960	5263	6643	3661	3210	5227	*	7223	141
+       192	3117	6732	1555	600	*	0	5847	1622	1466	
+
+F 142  5675	6824	*	5718	2777	*	6042	4490	6083	3319	4285	*	3652	7205	4160	5843	3376	4225	5809	1980	142
+       325	3635	3045	3297	155	776	1265	5847	1405	1523	
+
+E 143  3992	*	3453	2174	6093	6165	4617	4265	*	*	*	3080	2470	4338	4921	5553	4544	4418	*	6545	143
+       85	6036	4578	3151	172	*	0	5758	1030	1840	
+
+A 144  2616	*	2262	4152	6721	2555	4625	*	4167	5544	*	5162	4509	5872	4276	3811	4823	6019	*	6337	144
+       76	4277	*	1298	753	482	1815	5690	1208	2041	
+
+V 145  4397	*	5587	6130	5883	5657	4824	5110	5661	4388	4120	*	3413	4936	3571	5381	4303	1372	*	5667	145
+       26	5786	*	0	*	1732	517	5906	1078	1270	
+
+Y 146  5320	*	2418	4294	3721	7252	5160	*	*	4457	4582	4030	5841	4492	3629	4551	5463	4461	5284	2329	146
+       263	3585	3589	3626	122	1268	774	5950	1435	1172	
+
+Q 147  5547	5627	2293	2904	5120	2725	7457	5714	4394	*	*	4918	4426	3898	4103	2795	5680	*	*	*	147
+       27	6376	7285	2807	222	2087	387	5878	1014	1619	
+
+L 148  4276	*	6053	*	7196	*	*	5829	*	642	4448	*	2491	*	*	*	*	5568	6118	6824	148
+       0	*	*	*	*	*	0	5923	0	1494	
+
+T 149  4314	4663	6403	3304	6141	6005	*	4311	5011	3620	*	4860	5753	3710	2570	3951	3059	3577	7024	5022	149
+       10	*	7226	*	*	715	1355	5923	0	1494	
+
+R 150  3955	5589	2373	4917	*	*	5215	*	2081	4563	6577	4347	7121	*	2318	5349	4386	6213	*	5066	150
+       62	4576	*	3221	164	3120	176	5937	1193	1212	
+
+M 151  *	7127	*	*	3595	6245	4727	4684	4387	2656	2300	5922	2761	3332	4717	6721	*	4782	6820	4191	151
+       30	5592	*	1250	787	1240	794	5932	1076	1182	
+
+C 152  5141	789	*	6226	4134	*	5284	5722	*	*	*	3349	5933	5748	*	4317	3747	*	*	5626	152
+       0	*	*	*	*	1449	658	5948	0	1081	
+
+T 153  5218	3556	*	6512	3853	5717	6353	3516	5247	3894	4714	4442	*	*	*	2226	2080	4027	*	*	153
+       28	5724	*	2000	415	*	0	5944	1057	1031	
+
+I 154  *	*	*	*	4303	*	*	1557	6730	2654	3947	*	*	*	*	4216	4303	1879	*	*	154
+       0	*	*	*	*	*	0	5944	0	1031	
+
+R 155  3569	5724	*	*	5712	7170	5279	*	3747	*	*	4963	*	5251	626	4806	6651	5750	*	*	155
+       0	*	*	*	*	*	0	5944	0	1031	
+
+M 156  4839	6118	*	*	7424	*	*	881	*	2899	3222	*	*	*	*	*	*	2637	*	*	156
+       0	*	*	*	*	*	0	5944	0	1031	
+
+S 157  3583	*	*	*	*	7362	*	*	*	*	*	*	*	*	*	184	6730	5595	*	*	157
+       0	*	*	*	*	0	*	5944	0	1031	
+
+F 158  *	*	*	*	277	*	*	*	*	3452	6246	*	*	*	6552	*	*	4319	*	6771	158
+       0	*	*	*	*	*	*	5944	0	0	
+
+V 159  2378	4132	*	7159	*	3529	*	4350	*	*	6771	6552	*	5448	*	4589	6242	970	*	*	159
+       13	*	6771	*	*	*	*	5944	0	0	
+
+K 160  *	6516	*	4405	*	*	*	*	229	5740	*	*	5441	6590	5155	6889	*	*	*	*	160
+       60	6324	5137	4524	64	*	0	5948	1030	1000	
+
+G 161  6444	5688	3919	*	*	344	*	*	*	*	*	4269	*	*	*	5397	4661	*	*	*	161
+       216	*	2847	0	*	392	2070	5867	1000	1181	
+
+W 162  *	*	*	*	2707	*	*	*	*	6139	*	*	*	*	*	4973	*	*	343	6303	162
+       9	*	7325	0	*	2820	220	5625	1000	1761	
+
+G 163  *	*	*	*	*	68	*	*	*	*	*	5683	*	6308	*	6190	*	*	*	*	163
+       60	5979	5331	2000	415	*	0	5656	1022	1690	
+
+A 164  2430	*	4506	3091	*	4626	5658	*	4875	*	*	4901	1492	4751	5830	3843	*	4739	*	7006	164
+       43	*	5076	*	*	*	0	5576	0	1779	
+
+E 165  4236	3848	2112	2574	6572	3368	5573	*	3423	6570	7015	4300	*	4585	6379	3536	4922	6087	*	*	165
+       35	5363	*	0	*	4073	88	5447	1058	1858	
+
+Y 166  *	*	*	*	6155	*	*	6069	*	*	*	*	*	*	*	*	*	4544	*	107	166
+       0	*	*	*	*	*	0	5445	0	1807	
+
+R 167  5571	*	6108	*	*	4578	3136	*	3782	*	*	4247	2653	4256	2366	2271	3815	*	*	*	167
+       68	5180	5742	0	*	420	1985	5445	1092	1807	
+
+R 168  *	*	5153	4443	*	5660	*	*	4523	*	*	4493	5306	*	433	*	5618	4981	*	*	168
+       0	*	*	*	*	1744	512	5807	0	1265	
+
+Q 169  4439	*	6397	4657	*	*	5377	6220	2927	4852	4613	5382	3459	1302	4290	4913	5101	5386	*	*	169
+       0	*	*	*	*	303	2399	5868	0	1170	
+
+T 170  5064	*	2327	3079	3089	5116	4702	6214	6024	5976	7439	4522	*	6848	5358	2936	2666	4902	*	5730	170
+       0	*	*	*	*	*	0	5894	0	1000	
+
+V 171  5843	6306	4721	*	*	*	6248	1016	*	3901	4817	*	6163	*	*	*	*	1699	*	*	171
+       0	*	*	*	*	*	0	5894	0	1000	
+
+T 172  6411	5002	4283	5670	5607	*	6519	5494	3190	3077	4480	6018	*	6760	6438	5227	1055	6024	*	*	172
+       0	*	*	*	*	*	0	5894	0	1000	
+
+S 173  5017	*	3401	2558	*	4146	5226	*	3747	*	*	3856	*	3785	4484	1472	*	*	*	*	173
+       0	*	*	*	*	*	0	5898	0	1000	
+
+T 174  5595	1348	*	*	*	*	6303	4320	5945	4416	*	*	*	*	*	4497	1297	6717	*	*	174
+       0	*	*	*	*	*	0	5898	0	1000	
+
+P 175  *	5586	5351	*	*	*	7226	*	*	*	*	*	77	*	*	*	*	*	*	*	175
+       18	6298	*	1000	1000	*	0	5898	1031	1000	
+
+C 176  5277	362	*	*	*	*	*	5529	*	4312	*	*	*	*	*	*	6542	3144	*	*	176
+       0	*	*	*	*	*	0	5898	0	1000	
+
+W 177  *	*	*	*	*	*	*	*	*	6303	*	*	*	*	4330	5409	*	*	153	6078	177
+       22	*	6078	*	*	*	0	5898	0	1000	
+
+I 178  *	*	6265	*	3509	*	*	1575	*	1573	7107	*	*	*	*	*	*	2415	*	4930	178
+       0	*	*	*	*	624	1510	5883	0	1066	
+
+E 179  5978	*	6763	431	*	*	*	*	5568	4906	3892	6156	*	4514	4940	5571	*	*	*	*	179
+       0	*	*	*	*	*	0	5896	0	1000	
+
+L 180  5956	*	*	*	*	6166	*	1163	*	2682	4801	*	*	*	*	*	*	1592	*	*	180
+       0	*	*	*	*	*	0	5896	0	1000	
+
+H 181  6123	*	5511	*	5257	*	2038	3990	3642	2810	*	5704	*	3744	3239	4764	4705	3786	4660	5532	181
+       9	*	7346	*	*	*	0	5824	0	1000	
+
+L 182  *	*	*	*	2533	*	*	3441	*	768	4126	3714	6136	*	*	*	*	*	*	*	182
+       10	*	7115	*	*	*	0	5825	0	1021	
+
+N 183  4601	5347	6392	*	*	5031	2289	5457	6868	3208	*	1700	7111	4848	4251	4457	4131	4547	*	*	183
+       0	*	*	*	*	1524	616	5730	0	1062	
+
+G 184  3976	*	4155	4074	*	2732	4634	5036	4983	*	*	3538	4288	4569	2469	3688	6808	3040	*	*	184
+       0	*	*	4524	64	846	1172	5556	1000	1021	
+
+P 185  1763	3999	*	*	*	*	5008	*	*	*	*	5550	1031	5308	5614	5383	*	*	*	4990	185
+       0	*	*	*	*	0	*	5555	0	1000	
+
+L 186  4599	5066	*	*	5163	*	*	*	*	639	2990	*	5896	*	6007	*	*	*	5028	3841	186
+       79	4228	*	0	*	*	*	5421	1132	0	
+
+Q 187  3340	*	2333	3813	6756	5954	5366	*	3220	4507	6032	5700	*	1601	4743	5098	*	*	*	*	187
+       0	*	*	*	*	*	*	5083	0	0	
+
+W 188  *	*	4950	4997	4760	*	*	5685	5459	2372	4004	*	*	*	*	*	*	3821	1121	3813	188
+       0	*	*	*	*	*	*	4965	0	0	
+
+L 189  4227	*	*	*	4758	*	*	2758	*	738	3612	*	*	*	*	*	4978	5897	*	4974	189
+       0	*	*	*	*	*	*	4924	0	0	
+
+D 190  *	*	279	4922	*	5428	*	*	4603	*	*	4448	*	4938	*	*	*	*	*	*	190
+       0	*	*	*	*	*	*	4792	0	0	
+
+K 191  3322	*	4167	3382	*	*	*	*	2325	*	*	3606	*	2424	2548	3748	4844	*	*	*	191
+       0	*	*	*	*	*	*	4659	0	0	
+
+V 192  5101	*	*	*	5424	5366	*	2864	5844	3388	*	*	*	*	*	*	4882	740	*	4635	192
+       0	*	*	*	*	*	*	4659	0	0	
+
+L 193  *	5577	*	4330	4786	*	*	4113	*	552	4397	*	*	5831	*	*	5553	5343	*	4567	193
+       0	*	*	*	*	*	*	4569	0	0	
+
+T 194  4709	7061	*	*	*	*	3436	6727	2727	5193	*	3228	*	3790	2870	2959	2347	6522	*	5494	194
+       0	*	*	*	*	*	*	4409	0	0	
+
+Q 195  4293	3461	4187	4209	*	5175	5622	6714	5022	*	*	5230	*	1190	6708	6323	2733	*	*	5402	195
+       0	*	*	*	*	*	*	4287	0	0	
+
+M 196  *	*	*	6263	*	*	*	3366	*	2521	482	*	*	*	*	*	*	*	*	*	196
+       0	*	*	0	*	*	*	3887	0	0	
+
+//
+�HHsearch 1.5
+NAME  482b4b12963f255ad7693a467b7af4cc
+FAM   
+FILE  482b4b12963f255ad7693a467b7af4cc
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:08:02 2013
+LENG  173 match states, 173 columns in multiple alignment
+FILT  128 out of 686 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  7.6 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEEEEECCCCCCEEEEECCCCCCHHHHCCCEEEEEECCCCEEEEECCCCCCCEEEECCCCCCCHHHHCCCCCCEEEEEEEECCCCCEEEEEECCCCCCE
+EEEECCCCCCHHHCCCCCCEEEEEECCCCEEEEECCCCCEEEEEECCCCCCCHHHHCCCCCCEEEEEEECCCC
+>ss_conf PSIPRED confidence values
+9599996799886089988875222662585468996688689995488752389976884387347246787103689840168735999965887553
+8998567856666426783207896389889995699711699979864599789378997240489833679
+>Consensus
+xxixxyxxxxfxGxxxxxxxxxxxlxxxxxxisSixVxxgxwvxYexxnfxGxxxxlxxGxyxxxxxxxxxndxisSxrxxxxxxxxxixlyexxxfxGx
+xxxxxxdxxxlxxxxxndxisSixVxxGxwvxyexxxfxGxxxxlxxGxyxxxxxxgxxxxxisSirxixxxx
+>482b4b12963f255ad7693a467b7af4cc
+GKITFYEDRGFQGRHYECSSDHSNLQPYFSRCNSIRVDSGCWMIYEQPNFQGPQYFLRRGDYPDYQQWMGLNDSIRSCRLIPHTSSHRLRIYEREDYRGQ
+MVEITEDCSSLHERFHFSEIHSFHVLEGWWVLYEMPNYRGRQYLLRPGDYRRYHEWGAVDARVGSLRRAVDFY
+>gi|229895166|ref|ZP_04510342.1| putative exported protein precursor [Yersinia pestis Pestoides A]gi|229701928|gb|EEO89951.1| putative exported protein precursor [Yersinia pestis Pestoides A]
+-KVCFYMDDDYNGESLCAAqgNSVASIPDKwNDRISSISIPHGLVVtVYEDVDFLGASRSFEADvDLVSDKDLIYLNDNISAFKI-----KKAVCFYGES
+NFTGDSLCLSSgEQFDLYrgnyperkqsHlvNPLNDEVYSIKIPPGMQtTVYEDDDYNGKYFVLTEDYTPdDLLII-RMNNKISSMRVSQD--
+>gi|156384196|ref|XP_001633217.1| predicted protein [Nematostella vectensis]gi|156220284|gb|EDO41154.1| predicted protein [Nematostella vectensis]
+--AVVFEHAYYGGSRKAFDDyGCPDVTALFppgdiGGASS-LIInqTKKWELFTETQYKGLVKTEEPGWYATPEEMKFPNDRLKSIRPR-----------
+---------------------------------------------------------------------------------
+>gi|238798360|ref|ZP_04641843.1| hypothetical protein ymoll0001_1640 [Yersinia mollaretii ATCC 43969]gi|238717818|gb|EEQ09651.1| hypothetical protein ymoll0001_1640 [Yersinia mollaretii ATCC 43969]
+----------------------------------------mknkrillslLIyLSSTEIALAENNLTrnvidrihhdma-------------------vr
+sa----I-----TSPVCFYYENYFqgekfclsspelid-----------fTREnniqihtnkiksisipkssqitvyqgehfftlt--------------
+---------------------DNilq--EAWQKMIA---------gdevteifT-----
+>gi|238754017|ref|ZP_04615376.1| hypothetical protein yruck0001_29380 [Yersinia ruckeri ATCC 29473]gi|238707769|gb|EEQ00128.1| hypothetical protein yruck0001_29380 [Yersinia ruckeri ATCC 29473]
+----------------------------------------mkrknkilllILfISIPEIVFSQYLSVsnnideig-------------------ptyt--
+--L-----DNDEKLSTESFS-----------fNQPeeitll-----------------------------------GSqpg--EQWQEPV----------
+M-----
+>gi|294817978|ref|ZP_06776620.1| Hypothetical protein SCLAV_p1446 [Streptomyces clavuligerus ATCC 27064]gi|326446897|ref|ZP_08221631.1| hypothetical protein SclaA2_37770 [Streptomyces clavuligerus ATCC 27064]gi|294322793|gb|EFG04928.1| Hypothetical protein SCLAV_p1446 [Streptomyces clavuligerus ATCC 27064]
+------------------------------------------TAWEHSNYGGAYLQFFSdingcspttpSHKYDQLPQ-GWNDKISSMR-ipG---SLCG
+GYAFDHIKRYGPMTR-vDGNIPA-mpA--GWNDRVSSLEVLYA---------------------------------------------
+>gi|238754019|ref|ZP_04615378.1| hypothetical protein yruck0001_29400 [Yersinia ruckeri ATCC 29473]gi|238707771|gb|EEQ00130.1| hypothetical protein yruck0001_29400 [Yersinia ruckeri ATCC 29473]
+--TSIYSCGARPHDFISMIDIKEPLQSKg-------KTVAPI-CFYTEDHFQGEHFCLNPPEMIDLYNTEnqNl-NDKLSSIKIPD---GMQVTIYKNDK
+FNAPHYSFTESVNlaGLDKIGMAGQISSIKTFE----------------------------------------------
+>gi|238783059|ref|ZP_04627086.1| hypothetical protein yberc0001_4180 [Yersinia bercovieri ATCC 43970]gi|238716060|gb|EEQ08045.1| hypothetical protein yberc0001_4180 [Yersinia bercovieri ATCC 43970]
+--YQLFIGIAFATENKTkstiygid---------------ntsk----ENTQN-CLYYK------------------yNTQdnipcqnt-----------
+--------------------------SNiid--eTWVPI----------gkdsKSG--------------------------------------------
+--
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+G 1    4007	*	3026	*	*	1354	4182	*	*	*	*	2508	3983	*	*	2948	*	*	*	*	1
+       0	*	*	*	*	*	*	4945	0	0	
+
+K 2    *	*	*	4631	*	4382	*	*	1128	5696	*	5080	*	4044	3570	2298	4134	*	*	*	2
+       0	*	*	*	*	*	*	6189	0	0	
+
+I 3    2900	*	*	*	5489	*	*	1509	*	3240	4184	*	*	*	*	*	4351	1941	*	5496	3
+       0	*	*	*	*	*	*	7162	0	0	
+
+T 4    5645	3120	6438	4463	*	*	6523	2771	4847	5661	*	6499	*	5485	4263	3522	1895	2820	*	6237	4
+       0	*	*	*	*	*	*	7496	0	0	
+
+F 5    3651	*	*	*	2465	*	*	2989	*	1501	4933	*	*	*	*	5275	*	2311	*	*	5
+       0	*	*	*	*	*	*	7496	0	0	
+
+Y 6    *	5703	*	*	1772	*	6020	5879	*	*	*	*	*	*	*	6822	*	*	4968	702	6
+       0	*	*	*	*	*	*	7496	0	0	
+
+E 7    4876	*	3186	1389	*	5478	*	6704	3671	*	6536	6310	5879	4613	4086	2537	5252	6025	*	6690	7
+       0	*	*	*	*	*	*	7496	0	0	
+
+D 8    *	5598	2243	2665	*	3872	2355	*	3900	4292	*	4152	*	3591	4003	6245	*	*	*	6173	8
+       0	*	*	*	*	*	*	7496	0	0	
+
+R 9    2930	5187	3591	2464	*	5598	5239	3682	4799	*	6643	4722	3433	6189	4503	3719	3434	4970	*	5843	9
+       0	*	*	*	*	*	*	7496	0	0	
+
+G 10   4678	5446	3167	*	4893	2385	4903	*	5290	*	*	1335	*	5365	*	4378	*	5879	*	4137	10
+       0	*	*	*	*	*	*	7496	0	0	
+
+F 11   *	4700	*	6245	907	*	6020	*	*	3592	*	*	*	5309	5598	5488	*	*	*	2008	11
+       0	*	*	*	*	*	*	7496	0	0	
+
+Q 12   4653	*	5236	4231	*	2514	5039	*	3396	5552	4940	4388	5625	2473	3029	3780	4135	6421	6163	*	12
+       15	6640	*	1000	1000	*	*	7577	1001	0	
+
+G 13   5569	*	*	5464	*	160	5636	*	*	*	*	6122	*	5884	*	*	6710	*	*	*	13
+       0	*	*	*	*	*	*	7597	0	0	
+
+R 14   3464	*	3588	3036	5362	5931	5195	6014	3179	3972	*	4232	6226	3960	2311	3805	5272	*	*	5884	14
+       0	*	*	*	*	*	*	7597	0	0	
+
+H 15   4177	4273	5931	4227	5636	*	3593	*	3775	4124	4188	4693	6431	5029	4024	1608	*	*	6199	4299	15
+       0	*	*	*	*	*	*	7597	0	0	
+
+Y 16   *	*	*	6224	2996	6484	4943	2464	3385	2760	4274	*	*	4707	4103	5192	4125	3075	*	4594	16
+       13	*	6760	*	*	*	*	7597	0	0	
+
+E 17   4267	3336	2920	1796	*	6415	5422	5055	5668	6238	*	*	5447	6002	5487	3337	3367	4487	6221	5950	17
+       52	4826	*	3168	170	*	0	7591	1360	1000	
+
+C 18   4293	6583	*	*	1670	*	*	2598	*	2109	4849	*	*	*	*	6021	6597	2712	*	6144	18
+       14	6699	*	1000	1000	*	0	7467	1000	1420	
+
+S 19   5586	5957	4375	3517	5166	*	*	4469	3731	5376	6205	4149	5195	4739	5075	3321	2092	4729	5337	3415	19
+       337	2263	*	767	1278	2909	206	7468	2254	1496	
+
+S 20   4178	6670	2707	2307	6391	3096	5225	6369	5202	*	*	3401	4683	5279	3794	3142	4639	*	*	*	20
+       112	3747	*	954	1048	1929	439	7445	1412	1516	
+
+D 21   4886	*	1532	3573	6413	4358	5736	4941	5409	6325	*	3213	5115	*	*	2993	3688	*	*	4365	21
+       47	4951	*	1000	1000	*	0	7485	1118	1360	
+
+H 22   4502	2262	6290	5394	6214	*	6613	3216	5471	4387	5970	4854	*	3231	5083	5107	4520	2067	*	6447	22
+       0	*	*	*	*	*	0	7485	0	1360	
+
+S 23   2946	*	3302	3758	*	4225	5523	*	4630	5607	6248	4584	2124	*	3400	2834	5582	*	*	5748	23
+       0	*	*	*	*	*	0	7485	0	1360	
+
+N 24   *	6474	2047	5360	6689	5599	*	5035	5390	6240	4712	2282	3923	5026	5185	2559	3732	*	6406	*	24
+       42	5133	*	3000	193	*	0	7615	1093	1360	
+
+L 25   4524	*	4960	*	3775	*	*	3652	*	930	*	5528	*	6240	*	4924	5257	3038	*	5000	25
+       0	*	*	*	*	*	0	7615	0	1360	
+
+Q 26   4544	6261	4480	4122	5399	4014	4980	*	3733	6375	5545	3565	3301	2764	4995	3258	2991	*	6540	6606	26
+       121	3635	*	3079	182	*	0	7615	1466	1360	
+
+P 27   3558	*	2485	4172	6710	4127	4551	*	5442	4470	5326	5138	3422	4071	4885	2718	3836	*	5313	5939	27
+       131	3897	5655	835	1187	*	0	7641	1420	1360	
+
+Y 28   4160	*	4928	4718	3845	2807	5632	5434	3988	2782	6313	3799	6350	4958	3729	4264	6511	4117	5031	4221	28
+       1799	512	6485	793	1242	2915	205	7633	4959	1533	
+
+F 29   5246	6524	5223	4988	1764	5394	5440	5324	*	4050	5330	1698	5457	5158	6579	*	6165	5420	5443	5418	29
+       226	2784	*	557	1643	2069	393	7541	1994	1671	
+
+S 30   6456	*	1412	*	5251	6197	5520	6442	6158	6500	*	1823	4238	5068	*	3174	*	4707	*	*	30
+       111	5338	4342	0	*	2481	285	7555	1074	1618	
+
+R 31   *	6627	2479	3388	*	3785	6429	*	2187	*	*	5035	6264	4578	2370	4272	4148	*	6402	6331	31
+       123	3615	*	0	*	1259	781	7472	1521	1893	
+
+C 32   2820	3835	*	*	4138	*	*	1661	5701	4788	4814	*	*	6367	*	*	4231	2022	*	6298	32
+       162	3818	4814	1861	464	*	0	7560	1952	1495	
+
+N 33   3348	5835	*	5127	6603	4532	4496	6202	6840	6449	*	3855	*	4866	4138	1002	4354	*	*	6014	33
+       0	*	*	*	*	1593	581	7528	0	1772	
+
+S 34   *	*	*	*	*	*	*	*	5378	*	*	*	5993	5795	5261	126	*	*	*	*	34
+       20	*	6179	*	*	*	0	7791	0	1495	
+
+I 35   3076	4257	*	*	3562	6280	*	1610	*	3055	4008	*	*	*	*	4557	*	2696	*	5353	35
+       40	6594	5892	0	*	1596	580	7763	1000	1576	
+
+R 36   5155	6216	5207	5448	*	*	4517	4813	2052	4236	*	4610	*	3890	1855	4291	5285	5662	6381	4583	36
+       34	*	5428	*	*	0	*	7619	0	1548	
+
+V 37   *	*	*	6989	*	*	6309	2389	*	3992	5911	6305	*	*	*	5956	5824	594	*	*	37
+       24	5911	*	825	1199	695	1388	7900	1180	1071	
+
+D 38   6697	*	5266	4219	4765	4653	5622	3907	4696	3364	3845	5690	2656	4252	3811	5642	3316	3257	*	6052	38
+       49	4913	*	328	2298	0	*	7775	1243	1000	
+
+S 39   3559	6360	4469	4245	6512	2566	4493	*	4389	5574	*	4927	3490	5738	3326	2140	5542	5416	*	*	39
+       44	5063	*	2743	233	*	*	7778	1128	0	
+
+G 40   4197	*	4876	5359	*	667	*	*	4673	6176	*	6266	5141	3859	6072	5363	*	5556	*	4905	40
+       66	5517	5431	3192	167	*	*	7778	1440	0	
+
+C 41   3981	2857	*	4611	6316	*	5772	3346	6258	3457	4125	7010	3654	5290	5105	4117	3923	3111	4490	4591	41
+       145	*	3384	0	*	2181	359	7907	1000	1189	
+
+W 42   5900	*	5108	5081	4935	6097	6144	4740	5777	4563	*	*	6177	6374	6329	6019	5414	3651	777	5336	42
+       515	1812	6023	182	3077	296	2430	7601	2840	2035	
+
+M 43   5769	3809	5523	3853	*	*	*	2299	6856	2927	5747	*	*	7006	4498	4860	4167	1791	*	5246	43
+       104	3846	*	181	3083	*	0	8095	1556	1264	
+
+I 44   2391	6372	*	*	2587	4442	*	3804	*	1808	4547	*	*	*	*	5510	6366	2730	*	*	44
+       0	*	*	*	*	*	0	8097	0	1264	
+
+Y 45   *	3800	*	*	2276	*	4976	6354	*	*	*	*	*	*	*	5769	*	*	6329	628	45
+       0	*	*	*	*	*	0	8095	0	1264	
+
+E 46   5437	*	4127	1292	*	6303	6965	5925	4130	6646	5154	5845	4648	3390	5906	3820	3453	6480	*	4785	46
+       0	*	*	*	*	*	0	8095	0	1264	
+
+Q 47   6403	5606	2133	2975	*	4133	2220	*	4120	5546	6720	3981	*	3286	6303	6547	6382	*	*	4287	47
+       5	*	8207	*	*	*	0	8095	0	1264	
+
+P 48   3353	5990	3242	4212	5838	4262	*	3727	3746	4922	6631	4544	2568	6212	6773	3253	4206	4373	*	5467	48
+       0	*	*	*	*	*	0	8090	0	1400	
+
+N 49   4718	6755	2419	5521	4021	3435	4666	*	4950	*	*	1368	*	5431	5469	4632	*	6353	6302	5659	49
+       0	*	*	*	*	*	0	8090	0	1400	
+
+F 50   6302	6936	*	*	1130	5253	6803	*	*	5657	6257	*	*	6484	4314	6849	*	*	*	1380	50
+       17	8464	6849	3807	107	*	0	8090	1021	1400	
+
+Q 51   4801	5681	6646	3391	6119	3954	*	*	2927	5915	6032	3006	5596	3184	2926	3061	4087	5760	*	6245	51
+       20	6173	*	2000	415	2562	268	8064	1029	1699	
+
+G 52   5170	*	5076	6437	*	261	5597	*	*	*	*	*	6378	6355	*	6173	5411	*	*	6131	52
+       23	5997	*	1585	585	*	0	8067	1024	1570	
+
+P 53   3410	*	3463	3330	6853	4519	4668	6516	4097	4967	5997	4572	3941	3838	2562	4550	4120	5057	*	5037	53
+       79	4382	7525	2239	343	*	0	8067	1342	1570	
+
+Q 54   4484	3480	6169	5743	3881	5464	6527	7234	3871	5423	4630	5687	5612	2193	4221	2594	4789	5498	*	4131	54
+       0	*	*	*	*	*	0	8076	0	1640	
+
+Y 55   4844	5297	*	5679	4125	*	5091	3371	4430	3250	5742	*	*	4691	4684	5261	3236	3344	3984	2356	55
+       71	4374	*	1153	862	*	0	8076	1342	1640	
+
+F 56   4988	3938	5384	5200	4738	*	5300	3452	4669	3425	5648	*	6536	5288	3850	4259	3148	2576	5063	3697	56
+       109	4983	4611	3185	168	*	0	8076	1297	1640	
+
+L 57   5766	*	6326	6224	3402	*	6690	3828	5689	784	4897	*	*	*	5064	*	*	3668	6016	5418	57
+       41	*	5150	*	*	3853	103	7894	0	2271	
+
+R 58   5074	*	4633	1844	5223	3191	5861	5413	3547	*	*	4262	4176	6015	4052	3600	4799	6110	5739	4202	58
+       105	5652	4322	2068	393	3013	191	7863	1092	2349	
+
+R 59   3458	5789	4729	2495	*	3698	6506	5581	3621	*	5663	5867	2180	*	3866	3429	5215	5370	6012	*	59
+       239	2874	5945	2064	394	2505	280	7854	1873	2506	
+
+G 60   5043	6633	4561	*	*	606	*	5876	5424	*	6498	3542	4526	*	*	3926	6190	*	*	*	60
+       92	4705	5435	0	*	4081	88	7875	1268	2324	
+
+D 61   6387	*	2720	1882	6021	5086	4303	4855	4282	4824	6574	3860	*	3617	5215	3261	6028	6514	6160	5988	61
+       55	5595	5908	0	*	2108	381	7862	1064	2388	
+
+Y 62   *	6011	*	5142	4332	6980	6943	3637	5168	3553	4815	5284	5389	5398	*	6277	*	4036	*	959	62
+       0	*	*	*	*	4196	81	7834	0	2163	
+
+P 63   3825	*	4217	4220	*	5067	5358	3715	5713	4036	6344	4238	2245	4564	3807	3367	4288	4295	*	5467	63
+       13	6792	*	1000	1000	*	0	7834	1000	2099	
+
+D 64   4339	5819	1774	5016	*	*	4716	6587	*	4954	*	2703	*	3800	3769	3075	4122	4628	*	6210	64
+       93	5023	4975	1527	615	3972	95	7834	1253	2099	
+
+Y 65   4700	*	4321	5600	3548	5545	6467	3796	*	1381	6599	5240	3725	5304	*	4003	5803	5378	4456	5098	65
+       126	*	3575	239	2711	1370	706	7826	1457	2261	
+
+Q 66   3550	*	3970	3924	5463	3332	4459	*	3859	3707	*	3508	3953	4286	4815	3307	3845	*	*	4008	66
+       77	6282	4671	597	1562	2439	294	7689	1055	2437	
+
+Q 67   3271	*	3311	3601	5575	4277	5669	5537	4126	5880	*	3511	3912	4301	4176	2561	4304	5383	*	5571	67
+       439	4115	2289	2209	352	*	0	7826	1333	2442	
+
+W 68   5419	6891	5327	4814	3609	*	*	3819	5834	3059	3912	*	6391	5623	5794	5538	6044	*	1467	3291	68
+       361	4790	2434	3493	134	862	1152	7340	1446	3631	
+
+M 69   4387	5036	6367	5791	5515	1772	4895	4584	4405	4070	4349	5011	*	6713	4703	2902	3585	5063	5666	*	69
+       188	3207	6141	2078	390	1608	574	7349	1609	3499	
+
+G 70   3567	*	5199	5301	5239	1314	*	4051	4431	4522	5792	4050	*	5893	4697	4597	4180	5345	6603	5721	70
+       164	3220	*	2304	327	*	0	7568	1740	2816	
+
+L 71   4564	4449	4367	5563	3023	6528	6142	6272	5064	2235	3967	6396	4155	6788	4608	4207	4907	4592	2964	*	71
+       255	2913	5095	1026	975	1054	948	7525	1763	3009	
+
+N 72   *	*	4004	6572	*	3963	6188	*	5000	*	*	777	4750	5285	5915	3408	4910	*	*	5171	72
+       46	4995	*	1465	649	2634	253	7775	1154	2271	
+
+D 73   4769	5313	1013	6683	4504	4623	6231	*	7071	*	5908	2856	4633	5647	6672	4632	6607	6462	6039	5283	73
+       0	*	*	*	*	*	0	7767	0	2066	
+
+S 74   4304	6761	6707	4834	*	6575	4987	7099	2733	5203	6793	3826	*	3281	2296	3047	3536	4294	*	5353	74
+       11	7048	*	0	*	*	0	7767	1000	2066	
+
+I 75   6329	*	*	*	4353	*	5828	987	*	3174	5406	6403	5240	*	*	*	4110	2428	*	*	75
+       0	*	*	2000	415	*	0	7767	1297	2066	
+
+R 76   *	*	6446	6071	*	2661	*	*	4290	4464	4880	5859	*	5113	3824	943	4377	*	*	*	76
+       0	*	*	*	*	*	0	7778	0	2066	
+
+S 77   4731	6040	*	*	*	5902	*	*	*	*	*	*	*	*	5983	139	*	7256	*	*	77
+       0	*	*	*	*	*	0	7778	0	2066	
+
+C 78   5417	5229	*	*	2719	*	*	2114	*	1823	3260	*	*	*	*	*	*	2618	*	5859	78
+       14	6696	*	1585	585	3021	190	7778	1000	2066	
+
+R 79   *	*	5647	5412	*	*	5339	5710	2462	5922	*	*	*	4188	944	4964	4659	*	*	3871	79
+       33	*	5457	*	*	1448	658	7923	0	1931	
+
+L 80   6013	6060	*	5914	4026	*	*	2622	5666	3366	6634	5651	2180	5980	3944	5128	5579	2524	*	4119	80
+       230	5628	2974	1000	1000	3021	190	8012	1165	1749	
+
+I 81   3802	*	6432	6512	6628	4320	*	1993	*	2836	4979	*	3368	4406	5326	4426	6047	2472	*	6415	81
+       163	*	3227	*	*	*	0	7655	0	2710	
+
+P 82   4629	6606	4390	4937	*	3618	4721	6432	2866	4317	6334	*	3151	3389	2603	4351	4675	5375	*	4225	82
+       2715	836	1798	1096	910	4745	55	6987	3702	3224	
+
+H 83   *	*	1683	5734	4228	7582	3120	*	3953	*	4504	2748	4272	*	4524	3974	4348	5027	*	*	83
+       56	4728	*	3342	150	5592	30	6658	1057	4215	
+
+T 84   5578	*	*	5657	2751	3517	*	5646	5485	2324	5254	*	3000	4061	5373	4107	3861	5337	5283	3862	84
+       198	4193	3769	1823	479	2785	226	6757	1122	4161	
+
+S 85   4160	*	4124	3560	*	1858	4890	3708	5156	4929	5432	5561	4170	3612	4322	3100	*	7234	*	*	85
+       210	2881	*	2659	249	291	2451	7460	1561	3990	
+
+S 86   4884	6385	3180	2786	*	3206	6387	*	4309	5307	6433	3971	3456	4678	3460	3591	3637	6527	*	4955	86
+       0	*	*	*	*	1623	566	8256	0	1570	
+
+H 87   4190	4014	4181	5403	4627	3951	4826	6683	5521	4831	4735	3524	2320	6462	*	2657	7122	5122	7110	4068	87
+       14	6727	*	2863	213	*	0	8212	1119	1360	
+
+R 88   2840	*	4493	4222	6462	3892	5454	*	2836	3954	6464	*	5338	3156	3534	2871	3969	5568	*	*	88
+       13	*	6790	*	*	*	0	8200	0	1360	
+
+L 89   2910	6532	*	6451	*	6060	*	1649	*	2645	5712	7122	*	*	*	6472	6167	1739	*	*	89
+       16	6479	*	0	*	2611	258	8210	1006	1446	
+
+R 90   5576	3109	*	4912	6601	*	6287	2984	4558	4572	4835	4231	*	5687	4048	4232	2129	3067	8869	5357	90
+       0	*	*	*	*	*	0	8206	0	1360	
+
+I 91   4719	*	*	*	2436	6101	*	3018	*	1105	5204	*	*	*	*	*	6361	2889	*	*	91
+       0	*	*	*	*	*	0	8203	0	1360	
+
+Y 92   *	6095	*	*	1483	*	6082	*	*	*	*	*	*	*	*	6448	*	*	5324	795	92
+       0	*	*	*	*	*	0	8203	0	1360	
+
+E 93   3980	*	2968	1307	*	5616	6817	*	3739	*	6965	5601	*	5028	5920	2951	3584	*	*	6389	93
+       0	*	*	*	*	*	0	8203	0	1360	
+
+R 94   5944	*	3011	2351	*	3884	2495	*	3715	4552	6308	3108	6475	4055	5441	4305	*	5255	*	*	94
+       10	*	7121	*	*	*	0	8203	0	1360	
+
+E 95   3490	*	2841	2668	*	4875	6826	4683	4252	*	6933	5263	2925	5493	4398	3138	3339	4976	*	*	95
+       0	*	*	*	*	*	0	8183	0	1471	
+
+D 96   4762	6527	3134	5621	4458	2908	3382	6263	5129	*	*	1521	*	6272	*	4684	*	6902	4346	4509	96
+       24	*	5915	*	*	*	0	8183	0	1471	
+
+Y 97   6441	6051	*	5025	760	5472	*	*	*	4423	*	6134	*	4099	6017	5426	*	5668	*	2716	97
+       43	5857	6391	3129	175	*	0	8096	1114	1602	
+
+R 98   5214	*	*	4003	*	2887	5217	5830	3607	*	6152	3473	*	2768	3013	3359	3098	6080	*	4469	98
+       16	6503	*	1000	1000	*	0	8041	1000	1857	
+
+G 99   6183	*	*	4957	*	178	*	*	*	5385	*	6002	*	*	*	5034	*	*	*	*	99
+       23	*	6002	*	*	*	0	8041	0	1857	
+
+Q 100  3768	*	2992	3771	6483	*	5623	*	2989	5214	*	3719	3721	3786	2154	4376	6090	6186	*	5812	100
+       0	*	*	*	*	3110	178	8036	0	1974	
+
+M 101  3753	3696	*	3277	3783	5367	4397	*	4400	6801	4561	6436	6098	4253	3200	2281	4655	5732	*	4300	101
+       0	*	*	*	*	*	0	8041	0	1857	
+
+V 102  5111	5408	*	6478	3602	*	5486	2743	3736	3061	5946	*	*	3093	4379	5322	4649	2686	6711	3716	102
+       9	*	7265	*	*	*	0	8041	0	1857	
+
+E 103  4540	3309	3760	2009	5839	5472	4748	6477	5034	6077	*	5362	6162	6339	4394	3379	3654	3702	6389	4736	103
+       35	*	5376	*	*	2972	197	8041	0	1944	
+
+I 104  5753	6991	*	*	2233	*	*	2575	*	1634	5568	6402	*	*	*	*	5840	2576	*	4243	104
+       18	6320	*	523	1716	2620	256	8085	1098	1985	
+
+T 105  3810	5958	3895	4415	3893	4960	6438	5024	5996	4506	4768	4084	6722	*	4354	2685	2284	4976	*	4306	105
+       104	3846	*	1217	811	1048	954	8129	1530	1819	
+
+E 106  3143	5949	2483	2240	6190	2520	*	6906	7145	*	*	4732	6503	5178	3987	3303	5237	*	*	6736	106
+       205	2914	*	1157	859	2341	317	8161	2106	1390	
+
+D 107  4014	*	1256	3155	*	5058	5626	*	6783	*	*	3351	4812	6918	6945	2816	5468	*	*	4921	107
+       31	5546	*	1585	585	*	0	8166	1453	1374	
+
+C 108  3712	3242	4750	5075	4366	*	6112	2651	*	3422	6372	5289	*	3869	6882	4039	4070	2479	*	5546	108
+       0	*	*	0	*	978	1022	8134	1297	1804	
+
+S 109  3093	*	2957	4018	6708	5460	*	4726	*	5864	6702	4231	1972	5491	4706	3832	4619	4720	*	3681	109
+       106	3813	*	1405	684	0	*	8203	2020	1360	
+
+S 110  5113	4856	2087	4800	5193	5026	6926	6186	*	5715	6004	2023	5928	5116	6466	2609	4797	5321	6465	6391	110
+       21	*	6098	*	*	*	*	8233	0	0	
+
+L 111  5485	5674	6876	5959	3937	6243	*	4088	6089	1019	4446	5081	6445	7106	*	5868	6578	2817	6143	6579	111
+       63	4982	6466	3332	151	0	*	8191	1471	1015	
+
+H 112  4446	5722	4027	3464	4282	2775	4777	*	4102	5444	6458	4488	4191	3453	5120	2827	4547	7492	*	4382	112
+       395	4772	2300	3170	170	2320	322	8149	1243	1392	
+
+E 113  3880	*	2548	2800	*	4558	4743	5537	3308	*	*	3639	3864	4543	3850	3472	3969	*	*	*	113
+       221	3120	5209	1167	851	1814	483	7722	1642	2794	
+
+R 114  4011	*	3933	5268	*	3564	4812	3589	4731	3196	5335	3934	5092	4122	3753	4252	4237	3645	*	4059	114
+       208	5649	3130	1666	546	1295	755	7855	1046	2518	
+
+F 115  5163	*	3283	6139	2708	1777	6219	4357	4029	4676	5973	4687	4339	6049	5007	6551	*	5694	5433	4496	115
+       145	7867	3453	0	*	1249	788	7910	1021	2722	
+
+H 116  5830	*	4959	*	1737	3377	6467	5765	*	3095	3409	5997	5449	5264	4012	4753	*	*	2844	6613	116
+       104	4506	5298	2747	233	1913	445	7685	1248	2847	
+
+F 117  5405	*	5271	6080	3006	4873	4558	*	*	3824	4451	1011	5246	6642	5219	4704	5621	*	*	*	117
+       57	4684	*	1492	634	2269	336	7928	1383	2507	
+
+S 118  6162	*	1012	4974	6021	4680	6468	*	5362	5248	*	2403	5659	*	5888	3711	5918	6256	*	6609	118
+       36	5345	*	0	*	2691	243	7799	1093	2200	
+
+E 119  5216	5561	3830	3934	5974	4145	6472	*	2976	*	*	3304	5605	3351	2004	3809	4331	*	*	6034	119
+       44	5071	*	0	*	1901	450	7823	1174	2013	
+
+I 120  2919	4178	*	*	5370	4908	*	1955	5772	3995	6399	*	4948	*	*	*	3330	1957	6076	*	120
+       0	*	*	*	*	*	0	7943	0	1730	
+
+H 121  3928	6835	6589	5184	5919	3830	5491	4725	4062	6514	*	4595	*	4579	3251	1312	4122	6399	*	6681	121
+       0	*	*	*	*	*	0	7943	0	1730	
+
+S 122  *	4993	*	*	*	5163	*	*	*	5678	*	*	*	6069	*	142	*	*	*	*	122
+       16	*	6467	*	*	*	0	7943	0	1730	
+
+F 123  3978	6169	*	*	4136	*	4963	1335	*	2506	4616	*	*	*	*	4905	*	2629	6212	6356	123
+       0	*	*	*	*	3096	179	7913	0	1834	
+
+H 124  3831	*	6545	4535	*	*	4987	2815	2222	5387	5713	*	*	3896	2510	4762	3391	4685	6074	5944	124
+       9	*	7260	2532	274	892	1116	7943	1161	1730	
+
+V 125  6433	*	*	*	4409	*	6944	2177	7468	5295	7543	*	*	*	5768	*	4788	687	*	*	125
+       9	*	7361	0	*	*	0	8129	1004	1390	
+
+L 126  6580	*	*	3353	4972	*	5721	3472	3862	2859	7128	6452	2573	3782	4423	3617	3741	4288	*	5028	126
+       0	*	*	*	*	3180	169	8145	0	1448	
+
+E 127  4343	5676	4680	4075	6853	2403	*	*	6876	6459	*	3937	4004	5187	2612	2151	5762	4740	*	6007	127
+       220	2825	*	1161	855	2341	317	8143	2171	1390	
+
+G 128  4996	5141	4650	5398	*	478	*	*	5258	*	*	6051	5918	4780	4788	5868	*	6450	*	*	128
+       71	4725	6608	1704	529	*	0	7680	1227	1297	
+
+W 129  3388	3790	5355	6230	*	4322	*	4285	6031	4482	3793	6001	3270	4686	*	4673	3628	2866	3409	4281	129
+       35	5377	*	998	1002	2341	317	7596	1192	1390	
+
+W 130  6279	*	*	*	4495	5763	*	4460	4610	3948	*	*	6448	4090	*	6354	6275	4767	674	6134	130
+       142	3414	*	1560	598	*	0	7448	1604	1297	
+
+V 131  5323	6279	6247	3808	5825	*	6279	3161	5264	3648	5433	*	*	5918	4089	5051	3111	1377	*	*	131
+       232	2751	*	861	1154	*	0	7448	1973	1297	
+
+L 132  2927	6536	*	*	2857	3916	*	2634	*	1834	5582	*	*	*	*	*	6653	2464	*	*	132
+       0	*	*	*	*	*	0	7447	0	1297	
+
+Y 133  *	2556	*	*	2556	*	6062	*	*	*	*	*	*	*	*	*	*	*	*	633	133
+       0	*	*	*	*	*	0	7447	0	1297	
+
+E 134  6683	*	3018	1161	5825	*	*	*	3947	*	*	6136	4289	3541	4737	3852	5177	5191	*	5371	134
+       0	*	*	*	*	*	0	7447	0	1297	
+
+M 135  *	*	2135	3558	6364	4447	2690	5762	3534	5057	6602	3012	*	3438	5007	4973	*	*	*	4316	135
+       45	5018	*	3076	182	*	0	7447	1119	1297	
+
+P 136  3700	6432	3118	3575	*	3983	*	5572	4657	5187	5449	6216	2084	*	4767	3664	3597	3650	*	6525	136
+       0	*	*	*	*	*	0	7447	0	1297	
+
+N 137  6278	6486	2695	4521	4217	2713	4973	*	3920	*	*	1492	*	4533	5514	4550	*	6565	*	*	137
+       0	*	*	*	*	*	0	7447	0	1297	
+
+Y 138  *	6797	5636	*	1041	*	*	*	6173	6133	5353	*	*	6062	4491	6565	*	6376	*	1513	138
+       45	*	5018	*	*	*	0	7447	0	1297	
+
+R 139  5417	4705	4655	3915	*	3241	*	*	4467	5912	6106	3163	*	2796	2170	3504	3930	5754	*	*	139
+       0	*	*	*	*	1513	622	7356	0	1500	
+
+G 140  5060	*	4858	6331	*	284	*	*	5754	5084	*	*	5636	*	*	4890	*	*	*	*	140
+       19	*	6241	*	*	*	0	7447	0	1297	
+
+R 141  *	*	3962	3813	*	4550	4348	*	3325	4215	*	3898	3881	3957	2075	3531	5066	*	6233	4240	141
+       149	4126	4620	2091	386	2503	280	7430	1276	1378	
+
+Q 142  6767	2757	*	4347	5099	5410	4081	*	6248	6360	4355	5767	4630	2131	4333	3380	*	6053	*	2643	142
+       0	*	*	*	*	*	0	7337	0	1570	
+
+Y 143  5172	4695	*	5475	3543	*	4622	3194	4170	3812	4813	*	*	4881	6438	4288	6481	3394	5446	1800	143
+       0	*	*	*	*	1681	539	7337	0	1570	
+
+L 144  6229	4047	5525	3382	3956	*	6111	3063	6203	2967	5886	*	5789	*	4403	5090	2959	2292	6140	6658	144
+       0	*	*	*	*	*	0	7429	0	1368	
+
+L 145  4626	*	*	4992	3224	*	*	3269	5789	1142	4473	*	*	*	4791	5604	*	3268	6671	5016	145
+       111	4741	4776	2304	326	*	0	7429	1175	1368	
+
+R 146  *	*	4276	1863	5938	2780	4991	5508	3589	*	5837	5583	5216	*	3245	5109	2750	6218	6230	*	146
+       66	4800	6819	2153	368	145	3388	7412	1144	1663	
+
+P 147  2844	*	5156	2410	*	4331	*	5818	3290	*	*	*	2054	6644	3600	4141	6195	5009	5713	5562	147
+       60	5855	5432	3000	193	1154	861	7496	1030	1043	
+
+G 148  4327	6288	4459	*	*	463	*	*	5919	*	*	4333	*	*	5907	4018	5518	*	*	*	148
+       67	4832	6594	1361	711	1525	616	7486	1401	1165	
+
+D 149  *	*	2388	1794	4032	*	6209	4416	3554	4800	5856	4837	*	5417	5417	4198	5211	4804	5110	4931	149
+       194	4067	3923	0	*	2127	375	7433	1393	1525	
+
+Y 150  5786	*	5187	*	3543	*	5848	4305	*	4454	4582	5686	*	6371	5653	4874	5490	3950	*	887	150
+       45	*	5014	*	*	721	1346	7369	0	1805	
+
+R 151  2914	6268	4470	3613	6423	5385	5611	*	4815	4985	*	2932	2533	5924	3644	3455	4433	4496	*	5489	151
+       152	3514	6335	194	2988	1054	948	7315	1421	1458	
+
+R 152  4052	4830	2460	5191	6284	4990	4384	*	*	4042	6046	2436	*	4353	3206	3472	4342	4445	*	*	152
+       0	*	*	2000	415	2108	381	7321	1004	1283	
+
+Y 153  4394	5504	5208	4663	3586	*	5977	4085	*	1751	*	*	3227	*	5734	4224	6284	5403	3203	3565	153
+       93	6374	4303	1000	1000	580	1594	7328	1000	1197	
+
+H 154  4116	5958	4370	3099	5286	3351	6458	*	5285	3313	6111	3643	4554	4558	4298	2825	3532	7259	6215	5513	154
+       43	5824	6396	1337	727	2240	343	7353	1111	1357	
+
+E 155  2543	*	2254	2779	4919	4562	*	6436	3575	5672	6030	5555	5806	*	4269	2928	4992	6206	*	*	155
+       16	*	6467	*	*	*	0	7380	0	1334	
+
+W 156  4578	5278	5146	*	2509	*	5217	2444	*	4155	3528	*	6648	*	6346	5742	5526	*	1968	4139	156
+       306	6014	2510	1000	1000	948	1054	7383	1000	1414	
+
+G 157  *	6409	5821	6021	5953	570	*	7116	4055	*	5995	4891	*	6101	5773	3709	6532	6322	*	5978	157
+       201	5916	3141	1585	585	561	1635	7137	1000	2265	
+
+A 158  2735	5027	4320	*	3571	2039	5990	3619	5590	3595	6106	4948	*	4892	5187	3783	5875	6210	6293	5887	158
+       217	6376	2971	2322	322	986	1014	7171	1000	2121	
+
+V 159  4804	5931	6003	4291	2692	3910	6242	*	4826	3082	2741	*	3048	5119	6164	3520	5418	5216	6399	5022	159
+       141	3689	5998	1596	580	563	1631	7157	1375	2287	
+
+D 160  4201	6554	3723	4851	4945	4076	5468	*	5472	*	6086	1430	*	5136	5266	3087	3542	6110	5837	6400	160
+       44	5064	*	3334	151	1535	611	7327	1105	1495	
+
+A 161  4752	*	2014	4646	*	4060	4890	5041	5886	*	*	1775	4066	5043	4673	5078	5695	5730	5674	5277	161
+       0	*	*	*	*	*	0	7363	0	1297	
+
+R 162  3522	*	5844	4498	*	*	4912	*	3431	4283	*	4152	*	3249	2045	3204	3372	4320	*	6050	162
+       0	*	*	*	*	*	0	7363	0	1297	
+
+V 163  4254	*	*	*	4419	*	*	920	*	3210	5402	*	*	*	*	*	4436	2363	*	*	163
+       0	*	*	*	*	*	0	7363	0	1297	
+
+G 164  6202	6213	*	*	*	2559	*	*	3897	3799	6434	*	*	3674	4429	1094	4068	*	*	*	164
+       0	*	*	*	*	*	0	7363	0	1297	
+
+S 165  6203	*	*	*	*	*	6157	*	*	*	5695	*	*	*	*	92	*	*	*	6074	165
+       0	*	*	*	*	*	0	7363	0	1297	
+
+L 166  3888	5292	*	*	3718	*	*	1660	*	2219	2822	*	*	*	*	*	*	2659	*	*	166
+       16	6477	*	1585	585	*	0	7363	1004	1297	
+
+R 167  *	*	*	5370	*	*	*	*	2306	6042	*	*	*	3741	730	5016	*	*	*	4329	167
+       0	*	*	2567	267	0	*	7353	1131	1297	
+
+R 168  4128	5987	*	*	5924	*	5484	3416	4623	5926	4412	*	1749	6283	2475	*	4094	3260	*	4743	168
+       0	*	*	*	*	*	*	7068	0	0	
+
+A 169  5930	*	*	*	5952	*	*	1703	*	2884	3601	*	*	*	5368	3935	4489	1891	*	4695	169
+       0	*	*	*	*	*	*	6558	0	0	
+
+V 170  5299	4762	3982	*	4953	*	4797	*	2466	3612	*	5165	3983	3500	1880	*	*	3437	*	*	170
+       0	*	*	*	*	*	*	5821	0	0	
+
+D 171  *	*	1077	3697	*	3851	2714	*	*	*	*	3781	*	3530	*	*	*	*	*	3881	171
+       224	2798	*	1000	1000	*	*	4528	1000	0	
+
+F 172  *	*	2305	*	2335	*	*	*	*	*	2435	*	*	*	*	2161	*	*	*	2389	172
+       0	*	*	*	*	*	*	2764	0	0	
+
+Y 173  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1043	959	173
+       0	*	*	0	*	*	*	1674	0	0	
+
+//
+�HHsearch 1.5
+NAME  4939a1cdd4b26c7d9053b02c16db7e41
+FAM   
+FILE  4939a1cdd4b26c7d9053b02c16db7e41
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:30:19 2013
+LENG  90 match states, 90 columns in multiple alignment
+FILT  165 out of 1035 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  8.3 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCHHHHHHHHHHHHCCCHHHHHHHHHHHHHHHHHHHHCCCEEEECCCEEEEEEEECCCCCCCCCCCCEEEECCCCEEEEEECHHHHHHHC
+>ss_conf PSIPRED confidence values
+988999999999839899999999999999999999769969976874899987357324389998789965976089988889999649
+>Consensus
+mxkxelxxxiaxxxxxsxxxxxxvlxxxxxxixxxLxxgxxVxlxxxGxFxxxxxxxrxxxnpxtxexixixxxxxvxFxpskxlkxxvn
+>4939a1cdd4b26c7d9053b02c16db7e41
+MNKTQLIDVIAEKAELSKTQAKAALESTLAAITESLKEGDAVQLVGFGTFKVNHRAERTGRNPQTGKEIKIAAANVPAFVSGKALKDAVK
+>gi|257470064|ref|ZP_05634156.1| hypothetical protein FulcA4_12035 [Fusobacterium ulcerans ATCC 49185]gi|317064288|ref|ZP_07928773.1| predicted protein [Fusobacterium ulcerans ATCC 49185]gi|313689964|gb|EFS26799.1| predicted protein [Fusobacterium ulcerans ATCC 49185]
+MTETEFIRFYKKKIKlRNVKEVQERIDTFWKTIFKALEIDGKVTFKDWGVFEKRKHGARRYILASLGIDNMTENKEVIKFRAGKGFENKIN
+>gi|189465367|ref|ZP_03014152.1| hypothetical protein BACINT_01716 [Bacteroides intestinalis DSM 17393]gi|189437641|gb|EDV06626.1| hypothetical protein BACINT_01716 [Bacteroides intestinalis DSM 17393]
+-ERKEFLNRVHLFTGISRSLLEGAMASFMDELRDCLADGWTVEFGELGYFTPSLNCRREVMEKKelRAASVTLRG---LNFRLGKEFYKEL-
+>gi|157325091|ref|YP_001468516.1| gp136 [Listeria phage A511]gi|66732779|gb|AAY53370.1| gp67 [Listeria phage P100]gi|66733099|gb|AAY52917.1| gp136 [Listeria phage A511]
+-NRTDIAREVAQRTGFYIKDVEQILAERDTVIIDALQGGVtKIKEHKLYQIEVETKPaKKNAWNGLDKVYFSIPEKKIIKFKPLVAVEEVI-
+>gi|261881157|ref|ZP_06007584.1| conserved hypothetical protein [Prevotella bergensis DSM 17361]gi|270332024|gb|EFA42810.1| conserved hypothetical protein [Prevotella bergensis DSM 17361]
+LSPRELEEKISHNCTLTASDIRSVLAALNHVMTTELSAGRRLHLSSIGYFSLKVRSIKlEDRKKMRGNHLYA---SGILFRPEASVMSDM-
+>gi|232236|sp|Q01239.1|HCC1_CRYCO RecName: Full=Major basic nuclear protein 1; AltName: Full=Protein p14 alpha/beta chaingi|17961|emb|CAA41349.1| p14 (alpha and beta) [Crypthecodinium cohnii]
+MTKTGLAEAWRRRPSFLRRTAGQSWRAWPRSCAAEVKKTGKLTIPGLVMVKTRKKPATKaGKREMFGKVVLVkaSCQDVVKAYPVKALKT---
+>gi|194337423|ref|YP_002019217.1| Sporulation domain-containing protein [Pelodictyon phaeoclathratiforme BU-1]gi|194309900|gb|ACF44600.1| Sporulation domain protein [Pelodictyon phaeoclathratiforme BU-1]
+MTNHDCVGELAGLLDVERQVASSFLIDFSSAMVAELLAVRKLSLKGLGSFTVTHHPAE--KKNTASAIIYTPPSDRLTFSRQLSGAD---
+>gi|12045213|ref|NP_073024.1| DNA-binding protein HU, [Mycoplasma genitalium G37]gi|255660275|ref|ZP_05405684.1| DNA-binding protein HU, putative [Mycoplasma genitalium G37]gi|1351556|sp|P47595.1|Y353_MYCGE RecName: Full=Uncharacterized protein MG353gi|3844937|gb|AAC71578.1| DNA-binding protein HU, putative [Mycoplasma genitalium G37]gi|166078767|gb|ABY79385.1| DNA-binding protein HU, putative [synthetic Mycoplasma genitalium JCVI-1.0]
+-SRSEINKIIAVATGIKEKKIKEIFKYLNTLLLNELVSRSVCILpENLGKLRITIRNARYQKDMQTGEIRHIPPKPLVRYSPSKTIKET--
+>gi|288802083|ref|ZP_06407524.1| putative non-specific DNA binding protein [Prevotella melaninogenica D18]gi|288335518|gb|EFC73952.1| putative non-specific DNA binding protein [Prevotella melaninogenica D18]
+MSLAQIVKRVEKRSTVSSADVKAVLDALQYEVMEALENGNTVRLGDLGSFRLTMKSqGAPTAAEAKKKGAQLIKQVNVQFTKSTTMRDTL-
+>gi|298373791|ref|ZP_06983780.1| conserved hypothetical protein [Bacteroidetes oral taxon 274 str. F0058]gi|298274843|gb|EFI16395.1| conserved hypothetical protein [Bacteroidetes oral taxon 274 str. F0058]
+VTKQDIISNLSQKLDMPEEQVGIFISKLNDLLLKNLPTNKEITIDGVGTFSLVWSTYHKNTKLKDGEPREF---YKLKFEPAESLKSTVN
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    6440	*	*	*	4927	*	*	4538	6627	3043	746	*	6137	5530	6431	*	6289	3003	*	*	1
+       0	*	*	2000	415	*	*	7639	1000	0	
+
+N 2    5220	*	3424	6928	*	4914	6737	6664	3613	6187	*	2191	*	*	5967	2988	1497	6838	*	*	2
+       12	6896	*	0	*	*	*	8064	1012	0	
+
+K 3    4407	*	6307	4707	4396	*	7040	5376	1261	3903	6093	5179	6724	5576	2711	5785	3942	5489	*	7008	3
+       10	*	7118	*	*	*	*	8163	0	0	
+
+T 4    3647	*	3150	2736	*	6946	6563	4661	2114	5750	*	4818	5916	3849	4300	3083	4809	5391	*	*	4
+       0	*	*	*	*	0	*	8272	0	1000	
+
+Q 5    4503	*	2279	1380	7344	5249	5179	6270	4087	*	6040	7599	*	3696	4206	4974	5173	*	6340	6587	5
+       10	7154	*	2000	415	*	*	8266	1000	0	
+
+L 6    6169	7047	*	*	2593	*	*	2184	7303	1172	3925	*	*	*	*	7334	*	3825	*	*	6
+       0	*	*	*	*	*	*	8322	0	0	
+
+I 7    2067	4184	*	5207	6495	*	*	1778	7288	3625	5850	6167	*	*	7495	5194	4393	2495	*	*	7
+       15	7347	7881	2000	415	*	*	8328	1001	0	
+
+D 8    3733	*	3285	2048	*	7417	5036	6156	2483	6937	6243	4738	*	4573	2918	3970	4796	6297	*	7527	8
+       0	*	*	0	*	0	*	8328	1000	1000	
+
+V 9    3729	*	4583	2775	6603	6354	4879	3974	3669	3225	5349	5543	*	4016	2493	4887	4492	5728	*	4365	9
+       9	7338	*	2585	263	*	*	8328	1021	0	
+
+I 10   4315	*	*	*	6182	*	7338	1582	6937	1945	4990	*	*	*	*	*	5804	2210	*	3998	10
+       19	7314	7176	0	*	*	*	8328	1012	0	
+
+A 11   1293	*	*	3665	5766	7310	6502	7270	4176	6313	6311	7677	7343	4862	5276	2160	4345	5308	7284	6101	11
+       0	*	*	*	*	0	*	8315	0	1016	
+
+E 12   3952	*	5142	2123	*	5702	4860	5876	2800	5395	6494	4134	7736	3323	3096	3534	4724	6165	*	6400	12
+       106	3937	7452	1657	550	*	*	8328	1824	0	
+
+K 13   4065	7569	6510	3119	5573	5062	4502	4168	2858	4794	5501	3471	7441	4181	2246	4353	6175	6107	*	5439	13
+       27	5758	*	0	*	*	0	8328	1254	1000	
+
+A 14   4417	4279	*	*	*	4889	4483	6187	6186	2940	4909	4244	6250	4801	5293	2258	1992	5177	*	5901	14
+       28	6133	7725	321	2327	*	0	8348	1191	1000	
+
+E 15   4588	6977	4135	4042	7159	1594	5366	*	4102	*	*	3579	5420	5583	5490	2781	3102	*	*	*	15
+       80	4213	*	1162	855	1087	918	8353	1741	1059	
+
+L 16   5224	5730	*	7228	3121	6767	6868	2834	4785	1733	4074	7018	6097	7268	*	5674	4542	2775	*	4611	16
+       34	5433	*	0	*	0	*	8348	1349	1000	
+
+S 17   5904	*	4377	4539	6293	4856	4598	*	4424	6480	*	4562	3403	*	5997	1674	1920	*	*	6004	17
+       10	7229	*	2000	415	*	*	8346	1000	0	
+
+K 18   4907	*	*	2583	*	6376	5984	4432	2035	4920	*	4855	4407	3446	2754	4089	6376	4775	7379	6221	18
+       0	*	*	*	*	*	*	8346	0	0	
+
+T 19   2663	*	5168	3299	6013	2576	6339	6738	2097	7507	7293	5250	5732	5333	5414	3806	4706	4254	*	7236	19
+       7	7737	*	1000	1000	*	*	8346	1000	0	
+
+Q 20   4308	7585	1704	2607	7492	6038	5843	5134	4126	5801	5243	5370	*	3130	5289	5807	4256	3819	*	*	20
+       0	*	*	*	*	*	*	8346	0	0	
+
+A 21   1719	4817	*	*	*	*	*	2532	*	3940	*	*	*	*	*	4634	3682	1746	7288	*	21
+       0	*	*	*	*	*	*	8346	0	0	
+
+K 22   4315	*	4943	2528	7172	4757	6335	4875	2465	3748	7490	5179	6954	5019	2882	3805	4403	4595	*	5061	22
+       0	*	*	*	*	*	*	8346	0	0	
+
+A 23   2796	7379	4522	2735	7227	3278	4856	5464	3204	5133	5157	4364	5866	3856	3854	4006	5035	5546	*	7337	23
+       0	*	*	*	*	*	*	8346	0	0	
+
+A 24   3077	5328	5691	7169	3524	*	6756	2728	6138	3166	6861	7551	*	6911	7231	5433	5158	1498	5903	7224	24
+       0	*	*	*	*	*	*	8346	0	0	
+
+L 25   5431	*	*	*	3441	6768	*	2594	*	1447	4536	*	*	*	*	*	6653	1909	6480	6319	25
+       12	6954	*	2807	222	*	*	8346	1027	0	
+
+E 26   3993	7518	1868	2608	*	4981	5855	4864	3426	7024	5381	3837	*	4360	4003	5731	3658	*	*	7235	26
+       0	*	*	*	*	*	*	8346	0	0	
+
+S 27   2150	7261	3693	2995	*	3460	5763	5116	7148	3990	5044	4570	*	5770	4522	3581	3598	4348	*	7013	27
+       0	*	*	*	*	*	*	8346	0	0	
+
+T 28   4625	*	*	*	1945	*	*	2906	*	1567	4311	*	*	*	6511	*	5711	2927	*	5880	28
+       0	*	*	*	*	*	*	8346	0	0	
+
+L 29   3898	7028	5716	4125	2786	4592	*	3763	6285	2654	4182	5157	7283	4847	4632	5036	3875	3070	5583	6172	29
+       0	*	*	*	*	*	*	8346	0	0	
+
+A 30   3793	*	2180	2205	7187	4160	4878	*	3550	5734	*	4076	*	5055	4828	3722	4168	7164	*	5248	30
+       12	6954	*	1585	585	*	*	8346	1027	0	
+
+A 31   3181	6299	7416	2867	5016	4257	*	3829	4700	2953	5409	6627	*	7547	6687	4006	3812	2522	7132	4336	31
+       0	*	*	*	*	*	*	8346	0	0	
+
+I 32   5755	*	*	*	5420	*	*	1390	*	2048	2808	*	*	*	6738	7132	5647	2684	*	*	32
+       0	*	*	*	*	*	*	8346	0	0	
+
+T 33   2948	6759	6970	3743	7231	4084	*	3611	2637	3920	6213	5979	6213	4782	4121	3416	4358	3254	*	5622	33
+       0	*	*	*	*	*	*	8346	0	0	
+
+E 34   3369	7181	2486	1974	6970	6327	5462	7718	3508	6675	6756	3967	*	4167	3752	3934	4769	*	*	6326	34
+       7	*	7604	*	*	*	*	8346	0	0	
+
+S 35   2141	4738	6242	2832	*	4441	4030	6908	5767	3868	6454	5160	*	4081	5678	3995	3847	3781	*	4137	35
+       0	*	*	*	*	0	*	8346	0	1000	
+
+L 36   5946	*	*	*	4726	*	*	3320	*	509	4310	*	*	7465	*	*	8287	3575	*	*	36
+       9	7333	*	0	*	*	*	8346	1002	0	
+
+K 37   2795	5936	4261	3405	*	3752	6239	4735	3045	3137	5732	6148	6363	4345	5060	2989	6437	4053	*	6473	37
+       9	7283	*	1585	585	*	*	8346	1001	0	
+
+E 38   3678	*	2628	2671	*	5808	6187	6365	3118	4960	5255	3415	*	4291	3622	3707	3802	*	*	6431	38
+       48	5571	6421	2064	394	*	*	8346	1218	0	
+
+G 39   4873	7005	4345	3798	*	733	5204	*	4880	*	*	3937	*	7394	4779	5218	5229	*	*	6246	39
+       17	7591	7318	1400	687	1615	570	8313	1170	1248	
+
+D 40   6483	7152	4007	2202	7243	3182	4081	*	2836	*	*	3130	6359	4804	3302	5235	6950	5247	*	4017	40
+       47	4968	*	793	1242	914	1091	8332	1416	1229	
+
+A 41   5546	7172	4675	2960	7003	5395	5710	3415	3152	*	*	4038	6559	5760	2574	2297	4177	5560	*	6759	41
+       9	7282	*	1000	1000	*	0	8330	1006	1061	
+
+V 42   7316	6150	*	*	4028	*	*	2597	*	3150	*	*	*	*	*	*	6635	666	*	*	42
+       0	*	*	*	*	0	*	8330	0	1061	
+
+Q 43   5218	5552	4166	2991	6444	6399	4129	4954	2873	5823	7276	3936	*	4694	2785	3664	3109	4891	*	5686	43
+       17	6432	*	1297	754	*	*	8346	1080	0	
+
+L 44   *	6670	*	6507	3340	*	*	1805	*	1073	7044	*	*	*	*	*	*	3169	*	*	44
+       20	6176	*	0	*	0	*	8343	1184	1000	
+
+V 45   5643	*	3969	4082	6173	2365	4768	*	3362	6063	6044	4705	2613	4726	3185	4327	4436	4667	*	*	45
+       0	*	*	*	*	0	*	8344	0	1000	
+
+G 46   7337	7325	2643	3497	*	1212	*	6751	4091	6461	*	2951	6296	6379	5418	4852	6971	*	*	6986	46
+       0	*	*	*	*	*	*	8346	0	0	
+
+F 47   *	*	*	*	1258	*	*	3154	7014	1626	5787	*	6751	*	7160	*	*	3816	5323	7058	47
+       0	*	*	*	*	*	*	8346	0	0	
+
+G 48   4818	5929	*	*	5053	199	*	6876	6738	7566	7316	7283	*	*	*	*	*	*	*	6511	48
+       0	*	*	*	*	*	*	8346	0	0	
+
+T 49   4810	*	7264	*	7415	5798	5323	4213	3104	4360	6907	5692	*	5148	3919	2873	1663	4163	7098	4243	49
+       0	*	*	*	*	*	*	8346	0	0	
+
+F 50   *	6751	*	*	484	*	*	4046	*	2680	7277	*	*	*	*	*	*	5370	5747	6676	50
+       14	*	6732	*	*	*	*	8346	0	0	
+
+K 51   7537	6306	6319	2827	6612	5431	5801	4084	3041	5970	8027	6312	*	4219	2845	2368	3214	5632	6306	4750	51
+       8	7496	*	1000	1000	0	*	8313	1000	1036	
+
+V 52   4714	7820	*	*	7175	6346	7891	2782	4971	2412	4360	7368	3260	7328	5558	4954	3522	1983	*	6644	52
+       7	*	7695	*	*	*	*	8327	0	0	
+
+N 53   3747	6060	7175	4706	7334	4477	5041	4725	2317	5554	*	5353	*	5925	3132	2781	3744	3000	7268	5844	53
+       63	4540	*	1714	525	*	0	8327	1526	1000	
+
+H 54   3496	*	4184	3109	3997	6227	4153	3668	3862	2973	6132	7318	5249	5480	5415	5140	3513	3575	7157	4887	54
+       27	7558	6241	1585	585	0	*	8327	1000	1000	
+
+R 55   5393	7249	*	4675	6988	3625	6321	6550	2163	5611	7305	5313	6151	4100	2223	4428	3143	3703	*	5635	55
+       98	6344	4228	1034	967	*	0	8311	1094	1106	
+
+A 56   3095	5637	4799	4611	7139	4705	6016	6886	2164	5154	*	4814	3063	6836	4150	2657	4117	5854	*	6408	56
+       120	4504	4802	203	2926	436	1938	8246	1476	1920	
+
+E 57   2285	7446	5865	2627	6968	3609	*	6437	3639	5336	*	7669	2759	6233	4128	3277	5127	4942	*	5954	57
+       91	5221	4866	1275	769	991	1009	8310	1253	1686	
+
+R 58   5585	5739	5511	4502	6608	4180	5079	*	2160	7447	*	6151	7044	5067	1256	4210	5255	*	6554	6843	58
+       189	4414	3725	187	3040	2071	392	8275	1572	1758	
+
+T 59   5063	*	7141	3348	4684	5492	6990	4426	2646	4170	4272	4637	3940	4345	3970	4283	3255	3464	*	5874	59
+       24	5949	*	0	*	649	1464	8154	1142	2507	
+
+G 60   2892	*	5751	4517	6832	1716	7040	4032	6979	5865	5474	5137	6947	5439	4750	4128	4468	2838	*	4856	60
+       20	*	6208	0	*	900	1108	8210	1061	1666	
+
+R 61   4320	7137	5056	4310	5457	6926	5058	3925	3487	4844	5508	7294	5483	6244	1873	4782	3254	3583	6478	4693	61
+       222	4705	3259	700	1379	*	0	8288	1429	1445	
+
+N 62   5029	*	2819	4718	6773	6544	4679	6657	4658	6433	*	927	7040	6078	5509	4313	4839	6147	*	*	62
+       41	6067	6252	2224	347	3774	110	8192	1193	2757	
+
+P 63   4966	*	6653	3224	4816	5192	7320	4276	4307	4210	6050	7107	1014	*	4780	6517	4854	5718	*	7114	63
+       74	4331	*	1000	1000	1084	921	8200	1525	2769	
+
+Q 64   4279	7290	4487	3572	4195	4144	6161	6418	2250	3995	6083	5820	7085	3719	2895	4115	4735	4105	*	*	64
+       129	3545	*	881	1129	1018	982	8250	2131	1944	
+
+T 65   4497	5998	3453	5983	6231	5840	7242	7126	3561	5915	*	4105	6705	7324	4384	4640	946	7349	*	*	65
+       47	5571	6482	707	1369	692	1393	8272	1196	1591	
+
+G 66   3070	*	7191	4034	6745	1213	7016	6252	2862	6299	6388	4979	5657	5720	4326	4784	6178	5726	*	*	66
+       39	5611	7305	1000	1000	1463	650	8323	1193	1323	
+
+K 67   4527	*	5742	1348	7222	4074	5247	7465	2548	*	7267	6558	7233	3758	4612	4935	4231	4277	*	*	67
+       24	6755	7116	606	1544	*	0	8312	1046	1261	
+
+E 68   5398	7033	4286	3039	6997	7128	7014	5270	3465	4931	4273	4542	3528	5854	3503	3002	2899	4365	5773	6464	68
+       50	6129	5673	0	*	*	0	8304	1116	1358	
+
+I 69   5627	5614	*	5871	3660	*	7234	1950	4914	3547	3279	6876	*	6957	5087	5469	4782	2050	6728	5639	69
+       20	6192	*	507	1754	1254	784	8292	1106	1610	
+
+K 70   4917	7303	4506	3502	4967	6740	4790	4224	2777	5207	4729	4907	6319	3935	4003	4256	2818	3878	6897	4554	70
+       172	5602	3447	1742	513	1464	649	8310	1234	1402	
+
+I 71   4568	7365	*	6910	3789	*	*	1540	4533	2962	4958	6896	5957	5895	6640	4595	4826	2466	*	6096	71
+       200	4834	3402	1585	585	3274	157	8201	1361	2410	
+
+A 72   4274	*	5438	3641	6873	6293	*	5687	2816	7293	*	4239	1250	4825	4999	4238	5753	5644	6779	6020	72
+       130	4286	4830	1000	1000	*	0	8059	1460	3368	
+
+A 73   1745	6714	5570	2840	6478	3647	*	*	3944	*	*	4675	2363	*	5641	3821	4288	*	*	*	73
+       93	5585	4596	1242	793	737	1322	8013	1275	3674	
+
+A 74   4399	7037	7111	5442	5441	4219	3151	5756	1853	5944	*	5183	*	5966	2195	4095	4394	5004	*	6088	74
+       35	*	5389	*	*	502	1768	8191	0	2509	
+
+N 75   3498	6968	4269	7158	*	6199	5162	6798	1881	4187	7143	3996	4244	5064	3173	5028	3770	4476	7479	4328	75
+       0	*	*	*	*	2234	345	8261	0	1675	
+
+V 76   5426	*	5109	6587	*	4006	5100	3676	2527	5142	7177	4363	*	6427	2759	4296	3354	2401	*	6270	76
+       8	7451	*	1000	1000	0	*	8289	1000	1518	
+
+P 77   5837	6961	*	*	5378	*	6871	2039	*	3514	5503	*	3245	*	*	*	7195	1069	*	*	77
+       0	*	*	*	*	*	*	8334	0	0	
+
+A 78   4961	6664	7227	7285	7536	5859	4362	5116	1662	4277	7215	3643	*	5776	2706	4671	4335	3417	*	4776	78
+       0	*	*	*	*	*	*	8334	0	0	
+
+F 79   5462	*	*	*	359	*	*	*	*	3915	7078	*	*	*	*	*	6846	4385	5441	4489	79
+       0	*	*	*	*	*	*	8334	0	0	
+
+V 80   6210	7211	*	5984	6321	*	5740	5203	1575	5938	*	6368	*	5136	2020	4286	2749	4751	*	5095	80
+       0	*	*	*	*	*	*	8332	0	0	
+
+S 81   2398	5901	*	*	4570	*	7476	4183	7142	6145	6377	*	1013	6203	*	4610	5039	4015	6039	*	81
+       0	*	*	*	*	*	*	8332	0	0	
+
+G 82   3645	6208	3896	4617	*	2564	*	*	5093	4637	*	5099	6328	*	4817	1246	5150	5666	*	6235	82
+       15	*	6618	*	*	*	*	8319	0	0	
+
+K 83   3709	*	5737	4228	7130	5093	*	7232	1205	6738	5868	5353	3874	5080	3900	3421	5189	5102	*	6823	83
+       0	*	*	*	*	0	*	8272	0	1056	
+
+A 84   3338	*	4500	2525	*	4507	5989	5721	2992	5087	4951	4788	6026	4359	4620	2943	3694	4020	*	7144	84
+       0	*	*	*	*	*	*	8312	0	0	
+
+L 85   6309	*	*	*	2806	*	*	3317	7162	927	4615	*	*	*	5772	*	*	3134	5880	5567	85
+       8	7455	*	2000	415	*	*	8312	1000	0	
+
+K 86   4840	*	7093	5190	5603	6590	*	4675	1218	3937	6990	7163	6888	5680	2264	4899	4609	4921	*	7265	86
+       0	*	*	*	*	*	*	8267	0	0	
+
+D 87   4161	*	2566	2406	*	4697	6868	7327	2461	5170	*	4201	7168	4216	3096	4943	4995	6055	*	6282	87
+       38	5256	*	3062	184	*	*	8266	1377	0	
+
+A 88   1959	*	7209	3738	4915	5429	6143	5571	2873	3329	3807	6790	6781	4810	3605	5149	4106	4929	*	7173	88
+       32	6178	6990	0	*	*	*	8167	1061	0	
+
+V 89   4951	5823	*	*	6715	*	*	2088	6367	1939	3714	*	*	*	6486	6666	5100	1709	*	*	89
+       99	3920	*	0	*	0	*	7836	1202	1000	
+
+K 90   3506	*	3751	3742	*	5776	*	*	3180	*	*	987	*	4321	*	4488	4831	*	*	*	90
+       0	*	*	0	*	*	*	6868	0	0	
+
+//
+�HHsearch 1.5
+NAME  497673b84b7766fe2450fe095360affb
+FAM   
+FILE  497673b84b7766fe2450fe095360affb
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:23:20 2013
+LENG  182 match states, 182 columns in multiple alignment
+FILT  149 out of 540 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  6.1 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCHHHHHHHHHHHHHHHHHHHCCCCHHHCCEEEEEEEEECCCHHHHHHHHHHHHHHHHHHHHCCCCEEEECCCCCCCCCCCCCCEEEEEEEEECHHHH
+HHHHHHHHHHHHHHHCCCCCCCCCCCCCCEEEECHHHHHCCCCCCCCCCCCCCCCEEEEEEEECCHHHHHHHHHHCCCCCCC
+>ss_conf PSIPRED confidence values
+9974689999999989999997488981226657899999568413314689999999999987998376652555533354799888899999458699
+9999999986443302455774446898678751078764846110456895565499996009889999999984993359
+>Consensus
+xxxxxxlxxxYxxxvxxxLxxkxxxxnxxxiPkixKIvinxxxxxxxxdxxxlxxaxxxLxxItGQkpxxtxakksiaxfkiRkgxxiGxkvTLRgxxmy
+xFLxklixxvlPrirdfxgixxxsfdxxGnxsfGixxxxxFPEixxdxxxxxxGxxItivtxaxxxxeaxxLlsxxgxPfxx
+>497673b84b7766fe2450fe095360affb
+MPLDVALKRKYYEEVRPELIRRFGYQNVWEVPRLEKVVINQGLGEAKEDARILEKAAQELALITGQKPAVTRAKKSISNFKLRKGMPIGLRVTLRRDRMW
+IFLEKLLNVALPRIRDFRGLNPNSFDGRGNYNLGLREQLIFPEITYDMVDALRGMDIAVVTTAETDEEARALLELLGFPFRK
+>gi|74325185|ref|YP_316605.1| ribosomal protein L5 [Thalassiosira pseudonana]gi|74100251|gb|AAZ99412.1| ribosomal protein L5 [Thalassiosira pseudonana]
+-----FFNSYLNNVVKHDLINKFFYTNLKQIPKLETIVLNFGYQ--NSNFKHLISGLLALELLSSKKSRLTRSKHLNVFLKIKKGNPVGCKIVLKKTTMH
+VFYLKLITSVFPKIKHNKTAQS-QQNVKsvKSISIIIKNPLLFLELEsqYQFFKDIPKLDITILTDSKSQNEIFFLLKSVKFFI--
+>gi|300706059|ref|XP_002995340.1| hypothetical protein NCER_101808 [Nosema ceranae BRL01]gi|239604376|gb|EEQ81669.1| hypothetical protein NCER_101808 [Nosema ceranae BRL01]
+-------------------------KiNPMREIKIKKLSIVINVGgGSSN---KLNNAAKVLKQLTDQDCLFSKARYTLRNFGIRRNEKISVHVNISGEK
+AMEVLKKAL-----KVREYE-LSKSCFNATGCFGLGINEHIDL-GMKYDPDIGIFGMNFYVDLK--------------------
+>gi|15150728|ref|NP_150394.1| ribosomal protein L5 [Pylaiella littoralis]gi|15147734|emb|CAC50835.1| ribosomal protein L5 [Pylaiella littoralis]
+------LKNHYHDVIQKDLILSENTSTVAMLPALKKIDLA--LGGSHSDENFVIASLGSLNILTGQKPYLTQQKPV---GQKSSChkEAVGGKLTLRGSS
+MFNFLHKLLFGVFPHMRQFEGLRAPL--HKDLYCFVIKDIFSFQELVplFIYFESVGSLQCQFYFTTKSESEVVVLGNSLQL----
+>gi|321268737|gb|ADW79186.1| ribosomal protein L5 [Cyanophora paradoxa]
+-----RLQYHINHIVNYELISRLNINNIYKIPKKESIIIQSSQKKLVHDQTLLYPLYGCFELMSFQRPVFSISKNAISAYQLRKKQVLGCKTTLRNKYAL
+IFLDKLIYLYFPKVKALNLYKYKLNQNNINFAFGLNSIIPFEDIEnqYSKIDMNFGINVFINfvKYQNiNNQNILLYLSSIQFPIA-
+>gi|30351950|emb|CAD62688.1| mitochondrial ribosomal protein L5 [Zea mays]gi|194703766|gb|ACF85967.1| unknown [Zea mays]gi|195635755|gb|ACG37346.1| mitochondrial 60S ribosomal protein L5 [Zea mays]
+--MMLPLHIHYEDVLRQDLLLKQNHANIMQVPGLFEVKL---APKAGSDL-KIPIGKMAMEVLSGQRFKeakidpFAKARKSSRTnpfIGADKdGStVFA
+QPTVLRGHAMYNFLVRMLTVMsmLNSRADIRENT-------VKFFMETEFCEFSPELEdhFEIFEHIRGFNVTIVTSANTKDETSLLWSGFM-----
+>gi|110225686|ref|YP_665691.1| ribosomal protein L5 [Mesostigma viride]gi|17222557|gb|AAL36730.1|AF353999_10 ribosomal protein L5 [Mesostigma viride]
+---------------------KQNSKNIERNSSLEKLIIRFPFNTMKSER-DFLLHWTALGIISGQKPKIVFSTTADAKEKIKKGDPLFCFVTLRNSKMI
+EFLNKFYHAVFPILN-MEKNSFRFFKEETKqffgYSFFWEQGLLFPELEdrFELFKSSFEFQLFVKAEKKNN--SDIFLTALNIPL--
+>gi|323398663|ref|YP_004222738.1| ribosomal protein L5 [Glaucocystis nostochinearum]gi|321401356|gb|ADW83110.1| ribosomal protein L5 [Glaucocystis nostochinearum]
+-------KEYNDNVLKYDFSLRYFCPNNYYSLRIKKINIQILLSEILINENLFFFIISILKIISYQHSLPIFSKKAIANFSLKKHMIIGAIVCLRKLSLL
+CFISKFQNLLnqnLDLSKNYT-YK-EAENNLLNITIGLKNISVFPEIEsqFSKISRKIGADIMFTF---------------------
+>gi|49147184|ref|YP_025777.1| ribosomal protein L5 [Pseudendoclonium akinetum]gi|33439199|gb|AAQ18736.1| ribosomal protein L5 [Pseudendoclonium akinetum]
+----------------------------LNSYGLEKIILHSSSGKLLQAPSSSTTIDLAFSTVGCQTPTKVYSRRSIAGFKLSKSALLGAKATLRNLAKY
+DFFYKFYFLGagetnvtaMtrqSRITlgeqklaaPY-GLQ--SIQQQPNlstTSLAVKNVFLFNELDsldYDVFSNMAGFEIVFI---------------
+-------
+>gi|200004035|ref|YP_002221370.1| hypothetical protein BlDMPOM_p17 [Blastocystis sp. DMP/02-328]gi|198385459|gb|ACH86053.1| hypothetical protein [Blastocystis sp. DMP/02-328]
+----------YFQQINHNRYLKMLYKTPYQISNIDRISMFIRFDTQLNNKFIVLCSFflfKTTLFKTGHYIVINKKT----------KQILGLNYYFTKQ
+LIINFFNIFLLNLLiqPEIQN--SINLTSFDSDANFNFTIINSncYFFERILinqfYKRALQSCNFHITIKFKKNqNIYDHILLLNFFKFYF--
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1453	0	0	
+
+P 2    1567	*	*	*	*	*	*	*	*	*	*	*	594	*	*	*	*	*	*	*	2
+       594	*	1567	*	*	*	*	1743	0	0	
+
+L 3    *	*	*	*	*	*	*	*	*	1060	1772	*	2135	*	*	*	*	*	*	*	3
+       0	*	*	*	*	*	0	2252	0	1029	
+
+D 4    *	*	4007	4202	*	*	*	3299	4107	2502	1402	*	4060	*	*	*	3197	*	*	*	4
+       0	*	*	*	*	*	0	3078	0	1029	
+
+V 5    3427	*	*	3823	*	*	4027	4039	*	3113	*	*	1327	*	*	*	2759	4257	*	*	5
+       80	4216	*	1103	904	0	*	3294	1020	1029	
+
+A 6    4298	*	4187	5374	3482	4334	6412	*	4786	*	*	4162	3873	*	1330	3678	4393	5269	6717	*	6
+       0	*	*	*	*	*	*	4551	0	0	
+
+L 7    *	*	*	*	3041	*	*	3648	*	621	5046	*	*	*	6436	4144	6044	6979	*	5206	7
+       34	5433	*	0	*	*	*	5254	1036	0	
+
+K 8    *	5982	*	3590	4960	6894	4516	*	1275	6067	6480	4181	5985	2867	4278	*	5011	5634	*	3904	8
+       0	*	*	2807	222	*	*	5345	1015	0	
+
+R 9    4359	*	4357	3996	4390	6646	4013	4666	2648	6902	*	3399	*	3934	4286	2765	3949	5739	*	3821	9
+       24	*	5952	0	*	*	*	5405	1015	0	
+
+K 10   4954	*	7155	4104	3825	*	1666	6068	3580	2565	6998	*	*	5814	5255	6239	5300	*	6020	2800	10
+       21	7087	7114	0	*	0	*	5503	1000	1012	
+
+Y 11   *	*	*	*	6107	*	*	3665	6607	4970	*	5697	*	*	*	6971	*	*	*	256	11
+       0	*	*	*	*	*	0	5676	0	1000	
+
+Y 12   5753	*	4472	2759	4690	*	3414	4447	2316	3641	*	3896	5987	5137	3546	*	4619	6231	5605	4118	12
+       26	6111	8319	1000	1000	0	*	5676	1012	1000	
+
+E 13   5752	*	2903	2184	*	5776	4400	*	3137	7245	*	1850	*	3283	6265	5618	5142	*	*	*	13
+       0	*	*	*	*	0	*	5667	0	1000	
+
+E 14   6170	*	6766	2928	*	6848	*	2985	3003	4828	*	4166	6159	5006	4829	4364	3246	2088	*	5298	14
+       9	*	7342	*	*	*	*	5767	0	0	
+
+V 15   5933	*	*	6573	*	*	*	1566	*	2600	*	6285	6145	6147	*	4551	7182	1397	*	*	15
+       77	*	4271	*	*	0	*	5795	0	1000	
+
+R 16   3323	5763	*	*	6901	*	6086	3805	2879	3746	*	3900	5615	3351	2344	6114	4810	2795	*	*	16
+       19	*	6221	*	*	*	0	5787	0	1200	
+
+P 17   4274	*	6957	*	5597	5474	3609	8359	2736	5855	*	5735	1798	2521	3880	7254	5127	6987	*	4234	17
+       0	*	*	*	*	*	0	5777	0	1256	
+
+E 18   2983	*	1324	3237	7289	5965	7104	7722	4348	4708	*	4025	*	4913	4029	4504	5680	5614	*	7267	18
+       0	*	*	1585	585	296	2431	5787	1200	1256	
+
+L 19   *	*	*	*	4260	*	*	4809	*	374	4821	*	5125	*	4541	*	*	6790	*	5363	19
+       0	*	*	*	*	*	0	5781	0	1007	
+
+I 20   4267	5861	*	5635	*	*	7222	2063	4149	2716	4368	*	*	3291	4613	4122	4123	3610	*	3881	20
+       9	7374	*	0	*	*	0	5781	1000	1007	
+
+R 21   4302	*	4918	3438	*	5140	*	5656	2400	1691	*	4257	5891	4596	4686	4074	5989	5029	*	5542	21
+       49	*	4914	*	*	*	0	5781	0	1007	
+
+R 22   *	6032	5272	2467	*	*	6979	7324	988	6365	*	4739	6109	5639	3656	4172	4623	*	*	*	22
+       29	*	5664	*	*	1841	472	5776	0	1150	
+
+F 23   6262	4798	6177	5059	1717	6351	7126	5177	6154	2011	5158	4770	4462	4249	5620	*	4254	5476	*	4795	23
+       12	6923	*	1000	1000	*	0	5771	1001	1145	
+
+G 24   6431	*	5691	6232	3843	2423	4191	6250	4016	5119	*	2073	4394	4864	5065	2772	6289	*	6294	5664	24
+       0	*	*	*	*	1932	438	5812	0	1145	
+
+Y 25   5847	4164	*	6389	3389	*	4532	4410	5667	3284	*	*	5923	*	6538	4844	5141	4164	*	1118	25
+       94	6020	4387	5087	43	0	*	5875	1006	1095	
+
+Q 26   3182	*	6154	3809	6834	4421	*	5839	1769	6139	*	4614	4976	4092	4613	3450	2690	7529	*	*	26
+       95	4256	6464	463	1865	*	0	6102	1187	1200	
+
+N 27   6956	*	6179	6040	*	6381	5009	*	5535	*	*	766	*	*	*	2618	2920	6037	*	*	27
+       56	6620	5164	864	1150	0	*	6167	1254	1266	
+
+V 28   3922	6761	6172	4520	6120	*	6739	2339	5009	4891	*	4873	2087	*	6380	3860	4479	2676	*	5079	28
+       15	6638	*	714	1357	1334	729	6194	1062	1108	
+
+W 29   4668	*	5976	4342	4602	6179	3483	5949	4025	4577	1337	4552	*	7597	4885	5226	5963	6343	6269	3537	29
+       0	*	*	*	*	*	0	6377	0	1046	
+
+E 30   6971	7438	4869	2660	6576	*	*	*	3660	4394	5600	2461	*	1984	2973	4824	5302	*	*	6200	30
+       0	*	*	*	*	0	*	6377	0	1046	
+
+V 31   5233	5308	5081	4003	6927	*	*	1862	5898	2801	*	5237	*	5740	5826	4810	5070	1888	*	6124	31
+       0	*	*	*	*	*	*	6373	0	0	
+
+P 32   7874	*	*	*	*	*	*	3438	6981	4501	*	*	542	7045	*	3961	7016	3769	*	6418	32
+       0	*	*	*	*	*	*	6401	0	0	
+
+R 33   4842	*	7071	4308	4998	4470	5840	5255	1420	6332	*	5294	6794	4690	2448	3499	6036	4795	*	7668	33
+       0	*	*	*	*	*	*	6403	0	0	
+
+L 34   *	*	*	*	4970	*	*	1382	6305	1285	8006	*	4533	*	*	5504	*	3440	*	*	34
+       0	*	*	*	*	*	*	6403	0	0	
+
+E 35   4629	5593	3509	1758	5497	7268	*	6006	2336	6810	6845	4726	*	4234	6179	4190	3526	4722	6455	*	35
+       0	*	*	*	*	*	*	6403	0	0	
+
+K 36   5824	8046	*	3902	*	5923	*	*	502	*	*	6693	*	5528	3805	3983	5456	*	*	*	36
+       0	*	*	*	*	*	*	6403	0	0	
+
+V 37   5693	*	*	*	*	6212	*	767	*	3168	6412	*	*	*	*	*	*	1964	*	*	37
+       0	*	*	*	*	*	*	6403	0	0	
+
+V 38   6669	4174	6316	5584	7819	6747	4983	2717	5994	6467	*	5255	*	6144	5504	3643	2800	1355	*	*	38
+       0	*	*	*	*	*	*	6403	0	0	
+
+I 39   *	5731	*	*	6443	*	*	1741	*	1541	5273	*	*	*	*	*	*	1732	*	*	39
+       127	*	3565	*	*	*	*	6403	0	0	
+
+N 40   4765	6454	6448	6729	4703	*	3068	6832	6183	*	*	1141	*	4280	4681	3010	4881	6961	*	4617	40
+       89	*	4065	0	*	1289	759	6268	1200	1549	
+
+Q 41   4976	3269	*	*	3749	7080	*	1694	*	5910	2952	*	*	8021	3951	2899	3768	4595	*	6596	41
+       0	*	*	*	*	*	0	6109	0	1659	
+
+G 42   6670	4153	5848	*	4459	1162	5569	*	5923	6072	4447	3808	5870	*	5525	3131	4689	*	6058	4388	42
+       0	*	*	*	*	143	3410	6109	0	1659	
+
+L 43   4174	5132	6952	*	3467	*	5695	3094	*	2718	5676	4969	7053	6300	*	4095	4044	1618	*	6310	43
+       5	*	8243	*	*	*	0	6385	0	1019	
+
+G 44   6015	*	4606	5016	*	1193	*	*	2158	6706	*	5150	3247	6308	4128	4846	8210	*	*	*	44
+       129	7037	3681	0	*	*	0	6391	1000	1048	
+
+E 45   4110	*	3946	1846	5308	3983	5001	5511	2693	5171	7707	4361	7119	4866	4930	3908	4001	6660	*	6904	45
+       0	*	*	0	*	786	1252	6365	1172	1585	
+
+A 46   1520	*	5163	4167	6552	4250	6099	4368	4682	4283	5994	7896	7108	5623	6754	2419	4875	4401	*	5253	46
+       54	5930	5621	705	1371	636	1488	6352	1069	1222	
+
+K 47   2723	6406	*	5617	*	2548	5957	3523	4245	3048	*	4069	4539	6336	4683	3160	6176	3490	*	*	47
+       43	*	5077	*	*	1241	794	6383	0	1176	
+
+E 48   3122	*	3102	3060	*	4380	4616	5172	4129	6917	6192	3558	6635	3281	5334	3068	3762	5891	*	5597	48
+       406	5322	2181	2122	377	2268	336	6315	1138	1271	
+
+D 49   5259	*	1265	3013	*	*	6498	7672	6183	*	*	1939	*	6667	5231	3811	5377	6427	*	*	49
+       18	*	6304	*	*	3463	137	5956	0	2525	
+
+A 50   4039	*	6152	4541	4122	*	6591	6586	1465	4750	5070	5988	2938	5025	4441	2874	6008	*	*	*	50
+       97	*	3937	1000	1000	2351	315	5973	1200	2452	
+
+R 51   4361	*	5343	4581	4674	5309	*	7595	1382	4460	*	3047	6023	4670	5256	3856	4530	5164	5696	5334	51
+       0	*	*	*	*	0	*	5789	0	2457	
+
+I 52   4061	*	6031	4771	5036	6070	4450	3696	3560	3004	7262	3816	5929	4630	3087	3593	5424	3602	7167	3989	52
+       32	5495	*	1132	879	*	*	6403	1131	0	
+
+L 53   5609	*	*	*	4401	6734	7528	2492	6286	1108	4911	5988	6701	7015	*	5575	6693	2640	*	7496	53
+       0	*	*	*	*	*	*	6403	0	0	
+
+E 54   4799	*	4301	2432	5078	7752	4708	3201	3674	2072	*	5471	5784	4130	6455	6628	4165	4919	*	5481	54
+       11	*	7019	*	*	*	*	6403	0	0	
+
+K 55   3515	5060	5594	4679	5383	4812	6836	4234	2936	4327	5951	3609	3316	6322	3916	3151	4098	4075	*	6241	55
+       0	*	*	*	*	*	0	6385	0	1019	
+
+A 56   1348	4246	*	*	5769	3793	4887	3726	*	4444	5963	4917	5502	6952	*	3076	4097	4687	*	6198	56
+       0	*	*	*	*	*	0	6385	0	1019	
+
+A 57   3212	*	5801	4145	2982	5062	*	2860	3614	2810	5147	*	*	6343	4286	4280	7940	3108	6028	5603	57
+       44	5060	*	1585	585	*	0	6385	1148	1019	
+
+Q 58   4521	*	5494	3534	5314	3998	*	7283	2429	2561	3612	4539	*	4975	4121	4028	3705	4789	*	6574	58
+       9	*	7379	*	*	0	*	6385	0	1019	
+
+E 59   1836	5072	3302	3152	*	5021	7565	3967	*	3256	5197	5438	*	4548	*	5459	4338	3233	*	*	59
+       21	6087	*	2807	222	*	0	6408	1045	1001	
+
+L 60   5855	6782	*	*	3832	*	*	3523	6200	688	3284	*	*	*	6087	6284	6016	4776	*	*	60
+       0	*	*	*	*	*	0	6408	0	1001	
+
+A 61   3330	*	*	1762	5209	4596	*	*	3580	4097	7849	4938	6087	3076	3824	3766	4051	7073	*	6248	61
+       0	*	*	*	*	0	*	6408	0	1001	
+
+L 62   3380	5600	7147	4719	4222	*	*	3037	4364	2080	4660	5979	*	3085	6173	3733	4634	4022	*	6202	62
+       20	*	6202	*	*	*	*	6403	0	0	
+
+I 63   *	*	8039	*	6936	*	*	706	5065	2058	4567	*	5486	*	*	*	*	5216	6198	*	63
+       0	*	*	*	*	*	0	6356	0	1070	
+
+T 64   3389	5408	*	*	5977	5521	*	6984	*	*	*	6132	*	*	5486	1919	953	5807	*	*	64
+       10	7133	*	0	*	*	0	6356	1000	1070	
+
+G 65   5431	6405	5353	*	6296	438	7140	*	5821	6658	*	3651	*	6455	*	4975	6020	*	8039	6245	65
+       0	*	*	*	*	*	0	6356	0	1070	
+
+Q 66   4835	6016	*	5134	6164	*	5465	*	5205	5334	7035	5784	*	526	6416	5621	5640	4050	*	*	66
+       13	6796	*	4000	93	*	0	6363	1005	1070	
+
+K 67   5500	6130	7061	4951	4413	6796	5678	*	1225	5752	*	6562	5508	3622	2520	*	3635	6802	*	5358	67
+       28	6446	7010	4644	59	0	*	6363	1018	1070	
+
+P 68   2840	5922	6579	5263	4882	6288	*	4737	*	7266	*	*	718	*	*	4537	6206	4261	*	*	68
+       62	5082	6288	3734	113	*	0	6391	1140	1019	
+
+A 69   5744	5361	*	4546	7266	7377	*	2844	2904	3516	5500	*	*	3668	5863	4718	3607	2020	6433	4466	69
+       17	6431	*	2585	263	*	0	6361	1040	1103	
+
+V 70   4997	8038	6215	5991	3607	*	7156	2267	4163	2376	7341	5768	4160	4971	3961	7020	5950	2604	*	5287	70
+       0	*	*	*	*	*	0	6361	0	1103	
+
+T 71   4672	5892	*	*	7156	5341	5465	2986	8014	4063	*	4402	*	*	3927	3625	1256	3734	*	6401	71
+       0	*	*	*	*	*	0	6360	0	1103	
+
+R 72   6574	6394	*	4318	3667	7261	*	5004	1689	6401	5715	5612	*	4141	2002	7087	4979	5714	6770	3722	72
+       0	*	*	*	*	*	0	6360	0	1103	
+
+A 73   895	*	*	*	*	5131	*	5673	5158	*	*	6182	*	6295	4403	2055	4007	*	*	6739	73
+       0	*	*	*	*	*	0	6360	0	1103	
+
+K 74   *	*	*	4856	6204	4554	6057	*	917	*	*	*	6610	6638	2151	4159	4235	*	*	6604	74
+       79	6456	4576	1000	1000	864	1150	6380	1036	1103	
+
+K 75   5651	6674	5479	6110	*	5686	5200	6692	1084	5985	7597	3894	4742	5206	3651	3739	4518	5695	*	4821	75
+       46	5548	6618	1585	585	2544	271	6251	1089	1369	
+
+S 76   2600	*	5344	*	6186	5299	7035	*	5659	6250	*	2985	4476	*	6049	1415	2679	6225	*	*	76
+       54	*	4769	*	*	*	0	6254	0	1359	
+
+I 77   4853	*	5031	*	*	5293	*	1227	6130	4728	7358	3435	*	7407	*	4095	*	1904	*	*	77
+       0	*	*	*	*	*	0	6162	0	1563	
+
+S 78   1312	*	*	*	*	5124	5828	4809	3979	5974	6848	7208	3990	6271	3501	2360	6490	4316	*	*	78
+       0	*	*	*	*	*	0	6162	0	1563	
+
+N 79   3544	*	4385	4960	4554	2468	*	6689	5403	*	6822	2402	5673	4439	6538	2936	2535	*	*	*	79
+       34	5411	*	1098	908	1553	601	6162	1107	1563	
+
+F 80   *	*	*	5993	593	6212	*	6340	6199	4166	*	*	*	5343	*	6169	*	6546	2611	6253	80
+       20	*	6208	*	*	1898	451	6237	0	1423	
+
+K 81   6192	*	6199	6085	*	2234	7792	*	971	*	*	4314	*	4585	3815	4107	*	*	*	6699	81
+       0	*	*	*	*	2382	307	6265	0	1380	
+
+L 82   5483	*	*	*	5414	*	*	1607	5490	1450	6080	*	*	*	5431	4639	5428	3026	*	6198	82
+       0	*	*	*	*	*	0	6270	0	1299	
+
+R 83   7133	*	6417	*	*	6229	6457	*	2678	6300	*	4517	*	4255	604	4896	*	*	*	*	83
+       14	*	6669	*	*	*	0	6270	0	1299	
+
+K 84   4129	*	7522	2548	*	6294	7378	5375	1196	*	*	*	4423	4922	3108	4808	5841	4706	*	*	84
+       85	4420	6562	2407	301	662	1443	6255	1392	1364	
+
+G 85   7243	6235	5933	5874	*	612	6219	*	3711	*	*	2845	*	6154	5756	5227	7929	*	*	*	85
+       52	4807	*	1000	1000	1914	445	6347	1247	1270	
+
+M 86   5029	*	2984	2756	5962	*	6632	5868	4161	5061	2015	5068	*	3041	4754	4227	6395	5605	8463	4590	86
+       37	5321	*	1554	601	*	0	6371	1123	1186	
+
+P 87   4115	*	7153	5088	7322	6022	6157	3132	3852	4320	*	4924	1265	7050	7144	7037	5589	3235	5813	5589	87
+       69	4430	*	774	1268	1158	858	6371	1246	1186	
+
+I 88   4935	4956	*	*	4757	*	6646	1359	*	2525	4641	5218	*	*	*	5479	7524	2187	6632	*	88
+       0	*	*	*	*	1078	926	6393	0	1081	
+
+G 89   3160	6705	6248	*	6072	376	*	7483	*	6648	*	*	*	*	*	3960	*	*	*	*	89
+       0	*	*	*	*	*	0	6410	0	1019	
+
+L 90   2141	1878	*	*	*	4587	*	4724	*	3465	4538	*	*	5555	5483	*	7748	2324	5755	5541	90
+       34	*	5442	*	*	0	*	6410	0	1019	
+
+R 91   5861	*	*	*	4313	*	4328	5398	893	*	4793	4990	6394	4926	3966	4802	4031	6139	*	4929	91
+       0	*	*	*	*	1552	602	6373	0	1131	
+
+V 92   3758	6005	*	*	6180	6608	*	4016	*	3845	*	5545	*	*	*	4422	3537	772	*	6012	92
+       0	*	*	*	*	*	0	6391	0	1070	
+
+T 93   6545	6255	5523	3864	*	*	*	5678	*	6994	*	6059	*	6920	7003	4715	438	4818	*	6012	93
+       0	*	*	*	*	*	0	6391	0	1070	
+
+L 94   *	*	*	*	6012	*	*	4044	*	292	4399	*	*	*	*	*	*	4071	*	*	94
+       0	*	*	*	*	*	0	6391	0	1070	
+
+R 95   *	7444	*	7010	6874	*	6608	*	3976	*	*	*	*	6388	372	5216	4072	7230	*	5244	95
+       0	*	*	*	*	0	*	6391	0	1070	
+
+R 96   *	*	4535	*	*	761	7019	*	2481	*	*	3313	*	7572	4249	5535	*	*	*	*	96
+       0	*	*	*	*	*	*	6437	0	0	
+
+D 97   3879	6458	3491	2773	*	7241	4360	5771	2751	5023	*	3054	5124	3519	3853	3768	5917	5923	6463	6773	97
+       15	6598	*	0	*	*	*	6437	1020	0	
+
+R 98   3527	*	4441	4745	6755	5520	6950	6471	2063	3955	6732	3743	5537	4562	2525	3378	4655	7550	*	6287	98
+       0	*	*	*	*	*	*	6437	0	0	
+
+M 99   1926	*	*	7083	*	6716	*	4080	5381	4731	815	*	*	*	*	6458	*	7275	*	6262	99
+       11	7083	*	0	*	*	*	6437	1000	0	
+
+W 100  6213	6722	4858	4412	3385	*	4974	4128	5341	4244	5130	5787	*	*	6847	4384	7019	7607	3698	1183	100
+       0	*	*	*	*	*	*	6437	0	0	
+
+I 101  3916	6279	2970	2049	*	6287	5615	5066	4458	4079	*	2784	4799	3942	5187	3763	5678	6308	*	7857	101
+       0	*	*	*	*	*	*	6437	0	0	
+
+F 102  7021	*	*	*	266	*	*	5381	*	3464	*	*	*	*	*	6036	*	6091	5928	*	102
+       0	*	*	*	*	*	*	6437	0	0	
+
+L 103  *	*	*	*	3390	*	*	2849	*	628	5030	*	*	*	*	6478	6451	4665	*	5266	103
+       20	*	6204	*	*	*	*	6439	0	0	
+
+E 104  5634	*	1803	2373	6455	6209	6306	6651	3659	5826	6194	4332	*	4889	6306	3994	4142	4379	*	3666	104
+       0	*	*	*	*	*	0	6393	0	1070	
+
+K 105  *	*	6264	6211	*	*	*	4619	1154	*	5335	6455	*	5195	1743	4989	3700	*	*	6284	105
+       0	*	*	*	*	0	*	6393	0	1070	
+
+L 106  3951	4309	*	*	2940	4637	*	5086	6188	837	5149	*	*	*	*	6627	6667	5049	5855	5969	106
+       0	*	*	*	*	*	*	6439	0	0	
+
+L 107  7010	4916	*	*	3888	*	*	1797	*	1857	5798	6057	*	6274	*	4402	3588	3077	*	4930	107
+       172	6204	3340	0	*	*	*	6439	1070	0	
+
+N 108  5126	*	4590	3167	3159	5269	3316	5310	4810	4641	6056	2775	7262	5260	7689	4607	2505	5010	6244	5695	108
+       93	*	4002	*	*	*	0	6291	0	1645	
+
+V 109  4044	5680	6255	5687	3200	6191	6571	2445	6638	2056	5574	5130	*	6717	5350	5609	6374	2410	*	5967	109
+       47	*	4960	*	*	*	0	6187	0	1953	
+
+A 110  2365	*	5930	*	6341	5027	*	3685	5460	3763	4652	*	*	*	6340	6213	4646	1195	*	5064	110
+       155	3656	5481	1644	556	3182	168	6129	1461	2115	
+
+L 111  6003	6570	*	6231	2530	*	6648	4623	*	606	5429	*	*	*	*	4849	*	6045	7160	*	111
+       141	3596	6543	781	1258	3786	109	6118	1418	2068	
+
+P 112  6016	*	6089	*	6282	*	*	*	*	*	*	6182	294	5887	*	4434	5314	*	*	4660	112
+       0	*	*	*	*	701	1377	6158	0	2052	
+
+R 113  5136	*	7499	4638	7050	5589	6298	5975	2574	5362	*	3745	4515	4033	1252	5225	5640	6120	*	5943	113
+       15	*	6583	*	*	493	1789	6365	0	1391	
+
+I 114  3338	*	*	7900	5720	5420	*	1622	*	2944	4934	*	*	5642	6409	5798	3683	2062	*	*	114
+       32	6933	6188	2585	263	2115	379	6400	1006	1150	
+
+R 115  4791	*	*	4594	*	*	6199	5396	1740	5213	*	4739	6084	3817	1359	*	6372	4886	*	*	115
+       126	6372	3801	3000	193	682	1408	6408	1022	1196	
+
+D 116  4455	*	1135	2966	6025	3889	6215	*	4885	*	*	3328	5463	3501	*	*	5042	*	*	*	116
+       95	5950	4403	0	*	256	2620	6257	1051	1505	
+
+F 117  6045	*	6796	6561	937	6399	*	4487	5305	5491	6003	3717	5336	*	4489	*	*	6140	3738	3493	117
+       95	6718	4201	0	*	3246	161	6315	1010	1335	
+
+R 118  4770	*	5340	3501	6808	5421	5904	6650	2196	*	*	3716	5709	3687	1857	5037	3540	7000	*	*	118
+       276	*	2523	*	*	375	2129	6225	0	1615	
+
+G 119  *	*	6634	4266	*	579	*	*	3396	6031	*	6244	6007	6248	6509	5134	4317	*	*	5216	119
+       34	*	5426	*	*	205	2919	6122	0	2070	
+
+L 120  4728	*	*	6158	3631	7244	*	1856	*	1945	*	3605	*	*	6112	5377	7659	2537	*	5211	120
+       0	*	*	*	*	2461	289	6368	0	1231	
+
+N 121  4918	6091	*	6155	6660	5943	6377	6742	2373	*	*	3099	3035	4778	3374	1931	4976	7246	*	5295	121
+       158	5621	3582	1000	1000	*	0	6367	1078	1180	
+
+P 122  2952	7392	5466	3899	4035	3440	6712	3547	4460	3069	*	4088	3034	*	4165	4682	4382	5748	*	5635	122
+       204	6284	3073	3322	152	2394	305	6219	1018	1719	
+
+N 123  4546	*	6596	4409	6998	6607	*	6047	2659	4979	*	4022	3884	6428	2763	2137	3126	6321	*	4882	123
+       16	*	6465	*	*	1559	598	6023	0	2172	
+
+S 124  2622	4660	*	*	5774	3210	*	*	4957	4624	*	3873	5125	3684	7492	1457	4196	*	*	*	124
+       89	*	4069	1503	628	1552	602	6144	1200	1840	
+
+F 125  5148	*	*	5950	871	3049	*	3828	6526	4148	*	4410	6668	6073	*	5365	5783	4782	*	*	125
+       50	4866	*	1930	439	4647	59	6049	1130	1859	
+
+D 126  5926	*	685	6411	*	7262	5989	*	4483	6676	*	3361	7134	5069	7293	3182	5487	*	*	*	126
+       162	4589	3954	2217	349	1248	788	6041	1206	1825	
+
+G 127  4158	5274	5612	3810	*	1944	4393	6773	3764	5727	6414	3231	5465	4567	3970	3308	4626	5482	7249	*	127
+       47	*	4968	*	*	2095	385	6135	0	1921	
+
+R 128  4773	*	4903	3747	4691	5403	4170	*	3497	4747	*	2702	*	3362	3085	2883	3977	5682	*	5352	128
+       103	4220	6018	1963	428	1555	600	6140	1230	1870	
+
+G 129  5453	6561	5230	*	*	549	*	6137	6169	6079	*	3804	4813	*	*	4462	5885	5046	*	6189	129
+       0	*	*	3170	170	0	*	6227	1000	1640	
+
+N 130  6777	4793	*	6029	*	5946	5444	4404	5220	6290	6216	758	*	5158	6220	3650	4482	4547	*	*	130
+       55	4746	*	1500	629	*	*	6374	1178	0	
+
+Y 131  7105	6173	*	*	2079	*	*	2717	6347	2551	5731	*	*	*	*	*	6389	3367	*	1839	131
+       0	*	*	*	*	*	*	6374	0	0	
+
+N 132  3349	4499	4900	*	5533	3583	5092	*	6216	6684	*	2699	*	5629	*	1667	2807	6136	7512	6052	132
+       0	*	*	*	*	*	*	6374	0	0	
+
+L 133  6078	*	*	*	1063	*	*	2745	*	2075	3929	*	*	*	*	*	8045	6833	5954	5290	133
+       0	*	*	*	*	*	*	6374	0	0	
+
+G 134  5225	*	*	4876	6030	541	*	6296	5796	*	*	5381	7087	5959	*	4030	5415	3876	7512	*	134
+       11	*	7002	*	*	*	*	6374	0	0	
+
+L 135  6071	*	*	*	4582	*	*	1362	6681	1779	4873	*	6402	*	*	*	4094	2907	6026	*	135
+       0	*	*	*	*	*	0	6357	0	1019	
+
+R 136  5002	*	4068	2946	6836	7258	7213	5099	1708	6344	*	3531	4002	6349	4163	3275	3606	*	*	7084	136
+       120	4444	4875	1000	1000	*	0	6357	1215	1019	
+
+E 137  4088	*	1938	1640	4820	5870	*	*	*	6454	*	3031	3990	4560	*	3882	*	*	*	*	137
+       24	5907	*	370	2145	349	2218	6368	1301	1267	
+
+Q 138  6062	4473	5888	4498	4577	6018	2433	3210	*	3365	4766	*	4657	2564	*	4934	5251	3700	*	4327	138
+       136	3474	*	1000	1000	*	0	6358	1498	1019	
+
+L 139  4025	6062	5688	4840	3645	6355	*	2318	4818	2395	8043	6330	6400	6120	4567	2867	3890	5209	*	4844	139
+       60	4626	*	1467	648	0	*	6358	1196	1019	
+
+I 140  5100	7262	3152	5600	3486	*	6111	2803	5529	2266	4891	4875	6233	*	*	3300	7470	2869	6880	5575	140
+       31	6210	7068	1000	1000	*	*	6375	1036	0	
+
+F 141  *	6185	*	*	432	*	*	4022	*	3127	7194	*	*	*	*	4563	*	6811	6538	*	141
+       114	6663	3920	0	*	0	*	6375	1023	1001	
+
+P 142  7314	*	*	3430	6112	*	5379	7273	6906	5131	*	4841	546	5489	*	5202	4633	6685	*	*	142
+       0	*	*	*	*	0	*	6258	0	1380	
+
+E 143  4896	6069	4761	657	*	2740	*	*	5511	*	*	*	*	3886	5992	6013	6627	*	*	*	143
+       0	*	*	*	*	*	*	6375	0	0	
+
+I 144  7024	6069	*	*	5080	*	*	1470	*	1564	5043	6212	*	5206	6993	*	6533	2808	*	5939	144
+       84	5433	4901	1000	1000	*	*	6375	1105	0	
+
+T 145  5407	6041	2872	1632	6582	*	6638	5187	2873	5885	*	4093	7008	4051	4991	5152	4144	4520	*	6143	145
+       885	1124	*	1105	902	2394	304	6387	3391	1258	
+
+Y 146  6180	*	7326	*	1987	*	6404	3798	*	4371	6383	7223	5954	4044	*	6163	5246	4417	5394	1361	146
+       72	5459	5286	1000	1000	*	0	6388	1086	1200	
+
+D 147  *	*	1016	2211	*	6606	*	5618	4492	7137	6361	3495	5441	6207	*	4291	*	6545	6981	*	147
+       0	*	*	*	*	*	0	6324	0	1352	
+
+M 148  3497	*	4840	8101	3688	*	6153	4043	2808	3359	3861	5280	2897	3811	4267	5010	6525	5450	6606	4230	148
+       16	6545	*	1000	1000	*	0	6324	1015	1352	
+
+V 149  4929	*	4121	5443	1756	*	*	2596	4913	5813	6498	5258	6361	5841	6937	5107	5007	3712	5133	2896	149
+       167	3191	*	1685	537	381	2106	6324	1801	1352	
+
+D 150  6967	*	3623	2497	*	4891	5180	2630	2798	4356	6594	4387	3458	4499	5234	4506	5794	5015	*	7518	150
+       14	6645	*	1000	1000	*	0	6320	1018	1045	
+
+A 151  6480	*	4046	5325	6155	2557	3825	*	3291	5561	4055	3262	6387	3770	2954	3872	4867	5406	6628	6587	151
+       0	*	*	0	*	0	*	6305	1018	1112	
+
+L 152  6247	5233	*	7358	*	*	7217	1758	4398	2474	4029	3633	5617	5260	6424	3805	4319	3345	*	7821	152
+       28	*	5682	*	*	*	*	6372	0	0	
+
+R 153  6005	5630	*	4322	2559	4480	4092	4418	6477	4339	7722	4937	3297	4203	2633	4595	5820	6396	6769	3338	153
+       12	*	6963	*	*	838	1182	6335	0	1106	
+
+G 154  *	*	6118	5094	6942	282	6388	*	5400	6562	*	5949	7319	*	*	4956	6216	*	*	6424	154
+       0	*	*	*	*	0	*	6352	0	1075	
+
+M 155  4360	4630	*	*	2101	*	*	3158	*	2059	1746	*	*	*	*	*	6204	6142	*	*	155
+       0	*	*	*	*	*	*	6372	0	0	
+
+D 156  *	6427	1630	4406	*	5462	3152	*	6212	*	*	1791	*	3544	5799	4249	5951	*	6971	*	156
+       0	*	*	*	*	*	*	6372	0	0	
+
+I 157  5605	3879	*	*	4199	*	*	1029	*	4731	*	*	*	*	*	*	6532	1748	*	5584	157
+       0	*	*	*	*	*	*	6372	0	0	
+
+A 158  3950	4506	6424	*	3685	*	4658	4324	*	*	5215	4345	*	4431	*	2809	1451	4947	*	4354	158
+       0	*	*	*	*	*	*	6372	0	0	
+
+V 159  7122	5103	*	*	2010	6666	*	1315	*	3426	6204	*	*	*	*	*	*	2385	7477	*	159
+       0	*	*	*	*	*	*	6372	0	0	
+
+V 160  6077	5526	5807	*	*	*	3153	3897	3437	5412	*	4104	*	5197	6773	6328	3283	1314	*	4708	160
+       20	6214	*	1000	1000	*	*	6372	1028	0	
+
+T 161  6002	5982	*	*	3005	6877	*	4487	6186	2715	5183	*	*	*	*	6088	835	5494	*	*	161
+       12	*	6884	*	*	*	*	6342	0	0	
+
+T 162  5885	*	5232	3504	6867	4869	7141	*	3899	6166	*	2749	*	*	4694	2163	1787	6609	*	5220	162
+       0	*	*	*	*	0	*	6278	0	1006	
+
+A 163  927	6565	*	*	*	5991	*	*	4444	6163	*	4432	*	5138	4295	3018	2933	6987	*	*	163
+       12	*	6901	*	*	*	*	6094	0	0	
+
+E 164  6474	*	5976	4387	*	5923	6169	*	1654	5818	*	2479	4638	4017	3391	4089	3380	5171	*	*	164
+       126	3753	6700	1026	974	0	*	6072	1322	1013	
+
+T 165  4463	5994	4132	6474	*	4518	*	*	6217	5523	*	1995	*	*	*	2379	1584	6030	*	*	165
+       105	4078	6517	1975	424	0	*	6016	1292	1000	
+
+D 166  7757	*	1723	5982	6260	5961	6884	4702	4108	4776	*	3124	5071	3293	3875	3815	4702	3817	*	6484	166
+       29	*	5649	*	*	0	*	6013	0	1012	
+
+E 167  3512	*	2756	2663	6195	5828	5869	7374	2851	4765	6084	3931	*	3341	4243	3746	*	5541	5856	4985	167
+       9	7334	*	1585	585	*	0	5968	1001	1041	
+
+E 168  5251	*	2993	1108	5896	7347	3194	7281	4301	5319	7640	4611	*	3725	5494	6767	7599	*	*	6419	168
+       31	5571	*	2224	347	0	*	5925	1072	1041	
+
+A 169  1277	7064	*	*	6177	3021	5643	4451	*	4425	5274	5771	*	*	5688	3243	2782	5976	*	*	169
+       0	*	*	*	*	*	*	5989	0	0	
+
+R 170  4325	*	5641	6117	3787	7955	5820	3350	2640	3114	6398	5174	*	4606	1855	4936	*	4803	*	5512	170
+       0	*	*	*	*	*	*	5989	0	0	
+
+A 171  2714	*	5921	3775	3412	7549	*	3920	5295	1844	5973	6890	6218	6861	3868	5546	3477	3995	*	*	171
+       0	*	*	*	*	*	*	5989	0	0	
+
+L 172  7415	5933	*	*	3430	*	*	5233	5688	381	7543	*	6198	*	*	*	*	*	*	4263	172
+       0	*	*	*	*	*	*	5989	0	0	
+
+L 173  *	4634	*	*	5263	4129	*	4574	*	577	6721	*	*	*	*	*	5307	4839	3654	6039	173
+       0	*	*	*	*	*	*	5989	0	0	
+
+E 174  4932	*	7215	3818	*	5392	5821	*	2762	5825	5955	3348	*	4473	4212	1370	3682	7727	*	*	174
+       0	*	*	*	*	*	*	5989	0	0	
+
+L 175  3019	5137	6861	4467	4961	2034	5984	*	4252	3175	4874	7320	*	5422	5525	2250	5514	*	*	5531	175
+       0	*	*	*	*	*	*	5989	0	0	
+
+L 176  *	*	*	*	1490	*	*	3103	*	1511	3232	*	*	*	6628	*	*	5116	*	5000	176
+       13	*	6849	*	*	*	*	5989	0	0	
+
+G 177  5797	*	5791	7056	5907	914	5711	*	3194	*	5504	4624	*	2499	4604	*	*	*	*	*	177
+       0	*	*	*	*	0	*	5798	0	1000	
+
+F 178  7362	6887	*	*	1581	*	*	2882	*	2060	2477	*	*	*	*	*	5394	3786	*	*	178
+       0	*	*	*	*	*	*	5680	0	0	
+
+P 179  6679	*	*	*	5000	*	*	*	7135	*	*	*	316	4109	5895	*	*	5442	*	4296	179
+       0	*	*	*	*	*	*	5480	0	0	
+
+F 180  *	*	*	*	634	5860	6555	3629	*	3363	6979	*	*	*	*	*	4753	3705	*	5148	180
+       75	4301	*	0	*	*	*	5364	1076	0	
+
+R 181  3100	*	5660	4112	5747	*	5808	3664	3053	*	4657	5773	*	3845	2574	3798	6698	4445	*	2765	181
+       0	*	*	*	*	0	*	4568	0	1012	
+
+K 182  4193	*	2469	3133	*	4410	*	*	1627	*	*	3533	4656	3873	5159	*	4115	*	*	*	182
+       0	*	*	0	*	*	*	3907	0	0	
+
+//
+�HHsearch 1.5
+NAME  4bc967f8d6c71174670a6efb6d0861ff
+FAM   
+FILE  4bc967f8d6c71174670a6efb6d0861ff
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:00:28 2013
+LENG  222 match states, 222 columns in multiple alignment
+FILT  117 out of 1276 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.8 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCEEECCCCEEEECCCCEEEEEEECCCCCCCCEEEEEEECCCCCCEEEEEEECCCCCCCCEECCCCCCCEEEEECCCCCEEEEEECCCCHHHCEEEEEEE
+ECCCCCCCCCEECCEEEEEEEECCCCCCEEEECCCCCCCCCCEEEEEEEECCCCCCCCEEEEEEECCEEEEECCCCEEECCCCCEEEEEEEEEECCCHHH
+CCEEEEEEEECCCCCEEEEEEC
+>ss_conf PSIPRED confidence values
+9389926987996899799998965888998469999958999827999994268755410266668738999614788078997568878884899978
+7378875533132216878873124575699605543323542899998158888997499999899382000353067079969888999990589643
+9489999993788977999989
+>Consensus
+xxxxxxxxxxxxxxGxxvxLxCxxxxxxxxxxxvxWxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxrxxxxxxxxxxxxsLxIxxxxxxDxgxYxCxv
+xxxxxxxxxxxxxxxxxlxvxxxxxxxpxixxxxxxxxxxgxxxxlxCxxxxxxpxxxxxvxWxxxgxxxxxxxxxxxxxxxxxxxxxsxLxixxxxxxd
+xgxyxCxvxxxxxxxxxxxixx
+>4bc967f8d6c71174670a6efb6d0861ff
+EVKLVESGGGLVQPGGSLRLSCATSGFTFSDFYMEWVRQPPGKRLEWIAASRNKGNKYTTEYSASVKGRFIVSRDTSQSILYLQMNALRAEDTAIYYCAR
+NYYGSTWYFDVWGAGTTVTVSSESARNPTIYPLTLPPALSSDPVIIGCLIHDYFPSGTMNVTWGKSGKDITTVNFPPALASGGRYTMSNQLTLPAVECPE
+GESVKCSVQHDSNPVQELDVNC
+>gi|5305517|gb|AAD41690.1|AF091139_1 immunoglobulin alpha heavy chain constant region [Trichosurus vulpecula]
+QMNSLDTGDTGL----YYCARANDYRTDVHRVPLDVWGKGTMVTVS------------------------------------------------------
+----------------------------------------------------------------------------------------------------
+----------------------
+>gi|281349765|gb|EFB25349.1| hypothetical protein PANDA_021873 [Ailuropoda melanoleuca]
+--SVSQmKNQVTLSERAFLIVNHSFA--ANKsappfsgvFSVLVKLCSCPENH--------------KRKCDGSNKG-FEATNEE-KTTFPWEKLSVPMA
+DMAVCHCA--------------------------------------------------------------------------------------------
+-------------------------------
+>gi|18858393|ref|NP_571075.1| CD166 antigen homolog A precursor [Danio rerio]gi|2497299|sp|Q90460.1|C166A_DANRE RecName: Full=CD166 antigen homolog A; AltName: Full=Activated leukocyte cell adhesion molecule A; AltName: Full=DM-GRASP homolog; AltName: Full=Neurolin; AltName: CD_antigen=CD166; Flags: Precursorgi|452158|gb|AAA50024.1| transmembrane glycoprotein [Danio rerio]
+--------------GETIEVPCNngNNK-PDGLIFTKWKYAKDDGSPGDLLIKQAQKD--DPtvSAMDGYKTRVSIAAN-----SSLLIAQGSLTDQRVF
+TCMVV--S---STNLEEFSVEVKVH-KKPSAPVIKNKVKELENGKLTQLGECVVESANP--AADLIWMKNNQALvddgkTIIITSDVTKDpvTGLSSTSS
+RLQYTARKEDVASQFTCVAKHVTGPNQV-----
+>gi|334350079|ref|XP_001376500.2| PREDICTED: v-set and immunoglobulin domain-containing protein 1-like [Monodelphis domestica]
+-VEVTIPVKVMnVTVGTDATFLCTYtTTAATTKLTIQWsFYHIKKFDIIThspclniqsmeektisqclkmvhtrdargrcswtsqVYYS--QDG--QAS
+GIGKYKDRVTGT--STPGNASITISNMQPSDSGVYVCDVT--N---PPDFQGINQGLIVANVLVKPSKPYCSIRGTPEANHAISLSCFSAEGAP--PPKY
+QWFkLEEDTIKPVNEQYNPTTGLLV-------IGNLTTFEKGHYQCIASN-SLGNSSCEID-
+>gi|56207974|emb|CAI21226.1| novel immune-type receptor 9, allele 1 [Danio rerio]
+-------------SGDSVSLTCTVlNQKCVGNHSMYWLIIESQDYRPRIISTHGTP---VDQCEWISDADFRAL----RCVYSFSRKDFRLSNSATYSCT
+VTACG----EKLDRNVSKLDI-------------------------------------------------------------------------------
+-----------------------
+>gi|326703679|gb|AEA06491.1| MHC class I antigen [Macaca mulatta]
+----------------------------------------------------------------------------------------------------
+------------------------------------------htiqtmygcdlgpdgrllrgyeqyaydgrdyfalne--DLRSWTAADMAA-QN-----
+------tqrkweaagvaeqw----RAYL---EGECLEWLRRYLEKGK-------------------------
+>gi|31339976|sp|Q8AXA0.1|B2MG_RAJEG RecName: Full=Beta-2-microglobulin; Flags: Precursorgi|24528462|gb|AAN62852.1| beta-2 microglobulin [Raja eglanteria]
+----------------------------------------------------------------------------------------------------
+---------------------AVP-SPPQVVVYTYKPVVHGEKNTLLCHAKEFNP-PNVELQLFEDGNVFsQANQTDLSFESNWKFKLTKFIELIPRE--
+-DVEYSCHVMYMGKT--------
+>gi|321475782|gb|EFX86744.1| hypothetical protein DAPPUDRAFT_44172 [Daphnia pulex]
+-------------NHHRRHSTSTAGYDHPSeltm--DdgylVLWFV-DPDRKPFYSLDVRRGRsgrH--WWNEE-rFgr-RVRFL----AstL--arLQI
+VNVTR---QDGGDYRCRVD----------FNSApsrnfkYRLVVIE-PPSSVVI--ldGFLQQLSVvagpleeGNDLILTCKAYGGYP-QP-WVTWWQGG
+QL-ldN--ttDARSPES-vSNLL---VVPRVGRQHL--HDAFTCQVTS------------
+>gi|5327167|emb|CAB46330.1| immunoglobulin light chain variable region [Mus musculus]
+----------------------------------------------------------------------------------------------------
+--------------------------------PAILSVSPGERVSFSCRASQS-iGT---SIHWYqqRTNGSPRLLIKYasesi----------------
+-------SG---------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+E 1    *	*	2022	2035	*	*	4260	*	*	*	*	*	*	1503	*	3490	5990	*	*	*	1
+       0	*	*	*	*	*	*	6914	0	0	
+
+V 2    *	*	4945	*	3577	*	*	1840	*	2032	6107	*	*	5103	*	*	*	1945	*	4143	2
+       0	*	*	*	*	*	*	8200	0	0	
+
+K 3    5045	*	4473	2846	4032	5546	4227	4040	3304	5390	*	4759	*	3176	4647	5527	4974	2166	*	*	3
+       0	*	*	*	*	*	*	8733	0	0	
+
+L 4    *	*	4509	*	4817	*	5765	3437	*	1737	3930	5900	4904	5650	*	4949	5805	1627	*	*	4
+       0	*	*	*	*	*	*	9333	0	0	
+
+V 5    4367	*	*	3939	*	*	*	3805	4852	5558	4749	4896	*	3634	5247	3022	1712	2709	*	*	5
+       0	*	*	*	*	*	*	9230	0	0	
+
+E 6    4810	*	4697	3844	6097	5820	6125	6137	3776	3940	*	*	6143	1969	3754	3784	3780	2572	*	*	6
+       21	*	6143	*	*	*	*	9258	0	0	
+
+S 7    6296	*	*	3593	6169	4111	4430	*	6646	4365	*	4338	1642	5112	*	3033	2421	5638	*	*	7
+       18	6316	*	0	*	0	*	9637	1205	1018	
+
+G 8    4633	*	4913	3917	*	3470	5693	6162	3295	6056	*	*	1660	3182	4518	3503	4596	5632	*	*	8
+       0	*	*	*	*	*	*	9799	0	0	
+
+G 9    3687	*	3391	3052	5951	4411	*	5954	3459	4568	*	3515	3069	3733	3974	3027	5275	*	*	*	9
+       42	5112	*	0	*	*	*	9869	1230	0	
+
+G 10   5471	*	4746	3407	*	5127	*	3606	6462	3064	*	6267	4450	3662	5971	3552	4076	1769	6307	*	10
+       42	5128	*	0	*	*	*	9953	1230	0	
+
+L 11   5558	*	4437	3670	6013	5074	5600	3698	5120	3491	4661	4691	6128	6017	3642	3141	3506	2519	*	5081	11
+       415	2001	*	0	*	*	*	10046	4131	0	
+
+V 12   2778	6537	*	6374	6519	3946	*	3585	4662	3664	*	*	4164	6290	5227	4070	4003	1619	*	6506	12
+       16	*	6475	*	*	*	*	10190	0	0	
+
+Q 13   4673	*	5758	4483	6602	4486	4513	3927	2953	4847	4624	5216	5460	3785	4225	3311	3515	3109	5280	5425	13
+       0	*	*	*	*	*	0	10181	0	1391	
+
+P 14   4994	*	5107	1767	5753	6530	*	4342	5518	3142	*	*	3019	5895	4976	3882	4426	2989	*	5658	14
+       0	*	*	*	*	*	0	10308	0	1391	
+
+G 15   *	*	5026	3532	*	521	6805	*	5752	5689	*	3709	*	6307	*	4317	*	*	*	*	15
+       0	*	*	*	*	*	0	10427	0	1391	
+
+G 16   5223	*	3080	2013	*	3244	5291	*	4512	6301	6624	5819	*	2870	4541	2880	4313	6219	*	6346	16
+       0	*	*	*	*	916	1089	10427	0	1391	
+
+S 17   4465	6324	4712	3770	*	6992	6360	6679	3728	*	*	2730	2769	4302	6673	2634	2475	5651	*	7220	17
+       0	*	*	*	*	0	*	10478	0	1086	
+
+L 18   2341	*	*	6665	5737	6789	*	3430	6286	3093	*	*	5854	*	*	5345	5799	1081	*	6712	18
+       0	*	*	*	*	*	*	10483	0	0	
+
+R 19   6446	6712	5593	3018	5824	*	5913	3925	4801	5443	*	4732	4454	5178	3972	3143	1607	4063	*	*	19
+       10	7206	*	1000	1000	*	*	10483	1003	0	
+
+L 20   5808	*	*	8158	3827	*	7206	2701	*	581	4862	*	*	*	*	6193	*	5005	*	*	20
+       0	*	*	*	*	*	*	10483	0	0	
+
+S 21   6719	*	4674	3361	5149	6180	5272	6516	*	3957	*	3970	2487	4421	3140	2824	3095	5298	6362	6286	21
+       0	*	*	*	*	*	*	10483	0	0	
+
+C 22   4732	137	*	*	6530	*	*	6264	*	*	*	*	*	*	6605	5725	*	*	*	*	22
+       0	*	*	*	*	*	*	10483	0	0	
+
+A 23   4007	7206	3963	4219	*	4874	4771	5347	4434	4629	*	3120	4366	3700	4307	2611	3325	3889	*	6743	23
+       90	4043	*	797	1236	*	*	10483	1924	0	
+
+T 24   2590	6665	7373	6264	3189	6054	5193	3775	6758	3528	*	5719	4775	6496	*	4363	4852	2209	*	3083	24
+       89	5245	4892	440	1927	*	*	10483	1325	0	
+
+S 25   3979	*	3749	3431	5418	5636	6964	6680	4903	5184	*	3275	3300	4853	5172	2496	2726	5146	7141	5924	25
+       189	3856	4218	1531	612	1479	641	10414	2021	1455	
+
+G 26   3414	6679	3607	3978	6249	2199	5324	*	4755	3698	*	3212	4046	4104	5110	4973	3834	*	6220	6644	26
+       390	5568	2213	0	*	2622	256	10359	1165	2337	
+
+F 27   4704	*	4055	6144	3218	5375	4704	5212	3765	3222	*	4198	3478	4489	4366	2874	3745	6369	*	4340	27
+       118	5924	4008	0	*	181	3087	9993	1000	4939	
+
+T 28   3999	6330	3632	4709	4428	4651	4893	5694	3508	4223	*	3525	3220	4845	6042	3042	3054	4804	8060	*	28
+       91	6723	4272	1000	1000	2780	227	10369	1000	2255	
+
+F 29   4553	4357	3573	3615	4349	3937	5095	4684	5129	3611	*	6551	2992	4697	5622	5006	4628	3900	6180	3287	29
+       132	4128	5061	1672	543	1056	946	10349	1761	2841	
+
+S 30   3566	*	3010	3931	5815	3446	5964	*	4227	5453	*	4495	2935	4116	4266	3408	3362	5454	*	5317	30
+       291	4534	2840	291	2454	1380	699	10348	1543	2612	
+
+D 31   4624	*	3464	4584	6372	4538	3337	6473	3474	3042	*	3594	3635	4289	7138	3248	4499	4259	*	5209	31
+       202	3784	4108	649	1464	4313	74	10118	1850	4136	
+
+F 32   3930	*	4360	4144	3988	4677	6201	3182	6144	3212	6303	3929	3333	*	6186	4483	3330	5080	*	3105	32
+       121	3641	*	0	*	137	3469	9811	2031	4590	
+
+Y 33   5202	*	5015	4672	4924	5168	5003	3848	5537	3527	5396	4359	5609	3809	4860	2891	3178	3523	*	3294	33
+       33	5487	*	0	*	*	0	10454	1226	1228	
+
+M 34   *	5792	*	*	4045	6145	6288	2288	5623	2127	4332	*	6740	*	*	6335	5735	1592	5744	*	34
+       14	*	6743	*	*	*	0	10448	0	1228	
+
+E 35   5551	*	7591	3865	3752	5383	5023	4710	3381	3743	6407	4747	*	3699	3815	2953	3293	6495	*	2969	35
+       0	*	*	*	*	1736	515	10165	0	1403	
+
+W 36   *	*	*	*	5219	*	*	6288	*	5103	*	*	*	*	*	6145	*	4311	244	5465	36
+       137	4207	4787	646	1470	*	0	10448	1817	1228	
+
+V 37   *	5582	6565	4634	2155	*	6831	5282	3486	3060	6889	6515	*	5084	4580	4996	5498	4518	4612	2112	37
+       46	*	4982	3170	170	2579	264	10396	1003	1921	
+
+R 38   6941	*	*	6185	5691	7165	4606	6234	2131	3712	5184	4987	*	3759	1970	4273	*	5597	3921	3914	38
+       126	5130	4177	0	*	2053	398	10349	1256	2220	
+
+Q 39   4487	*	3157	4066	5822	4902	4190	4484	3751	4571	5683	4581	*	1802	4984	4357	5286	4809	6234	6195	39
+       65	5979	5141	0	*	1448	659	10283	1086	2751	
+
+P 40   3731	*	3007	4910	5565	3292	6696	4104	2924	3984	5553	4123	4036	5579	3466	3819	4357	*	6605	*	40
+       89	*	4058	*	*	*	0	10314	0	2562	
+
+P 41   4040	*	3363	3920	6719	3804	5568	*	3732	3472	*	3823	2337	4384	5132	3214	4168	*	*	*	41
+       143	4406	4399	2213	350	902	1106	10283	1477	3540	
+
+G 42   4940	*	3018	3426	*	1946	*	6560	4316	4981	7086	3943	4422	4869	4106	3368	4454	5428	5512	*	42
+       67	4452	*	297	2427	638	1484	10264	1496	2850	
+
+K 43   4655	7313	4122	3694	6795	2735	4616	4690	2766	5133	*	4174	3600	3644	4255	4147	4665	4683	*	*	43
+       50	4877	*	756	1294	1878	458	10390	1406	1592	
+
+R 44   3715	*	3824	3310	6937	2681	5935	4622	4761	5228	6708	4977	3529	4651	5035	2917	3378	5149	*	6291	44
+       145	4002	4904	878	1133	*	0	10409	1844	1385	
+
+L 45   5400	6673	4733	6544	5575	5174	*	3844	6787	2754	*	4061	1938	5089	3355	4621	4153	3562	*	6263	45
+       30	6421	6839	0	*	2186	358	10354	1031	2052	
+
+E 46   3905	*	4833	2902	*	3041	5026	4445	3189	5319	5603	5137	6488	3167	4903	5315	3663	3407	*	5141	46
+       39	*	5229	*	*	1529	614	10357	0	1962	
+
+W 47   4938	*	5097	5377	2441	5743	5841	4443	6669	2383	4974	4413	*	4914	3400	4265	4070	4906	4244	4574	47
+       33	5479	*	4235	79	*	0	10304	1169	2163	
+
+I 48   4994	6435	5944	4864	4113	5684	6551	2733	6440	2129	4503	4528	5473	5487	*	4748	4872	2345	*	5183	48
+       124	5181	4185	1000	1000	*	0	10304	1326	2163	
+
+A 49   2758	4540	4224	5470	5839	3598	4879	3004	*	2846	6079	*	*	6446	3988	3745	4443	3707	*	4351	49
+       0	*	*	*	*	1947	433	9927	0	3000	
+
+A 50   3308	*	3920	5601	4230	4102	5548	3752	4619	4881	5341	4518	6453	5604	4570	3235	4162	5152	5183	2551	50
+       80	*	4218	*	*	2194	356	10290	0	2483	
+
+S 51   4595	6523	4653	5224	3269	4468	4102	3524	3744	4409	5254	5647	*	4899	4227	3023	4334	3654	*	3637	51
+       213	*	2864	*	*	*	0	10303	0	3066	
+
+R 52   6195	*	3937	4095	4284	5071	4971	4468	3878	3543	*	3103	4666	4431	3835	2667	4703	6612	*	3790	52
+       394	*	2063	*	*	*	0	10057	0	4798	
+
+N 53   5006	5661	4702	4305	*	3423	5949	6508	3826	4466	*	2577	3254	4014	3906	3732	3617	4392	5752	*	53
+       89	5202	4950	0	*	2671	246	9399	1171	6608	
+
+K 54   5097	*	4347	5102	*	3206	5028	*	3862	4542	6071	3975	6094	3473	4106	2276	3011	4941	5460	6074	54
+       203	*	2929	*	*	4223	79	9462	0	6282	
+
+G 55   3932	*	3193	3676	4790	2485	5958	5840	3665	4678	*	4768	*	4749	5004	3076	3422	*	*	3972	55
+       681	4252	1627	1929	440	*	0	9287	1376	6736	
+
+N 56   5005	5516	3103	3644	*	1573	*	*	4428	4232	*	3113	4895	3653	*	4084	*	5195	*	*	56
+       2097	*	384	*	*	6074	22	8191	0	7899	
+
+K 57   3300	*	*	*	*	*	*	2978	3104	*	*	3185	*	*	3447	1141	*	*	*	*	57
+       545	*	1669	*	*	5739	27	4692	0	9143	
+
+Y 58   3430	*	3049	*	3169	*	*	2785	*	*	*	*	*	2862	2776	*	3239	*	*	2829	58
+       0	*	*	*	*	386	2092	4246	0	9193	
+
+T 59   4567	*	3500	3186	6406	6161	6404	4905	5338	4328	6325	4063	3947	3678	3534	3026	3535	3703	*	5232	59
+       0	*	*	*	*	2308	325	10075	0	4298	
+
+T 60   3152	*	5375	4482	5007	3171	5510	6627	3972	4925	*	3591	2931	4205	5487	2693	4113	5363	5617	*	60
+       110	4531	5058	823	1202	*	0	10136	1529	3709	
+
+E 61   5493	*	4345	3543	4464	3897	6181	4739	3358	5528	*	4324	6536	3697	4213	2776	3497	3515	*	4439	61
+       21	*	6085	*	*	2837	217	10099	0	4093	
+
+Y 62   4556	6230	4309	4035	3415	5482	5477	*	4991	3054	6406	5320	5068	4014	4126	4601	4249	2946	*	2911	62
+       87	4373	6594	1912	446	*	0	10080	1484	3857	
+
+S 63   3554	6075	4384	4095	4272	4044	5303	5603	3493	4718	5523	3630	3791	5513	6068	3127	3276	4525	6088	5568	63
+       0	*	*	*	*	3284	156	10074	0	3975	
+
+A 64   4418	*	3244	2975	5703	3360	4247	5763	5445	4923	*	6099	3125	4087	6709	2635	3711	5112	*	6278	64
+       116	6530	3913	1585	585	*	0	10147	1000	3702	
+
+S 65   3102	*	4435	2962	*	2645	6525	6325	3977	5502	*	4207	3465	4129	3923	3047	4429	7652	*	*	65
+       9	*	7282	1000	1000	2098	384	9733	1074	4360	
+
+V 66   5284	*	5465	5004	2662	4548	6419	3984	4976	3435	5272	6231	4412	4299	6597	4924	5163	2853	*	2522	66
+       71	4381	*	1258	781	2364	312	9865	1514	3804	
+
+K 67   4583	*	3542	3447	*	3847	5453	*	2556	4812	*	4533	3268	5076	3691	3014	4454	4371	*	6516	67
+       86	4105	*	487	1802	867	1146	9952	1873	3303	
+
+G 68   4125	*	3356	3311	*	2146	*	*	3711	7832	*	3940	3925	4267	4379	3250	4319	4681	6336	*	68
+       115	5059	4418	1166	851	2927	203	10110	1571	2024	
+
+R 69   6520	*	4963	6719	6686	5419	7164	5381	3291	4848	*	4291	6455	4743	847	4348	5461	5713	*	*	69
+       19	*	6276	*	*	2744	233	10080	0	2616	
+
+F 70   3315	6538	*	4952	2078	5464	5886	3593	*	3240	*	5382	6339	6217	4655	*	6351	2672	6446	3043	70
+       50	*	4879	*	*	*	0	10044	0	2554	
+
+I 71   *	*	6261	4239	5046	*	5139	4269	4763	5270	*	4052	6234	3306	2919	2124	2688	4552	6309	6159	71
+       30	6499	6708	0	*	1651	553	9962	1000	3040	
+
+V 72   2843	*	5733	*	3610	3410	5505	3335	6484	2317	4429	*	6678	*	*	3749	6319	2562	*	5603	72
+       65	*	4511	*	*	3133	175	10031	0	2579	
+
+S 73   4216	*	4457	2840	6261	5481	5062	4514	5460	3500	5849	4392	5363	5825	4404	2611	3015	3978	6409	5379	73
+       261	6488	2695	1000	1000	3492	134	10007	1000	3066	
+
+R 74   4046	*	4310	4546	4983	2948	4925	6609	3538	3270	*	4043	4233	6283	2833	3616	6372	4400	4965	6369	74
+       72	*	4366	*	*	4251	78	9926	0	4713	
+
+D 75   6285	6004	2014	3349	6279	5444	4878	6417	3565	6247	*	2829	4931	4537	4728	3975	4546	3822	*	6045	75
+       355	5036	2415	0	*	1028	973	9927	1293	5007	
+
+T 76   5169	*	4152	5168	5382	2872	4675	4750	4475	4279	4956	3569	3916	3813	4193	3314	3554	4408	6214	*	76
+       330	4547	2629	837	1184	2461	289	9904	1435	5081	
+
+S 77   3219	*	3737	3817	*	5167	5986	5766	4495	3403	4944	5762	6469	4442	3975	2000	3746	4336	*	*	77
+       33	5455	*	3700	115	850	1167	9368	1100	5806	
+
+Q 78   3746	*	4535	4248	6455	2676	4980	5322	3542	4323	6865	3469	3995	3153	*	3123	4150	6764	*	6067	78
+       68	5302	5574	0	*	3153	172	10187	1253	3464	
+
+S 79   3572	*	4064	4501	5816	2866	5381	*	3779	4835	5459	3064	*	4351	3782	2774	4215	4032	*	*	79
+       124	3607	*	777	1264	3285	156	10212	2093	3439	
+
+I 80   5470	5170	2982	3825	6605	6681	6482	4033	5103	4554	6086	2965	5493	4101	4059	3120	2681	4863	*	*	80
+       116	5548	4166	1298	753	1524	616	10228	1139	3205	
+
+L 81   2986	4084	*	6975	2454	3574	6953	4729	6453	3472	6105	*	5497	*	*	2620	*	4708	5556	2898	81
+       0	*	*	*	*	116	3696	10227	0	3223	
+
+Y 82   4931	*	5092	5709	6781	5879	5185	5372	5091	5494	5762	4575	5656	4892	3842	1584	2390	4113	*	5396	82
+       37	5311	*	0	*	*	0	10444	1263	1019	
+
+L 83   *	*	*	*	4695	*	*	3673	*	287	6437	*	*	*	*	*	*	4269	*	*	83
+       0	*	*	*	*	*	0	10483	0	1019	
+
+Q 84   3976	*	5618	4801	7119	*	4268	4456	3753	3468	6316	4288	4891	3969	2674	4521	2443	4419	*	5725	84
+       11	*	7032	2000	415	*	0	10483	1000	1019	
+
+M 85   *	*	*	*	4347	*	*	780	6805	2264	4197	5628	*	*	6035	*	7890	4437	6521	*	85
+       0	*	*	*	*	*	0	10232	0	1210	
+
+N 86   4428	*	5684	3392	*	4769	5542	4774	2734	5077	6805	3900	3699	3791	3636	3536	2827	*	6674	5528	86
+       0	*	*	*	*	*	0	10232	0	1210	
+
+A 87   5240	5624	2848	5029	*	3934	4522	6521	4472	*	6906	2246	5009	4239	2886	2909	4673	*	*	6930	87
+       0	*	*	*	*	*	0	10232	0	1210	
+
+L 88   2460	*	*	*	5632	5892	*	3245	6392	2471	5202	*	5760	*	*	4576	3453	1715	*	*	88
+       0	*	*	*	*	*	0	10232	0	1210	
+
+R 89   5898	*	5011	3260	6886	5797	4299	*	2996	6381	*	4811	*	2824	2797	3419	2472	5040	6900	*	89
+       31	*	5563	0	*	*	0	10229	1000	1210	
+
+A 90   3578	*	*	3697	6689	*	7425	4457	2954	2545	4652	6944	3050	4276	4194	4130	4848	3890	4522	*	90
+       10	7156	*	2895	208	*	0	10189	1197	1587	
+
+E 91   3568	*	3591	2110	*	4390	6774	*	3884	4861	5200	6601	*	4410	4406	2212	4006	5551	*	6520	91
+       0	*	*	*	*	2019	409	10189	0	1587	
+
+D 92   *	*	434	5692	*	6506	3748	*	5538	*	*	7436	*	5446	5731	4522	6435	6003	*	6050	92
+       23	*	6003	*	*	1609	573	10217	0	1400	
+
+T 93   2442	6564	3722	2702	*	5470	5525	*	6393	6421	4815	5241	*	3891	6365	2233	3039	5572	*	6488	93
+       0	*	*	*	*	1898	451	10228	0	1517	
+
+A 94   2730	6595	5014	6686	*	686	6483	*	6876	*	*	6435	*	6542	4688	3472	7421	*	*	*	94
+       54	5121	6952	1183	838	*	0	10236	1391	1332	
+
+I 95   4793	5804	4141	3859	5161	5824	5642	3634	4002	4161	4345	4843	*	*	3888	3802	2576	3180	4944	5496	95
+       8	*	7458	0	*	820	1206	10224	1018	1531	
+
+Y 96   *	*	*	*	3533	*	6679	5692	6170	6565	*	*	*	*	*	*	*	*	*	218	96
+       0	*	*	*	*	0	*	10242	0	1317	
+
+Y 97   4749	6674	*	3658	4342	*	5699	3700	3896	4215	4687	5661	*	4582	3517	4236	3298	3333	5602	2786	97
+       0	*	*	*	*	*	*	10266	0	0	
+
+C 98   *	135	*	*	6451	*	*	6192	*	4464	*	*	*	*	*	*	6968	6487	*	*	98
+       0	*	*	*	*	*	*	10266	0	0	
+
+A 99   3451	6196	4898	3100	4723	4967	4481	4483	5739	4218	4479	6772	*	2913	3451	3521	4776	3170	*	*	99
+       49	*	4902	*	*	*	*	10270	0	0	
+
+R 100  2218	6377	*	*	5814	5746	*	3717	5582	3670	5820	*	*	5638	4677	5114	4993	1238	*	*	100
+       85	6596	4405	3322	152	*	0	10248	1000	1451	
+
+N 101  4663	*	3903	4135	4630	3474	*	5304	2860	4143	4539	4924	6236	4547	4865	3094	3818	3905	4440	5676	101
+       1580	6595	610	683	1407	*	0	10203	1108	2314	
+
+Y 102  3998	*	3526	4758	4883	5118	2909	4944	4958	3059	*	4697	4990	3805	5374	*	3165	3494	*	3895	102
+       428	3408	2621	3025	189	6250	19	7822	1306	8338	
+
+Y 103  *	3879	*	3081	*	3817	3806	*	2895	5057	*	3750	3929	4797	3523	5021	3352	4759	4599	4755	103
+       0	*	*	*	*	806	1224	7723	0	8524	
+
+G 104  3607	*	3969	3610	*	2483	*	5006	5832	4511	5876	2189	*	5135	4640	2729	4982	6224	*	*	104
+       436	5880	2035	0	*	*	0	9814	1000	5500	
+
+S 105  3402	*	5872	3383	6109	2731	4546	4551	4692	*	5749	3309	5778	5436	3274	2597	5445	*	5289	5311	105
+       341	*	2249	*	*	4846	51	9367	0	7277	
+
+T 106  2942	*	5473	4294	4426	2191	5387	3858	4765	5319	*	4349	5495	3886	3248	4471	4206	4929	*	*	106
+       407	4548	2301	2000	415	6029	22	8585	1165	7880	
+
+W 107  4194	*	3532	3374	*	3274	4176	5140	5096	3971	*	5108	4413	4884	5003	5100	4828	2376	4121	5206	107
+       82	5206	5144	0	*	880	1131	8084	1000	8319	
+
+Y 108  4524	*	3817	3105	4614	5883	5485	4498	6353	5296	*	4195	4724	4608	5924	2822	3595	3744	5994	2807	108
+       84	4141	*	1122	888	996	1004	9634	1573	5610	
+
+F 109  3102	*	4994	4076	3049	5293	4727	4332	3781	4356	6375	5644	3602	4388	5302	3714	3489	4283	*	4906	109
+       39	5899	6632	1643	557	1868	462	9974	1155	3593	
+
+D 110  3864	*	3125	3663	4809	3597	5354	5239	5363	3347	*	3709	3190	4003	3691	*	4433	5525	6879	4520	110
+       48	6827	5403	1000	1000	973	1028	10037	1033	3277	
+
+V 111  4273	*	4693	4371	5771	5461	5566	3155	6456	2970	5991	5614	3968	5569	4204	5492	2968	2655	6691	4210	111
+       103	4452	5434	1024	976	1710	526	10121	1538	2450	
+
+W 112  4201	6311	5299	4536	2113	6685	6255	3940	5151	4043	5736	5607	6577	4215	3586	4546	4238	3509	4522	4558	112
+       42	6544	5790	1585	585	1430	669	10104	1000	2386	
+
+G 113  4939	*	5446	3929	6398	1733	6407	4774	5614	4513	*	4412	4431	3696	4874	2665	4876	4881	6475	6390	113
+       42	5928	6332	1585	585	3242	161	10134	1128	2132	
+
+A 114  3495	*	3995	3358	6803	4861	5211	6781	5111	4510	6267	4227	4552	3034	4179	2142	5612	4924	*	4939	114
+       26	*	5833	*	*	*	0	10112	0	2210	
+
+G 115  3970	*	6843	4463	4795	1831	4695	5598	3779	4799	6658	4579	3892	4204	4348	3784	4043	5401	*	5817	115
+       41	6595	5816	2585	263	1503	628	10093	1000	2473	
+
+T 116  3398	*	5688	5185	5344	5618	4709	3420	5141	5042	5321	4930	*	5037	*	4456	1657	2734	*	5522	116
+       52	5708	5944	1035	966	554	1649	10144	1204	2245	
+
+T 117  5099	5164	4595	3235	5187	4815	6592	4832	2772	6517	*	3575	5314	3935	3699	3345	3543	4113	6755	5221	117
+       13	6820	*	2322	322	367	2155	10216	1000	1595	
+
+V 118  4549	*	6415	*	6682	*	4804	3633	5507	1091	5121	6722	*	5817	4767	4168	6564	2626	*	7123	118
+       82	4180	*	1762	504	*	0	10253	1906	1000	
+
+T 119  *	6897	6774	4348	4507	4451	5574	3771	3078	4105	5085	3448	7243	6773	4339	4164	2480	2805	*	6858	119
+       20	7694	6773	1585	585	*	0	10220	1000	1251	
+
+V 120  *	5015	*	4883	4767	5146	5581	2933	6580	3130	5006	5335	5885	*	6578	5795	4759	1135	*	*	120
+       51	*	4857	*	*	*	0	10184	0	1548	
+
+S 121  4766	5543	6598	3417	6394	5019	4312	3469	3913	2563	6577	6488	4243	*	3803	3705	4137	3196	*	5053	121
+       118	5271	4242	1433	667	3055	185	10147	1496	2227	
+
+S 122  2518	6523	3471	4050	4982	3748	4842	5786	7014	4040	6054	5770	3773	4199	5071	3678	4547	3414	5616	6576	122
+       232	5931	2920	0	*	1536	610	10069	1100	2914	
+
+E 123  2661	*	3712	6200	6590	4083	4899	4500	2640	3770	6439	*	3757	4659	4261	4698	4821	3256	*	6019	123
+       203	3620	4323	1321	737	1403	685	9965	2130	4114	
+
+S 124  3417	6270	4367	6156	*	5230	6702	4435	3122	2850	6207	4732	2540	5488	5854	4278	3688	3277	*	*	124
+       90	4356	6447	1489	636	1526	615	9988	1577	3678	
+
+A 125  4000	*	5101	4787	5364	4888	6497	4013	3949	3719	6524	5305	2746	*	3677	3164	4295	2761	*	5212	125
+       31	6502	6605	4524	64	*	0	10138	1006	2949	
+
+R 126  3128	*	5763	3300	3922	5466	5400	5710	3456	5622	*	6643	3550	4751	4485	2507	3641	3873	*	5546	126
+       46	4994	*	0	*	104	3842	10012	1396	3089	
+
+N 127  2910	*	4745	3594	*	4313	*	4999	3828	5532	5047	4352	2132	3945	6039	4051	3953	4039	*	*	127
+       14	*	6675	*	*	*	0	10243	0	1000	
+
+P 128  4238	*	6769	*	6666	5666	*	5268	4338	4604	7464	5376	948	4565	*	3818	4264	4116	*	5593	128
+       308	2379	*	1604	576	0	*	10269	3885	1154	
+
+T 129  3818	6538	4971	4735	*	6118	5407	3184	3532	4591	4773	5599	4548	4446	4036	3404	2984	2856	*	7135	129
+       25	5866	*	2118	378	0	*	10230	1162	1074	
+
+I 130  5136	*	*	6630	6878	*	*	2034	5087	2774	5058	4441	4173	5600	6439	4191	4415	1959	6553	*	130
+       100	5624	4428	943	1059	*	*	10263	1172	0	
+
+Y 131  5247	*	6189	6327	3466	6862	4636	3712	6758	2867	5904	4169	5415	4365	4231	3165	3258	3660	*	3428	131
+       120	4415	4913	1420	675	936	1067	10016	2002	1751	
+
+P 132  3613	5824	4631	3600	5375	3617	*	4436	4832	4305	4821	3932	2926	3353	6403	4281	3897	3977	5968	*	132
+       51	4840	*	1341	724	2385	307	10133	1426	1858	
+
+L 133  5553	5835	4225	4210	4461	4153	6604	6430	3754	2496	7146	4477	2112	4745	5614	4292	*	4217	*	4928	133
+       31	*	5542	1000	1000	922	1082	10168	1019	1666	
+
+T 134  4210	6703	5732	4404	5735	5445	*	5556	3081	5436	6497	4730	3960	4480	4860	1940	3112	4124	*	4638	134
+       40	7214	5602	2322	322	*	0	10026	1000	1585	
+
+L 135  4123	*	3437	3365	*	4340	4772	4564	4367	4460	*	4527	4111	3278	4113	3014	3614	4333	6176	*	135
+       121	*	3641	0	*	944	1058	9942	1074	2020	
+
+P 136  3715	*	5300	3180	5051	3752	5594	4753	4303	3361	3931	4995	4272	3399	6731	2972	5605	4119	*	5682	136
+       660	1829	3542	962	1040	503	1765	9934	5045	2695	
+
+P 137  4660	*	4457	3527	5612	4766	6138	4429	5230	3406	5460	6546	4274	3821	4047	2801	3594	3142	6633	5421	137
+       0	*	*	*	*	1563	596	9913	0	2701	
+
+A 138  4014	6802	5416	3870	*	4351	7004	4248	4897	3748	4100	6466	4481	5547	4852	4521	4045	1712	6450	5116	138
+       39	5222	*	1334	729	*	0	9955	1297	2104	
+
+L 139  5202	*	3582	3307	4985	5516	*	5037	3322	2915	4973	3953	4672	4603	4124	3800	4289	3986	*	4279	139
+       47	5589	6466	2807	222	833	1189	9955	1138	2104	
+
+S 140  3146	*	4592	2313	*	4834	5704	4927	3843	3630	*	4630	4431	5359	5274	2788	4958	3760	*	5716	140
+       15	6631	*	3000	193	0	*	10028	1000	1588	
+
+S 141  4881	*	4984	4782	*	1054	*	8756	4385	5377	*	4811	*	4236	5626	3127	3541	5321	*	6975	141
+       0	*	*	*	*	*	*	10085	0	0	
+
+D 142  5144	6361	2509	2637	6579	4275	4662	6975	3715	5589	*	3232	4855	3121	4269	4080	4673	6568	*	*	142
+       3	*	8756	5170	41	*	*	10085	1074	0	
+
+P 143  4640	*	3983	3379	5689	*	6622	5886	3774	5826	6377	4357	2935	4514	4833	2727	2782	3911	*	5059	143
+       0	*	*	*	*	*	0	10048	0	1000	
+
+V 144  2630	5812	6646	6433	4761	6714	6642	3832	4055	2856	6128	6123	5126	4628	6215	4981	3493	2108	*	6573	144
+       15	6610	*	0	*	*	0	10048	1009	1000	
+
+I 145  6451	*	5300	3380	6779	*	5866	5045	3402	4704	5589	4129	6014	4306	4183	3123	1764	4231	*	5951	145
+       17	*	6451	*	*	*	0	10049	0	1000	
+
+I 146  4777	*	*	*	3620	5080	*	3140	*	962	4115	*	7263	*	7229	*	*	3019	6695	5515	146
+       52	5220	6860	0	*	0	*	10034	1281	1117	
+
+G 147  6052	*	*	3344	5730	5547	5058	3984	4612	3557	5071	4587	*	6491	3885	2907	2290	3209	6644	5570	147
+       0	*	*	*	*	*	0	10060	0	1019	
+
+C 148  *	66	*	*	6392	*	*	*	*	6376	*	*	*	*	*	7790	*	6974	*	6919	148
+       71	4778	6392	851	1167	0	*	10060	1637	1019	
+
+L 149  5064	*	5835	3211	5696	*	4076	4087	5188	3759	5074	5060	4560	4731	3635	3500	2441	3338	7731	6707	149
+       0	*	*	*	*	1130	881	10030	0	1237	
+
+I 150  2201	5580	6673	*	4942	*	*	3749	*	4113	*	6936	*	*	*	2777	4507	1595	*	4109	150
+       32	6647	6399	6267	19	*	0	10051	1000	1043	
+
+H 151  4237	*	4169	3294	5838	5536	4235	*	4424	4547	4673	4581	4481	4843	3817	2371	2905	4659	*	6651	151
+       50	*	4865	*	*	937	1065	10020	0	1294	
+
+D 152  4454	6898	3428	4534	*	1626	5524	*	4426	6479	*	2783	5619	4975	4300	2978	5551	6635	*	*	152
+       70	5441	5358	804	1227	1400	687	9991	1597	1804	
+
+Y 153  3672	6270	4635	3862	2837	2516	*	4869	5399	4378	6327	4258	5603	6430	4978	3695	4326	4172	6548	4138	153
+       66	*	4482	*	*	2349	315	9767	0	1836	
+
+F 154  4793	*	5603	5156	3522	*	5293	6268	3549	5019	7715	3353	2441	6221	4336	3647	4684	5872	*	2411	154
+       65	4920	6485	2244	342	885	1125	9914	1376	2374	
+
+P 155  4774	*	6479	5626	5567	5344	6534	*	5472	4780	5864	4760	764	*	4560	3926	4546	5475	*	*	155
+       1576	5642	634	957	1045	*	0	9964	1200	1924	
+
+S 156  2887	*	5028	*	*	3805	*	4250	*	*	*	4850	1796	4701	4910	2403	5221	4053	*	4658	156
+       1629	3437	775	1848	469	834	1187	7783	1616	8082	
+
+G 157  5505	*	2905	2478	*	3657	*	4773	*	3292	5648	4209	3813	3300	3684	3029	*	*	*	*	157
+       59	4638	*	969	1031	774	1269	8827	1209	7078	
+
+T 158  2942	*	3211	5125	*	4648	3877	4426	5106	5155	*	4425	2109	4443	4636	3870	6154	4022	*	6264	158
+       169	*	3181	*	*	4429	69	9496	0	4170	
+
+M 159  2695	*	*	*	4578	6035	6107	3460	4955	2248	6014	6766	4271	*	*	4007	4200	2310	*	4459	159
+       31	*	5562	*	*	0	*	9335	0	5110	
+
+N 160  5149	6376	4142	3783	*	5728	4587	5233	3943	6749	6583	2952	6392	3911	3521	3332	2808	3878	6557	4531	160
+       12	6954	*	1585	585	1301	751	9988	1018	1251	
+
+V 161  5959	6381	*	*	4227	*	*	2234	6358	2289	5537	5033	5566	*	*	4646	*	1715	5646	4283	161
+       17	6374	*	0	*	*	0	9996	1031	1074	
+
+T 162  5458	*	*	4051	5554	*	5477	4432	4148	4503	5783	4612	*	4600	3784	2500	2082	3848	*	3817	162
+       32	*	5520	*	*	*	0	9996	0	1074	
+
+W 163  *	6431	*	*	6385	*	6828	6503	*	5650	*	*	*	*	*	*	7462	*	157	4879	163
+       0	*	*	0	*	1307	747	9949	1196	1742	
+
+G 164  6835	6350	*	5158	3374	5413	6833	4271	2837	3374	6753	7076	*	3888	5132	4368	3538	6397	4456	2124	164
+       544	1892	4478	1526	615	*	0	9969	4652	1375	
+
+K 165  4881	5789	6599	4553	6568	5284	4999	4760	1660	4149	6595	*	5882	3941	2724	4472	4081	4008	*	7018	165
+       0	*	*	*	*	1954	431	9904	0	2258	
+
+S 166  4595	*	1984	3629	*	3255	6491	6430	5655	5041	*	2203	3893	6499	4657	3316	6418	*	*	*	166
+       0	*	*	*	*	*	0	9944	0	1905	
+
+G 167  4581	*	3593	4671	6312	1077	*	*	6382	*	*	2246	6348	5508	5490	4346	6499	6628	*	*	167
+       32	6348	6726	4087	87	1884	456	9944	1031	1905	
+
+K 168  *	6929	4628	2733	*	3899	4911	6294	2972	4583	*	3932	6889	3011	3659	3533	3944	3470	*	*	168
+       35	5400	*	0	*	2489	283	9963	1190	1787	
+
+D 169  3995	*	3835	3047	6320	4652	6346	4705	3631	3914	6526	4634	2940	4865	4510	4455	3327	3826	6334	6910	169
+       12	6893	*	2184	359	2202	354	9972	1203	1620	
+
+I 170  6495	5167	*	4371	3883	*	6901	2761	6370	1937	4762	*	4508	4578	4458	3993	6665	2514	*	*	170
+       1496	1086	2520	1743	512	*	0	9980	6812	1449	
+
+T 171  5370	6080	3177	3569	5097	2137	5464	5980	4003	5430	7129	3854	4715	6258	5268	3469	3688	4298	*	6206	171
+       48	5289	7188	955	1046	*	0	9661	1201	4089	
+
+T 172  3568	*	5296	4245	6107	4245	*	3542	4907	3676	*	5345	3709	4566	6110	3087	3101	2707	*	5179	172
+       36	6110	6595	0	*	1556	600	9569	1043	4350	
+
+V 173  5034	*	4432	5362	6356	4414	5221	4058	3560	3950	4426	3848	5640	4957	3506	2945	3038	3818	*	5345	173
+       47	4978	*	814	1213	*	0	9746	1516	3441	
+
+N 174  4523	*	4709	3262	*	4836	4385	4405	5598	5472	6065	3864	4312	4678	4873	3314	2010	5771	6196	4246	174
+       33	6633	6348	0	*	2752	232	9746	1000	3441	
+
+F 175  5367	*	4061	4414	3188	3661	4445	5018	4408	3593	6292	4348	5713	6252	4079	2615	3104	*	*	4620	175
+       32	5525	*	1961	428	1602	577	9675	1164	3257	
+
+P 176  6143	*	4069	4033	*	4151	*	4592	5160	5235	*	3506	2487	3744	4692	2513	3292	5241	6835	5586	176
+       81	4194	*	2529	275	*	0	9903	1632	2525	
+
+P 177  3805	*	4090	4154	4982	3622	4223	4879	5787	4316	6450	6496	3461	4285	4106	2853	3522	4019	*	4837	177
+       38	6918	5796	641	1479	2374	309	9894	1171	2659	
+
+A 178  4393	*	4035	3230	4934	4972	4632	3764	4183	5637	5955	4628	3808	4523	5059	3424	4000	2613	*	6553	178
+       72	7414	4550	0	*	2453	291	9803	1136	2707	
+
+L 179  5613	6395	4177	3756	4652	5553	4904	3863	5011	2874	6138	6506	4317	3644	2750	4520	4081	3996	*	4700	179
+       292	4795	2762	2754	231	1498	630	9777	1351	3286	
+
+A 180  3473	*	3763	4021	4265	4962	3503	4695	4294	3550	*	3410	4804	5118	4579	3483	3953	4387	*	5318	180
+       61	5315	5939	957	1044	1472	645	9621	1167	4566	
+
+S 181  3727	*	3905	3400	*	6211	6662	5613	3317	5314	5301	4165	4313	4808	4244	3216	2928	3428	5783	5399	181
+       65	4828	6826	1000	1000	545	1667	9745	1367	3586	
+
+G 182  5432	*	1968	3367	*	3091	*	4800	4583	5136	6763	3585	5478	4936	3546	3014	4509	*	*	*	182
+       36	5333	*	3498	134	2628	255	9871	1207	1971	
+
+G 183  4889	*	3762	6302	5713	1611	4373	6787	3676	4388	*	3726	5121	*	4912	2507	6813	5169	*	*	183
+       43	*	5104	*	*	*	0	9901	0	1793	
+
+R 184  *	*	4750	4196	*	3996	5598	6702	3578	2328	5765	4523	*	4301	3829	4543	2049	3945	*	*	184
+       13	6779	*	0	*	*	0	9848	1000	2233	
+
+Y 185  6417	7676	6388	4720	2696	4421	5627	5192	5698	4871	6450	3906	6234	*	4828	3537	4499	4783	*	1564	185
+       134	*	3496	*	*	*	0	9848	0	2233	
+
+T 186  4676	6556	3671	3794	6629	4794	7229	*	4793	4580	5292	3823	5767	6702	3235	2203	2437	6324	6210	6532	186
+       38	5258	*	3624	122	3987	94	9713	1183	3665	
+
+M 187  3697	5096	*	5888	4889	5306	*	3183	6730	3206	4736	4788	6628	6221	3513	4155	2912	2346	5700	*	187
+       0	*	*	*	*	1191	831	9728	0	3512	
+
+S 188  4100	*	4955	6962	5706	4610	7417	5008	5640	6312	4243	4623	6402	5701	3780	2087	2207	3518	6133	5564	188
+       0	*	*	*	*	2173	362	9854	0	2432	
+
+N 189  3788	5605	6579	6733	3773	5055	4907	5670	5507	4198	5668	3979	4965	5709	5414	1188	5191	*	*	5036	189
+       49	4915	*	1684	538	2695	242	9875	1477	2096	
+
+Q 190  4104	6468	6536	3666	4834	5912	4978	4076	5502	5369	*	4925	*	3780	2848	3266	2769	3699	5068	4323	190
+       30	5590	*	1312	743	2280	332	9888	1176	1908	
+
+L 191  4742	*	*	*	4465	*	6505	3904	*	473	6802	*	6657	*	7741	*	6482	3932	6724	6774	191
+       18	*	6370	*	*	*	0	9926	0	1692	
+
+T 192  *	*	5387	4341	5725	*	6339	4512	4222	3292	4592	3766	6646	3722	3328	3686	2106	4303	*	4834	192
+       0	*	*	*	*	1714	524	9910	0	1867	
+
+L 193  *	*	*	*	3804	*	*	1331	6397	1989	*	*	6193	6488	*	*	6331	2619	6500	4155	193
+       0	*	*	*	*	*	0	9927	0	1557	
+
+P 194  4171	6346	4930	5340	6251	5154	5254	5586	3210	4482	7487	3275	3863	3792	3428	2988	3094	4818	*	6331	194
+       0	*	*	*	*	*	0	9906	0	1557	
+
+A 195  2747	*	3862	5407	6630	5265	3915	6468	3890	3686	6182	3680	2903	5466	3825	3250	5029	5345	6502	6663	195
+       28	5678	*	0	*	2005	413	9906	1143	1557	
+
+V 196  3173	5741	5501	*	5726	4313	5682	5688	4920	2697	6086	5512	5033	3708	4455	3482	3369	2494	*	*	196
+       35	*	5380	*	*	*	0	9922	0	1376	
+
+E 197  3965	6677	2843	3051	6664	4872	6336	*	3018	4600	*	4734	4572	3875	3814	3414	3230	5275	*	*	197
+       79	6127	4686	0	*	*	0	9853	1095	1787	
+
+C 198  4634	6190	4349	2519	4892	*	4982	4845	4223	4838	6196	6437	3709	4855	3024	5372	5019	3981	2885	5570	198
+       34	*	5435	*	*	*	0	9777	0	2619	
+
+P 199  4333	*	2070	2363	4551	6375	*	*	7252	5491	5413	3418	6153	3392	4261	3533	4396	*	6429	6584	199
+       9	*	7252	4322	74	1372	705	9745	1074	2922	
+
+E 200  *	*	920	3852	6197	*	3860	5245	6432	5485	*	3822	4359	*	6420	3909	6225	5554	*	5196	200
+       0	*	*	*	*	537	1687	9824	0	2354	
+
+G 201  2762	*	4358	4529	*	1919	6689	5647	5675	6471	5379	3421	4434	5436	5203	3130	3793	5556	*	6154	201
+       17	6449	*	0	*	*	0	9900	1000	1316	
+
+E 202  3193	*	7345	4458	*	1205	*	*	2874	6813	5951	4991	*	5659	4118	5394	4794	4551	*	4949	202
+       115	4329	5223	0	*	*	0	9900	1585	1316	
+
+S 203  6207	*	4397	3722	6653	*	5078	4223	3362	3294	*	3832	5698	4184	3871	3381	3618	2659	6262	6746	203
+       0	*	*	*	*	1318	740	9844	0	1928	
+
+V 204  *	7328	*	*	2183	*	7450	4090	*	4008	*	*	*	*	*	*	*	3367	6268	897	204
+       0	*	*	*	*	1175	844	9894	0	1494	
+
+K 205  5652	*	7333	4932	4972	*	5157	3264	4075	5477	6854	*	*	4163	3452	3265	1874	4241	5298	3567	205
+       0	*	*	1585	585	1106	901	9922	1000	1196	
+
+C 206  *	68	*	*	*	6905	*	6818	*	5765	*	*	*	*	*	*	*	6627	*	*	206
+       18	*	6334	*	*	*	0	9930	0	1018	
+
+S 207  3570	*	*	3365	*	6549	5759	2851	4026	6487	5451	5189	*	2873	3464	3672	3564	3081	*	5645	207
+       0	*	*	*	*	*	0	9904	0	1248	
+
+V 208  1464	6664	*	*	6478	6155	*	4581	6231	3850	*	*	5130	6503	*	5017	6136	1393	*	6301	208
+       10	7187	*	0	*	1086	919	9864	1000	1248	
+
+Q 209  4497	*	4071	3532	6161	5241	*	5825	3321	5337	*	4623	*	4339	3347	2073	2942	4035	*	6680	209
+       10	7112	*	0	*	0	*	9726	1000	1043	
+
+H 210  *	*	*	5971	4716	*	1581	*	6598	6136	*	1423	*	4143	4288	6390	4216	6133	*	5238	210
+       457	*	1880	*	*	*	0	9595	0	1000	
+
+D 211  5472	*	4044	1793	4519	3465	*	*	3091	5360	*	5256	3710	5329	3923	4348	4491	5634	*	4464	211
+       70	4407	*	0	*	123	3614	8420	1143	4006	
+
+S 212  3085	5809	6209	4842	5856	2507	5733	5723	4179	4295	*	5662	4192	*	5613	2065	3526	4105	*	*	212
+       29	5665	*	1585	585	*	0	8869	1008	1118	
+
+N 213  4415	*	5599	4575	5291	3631	*	4555	*	1808	*	2895	5310	3386	*	3434	4401	4672	*	5519	213
+       33	*	5465	*	*	*	0	8602	0	1118	
+
+P 214  3821	*	*	5350	*	1610	*	*	4935	3842	*	4458	2632	3558	5621	3376	4589	5330	*	*	214
+       61	4601	*	1701	530	889	1121	8486	1220	1470	
+
+V 215  3572	*	4190	2422	*	3792	*	*	3706	*	*	3897	5842	5415	5166	2649	2458	4367	*	*	215
+       33	5450	*	0	*	0	*	8327	1000	1294	
+
+Q 216  3466	*	3381	3315	*	*	*	*	3497	3629	5391	3494	5245	2858	*	3939	3438	3194	*	*	216
+       0	*	*	*	*	*	*	8519	0	0	
+
+E 217  5171	*	3652	2597	*	5466	4263	4252	4184	4086	*	4194	5304	3455	3368	3181	4612	3898	*	*	217
+       33	5468	*	0	*	*	*	8472	1000	0	
+
+L 218  3082	4338	5270	*	*	4327	5227	4083	2601	2182	*	5140	*	5016	*	4092	3935	3287	*	*	218
+       0	*	*	*	*	*	*	8117	0	0	
+
+D 219  5176	*	3039	3046	*	*	4812	5089	*	*	*	2513	*	5100	3509	3609	1936	5107	*	*	219
+       0	*	*	*	*	*	*	7972	0	0	
+
+V 220  *	*	*	*	4125	*	*	1241	*	3133	*	*	*	*	4736	*	3320	2356	*	3780	220
+       0	*	*	*	*	*	*	7898	0	0	
+
+N 221  3879	*	3230	4355	*	*	*	*	3943	*	*	3407	3426	3299	3652	2209	2980	*	*	*	221
+       0	*	*	*	*	*	*	6940	0	0	
+
+C 222  *	2633	*	*	*	*	*	1477	*	3224	*	*	*	*	*	*	3023	3026	*	2978	222
+       0	*	*	0	*	*	*	4192	0	0	
+
+//
+�HHsearch 1.5
+NAME  4c402988a256f524c3b41ec989161202
+FAM   
+FILE  4c402988a256f524c3b41ec989161202
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:35:57 2013
+LENG  58 match states, 58 columns in multiple alignment
+FILT  161 out of 1130 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.9 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCEEEECCCCCCCCCCCCCCCCCCEEEEEEECCCCEEEEEECCCCEEEEEHHHEEECC
+>ss_conf PSIPRED confidence values
+9889992452899988435369999999784489969999579977987876789987
+>Consensus
+xxxxxalxxxxxxxxxxlxxxxgxxxxvxxxxxxxwxxxxxxxxxxGxxPxxxvxxxx
+>4c402988a256f524c3b41ec989161202
+AEYVRALFDFNGNDEEDLPFKKGDILRIRDKPEEQWWNAEDSEGKRGMIPVPYVEKYG
+>gi|193586979|ref|XP_001952482.1| PREDICTED: tyrosine-protein kinase CSK-like [Acyrthosiphon pisum]
+---NTGRTHFGTTPQQLVTHSFCDRASPVSpVTNIGSYSSF----------VQHVKD--
+>gi|119593683|gb|EAW73277.1| protein kinase C and casein kinase substrate in neurons 2, isoform CRA_a [Homo sapiens]gi|119593684|gb|EAW73278.1| protein kinase C and casein kinase substrate in neurons 2, isoform CRA_a [Homo sapiens]
+---SyEKTQSYPTDWSDNESNNPfsstdangeLQSIRrQRHLGERSSIPGPV-----------------
+>gi|302414846|ref|XP_003005255.1| AbpA [Verticillium albo-atrum VaMs.102]gi|261356324|gb|EEY18752.1| AbpA [Verticillium albo-atrum VaMs.102]
+--QQELREANIPAAQPPAGAQAGGQRALIHSARANtsptlkWstrtggWAPTRrARAASSLATTSSSSRT-
+>gi|32565949|ref|NP_502695.2| Lateral Signaling Target family member (lst-4) [Caenorhabditis elegans]gi|24817571|emb|CAA19487.2| C. elegans protein Y37A1B.2b, confirmed by transcript evidence [Caenorhabditis elegans]
+---LRKAVENYPtPPGGSSEDAHRQLLerrrkQMLRrHTCSTLIKQDTSASPHKMKPpilmeeedEQHSTGK-
+>gi|161077253|ref|NP_001097376.1| endophilin B, isoform D [Drosophila melanogaster]gi|157400406|gb|ABV53852.1| endophilin B, isoform D [Drosophila melanogaster]
+---DKSLTNLLEDFHIEFDTTAvSTVIFVTECSpvNEDYMYGK-QGLLKGLVPRAFVEML-
+>gi|328776214|ref|XP_393399.3| PREDICTED: tyrosine-protein kinase CSK [Apis mellifera]
+-------------MTTHSNVTTPNITSHMNtGSTPVILTSNVTNPSNPAALS--VNP--
+>gi|226228854|ref|YP_002762960.1| hypothetical protein GAU_3448 [Gemmatimonas aurantiaca T-27]gi|226092045|dbj|BAH40490.1| hypothetical protein [Gemmatimonas aurantiaca T-27]
+---------------------HHSEVTLLSRYNSEWALIRSANNEEGYCSLKYLTAI-
+>gi|125805800|ref|XP_694393.2| PREDICTED: myosin-VIIa [Danio rerio]
+--YAVAIQD-lsRqgASSALAIFWQGSHIAELQTrrcAVYHkGWRIFSRRrVDKSKeredksnwgsflRCNSDSA----
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+A 1    1724	*	*	*	*	5313	*	*	4324	*	5402	3902	*	4100	4064	3087	3618	2222	*	*	1
+       40	5186	*	1000	1000	*	*	6926	1021	0	
+
+E 2    *	4593	4865	2730	6419	*	5147	*	3129	*	*	5170	2957	3140	2893	3025	5064	4011	*	*	2
+       0	*	*	*	*	*	*	7974	0	0	
+
+Y 3    *	6739	6407	5948	4398	5482	4689	5663	3593	2939	4684	7045	6414	3764	2613	5113	4904	4318	5573	2378	3
+       24	7109	6796	3501	133	*	*	8995	1148	0	
+
+V 4    2270	3045	6672	6790	4172	4746	*	5026	*	3454	5236	5606	6623	6456	6682	4378	6877	2369	6374	3359	4
+       33	6041	7138	0	*	0	*	9972	1184	1000	
+
+R 5    4297	*	*	4011	7549	4992	*	3996	2840	3914	7427	*	6726	4764	2009	5206	3904	2471	*	7177	5
+       0	*	*	*	*	*	0	10009	0	1046	
+
+A 6    1136	4424	6000	6019	*	4477	*	6380	4504	4884	5324	*	4812	*	5420	4486	4117	2888	*	6493	6
+       24	7054	6825	3585	126	*	0	10078	1000	1046	
+
+L 7    5722	*	7214	5021	*	*	5677	2425	4496	1444	3661	6928	6449	4381	4218	4400	4598	4761	*	*	7
+       8	*	7489	*	*	*	0	10054	0	1249	
+
+F 8    4510	4465	5047	4420	3703	5287	3998	*	4155	5159	7002	6900	*	4097	5864	5013	3753	4347	4928	1709	8
+       39	5840	6718	1358	713	*	0	10069	1183	1363	
+
+D 9    4193	6803	1721	3394	*	5437	4600	*	4822	*	*	3498	3369	6004	4559	2766	4385	*	*	*	9
+       30	7685	5999	1000	1000	2620	256	10029	1000	1568	
+
+F 10   6936	5310	5312	6403	1840	6430	3690	*	*	4957	*	4540	4919	6203	6390	3969	*	*	7405	1483	10
+       32	5504	*	3811	107	353	2202	9929	1647	1697	
+
+N 11   4519	5844	3696	2900	7087	4412	4610	4926	3834	4991	6340	4566	4604	3848	3769	3697	3430	3890	*	5492	11
+       36	5343	*	810	1219	*	0	10103	1308	1046	
+
+G 12   2130	6976	5594	4805	*	2693	*	7151	4453	*	*	6458	2257	6105	5518	2731	4093	5256	*	7097	12
+       101	4313	5863	276	2524	1418	676	10143	1832	1158	
+
+N 13   3493	6863	3640	3852	7326	4819	5452	5574	3730	5822	7259	4512	4502	3410	3400	3015	3080	4341	*	*	13
+       19	6239	*	614	1529	*	0	10132	1156	1414	
+
+D 14   3775	7058	3262	4048	5818	3210	4150	6902	4139	7014	5191	3388	3571	5007	4607	3183	4576	4873	6259	5550	14
+       95	4378	6002	1651	553	*	0	10218	1822	1414	
+
+E 15   3022	7001	3340	3091	*	4155	4849	5665	4700	*	5919	4341	2446	4528	4384	3990	3479	6563	*	*	15
+       31	5566	*	1497	631	811	1218	10176	1303	1748	
+
+E 16   4993	5956	2434	3847	*	2654	4872	5980	3881	5678	6572	3704	3958	4502	4203	3852	4461	5749	6377	7293	16
+       76	4617	6550	1907	448	*	0	10202	1682	1251	
+
+D 17   3996	7090	3281	1552	6048	3806	5161	*	*	4376	7396	5670	3768	3763	4965	3775	6246	5709	*	6232	17
+       27	7672	6204	0	*	1552	602	10148	1000	1456	
+
+L 18   4992	*	*	6195	5782	5508	7100	2410	7322	1081	5064	7141	5566	5804	5296	4406	7131	3914	6977	6583	18
+       54	5588	5976	2349	315	*	0	10168	1317	1552	
+
+P 19   3210	6439	4006	4251	5383	3843	7171	7308	5100	6211	5770	3813	4012	4805	5235	1820	3570	5247	6862	*	19
+       39	6049	6441	963	1038	2348	315	10127	1217	1857	
+
+F 20   4870	6187	6161	*	1954	*	4981	3549	6044	2002	4434	6876	4984	6054	6340	5462	6258	3407	5434	5007	20
+       12	6946	*	3585	126	760	1288	10100	1011	1875	
+
+K 21   4574	5709	3922	3137	*	5318	5317	7024	3034	5285	7048	4289	4187	3363	3195	3305	3758	4362	*	6661	21
+       30	6422	6852	1000	1000	*	0	10233	1135	1288	
+
+K 22   3258	*	5814	3064	5460	5582	5171	4233	2200	5520	*	5343	3667	3944	3704	4163	4661	4216	*	*	22
+       49	5469	6566	2008	412	1927	440	10222	1351	1451	
+
+G 23   5044	5677	3660	5374	*	897	7441	*	4309	5561	*	3688	5461	5097	4405	4325	7409	*	*	*	23
+       39	6233	6221	2967	197	683	1406	10239	1172	1538	
+
+D 24   4059	7272	1515	2287	*	3887	5625	6063	6784	*	7370	5302	5431	3355	4726	4758	5625	6470	*	6926	24
+       12	6871	*	1000	1000	*	0	10225	1024	1434	
+
+I 25   4400	5438	*	4071	5020	7054	5421	2543	4078	2902	6320	5910	7256	5212	3934	3878	4597	2482	7452	5531	25
+       24	*	5933	3178	169	2261	338	10225	1104	1434	
+
+L 26   4881	*	*	*	4281	5701	6665	2190	*	1869	5505	*	5169	7308	4876	*	6365	2072	6501	4595	26
+       30	5588	*	2733	235	*	0	10187	1309	1674	
+
+R 27   4597	*	4534	2928	5407	5224	4601	3999	4151	3771	6354	4616	5551	4060	3885	3594	3618	3894	6686	4124	27
+       29	6163	7385	457	1881	2613	257	10187	1158	1674	
+
+I 28   5277	7136	5890	5962	6348	6413	5292	2388	*	2352	4670	5909	4931	4824	6658	6835	6868	1529	*	*	28
+       40	5604	7254	0	*	*	0	10181	1299	1683	
+
+R 29   4403	6868	5265	5142	5656	4653	5790	3261	4714	1899	6328	5950	5112	5576	4529	4560	4059	2819	6140	5532	29
+       28	*	5694	*	*	2132	373	10164	0	1857	
+
+D 30   5163	6015	3786	2476	5628	3920	4139	5975	3469	5682	6993	3955	4966	3640	3474	3301	6063	5582	*	5386	30
+       348	2263	7406	696	1385	1359	713	10179	4789	2019	
+
+K 31   4753	4765	3238	3145	7235	3990	6254	5693	2414	4654	6770	4769	5516	3823	4098	3964	3958	4859	7056	6555	31
+       166	4658	3859	2249	341	*	0	10238	1695	1694	
+
+P 32   5401	6000	3015	3965	7124	3567	4803	4057	4913	3806	5281	4204	4667	4666	4910	3061	3299	4185	*	6325	32
+       161	4568	3979	3833	105	699	1381	10116	1746	3003	
+
+E 33   5134	4904	2392	2938	5220	4010	5092	*	4787	6561	7224	2988	4826	5545	3772	3903	3625	6326	6221	5993	33
+       36	5346	*	2383	307	756	1294	10174	1316	2891	
+
+E 34   4177	6863	2965	2928	6437	3407	5071	5465	3755	6501	5727	3871	3786	6761	4235	2724	4413	7388	7136	*	34
+       185	3430	5172	1125	885	2194	356	10197	2759	1743	
+
+Q 35   4908	*	2424	3841	*	1427	5691	6698	5718	5366	*	3893	5599	6529	5692	4584	4710	4366	6282	7162	35
+       70	5142	5727	3250	160	1111	897	10179	1623	2124	
+
+W 36   7451	*	*	5692	4131	4918	7053	6286	5959	4862	5909	7471	*	5152	6032	4524	6388	4902	734	4106	36
+       22	6723	7413	2585	263	3074	182	10213	1059	1950	
+
+W 37   5293	5267	5525	*	4569	5451	*	3779	6105	3054	5282	6872	6009	6434	5131	5836	6698	4061	1488	3051	37
+       42	5716	6694	2547	271	1437	665	10195	1255	1961	
+
+N 38   4725	7617	6112	4818	4365	5358	7892	4627	2740	2735	6183	5823	4475	3711	2971	4247	4679	5969	3998	4678	38
+       21	7047	7166	5392	35	1419	676	10182	1049	1768	
+
+A 39   3139	4106	6999	7411	6225	1609	*	5894	5249	6274	7295	*	5637	5576	5078	4923	4255	2005	*	7345	39
+       45	6720	5549	1035	966	1179	841	10228	1094	1565	
+
+E 40   5251	6099	4604	3048	5394	5331	5333	7435	2876	4653	5999	6322	6869	4515	2080	3911	3759	3968	*	5583	40
+       543	3557	2127	2165	364	1146	867	10225	2528	1769	
+
+D 41   4628	6154	3456	4626	6817	4904	4230	6005	4247	3506	*	2493	7165	*	3062	3248	4103	3581	*	6534	41
+       54	4973	7693	565	1625	208	2895	9839	1437	5097	
+
+S 42   3937	4734	5284	4522	6473	4571	5436	5001	3279	2446	6478	6239	5143	4431	4289	3672	4248	3020	*	5104	42
+       483	1814	*	389	2080	3025	189	10194	5552	1667	
+
+E 43   3851	7034	3681	3864	6494	2795	5144	*	4094	5766	7025	2967	4832	5228	3770	3566	3139	4672	*	6926	43
+       129	3648	7519	944	1058	*	0	10164	2389	1571	
+
+G 44   4629	5455	4396	4650	*	1264	7147	*	3914	5835	7236	3448	5005	4195	4196	3606	6747	7337	*	7367	44
+       9	7256	*	2322	322	2171	362	10134	1000	1685	
+
+K 45   4489	6643	5202	3048	6062	5134	5066	4965	2195	4855	5910	4747	5154	3420	3136	3251	5884	5705	*	6826	45
+       57	5347	6115	687	1401	2064	394	10155	1391	1508	
+
+R 46   3955	6581	6247	2417	7072	5682	6123	4056	3894	4073	7243	5338	4786	4148	3710	3317	3669	3602	6276	5504	46
+       68	4604	7596	3393	144	672	1425	10084	1650	1615	
+
+G 47   4202	6091	6091	5161	6116	609	*	7173	4519	*	*	5898	5007	7394	4532	4325	*	7306	*	6088	47
+       91	4678	5517	2839	217	*	0	10108	1590	1295	
+
+M 48   4557	7168	6714	6409	2918	7309	6555	3949	6138	2132	4822	6165	5569	*	5692	3989	5765	5166	2667	3101	48
+       42	5134	*	4157	83	2157	366	10012	1392	1745	
+
+I 49   4176	5114	5872	*	1935	6096	*	2850	5474	3359	7246	*	5262	*	*	5063	5903	1930	*	5488	49
+       36	5346	*	1836	474	1538	609	10053	1474	1553	
+
+P 50   5798	*	5607	5687	5790	5549	5780	*	6118	4808	6798	6050	465	7041	5775	4587	6718	*	*	6830	50
+       38	5269	*	2266	336	1478	641	10046	1344	1319	
+
+V 51   2505	6519	*	4288	5591	3591	6534	5644	3554	4009	*	5503	6505	4682	4321	2179	4414	3575	*	7290	51
+       39	6979	5749	1000	1000	*	0	10066	1000	1156	
+
+P 52   3681	*	4166	4219	*	4607	7092	6847	4132	*	*	2318	5454	3463	3980	2229	3574	6904	*	6013	52
+       0	*	*	*	*	2189	357	9866	0	1532	
+
+Y 53   6237	4719	7243	6058	2439	5663	3550	4228	6292	3937	5473	5369	5867	5689	5828	3682	7186	5270	5431	1881	53
+       50	4870	*	2683	244	463	1865	9812	1599	1388	
+
+V 54   3740	7240	*	6418	4963	5991	*	2843	*	2353	6411	*	*	6729	6989	3957	4414	1451	6714	6889	54
+       37	5320	*	2633	254	*	0	9812	1282	1006	
+
+E 55   3937	4997	4591	1864	*	*	5468	6668	3112	5347	7188	5373	5772	3851	3343	3766	3764	5364	6425	6127	55
+       41	5157	*	0	*	1210	816	9671	1322	1118	
+
+K 56   4976	*	4158	2713	5038	5238	7115	3731	3903	3077	5764	6202	2585	4550	4188	4340	5718	4176	*	6070	56
+       45	5026	*	3785	109	0	*	9476	1257	1006	
+
+Y 57   5390	6737	*	4409	4629	*	6709	2627	4862	1796	4650	6812	*	6748	*	5922	4399	2285	*	4095	57
+       134	3494	*	0	*	*	*	8915	1227	0	
+
+G 58   3465	*	2982	5455	*	1638	4170	*	5196	*	*	3772	5027	*	*	2608	4074	5117	*	*	58
+       0	*	*	0	*	*	*	6974	0	0	
+
+//
+�HHsearch 1.5
+NAME  4e1e30ab1e15c9c1545ff8328bcfebeb
+FAM   
+FILE  4e1e30ab1e15c9c1545ff8328bcfebeb
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:42:23 2013
+LENG  75 match states, 75 columns in multiple alignment
+FILT  64 out of 66 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  3.3 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCEEEEEEEEEEEECCCCCCCCCCCCCCEEEEEEEEEECCCCEECCCCCEEEEECCCEEEEECHHHEEECCC
+>ss_conf PSIPRED confidence values
+999999999100899957866899823216788899998614697965996499998402168963202888369
+>Consensus
+mkxGdrVrVxxsvxVyhxPxxrxxxfDlxGmEGeVxxxvxxwkGrxISanlPxxVxFxxkFxaHlredElExixx
+>4e1e30ab1e15c9c1545ff8328bcfebeb
+MNVGDRVRVTSSVVVYHHPEHKKTAFDLQGMEGEVAAVLTEWQGRPISANLPVLVKFEQRFKAHFRPDEVTLIED
+>gi|254423582|ref|ZP_05037300.1| Ferredoxin thioredoxin reductase variable alpha chain [Synechococcus sp. PCC 7335]gi|196191071|gb|EDX86035.1| Ferredoxin thioredoxin reductase variable alpha chain [Synechococcus sp. PCC 7335]
+MKVGDRVRVKAPLTLFNHPKFRNQPHNVEGMEGVISAILTDWEGRPISANYKIVASFEvegakRPFK-aHLHEDELEV-iE-
+>gi|158334553|ref|YP_001515725.1| ferredoxin-thioredoxin reductase variable alpha chain [Acaryochloris marina MBIC11017]gi|158304794|gb|ABW26411.1| ferredoxin-thioredoxin reductase variable alpha chain [Acaryochloris marina MBIC11017]
+MQVGDQVRVKESVIIYHHPEHRNNPFDIKGTEGELIQVIKDWQGREVSANYPYLVKFSKKLRIHLGEHEIESV--
+>gi|302772070|ref|XP_002969453.1| hypothetical protein SELMODRAFT_170523 [Selaginella moellendorffii]gi|300162929|gb|EFJ29541.1| hypothetical protein SELMODRAFT_170523 [Selaginella moellendorffii]
+-GVGSRIRVKGPLKVFHVPK--NPEFDLGGQEGEVKEVLTSWKGKIISANLPYKTQFAlsidgkeVKLIAHLREDEFEVIG-
+>gi|729538|sp|P38365.2|FTRV_SPIOL RecName: Full=Ferredoxin-thioredoxin reductase, variable chain, chloroplastic; Short=FTR-A; Short=FTR-V; Short=Ferredoxin-thioredoxin reductase subunit A; Flags: Precursorgi|474766|emb|CAA55480.1| ferredoxin:thioredoxin reductase [Spinacia oleracea]gi|861138|emb|CAA54408.1| ferredoxin-thioredoxin reductase SU A [Spinacia oleracea]
+-KVGCKVKVKSPLKVYHVPKL--PEVELTpDMVGVIKQYVGFWKGKYISPNYPFKVEYRidvpdrgsVKLVVHLKEEEFEIIA-
+>gi|195655467|gb|ACG47201.1| ferredoxin-thioredoxin reductase, variable chain [Zea mays]
+-KIGRRVRVTAPLRVYHVLKA--PDLDIQGMEGVVKQYVCVWKGKRVTANFPFKVEFElavegqpkpVRFFAHLREDEFEFVDG
+>gi|255074043|ref|XP_002500696.1| predicted protein [Micromonas sp. RCC299]gi|226515959|gb|ACO61954.1| predicted protein [Micromonas sp. RCC299]
+-EAGDKVKVVSKVLVYHVpKGDRKNGTDLSGWEGVVDSRADDYNGTYISANLEVKVAFavpndpkGKTFIVHCKENELEK---
+>gi|53801456|gb|AAU93930.1| plastid ferredoxin-thioredoxin reductase variable chain subunit A [Helicosporidium sp. ex Simulium jonesi]
+-REGATVRVTSPITVWHVPKFR-KGMNVQGLQGKIMQNVSVFRGVPLSPSKPWKVAIDakdpagqaFKFVMHLGDEEMEVLN-
+>gi|307110609|gb|EFN58845.1| hypothetical protein CHLNCDRAFT_140698 [Chlorella variabilis]
+-AEGARVKVKAPVKVYHVGKYK-AGLELEGMEGTVVQPnVCDYKhhdGKkhDLSATLPVKVQFmvpapdggkDVKVLVHLVsslagvaDDEVEA---
+>gi|219111423|ref|XP_002177463.1| predicted protein [Phaeodactylum tricornutum CCAP 1055/1]gi|217411998|gb|EEC51926.1| predicted protein [Phaeodactylum tricornutum CCAP 1055/1]
+-EKGALVRVCvEGVKAFQVPKKGQGTFDAdknfvlgekflllpVGMRGTITKIY---NQDEVSANFPVQVKFQpgtnleegydapVAFMMHMETYEIEVI
+--
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	4653	*	*	*	4076	4985	202	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	2473	0	0	
+
+N 2    5248	*	*	2740	*	5857	*	*	964	*	*	4650	5610	2541	4450	5954	*	*	*	*	2
+       0	*	*	*	*	*	*	3275	0	0	
+
+V 3    3271	*	*	3212	*	*	*	2383	3617	5183	*	*	3659	6449	*	*	5826	1398	*	*	3
+       0	*	*	*	*	*	*	3316	0	0	
+
+G 4    *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	4
+       0	*	*	*	*	*	*	3316	0	0	
+
+D 5    2369	5482	897	6281	*	*	*	*	4225	5997	*	*	*	4594	5194	3866	5184	*	*	*	5
+       0	*	*	*	*	*	*	3316	0	0	
+
+R 6    *	*	*	*	*	*	*	*	1985	4238	*	*	*	3851	779	*	4558	*	*	*	6
+       0	*	*	*	*	*	*	3316	0	0	
+
+V 7    *	*	*	*	*	*	*	3895	*	*	*	*	*	*	*	*	*	100	*	*	7
+       0	*	*	*	*	*	*	3316	0	0	
+
+R 8    *	5087	*	*	*	*	*	*	2027	*	*	*	*	5826	672	*	4674	4613	*	*	8
+       0	*	*	*	*	*	*	3316	0	0	
+
+V 9    *	*	*	*	*	*	*	3827	*	*	*	*	*	*	*	*	*	105	*	*	9
+       0	*	*	*	*	*	*	3316	0	0	
+
+T 10   4960	3960	*	5158	*	*	*	3684	1543	*	*	4464	*	6270	4794	3918	2151	3857	*	*	10
+       79	4238	*	0	*	*	*	3316	1095	0	
+
+S 11   2038	*	6722	2119	*	4020	*	*	5205	*	*	5924	*	4718	5680	2592	3280	3550	*	*	11
+       0	*	*	*	*	*	*	3316	0	0	
+
+S 12   4982	*	*	*	*	4238	*	*	4820	*	*	6022	1476	*	*	985	*	*	*	*	12
+       15	6582	*	0	*	*	*	3316	1000	0	
+
+V 13   *	*	*	*	*	*	*	3480	*	2266	*	*	*	*	*	*	5156	568	*	*	13
+       0	*	*	*	*	*	*	3316	0	0	
+
+V 14   *	*	*	*	*	*	*	2687	1692	4820	*	*	*	*	3630	*	3332	1645	*	*	14
+       0	*	*	*	*	*	*	3316	0	0	
+
+V 15   4238	*	*	*	*	*	*	4872	*	5143	6472	*	*	*	*	*	*	195	*	*	15
+       0	*	*	*	*	*	*	3316	0	0	
+
+Y 16   *	*	*	*	2345	*	4499	*	*	*	*	*	*	*	*	*	*	*	4558	481	16
+       0	*	*	*	*	*	*	3316	0	0	
+
+H 17   *	*	*	*	*	*	483	5295	*	*	*	2695	*	4238	*	*	4860	5876	*	*	17
+       0	*	*	*	*	*	*	3316	0	0	
+
+H 18   4594	*	*	5710	*	*	1074	*	*	*	*	5142	*	*	*	*	*	1197	*	*	18
+       96	4820	5103	0	*	*	*	3316	1049	0	
+
+P 19   5945	*	*	*	*	5312	*	5889	4808	4630	6348	*	252	*	*	6210	*	*	*	*	19
+       0	*	*	*	*	*	0	3309	0	1034	
+
+E 20   6434	*	4597	1691	*	3950	*	*	1332	*	*	*	*	3019	4262	*	*	*	*	*	20
+       72	*	4357	*	*	0	*	3309	0	1034	
+
+H 21   3570	6112	4792	*	3767	*	1034	*	4222	5380	5095	3862	*	*	*	*	*	3286	*	5306	21
+       206	*	2908	*	*	*	0	3302	0	1078	
+
+K 22   5757	*	*	*	*	3786	4374	*	2746	*	*	*	3808	*	643	*	*	*	*	*	22
+       385	*	2094	*	*	1700	531	3238	0	1421	
+
+K 23   5498	*	*	*	*	1633	*	*	3129	*	*	1771	*	2990	*	4803	5089	4136	*	*	23
+       0	*	*	0	*	240	2707	3020	1000	1718	
+
+T 24   3962	*	4893	2124	*	4201	*	*	3249	*	*	4215	2259	2144	*	*	5374	*	*	*	24
+       37	*	5309	*	*	0	*	3297	0	1080	
+
+A 25   1936	*	3884	2501	*	2434	*	*	*	*	*	*	2131	*	*	5265	4188	*	*	*	25
+       0	*	*	*	*	0	*	3326	0	1026	
+
+F 26   *	*	*	*	875	*	5143	*	*	2371	3996	*	*	*	*	5876	4820	3082	*	*	26
+       0	*	*	*	*	*	*	3316	0	0	
+
+D 27   *	*	235	4017	*	5802	*	*	*	*	*	3821	*	*	*	*	*	*	*	*	27
+       0	*	*	*	*	*	*	3316	0	0	
+
+L 28   3836	*	*	*	*	*	*	2334	*	850	3838	*	*	*	*	*	*	3225	*	*	28
+       79	4238	*	3807	107	*	*	3316	1095	0	
+
+Q 29   *	4819	4991	3662	*	4872	*	5680	1492	6281	5233	4330	*	2603	5121	4820	4088	3875	*	*	29
+       33	5482	*	0	*	*	*	3316	1017	0	
+
+G 30   *	*	4358	*	*	72	*	*	*	*	*	*	*	*	*	*	*	*	*	*	30
+       0	*	*	*	*	*	*	3316	0	0	
+
+M 31   5339	*	*	*	*	*	6209	5190	5199	2630	1047	*	*	3029	5710	4368	4788	*	4820	*	31
+       0	*	*	*	*	*	*	3316	0	0	
+
+E 32   *	*	6022	415	*	*	*	5710	*	*	*	5826	*	3402	4238	6208	6108	5482	*	*	32
+       0	*	*	*	*	*	*	3316	0	0	
+
+G 33   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	33
+       0	*	*	*	*	*	*	3316	0	0	
+
+E 34   *	*	4213	1057	6028	*	6259	*	4153	*	*	*	*	6404	*	*	2545	2338	*	*	34
+       0	*	*	*	*	*	*	3316	0	0	
+
+V 35   *	*	*	*	*	*	*	1587	*	3504	*	*	*	*	*	*	*	788	*	*	35
+       0	*	*	*	*	*	*	3316	0	0	
+
+A 36   4018	5997	4820	6127	4612	*	5132	3611	1865	4775	4218	5802	*	*	*	4383	3585	2267	*	*	36
+       0	*	*	*	*	*	*	3316	0	0	
+
+A 37   2665	*	4124	3801	*	4605	*	*	3221	*	*	4082	*	1710	*	2956	3808	*	*	*	37
+       0	*	*	*	*	*	*	3316	0	0	
+
+V 38   *	*	4594	*	*	*	*	1636	*	6485	*	4558	5377	5680	3968	*	*	2014	*	2132	38
+       35	5378	*	0	*	*	*	3316	1021	0	
+
+L 39   3562	*	*	*	*	*	*	2992	*	1827	*	*	*	*	*	*	*	1137	*	4238	39
+       101	*	3893	*	*	*	*	3316	0	0	
+
+T 40   4053	4766	3173	6258	*	2824	5877	*	5719	6217	*	3285	*	*	4989	3198	1602	5977	*	*	40
+       0	*	*	*	*	*	0	3184	0	1132	
+
+E 41   *	*	1459	2525	5424	*	4106	6185	*	3816	*	6500	*	4048	*	5061	5064	2599	*	*	41
+       0	*	*	*	*	*	0	3184	0	1132	
+
+W 42   *	*	*	*	3366	*	5645	*	*	4946	*	*	*	*	*	*	*	*	416	3308	42
+       0	*	*	*	*	347	2226	3184	0	1132	
+
+Q 43   *	*	5123	3980	*	*	5910	*	975	*	*	2712	*	2590	3969	*	*	*	*	*	43
+       35	5367	*	1585	585	0	*	3314	1021	1000	
+
+G 44   *	*	*	*	*	79	*	*	*	*	*	*	*	4238	*	*	*	*	*	*	44
+       0	*	*	*	*	*	*	3316	0	0	
+
+R 45   *	*	4238	*	*	*	*	*	1490	*	*	*	*	*	1045	*	4820	3816	*	*	45
+       35	5378	*	1000	1000	*	*	3316	1021	0	
+
+P 46   *	*	5377	3480	*	*	*	4740	6028	*	*	*	1193	5710	2546	*	3641	4670	*	3535	46
+       0	*	*	*	*	*	*	3316	0	0	
+
+I 47   *	*	*	*	*	*	*	835	*	2949	*	*	*	*	*	*	*	1689	*	*	47
+       0	*	*	*	*	*	*	3316	0	0	
+
+S 48   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	172	3157	*	*	*	48
+       0	*	*	*	*	*	*	3316	0	0	
+
+A 49   456	*	*	*	*	*	*	*	*	*	*	*	1885	*	*	*	*	*	*	*	49
+       0	*	*	*	*	*	*	3316	0	0	
+
+N 50   *	*	*	*	*	*	*	*	*	*	*	494	*	*	*	4558	2015	*	*	*	50
+       0	*	*	*	*	*	*	3316	0	0	
+
+L 51   *	*	*	*	2678	*	*	*	4558	613	6172	*	*	*	6157	*	*	*	5924	3280	51
+       0	*	*	*	*	*	*	3316	0	0	
+
+P 52   *	*	*	3968	*	*	*	*	5143	*	*	*	140	*	*	*	*	*	*	*	52
+       0	*	*	*	*	*	*	3316	0	0	
+
+V 53   *	*	*	*	2431	*	*	2254	*	4881	*	*	*	*	*	*	*	1502	4558	2511	53
+       0	*	*	*	*	*	*	3316	0	0	
+
+L 54   *	5680	*	*	*	*	*	3139	1239	2462	*	*	*	2784	6157	*	*	3285	*	*	54
+       0	*	*	*	*	*	*	3316	0	0	
+
+V 55   5143	*	*	*	*	*	*	3459	*	*	*	*	*	*	*	*	5141	230	*	*	55
+       0	*	*	*	*	*	*	3316	0	0	
+
+K 56   2152	*	*	2560	*	6271	*	*	2472	*	*	*	*	1664	4600	4601	*	6143	*	*	56
+       0	*	*	*	*	*	*	3316	0	0	
+
+F 57   *	*	*	*	201	*	*	3966	*	5184	*	*	*	*	*	*	*	5928	*	5482	57
+       267	2567	*	2767	229	*	*	3316	1389	0	
+
+E 58   5934	*	2524	3275	6141	2031	6405	*	*	4255	*	5052	4962	3842	5475	2686	5323	4363	*	*	58
+       1107	1474	2507	3123	176	0	*	3319	1856	1000	
+
+Q 59   *	*	5805	5400	4347	5312	*	5631	1808	*	5308	5035	3504	5845	3933	*	*	1508	*	*	59
+       0	*	*	*	*	0	*	3189	0	1398	
+
+R 60   4238	*	*	*	*	*	*	*	697	*	5132	*	5143	*	2071	*	4820	*	*	*	60
+       0	*	*	*	*	*	*	3316	0	0	
+
+F 61   *	*	*	*	354	*	*	*	*	4166	*	*	*	*	*	*	*	5377	*	2861	61
+       0	*	*	*	*	*	*	3316	0	0	
+
+K 62   6127	*	*	*	2852	*	*	3398	1745	4159	4238	*	*	5559	2684	4088	*	3192	*	*	62
+       41	*	5143	*	*	*	*	3316	0	0	
+
+A 63   833	*	*	*	*	5272	*	5818	6602	*	3322	*	*	*	*	6134	5036	2058	*	*	63
+       15	6602	*	0	*	0	*	3299	1056	1031	
+
+H 64   *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	64
+       0	*	*	*	*	*	*	3316	0	0	
+
+F 65   *	4820	*	*	1937	*	*	*	*	736	3617	*	*	*	*	*	*	5537	*	*	65
+       0	*	*	*	*	*	*	3316	0	0	
+
+R 66   5630	5537	*	4238	*	3630	4021	*	1818	*	*	*	*	5081	1232	*	*	5377	*	*	66
+       35	5378	*	2807	222	*	*	3316	1021	0	
+
+P 67   3229	*	2765	701	*	*	*	*	*	*	*	*	4664	*	*	4700	4238	*	*	*	67
+       0	*	*	*	*	*	*	3316	0	0	
+
+D 68   *	*	833	2730	5415	5444	5082	*	*	*	*	3148	*	6086	*	4997	*	*	*	4238	68
+       0	*	*	*	*	*	*	3316	0	0	
+
+E 69   *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	69
+       0	*	*	*	*	*	*	3316	0	0	
+
+V 70   *	*	*	*	2094	*	*	2990	*	1081	4558	*	*	*	*	*	*	3002	*	*	70
+       0	*	*	*	*	*	*	3316	0	0	
+
+T 71   5630	*	4593	328	*	*	*	*	6108	*	5826	6022	*	4444	*	*	4367	*	*	*	71
+       0	*	*	*	*	*	*	3316	0	0	
+
+L 72   2793	*	*	*	3018	*	*	3364	3963	3471	*	*	6165	*	*	4387	5295	1394	*	6237	72
+       47	*	4972	*	*	*	*	3323	0	0	
+
+I 73   3361	*	*	*	*	*	*	1222	*	1983	*	*	*	*	*	*	*	2178	*	*	73
+       128	3555	*	183	3067	0	*	3173	1158	1031	
+
+E 74   3266	*	2125	2610	*	2522	*	*	*	*	*	3177	5227	4565	4715	3167	*	*	*	*	74
+       0	*	*	*	*	*	*	3006	0	0	
+
+D 75   *	*	895	1499	*	3204	*	*	*	*	*	*	*	*	*	*	*	*	*	*	75
+       0	*	*	0	*	*	*	1734	0	0	
+
+//
+�HHsearch 1.5
+NAME  4f78b9c2edbc3ae2d8e9a0de15b7225f
+FAM   
+FILE  4f78b9c2edbc3ae2d8e9a0de15b7225f
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:28:29 2013
+LENG  73 match states, 73 columns in multiple alignment
+FILT  107 out of 1112 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  11.7
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCEEEEEECCCCCHHHHHHHHHHHHCCCCEEEEEEECCCCEEEEEECCCCHHHHHHHHHHCCCCCEECCCCC
+>ss_conf PSIPRED confidence values
+9857999967976658999999998406864479875258669998478899999999998499712323269
+>Consensus
+xxxxxxxxxxxxxcxxcxxxxxxxxxxxxxvxxxxxxxxxxxxxvxxxxxxxxxxxxxlxxxgxxxxxxxxxx
+>4f78b9c2edbc3ae2d8e9a0de15b7225f
+SGTRYSWKVSGMDCAACARKVENAVRQLAGVNQVQVLFATEKLVVDADNDIRAQVESALQKAGYSLRDEQAAE
+>gi|289762151|ref|ZP_06521529.1| metal cation transporter P-type ATPase G ctpG [Mycobacterium tuberculosis GM 1503]gi|289709657|gb|EFD73673.1| metal cation transporter P-type ATPase G ctpG [Mycobacterium tuberculosis GM 1503]
+-DDDPGAMARGYQCAGIRDIATISDRCAlrQRHLVLAAAVPAYASRSASNRKAgvVQKIIDwstrtlsgvrrdvaaqpsgeTSDACcDGED-------
+>gi|84488951|ref|YP_447183.1| cation transport ATPase [Methanosphaera stadtmanae DSM 3091]gi|84372270|gb|ABC56540.1| predicted cation transport ATPase [Methanosphaera stadtmanae DSM 3091]
+------KVDKICDCaDDCCTGNTHHEHNHEHNHehnhehnhedCCDDDCCSDikicncgDCDD---------DDEEEEEVIKEGipllK------
+>gi|108763657|ref|YP_629240.1| copper-translocating P-type ATPase [Myxococcus xanthus DK 1622]gi|108467537|gb|ABF92722.1| copper-translocating P-type ATPase [Myxococcus xanthus DK 1622]
+-----SHVPHSRT---PPPSPAGEAPAIDPVCGMKVDPNApkggHLEHAGLTYAfCNPRCRERFRADPerYL--------
+>gi|304384108|ref|ZP_07366561.1| P-ATPase superfamily P-type ATPase cadmium transporter [Prevotella marshii DSM 16973]gi|304334735|gb|EFM01012.1| P-ATPase superfamily P-type ATPase cadmium transporter [Prevotella marshii DSM 16973]
+----------MDAGKYIGRENKCQMMfatELQPFFYYLCNKEEK--------------------------------
+>gi|340622612|ref|YP_004741064.1| putative cation-transporting P-type ATPase [Capnocytophaga canimorsus Cc5]gi|339902878|gb|AEK23957.1| Putative cation-transporting P-type ATPase [Capnocytophaga canimorsus Cc5]
+----NEa----QSYTYFVKgmscsgceqtvgerletisgvtvsq--inaKNKTVTLNAPSTISFHKLSQTlegthysihktleeattiSQKTssnngVFY
+---cpMqCEGDKtyskagd-CPICGMDLV------
+>gi|187928736|ref|YP_001899223.1| heavy metal translocating P-type ATPase [Ralstonia pickettii 12J]gi|241114288|ref|YP_002973763.1| heavy metal translocating P-type ATPase [Ralstonia pickettii 12D]gi|187725626|gb|ACD26791.1| heavy metal translocating P-type ATPase [Ralstonia pickettii 12J]gi|240868861|gb|ACS66519.1| heavy metal translocating P-type ATPase [Ralstonia pickettii 12D]
+---EVGHQRYWFCSRHCEKTFLADPARYlshdahdahdhDGAAHDHAPTGVAAVSastkqLAKDPicGmmVDKATALSAERGGRKY-------
+>gi|120610206|ref|YP_969884.1| heavy metal translocating P-type ATPase [Acidovorax citrulli AAC00-1]gi|120588670|gb|ABM32110.1| heavy metal translocating P-type ATPase [Acidovorax citrulli AAC00-1]
+-------------mCPGGWAHSLGaml-SD--PSESPAASSAidrealpgSPSVDGdaLLDDPQEWpsfgrPHASATgPAQ------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+S 1    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	1
+       0	*	*	*	*	*	*	1000	0	0	
+
+G 2    3215	*	2911	2142	*	3250	*	*	*	*	*	*	*	*	3513	2165	*	3094	*	*	2
+       0	*	*	*	*	*	*	5380	0	0	
+
+T 3    *	*	2673	2749	*	3925	*	*	2804	*	3777	*	3712	*	3760	3882	3075	3721	*	*	3
+       238	2718	*	1815	482	*	*	6659	1437	0	
+
+R 4    5305	*	3625	4059	*	*	4091	*	3019	3935	*	*	5318	2768	2105	*	2994	4151	*	*	4
+       0	*	*	*	*	*	*	9215	0	0	
+
+Y 5    2861	5659	4623	*	*	*	4139	4086	4675	3738	4804	4225	3885	4752	4430	5044	3463	2635	*	4327	5
+       97	3945	*	2722	237	*	*	11091	1833	0	
+
+S 6    6256	5672	5262	2709	*	4015	4615	4365	3733	3702	4054	4459	4345	3991	3622	4714	3379	4271	*	*	6
+       31	5543	*	1202	823	0	*	12036	2109	1000	
+
+W 7    3324	5405	*	4998	3007	4628	5030	3204	4329	2848	5424	6219	*	5164	5556	4227	5090	3843	5352	3476	7
+       41	5899	6448	1000	1000	*	0	12803	1092	1072	
+
+K 8    4020	*	4213	3615	6598	5383	3964	5308	3345	4809	4898	5322	3939	3369	3684	3046	4616	4865	*	4303	8
+       0	*	*	*	*	*	0	12810	0	1304	
+
+V 9    4652	*	3848	4495	3983	6094	6358	2378	4951	2882	6360	4526	5094	5037	5788	5361	3920	2538	*	*	9
+       0	*	*	*	*	*	0	12810	0	1304	
+
+S 10   3671	6080	3284	3468	6206	5535	4117	6170	3127	5320	6281	4586	3826	4234	4544	3465	3985	5094	6521	4247	10
+       224	4864	3188	0	*	756	1294	12810	1289	1304	
+
+G 11   5349	*	3673	4442	*	1599	4515	4314	5036	5880	6020	3582	4026	4425	4990	5169	4133	5888	6098	5328	11
+       97	5225	4696	1876	459	734	1326	12764	2100	2938	
+
+M 12   3666	5580	4857	5307	4372	4364	6051	2676	*	3475	2594	5338	4368	4952	6190	4786	*	3168	6133	4813	12
+       24	*	5903	*	*	1842	472	12905	0	2397	
+
+D 13   3858	3855	3018	4003	6553	6352	3266	5704	4307	*	4318	6546	4157	3678	4096	3463	4014	4194	*	5738	13
+       101	3889	*	1264	777	920	1084	12903	2311	2245	
+
+C 14   4764	1225	3936	6080	5844	4545	4716	5417	4450	4775	5270	5660	4837	*	5179	3845	4430	5972	6475	*	14
+       42	5112	*	0	*	*	0	13122	1296	1469	
+
+A 15   2824	6001	3525	3984	*	3635	*	6523	5403	5446	4047	3762	3328	4189	3374	4278	4601	4908	6324	4988	15
+       36	6149	6577	1585	585	*	0	13316	1018	1469	
+
+A 16   3292	*	5099	5155	5125	2704	4339	*	6256	5075	4774	3694	4278	6151	4221	3035	2904	4014	*	5982	16
+       47	5450	6818	0	*	488	1801	13298	1298	1702	
+
+C 17   6735	1047	4658	4638	*	4133	5712	4147	5853	4315	4643	6656	4821	4883	6526	6513	5800	4217	6148	*	17
+       25	6034	9260	3079	182	1012	988	13364	1325	1292	
+
+A 18   2652	5938	5844	3379	5103	3265	*	4782	2868	4224	6909	4839	3567	6223	4536	5352	4786	3655	*	5218	18
+       114	3925	6663	2769	229	*	0	13350	2247	1265	
+
+R 19   3259	6032	3542	5154	*	3306	5793	6780	3239	4540	5308	3722	4380	4345	3512	3311	4222	5577	5158	*	19
+       11	*	7090	*	*	3255	160	13146	0	2431	
+
+K 20   4298	4548	3982	4106	5412	3966	4660	4972	2764	3672	6786	4381	5000	4573	3240	5394	4440	3843	*	5334	20
+       0	*	*	870	1143	789	1247	13183	1774	2478	
+
+V 21   3832	6696	*	6456	3733	*	4393	2306	5971	2929	4040	4390	4157	5057	6622	4580	4861	2793	*	6463	21
+       38	6240	6321	2000	415	*	0	13367	1014	1499	
+
+E 22   3753	*	4143	2560	*	*	4511	5936	3457	3778	6995	3525	4421	4656	3021	4379	3422	5069	*	*	22
+       18	6355	*	1000	1000	*	0	13307	1000	1744	
+
+N 23   2865	6021	3551	3706	*	4258	3755	5149	3254	5297	*	3788	5077	6793	3322	4052	3505	4598	*	*	23
+       181	4148	4020	916	1090	2003	414	13307	1940	1744	
+
+A 24   3152	*	4298	4968	5066	4705	3427	4519	4581	4080	*	4278	4478	3605	4306	3019	3898	3655	*	*	24
+       59	4632	*	2124	376	401	2043	13091	1507	3320	
+
+V 25   3485	6366	4303	5260	4141	5505	4108	3260	5254	1964	3660	*	4167	4902	*	5624	*	3839	5941	5414	25
+       34	5423	*	341	2247	*	0	13506	1649	1416	
+
+R 26   3999	6103	3359	2752	*	4457	4255	6575	3929	4648	4877	5746	4848	3724	2798	3410	4340	*	*	6285	26
+       144	4451	4342	1831	476	1914	445	13533	2128	1654	
+
+Q 27   3653	5963	4717	3238	6036	3385	3879	5055	3596	4522	6239	3895	4439	3736	3304	4194	4130	6558	*	*	27
+       75	4646	6558	1877	458	*	0	13552	1704	2524	
+
+L 28   3343	*	6715	4786	4725	4400	3856	3914	5064	2840	4233	3642	6280	4167	4351	4394	5072	3337	*	4700	28
+       214	4016	3716	2211	351	379	2115	13556	2186	2729	
+
+A 29   3070	6701	3203	3148	5802	4264	3650	*	3876	5002	*	4517	3460	4605	4591	3148	4048	*	*	6567	29
+       87	4603	5872	2240	343	1680	540	13527	1642	2982	
+
+G 30   3392	6246	4191	4765	6023	1610	4873	6097	4842	5226	*	4921	3610	4800	4346	4906	3714	6136	6665	6244	30
+       13	6856	*	0	*	2828	219	13531	1000	2753	
+
+V 31   3454	6311	4847	6130	5960	4204	4354	2460	*	3013	*	5191	6613	5225	6249	4248	5833	1865	*	*	31
+       17	*	6436	*	*	2039	402	13540	0	2490	
+
+N 32   3627	4794	3855	3550	6129	5096	4146	5132	3402	3539	6167	5241	4330	5270	4016	3844	3198	4362	*	6127	32
+       122	3997	5779	2416	299	236	2729	13490	2250	2261	
+
+Q 33   3623	4552	3584	3653	*	3288	3366	6047	4044	6552	*	4303	3781	4035	5371	3196	4202	6106	6869	4947	33
+       14	6922	9272	1585	585	1920	443	13691	1011	1436	
+
+V 34   2896	3892	5493	5131	4733	4821	4292	5891	6280	3894	3843	4743	4738	6671	5242	3343	4346	2825	5011	5267	34
+       0	*	*	*	*	1456	654	13669	0	1498	
+
+Q 35   3926	4960	3653	3779	6027	3713	4608	6642	3480	3963	*	5022	4125	3636	4086	2993	4396	4945	*	5617	35
+       50	5545	6278	0	*	*	0	13704	1350	1223	
+
+V 36   2876	4112	5201	4546	4818	5059	4059	3426	5729	3541	4575	6706	5017	*	4607	3935	5645	2906	6552	4063	36
+       11	*	6978	*	*	2179	360	13697	0	1748	
+
+L 37   3176	*	2434	4634	5735	4729	3435	6250	4423	5897	*	2702	4831	4690	6255	3586	3780	5084	*	6335	37
+       56	5284	6344	4284	76	*	0	13720	1553	1878	
+
+F 38   3937	4368	6489	4501	3213	4701	4528	4329	4867	2668	4905	6018	3652	4891	4327	4871	4670	3520	*	5182	38
+       87	4835	5395	2872	212	258	2612	13696	1498	2207	
+
+A 39   3689	5264	4198	2964	6969	4673	4092	5220	4905	3411	5573	4528	4032	5690	4330	3018	3881	4483	6344	6528	39
+       14	*	6707	*	*	2222	348	13753	0	1680	
+
+T 40   3230	*	4983	3839	6209	5060	5072	6907	3809	4612	5395	3694	3336	3764	4518	2775	3360	5071	*	7048	40
+       45	5885	6148	688	1399	995	1005	13666	1239	1723	
+
+E 41   3759	5888	4467	2992	*	2787	4432	6273	3273	4807	*	5272	5410	3650	3784	3161	4778	5030	*	6102	41
+       307	2491	6171	1890	454	431	1952	13671	4325	1686	
+
+K 42   3263	4566	4059	3110	*	4618	4406	5851	3765	4010	*	6179	4322	4804	3844	3063	3491	4340	*	6679	42
+       47	*	4965	*	*	*	0	13497	0	1250	
+
+L 43   3177	4518	5454	4187	6999	5921	5176	4648	6652	2623	4287	4890	4112	4766	*	4632	3378	2586	*	5550	43
+       50	5396	6631	558	1641	*	0	13400	1264	1928	
+
+V 44   3602	4532	4263	3560	6871	4048	5076	3819	3703	5811	*	5341	4786	4476	3340	3173	3568	3878	*	7482	44
+       285	2978	4255	2404	302	1060	943	13350	3648	2187	
+
+V 45   4023	4632	6073	4292	4405	*	4056	2581	6293	3545	6668	5448	5316	6230	5663	4791	3957	1899	*	*	45
+       229	3558	4018	3242	161	3635	121	13245	2499	2896	
+
+D 46   2836	*	4008	2902	*	3471	4481	5509	3867	3713	6565	3873	5529	3965	5073	3970	4201	4323	*	*	46
+       91	5329	4798	1178	842	2956	199	12997	1912	3841	
+
+A 47   3769	4307	4854	5673	2920	3778	3355	5463	4773	3979	4952	5259	6277	*	5423	3770	4891	4632	5499	2916	47
+       31	*	5554	*	*	2061	395	12996	0	4040	
+
+D 48   3533	5591	2508	3343	6250	5097	3799	4966	4258	6444	6178	2982	4534	6408	4758	3312	5048	5168	*	5831	48
+       252	4808	3003	1812	484	4270	77	12844	1424	3817	
+
+N 49   3315	3626	4070	3537	6317	3897	4012	6129	4548	6211	6221	4776	3165	5065	4370	3522	3931	4325	*	5765	49
+       140	5169	3949	2414	300	1722	521	11617	1768	5455	
+
+D 50   3575	*	2946	3831	*	2565	6248	4602	4895	4445	*	4015	3898	4741	3645	3996	5407	4166	*	5324	50
+       962	1213	4182	843	1176	1816	482	11869	6826	4921	
+
+I 51   3131	5090	2875	3906	*	4495	*	4459	5384	3947	5388	3553	3843	3882	6150	3448	3862	5159	*	5274	51
+       413	2412	4039	997	1003	998	1002	11958	5583	4991	
+
+R 52   3621	*	4368	5522	4405	4481	3684	4045	4682	2961	4942	*	4240	4182	5455	3202	5600	3438	5163	4714	52
+       268	2560	*	1439	664	1053	949	12033	3703	3934	
+
+A 53   2763	4620	3602	3329	5837	4329	5003	6457	4931	5165	5669	4630	3404	3451	3139	4498	6578	4970	*	6203	53
+       30	*	5581	*	*	*	0	12481	0	2512	
+
+Q 54   3839	6478	3910	2659	*	4116	6565	6249	3247	5815	6825	5500	3762	4064	3211	3176	3943	4593	*	*	54
+       60	4628	*	2326	321	1235	798	12308	1797	2874	
+
+V 55   3671	6048	4670	5633	4113	4510	5908	2261	*	2737	4624	*	4720	4878	*	6936	4846	2322	*	6095	55
+       91	4540	5760	1596	580	1091	914	12455	1583	2014	
+
+E 56   2992	*	3648	3735	5402	5922	4463	2913	3869	3407	4869	*	5303	4058	4534	3926	6492	3481	6767	*	56
+       71	4743	6583	1435	666	409	2019	12472	1572	1846	
+
+S 57   4030	6285	2804	2533	*	4945	4947	*	2797	4422	*	4551	5458	4152	3444	4551	4579	4532	*	6239	57
+       128	3725	6784	3521	131	0	*	12710	2371	1269	
+
+A 58   2561	5008	4949	3715	4851	4877	5555	4476	3782	4376	*	4355	3887	4836	4478	3983	3131	4021	*	*	58
+       95	3970	*	1029	972	596	1563	12552	1908	1631	
+
+L 59   3882	4477	5165	4691	5267	6087	5784	2077	*	1725	6221	*	5934	5315	5376	3979	*	3645	*	*	59
+       57	4680	*	1702	530	*	0	12656	1525	1042	
+
+Q 60   3415	6188	3638	2499	6111	5385	4863	*	3619	4588	*	4490	3498	3824	3706	3987	3752	6793	*	6275	60
+       71	4765	6493	0	*	*	0	12496	1485	1266	
+
+K 61   2852	*	3203	3115	*	3291	*	4653	3238	5997	*	5412	5121	6446	3784	2542	4465	5604	*	*	61
+       48	6274	5636	0	*	1771	500	12324	1000	1496	
+
+A 62   2722	3581	3902	4330	6393	3665	6227	3745	6234	3167	5145	5101	4298	*	6451	3633	4527	3856	*	4955	62
+       126	3582	*	1243	792	0	*	12319	2728	1749	
+
+G 63   3817	7223	3945	3975	*	1179	*	5663	4581	*	*	3754	3964	6253	4373	4279	4657	*	*	*	63
+       300	4808	2717	1567	594	*	*	12427	1473	0	
+
+Y 64   6299	7115	5143	5176	2959	5548	3765	3765	4014	5861	4052	*	4428	*	3827	*	4720	4517	4502	2030	64
+       104	5354	4462	1585	585	0	*	11864	1183	3561	
+
+S 65   3514	*	3319	2948	*	3599	6289	5968	3698	4133	6444	*	3925	3980	4290	3805	3278	4055	*	6539	65
+       0	*	*	*	*	*	0	12238	0	1754	
+
+L 66   2416	4553	3973	4732	4954	3396	5762	3071	*	3142	6183	*	4596	5825	6068	6392	5183	3271	*	4057	66
+       47	4959	*	2000	415	0	*	11527	1076	1754	
+
+R 67   3251	5390	5807	3123	*	3573	*	3883	2675	4383	4958	*	3829	4225	3876	4635	*	3297	*	5960	67
+       68	4445	*	3700	115	*	*	11306	1052	0	
+
+D 68   3705	*	3699	3424	*	3824	*	4596	4882	2906	4075	*	3284	4833	*	3923	3103	3405	*	*	68
+       0	*	*	*	*	*	*	9099	0	0	
+
+E 69   1784	*	*	2900	*	*	*	2765	*	*	2778	*	2879	*	*	2767	*	*	*	*	69
+       0	*	*	*	*	*	*	4825	0	0	
+
+Q 70   *	*	1000	*	*	*	*	*	*	*	*	*	*	1000	*	*	*	*	*	*	70
+       0	*	*	*	*	*	*	1752	0	0	
+
+A 71   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	71
+       0	*	*	*	*	*	*	1000	0	0	
+
+A 72   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	72
+       0	*	*	*	*	*	*	1000	0	0	
+
+E 73   *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	73
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  5039b5951b98074071f6c69dc58114cc
+FAM   
+FILE  5039b5951b98074071f6c69dc58114cc
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:00:59 2013
+LENG  127 match states, 127 columns in multiple alignment
+FILT  147 out of 1021 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.8 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEEECCCEEEEECCCCEEEEEEECCCCCCCCEEEEEEECCCCCCEEEEEEECCCCCEEECCCCCCCEEEEECCCCCEEEEEECCCCHHHCEEEEEEECC
+CCCCCCEECCCEEEEECCCCCCCCCCC
+>ss_conf PSIPRED confidence values
+9289914859995899899998974888888349999979999968999995578831326766762588754888789999987996569899999836
+998766799999999826998987589
+>Consensus
+xxxvxqxxxxxxxxGxxvxlxCxxxxxxxxxxxvxWxxxxxxxxxxxlxxxxxxxxxxxxxxxxxxrxxxxxxxxxxxxxLxixxxxxxDsgxYxCxxxx
+xxxxxxxfgxgtxLxVxxxxxxpxxxx
+>5039b5951b98074071f6c69dc58114cc
+EVKLQESGGDLVQPGGSLKLSCAASGFTFSSYTMSWVRQTPEKRLEWVASINNGGGRTYYPDTVKGRFTISRDNAKNTLYLQMSSLKSEDTAMYYCVRHE
+YYYAMDYWGQGTTVTVSSAWRHPQFGG
+>gi|62464905|gb|AAX83161.1| immunoglobulin heavy chain variable region [Aotus nancymaae]
+--------------GDPVPHLRCLWLLHRQ-------willeldpPAPKGRG--WSGldisivwWVHQl-QRLPQES-----sh---YFSRHVQEPVLVE
+---------AE-LCDR-----------------------------
+>gi|50428758|gb|AAT77091.1| anti-HCC scFv antibody [synthetic construct]
+EIVMTQTPLsSPVTLGQPASISFRSSQS-LVHsdgNtYLSWLQQRPGQPPRLL--IYK---VSNRFSGGPRQIQ--WQwGQGQIFTLKNQQGWKLRMSGF
+ITARKL--HNFRvgTFGPRDQAGNRRAAAH-----
+>gi|6840832|gb|AAF28780.1| immune-type receptor 2 [Sphoeroides nephelus]
+---HPKRVLVFANVGDNITLGCSSEDSSAN--TFRWFKQTLGEKPRIISSFFKHEKKLEYAKEFQNsQISTNITEGNYHL--KIANLSISDSSTYYCGCI
+--FSYAIEFEEIYMVHV-----------
+>gi|309262028|ref|XP_003085513.1| PREDICTED: ig alpha chain C region [Mus musculus]
+---------------------------------------------------------------------VFLLTLLHGIQCEVKLVESGGGLVqpggSLR
+LScatsgftfSDFY--MEWVRQPPGKRLEwiaakSA--------
+>gi|255709618|gb|ACU30711.1| CD8 alpha chain [Ctenopharyngodon idella]
+----------IYKEGEKVQVDCDLKQSG----TLTFWFRINSKGADYLFSVKS---ADIKENDlNSEHYTVNTNsGK---VQLDIKSFKKkTDSGVYVCA
+AM--NSNKLFFGGLTRIEGEPDPT------
+>gi|149632037|ref|XP_001512632.1| PREDICTED: similar to T cell receptor gamma chain [Ornithorhynchus anatinus]
+---------------------------------------------------------------------ACGHRVSTVSGVKYFGTGTKLVVTGFKHCaL
+QSGAYIKVFGSGTKLIVENTTP------
+>gi|74218336|dbj|BAE23783.1| unnamed protein product [Mus musculus]
+----------------------------------------------------------------------------MLEMIRKLLLYDDHKSNLVSSPS-
+QLS-iQHKLC----FTMRNKDK------
+>gi|149602051|ref|XP_001518834.1| PREDICTED: similar to OB binding protein-2 [Ornithorhynchus anatinus]
+-FQLVVPNSVTVEEGLCVLIPCTFTYplsfQNSHEALAFWFQE-EGGSQGDP--VATNDPNRPVKDWSRDRFNLTGNPQMDNCSLSIDYARAGDSRKYL-
+-------------------------------
+>gi|6013137|gb|AAF01256.1| coxsackie-adenovirus-receptor homolog [Canis lupus familiaris]
+-LSITTPEqMIEKAKGETAYLPCKFTL-SPEDQGpldIEWLLSPADNqkvDQVIILYSGDKIYDDYYQ-DLKGRVHFTsNDLKSGDASINVTNLRLSDIG
+TYQCKVKKA---PGVGNKKIQLTVLVKPSGI----
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+E 1    *	*	2874	1813	*	3902	*	*	4096	*	*	*	3824	1682	3808	*	*	*	*	*	1
+       100	3902	*	0	*	*	*	6504	1072	0	
+
+V 2    *	*	*	5500	3848	4647	*	2233	*	2397	3064	*	*	4423	*	*	4256	2162	*	5379	2
+       0	*	*	*	*	*	*	8628	0	0	
+
+K 3    4023	*	4485	3132	5751	*	4043	*	4320	4747	*	4554	*	2418	4690	3399	3298	3070	*	5098	3
+       35	5366	*	1000	1000	*	*	8869	1072	0	
+
+L 4    *	*	*	*	4072	5800	5089	3390	*	1853	4742	*	*	5139	*	6178	5217	1270	*	*	4
+       0	*	*	*	*	*	*	9251	0	0	
+
+Q 5    5437	*	6073	3845	*	5395	5590	4969	4077	5377	6274	*	6402	1634	5059	3451	2324	4561	*	5490	5
+       29	*	5668	*	*	*	*	9540	0	0	
+
+E 6    5331	*	*	3482	*	4073	6532	*	4449	4594	6252	6445	4812	1231	4752	4494	3698	3583	*	*	6
+       41	5170	*	0	*	904	1103	9539	1201	1112	
+
+S 7    4281	*	5671	4948	6914	*	5223	*	4676	5120	*	6500	1250	4841	6713	2426	3273	5709	*	6797	7
+       233	2872	6319	0	*	*	0	9710	2691	1000	
+
+G 8    3257	*	4401	3529	*	3961	5699	*	3316	6780	6710	4722	2199	3676	4348	3415	4791	4845	*	6471	8
+       44	5072	*	400	2046	739	1320	9816	1291	1155	
+
+G 9    4833	*	3923	3716	3982	7121	4700	6547	6720	3840	5728	3928	3502	4559	3822	2829	3402	3868	*	4868	9
+       146	3374	*	0	*	*	0	9842	2221	1000	
+
+D 10   4500	*	7247	4060	6542	4915	7064	2897	6915	2126	4548	6893	6057	4940	5133	6222	4494	1879	*	6733	10
+       28	6787	6614	3459	138	*	0	9967	1018	1000	
+
+L 11   5654	*	6879	4219	4764	6771	5850	3419	7120	3160	6903	5342	5604	5143	5408	2858	2216	2766	*	4780	11
+       13	6813	*	1797	490	1154	861	10061	1097	1122	
+
+V 12   2388	6206	*	5977	*	4206	7250	4341	3630	3799	5982	*	6172	*	3951	6931	3932	1632	7169	5706	12
+       0	*	*	1000	1000	0	*	10106	1000	1000	
+
+Q 13   3206	*	4539	3952	6121	5880	6358	5097	2871	3515	5582	3987	4080	3175	5736	3479	4172	4231	6743	7224	13
+       6	*	7856	*	*	*	*	10135	0	0	
+
+P 14   3335	*	*	1865	7001	7212	6175	5132	4314	4233	5459	6751	2945	4234	5198	3974	4022	3478	*	6830	14
+       0	*	*	0	*	*	0	10182	1000	1000	
+
+G 15   7221	*	4768	5311	7324	408	6960	*	5578	*	*	4404	*	6993	4647	5856	5522	*	*	6861	15
+       12	*	6859	*	*	*	0	10209	0	1000	
+
+G 16   4340	*	2957	2196	*	3071	6461	*	3452	5885	6931	5039	6930	3028	5627	3538	4679	4515	7277	*	16
+       0	*	*	*	*	841	1178	10196	0	1126	
+
+S 17   4009	5326	3613	4905	5662	5262	7219	6499	4449	*	*	3881	3923	5690	3511	2075	2472	5059	*	*	17
+       16	6506	*	2322	322	*	0	10208	1032	1000	
+
+L 18   2392	7061	*	6180	6581	6215	*	3428	5659	3087	6792	*	*	*	*	6116	5702	1058	*	6518	18
+       8	*	7418	*	*	*	0	10221	0	1000	
+
+K 19   5252	*	4903	2890	7080	5874	5275	5362	3873	5966	6581	4054	5325	4074	4653	2940	1766	5186	*	*	19
+       8	7561	*	574	1607	1037	964	10217	1077	1088	
+
+L 20   *	*	*	*	3635	*	5247	2522	*	950	3801	*	*	6592	*	6807	*	3181	*	*	20
+       10	7178	*	0	*	*	0	10221	1018	1000	
+
+S 21   5260	*	4602	4098	7410	5286	6150	5933	3555	4888	6845	3601	2953	4098	3666	2600	3083	4821	7428	6393	21
+       0	*	*	2807	222	0	*	10221	1000	1000	
+
+C 22   6169	202	*	*	4548	*	6390	*	*	6811	*	*	6232	*	5395	6961	*	*	*	7002	22
+       39	*	5218	*	*	*	*	10225	0	0	
+
+A 23   4589	6197	4321	3965	*	5581	4419	4683	4354	4401	*	3701	4674	4187	4218	2151	3049	5171	6895	5563	23
+       9	*	7399	0	*	2343	317	10203	1000	1461	
+
+A 24   4161	5604	*	6498	2781	6113	4254	3479	5876	2999	7121	6887	5487	5218	*	4928	4233	2929	*	2424	24
+       254	3212	4218	812	1217	934	1069	10204	2998	1456	
+
+S 25   6322	*	4945	3865	6088	5253	5065	6116	3395	5541	6715	4552	4006	4364	3928	1838	3144	6227	6120	4815	25
+       145	6031	3640	1613	571	2471	287	10113	1392	2110	
+
+G 26   3817	*	3180	4586	5264	2432	5114	4499	5472	4189	6825	4018	5529	3350	5296	3839	4057	5211	6115	5147	26
+       250	4852	3007	2279	333	3109	178	10042	1599	3172	
+
+F 27   4055	5293	4725	4483	4927	4040	6345	5804	4039	3978	5817	4986	4328	4061	5700	2130	3056	*	5795	4691	27
+       95	6901	4181	1585	585	46	5006	10034	1102	4573	
+
+T 28   4411	7074	3589	5247	7408	3583	5535	4949	3449	4330	6082	3484	4156	4128	5351	3299	3433	3940	7346	4499	28
+       225	5109	3112	2109	380	2288	330	10203	1361	1917	
+
+F 29   3406	7042	4403	5299	3558	4683	5934	5111	4324	3494	5299	4524	3945	4877	3597	3143	4569	4419	5823	4402	29
+       129	5987	3845	587	1581	1615	570	10175	1129	3811	
+
+S 30   4148	*	3678	3807	*	3669	6489	6091	4704	*	5538	3765	3165	3682	4684	2384	3605	4779	6750	6899	30
+       415	3927	2441	1082	922	966	1035	10132	1922	4134	
+
+S 31   4578	5880	3660	3242	6050	4092	3754	5149	4956	4808	*	2970	4332	4936	6647	3008	4477	4030	*	4013	31
+       157	4014	4609	1732	517	2261	338	10004	1733	4850	
+
+Y 32   4202	*	4082	5756	5224	4948	4678	6012	4894	3482	4580	4434	3159	4907	4160	3832	3359	4768	6868	2955	32
+       75	5513	5132	0	*	251	2645	10030	1226	4621	
+
+T 33   5233	7144	4544	5210	5598	4283	5757	5967	5523	4319	5494	4411	3719	4699	3591	3173	3295	3220	4463	3539	33
+       47	5687	6343	1036	965	716	1355	10213	1239	2057	
+
+M 34   6668	6289	*	*	4293	7179	*	2529	4856	2369	2900	*	*	7411	7198	*	5920	1607	5701	7059	34
+       46	5416	6973	970	1031	*	0	10239	1280	1558	
+
+S 35   3801	6917	7151	4626	3010	6831	3581	5923	4697	3794	7528	4267	7367	4484	4958	2956	3792	5185	6775	2728	35
+       26	7407	6363	1000	1000	1211	816	10218	1000	1707	
+
+W 36   *	7087	*	*	6152	6007	*	*	6361	4515	*	*	*	*	6597	*	*	5970	183	*	36
+       55	4745	*	747	1307	*	0	10195	1561	1521	
+
+V 37   6374	5179	6906	7357	2612	*	5072	3815	6141	3156	5471	6005	*	5583	6174	4251	5519	4567	5581	1536	37
+       23	7028	6891	2672	246	800	1232	10195	1283	1521	
+
+R 38   5256	6375	*	*	4330	*	5287	6432	2125	4247	*	7905	7026	2705	1713	4986	5953	5125	5388	5486	38
+       37	*	5289	*	*	1233	799	10207	0	1276	
+
+Q 39   5580	*	4661	4588	6052	4525	4424	*	3389	4031	5430	6342	5655	1542	3723	3884	7072	4256	5552	6252	39
+       47	*	4950	*	*	2403	302	10241	0	1678	
+
+T 40   4984	5572	3609	4366	5704	4139	6195	5225	3580	4813	5607	3676	3654	4348	3147	3403	3927	4095	*	5481	40
+       49	7023	5274	2000	415	2996	193	10196	1005	2125	
+
+P 41   3777	5787	4150	3465	5612	4207	6724	7026	4519	3183	*	4273	1877	5360	4328	3958	5253	5541	7267	*	41
+       64	4880	6762	1259	780	1113	895	10195	1486	2468	
+
+E 42   5454	*	3054	3443	*	1623	6115	5999	4903	5763	7027	4429	4759	4871	4609	3143	4614	5042	*	7035	42
+       74	5447	5206	2625	255	1971	425	10200	1422	1897	
+
+K 43   4006	6927	4341	3397	*	3273	5959	6899	3264	4173	*	3506	5277	3323	3303	3435	4054	5974	*	6139	43
+       84	5032	5279	624	1510	*	0	10140	1369	2123	
+
+R 44   3457	6774	5108	4488	5384	2176	5623	5906	4123	4835	4995	4297	3900	4604	4530	3163	3884	4696	*	*	44
+       136	4220	4786	271	2547	4059	89	10108	1934	2572	
+
+L 45   5041	5457	7405	4365	4159	*	5536	4738	5600	2039	*	5422	1857	4372	5484	4101	4435	4933	7337	*	45
+       11	7079	*	0	*	3126	175	10019	1000	3004	
+
+E 46   5650	6775	4274	2224	*	4467	4445	5271	5001	5068	*	4304	5031	2740	3939	4395	3175	3976	*	6753	46
+       44	6843	5533	1585	585	1585	585	10052	1109	2783	
+
+W 47   5576	5559	5792	5824	2676	5124	6192	4211	4473	2456	5297	5210	6101	5110	4069	4340	7060	3716	3557	3868	47
+       33	*	5451	3322	152	2809	222	10082	1000	2533	
+
+V 48   6699	5880	5282	6895	6828	*	6073	1854	5152	1561	4710	5443	5840	6820	*	4758	6007	3008	*	7004	48
+       146	7388	3467	1000	1000	2643	252	10051	1000	2652	
+
+A 49   2673	7250	*	6026	3199	2708	5338	2868	*	3029	5082	6718	6780	*	*	4662	5214	3226	*	4218	49
+       32	6937	6215	2807	222	*	0	9994	1011	3792	
+
+S 50   4901	*	5892	4988	4052	5701	4850	4077	4263	4807	5208	*	5005	6804	3903	2601	3466	4806	5974	2211	50
+       33	6854	6170	1000	1000	1543	606	9993	1018	4038	
+
+I 51   5068	5238	*	*	3686	4504	5166	2815	4784	3201	4809	6171	*	4163	6044	3077	4151	3089	6640	3572	51
+       10	*	7183	2000	415	1840	472	10095	1000	3278	
+
+N 52   3898	6659	4393	6322	3298	5056	4185	4993	5316	3820	6214	3938	5407	5823	4336	3491	4173	4248	5300	2671	52
+       239	5460	2945	995	1005	*	0	10164	1287	2772	
+
+N 53   4430	6761	4544	5436	5255	3869	6108	4448	3593	4967	5971	3738	4966	5355	4271	2446	3168	5823	5901	3636	53
+       216	5357	3124	0	*	2871	212	9927	1252	4807	
+
+G 54   4200	*	4028	4884	6964	3208	5904	4958	3420	5597	5645	2907	4241	5115	4225	2582	4050	4809	*	5667	54
+       196	5975	3172	0	*	2160	365	9790	1028	5675	
+
+G 55   5941	*	3593	4331	5593	2224	5453	5661	3970	5649	6966	4057	5966	4265	3829	3265	3326	4609	*	4683	55
+       524	7102	1749	1000	1000	2920	205	9857	1000	5787	
+
+G 56   4375	*	4780	5389	6418	2682	5114	4239	3680	5101	*	4073	4582	*	4049	2973	4019	3186	4962	4560	56
+       63	*	4552	0	*	1085	919	9428	1000	7213	
+
+R 57   3136	*	3509	4282	4439	4295	5244	5006	3393	4304	6966	4166	4620	4516	4967	3475	3574	4026	6990	5419	57
+       25	6720	6969	0	*	2432	296	10009	1000	5322	
+
+T 58   4757	6149	4188	4061	6516	5721	4306	4159	3317	4211	*	3898	3780	4100	3568	3956	3403	3776	6530	5792	58
+       48	6110	5794	594	1567	3548	129	10092	1096	4771	
+
+Y 59   5753	*	4130	3165	4789	5293	3896	4715	4437	5384	6667	3684	4608	4405	3930	3494	2877	5063	6841	3821	59
+       43	*	5085	*	*	4305	75	10116	0	4686	
+
+Y 60   4787	6087	4984	4362	4817	3383	*	4046	4495	3936	4647	4335	4871	5929	3976	4742	4137	3292	5751	2749	60
+       30	5613	*	1215	813	1233	799	10031	1272	4811	
+
+P 61   4408	6978	3909	3072	5243	3453	6127	6026	3765	3731	5410	4301	4725	4194	4404	3276	4113	4614	6970	4665	61
+       34	*	5420	*	*	1878	458	10135	0	3368	
+
+D 62   4096	*	3670	3246	6185	2624	6096	6339	4025	5004	6036	4512	2707	4678	7270	3270	3436	6940	*	*	62
+       43	6921	5554	1585	585	3146	173	10129	1008	3111	
+
+T 63   4120	7029	3374	3483	5037	2783	6738	4619	3962	4066	7021	4045	4577	4589	4748	3207	4529	4928	6585	6019	63
+       45	7188	5377	594	1567	1352	717	10110	1125	3167	
+
+V 64   6734	4539	4875	4802	2685	5241	*	4235	4320	3543	6252	4414	3641	5122	5587	4221	3516	3749	*	3298	64
+       130	4045	5298	922	1083	2289	330	10183	1961	2694	
+
+K 65   4919	*	3960	3352	6337	3892	5467	*	2902	5991	5511	4781	3821	3562	3358	2876	3626	6105	*	6665	65
+       55	4972	7475	0	*	472	1841	10161	1463	2703	
+
+G 66   3777	*	2885	3452	*	2242	*	*	3394	7064	*	4070	4297	4382	3830	3193	4900	6088	*	*	66
+       95	4462	5777	1240	794	2389	306	10241	1964	1532	
+
+R 67   *	*	4762	5104	*	4693	4668	5472	3425	6866	7016	5216	4766	4257	1115	3435	5431	5987	6062	*	67
+       43	6001	6182	961	1041	1432	668	10186	1151	1764	
+
+F 68   5652	6337	5488	7093	1562	5668	5483	3697	5962	3330	6031	5305	6328	5899	7224	3948	4665	3976	*	3051	68
+       22	*	6053	*	*	2947	200	10235	0	1686	
+
+T 69   5591	*	4207	3646	4594	5272	4410	6128	3766	4938	7011	3853	5542	3756	4157	2204	3354	4239	*	6147	69
+       39	5966	6568	1287	760	806	1224	10229	1173	1836	
+
+I 70   3458	4993	*	6992	3488	3962	5259	2864	6039	2465	4038	5900	6183	6012	5373	3756	6239	3167	7169	5637	70
+       48	5342	6981	1013	987	1354	716	10285	1404	1650	
+
+S 71   4715	6984	*	3709	4989	6587	4951	4208	3853	3474	5213	4669	*	4743	3655	2335	2930	4144	*	5567	71
+       54	7186	5073	0	*	1110	898	10265	1000	1656	
+
+R 72   4537	6992	4416	4873	5116	2784	4898	4767	4503	4026	*	4891	5384	4733	2682	3375	4155	3614	5327	6931	72
+       29	*	5643	*	*	*	0	10347	0	2017	
+
+D 73   6049	*	2311	3876	5857	4855	6163	5097	4235	4276	7253	3165	4150	4819	3782	3635	3772	4113	6182	7013	73
+       154	4616	4049	0	*	700	1380	10318	1638	2385	
+
+N 74   3785	*	5199	4219	6124	3030	4537	5422	3814	4525	6813	3460	3007	5432	3844	3597	3496	4897	7163	*	74
+       330	3455	3145	1169	849	609	1537	10297	2341	2614	
+
+A 75   4098	*	3223	3530	*	4073	5168	5015	4555	4559	*	4752	5842	3437	4293	2282	3282	4984	*	7176	75
+       214	*	2861	*	*	1550	603	10265	0	3407	
+
+K 76   3396	*	4097	3329	*	3316	6737	*	2776	4506	6491	4395	5374	3344	3974	3031	5018	4955	*	5887	76
+       49	5866	5958	538	1684	500	1772	10186	1133	4534	
+
+N 77   5214	6145	4710	4354	7072	2619	4323	5593	3870	4450	6276	3351	5409	4529	3582	3917	2687	5699	*	6072	77
+       62	6292	5085	498	1777	1674	542	10331	1105	2321	
+
+T 78   5828	6332	2871	4457	4242	4967	5229	4698	4549	4028	7196	4153	4497	4464	4000	3076	2857	4332	*	6340	78
+       0	*	*	1585	585	271	2545	10251	1000	2360	
+
+L 79   3473	4387	6766	7526	1822	4618	5527	6205	7054	3573	5133	5869	6001	*	*	3360	5194	3362	7147	3226	79
+       63	5089	6260	1563	596	1142	871	10365	1365	1125	
+
+Y 80   6258	7391	5574	4904	4377	5211	4977	4405	4739	4734	6379	3929	4034	4749	4373	2375	2205	5097	*	4857	80
+       63	4709	7902	590	1575	1940	436	10312	1742	1486	
+
+L 81   7198	6451	*	5935	4401	*	6758	3927	*	472	6251	*	6542	*	*	*	*	3530	6410	*	81
+       0	*	*	0	*	1073	931	10320	1000	1442	
+
+Q 82   6551	*	5326	3387	6216	5950	4217	3799	3460	4398	6076	4637	4695	4272	3152	3759	2552	3777	*	*	82
+       57	*	4685	*	*	939	1063	10322	0	1164	
+
+M 83   *	*	*	*	5066	*	*	1106	4465	2243	3936	6618	6052	*	7024	5415	6032	3363	*	6080	83
+       0	*	*	*	*	2925	204	10300	0	1810	
+
+S 84   4849	*	5382	3425	7005	5663	3637	4644	3074	4016	6059	4034	4584	4350	3447	3215	3264	5129	6239	7018	84
+       0	*	*	*	*	2469	287	10302	0	1688	
+
+S 85   4678	*	3269	4865	6976	3843	4267	*	4062	5482	*	2256	6086	4443	3633	2326	5791	7065	*	4817	85
+       0	*	*	*	*	*	0	10302	0	1542	
+
+L 86   2505	5919	7128	*	4604	5674	*	3430	*	1831	6368	6976	6405	*	*	4620	3913	2141	*	*	86
+       0	*	*	3585	126	2227	347	10302	1000	1542	
+
+K 87   6050	*	4144	3263	6793	5223	4845	6622	3264	5282	7034	6999	4847	2454	2968	3717	2627	*	6651	7543	87
+       0	*	*	*	*	*	0	10317	0	1398	
+
+S 88   3730	*	6546	3297	5641	5268	*	4594	4347	3003	4125	*	2377	5620	5378	3558	3731	3564	6377	*	88
+       20	6152	*	0	*	*	0	10317	1143	1398	
+
+E 89   3584	7052	4207	2411	*	4023	6093	6958	3547	6648	*	3548	*	4354	4503	2030	4384	7032	*	6917	89
+       0	*	*	*	*	*	0	10317	0	1398	
+
+D 90   6980	*	389	5061	*	4865	4590	*	6361	7007	*	5849	*	4639	5115	7149	6717	*	*	*	90
+       8	*	7444	*	*	*	0	10317	0	1398	
+
+T 91   2986	*	5267	3827	*	4803	5506	*	6232	6034	4417	4461	6974	4825	6121	1458	2702	5411	*	*	91
+       11	*	7052	*	*	1301	751	10313	0	1509	
+
+A 92   1842	*	7283	5668	*	870	*	*	*	5170	*	*	6694	*	5827	3738	*	5827	*	*	92
+       16	6536	*	480	1820	2275	334	10338	1144	1406	
+
+M 93   6265	6967	6219	4010	4738	6629	6094	3295	4560	2826	4404	5566	7321	6072	4706	4466	2697	2498	6306	4677	93
+       28	7304	6299	2000	415	1481	640	10339	1131	1293	
+
+Y 94   *	5313	*	*	4255	5989	5336	*	*	5457	*	*	*	*	*	7322	6715	5552	6949	297	94
+       19	*	6278	*	*	1037	964	10309	0	1402	
+
+Y 95   6257	6901	*	4757	2562	6898	5791	4585	5724	2804	6831	6963	*	4341	5279	4091	4239	4923	5110	1855	95
+       0	*	*	3700	115	356	2194	10348	1000	1376	
+
+C 96   *	116	*	*	*	6731	*	*	7008	5512	*	*	*	*	7307	6100	5851	*	*	*	96
+       19	6944	7735	0	*	*	0	10331	1004	1000	
+
+V 97   1577	4831	5485	4057	*	3143	5906	5399	4567	5826	5309	*	*	3404	4524	3637	6875	3612	*	*	97
+       52	6893	5209	1976	423	1037	964	10059	1099	1088	
+
+R 98   2553	4789	*	5815	5176	6811	6659	4153	3994	3581	5472	5050	5979	5577	3650	3681	4994	2109	6985	6871	98
+       146	3695	5724	1433	667	2243	342	9895	2253	1421	
+
+H 99   4718	6567	4526	3750	3955	3132	7054	3968	3803	4355	6861	6700	*	4914	3821	2350	5132	5830	4320	4358	99
+       450	3033	2776	1545	605	1620	568	9896	2393	1715	
+
+E 100  3679	6537	3380	4299	6450	4246	4013	5439	4337	3794	6579	3813	4206	4019	3809	3482	3498	4783	6588	*	100
+       300	4624	2764	3011	191	2345	316	9455	1435	3403	
+
+Y 101  4743	5371	4578	5293	6199	2946	6009	5218	4635	4601	5387	3723	4070	6449	3456	2535	3318	6205	6167	4575	101
+       523	2451	3042	1178	842	874	1137	9306	2819	4415	
+
+Y 102  5793	*	4809	4340	6277	2545	*	6458	5152	4778	5288	3158	*	4332	4205	2404	3914	5203	5221	3538	102
+       465	5411	1988	1239	795	2043	401	9426	1502	3684	
+
+Y 103  4614	*	4475	5151	4930	3145	5450	6097	3999	3701	*	3174	6273	*	4327	2661	3980	5071	6196	3002	103
+       216	4483	3404	935	1068	3579	126	9085	1421	5184	
+
+A 104  4542	*	2896	4146	5862	2892	*	*	5842	4718	5932	2712	2944	5877	5716	3290	5205	5982	*	3667	104
+       77	4949	5672	900	1108	316	2346	8846	1649	5555	
+
+M 105  4053	*	4575	2992	4710	5421	5553	4317	3650	4153	5025	6671	2916	3278	3932	4887	5006	3558	*	6409	105
+       71	5016	5879	2357	313	608	1539	9573	1433	2225	
+
+D 106  3748	*	4031	3733	5409	4174	5542	3135	4270	2675	5045	6699	4500	4097	4422	5821	3718	4961	6835	4546	106
+       108	4294	5573	1332	730	2530	274	9664	1583	1587	
+
+Y 107  6573	6592	*	4962	4218	6562	4820	2871	4365	3542	5104	6524	5591	4233	5022	5602	3485	2700	6440	2677	107
+       79	5070	5412	654	1457	561	1633	9623	1355	1755	
+
+W 108  6323	5505	6576	*	1091	6441	4930	4930	5681	4039	5443	*	*	6510	4545	4994	5699	4982	3054	4363	108
+       93	4494	5779	1784	495	661	1443	9653	1500	1648	
+
+G 109  5071	6672	*	5453	6330	1008	5454	6444	5649	6481	*	6599	5648	4628	4861	2645	4622	6598	6203	4925	109
+       23	*	5955	0	*	*	0	9662	1005	1436	
+
+Q 110  4642	6686	4222	3770	*	3617	6687	*	3991	6532	*	2823	2871	3264	3561	2652	4947	*	*	*	110
+       48	4935	*	1038	963	1841	472	9596	1413	1813	
+
+G 111  3415	*	5425	*	*	728	6449	5494	6202	5729	*	6598	4566	6469	4521	4081	5499	6526	6189	*	111
+       50	4878	*	2493	282	711	1362	9642	1268	1554	
+
+T 112  3802	*	4827	*	*	6238	*	4257	*	4546	6316	5136	5502	5383	*	4255	822	4393	*	4961	112
+       15	6603	*	1000	1000	*	0	9514	1018	1129	
+
+T 113  5626	6596	6335	4874	4231	5441	4210	5700	1991	3745	5550	5017	4652	3007	2678	4745	5952	*	6644	6486	113
+       15	6603	*	0	*	0	*	9514	1018	1129	
+
+V 114  4479	*	*	6586	6656	5290	*	3663	6401	600	*	*	*	4979	*	*	6476	3111	*	*	114
+       0	*	*	*	*	*	*	9560	0	0	
+
+T 115  6297	*	4303	4910	5610	5022	4214	3213	6586	4137	*	5542	5407	6312	3903	3238	2268	2756	*	4758	115
+       16	6463	*	2322	322	*	*	9462	1000	0	
+
+V 116  *	5245	*	6483	*	5442	*	3079	6387	4859	4609	5879	4842	*	6069	5189	*	645	*	*	116
+       37	5319	*	588	1579	*	*	9453	1160	0	
+
+S 117  6016	5075	*	3247	*	5285	6440	3768	4007	2859	6370	*	5368	4296	3526	2506	2723	5243	*	6505	117
+       41	5174	*	1901	450	*	*	9263	1259	0	
+
+S 118  3392	*	3548	4085	*	2768	6026	6157	5033	4608	*	4574	3076	4164	4305	2800	4462	4534	*	6211	118
+       120	3952	6014	2698	241	*	*	9080	1459	0	
+
+A 119  2336	4953	4822	4982	5846	3907	4352	5963	2938	5116	*	4273	3494	4496	4496	3675	4367	4707	*	*	119
+       0	*	*	*	*	*	0	8866	0	1000	
+
+W 120  3277	*	4332	3322	*	*	5577	3633	4178	4794	*	*	2059	*	4057	3489	3717	3785	5911	*	120
+       0	*	*	*	*	0	*	8633	0	1000	
+
+R 121  3642	5568	5794	4220	*	5767	*	*	2967	4759	*	5568	2474	3210	4797	3640	2478	5624	*	5728	121
+       0	*	*	*	*	*	*	8612	0	0	
+
+H 122  4730	5301	3924	3831	5571	*	2932	*	5313	2856	5387	2421	4449	5382	5358	3164	4315	5724	*	*	122
+       0	*	*	*	*	*	*	8190	0	0	
+
+P 123  5174	5195	*	*	*	*	5124	5088	5048	5472	*	*	590	*	5088	3586	5220	5032	*	*	123
+       0	*	*	*	*	*	*	7650	0	0	
+
+Q 124  *	*	4337	2814	*	*	*	*	4511	3298	*	4405	*	1626	3236	3271	4710	4517	*	*	124
+       92	4015	*	0	*	*	*	6387	1000	0	
+
+F 125  *	*	*	*	1912	*	*	4413	*	1438	4098	*	*	*	*	4404	4215	3272	*	4181	125
+       0	*	*	*	*	*	*	6143	0	0	
+
+G 126  *	*	*	3630	*	1240	*	*	*	*	*	*	*	*	*	1630	3587	3480	*	*	126
+       0	*	*	*	*	*	*	4393	0	0	
+
+G 127  *	*	*	3101	*	390	*	*	*	*	*	*	3057	*	*	*	*	*	*	*	127
+       0	*	*	0	*	*	*	3453	0	0	
+
+//
+�HHsearch 1.5
+NAME  52f7b42c2dd929be3683545ebc8d1362
+FAM   
+FILE  52f7b42c2dd929be3683545ebc8d1362
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 11:59:00 2013
+LENG  140 match states, 140 columns in multiple alignment
+FILT  112 out of 736 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  5.6 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCEEEEEEEEEECCCCCCCCCCCHHHCCCCCCHHHHHHHHHHHHHHCCCCEEEEEEEECCCCCEEEEECCCCHHHHHHHHHCCCCCCCCCCCEEEEEEC
+HHHHHHHHHHHHHHHCCCCHHHHHHHHHHHHHCCEEEEEC
+>ss_conf PSIPRED confidence values
+9837999999986175068996530012679899999999999860036984668999818981899988988899999982988677899985770454
+9999999999877516637999999999777423579719
+>Consensus
+xkxxxxxiklxvxaGxAxpxPplGpxLGxxGinixxfxkxfNxxTxxxxgxxvpVxixvxxdrsfxxxvxxPxxsxllxkaagxxxgsxxpxxxxxGxit
+lxxvxeIAkxKxxdxxxxxlxxxvkxVxGTaxSmGixVxx
+>52f7b42c2dd929be3683545ebc8d1362
+AKKVAAQIKLQLPAGKATPAPPVGPALGQHGVNIMEFCKRFNAETADKAGMILPVVITVYEDKSFTFIIKTPPASFLLKKAAGIEKGSSEPKRKIVGKVT
+RKQIEEIAKTKMPDLNANSLEAAMKIIEGTAKSMGIEVVD
+>gi|156937968|ref|YP_001435764.1| 50S ribosomal protein L11P [Ignicoccus hospitalis KIN4/I]gi|156566952|gb|ABU82357.1| LSU ribosomal protein L11P [Ignicoccus hospitalis KIN4/I]
+-----KVLTFSVEGGNAKPAPPIKPALESVGLDPNEVVQKINEVTKRYKGFTVTVKVIVdPDTKEYEIEVEPPNITELLLKLAGAKAPSGDPIHQKVGDL
+PFEKVIEAALLKAPELTAKTLKGAVKTVLGTARAIGLTVDK
+>gi|76802860|ref|YP_330955.1| 50S ribosomal protein L11P [Natronomonas pharaonis DSM 2160]gi|119390738|sp|Q3INI5.1|RL11_NATPD RecName: Full=50S ribosomal protein L11Pgi|76558725|emb|CAI50318.1| ribosomal protein L11 [Natronomonas pharaonis DSM 2160]
+-----GTIEVLVAGGQADPGPPLGPELGPTPVDVQAVVNEINDQTEAFDGTEVPVTIDYDDDGSFDIDVGVPPTAALIKDELDFETGSGEPNEEFVADMS
+AEQLKTVAEQKLPDLLAYDTRNAAKEVAGTCVSLGVTIEG
+>gi|116335068|ref|YP_802563.1| ribosomal protein L11 [Candidatus Carsonella ruddii PV]gi|13272288|gb|AAK17071.1|AF274444_1 ribosomal protein L11 [Candidatus Carsonella ruddii]gi|116235349|dbj|BAF35197.1| ribosomal protein L11 [Candidatus Carsonella ruddii PV]
+---LKFKLKLILKPNKATPSSGIGPILGQYGINLIDFCNKFNDLT-KFIcLEKINVKIAIFNDNSYQILINTMSLSDYIKEKKNILSFSKKPGYNQLTNI
+NLNDVVEISYF------------------------------
+>gi|156098390|ref|XP_001615227.1| 50S ribosomal protein L11 [Plasmodium vivax SaI-1]gi|148804101|gb|EDL45500.1| 50S ribosomal protein L11, putative [Plasmodium vivax]
+---RIGRFNLVVLSGSAKPSASIGQTLGPLGINMMTFFKEFNERTKNIsKNVPIQVTLEPLNDRTYRFYLRTPTVVWFIRRCARVPMFSPTAKHHTVGSI
+TLAEVFHIAKCKRMDppLINLTLKSICKYIIGTCNSMGIKVC-
+>gi|7524989|ref|NP_050087.1| ribosomal protein L11 [Dictyostelium discoideum]gi|74894767|sp|Q23884.1|RM11_DICDI RecName: Full=60S ribosomal protein L11, mitochondrialgi|1088423|dbj|BAA04733.1| ribosomal protein L11 [Dictyostelium discoideum]gi|4958892|dbj|BAA78069.1| ribosomal protein L11 [Dictyostelium discoideum]
+----LVRLKLIIGAGTASMTPPLGPNLGQYGINSIEFFNDFNTETKe-lFEtGLALRVILWINVMKAFYFELQMPKISNLLKEYYKVECEAAKGGNVYIe
+KERLLKDCFKIAILLCTfnkaekQweqIEKKYLRITVLEILGTCRSCKIYVK-
+>gi|340052452|emb|CCC46732.1| putative ribosomal protein L11 [Trypanosoma vivax Y486]
+--RVLHNWRFFIRAGKATTGPPVGQEFSKLGLKAMDFAKSFNDRTKPFfkDDVELIVRIQVYFDKSYLFAIEPPPTAWFILRALRKKRRETGPVgvrGHY
+CALMTLEMAYEIAKMKPLCwgrPEYPLLETRVRRVVGQARRMGVCFI-
+>gi|71013111|ref|XP_758556.1| hypothetical protein UM02409.1 [Ustilago maydis 521]gi|46098214|gb|EAK83447.1| hypothetical protein UM02409.1 [Ustilago maydis 521]
+---AVNIIYLRATGGEVGASSALAPKIGPLGLSPKKVGEDIAKATGDWKGLRVTVQLTV-QNRQAAVSV-VPSASSLVIKALKEPPRDRKKEKNIKhgGN
+IPLDEIVEIARKMRFKSFAKSLSGTVKEILGTAQSVGCTVNG
+>gi|11496550|ref|NP_044561.1| ribosomal protein L11 [Toxoplasma gondii RH]gi|5231253|gb|AAD41147.1|U87145_16 ribosomal protein L11 [Toxoplasma gondii]gi|3377956|emb|CAA72240.1| ribosomal protein L11 [Toxoplasma gondii]
+-----KIIKLILHTELTNFLSSLSSILGPIGININLFFQEYNKRIKLKNNIDLPLHIIVYNDKSYVLNFNLIYTSFFFITkLQKVFKKK--QNKQYL---
+----IKKFSFLKQIKLFPKSNISICKTIKATLNS-------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+A 1    1276	*	*	4916	*	*	*	*	4058	*	4330	*	4692	*	*	2034	3317	5048	*	5032	1
+       104	5049	4676	2487	283	*	*	3727	1039	0	
+
+K 2    3723	*	*	*	*	3893	*	*	537	*	*	5089	5215	*	3525	*	5332	*	*	*	2
+       0	*	*	*	*	*	0	3883	0	1000	
+
+K 3    3815	*	*	3669	5675	*	*	*	1171	5584	*	*	3685	5917	2741	5294	4151	4635	*	*	3
+       144	3393	*	1440	663	0	*	4176	1138	1000	
+
+V 4    4647	*	5368	*	4754	*	*	2120	3561	2886	5559	*	*	*	5651	*	*	1386	*	5325	4
+       0	*	*	*	*	*	*	4662	0	0	
+
+A 5    4517	*	*	6092	6190	6185	*	3117	2550	2352	6030	6200	*	3909	5026	5014	3911	2260	*	*	5
+       18	*	6363	*	*	*	*	4810	0	0	
+
+A 6    2465	*	*	4603	6334	2704	5732	4137	2815	6352	*	5056	5308	4893	2831	4808	4281	4446	*	5683	6
+       83	5011	5309	1756	506	0	*	5619	1124	1000	
+
+Q 7    6928	6904	*	6379	4604	*	6656	2855	3014	3238	6294	4695	6781	6297	3197	*	3001	2362	*	4298	7
+       0	*	*	*	*	1147	866	5591	0	1092	
+
+I 8    4915	*	*	*	4191	*	*	1486	*	2214	6323	*	7046	*	*	*	*	1824	5770	5727	8
+       0	*	*	*	*	*	0	5594	0	1025	
+
+K 9    *	*	6993	6081	5301	*	*	6329	1248	5316	6527	3725	*	*	1889	5379	4116	5653	*	4814	9
+       0	*	*	1585	585	0	*	5594	1025	1025	
+
+L 10   5532	7435	*	*	4404	6597	*	2436	*	993	4984	*	*	*	*	7265	3445	3351	*	*	10
+       0	*	*	*	*	*	*	5641	0	0	
+
+Q 11   5515	*	*	4869	5793	*	5832	2934	3333	3499	6120	4599	5168	2814	2714	4774	3859	3623	6492	6148	11
+       12	6861	*	0	*	*	*	5641	1000	0	
+
+L 12   5670	4691	*	*	6123	*	*	1746	*	2480	5736	*	*	6718	*	6475	6127	1336	*	*	12
+       0	*	*	*	*	*	*	5682	0	0	
+
+P 13   4409	*	7111	2649	5579	3928	5253	4872	3676	3995	*	5297	2159	4885	3820	5401	4000	4538	7737	6575	13
+       30	*	5605	*	*	*	*	5682	0	0	
+
+A 14   877	*	*	*	*	1513	*	*	*	*	*	*	5353	*	*	4053	5597	*	*	*	14
+       0	*	*	*	*	*	0	5634	0	1065	
+
+G 15   5733	*	*	5597	*	273	*	*	6575	*	*	5500	*	3547	*	6065	*	*	*	*	15
+       0	*	*	*	*	*	0	5634	0	1065	
+
+K 16   3760	*	4567	3529	*	5331	*	5510	1656	4829	4192	4321	*	3045	5039	3613	4923	5212	*	*	16
+       0	*	*	*	*	*	0	5634	0	1065	
+
+A 17   396	*	*	*	6159	*	*	4986	*	6456	6704	*	5109	6091	*	5875	5597	3439	*	*	17
+       94	*	3983	*	*	*	0	5634	0	1065	
+
+T 18   3486	*	*	*	*	4637	*	*	2442	5589	5988	2873	5154	*	4886	2162	2237	5953	*	*	18
+       0	*	*	*	*	551	1656	5538	0	1413	
+
+P 19   2323	*	*	*	5561	7422	*	*	*	5261	4968	*	721	*	*	4616	4460	5488	*	*	19
+       42	*	5108	*	*	0	*	5642	0	1095	
+
+A 20   2056	*	*	5710	*	1718	5598	*	6075	5576	*	4304	5197	6323	*	2471	3194	*	*	*	20
+       42	*	5132	*	*	*	0	5690	0	1110	
+
+P 21   4139	*	*	6040	*	6254	*	*	5535	*	*	6278	360	7368	*	3905	*	*	*	5119	21
+       31	*	5535	*	*	995	1005	5635	0	1276	
+
+P 22   3846	*	*	6158	*	6389	5594	*	4480	5696	*	*	689	4542	*	3163	5538	5423	*	*	22
+       26	*	5802	*	*	1290	759	5681	0	1225	
+
+V 23   5156	*	*	*	4229	*	*	2340	*	1255	5600	*	*	*	*	5555	*	1943	*	*	23
+       0	*	*	0	*	188	3036	5674	1025	1225	
+
+G 24   2717	*	*	*	*	470	*	*	6506	5574	6125	*	*	5206	*	4630	*	6337	*	*	24
+       0	*	*	*	*	*	0	5686	0	1000	
+
+P 25   *	*	5206	*	*	*	*	*	5536	*	*	*	569	2428	*	3894	6665	6154	*	*	25
+       0	*	*	*	*	*	0	5686	0	1000	
+
+A 26   1583	*	6726	5231	*	*	*	3834	3029	5125	4812	5315	*	3494	6500	3721	3535	3537	*	*	26
+       0	*	*	*	*	*	0	5686	0	1000	
+
+L 27   4852	*	*	*	4010	*	*	3528	*	398	6154	*	*	*	*	*	*	5470	5574	*	27
+       0	*	*	*	*	*	0	5686	0	1000	
+
+G 28   4492	*	5605	6529	5805	358	*	*	5236	*	*	*	6090	6151	*	4288	5689	*	*	*	28
+       0	*	*	*	*	*	0	5713	0	1000	
+
+Q 29   4704	*	6968	5298	7220	4433	*	*	4346	6836	6455	6245	1624	1487	6776	3425	6741	*	*	*	29
+       10	7181	*	0	*	*	0	5713	1000	1000	
+
+H 30   3795	*	*	7181	3347	*	5025	5621	3332	1832	5059	*	*	7281	2895	6869	5310	4504	6537	2921	30
+       0	*	*	*	*	*	0	5713	0	1000	
+
+G 31   7118	*	5805	6090	*	215	*	*	5547	*	*	6081	6852	7084	5265	*	*	5605	*	*	31
+       21	*	6126	*	*	*	0	5713	0	1000	
+
+V 32   7053	*	*	*	5754	6083	*	1428	*	1747	*	*	*	*	*	*	*	1788	*	*	32
+       27	5754	*	1585	585	*	0	5678	1046	1087	
+
+N 33   7049	*	3924	5754	*	*	*	5593	3553	*	*	613	3755	5751	*	4607	*	6083	*	*	33
+       0	*	*	*	*	*	0	5678	0	1087	
+
+I 34   3376	*	*	*	*	5387	*	1479	*	3274	2773	*	3110	5593	*	4630	6048	3654	*	*	34
+       0	*	*	*	*	*	0	5678	0	1087	
+
+M 35   3129	*	*	*	*	3873	*	3893	2799	5856	1748	3125	4426	4732	4627	6234	6655	5105	*	*	35
+       0	*	*	*	*	*	0	5682	0	1087	
+
+E 36   3228	*	2617	2240	5178	5223	*	*	2820	4511	*	4929	*	2870	*	4523	6685	4165	*	*	36
+       0	*	*	*	*	*	0	5682	0	1087	
+
+F 37   *	*	*	*	617	*	*	3264	*	5597	*	*	*	*	*	*	6483	2237	*	*	37
+       0	*	*	*	*	*	0	5682	0	1087	
+
+C 38   4096	1185	*	*	4425	3296	*	3989	6405	6090	6738	5915	*	*	*	4687	4202	2789	*	*	38
+       14	*	6738	*	*	*	0	5682	0	1087	
+
+K 39   5379	*	5403	2935	*	*	*	5596	949	*	*	3102	6082	3561	5224	6613	5057	*	*	*	39
+       21	*	6082	0	*	1824	479	5676	1000	1143	
+
+R 40   3284	*	1906	1957	*	*	*	*	2871	4854	*	6221	6525	3634	4180	4993	6605	*	*	*	40
+       0	*	*	*	*	*	0	5655	0	1188	
+
+F 41   6976	6461	*	*	806	*	*	2121	*	4283	*	*	*	*	*	*	*	4831	*	3439	41
+       0	*	*	*	*	*	0	5655	0	1188	
+
+N 42   4536	*	6378	*	*	*	6311	6375	4830	5567	*	318	*	5206	*	5714	6003	*	*	*	42
+       0	*	*	*	*	*	0	5655	0	1188	
+
+A 43   2333	*	2456	1898	6870	6019	*	*	2702	4699	*	3841	*	*	5902	5891	4993	*	*	*	43
+       0	*	*	*	*	*	0	5655	0	1188	
+
+E 44   2357	*	*	3850	*	*	*	5714	2256	3060	5825	5623	*	3933	2158	4766	*	5440	*	*	44
+       0	*	*	*	*	1264	777	5655	0	1188	
+
+T 45   6090	5598	*	*	*	*	*	4458	*	6222	*	*	*	*	*	4990	277	4344	*	*	45
+       17	*	6439	*	*	*	0	5682	0	1087	
+
+A 46   2520	*	6757	4961	*	4770	*	*	1467	6479	*	5752	*	2869	4933	2722	6960	5219	*	*	46
+       99	4131	6735	313	2359	1465	649	5667	1267	1167	
+
+D 47   4005	*	2281	3457	*	5656	3502	5086	3115	4599	*	3816	5786	3200	4716	4216	4875	5449	*	*	47
+       143	4635	4213	307	2385	1649	554	5642	1331	1235	
+
+K 48   5056	*	5807	*	2287	*	6358	2837	4240	3523	3951	*	*	4720	4689	*	*	4099	3465	2601	48
+       444	1917	*	356	2192	1689	536	5680	2604	1463	
+
+A 49   3699	*	4157	2585	*	5004	6684	4600	2163	5381	5671	3756	3092	4499	4473	5046	5542	5721	*	*	49
+       370	2322	5250	387	2089	719	1349	5684	2271	1305	
+
+G 50   5049	*	3371	5368	*	622	*	*	4882	4611	*	3269	*	*	*	6749	6454	*	*	*	50
+       0	*	*	*	*	984	1016	5655	0	1231	
+
+M 51   6411	*	4253	5183	4658	6483	*	2349	4388	2730	3457	6913	6094	5546	*	6028	3159	2517	*	5304	51
+       15	*	6629	*	*	*	0	5653	0	1087	
+
+I 52   5426	*	4978	4620	*	5257	5994	4261	3016	3805	*	5628	1271	5454	3777	6139	5717	4278	*	*	52
+       0	*	*	*	*	1781	496	5654	0	1145	
+
+L 53   *	6876	*	*	6147	*	*	1847	*	1838	5180	*	*	*	*	*	5655	1426	*	*	53
+       12	6913	*	0	*	*	0	5653	1000	1087	
+
+P 54   *	6160	*	*	*	5391	5087	5155	5208	*	4944	4295	1045	3782	3965	4763	3001	6492	*	*	54
+       78	4251	*	0	*	*	0	5653	1245	1087	
+
+V 55   4679	3842	*	*	*	*	*	4010	*	4558	*	*	6094	*	7166	*	3092	626	*	*	55
+       21	*	6094	*	*	*	0	5653	0	1087	
+
+V 56   *	*	5841	2826	5566	7142	5007	3139	2617	6978	6746	3876	*	3864	2802	*	3082	3591	*	7120	56
+       0	*	*	*	*	1264	777	5655	0	1188	
+
+I 57   *	*	*	*	4639	*	*	1215	*	1982	5540	*	*	*	*	*	*	2015	*	7166	57
+       0	*	*	*	*	*	0	5653	0	1087	
+
+T 58   4233	*	*	3024	*	*	5671	2928	5483	4999	*	6174	*	5155	4283	3191	1702	4651	5961	4233	58
+       0	*	*	*	*	*	0	5653	0	1087	
+
+V 59   3573	4426	*	*	5726	6094	*	1952	*	4330	*	*	5594	*	*	5169	6655	1181	*	5139	59
+       475	2723	2953	427	1965	*	0	5653	1790	1087	
+
+Y 60   6425	*	4289	5111	3213	*	*	5533	2837	4628	*	3352	4488	6071	5491	5839	4964	*	*	1437	60
+       50	*	4865	*	*	211	2880	5279	0	1950	
+
+E 61   4230	*	2776	3289	5775	5140	*	*	3354	*	*	3708	2884	3483	7501	2787	4794	3922	*	*	61
+       0	*	*	*	*	718	1351	5648	0	1219	
+
+D 62   5374	*	724	*	*	6460	*	*	5930	*	5954	2825	5209	*	6028	5110	3332	6093	*	*	62
+       10	7173	*	0	*	*	0	5675	1000	1052	
+
+K 63   6663	*	6028	*	*	4621	6201	*	1239	*	*	6435	*	5675	1208	7237	5242	*	*	*	63
+       0	*	*	*	*	*	0	5675	0	1052	
+
+S 64   4556	*	*	5096	*	6167	*	*	2923	*	6028	4662	*	4826	5190	1378	1959	5451	*	*	64
+       40	5207	*	0	*	*	0	5675	1101	1052	
+
+F 65   3292	*	*	*	1152	*	5380	4673	*	5140	*	*	6329	*	*	*	*	5295	6264	1712	65
+       0	*	*	1000	1000	*	0	5675	1002	1052	
+
+T 66   4527	*	2563	2358	*	5295	5882	5231	3930	5178	*	4727	*	5143	4826	3556	2649	4802	*	4365	66
+       0	*	*	*	*	*	0	5650	0	1052	
+
+F 67   6996	*	*	*	1422	*	*	2233	*	2464	5246	*	*	*	*	*	6872	2977	5124	4855	67
+       0	*	*	*	*	*	0	5650	0	1052	
+
+I 68   5840	7223	6155	2184	6878	*	*	3095	2933	4536	5802	3488	*	6472	4296	4376	3468	3141	6437	6708	68
+       0	*	*	*	*	*	0	5650	0	1052	
+
+I 69   *	6693	*	*	5593	*	*	1995	*	2078	4236	5435	6398	*	*	6575	3950	1703	*	6426	69
+       216	*	2848	*	*	*	0	5650	0	1052	
+
+K 70   4958	5295	4894	4173	6804	2916	4572	*	1494	4454	6833	4171	*	5295	3488	4281	7486	*	*	4915	70
+       34	*	5437	*	*	328	2299	5274	0	1842	
+
+T 71   5396	*	7162	5286	5983	5106	4720	3868	4553	3727	4541	4863	4202	4629	6974	3244	1712	3868	*	6061	71
+       0	*	*	*	*	1607	574	5618	0	1225	
+
+P 72   6620	*	*	6001	*	*	*	5586	6475	*	6489	6377	231	6570	*	6093	4911	6872	*	*	72
+       0	*	*	1000	1000	0	*	5631	1025	1133	
+
+P 73   5624	*	6104	5540	*	5742	4838	6953	4630	6163	*	5539	1142	5678	*	2586	2769	*	*	5618	73
+       0	*	*	*	*	*	*	5713	0	0	
+
+A 74   2789	7305	6163	*	5002	*	*	3106	*	5334	*	*	*	*	*	3225	1524	2263	*	*	74
+       0	*	*	*	*	*	*	5713	0	0	
+
+S 75   2618	*	6595	5907	*	4837	*	7305	6276	*	5367	6460	5083	6694	*	1016	2613	6742	6163	*	75
+       0	*	*	*	*	*	*	5713	0	0	
+
+F 76   3066	5195	3434	6550	2817	*	5007	5032	6985	5076	*	5976	*	4965	7305	3459	6063	4447	2654	2795	76
+       0	*	*	*	*	*	*	5713	0	0	
+
+L 77   *	*	*	*	1991	*	*	4269	7025	820	4633	*	*	5492	6462	*	*	5370	*	5364	77
+       0	*	*	*	*	*	*	5713	0	0	
+
+L 78   6228	*	*	*	4904	*	*	1459	*	977	*	*	*	*	6163	*	*	3886	*	*	78
+       0	*	*	*	*	*	*	5713	0	0	
+
+K 79   6143	*	*	7305	6276	*	*	2764	1350	2159	3693	*	*	*	3323	*	6163	6371	*	*	79
+       0	*	*	*	*	*	*	5713	0	0	
+
+K 80   5658	*	6030	3306	*	*	*	*	1396	*	6818	4516	*	2724	2327	4233	5179	*	*	*	80
+       42	5618	6918	0	*	*	*	5713	1073	0	
+
+A 81   1086	4485	*	3041	4252	7102	5666	4605	4517	3513	5480	6039	*	6628	*	*	7395	4952	*	5321	81
+       20	*	6182	*	*	*	0	5686	0	1002	
+
+A 82   1145	5763	*	*	4527	*	*	4406	6368	1840	5796	*	*	5544	5972	6754	5396	4550	*	5942	82
+       0	*	*	*	*	*	0	5669	0	1085	
+
+G 83   6817	*	6996	6806	*	810	*	6064	2371	*	*	3509	*	5470	4006	6814	*	*	*	6151	83
+       23	*	5972	*	*	*	0	5669	0	1085	
+
+I 84   3679	*	*	2973	5633	5614	*	1745	3208	3538	6720	6060	*	*	6395	*	6547	2322	*	6133	84
+       0	*	*	*	*	*	0	5672	0	1172	
+
+E 85   4469	*	2852	2615	4777	4970	6433	6099	2606	5393	*	5131	3086	4736	5358	3778	4433	6466	*	4975	85
+       55	7662	4934	2585	263	1395	690	5672	1000	1172	
+
+K 86   5550	5909	*	4321	6044	*	*	5993	1391	5267	5642	*	3675	4930	2991	3228	3735	4827	*	*	86
+       0	*	*	0	*	847	1172	5637	1000	1283	
+
+G 87   3936	5682	*	5943	4951	834	*	6065	4930	6746	*	*	4402	6134	3054	4472	*	5520	*	*	87
+       0	*	*	*	*	*	0	5653	0	1095	
+
+S 88   2150	*	3093	5840	5217	5021	*	*	4328	6134	6846	*	5093	*	7300	1292	4487	5573	*	*	88
+       32	*	5530	*	*	1153	862	5653	0	1095	
+
+S 89   4020	*	4900	7204	6896	2477	3945	6336	3135	*	4702	5642	5708	4582	2682	2393	5274	6220	*	6143	89
+       100	7395	4037	1000	1000	*	0	5595	1000	1156	
+
+E 90   5605	*	3241	3536	6464	5150	5389	6246	1757	5353	*	4050	*	3547	3542	5391	3275	6141	*	5829	90
+       0	*	*	0	*	851	1166	5530	1000	1510	
+
+P 91   3075	*	*	6109	*	4325	*	*	2938	6030	6448	4600	998	5137	6434	4825	4556	*	*	*	91
+       101	5086	4704	1404	685	565	1625	5637	1198	1200	
+
+K 92   6098	*	6185	5160	*	1395	5505	6506	3093	5378	5950	2765	*	4660	4856	5614	4891	3357	*	*	92
+       96	4702	5261	2867	213	2799	224	5600	1225	1331	
+
+R 93   5415	*	5035	5768	*	5751	2637	6802	1553	4886	*	4526	*	4946	3429	3857	4057	6583	*	4143	93
+       134	4691	4329	2595	261	222	2813	5602	1198	1416	
+
+K 94   5670	*	3787	1536	5441	5397	4511	4677	4171	6711	*	2833	*	3624	6026	4001	4782	4934	*	*	94
+       0	*	*	*	*	2055	397	5651	0	1302	
+
+I 95   4890	*	6972	6861	6772	*	6687	2392	2430	5752	7194	6057	4408	5196	*	4840	3480	2333	4976	3553	95
+       0	*	*	*	*	2039	402	5640	0	1217	
+
+V 96   3035	4221	*	*	5358	6500	*	2443	3540	3980	7045	*	5221	*	5729	3722	6007	1734	*	6555	96
+       329	2452	5574	1118	891	0	*	5647	2025	1151	
+
+G 97   3312	*	5656	*	6029	460	*	*	5014	6822	*	6125	*	*	*	4694	5759	6453	*	6082	97
+       0	*	*	*	*	*	0	5612	0	1073	
+
+K 98   5485	*	3361	3852	4966	*	*	6866	2803	5440	4697	2566	6088	4923	5439	3132	2545	5302	*	6029	98
+       0	*	*	*	*	*	0	5612	0	1073	
+
+V 99   *	*	*	6077	*	*	*	1101	*	1810	4867	*	*	*	5940	*	*	2449	*	*	99
+       0	*	*	*	*	*	0	5591	0	1073	
+
+T 100  5629	*	4788	*	*	5848	6262	*	4379	5007	*	4375	3922	*	*	1657	1312	*	*	*	100
+       0	*	*	*	*	*	0	5591	0	1073	
+
+R 101  6252	*	*	7185	2967	*	5637	2991	5167	1258	4408	*	5371	4399	4132	6245	6761	4638	5497	*	101
+       0	*	*	*	*	*	0	5591	0	1073	
+
+K 102  4131	*	2740	2206	6112	6096	*	*	1710	*	*	5253	*	4213	4194	3703	6990	7143	*	6023	102
+       0	*	*	*	*	*	0	5591	0	1073	
+
+Q 103  6058	*	2863	3573	6501	*	2277	6023	3322	*	5850	5098	*	1707	6404	5503	5197	7044	*	6762	103
+       0	*	*	*	*	0	*	5591	0	1073	
+
+I 104  4759	4488	*	*	*	*	*	1909	*	2225	*	*	*	*	*	*	*	1190	*	*	104
+       0	*	*	*	*	*	*	5680	0	0	
+
+E 105  4395	*	6689	4571	4317	*	*	3335	3138	4011	*	7341	*	7288	3550	6511	6161	3398	*	1482	105
+       0	*	*	*	*	*	*	5659	0	0	
+
+E 106  6170	*	3937	932	*	*	3926	*	1994	*	6899	5510	6637	5483	6930	*	6776	*	*	*	106
+       0	*	*	*	*	*	*	5659	0	0	
+
+I 107  6529	*	*	*	5585	*	*	297	*	5037	*	*	*	*	*	*	*	3015	*	*	107
+       0	*	*	*	*	*	*	5659	0	0	
+
+A 108  207	6678	*	*	*	*	*	6938	*	6173	*	*	*	*	*	4492	6630	4407	*	*	108
+       0	*	*	*	*	*	*	5628	0	0	
+
+K 109  5571	*	5466	2766	5544	*	*	4089	1413	4483	*	6398	*	3822	2511	*	*	6244	*	4733	109
+       0	*	*	*	*	*	*	5628	0	0	
+
+T 110  3813	5673	6400	4123	4602	6956	*	2156	3776	2839	4612	6883	*	4337	5756	6630	4008	2936	*	4906	110
+       0	*	*	*	*	*	*	5628	0	0	
+
+K 111  6478	*	*	*	*	*	6396	5248	316	3839	4476	*	*	*	*	*	*	4947	*	*	111
+       17	6407	*	1000	1000	*	*	5614	1011	0	
+
+M 112  4082	4595	*	4557	6049	*	4472	3994	2896	2832	3228	5828	5844	2906	3745	3591	*	*	6235	6230	112
+       33	5460	*	412	2010	*	*	5614	1071	0	
+
+P 113  3745	7112	4787	2675	5571	4155	*	4424	3799	5837	4731	4886	2142	3680	4573	4364	4869	6452	*	*	113
+       135	3486	*	1749	509	0	*	5572	1541	1028	
+
+D 114  6017	5124	1134	3091	*	6250	4863	*	3445	5347	*	4268	*	4491	4105	4463	*	*	*	5703	114
+       467	1904	6779	1179	840	*	*	5614	2419	0	
+
+L 115  *	*	5803	4693	4965	*	*	3591	5928	1370	3079	5636	5234	*	*	2321	7225	4798	*	5846	115
+       107	3813	*	969	1031	2295	329	5620	1340	1220	
+
+N 116  5912	*	7554	4347	3884	5075	*	5541	3714	3895	4207	1893	6205	4494	3886	4582	3539	5149	6578	4285	116
+       39	5245	*	1000	1000	0	*	5615	1088	1164	
+
+A 117  2013	4774	4901	5834	6203	3405	3774	6430	5938	6205	5824	4634	4763	6055	6775	2512	3195	7530	6515	5481	117
+       46	5312	7326	1000	1000	*	0	5608	1085	1000	
+
+N 118  4824	*	6333	6763	4500	5298	6953	3491	2160	3178	4923	3681	5834	5139	3386	4275	4428	4016	*	5065	118
+       0	*	*	*	*	761	1287	5612	0	1039	
+
+S 119  6397	*	2681	5216	6054	*	6124	*	5238	5838	*	3602	2669	5103	*	1730	2781	*	*	5938	119
+       0	*	*	*	*	*	0	5618	0	1000	
+
+L 120  *	*	*	5731	2922	*	*	2925	6040	916	3886	4765	*	5492	*	*	*	4937	*	6237	120
+       0	*	*	*	*	0	*	5618	0	1000	
+
+E 121  4174	*	4012	2026	*	*	*	5510	1754	6049	*	5907	6505	3511	4380	4214	4232	5445	*	6630	121
+       0	*	*	*	*	*	*	5614	0	0	
+
+A 122  2410	*	5872	4299	*	2230	6671	5942	4502	5417	6786	4005	*	4427	6752	1910	5324	5710	*	*	122
+       0	*	*	*	*	*	*	5614	0	0	
+
+A 123  1556	*	*	6474	*	6975	*	2361	5273	4076	4339	*	*	6396	4947	6926	2701	3468	*	6077	123
+       0	*	*	*	*	*	*	5614	0	0	
+
+M 124  3742	2268	*	5411	*	*	*	3867	4966	3784	3907	*	*	*	6671	5041	6495	1311	*	*	124
+       0	*	*	*	*	*	*	5614	0	0	
+
+K 125  *	*	*	5280	*	6157	*	6426	1017	4185	6478	4480	*	4744	2136	4267	6396	*	*	6077	125
+       0	*	*	*	*	*	*	5614	0	0	
+
+I 126  6207	7048	*	2546	*	*	*	3462	6728	6451	2608	*	*	2923	4093	2203	3362	5849	*	6679	126
+       0	*	*	*	*	*	*	5614	0	0	
+
+I 127  *	*	*	*	*	*	*	1496	*	2930	6980	*	*	*	*	*	*	982	*	*	127
+       0	*	*	*	*	*	*	5607	0	0	
+
+E 128  2723	6152	*	5177	*	*	*	2342	4140	1487	4915	*	*	6576	6225	5820	5028	3609	6834	*	128
+       0	*	*	*	*	*	*	5607	0	0	
+
+G 129  3666	*	*	6439	*	364	*	*	6043	6204	*	5934	*	*	*	4025	*	5825	*	6910	129
+       0	*	*	*	*	*	*	5607	0	0	
+
+T 130  5500	*	*	*	*	*	*	7078	5588	*	*	6046	6056	4126	6069	2533	634	6204	*	5924	130
+       20	*	6201	*	*	*	*	5607	0	0	
+
+A 131  780	1881	*	*	*	*	*	7064	*	3626	*	*	*	*	*	6848	6909	4619	*	*	131
+       0	*	*	*	*	*	0	5584	0	1025	
+
+K 132  4651	6373	*	*	7341	5687	4842	7115	2335	3884	*	3822	*	3572	1394	6163	6686	5362	*	4997	132
+       0	*	*	*	*	*	0	5584	0	1025	
+
+S 133  3133	*	*	*	*	6848	*	*	6705	*	*	4347	*	5184	4188	539	4379	*	*	*	133
+       0	*	*	*	*	*	0	5584	0	1025	
+
+M 134  7070	3946	*	*	*	*	*	2732	*	2875	938	6163	*	*	*	*	7169	3488	6806	*	134
+       0	*	*	*	*	*	0	5512	0	1025	
+
+G 135  6806	*	*	*	*	112	6821	*	5302	*	*	5947	*	6012	*	*	*	*	*	*	135
+       0	*	*	*	*	*	0	5512	0	1025	
+
+I 136  5567	2899	*	*	6378	*	*	935	*	3291	*	*	*	*	*	*	5327	2453	*	*	136
+       11	6983	*	2104	382	0	*	5533	1067	1025	
+
+E 137  4211	5818	5075	2958	*	6113	7273	5991	2142	4645	*	3994	*	4009	5203	5203	2072	5852	*	4950	137
+       59	*	4634	*	*	*	*	5556	0	0	
+
+V 138  6699	6560	*	*	5772	*	*	1435	*	5572	*	*	*	*	*	*	6671	835	*	*	138
+       0	*	*	0	*	0	*	5505	1164	1164	
+
+V 139  5070	6573	2412	2286	6827	5106	*	4754	4612	6341	6726	4204	*	*	6605	6284	3717	1858	*	*	139
+       101	3891	*	907	1099	*	*	5529	1214	0	
+
+D 140  *	*	2753	3905	*	1303	*	*	2812	*	*	4438	4068	6698	3525	*	6212	*	*	5539	140
+       0	*	*	0	*	*	*	5142	0	0	
+
+//
+�HHsearch 1.5
+NAME  530957bbdb4e54c1b80f11ba55b52a90
+FAM   
+FILE  530957bbdb4e54c1b80f11ba55b52a90
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:30:49 2013
+LENG  241 match states, 241 columns in multiple alignment
+FILT  117 out of 2257 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  8.8 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEEEEEEEEECCCCCEEEEEEEEEECCCCEEEEECCCCCCHHHHHHHHHCCCCCCCCEEEECCEECCCCCHHHHHHCEEEEECCCCCCCCCHHHHHHHC
+CCCCCHHHHHHHHHHHCHHHHHHHHHHHHHHHHCCCCCCCCHHHHHHHHHHHHHHCCCCEEEEECCCCCCCHHHHHHHHHHHHHHHCCCEEEEEECCHHH
+HHHCCEEEEEECCEEEECCCHHHHHHCHHHHHHHHHHHHCC
+>ss_conf PSIPRED confidence values
+9799999998179984467423799849979999999999889999999488878887299999974426878885227999413433556499999740
+3445789999999982859999875543344541660318999999999999996099999995876569999999999999997289989999788899
+96388899998997985089999874707899999875249
+>Consensus
+xixxxxlxxxxxxxxxxxlxxxsxxixxGxxxxlxGxnGsGKStLlxxlxGxxxxxxGxixxxgxxxxxxxxxxxxxxixxxxqxxxxxxxtxxenlxxx
+xxxxxxxxxxxxxxxxxxxxxxxxxxxxlxxxxxxxxxxLSxGxxxrlxlaxalxxxpxllllDEPxxxLDxxxxxxlxxxlxxxxxxxtiixxthxxxx
+xxxxdxvxxlxxgxxxxxxxxxxxxxxxxxxxxxxxxxxxx
+>530957bbdb4e54c1b80f11ba55b52a90
+DITFRNIRFRYKPDSPVILDNINLSIKQGEVIGIVGRSGSGKSTLTKLIQRFYIPENGQVLIDGHDLALADPNWLRRQVGVVLQDNVLLNRSIIDNISLA
+NPGMSVEKVIYAAKLAGAHDFISELREGYNTIVGEQGAGLSGGQRQRIAIARALVNNPKILIFDEATSALDYESEHVIMRNMHKICKGRTVIIIAHRLST
+VKNADRIIVMEKGKIVEQGKHKELLSEPESLYSYLYQLQSD
+>gi|258578069|ref|XP_002543216.1| hypothetical protein UREG_02732 [Uncinocarpus reesii 1704]gi|237903482|gb|EEP77883.1| hypothetical protein UREG_02732 [Uncinocarpus reesii 1704]
+RLEVTDLVVGYARDLPAVLRGLSFTVEKNQRNEC-------------NLFPLCPLKAHVQLHPPTQLSRPQ--GYRTAL-HQP-----------------
+----------------------------------------------------------------------------------------------------
+-----------------------------------------
+>gi|3644002|gb|AAC69488.1| ATP-binding protein [Pseudomonas aeruginosa]
+-LQTQALIKRYG--GLLVTDSVSIDVREGELHAIIGPNGAGKTTLINQLSGNFGRMRAMLCMRVRKSLHYLFTIGLAeGCCvrirsPPFSKSSQCSRtRC
+SAAMGaksqpvLLLAsYVGPGRS--RQSCPSCARDHPAVASd--------RCIGSRAGlwRTSSIGASHGFAAKPRVLLLDEPMAGMSPQESTSVIELLK
+SLKGSHSILLIEHDMEAvFALADRITVLVYGKVLCTGTPDEIRNNPEVKTVYL------
+>gi|170017200|ref|YP_001728119.1| ABC-type multidrug transport system, ATPase component [Leuconostoc citreum KM20]gi|169804057|gb|ACA82675.1| ABC-type multidrug transport system, ATPase component [Leuconostoc citreum KM20]
+-MEIKNYSVTFGNR--QLSTNLNVSFSKSKMNIVMGANGAGKSTLLDFVAGVGPKGAVGEKVG-----I----PSYKKIAYQLQQVHFFPtLTVAQTVEF
+YskltnKPKTKMYENAQTVRENLLDPI-----------WDTKMGQLSGGERQIVLTYGQCLLDKEVYIFDEPTSGVDETNAPVILSMINDLVINEHKIVI
+MTSHHSDQLKQFDLNLIT-----------------------------
+>gi|332716583|ref|YP_004444049.1| ABC transporter, nucleotide binding/ATPase protein [Agrobacterium sp. H13-3]gi|325063268|gb|ADY66958.1| ABC transporter, nucleotide binding/ATPase protein [Agrobacterium sp. H13-3]
+-IRLRSVTIC-RDAGgqdlerGFRLREAEVEIGRGDRLMINGEQGVNRRLLFAAMAGLWPWGQGSIEMPEQSDTL-----------FIAQHGYLPTGTLR
+EILAYPRapQRFVEADYVAALTACGLGEMAPRLDE-----HIRWDKKLDSDEQASIRIANALLLKPKFIVIDDLLEGLEKQTQDTLAEVLNG-IDGVAII
+YIGRSE---TFLSVLTPALAH----------------------------
+>gi|120436602|ref|YP_862288.1| ABC-type transporter ATP-binding protein [Gramella forsetii KT0803]gi|117578752|emb|CAL67221.1| ABC-type transporter ATP-binding protein [Gramella forsetii KT0803]
+-LNIEGLEASIE-GET-LFKNVDINLAKGDKVVVFSKDSRATSAFYEIINGKQNAVNGKFQWGVT-----------TSQSYLPADNSdffDNDLTLVDWL
+RQWatsEEEREEVYIRGFLGKMLF----------SGEEALKTCRVLSGGEKVRCMLSRMMMIRANVLMLDEPTNHLDLESITAFNNSLKNF--KGTVLFT
+THDHEFAQTlANRVIELtPGGVIDRYLSFDEYMSD--------------
+>gi|295115774|emb|CBL36621.1| ABC-type sugar transport system, ATPase component [butyrate-producing bacterium SM4/1]
+---------------EPYLQDVSFDVREGEIFGLYGLVGAGRTELLETMFGICTRAAGRVYFRNRLMNFNSAkEAIEHGFALITEErkanGLFLKGDLTF
+NTTIANLDQYKVGmaLSDQKMVKATAQEIKIMHTKCMGPD-DMISSLSGGNQQKVIFGKWLERSPQVFMMDEPTRGIDVGAKYEIYELIIKMANrERPLL
+LFPLRCRRFWESQTVSELCQTVIFLELSTRR------------------
+>gi|254674125|emb|CBA09909.1| ABC transporter, ATP-binding protein, putative [Neisseria meningitidis alpha275]
+AIKFEHVDFSYEAGKP-LLNGFNLTIRPGEKVGLIGRSGAGQIHHRQPAFALLRTAKRHG-FDRRAGHKRRHPRIFTRPNRFGHARYLAAAPFRARQHYL
+RPPRRDRCRNGFRRRTRRSR--------------------------------------------------------------------------------
+-----------------------------------------
+>gi|330961459|gb|EGH61719.1| ABC transporter family protein 61 [Pseudomonas syringae pv. maculicola str. ES4326]
+-VTLEH------CELPYgpPDSRFIdLTLHGPMRVAVIGPNGCGKSTLLKVIAGQLAP-ASGIARHIL------------RTHLIDQHAQTFDPehGIEQ
+VLRNELGTVEEGRFrQVFANA------------GLDARQMAtPFGRLSGGERLRATLAWLAGGrprTDATVAARRSEQSSRHRGAGSSRAVARTIQR--R
+AHRECSRS-------------------------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+D 1    2636	*	2895	3506	*	4971	*	*	4303	*	*	4478	2811	*	3117	2436	4418	*	*	*	1
+       62	4566	*	2157	366	*	*	6672	1209	0	
+
+I 2    *	*	*	*	4108	*	*	1384	*	1473	4140	*	*	*	*	*	*	2914	*	6739	2
+       0	*	*	*	*	*	*	9053	0	0	
+
+T 3    4443	6773	3916	2366	*	5220	4739	6862	3045	4715	6264	3978	*	4407	4288	3185	3351	3841	*	*	3
+       43	5099	*	1374	703	*	*	9060	1276	0	
+
+F 4    3585	6537	6598	*	3073	6137	*	2295	*	2203	4069	*	*	*	*	*	*	2154	6837	4361	4
+       13	*	6827	*	*	*	*	9130	0	0	
+
+R 5    5706	*	4048	1829	6106	*	4859	5523	3252	*	*	3447	*	4224	2892	3371	3710	6603	*	*	5
+       51	6255	5516	1585	585	0	*	9153	1028	1042	
+
+N 6    4719	*	2265	5757	*	3063	3542	*	4625	*	6570	1721	6076	4805	4547	5126	5439	6516	*	5669	6
+       45	6605	5629	1000	1000	619	1520	9079	1000	1368	
+
+I 7    4272	6582	6297	*	4123	6370	*	2679	*	1203	*	*	5701	*	*	*	*	2083	*	6668	7
+       0	*	*	*	*	*	0	9074	0	1504	
+
+R 8    3180	5679	4735	4660	6320	3870	6519	5674	4347	*	*	4217	*	4895	3224	2188	2847	4338	5641	6615	8
+       16	6480	*	0	*	1861	464	9074	1024	1504	
+
+F 9    4116	5213	*	*	2980	*	5149	2878	2326	2677	5713	*	6400	6493	5032	5548	*	2992	6283	4787	9
+       18	*	6323	*	*	*	0	9096	0	1326	
+
+R 10   4180	6293	4572	3776	4831	3692	4703	5584	2712	5533	*	5140	5186	5307	3426	2783	3135	6728	*	5136	10
+       121	4861	4435	3302	154	1747	510	9061	1388	1525	
+
+Y 11   5684	*	4418	*	2995	5465	3473	3358	*	3796	*	4867	5034	*	4506	4276	6108	4316	6991	1771	11
+       411	4119	2393	699	1380	325	2309	9049	1701	1958	
+
+K 12   5825	*	3128	4052	6154	2242	4560	5922	3529	5905	5257	4894	2387	5480	5102	4558	4767	5380	*	6117	12
+       255	4845	2977	2207	352	3028	189	8931	1282	3501	
+
+P 13   6421	5863	3734	3792	7040	2554	5039	4816	3813	3738	*	3441	3515	5902	3390	4244	3987	*	6396	6106	13
+       604	4293	1781	3293	155	629	1502	8814	1435	4512	
+
+D 14   4258	*	3000	4450	6436	2524	*	5660	3006	4654	6325	3857	3295	4524	3652	6455	4098	4990	*	*	14
+       259	4319	3133	454	1888	1629	564	8750	1674	4785	
+
+S 15   4476	*	3394	3857	6321	2244	5670	*	3212	5233	*	3530	4752	3631	3490	3637	4668	*	*	*	15
+       187	3891	4203	3764	110	736	1323	8780	1566	4644	
+
+P 16   5055	*	6682	5194	5522	3470	3790	3911	2778	4159	*	4533	3541	6525	2985	4041	3543	4210	*	6220	16
+       189	4457	3698	1553	601	1315	741	8964	1465	3175	
+
+V 17   4399	4469	5587	4973	3813	*	7169	6632	4291	2908	*	5490	3305	3165	4060	5216	3591	3461	4728	4353	17
+       94	5301	4733	714	1357	1099	907	8897	1208	3234	
+
+I 18   2493	*	6435	6486	4876	5262	*	2414	*	2604	4440	6647	6094	6175	6668	5053	5073	2172	*	6461	18
+       13	6851	*	3227	163	478	1825	8946	1105	2637	
+
+L 19   5354	6359	6257	*	3172	*	*	3341	6749	1035	6720	6461	*	6665	6710	6888	5080	3253	5806	4562	19
+       24	5944	*	539	1682	557	1643	9121	1109	1388	
+
+D 20   4872	*	2931	3393	5148	6730	4420	6228	3124	6133	*	3150	4862	3473	3472	3309	5198	4348	6888	*	20
+       16	*	6483	*	*	*	0	9159	0	1019	
+
+N 21   4856	*	2208	4079	6940	3029	4370	5699	5842	*	*	1951	4199	4426	4054	5572	*	5334	*	6848	21
+       0	*	*	*	*	0	*	9138	0	1189	
+
+I 22   4091	6753	5726	*	4054	5526	6473	2242	7480	1834	6786	*	5149	6900	6267	5849	5888	2122	*	*	22
+       0	*	*	*	*	*	*	9181	0	0	
+
+N 23   4505	6831	2869	5801	*	4850	5218	6292	5826	5814	*	2417	6741	6744	6416	1612	3220	6197	*	5873	23
+       51	6292	5491	0	*	*	*	9181	1078	0	
+
+L 24   4244	5554	*	6745	1632	5529	6914	3928	*	1589	4686	*	*	6613	*	6276	*	3928	5105	6771	24
+       0	*	*	*	*	*	0	9122	0	1212	
+
+S 25   3755	6914	3563	2919	6995	6316	6883	6312	3780	5774	6363	3816	*	4146	5066	2244	2963	4072	*	*	25
+       14	*	6744	*	*	0	*	9122	0	1212	
+
+I 26   4429	5780	*	6261	3059	*	*	1679	*	2057	5330	*	*	*	*	*	6595	2260	*	7480	26
+       0	*	*	*	*	*	0	9167	0	1010	
+
+K 27   3898	*	3994	3241	6379	4930	6279	*	2765	6126	5037	3548	3116	4686	2995	3718	4719	5862	*	5752	27
+       0	*	*	*	*	0	*	9167	0	1010	
+
+Q 28   3537	6593	4250	4213	*	4769	5896	6829	2506	4306	*	4111	2333	4576	4216	3314	4435	6759	*	*	28
+       8	*	7480	*	*	*	*	9181	0	0	
+
+G 29   5954	*	4366	*	*	556	5282	*	6989	*	*	3544	4619	5831	5797	4324	*	*	*	6699	29
+       0	*	*	*	*	*	0	9168	0	1096	
+
+E 30   4435	*	2596	1723	*	3943	*	6933	3785	5740	5939	*	6478	2791	4887	3781	4958	*	*	6605	30
+       14	*	6744	*	*	*	0	9233	0	1096	
+
+V 31   4243	4262	*	*	4181	*	4849	2062	3674	3197	5025	*	*	6493	2886	4090	4797	3700	*	5079	31
+       13	*	6845	*	*	1403	685	9185	0	1248	
+
+I 32   4909	4373	*	*	4979	6767	5803	2629	*	2606	5180	5146	*	*	6648	5724	2937	2077	6856	3778	32
+       0	*	*	*	*	0	*	9238	0	1234	
+
+G 33   1567	5066	5942	7729	6877	1784	6778	4455	*	3604	*	6208	*	5675	*	4894	5150	3970	6893	6838	33
+       14	7281	8131	1000	1000	*	*	9246	1049	0	
+
+I 34   6786	6306	*	*	4613	*	*	1704	*	1323	5580	*	6489	*	*	*	*	2332	*	*	34
+       7	*	7711	*	*	*	0	9242	0	1003	
+
+V 35   4001	*	5641	5950	5289	*	*	2408	5763	2007	5797	*	*	4904	5192	5813	3404	2316	*	5140	35
+       13	*	6758	*	*	*	0	9248	0	1177	
+
+G 36   4073	5624	5551	6453	*	256	*	*	*	*	*	6256	6323	7457	*	5725	*	*	*	*	36
+       22	6031	*	2995	193	*	0	9228	1233	1343	
+
+R 37   2897	*	4471	3948	6732	6504	5931	6269	3637	3996	*	4129	1975	4521	3136	4732	7050	4351	*	*	37
+       0	*	*	*	*	*	0	9222	0	1343	
+
+S 38   4757	6764	4533	4599	*	4937	*	*	5798	6776	*	981	4803	6379	5888	2385	5216	5656	*	*	38
+       18	*	6328	*	*	1577	589	9222	0	1343	
+
+G 39   4735	*	4217	6659	*	438	*	*	5614	6526	*	4815	5560	6688	*	4745	6381	6183	*	*	39
+       0	*	*	*	*	1486	637	9220	0	1359	
+
+S 40   2018	3953	6942	4049	6785	5702	6785	5132	5759	6680	*	5798	6342	6770	5368	1754	3787	3422	*	*	40
+       20	*	6200	*	*	*	0	9243	0	1177	
+
+G 41   4189	6753	4552	6481	*	329	5419	6323	*	7250	*	*	*	6827	*	5440	*	6383	*	*	41
+       0	*	*	*	*	1366	708	9194	0	1384	
+
+K 42   4544	*	6289	*	*	*	7270	5444	426	4527	7461	*	*	5248	4145	6514	5176	*	*	*	42
+       0	*	*	*	*	*	0	9243	0	1177	
+
+S 43   7461	*	*	4880	*	5646	*	6905	5186	*	*	5494	*	4939	*	1022	1563	5708	*	*	43
+       14	6710	*	0	*	*	0	9243	1029	1177	
+
+T 44   3172	4927	6200	4468	*	*	5700	5096	6393	4148	6034	*	*	*	4709	2914	1127	5202	*	6737	44
+       0	*	*	*	*	*	0	9243	0	1177	
+
+L 45   5256	*	*	*	2490	*	6905	4278	*	739	4747	*	6434	5836	*	*	5543	4354	*	*	45
+       0	*	*	*	*	*	0	9243	0	1177	
+
+T 46   4051	5920	*	6744	3388	6811	*	2791	6726	1071	3747	*	6295	*	6915	6847	6052	4258	*	6982	46
+       0	*	*	*	*	1067	936	9250	0	1177	
+
+K 47   4620	*	3805	3814	*	5515	4503	*	2120	5343	6994	2940	7285	3524	2483	3901	5733	*	*	*	47
+       11	6983	*	2000	415	0	*	9241	1000	1018	
+
+L 48   2285	5346	6785	*	5588	*	6537	2709	*	2627	4825	6637	6941	6318	6445	4486	3201	2696	*	5070	48
+       0	*	*	*	*	*	*	9247	0	0	
+
+I 49   6941	5772	*	*	5026	*	*	1782	*	1074	4112	*	*	*	6525	*	6721	3489	7294	8154	49
+       12	*	6918	*	*	*	*	9247	0	0	
+
+Q 50   1785	3686	6742	*	4975	4064	*	5198	*	3179	4979	4641	5751	7363	4592	3328	3684	4546	*	4819	50
+       57	4697	*	1935	437	*	0	9232	1626	1002	
+
+R 51   6909	*	4170	6018	*	593	5235	*	5905	6566	*	4090	7756	4994	3970	5978	6769	5617	*	*	51
+       37	7485	5681	1585	585	1584	585	9222	1096	1317	
+
+F 52   6494	*	5835	3498	4533	5707	6012	3651	4806	1675	4372	6753	4993	4753	4049	4359	5808	3633	5658	5442	52
+       54	5185	6751	1703	530	2073	391	9193	1473	1499	
+
+Y 53   4070	7663	5526	5591	6872	*	3907	3430	3459	2148	5661	4493	*	4183	4071	4614	4512	4035	6678	3748	53
+       114	4431	5073	1974	424	1153	861	9193	1575	1507	
+
+I 54   3730	*	4013	3899	6704	5347	5151	4950	2930	4640	5709	4233	2510	5096	3656	4333	4471	4582	5849	5678	54
+       58	5950	5411	1709	527	833	1189	9177	1199	1669	
+
+P 55   3338	5976	5088	4976	4298	5265	*	4117	5221	3772	*	4669	1523	4259	4645	5321	5161	4370	*	6814	55
+       103	4759	4966	1198	826	451	1896	9201	1472	1590	
+
+E 56   4406	5949	2709	4212	6363	5055	4435	5136	4318	3794	7014	4711	5005	5106	4766	3968	2444	4197	*	4455	56
+       61	5874	5376	959	1042	1704	529	9139	1126	1591	
+
+N 57   2873	6919	4492	2584	7198	4134	6574	6850	4544	5657	*	4111	5730	4480	4721	2096	3808	5340	*	6796	57
+       23	5968	*	1536	610	801	1231	9158	1101	1896	
+
+G 58   6584	*	5791	5048	*	309	6176	*	*	*	*	4741	*	6588	5696	5537	5582	6509	*	*	58
+       13	*	6762	*	*	1722	521	9205	0	1306	
+
+Q 59   4719	*	3926	3273	5040	4205	4061	5607	3527	*	6360	3780	*	4135	3176	4156	2813	4304	6478	5146	59
+       17	6436	*	0	*	1650	554	9193	1076	1317	
+
+V 60   4202	5761	*	*	4689	5089	6440	1126	*	2781	*	*	6960	7762	*	*	5711	2236	*	*	60
+       55	6376	5284	2000	415	*	0	9211	1050	1168	
+
+L 61   5558	6850	6780	3727	4216	*	4843	4423	4675	2701	6365	5209	6428	5378	2634	3532	3524	3470	5776	4659	61
+       29	*	5639	*	*	2035	403	9148	0	1652	
+
+I 62   6246	6963	*	*	2767	*	5505	2274	5574	2287	7200	5813	6352	7177	4588	5400	5640	2871	4840	3708	62
+       52	5287	6663	438	1934	1686	537	9149	1245	1784	
+
+D 63   5262	6634	1721	4907	5943	3065	3642	*	4461	4152	*	2662	6157	4700	4011	5744	*	*	*	5752	63
+       94	5832	4459	2938	202	*	0	9154	1143	1647	
+
+G 64   6549	*	3914	4128	6405	1019	4584	6156	5471	6682	*	3791	5206	5075	5010	4200	5574	6734	5794	6697	64
+       148	5130	3852	1762	504	*	0	9097	1273	2360	
+
+H 65   5415	*	6894	3566	5071	5043	3584	4543	2678	3347	5702	6453	4464	3973	3452	4512	3535	4009	6667	6687	65
+       146	5542	3742	2174	362	1768	501	8994	1143	3217	
+
+D 66   3620	6659	2402	3403	*	*	6479	*	3368	4972	*	2657	2980	5168	3956	3975	6597	4894	*	*	66
+       156	4711	3961	1015	985	3391	145	8922	1437	3499	
+
+L 67   4561	6916	*	5577	*	4918	*	2096	6434	2094	5510	5668	3927	6779	4250	4431	4506	3101	6491	5126	67
+       234	4106	3446	1661	549	3111	177	8906	1616	4046	
+
+A 68   3985	*	4353	4431	4923	3919	4499	6533	6452	3663	*	3435	5449	4894	3692	2959	2424	4466	6565	*	68
+       122	5031	4301	390	2079	3390	145	8778	1216	4572	
+
+L 69   3523	*	2878	3129	5384	4599	5369	6458	3281	3982	*	4235	4801	5453	3854	3047	4056	4893	*	*	69
+       139	4826	4148	2983	195	1718	523	8716	1558	4796	
+
+A 70   4109	*	3996	4970	4183	4971	6190	3471	4590	2662	5520	5042	4629	4239	4017	3685	4891	4308	5507	3922	70
+       137	5450	3880	1810	484	2011	411	8782	1152	4389	
+
+D 71   4177	6563	3362	4358	*	3754	6338	4547	6763	3741	6405	3107	3659	3824	4134	3028	3553	5552	*	6484	71
+       103	5589	4367	514	1737	3100	179	8796	1202	4304	
+
+P 72   3787	*	4376	4195	*	5340	4597	4866	3816	3344	6716	4399	2427	6419	3633	3366	4184	4394	*	5617	72
+       235	3807	3663	626	1506	2863	213	8775	1755	4457	
+
+N 73   3924	*	3751	3840	5311	3765	5351	5392	3041	3820	*	4582	4462	4964	2731	3372	4342	6358	*	5459	73
+       181	4420	3814	1038	963	2215	350	8735	1549	4784	
+
+W 74   3608	*	3314	3182	*	5906	4124	4892	4864	3997	6049	4696	6214	3582	3433	3995	4948	4027	4154	4420	74
+       173	4136	4149	226	2783	1728	518	8719	1666	4651	
+
+L 75   5281	6487	*	*	3491	3747	5322	2935	5006	2271	5571	*	4753	*	3649	4125	5153	2986	*	4153	75
+       125	3800	6512	1396	690	1762	504	8835	1719	4205	
+
+R 76   3639	6568	6538	4821	5732	4096	5251	5563	3698	3680	6403	6618	3804	4810	1777	3571	4977	6910	6993	5053	76
+       82	6406	4528	2000	415	1278	767	8935	1029	3469	
+
+R 77   3739	5701	5130	3841	6620	4556	4316	5685	3678	4348	*	3477	4808	3950	2505	3096	4567	4941	*	*	77
+       93	4554	5652	948	1054	654	1455	8996	1599	2990	
+
+Q 78   4466	6724	4450	5135	6645	3707	4769	4794	3252	4715	5207	3544	*	3164	2412	2930	*	7016	*	5839	78
+       102	4133	6467	271	2545	737	1322	9145	1722	1966	
+
+V 79   5359	5109	*	*	4340	5776	*	1888	5672	2321	4828	6676	6872	5244	6839	5222	4985	2068	*	8127	79
+       18	*	6320	*	*	1012	989	9194	0	1472	
+
+G 80   2130	4828	6737	7136	4849	1993	6263	6496	*	4726	5746	5866	4580	6401	5713	2506	4834	5346	6940	5663	80
+       32	5499	*	1282	764	373	2133	9206	1168	1499	
+
+V 81   5071	5277	5204	*	2772	6395	6320	3918	5371	2876	4756	6898	5644	6951	4491	*	4878	4223	6972	1706	81
+       0	*	*	*	*	*	0	9197	0	1180	
+
+V 82   3358	5649	*	5795	4217	*	6815	2523	*	2292	5796	*	*	4982	*	4865	4207	1920	*	5548	82
+       21	6489	8140	2585	263	865	1149	9197	1016	1180	
+
+L 83   4179	*	4670	5355	3073	3728	5039	*	7260	3533	3937	6249	1858	6378	5056	3270	5342	5597	6817	6758	83
+       78	*	4254	*	*	*	0	9227	0	1155	
+
+Q 84   3708	*	3934	3240	*	6794	4663	*	6819	5637	*	3903	3438	1418	5066	3686	5606	6229	*	*	84
+       44	5496	6960	1560	598	1316	741	9181	1366	2009	
+
+D 85   3710	*	2492	2990	5362	4806	4330	5329	4446	6980	*	3712	4650	3374	3616	4939	4891	5563	6530	4674	85
+       110	4516	5061	1454	655	1560	598	9232	1592	1677	
+
+N 86   2975	5684	3947	4470	4180	5600	5647	5769	5915	3894	*	4234	2056	4846	3829	3893	4854	4816	*	6741	86
+       254	2785	5948	1542	607	1643	557	9197	3033	1858	
+
+V 87   5156	*	4536	4082	5100	4567	5364	3765	5093	4465	*	3501	4271	3597	4248	2813	5056	3154	5496	4515	87
+       138	3810	5638	1266	775	*	0	9206	1998	1805	
+
+L 88   5305	6566	3763	4870	2820	*	*	2750	6324	1826	6705	5771	4352	6597	5006	4726	5199	4082	*	5099	88
+       39	5752	6920	0	*	*	0	9176	1130	2088	
+
+L 89   4711	6923	5899	6553	1797	5488	*	3143	6666	3254	6797	4702	3016	6686	6585	4505	5568	4274	5834	3996	89
+       285	2971	4280	217	2840	3199	166	9168	2647	2216	
+
+N 90   2764	*	2810	3734	4308	4699	4846	6784	4666	6321	*	3722	2851	3924	5531	4072	5714	6618	*	4066	90
+       115	3935	6485	208	2896	3609	123	9099	1834	2749	
+
+R 91   3295	*	5180	4723	3803	2294	6283	4700	5678	2761	3981	*	5358	4443	3832	6423	3897	5070	*	5251	91
+       271	2544	*	924	1080	1286	761	9110	3257	2890	
+
+S 92   6587	*	6642	6792	6617	4667	*	5591	4666	6685	*	4497	4109	5031	4123	2231	1252	5883	*	6499	92
+       25	*	5883	*	*	3365	147	9160	0	2237	
+
+I 93   4481	6647	*	*	5679	3373	6498	2334	6581	2176	5776	5466	4994	6767	5067	6532	6807	2012	*	6784	93
+       29	6631	6720	0	*	*	0	9162	1010	2399	
+
+I 94   2913	*	5104	3963	5478	5152	5745	4778	3884	2051	6767	6748	*	6791	2526	6636	*	4399	4789	3952	94
+       29	*	5666	*	*	*	0	9152	0	2530	
+
+D 95   4735	*	1893	1396	5554	4852	*	*	4749	6724	6452	4464	*	3753	6752	4381	6248	*	6741	*	95
+       14	*	6741	3000	193	2366	311	9100	1003	2785	
+
+N 96   4737	*	6608	3853	5116	6964	5190	4459	6465	4356	5882	1211	*	4209	5526	4385	5105	4442	5734	4414	96
+       30	6603	6579	0	*	*	0	9101	1010	2567	
+
+I 97   5070	5750	*	6075	4621	*	6334	2119	*	1466	4779	*	6275	5825	6734	5384	5723	2618	*	6717	97
+       65	5471	5521	1022	979	2711	239	9083	1333	2702	
+
+S 98   2777	5064	3823	5299	*	5739	4852	4250	4647	2531	5491	6628	5572	5098	3127	4125	3470	4731	6876	5758	98
+       61	5715	5465	987	1013	*	0	9078	1129	2705	
+
+L 99   3887	5593	5405	5724	3068	6292	6540	4225	5450	1913	4277	6063	5022	4088	4397	5719	6721	4183	*	3360	99
+       198	3687	4306	4696	57	3692	116	9033	1949	3019	
+
+A 100  2223	6139	4887	4438	2974	3489	5316	5660	4861	3233	5510	5427	4369	6653	*	4091	5656	4978	5559	4190	100
+       173	3457	5510	2723	237	3359	148	8966	2247	3503	
+
+N 101  3656	4670	4846	4411	5645	3712	4035	4812	3599	2757	6827	4541	5994	3959	3618	4651	3935	6522	6525	4791	101
+       191	3424	5007	1291	758	1227	804	8986	2372	3535	
+
+P 102  5182	*	4865	3137	6603	3393	5209	*	4391	4210	5738	4643	1949	4911	2928	3878	6522	6651	*	5711	102
+       275	3097	4145	2551	270	1899	450	9095	2468	2852	
+
+G 103  3089	7014	3400	3444	5545	3777	5013	4204	3949	3246	6294	3652	5655	4195	4613	4418	3756	*	*	6636	103
+       284	2648	5721	1628	564	1202	823	9034	2950	3058	
+
+M 104  4622	5192	4664	5154	4326	5119	5085	3596	4925	2392	4719	5025	4235	5903	4206	3383	4488	4089	*	4098	104
+       57	5610	5787	602	1551	3549	129	9116	1141	2545	
+
+S 105  4299	6504	2936	3535	*	3655	5872	5745	4035	3851	6658	4898	3463	5592	3836	3389	3117	5505	6866	6693	105
+       179	3606	4867	2758	231	1489	635	9095	1975	2755	
+
+V 106  3214	*	3786	3296	4592	4559	6488	4517	4580	4731	4968	3677	4742	5511	4983	3604	4706	3155	5806	4381	106
+       80	4847	5709	1770	501	2115	379	9118	1365	2573	
+
+E 107  3356	5108	3498	2700	5913	3849	4449	6719	4302	4267	6513	4368	5154	3818	3652	4685	4289	5673	5669	5661	107
+       101	4113	6662	2169	363	2094	385	9091	1729	2452	
+
+K 108  2826	6756	3743	3048	4967	4465	4983	6306	4258	4806	*	3879	5095	4321	2444	5240	4574	6563	6838	5274	108
+       172	3564	5163	1282	764	1635	560	9111	2070	2374	
+
+V 109  3041	*	6125	5613	3324	5120	*	2580	4714	2168	3873	*	5475	*	4757	5835	5610	3813	6757	4603	109
+       61	4973	6757	389	2080	*	0	9144	1388	2281	
+
+I 110  3061	*	4151	3545	4733	6599	*	3884	3767	3130	4880	4087	5236	3691	3678	4937	5820	3920	5668	5390	110
+       77	5051	5503	3999	93	1153	862	9147	1292	2408	
+
+Y 111  3601	*	3917	3329	4663	3564	6607	4285	2963	4146	*	4464	5505	4490	3574	4712	5676	4978	6775	3520	111
+       72	4706	6581	2922	204	1983	421	9137	1607	2062	
+
+A 112  2767	*	5759	5251	4074	3883	5430	3419	4453	2915	4873	6591	5141	4947	4344	4312	4520	3606	5764	4741	112
+       33	5454	*	5555	31	2828	219	9124	1181	1923	
+
+A 113  3074	5862	4968	3912	3921	5787	5352	3343	5086	1887	4648	5640	*	4842	3769	5143	6756	5291	6551	5907	113
+       17	*	6417	*	*	*	0	9143	0	1779	
+
+K 114  3294	6567	3155	2844	6833	4353	6838	5732	4005	5101	4549	4358	6702	5105	2463	3855	5520	5175	*	5100	114
+       86	4705	5661	1586	584	2970	197	9115	1467	1965	
+
+L 115  4238	*	4049	5187	5657	*	5660	3327	3524	2072	4897	6701	6769	4635	3143	4026	5128	3747	*	5330	115
+       130	*	3538	*	*	1535	611	9095	0	2243	
+
+A 116  4812	5417	3874	4684	3100	4832	*	6565	5210	3292	4696	5566	5206	4363	3458	4734	3475	2859	*	4299	116
+       33	6627	6313	861	1153	800	1232	9013	1196	2962	
+
+G 117  3847	*	3525	3593	4852	1966	4688	6725	4234	4106	*	3476	4565	4343	4735	5628	5838	6629	5307	5734	117
+       41	*	5142	2000	415	1978	422	9063	1002	1969	
+
+A 118  2575	6406	4615	5469	4441	5472	7059	3027	6844	1494	6672	4546	5842	*	5776	6679	6875	3510	*	*	118
+       71	5247	5523	943	1059	1069	934	9095	1257	2105	
+
+H 119  4085	*	2881	3779	5620	4738	4382	4632	3679	3062	5006	3687	5126	5208	4738	3455	4400	5679	*	5129	119
+       95	4438	5811	1880	457	2826	219	9070	1592	1874	
+
+D 120  2929	*	3164	2703	*	3613	4485	*	3731	6782	*	5084	4038	4160	3967	3784	4050	4333	*	*	120
+       50	6261	5558	2585	263	2873	212	9065	1050	2029	
+
+F 121  5041	6928	5032	5788	3440	6335	5451	3544	3818	2431	4952	6839	5701	5020	3328	4695	4953	3525	4921	4015	121
+       145	5152	3889	982	1018	3182	168	9022	1283	2166	
+
+I 122  2896	*	6526	4463	3420	*	6843	2307	5035	2138	7072	6547	6589	*	4159	5629	*	3632	5131	4888	122
+       176	5143	3532	2651	250	2037	403	8920	1311	3135	
+
+S 123  2724	*	3305	2389	*	4127	4205	4955	3096	4518	*	4148	5691	*	4842	4004	4103	6416	*	6735	123
+       139	4782	4168	2887	210	*	0	8870	1324	3580	
+
+E 124  3776	*	3791	3135	5640	4627	4463	4813	3463	4374	6141	4853	6410	3644	2385	3805	4445	6495	*	*	124
+       46	6612	5550	1000	1000	4814	52	8820	1000	4108	
+
+L 125  4341	*	4547	*	4037	*	4478	3561	6303	1605	4087	5310	5698	6243	3802	4728	*	3601	4916	4857	125
+       290	5434	2656	1000	1000	2943	201	8809	1129	4185	
+
+R 126  3131	5186	6142	4303	*	3948	5842	4261	4507	3171	6266	5219	2200	4261	3706	4751	4582	5247	6302	*	126
+       234	5878	2913	2322	322	4190	81	8690	1050	5084	
+
+E 127  4084	*	2645	3176	5237	4791	5825	4535	3675	4079	5009	3246	5247	5043	4289	4157	4976	4039	*	5909	127
+       418	2873	3121	5093	43	1634	561	8538	2121	5712	
+
+G 128  5369	*	3690	4701	6086	1159	4576	6368	3610	*	*	5279	5325	5425	4069	4532	4585	6083	*	5145	128
+       102	6145	4204	0	*	2541	272	8720	1029	5179	
+
+Y 129  3483	*	6139	5299	3563	*	6196	3715	6217	1203	6271	*	5211	*	5902	5056	*	4825	5769	3206	129
+       93	4795	5234	0	*	4222	79	8788	1225	4959	
+
+N 130  3991	6125	2739	3424	6379	3022	4991	*	3500	4850	6486	3450	6223	3789	3715	3894	4385	*	*	6567	130
+       50	4866	*	3509	133	5113	42	8792	1236	4960	
+
+T 131  4170	6479	3293	4002	6301	5282	5354	4099	3826	2942	*	6727	3241	5133	3913	4407	2511	*	*	6133	131
+       62	*	4562	*	*	4212	80	8811	0	4872	
+
+I 132  6178	5002	3795	3245	6357	6497	5235	4049	3319	2796	5174	5478	3843	4053	3916	6796	4018	4746	6354	4145	132
+       101	3886	*	1140	872	4822	52	8672	1591	5016	
+
+V 133  2868	5941	4690	4457	4745	*	*	2652	3653	2305	5246	*	6083	4838	5363	4684	6282	3379	5786	5807	133
+       126	5855	3913	1000	1000	2881	211	8690	1036	4997	
+
+G 134  5218	*	2707	5793	5814	2500	4121	*	3522	4020	5043	2811	*	4702	4457	4532	4160	5892	*	5137	134
+       35	5391	*	0	*	3237	162	8703	1104	5013	
+
+E 135  3203	*	3491	3184	*	6571	5329	*	3522	3927	4864	5071	5082	3713	2810	4664	2982	6375	6178	*	135
+       60	5907	5382	1812	484	2609	258	8743	1245	4681	
+
+Q 136  4846	5256	4378	*	6325	3857	4340	6630	2192	3272	*	5436	2761	4593	3509	3954	5343	6406	*	5223	136
+       132	3514	*	824	1201	1385	696	8873	1902	4398	
+
+G 137  2733	4733	5404	5146	3662	3147	*	4254	*	4359	5033	5149	2965	6233	6665	5613	6263	2555	6487	4561	137
+       29	6682	6665	0	*	691	1394	9026	1000	3238	
+
+A 138  3909	6268	3981	4039	5361	2715	3853	4767	2901	5843	5766	4418	5707	4626	3500	4242	4644	6755	*	4407	138
+       14	*	6649	*	*	425	1971	9135	0	1983	
+
+G 139  4207	*	3667	3103	*	4972	4634	5805	4366	5177	6508	3992	5388	3347	3566	3865	2617	4563	6334	5811	139
+       0	*	*	*	*	1702	530	9164	0	1312	
+
+L 140  5577	6737	*	*	3212	*	*	4625	*	666	5977	6913	*	*	*	6866	6631	4279	*	3369	140
+       0	*	*	*	*	*	0	9171	0	1170	
+
+S 141  *	6344	5814	6744	*	5316	*	*	*	*	*	5405	3414	*	*	395	4116	*	*	*	141
+       0	*	*	2322	322	*	0	9171	1002	1170	
+
+G 142  3735	*	4619	4258	5346	1556	5230	6989	4198	5815	*	*	3942	4368	5761	3378	4065	6325	*	4057	142
+       0	*	*	*	*	*	0	9171	0	1170	
+
+G 143  4940	*	4655	4564	6766	441	*	*	4745	*	*	6919	*	*	4859	5549	5639	6734	*	6789	143
+       0	*	*	1585	585	0	*	9171	1012	1170	
+
+Q 144  4897	*	5908	1889	*	*	*	5792	6745	*	2487	4894	*	1758	5550	5689	5522	4233	5106	*	144
+       0	*	*	*	*	*	*	9207	0	0	
+
+R 145  4577	6687	*	*	6998	*	5257	4168	1733	3206	*	*	*	2615	2347	5031	5600	5649	6802	6674	145
+       18	6374	*	1585	585	*	*	9207	1050	0	
+
+Q 146  5177	*	6808	5813	5393	6998	5225	5616	2987	4938	4507	*	6642	1529	2283	5108	5948	4358	6945	*	146
+       0	*	*	*	*	*	*	9207	0	0	
+
+R 147  6846	*	*	*	*	5870	*	6805	2058	2872	4985	*	*	4678	1097	6765	5498	5711	*	*	147
+       15	6642	*	0	*	*	*	9207	1030	0	
+
+I 148  3386	5950	*	*	5179	*	*	2470	6368	1528	5472	*	*	*	*	5791	4977	2061	*	6765	148
+       0	*	*	*	*	*	*	9207	0	0	
+
+A 149  2117	4859	6687	3861	5709	4132	6902	4044	4998	3208	4293	5689	*	3548	5929	3185	5019	4422	6368	*	149
+       0	*	*	*	*	*	*	9207	0	0	
+
+I 150  *	6942	6687	*	3561	*	*	1888	*	1030	6899	6805	6368	6374	*	6642	5851	4110	6556	*	150
+       0	*	*	*	*	*	*	9207	0	0	
+
+A 151  1144	5036	*	6584	5804	3434	*	2799	*	3676	*	*	6642	*	*	3910	4631	4370	*	6802	151
+       13	*	6751	*	*	*	*	9207	0	0	
+
+R 152  3671	7008	6371	*	4582	4576	6677	4034	4587	4095	5929	*	6421	4431	1307	3893	6729	3856	6264	6686	152
+       0	*	*	*	*	*	0	9162	0	1012	
+
+A 153  1235	5168	*	5206	6737	4165	*	4053	*	3580	4929	6732	*	5124	6421	3307	4451	3762	6916	*	153
+       0	*	*	0	*	0	*	9162	1012	1012	
+
+L 154  5508	6584	*	5937	3286	5512	*	2872	*	988	3301	*	6425	*	6374	*	6908	4547	*	6687	154
+       11	7010	*	1585	585	*	*	9207	1000	0	
+
+V 155  2081	3910	5885	6374	5825	5343	6584	3644	6802	2001	4283	6920	*	6957	*	5106	5331	2979	*	5136	155
+       12	6920	*	1000	1000	*	*	9207	1000	0	
+
+N 156  4070	6656	*	4524	5841	3648	4338	4042	3322	3179	4732	5435	6769	4078	2714	3913	3467	6849	*	5494	156
+       57	4683	*	1094	912	*	*	9207	1482	0	
+
+N 157  4459	5878	2512	3272	*	3755	4442	*	4040	*	*	3004	3532	3371	3212	4617	5550	*	*	*	157
+       13	6849	*	0	*	*	*	9207	1006	0	
+
+P 158  3075	*	6265	6368	5233	*	5550	*	4197	*	*	6656	1067	5859	5054	3477	3496	4954	*	6899	158
+       26	5810	*	528	1707	*	*	9207	1145	0	
+
+K 159  4033	*	2310	3733	*	5573	6357	6925	2674	*	*	4130	3443	4414	3214	2790	7137	6882	*	*	159
+       0	*	*	*	*	0	*	9139	0	1012	
+
+I 160  4532	*	*	*	3571	*	*	2304	*	1553	4738	*	*	*	6414	6587	5526	2165	*	5311	160
+       0	*	*	*	*	*	*	9160	0	0	
+
+L 161  4928	6834	6587	*	5218	*	*	2066	6361	1138	5828	*	*	*	*	*	5900	3060	6612	4284	161
+       18	6361	*	1585	585	*	*	9160	1084	0	
+
+I 162  5337	5692	*	*	3695	*	*	1852	*	1325	4108	*	6587	*	6366	*	*	3034	*	*	162
+       0	*	*	*	*	*	*	9160	0	0	
+
+F 163  3560	6910	*	*	3426	6361	*	3060	*	844	4801	*	*	*	6366	6587	*	4572	6542	6213	163
+       0	*	*	*	*	*	*	9160	0	0	
+
+D 164  5136	*	356	4415	*	*	6640	*	*	*	*	4211	*	6408	5337	6822	4879	*	*	*	164
+       0	*	*	*	*	*	*	9160	0	0	
+
+E 165  *	6918	3543	505	*	6370	*	*	6162	6486	*	5623	*	4211	3639	*	*	*	*	6706	165
+       0	*	*	*	*	*	*	9160	0	0	
+
+A 166  4643	5824	6414	*	5978	5427	*	4170	*	4828	*	*	587	*	*	5062	7006	3556	6370	*	166
+       0	*	*	*	*	*	*	9160	0	0	
+
+T 167  4015	5919	5087	4595	2752	6677	6414	5094	*	2697	5191	6807	*	6361	*	4517	1492	4802	*	6162	167
+       20	*	6162	*	*	*	*	9160	0	0	
+
+S 168  2357	5911	3968	4528	*	5643	*	4247	5239	4958	*	2712	*	4529	5773	2421	3397	5254	5710	6898	168
+       0	*	*	*	*	0	*	9108	0	1056	
+
+A 169  3288	*	5142	6759	5763	1760	3330	6162	5922	6379	5459	3093	5653	5749	5637	2834	4354	5895	*	*	169
+       15	*	6644	*	*	*	*	9160	0	0	
+
+L 170  6734	*	*	6765	*	5819	*	3190	*	668	3812	*	6410	5610	6343	5522	6521	3712	*	*	170
+       51	*	4854	*	*	0	*	9172	0	1014	
+
+D 171  6636	*	317	6882	*	6717	6356	*	*	*	*	4464	6335	*	4774	4321	6309	*	*	*	171
+       29	*	5671	*	*	0	*	9094	0	1384	
+
+Y 172  3048	*	4696	4003	4583	*	5571	3446	3789	3738	*	6761	2466	4035	5047	3629	5510	3871	*	5400	172
+       0	*	*	*	*	*	0	9152	0	1199	
+
+E 173  3147	*	3854	2597	*	5209	3881	3939	3510	4456	6211	4557	5450	3893	3680	5234	4585	3904	*	*	173
+       0	*	*	*	*	*	0	9152	0	1199	
+
+S 174  2601	*	5482	4200	4455	3006	5261	5188	5757	4676	6911	3616	6613	5188	5875	2654	2799	5054	*	*	174
+       0	*	*	*	*	1077	927	9152	0	1199	
+
+E 175  3069	*	5713	5157	*	6907	5841	3248	3139	4082	*	6810	*	3502	2316	4468	3836	3388	6442	6653	175
+       0	*	*	*	*	*	0	9175	0	1031	
+
+H 176  3525	*	3318	2650	4789	4612	4658	4977	3721	4991	6488	4218	5387	3330	3696	4217	4530	6884	5886	6647	176
+       13	*	6812	*	*	*	0	9111	0	1031	
+
+V 177  3790	*	3796	2810	5216	5857	5106	5304	3135	3680	5338	4406	5777	3801	3305	4960	5316	4877	4357	5672	177
+       29	*	5669	2585	263	0	*	9104	1031	1201	
+
+I 178  5280	*	*	*	3489	6796	*	2058	6659	1705	4488	*	*	*	6630	4986	6958	2211	*	6772	178
+       44	5064	*	1404	684	0	*	9098	1370	1154	
+
+M 179  4147	*	*	4216	4476	5625	5158	3667	4581	1955	3360	5196	*	5120	3511	4926	5967	3912	5252	4818	179
+       0	*	*	*	*	*	0	9111	0	1031	
+
+R 180  2951	6546	2915	2967	6644	4270	5759	*	3212	*	6694	3960	6867	2954	3907	3765	4587	6742	*	6863	180
+       0	*	*	*	*	0	*	9111	0	1031	
+
+N 181  3513	*	4914	5333	3180	6390	4970	3372	5115	2067	4909	5348	*	5132	5436	4712	5175	3084	5848	5292	181
+       0	*	*	*	*	*	*	9119	0	0	
+
+M 182  4617	5620	*	*	4840	6825	*	1863	*	1033	4850	*	*	*	*	*	5683	3929	*	6390	182
+       109	5317	4393	362	2170	*	*	9119	1352	0	
+
+H 183  3946	5670	4837	3864	4452	5790	5353	3609	3280	3040	6750	3864	6496	4390	2808	5049	3861	5782	*	5624	183
+       14	*	6665	*	*	664	1439	9060	0	1666	
+
+K 184  3159	6625	2786	2630	*	6771	6932	*	3417	5138	*	4917	6895	3577	3058	3390	3672	6294	*	*	184
+       163	3868	4715	1465	649	618	1521	9090	2073	1318	
+
+I 185  4723	5669	5105	3352	3903	6038	6611	3647	4314	1820	5057	6776	6317	5085	3594	4352	6248	4887	6806	4609	185
+       277	2867	4742	1211	816	389	2081	9068	2886	1617	
+
+C 186  2763	5418	4176	4269	4908	4629	4436	4285	2690	4956	6515	5629	6831	3373	4006	3780	3638	*	*	6375	186
+       380	2263	5419	548	1662	1247	789	9067	3675	1596	
+
+K 187  3293	*	4346	3037	*	4614	4718	5249	2888	5047	*	3864	4772	3723	2859	3748	4249	*	*	6548	187
+       421	2325	4227	440	1926	456	1884	9036	3596	1609	
+
+G 188  4994	*	3374	3379	*	1735	4995	6305	3811	*	*	2713	4573	5454	3752	5116	4649	*	*	*	188
+       280	3230	3842	998	1002	1138	874	8947	2626	1918	
+
+R 189  3371	6675	6533	*	4703	5113	4373	3672	2730	4077	3913	5700	*	4348	2784	3621	4020	4905	6224	6771	189
+       58	5803	5561	735	1324	104	3849	8946	1263	2591	
+
+T 190  3258	4827	*	*	*	3859	*	3224	*	4494	6652	*	5026	5009	4177	2611	1593	5799	*	*	190
+       56	4711	*	826	1198	0	*	9092	1451	1296	
+
+V 191  4685	6137	*	*	4702	*	*	1558	6845	3201	4346	*	*	*	6720	6969	3680	1752	*	6664	191
+       0	*	*	*	*	*	*	9119	0	0	
+
+I 192  6297	*	*	*	4082	*	6219	1371	*	1658	6698	*	6747	*	*	*	*	2379	*	*	192
+       14	6653	*	0	*	*	*	9119	1012	0	
+
+I 193  4978	*	*	*	3421	*	*	2385	*	2185	3017	6725	*	*	6219	6297	4745	2433	5537	4045	193
+       0	*	*	*	*	*	*	9119	0	0	
+
+I 194  2545	4883	*	6219	6725	*	*	2536	*	3773	6746	7230	*	*	*	2945	3005	1966	*	*	194
+       0	*	*	*	*	*	*	9119	0	0	
+
+A 195  4155	6219	5156	3735	*	4886	*	6938	*	5101	*	6846	*	*	*	1553	1370	5657	*	*	195
+       13	6768	*	1000	1000	*	*	9119	1000	0	
+
+H 196  5778	*	5410	4598	6464	*	676	6912	5737	*	6874	4162	6297	6807	4329	3991	4915	6656	*	6490	196
+       26	5816	*	1100	907	*	*	9119	1138	0	
+
+R 197  4635	*	1836	3826	6480	6901	4081	5760	5059	5153	5849	3065	*	3564	3367	3391	7055	7086	*	5301	197
+       31	*	5536	*	*	*	*	9116	0	0	
+
+L 198  4117	*	5562	5150	4104	*	4650	4679	4255	2416	4265	5121	2945	4688	3660	4797	3832	4246	*	5115	198
+       33	6242	6718	1585	585	820	1206	9070	1029	1174	
+
+S 199  3869	*	2409	1922	5610	4031	4067	*	5105	4676	*	4357	6902	5952	4310	3750	5608	5078	6801	6286	199
+       54	5156	6853	431	1953	1041	960	9036	1283	1139	
+
+T 200  4861	*	3149	2827	3158	5365	4686	3466	4904	2728	6637	5551	6779	5553	5429	5166	4549	3728	6375	5727	200
+       130	3705	6757	1956	430	0	*	9037	1981	1141	
+
+V 201  2869	5984	*	5268	4197	5807	*	2457	*	1847	4511	*	6248	5589	*	5106	4470	3084	*	5717	201
+       429	1960	*	43	5099	*	0	9050	4267	1001	
+
+K 202  2777	*	2943	2696	5371	4783	*	4750	4002	4241	5368	4763	4672	4470	4653	3620	4803	4958	6380	6585	202
+       41	5144	*	1217	812	*	0	9061	1297	1001	
+
+N 203  3804	5756	4177	3787	3309	5576	6761	3604	3550	3031	5256	4720	6802	5476	3954	4690	4790	3982	7021	4180	203
+       398	2102	6903	0	*	0	*	9061	4058	1001	
+
+A 204  1816	2134	5690	5671	3841	4646	6647	4467	*	4131	*	6051	5228	6513	*	3888	6788	5220	5705	4273	204
+       124	3603	*	0	*	*	0	9081	2081	1042	
+
+D 205  5283	6579	1100	3607	*	4221	5753	6397	*	*	*	3158	5455	6647	6788	3723	3468	6487	*	*	205
+       17	6397	*	3000	193	*	0	9081	1076	1042	
+
+R 206  4450	*	6697	3793	5721	6661	3122	*	2664	5767	*	5043	5399	3498	2011	4426	5036	4472	6298	5205	206
+       29	6623	6690	0	*	*	0	9081	1012	1042	
+
+I 207  4249	5409	6764	6704	5176	5737	5852	2136	*	3058	6659	6748	6474	4959	5551	5818	3947	1703	*	5635	207
+       17	6414	*	587	1582	1122	887	9060	1181	1210	
+
+I 208  2931	6623	*	*	6683	5001	6588	2565	*	2084	4414	*	*	*	5782	6156	4576	3089	4268	3157	208
+       0	*	*	*	*	*	0	9081	0	1042	
+
+V 209  4679	5111	5012	3757	3828	6457	5269	3495	5304	2668	4223	4301	6402	5692	5618	*	4468	2386	6814	4418	209
+       0	*	*	*	*	*	0	9081	0	1042	
+
+M 210  6378	*	*	4752	3720	6690	*	2526	*	1018	2973	*	*	*	*	*	6348	4098	*	*	210
+       95	3974	*	1459	652	0	*	9081	1954	1042	
+
+E 211  3809	6805	2866	2565	6571	5116	5493	6692	2812	6466	7086	3725	5115	4057	4755	3407	4851	5525	*	5106	211
+       57	5134	6615	989	1011	*	0	9003	1242	1001	
+
+K 212  3712	*	2700	3010	6496	3500	3811	6628	3466	6816	*	2636	6933	4141	4017	4868	6194	6490	*	5728	212
+       88	4083	*	1803	487	959	1042	8967	1625	1167	
+
+G 213  5323	*	4605	5667	5487	766	5789	*	5516	4032	*	4493	6345	4563	5800	3921	*	*	*	5658	213
+       58	5616	5705	574	1608	1084	921	8921	1137	1176	
+
+K 214  4083	*	4456	2983	*	4108	4145	*	2290	5356	*	4168	*	3632	2787	6597	3835	4222	*	6602	214
+       123	3617	*	2246	342	*	0	8882	1896	1320	
+
+I 215  4663	6237	*	6115	4387	6008	*	2021	5053	2009	6895	4643	5263	6484	4983	*	3806	2792	6456	*	215
+       108	4281	5616	0	*	2007	413	8801	1651	1473	
+
+V 216  4061	6560	4862	4831	6429	*	4512	2698	3928	3064	*	5893	4296	5055	5499	5543	3687	2101	6258	*	216
+       83	4513	6403	1259	781	672	1425	8799	1907	1610	
+
+E 217  2712	6793	4878	2728	3605	6289	5390	6295	4543	3730	6550	5574	5305	4048	4577	3912	4339	4331	6036	3976	217
+       56	5265	6377	0	*	1330	732	8832	1182	1283	
+
+Q 218  4064	*	2724	4138	3866	4826	6419	3503	3474	4769	6261	*	5324	4927	5086	3084	4880	4091	*	3461	218
+       118	5213	4269	3381	146	1522	617	8795	1163	1274	
+
+G 219  4042	6329	3334	3894	6357	1344	6000	3696	4822	4301	6314	6043	6233	*	*	*	3531	4768	*	6487	219
+       18	*	6323	0	*	942	1060	8700	1000	1797	
+
+K 220  3747	*	2813	3926	*	6350	6365	*	4168	*	*	4195	3573	4354	6324	2037	2585	5206	*	*	220
+       32	*	5502	*	*	*	0	8696	0	1466	
+
+H 221  2927	6215	*	6257	4622	6211	4419	3478	3937	4760	6564	5291	2697	4716	3900	5452	3872	3268	*	4085	221
+       0	*	*	0	*	915	1091	8626	1002	1724	
+
+K 222  2977	6304	2785	2121	6324	4570	6482	6372	4420	*	*	4133	4719	4623	4821	2883	4201	*	*	*	222
+       20	6188	*	0	*	1877	459	8687	1000	1266	
+
+E 223  4132	*	3538	1662	*	*	5443	4596	5121	4711	5370	4826	6202	4004	4727	3261	3606	4749	*	6263	223
+       37	6293	6307	0	*	535	1691	8600	1000	1302	
+
+L 224  4756	6369	6287	5234	3638	6223	8478	2850	*	2234	4805	*	6111	*	5319	6409	5083	2197	4993	3356	224
+       38	6244	6260	0	*	1012	988	8579	1000	1132	
+
+L 225  4232	*	4587	6236	3188	*	5790	3620	3991	2558	3798	5314	*	5822	3018	3875	4807	3470	5821	*	225
+       245	4973	3010	3270	158	*	0	8495	1168	1127	
+
+S 226  2457	4980	2979	3037	5649	4079	5987	5633	4533	5653	*	3986	5848	4214	3764	3347	4848	*	*	5758	226
+       112	4649	4831	2061	395	279	2508	8160	1182	2492	
+
+E 227  5831	5804	3285	3272	*	*	4218	*	3230	5597	*	3051	*	2609	2933	4518	3883	6088	*	4804	227
+       35	5378	*	0	*	1024	976	8105	1007	1449	
+
+P 228  3241	*	4476	3051	5722	4538	4654	*	3497	3957	*	4480	2857	4310	4536	4447	3930	4653	*	4429	228
+       42	*	5129	*	*	1126	884	7854	0	1155	
+
+E 229  3444	*	2608	2597	*	3087	*	5303	3896	3905	5436	5097	*	3112	4598	4422	*	4446	*	*	229
+       145	3387	*	2983	195	*	0	7639	1434	1243	
+
+S 230  3597	*	4215	4044	5185	4101	3573	5237	4045	4075	*	4394	*	5181	5086	2036	4974	3231	*	*	230
+       44	*	5052	*	*	790	1246	7166	0	1243	
+
+L 231  5087	5180	*	3602	5141	5228	*	3616	4931	2432	4371	4822	4147	4113	4882	4119	3565	3929	*	3910	231
+       0	*	*	*	*	1154	861	7181	0	1150	
+
+Y 232  3572	*	4715	3518	2622	5115	*	3757	4868	2623	*	4778	*	5182	3883	5132	5250	4963	*	3185	232
+       56	4715	*	1000	1000	0	*	7105	1014	1012	
+
+S 233  3289	*	3429	*	*	*	*	4772	3746	3877	*	4892	*	*	2731	1951	3773	4701	*	3813	233
+       0	*	*	*	*	*	*	6751	0	0	
+
+Y 234  3745	*	4577	3489	2885	4508	4671	*	4376	3417	4722	4545	4684	*	*	3525	*	4742	*	2394	234
+       91	4038	*	0	*	*	*	6513	1052	0	
+
+L 235  3964	*	*	*	3871	*	*	2225	*	1696	2954	*	*	*	*	*	4049	3960	*	3455	235
+       0	*	*	*	*	*	*	5290	0	0	
+
+Y 236  *	3607	3517	*	3657	*	*	2518	3195	*	*	2687	*	*	*	3663	*	3703	3652	3702	236
+       128	3556	*	1000	1000	*	*	4894	1052	0	
+
+Q 237  *	*	3582	1058	*	3546	*	*	3521	*	*	*	3546	2492	*	*	*	*	*	*	237
+       0	*	*	*	*	*	*	4681	0	0	
+
+L 238  *	*	*	2811	*	3282	3258	*	*	2246	*	*	3208	3292	3144	3108	*	*	*	*	238
+       0	*	*	*	*	*	*	4220	0	0	
+
+Q 239  2783	*	2876	2889	*	*	*	*	2731	*	*	*	*	2824	*	2772	*	*	*	2784	239
+       0	*	*	*	*	*	*	3654	0	0	
+
+S 240  *	*	2535	2510	*	*	2683	2578	*	*	*	*	*	2649	*	2563	*	*	*	*	240
+       0	*	*	*	*	*	*	3357	0	0	
+
+D 241  *	*	558	*	*	*	*	*	*	*	*	1640	*	*	*	*	*	*	*	*	241
+       0	*	*	0	*	*	*	2158	0	0	
+
+//
+�HHsearch 1.5
+NAME  530b8b90a2b272c2660145f9c38cb283
+FAM   
+FILE  530b8b90a2b272c2660145f9c38cb283
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:10:30 2013
+LENG  60 match states, 60 columns in multiple alignment
+FILT  153 out of 1152 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.9 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCEEEECCCCCCCCCCCCCCCCCCEEEEEEECCCCEEEEEECCCCEEEEEHHHEEECC
+>ss_conf PSIPRED confidence values
+997799992251899988135579999999881599979999679978987666689985
+>Consensus
+xxxxxxxalxxxxxxxxxelxxxxgdxixvxxxxxxxwxxxxxxxgxxGxxPxxxvxxxx
+>530b8b90a2b272c2660145f9c38cb283
+CGAEYVRALFDFNGNDEEDLPFKKGDILRIRDKPEEQWWNAEDSEGKRGMIPVPYVEKYG
+>gi|193586979|ref|XP_001952482.1| PREDICTED: tyrosine-protein kinase CSK-like [Acyrthosiphon pisum]
+-----NTGRTHFGTTPQQLVTHSFCDRASPVSpVTNIGSYSSF----------VQHVKD--
+>gi|119593683|gb|EAW73277.1| protein kinase C and casein kinase substrate in neurons 2, isoform CRA_a [Homo sapiens]gi|119593684|gb|EAW73278.1| protein kinase C and casein kinase substrate in neurons 2, isoform CRA_a [Homo sapiens]
+----SSyEKTQSYPTDWSDNESNNPfsstdangeLQSIRrQRHLGERSSIPGPV-----------------
+>gi|302414846|ref|XP_003005255.1| AbpA [Verticillium albo-atrum VaMs.102]gi|261356324|gb|EEY18752.1| AbpA [Verticillium albo-atrum VaMs.102]
+---AQQELREANIPAAQPPAGAQAGGQRALIHSARANtsptlkWstrtggWAPTRrARAASSLATTSSSSRT-
+>gi|161077253|ref|NP_001097376.1| endophilin B, isoform D [Drosophila melanogaster]gi|157400406|gb|ABV53852.1| endophilin B, isoform D [Drosophila melanogaster]
+-----DKSLTNLLEDFHIEFDTTAvSTVIFVTECSpvNEDYMYGK-QGLLKGLVPRAFVEML-
+>gi|32565949|ref|NP_502695.2| Lateral Signaling Target family member (lst-4) [Caenorhabditis elegans]gi|24817571|emb|CAA19487.2| C. elegans protein Y37A1B.2b, confirmed by transcript evidence [Caenorhabditis elegans]
+-----LRKAVENYPtPPGGSSEDAHRQLLerrrkQMLRrHTCSTLIKQDTSASPHKMKPpilmeeedEQHSTGK-
+>gi|55648067|ref|XP_512320.1| PREDICTED: cdc42-interacting protein 4 isoform 6 [Pan troglodytes]
+----HCVAIYHFEDlGPPPPPSQGPARALSLWPrVKTSVlWKKTKGTAGP-GSGGKREAR---
+>gi|328776214|ref|XP_393399.3| PREDICTED: tyrosine-protein kinase CSK [Apis mellifera]
+---------------MTTHSNVTTPNITSHMNtGSTPVILTSNVTNPSNPAALS--VNP--
+>gi|125805800|ref|XP_694393.2| PREDICTED: myosin-VIIa [Danio rerio]
+-RSMYAVAIQD-lsRqgASSALAIFWQGSHIAELQTrrcAVYHkGWRIFSRRrVDKSKeredksnwgsflRCNSDSA----
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+C 1    *	239	*	*	*	*	*	*	*	3838	*	*	*	*	*	*	*	*	*	3593	1
+       0	*	*	*	*	*	*	4997	0	0	
+
+G 2    4750	*	4560	3611	*	1647	5557	*	5613	*	*	5702	2796	5595	2710	2826	*	*	*	*	2
+       21	*	6100	*	*	*	*	7655	0	0	
+
+A 3    2403	*	4947	5049	6175	3388	*	5143	4706	5223	4648	6224	4238	4665	4203	3031	3162	3357	*	6174	3
+       149	5918	3617	0	*	*	0	8291	1008	1000	
+
+E 4    4245	5209	4783	3854	*	4179	5441	6375	3725	3710	4716	5639	3982	3724	2936	3098	3716	4661	*	6340	4
+       0	*	*	*	*	*	0	8817	0	1649	
+
+Y 5    *	*	6524	5163	3582	6408	3705	5174	3304	2775	4568	7180	6618	4355	3089	4170	3475	5048	7011	3250	5
+       13	*	6748	4000	93	0	*	9377	1080	1649	
+
+V 6    2189	3271	6653	6820	3667	4694	*	5203	*	3323	4822	5447	6696	6599	*	4475	6531	2508	6406	3435	6
+       36	5764	7254	0	*	0	*	10038	1212	1000	
+
+R 7    5640	7226	*	4172	7334	5029	5297	3732	2768	3624	7093	7336	6817	4719	2176	5823	3860	2485	*	7502	7
+       0	*	*	*	*	*	0	10071	0	1026	
+
+A 8    1205	4500	6025	5688	7497	4287	*	5585	4605	4839	7250	*	4758	*	5335	4359	4085	2782	*	6347	8
+       31	6235	6943	4562	62	*	0	10147	1098	1026	
+
+L 9    6081	*	6236	5384	7372	*	*	2751	4749	1343	4223	6186	6292	4148	3802	4580	4075	4616	7344	7449	9
+       8	*	7419	*	*	*	0	10133	0	1224	
+
+F 10   4550	4439	5286	4341	3325	5691	4445	6270	4157	5789	7246	*	5773	4297	4482	4797	3680	4825	5734	1758	10
+       28	6721	6638	2000	415	*	0	10152	1032	1375	
+
+D 11   4068	7236	1809	3485	*	4686	5355	*	5720	*	*	3023	3718	6032	4497	2522	4505	*	*	*	11
+       35	7581	5756	1000	1000	2302	327	10113	1000	1601	
+
+F 12   7135	6182	5270	6352	1756	6444	3817	*	*	5360	*	4713	4486	6969	5806	4267	6736	6528	5881	1555	12
+       26	5826	*	3907	100	279	2507	10036	1542	1807	
+
+N 13   4877	7464	3583	2660	7005	4226	4366	6232	3753	4855	*	4420	4446	4762	3598	3584	3487	3813	7253	5351	13
+       43	5099	*	869	1144	*	0	10180	1445	1026	
+
+G 14   2165	6924	6188	4784	*	2534	*	5989	4692	*	*	6341	2199	6191	5787	2811	3731	6391	*	*	14
+       131	4044	5256	214	2860	1413	679	10216	2096	1130	
+
+N 15   3575	7536	3916	3252	6368	4823	4985	6731	3486	6801	5521	4184	4077	3723	3269	3258	3485	5050	*	6225	15
+       0	*	*	*	*	*	0	10180	0	1642	
+
+D 16   3669	7156	3154	3507	5178	3801	4633	6884	4232	*	5984	3416	3273	5740	3945	3390	3911	5618	6525	5444	16
+       128	3877	5910	2116	378	2343	317	10253	2215	1642	
+
+E 17   3141	6956	3307	3161	*	3654	4990	6090	4746	7083	6375	4352	2558	4058	4913	4108	3358	6558	7557	*	17
+       22	6049	*	1756	506	655	1454	10227	1169	1834	
+
+E 18   5300	6698	2095	4558	7267	2342	5406	5612	4422	5802	*	4229	4031	5064	3977	4069	3883	5146	7184	7481	18
+       59	5090	6569	2234	345	*	0	10270	1446	1221	
+
+D 19   4221	*	3147	1417	6960	4194	5416	*	6962	4353	5506	5830	3736	4518	4947	3795	4742	5971	*	*	19
+       49	5717	6152	1681	539	1555	600	10220	1247	1424	
+
+L 20   5331	7470	*	6002	5553	6344	7037	2652	7252	1072	5125	7314	5477	5708	5269	4104	*	3455	7076	6381	20
+       37	6246	6339	2362	312	*	0	10239	1150	1540	
+
+P 21   3166	5858	4332	3935	5776	3832	7537	6960	4978	7006	6379	4020	4142	4679	5159	1861	3123	5720	6853	*	21
+       33	6493	6408	0	*	2012	411	10193	1097	1756	
+
+F 22   4456	*	6071	*	1925	*	4950	3207	5875	2039	4297	6608	5089	6034	6401	5446	6796	3255	5578	*	22
+       12	6949	*	3585	126	602	1552	10181	1001	1758	
+
+K 23   4781	7358	4306	3534	7424	5367	4969	*	3005	5472	*	4159	4327	3239	2847	3198	3358	4462	*	6807	23
+       32	6354	6730	1000	1000	*	0	10300	1096	1170	
+
+K 24   2875	7195	5951	3021	5268	6302	6101	4562	2270	5433	*	5189	3696	4961	3459	4033	4389	4186	*	*	24
+       44	5290	7799	2143	370	1772	500	10279	1373	1345	
+
+G 25   5238	5647	3736	5720	*	823	*	*	4646	5788	6625	3691	5445	5432	4541	4067	*	*	*	*	25
+       28	6307	7183	2862	214	0	*	10290	1146	1311	
+
+D 26   3852	7250	1488	2251	*	3973	5661	5938	6815	*	7221	5241	5455	3613	4679	4961	4928	*	*	7091	26
+       20	6193	*	1272	771	*	0	10304	1138	1018	
+
+I 27   4440	6046	*	4009	5028	7119	5529	2708	3748	3598	5554	6265	5275	5235	3690	3723	5043	2311	*	4823	27
+       25	*	5845	4000	93	*	0	10304	1000	1018	
+
+L 28   4863	6688	*	*	4133	5588	6631	1973	*	2083	7225	*	5165	6158	4819	*	6490	2116	6323	4678	28
+       33	5458	*	2719	238	*	0	10237	1335	1404	
+
+R 29   4391	7202	4470	3049	4591	5228	5503	4375	4112	3215	7225	4751	5500	4533	3952	3456	3394	3721	6481	5123	29
+       15	6618	*	0	*	*	0	10237	1077	1404	
+
+I 30   4951	*	5774	6342	6988	6154	5262	2253	*	2431	4796	6116	4860	4813	6631	5983	6975	1581	*	7513	30
+       46	5331	7324	0	*	*	0	10237	1347	1404	
+
+R 31   4199	6272	5963	5667	6486	4639	5276	2966	5191	1978	6474	6010	5101	5294	4290	4556	3948	3026	5710	5107	31
+       22	*	6068	*	*	1542	607	10222	0	1584	
+
+D 32   5101	5590	3976	2443	6027	3846	4125	7111	3487	5246	*	4143	4878	3903	3417	3514	5031	4752	*	4989	32
+       353	2247	7339	600	1555	1608	574	10232	4792	1657	
+
+K 33   4776	5314	3305	3216	6702	4034	5684	4842	2832	4984	6237	5151	5095	3971	3605	3860	3586	4459	7093	6499	33
+       178	4374	3878	2139	372	*	0	10286	1933	1548	
+
+P 34   4480	5551	2916	3630	*	3311	4762	4200	5281	4241	6342	5074	4736	4601	5095	2992	3069	4515	*	6454	34
+       153	4124	4536	4104	86	827	1197	10128	2185	2816	
+
+E 35   7247	4791	2741	2842	5480	3567	4667	*	5195	6336	7135	2874	4235	5213	3854	3914	3599	7166	7058	5249	35
+       47	4971	*	2202	353	1024	976	10180	1561	2562	
+
+E 36   4520	6743	2567	3308	6353	3230	5038	5428	3911	4806	6261	4048	4102	5818	4396	2999	4177	6411	7176	7233	36
+       182	3449	5212	1113	895	2044	401	10235	2693	1761	
+
+Q 37   5548	7121	2628	4081	*	1331	5278	5980	4944	5115	7584	4035	5864	6598	6986	4715	4857	4573	7180	5206	37
+       58	5017	6894	3638	121	1115	894	10238	1605	2078	
+
+W 38   7601	*	*	5909	3870	5000	6033	5781	6406	4395	5525	*	*	6965	5845	5163	6348	5229	706	4089	38
+       13	6845	*	2585	263	*	0	10258	1047	1671	
+
+W 39   5011	5175	5376	*	3559	5450	*	3679	5498	3464	4587	6816	5918	7102	4981	5865	6040	4224	1546	3569	39
+       44	5621	6655	2555	269	1587	584	10258	1268	1671	
+
+N 40   4453	*	5007	4675	4554	5604	7621	4745	2850	3294	5512	5771	4317	3774	3046	4189	4598	5083	4092	3856	40
+       30	6221	7116	4731	55	1994	417	10243	1153	1631	
+
+A 41   2941	4222	6105	*	6335	1414	*	5333	5522	*	6248	7330	5693	5444	4741	4922	4508	2440	*	7137	41
+       46	6649	5540	0	*	1254	784	10268	1105	1570	
+
+E 42   4483	5704	4483	3125	5810	5836	4916	7070	2834	5107	6185	5833	6556	4485	2299	3888	3279	4234	*	5787	42
+       539	3361	2220	2630	254	1180	840	10275	2861	1772	
+
+D 43   4391	6869	3480	4984	6960	4585	3812	6024	3746	3348	*	2841	*	6003	3011	3507	3603	4219	*	6595	43
+       91	4030	*	1079	925	245	2680	9833	1843	4890	
+
+S 44   3760	4454	4518	4709	7247	4290	5536	4939	3521	2449	4939	6362	4786	4264	4539	4234	3854	3355	*	5604	44
+       507	1773	7993	385	2095	*	0	10204	5624	1626	
+
+E 45   4231	6751	3172	3732	6162	3135	5295	*	4097	6238	6938	3235	4499	5440	3725	3271	3069	4956	*	6154	45
+       101	3891	*	1489	636	3285	156	10209	2139	1710	
+
+G 46   5152	5998	4534	4393	6147	1099	6925	*	3688	5749	7629	4195	4754	4328	4807	3598	6029	*	*	*	46
+       28	5718	*	1488	636	2068	393	10176	1229	1626	
+
+K 47   3850	6514	5519	3033	6145	5405	5278	4584	2437	5284	7591	4737	4689	3429	2907	3413	5135	5554	*	6806	47
+       33	7143	6024	0	*	1691	535	10195	1000	1447	
+
+R 48   3533	*	6160	2660	6172	5617	6013	4184	3774	4136	7198	4577	5079	4071	3370	3172	3852	4005	6298	5889	48
+       72	4367	*	2764	230	435	1942	10120	1749	1530	
+
+G 49   4555	6060	6051	5144	6924	621	*	6990	4519	7447	*	6227	4473	7072	4792	4156	*	*	*	5308	49
+       91	4707	5447	2812	222	*	0	10147	1573	1032	
+
+M 50   4286	6572	6773	6372	3110	*	5915	3541	7134	2234	4619	6300	5549	*	5821	3642	6330	4820	2707	3246	50
+       46	4980	*	4186	82	1766	502	10064	1439	1521	
+
+I 51   4165	5515	6392	*	1757	6036	*	3113	5405	3279	6036	*	5213	*	*	5118	6502	2004	*	5274	51
+       46	4987	*	1484	638	1863	464	10096	1513	1329	
+
+P 52   5608	*	5547	5669	6432	5520	5828	*	6301	5064	6787	5675	473	7012	6235	4604	5292	*	*	6895	52
+       51	4849	*	2001	415	956	1045	10087	1526	1200	
+
+V 53   2697	6314	*	4659	5386	3886	6535	4485	3577	3761	7291	5491	5819	4458	4292	2351	3825	3653	*	*	53
+       28	6960	6440	1000	1000	*	0	10094	1000	1021	
+
+P 54   4275	*	3763	4492	6078	4370	6810	5566	4887	7045	6223	2595	5493	3574	3685	2357	3203	6160	*	6051	54
+       0	*	*	*	*	*	0	9931	0	1255	
+
+Y 55   7321	4211	7169	6049	2712	5315	3261	3985	6981	4097	6868	4544	5731	5469	6054	3727	*	4987	5808	1871	55
+       52	4821	*	2832	218	778	1262	9895	1479	1255	
+
+V 56   3603	6191	*	6093	5231	5347	*	3210	*	2400	6293	*	*	5875	*	3893	4681	1372	6724	6836	56
+       9	7254	*	0	*	*	0	9872	1000	1021	
+
+E 57   3512	6611	4260	2251	*	*	4972	6923	2600	4892	*	5073	5866	3736	3695	3421	3931	5440	6401	6920	57
+       21	6080	*	0	*	1388	695	9692	1092	1125	
+
+K 58   4753	*	4908	2402	6884	4856	*	3475	4135	3467	4640	6040	2621	4691	3987	4672	5748	3724	*	7189	58
+       53	4802	*	3768	110	0	*	9505	1258	1021	
+
+Y 59   4614	6726	*	4065	5863	*	6562	2495	5193	1720	6600	*	*	6435	6387	5764	4965	2294	*	3927	59
+       74	4318	*	0	*	*	*	8876	1089	0	
+
+G 60   3639	*	2889	*	*	2045	5184	*	4430	*	*	4321	5026	*	*	1615	4026	*	*	*	60
+       0	*	*	0	*	*	*	7177	0	0	
+
+//
+�HHsearch 1.5
+NAME  5364a334c335e7d706a5569fbc3f602d
+FAM   
+FILE  5364a334c335e7d706a5569fbc3f602d
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:04:47 2013
+LENG  165 match states, 165 columns in multiple alignment
+FILT  114 out of 1143 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  8.0 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCEEEEEEEECCEECEEEEEEEECCCCCHHHHHHHHHHHCCCCCEECCCEEEEEECCCEEEECCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCEEEEE
+EECCCCCCCCEEEEEECCCCCCCCCCEEEEEEEECHHHHHHHHHCCCCCCCCCCCEEEEEEEECC
+>ss_conf PSIPRED confidence values
+9988899999999880216999996776917999999885236782536988899877957981672578888887545752255553104688769998
+43799985556999936884348981699998837999999985688899893457999928309
+>Consensus
+xxxxxvxxdixixxtxxGxixixLxxxxaPxxxxnFxxlxxxxxgxxYxgxxfxrixxxxxiqxGxxxxxxxxxxxsxxxxxxxxexxxxxxxxxGxvsx
+xxxxxxxxxsxFfIxlxxxxxldxxxxvfGxVxxGxxvlxxIxxxxxxxgxPxxxixIxxcgxlx
+>5364a334c335e7d706a5569fbc3f602d
+MVNPTVFFDIAVDGEPLGRVSFELFADKVPKTAENFRALSTGEKGFGYKGSCFHRIIPGFMCQGGDFTRHNGTGGKSIYGEKFEDENFILKHTGPGILSM
+ANAGPNTNGSQFFICTAKTEWLDGKHVVFGKVKEGMNIVEAMERFGSRNGKTSKKITIADCGQLE
+>gi|156848109|ref|XP_001646937.1| hypothetical protein Kpol_2000p44 [Vanderwaltozyma polyspora DSM 70294]gi|156117619|gb|EDO19079.1| hypothetical protein Kpol_2000p44 [Vanderwaltozyma polyspora DSM 70294]
+---------------TIGSFGVTLDCKDSSVEAYNFLKLCKAN---YYNYQCFYDIRKGHSIEFGDGLYR-FKDRKELrvHSTFINsllNknnvdtivpe
+latcsSSVNTKEADMGRIGfktTFKDKERLIGSKVVVAlTDwDSNDGSV--SFFGRVnRRNWDVLDNFNRaIIDEKNELVTDIRI-------
+>gi|85710701|ref|ZP_01041765.1| putative secreted peptidyl prolyl cis-trans isomerase, cyclophilin type [Erythrobacter sp. NAP1]gi|85687879|gb|EAQ27884.1| putative secreted peptidyl prolyl cis-trans isomerase, cyclophilin type [Erythrobacter sp. NAP1]
+---------------NARKVVIQLMPApFSQGWTQNIRTLAR--AEW-YDGISVNRVQDNYVVQWGDPgydnpesgetetkplpdglnvmseadyaatgl
+isvpdprgrprinytlgaammrnamiaangaielpatftealeSGETPPPIKLETGDAYGELATLALgwpvtgsfgnaeepanqfwpvHC-YGMVGVGRN
+ySPDTGsGAELYTVIGHAPrHLDRNIALVGRIVSGMEHLSSLPRGSGTLGfyteeeadkrMPILSIRVAS-----
+>gi|328865705|gb|EGG14091.1| phosphoglycerate/bisphosphoglycerate mutase [Dictyostelium fasciculatum]
+--------------TSKGGIIVELYRDKARLSCERFTNQI--EVGR-YQDTIIHRIVKNLFIQCGRYSINSSSLDNSLMNNNDSSsnsnnddsitsftst
+stttsiydnnnnnnntqptslnssstilnqlyvdssdddeleqeqqqddivyisdnkesnltnskkesssskqqelldkdqfkrlikenNDNGLSFNERG
+LVAMGSYN------QIIFTLDACGALNRKYPIIGRVHpSTMQMLCILESTPTnESNCPIDPIFLTN-----
+>gi|156839035|ref|XP_001643213.1| hypothetical protein Kpol_457p6 [Vanderwaltozyma polyspora DSM 70294]gi|156113813|gb|EDO15355.1| hypothetical protein Kpol_457p6 [Vanderwaltozyma polyspora DSM 70294]
+--------------TSKGNLNVELWAKECPIASKLFIETCL--SKF-WVGSSLGEFgedGSKLYIDFDGDTKF---------KDSIAMEsNSRLLFNREG
+LLGW-----DIDAGLWFVTTSEKC-DGKRKILIGKIV--------------------------------
+>gi|309366416|emb|CAR98339.1| hypothetical protein CBG_27914 [Caenorhabditis briggsae AF16]
+----RIIFDVVSGNLMMGRIIIMLSN-FEPELRKHFYKMADGNRTnRSFSGTIFHRKTNKFIEGGVLTSSNDTSTVESLYTTKPVNNPKFYSKY--VMIA
+NRNIHDDYRGTRFLITTSPLLHCDQDHIPLGTIVCGREIFDQIAELPcDQDGKFLSTLSIHHS----
+>gi|321456758|gb|EFX67858.1| hypothetical protein DAPPUDRAFT_330682 [Daphnia pulex]
+----KCYFRMNINGVMSERIIVQLEKAKAPIMCAKFIEMCTKKDG--YKGSKIYKTIKGesVFCSSGWFHTYDLDQRCDVFTADKSDVAEQRGSM-RFQI
+KKSENGIAQVSTEFNVILANRPRHHRSTSVFAQIIEGLTVFDQISGMDMKQNR----VIFAECGV--
+>gi|159482122|ref|XP_001699122.1| hypothetical protein CHLREDRAFT_193502 [Chlamydomonas reinhardtii]gi|158273185|gb|EDO98977.1| predicted protein [Chlamydomonas reinhardtii]
+---------------EMGDVVVKLLPDLAPASVRELRRMAALLAleGTGCDGCKLYRSEVNFLVQGVIRHPG------AYVATPRRPNPPQKKMMERGLA
+CWAGGM---GGPDWFVNLIDQSGFGDDHLCWGKI-DDMSLLDAIVKLPTK-----------------
+>gi|308813275|ref|XP_003083944.1| peptidyl-prolyl cis-trans isomerase TLP38, chloroplast / thylakoid lumen PPIase of 38 kDa / cyclophilin / rotamase (ISS) [Ostreococcus tauri]gi|116055826|emb|CAL57911.1| peptidyl-prolyl cis-trans isomerase TLP38, chloroplast / thylakoid lumen PPIase of 38 kDa / cyclophilin / rotamase (ISS) [Ostreococcus tauri]
+--------------LNEATLEITVDGYNAPLTAGNFVDNVR--RGV-YRNAPMRRSET--AILGGASN--pDAPSVPleikasdafdPSYRFPLDvqnGE
+aIPSIPLSINGSVAMARS-sdGQSDKDQFFVYLFDkrsaglggLSFEEGEFSVFGYVTKGEEYLGSI-----------------------
+>gi|342181197|emb|CCC90675.1| putative RNA-binding protein [Trypanosoma congolense IL3000]
+-PRPIVTAAVLIE-TSVGTFVVDLYGADCPAATGELVNLCRCK---YFNGCIATEVIPDSvlifshpveALQQQTFASLLDMgGMRHLPLRDGTLdatst
+rqavyaewkrmrrhvarpqdgakgavgaenvefvirpplEAPGTIRY-SGLLLLevpqvesgATTVCHPLKMRLLITLSnrHLDYLEGQFIVVGEVREGC
+DVVEKMRAAPhrrltTSSGittRPSRLVRIKHTTVLP
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	1
+       344	2239	*	0	*	*	*	2117	1037	0	
+
+V 2    *	*	*	*	*	3061	*	2712	3104	*	*	*	2371	*	*	2840	*	1846	*	*	2
+       0	*	*	*	*	*	*	3309	0	0	
+
+N 3    *	*	*	*	4533	*	*	*	3628	*	*	1243	*	*	2108	4399	2936	*	*	4530	3
+       198	2963	*	0	*	*	*	5539	1342	0	
+
+P 4    4745	*	4923	*	*	*	*	*	2980	4963	*	*	928	3886	3333	3668	*	*	*	*	4
+       0	*	*	*	*	*	*	6329	0	0	
+
+T 5    *	5213	*	5386	*	*	4415	2952	2786	5277	*	4128	*	5241	2765	4350	3611	2971	*	3144	5
+       0	*	*	*	*	*	*	7053	0	0	
+
+V 6    3528	3743	*	*	5320	*	*	2644	*	5411	*	*	5627	*	4958	*	5257	1025	*	4054	6
+       0	*	*	*	*	*	*	7121	0	0	
+
+F 7    *	*	*	5571	1787	*	*	5243	*	5438	*	4730	*	*	5333	3653	4105	5060	5006	1402	7
+       0	*	*	*	*	*	*	7151	0	0	
+
+F 8    5021	*	*	*	1512	*	*	3770	*	1710	2538	*	*	5538	*	*	5427	5464	*	*	8
+       0	*	*	*	*	*	*	7159	0	0	
+
+D 9    5021	*	957	3194	4572	*	4317	*	4787	*	*	*	5618	4766	4986	*	3931	4011	*	*	9
+       134	*	3492	*	*	*	*	7159	0	0	
+
+I 10   *	5409	*	*	3094	*	*	1576	5528	3593	3517	*	5403	*	*	4996	*	1851	*	*	10
+       76	5166	5419	0	*	*	0	7074	1034	1328	
+
+A 11   2065	*	*	2512	*	4080	*	4214	3276	5035	*	4930	*	*	*	2803	3851	3420	*	*	11
+       0	*	*	*	*	*	0	7084	0	1445	
+
+V 12   5347	*	*	5365	*	*	5132	1439	3998	4637	5789	*	*	*	4620	3550	5798	1791	*	*	12
+       40	5188	*	1000	1000	*	0	7207	1028	1445	
+
+D 13   4344	*	2461	2987	4794	3061	*	4721	5855	3758	*	2225	5635	*	5479	4151	5723	*	*	5245	13
+       152	3739	5300	750	1303	*	0	7237	1333	1445	
+
+G 14   6053	*	3200	3171	*	1926	6010	*	4208	6037	*	2897	6221	5792	4424	4450	3217	4276	*	*	14
+       44	5062	*	957	1045	248	2661	7365	1111	1631	
+
+E 15   4673	6260	6287	3831	*	6295	*	4398	3668	4853	*	5579	*	4419	4213	6097	985	4777	*	6218	15
+       37	5312	*	2010	412	0	*	7893	1166	1005	
+
+P 16   5243	*	3940	4392	4600	6766	6673	5580	5104	4641	5280	2984	3055	5048	5079	2210	2884	6744	*	5854	16
+       0	*	*	*	*	*	*	8197	0	0	
+
+L 17   3071	5943	6549	4058	4148	6004	6910	4287	2767	2513	4514	*	6736	4315	5657	5072	4664	3341	*	4344	17
+       0	*	*	*	*	*	*	8240	0	0	
+
+G 18   5765	*	*	5698	*	166	6299	*	6761	*	*	*	*	6558	5571	*	7005	6694	*	*	18
+       27	6334	7340	0	*	*	*	8249	1060	0	
+
+R 19   6314	6360	2525	4852	6713	6526	*	7170	3645	5871	*	3863	4917	6954	1759	3543	3195	4567	*	*	19
+       0	*	*	*	*	0	*	8273	0	1000	
+
+V 20   *	*	*	*	2875	*	*	1530	*	2088	3856	*	*	*	*	*	*	2230	*	*	20
+       0	*	*	*	*	*	*	8262	0	0	
+
+S 21   6937	*	4117	3945	6778	5492	*	2852	4764	4080	*	4577	6915	5372	4673	3896	2931	1866	*	5856	21
+       0	*	*	*	*	*	*	8262	0	0	
+
+F 22   4437	7016	*	*	3058	*	*	1086	*	3285	4796	*	*	*	*	*	*	2207	*	*	22
+       0	*	*	*	*	*	*	8262	0	0	
+
+E 23   5717	*	2962	1499	*	3400	*	4754	4882	5112	5727	*	*	3030	3920	6894	4440	4557	*	*	23
+       16	*	6480	*	*	*	*	8262	0	0	
+
+L 24   6453	*	*	*	5721	*	*	4364	*	364	6335	*	*	*	*	6613	*	3040	*	*	24
+       14	*	6709	*	*	*	0	8233	0	1016	
+
+F 25   5073	*	2802	5082	2071	6585	5234	*	5673	4264	6432	4645	*	*	4506	5436	*	*	4081	1873	25
+       0	*	*	*	*	896	1112	8216	0	1129	
+
+A 26   3480	4683	4285	4911	*	2502	5933	*	4547	5742	*	3538	2637	*	3505	4520	3798	4200	*	5176	26
+       62	5973	5262	617	1523	*	0	8268	1080	1000	
+
+D 27   4513	6828	1490	2538	*	*	6061	*	3046	6811	*	4042	*	6016	4998	4419	4201	5423	*	4563	27
+       71	5616	5173	498	1777	370	2143	8257	1116	1309	
+
+K 28   3328	6326	3837	2776	4365	4331	5053	4460	3384	3349	5600	6048	*	5084	5215	4686	5204	3521	4302	6892	28
+       0	*	*	*	*	0	*	8280	0	1331	
+
+V 29   1292	3408	*	5053	4919	6779	5777	5986	5445	5157	6818	7157	*	6882	6515	2658	4297	3388	*	*	29
+       37	5876	6886	0	*	*	*	8285	1187	0	
+
+P 30   5545	6880	6480	5862	6722	*	6811	*	5635	*	*	6978	300	5487	5703	6369	5089	*	*	*	30
+       0	*	*	*	*	*	0	8276	0	1000	
+
+K 31   3397	4511	4936	4058	*	5769	6463	4240	2690	2645	4566	3481	6525	4115	4104	5805	5794	3916	*	6592	31
+       0	*	*	*	*	*	0	8276	0	1000	
+
+T 32   2673	*	*	5002	6366	3341	4438	4998	*	3703	4173	5918	6706	5771	*	2892	2180	4305	6449	5075	32
+       0	*	*	*	*	0	*	8276	0	1000	
+
+A 33   2193	2807	*	*	*	4820	6707	6779	6622	6397	*	*	*	*	4547	3143	3461	1665	*	*	33
+       0	*	*	*	*	*	*	8285	0	0	
+
+E 34   3147	*	2982	2703	5884	3973	7034	6880	3601	4208	5820	4633	*	3537	3075	4277	5085	*	*	5065	34
+       0	*	*	*	*	*	*	8285	0	0	
+
+N 35   5308	7414	*	4189	5655	6641	3889	5690	5047	4409	*	1258	*	4763	3113	4841	5279	5265	6935	4195	35
+       0	*	*	*	*	*	*	8285	0	0	
+
+F 36   *	*	*	*	284	*	*	4020	*	4110	6668	*	*	*	*	*	*	4648	*	6700	36
+       0	*	*	*	*	*	*	8285	0	0	
+
+R 37   4035	5625	6622	4582	6515	5964	5175	3096	4013	1679	4987	*	*	5383	4490	7250	5866	2769	6886	4570	37
+       0	*	*	*	*	*	*	8285	0	0	
+
+A 38   3953	*	3758	3070	5704	4638	4826	*	2604	6817	*	3532	*	3318	3032	3677	4105	6962	*	5562	38
+       41	5572	7185	627	1504	*	*	8285	1159	0	
+
+L 39   4432	*	*	5812	5283	*	5238	4590	*	879	3447	4235	*	6596	3990	6650	5393	*	6335	4871	39
+       14	6695	*	710	1363	*	0	8287	1127	1000	
+
+S 40   2072	1497	*	6390	6824	*	*	3347	*	4910	*	6484	*	*	*	7522	4770	2362	*	7027	40
+       227	5969	2947	1558	599	*	0	8287	1098	1000	
+
+T 41   4257	6517	4423	4684	*	6667	5418	5901	2851	3066	6361	4290	5616	4085	2402	4153	2983	5115	*	*	41
+       753	5656	1371	2000	415	*	0	8153	1114	2449	
+
+G 42   2988	5457	5047	5826	*	1225	5114	4892	4753	4520	*	4921	5782	4886	4670	3210	*	*	*	*	42
+       181	4288	3911	2248	341	1810	485	7693	1317	5269	
+
+E 43   *	*	2599	2484	*	3598	*	4536	2407	5856	*	2839	6225	5143	4424	4093	5300	*	*	6294	43
+       401	3748	2569	2219	349	289	2460	7909	1636	4587	
+
+K 44   3308	*	3666	3545	6677	5500	5328	6710	2163	4372	*	3837	5721	4639	2858	3329	6705	5597	*	*	44
+       111	4921	4609	2271	335	2677	245	7956	1221	2857	
+
+G 45   5043	6373	3787	4695	*	816	5875	6670	4105	6115	*	4531	6211	*	4845	4541	4878	*	*	6530	45
+       265	3395	3783	2785	226	4123	85	7968	2058	2895	
+
+F 46   4392	*	6413	6500	2260	5418	5493	3495	5395	2943	*	5174	5498	5596	4220	4795	4117	4616	5421	2729	46
+       1152	5013	946	3338	150	477	1830	7878	1214	3390	
+
+G 47   4187	4746	*	5602	4874	3086	5608	*	4224	5880	*	*	*	*	4150	2086	2972	6027	*	2254	47
+       76	4823	5983	4992	46	38	5284	7581	1146	5263	
+
+Y 48   5975	5437	*	*	2534	6716	5390	*	6566	4834	*	*	*	*	*	6497	*	6660	5981	572	48
+       30	6380	6880	2585	263	*	0	8254	1045	1160	
+
+K 49   3832	6905	1702	4359	5796	6524	6646	5965	2841	6582	*	3001	6764	5786	3299	5205	4511	5173	*	6964	49
+       0	*	*	0	*	1685	537	8239	1010	1286	
+
+G 50   6482	*	3965	4644	5190	1102	6169	*	4929	5853	*	2559	*	5672	4508	4478	5817	*	*	4981	50
+       0	*	*	*	*	*	0	8252	0	1163	
+
+S 51   3700	2913	*	6882	*	6102	6661	5101	4990	4144	4863	4870	6817	4508	5474	2775	1793	4017	*	*	51
+       13	*	6856	*	*	0	*	8252	0	1163	
+
+C 52   3328	5279	4639	4694	*	5746	5693	3796	2865	3883	*	5576	3490	5221	3787	3696	3256	4054	*	5077	52
+       0	*	*	*	*	*	0	8297	0	1006	
+
+F 53   6295	4377	*	*	1117	*	*	2358	*	3102	4804	*	*	*	*	*	*	3026	6986	*	53
+       0	*	*	*	*	*	0	8297	0	1006	
+
+H 54   5125	6986	4661	5890	3209	5904	2113	7185	4705	5152	6682	4858	*	6099	4507	4864	3992	4790	6694	2108	54
+       0	*	*	*	*	0	*	8297	0	1006	
+
+R 55   5048	6724	5621	4728	*	6741	5570	*	2679	*	5593	4151	6798	4640	892	5341	7262	*	*	5684	55
+       0	*	*	*	*	*	*	8300	0	0	
+
+I 56   3680	*	*	*	5130	6691	*	1854	5210	3261	6019	6163	*	6798	6495	3845	4328	1794	*	5749	56
+       44	5958	6196	1585	585	*	*	8300	1095	0	
+
+I 57   3863	*	5213	2871	5640	6804	*	2685	4194	3422	5791	5308	7190	4453	5511	5069	4004	2254	5986	*	57
+       68	4636	7417	866	1147	0	*	8305	1368	1082	
+
+P 58   4664	*	3498	4596	*	5434	6008	*	2061	6889	*	4521	1746	4863	5083	4640	3829	5752	*	6719	58
+       44	6357	5826	1000	1000	*	0	8299	1020	1000	
+
+G 59   6908	*	2689	4794	5957	1555	5531	6435	4645	5264	*	2144	6538	5721	5143	4491	6886	*	*	6993	59
+       178	3346	5836	1826	478	*	0	8301	2042	1167	
+
+F 60   5712	*	6464	5925	1846	4872	4205	5213	3346	3929	4992	5637	6870	4193	4877	4186	5273	3728	*	3465	60
+       107	3985	6960	2517	277	257	2616	8265	1680	1391	
+
+M 61   3483	5764	*	*	3841	5096	6824	3215	6888	3242	3711	6814	*	6790	5135	4346	5172	2262	4288	3277	61
+       13	*	6857	*	*	896	1112	8303	0	1065	
+
+C 62   3749	4770	6354	5508	4819	*	*	1544	6995	2271	5712	*	*	5933	*	*	7152	2191	*	*	62
+       40	6684	5831	1000	1000	*	0	8286	1021	1069	
+
+Q 63   5591	*	4730	3177	5118	5478	6053	4254	4717	4617	5362	5351	*	1164	5613	4356	*	3857	*	*	63
+       68	*	4445	*	*	1998	416	8278	0	1286	
+
+G 64   3155	3345	*	5337	3481	1608	*	4586	*	*	6428	5710	*	5468	*	3601	3464	4452	4909	*	64
+       24	7085	6803	1585	585	*	0	8238	1000	1768	
+
+G 65   5153	*	5686	*	*	332	6731	*	6338	5537	*	*	6906	6226	5622	5353	6458	5411	*	6250	65
+       59	4934	7093	1467	648	2092	386	8222	1382	1886	
+
+D 66   4042	*	1603	4496	*	4043	*	4353	4566	3756	*	3615	*	7085	3961	3892	5501	3907	6298	5799	66
+       70	6921	4682	1000	1000	*	0	8247	1000	1743	
+
+F 67   3983	6677	5546	5704	3365	4649	*	3242	5295	4007	5776	7043	2094	6829	3784	4340	4637	3544	*	4666	67
+       45	5492	6852	4908	49	1294	756	8228	1234	2187	
+
+T 68   3673	6612	4490	3504	5369	4302	4886	5243	4437	3384	6461	5856	4158	5778	4786	2867	2672	4360	*	5650	68
+       326	6877	2367	0	*	2116	378	8269	1000	1784	
+
+R 69   3802	5099	5084	4095	3766	2872	*	6237	4675	6385	6401	3586	3639	4445	5894	3254	3702	4655	6726	3884	69
+       484	4216	2112	3847	104	1494	633	8126	1435	3581	
+
+H 70   4856	*	4777	5200	6191	2320	3725	*	3066	4499	4666	2827	3655	5253	4286	4321	5082	6001	*	5953	70
+       566	4413	1850	2450	292	1288	760	7955	1357	4390	
+
+N 71   4763	*	1978	6256	*	3946	5050	6179	4036	5667	*	2870	*	6240	4140	3093	2549	6387	*	*	71
+       211	3621	4183	3069	183	1437	665	7590	1601	4765	
+
+G 72   3958	*	4721	4894	5193	1411	*	4595	5012	4588	*	3789	4332	5527	5584	3653	4542	4063	*	*	72
+       123	4554	4666	1640	558	2670	247	7881	1446	3871	
+
+T 73   3887	6019	5195	5671	*	6313	*	4155	3041	4390	4494	*	3027	4815	3176	3059	2793	4551	*	6384	73
+       111	4296	5438	3520	132	2355	314	7912	1698	3824	
+
+G 74   4475	6537	3698	3983	*	1353	4772	*	6625	4477	*	6579	5053	4337	4934	3414	4058	5012	*	6248	74
+       89	5624	4657	2687	244	3491	134	7922	1115	3507	
+
+G 75   3994	*	3338	4853	6211	1748	4996	5237	*	4964	5937	5299	4356	*	3414	3280	4583	3765	*	*	75
+       75	5065	5603	2716	238	1533	612	7906	1492	3623	
+
+K 76   4599	4725	5272	3262	6715	4731	4913	5658	3154	4179	5637	4545	2872	5485	4046	3999	3842	3719	5552	6490	76
+       200	3873	4033	1976	423	2061	395	8024	1520	2937	
+
+S 77   3282	5142	4208	4027	6603	5100	5077	*	6262	6184	*	5112	3146	5607	5119	1529	3211	*	*	6398	77
+       123	4946	4351	1730	517	3715	114	8070	1204	3043	
+
+I 78   3536	7161	5016	4845	6335	5748	6343	2035	4925	2783	5222	5437	4268	5315	6589	3718	4431	3312	*	6038	78
+       230	3412	4220	2312	324	2613	257	8106	1832	3259	
+
+Y 79   4147	5276	4301	5599	2992	6620	6094	6767	5315	4126	4765	4512	4313	*	*	6363	5397	4328	3617	1707	79
+       158	4275	4268	536	1688	640	1480	8118	1460	3360	
+
+G 80   3130	5479	4533	5332	*	1632	6798	*	4224	5284	6786	3738	4401	3713	4116	4711	4043	5609	*	*	80
+       145	3785	5445	1404	685	1074	930	8221	1632	2290	
+
+E 81   3046	6300	2761	2974	4010	4643	*	4980	3461	4676	5958	5097	4689	5391	3730	5224	4177	6774	6875	4483	81
+       64	4529	*	1974	424	685	1403	8276	1447	1886	
+
+K 82   3818	5957	3831	3393	4610	6725	5810	5721	3713	5095	6624	4147	2960	4291	3128	5094	3369	5608	*	4387	82
+       92	4012	*	2303	327	913	1093	8310	1677	1275	
+
+F 83   *	6838	6588	*	2092	5509	6616	2404	5535	2501	4683	5690	5223	6876	6510	5595	5183	3571	6776	3627	83
+       51	5714	5996	2449	292	907	1099	8315	1109	1069	
+
+E 84   3925	*	3747	2432	*	5148	6740	6711	3593	4753	6597	3946	2492	3977	4321	3917	4428	5149	*	*	84
+       145	4065	4802	1414	679	1930	439	8289	1566	1211	
+
+D 85   3603	7118	1991	3183	5490	4480	5085	6331	5041	6198	5179	3421	3549	6672	4539	3572	5189	5947	*	6807	85
+       231	2852	6756	4054	90	1145	868	8235	2665	1676	
+
+E 86   5167	*	3449	1141	6840	5708	*	5303	4854	4237	*	4386	4984	5924	5292	3242	6587	4923	*	5962	86
+       181	3087	*	1114	894	752	1299	8289	2276	1471	
+
+N 87   3718	5857	4459	5264	4231	4439	5244	3926	4641	5302	6735	2506	3372	6857	4274	3161	4259	5699	*	4243	87
+       133	3815	5853	722	1345	0	*	8290	1755	1126	
+
+F 88   4791	*	4765	4499	3359	4840	4800	5719	3685	3601	*	3741	3478	7010	4786	2865	3275	4506	*	4561	88
+       113	3933	6664	480	1820	0	*	8294	1706	1107	
+
+I 89   4980	6897	4369	3655	4804	2690	5245	5894	3707	4505	6920	3776	4542	4033	3166	4063	5189	3560	6829	*	89
+       98	4056	7516	3172	170	0	*	8295	1625	1021	
+
+L 90   4175	*	5948	6392	4668	5685	6746	3468	5688	1482	5193	5504	4523	5902	3990	5743	4551	3246	5916	5329	90
+       38	5974	6629	1000	1000	*	0	8312	1076	1000	
+
+K 91   4923	*	4281	4832	5524	4905	5327	5546	2373	3736	*	4361	3235	5036	3260	3741	3909	4903	5627	5253	91
+       103	4093	6638	3252	160	718	1350	8292	1616	1103	
+
+H 92   5666	*	6921	5495	2886	5139	1408	5744	5711	4832	4933	4066	5094	4666	4411	4704	4241	5898	6370	6927	92
+       164	5256	3625	2535	273	*	0	8294	1215	1089	
+
+T 93   4272	4834	2984	4015	4445	3621	5876	5457	5114	4600	4810	3506	5443	5038	4760	3672	3891	4072	*	3868	93
+       364	6466	2241	0	*	243	2688	8238	1044	2074	
+
+G 94   5710	5609	4593	3455	6116	2705	5325	5568	3121	*	5422	5673	4824	4396	2295	5622	3449	4489	6242	*	94
+       44	6313	5852	0	*	206	2911	8056	1003	3264	
+
+P 95   2716	*	5340	5211	7209	*	6895	5102	3121	4424	6271	5429	3184	6371	1763	5150	5219	5766	6708	4197	95
+       78	4451	7116	2102	382	244	2687	8251	1704	1416	
+
+G 96   5499	*	6622	*	4418	301	*	*	*	4870	*	6389	*	6392	*	*	*	5545	*	5068	96
+       29	5628	*	0	*	1032	969	8304	1150	1048	
+
+I 97   3284	6794	5296	7003	6673	*	*	4366	4946	2396	4319	*	*	4419	3999	3970	2358	3093	6484	5175	97
+       38	6987	5812	0	*	*	0	8299	1000	1000	
+
+L 98   4684	*	*	*	6828	*	6743	2205	*	1505	6871	*	*	*	*	*	*	1454	*	*	98
+       46	*	5004	*	*	*	0	8272	0	1196	
+
+S 99   2297	4450	*	*	6814	2263	*	4865	6208	4891	6399	*	*	*	6700	1556	4143	6034	*	5750	99
+       49	5346	6832	2006	413	181	3087	8191	1629	1580	
+
+M 100  4308	5107	*	5657	3710	*	*	4722	5497	2799	1866	4887	*	*	5934	4860	3756	3805	4084	4132	100
+       89	5332	4827	4259	77	*	0	8282	1217	1090	
+
+A 101  1616	4912	4977	5296	5663	4059	*	3779	6770	5487	5696	5680	5643	6923	3520	3583	5119	3020	6685	*	101
+       129	4897	4273	1735	515	573	1610	8225	1482	1516	
+
+N 102  4332	7319	*	3905	*	3698	4472	5300	3321	4920	*	2466	5511	5217	2078	3567	5358	5558	*	*	102
+       101	4786	5001	2815	221	1300	752	8233	1500	1710	
+
+A 103  4496	*	2890	3984	5876	3593	6649	4577	6612	5220	6977	3598	5584	5118	5173	2088	4318	4078	5870	4677	103
+       369	2352	5066	1415	678	2450	292	8209	3057	1736	
+
+G 104  3881	6751	2685	5858	5288	1748	5480	6362	4887	6264	6349	3052	5889	6742	4637	3583	6799	4956	*	5546	104
+       299	2958	4090	976	1025	1354	716	8150	2344	2099	
+
+P 105  4801	5441	4299	3883	*	4622	5447	5558	3133	6757	*	4560	1518	5061	3592	4365	5026	5024	*	*	105
+       123	4087	5436	1106	901	984	1016	8119	1664	2268	
+
+N 106  4616	6515	2065	5819	*	2658	4023	*	4476	4834	*	2538	4405	6783	4753	4150	5029	5589	*	5768	106
+       204	3333	4932	1755	507	*	0	8153	2051	1850	
+
+T 107  4566	4955	4703	4752	5738	4584	5765	5690	5685	5043	6502	5102	4354	4818	4355	2223	2412	4649	*	3526	107
+       0	*	*	*	*	1953	431	8121	0	2206	
+
+N 108  3291	4875	4225	5085	4354	3285	*	3910	6627	4520	*	2531	*	5180	3582	3579	5149	3532	*	5223	108
+       36	5354	*	1955	430	2045	400	8182	1146	1884	
+
+G 109  4105	*	3459	6739	7002	1648	*	5579	4144	5522	*	4748	5251	*	6914	2320	3233	5243	*	6556	109
+       12	6927	*	1000	1000	2425	297	8209	1000	1651	
+
+S 110  4045	5399	5289	5210	4624	3434	6982	4889	*	5998	6230	6947	3948	*	*	1380	2610	5023	*	6987	110
+       9	*	7377	*	*	826	1198	8221	0	1513	
+
+Q 111  4486	6649	4386	2088	*	5701	6011	6750	5566	4961	*	4332	*	1821	3190	4066	5070	4900	*	*	111
+       0	*	*	*	*	727	1338	8240	0	1245	
+
+F 112  6386	6819	*	*	522	*	*	4178	*	2999	6728	*	6348	*	*	*	*	5482	4706	5647	112
+       14	*	6677	*	*	*	0	8264	0	1028	
+
+F 113  4930	4847	*	*	1156	5273	*	4360	5885	3530	4986	6371	*	*	5977	3999	4521	5110	*	3170	113
+       39	6871	5780	1000	1000	*	0	8243	1013	1139	
+
+I 114  *	*	*	*	2888	*	*	795	6359	4124	*	*	6682	*	*	*	6450	2337	*	*	114
+       9	*	7386	0	*	1079	925	8212	1113	1364	
+
+C 115  3961	3819	7473	6819	6893	6687	6610	4683	6378	4721	4424	3610	6896	6815	6871	3121	1638	3131	*	5134	115
+       49	5377	6700	0	*	*	0	8242	1153	1222	
+
+T 116  6611	6789	*	6040	3752	6877	6053	4978	5529	1018	6337	*	*	5906	6604	6795	2256	4821	*	5191	116
+       48	6013	5833	3620	122	409	2018	8223	1156	1333	
+
+A 117  3449	5899	4289	4154	5154	2088	5152	5688	3847	7081	*	3842	6856	4032	4013	3050	4391	6827	*	5790	117
+       219	2828	*	2370	310	1688	536	8266	2613	1242	
+
+K 118  3863	*	1744	3732	*	4227	4890	*	4587	6383	*	3481	2334	5675	5259	4432	4764	*	*	*	118
+       195	3106	6605	2481	285	1022	979	8287	2260	1132	
+
+T 119  2417	4791	*	5069	7063	5952	6342	3855	5819	2854	5376	3549	*	3772	4679	3861	3625	3647	5829	5905	119
+       102	4043	6985	1845	470	*	0	8269	1619	1143	
+
+E 120  4703	5931	3524	4247	*	5669	5344	5583	4874	5661	*	4786	1479	5924	4118	2774	4255	5716	*	*	120
+       147	6375	3563	971	1030	1514	622	8277	1146	1242	
+
+W 121  4614	*	4378	3466	3855	4285	3059	4679	4686	4790	6649	5291	5141	4197	4247	3341	5413	4144	4012	4201	121
+       16	*	6474	*	*	990	1011	8176	0	2163	
+
+L 122  5259	6536	5010	4975	3602	4670	5465	4079	*	1031	5532	6128	6553	6628	6427	5443	6594	4486	6309	4363	122
+       46	5550	6628	1000	1000	1170	848	8250	1140	1659	
+
+D 123  5103	*	978	4226	*	4666	4717	*	5485	*	*	2997	4562	5305	*	3956	5137	6443	*	6286	123
+       0	*	*	*	*	1197	827	8261	0	1432	
+
+G 124  4257	*	4415	4107	5784	1518	5951	*	4846	*	6460	3651	3930	3729	3894	4176	6715	6287	6432	4794	124
+       152	4483	4174	1448	658	1465	649	8272	1541	1196	
+
+K 125  5621	*	3666	3620	5297	3580	6618	4861	2324	*	*	4217	5973	3094	2651	4286	4049	*	*	6867	125
+       113	3730	*	2849	216	1460	652	8146	1869	1722	
+
+H 126  5177	6889	6113	*	3122	6613	2376	5612	5767	5584	*	3260	5736	5893	4185	4791	4782	*	*	1714	126
+       37	5302	*	2652	250	395	2061	8177	1169	1426	
+
+V 127  2836	5648	6883	7067	5858	*	5731	2870	*	4767	*	6646	5805	4369	6405	3082	2013	2638	*	*	127
+       25	5839	*	1430	669	*	0	8271	1122	1016	
+
+V 128  2789	5631	*	*	6345	6375	*	2452	*	4524	6785	*	3204	*	*	4996	5733	1263	*	*	128
+       0	*	*	*	*	0	*	8271	0	1016	
+
+F 129  *	*	*	*	716	*	*	2365	*	4095	*	*	*	*	*	*	*	3090	5561	*	129
+       27	6741	6751	4322	74	*	*	8300	1000	0	
+
+G 130  3802	*	*	*	*	107	*	*	*	*	*	*	*	*	*	*	*	*	*	*	130
+       27	*	5763	*	*	*	0	8290	0	1031	
+
+K 131  6789	5689	6362	3773	*	*	6955	5691	3051	*	4427	6305	*	2773	1734	5335	3436	5813	*	3363	131
+       0	*	*	0	*	713	1359	8259	1113	1258	
+
+V 132  6022	5679	*	*	*	*	*	2520	*	3295	5907	*	*	*	*	*	6720	594	*	*	132
+       99	5606	4450	0	*	*	0	8290	1117	1031	
+
+K 133  4171	4412	5785	6774	*	6593	5615	2168	6055	3070	7030	*	*	*	4738	5638	2853	2043	*	4774	133
+       169	3419	5871	133	3506	342	2244	8234	2103	1564	
+
+E 134  3950	5584	2538	1790	6363	4438	6883	*	2970	*	6332	6833	*	4750	4310	2904	*	*	*	5930	134
+       45	5010	*	2256	339	846	1173	8260	1235	1214	
+
+G 135  6629	6382	4610	6564	*	329	*	*	*	*	*	4184	6738	*	*	4419	5690	*	*	*	135
+       15	6629	*	0	*	*	0	8279	1008	1031	
+
+M 136  5806	6244	4432	4039	3097	6788	5910	4229	5719	2030	2142	6321	6915	5787	5027	6875	*	5140	5002	4728	136
+       29	6602	6711	0	*	*	0	8279	1008	1031	
+
+N 137  4378	6788	1757	1907	6856	4694	4802	*	3830	*	*	5252	5441	5015	4872	3988	4645	*	*	6721	137
+       33	5462	*	682	1409	1213	814	8258	1154	1142	
+
+I 138  3875	*	*	*	4791	*	5020	3040	*	2750	6553	5671	*	*	*	*	3358	1157	*	5765	138
+       0	*	*	*	*	*	0	8265	0	1031	
+
+V 139  6846	4750	6603	*	4597	*	*	2721	*	1106	6442	6545	*	*	6956	*	*	2140	*	5104	139
+       0	*	*	*	*	0	*	8265	0	1031	
+
+E 140  5239	5522	2067	2020	6619	6862	5567	6553	3473	6610	5312	5024	5776	3664	3449	4255	5737	*	*	*	140
+       0	*	*	*	*	*	*	8279	0	0	
+
+A 141  2586	6316	*	3919	6553	5990	*	5691	2063	5613	5758	4748	*	3364	2772	4607	4220	5919	6610	5126	141
+       0	*	*	*	*	*	*	8279	0	0	
+
+M 142  6487	6393	*	*	4855	*	*	898	*	2080	3641	*	*	*	*	*	*	3704	6332	*	142
+       129	3668	7210	969	1032	*	*	8279	1786	0	
+
+E 143  2553	*	5788	2559	5668	5681	4577	6546	4208	5440	*	2909	5481	4867	3937	2700	4652	5370	*	*	143
+       58	5101	6650	885	1125	0	*	8233	1423	1000	
+
+R 144  2184	6687	3358	3663	*	4756	5133	5594	3303	5184	6549	4289	5118	5212	3337	3223	5695	5291	6597	*	144
+       284	2732	5137	1619	568	*	0	8179	2195	1000	
+
+F 145  3255	*	5299	*	4091	3775	6006	3884	6323	2490	3448	6305	*	5530	6273	5386	4071	2538	*	3842	145
+       83	4547	6252	2083	388	*	0	8157	1265	1397	
+
+G 146  4309	5195	3192	3972	*	2170	*	5849	4101	5006	*	4639	2184	4605	*	4598	4826	4565	*	*	146
+       154	3306	*	1659	549	*	0	8138	1731	1545	
+
+S 147  5152	5984	2156	5986	*	4804	6032	*	6129	*	5744	3949	4239	*	6018	3149	1659	3849	*	*	147
+       255	2627	*	902	1105	2122	376	8083	2178	1545	
+
+R 148  5240	*	2677	2673	5280	3771	5789	*	2329	6253	*	4674	4569	5133	4217	3733	4845	5907	*	4611	148
+       178	3320	5966	954	1047	1738	514	8096	1676	1479	
+
+N 149  4655	*	2600	6209	4693	6091	5093	5187	3489	4197	*	2590	*	4105	6201	3102	3760	5890	5296	4114	149
+       106	5866	4226	0	*	866	1147	8032	1017	1437	
+
+G 150  4786	*	4497	3581	5126	1060	4789	*	5334	5870	4343	2976	6003	6314	*	*	*	*	6053	5058	150
+       124	3598	*	2059	396	868	1146	7915	1523	1704	
+
+K 151  3336	5895	4718	3397	5851	5290	5307	5863	2793	6225	4801	*	*	4099	1846	*	4449	4402	5317	5823	151
+       32	*	5508	*	*	*	0	7912	0	1263	
+
+T 152  5858	*	5984	*	4828	*	*	5798	4917	4040	*	5974	514	*	*	4893	5159	5154	*	6184	152
+       49	6010	5800	1585	585	*	0	7853	1000	1428	
+
+S 153  3993	*	*	4417	4788	*	*	3155	2493	2484	5995	4969	*	5672	*	3544	4511	3185	*	3665	153
+       0	*	*	*	*	401	2042	7786	0	1567	
+
+K 154  4969	*	4970	2670	*	5761	5004	4245	2639	4717	*	4934	5079	3631	3382	3557	4069	3926	*	5114	154
+       52	4828	*	543	1672	*	0	7861	1147	1054	
+
+K 155  4148	6294	2222	3856	*	*	4399	*	3802	4686	*	4493	2793	5726	3752	4010	2981	5719	*	*	155
+       0	*	*	*	*	0	*	7843	0	1054	
+
+I 156  5998	5126	*	*	6205	*	*	1285	*	3637	*	5770	*	5826	*	6307	4979	1500	*	5832	156
+       0	*	*	*	*	*	*	7901	0	0	
+
+T 157  5815	*	*	5032	5890	6244	*	2749	3381	4347	6042	5880	5894	4622	2300	4475	3090	3313	*	3797	157
+       0	*	*	*	*	*	*	7896	0	0	
+
+I 158  *	*	*	*	5575	*	*	349	*	5041	*	*	*	*	*	*	*	2612	*	*	158
+       0	*	*	*	*	*	*	7896	0	0	
+
+A 159  4076	*	6121	3526	5985	5948	4136	3500	4744	3870	5856	6162	*	4350	3944	3037	2607	3510	5640	5829	159
+       0	*	*	*	*	*	*	7662	0	0	
+
+D 160  5552	*	2651	4267	*	3591	2966	*	2941	*	*	3211	*	5828	3610	2641	4764	5516	*	*	160
+       0	*	*	*	*	*	*	7519	0	0	
+
+C 161  4491	779	*	5106	*	5560	*	5453	*	5445	*	*	*	*	*	3269	4381	3001	*	*	161
+       0	*	*	0	*	*	*	7185	1000	0	
+
+G 162  *	5325	4979	4085	*	553	*	*	5237	*	*	4554	*	*	5262	4381	4801	5392	*	*	162
+       0	*	*	*	*	*	*	6880	0	0	
+
+Q 163  3545	*	*	2419	*	*	4847	3240	*	2710	*	*	*	4244	5141	4885	5197	1777	*	*	163
+       0	*	*	*	*	*	*	6748	0	0	
+
+L 164  *	*	*	*	4701	*	*	2954	*	766	4523	*	*	*	*	*	4548	3691	4652	4612	164
+       0	*	*	*	*	*	*	6085	0	0	
+
+E 165  *	*	*	1639	*	*	*	*	2569	*	*	2619	2426	2630	*	*	*	*	*	*	165
+       0	*	*	0	*	*	*	3531	0	0	
+
+//
+�HHsearch 1.5
+NAME  53ff759256b5d7f5f74b908ef8b7590f
+FAM   
+FILE  53ff759256b5d7f5f74b908ef8b7590f
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:43:32 2013
+LENG  239 match states, 239 columns in multiple alignment
+FILT  133 out of 556 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  5.2 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCEEECCCCCCCEECCCCEEECCCCCCEECCCCCEEEEEEEEEECCCCCEEEEEEEECCCCEEEEEECCCCCCCEEEEECCCCCCCCCCEEHHHCCC
+CCCEEEEEEECCCCCCEEEEECCCCEEEEEECCCEEEEECCCCCEEEECCCCEEEEEEEECCCCCCEEECCCHHHHHHHHHCCCCCCCCCEEECCCCCCC
+CCCCCCCCCCCCCCCCCCCCCCCCCCCEEECCCCCCCCC
+>ss_conf PSIPRED confidence values
+9874340258999835077720777621340316688008999999879888378999824897799980147702639997987776665461312379
+9988987874089970688707981899995499999987898748885426599878726760100502011243445411799970251841655588
+689899889971257576999864131210135778789
+>Consensus
+gkxxxxqrrgxgxxxxrxxxxxxxxxxxyrxidxxxxxxgxVxxIxyDPxRsaxIAlvxxxxgxxxYIlAxxglxxGdxIxxgxxxxixxGnxlpLxxIP
+xGtxIxNIExxpgxGgklxRaAGtxAxIixkxxxxxxvkLPSGexkxixxxcxAtIGxVsnxxxxxxxxxKAGxxrxxxxxxxxxxPxVRGvAMNpvdHP
+hGGgxxxxxgxpxxxxrxxxpgxkvgxixxrrtgxxxxx
+>53ff759256b5d7f5f74b908ef8b7590f
+GRRIQGQRRGRGTSTFRAPSHRYKADLEHRKVEDGDVIAGTVVDIEHDPARSAPVAAVEFEDGDRRLILAPEGVGVGDELQVGVDAEIAPGNTLPLAEIP
+EGVPVCNVESSPGDGGKFARASGVNAQLLTHDRNVAVVKLPSGEMKRLDPQCRATIGVVGGGGRTDKPFVKAGNKHHKMKARGTKWPNVRGVAMNAVDHP
+FGGGGRQHPGKPKSISRNAPPGRKVGDIASKRTGRGGNE
+>gi|11496537|ref|NP_044547.1| ribosomal protein L2 [Toxoplasma gondii RH]gi|74824921|sp|Q9MTE5.1|RK2_TOXGO RecName: Full=50S ribosomal protein L2, apicoplastgi|5231240|gb|AAD41134.1|U87145_3 ribosomal protein L2 [Toxoplasma gondii]
+---------------------------LYKILDSNfanYGmsFSSAFYvNIIYDSFRRIFLAVYFIi--NsiiKNiyRYFLLTKNLKIGSQIN-fG-FkA
+PLKIGNALPLYKILLGSFIYNIEIRYKGKGSLVKNANHNAIILMIgD-IYVTVKLPSGEIKLLLKNLFCILGqLEIRRKVNKNIKKHAGFNRKL-----S
+IRPKIRGAAMNAVDHPHGGGEG---------------------------------
+>gi|295791976|gb|ADG28988.1| ribosomal protein L2 [Vandenboschia radicans]
+-------------------------------------NRGIITSRHRGGGHKRLYRKIDFERNKMEI--------------CGII-----GSIEYDTKVP
+LGTIIHNIEIIPGRGGRLARAAGTTAKVIAKEGQLATLRLPSGEVRSISQNCIATVGRVGNVDINNKDLGKAGSKRW-----------------------
+---------------------------------------
+>gi|149195350|ref|ZP_01872436.1| 50S ribosomal protein L2 [Caminibacter mediatlanticus TB-2]gi|149134482|gb|EDM22972.1| 50S ribosomal protein L2 [Caminibacter mediatlanticus TB-2]
+----------------------------YRIIDFKrnkFGVPGKVVTIEYDPYRNCRICLISY-------------------------------------
+----------------------------------------------------------------------------------------------------
+------------------------------------------
+>gi|115756514|ref|XP_001202571.1| PREDICTED: similar to MGC84466 protein [Strongylocentrotus purpuratus]gi|115938363|ref|XP_789607.2| PREDICTED: similar to MGC84466 protein [Strongylocentrotus purpuratus]
+-----SGRRGGGaKRNYRMVDFKRVGPVEGPPME------EKVLAVRYDPNRTANIAIVA-GGNKKRYIIASANMEPGDIIRtsghIGRMtVVANEGDAY
+PLGALPIGSLVHCVEIYPGEGAIRVRSGGTSAQILRKVGGQVILQLPSKLQISVNERCVATVGRASGDQHNRMVIGKAGRSRWFgRRPSSGLWQRKGG--
+----------------------------------------------
+>gi|11466313|ref|NP_051141.1| ribosomal protein L2 [Cafeteria roenbergensis]gi|6180095|gb|AAF05792.1|AF193903_15 ribosomal protein L2 [Cafeteria roenbergensis]
+-------------------------------------------GVSYNPIKSGMLFQfINKESGEIFYQPATskfsllEGLNLNETSS---QD----SFR
+EPLSNFNIGEFCSHI----GSSSKinYIKASGSVGKVLQRytwIKNYMLIVLPSGEQKLFLKTQSAVKGANLGNTKLFEKLKMAGRSRWLS-----KRPS
+VRGVAMNPIDHPHGGGEGKTSgGRPS-VSK----------------------
+>gi|23464625|ref|NP_696993.1| ribosomal protein L29 [Monosiga brevicollis ATCC 50154]gi|23344087|gb|AAN28363.1| ribosomal protein L29 [Monosiga brevicollis]
+---------------------------RLRLIDRSrelgIYTKSEIIDIQYNPNISSNIALLSTLNtpSIKFYILASNTMKIGDIIEGYKyndieklnNV
+nlnnnEINNnkIESNYLYNLPIGTNIYNITSLsnknilnekslnniklntkqtylseknlknklknsyltnhlNKNNGVYSRAAGTFSILLKNiEennEL
+RSIVRLPSKKIINIPSNNIASIGKVSNELHKYEIKGKAGTNRLL-----NNRPKVRGKAQNPVDHPMGGKTSGsgGLGKPKKTAW---------------
+-------
+>gi|8928598|ref|NP_059403.1| ribosomal protein L2 [Paramecium aurelia]gi|133115|sp|P15765.1|RM02_PARTE RecName: Full=60S ribosomal protein L2, mitochondrialgi|578755|emb|CAA34047.1| unnamed protein product [Paramecium aurelia]gi|1019633|gb|AAA79258.1| ribosomal protein L2 [Paramecium aurelia]
+--------------------------------------------------KKPYVALVRDSYNSLSYYIAPAGFFVGRTLKTLPtkhdyykkggwKFYIr
+GLGTYVMLRVLRVNDVIFNLLSPSRVLYRLALAAGTYFKILYQSfcKTFYVMTIPSGLIIRVPSEGLAVMGRNSNTQNNKRVLGLAGVNFFN-----GTN
+PRVRGVAMNPVDHPNGGRTK---------------------------------
+>gi|66773824|sp|Q5DUX7.1|RL2H_NYCOV RecName: Full=60S ribosomal protein L2, hydrogenosomalgi|60416551|emb|CAI38861.1| ribosomal protein L2 [Nyctotherus ovalis]
+----------------------------------------------------------------------------------------------------
+--TLVSYVPNILNGRPLFARARGSACLVRYRNklqhLGLIWVKLPSGKYRRVSNGNSVLLGKIAPKLRSELGNTRAG--YWV---NRGIKPQVRGIVKNP
+VDHPNGGRA----------------------------------
+>gi|74002880|ref|XP_545130.2| PREDICTED: similar to Cystatin A (Stefin A) (Cystatin AS) [Canis familiaris]
+--------------------------------------------------------------GRLRTYFSELQLPQGWFLSCGKKAQLSISHVLPTGTIP
+EImrhHRVCCLEEKAATEASWPE----PPQMMSLsppttrdqgDPGEAALGLQEGHHLS-QQSC----GRCSGQKWLHLQAHPEGhCAYHKYVDKRDCWP
+RMQGVAMSPVGHPFS-------------------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+G 1    5046	*	*	*	*	141	*	*	*	*	*	*	*	*	*	3998	*	*	*	*	1
+       0	*	*	*	*	*	*	3470	0	0	
+
+R 2    *	*	*	*	*	*	3466	*	511	*	*	*	*	*	2545	*	4789	*	*	*	2
+       48	4947	*	0	*	*	*	3470	1000	0	
+
+R 3    *	*	*	*	*	*	3938	2241	2877	*	*	5111	4876	*	1269	4710	*	3819	*	*	3
+       0	*	*	*	*	*	*	3542	0	0	
+
+I 4    *	*	*	*	*	*	*	966	*	2101	*	*	4833	*	*	*	2791	3727	*	*	4
+       143	*	3403	*	*	*	*	3542	0	0	
+
+Q 5    *	*	*	*	*	*	*	2227	4745	2198	*	*	4369	5421	1533	3696	*	4766	*	*	5
+       0	*	*	*	*	*	0	3436	0	1136	
+
+G 6    2232	*	*	*	*	5556	*	*	*	*	*	3012	3774	3290	4524	2542	4249	2331	*	*	6
+       0	*	*	*	*	*	0	3682	0	1136	
+
+Q 7    *	*	*	*	*	4487	*	*	*	*	*	*	*	245	3880	4524	*	*	*	*	7
+       0	*	*	*	*	*	0	3682	0	1136	
+
+R 8    *	*	*	*	*	*	*	*	*	*	*	3681	*	*	213	4076	*	*	*	*	8
+       0	*	*	*	*	*	0	3682	0	1136	
+
+R 9    4281	*	*	*	*	*	5290	5079	2244	*	*	*	*	*	666	*	*	4258	*	*	9
+       71	*	4386	*	*	*	0	3682	0	1136	
+
+G 10   *	*	*	*	*	66	*	*	*	*	*	*	*	*	4476	*	*	*	*	*	10
+       71	*	4387	1000	1000	1594	581	3598	1046	1223	
+
+R 11   4352	*	*	*	*	2780	3952	*	1885	*	*	4969	*	*	1190	*	*	*	*	*	11
+       0	*	*	*	*	1714	525	3669	0	1213	
+
+G 12   4190	*	*	*	*	347	*	4518	4524	*	*	*	*	*	*	3795	*	*	*	*	12
+       495	4487	2023	0	*	*	0	3682	1010	1136	
+
+T 13   *	*	*	*	*	1771	*	*	4043	*	*	4570	*	*	*	1253	2437	*	*	*	13
+       0	*	*	*	*	0	*	3293	0	1534	
+
+S 14   *	*	*	*	4968	3811	*	4441	5055	4153	*	4842	2003	6289	2596	2117	5731	*	*	4253	14
+       0	*	*	*	*	*	*	3972	0	0	
+
+T 15   *	*	*	*	4711	*	*	4686	2114	*	*	3725	*	2937	3682	*	2625	2209	5083	*	15
+       0	*	*	*	*	*	*	4365	0	0	
+
+F 16   *	*	*	*	1032	*	*	*	*	5295	*	4727	*	4711	*	*	5110	*	5468	1482	16
+       0	*	*	*	*	*	*	4365	0	0	
+
+R 17   *	*	4615	*	*	5159	3858	5414	3412	*	*	*	*	4437	646	*	4064	*	*	*	17
+       60	4615	*	1000	1000	*	*	4365	1016	0	
+
+A 18   1729	*	*	5110	*	*	*	*	4914	5295	5018	4635	*	3944	*	2316	5671	3883	2423	*	18
+       0	*	*	*	*	*	*	4365	0	0	
+
+P 19   *	*	*	*	*	4711	3781	2860	5674	4092	*	3860	1716	5222	5468	3574	5061	2872	*	*	19
+       0	*	*	*	*	*	*	4365	0	0	
+
+S 20   *	*	2597	*	*	3988	*	5159	2845	*	*	6439	4914	5547	4860	1352	3156	*	*	*	20
+       167	*	3195	*	*	*	*	4365	0	0	
+
+H 21   *	*	*	*	3172	4376	1163	*	*	*	*	3969	*	*	4430	4555	4878	4995	2794	4965	21
+       0	*	*	0	*	0	*	4203	1223	1223	
+
+R 22   *	*	*	*	*	4109	3702	5671	2140	3625	3858	*	*	4502	1538	*	4914	4404	*	*	22
+       0	*	*	*	*	*	*	4365	0	0	
+
+Y 23   4266	*	*	5110	3544	*	3792	5222	3279	*	*	4686	*	*	1139	5457	*	*	*	3110	23
+       0	*	*	*	*	*	*	4365	0	0	
+
+K 24   4650	*	3138	*	*	*	*	2317	2387	4474	*	*	4727	4185	3509	4807	*	2558	*	5414	24
+       79	5061	5414	0	*	*	*	4365	1009	0	
+
+A 25   1661	*	*	*	*	1016	*	*	*	*	*	5200	*	5079	5238	4081	4415	*	*	*	25
+       0	*	*	*	*	0	*	4363	0	1010	
+
+D 26   3186	*	4815	3774	*	*	*	*	2859	4880	4177	*	1186	*	5848	4482	4246	*	*	*	26
+       76	*	4285	*	*	*	*	4393	0	0	
+
+L 27   2319	*	*	*	*	4893	*	3936	4064	3319	*	4706	3929	*	4923	4044	3376	2019	*	*	27
+       161	*	3240	*	*	*	0	4387	0	1064	
+
+E 28   5792	6455	4514	4482	5414	6243	5482	4345	2539	2415	4985	3824	*	4627	2154	4418	*	*	*	*	28
+       35	5395	*	598	1559	1816	482	5506	1034	1327	
+
+H 29   *	6478	*	6413	3465	4029	4858	4968	*	3543	*	6968	*	5016	*	6334	6868	4384	*	823	29
+       0	*	*	*	*	*	0	5611	0	1223	
+
+R 30   5498	*	*	*	6643	6242	*	3593	3734	5858	*	*	2427	6368	960	6907	5108	5808	*	6374	30
+       43	*	5077	1585	585	0	*	5627	1223	1223	
+
+K 31   4967	*	*	*	6648	5596	5011	3563	3060	2957	5228	3348	3144	4373	4507	4038	3553	4513	6508	4576	31
+       270	3373	3753	1194	829	*	0	5125	1458	1096	
+
+V 32   *	*	6487	*	4026	*	*	1122	6384	2705	4902	*	*	*	*	5585	5636	2521	*	4208	32
+       104	4495	5305	1585	585	*	0	5013	1223	1473	
+
+E 33   6463	*	693	3748	*	6360	*	*	4719	*	*	2812	*	*	*	3958	4686	*	*	*	33
+       80	*	4219	*	*	1302	750	4942	0	1797	
+
+D 34   6330	*	4941	5015	1301	5448	4720	4525	5582	3777	5383	4387	5660	5102	5299	4195	*	*	6805	3178	34
+       105	4643	5051	830	1193	2948	200	4968	1071	1661	
+
+G 35   3489	*	4275	3249	5170	4228	5664	*	1962	4194	*	3091	5133	6766	4337	3777	6601	7914	5724	5011	35
+       1628	564	*	1535	611	984	1016	4980	2849	1671	
+
+D 36   5484	*	3579	3081	4856	3528	5913	3752	3126	6515	5634	4305	4355	4488	3939	4175	3928	6410	*	3716	36
+       244	3397	4037	724	1342	1919	443	5005	1416	1473	
+
+V 37   5210	*	3202	4200	6295	2931	5028	*	4243	3726	*	2821	3985	5419	6714	4423	3756	3699	*	3800	37
+       123	3811	6587	997	1003	1783	495	5535	1285	1863	
+
+I 38   4724	*	*	5151	4802	5595	4913	2091	4201	3649	5188	4728	7704	5077	*	3744	4056	2676	*	3563	38
+       42	5785	6539	1049	952	1359	713	5537	1336	1691	
+
+A 39   4957	*	6209	3050	4566	5602	*	3831	2627	5088	*	4414	2811	5314	3441	3428	4348	4534	6638	7074	39
+       95	4182	6845	532	1696	189	3029	5593	1205	1440	
+
+G 40   2870	5899	4775	3137	5435	1207	5755	*	4679	5703	6715	5590	*	6915	*	3400	*	*	*	5068	40
+       11	7022	*	1000	1000	*	0	5690	1000	1043	
+
+T 41   4852	6611	5974	4013	5900	*	*	2946	2179	3701	6258	7210	*	5776	3899	5336	3209	2585	*	5141	41
+       0	*	*	*	*	1756	506	5690	0	1043	
+
+V 42   *	*	*	*	4142	*	*	1664	*	6014	*	*	*	*	*	*	*	708	*	*	42
+       0	*	*	*	*	*	0	5689	0	1017	
+
+V 43   5004	5082	6776	3076	7500	*	7026	2648	3253	2229	6817	7140	*	6662	7167	4628	4691	2632	*	4401	43
+       125	3596	*	760	1288	*	0	5689	1217	1017	
+
+D 44   3976	*	2720	2883	*	4619	5060	*	3759	6768	*	3977	*	4309	2351	2890	4310	*	*	*	44
+       0	*	*	*	*	*	0	5707	0	1017	
+
+I 45   *	*	*	*	4820	*	*	1000	5222	2287	*	*	*	*	6464	6183	5749	2401	*	*	45
+       0	*	*	*	*	*	0	5700	0	1017	
+
+E 46   *	*	6675	1377	4647	5896	5449	3120	4448	3448	5031	5744	*	4149	4698	4616	*	3504	*	*	46
+       0	*	*	*	*	*	0	5700	0	1017	
+
+H 47   *	*	6569	5638	*	*	1935	6435	4320	6678	*	5303	*	6808	4448	5566	*	*	*	902	47
+       0	*	*	*	*	*	0	5700	0	1017	
+
+D 48   5888	5854	473	4441	*	6464	6623	*	6041	5744	*	4185	*	6771	*	4924	4662	7073	*	*	48
+       0	*	*	*	*	*	0	5700	0	1017	
+
+P 49   7236	*	6902	5566	*	4450	*	*	*	*	*	5744	481	6414	4517	3970	5101	*	5764	5946	49
+       0	*	*	*	*	*	0	5700	0	1017	
+
+A 50   4014	4248	*	*	4509	2120	*	4312	5251	*	*	1290	*	*	*	5041	5765	6435	5764	4403	50
+       0	*	*	*	*	*	0	5700	0	1017	
+
+R 51   *	*	*	*	*	*	4426	6332	3795	5151	*	4693	*	6392	353	*	*	7086	*	*	51
+       0	*	*	*	*	*	0	5759	0	1017	
+
+S 52   *	*	6711	6829	*	3628	4120	6056	4611	*	6448	3055	6984	*	5844	1428	2106	7245	6275	7183	52
+       0	*	*	*	*	*	0	5759	0	1017	
+
+A 53   806	3805	*	*	*	3746	*	5844	*	*	5608	*	4787	*	5465	3252	4156	5367	*	*	53
+       0	*	*	*	*	*	0	5759	0	1017	
+
+P 54   *	*	*	6925	2664	*	3335	6611	4472	4407	5776	3247	2004	*	3408	6914	*	*	6956	2747	54
+       0	*	*	*	*	*	0	5759	0	1017	
+
+V 55   5744	*	*	*	*	*	*	930	*	1933	*	*	*	*	5608	*	5526	2824	*	6482	55
+       0	*	*	*	*	*	0	5759	0	1017	
+
+A 56   625	4597	*	*	5776	3851	*	5315	6056	5919	4716	4970	*	*	6482	4006	*	5478	*	*	56
+       34	5441	*	0	*	*	0	5759	1029	1017	
+
+A 57   7642	5018	*	5370	*	*	6165	3240	3243	1004	*	*	6129	5247	4004	5622	5024	4011	*	*	57
+       27	5776	*	0	*	*	0	5759	1017	1017	
+
+V 58   5298	5625	*	*	5447	*	*	1958	5608	2885	7307	6338	*	*	*	*	7129	1121	*	4942	58
+       96	4983	4945	1409	681	*	0	5759	1101	1017	
+
+E 59   2962	5151	4406	4486	4651	5723	3832	4664	2453	3907	6963	5053	*	6120	3166	5004	*	3902	6525	4028	59
+       219	4699	3287	598	1560	1089	916	5709	1087	1125	
+
+F 60   6640	*	4569	7171	2302	4112	4634	4128	4803	3692	6755	3981	*	*	*	4148	6164	6129	5882	1759	60
+       207	3416	4654	3040	187	844	1175	5658	1296	1592	
+
+E 61   *	6376	3825	2142	*	3297	6799	4541	3660	4049	*	4003	4598	5494	4044	3098	4388	5243	*	5636	61
+       48	6882	5371	0	*	1948	433	5517	1046	1532	
+
+D 62   *	*	1910	5313	*	3537	4968	5028	5672	*	*	2019	4123	4741	6350	3467	5146	4809	*	4956	62
+       142	4394	4442	357	2189	1200	824	5537	1131	1469	
+
+G 63   6394	*	6156	5179	6578	898	7154	*	4114	5443	*	2948	5292	6364	5398	4783	3691	7150	*	*	63
+       343	2298	6944	2294	329	1138	874	5796	2074	1439	
+
+D 64   4729	*	4442	2580	5269	4627	4749	3763	2582	3858	*	4880	*	3802	4510	3290	5387	4347	*	6503	64
+       0	*	*	*	*	*	0	5812	0	1335	
+
+R 65   6768	*	7203	3958	4328	5119	5884	4629	2257	2647	4390	4252	4938	5343	4196	4822	4348	4863	*	3572	65
+       201	2943	*	1084	921	2296	328	5812	1409	1335	
+
+R 66   4686	6620	*	4422	3074	4999	6226	7249	3240	6001	6189	4920	*	6951	1885	2220	4244	6333	*	7064	66
+       0	*	*	*	*	169	3176	5810	0	1283	
+
+L 67   *	*	*	6863	4099	*	6023	5388	*	3445	6794	5187	*	*	*	6103	4666	*	3793	645	67
+       16	*	6525	*	*	0	*	5836	0	1000	
+
+I 68   7211	*	6416	*	4334	*	6774	829	*	3904	4442	*	*	5312	6900	*	6507	2843	*	3984	68
+       0	*	*	*	*	*	0	5831	0	1003	
+
+L 69   6292	6054	*	*	5407	*	*	1535	5835	1212	7191	*	3136	*	*	*	*	4893	*	*	69
+       0	*	*	*	*	*	0	5857	0	1003	
+
+A 70   628	4608	*	7577	*	*	5021	5428	4365	3773	*	*	5679	5258	6968	4203	6496	*	*	6379	70
+       0	*	*	*	*	*	0	5857	0	1003	
+
+P 71   4536	5262	7052	5407	4894	*	7588	*	*	7191	7564	6224	1309	5056	*	3931	1915	3815	*	*	71
+       26	5813	*	2585	263	*	0	5857	1017	1003	
+
+E 72   3531	*	3827	1592	*	*	4129	7489	3015	4258	*	3523	*	4219	6236	4172	5102	5817	*	5933	72
+       0	*	*	*	*	*	0	5857	0	1003	
+
+G 73   *	*	5237	5061	*	1000	*	*	3187	6702	*	2240	*	5407	6018	7633	3873	*	*	*	73
+       0	*	*	*	*	*	0	5857	0	1003	
+
+V 74   3799	6460	*	*	4708	*	6496	3344	4765	1667	2128	*	*	*	*	5039	3906	3721	*	6005	74
+       0	*	*	*	*	*	0	5857	0	1003	
+
+G 75   4537	*	6968	5381	3601	5400	4814	*	1591	5335	5398	4566	5407	4310	3749	3605	5294	7272	*	3347	75
+       0	*	*	*	*	*	0	5857	0	1003	
+
+V 76   3386	*	*	4340	*	6930	*	2167	4259	4130	*	*	3255	4477	*	7207	3760	1875	*	6401	76
+       0	*	*	*	*	*	0	5857	0	1003	
+
+G 77   *	*	7224	*	*	129	*	*	*	*	*	3670	*	*	*	*	*	*	*	*	77
+       0	*	*	*	*	*	0	5857	0	1003	
+
+D 78   *	*	1071	4825	*	*	*	6178	4843	*	5990	3369	*	2490	5625	3671	5842	*	5407	6663	78
+       51	*	4837	*	*	*	0	5857	0	1003	
+
+E 79   7252	7036	*	3575	3783	*	*	2223	3506	3931	6524	5066	6957	4914	5678	4555	3152	2614	6844	4925	79
+       0	*	*	0	*	229	2770	5832	1223	1268	
+
+L 80   8454	*	*	*	5433	*	*	925	*	2841	7260	*	*	*	*	5813	5835	2064	*	5230	80
+       0	*	*	*	*	*	0	5857	0	1003	
+
+Q 81   4698	*	*	2972	4350	6881	7194	3546	2861	4839	4983	4553	*	3688	3913	3760	4069	4319	*	3188	81
+       143	7121	3517	2000	415	0	*	5857	1010	1003	
+
+V 82   3195	3455	6149	*	4735	6285	*	2969	*	*	*	3425	6491	*	6271	1811	2838	6015	6162	4797	82
+       205	3063	6287	1702	530	807	1223	5619	1582	1249	
+
+G 83   *	6642	4292	*	5421	893	5329	5150	6932	5008	6961	5501	6608	6800	6822	2829	4311	*	*	4810	83
+       270	3204	4009	3344	150	2274	334	5767	1391	1117	
+
+V 84   4212	6302	3632	2995	5506	5233	*	3608	2654	5549	5685	4158	2933	*	4382	3581	5875	4277	*	6669	84
+       459	1953	6152	2393	305	135	3486	5605	1862	1278	
+
+D 85   6003	*	3057	2866	5332	3797	4472	6537	2679	6411	7172	2011	5945	4103	*	5195	5255	5404	*	*	85
+       391	2174	5990	1621	567	*	0	5804	1818	1046	
+
+A 86   1532	6406	4446	4833	4450	5369	5861	3439	6176	4970	*	4650	4481	5344	5957	4236	4807	3032	*	*	86
+       65	5220	5838	3288	156	1702	530	5836	1081	1110	
+
+E 87   4281	*	3766	2681	*	5895	*	5365	4319	4332	6043	3503	2808	4465	4341	3365	3554	5260	*	5096	87
+       12	6900	*	0	*	*	0	5781	1000	1123	
+
+I 88   3997	*	*	*	3802	*	*	1706	5663	2313	5964	5097	3451	7020	5703	5208	4456	3438	*	6692	88
+       88	4339	6660	0	*	*	0	5781	1122	1123	
+
+A 89   3574	*	6018	3911	*	5795	4603	5582	1650	7251	6701	3734	*	4170	3977	3673	3599	4693	7271	5717	89
+       48	*	4946	2322	322	1781	496	5776	1017	1164	
+
+P 90   5534	*	5229	3111	4966	*	*	2692	5999	3745	*	3240	2509	*	5099	5634	3822	2737	*	7061	90
+       62	4577	*	633	1493	0	*	5759	1198	1231	
+
+G 91   *	*	*	*	*	146	*	6453	*	*	6760	5767	*	*	6521	4432	*	*	*	*	91
+       0	*	*	*	*	*	*	5861	0	0	
+
+N 92   *	5612	2424	6453	4803	6637	3778	6563	*	*	*	1044	6760	5601	7147	3487	4908	*	*	6954	92
+       0	*	*	*	*	*	*	5861	0	0	
+
+T 93   2442	4029	*	6816	5198	*	6937	2784	*	5752	6445	*	*	*	4485	2366	3725	2524	6781	4715	93
+       0	*	*	*	*	*	*	5893	0	0	
+
+L 94   7001	*	6429	5238	6047	*	5687	4034	6013	1216	4056	4721	6422	5607	*	4969	3740	4027	5825	3374	94
+       0	*	*	*	*	*	*	5895	0	0	
+
+P 95   5963	6157	*	6383	5260	6578	7075	5534	4333	4610	5251	5629	792	4743	5944	5008	5422	6149	*	4160	95
+       13	*	6801	*	*	*	*	5895	0	0	
+
+L 96   *	*	6574	*	4938	*	*	3004	*	498	5911	*	*	*	*	5666	5443	3941	*	*	96
+       0	*	*	*	*	*	0	5889	0	1000	
+
+A 97   3675	7398	5506	4557	5071	2267	5747	*	2608	5781	7245	4649	*	4604	3316	3284	4278	*	4987	4669	97
+       0	*	*	*	*	*	0	5889	0	1000	
+
+E 98   3323	*	3818	4084	5264	5578	4851	*	2869	4440	5674	1915	*	4503	7324	4046	5443	5900	*	3832	98
+       0	*	*	*	*	*	0	5889	0	1000	
+
+I 99   5866	6200	*	*	4030	*	*	922	*	2194	4289	*	*	*	*	*	6695	3310	*	*	99
+       0	*	*	*	*	0	*	5890	0	1000	
+
+P 100  5931	*	5951	6958	*	*	*	*	5200	5142	*	4730	392	6941	4712	4809	6492	6475	*	*	100
+       13	*	6759	*	*	*	*	5923	0	0	
+
+E 101  4763	6643	4704	2229	*	*	*	2477	4921	2892	*	6567	4785	*	*	4981	4219	2246	*	6477	101
+       0	*	*	*	*	*	0	5920	0	1000	
+
+G 102  7298	*	*	*	*	227	5302	5421	*	*	*	4005	*	6876	6181	7392	*	*	*	*	102
+       34	5421	*	1585	585	*	0	5920	1075	1000	
+
+V 103  5911	6919	4591	5945	5755	7133	5422	4887	6484	5961	5886	6433	*	*	6395	2575	916	3853	*	*	103
+       0	*	*	*	*	*	0	5946	0	1000	
+
+P 104  5199	7169	6935	4153	3833	*	*	2942	3686	2822	5990	4861	4131	4731	4445	5774	4986	2672	5600	3966	104
+       0	*	*	*	*	*	0	5928	0	1000	
+
+V 105  6499	5966	*	7107	6070	*	*	1041	*	4645	5442	*	*	*	6782	*	*	1348	*	*	105
+       0	*	*	*	*	*	0	6017	0	1000	
+
+C 106  7403	2362	*	*	4760	7107	1514	6147	*	*	*	3235	*	*	6476	3540	6753	*	6782	2562	106
+       0	*	*	*	*	*	0	6017	0	1000	
+
+N 107  5334	3080	*	*	*	5339	5524	*	*	6782	6029	658	*	6121	*	3055	7111	*	*	6565	107
+       0	*	*	*	*	*	0	6017	0	1000	
+
+V 108  *	*	*	*	6121	*	*	901	*	3023	6055	*	*	*	*	*	6499	1732	*	*	108
+       38	*	5271	*	*	*	0	6017	0	1000	
+
+E 109  5126	*	5909	442	*	4658	*	5986	*	5851	*	*	6508	4965	6106	4249	6400	6447	*	6312	109
+       27	*	5739	*	*	1876	459	5954	0	1096	
+
+S 110  5048	6290	6005	3208	4870	7952	5779	3415	3616	1949	4244	4455	5667	6371	5944	3460	4110	5634	5702	6948	110
+       0	*	*	*	*	*	0	5998	0	1138	
+
+S 111  5869	*	5305	5563	5281	*	4435	3395	2177	5590	5465	3506	5842	4261	2768	4541	4411	4845	*	3723	111
+       30	6516	6652	5358	36	*	0	5998	1006	1138	
+
+P 112  4387	*	5920	5093	4501	*	*	5282	4441	4507	*	5136	898	6461	5159	4332	6277	5590	*	4085	112
+       0	*	*	*	*	1138	874	5984	0	1178	
+
+G 113  5273	*	6129	7331	5239	705	*	*	3753	5285	6337	2931	*	7119	4935	6618	5628	*	*	*	113
+       28	5683	*	688	1399	*	0	6034	1054	1078	
+
+D 114  4765	7128	1907	3794	7254	3837	4259	6347	2289	7132	*	4537	*	3831	4328	4099	5273	5850	*	*	114
+       0	*	*	*	*	*	0	6034	0	1078	
+
+G 115  6025	6381	*	4504	*	658	*	6932	3103	5850	*	6577	5289	6043	4194	4790	*	6534	*	*	115
+       0	*	*	*	*	598	1559	6034	0	1078	
+
+G 116  1843	*	6074	6030	6630	1108	*	*	6564	*	6390	*	6478	*	6568	3181	*	6055	*	4395	116
+       0	*	*	*	*	*	0	6055	0	1000	
+
+K 117  4591	7143	6074	7225	*	*	7042	5046	1364	4604	*	*	*	2154	3970	3711	4174	4569	*	*	117
+       21	6084	*	1000	1000	*	0	6055	1017	1000	
+
+F 118  *	*	*	*	2172	*	*	2609	*	1557	5198	*	6429	*	7047	6457	*	4374	4801	2917	118
+       0	*	*	*	*	0	*	6055	0	1000	
+
+A 119  1469	2975	*	6388	*	5139	*	3270	*	6617	*	7307	5282	*	6668	3783	5504	2178	*	*	119
+       14	*	6668	*	*	*	*	6067	0	0	
+
+R 120  *	*	*	5246	*	*	6104	*	3324	4099	5381	6911	*	7085	446	*	6366	6033	*	*	120
+       53	*	4806	*	*	*	0	6061	0	1000	
+
+A 121  1151	5759	*	*	*	*	*	*	*	*	*	4798	6414	*	7378	1301	3979	6909	*	*	121
+       17	*	6414	*	*	*	0	5931	0	1156	
+
+S 122  577	*	*	*	6156	3576	*	*	7564	*	*	5741	7038	*	6631	2442	7383	*	*	*	122
+       0	*	*	*	*	1786	494	5849	0	1237	
+
+G 123  6747	*	*	*	*	135	*	*	5296	5304	*	6166	*	*	*	6972	*	*	7041	*	123
+       0	*	*	*	*	*	0	5931	0	1156	
+
+V 124  3514	3650	6232	*	*	7285	6166	6567	*	*	5758	3213	*	*	6747	2310	1243	5123	*	*	124
+       0	*	*	*	*	765	1280	5931	0	1156	
+
+N 125  4509	7080	*	*	2134	6710	*	*	6094	5660	*	4383	4725	5363	7206	2260	5615	4956	*	1743	125
+       51	*	4854	*	*	*	0	6048	0	1039	
+
+A 126  728	4527	*	*	5811	3284	*	*	*	5613	*	*	4659	*	*	3425	5240	4235	*	*	126
+       0	*	*	*	*	*	0	6022	0	1304	
+
+Q 127  7231	*	*	3975	5827	6992	7518	3008	3586	3116	7271	7131	*	2207	4449	5937	2320	3729	*	6974	127
+       18	6320	*	1000	1000	386	2090	6022	1303	1304	
+
+L 128  *	*	*	*	*	*	*	1502	*	1659	5244	*	5408	*	*	*	6636	1886	*	*	128
+       51	*	4854	*	*	*	0	6048	0	1039	
+
+L 129  7093	*	7271	7375	4635	*	*	1772	7017	2238	3300	*	*	5176	6445	4191	4903	2446	*	6043	129
+       10	*	7134	0	*	0	*	6022	1223	1304	
+
+T 130  2890	*	6834	4769	5461	3491	*	7640	3013	5937	6280	4345	*	3999	3099	2206	4103	*	7084	4674	130
+       10	7246	*	1000	1000	0	*	6065	1046	1000	
+
+H 131  *	*	*	*	5206	6310	2435	5373	1082	5042	*	5202	*	5007	2701	*	6216	5445	*	*	131
+       601	1635	5748	2245	342	*	*	6067	2665	0	
+
+D 132  4703	*	1955	2240	6923	4728	6989	4479	4870	5455	*	4189	5476	4931	6375	3718	4053	4151	*	5521	132
+       373	2522	4216	2022	408	0	*	6014	1791	1532	
+
+R 133  5798	*	3870	2774	6478	2000	7197	6710	2784	5787	*	3254	3780	6086	5357	4358	4898	5179	*	*	133
+       146	6790	3518	4366	72	653	1458	5879	1049	1220	
+
+N 134  5074	*	3501	3169	*	2326	6819	5612	3402	6398	*	2108	5751	3951	7391	4521	3820	*	*	*	134
+       38	5860	6806	0	*	659	1448	5901	1037	1373	
+
+V 135  *	*	*	3926	3312	5820	4350	5455	3223	3189	5223	5028	*	4066	3352	6181	4884	5030	5739	2216	135
+       0	*	*	1000	1000	0	*	5976	1008	1140	
+
+A 136  2081	4365	*	6066	6038	7349	*	3837	*	6055	6091	*	*	*	*	4703	2394	1584	*	5888	136
+       12	6943	*	1585	585	*	*	6057	1050	0	
+
+V 137  3937	*	7383	*	6393	6362	*	2579	4467	3034	7736	6639	5587	4699	3618	5881	2484	2527	6500	4864	137
+       22	*	6057	*	*	*	*	6073	0	0	
+
+V 138  *	*	*	*	6077	*	*	1975	*	1541	5848	*	6470	*	*	*	6488	1576	*	6396	138
+       0	*	*	*	*	0	*	6024	0	1043	
+
+K 139  *	*	*	5243	*	5279	*	6053	1274	5112	*	7383	*	2830	1943	5738	5513	4538	*	*	139
+       0	*	*	*	*	*	*	6073	0	0	
+
+L 140  *	*	*	*	6753	*	*	4335	*	328	3221	*	*	*	6101	5454	*	*	*	*	140
+       22	*	6057	*	*	*	*	6073	0	0	
+
+P 141  5246	7126	*	*	*	*	*	*	5050	*	*	4735	492	4481	4298	4039	4992	*	*	*	141
+       0	*	*	*	*	*	0	6024	0	1043	
+
+S 142  *	*	*	5284	*	6755	6823	6396	*	7384	*	4918	5454	*	*	205	6035	*	*	*	142
+       0	*	*	*	*	*	0	6024	0	1043	
+
+G 143  *	*	7384	7454	*	492	*	*	2440	*	*	5125	*	7137	5356	6380	5598	*	*	*	143
+       30	*	5610	*	*	*	0	6024	0	1043	
+
+E 144  4665	*	*	1387	6387	*	4150	7310	2094	4329	5999	7551	*	4571	3986	4815	5149	5832	7288	7451	144
+       0	*	*	*	*	*	0	5979	0	1122	
+
+M 145  *	5699	7131	3634	4848	*	4653	2544	3053	3935	4874	4380	6338	3246	4688	6782	4417	2805	6358	6458	145
+       0	*	*	*	*	0	*	5979	0	1122	
+
+K 146  6249	*	*	6420	5983	*	*	3197	1537	4294	4793	6616	*	6545	1602	*	5327	4524	*	*	146
+       35	5381	*	1000	1000	*	*	6056	1056	0	
+
+R 147  6446	*	5338	4202	4254	7182	*	4124	3531	2141	6196	5248	7475	6369	3281	2952	4466	4249	4407	4482	147
+       55	6647	5201	2322	322	*	*	6027	1000	0	
+
+L 148  *	6650	*	*	2301	*	6184	1840	*	2133	5724	*	*	*	6489	*	*	2083	*	*	148
+       0	*	*	*	*	0	*	5895	0	1075	
+
+D 149  7239	7148	3223	6188	6062	*	3410	*	4832	3433	6062	2697	3236	5201	6221	1676	*	*	*	*	149
+       40	*	5207	*	*	*	*	6027	0	0	
+
+P 150  3435	6233	6026	4028	6208	4227	6519	4718	3495	3340	6056	3934	3087	3756	6810	2250	6469	6413	*	*	150
+       0	*	*	*	*	1038	963	5895	0	1124	
+
+Q 151  4971	*	3463	3279	4735	4920	6961	7153	3764	3938	6503	2351	5597	4983	3550	3044	3862	*	*	6037	151
+       0	*	*	*	*	*	0	5980	0	1043	
+
+C 152  3412	707	6384	*	*	4509	*	6522	*	5439	6459	4033	*	6002	*	4206	6095	4418	*	*	152
+       36	*	5332	*	*	*	0	5980	0	1043	
+
+R 153  *	4825	*	*	4219	*	5330	4359	4196	3394	2795	*	6469	*	1511	5269	4618	5124	4922	4232	153
+       31	5575	*	1309	746	*	0	5808	1036	1160	
+
+A 154  209	4473	*	*	*	4865	*	*	*	*	*	*	*	*	*	6057	*	4635	*	*	154
+       21	6132	*	3000	193	1244	792	5861	1023	1160	
+
+T 155  4495	6385	*	*	*	*	*	3717	*	4722	3858	*	*	6786	*	3913	952	2676	*	6385	155
+       0	*	*	*	*	*	0	5893	0	1075	
+
+I 156  6261	*	*	*	6294	*	*	1125	6067	2526	5373	*	*	*	7048	*	*	1883	*	5374	156
+       41	*	5158	*	*	0	*	5893	0	1075	
+
+G 157  *	*	*	*	*	23	*	*	*	*	*	*	*	*	*	5970	*	*	*	*	157
+       51	6256	5548	0	*	939	1063	5960	1011	1083	
+
+V 158  4223	5762	*	4789	*	*	7138	2864	4200	4831	6081	*	7392	2970	2345	4522	5130	2103	*	7015	158
+       0	*	*	*	*	1353	717	5974	0	1111	
+
+V 159  4766	5161	*	6242	*	*	*	2786	*	3042	6982	3591	*	*	6328	*	5899	901	*	*	159
+       9	*	7275	*	*	1488	636	6007	0	1051	
+
+G 160  2006	6082	5982	*	*	3045	*	6260	6022	6081	*	5755	6465	7222	6851	1018	7413	*	*	6467	160
+       80	*	4211	*	*	*	0	6012	0	1046	
+
+G 161  4597	*	*	5483	*	1788	6543	*	6844	*	*	931	5090	*	5941	5133	5122	*	*	*	161
+       29	*	5665	*	*	*	0	5958	0	1302	
+
+G 162  3267	*	6969	3190	4597	2372	4965	3896	3914	5113	5797	5994	3911	4513	4338	3690	5754	4054	*	*	162
+       0	*	*	*	*	*	0	5954	0	1385	
+
+G 163  7099	*	3197	3383	5121	1735	7105	6867	4027	3776	5351	3194	*	3984	5997	5150	4723	5553	*	6881	163
+       30	6207	7112	0	*	1330	732	5954	1029	1385	
+
+R 164  5391	*	*	*	6247	*	1631	3635	4536	4840	*	3671	6795	4385	2132	5375	6588	5527	5018	5009	164
+       10	7118	*	2807	222	1872	460	5884	1000	1252	
+
+T 165  6222	*	3994	5072	4275	4209	5960	3853	2405	3981	5169	2661	6055	4154	4118	4635	4142	5826	*	5527	165
+       11	*	7010	*	*	*	0	5954	0	1172	
+
+D 166  5771	*	2883	2476	4431	5995	4625	4699	3130	3257	6573	2665	*	4706	5982	5251	5700	6093	*	5376	166
+       0	*	*	*	*	3071	183	5949	0	1201	
+
+K 167  6874	7012	*	3807	4427	*	5979	3535	1848	4216	6813	5565	5349	5755	2294	5093	4064	4214	*	6369	167
+       19	*	6269	3000	193	1842	472	5954	1017	1172	
+
+P 168  5656	*	6818	8034	6923	5897	4813	3734	2425	5916	7739	3297	1731	4603	6085	3896	6294	3657	*	7337	168
+       0	*	*	*	*	1466	648	5954	0	1193	
+
+F 169  4801	*	7142	*	2857	6041	*	2115	4224	1743	4289	6044	*	5307	*	4909	5962	6492	4620	5165	169
+       0	*	*	*	*	892	1117	5994	0	1108	
+
+V 170  *	*	*	7131	*	1403	5165	7412	3384	2116	4669	7306	*	*	4032	4692	5071	4660	*	4652	170
+       47	6058	5847	1000	1000	*	0	6028	1023	1027	
+
+K 171  *	*	*	*	6580	*	6272	*	473	5149	5433	5336	5160	*	4959	3471	*	5697	*	6544	171
+       90	4436	6140	1312	743	1578	588	5988	1189	1137	
+
+A 172  224	*	*	5331	5968	5443	*	*	6549	*	5418	*	4866	*	6425	*	*	*	*	*	172
+       0	*	*	*	*	3387	145	5922	0	1255	
+
+G 173  6503	*	*	*	5556	170	*	*	*	*	*	5315	*	6773	*	4489	*	*	*	*	173
+       67	5212	5752	0	*	292	2448	5779	1075	1227	
+
+N 174  4112	5252	6354	4517	4946	*	*	4788	3156	4565	6226	3222	*	4026	1846	4650	3920	4382	*	5445	174
+       12	*	6860	*	*	*	0	5792	0	1156	
+
+K 175  2607	6127	*	5164	*	6198	5841	5085	2648	5940	5674	2257	*	6112	4727	2248	6555	4769	6500	7104	175
+       28	6450	6969	0	*	651	1461	5797	1003	1191	
+
+H 176  6715	*	6456	6132	4175	*	3745	4643	5412	6868	*	7116	7101	*	937	8698	6129	6122	6081	2472	176
+       16	*	6510	*	*	*	0	5827	0	1077	
+
+H 177  *	*	*	6752	4188	6534	2556	*	4233	3496	*	3500	6160	*	4475	*	*	*	1568	2958	177
+       0	*	*	*	*	*	0	5814	0	1266	
+
+K 178  4434	6279	*	5327	4799	*	5307	5344	2155	1573	4394	5939	6522	*	3481	5720	*	6581	5464	4236	178
+       977	6699	1052	0	*	*	0	5432	1010	1266	
+
+M 179  3212	*	5120	6309	4386	2012	*	5916	6073	3792	3427	4292	*	*	5546	4342	*	4942	5029	2526	179
+       488	3519	2325	819	1207	6039	22	5161	1118	3042	
+
+K 180  6055	*	*	*	*	*	5301	*	1358	4415	*	*	*	5273	1322	4390	*	4350	*	*	180
+       109	*	3786	*	*	*	0	4630	0	3310	
+
+A 181  1334	*	4369	*	*	5736	*	*	*	4638	*	*	5086	3706	4320	2637	3344	3632	*	*	181
+       0	*	*	*	*	3685	117	4280	0	3365	
+
+R 182  *	*	*	*	*	3915	6122	*	1457	3994	*	3668	*	*	1489	4122	*	*	*	*	182
+       0	*	*	*	*	5804	26	4812	0	3204	
+
+G 183  2601	*	*	*	*	2487	5838	*	5436	4981	*	3515	4137	*	1861	2600	*	*	*	*	183
+       0	*	*	*	*	344	2237	4800	0	3169	
+
+T 184  5758	*	5209	6844	7059	1263	4125	*	2916	*	*	2616	6088	5900	4276	4376	6232	6010	6853	*	184
+       0	*	*	*	*	275	2526	5296	0	1479	
+
+K 185  7171	4226	*	*	4700	6797	4684	2637	2281	3888	7172	4592	7264	7233	2420	5526	4939	4345	4462	5513	185
+       11	7054	*	2000	415	*	0	5324	1000	1050	
+
+W 186  *	*	*	*	4827	*	7087	*	3726	4747	*	5421	5397	*	1173	*	*	6520	1863	3876	186
+       39	5222	*	1593	581	*	0	5324	1061	1050	
+
+P 187  5249	*	*	*	*	*	5384	*	*	*	*	*	251	4044	*	5276	*	7189	*	5944	187
+       0	*	*	*	*	*	0	5184	0	1050	
+
+N 188  6139	6017	6520	*	*	*	4718	4060	2123	*	5732	7529	*	4370	2223	3796	2407	3563	*	*	188
+       0	*	*	*	*	*	0	5324	0	1050	
+
+V 189  5456	*	*	*	*	*	*	5609	4713	*	5036	5163	6259	*	5073	6579	4232	408	*	*	189
+       0	*	*	3700	115	0	*	5324	1050	1050	
+
+R 190  6554	6821	*	*	*	6372	4823	*	5065	4913	*	6942	*	4335	365	5641	*	5959	*	*	190
+       17	*	6458	*	*	*	*	5124	0	0	
+
+G 191  5710	*	*	*	*	162	*	6220	*	4882	*	*	5659	*	*	5645	*	*	*	*	191
+       0	*	*	*	*	*	0	5119	0	1000	
+
+V 192  5481	5934	*	*	6212	*	*	3209	4101	4325	6275	*	*	*	*	3958	4797	694	*	*	192
+       0	*	*	*	*	*	0	5098	0	1000	
+
+A 193  407	6807	*	*	*	*	*	*	4656	*	*	*	4840	*	*	4324	5211	3798	*	6212	193
+       12	6900	*	0	*	*	0	5098	1007	1000	
+
+M 194  *	*	*	*	*	*	5934	*	3031	4971	410	*	*	4577	*	4840	*	*	*	*	194
+       0	*	*	*	*	*	0	5098	0	1000	
+
+N 195  5555	*	*	*	*	6212	*	4840	5934	*	*	308	*	*	5634	3748	*	6404	*	*	195
+       0	*	*	*	*	*	0	5098	0	1000	
+
+A 196  1980	*	*	*	*	*	*	*	5140	*	*	*	761	*	*	4286	5764	4101	*	*	196
+       0	*	*	*	*	*	0	5098	0	1000	
+
+V 197  4341	4075	*	6212	*	*	6910	3787	5774	*	*	6132	*	*	6879	3980	6097	639	*	4789	197
+       0	*	*	*	*	*	0	5098	0	1000	
+
+D 198  6023	*	553	3599	7273	4951	*	*	5341	4840	*	4430	*	*	*	4553	*	5531	*	6448	198
+       0	*	*	*	*	*	0	5098	0	1000	
+
+H 199  *	*	*	*	*	*	51	*	*	4840	*	*	*	*	*	*	*	*	*	*	199
+       20	*	6172	*	*	*	0	5098	0	1000	
+
+P 200  *	*	*	*	*	*	*	*	6494	6482	*	*	113	*	6694	4833	6888	*	*	*	200
+       0	*	*	*	*	*	0	5093	0	1086	
+
+F 201  5136	*	*	*	2694	*	573	*	*	5265	4494	4958	*	*	*	*	*	4833	*	7138	201
+       0	*	*	*	*	*	0	5093	0	1086	
+
+G 202  *	*	*	*	*	101	*	*	*	*	*	*	*	*	*	4927	4833	*	*	*	202
+       43	*	5076	*	*	*	0	5093	0	1086	
+
+G 203  4436	*	5869	*	*	113	*	*	*	*	*	*	*	*	*	6394	*	*	*	*	203
+       0	*	*	*	*	*	0	4945	0	1215	
+
+G 204  *	*	*	*	*	409	*	*	4104	*	6861	*	*	*	2653	5580	*	*	*	*	204
+       26	6684	6886	5700	28	*	0	4948	1007	1215	
+
+G 205  4400	*	5312	1599	*	4499	5797	*	6341	6935	*	2543	4732	5614	3382	4174	2903	*	*	*	205
+       8	7437	*	0	*	186	3049	4951	1000	1250	
+
+R 206  *	*	6928	7068	*	1139	1754	*	3813	*	*	5315	*	6845	3314	5652	*	*	6878	*	206
+       420	2608	3496	1655	551	0	*	5114	1373	1000	
+
+Q 207  4040	*	*	*	*	3906	*	*	2904	*	*	4525	3398	1443	*	4030	2700	5824	*	*	207
+       46	4983	*	1000	1000	994	1006	4479	1006	1257	
+
+H 208  5503	4906	*	*	6000	4366	1482	*	4514	*	*	4243	3141	6383	5029	2731	4281	3883	*	*	208
+       0	*	*	*	*	1293	757	4465	0	1107	
+
+P 209  *	6028	*	*	*	3203	5975	1619	3486	5064	6004	*	3616	5604	*	4958	4983	2520	4069	*	209
+       47	4958	*	0	*	*	0	4395	1017	1046	
+
+G 210  *	*	*	*	*	482	4537	*	4811	4066	*	5878	*	*	*	3260	*	5358	*	*	210
+       0	*	*	*	*	0	*	4395	0	1046	
+
+K 211  5977	*	*	*	6095	4631	3413	5325	1617	4495	*	4664	*	4022	1824	*	4439	*	*	6590	211
+       144	*	3393	*	*	*	*	4366	0	0	
+
+P 212  4337	*	*	*	*	*	*	*	5046	5525	*	*	474	5317	*	2702	*	*	*	*	212
+       77	*	4272	0	*	226	2784	4115	1223	1268	
+
+K 213  5559	5363	*	5568	5709	5007	*	*	2570	*	*	4231	*	*	*	1013	2793	5533	*	*	213
+       54	*	4764	*	*	*	0	4154	0	1119	
+
+S 214  *	5310	*	5481	*	*	*	3968	4682	5443	5110	4552	4526	*	5333	2547	1167	3831	*	*	214
+       0	*	*	*	*	218	2837	4048	0	1178	
+
+I 215  5762	*	*	*	5400	4533	*	3092	*	3692	*	5313	*	*	*	4164	3262	1075	*	4058	215
+       0	*	*	*	*	*	0	4244	0	1000	
+
+S 216  2307	*	5318	*	*	4627	*	*	2765	*	*	*	3861	*	4366	1379	5842	3919	*	*	216
+       26	5811	*	1585	585	0	*	4202	1000	1000	
+
+R 217  *	*	*	*	5048	*	*	5761	2271	*	5300	*	5328	5122	797	*	*	5522	3886	*	217
+       121	3641	*	1027	973	*	*	4196	1222	0	
+
+N 218  *	*	4353	*	*	3439	4105	5992	3753	*	*	1844	3751	*	3973	4468	2698	4916	5391	4707	218
+       112	4571	4930	1844	471	*	*	4132	1010	0	
+
+A 219  979	*	5241	*	*	*	*	*	*	4020	*	*	*	5237	5099	2482	2864	4939	*	*	219
+       40	5191	*	0	*	*	0	4045	1017	1017	
+
+P 220  5526	*	*	*	*	*	*	*	3917	*	*	4849	728	5023	5376	2382	5217	*	*	*	220
+       0	*	*	*	*	*	0	3956	0	1017	
+
+P 221  2811	*	*	5413	5262	*	*	*	*	*	*	*	486	4203	*	*	*	*	4665	*	221
+       0	*	*	*	*	0	*	3597	0	1017	
+
+G 222  5266	*	*	5165	*	213	*	*	*	*	*	5419	*	*	4062	*	*	*	*	*	222
+       0	*	*	*	*	*	*	3861	0	0	
+
+R 223  2850	*	*	4804	*	*	*	*	*	4414	4696	*	*	1827	1340	3986	*	*	*	*	223
+       0	*	*	*	*	*	*	3830	0	0	
+
+K 224  *	*	*	*	*	*	*	*	218	*	*	*	4696	5238	4673	*	4804	*	*	*	224
+       0	*	*	*	*	*	*	3830	0	0	
+
+V 225  3821	4647	*	*	*	*	*	3958	*	5282	*	*	*	*	*	5385	4673	442	*	*	225
+       0	*	*	*	*	*	*	3830	0	0	
+
+G 226  *	4634	*	*	*	299	*	*	4322	*	*	*	*	4768	*	*	5781	4568	*	*	226
+       264	*	2581	*	*	*	*	3753	0	0	
+
+D 227  4447	*	5487	*	5152	3940	1749	*	*	2083	*	3691	*	*	3380	3314	*	*	*	5003	227
+       0	*	*	*	*	2149	369	3532	0	1300	
+
+I 228  *	*	*	*	*	*	*	608	*	2734	*	*	*	*	*	*	*	2589	*	5197	228
+       0	*	*	1000	1000	0	*	3601	1223	1223	
+
+A 229  661	*	*	*	*	2349	*	*	*	*	*	*	*	*	3485	3605	*	*	*	*	229
+       0	*	*	*	*	*	*	3744	0	0	
+
+S 230  906	*	*	*	*	*	*	*	3665	*	*	*	2195	*	*	3089	4271	*	*	*	230
+       189	*	3025	*	*	*	*	3744	0	0	
+
+K 231  *	*	*	*	*	*	4925	*	2187	*	*	*	*	*	469	5325	*	*	*	*	231
+       0	*	*	0	*	0	*	3601	1223	1223	
+
+R 232  *	4405	*	*	*	*	*	*	2908	*	*	*	*	5068	466	5131	*	4738	*	*	232
+       93	4002	*	595	1565	*	*	3744	1064	0	
+
+T 233  *	*	*	*	*	*	*	4772	4200	*	*	4475	4212	*	5061	3351	552	*	*	*	233
+       0	*	*	*	*	*	*	3703	0	0	
+
+G 234  *	*	*	*	*	185	*	*	4129	*	*	*	*	*	4970	*	*	5003	*	*	234
+       119	5001	4381	0	*	*	*	3600	1006	0	
+
+R 235  *	*	*	*	*	5149	*	*	5194	3824	5138	4785	3871	*	817	*	4730	*	3249	5034	235
+       0	*	*	0	*	0	*	3419	1136	1034	
+
+G 236  2967	*	*	*	*	1717	*	*	1732	*	*	*	*	*	2264	*	*	4089	*	*	236
+       0	*	*	*	*	*	*	3254	0	0	
+
+G 237  *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	237
+       0	*	*	*	*	*	*	1535	0	0	
+
+N 238  *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	238
+       0	*	*	*	*	*	*	1535	0	0	
+
+E 239  *	*	*	939	*	*	*	*	*	*	*	*	*	1063	*	*	*	*	*	*	239
+       0	*	*	0	*	*	*	1535	0	0	
+
+//
+�HHsearch 1.5
+NAME  55e5f4d58d11858b673e58b73804fab3
+FAM   
+FILE  55e5f4d58d11858b673e58b73804fab3
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:19:11 2013
+LENG  155 match states, 155 columns in multiple alignment
+FILT  124 out of 1153 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  7.6 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCEECCCCCCCCEECCCCCHHHHHHHHHHHHHCCCCCCCCCHHHHHHHHHHHHHHHHHHCCCCCCCCCCCCCCCHHHHHCCCCCHHHHHHHHHHCCCCC
+CCCCCCCCCHHHHHHHHHHHHHCCCCCCCCCCCCCHHHCCCCCCCCCHHCCCCCC
+>ss_conf PSIPRED confidence values
+9621207998741312798766628899999836888677886789999999998749863888888889986420444045589999999998488888
+8765568999999999999997267888763536988705568998011145569
+>Consensus
+xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxGxxlyxxxCxxCHgxxgxgxxgPxLxxxxxxxxxxxxxxxlxxxixxgxxxx
+MpxxxxxlsdeeixxlxxYlxslxxxxxxxxxxxxxxxxxxxxpxxxxxxxxxxx
+>55e5f4d58d11858b673e58b73804fab3
+APQFFNIIDGSPLNFDDAMEEGRDTEAVKHFLETGENVYNEDPEILPEAEELYAGMCSGCHGHYAEGKIGPGLNDAYWTYPGNETDVGLFSTLYGGATGQ
+MGPMWGSLTLDEMLRTMAWVRHLYTGDPKDASWLTDEQKAGFTPFQPKSSGEDQS
+>gi|148555142|ref|YP_001262724.1| pyrrolo-quinoline quinone [Sphingomonas wittichii RW1]gi|148500332|gb|ABQ68586.1| Pyrrolo-quinoline quinone [Sphingomonas wittichii RW1]
+-------NSERLIVFRIGGpA-PRLPP-LREARPftVAPAQYRGTQAQEQHGAALYGENCGRCHGGPTGAGGYPNLW---KM--TPETHAAFESIVLDGA
+faYAGMASFADVLSKQDARDIHAFLAKP--------------------------------
+>gi|159043030|ref|YP_001531824.1| cytochrome c class I [Dinoroseobacter shibae DFL 12]gi|157910790|gb|ABV92223.1| cytochrome c class I [Dinoroseobacter shibae DFL 12]
+-------------------------------------------GditvDAAAGEKVFR-TGKAYHQVSVdaESRASPRLNGavdravgsiEGFSYSDAFv
+vlnaegtirSTEKFAAFLAKPKnfeKGTMIAFAGLRKKEDRKNMIAYLATCWV------------------------------
+>gi|209486095|gb|ACI48510.1| nitrite reductase [uncultured bacterium]
+---------------------------------------------------------------LRKGATGKPLTPDITLGKG---TDYLKVFISYGSPGG
+MPNWPtsGEMSEKLVDVMARYVQQDPPQP---PEWGMEQMKQTWK------------
+>gi|255034827|ref|YP_003085448.1| heme-binding protein [Dyadobacter fermentans DSM 18053]gi|254947583|gb|ACT92283.1| heme-binding protein [Dyadobacter fermentans DSM 18053]
+-----------------------KGP-GRAWKVEQAVELVEDSLAnrdFERGKQIFSAvLCSRCHAIQGEGAdVGPELTQ----LGTRFSVKDMLEAIII
+PdkavsdqyasisfqmkdgqsivgRevnqdanfyyvsqnpfdpktirkvakkdvassrlspVSIMLPGlINGLNPNELRDLVAYLM--AGGNKN------
+--------------------
+>gi|162448635|ref|YP_001611002.1| cytochrome b6 [Sorangium cellulosum 'So ce 56']gi|161159217|emb|CAN90522.1| cytochrome b6 [Sorangium cellulosum 'So ce 56']
+-----------------------RTARAVALFKQGVPPegalamLRNDP--ETRGEDLYKKECASCHRLNDLGPpkdkQtAPDLTgfgTKAWALEVLRDP
+--DADHLFGKtafkemmpSAVKPPADPeAAkv-FTPMSEADQETIAA---------------------------------
+>gi|320332835|ref|YP_004169546.1| class I cytochrome c [Deinococcus maricopensis DSM 21211]gi|319754124|gb|ADV65881.1| cytochrome c class I [Deinococcus maricopensis DSM 21211]
+-VVFRNGVRPSDVMAPIarRLSDQDVADLAAYYARQPLGPaWPTNAADRERGRALFtrgdpnrnLMACAVCHGADGRGTEGgvASIARLPAAYAQ--KAM
+GVFRDLP--GFGGIPHAEamrialHPLTDTELQQLAAYVSSM--------------------------------
+>gi|94495110|ref|ZP_01301691.1| Cytochrome c, class I [Sphingomonas sp. SKA58]gi|94425376|gb|EAT10396.1| Cytochrome c, class I [Sphingomonas sp. SKA58]
+----------------SSLSDAEMQRLANHFSALP--GL--KPTILLSDLPMLkdQAGipvpaCVNCHAP---GKAGPILAGQRSSYVA--ARLKGWQQE
+KAVVDArqspeTMAMIARRIPLSDVDSLAAAIGQS--------------------------------
+>gi|313681723|ref|YP_004059461.1| sulfite dehydrogenase (cytochrome) subunit sorb [Sulfuricurvum kujiense DSM 16994]gi|313154583|gb|ADR33261.1| sulfite dehydrogenase (cytochrome) subunit SorB [Sulfuricurvum kujiense DSM 16994]
+-------------------------------------PYVDYPIEAGDHDEVAQQYCLICHSFGYVLNQGKK-SRPYWT-----GT----------VQKM
+VNEFKAPIPKEDQQTIINYLVKHYGYE----------------------------
+>gi|291280072|ref|YP_003496907.1| cytochrome c family protein [Deferribacter desulfuricans SSM1]gi|290754774|dbj|BAI81151.1| cytochrome c family protein [Deferribacter desulfuricans SSM1]
+------------------------------LIMIFSAVSYSK-kYPADYGRNTWKKNCRlAC-HDGSKTGvpkLAPNSkTQQQW--------ENVFA-qn
+rkyIYEMHKGVD---fSH--lSEKDWNMIKLFVIQHAYDSDQPES-----------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+A 1    0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1000	0	0	
+
+P 2    *	*	*	*	*	*	*	*	*	*	*	*	953	*	*	*	*	1048	*	*	2
+       0	*	*	*	*	*	*	1744	0	0	
+
+Q 3    *	*	*	*	*	*	*	*	*	*	*	*	*	1980	*	2082	1953	1988	*	*	3
+       0	*	*	*	*	*	*	2812	0	0	
+
+F 4    *	*	*	*	610	*	*	*	*	1536	*	*	*	*	*	*	*	*	*	*	4
+       0	*	*	*	*	*	*	3625	0	0	
+
+F 5    *	*	*	2641	2549	*	*	*	*	*	*	2473	*	*	1626	*	2603	*	*	*	5
+       0	*	*	*	*	*	*	3625	0	0	
+
+N 6    2914	*	*	*	*	*	*	*	*	*	*	1751	*	2685	2842	*	2916	*	2810	*	6
+       0	*	*	*	*	*	*	3905	0	0	
+
+I 7    *	*	*	*	*	2739	*	1723	*	*	*	*	2914	2916	*	2842	2810	*	*	*	7
+       0	*	*	*	*	*	*	3905	0	0	
+
+I 8    *	*	*	3409	*	*	*	3265	*	2376	*	3351	3107	2369	*	3446	*	3189	*	*	8
+       0	*	*	*	*	*	*	4704	0	0	
+
+D 9    3546	*	2599	*	*	*	*	*	3655	*	*	3556	3708	3675	3409	2484	2669	*	*	*	9
+       0	*	*	*	*	*	*	5075	0	0	
+
+G 10   *	*	*	3601	*	588	*	*	*	*	*	*	2533	*	3655	*	*	*	*	*	10
+       0	*	*	*	*	*	*	5075	0	0	
+
+S 11   *	*	*	2708	*	*	*	*	*	3669	*	*	*	*	2665	905	3708	*	*	*	11
+       0	*	*	*	*	*	*	5075	0	0	
+
+P 12   *	*	3409	3675	*	3556	*	*	3315	2707	*	*	2599	*	*	*	*	1626	*	*	12
+       0	*	*	*	*	*	*	5075	0	0	
+
+L 13   3741	*	*	*	*	*	*	*	*	1019	3315	*	*	*	*	*	*	2502	*	2691	13
+       0	*	*	*	*	*	*	5075	0	0	
+
+N 14   3546	*	2045	3675	*	*	*	*	*	*	3409	3533	3669	*	*	*	2094	3315	*	*	14
+       0	*	*	*	*	*	*	5075	0	0	
+
+F 15   2856	*	*	*	1535	*	3765	1711	*	3975	*	*	*	*	*	3753	*	*	*	*	15
+       0	*	*	*	*	*	*	5495	0	0	
+
+D 16   2151	*	3792	*	*	3765	*	*	2204	*	*	*	3796	*	3918	2846	*	2891	*	*	16
+       95	*	3975	*	*	*	*	5495	0	0	
+
+D 17   *	*	2992	*	*	3794	*	2445	*	3033	3129	3997	3732	*	*	2439	4065	*	*	*	17
+       693	2872	2030	581	1593	*	0	5815	1336	1043	
+
+A 18   3578	*	*	*	*	1629	*	*	3543	*	*	*	3358	*	2699	2562	*	3535	*	*	18
+       0	*	*	*	*	2100	383	5123	0	1731	
+
+M 19   3774	*	*	2702	*	2856	*	3924	*	2187	2906	*	*	3753	*	*	3793	3838	*	*	19
+       0	*	*	*	*	788	1248	5475	0	1545	
+
+E 20   *	*	*	3088	4034	4055	*	*	2995	*	*	*	1643	*	3974	3047	2934	*	*	*	20
+       402	*	2038	*	*	*	0	5834	0	1180	
+
+E 21   2939	*	2397	1851	*	*	*	*	3817	*	*	*	3104	3742	*	*	*	2832	*	*	21
+       99	*	3908	*	*	0	*	5652	0	1730	
+
+G 22   1816	*	3953	2939	*	2842	*	*	4645	4851	4650	*	4868	3093	*	4683	4726	4677	*	*	22
+       0	*	*	*	*	*	0	7100	0	1105	
+
+R 23   *	*	2842	1928	*	*	*	*	3455	4732	*	*	3959	4766	1923	*	*	3845	*	4851	23
+       0	*	*	*	*	0	*	7237	0	1105	
+
+D 24   4349	*	3416	4333	4298	*	5182	3822	*	3006	3722	*	*	3259	5112	5074	4341	3278	5225	3107	24
+       0	*	*	*	*	*	*	7795	0	0	
+
+T 25   2611	*	5376	4049	5484	3199	*	4540	3504	5676	5507	4837	3329	4617	4113	4287	2611	*	*	*	25
+       0	*	*	*	*	*	*	8063	0	0	
+
+E 26   2805	*	3037	3419	5556	4682	*	*	3429	3810	*	*	1764	4643	4045	*	*	5492	*	*	26
+       54	*	4763	*	*	*	*	8124	0	0	
+
+A 27   1864	*	4548	3549	4553	5424	*	4767	*	2453	5427	*	*	5644	3881	4652	3577	4086	*	5782	27
+       0	*	*	*	*	1227	804	8180	0	1212	
+
+V 28   1437	*	*	5531	3049	4639	*	3507	5665	5835	*	*	4039	*	*	4645	*	2610	*	4098	28
+       0	*	*	*	*	0	*	8203	0	1082	
+
+K 29   1980	*	4178	2969	*	5899	5698	3750	3173	*	5789	5573	3755	5875	3410	5997	*	3961	5637	5791	29
+       26	5826	*	0	*	*	*	8220	1015	0	
+
+H 30   2677	*	4934	4100	4551	6080	4121	5574	4289	5789	*	5542	4654	2751	3762	3742	*	3646	*	3191	30
+       0	*	*	*	*	*	*	8220	0	0	
+
+F 31   4369	4768	4903	5717	2342	*	4511	5027	*	2704	*	5820	*	5959	*	4888	5651	3901	3407	2407	31
+       21	*	6097	*	*	*	*	8371	0	0	
+
+L 32   1688	*	6101	4758	5037	5994	*	5733	5975	2258	5827	*	4251	4356	5622	3907	3957	4513	*	4878	32
+       21	6133	*	1000	1000	0	*	8383	1000	1000	
+
+E 33   2173	*	4379	3322	5891	4410	*	*	3268	*	4469	5782	3889	3110	5942	3362	3528	*	*	5997	33
+       143	3402	*	753	1298	*	*	8420	1603	0	
+
+T 34   3318	*	5928	5285	*	3770	5921	*	4316	2979	3086	6189	4574	2580	4594	4100	2898	*	*	5952	34
+       22	6062	*	0	*	*	*	8542	1000	0	
+
+G 35   3862	*	5139	3317	5507	3166	*	5992	4230	3116	4622	4558	2127	4122	5153	4585	5906	5112	*	*	35
+       107	5152	4522	1034	967	*	*	8600	1051	0	
+
+E 36   3266	*	4187	3294	4401	4101	6119	3274	4986	3019	*	*	4068	5159	4116	3836	3806	4467	6311	5940	36
+       115	6225	3984	3310	153	1933	438	8541	1178	1172	
+
+N 37   2744	5898	3509	3555	*	4374	*	4869	5836	4568	*	2779	3117	4132	*	3884	4558	3753	5924	*	37
+       91	4036	*	1995	417	594	1567	8427	1433	1439	
+
+V 38   2737	*	4939	4323	*	3185	6272	5362	4755	5280	6471	6394	1386	5427	5358	5345	4610	6024	6356	6512	38
+       63	4543	*	1542	607	857	1159	8680	1379	1089	
+
+Y 39   3821	6402	4968	5402	3201	6262	6156	5408	5299	3161	4627	4834	5142	5502	4825	4043	6345	3250	4129	2567	39
+       166	3743	4869	1624	566	0	*	8876	1402	1000	
+
+N 40   2119	*	5578	6177	6532	3780	*	5866	4239	4003	6514	5276	3050	*	3294	3058	3923	4057	*	6220	40
+       120	3874	6465	2485	284	2314	324	8861	1520	1298	
+
+E 41   2283	*	3024	4124	5417	3441	6092	6369	4515	4733	*	4205	3900	5376	4733	3866	4369	3884	*	5442	41
+       49	5491	6470	0	*	1827	478	8893	1197	1283	
+
+D 42   2975	*	2071	4406	4688	5091	*	6236	4454	5442	*	4007	3688	4871	4417	3324	3605	5432	*	6420	42
+       62	4567	*	470	1847	1242	793	8941	1267	1265	
+
+P 43   1967	6183	4130	3161	*	4703	6622	6761	3661	5411	*	4928	2410	4817	*	4646	3795	4933	*	*	43
+       84	6441	4464	2000	415	*	0	9047	1000	1115	
+
+E 44   2531	*	3559	2894	5503	3679	*	5006	4697	3563	6112	4657	3938	4999	*	3545	4304	4197	*	6412	44
+       109	4030	6471	961	1040	826	1197	8984	1534	1458	
+
+I 45   2381	*	3827	4282	6436	4853	6288	4837	5061	3543	6549	2898	4466	4357	4721	3382	4526	4351	*	6463	45
+       214	2988	6384	1500	629	0	*	9102	1884	1220	
+
+L 46   2600	*	6703	4666	5409	6310	6596	3173	4993	2684	5044	6068	3044	5293	5188	4793	6743	2739	6841	5771	46
+       13	*	6789	0	*	836	1185	9182	1007	1086	
+
+P 47   2077	*	4435	2581	7041	4866	6863	7020	3182	4721	5893	4963	5052	4597	3252	5203	4381	4541	*	*	47
+       35	5381	*	1153	862	*	0	9221	1091	1067	
+
+E 48   2799	*	3807	4164	6634	5289	5795	5200	2891	4555	5589	4582	4918	3695	2608	3630	*	4769	5910	*	48
+       27	7082	6484	1425	672	0	*	9235	1047	1067	
+
+A 49   3292	*	6419	*	*	442	6976	6580	6859	*	*	5712	4772	5923	5953	*	5962	5744	*	*	49
+       13	*	6758	0	*	0	*	9251	1007	1007	
+
+E 50   3241	*	4595	2477	5229	4693	5035	*	2887	6482	6932	6552	5157	3750	2490	3928	5182	6904	6483	5720	50
+       15	*	6608	*	*	*	0	9323	0	1043	
+
+E 51   2399	*	4017	3192	5815	4223	4662	4740	3536	5192	6671	5981	4788	3331	3346	5608	4418	5887	7031	5260	51
+       0	*	*	*	*	*	0	9287	0	1143	
+
+L 52   3629	*	5827	6998	5310	7027	*	2702	6543	1200	5192	4981	*	6693	6906	6984	5754	2900	*	5401	52
+       38	*	5280	*	*	*	0	9298	0	1143	
+
+Y 53   3867	*	*	*	1644	*	*	5279	*	4335	5590	*	*	6784	*	*	6391	3342	5254	1436	53
+       90	4271	6801	2105	382	1671	544	9208	1637	1345	
+
+A 54   2645	*	4535	3194	*	6627	6942	4098	3219	4078	4885	3455	*	3119	3752	4591	5011	4421	6519	*	54
+       66	5952	5122	2323	322	659	1448	9232	1139	1276	
+
+G 55   2672	*	4386	3863	*	4397	6642	6664	3312	5915	5473	4343	*	2728	3073	3751	3855	5056	6799	5801	55
+       224	2799	*	1470	646	921	1084	9273	2131	1364	
+
+M 56   4352	*	5259	4445	7075	3624	3637	*	3824	4436	5403	2120	7166	3266	4918	4056	4314	5967	6457	4112	56
+       133	3506	*	1594	580	677	1417	9315	1800	1124	
+
+C 57   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	57
+       0	*	*	*	*	*	0	9322	0	1000	
+
+S 58   1867	*	*	6605	5372	3293	6560	4308	4976	4471	4948	5329	6063	4038	5099	3405	4131	3260	*	4911	58
+       0	*	*	*	*	*	0	9322	0	1000	
+
+G 59   2301	*	*	6486	5963	2582	5901	4597	5741	5003	4877	4482	4726	6028	4754	2664	3873	3965	6447	5356	59
+       13	*	6851	2322	322	0	*	9322	1000	1000	
+
+C 60   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	60
+       0	*	*	0	*	0	*	9326	1000	1000	
+
+H 61   *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	61
+       14	*	6741	*	*	*	*	9342	0	0	
+
+G 62   2864	*	*	5810	6733	1365	6634	5069	*	4353	6807	5228	*	5380	4633	2650	3690	5523	*	*	62
+       42	5771	6634	977	1023	*	0	9325	1053	1000	
+
+H 63   3139	*	4328	3911	4187	4110	5467	4209	4215	3871	*	4239	2796	5341	5745	5010	4385	2969	*	6436	63
+       150	7295	3432	3907	100	778	1263	9316	1029	1081	
+
+Y 64   4235	*	2244	4764	5153	2543	6988	*	4396	6013	6624	3312	4406	4085	5365	3881	3948	5903	*	4726	64
+       41	6483	5892	1000	1000	2348	316	9180	1000	1809	
+
+A 65   3100	*	3575	5674	6639	1166	*	5735	5818	3606	5175	5227	4570	6748	4768	5944	*	6671	*	4752	65
+       51	5310	6698	2475	286	3107	178	9200	1211	1747	
+
+E 66   3968	*	3551	3010	6898	5383	5172	4544	2684	5153	5904	4607	4500	4750	3798	3729	5370	3322	*	5092	66
+       170	4354	3999	1381	699	249	2658	9232	1589	1713	
+
+G 67   3907	*	4587	5355	6569	915	6756	5761	4132	5625	*	4953	5404	6661	5574	4161	4256	5247	*	*	67
+       11	*	7096	*	*	942	1060	9229	0	1892	
+
+K 68   3400	*	4203	6110	6747	2858	6944	4762	3520	4948	5268	3181	3760	4338	4317	4031	4681	3121	*	*	68
+       431	1999	6949	2714	239	1805	487	9310	3027	1484	
+
+I 69   3154	*	4682	5346	4734	4933	5944	2766	4581	3066	4866	5640	4239	4654	5335	4210	3770	3277	*	5211	69
+       582	1590	*	2261	338	2373	310	9302	3809	1509	
+
+G 70   2193	*	*	4873	6681	1309	6105	7093	5738	6142	5761	4603	5285	*	5333	4058	3925	6577	*	4932	70
+       699	1381	*	829	1194	1522	618	9263	4408	1537	
+
+P 71   3620	*	6615	*	*	5225	6079	6549	4270	5736	5975	*	651	*	4676	4914	5242	5275	*	6919	71
+       25	5886	*	1867	462	0	*	9289	1048	1322	
+
+G 72   3382	*	3359	5188	6584	4406	*	5213	4132	5841	5514	2368	3168	4616	4215	3312	4004	5316	*	6558	72
+       37	*	5289	*	*	*	*	9303	0	0	
+
+L 73   4951	*	*	*	3098	6676	6574	3033	*	854	5975	6039	6023	*	*	6992	5451	4923	5996	5093	73
+       202	4947	3348	504	1763	0	*	9207	1208	1146	
+
+N 74   2262	*	5216	4420	5629	3510	6614	5238	3534	4890	*	4551	5753	*	3947	3332	2523	5068	*	5383	74
+       330	3045	3586	3551	129	2703	241	9231	1898	2134	
+
+D 75   5942	*	2354	5716	6753	2113	*	5214	3351	5582	5187	4150	5309	3811	3469	3905	4457	*	*	*	75
+       285	3204	3825	1896	452	2362	312	9228	1827	2856	
+
+A 76   2869	*	3229	5121	*	2732	4566	3994	6255	4154	*	4532	3959	2868	3801	4801	5347	5252	*	*	76
+       141	4554	4298	1498	631	2783	226	9177	1223	3084	
+
+Y 77   3252	*	3523	3541	4941	3891	4356	3799	5583	3763	5627	6529	3949	4186	4139	4256	4319	5647	6281	3960	77
+       95	5415	4636	3941	97	1156	859	9106	1061	3170	
+
+W 78   3663	6805	6483	4723	4462	4860	4308	5071	4827	4237	4345	6373	5604	4961	4486	4306	4199	6030	1881	3957	78
+       105	6522	4074	1000	1000	2235	344	9180	1000	2496	
+
+T 79   4727	*	5121	3962	6590	4173	*	3320	3425	2906	4899	4981	3972	4122	3352	4024	4139	4221	*	5594	79
+       172	5155	3566	356	2192	2656	249	9089	1333	2699	
+
+Y 80   4787	*	*	4629	3758	4992	4993	6395	3601	4272	5387	4487	6518	5510	4306	4592	4468	3703	4344	1857	80
+       174	5022	3598	2820	220	3177	169	8987	1151	3197	
+
+P 81   2855	*	4160	4334	4760	2476	6404	4960	5003	3547	*	4172	3228	6532	3954	4063	4514	4724	*	*	81
+       242	3529	3886	3511	132	1431	668	8943	1455	3470	
+
+G 82   3094	*	3636	5248	5376	1950	*	4673	4180	3934	6440	5476	4240	3911	5047	3772	4500	5497	6590	*	82
+       551	5029	1802	1767	502	2780	227	8920	1166	2953	
+
+N 83   4430	*	2992	3783	*	3952	5997	6528	4274	3672	5096	5101	5108	4319	2774	3788	3154	4672	*	5249	83
+       195	4010	3952	4309	75	3660	119	8601	1235	4454	
+
+E 84   4636	*	4468	3605	5917	*	3898	4599	3156	3251	5036	4746	3614	6166	3478	4535	4955	5299	4272	3561	84
+       77	4593	6538	1626	565	506	1756	8612	1127	4523	
+
+T 85   3345	*	2886	4733	*	3863	6723	6611	3354	*	6576	3541	3618	5683	6382	2728	2782	5762	*	5768	85
+       79	4553	6508	2580	264	2205	353	9196	1194	2293	
+
+D 86   3059	*	2734	3360	6905	5712	6704	4431	3690	4249	5824	5101	3006	4008	3805	4307	4833	6921	*	5636	86
+       125	5929	3914	2561	268	219	2828	9165	1134	2076	
+
+V 87   2447	*	2745	3053	4865	3963	6749	5683	3737	3804	6949	4240	5773	4732	4428	4795	5732	4394	7070	*	87
+       52	5714	5926	1903	449	*	0	9078	1069	1626	
+
+G 88   2880	*	3568	3124	6137	3774	4875	*	3609	6766	6679	4084	*	4866	3448	5413	3986	5482	5813	2930	88
+       26	5830	*	820	1206	779	1261	9066	1133	1834	
+
+L 89   4977	*	5594	6625	4138	6450	5800	2598	5752	1328	3966	5641	*	6887	*	*	4541	3317	*	4902	89
+       10	7156	*	1585	585	*	0	9187	1000	1305	
+
+F 90   3347	6541	5360	4122	2706	6448	4685	3563	4155	3639	4633	7055	*	4598	4097	4777	4291	3964	5618	3942	90
+       0	*	*	*	*	*	0	9187	0	1305	
+
+S 91   2848	*	4224	3227	*	6685	4451	6625	3408	4363	6662	4161	5249	3676	2969	3973	3980	5850	4974	5773	91
+       23	6820	7173	1585	585	*	0	9187	1000	1305	
+
+T 92   3232	*	5925	5713	3111	5797	5907	4033	4229	5252	6021	5352	6932	3863	4036	3183	3723	3097	4092	5170	92
+       14	*	6691	*	*	*	0	9191	0	1384	
+
+L 93   4353	*	5866	5644	4087	5145	6436	1845	5819	2019	4357	*	6666	*	6855	7036	4806	2880	*	5264	93
+       82	4627	6057	1654	552	1860	465	9179	1279	1452	
+
+Y 94   3908	6751	6964	5177	5667	5858	6608	4933	2665	3931	5590	4959	5879	4435	2787	3599	3454	3257	5755	5189	94
+       173	4180	4107	3604	124	*	0	9187	1533	1513	
+
+G 95   3889	*	3167	3199	6825	3323	4112	4958	3950	6630	*	2451	5870	3912	3807	4058	6823	*	*	4967	95
+       68	4756	6746	1088	917	2440	294	9155	1551	2217	
+
+G 96   4910	*	6827	4952	5607	979	5137	*	4151	5687	*	4675	3214	*	4721	4938	6023	5109	*	4974	96
+       373	2562	4100	1420	675	405	2031	9155	2836	2063	
+
+A 97   3436	*	5129	4897	*	3513	5154	3562	4438	4447	5759	4301	4540	4093	2430	4301	5393	3445	*	5038	97
+       680	1611	4360	2295	329	0	*	9222	3877	1659	
+
+T 98   4025	6577	3372	3670	3900	4296	3734	4616	3545	5832	6828	4114	3467	4587	4534	3570	4557	5104	*	5764	98
+       48	5375	6805	2584	263	397	2056	9210	1298	1578	
+
+G 99   2897	*	4308	6018	6440	1663	5192	6743	3944	*	5680	4454	3582	4579	5071	4855	3782	6588	6670	5424	99
+       323	2369	7143	1761	504	616	1525	9260	2740	1195	
+
+Q 100  3130	6005	4962	4111	5010	3791	7408	4088	3875	3499	4128	4913	3426	4626	6010	5284	3989	3666	6669	4684	100
+       13	6839	*	2583	263	0	*	9266	1074	1076	
+
+M 101  5532	*	*	6808	5289	*	*	4485	6799	6609	394	7232	*	*	5717	5823	5249	4343	*	*	101
+       122	6976	3771	0	*	*	*	9303	1000	0	
+
+G 102  3234	*	*	6318	*	4604	5000	4964	5098	6541	5340	6029	1090	4505	5189	5337	3860	4545	6671	6738	102
+       147	3844	5205	1364	710	654	1456	9225	1673	1549	
+
+P 103  2380	*	7133	4154	5760	2792	6115	6825	6884	5234	4443	7190	2535	5343	4962	2681	5055	4412	6893	*	103
+       76	4543	6851	1284	762	926	1078	9227	1409	1474	
+
+M 104  4184	*	6681	*	1939	6276	4307	3917	4398	3593	4546	5398	*	4396	*	4717	6929	4104	3106	3646	104
+       198	6628	3080	4000	93	807	1223	9289	1000	1240	
+
+W 105  2428	*	4333	3924	4881	3392	*	6498	2750	3731	5277	4698	4840	7178	4703	4025	4534	4395	6509	5223	105
+       270	2824	5078	1188	834	1601	577	9097	2481	2019	
+
+G 106  3543	*	3176	3839	5759	2757	4580	6897	3447	5511	*	5337	4064	3646	4103	3506	3771	*	*	5675	106
+       343	5083	2456	657	1452	503	1763	9147	1185	1862	
+
+S 107  4040	*	3783	4416	*	4775	5069	4649	3686	3906	5580	5056	3750	4103	3201	3385	3482	3448	*	*	107
+       73	4349	*	2373	309	434	1944	9054	1274	3027	
+
+L 108  6755	5386	*	6571	3873	5723	6650	2480	6844	1098	4173	*	5382	6866	6710	6766	5803	4947	5766	5123	108
+       18	6365	*	1585	585	173	3142	9273	1000	1511	
+
+T 109  5583	*	3134	*	6467	4686	*	*	4619	*	*	3552	3616	6974	5313	1351	2454	*	*	*	109
+       22	6030	*	2169	363	*	0	9298	1032	1000	
+
+L 110  3503	*	1750	2023	*	7154	5987	*	3994	4986	6815	5023	3555	4501	5339	6069	6849	5967	6702	6860	110
+       0	*	*	0	*	0	*	9298	1000	1000	
+
+D 111  2668	*	2909	1837	*	4598	6473	*	3942	6310	*	6221	5250	3135	3980	5039	5837	5465	6386	*	111
+       0	*	*	*	*	*	*	9303	0	0	
+
+E 112  4632	*	1672	1446	*	5386	6950	6885	5431	7224	6865	5920	*	3349	4598	7402	5586	6600	*	7162	112
+       14	6702	*	0	*	*	*	9303	1105	0	
+
+M 113  3493	*	5425	6450	*	*	7139	2095	5088	2130	3500	*	6386	5239	3749	6885	5059	2969	*	6639	113
+       25	6828	6881	0	*	*	*	9303	1000	0	
+
+L 114  2669	*	3107	3167	6711	6907	5362	5231	2658	4656	7049	5967	*	3514	3999	4623	6145	5709	3419	7056	114
+       13	*	6803	*	*	*	0	9282	0	1000	
+
+R 115  1941	*	2384	4281	6575	5465	*	7265	3940	5044	7056	3854	6853	3796	5702	4291	3901	4149	*	6570	115
+       0	*	*	*	*	1197	827	9272	0	1051	
+
+T 116  4458	*	*	*	*	*	*	1964	*	1447	4021	*	*	*	*	*	6618	1946	*	*	116
+       0	*	*	*	*	*	0	9282	0	1000	
+
+M 117  1788	*	*	5137	5763	5760	6055	2696	6152	3481	4587	6649	*	7200	7115	3750	3863	2613	*	*	117
+       12	*	6881	2000	415	0	*	9282	1000	1000	
+
+A 118  1888	*	3582	3305	6641	4874	5774	5830	3989	4576	5947	3804	*	3716	4101	5199	4157	5369	*	5031	118
+       12	6895	*	617	1523	0	*	9288	1041	1000	
+
+W 119  6503	*	6832	*	2418	*	5705	6824	5982	7039	*	7203	*	*	6785	*	*	5595	2682	864	119
+       0	*	*	*	*	*	*	9302	0	0	
+
+V 120  6042	*	*	6859	5474	*	*	1945	*	1429	3634	*	*	*	*	*	5853	2345	*	5162	120
+       10	*	7228	*	*	*	*	9265	0	0	
+
+R 121  3389	*	*	3901	5261	5743	4943	*	3623	2872	4597	4118	7045	3284	2644	3940	5158	5399	5337	4975	121
+       0	*	*	*	*	0	*	9279	0	1029	
+
+H 122  2924	*	4086	4539	*	3746	5688	*	4292	6608	6700	4798	6927	3344	5376	1714	3561	7018	5851	5627	122
+       76	4287	*	578	1600	*	*	9178	1668	0	
+
+L 123  5137	*	5836	4848	4757	5679	4139	4576	*	1539	4322	6526	6499	2497	4059	5017	5345	4482	*	6525	123
+       49	6967	5288	0	*	*	0	9048	1000	1005	
+
+Y 124  3101	*	4791	5075	4878	3459	6453	*	3216	6178	6055	4496	3141	3490	4389	3027	6013	6335	5321	3739	124
+       108	3794	*	588	1578	1955	430	8741	1492	1240	
+
+T 125  2716	6176	3749	3966	*	2313	5873	5924	2859	5305	*	4762	4520	4493	4264	4080	4557	5696	*	*	125
+       94	4635	5467	1690	535	*	0	8589	1108	1155	
+
+G 126  4509	*	2595	6000	5705	2369	4698	*	4829	*	4792	4085	4594	4208	3704	3954	4581	4086	*	4156	126
+       31	5566	*	0	*	*	0	8071	1002	1329	
+
+D 127  5603	*	2760	2870	*	3601	4586	*	2672	4441	*	5393	4031	4669	4275	3578	3954	4510	*	*	127
+       151	4327	4342	1407	683	*	0	7940	1139	1329	
+
+P 128  3103	*	4363	2826	*	*	5153	*	4333	*	4215	5323	1257	*	4953	5064	5222	5048	*	*	128
+       299	3793	3123	1139	873	*	0	7346	1194	1546	
+
+K 129  3109	*	4329	2941	*	3037	*	*	2933	3414	*	4291	*	3162	*	4548	3689	3749	*	*	129
+       179	3822	4441	596	1563	3244	161	6480	1322	1837	
+
+D 130  *	*	2148	4458	*	*	4591	*	2552	*	*	2879	1758	*	4620	4487	*	*	*	*	130
+       91	*	4037	*	*	1977	423	6392	0	2039	
+
+A 131  1377	*	*	4379	*	4516	*	4306	3362	*	*	4536	3269	4669	4370	*	2827	*	*	*	131
+       0	*	*	*	*	1672	543	6262	0	1865	
+
+S 132  2936	*	3488	2987	*	4589	*	*	4433	4123	*	*	2637	*	4267	2931	3084	4407	*	*	132
+       79	4237	*	2322	322	1070	934	6521	1029	1576	
+
+W 133  4500	*	4287	*	4263	4440	*	4449	3986	3236	4313	4277	4557	*	*	4386	4451	*	1714	4360	133
+       162	3233	*	0	*	887	1122	6113	1122	1381	
+
+L 134  4467	*	4498	4532	3272	4446	*	3400	4378	1950	*	*	4330	*	*	*	*	1908	*	*	134
+       77	*	4274	*	*	852	1165	6132	0	1127	
+
+T 135  4161	*	2671	3296	*	*	*	4484	*	*	4398	*	*	4306	*	2771	1514	4442	*	*	135
+       71	*	4376	*	*	*	0	6077	0	1182	
+
+D 136  2251	*	3059	2208	*	*	*	4187	4051	*	*	*	2503	4173	4282	*	4184	*	*	*	136
+       0	*	*	2000	415	2013	411	5957	1005	1301	
+
+E 137  2629	*	3952	1037	*	*	3989	*	3081	*	*	*	*	3248	*	*	*	*	*	*	137
+       82	4179	*	1000	1000	*	0	5873	1058	1204	
+
+Q 138  4447	*	3239	4283	*	3387	3016	*	3094	3952	4187	4091	*	3077	3244	*	*	4100	*	*	138
+       0	*	*	*	*	0	*	5873	0	1204	
+
+K 139  4503	*	*	4317	*	4081	4013	*	1286	3193	*	*	4226	4300	4321	*	*	3170	*	*	139
+       0	*	*	*	*	*	*	6011	0	0	
+
+A 140  3136	*	4503	3165	*	*	4300	*	2097	4317	*	*	4120	4251	3111	3208	*	*	4013	*	140
+       0	*	*	*	*	*	*	6011	0	0	
+
+G 141  3149	*	4226	3111	*	3972	*	4120	*	4321	*	4049	4253	*	2579	4317	3088	4503	*	4189	141
+       74	4322	*	0	*	*	*	6011	1005	0	
+
+F 142  4361	*	*	*	1930	*	*	3029	*	3929	*	*	3073	*	*	*	*	3046	3090	2800	142
+       0	*	*	*	*	*	*	5750	0	0	
+
+T 143  *	*	3495	*	*	3776	*	*	1592	2591	*	*	3749	3474	3568	*	3443	*	*	*	143
+       0	*	*	*	*	*	*	5124	0	0	
+
+P 144  *	*	3077	*	*	*	*	*	*	*	*	*	182	*	*	*	*	*	*	*	144
+       0	*	*	*	*	*	*	4413	0	0	
+
+F 145  *	*	*	*	810	*	*	*	*	*	2657	*	*	*	*	*	*	*	*	1884	145
+       0	*	*	*	*	*	*	3699	0	0	
+
+Q 146  *	*	2707	*	*	*	*	*	1681	*	*	*	*	2358	*	2701	2426	*	*	*	146
+       0	*	*	*	*	*	*	3321	0	0	
+
+P 147  1337	*	*	*	*	2384	*	*	*	*	*	*	1277	*	*	*	*	*	*	*	147
+       0	*	*	*	*	*	*	2950	0	0	
+
+K 148  1995	*	2079	2210	*	*	*	*	1754	*	*	*	*	*	*	*	*	*	*	*	148
+       0	*	*	*	*	*	*	2540	0	0	
+
+S 149  *	*	*	*	*	*	*	*	*	*	*	*	*	1839	*	473	*	*	*	*	149
+       0	*	*	*	*	*	*	2012	0	0	
+
+S 150  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	150
+       0	*	*	*	*	*	*	1000	0	0	
+
+G 151  *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	151
+       0	*	*	*	*	*	*	1000	0	0	
+
+E 152  *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	152
+       0	*	*	*	*	*	*	1000	0	0	
+
+D 153  *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	153
+       0	*	*	*	*	*	*	1000	0	0	
+
+Q 154  *	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	154
+       0	*	*	*	*	*	*	1000	0	0	
+
+S 155  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	155
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  564c9b9e5d4cd66b1fd7f125a716af4e
+FAM   
+FILE  564c9b9e5d4cd66b1fd7f125a716af4e
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:34:38 2013
+LENG  113 match states, 113 columns in multiple alignment
+FILT  158 out of 1138 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.7 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCEEEEECCEEEEECCCCEEEEEEECCCCCCCCCCCEEEEEEECCCCCCEEEEEECCCCCCCCCCCEEEEECCCEEEEEECCCCHHCCEEEEEEECCCCC
+CEECCCEEEEECC
+>ss_conf PSIPRED confidence values
+9789980986999689989999998588656667855999998999996899996465487758848998415489999987783009799999925998
+8899999999719
+>Consensus
+xxxvxqxpxxvxxxxGxxvxLxCxxxxxxxxxxxxxxvxWyrxxxxxxxxxlxxxxxxxxxxxxxrxxxxxxxxxxxLxixxxxxxDsgxYxCxxxxxxx
+xxxgxgtxlxvxx
+>564c9b9e5d4cd66b1fd7f125a716af4e
+DVVMTQTPLSLPVSLGDQASISCRSSQSLVHSNGNTYLNWYLQKAGQSPKLLIYKVSNRFSGVPDRFSGSGSGTDFTLKISRVEAEDLGIYFCSQTTHVP
+PTFGGGTKLEIKR
+>gi|3002929|gb|AAC08955.1| T cell receptor beta chain [Homo sapiens]
+-AQVTQNPRYLITVTDKGdvpegYKVSRKE--KR----NFPLIL---ESPSPNQTSLYFCARsfeQGYEQYFGPGTRLTvTEKRNfPLILESPSPNQTSL
+YFCASSlLgTg-dlwpAQHFGDGTRLSI--
+>gi|291010643|gb|ADD71699.1| immunoglobulin gamma heavy chain [Pteropus alecto]
+QVTLKES-GPGLMRPTQTLTLTCSFSGFSLST-ADMGVSWVRQPPGKALEWLATIWwdddKNYSPSLKSRLTMTKdtSKNQVLLTLTNTDPRDTATYYCA
+RTGlkvGysYVDVWGQGSPVTVS-
+>gi|281349765|gb|EFB25349.1| hypothetical protein PANDA_021873 [Ailuropoda melanoleuca]
+--SVSQMKNQVTLSERAFLIVNHSFAANKSAPpfsGVFSVLVKLCSCPENH----KRKCDGSNKG----FEATnEEKTTFPWEKLSVPMADMAVCHCA--
+-----------------
+>gi|62464905|gb|AAX83161.1| immunoglobulin heavy chain variable region [Aotus nancymaae]
+---------------GDPVPHLRCLWLLHR----Q------willeldpPAPKGRG--WSGldisivwWVHql-qrlpQES-----sh---YFSrhVQEP
+VLVE---------A------------------------
+>gi|321468336|gb|EFX79321.1| hypothetical protein DAPPUDRAFT_212574 [Daphnia pulex]
+--TISYISQEKVIDIGGSIELECSVQYVR-----DFPVLWIKIDNVDPSRTIPLSTGSNLIVKDSRFSLRYDQasSTYTLQIKDIQENDAGKYQCQ----
+---------------
+>gi|328702162|ref|XP_003241824.1| PREDICTED: roundabout homolog 2-like [Acyrthosiphon pisum]
+--RITEHPTDITVPKNEPITLGCKAEGRP-----EPTIEWYKDG-----ELLKippnGAAAGGGGDNgarsSQKVILSDGSLFFLRVAHNKKEQDSGVYW
+CVAKNVAGTEVSRNATLQVAE
+>gi|74218336|dbj|BAE23783.1| unnamed protein product [Mus musculus]
+-------------------------------------------------------------------------MLEMIRKLLLYDDHKSNLVSSPSqLS-
+iQHKLC----FTMRN
+>gi|73972829|ref|XP_851243.1| PREDICTED: similar to triggering receptor expressed on myeloid cells-like 4 [Canis familiaris]
+----EQKPELLRKLEGETISVKCLYQSWQDS---KSVKAWCRQVSARTCTVLASYPRIQGMQWKPGNSIQDwvRLGYFIVTMTKLKVEDSGFYSCGIYKS
+SE-ILT---------
+>gi|149546673|ref|XP_001515336.1| PREDICTED: similar to small intestinal receptor adhesion molecule, partial [Ornithorhynchus anatinus]
+QFSVIGPAEPILALEGKDVELPCHLKPKMNA--ESMEVRWFRSQPSDIVHLYENRKdrfQQQMEEYHKRTKLVTdamDYGSVAVRVYNVTVSDEGQFRCS
+-------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+D 1    5445	*	2042	5462	*	2795	*	*	*	4694	*	4046	5538	1595	*	4179	5016	5073	*	*	1
+       0	*	*	*	*	*	*	7222	0	0	
+
+V 2    2489	*	*	*	4151	*	*	2981	6477	2041	6177	*	3745	3752	*	5266	4388	2913	*	5998	2
+       23	5998	*	0	*	*	*	8780	1009	0	
+
+V 3    4159	7004	4705	3954	5255	4355	4728	5158	3740	3638	*	5095	*	2540	3754	3197	3769	4288	6639	5762	3
+       0	*	*	*	*	*	*	9293	0	0	
+
+M 4    5233	*	*	*	3579	5913	6794	2751	6422	2730	5016	*	6836	*	*	6575	6601	1163	5283	5618	4
+       0	*	*	*	*	*	*	9493	0	0	
+
+T 5    5668	*	4309	3964	6705	*	6014	3496	4421	5345	*	5950	6847	3441	4176	2945	1767	4292	5342	6752	5
+       26	6803	6860	0	*	*	*	9497	1000	0	
+
+Q 6    4477	*	*	3441	*	5143	4926	5988	4947	4304	6428	6084	4352	1025	6476	4482	4517	4769	*	*	6
+       112	*	3741	*	*	0	*	9586	0	1000	
+
+T 7    4304	*	6424	4125	4610	3558	5195	6715	4732	4798	5166	4243	2996	3969	5279	2751	2997	4114	6621	7194	7
+       13	*	6818	*	*	0	*	9499	0	1965	
+
+P 8    4547	*	5561	5173	6950	4775	5431	6932	4430	4967	6831	6830	1087	3344	4710	3978	4446	7080	*	6349	8
+       22	6751	7380	0	*	0	*	9806	1000	1000	
+
+L 9    3395	*	4976	3377	6188	3389	5406	*	3305	5790	*	4759	3452	3629	3186	2812	4449	*	*	5827	9
+       38	6486	6100	2000	415	0	*	9855	1058	1000	
+
+S 10   6136	*	3673	3839	4369	7128	4941	5690	7135	3795	6142	3767	4877	4043	4112	2495	3295	4075	6604	4017	10
+       0	*	*	*	*	0	*	9823	0	1091	
+
+L 11   5284	*	*	4422	*	5124	6943	3058	5222	2042	4268	7058	7114	5363	5347	5086	5146	1648	*	6807	11
+       17	7243	7520	3459	138	*	*	9992	1000	0	
+
+P 12   4639	*	6036	4546	4832	6996	5664	3129	4994	3563	6225	4674	6019	4821	4644	3257	2431	3060	7389	4335	12
+       10	7247	*	0	*	*	0	9962	1000	1000	
+
+V 13   2465	7278	6110	6088	7028	4203	*	3681	3742	4090	5448	*	6002	*	4626	5449	3862	1706	*	4936	13
+       0	*	*	*	*	0	*	9962	0	1000	
+
+S 14   3917	*	4857	4114	4723	5368	*	5786	2565	3921	6815	3874	3639	3594	4096	3596	4004	3852	*	6220	14
+       0	*	*	*	*	*	*	9963	0	0	
+
+L 15   3691	*	6846	2025	*	5621	6881	4203	4182	3902	6837	6000	3517	5153	3884	3758	3575	3614	6757	7191	15
+       25	6834	6925	0	*	*	*	10000	1013	0	
+
+G 16   7333	*	5146	5449	7225	515	6955	*	6264	7361	*	3981	6322	5211	4097	5221	7362	*	*	6089	16
+       0	*	*	*	*	0	*	10014	0	1026	
+
+D 17   4673	*	3060	2289	*	2708	5960	*	3802	4675	6869	5909	*	3376	5205	2810	5805	4899	7500	6930	17
+       9	*	7344	*	*	*	*	10029	0	0	
+
+Q 18   4525	5315	3549	3935	4810	5985	*	6436	4294	*	6223	3368	3400	5568	3992	2420	2687	4809	*	*	18
+       15	6634	*	2322	322	0	*	10027	1043	1014	
+
+A 19   2235	6951	*	4504	7423	5526	*	3743	5395	2990	*	*	7144	*	*	7369	5598	1185	*	6638	19
+       0	*	*	*	*	*	*	10029	0	0	
+
+S 20   5001	*	6340	3322	5711	6032	6066	3489	3909	6237	7083	4376	5632	4073	4220	3246	1798	4145	*	*	20
+       0	*	*	*	*	*	*	10034	0	0	
+
+I 21   *	*	*	*	3513	*	6964	2704	*	847	3751	*	6822	*	*	*	*	3159	*	*	21
+       9	7374	*	0	*	*	*	10034	1000	0	
+
+S 22   5868	*	4357	3764	6411	5249	4972	4533	3714	4669	7198	3578	2814	4797	4302	2810	2992	6355	6336	5678	22
+       0	*	*	*	*	*	*	10034	0	0	
+
+C 23   6105	148	*	*	6051	*	6092	*	*	*	*	6933	*	*	5793	6345	*	6851	*	7364	23
+       19	*	6261	*	*	*	*	10034	0	0	
+
+R 24   5453	6955	3839	3343	6523	5298	4066	5100	3953	4889	6191	3605	5918	4436	4303	2163	3526	5659	6106	5409	24
+       51	5809	5897	1443	662	*	0	10032	1239	1145	
+
+S 25   4193	5573	7317	6567	2918	6289	5079	3704	*	2815	6562	5117	5589	5272	*	5042	4285	2463	*	2601	25
+       61	6315	5123	1952	431	653	1457	10035	1118	1691	
+
+S 26   3928	*	4632	3307	7117	4281	4817	5568	3936	5973	7392	4610	4345	4461	4212	1995	3179	6265	5803	6822	26
+       174	3616	4961	1668	545	1542	607	9994	2425	1738	
+
+Q 27   4055	*	3194	6224	6389	2121	5774	5493	3813	4565	6877	4372	4354	4023	4613	3335	3750	7484	6152	5619	27
+       31	*	5538	0	*	840	1181	9912	1029	2160	
+
+S 28   3881	6778	4758	4503	4275	4128	5536	5114	3516	4415	*	3990	4084	4579	5274	2300	3173	4860	7710	7460	28
+       88	6338	4413	1152	863	380	2110	9942	1432	1840	
+
+L 29   4804	*	4548	4855	*	2901	4196	5221	4326	4118	5535	4782	3332	4374	4288	3159	3476	4223	6112	4730	29
+       953	6365	1086	2585	263	*	0	9990	1059	1969	
+
+V 30   3115	3890	4672	4769	4072	5176	5187	4138	3707	4325	*	5948	4944	6321	5100	2239	5154	3775	5182	6324	30
+       596	*	1563	*	*	*	0	9207	0	7544	
+
+H 31   2855	*	3582	*	*	*	5658	5312	4778	3723	6000	3273	3095	4024	*	2228	3470	5655	*	*	31
+       1316	*	741	*	*	*	0	8421	0	8475	
+
+S 32   4432	4007	3203	4423	4303	*	*	*	*	4119	*	4347	2400	*	*	2205	2535	*	*	*	32
+       995	2870	1468	1077	927	4476	66	6442	1301	9197	
+
+N 33   3269	*	4008	*	*	3696	3896	*	*	4057	*	3295	4080	*	2892	1899	*	3923	*	*	33
+       275	4268	3042	1000	1000	2299	328	6499	1013	9217	
+
+G 34   4040	*	4279	3042	*	2820	*	*	*	*	*	3043	*	4384	3710	2040	3812	4668	*	5307	34
+       40	5176	*	0	*	140	3431	8279	1026	8622	
+
+N 35   4145	4836	4172	3149	4641	4727	3426	7332	4437	4212	6820	3303	3943	3716	5371	3513	5287	4457	*	5113	35
+       19	*	6232	*	*	956	1045	10009	0	2183	
+
+T 36   4763	7406	4240	4109	4608	4163	4901	4751	5296	3693	5601	3980	2974	4616	4701	4286	3657	4168	7212	3429	36
+       19	7242	7321	0	*	308	2379	10029	1018	1875	
+
+Y 37   3680	7157	5163	4447	5479	4663	7293	5168	4225	5136	6987	4683	4899	4342	3897	2933	3212	3829	5100	2966	37
+       26	5818	*	1856	466	1297	754	10035	1201	1201	
+
+L 38   6419	*	*	*	4753	5034	6777	2350	4327	2656	3693	6347	7110	6131	*	6164	7197	1562	5346	6403	38
+       18	6310	*	834	1188	*	0	10036	1137	1064	
+
+N 39   4374	7033	7193	4369	3046	5161	3980	4324	5200	3854	*	4362	*	4984	4572	2959	3648	4281	5572	2975	39
+       15	*	6556	*	*	*	0	10036	0	1064	
+
+W 40   *	7284	*	*	5793	6428	*	*	6143	4434	*	*	*	*	*	7269	*	5359	219	6188	40
+       34	6302	6569	1484	638	*	0	9992	1142	1243	
+
+Y 41   *	4737	6564	6398	2342	6767	5598	5775	5225	3734	5167	5540	*	5687	5699	5419	5081	5042	6191	1294	41
+       31	6197	7001	2535	273	1695	533	9991	1353	1504	
+
+L 42   7241	6122	*	6976	4189	*	5312	6991	2204	3940	6474	7473	5250	3048	1546	5059	6470	4768	*	5926	42
+       142	4685	4192	2143	370	1000	1000	10017	1539	1560	
+
+Q 43   6192	*	4485	4585	5742	4408	3687	5327	3202	4529	6964	5524	4932	1696	4307	3842	4739	5734	5916	6011	43
+       67	5910	5104	354	2199	1511	624	9973	1310	2246	
+
+K 44   4223	5434	3665	4545	6185	4223	4709	4740	3225	3798	7479	3904	4152	4272	3628	3452	3701	4930	*	5836	44
+       175	6907	3237	2807	222	2006	413	9951	1001	2259	
+
+A 45   3702	6833	3942	3173	4555	3973	6186	5975	4610	3639	6964	4210	2013	5218	5551	4241	4702	6030	5889	*	45
+       79	6181	4653	2241	343	2365	311	9819	1122	3645	
+
+G 46   4225	*	3654	3962	5710	1665	6782	5631	4645	7453	*	4139	5960	5406	4245	2857	3775	5661	6211	*	46
+       77	4750	6054	2665	248	1424	673	9761	1441	3660	
+
+Q 47   4463	6962	4525	3259	*	2973	6251	7141	2680	5060	7223	4734	4377	2747	4016	3726	4237	6126	*	5716	47
+       45	6075	6002	2164	364	*	0	9865	1117	2997	
+
+S 48   3396	7320	4269	4336	7282	2728	4815	4973	3757	5341	4363	4308	4241	3838	4953	3306	3928	4239	*	*	48
+       106	4635	5024	532	1697	*	0	9841	1706	3228	
+
+P 49   4535	5152	5140	4797	4931	4906	6601	4670	6533	2547	6920	5527	1579	4403	5776	5594	4440	4648	*	5057	49
+       33	7309	5966	0	*	1228	803	9724	1000	3649	
+
+K 50   6920	*	4098	2498	*	4255	4897	4224	3558	5163	5116	4612	4668	2830	3826	4384	3828	3933	*	*	50
+       21	6932	7336	2322	322	1642	557	9846	1000	2803	
+
+L 51   5090	7545	6196	5039	2997	4975	5642	4557	4868	2599	6094	4494	5124	5392	4477	3456	4726	3624	3902	3856	51
+       34	*	5428	*	*	*	0	9890	0	2317	
+
+L 52   6767	5269	*	7320	5331	5343	6905	2284	*	1470	3756	5674	5821	5648	*	4961	5354	2999	*	5522	52
+       7	7605	*	1000	1000	1866	463	9839	1000	2699	
+
+I 53   3344	5098	*	5764	3713	4188	7252	2564	4843	3266	4166	5163	5710	6002	6685	4415	4220	3224	*	3779	53
+       82	4514	6457	1874	460	*	0	9942	1877	2232	
+
+Y 54   4168	5196	5715	5282	3744	3976	4507	5303	6884	4073	5528	4012	7229	4789	4527	2566	5158	4739	4829	2666	54
+       47	5597	6445	1767	502	*	0	9933	1255	2493	
+
+K 55   5475	5399	5072	5635	4185	4105	5712	3221	4272	3341	6926	5343	7050	4140	4727	3129	2838	4838	*	3471	55
+       73	4537	7385	747	1307	*	0	9922	1711	2723	
+
+V 56   4733	6049	3503	5019	4958	4034	4147	4863	5039	4215	7276	2737	5448	4304	4895	3556	3456	4708	6215	3868	56
+       179	3096	*	1667	546	3011	191	9920	2926	2948	
+
+S 57   4305	5556	3879	5497	6168	2777	5043	7241	3733	4767	7471	3497	5218	5229	5073	2640	3264	4540	6182	5029	57
+       249	2793	6115	1796	490	2175	361	9918	3465	2880	
+
+N 58   4560	*	3612	3577	6962	3638	*	5073	3354	6245	5456	3346	6845	4076	3997	3486	3189	3836	*	4563	58
+       91	4367	6312	1974	424	3794	108	9935	1660	2729	
+
+R 59   5477	*	5673	3474	4840	3287	4523	3958	3906	4182	6113	4832	4800	4162	4137	3584	3785	4196	*	3438	59
+       84	4864	5510	1403	685	1154	861	9945	1473	2814	
+
+F 60   3931	*	3221	3394	5865	2919	5551	6254	3400	5096	5420	3920	4332	3736	5341	3512	4306	5607	7336	5600	60
+       12	*	6968	*	*	2467	288	9993	0	2327	
+
+S 61   4324	*	3623	2794	*	3679	6041	4371	3233	5497	6837	3731	2928	4318	5369	3664	5290	4423	7333	7049	61
+       84	5896	4652	1000	1000	3590	125	9986	1296	2257	
+
+G 62   4952	*	3374	3248	*	2727	5661	7385	3862	4088	7122	3257	4753	5745	4039	3312	3229	6030	*	6554	62
+       165	3934	4546	1573	591	1878	458	9966	2094	2870	
+
+V 63   5752	6579	6038	5447	3393	5494	6366	4203	4542	2928	6377	3779	5010	6206	5089	4185	3830	2769	6853	2887	63
+       126	3705	7142	1930	439	1449	658	9792	2264	3123	
+
+P 64   4869	5643	3835	3540	5746	4837	4770	5106	2749	5661	5895	3855	3451	6272	3295	3170	4007	*	7500	5021	64
+       172	3794	4636	405	2031	1278	767	9893	2324	2467	
+
+D 65   5508	*	2872	3050	5902	2191	7163	6641	5008	6831	7298	3284	3645	4833	5330	3080	4985	5591	*	6858	65
+       121	4093	5508	1496	632	1621	567	9880	2306	2493	
+
+R 66   6108	*	6002	4615	6659	4572	4401	*	3254	5940	*	5158	4536	4503	1077	4262	5622	4406	*	*	66
+       113	3728	*	891	1118	1763	504	9910	2119	2466	
+
+F 67   4748	6293	7018	7126	1495	5867	6192	3529	6184	3700	5587	7082	6885	6843	6367	4100	5003	3387	5661	3187	67
+       17	6380	*	1000	1000	2106	381	10005	1140	2022	
+
+S 68   4655	*	4262	3721	6522	5730	5162	4582	3405	3959	6919	4181	7212	4702	4013	2541	2534	4479	*	6116	68
+       30	5617	*	2172	362	2207	352	10027	1335	1765	
+
+G 69   3012	6879	5707	5622	4035	3418	5140	2957	6982	3053	4272	5587	5117	6283	5171	4030	3805	3457	7548	5891	69
+       46	*	4995	*	*	2896	208	10054	0	1907	
+
+S 70   5442	6444	5044	3861	5914	5839	7169	4629	3878	4715	6557	3700	5320	4264	3602	2267	2953	3969	6939	5451	70
+       278	2566	7265	807	1223	882	1128	10055	4158	2410	
+
+G 71   5077	7302	4055	4442	5312	2874	4724	4955	3155	4604	5175	4880	6245	4461	2605	3835	3648	4708	*	*	71
+       373	2134	*	1031	970	1971	425	10083	4440	1843	
+
+S 72   4035	*	2802	3960	7642	4447	4426	6232	4490	5944	6256	3990	3599	5070	6170	2425	3239	4400	5777	*	72
+       119	3773	7370	544	1671	0	*	10086	2326	1602	
+
+G 73   4344	*	3587	3696	6029	2909	5629	5043	2664	6225	7423	3840	4760	3758	4040	3006	4634	*	*	6939	73
+       99	4246	6169	478	1826	*	0	10139	1995	1000	
+
+T 74   5526	5594	4325	4509	6571	2859	6063	5694	3438	4840	5928	2967	6153	4857	3829	2923	3006	4860	*	*	74
+       124	3727	7224	1561	597	*	0	10162	2320	1409	
+
+D 75   5201	*	3237	4351	5340	4735	5341	6280	3768	4338	6365	3389	5078	4085	3764	2897	2974	4374	*	6002	75
+       36	5697	7479	511	1745	2371	310	10148	1267	1560	
+
+F 76   3908	4303	*	7356	2402	4345	5149	5153	6150	3039	6923	6647	5702	6504	6339	3052	5760	3203	5685	3081	76
+       60	4871	7255	287	2472	1257	782	10151	1528	1537	
+
+T 77   6085	*	4760	5213	5318	4975	4679	5503	3965	4654	5808	4494	3955	4728	4995	1961	2518	4267	7294	6145	77
+       31	5573	*	2173	362	1234	799	10134	1344	1423	
+
+L 78   7149	7289	*	6028	4566	7247	*	3419	*	594	5034	*	6152	7323	7139	*	5780	3810	5720	*	78
+       0	*	*	*	*	*	0	10133	0	1187	
+
+K 79   5305	7665	5620	3470	5521	5623	3986	3505	4338	4403	7552	5090	5098	4444	3254	4580	1996	4355	7088	7394	79
+       21	*	6127	*	*	958	1043	10133	0	1187	
+
+I 80   7131	*	6865	7433	4617	*	*	981	5135	2331	4593	*	*	*	7218	4764	5691	3556	7056	7151	80
+       9	*	7406	3322	152	*	0	10112	1020	1363	
+
+S 81   4113	*	5784	3797	5655	5428	4300	4883	3139	4216	6573	3857	3927	3859	3427	2939	3388	7017	*	5943	81
+       0	*	*	*	*	*	0	10111	0	1469	
+
+R 82   3983	*	2817	5217	*	3600	4457	*	3452	7369	*	2254	5293	4163	3396	3317	5538	5968	*	5731	82
+       8	*	7429	*	*	*	0	10111	0	1469	
+
+V 83   2820	7023	6331	*	4996	6713	5131	4227	7116	1741	6258	*	5184	*	*	4716	4143	1868	*	*	83
+       0	*	*	*	*	2754	231	10106	0	1590	
+
+E 84   4911	*	5420	3420	*	6149	6100	7602	3104	5777	7619	5036	5415	2489	3018	2829	2634	6268	*	7364	84
+       0	*	*	*	*	*	0	10107	0	1485	
+
+A 85   4179	*	5729	3220	4628	7232	6345	4628	3553	2947	4186	*	2704	4908	4364	4484	4131	3502	*	5406	85
+       16	6540	*	0	*	*	0	10107	1083	1485	
+
+E 86   3643	7220	3706	2160	*	4694	*	6234	4151	*	6013	3585	*	4875	4164	2096	3940	5888	*	*	86
+       0	*	*	*	*	2315	324	10101	0	1485	
+
+D 87   6861	*	381	5789	*	5809	4007	*	6357	7150	*	4840	*	5575	5596	7250	5882	*	*	7391	87
+       0	*	*	*	*	1675	542	10106	0	1363	
+
+L 88   3056	7285	5290	3224	7712	4215	5520	6296	7424	6453	4970	4508	6397	7721	5743	1552	2824	5095	*	7047	88
+       10	*	7223	*	*	785	1253	10120	0	1208	
+
+G 89   1968	*	5811	5827	*	750	6325	*	*	6908	*	5681	6808	*	7071	4614	*	5892	*	*	89
+       0	*	*	*	*	*	0	10118	0	1175	
+
+I 90   5620	6926	5549	4962	4054	6453	5851	3271	5026	3216	4446	3652	*	4960	4939	4738	2192	3173	6861	5561	90
+       0	*	*	*	*	1106	901	10079	0	1175	
+
+Y 91   *	5489	*	*	4055	7124	4974	*	*	5642	*	*	*	*	*	*	5867	5905	6912	293	91
+       10	*	7221	*	*	*	0	10094	0	1030	
+
+F 92   5508	7000	*	4816	2701	6926	4945	3464	7351	4130	6784	6827	*	4665	4543	4370	3245	4761	4792	1947	92
+       0	*	*	*	*	958	1043	10080	0	1187	
+
+C 93   7173	108	*	*	*	*	6310	7147	7122	6086	*	*	*	*	*	5979	*	6997	*	*	93
+       11	6995	*	1282	764	0	*	10053	1140	1020	
+
+S 94   1827	6288	6118	3594	*	3212	6705	5634	4671	5241	4464	*	*	3350	4524	3929	4994	3312	*	5618	94
+       35	6030	6849	1147	866	*	*	9730	1114	0	
+
+Q 95   2649	5282	*	5929	4313	6721	6680	3710	3895	3406	5718	6109	6781	4506	4638	3781	4714	2039	*	6643	95
+       232	3274	4466	1497	631	*	0	9573	2323	1000	
+
+T 96   3736	5704	4517	4313	4895	3532	5982	4598	3947	5654	5775	4206	*	5152	3657	2332	3940	4677	4759	5046	96
+       447	2025	5574	1242	793	2979	196	9582	3705	1728	
+
+T 97   3427	5657	3057	4236	4260	3673	*	5134	6503	4634	6305	3169	3749	5635	5308	3449	3303	5145	*	4682	97
+       172	3749	4714	2233	345	2950	200	9314	1792	1893	
+
+H 98   4891	4867	3644	5516	6604	2853	4911	*	4797	4595	5400	3060	3639	6526	4253	2841	3536	5424	*	4847	98
+       184	3505	4994	990	1011	1010	990	9284	1980	2206	
+
+V 99   4672	*	3760	5279	*	2550	5804	6574	4294	4769	6790	2932	4032	4960	4893	3514	4634	4518	5306	3175	99
+       149	3657	5754	1296	755	1602	577	9230	2341	2244	
+
+P 100  3045	*	4265	3392	5376	3999	*	4543	3716	4874	7004	4668	3959	2993	4909	3710	4391	4280	*	4448	100
+       242	3275	4282	1420	675	290	2455	9281	2192	2197	
+
+P 101  3886	*	4313	5189	5010	6021	5006	4300	3456	2068	5210	5649	5038	4032	5947	4620	3904	4044	*	3757	101
+       69	4427	*	2001	415	578	1600	9289	1643	1638	
+
+T 102  6237	6606	4950	4620	5640	4505	5836	3557	4318	3053	4674	*	*	4367	4924	3859	4135	2237	*	3215	102
+       12	6929	*	1399	688	1238	796	9337	1220	1471	
+
+F 103  5656	5343	5842	5975	1306	*	*	4405	*	4037	5614	*	6222	4873	4507	4339	4104	4620	3383	4223	103
+       34	6213	6668	1000	1000	*	0	9375	1009	1217	
+
+G 104  4535	5525	6459	5614	*	855	6462	6637	4652	5330	*	5695	4386	*	6424	3064	4694	6738	6942	6656	104
+       33	6403	6550	0	*	*	0	9362	1349	1352	
+
+G 105  5371	4897	3968	3064	*	3142	5123	*	4279	6550	5539	3254	3482	3336	3897	3400	3913	6427	*	*	105
+       0	*	*	*	*	921	1083	9161	0	1765	
+
+G 106  3681	6707	*	*	6482	636	5475	6765	*	6654	6485	4940	5581	6228	5415	4697	5518	5121	5295	*	106
+       0	*	*	*	*	1667	546	9242	0	1298	
+
+T 107  4097	*	6290	6761	*	4915	*	4467	5354	4804	6572	6781	6482	5510	*	3708	903	4010	*	4188	107
+       43	5081	*	448	1905	*	0	9247	1240	1162	
+
+K 108  *	6621	6311	5658	4304	*	5644	4988	2278	4410	4363	5014	4969	3169	2280	6534	3453	*	*	3809	108
+       17	6452	*	0	*	0	*	9123	1000	1162	
+
+L 109  *	*	*	*	6455	4813	6525	3443	6318	872	*	*	6354	6473	6550	6692	6722	2070	*	*	109
+       16	6463	*	2000	415	*	*	9102	1000	0	
+
+E 110  6293	6351	4810	4049	*	5107	6399	3460	6500	3828	*	4710	5404	3812	3804	3651	2083	3506	*	4120	110
+       20	6173	*	2322	322	*	*	8904	1000	0	
+
+I 111  4511	6097	*	*	5193	*	*	3156	*	4356	5355	*	5271	*	6522	4081	6284	690	*	*	111
+       0	*	*	*	*	*	*	8823	0	0	
+
+K 112  4766	*	4123	2599	*	*	5608	4857	2703	2760	4925	*	*	4612	3275	3092	3768	5897	*	*	112
+       0	*	*	*	*	*	*	8240	0	0	
+
+R 113  *	*	3597	3402	*	1653	*	*	5011	*	*	4316	2983	*	2509	5207	4069	4841	*	*	113
+       0	*	*	0	*	*	*	7078	0	0	
+
+//
+�HHsearch 1.5
+NAME  56a96aae83069ea95d56b56dc6e8cd1a
+FAM   
+FILE  56a96aae83069ea95d56b56dc6e8cd1a
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 14:44:52 2013
+LENG  172 match states, 172 columns in multiple alignment
+FILT  146 out of 1066 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  7.4 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCEEEEEEECCCCCCEECCHHHHHHHHHHHCCCEEEEEEEECCCHHHHHHHHHHHHHCCCCCEEEEECCCCCCCCCCHHHHHHHHHCCCCC
+CHHHHHHHHHCCCCCCHHHHHHCCCCEECCEEEEECCCCHHHHHHHHHHHHHHHHHHHHCCCCHHHHCCCCC
+>ss_conf PSIPRED confidence values
+9988889888589999951888827525799999999987995889987289999999999999854898989981998899985579999998578787
+659999885043688225565440536999899988999899999999999999986606664766323799
+>Consensus
+xxxxxxxxxxxrvxIixtGdExGxxxDxnxxxlxxxLxxxGxxvxxxxxvxDdxxxIxxxlxxxxxxxxxDlVittGGtgxgxxDxtxxalxxxxxxxlx
+gxxxxxxxixxxxpgxxxxlsrxxxgxxxxxxixxLPGxPxaxxxxxxxxlxpxlxxxxxxxxxxxxxxxxx
+>56a96aae83069ea95d56b56dc6e8cd1a
+MSQVSTEFIPTRIAILTVSNRRGEEDDTSGHYLRDSAQEAGHHVVDKAIVKENRYAIRAQVSAWIASDDVQVVLITGGTGLTEGDQAPEALLPLFDREVE
+GFGEVFRMLSFEEIGTSTLQSRAVAGVANKTLILAMPGSTKACRTAWENIIAPQLDARTRPCNFHPHLKKGS
+>gi|213966091|ref|ZP_03394279.1| molybdenum cofactor biosynthesis protein [Corynebacterium amycolatum SK46]gi|213951289|gb|EEB62683.1| molybdenum cofactor biosynthesis protein [Corynebacterium amycolatum SK46]
+--------QVRNAFVVLVGDHFE-NPDGAASLMVELLEEDGYSVDAVVSTGAVKREIRKALDTAV-VGGADLVVTVGGVGVGPRAKTPDATRKVLDVRLQ
+GIEQAIRNSGMGAGALDAGLSRGLAGVSGQTVIINLAESRAAVRDGMATI----------------------
+>gi|145608252|ref|XP_360715.2| hypothetical protein MGG_03258 [Magnaporthe oryzae 70-15]gi|145015744|gb|EDK00234.1| hypothetical protein MGG_03258 [Magnaporthe oryzae 70-15]
+-------QPMPIVRVFSTGKELlreqnevanganqphgrdklhtadpreSSIRDVNGVFLTAAFREVGAESQFLGQLADETKDIADAVSHILSSNPTpNV
+IVTSGGVSVGKFDHVRGALEQHV----HGTRILFHGLAIR-PGHPVLFAMLPNMAGRETAFFGFPGNPGAAAACFRFLAVPYVRHL--------------
+>gi|220905312|ref|YP_002480624.1| MoeA domain-containing protein domain I and II [Desulfovibrio desulfuricans subsp. desulfuricans str. ATCC 27774]gi|219869611|gb|ACL49946.1| MoeA domain protein domain I and II [Desulfovibrio desulfuricans subsp. desulfuricans str. ATCC 27774]
+-------WDRLQLHLAAVADPAptpkkngpavtaaaDGII----PALAALAQDIDCHVQTAPCLPADAGVVRDFLQSALK--AGAHALLLCATGDDALTA
+VRDLMERE------G-RIVAPDIGLL-PGAPAMT-----AVYEGRPVFCLPCSPAGSLTAFDALVAPALLL---------------
+>gi|315161293|gb|EFU05310.1| molybdenum cofactor synthesis domain protein [Enterococcus faecalis TX0645]
+-------GKSMKAEIIAVGTEllLGQVVNTNATFLSEELAALGIDVYYQTVVGDNGGRLETLLTEAEQR--SDLIVLCGGLGPTEDDLTKQVVAQHLHKS
+LVEDQEGLNRLhqffqqsKR-PMTeNNLRQVLAIEGGqvlqnptglavgsfvtEGTTSYLLLPGPPNELIPMFQQAARPLLIDA--------------
+>gi|331003726|ref|ZP_08327220.1| hypothetical protein HMPREF0491_02082 [Lachnospiraceae oral taxon 107 str. F0167]gi|330412109|gb|EGG91504.1| hypothetical protein HMPREF0491_02082 [Lachnospiraceae oral taxon 107 str. F0167]
+------PYRQKKVGIVTTGNEvyYGRIKDTFTPVVINKMKQYGAEIIAHEISSDDVEMEIECIKKVMAA-GADIVLCTGGMSVDPDDKTPYAIGQN----
+--ASRVITYGAPVL-PGAMFML-----AY-ggENenITFMGLPGCVMYEKKTIFDIVLPRI-----------------
+>gi|150377598|ref|YP_001314193.1| molybdopterin binding domain-containing protein [Sinorhizobium medicae WSM419]gi|150032145|gb|ABR64260.1| molybdopterin binding domain [Sinorhizobium medicae WSM419]
+-------VRSPRIRVIDVASV--NHETFSTRLVAECVMTSNGTIAAIETANRDAASIAAALAGE----ACDLLLLIGGTGAGRLDATAEALTLS------
+G-ASIAHGIAVRP-GDTTAI-----GRLGSTPLVALAGAPDHVFAGFLAFVQPVLDRL--------------
+>gi|329120716|ref|ZP_08249378.1| CinA family protein [Neisseria bacilliformis ATCC BAA-1200]gi|327460513|gb|EGF06849.1| CinA family protein [Neisseria bacilliformis ATCC BAA-1200]
+----------TRdFNLIIIGDEilHGSRQDKHFPYFKNLLETHGLRLNSVQYLPDERPQLAKQLERSFSDG--LPAFVTGGIGATPDDHTRQAAAEAAKC
+PLQRHPEAAALIEAVtrKRGestdspehrQRLHMADFPQGAqiipnpYNGIagftllHHHFLPGFPVMAHPMAEWVLHTHYAESF-------------
+>gi|332025568|gb|EGI65731.1| Gephyrin [Acromyrmex echinatior]
+---------QLSIGVLSIGNNLeepgkplksGYVYDISRIIIISLLKNNDFSSLDFGIVNNTSSSIKENIKKALD--KVDILVTLGSAN--DKDLLKQIL
+LEYFEAEI-----YFGNINIK-PGKSTTL--ATCKINDkIKYLLCLSGNPVTAFIIAQALLLPFLKNM--------------
+>gi|262197738|ref|YP_003268947.1| 4-diphosphocytidyl-2C-methyl-D-erythritolsynthas e [Haliangium ochraceum DSM 14365]gi|262081085|gb|ACY17054.1| 4-diphosphocytidyl-2C-methyl-D-erythritolsynthas e [Haliangium ochraceum DSM 14365]
+------GFRPRRVGMVLTELPgvKESQLGRAAANMRARLQRFDCELSDELRCAHTPEAVAAAIVRLRQG-GAGMVLVLGASAIVDrRDVVPSAIEDI---
+---G--GVVEHFGMPvDPGNLLLI-----ARLDEIPVLGVPGCARTLKPsGFDWVLARLCAD---------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1000	0	0	
+
+S 2    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	2
+       0	*	*	*	*	*	*	1000	0	0	
+
+Q 3    *	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	3
+       0	*	*	*	*	*	*	1000	0	0	
+
+V 4    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	4
+       0	*	*	*	*	*	*	1000	0	0	
+
+S 5    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	5
+       0	*	*	*	*	*	*	1749	0	0	
+
+T 6    *	*	*	*	*	*	*	*	1020	*	*	*	*	*	*	*	980	*	*	*	6
+       0	*	*	*	*	*	*	1749	0	0	
+
+E 7    *	*	*	2148	*	2937	*	*	2181	*	*	*	1240	*	*	*	*	*	*	*	7
+       0	*	*	*	*	*	*	3120	0	0	
+
+F 8    5847	*	5781	*	2633	4027	4322	5700	3660	4190	6536	*	5258	6450	4081	5800	5091	3032	4815	2144	8
+       46	*	5003	*	*	*	*	7444	0	0	
+
+I 9    4140	6682	4256	4240	*	4389	5529	5193	2138	6313	6661	6055	3614	3790	2060	5337	5133	5659	*	*	9
+       15	6548	*	2516	277	0	*	7447	1071	1128	
+
+P 10   6920	*	7053	5618	*	6166	5661	*	2762	5974	5707	6836	2123	4581	1852	3532	3659	5326	*	*	10
+       45	6779	5550	1314	742	0	*	7557	1075	1001	
+
+T 11   6316	6553	*	6789	5430	6037	*	3279	5802	2638	2941	*	1642	*	4972	*	5955	3130	6466	5411	11
+       29	5996	7832	1034	966	0	*	8044	1130	1056	
+
+R 12   5430	*	7579	6173	6701	6080	7232	7226	2343	5123	*	3273	*	5745	1560	4115	2969	4914	*	6123	12
+       25	5877	*	1125	885	0	*	8143	1137	1051	
+
+I 13   2028	6185	*	*	4040	6083	*	2486	*	4416	*	*	*	*	*	5033	5712	1422	*	5835	13
+       11	7014	*	2322	322	*	*	8156	1009	0	
+
+A 14   1942	3904	*	3950	5639	2134	6419	4836	5286	4802	*	6694	*	*	4612	3518	4904	4418	6818	5310	14
+       0	*	*	*	*	*	*	8156	0	0	
+
+I 15   6761	7089	*	*	4348	*	*	1258	*	2242	4625	*	*	*	*	6547	*	1980	*	*	15
+       15	*	6596	*	*	*	*	8156	0	0	
+
+L 16   5288	*	*	*	3545	*	*	1392	*	1701	5572	*	*	*	*	*	6965	2547	*	*	16
+       6	*	7960	*	*	0	*	8130	0	1039	
+
+T 17   2679	7500	6063	*	7086	5365	*	3446	*	3746	7411	6254	3872	*	6730	2199	2612	2762	*	*	17
+       52	*	4828	0	*	0	*	8156	1000	1000	
+
+V 18   5606	*	*	*	6786	7024	*	2365	*	4667	7142	*	*	*	*	5020	1254	1934	*	6571	18
+       0	*	*	*	*	*	0	8144	0	1269	
+
+S 19   4486	*	*	7121	*	486	*	*	*	*	7015	5652	*	*	*	2522	5327	*	*	7024	19
+       0	*	*	*	*	*	0	8144	0	1269	
+
+N 20   5043	*	1008	7605	6756	4636	7080	*	5517	5527	*	2752	7285	7486	*	3142	3422	*	*	*	20
+       44	5065	*	834	1187	0	*	8150	1227	1269	
+
+R 21   *	*	5618	668	*	6734	6059	*	5253	6862	*	5195	4160	7515	5007	3380	3894	6964	*	*	21
+       845	1223	6073	1426	671	*	*	8162	4378	0	
+
+R 22   3758	6719	6994	4364	6985	4053	4860	3172	4168	2538	5474	4270	7194	5668	3500	3496	6089	3220	*	5720	22
+       695	1423	6738	3027	189	*	0	8137	3971	1071	
+
+G 23   3864	*	3713	4965	7441	652	7389	*	7125	7341	5742	5633	7034	*	6086	4683	4781	5808	7088	*	23
+       121	4179	5291	2613	257	354	2200	8119	1461	1232	
+
+E 24   6142	7563	4587	2184	*	4604	5388	4970	2813	4251	5949	6914	5624	2941	3388	4737	3654	6804	*	5025	24
+       139	3448	*	2486	284	279	2507	8130	2039	1300	
+
+E 25   4542	6080	4937	5198	*	5913	6943	2292	3908	5080	6913	4980	6073	5466	3348	4364	3122	2401	*	5116	25
+       73	4336	*	1885	455	973	1027	8162	1456	1060	
+
+D 26   4288	6280	4469	3642	5345	7016	7130	3455	4459	3017	*	*	4214	4747	2745	5505	4410	3262	*	3360	26
+       47	5943	5994	619	1519	*	0	8166	1073	1000	
+
+D 27   4781	*	809	3648	*	5002	*	*	*	6715	*	2490	6846	6482	5768	4959	5383	*	*	*	27
+       14	*	6727	0	*	2044	401	8138	1000	1165	
+
+T 28   3633	5852	7191	4459	5961	4525	5694	5741	3701	4190	6930	*	5441	7119	4257	2122	2075	4464	*	5833	28
+       27	7191	6426	3322	152	*	0	8140	1000	1190	
+
+S 29   3540	6215	6068	*	4881	6782	4158	4051	*	5567	*	1027	*	*	6715	2972	3849	6939	*	*	29
+       13	6825	*	0	*	2817	221	8128	1063	1333	
+
+G 30   2645	*	7428	6464	5042	2101	6198	5272	6894	4106	6236	*	7056	6107	4484	2081	3153	5699	*	7445	30
+       22	*	6024	*	*	409	2018	8128	0	1276	
+
+H 31   2974	*	5535	5152	5218	5103	4226	4864	5628	3971	7130	7273	2060	4293	3728	4117	4744	4668	6250	3878	31
+       0	*	*	0	*	590	1576	8145	1097	1184	
+
+Y 32   3490	7166	7096	5986	3062	5313	*	3465	4497	2531	3642	6042	*	6262	7407	4861	4189	3558	4350	3462	32
+       15	*	6590	2000	415	0	*	8171	1012	1012	
+
+L 33   4394	6803	*	*	4405	*	6885	1890	*	1104	5334	*	*	7242	*	*	6087	3230	*	*	33
+       12	6921	*	1000	1000	*	0	8155	1005	1039	
+
+R 34   1973	4859	6872	4224	7480	4618	*	4258	3338	5839	4969	6580	5135	4224	3688	3963	3929	3450	*	6559	34
+       12	6900	*	2000	415	*	0	8170	1002	1039	
+
+D 35   2239	*	3939	2509	*	4244	6931	*	4035	6277	*	4130	5750	4628	3471	2705	5347	6263	7094	6996	35
+       0	*	*	*	*	*	0	8170	0	1039	
+
+S 36   3849	6069	*	3748	4129	7211	6034	3888	5440	1720	5784	7440	*	5022	3602	4699	4394	4246	4942	4068	36
+       11	7001	*	2000	415	*	0	8170	1000	1039	
+
+A 37   3773	5002	7125	*	3936	7398	*	3470	*	816	5336	*	*	*	*	7098	*	3243	7290	6056	37
+       14	*	6684	2322	322	0	*	8170	1039	1039	
+
+Q 38   4103	6892	4391	2377	4850	5940	5079	6025	3495	4648	6278	4772	5963	3550	2758	3620	3855	*	7036	6382	38
+       42	*	5137	*	*	*	0	8174	0	1017	
+
+E 39   3348	*	4078	2321	7147	4177	6885	*	3170	4976	5454	4180	6918	4224	2828	3134	4861	*	*	*	39
+       74	4477	7623	192	3008	*	0	8107	1387	1297	
+
+A 40   2892	5331	5580	5504	4122	*	3775	4224	5503	3262	5377	4924	5514	4531	3146	4869	7294	5378	3643	3220	40
+       65	4936	6437	1556	600	1548	604	8109	1398	1350	
+
+G 41   5542	*	4172	4954	6696	479	6996	*	5704	5563	6152	5999	6293	6970	5417	5504	7069	*	*	6340	41
+       69	4942	6122	581	1593	488	1800	8130	1288	1319	
+
+H 42   2882	3995	6045	7651	3449	3211	4394	3120	5086	3478	5410	*	*	*	7302	5570	7451	3083	4756	3497	42
+       53	5000	7651	2540	272	642	1477	8155	1208	1241	
+
+H 43   5973	*	3416	1855	6837	6809	3967	5541	3297	4631	*	4489	5309	4702	3878	3652	3939	4385	*	*	43
+       34	5405	*	342	2246	1748	510	8172	1170	1087	
+
+V 44   4119	5671	7156	*	5207	7214	5118	2967	*	2590	*	7589	3874	*	7165	4760	4092	1416	*	6881	44
+       39	6737	5862	3408	143	0	*	8170	1121	1039	
+
+V 45   3958	6978	4594	3868	5401	4739	6318	2736	3916	4260	7221	4354	7006	4969	4008	4495	3291	2753	6368	6472	45
+       21	*	6128	*	*	0	*	8192	0	1102	
+
+D 46   3053	*	3077	4447	4244	3304	5606	5798	4258	5291	6434	6026	6754	4697	2969	3606	4683	4908	6335	3725	46
+       0	*	*	*	*	0	*	8190	0	1061	
+
+K 47   3722	6242	7003	3909	4389	4664	4597	3093	5507	3715	5363	6266	5570	5613	3915	4378	3162	3157	7386	3838	47
+       45	6097	5979	0	*	*	*	8196	1086	0	
+
+A 48   3809	6132	7482	3182	4670	2503	5792	4345	3899	3424	7380	6855	4013	5389	3812	4588	3532	4349	*	7199	48
+       8	*	7473	*	*	0	*	8172	0	1153	
+
+I 49   4809	5865	6892	*	7039	*	4259	1942	5263	4206	6368	6876	4194	7267	3898	4453	3034	2457	*	4654	49
+       0	*	*	*	*	0	*	8197	0	1000	
+
+V 50   3702	3929	*	6101	7474	6458	7451	2728	7200	2501	6273	*	7117	*	*	4314	5717	1374	7386	7748	50
+       0	*	*	*	*	*	*	8196	0	0	
+
+K 51   3434	*	5058	4505	*	3267	*	*	2757	*	*	5540	1653	5238	3061	4407	5149	*	7360	6118	51
+       0	*	*	*	*	*	*	8196	0	0	
+
+E 52   5221	*	445	3751	*	7093	5578	*	*	6273	*	4820	5843	5967	5225	5938	*	7429	*	7526	52
+       22	*	6068	*	*	*	*	8196	0	0	
+
+N 53   7087	*	1147	2932	6953	4363	5342	7414	5677	*	*	3261	*	6805	5783	3812	3670	5492	*	*	53
+       30	7228	6152	0	*	978	1023	8180	1077	1096	
+
+R 54   3079	*	7351	3298	4669	5461	5538	3818	5168	3869	4098	*	2388	5900	3181	4682	5098	4494	*	4870	54
+       6	*	7980	*	*	0	*	8182	0	1160	
+
+Y 55   3653	*	2472	2105	*	4156	5636	6904	5150	5938	7465	3840	5390	4599	5487	3927	5331	3630	5662	5337	55
+       0	*	*	0	*	0	*	8196	1000	1000	
+
+A 56   2118	*	3843	2719	*	5648	*	6889	5680	3120	6206	7155	5611	3344	4098	3605	4833	3970	*	7335	56
+       10	7132	*	0	*	*	*	8196	1000	0	
+
+I 57   *	*	*	6813	4180	*	7519	1003	*	2004	4958	*	7033	7507	*	*	7477	3008	*	7132	57
+       6	*	8008	*	*	*	*	8196	0	0	
+
+R 58   2541	6298	6616	3684	6878	5884	6547	4986	2564	3598	6286	7106	*	3905	3089	4176	4075	3692	*	6419	58
+       0	*	*	0	*	0	*	8196	1000	1000	
+
+A 59   3083	*	3491	2471	7358	4132	5689	7032	3504	5544	6877	3706	*	3681	3639	3281	4452	*	7100	6185	59
+       24	6273	8008	0	*	*	*	8196	1043	0	
+
+Q 60   1978	4414	*	3262	5785	5341	6339	4116	4418	4075	5244	7047	*	4018	4301	5335	3069	4221	6204	5750	60
+       22	6687	7448	0	*	*	0	8196	1017	1000	
+
+V 61   4653	6941	*	*	3794	*	*	2189	*	1411	4403	*	*	6267	*	*	*	2256	*	6059	61
+       30	6305	6941	791	1245	0	*	8198	1124	1044	
+
+S 62   3547	6168	4006	2894	6586	6305	5680	7408	3139	3637	5465	3898	7094	3640	3203	3635	4181	5306	*	6089	62
+       24	6447	7673	1000	1000	*	0	8180	1040	1005	
+
+A 63   3728	*	3336	2818	6940	5483	4804	*	3272	6568	5113	4081	*	3595	2764	3322	4450	5952	*	5412	63
+       47	5663	6323	2135	373	1390	693	8184	1116	1054	
+
+W 64   1640	5904	5401	6956	5870	5237	*	4646	*	2417	4534	5621	6315	5125	4819	3885	5956	4869	3608	5665	64
+       107	5585	4301	1072	932	*	0	8175	1137	1135	
+
+I 65   3509	7618	6423	5282	4211	5485	7332	2762	3577	1758	5402	7568	*	6049	5052	4509	4932	3708	5826	6026	65
+       159	6982	3373	0	*	2437	295	8128	1000	1615	
+
+A 66   3585	5667	2319	2885	*	4267	7094	6747	3267	4978	6974	4967	5258	3706	3481	3362	5182	*	*	*	66
+       947	5236	1137	3109	178	2301	327	8071	1144	2332	
+
+S 67   4065	*	2679	3656	5449	4492	6082	5076	4523	6293	6064	3514	*	4669	2256	3193	4413	5091	*	*	67
+       709	4429	1549	1482	640	2945	201	7510	1159	4986	
+
+D 68   5614	4756	4522	4777	6229	2059	5790	*	5724	4721	*	3480	3815	5762	3761	2473	5535	5660	4631	5668	68
+       761	5583	1362	1000	1000	149	3349	7157	1001	5508	
+
+D 69   3691	6722	2897	3327	*	2657	4422	*	3204	5108	*	3775	4557	3947	3825	4313	5201	*	6944	*	69
+       19	6290	*	0	*	1812	483	7923	1015	2927	
+
+V 70   2138	3482	6797	*	4179	6223	4651	4883	6848	4581	*	4548	4310	6858	*	2963	7048	2734	*	3418	70
+       27	5777	*	1927	440	0	*	7988	1072	2406	
+
+Q 71   4720	5696	659	4110	*	5452	5740	*	6846	6727	*	4677	6995	5285	4263	5418	5618	5879	7320	*	71
+       0	*	*	*	*	*	*	8196	0	0	
+
+V 72   3783	7405	*	*	5146	6735	6429	2057	*	1575	4260	*	6727	*	*	*	6995	2327	*	5180	72
+       0	*	*	*	*	*	*	8196	0	0	
+
+V 73   5082	*	*	*	4783	*	*	1496	*	2596	5258	*	*	*	*	*	6833	1399	*	*	73
+       0	*	*	*	*	*	*	8196	0	0	
+
+L 74   7259	*	*	*	3145	*	*	1400	*	2096	7439	*	*	*	*	*	*	1933	*	*	74
+       0	*	*	*	*	*	*	8196	0	0	
+
+I 75   7054	5693	*	*	4945	*	*	3402	6273	3530	5072	*	*	*	*	3409	1185	2529	*	6688	75
+       0	*	*	*	*	*	*	8196	0	0	
+
+T 76   4417	4762	*	*	4863	7491	*	2937	*	3839	5866	5021	*	*	*	2179	1509	4167	*	*	76
+       8	*	7505	*	*	*	*	8196	0	0	
+
+G 77   3863	6425	*	*	*	137	*	*	*	*	*	*	*	*	*	6610	*	*	*	*	77
+       12	*	6875	*	*	*	0	8196	0	1000	
+
+G 78   3360	*	*	*	*	221	*	*	6256	*	*	7053	*	*	7415	6992	6594	*	*	*	78
+       6	7989	*	2000	415	667	1434	8191	1000	1075	
+
+T 79   4482	6872	*	*	*	6157	*	2751	*	2651	5560	6897	*	*	*	2812	1605	3011	*	*	79
+       0	*	*	*	*	1034	967	8197	0	1039	
+
+G 80   3978	7183	*	*	*	761	*	*	*	*	*	7047	*	6272	*	1713	*	*	7042	7239	80
+       23	*	5958	*	*	*	0	8196	0	1000	
+
+L 81   3337	6735	5772	7445	4615	4094	5563	3656	5729	3937	4383	7245	2197	6276	6271	5308	4852	2235	7340	7228	81
+       10	*	7138	*	*	1255	783	8182	0	1151	
+
+T 82   3851	*	4380	5544	*	1264	6893	*	*	6879	*	6813	*	*	4959	2943	2092	6183	*	6874	82
+       11	7099	*	0	*	1462	651	8183	1074	1126	
+
+E 83   3476	*	3402	2996	*	4824	3929	6002	3095	6524	*	*	2046	5600	3899	5248	4312	4666	*	*	83
+       81	4199	*	1775	499	0	*	8188	1556	1053	
+
+G 84   4482	*	1840	5156	4708	4358	5190	7244	2889	4911	7207	5138	*	5939	2649	4481	5225	5648	*	4149	84
+       0	*	*	*	*	*	*	8196	0	0	
+
+D 85   6060	*	146	6821	*	5851	*	*	*	*	*	5024	*	*	6273	*	6429	*	*	*	85
+       10	*	7168	*	*	*	*	8196	0	0	
+
+Q 86   4877	5475	*	4624	3295	7061	3533	3088	5038	2757	6274	6297	6369	4911	6179	7001	7094	2357	*	3106	86
+       19	6263	*	1000	1000	*	0	8187	1043	1000	
+
+A 87   3234	7590	*	*	5633	6092	*	3819	*	3422	5269	*	*	*	*	3952	1178	2671	*	*	87
+       0	*	*	*	*	*	0	8187	0	1000	
+
+P 88   3882	*	7522	5841	5575	5880	4305	4686	3091	3672	*	6154	2133	5334	2521	5499	6083	3938	6879	4859	88
+       9	7255	*	0	*	*	0	8187	1000	1000	
+
+E 89   4644	*	3110	1716	6175	5424	7045	6151	4159	4714	*	5184	4353	2944	4256	3709	6436	5404	*	5920	89
+       0	*	*	*	*	0	*	8187	0	1000	
+
+A 90   1077	5300	*	*	5191	4967	*	4065	*	4002	6381	*	*	*	*	4335	4155	2311	*	*	90
+       11	*	7100	*	*	*	*	8196	0	0	
+
+L 91   3478	7365	*	*	5351	*	*	2839	*	1705	3947	*	7436	7250	*	6817	3436	1973	*	*	91
+       7	*	7737	0	*	*	0	8186	1000	1001	
+
+L 92   1969	5116	3964	2689	7478	4731	7489	*	4188	3830	5894	5601	*	4613	3993	3367	4313	5277	*	6882	92
+       16	*	6530	*	*	*	0	8197	0	1053	
+
+P 93   4154	*	3669	2475	*	6212	7326	*	3000	4769	*	4572	3643	3736	2721	3037	6052	5773	*	*	93
+       10	*	7226	*	*	*	0	8201	0	1168	
+
+L 94   2425	*	6837	5564	4140	4626	5291	3681	6322	1978	4499	5149	*	5666	7160	5094	7360	2771	*	4800	94
+       710	*	1364	*	*	*	0	8201	0	1228	
+
+F 95   3502	4321	6107	*	2535	4696	*	2789	4801	1835	6245	*	*	6392	*	*	4801	3130	*	*	95
+       137	5990	3742	3585	126	5227	39	7685	1006	4332	
+
+D 96   4211	*	2559	2182	*	2477	3937	4669	5136	*	5970	3935	5936	5151	4518	5066	4505	*	*	*	96
+       63	*	4547	*	*	*	0	7594	0	4483	
+
+R 97   3955	5318	*	5177	5937	5003	*	4678	2004	5301	*	5065	5857	5000	2153	4635	4665	2974	*	6445	97
+       117	*	3678	*	*	*	0	7514	0	4611	
+
+E 98   4611	*	3535	2456	*	4950	5042	*	3392	5978	6137	6158	3895	4549	2439	3457	3470	6274	*	*	98
+       21	6124	*	2807	222	5146	41	7335	1000	4937	
+
+V 99   3979	4110	5924	*	5412	*	*	2764	4866	1125	5292	*	*	6095	6116	5132	4591	3757	*	*	99
+       28	*	5725	*	*	4234	79	7406	0	4853	
+
+E 100  4144	*	4245	3857	*	6185	3544	4557	6535	5153	5932	5352	1741	4198	5298	5031	3905	3183	*	6206	100
+       115	6416	3945	2807	222	258	2610	7485	1074	4739	
+
+G 101  4338	*	5473	4128	4529	742	*	6858	6251	4833	6817	6739	5674	5402	5753	5597	6280	4446	*	6205	101
+       406	6021	2122	633	1494	1814	483	8097	1065	2002	
+
+F 102  3313	*	3437	5224	2548	4875	3707	3027	6937	3092	4300	4283	*	5694	*	4554	5545	4761	6575	5818	102
+       93	6631	4260	2585	263	705	1371	7930	1000	3501	
+
+G 103  3483	*	4202	2085	*	2953	4477	5331	4022	6000	6527	5682	3583	4841	3609	4880	4233	5233	*	*	103
+       56	5324	6237	500	1772	71	4379	8072	1338	2349	
+
+E 104  3981	6322	6375	2021	6201	4256	4793	3319	5560	3206	6813	4437	4271	3861	5251	5991	4521	4441	*	5228	104
+       6	*	8002	*	*	0	*	8168	0	1112	
+
+V 105  3017	*	5187	4408	4576	5334	4760	2841	5928	2315	4835	*	*	3890	6266	5070	6826	3236	5827	3976	105
+       11	7094	*	650	1463	0	*	8201	1060	1000	
+
+F 106  3645	*	7094	6081	1782	*	*	3527	6078	2757	4078	*	6832	7053	5373	5972	5639	2538	5876	4926	106
+       12	*	6880	*	*	*	*	8200	0	0	
+
+R 107  5055	6814	4069	3229	7508	5618	2761	5248	3937	4682	5506	5760	5305	5016	2088	4455	5303	5261	4625	5534	107
+       8	7508	*	0	*	*	0	8194	1000	1019	
+
+M 108  4003	*	6402	4564	6155	2080	3539	5351	3897	4695	5131	5112	*	5375	2177	4816	4973	6730	5660	5845	108
+       39	5684	7100	3807	107	*	0	8194	1102	1019	
+
+L 109  4734	*	6967	6091	4668	*	5909	2154	5036	1994	5862	6027	*	7050	5376	5529	4620	2201	7226	5210	109
+       200	2947	*	3005	192	*	0	8184	2106	1107	
+
+S 110  2756	5934	5659	5492	6715	2267	5576	7179	3184	4859	7397	3713	4478	*	4164	2552	6143	*	7442	5030	110
+       42	5139	*	589	1577	940	1063	8178	1199	1107	
+
+F 111  4315	*	*	4587	4948	4589	6010	2570	5417	2411	2375	6972	*	4702	4626	4603	6741	4155	*	4248	111
+       173	*	3145	*	*	*	0	8184	0	1012	
+
+E 112  3937	*	5936	3515	*	4969	5862	*	2258	4274	7568	4880	4250	3224	2371	4682	4276	5071	*	6853	112
+       1240	2875	1184	1590	582	92	4019	8053	2074	2058	
+
+E 113  3493	5420	3628	3018	6289	*	4708	6136	3008	*	5068	6145	2463	3923	4312	3551	6378	6252	*	4579	113
+       411	3758	2523	962	1039	92	4015	7743	1343	4350	
+
+I 114  5045	*	6920	*	5834	5217	6996	4527	*	3784	5028	4668	1117	5775	6554	4684	3513	3633	5904	6722	114
+       85	7705	4253	1000	1000	200	2952	8094	1000	2074	
+
+G 115  4339	*	5195	5365	*	740	6902	7366	6642	6825	*	4995	2939	*	5478	*	3738	6966	*	*	115
+       180	4447	3813	3099	179	606	1543	8138	1338	1617	
+
+T 116  4142	*	5513	4609	7336	4291	4781	4721	2111	5111	7451	4510	3089	4823	2994	3815	3665	6561	*	*	116
+       200	3254	5343	1122	887	1040	961	8117	1771	1825	
+
+S 117  4055	*	5940	*	4538	6942	4440	7087	4664	4168	4185	3302	1910	*	3533	2941	4197	5976	*	6114	117
+       13	*	6785	*	*	321	2325	8112	0	1750	
+
+T 118  2199	*	*	4966	3936	4623	5422	4244	4632	3320	4578	5545	*	4651	5343	4266	2749	3333	*	*	118
+       27	6687	6805	2075	391	2472	287	8179	1065	1202	
+
+L 119  3072	5651	7035	6103	5014	3592	5527	4238	2992	2547	3207	7270	*	6871	4839	3650	4935	4412	5808	5779	119
+       8	7527	*	3170	170	1911	446	8173	1000	1234	
+
+Q 120  4209	5853	*	6966	3210	4555	5920	3574	*	1414	3715	*	*	3529	*	*	5257	3623	6822	6013	120
+       857	5169	1251	707	1369	1465	649	8178	1183	1153	
+
+S 121  1604	5099	5007	6100	*	4101	5174	7506	6018	5163	6125	*	6232	*	*	1611	4783	4631	5972	6191	121
+       43	*	5093	*	*	*	0	7603	0	4539	
+
+R 122  4765	*	5231	4010	6184	4937	*	7482	3894	4379	4307	3852	6153	*	1199	5270	5220	5428	4885	5165	122
+       41	6248	6044	2000	415	5001	46	7548	1006	4641	
+
+A 123  3169	5938	*	6103	3771	3222	6204	3493	4648	2756	*	6164	3576	6362	*	3661	4642	2771	*	6417	123
+       80	4218	*	1704	529	4792	53	7577	1193	4596	
+
+V 124  4674	6234	*	6237	6025	4222	5436	3063	6097	3727	*	6018	1743	6164	5987	6159	3652	2358	*	*	124
+       21	*	6134	3459	138	4490	66	7625	1012	4493	
+
+A 125  1765	3837	5001	3243	*	6193	*	4807	4512	6028	*	3650	5194	5403	6297	4234	6436	2848	*	4521	125
+       91	4869	5208	3011	191	49	4894	7628	1199	4415	
+
+G 126  2416	*	5490	5926	5080	896	*	*	4980	7063	5575	5118	*	*	7433	4436	5632	4448	*	*	126
+       164	3342	6856	2929	203	1994	417	8171	1803	1210	
+
+V 127  3453	*	6392	5538	4921	7325	7202	3044	3925	3656	5939	5626	6466	4723	3521	3809	3688	2357	6325	4905	127
+       488	2048	4468	3368	147	1706	528	8172	3028	1233	
+
+A 128  3849	4800	5254	3954	4797	6134	5397	3319	4364	2361	7318	5317	6910	*	3862	3772	4348	3723	6285	3893	128
+       103	3988	7351	1233	800	335	2270	8121	1744	1698	
+
+N 129  4552	7489	2877	3515	*	1587	5899	*	4554	*	7698	2976	5123	4431	4185	4413	*	5851	*	6664	129
+       68	5272	5646	1195	828	1496	631	8176	1191	1144	
+
+K 130  7031	*	3486	2963	*	1886	5619	5878	3455	*	*	3214	*	4001	3663	3911	4199	7487	*	*	130
+       174	4060	4223	1919	443	468	1853	8178	1571	1314	
+
+T 131  4049	5179	6781	6019	*	5084	6045	3714	2004	*	5917	6717	6958	5491	3322	4065	2071	3981	*	*	131
+       128	3556	*	2477	286	536	1689	8130	1768	1510	
+
+L 132  4384	7980	6162	7009	4078	5516	6049	5073	5757	1972	6447	5073	2008	*	4832	7287	4173	3512	*	4245	132
+       11	7079	*	0	*	338	2261	8187	1000	1165	
+
+I 133  5485	*	*	*	3325	*	5878	1540	*	2954	5930	*	*	*	*	*	*	1576	6816	5196	133
+       0	*	*	*	*	*	0	8196	0	1000	
+
+L 134  5585	*	*	*	1883	*	5419	2242	*	2485	6810	*	*	*	*	*	7002	2327	*	3670	134
+       11	7093	*	0	*	0	*	8196	1052	1000	
+
+A 135  2703	3607	*	*	3981	2233	7166	4799	*	3912	5693	2966	*	*	*	3130	4175	4008	*	*	135
+       8	7460	*	1000	1000	*	*	8194	1000	0	
+
+M 136  3985	7230	*	*	3806	*	*	4275	*	682	3844	*	*	6887	*	5922	4891	4168	*	*	136
+       0	*	*	*	*	*	*	8194	0	0	
+
+P 137  4156	*	*	6715	*	*	*	*	*	*	*	*	279	6856	*	3501	*	6267	*	*	137
+       6	*	8007	*	*	*	*	8194	0	0	
+
+G 138  6086	6422	5237	5468	*	166	*	*	6875	*	*	*	*	*	*	5338	*	*	*	*	138
+       0	*	*	0	*	0	*	8195	1000	1000	
+
+S 139  6076	4430	6916	7416	3694	6026	4767	4808	6235	4882	*	2020	3198	5154	*	2423	5518	3440	7654	5423	139
+       6	*	8007	*	*	*	*	8194	0	0	
+
+T 140  4297	6996	6787	*	6614	*	5275	7487	4925	*	*	*	479	*	5153	5373	4812	4823	*	5855	140
+       0	*	*	0	*	0	*	8195	1000	1000	
+
+K 141  3098	*	4163	4714	5020	3728	8007	5554	3517	4110	4484	6098	5231	5136	3280	3598	5673	2616	7064	5477	141
+       0	*	*	*	*	*	*	8194	0	0	
+
+A 142  1628	*	7487	2480	7053	3256	6964	7410	*	5010	4545	*	*	6161	*	2215	4724	*	*	5351	142
+       11	*	7040	*	*	*	*	8194	0	0	
+
+C 143  1593	3839	*	6809	3708	7251	*	5120	*	3940	3686	7030	6122	6682	*	3854	4208	2540	6956	*	143
+       6	*	7995	0	*	0	*	8188	1000	1000	
+
+R 144  3539	7057	6684	4066	4510	6219	4148	4298	2764	2830	4352	6043	*	5048	3343	4691	4789	3966	6272	4647	144
+       0	*	*	*	*	*	0	8195	0	1000	
+
+T 145  2810	*	4046	3496	6284	6219	5964	4400	6782	3332	5055	5594	3120	*	7172	3765	3570	2631	*	5774	145
+       32	5513	*	0	*	*	0	8169	1165	1000	
+
+A 146  2891	3459	*	*	*	2726	5770	3852	6010	3974	2668	4584	*	6415	*	3741	3294	4307	*	5781	146
+       0	*	*	1585	585	0	*	8158	1000	1000	
+
+W 147  3153	6314	*	*	1753	*	*	3761	*	2030	3790	*	*	*	*	5478	5420	3572	4487	6271	147
+       69	7541	4585	0	*	*	*	8131	1000	0	
+
+E 148  3776	*	3109	2363	5210	*	3984	5648	4239	3548	6236	4691	6071	3883	4131	4512	4274	5744	7365	4156	148
+       22	*	6026	*	*	223	2805	8062	0	1329	
+
+N 149  3210	*	5406	3446	3932	5464	5424	5238	4039	2900	7111	5207	5911	4405	4601	5324	3260	3337	4050	5975	149
+       41	6740	5759	0	*	417	1994	8111	1001	1157	
+
+I 150  4125	6138	*	6797	2768	*	5963	2661	7169	2001	6928	*	*	5999	6761	5037	6956	2314	7574	3972	150
+       57	4958	7269	2420	298	458	1879	8082	1237	1139	
+
+I 151  3411	7123	*	6852	5046	5157	*	2519	*	1547	6097	*	*	*	6091	5933	6099	2062	*	6007	151
+       50	4865	*	2509	279	0	*	8071	1296	1040	
+
+A 152  3124	6834	3840	4991	4578	5276	5323	5105	3336	2225	5880	6043	5499	4729	3469	4225	6079	4007	7275	5535	152
+       41	5173	*	2585	263	*	*	8063	1165	0	
+
+P 153  4281	*	4358	3752	7222	5755	5330	*	5066	6625	6938	6432	833	6913	4178	5580	4825	5816	5895	*	153
+       27	5761	*	1082	923	*	*	7916	1071	0	
+
+Q 154  3250	*	*	5207	3266	5711	6382	3412	5001	1796	5006	*	*	4504	4656	4790	5456	3804	6206	4042	154
+       13	*	6829	*	*	*	*	7854	0	0	
+
+L 155  5994	6698	6611	*	4471	*	*	2306	*	916	7522	*	6543	*	6825	5744	*	3256	7026	5014	155
+       58	6334	5196	0	*	*	0	7827	1000	1164	
+
+D 156  2855	6304	2915	3389	5922	4575	7090	5278	2690	3808	*	4710	5395	5504	2717	4687	*	5831	6547	*	156
+       0	*	*	0	*	1140	872	7640	1000	1359	
+
+A 157  3513	*	3844	3873	7159	3093	3281	6993	2703	3897	*	4090	*	5046	3113	3989	5561	7005	6481	6492	157
+       27	5777	*	1000	1000	*	0	7625	1003	1164	
+
+R 158  2812	*	*	5913	5343	5797	*	3952	5365	1963	3320	5726	5628	6364	3538	4150	3612	5923	5430	4724	158
+       30	5618	*	1000	1000	*	0	7084	1000	1164	
+
+T 159  3883	*	*	4494	2328	4633	4517	4984	5634	2837	*	*	5357	3106	*	4258	2935	3485	*	*	159
+       291	3178	3792	0	*	*	0	6809	1075	1164	
+
+R 160  4394	*	2949	*	4004	*	4171	4213	4154	*	4081	*	3946	*	2055	2118	*	*	*	*	160
+       244	2687	*	2302	327	478	1825	5186	1333	1257	
+
+P 161  *	*	3972	2905	*	3973	1800	4041	4189	4111	*	*	2259	*	*	3848	*	*	*	*	161
+       129	3551	*	1585	585	0	*	4777	1009	1019	
+
+C 162  2829	1059	3612	*	*	*	*	3942	*	*	*	*	3644	*	*	*	3885	3560	*	*	162
+       147	3370	*	1000	1000	*	*	4487	1019	0	
+
+N 163  *	*	3462	*	*	*	3348	*	2246	*	*	1706	*	3224	3417	3424	*	*	*	*	163
+       930	1074	*	1457	654	*	*	3946	1161	0	
+
+F 164  *	*	*	*	571	*	*	*	*	1614	*	*	*	*	*	*	*	*	*	*	164
+       0	*	*	*	*	*	0	2155	0	1010	
+
+H 165  *	*	*	*	*	*	1541	*	*	*	*	*	*	*	*	1601	*	1614	*	*	165
+       0	*	*	*	*	*	0	2155	0	1010	
+
+P 166  *	*	*	1614	*	*	*	*	*	1601	*	*	1541	*	*	*	*	*	*	*	166
+       0	*	*	*	*	*	0	2155	0	1010	
+
+H 167  *	*	*	*	*	*	1541	1601	*	1614	*	*	*	*	*	*	*	*	*	*	167
+       0	*	*	*	*	*	0	2155	0	1010	
+
+L 168  1614	*	*	*	*	*	*	*	1601	1541	*	*	*	*	*	*	*	*	*	*	168
+       0	*	*	*	*	*	0	2155	0	1010	
+
+K 169  *	*	*	*	*	*	*	*	571	*	*	*	*	*	1614	*	*	*	*	*	169
+       0	*	*	*	*	0	*	2155	0	1010	
+
+K 170  *	*	1024	*	*	*	*	*	2024	*	*	*	*	*	1930	*	*	*	*	*	170
+       0	*	*	*	*	*	*	2547	0	0	
+
+G 171  *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	171
+       0	*	*	*	*	*	*	2155	0	0	
+
+S 172  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	172
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  5b39e5a7108ee75bcacb74b9050dfe57
+FAM   
+FILE  5b39e5a7108ee75bcacb74b9050dfe57
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:02:50 2013
+LENG  152 match states, 152 columns in multiple alignment
+FILT  7 out of 9 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  1.4 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCHHHHHHHHHHHHHHHHHHHHHHHHCCCCCHHHHHCCCEEEEEECHHHHHHHHHHHHHCCCCCCCCCCCCCCHHHHHHHHHHHCCCCHHHHHHHHHHH
+HHHHHHHHHCCCCCCHHHHHHHHHHEEECCCCCCHHHHHHHHHHHHHHCCCC
+>ss_conf PSIPRED confidence values
+9721477899999999999998766523530012333256169960606889999999742532046889997099999999885042103666777511
+0767877533336504888766752131478330022887699998863489
+>Consensus
+mxxxxxxxvxfxtaxasikliqasxvldlteddfdfltxdxvwiatdrxrarrxveacvygtldfvgyprfpapvefiaaviayyvhpvniqtaclimeg
+aefteniingvexpvkAAElfafTLrvrAGxkexvxxAEeNxRqkLRAxGvm
+>5b39e5a7108ee75bcacb74b9050dfe57
+MSQVTEQSVRFQTALASIKLIQASAVLDLTEDDFDFLTSNKVWIATDRSRARRCVEACVYGTLDFVGYPRFPAPVEFIAAVIAYYVHPVNIQTACLIMEG
+AEFTENIINGVERPVKAAELFAFTLRVRAGNTDVLTDAEENVRQKLRAEGVM
+>gi|89888099|ref|YP_512793.1| gpD [Enterobacteria phage ID18 sensu lato]gi|71843204|gb|AAZ49372.1| gpD [Enterobacteria phage ID18]gi|71843217|gb|AAZ49384.1| gpD [Enterobacteria phage WA14]
+MK-ANENAVAFQTAIASIKLIQASSVLDLTEDDFEFLTRDRVWIATDRSRARRAIEACVYGTLDFVGYPRFPAPIEFIAAVIAYYVHPVNIQTACLIMEG
+AEFTENIINGVDAPVKAAELFAFTLRVRAGNTELITYAENNAREKLRAQGVM
+>gi|262064213|gb|ACY07191.1| D [Enterobacteria phage G4]gi|262064224|gb|ACY07201.1| D [Enterobacteria phage G4]
+MSKSNESAVAFQTAIASIKLIQASSVLDLTEDDFDFLTRDRVWIATDRSRARRAIEACVYGTLDFVGYPRFPAPVEFISAVIAYYVHPVNIQTACLIMEG
+AEFTENIVNGVERPVKASELFAFTLLVRAGNKDLIGHAETNIREQLRAQGAM
+>gi|89888658|ref|YP_512413.1| gpD [Enterobacteria phage WA13 sensu lato]gi|71842768|gb|AAZ48973.1| gpD [Enterobacteria phage ID32]gi|71842779|gb|AAZ48983.1| gpD [Enterobacteria phage NC35]gi|71842791|gb|AAZ48994.1| gpD [Enterobacteria phage WA13]gi|71842801|gb|AAZ49003.1| gpD [Enterobacteria phage WA45]
+MSNLVATDVNFATSVAALKMLQASAVLDITEEDFDFLTGDKIWIATDRNRARRCVEACVYGTLDFVGYPRFPAPVEFIAAVIAYYVHPVNIQTACLIMEG
+AEFTENIVNGVERPVKAAELFAYTLRVKAGFKETVLSAEENARQKLRASGV-
+>gi|89888612|ref|YP_512373.1| gpD [Enterobacteria phage ID2 Moscow/ID/2001]gi|71842745|gb|AAZ48952.1| gpD [Enterobacteria phage ID2 Moscow/ID/2001]
+MN-SNESAVAFATALASIKLIQASSVLDLTEDDFDFLTRDRVWIATDRSRARRAIEACVYGTLDFVGYPRFPAPVEFIAAVIAYYVHPVNIQTACLIMEG
+AEFTENIINGIDQPVKAAELFAFTLRVRAGNTDHVTHAETNVREQLRAQGVM
+>gi|242346747|ref|YP_002985209.1| gpD [Enterobacteria phage St-1]gi|240129558|gb|ACS44791.1| gpD [Enterobacteria phage St-1]
+MN--IVSDVNYATSVAALRMLQASAVLDITEEDFDFLTGDKIWIATDRNRARRCVEACVYGALDFVGYPRFPAPVEFIAAVIAYYVHPVNIQTACLVMEG
+AEFSENIINGVERPVNAAELFAYTLRIKAGFKETVIDAEENARQKLRANGL-
+>gi|15432|emb|CAA25348.1| unnamed protein product [Enterobacteria phage alpha3]
+----------------------------------------------------------------------------------------------------
+---------------NAAEPLRYTLRIKAGFKETVMDAEENARQKLRANGL-
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1326	0	0	
+
+S 2    *	*	*	*	*	*	*	*	2627	*	*	1558	*	*	*	1004	*	*	*	*	2
+       1004	*	996	*	*	*	*	1326	0	0	
+
+Q 3    *	*	*	*	*	*	*	*	1575	*	*	1547	*	1634	*	*	*	*	*	*	3
+       0	*	*	*	*	634	1491	1252	0	1123	
+
+V 4    2390	*	*	*	*	*	*	*	*	2114	*	*	*	*	*	1393	*	2340	*	*	4
+       0	*	*	*	*	0	*	1276	0	1007	
+
+T 5    *	*	*	*	*	*	*	2444	*	*	*	1052	*	*	*	*	2608	2558	*	*	5
+       0	*	*	*	*	*	*	1326	0	0	
+
+E 6    2558	*	*	629	*	*	*	*	*	*	*	*	*	*	*	*	*	2444	*	*	6
+       0	*	*	*	*	*	*	1326	0	0	
+
+Q 7    *	*	*	*	*	*	*	*	*	*	*	2627	*	2608	*	988	2558	*	*	*	7
+       0	*	*	*	*	*	*	1326	0	0	
+
+S 8    1052	*	1500	*	*	*	*	*	*	*	*	*	*	*	*	2608	*	*	*	*	8
+       0	*	*	*	*	*	*	1326	0	0	
+
+V 9    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	9
+       0	*	*	*	*	*	*	1326	0	0	
+
+R 10   1052	*	*	*	*	*	*	*	*	*	*	1500	*	*	2608	*	*	*	*	*	10
+       0	*	*	*	*	*	*	1326	0	0	
+
+F 11   *	*	*	*	293	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2444	11
+       0	*	*	*	*	*	*	1326	0	0	
+
+Q 12   973	*	*	*	*	*	*	*	*	*	*	*	*	1027	*	*	*	*	*	*	12
+       0	*	*	*	*	*	*	1326	0	0	
+
+T 13   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	13
+       0	*	*	*	*	*	*	1326	0	0	
+
+A 14   629	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1500	*	*	*	*	14
+       0	*	*	*	*	*	*	1326	0	0	
+
+L 15   *	*	*	*	*	*	*	1614	*	1644	*	*	*	*	*	*	*	1500	*	*	15
+       0	*	*	*	*	*	*	1326	0	0	
+
+A 16   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	16
+       0	*	*	*	*	*	*	1326	0	0	
+
+S 17   1500	*	*	*	*	*	*	*	*	*	*	*	*	*	*	629	*	*	*	*	17
+       0	*	*	*	*	*	*	1326	0	0	
+
+I 18   *	*	*	*	*	*	*	629	*	1500	*	*	*	*	*	*	*	*	*	*	18
+       0	*	*	*	*	*	*	1326	0	0	
+
+K 19   *	*	*	*	*	*	*	*	293	*	*	*	*	*	2444	*	*	*	*	*	19
+       0	*	*	*	*	*	*	1326	0	0	
+
+L 20   *	*	*	*	*	*	*	*	*	629	1500	*	*	*	*	*	*	*	*	*	20
+       0	*	*	*	*	*	*	1326	0	0	
+
+I 21   *	*	*	*	*	*	*	629	*	1500	*	*	*	*	*	*	*	*	*	*	21
+       0	*	*	*	*	*	*	1326	0	0	
+
+Q 22   *	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	22
+       0	*	*	*	*	*	*	1326	0	0	
+
+A 23   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	23
+       0	*	*	*	*	*	*	1326	0	0	
+
+S 24   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	24
+       0	*	*	*	*	*	*	1326	0	0	
+
+A 25   950	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1052	*	*	*	*	25
+       0	*	*	*	*	*	*	1326	0	0	
+
+V 26   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	26
+       0	*	*	*	*	*	*	1326	0	0	
+
+L 27   *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	27
+       0	*	*	*	*	*	*	1326	0	0	
+
+D 28   *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	28
+       0	*	*	*	*	*	*	1326	0	0	
+
+L 29   *	*	*	*	*	*	*	1500	*	629	*	*	*	*	*	*	*	*	*	*	29
+       0	*	*	*	*	*	*	1326	0	0	
+
+T 30   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	30
+       0	*	*	*	*	*	*	1326	0	0	
+
+E 31   *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	31
+       0	*	*	*	*	*	*	1326	0	0	
+
+D 32   *	*	629	1500	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	32
+       0	*	*	*	*	*	*	1326	0	0	
+
+D 33   *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	33
+       0	*	*	*	*	*	*	1326	0	0	
+
+F 34   *	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	34
+       0	*	*	*	*	*	*	1326	0	0	
+
+D 35   *	*	255	2627	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	35
+       0	*	*	*	*	*	*	1326	0	0	
+
+F 36   *	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	36
+       0	*	*	*	*	*	*	1326	0	0	
+
+L 37   *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	37
+       0	*	*	*	*	*	*	1326	0	0	
+
+T 38   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	38
+       0	*	*	*	*	*	*	1326	0	0	
+
+S 39   *	*	*	*	*	1500	*	*	*	*	*	*	*	*	1052	2608	*	*	*	*	39
+       0	*	*	*	*	*	*	1326	0	0	
+
+N 40   *	*	259	*	*	*	*	*	*	*	*	2608	*	*	*	*	*	*	*	*	40
+       0	*	*	*	*	*	*	1326	0	0	
+
+K 41   *	*	*	*	*	*	*	*	950	*	*	*	*	*	1052	*	*	*	*	*	41
+       0	*	*	*	*	*	*	1326	0	0	
+
+V 42   *	*	*	*	*	*	*	1500	*	*	*	*	*	*	*	*	*	629	*	*	42
+       0	*	*	*	*	*	*	1326	0	0	
+
+W 43   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	43
+       0	*	*	*	*	*	*	1326	0	0	
+
+I 44   *	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	44
+       0	*	*	*	*	*	*	1326	0	0	
+
+A 45   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	45
+       0	*	*	*	*	*	*	1326	0	0	
+
+T 46   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	46
+       0	*	*	*	*	*	*	1326	0	0	
+
+D 47   *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	47
+       0	*	*	*	*	*	*	1326	0	0	
+
+R 48   *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	48
+       0	*	*	*	*	*	*	1326	0	0	
+
+S 49   *	*	*	*	*	*	*	*	*	*	*	1500	*	*	*	629	*	*	*	*	49
+       0	*	*	*	*	*	*	1326	0	0	
+
+R 50   *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	50
+       0	*	*	*	*	*	*	1326	0	0	
+
+A 51   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	51
+       0	*	*	*	*	*	*	1326	0	0	
+
+R 52   *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	52
+       0	*	*	*	*	*	*	1326	0	0	
+
+R 53   *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	53
+       0	*	*	*	*	*	*	1326	0	0	
+
+C 54   1052	950	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	54
+       0	*	*	*	*	*	*	1326	0	0	
+
+V 55   *	*	*	*	*	*	*	1052	*	*	*	*	*	*	*	*	*	950	*	*	55
+       0	*	*	*	*	*	*	1326	0	0	
+
+E 56   *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	56
+       0	*	*	*	*	*	*	1326	0	0	
+
+A 57   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	57
+       0	*	*	*	*	*	*	1326	0	0	
+
+C 58   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	58
+       0	*	*	*	*	*	*	1326	0	0	
+
+V 59   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	59
+       0	*	*	*	*	*	*	1326	0	0	
+
+Y 60   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	60
+       0	*	*	*	*	*	*	1326	0	0	
+
+G 61   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	61
+       0	*	*	*	*	*	*	1326	0	0	
+
+T 62   2444	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	293	*	*	*	62
+       0	*	*	*	*	*	*	1326	0	0	
+
+L 63   *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	63
+       0	*	*	*	*	*	*	1326	0	0	
+
+D 64   *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	64
+       0	*	*	*	*	*	*	1326	0	0	
+
+F 65   *	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	65
+       0	*	*	*	*	*	*	1326	0	0	
+
+V 66   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	66
+       0	*	*	*	*	*	*	1326	0	0	
+
+G 67   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	67
+       0	*	*	*	*	*	*	1326	0	0	
+
+Y 68   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	68
+       0	*	*	*	*	*	*	1326	0	0	
+
+P 69   *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	69
+       0	*	*	*	*	*	*	1326	0	0	
+
+R 70   *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	70
+       0	*	*	*	*	*	*	1326	0	0	
+
+F 71   *	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	71
+       0	*	*	*	*	*	*	1326	0	0	
+
+P 72   *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	72
+       0	*	*	*	*	*	*	1326	0	0	
+
+A 73   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	73
+       0	*	*	*	*	*	*	1326	0	0	
+
+P 74   *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	74
+       0	*	*	*	*	*	*	1326	0	0	
+
+V 75   *	*	*	*	*	*	*	2627	*	*	*	*	*	*	*	*	*	255	*	*	75
+       0	*	*	*	*	*	*	1326	0	0	
+
+E 76   *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	76
+       0	*	*	*	*	*	*	1326	0	0	
+
+F 77   *	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	77
+       0	*	*	*	*	*	*	1326	0	0	
+
+I 78   *	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	78
+       0	*	*	*	*	*	*	1326	0	0	
+
+A 79   260	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2602	*	*	*	*	79
+       0	*	*	*	*	*	*	1326	0	0	
+
+A 80   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	80
+       0	*	*	*	*	*	*	1326	0	0	
+
+V 81   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	81
+       0	*	*	*	*	*	*	1326	0	0	
+
+I 82   *	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	82
+       0	*	*	*	*	*	*	1326	0	0	
+
+A 83   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	83
+       0	*	*	*	*	*	*	1326	0	0	
+
+Y 84   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	84
+       0	*	*	*	*	*	*	1326	0	0	
+
+Y 85   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	85
+       0	*	*	*	*	*	*	1326	0	0	
+
+V 86   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	86
+       0	*	*	*	*	*	*	1326	0	0	
+
+H 87   *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	87
+       0	*	*	*	*	*	*	1326	0	0	
+
+P 88   *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	88
+       0	*	*	*	*	*	*	1326	0	0	
+
+V 89   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	89
+       0	*	*	*	*	*	*	1326	0	0	
+
+N 90   *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	90
+       0	*	*	*	*	*	*	1326	0	0	
+
+I 91   *	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	91
+       0	*	*	*	*	*	*	1326	0	0	
+
+Q 92   *	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	92
+       0	*	*	*	*	*	*	1326	0	0	
+
+T 93   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	93
+       0	*	*	*	*	*	*	1326	0	0	
+
+A 94   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	94
+       0	*	*	*	*	*	*	1326	0	0	
+
+C 95   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	95
+       0	*	*	*	*	*	*	1326	0	0	
+
+L 96   *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	96
+       0	*	*	*	*	*	*	1326	0	0	
+
+I 97   *	*	*	*	*	*	*	293	*	*	*	*	*	*	*	*	*	2444	*	*	97
+       0	*	*	*	*	*	*	1326	0	0	
+
+M 98   *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	98
+       0	*	*	*	*	*	*	1326	0	0	
+
+E 99   *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	99
+       0	*	*	*	*	*	*	1326	0	0	
+
+G 100  *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	100
+       0	*	*	*	*	*	*	1326	0	0	
+
+A 101  0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	101
+       0	*	*	*	*	*	*	1326	0	0	
+
+E 102  *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	102
+       0	*	*	*	*	*	*	1326	0	0	
+
+F 103  *	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	103
+       0	*	*	*	*	*	*	1326	0	0	
+
+T 104  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2444	293	*	*	*	104
+       0	*	*	*	*	*	*	1326	0	0	
+
+E 105  *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	105
+       0	*	*	*	*	*	*	1326	0	0	
+
+N 106  *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	106
+       0	*	*	*	*	*	*	1326	0	0	
+
+I 107  *	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	107
+       0	*	*	*	*	*	*	1326	0	0	
+
+I 108  *	*	*	*	*	*	*	588	*	*	*	*	*	*	*	*	*	1580	*	*	108
+       0	*	*	*	*	*	*	1326	0	0	
+
+N 109  *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	109
+       0	*	*	*	*	*	*	1326	0	0	
+
+G 110  *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	110
+       0	*	*	*	*	*	*	1326	0	0	
+
+V 111  *	*	*	*	*	*	*	2682	*	*	*	*	*	*	*	*	*	244	*	*	111
+       0	*	*	*	*	*	*	1326	0	0	
+
+E 112  *	*	1654	552	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	112
+       0	*	*	*	*	*	*	1326	0	0	
+
+R 113  2627	*	*	*	*	*	*	*	*	*	*	*	*	2682	552	*	*	*	*	*	113
+       0	*	*	*	*	*	*	1326	0	0	
+
+P 114  *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	114
+       0	*	*	*	*	*	*	1326	0	0	
+
+V 115  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	115
+       0	*	*	*	*	*	*	1326	0	0	
+
+K 116  *	*	*	*	*	*	*	*	517	*	*	1730	*	*	*	*	*	*	*	*	116
+       0	*	*	*	*	*	*	1619	0	0	
+
+A 117  0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	117
+       0	*	*	*	*	*	*	1619	0	0	
+
+A 118  266	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2569	*	*	*	*	118
+       0	*	*	*	*	*	*	1619	0	0	
+
+E 119  *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	119
+       0	*	*	*	*	*	*	1619	0	0	
+
+L 120  *	*	*	*	*	*	*	*	*	265	*	*	2573	*	*	*	*	*	*	*	120
+       0	*	*	*	*	*	*	1619	0	0	
+
+F 121  *	*	*	*	265	*	*	*	*	2573	*	*	*	*	*	*	*	*	*	*	121
+       0	*	*	*	*	*	*	1619	0	0	
+
+A 122  265	*	*	*	*	*	*	*	*	*	*	*	*	*	2573	*	*	*	*	*	122
+       0	*	*	*	*	*	*	1619	0	0	
+
+F 123  *	*	*	*	816	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1210	123
+       0	*	*	*	*	*	*	1619	0	0	
+
+T 124  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	124
+       0	*	*	*	*	*	*	1619	0	0	
+
+L 125  *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	125
+       0	*	*	*	*	*	*	1619	0	0	
+
+R 126  *	*	*	*	*	*	*	*	*	2569	*	*	*	*	266	*	*	*	*	*	126
+       0	*	*	*	*	*	*	1619	0	0	
+
+V 127  *	*	*	*	*	*	*	1730	*	*	*	*	*	*	*	*	*	517	*	*	127
+       0	*	*	*	*	*	*	1619	0	0	
+
+R 128  *	*	*	*	*	*	*	*	1210	*	*	*	*	*	816	*	*	*	*	*	128
+       0	*	*	*	*	*	*	1619	0	0	
+
+A 129  0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	129
+       0	*	*	*	*	*	*	1619	0	0	
+
+G 130  *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	130
+       0	*	*	*	*	*	*	1619	0	0	
+
+N 131  *	*	*	*	1210	*	*	*	*	*	*	816	*	*	*	*	*	*	*	*	131
+       0	*	*	*	*	*	*	1619	0	0	
+
+T 132  *	*	*	*	*	*	*	*	735	*	*	*	*	*	*	*	1324	*	*	*	132
+       0	*	*	*	*	*	*	1619	0	0	
+
+D 133  *	*	1197	827	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	133
+       0	*	*	*	*	*	*	1619	0	0	
+
+V 134  *	*	*	*	*	*	2917	*	*	1736	*	*	*	*	*	*	1210	2887	*	*	134
+       0	*	*	*	*	*	*	1619	0	0	
+
+L 135  *	*	*	*	*	*	*	1736	*	2887	*	*	*	*	*	*	*	825	*	*	135
+       0	*	*	*	*	*	*	1619	0	0	
+
+T 136  *	*	*	*	*	2569	*	2907	*	2935	2573	*	*	*	*	*	1324	*	*	*	136
+       0	*	*	*	*	*	*	1619	0	0	
+
+D 137  *	*	1196	*	*	*	1733	*	*	*	*	*	*	*	*	2935	*	*	*	2925	137
+       0	*	*	*	*	*	*	1619	0	0	
+
+A 138  0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	138
+       0	*	*	*	*	*	*	1619	0	0	
+
+E 139  *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	139
+       0	*	*	*	*	*	*	1619	0	0	
+
+E 140  *	*	*	818	*	*	*	*	*	*	*	2925	*	*	*	*	1733	*	*	*	140
+       0	*	*	*	*	*	*	1619	0	0	
+
+N 141  *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	141
+       0	*	*	*	*	*	*	1619	0	0	
+
+V 142  827	*	*	*	*	*	*	2569	*	*	*	*	*	*	*	*	*	1902	*	*	142
+       0	*	*	*	*	*	*	1619	0	0	
+
+R 143  *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	143
+       0	*	*	*	*	*	*	1619	0	0	
+
+Q 144  *	*	*	1209	*	*	*	*	*	*	*	*	*	818	*	*	*	*	*	*	144
+       0	*	*	*	*	*	*	1619	0	0	
+
+K 145  *	*	*	*	*	*	*	*	516	*	*	*	*	1733	*	*	*	*	*	*	145
+       0	*	*	*	*	*	*	1619	0	0	
+
+L 146  *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	146
+       0	*	*	*	*	*	*	1619	0	0	
+
+R 147  *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	147
+       0	*	*	*	*	*	*	1619	0	0	
+
+A 148  0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	148
+       0	*	*	*	*	*	*	1619	0	0	
+
+E 149  *	*	*	2887	*	*	*	*	*	*	*	1730	*	1209	*	2935	*	*	*	*	149
+       0	*	*	*	*	*	*	1619	0	0	
+
+G 150  *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	150
+       0	*	*	*	*	*	*	1619	0	0	
+
+V 151  2569	*	*	*	*	*	*	*	*	1730	*	*	*	*	*	*	*	916	*	*	151
+       0	*	*	*	*	*	*	1619	0	0	
+
+M 152  *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	152
+       0	*	*	0	*	*	*	1180	0	0	
+
+//
+�HHsearch 1.5
+NAME  5b7549a440ece6efc515d1ecf5eab975
+FAM   
+FILE  5b7549a440ece6efc515d1ecf5eab975
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:12:57 2013
+LENG  95 match states, 95 columns in multiple alignment
+FILT  103 out of 270 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  4.4 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCHHHHCCCCCCCCCCCHHHHHHHCCCCCEEEEEECCCEECCCCCCCCCCCCEEEEEECCCEEEEEEEECCCCEEEEECHHHCCCCC
+>ss_conf PSIPRED confidence values
+98877756304766778653688788998862158988999866860179987543898868985879689999986990159997868810479
+>Consensus
+xxSxGxRxxTRxxxxkxxRxxGxxxxsxxlxxfxxGDxVxIxidpsvxkGmPhxxyhGkTGxVxxxxgxAxxVxvxxgxxxKxixvrxeHlkxxx
+>5b7549a440ece6efc515d1ecf5eab975
+PSSNGPLEGTRGKLKNKPRDRGTSPPQRAVEEFDDGEKVHLKIDPSVPNGRFHPRFDGQTGTVEGKQGDAYKVDIVDGGKEKTIIVTAAHLRRQE
+>gi|159042508|ref|YP_001541760.1| 50S ribosomal protein L21e [Caldivirga maquilingensis IC-167]gi|157921343|gb|ABW02770.1| Ribosomal protein L21e [Caldivirga maquilingensis IC-167]
+ARTHGYRFKSRKLLSKTPREKGRPGLFKWLLAryYRVGDKLAIDIDPVYVSTAPHKRYQGRVGTLIGWRGRALVLEVNFMGERRIIITTPEHVKPLN
+>gi|296241777|ref|YP_003649264.1| 50S ribosomal protein L21E [Thermosphaera aggregans DSM 11486]gi|296094361|gb|ADG90312.1| LSU ribosomal protein L21E [Thermosphaera aggregans DSM 11486]
+RAPRGLRHRTRKLLRKNVRERGsIPPLSLLLVEYKEGDVVHIKINPSVHEGMPHRRYHGRTGVIVGRRGLSYIVKVMAGDKEKILFVRPEHLRLAS
+>gi|167042538|gb|ABZ07262.1| putative ribosomal protein L21e [uncultured marine microorganism HF4000_ANIW133F6]gi|167043078|gb|ABZ07789.1| putative ribosomal protein L21e [uncultured marine microorganism HF4000_ANIW141C7]
+RRSHGTRQGTRSILRRSKTQRGRINIARVMHQYEIGDRVAVVLDGAQQKGMPHRRFQGATGIIQAQQGRAWVIDLHDKNMAKTVVARAEHLRPLE
+>gi|48477461|ref|YP_023167.1| 50S ribosomal protein L21e [Picrophilus torridus DSM 9790]gi|73914084|sp|Q6L228.1|RL21_PICTO RecName: Full=50S ribosomal protein L21egi|48430109|gb|AAT42974.1| large subunit ribosomal protein L21E [Picrophilus torridus DSM 9790]
+KMSKGPRSGSRRVMTKSVKNKGMPKVNEMMKTFEVGDRAAIVINSAVPDGMPHHDFQGITGVITGMQGSCYILSFKVGNVEKKVIAAPVHLRKV-
+>gi|339757944|gb|EGQ43201.1| ribosomal protein L21E [Candidatus Nanosalina sp. J07AB43]
+QKSQGSQQGARKKLKRDSREKT--TVNDRLQSFEQGDKALIHVDSSVQEGRPHMRFHGKTADVTGQRGDAYIVEFDEGDETKTLQIDPAHLNE--
+>gi|148688544|gb|EDL20491.1| mCG5613 [Mus musculus]
+TNTKGKRRGTRYMFSRPFRKHGIVPLATYMRIYKKGDIVDIKGMGTVQKGMPHKCYHGKTGRVYNVTQHAVGIIVNkqVKGkiLAKRINVRIEHIKHS-
+>gi|290559669|gb|EFD92995.1| Ribosomal protein L21e [Candidatus Parvarchaeum acidophilus ARMAN-5]
+--GNGIHKRSRKRLKLDINERGKIDIKKALQSFDVGDKVVIDPDSRIQRNLPQRSFFGAVGVVLNKKGKAYTIEVKQQGKyPKKIDVLPVHMKRL-
+>gi|162606458|ref|XP_001713259.1| 60S ribosomal protein L21 [Guillardia theta]gi|12580725|emb|CAC27043.1| 60S ribosomal protein L21 [Guillardia theta]
+SRSKGKKSNTRYILTKSKKLTGIK-SNIIINNVSIGDLVDIVIDPSFQSTMPFKFYHGKTGEVFSLNSNSLGIKIQkiVGNRkvCKKINIGLEHLRI--
+>gi|255514076|gb|EET90339.1| Ribosomal protein L21e [Candidatus Micrarchaeum acidiphilum ARMAN-2]
+------------------------SIRDYIKDFQIGERVAIVPKGNF-GNIPHPRYKGKIGEVVERRGKAYVVQIKVMNATRKLVVPAVHLEK--
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+P 1    2701	*	*	*	*	*	6048	*	2296	*	*	*	2011	3031	3304	3546	4119	*	6304	*	1
+       0	*	*	*	*	*	*	3951	0	0	
+
+S 2    4204	*	*	*	*	6686	1904	6513	2734	5710	4059	2818	7194	5899	2116	4947	*	*	*	*	2
+       0	*	*	*	*	*	*	4274	0	0	
+
+S 3    4815	*	*	*	*	4301	4688	*	*	*	*	*	3814	*	*	558	3006	*	*	*	3
+       0	*	*	*	*	*	*	4327	0	0	
+
+N 4    6161	*	*	4794	3331	5839	2123	*	1765	*	*	3022	*	4568	4410	5639	5854	*	6729	4314	4
+       0	*	*	*	*	*	*	4327	0	0	
+
+G 5    *	*	*	5009	*	63	*	*	*	*	*	*	*	*	*	6427	*	*	*	*	5
+       0	*	*	*	*	*	*	4327	0	0	
+
+P 6    *	*	*	4984	2610	*	*	4901	3243	3011	6411	5775	3199	6755	4618	5625	4376	5538	6603	1986	6
+       0	*	*	*	*	*	*	4327	0	0	
+
+L 7    *	*	*	*	*	5189	5426	*	3919	4600	*	6762	*	4666	334	*	*	*	*	*	7
+       0	*	*	*	*	*	*	4382	0	0	
+
+E 8    2968	4906	*	6180	5247	4857	3116	*	3331	*	*	5605	*	5026	2163	2149	5419	*	*	5257	8
+       0	*	*	*	*	*	*	4382	0	0	
+
+G 9    6485	*	*	*	*	1458	*	*	2190	*	*	3860	*	6182	1817	6645	*	5099	*	*	9
+       0	*	*	*	*	*	*	4382	0	0	
+
+T 10   4143	*	5189	*	*	6344	*	*	*	*	*	*	*	*	*	2141	563	*	*	*	10
+       40	5189	*	1000	1000	*	*	4382	1072	0	
+
+R 11   *	*	*	*	*	5244	*	*	*	*	*	*	*	*	39	*	*	*	*	*	11
+       0	*	*	*	*	*	0	4327	0	1072	
+
+G 12   7162	*	3117	*	6201	4046	4289	*	2148	*	*	4896	*	4738	3948	2924	6687	*	*	2002	12
+       0	*	*	*	*	0	*	4327	0	1072	
+
+K 13   5392	6513	*	*	6762	*	*	3767	1454	2123	2430	*	*	*	4308	*	5865	5730	*	5975	13
+       15	*	6632	*	*	*	*	4383	0	0	
+
+L 14   6618	*	*	*	1287	*	*	5695	*	1163	3640	*	*	*	*	*	*	*	*	4880	14
+       0	*	*	*	*	*	0	4397	0	1000	
+
+K 15   2897	*	*	6746	*	*	*	*	2262	*	*	5211	*	4818	3194	1549	2894	*	*	*	15
+       0	*	*	*	*	*	0	4397	0	1000	
+
+N 16   *	*	*	*	*	*	*	*	837	5502	*	4986	*	3910	1720	*	5912	*	*	*	16
+       82	*	4173	1585	585	*	0	4397	1000	1000	
+
+K 17   3814	*	2506	6743	*	4035	4371	*	2467	*	*	4899	2568	6863	4851	2762	4330	6547	*	*	17
+       0	*	*	*	*	*	0	4317	0	1226	
+
+P 18   5352	*	*	*	1380	*	5818	3956	4045	4708	*	5813	2647	6881	4769	5627	*	2899	*	4900	18
+       73	*	4345	1000	1000	803	1228	4317	1000	1226	
+
+R 19   *	*	*	5241	*	4840	*	*	3296	*	*	5418	*	5111	372	*	6425	*	*	*	19
+       0	*	*	0	*	0	*	4294	1030	1281	
+
+D 20   5462	*	4696	1722	*	4222	6988	*	2272	6040	*	4367	4558	4056	3651	4820	4080	5901	*	6630	20
+       0	*	*	*	*	*	*	4403	0	0	
+
+R 21   7235	*	*	*	*	5672	1776	*	2025	*	*	5221	*	5700	1661	4464	6040	6227	*	*	21
+       0	*	*	*	*	*	*	4403	0	0	
+
+G 22   *	*	*	*	*	186	*	*	5358	*	6736	5700	*	*	4942	5997	5674	*	*	*	22
+       201	3597	4409	0	*	*	*	4403	1286	0	
+
+T 23   4518	5217	*	6312	6571	5852	6162	3060	4330	3343	2868	4577	4566	6041	3742	6537	4092	2263	*	5778	23
+       45	*	5018	*	*	*	0	4329	0	1150	
+
+S 24   4630	6292	*	5945	*	6191	*	3171	5974	4030	*	4050	1604	5660	*	2804	6944	2708	*	6027	24
+       23	*	5974	*	*	633	1494	4305	0	1279	
+
+P 25   5615	5222	5539	6970	*	3435	4190	6324	4029	5106	7401	3762	1720	6887	3796	2938	4176	6243	*	6560	25
+       0	*	*	*	*	1527	615	4357	0	1135	
+
+P 26   4592	*	*	*	6779	*	*	2239	*	1428	7023	5230	3593	*	*	5380	4042	2610	*	*	26
+       0	*	*	0	*	0	*	4387	1074	1074	
+
+Q 27   3618	*	6038	*	5825	4268	*	*	4486	5239	*	3512	5864	5021	4723	1210	2854	5742	*	*	27
+       0	*	*	*	*	*	*	4425	0	0	
+
+R 28   *	*	4302	6396	5147	*	*	4359	2832	4701	*	6632	7288	7109	1702	5272	1768	6090	*	5942	28
+       0	*	*	*	*	*	*	4425	0	0	
+
+A 29   3050	5142	*	*	4333	*	5239	3901	5723	3177	4215	6932	*	*	4284	6697	5175	4481	5312	1483	29
+       0	*	*	*	*	*	*	4425	0	0	
+
+V 30   *	*	*	*	4987	6891	*	2575	*	912	2294	5674	*	*	*	*	7288	5422	*	7004	30
+       0	*	*	*	*	*	*	4425	0	0	
+
+E 31   3858	*	6643	4111	*	5142	4287	5725	3269	5329	*	6049	*	1913	2530	5620	3737	6292	*	3752	31
+       0	*	*	*	*	*	*	4425	0	0	
+
+E 32   5825	6932	3493	2513	*	*	*	3501	3465	*	*	3184	5608	4034	6750	3628	2967	3040	*	*	32
+       40	5825	6687	1000	1000	*	*	4425	1029	0	
+
+F 33   *	*	*	*	1061	*	5140	6360	*	*	*	*	*	*	*	5224	*	5185	*	1232	33
+       0	*	*	*	*	*	0	4418	0	1000	
+
+D 34   7018	*	3313	2480	*	*	4639	*	1341	*	*	3620	*	4337	3316	4791	6620	*	*	*	34
+       0	*	*	1000	1000	0	*	4418	1000	1000	
+
+D 35   *	*	5034	3250	*	*	*	2523	2828	4550	5186	5069	3626	5166	4231	6965	6553	1961	*	6377	35
+       77	5245	5300	1000	1000	*	*	4437	1072	0	
+
+G 36   *	*	6207	*	*	38	*	*	*	*	*	6296	*	*	*	*	*	*	*	*	36
+       0	*	*	*	*	*	0	4391	0	1096	
+
+E 37   *	*	552	2668	*	*	6335	*	*	*	*	6862	*	2956	*	6521	*	*	*	*	37
+       0	*	*	*	*	*	0	4391	0	1096	
+
+K 38   6335	*	*	*	5444	*	*	2539	1634	3982	5846	*	*	*	3456	5169	4873	*	*	2080	38
+       0	*	*	*	*	0	*	4391	0	1096	
+
+V 39   4036	*	*	*	*	*	*	*	*	5834	*	*	*	*	*	*	*	118	*	*	39
+       0	*	*	*	*	*	*	4437	0	0	
+
+H 40   3149	*	1269	*	*	6429	2386	4583	*	4881	*	6580	*	*	*	4881	4922	3317	*	5957	40
+       0	*	*	*	*	*	*	4437	0	0	
+
+L 41   *	*	*	*	*	*	*	442	*	3105	*	*	*	*	*	*	*	2760	*	*	41
+       0	*	*	*	*	*	*	4437	0	0	
+
+K 42   6052	6697	2735	*	6301	*	5254	3179	1656	4351	6073	5860	*	*	4632	*	5185	2253	*	*	42
+       0	*	*	*	*	*	*	4437	0	0	
+
+I 43   3474	4308	*	*	*	2759	*	1337	*	4505	*	*	4613	*	*	*	6139	2206	*	*	43
+       17	6429	*	3585	126	*	*	4437	1022	0	
+
+D 44   *	*	1052	3465	*	*	5737	*	4701	*	4061	1748	*	*	*	*	6350	*	*	*	44
+       0	*	*	*	*	*	*	4437	0	0	
+
+P 45   4721	*	*	*	*	1993	*	*	*	*	*	*	1006	*	*	2438	*	5146	*	*	45
+       0	*	*	*	*	*	*	4437	0	0	
+
+S 46   2063	6713	*	*	6899	6965	*	*	*	6061	6429	4958	*	*	4427	995	3556	5834	*	5300	46
+       0	*	*	*	*	*	*	4437	0	0	
+
+V 47   7192	5300	*	4297	3462	*	*	1910	7061	6536	7040	*	*	3885	*	*	6653	1386	6315	4023	47
+       34	6429	6397	2807	222	*	*	4437	1022	0	
+
+P 48   *	*	*	*	*	*	1416	5156	6026	*	5552	*	4266	1310	5624	4879	*	4904	6749	6936	48
+       0	*	*	*	*	0	*	4420	0	1018	
+
+N 49   5414	*	4245	4344	*	6397	5842	*	717	7061	*	4988	*	6665	4149	3764	5973	5798	*	5371	49
+       11	7061	*	0	*	*	*	4437	1000	0	
+
+G 50   *	*	*	6061	*	252	*	*	*	*	*	4523	*	*	5300	*	3712	*	*	*	50
+       0	*	*	*	*	*	*	4437	0	0	
+
+R 51   4472	6061	*	*	6867	*	*	6397	*	4146	639	5300	*	4341	3875	5326	4493	6818	*	*	51
+       0	*	*	*	*	*	*	4437	0	0	
+
+F 52   4536	*	*	*	4343	*	*	*	*	*	*	*	202	*	*	*	5146	*	*	6665	52
+       22	*	6061	*	*	*	*	4437	0	0	
+
+H 53   6653	*	6463	*	3187	*	644	*	*	*	*	5615	4187	4799	*	*	*	*	*	3084	53
+       14	6653	*	0	*	*	0	4420	1011	1037	
+
+P 54   5731	*	*	*	*	6793	3649	*	1396	7432	5722	6370	2615	4613	2001	5528	*	*	*	*	54
+       0	*	*	*	*	*	0	4420	0	1037	
+
+R 55   5106	4034	6417	*	3280	6929	6089	5981	5995	6235	6663	6564	*	*	1175	5092	*	3442	*	2806	55
+       0	*	*	*	*	*	0	4420	0	1037	
+
+F 56   *	*	*	*	1385	*	*	*	*	5251	*	*	*	*	*	*	*	*	*	759	56
+       0	*	*	*	*	*	0	4420	0	1037	
+
+D 57   *	5910	6223	*	5586	*	528	6663	6328	*	*	6574	5251	2483	*	5818	*	*	*	*	57
+       0	*	*	*	*	*	0	4420	0	1037	
+
+G 58   *	*	*	*	*	79	*	*	*	*	*	*	*	*	*	5219	*	*	5251	*	58
+       0	*	*	*	*	*	0	4420	0	1037	
+
+Q 59   4567	*	*	*	*	*	*	6417	1254	4187	*	*	*	4240	1476	5731	7017	*	*	4928	59
+       0	*	*	*	*	*	0	4420	0	1037	
+
+T 60   *	*	*	*	*	*	*	4244	*	*	*	5251	5126	*	5731	*	478	2682	*	*	60
+       0	*	*	*	*	*	0	4420	0	1037	
+
+G 61   4463	6595	*	*	*	166	*	*	*	*	*	*	*	*	5219	*	*	*	5251	*	61
+       0	*	*	*	*	*	0	4420	0	1037	
+
+T 62   6645	*	5722	3002	*	*	*	3352	3063	6791	7327	*	*	*	2010	6863	2747	2268	*	*	62
+       0	*	*	*	*	*	0	4420	0	1037	
+
+V 63   *	6653	*	*	*	*	*	1843	*	5813	*	*	*	*	*	5251	*	584	*	*	63
+       0	*	*	*	*	*	0	4420	0	1037	
+
+E 64   6237	5126	*	4210	2250	*	*	3889	6642	3732	6795	6586	*	5927	*	*	3635	2243	3675	2887	64
+       0	*	*	*	*	0	*	4420	0	1037	
+
+G 65   5692	*	4881	4636	*	1297	6369	7048	5573	*	*	1464	*	*	*	3650	5883	*	*	*	65
+       0	*	*	*	*	*	*	4403	0	0	
+
+K 66   6368	*	*	*	6523	*	*	3232	2196	5392	4970	*	6315	3819	4114	*	4389	1364	5701	*	66
+       17	6455	*	1000	1000	*	*	4403	1004	0	
+
+Q 67   6193	*	*	*	5866	4174	*	*	4397	*	*	3225	*	3121	1572	4982	1855	*	*	*	67
+       0	*	*	*	*	*	*	4394	0	0	
+
+G 68   *	*	*	*	*	970	*	*	2780	*	*	5413	2819	3522	3841	6025	7285	*	*	*	68
+       0	*	*	*	*	*	*	4394	0	0	
+
+D 69   *	*	3659	5804	*	6971	2827	*	2760	*	*	3600	*	*	1292	3638	5386	6455	*	*	69
+       0	*	*	*	*	*	*	4355	0	0	
+
+A 70   487	3808	*	6036	*	4314	*	*	*	*	*	*	*	*	*	2915	5859	*	*	*	70
+       0	*	*	*	*	*	*	4355	0	0	
+
+Y 71   *	*	*	*	4497	*	*	3954	*	3002	4062	*	*	*	*	*	*	1787	4727	1399	71
+       0	*	*	*	*	*	*	4355	0	0	
+
+K 72   5892	*	*	3899	*	1196	*	2678	3867	3566	*	*	*	*	5859	*	4789	3096	*	*	72
+       0	*	*	*	*	*	*	4355	0	0	
+
+V 73   *	*	*	*	*	*	*	2099	*	2966	*	*	*	*	*	*	*	647	*	*	73
+       0	*	*	*	*	*	*	4355	0	0	
+
+D 74   4415	*	4427	1724	*	6325	*	2226	3040	5401	6064	6455	*	4079	4683	4327	*	4103	*	*	74
+       0	*	*	*	*	*	*	4355	0	0	
+
+I 75   *	7373	*	*	4575	*	*	1895	6455	3558	4542	*	*	*	*	*	6754	903	*	*	75
+       42	6455	5882	1000	1000	*	*	4355	1004	0	
+
+V 76   7019	*	5488	6265	6724	6027	4103	*	2347	*	5250	1824	6016	4773	3326	5757	3776	5182	6575	3514	76
+       731	1331	*	1000	1000	*	0	4334	2341	1022	
+
+D 77   *	*	2127	5488	4313	*	6928	3838	3687	3870	6858	6431	*	5566	*	*	*	1263	5941	*	77
+       0	*	*	*	*	0	*	4334	0	1022	
+
+G 78   *	6953	6273	*	*	909	*	6667	3374	*	4570	3658	*	3601	2989	6588	*	*	*	*	78
+       30	5585	*	1000	1000	*	*	4355	1052	0	
+
+G 79   *	*	2982	5272	*	1580	3825	*	6588	*	*	1845	6163	*	6985	4143	5671	4167	*	*	79
+       481	1818	*	1000	1000	*	*	4355	1990	0	
+
+K 80   4052	*	*	3700	*	6667	6730	3232	1577	2834	4633	*	*	*	3237	4824	6542	3851	*	*	80
+       303	2402	*	1210	817	*	*	4355	1664	0	
+
+E 81   2814	6006	5742	2210	6828	5892	*	5023	3375	4565	6511	5398	3981	5040	3328	7007	3259	4422	*	5294	81
+       0	*	*	*	*	*	*	4355	0	0	
+
+K 82   *	*	*	*	*	*	*	*	113	*	*	*	*	6036	4050	*	*	*	*	*	82
+       24	5892	*	2000	415	*	*	4355	1037	0	
+
+T 83   *	*	6588	4690	*	*	5279	3666	2345	4877	*	*	*	5827	1545	*	2354	4869	*	5299	83
+       0	*	*	*	*	*	*	4355	0	0	
+
+I 84   *	*	*	*	4746	*	*	1165	*	1772	*	*	*	*	*	*	*	2159	*	*	84
+       0	*	*	*	*	*	*	4355	0	0	
+
+I 85   *	5044	5579	*	3605	*	2891	1496	*	*	*	2397	*	4703	*	3772	6036	4927	*	5171	85
+       0	*	*	*	*	*	*	4355	0	0	
+
+V 86   3013	*	*	*	*	*	*	2551	*	4676	*	*	*	*	*	4673	3389	911	*	*	86
+       0	*	*	*	*	*	*	4355	0	0	
+
+T 87   5423	*	5562	*	*	4868	4616	*	4983	3256	*	6001	5594	*	747	4855	3975	*	*	6168	87
+       0	*	*	*	*	*	*	4355	0	0	
+
+A 88   3322	*	*	*	4386	*	*	2008	6363	5245	*	*	1305	6776	*	*	4635	3171	*	*	88
+       0	*	*	*	*	*	*	4355	0	0	
+
+A 89   3564	*	3651	634	*	*	*	*	*	*	*	5859	*	4256	*	*	*	3038	*	*	89
+       0	*	*	*	*	*	*	4355	0	0	
+
+H 90   *	*	*	*	*	*	45	*	*	*	*	*	*	5017	*	*	*	*	*	*	90
+       0	*	*	*	*	*	*	4355	0	0	
+
+L 91   *	*	*	*	*	*	*	2183	*	1139	5086	*	*	*	*	*	*	1755	*	*	91
+       0	*	*	*	*	*	*	4355	0	0	
+
+R 92   7315	*	*	5383	6474	*	6533	6750	1352	6881	*	5253	*	4971	1408	5307	5344	4228	*	*	92
+       24	5892	*	2000	415	*	*	4355	1037	0	
+
+R 93   4371	*	*	4635	*	5882	3307	6006	2169	4848	6158	*	1446	4779	3564	*	5742	*	*	*	93
+       21	*	6101	*	*	*	*	4355	0	0	
+
+Q 94   6284	5924	5704	*	3860	*	6441	4586	*	2583	*	6850	*	2296	*	1409	*	4237	*	5593	94
+       0	*	*	*	*	0	*	4177	0	1011	
+
+E 95   4623	*	*	2949	*	4265	*	*	1243	*	*	3367	5691	4605	4773	4514	4290	3909	*	*	95
+       0	*	*	0	*	*	*	3401	0	0	
+
+//
+�HHsearch 1.5
+NAME  5b8f9d914431e9d2b55e563b03e7b909
+FAM   
+FILE  5b8f9d914431e9d2b55e563b03e7b909
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:30:08 2013
+LENG  206 match states, 206 columns in multiple alignment
+FILT  56 out of 58 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  4.8 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCHHHCCHHHHHHHHHHHCCCCCEEEECCCCCCCCCCCCCCCCCCCCCCCHHHCCCCCCCCHHHHHHCCCC
+CCCCCCCCCCCCHHHHHHHHHHHHHHCCCCEEEEEEECCCCCCCCCCEECEECCCCCCCCCCCCEEECCCCEEEEEEEEECCCCCCCCCEEEEECCCEEE
+EEECCC
+>ss_conf PSIPRED confidence values
+9854335689867887635667987356978100899999998653438683242066445556654546755402113120347542036999828474
+6478875015089999999999887426837998853586538761200304588775789994164177568999888658998885127984666897
+776279
+>Consensus
+xqxxxxlrpxpsdxlpxxxlxexpdpxxxPkxxdLxxxxLrxxLGxxfDxxxmSixxPxxxxxxxxxxxxxxxxlxxxdxxxrxxxxxxlpxexxxlxfx
+xxxxxGxxxxxsxxxxrxlrxWLxxxtxCpvxyxWxDLGxxFWPRwIKxGxCxxxxSCSxPxGMxCkpsxsxxlxlLRWxCxxxxxxxCxWxxvxyPiit
+eCxCsC
+>5b8f9d914431e9d2b55e563b03e7b909
+MQHYLHIRPAPSDNLPLVDLIEHPDPIFDPKEKDLNETLLRSLLGGHYDPGFMATSPPEDRPGGGGGAAGGAEDLAELDQLLRQRPSGAMPSEIKGLEFS
+EGLAQGKKQRLSKKLRRKLQMWLWSQTFCPVLYAWNDLGSRFWPRYVKVGSCFSKRSCSVPEGMVCKPSKSVHLTVLRWRCQRRGGQRCGWIPIQYPIIS
+ECKCSC
+>gi|99030980|gb|ABF61775.1| noggin1 [Nematostella vectensis]
+--------------DPPVRLSLPPELNFGILPTNINREELLAILGQDYDREYVAETFSEVLLR------KTNKSIYDNENFYRKTLVKSMPEGLRKLDFQ
+--M-PGEGRNLGPKASRKLQLWLWELSSCPVYQKWKDQGQLIWPRYRNIGRCSRKSTCSYPGGMKCKRSKTKRVALLRWFCRG---KLCQWLKFFVSVIT
+ECSCQC
+>gi|225691084|gb|ACO06226.1| noggin 2 [Schmidtea mediterranea]
+--------------------------NFKTEEIARAAfkltngQLLKLLNRKNFNSNFMSITEPESSNDIKQ--FYISKSLNLIE-KQNQ-------KSF
+lrKAL----QLFHLKKFRKTinRDFRRKLRTFLDLFSWCPVTYQWKDMGPKFWPRWIKQGSCaNLSKSCSYPEGLVCQEYEHKNIAVLRFLCmSDWAIDK
+CKWYKIYIPFLLTCRCGC
+>gi|225713144|gb|ACO12418.1| Noggin precursor [Lepeophtheirus salmonis]gi|290462987|gb|ADD24541.1| Noggin [Lepeophtheirus salmonis]
+------------DTGPLQRAITYTNPLVplefwekakrKPRRKHLKIDLLLRKMGQDFDSSWMSASKPQKDL-------KSVVEISddQVAELVEQVSDL
+NLKEDLSNIlsisPFNnesekdddtKTRdDDGEpRIKeeivSSKDitqMANLLQQWLIKKSSCPVTYKWKDLGEYFWPRWIRMGSCTQEKsgfvdkkpNC
+SWPKGLHCVPGEALTLQILRWHCKRRRphigsskrdrPMKCKWYKVPYPVTSSCKCDC
+>gi|225691090|gb|ACO06229.1| noggin-like protein 4 [Schmidtea mediterranea]
+--------------LKVKVLSEKIDPILfndlMPESHSLHEGRLMKILGDRFDSFWTSVNTPHN--------LGYETEVS-YDPKLE--------IFLDS
+LNITEI----RGQPISFEMKRLIQNWLVNKATCKISYYWEDLGNLFWPRFIKKTICVntNSESCSWPPGMKCGLSGPMKIHHLRWTC-------------
+------------
+>gi|118344598|ref|NP_001072068.1| noggin4 [Takifugu rubripes]gi|59800376|gb|AAX07475.1| noggin4 [Takifugu rubripes]
+---FLQLRAsLPSYSQPIRtytllANIED--YHYMPKPTERRASRLLRLLGSSLDLFWMSIEKPSEVS--GSHPddlvpLHGDKRLEKAAALNQQK----
+LEKEAEALELGF-LP--------PQVASSVRAWLVHSAICRLRHRWVDLGPAFWPRWLRQTDCEswdGGRSCSFPGGMECVRAKTTHIKILAWHCsESRG
+EdgsrgnksdvrtgaemgevmKRCVWRQVPYPVVTACTCSC
+>gi|225691092|gb|ACO06230.1| noggin-like protein 5 [Schmidtea mediterranea]
+-------------------------------------KKLKKILDSDhlFD-NWLALTKPAEIYIP----LNGT---NKID--SRLRNLIK----MKNFV
+FKN--KRGEKMNLTSDILDSIKLWLEEESSCQMEYIWHELEPSFWPRWIKKGLCVSLTSCSWPPGMSCKAKKTKNLDLLQFRC-----------------
+--------
+>gi|27374944|emb|CAD59735.1| noggin-l [Suberites domuncula]
+-----------------------------SRAQSLDVQlTLLNILGADLNQGLQSITEMTGS---SPTVCTNETALEQSDEGLR--P-SDVPEFFQDRYF
+EEGFNNTAVYSIHsgdtRmAIRRTL-----NTLNCRVTYNWADAGVNFFPRYFSAGSCFE-RRCSIPDraDFLCRPDVfnqeqMGTLTALRWDCCwevve
+tivrgRRgrtfrrLSRRynCGWRRIRFPIVCDCDCNC
+>gi|340374294|ref|XP_003385673.1| PREDICTED: noggin-2-like [Amphimedon queenslandica]
+----------------------------------LDIALLYGHLGPDFDSTYTQLEDPTAMNPP------INPPIP--P---E---LVTLPRTMVNRTFF
+---P-DMVYNASEQF--TIRRWVGDQLGCKLEAGWVDLRQNFFPRWYAGRKCLpIRGNCSIPSgGQQCWPDLtdLDYVTMLAWDACyvpvGTTEaYTFGW
+RKVSVPIIRRCSCTC
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1000	0	0	
+
+Q 2    *	*	*	*	*	*	*	3682	*	3921	*	4057	*	329	*	*	*	*	*	*	2
+       0	*	*	*	*	*	*	2980	0	0	
+
+H 3    *	*	3921	*	*	*	1320	*	*	4287	*	*	1503	2948	*	*	*	*	*	*	3
+       0	*	*	*	*	*	*	2980	0	0	
+
+Y 4    *	*	*	*	2652	*	3499	*	*	*	*	*	*	3166	4151	3917	3873	*	*	1151	4
+       0	*	*	*	*	*	*	3119	0	0	
+
+L 5    *	*	*	*	4995	*	*	*	4054	489	*	*	*	*	*	*	4151	*	*	2838	5
+       0	*	*	*	*	*	*	3119	0	0	
+
+H 6    *	*	3873	*	3917	*	2177	*	*	2136	*	*	4044	3652	1854	*	*	*	*	*	6
+       0	*	*	*	*	*	*	3119	0	0	
+
+I 7    *	*	*	*	*	*	*	3102	*	373	*	*	*	*	*	*	*	3166	*	*	7
+       0	*	*	*	*	*	*	3119	0	0	
+
+R 8    *	*	*	*	*	*	3917	*	3976	*	*	*	*	*	201	*	*	*	*	*	8
+       0	*	*	*	*	*	*	3119	0	0	
+
+P 9    3652	*	3917	*	*	*	*	*	*	*	*	*	227	*	*	*	*	*	*	*	9
+       120	3652	*	0	*	*	*	3119	1025	0	
+
+A 10   3102	*	*	*	*	*	*	2546	*	2611	*	*	*	3015	4489	1991	*	2956	*	*	10
+       0	*	*	*	*	*	*	3119	0	0	
+
+P 11   *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	11
+       0	*	*	*	*	*	*	3256	0	0	
+
+S 12   *	*	*	*	*	*	4180	*	*	*	*	*	*	*	*	82	*	*	*	*	12
+       0	*	*	*	*	*	*	3256	0	0	
+
+D 13   *	*	563	3764	*	*	4361	*	*	*	*	4255	*	*	*	4183	5189	*	*	3925	13
+       84	4146	*	3000	193	*	*	3381	1025	0	
+
+N 14   *	*	1967	*	*	5379	3941	*	4261	*	*	2128	*	*	3883	2531	2907	*	*	*	14
+       0	*	*	*	*	*	*	3381	0	0	
+
+L 15   *	*	4024	*	*	4177	*	4695	*	644	*	*	4494	4185	*	*	*	3244	*	*	15
+       73	*	4335	*	*	*	*	3745	0	0	
+
+P 16   4344	*	*	*	*	4413	*	*	4526	*	4072	*	396	*	4615	*	*	*	*	*	16
+       73	4344	*	2322	322	*	0	3665	1033	1035	
+
+L 17   *	*	*	*	*	*	*	2573	*	1781	*	*	2989	*	*	*	*	1269	*	*	17
+       0	*	*	*	*	*	0	3665	0	1035	
+
+V 18   *	*	*	*	*	*	*	3463	2884	2564	*	*	2956	2808	4060	*	*	1872	*	*	18
+       89	4060	*	2322	322	*	0	3665	1025	1035	
+
+D 19   4060	*	896	3189	*	*	*	*	*	*	*	*	3585	*	2995	*	*	3570	*	*	19
+       0	*	*	*	*	*	0	3665	0	1035	
+
+L 20   4147	*	*	*	*	*	*	2959	*	397	*	4165	*	*	*	*	*	*	*	*	20
+       0	*	*	1000	1000	0	*	3761	1035	1035	
+
+I 21   *	*	*	4534	*	4753	4810	1357	3011	3341	*	5826	4682	*	*	2772	*	3880	*	*	21
+       0	*	*	*	*	*	*	3833	0	0	
+
+E 22   *	*	*	417	*	*	*	*	4385	2740	*	*	*	*	*	*	4229	*	*	*	22
+       0	*	*	*	*	*	*	3833	0	0	
+
+H 23   4563	*	1580	*	*	*	2603	*	4639	*	4712	3855	3101	*	*	4573	3263	*	*	4365	23
+       70	*	4390	*	*	*	*	4077	0	0	
+
+P 24   4862	*	*	*	*	*	*	3590	*	*	*	*	343	4528	*	*	4300	*	*	*	24
+       68	*	4441	*	*	*	0	3992	0	1025	
+
+D 25   *	*	841	4087	*	2622	*	*	*	*	*	2580	*	*	4230	*	*	*	*	*	25
+       0	*	*	*	*	1063	939	3914	0	1147	
+
+P 26   4677	*	3474	*	*	*	5074	*	*	4316	*	*	825	*	*	3813	*	*	*	2685	26
+       0	*	*	*	*	*	0	4213	0	1035	
+
+I 27   4113	*	*	2956	*	*	2704	2940	4867	3532	*	3464	*	*	3392	4822	*	3255	*	3595	27
+       138	4951	4079	0	*	*	0	4463	1000	1035	
+
+F 28   4746	*	*	*	2041	*	6019	*	*	1981	*	*	*	5710	*	*	4772	4809	*	1475	28
+       227	2779	*	2191	357	839	1181	4515	1356	1190	
+
+D 29   4530	*	1302	*	*	4556	*	3766	2860	5049	4084	4052	*	5363	3839	5242	*	5194	*	*	29
+       0	*	*	2807	222	0	*	4608	1035	1035	
+
+P 30   *	*	*	4664	*	*	*	4868	*	*	*	*	299	*	*	3670	4841	*	*	*	30
+       0	*	*	*	*	*	*	4994	0	0	
+
+K 31   *	*	5119	4083	*	3515	*	*	1309	3365	*	5107	5362	4664	2338	4899	*	*	*	*	31
+       0	*	*	*	*	*	*	4994	0	0	
+
+E 32   3805	*	4825	1592	*	*	*	4899	5127	5107	5087	*	1680	5362	5163	5372	5119	*	*	5393	32
+       0	*	*	*	*	*	*	4994	0	0	
+
+K 33   5609	*	4825	4211	4664	*	3791	4841	2344	*	*	4404	*	2448	2469	4224	3607	*	*	*	33
+       0	*	*	*	*	*	*	4994	0	0	
+
+D 34   3652	*	1124	3097	*	*	3608	*	*	4870	*	4932	*	5187	5304	3107	5204	*	*	*	34
+       0	*	*	*	*	*	*	5060	0	0	
+
+L 35   *	*	*	*	*	*	*	2968	5171	575	5193	*	*	*	3150	*	*	4919	*	*	35
+       0	*	*	*	*	*	*	5172	0	0	
+
+N 36   4514	*	1794	*	*	*	5524	*	4287	5291	*	1610	4768	5522	2947	4225	*	*	*	*	36
+       0	*	*	*	*	*	*	5206	0	0	
+
+E 37   3349	*	5427	1928	*	*	5343	3270	*	5301	*	5576	2906	*	5038	*	4345	2132	*	*	37
+       131	3522	*	2053	398	*	*	5251	1290	0	
+
+T 38   3449	*	5451	4043	*	3748	5686	*	2805	4812	*	*	5438	3201	2576	3607	2550	*	*	*	38
+       54	4774	*	0	*	*	*	5306	1058	0	
+
+L 39   3882	*	*	3423	*	*	*	4777	2098	2571	4956	*	*	*	2297	*	2950	4812	*	*	39
+       0	*	*	*	*	*	*	5306	0	0	
+
+L 40   *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	40
+       0	*	*	*	*	*	*	5306	0	0	
+
+R 41   *	*	*	5481	*	4812	*	5740	3416	2085	4572	5337	*	4152	1302	*	5111	*	*	4781	41
+       0	*	*	*	*	*	*	5306	0	0	
+
+S 42   3476	*	*	*	*	4346	*	4956	1645	4259	*	3793	*	4622	2051	3946	6520	*	*	5211	42
+       0	*	*	*	*	*	*	5306	0	0	
+
+L 43   6464	*	*	*	4956	*	4781	1704	2343	1732	5005	6773	*	*	5377	*	5107	5540	*	*	43
+       0	*	*	*	*	*	*	5306	0	0	
+
+L 44   *	*	*	*	5481	*	*	5337	*	274	3933	5149	*	*	4956	*	*	*	*	*	44
+       0	*	*	*	*	*	*	5306	0	0	
+
+G 45   4696	*	3770	*	*	472	5405	*	5377	4956	*	*	*	*	5149	5273	*	6520	5481	*	45
+       27	5728	*	0	*	*	*	5306	1025	0	
+
+G 46   3144	*	3544	3933	*	2831	*	*	3433	5686	*	4317	4276	3775	4799	1983	*	5689	*	*	46
+       180	3567	4929	0	*	*	*	5306	1256	0	
+
+H 47   3459	*	2205	5470	*	6560	2551	*	4617	*	*	2382	*	5828	3745	2831	*	*	*	5441	47
+       102	4513	5370	1000	1000	0	*	5318	1079	1064	
+
+Y 48   *	*	*	*	859	*	*	*	*	2193	*	*	*	*	*	*	*	*	*	2120	48
+       0	*	*	*	*	0	*	5267	0	1008	
+
+D 49   *	*	378	5007	*	*	*	*	*	5689	*	2668	*	5448	*	*	*	*	*	*	49
+       62	*	4568	*	*	*	*	5306	0	0	
+
+P 50   5611	*	*	4300	4589	5374	4293	*	5250	5544	*	5407	1288	4339	5038	2309	4333	*	*	*	50
+       0	*	*	*	*	0	*	5251	0	1079	
+
+G 51   4430	*	3701	3320	2627	3891	5700	*	5807	6486	5337	2710	*	4459	3112	4030	3936	5898	*	5875	51
+       0	*	*	*	*	*	*	5306	0	0	
+
+F 52   *	5593	*	*	1529	5005	*	*	*	4774	*	*	*	*	*	*	*	5111	1408	2649	52
+       0	*	*	*	*	*	*	5306	0	0	
+
+M 53   *	*	*	*	*	*	*	5523	*	3213	717	*	*	4774	*	4514	3008	4123	*	*	53
+       0	*	*	*	*	*	*	5306	0	0	
+
+A 54   2791	*	*	*	*	*	*	*	*	*	*	*	*	4781	4291	441	5005	*	*	*	54
+       0	*	*	*	*	*	*	5306	0	0	
+
+T 55   4809	*	*	4203	*	*	*	1110	5337	3097	4361	*	5689	*	*	4757	4699	2629	*	*	55
+       36	5337	*	1585	585	*	*	5306	1022	0	
+
+S 56   3884	*	5405	2292	4956	3733	5160	6520	*	6399	*	3439	*	*	4604	3115	1937	4776	*	*	56
+       0	*	*	*	*	*	*	5306	0	0	
+
+P 57   5026	*	3680	3085	5136	*	5875	4427	2871	4209	*	*	2797	3172	3114	4875	4105	5155	*	*	57
+       0	*	*	*	*	*	*	5306	0	0	
+
+P 58   *	*	5005	*	*	*	*	*	*	*	4774	*	186	*	*	5136	5337	*	*	*	58
+       299	4053	2980	0	*	*	*	5306	1143	0	
+
+E 59   4488	*	4470	1605	*	5379	5514	*	3032	4499	*	*	4961	4694	3219	3874	3302	5544	*	*	59
+       0	*	*	*	*	*	0	5223	0	1525	
+
+D 60   4644	*	2033	2629	*	4092	*	4274	3842	*	5544	3737	4478	5355	4767	3487	5265	4149	*	*	60
+       107	5166	4529	1000	1000	*	0	5223	1033	1525	
+
+R 61   3741	*	5223	*	*	4823	5110	3363	3142	2521	3742	5516	4883	5280	3264	2607	*	5325	*	*	61
+       334	*	2275	*	*	2722	237	5169	0	1700	
+
+P 62   *	*	*	*	5045	5277	*	*	3819	2832	5052	2590	2918	4894	2973	5120	4844	4960	*	2762	62
+       958	*	1043	*	*	*	0	4983	0	2266	
+
+G 63   *	*	3733	4070	*	3079	*	3188	*	2985	*	3076	2586	2725	3749	*	*	*	*	*	63
+       316	*	2347	*	*	4668	58	4164	0	3475	
+
+G 64   2646	*	*	*	*	3009	*	3589	*	*	*	*	1413	*	3502	*	2563	*	*	*	64
+       1353	*	717	*	*	3615	123	3983	0	3626	
+
+G 65   *	*	*	*	*	769	*	*	2840	*	*	*	*	*	*	1870	*	*	*	*	65
+       250	*	2651	*	*	2534	274	3175	0	4045	
+
+G 66   *	*	*	*	*	1633	*	*	*	2767	*	2888	3310	3408	*	3794	2962	*	*	*	66
+       305	*	2394	*	*	4712	56	3643	0	3664	
+
+G 67   2632	*	*	*	*	2257	2513	*	3537	*	*	*	*	*	*	1961	3170	*	*	*	67
+       238	*	2718	*	*	4854	51	3386	0	3766	
+
+A 68   2185	*	*	*	*	3786	*	*	*	2716	*	*	3645	*	2281	*	*	2515	*	3399	68
+       825	1461	3786	1666	546	1289	760	3408	1364	3799	
+
+A 69   5141	4017	4678	3550	3551	*	4426	4449	*	1192	*	*	*	*	4783	4221	*	*	*	3640	69
+       194	2993	*	0	*	2460	289	4626	1210	2791	
+
+G 70   3378	*	4567	*	3386	3478	3364	*	3205	*	4928	3960	4532	*	*	3664	2678	4221	*	4589	70
+       0	*	*	*	*	588	1580	4863	0	2480	
+
+G 71   3731	*	5219	3744	*	1735	*	3810	5118	4393	5027	3610	2928	*	*	4134	4968	*	*	4566	71
+       0	*	*	*	*	2663	248	5168	0	1469	
+
+A 72   4697	*	5405	3153	*	*	*	5541	*	6291	*	1656	5583	3839	5014	2286	3717	3813	*	*	72
+       158	*	3269	*	*	1139	873	5189	0	1383	
+
+E 73   5453	5554	3819	2812	*	3352	*	*	3436	3833	*	*	4586	5501	4839	3977	2793	2766	*	5126	73
+       0	*	*	*	*	1568	593	5073	0	1544	
+
+D 74   3635	*	2166	2664	*	*	*	*	5577	*	*	2910	4669	5312	3511	2621	4498	5271	*	*	74
+       28	*	5726	*	*	1541	607	5164	0	1335	
+
+L 75   4788	*	5247	*	4778	*	*	1923	*	1030	*	*	*	6418	*	*	3890	3873	*	*	75
+       94	3981	*	473	1839	554	1650	5217	1182	1266	
+
+A 76   2785	*	3269	3290	*	3942	*	*	5481	*	5363	3181	3405	4916	*	2303	*	6465	*	3550	76
+       351	4137	2653	2059	396	*	0	5295	1164	1025	
+
+E 77   3877	*	2978	2770	4456	3723	4740	5410	4349	4827	4596	4924	5099	2948	5700	6432	3318	*	*	5167	77
+       210	3331	4784	1377	701	882	1129	4970	1299	1673	
+
+L 78   4163	*	*	4709	6259	4712	*	4186	*	3674	4275	4966	3498	4168	3413	3170	*	2287	6325	3808	78
+       0	*	*	*	*	741	1316	5059	0	1380	
+
+D 79   2926	*	1285	2928	*	*	5592	*	4892	5751	*	3967	4376	*	5294	3834	5474	5409	*	*	79
+       861	*	1154	*	*	*	0	5225	0	1102	
+
+Q 80   4320	*	*	2168	*	*	*	4182	3598	3802	*	3774	3176	5113	4746	3798	4580	3187	*	4485	80
+       150	3338	*	503	1765	2784	226	4413	1126	2878	
+
+L 81   4511	*	*	*	3364	3483	*	*	2821	1690	*	4733	3275	5813	3948	*	4246	*	*	4576	81
+       196	4330	3698	1585	585	654	1457	4648	1037	2621	
+
+L 82   3260	*	*	*	*	3572	5164	*	4864	1789	5362	3222	*	4100	*	3017	5912	3405	*	4810	82
+       67	*	4452	*	*	1414	679	5048	0	1766	
+
+R 83   5565	*	3390	2706	*	*	*	5182	4244	*	*	4025	*	4264	989	4931	*	*	*	*	83
+       297	6307	2529	0	*	1153	862	5131	1000	1603	
+
+Q 84   5461	3962	4401	*	4586	*	*	5004	4795	2618	4235	5008	3468	2147	4629	5013	4959	5246	*	3966	84
+       342	*	2245	*	*	4301	75	4807	0	1935	
+
+R 85   *	*	*	4793	*	4173	*	*	1274	*	*	5832	*	4740	2514	3698	3539	3298	*	*	85
+       127	*	3564	*	*	3565	127	4378	0	2509	
+
+P 86   5124	*	*	*	4715	5982	*	4604	*	2263	*	4820	1100	*	5189	4678	3944	6051	5686	*	86
+       213	*	2862	*	*	1567	594	4415	0	2583	
+
+S 87   3844	*	3207	*	*	3757	3874	*	*	2845	4876	5808	3878	5868	3103	2557	3710	4606	*	*	87
+       0	*	*	*	*	2495	282	4602	0	2342	
+
+G 88   3998	*	*	*	*	1724	*	5107	2992	4966	*	5050	4613	*	2605	4257	4717	3031	*	*	88
+       0	*	*	*	*	2822	220	4834	0	2105	
+
+A 89   1828	*	4301	4451	*	*	*	6035	2098	*	6145	5096	3327	*	4936	4289	3537	*	4996	5124	89
+       184	*	3064	*	*	3259	159	4863	0	1946	
+
+M 90   5510	*	*	*	*	*	*	3326	5187	1174	1649	4838	*	*	*	*	*	4215	*	*	90
+       0	*	*	*	*	*	0	4501	0	2164	
+
+P 91   *	*	*	4247	*	*	*	*	4836	2937	*	*	940	*	3214	3736	*	4838	4552	*	91
+       0	*	*	*	*	1548	604	4501	0	2164	
+
+S 92   5297	*	*	2234	*	5233	*	5139	2185	4848	*	3946	5091	2852	2499	5944	5241	*	*	*	92
+       0	*	*	*	*	2485	284	4958	0	1756	
+
+E 93   *	*	3524	1191	3411	3992	*	5199	*	4870	*	*	*	5136	5630	3594	4581	5444	4048	*	93
+       0	*	*	3807	107	576	1603	5017	1035	1611	
+
+I 94   2852	*	*	*	2431	*	*	1780	*	2620	3583	*	*	*	5289	*	*	3413	5699	*	94
+       95	3965	*	1000	1000	*	0	5200	1179	1147	
+
+K 95   *	*	3204	3530	*	5427	*	5334	1633	4332	*	*	*	3080	2489	4330	*	4696	*	*	95
+       0	*	*	*	*	0	*	5200	0	1147	
+
+G 96   2467	*	3705	3515	4956	3235	*	*	3008	*	*	1976	*	4679	4747	4016	*	*	*	*	96
+       42	5111	*	2322	322	*	*	5306	1037	0	
+
+L 97   4160	*	*	*	4523	*	*	4269	*	783	4451	*	*	5728	3459	*	*	5032	4067	5523	97
+       181	5451	3395	2000	415	*	*	5306	1028	0	
+
+E 98   *	*	1804	3009	*	5703	*	*	4196	*	*	2061	5347	4034	5622	5573	3537	5464	*	4634	98
+       0	*	*	*	*	*	0	5134	0	1346	
+
+F 99   *	*	*	*	979	5703	*	5553	*	1426	*	*	*	*	*	*	5445	4129	*	*	99
+       207	*	2903	*	*	*	0	5134	0	1346	
+
+S 100  *	*	5351	4451	4471	3156	*	*	3242	*	*	5163	3530	4824	5320	2620	1827	*	*	4395	100
+       306	5163	2615	3170	170	*	0	5102	1028	1903	
+
+E 101  4530	*	2975	1814	2879	3821	*	*	4876	*	*	3187	*	*	4892	3891	5174	4913	*	4943	101
+       731	2052	2677	677	1418	1009	991	4788	1593	2462	
+
+G 102  4480	*	3073	3865	3532	3398	5009	5158	4593	*	*	*	5873	2921	3985	5039	2567	3747	*	*	102
+       458	5005	2055	1585	585	1695	533	4768	1001	2122	
+
+L 103  4117	*	3728	*	3497	*	*	4326	*	1206	3655	3685	*	*	4737	4883	*	3909	*	*	103
+       154	4130	4492	506	1758	781	1259	4692	1204	2472	
+
+A 104  6036	*	5193	4425	4923	4575	*	*	4762	*	*	3773	1317	3503	4293	3581	*	3715	*	5280	104
+       122	*	3624	*	*	2637	253	5068	0	1725	
+
+Q 105  5141	*	2342	*	6325	4669	4005	*	3560	4323	*	3500	3565	5147	5408	3913	4262	5234	6073	2827	105
+       41	*	5141	*	*	1602	577	4988	0	1905	
+
+G 106  *	*	4579	4072	*	491	*	*	4594	4960	*	*	*	*	5231	4590	4452	*	*	*	106
+       22	6015	*	3322	152	821	1204	5113	1000	1693	
+
+K 107  3551	*	6292	3739	6252	*	*	5675	1985	3675	4687	4154	4273	4635	3444	4301	3235	5175	*	*	107
+       36	5362	*	0	*	*	0	5228	1028	1259	
+
+K 108  4884	*	*	4974	*	4304	6146	4363	1813	4635	4376	3756	5901	5381	2464	4494	*	3643	*	5175	108
+       0	*	*	*	*	*	0	5228	0	1259	
+
+Q 109  4741	*	*	*	4120	3881	3421	3467	5077	2331	5607	5618	*	4113	4570	*	5621	3167	*	2712	109
+       160	3790	4929	1000	1000	*	0	5228	1234	1259	
+
+R 110  *	*	*	4226	*	4699	*	*	1731	*	*	1978	5582	*	2226	4556	5141	5367	*	5433	110
+       36	5335	*	2000	415	1938	436	5219	1028	1387	
+
+L 111  4318	*	*	*	4357	4944	*	2626	4704	1608	4107	*	3477	5344	*	4372	4660	3645	*	*	111
+       54	4771	*	1000	1000	*	0	5265	1037	1265	
+
+S 112  5788	*	5711	*	*	2492	4611	*	*	*	*	6665	3918	*	4923	966	3021	*	*	*	112
+       187	3041	*	1358	714	1657	550	5265	1423	1265	
+
+K 113  *	*	4288	3301	5604	5547	*	5374	1688	*	*	*	3420	3344	2254	5665	5801	*	4982	*	113
+       59	4643	*	0	*	1134	877	5298	1189	1154	
+
+K 114  3878	*	3112	3412	*	*	3963	*	1635	*	*	3625	*	2862	3607	5434	6320	*	*	*	114
+       34	5419	*	1585	585	0	*	5333	1028	1044	
+
+L 115  2974	*	*	5446	3561	4815	*	3530	5009	2092	2796	*	*	4364	*	4121	5905	3518	*	5416	115
+       53	*	4789	*	*	*	*	5339	0	0	
+
+R 116  3726	*	5690	3548	*	*	*	5248	4218	4177	*	*	*	3945	1377	5136	3701	2956	*	*	116
+       0	*	*	*	*	*	0	5232	0	1079	
+
+R 117  3776	*	3308	4286	*	*	*	*	3919	*	*	3491	*	5248	938	4654	4975	*	*	*	117
+       0	*	*	*	*	0	*	5232	0	1079	
+
+K 118  3921	*	*	5728	5112	*	5536	4957	1751	2975	4459	*	5272	*	2913	3382	3785	*	*	4815	118
+       28	5721	*	2807	222	*	*	5339	1017	0	
+
+L 119  *	*	*	*	2710	*	*	2045	*	1319	3082	*	*	*	*	*	*	4054	*	5272	119
+       53	*	4781	*	*	*	*	5339	0	0	
+
+Q 120  *	*	*	4391	*	*	5498	*	3286	3776	5044	*	*	1726	1244	*	*	*	*	*	120
+       0	*	*	*	*	*	0	5239	0	1058	
+
+M 121  5567	*	5716	6690	*	5044	*	*	4455	3005	3996	3842	*	1751	2526	5406	3695	*	*	4451	121
+       45	*	5013	*	*	*	0	5239	0	1058	
+
+W 122  *	*	*	*	3378	*	*	*	*	5725	*	*	*	*	*	*	*	*	261	4318	122
+       57	*	4702	*	*	*	0	5175	0	1204	
+
+L 123  *	*	*	*	*	*	*	*	*	246	3662	*	*	*	*	*	*	3690	*	*	123
+       0	*	*	*	*	*	0	5105	0	1326	
+
+W 124  *	*	5095	4521	*	4542	*	3497	*	3608	5311	6602	*	*	*	5377	4855	2235	1297	*	124
+       0	*	*	*	*	1518	619	5105	0	1326	
+
+S 125  3551	*	3452	2788	*	5530	4401	*	4416	4234	6548	3013	*	2667	*	2617	5053	*	5358	*	125
+       0	*	*	*	*	*	0	5213	0	1183	
+
+Q 126  5645	*	*	4175	4018	*	*	*	3174	3687	*	*	*	2983	2304	4470	3973	*	*	2079	126
+       0	*	*	*	*	*	0	5213	0	1183	
+
+T 127  1896	*	*	4978	*	*	*	*	*	3643	*	4519	*	*	*	1903	1696	*	*	*	127
+       0	*	*	*	*	1120	889	5213	0	1183	
+
+F 128  4666	*	*	5168	2918	4763	3550	5603	3988	*	*	3360	*	5405	5903	2440	2782	*	5227	3314	128
+       0	*	*	*	*	*	0	5293	0	1059	
+
+C 129  *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	129
+       0	*	*	*	*	*	0	5293	0	1059	
+
+P 130  5458	*	*	4514	*	*	4616	5455	3025	*	*	*	955	3465	3196	6688	*	5505	*	*	130
+       0	*	*	*	*	*	0	5293	0	1059	
+
+V 131  6783	*	*	*	*	6791	*	4745	*	2572	2700	*	*	*	*	4678	5687	826	*	*	131
+       0	*	*	*	*	*	0	5293	0	1059	
+
+L 132  6346	*	3223	3110	4944	*	3991	5405	3297	3161	6404	5553	*	5554	4368	5727	2671	3104	*	4745	132
+       0	*	*	*	*	*	0	5293	0	1059	
+
+Y 133  4763	*	*	*	4413	*	4025	4129	*	*	*	*	*	4450	5576	3507	*	*	*	637	133
+       0	*	*	*	*	*	0	5293	0	1059	
+
+A 134  3450	*	*	4261	*	4763	6341	2655	2941	5762	5903	4427	*	4391	3335	3114	2899	5553	*	5727	134
+       0	*	*	*	*	*	0	5293	0	1059	
+
+W 135  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	135
+       0	*	*	*	*	*	0	5293	0	1059	
+
+N 136  4035	*	*	2958	*	*	5666	3210	1648	*	*	3689	*	5397	5147	*	3775	2723	*	6704	136
+       0	*	*	*	*	*	0	5293	0	1059	
+
+D 137  *	*	241	4222	*	*	*	*	*	*	*	4662	*	*	4724	*	*	*	*	5455	137
+       0	*	*	*	*	0	*	5293	0	1059	
+
+L 138  4851	*	*	*	*	*	5107	*	5006	355	3746	*	*	5233	*	*	*	5493	*	*	138
+       0	*	*	*	*	*	*	5353	0	0	
+
+G 139  *	*	4122	5712	*	226	*	*	*	*	*	6368	*	*	4809	5579	*	*	*	*	139
+       0	*	*	*	*	*	*	5353	0	0	
+
+S 140  *	*	5819	3330	*	*	*	4076	4623	4473	*	3925	1728	3163	*	3043	5089	3211	*	*	140
+       0	*	*	*	*	*	*	5353	0	0	
+
+R 141  4612	*	5110	5846	*	*	4148	5589	4814	2700	5573	3244	*	*	1564	3980	4368	4394	*	5513	141
+       0	*	*	*	*	*	*	5353	0	0	
+
+F 142  *	*	*	*	412	*	3936	3769	*	*	*	*	*	*	*	*	*	*	*	3189	142
+       0	*	*	*	*	*	*	5353	0	0	
+
+W 143  *	*	*	*	2709	*	*	*	*	*	*	*	*	*	*	*	*	5081	291	*	143
+       0	*	*	*	*	*	*	5348	0	0	
+
+P 144  *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	144
+       0	*	*	*	*	*	*	5353	0	0	
+
+R 145  *	*	6767	*	*	*	*	*	*	*	*	*	4056	4404	315	3653	*	*	*	*	145
+       0	*	*	*	*	*	*	5353	0	0	
+
+Y 146  *	*	5107	*	2629	6767	*	*	*	*	*	*	*	*	*	*	*	*	956	1813	146
+       0	*	*	*	*	*	*	5353	0	0	
+
+V 147  *	*	*	*	4256	*	*	1221	*	2793	*	*	*	*	5233	*	*	1680	*	4809	147
+       0	*	*	*	*	*	*	5353	0	0	
+
+K 148  4809	*	*	*	*	*	*	*	789	4599	*	5233	*	*	1976	3973	*	*	*	*	148
+       0	*	*	*	*	*	*	5353	0	0	
+
+V 149  3901	*	*	2397	*	4421	2979	5233	3411	5107	5513	*	*	3467	2636	4705	5234	3608	*	*	149
+       0	*	*	*	*	*	*	5353	0	0	
+
+G 150  4471	*	*	*	*	402	*	6737	*	*	*	*	*	*	4809	*	3227	4431	*	*	150
+       0	*	*	*	*	*	*	5353	0	0	
+
+S 151  6082	*	4158	4395	*	5107	3988	3650	4038	4260	*	4114	*	5932	3224	1981	4333	3408	*	5746	151
+       0	*	*	*	*	*	*	5353	0	0	
+
+C 152  *	43	*	*	*	*	5081	*	*	*	*	*	*	*	*	*	*	*	*	*	152
+       303	2401	*	168	3183	*	*	5348	1777	0	
+
+F 153  6825	*	5737	5637	2943	4374	5416	4371	4378	2691	*	3399	*	*	*	2963	3623	3111	*	3654	153
+       140	3435	*	913	1092	*	*	5348	1373	0	
+
+S 154  3845	*	*	4104	*	3844	*	3877	4122	5200	*	2524	5081	4663	4806	1699	3982	*	*	*	154
+       159	4411	4123	1000	1000	*	*	5348	1106	0	
+
+K 155  4199	*	5468	2588	*	3574	4169	6300	2321	5645	*	4487	4986	6769	3519	3827	3326	4591	*	*	155
+       27	5767	*	0	*	0	*	5214	1025	1179	
+
+R 156  5581	*	*	4178	*	3877	4381	*	2275	*	5426	4426	5103	3449	1716	5218	4099	5557	*	*	156
+       161	5508	3577	3000	193	*	*	5348	1028	0	
+
+S 157  5968	*	*	*	*	4411	*	*	*	*	*	3985	4467	*	4613	497	4070	5651	*	*	157
+       0	*	*	*	*	0	*	5199	0	1380	
+
+C 158  *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	158
+       40	*	5205	*	*	*	*	5348	0	0	
+
+S 159  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	52	*	*	4819	*	159
+       0	*	*	*	*	0	*	5312	0	1134	
+
+V 160  *	*	*	*	2437	*	*	2683	*	4854	*	*	*	*	*	*	*	2632	1287	4209	160
+       42	*	5107	*	*	*	*	5348	0	0	
+
+P 161  *	*	5111	*	*	*	*	*	*	*	*	*	88	*	*	*	*	*	*	5043	161
+       0	*	*	*	*	0	*	5297	0	1037	
+
+E 162  3510	*	4497	2171	*	3416	*	*	5508	*	*	*	1329	*	*	2921	*	*	*	*	162
+       106	3821	*	552	1654	*	*	5348	1224	0	
+
+G 163  *	*	4842	*	*	182	5205	*	*	5107	*	*	*	*	*	5177	*	*	*	*	163
+       0	*	*	*	*	*	*	5348	0	0	
+
+M 164  *	*	*	*	4497	*	*	*	*	3907	361	*	*	4802	*	*	5177	*	*	4420	164
+       0	*	*	*	*	*	*	5348	0	0	
+
+V 165  3767	*	*	5637	3904	*	5021	*	2843	4398	*	4365	*	3977	4592	3049	2438	3164	*	4275	165
+       0	*	*	*	*	*	*	5348	0	0	
+
+C 166  *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	166
+       0	*	*	*	*	*	*	5348	0	0	
+
+K 167  *	*	*	4218	*	5746	3068	*	1554	5837	5426	*	*	4793	1845	6357	*	3953	4802	*	167
+       0	*	*	*	*	*	*	5348	0	0	
+
+P 168  3386	*	*	3279	*	5569	5559	*	*	4777	*	*	873	4154	3708	4508	*	*	*	*	168
+       40	*	5205	*	*	*	*	5348	0	0	
+
+S 169  2199	*	3258	*	*	3970	*	6419	4107	*	*	5037	*	*	4819	1592	4553	3718	*	5160	169
+       52	*	4819	*	*	0	*	5312	0	1134	
+
+K 170  *	*	4048	3136	*	2738	5522	*	1902	4779	*	4687	5069	3514	4734	3472	5067	4778	*	*	170
+       109	3779	*	1764	503	0	*	5297	1224	1037	
+
+S 171  4982	*	*	5416	*	*	4073	5426	4112	3580	4842	*	5746	4771	*	1137	3384	5581	5260	4910	171
+       0	*	*	*	*	*	*	5348	0	0	
+
+V 172  3942	*	4802	*	4155	4842	5808	6534	2248	5508	5084	*	*	5613	2494	6473	2360	3139	*	*	172
+       0	*	*	*	*	*	*	5348	0	0	
+
+H 173  4411	*	*	4609	*	*	2604	*	4263	5806	4853	3344	*	5743	4603	3406	2104	5426	*	2894	173
+       0	*	*	*	*	*	*	5348	0	0	
+
+L 174  *	*	*	*	4387	*	*	2249	2617	1430	*	*	*	*	*	*	*	2267	*	*	174
+       0	*	*	*	*	*	*	5348	0	0	
+
+T 175  4209	*	4463	*	*	*	4022	6534	2162	*	4956	3360	*	4403	4520	6357	1596	5416	*	5808	175
+       0	*	*	*	*	*	*	5348	0	0	
+
+V 176  4842	*	*	*	3531	*	5746	1780	*	1355	4802	*	*	*	*	*	*	3011	*	5808	176
+       0	*	*	*	*	*	*	5348	0	0	
+
+L 177  *	*	*	*	4956	*	*	*	*	47	*	*	*	*	*	*	*	*	*	*	177
+       0	*	*	*	*	*	*	5348	0	0	
+
+R 178  3005	*	*	*	5837	5081	5305	*	4772	5260	*	*	*	4247	633	*	5569	*	*	5526	178
+       0	*	*	*	*	*	*	5348	0	0	
+
+W 179  *	*	*	*	3984	*	*	*	*	*	*	*	*	*	4155	*	*	*	320	3655	179
+       0	*	*	*	*	*	*	5348	0	0	
+
+R 180  4525	*	3712	*	5114	*	1663	4449	5209	5116	*	5528	*	*	2907	5733	3193	3938	*	3549	180
+       0	*	*	*	*	*	*	5247	0	0	
+
+C 181  4730	91	*	*	*	*	*	*	*	*	*	*	*	*	*	5419	*	*	*	*	181
+       676	1532	5153	961	1041	*	*	5247	2110	0	
+
+Q 182  4881	3346	*	3517	*	5288	6166	*	3369	4575	4677	*	4642	1629	2979	4630	*	*	4949	*	182
+       415	2267	4574	2220	348	1393	691	4654	1520	1110	
+
+R 183  *	*	2510	*	*	1579	*	*	5909	*	*	4496	*	*	1739	3965	4943	*	*	4939	183
+       126	4549	4612	4087	87	*	0	4588	1037	1167	
+
+R 184  *	*	*	*	3877	*	*	4973	3264	*	*	*	4786	*	1542	3748	4142	*	1809	*	184
+       205	2915	*	4177	82	1560	598	4418	1288	1299	
+
+G 185  3769	*	4880	*	*	1940	*	*	*	3312	6012	4835	*	*	4096	2328	2804	3644	*	*	185
+       105	3833	*	2918	205	*	0	4440	1138	1169	
+
+G 186  4643	*	4355	3076	*	2242	*	4477	3230	*	*	*	2782	4523	3727	3038	5134	6060	*	*	186
+       184	3060	*	3236	162	0	*	4440	1396	1169	
+
+Q 187  *	*	3594	*	4877	*	4611	*	2890	2697	4972	*	3248	1928	3289	*	*	*	*	4293	187
+       46	4980	*	4524	64	*	*	4564	1024	0	
+
+R 188  *	*	4582	*	*	*	3624	*	1390	4700	*	4598	*	4124	2027	5573	4293	*	4611	*	188
+       588	1578	*	284	2486	*	*	4564	2048	0	
+
+C 189  *	76	*	*	4293	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	189
+       0	*	*	*	*	*	*	4564	0	0	
+
+G 190  2604	*	*	*	*	3103	*	*	2161	3980	*	5328	*	3833	4211	3815	2446	5133	*	*	190
+       0	*	*	*	*	*	*	4564	0	0	
+
+W 191  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	191
+       0	*	*	*	*	*	*	4564	0	0	
+
+I 192  *	*	*	*	*	*	*	1091	*	3122	*	*	*	*	1732	*	*	*	*	3125	192
+       0	*	*	*	*	*	*	4564	0	0	
+
+P 193  *	*	*	5090	*	*	5573	*	1463	5973	*	*	1837	2880	3155	*	6064	*	*	5155	193
+       0	*	*	*	*	*	*	4564	0	0	
+
+I 194  4350	*	*	*	3160	*	*	2358	*	4977	2956	*	*	*	*	*	*	1049	*	*	194
+       0	*	*	*	*	*	*	4564	0	0	
+
+Q 195  *	*	*	4980	4700	*	2733	*	4945	*	*	*	1743	2055	4372	4293	5269	*	*	3601	195
+       0	*	*	*	*	*	*	4564	0	0	
+
+Y 196  *	*	*	*	3630	*	4611	3594	*	5269	*	*	*	*	*	*	*	2930	*	648	196
+       0	*	*	*	*	*	*	4564	0	0	
+
+P 197  *	*	*	*	*	*	*	*	*	*	*	4582	220	*	*	3956	*	4818	*	*	197
+       0	*	*	*	*	*	*	4564	0	0	
+
+I 198  *	*	*	*	4590	*	*	926	*	4445	*	*	*	*	*	*	*	1372	*	*	198
+       0	*	*	*	*	*	*	4564	0	0	
+
+I 199  *	*	*	*	*	*	*	1199	*	2450	*	*	*	*	*	*	2814	2063	*	*	199
+       0	*	*	*	*	*	*	4564	0	0	
+
+S 200  3123	4372	*	4877	*	*	*	*	*	4590	*	*	*	*	3595	1901	1457	4420	*	*	200
+       0	*	*	*	*	*	*	4564	0	0	
+
+E 201  3366	*	3340	1088	*	*	*	*	*	*	*	*	*	3252	3583	3773	3793	*	*	*	201
+       0	*	*	*	*	*	*	4564	0	0	
+
+C 202  *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	202
+       0	*	*	*	*	*	*	4564	0	0	
+
+K 203  5437	*	4372	4945	*	4980	*	4818	1428	*	*	*	*	*	3157	1994	3407	*	*	*	203
+       0	*	*	*	*	*	*	4564	0	0	
+
+C 204  *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	204
+       0	*	*	*	*	*	*	4564	0	0	
+
+S 205  3691	*	4972	*	*	2910	*	*	4945	*	*	4372	*	3190	*	1030	3686	*	*	*	205
+       0	*	*	*	*	*	*	4564	0	0	
+
+C 206  *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	206
+       0	*	*	0	*	*	*	4487	0	0	
+
+//
+�HHsearch 1.5
+NAME  5ce3a21f2652f5e4378c3552cceb2340
+FAM   
+FILE  5ce3a21f2652f5e4378c3552cceb2340
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:28:08 2013
+LENG  139 match states, 139 columns in multiple alignment
+FILT  103 out of 548 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  6.5 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCCCCCHHHCCCCCCCCCCCCCCCCCCCEEEEEEEEHHHCCCCCEEECCCCEEEEEEEECCCCCCCCCCCCCHHHHHHHHHHHHCCCCCC
+CCCEECEEECCEEEEEEECCCCEEEEEECCEEEEECCCC
+>ss_conf PSIPRED confidence values
+9887666777678877223110003566665556787445447988888788640676795486776402798541347886048999998864867686
+875614243167899993899699999389288640159
+>Consensus
+xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxCxrxxlxVdFxdlGWxxwIixPxxyxaxyCxGxCxxpxxxxxxxtnhaixxxlxxxxxxxxxx
+xpCCvPxxxxxlxilyxdxxxxixxxxlxxMvvxxCgCx
+>5ce3a21f2652f5e4378c3552cceb2340
+STGSKQRSQNRSKTPKNQEALRMANVAENSSSDQRQACKKHELYVSFRDLGWQDWIIAPEGYAAYYCEGECAFPLNSYMNATNHAIVQTLVHFINPETVP
+KPCCAPTQLNAISVLYFDDSSNVILKKYRNMVVRACGCH
+>gi|335280265|ref|XP_003353533.1| PREDICTED: bone morphogenetic protein 4-like [Sus scrofa]
+----------------------------------IEGLYIDGCYVEPKEEtgpigdGCNHfWIReeragAEEGRELLTIvslLGSDPLEPKPSGRAQKKS
+TL----------------------------------------------------
+>gi|73961483|ref|XP_854725.1| PREDICTED: similar to left-right determination, factor B preproprotein [Canis familiaris]
+----------------PRLELHTLDLGTYGAQgdcdpevpvTQAARCCRQEVYIDLRGMKWaENWVLEPPGFLAYECVGTCQQPPRPL-P-F-------E
+WPLLGPR-----QCVPSETTSLPMIITVKEGGrprPPVVSLPNMRVQKCSCS
+>gi|40556096|ref|NP_955181.1| CNPV157 TGF-beta-like protein [Canarypox virus]gi|40233921|gb|AAR83504.1| CNPV157 TGF-beta-like protein [Canarypox virus]
+----------------------------------DAICNIRSINIKFADYGM-KWILSPLSTVLTYCYGICSISS---YQKTSL-MYGTIITNHMPDNTI
+PQCCYPITRSNFTIRYKVGR-NIKTDVINNFMPLECACG
+>gi|162424750|gb|ABX90061.1| Tgf-beta [Amphimedon queenslandica]
+--------------------------------GDSEECSKSSLSIDKGQLAQilDIEIDFPETFDLNVCGGHCPGS---KYINQFHSKITYLLLATseve
+hlANKHHYSKTCVPTKYHSLNYIKFDQNGSV-IKTLDQFSVAECSC-
+>gi|291395261|ref|XP_002714159.1| PREDICTED: glial cell derived neurotrophic factor [Oryctolagus cuniculus]
+--------------------------------GKNRGCVLTAIHLNVTDLGLG--YETKEELIFRYCSGSCDAAE------TMyDKILKNLSKSrrLVSD
+KAGQACCRPIAFDDD-LSFLDD--NLVYHILRKHSAKRCGC-
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+S 1    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	1
+       0	*	*	*	*	*	*	1529	0	0	
+
+T 2    1000	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1000	*	*	*	2
+       0	*	*	*	*	*	*	1529	0	0	
+
+G 3    *	*	*	*	*	1000	*	*	1960	*	*	2042	*	*	*	*	*	*	*	*	3
+       0	*	*	*	*	*	*	2687	0	0	
+
+S 4    *	*	*	*	*	2042	*	*	*	*	*	*	1892	*	1960	2117	*	*	*	*	4
+       0	*	*	*	*	*	*	2687	0	0	
+
+K 5    *	*	*	*	*	*	*	*	1378	*	*	*	2184	2411	2271	*	*	*	*	*	5
+       0	*	*	*	*	*	*	3087	0	0	
+
+Q 6    *	*	*	*	*	*	*	*	706	*	*	*	2271	2474	*	*	*	*	*	*	6
+       0	*	*	*	*	*	*	3087	0	0	
+
+R 7    *	*	*	*	*	2411	*	*	1235	2271	*	*	*	*	2474	*	*	*	*	*	7
+       0	*	*	*	*	*	*	3087	0	0	
+
+S 8    *	*	*	*	*	*	*	*	1280	*	*	*	*	*	1293	2474	*	*	*	*	8
+       0	*	*	*	*	*	*	3087	0	0	
+
+Q 9    *	*	*	2591	*	*	*	*	2573	*	*	*	*	1067	*	2405	*	*	*	*	9
+       0	*	*	*	*	*	*	3417	0	0	
+
+N 10   *	*	*	*	*	*	*	*	1537	*	*	2822	*	*	1495	2651	*	*	*	*	10
+       0	*	*	*	*	*	*	3417	0	0	
+
+R 11   *	*	*	*	*	*	*	*	3003	*	*	*	*	*	721	2993	*	2806	*	*	11
+       0	*	*	*	*	*	*	3984	0	0	
+
+S 12   *	*	*	3180	*	*	*	*	*	3003	*	*	*	*	2035	941	*	*	*	*	12
+       0	*	*	*	*	*	*	3984	0	0	
+
+K 13   2871	*	*	*	*	*	*	*	1089	*	*	3003	*	*	2806	2993	*	*	*	*	13
+       0	*	*	*	*	*	*	3984	0	0	
+
+T 14   *	*	*	*	*	3280	*	*	4864	3122	*	*	*	3178	2215	3158	2324	3181	*	*	14
+       0	*	*	*	*	*	*	3532	0	0	
+
+P 15   3236	*	*	*	*	*	*	*	*	*	*	3181	2183	*	3098	3194	3158	2150	*	*	15
+       0	*	*	*	*	*	*	3532	0	0	
+
+K 16   *	*	3549	*	*	*	*	*	1187	3395	*	3459	*	5201	*	2525	3500	*	*	*	16
+       138	3459	*	0	*	*	*	3816	1181	0	
+
+N 17   3856	*	3615	2778	*	*	3675	*	*	2729	*	4204	1637	*	5488	*	*	3714	*	*	17
+       33	5488	*	1000	1000	*	*	4189	1357	0	
+
+Q 18   *	*	*	4188	*	*	*	3982	*	*	*	*	2958	1160	3170	*	2953	*	*	3931	18
+       0	*	*	*	*	*	*	4546	0	0	
+
+E 19   3054	*	5764	2528	*	*	*	*	3873	2737	*	3860	*	2939	2272	3982	*	*	*	*	19
+       0	*	*	*	*	*	*	4546	0	0	
+
+A 20   2514	*	*	2671	*	2849	*	*	*	*	*	4164	*	*	4044	2055	*	3166	*	4044	20
+       86	*	4114	*	*	*	*	4614	0	0	
+
+L 21   *	*	*	3081	*	*	*	*	*	1391	*	4361	4281	4065	3365	2392	4229	*	*	*	21
+       0	*	*	1000	1000	*	0	4989	1000	1095	
+
+R 22   *	*	3506	3822	4437	*	3051	*	4425	*	*	*	3303	3488	1192	*	*	*	*	*	22
+       0	*	*	*	*	*	0	5117	0	1095	
+
+M 23   3042	*	*	*	*	4620	4425	3506	*	3720	1697	*	*	*	4336	*	2158	4460	*	*	23
+       0	*	*	*	*	*	0	5117	0	1095	
+
+A 24   2723	2967	*	*	*	*	*	*	*	1952	*	4443	3560	4370	3458	3680	3287	6441	*	*	24
+       0	*	*	*	*	0	*	5167	0	1095	
+
+N 25   5017	*	1928	6723	*	4675	4586	*	*	*	*	2677	*	4599	2317	2198	*	*	*	*	25
+       125	4599	4586	2585	263	*	*	5338	1105	0	
+
+V 26   2879	4606	2874	5068	4013	*	4924	3926	*	3032	*	4716	*	*	*	3902	4896	2693	*	3633	26
+       36	5348	*	0	*	*	0	5483	1000	1040	
+
+A 27   3320	4398	4128	*	4933	2266	*	4764	2648	5414	5513	3700	4834	*	3242	*	4601	4209	*	*	27
+       220	4933	3198	0	*	0	*	5617	1181	1040	
+
+E 28   3870	*	1967	3138	*	4615	*	4880	*	*	*	*	3890	3881	2226	5182	4773	4597	*	4919	28
+       56	*	4704	*	*	1219	810	5656	0	1182	
+
+N 29   4919	3682	3373	4533	3932	4114	*	*	4058	*	*	3402	*	3721	4195	5084	5098	4322	*	2106	29
+       77	5409	5142	3000	193	*	0	5776	1029	1155	
+
+S 30   4114	4277	5048	2678	*	3605	3687	3935	*	4021	*	5403	5244	4193	4813	3764	3928	2859	*	*	30
+       107	4364	5437	2142	371	364	2165	5793	1075	1221	
+
+S 31   3768	4255	5480	3867	*	3197	*	7875	3611	4673	*	*	5334	5627	4550	1877	2744	5552	5760	*	31
+       75	4309	*	0	*	894	1114	6041	1160	1045	
+
+S 32   3204	5300	3519	4220	5418	3914	*	*	5430	4212	*	3787	3592	4548	3028	2774	3818	5608	*	*	32
+       126	3585	*	2877	211	*	0	6068	1240	1000	
+
+D 33   4796	*	3115	2337	*	2524	4559	4986	4904	4860	*	4095	3691	4195	4213	6046	4138	5747	*	*	33
+       215	*	2851	1000	1000	0	*	6071	1000	1000	
+
+Q 34   4763	*	3808	4042	*	2943	3580	*	2974	5447	*	3502	4170	3415	2713	4708	5821	5559	*	*	34
+       51	5961	5725	2585	263	589	1576	6152	1012	1534	
+
+R 35   4062	*	4026	4423	*	3425	4531	4041	3236	6092	*	3876	4780	3981	3552	2324	5319	4782	*	*	35
+       22	6041	*	2807	222	369	2147	7196	1040	1182	
+
+Q 36   4006	*	3666	2748	*	3650	6520	*	3492	5833	4762	3324	4710	4906	2398	4433	4981	5673	*	5820	36
+       61	6402	5083	0	*	0	*	7325	1000	1000	
+
+A 37   7394	4515	4393	3916	*	2966	6768	3916	4769	3655	6429	3469	3917	6640	3098	4248	3651	3787	*	5849	37
+       0	*	*	*	*	0	*	7325	0	1142	
+
+C 38   *	44	*	*	*	*	*	*	*	5048	*	*	*	*	*	*	*	*	*	*	38
+       13	*	6762	*	*	*	*	7319	0	0	
+
+K 39   4917	1377	*	5918	6719	4459	3574	*	4769	*	*	5297	6173	4274	2698	3557	6005	6173	*	5046	39
+       20	*	6173	*	*	0	*	7314	0	1000	
+
+K 40   *	*	*	*	*	*	*	3684	3474	1696	6789	*	6919	*	1342	5348	4771	4306	*	*	40
+       0	*	*	*	*	0	*	7307	0	1000	
+
+H 41   5402	*	4710	3240	4333	5567	3070	6278	3302	*	5891	6592	*	3926	2255	5747	5439	4462	6646	2959	41
+       0	*	*	*	*	*	*	7390	0	0	
+
+E 42   4383	*	2851	2933	*	4323	*	6885	4187	6375	*	5921	2516	5030	4305	2342	4119	*	*	5066	42
+       0	*	*	*	*	*	*	7390	0	0	
+
+L 43   *	5290	6303	*	2325	*	6429	4236	4670	1329	3500	*	*	6423	*	4801	5876	3923	6445	5065	43
+       0	*	*	*	*	*	*	7390	0	0	
+
+Y 44   *	*	5095	4024	5442	*	4608	5182	4558	5307	6854	4632	5946	6812	3657	3979	2712	3616	*	1741	44
+       0	*	*	*	*	*	*	7390	0	0	
+
+V 45   5733	6303	*	*	5341	6277	*	2050	*	3720	5401	*	*	*	5434	*	*	819	*	*	45
+       0	*	*	*	*	*	*	7390	0	0	
+
+S 46   6709	*	1398	4852	5891	*	6885	*	4630	5434	*	2535	5240	4906	*	2578	3897	5611	*	*	46
+       12	*	6961	*	*	*	*	7390	0	0	
+
+F 47   *	*	*	*	506	*	*	6497	4828	2890	5884	*	5289	*	*	*	*	3793	*	*	47
+       0	*	*	0	*	0	*	7395	1000	1000	
+
+R 48   3522	*	3199	3229	*	5747	6032	*	2482	6173	*	4774	*	3921	2431	3356	3906	5769	*	*	48
+       134	3893	5540	1315	741	*	*	7390	1362	0	
+
+D 49   4059	*	1418	2157	*	5814	5199	6611	4039	5494	*	4898	*	3516	7507	5325	6289	5407	*	6000	49
+       7	*	7684	*	*	*	0	7323	0	1094	
+
+L 50   6647	*	5912	4900	3977	*	5983	1940	*	1223	3798	*	*	*	5151	7723	6920	4896	*	5314	50
+       127	4783	4383	2303	327	*	0	7381	1249	1141	
+
+G 51   5162	*	5207	*	*	423	*	5604	4143	5809	*	7070	5599	5253	6518	6358	5238	*	*	*	51
+       0	*	*	*	*	*	0	7155	0	1485	
+
+W 52   *	4783	*	*	4698	6437	*	6487	*	3163	4357	*	*	5741	6165	*	*	6089	566	5710	52
+       523	3785	2110	936	1067	*	0	7155	1398	1485	
+
+Q 53   5112	*	1741	3888	*	2716	6681	6131	6389	5796	*	2691	5344	5527	4615	3379	4474	*	*	6051	53
+       272	5868	2690	0	*	244	2683	6931	1000	2769	
+
+D 54   *	*	1644	3336	*	5364	3217	5523	3223	*	*	3317	*	4684	3864	4008	6077	*	*	4816	54
+       79	4662	6216	434	1944	1253	785	7232	1240	1927	
+
+W 55   *	*	*	4970	2746	*	5284	6270	*	*	*	5962	*	*	6225	3574	5982	*	753	4115	55
+       0	*	*	*	*	431	1953	7278	0	1578	
+
+I 56   *	*	*	*	5261	*	*	669	*	5790	6343	*	5920	*	*	*	*	1929	*	4810	56
+       0	*	*	*	*	1465	649	7434	0	1093	
+
+I 57   5057	*	5227	5102	*	*	5542	1679	*	1859	4466	6672	*	*	5081	6434	*	2339	*	6520	57
+       46	5460	6835	2322	322	*	0	7409	1128	1030	
+
+A 58   1697	*	*	3314	4146	5905	3982	5585	6527	5062	6972	5929	*	3893	6053	2392	6263	6457	6463	4060	58
+       0	*	*	*	*	*	0	7430	0	1088	
+
+P 59   5470	*	5044	4765	*	5929	*	*	6263	*	*	*	183	*	*	*	*	*	*	*	59
+       24	5929	*	0	*	*	0	7430	1016	1088	
+
+E 60   3776	6382	6457	2419	*	*	5727	*	2026	5307	*	5534	2752	4502	3090	3893	5152	*	*	*	60
+       24	5946	*	0	*	*	0	7430	1014	1088	
+
+G 61   *	*	6713	4253	5929	1585	6440	5010	4221	6710	6457	5201	*	5691	3616	2717	2888	4161	*	*	61
+       0	*	*	*	*	*	0	7430	0	1088	
+
+Y 62   5244	*	*	*	1616	*	*	3287	*	4033	*	*	*	*	5303	5470	6210	4956	5929	1419	62
+       0	*	*	*	*	1539	609	7430	0	1088	
+
+A 63   5445	*	2418	3177	7128	6518	4213	4999	5796	4722	6291	2195	6825	4116	6695	4391	3799	4513	5659	5068	63
+       0	*	*	*	*	*	0	7409	0	1030	
+
+A 64   1087	*	*	*	2961	4601	*	3414	*	3562	4843	*	4604	*	*	5570	4419	6702	*	5170	64
+       0	*	*	*	*	*	0	7409	0	1030	
+
+Y 65   *	*	*	*	3341	3918	4359	*	4828	4958	*	1709	*	6609	3843	3530	4869	5829	*	2360	65
+       0	*	*	*	*	*	0	7409	0	1030	
+
+Y 66   6434	*	6462	4588	2737	*	*	6818	5150	5519	4211	3529	*	4585	3787	*	5034	4614	*	1320	66
+       0	*	*	*	*	*	0	7409	0	1030	
+
+C 67   *	63	*	*	*	*	*	5460	*	*	*	*	*	*	*	5624	*	*	*	*	67
+       33	5460	*	2524	275	1237	797	7409	1175	1030	
+
+E 68   3189	*	5949	3437	*	4707	3986	4267	3969	4482	5169	5999	*	4228	3671	2289	4613	3964	*	4840	68
+       24	*	5925	*	*	*	0	7437	0	1000	
+
+G 69   *	*	6299	*	*	37	*	*	*	*	*	*	*	*	*	6297	*	*	*	*	69
+       18	6299	*	0	*	660	1445	7390	1003	1093	
+
+E 70   3576	*	3770	3009	*	5344	5054	5059	3708	4203	*	4592	4565	5128	4089	2314	4034	4491	6711	5979	70
+       0	*	*	0	*	817	1209	7399	1003	1067	
+
+C 71   *	71	5306	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	5474	*	71
+       11	7014	*	3440	139	0	*	7437	1041	1000	
+
+A 72   3731	*	4049	4443	*	5276	5595	4678	4371	5530	*	4372	1639	4036	4251	3285	4413	5641	*	6584	72
+       59	6608	5077	2322	322	*	0	7446	1000	1000	
+
+F 73   4171	6663	6067	5547	2630	4828	3802	5110	5949	3445	5498	4706	4807	4248	3884	3746	4143	4567	6574	3434	73
+       156	6460	3455	0	*	*	0	7442	1000	1184	
+
+P 74   4190	*	*	3614	6199	5201	5851	5022	4436	3695	*	6448	1178	5927	*	3264	4165	6724	*	6395	74
+       187	6930	3141	0	*	1581	587	7385	1000	1777	
+
+L 75   5773	*	5635	6013	3959	6344	*	3894	5420	1667	3884	5283	3703	5344	4021	3609	6260	3698	6123	5567	75
+       180	*	3094	*	*	2945	201	7163	0	2129	
+
+N 76   3971	*	3916	5046	6698	4019	4302	6142	4349	4453	*	3103	3386	4921	4291	2361	3939	6356	*	4619	76
+       125	6356	3823	1000	1000	1586	584	7054	1000	2575	
+
+S 77   3029	*	4759	4731	5529	3915	5251	*	4093	5126	5675	3763	3107	4537	5424	2934	2981	5127	*	4656	77
+       366	4844	2400	3519	132	1615	570	7050	1108	2433	
+
+Y 78   *	4839	5596	6408	4225	4063	2073	6375	4410	6067	5439	5096	4912	5414	3336	3523	5317	3299	*	3540	78
+       131	5412	3979	649	1465	1762	504	6835	1030	2842	
+
+M 79   5633	*	6159	*	3669	4371	*	4283	4240	2526	3489	4672	4854	5517	4849	4668	5003	3572	6319	2519	79
+       134	5287	3987	1570	593	1522	618	6964	1044	2636	
+
+N 80   3907	5621	3948	6030	*	4259	4525	5541	3968	6543	*	1996	4140	4164	3569	3096	5043	*	*	4427	80
+       91	5216	4864	1033	968	1677	541	7113	1061	2371	
+
+A 81   1758	*	3768	*	4465	4989	5382	6225	5912	5017	6414	3750	2994	4863	6387	3163	4890	4925	*	4908	81
+       116	5517	4165	1448	659	1622	567	7108	1033	2165	
+
+T 82   4735	*	4275	*	5302	6413	6554	5410	*	*	4689	4099	3566	4232	5802	2977	1404	6281	*	3855	82
+       120	6774	3818	1000	1000	2209	352	7188	1000	2072	
+
+N 83   6123	7407	6426	*	4685	4408	5470	*	3058	4880	4722	1358	3814	5419	5538	3168	4679	6494	*	*	83
+       99	5822	4370	0	*	778	1263	7137	1007	2181	
+
+H 84   4704	*	5135	6723	5555	*	770	5543	4648	5270	5247	5154	6988	*	5361	4463	5053	*	*	3903	84
+       74	*	4316	*	*	3674	118	7326	0	1721	
+
+A 85   1117	*	4931	6293	6225	*	6796	*	6132	4576	6413	6703	3805	6698	*	2641	3088	4856	*	*	85
+       39	6703	5863	0	*	2412	300	7266	1000	1970	
+
+I 86   4649	*	*	*	3968	6612	*	1792	4959	2830	3899	5737	6552	4573	5497	5230	3566	3020	*	5082	86
+       98	6225	4250	2487	284	2492	282	7339	1052	1885	
+
+V 87   4589	*	*	5310	4416	6330	6423	2340	*	1847	3551	6273	*	6596	6503	6640	*	2332	*	4093	87
+       102	5512	4423	1000	1000	2522	276	7211	1038	2007	
+
+Q 88   6366	*	*	7631	*	4081	4210	4939	3230	2823	4393	*	6207	1599	3702	4301	4556	*	*	5158	88
+       51	*	4835	*	*	3973	95	7105	0	2053	
+
+T 89   3320	*	*	4553	4542	4808	6680	5706	4402	4344	6011	3222	6688	6651	4457	2131	2346	5834	*	5459	89
+       67	*	4471	*	*	1647	555	7069	0	2138	
+
+L 90   4444	*	*	6460	5038	*	*	3479	4980	1111	3903	6391	7080	6210	3490	5253	5467	3663	*	6456	90
+       76	4286	*	1060	943	796	1238	7121	1327	2025	
+
+V 91   4374	5747	4958	5026	5760	6821	*	3795	5161	1714	3296	6820	6900	*	4957	4339	5080	2878	5094	4552	91
+       64	*	4521	*	*	1539	609	7192	0	1405	
+
+H 92   3565	*	*	6361	5554	6257	2094	6412	3633	4062	*	2754	4909	4047	3412	3967	3969	*	*	5735	92
+       223	6740	2900	639	1483	1016	985	7198	1040	1521	
+
+F 93   3365	*	4869	3517	3741	3857	4805	4894	4072	3341	6601	3972	5364	3385	5461	4045	4940	4046	*	4660	93
+       123	3921	5998	414	2002	1540	608	7140	1566	2026	
+
+I 94   4582	*	*	4406	4647	5567	4566	2884	4064	2430	3384	6925	6166	4284	3791	6363	5594	3572	*	3868	94
+       175	3721	4692	1605	575	1123	887	7204	1436	1762	
+
+N 95   4018	5270	3572	4552	*	2981	6125	5384	4409	4726	6014	3178	5926	3548	3421	3504	4090	4513	*	5383	95
+       234	3008	5296	1307	747	753	1299	7188	1678	1604	
+
+P 96   3608	*	4549	3683	*	4896	6082	*	3913	3916	6574	4665	1611	5036	3672	3558	5734	5231	*	*	96
+       183	4077	4064	2064	394	930	1073	7291	1267	1352	
+
+E 97   4196	*	2645	4410	6194	3085	4725	*	3604	4463	*	3018	5125	4895	3226	3986	5356	6659	5455	5117	97
+       263	3999	3262	1569	593	355	2197	7194	1301	1563	
+
+T 98   2698	*	3997	4515	*	3692	5195	6145	3498	3718	*	3250	6307	5038	4201	3323	3728	4294	5897	6573	98
+       86	4870	5385	1357	714	1963	428	7003	1173	1833	
+
+V 99   4085	*	5304	4033	6613	5069	4258	3106	6095	4812	6435	4799	*	4690	3368	3786	4119	1882	*	6442	99
+       136	3653	6591	1370	706	1407	683	7180	1443	1742	
+
+P 100  3970	*	4768	4478	5982	3962	5006	5015	5083	3948	5107	*	1622	5081	3464	4207	4930	4734	*	5655	100
+       14	6742	*	1000	1000	1029	971	7267	1000	1549	
+
+K 101  3200	5260	6127	3773	*	3502	4882	*	2959	5322	5847	5878	3168	3789	3519	3455	3970	*	*	4586	101
+       32	6904	6195	0	*	2053	398	7288	1000	1245	
+
+P 102  3093	*	*	*	6491	6922	*	5869	5694	3566	6540	4776	1093	4536	4556	3758	6992	4075	*	*	102
+       16	6532	*	2585	263	575	1606	7277	1000	1287	
+
+C 103  4573	379	*	*	*	*	*	*	4962	*	*	*	*	5706	6348	3749	4292	*	*	*	103
+       0	*	*	*	*	*	0	7323	0	1041	
+
+C 104  *	50	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	5620	6155	*	104
+       0	*	*	*	*	0	*	7323	0	1041	
+
+A 105  2571	*	5397	*	*	5640	5091	4309	4796	5791	*	*	*	5034	3684	3683	4201	1475	*	4214	105
+       0	*	*	*	*	*	*	7344	0	0	
+
+P 106  3801	*	*	*	*	*	*	5426	*	5791	*	*	222	*	*	5591	*	6782	*	*	106
+       19	6286	*	0	*	*	*	7344	1181	0	
+
+T 107  4710	*	5390	5880	*	*	5639	3245	3633	4671	*	5488	6315	4328	5288	2542	1954	3181	*	5302	107
+       13	6774	*	1000	1000	*	*	7135	1000	0	
+
+Q 108  3190	*	5190	3034	6086	*	5890	*	2330	6459	*	5056	6995	3656	2520	3048	4171	6829	*	5488	108
+       0	*	*	*	*	*	*	7135	0	0	
+
+L 109  *	5823	*	*	3338	*	*	*	*	1842	2939	*	*	5804	4276	5584	4251	*	6026	1663	109
+       0	*	*	*	*	*	*	7135	0	0	
+
+N 110  3832	*	3100	2877	*	3760	5292	4630	3388	5823	6845	5502	*	5530	3634	2188	4394	*	*	5369	110
+       0	*	*	*	*	*	*	7135	0	0	
+
+A 111  2917	*	3451	5166	*	4745	5421	*	7260	*	5113	5003	1929	5066	6814	1913	4516	*	*	6580	111
+       0	*	*	*	*	*	*	7135	0	0	
+
+I 112  *	6315	5353	7011	4768	6550	6927	2405	6444	1346	3053	*	*	3991	*	6358	*	3306	*	6768	112
+       99	6468	4177	1585	585	*	*	7135	1003	0	
+
+S 113  6191	*	4211	4802	*	5664	5538	4990	4046	4201	*	3859	4044	5123	4704	1854	2443	4859	*	5850	113
+       0	*	*	*	*	0	*	7020	0	1253	
+
+V 114  4632	5674	*	*	3868	*	*	1969	*	2583	2296	*	*	*	*	6083	*	2342	*	4891	114
+       18	*	6302	*	*	*	*	7126	0	0	
+
+L 115  5528	*	*	*	6782	*	6348	2558	*	1298	3462	*	5399	*	4697	4361	4254	3360	6768	5673	115
+       18	*	6352	*	*	*	0	7103	0	1000	
+
+Y 116  *	*	4772	4436	3566	*	3439	3209	5776	*	5723	*	*	*	6546	3976	5334	4036	*	1200	116
+       14	6727	*	0	*	0	*	7103	1000	1067	
+
+F 117  6479	*	*	5575	2922	*	4719	4042	5372	2117	4051	5414	5488	5299	4353	5243	5743	3591	5236	2761	117
+       65	6405	4968	1000	1000	*	*	7002	1000	0	
+
+D 118  *	*	1400	3867	*	5028	6194	5525	4647	4794	5020	2588	5641	4845	4755	4337	4736	4859	*	*	118
+       54	5615	5950	748	1306	0	*	6977	1086	1130	
+
+D 119  3994	*	2930	2528	*	3014	4117	*	4009	*	*	3219	5141	3693	4535	3147	5641	*	*	*	119
+       47	*	4952	*	*	0	*	6973	0	1016	
+
+S 120  *	*	2501	2965	5765	3821	5082	6388	3381	5805	*	2452	5759	4623	3591	3566	4589	*	*	*	120
+       286	*	2475	0	*	814	1213	6965	1000	1122	
+
+S 121  *	*	4831	6050	*	1276	4699	6595	4076	6146	*	3065	*	5237	4183	3865	3608	6046	5998	4962	121
+       115	5517	4188	1000	1000	371	2142	6711	1030	2029	
+
+N 122  5579	*	3975	4006	5431	3326	6465	5783	3474	*	*	2623	5254	3565	3895	3217	3172	4607	*	6503	122
+       29	5632	*	1084	921	136	3475	6816	1118	1553	
+
+V 123  4964	*	*	6659	4735	*	6159	1738	6392	2475	5094	6416	4466	5433	6603	5625	5021	2366	*	4319	123
+       28	*	5715	*	*	*	0	6893	0	1000	
+
+I 124  5033	*	5555	3417	5368	5620	6130	3503	3262	4367	5456	6471	6567	3668	3707	4516	3690	2229	*	5613	124
+       80	5537	4940	1585	585	0	*	6832	1087	1081	
+
+L 125  6226	*	*	*	3622	5021	*	3026	4060	2572	4213	5701	*	6103	6279	5123	3002	2579	5330	3691	125
+       44	5058	*	637	1485	580	1595	6860	1137	1109	
+
+K 126  3973	*	4407	4223	*	4689	3783	5166	2300	6815	6211	6694	*	3478	2708	3352	3812	4343	*	*	126
+       44	5056	*	435	1942	*	0	6865	1132	1000	
+
+K 127  6718	*	4342	3155	5257	*	4101	3931	3398	6348	6324	3663	4995	4812	3527	3688	2596	3746	*	6762	127
+       13	*	6815	*	*	*	0	6865	0	1000	
+
+Y 128  6294	*	*	*	3670	*	6646	2887	6451	1446	5789	*	5328	6950	*	*	*	3167	4888	2404	128
+       28	*	5720	*	*	0	*	6867	0	1038	
+
+R 129  6672	*	3066	2894	*	6713	4061	*	4398	*	*	3782	1727	4425	3526	3657	*	4960	*	*	129
+       0	*	*	*	*	*	0	6814	0	1029	
+
+N 130  6672	*	1850	3552	*	3418	*	*	3678	*	*	1430	*	4020	*	6350	6532	*	*	*	130
+       0	*	*	*	*	0	*	6814	0	1029	
+
+M 131  6656	*	*	*	3541	*	6056	3648	*	3106	749	*	*	5733	*	4698	*	4607	*	*	131
+       0	*	*	*	*	*	*	6867	0	0	
+
+V 132  6793	*	*	4743	*	*	*	2137	4312	4061	4604	*	*	6487	3017	3014	4976	1813	*	*	132
+       28	*	5703	*	*	*	*	6867	0	0	
+
+V 133  1545	*	*	*	*	*	*	3158	*	*	*	*	4552	*	*	*	5122	1077	*	*	133
+       0	*	*	*	*	*	0	6867	0	1038	
+
+R 134  3591	*	3833	2391	*	5650	*	*	2374	2957	5906	5507	*	5561	3576	4336	3904	4197	*	*	134
+       0	*	*	*	*	*	0	6867	0	1038	
+
+A 135  3498	*	4156	1550	*	4246	4584	*	2828	5578	*	*	*	6711	4762	2740	4021	*	*	*	135
+       0	*	*	*	*	*	0	6869	0	1038	
+
+C 136  *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	136
+       0	*	*	*	*	*	0	6860	0	1038	
+
+G 137  2943	*	5062	*	*	932	5038	*	4762	*	*	*	*	*	6651	2416	4916	5783	*	*	137
+       0	*	*	*	*	*	0	6860	0	1038	
+
+C 138  *	31	*	*	*	5541	*	*	*	*	*	*	*	*	*	*	*	*	*	*	138
+       38	5281	*	2663	248	0	*	6836	1108	1038	
+
+H 139  4916	*	*	*	*	3325	3308	5224	5415	5369	*	5523	5569	5545	1729	1715	5562	*	*	*	139
+       0	*	*	0	*	*	*	5894	0	0	
+
+//
+�HHsearch 1.5
+NAME  5d895b2caff816955040ab755eaf5b19
+FAM   
+FILE  5d895b2caff816955040ab755eaf5b19
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:01:04 2013
+LENG  167 match states, 167 columns in multiple alignment
+FILT  119 out of 452 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  4.8 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCHHHCCCCCCCCCCCCCCCCCCCCCCEEEEECCCCCCCCCCCEEEEEEECCCCCCCHHHHHHHHHHHHHHHHHHCCCCCCEEEEEECCCCCCCCCCHHH
+CCCCCCCCCCCCCCCCCCEEEEEEECCCCEEEEEECCCHHHHHHHHHHHHCCCCCCEEEEEECCCCC
+>ss_conf PSIPRED confidence values
+9600111688999875101489998736888666634677798589999886664188899999999999999863776657999978884103060221
+4563200243457778950899997389889999634899999999997532899479999257789
+>Consensus
+rPxxxyrxxxxxxYtrxxyxxgxpxxKixxfxxGxxxxxxxfxxxxxLxaxexxxixxxxiEAaRixxnrxlxkxxGxxxxkxxIrvfPxxxxtxkpxxx
+xagadrxexrMgxgkGkpxxwxArVxxGqvifeixxxxxxxakeALxxAxxKlPxxxkivxxxxxxx
+>5d895b2caff816955040ab755eaf5b19
+KPGAMYRNSSKPAYTRREYISGIPGKKIAQFDMGNNGAGPTYPAQVELVVEKPVQIRHNALEAARVAANRYVQNSGAAANYKFRIRKFPFHVIRENKAAA
+AAAAAAAADGMRAPFGKPVGTAARVHGANHIFIAWVNPDPNVEEAWRRAKMKVTPTINIDSSPAGNA
+>gi|339758767|gb|EGQ44020.1| ribosomal protein L16/L10E [Candidatus Nanosalina sp. J07AB43]
+RPASIYREQPSQPYTRkaqnkrDNYVAGAPAPRVTQYEMGARNK--EFEQDVVLISEEDCSIRSEALESGRVAANSFLSKEFNmEEDYKLKIRPYPHHIL
+RYHPLAGIAQADRYYEGMRKPFGRPIGRAAIVDEGDVVFKVSIDSEnvQEARKALERTNHKMPVTCRVKLA-----
+>gi|242824789|ref|XP_002488329.1| 50S ribosomal protein L10e, putative [Talaromyces stipitatus ATCC 10500]gi|218713250|gb|EED12675.1| 50S ribosomal protein L10e, putative [Talaromyces stipitatus ATCC 10500]
+RPARCYHYCKNKPFPKSRFNRGVPDHKIRFFDTGRKKATVDdFPCCIHLVSSEYEQLSSEALEAALICANKYLVKTAGKESFHLRIRVHPYHTTRINKML
+SVAGADRLQTGMRGTWGKPVGKVARVNVDQILVSVRTTDRhrLVAIEALRRSMYKFPGRQKVIVSK----
+>gi|73997710|ref|XP_854316.1| PREDICTED: similar to ribosomal protein L10 [Canis familiaris]
+-----------------------------------------FGVCVHK---QTKIFKKEHLEKKSINTNSNVDHMEtNEDE--------IFDLSREKPLL
+AMYLVYFlTQLSIQGAFGKPQGTVARGHIGQVIMSICTKLQnkEHVIEALHRAKFKFPDCQKIHSSKK---
+>gi|25987151|gb|AAN75748.1|AF319171_3 ribosomal protein L16 [Magnolia x soulangeana]
+----------------------MLYPKRTKYSKYR-kgrcSRGrepdgtqLGFG-RYGTKSCRAGRLSYRAIEAARRAtigqfhraMSGQFRR-NG----
+KIWVRVLADLPITGKPT---------EVRMGRGKGNPTGWIARVSTGQIPFEMDGVSLSNARQAATLAAHKPCSSTKFVQWS----
+>gi|328766533|gb|EGF76587.1| hypothetical protein BATDEDRAFT_7062 [Batrachochytrium dendrobatidis JAM81]
+---------------------------------------------YGLQLFEPGRLKDKQLDTVRTMVNRILKseK-----GSKLILRIFPHRPVTAKGA
+---------ETRMGKGKGAVEYYATWVSEGVVIMEITGARKDVALKALNVAAQALPLRTRVV-------
+>gi|10802927|gb|AAG23675.1|AF288091_20 ribosomal protein L16 [Thraustochytrium aureum]
+---------KNTSFTKS--Q-rkkrflvDLDSSKICSVNKL------TF-GSMGLMLLEDSFIQAKHFKIAYDFLKKNISK-RG----LFWILKFPDQSF
+TKKPLG---------SRIGKGKGNVAFWAIFVNKGNVFIEIESDSYQKSILLLKKLEKRFPFSGKII-------
+>gi|11466316|ref|NP_051144.1| ribosomal protein L16 [Cafeteria roenbergensis]gi|6180098|gb|AAF05795.1|AF193903_18 ribosomal protein L16 [Cafeteria roenbergensis]
+---------PRKKYKKNF-SKHLSFRKTTQNNGL------VY-GNIGLQVAEYGKISHLRLNALKKILTFSLQR-KG----KIWLRVYPMIPKTKKPLE-
+--------VRMGKGKGNLHYWETTIFPGEILFELTTVDSKIAVNGLKQVMKRLGLKSRII-------
+>gi|21450002|ref|NP_659264.1| ribosomal protein L16 [Laminaria digitata]gi|21425327|emb|CAC87960.1| ribosomal protein L16 [Laminaria digitata]
+---------KKTKYRKYFKPRGLPNTSTKTQKLA------EL-TCFALIAMESSYLNGRQIEAARQNIRRKVKR-EG----KLEILVFPDIAISRKASA-
+--------ARMGKGKGKVDHWIASVSAGQTMFLLYGIHAEQGIPALSSGANKLPLKVKIY-------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+K 1    *	*	*	*	*	*	3808	*	1751	*	*	*	*	*	663	*	*	*	*	*	1
+       0	*	*	*	*	*	*	3463	0	0	
+
+P 2    *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	2
+       0	*	*	1297	754	*	*	3463	1261	0	
+
+G 3    853	*	*	*	4381	1649	*	*	*	*	*	4547	*	*	*	*	*	*	4768	*	3
+       0	*	*	*	*	*	*	3707	0	0	
+
+A 4    3697	*	*	*	*	*	4768	*	2681	*	*	*	*	5074	1041	3007	*	5169	4006	*	4
+       54	*	4768	*	*	*	*	3707	0	0	
+
+M 5    *	1035	*	*	*	*	*	3352	5274	*	2319	3282	*	*	*	4533	4583	*	*	*	5
+       0	*	*	*	*	*	0	3655	0	1029	
+
+Y 6    *	*	4182	*	4157	*	*	*	*	*	*	*	*	*	*	*	*	*	*	170	6
+       0	*	*	*	*	*	0	3655	0	1029	
+
+R 7    *	*	*	*	*	*	4658	*	4533	*	*	*	*	3968	509	5185	3023	*	*	*	7
+       0	*	*	*	*	*	0	3655	0	1029	
+
+N 8    *	*	3769	2843	4347	5699	3347	*	3523	*	*	3308	*	*	2832	4583	*	4800	*	2220	8
+       108	3787	*	1660	549	*	0	3655	1156	1029	
+
+S 9    *	2698	*	*	2804	3914	*	2061	*	3381	*	*	4724	4545	*	4532	5102	2760	*	*	9
+       0	*	*	*	*	*	0	3655	0	1029	
+
+S 10   5618	*	3492	3324	*	5290	*	*	1472	*	5530	4621	3659	*	4511	2793	3733	*	*	*	10
+       0	*	*	*	*	*	0	4361	0	1029	
+
+K 11   *	*	*	*	*	1963	*	5021	2008	*	*	2088	*	4170	3322	4275	*	5530	*	*	11
+       0	*	*	*	*	*	0	4361	0	1029	
+
+P 12   *	*	*	*	*	*	5636	*	2004	*	4296	*	1603	3321	4468	4966	2528	*	*	*	12
+       122	3993	5769	1728	518	*	0	4361	1172	1029	
+
+A 13   2075	*	*	*	*	*	*	*	2319	4283	*	*	1518	*	4906	3364	4999	*	*	*	13
+       0	*	*	*	*	1347	721	4369	0	1074	
+
+Y 14   *	*	*	*	2966	*	*	*	*	*	*	*	*	*	*	*	4916	*	*	253	14
+       0	*	*	*	*	*	0	4406	0	1029	
+
+T 15   5061	5308	*	*	*	*	*	*	2807	*	*	*	2512	*	4436	4999	970	4700	*	*	15
+       46	4999	*	1813	483	*	0	4406	1102	1029	
+
+R 16   *	*	*	*	*	*	*	*	1569	*	*	4339	*	*	777	*	5057	*	*	*	16
+       44	5050	*	2703	240	0	*	4406	1095	1029	
+
+R 17   *	*	5164	*	*	*	5610	4894	1785	5419	*	4593	5296	*	2202	2214	*	5116	*	3724	17
+       174	*	3139	*	*	*	*	4474	0	0	
+
+E 18   *	*	3731	1332	3135	*	4299	*	3093	*	*	3465	*	*	3014	5004	*	*	*	*	18
+       84	*	4144	*	*	*	0	4233	0	1156	
+
+Y 19   *	*	*	*	2124	*	*	*	3948	*	*	*	*	*	*	*	*	*	*	503	19
+       0	*	*	0	*	0	*	4074	1064	1236	
+
+I 20   *	2593	*	*	*	*	*	1282	*	*	3462	4096	4485	3139	*	4593	*	3750	*	*	20
+       72	*	4355	*	*	*	*	4474	0	0	
+
+S 21   4491	*	5948	*	*	3121	3308	*	2432	*	*	*	4158	*	1216	4964	5671	*	*	*	21
+       45	5036	*	3842	104	0	*	4511	1104	1045	
+
+G 22   4577	*	3510	4981	*	580	4693	5284	4366	*	5222	*	5058	*	*	*	*	*	*	*	22
+       0	*	*	*	*	*	0	4574	0	1018	
+
+I 23   2436	5133	*	*	5248	*	*	3189	4203	3452	2482	5662	5398	*	*	*	4935	2001	*	*	23
+       27	*	5750	*	*	*	0	4909	0	1018	
+
+P 24   *	*	4750	*	*	4441	*	*	5544	2279	*	*	642	5665	*	5107	*	*	*	*	24
+       0	*	*	*	*	*	0	4897	0	1063	
+
+G 25   5406	*	2708	4769	5107	2840	5446	*	5238	*	6029	4608	4076	2332	5665	3191	*	5092	*	3382	25
+       0	*	*	*	*	*	0	4897	0	1063	
+
+K 26   3108	*	*	*	*	*	5510	4271	4319	6100	5520	*	1265	*	5155	2741	3379	4890	*	*	26
+       0	*	*	*	*	*	0	4920	0	1063	
+
+K 27   *	*	*	*	5529	*	*	5520	517	5264	5561	*	*	4780	3000	4354	*	*	*	*	27
+       28	5721	*	0	*	*	0	4920	1000	1063	
+
+I 28   *	*	*	*	*	*	*	807	5700	4734	*	5476	*	*	2943	*	3584	2880	*	*	28
+       0	*	*	*	*	*	0	4907	0	1103	
+
+A 29   3412	3136	*	*	5476	*	*	4748	3539	5449	*	*	5695	*	2850	6024	1443	3598	*	*	29
+       0	*	*	*	*	*	0	4907	0	1103	
+
+Q 30   *	*	*	*	4499	*	3891	2828	1869	3989	5097	*	*	2773	3814	4146	3558	5449	*	*	30
+       118	4313	5139	766	1280	*	0	4907	1045	1103	
+
+F 31   *	*	*	*	954	*	*	5133	*	*	4467	4388	*	5155	*	5547	*	4754	5795	1955	31
+       32	*	5527	*	*	*	0	4885	0	1170	
+
+D 32   *	*	1734	3152	*	*	3953	4832	3802	*	5952	2886	5738	4725	3694	4678	4484	4426	*	*	32
+       0	*	*	*	*	*	0	4854	0	1238	
+
+M 33   4645	*	*	*	*	4346	*	4310	1929	3969	1485	*	*	5151	*	3912	4606	4612	*	*	33
+       0	*	*	1000	1000	661	1443	4854	1029	1238	
+
+G 34   5407	*	*	*	*	482	*	*	5331	3626	5891	*	5615	*	4932	*	*	*	*	3565	34
+       193	*	3001	*	*	807	1223	4951	0	1063	
+
+N 35   4358	*	3666	*	*	*	4034	*	5542	*	*	1822	*	2876	2319	4910	3481	4389	*	*	35
+       322	2935	3849	1841	472	*	0	4719	1261	1357	
+
+N 36   4159	*	5494	*	5703	*	*	4799	1944	2955	4256	3836	3212	5009	3957	*	4820	4473	*	3800	36
+       386	2089	*	1785	494	1132	879	4524	1591	1582	
+
+G 37   3898	*	5856	5018	*	4483	4776	*	1699	5027	5896	3756	*	5119	3315	3328	3348	5848	5974	6189	37
+       209	*	2887	*	*	3652	120	4699	0	1333	
+
+A 38   1646	*	5838	*	*	3442	*	*	3514	*	6093	4113	4185	4570	2165	4414	5200	5890	*	*	38
+       747	*	1306	*	*	*	0	4623	0	1671	
+
+G 39   5272	*	4878	*	*	1082	4496	*	2488	3455	*	4017	*	*	*	4306	4583	*	*	*	39
+       781	1258	*	1784	495	3684	117	4123	1525	2527	
+
+P 40   3605	4719	*	*	*	*	*	3190	4304	2348	4016	*	4111	4429	*	*	4578	1666	*	*	40
+       155	3292	*	0	*	173	3145	4323	1117	2415	
+
+T 41   3606	4535	2414	2347	*	4333	4440	*	4227	*	6160	3174	*	6042	5679	5404	3434	3925	*	*	41
+       441	2037	5671	723	1343	2108	381	4912	1767	1190	
+
+Y 42   5884	*	*	*	654	*	*	*	*	4264	*	*	*	*	*	*	*	*	6192	1828	42
+       134	*	3493	0	*	414	2003	4968	1029	1195	
+
+P 43   *	*	2935	2924	6031	1592	*	*	*	*	*	*	1655	5682	*	6118	4680	*	*	*	43
+       492	*	1792	*	*	0	*	4875	0	1304	
+
+A 44   5005	4173	*	*	5854	2699	5341	3396	*	4211	4705	*	4690	4337	*	4208	3971	2342	*	2979	44
+       0	*	*	*	*	0	*	4729	0	1557	
+
+Q 45   6548	2241	3582	2531	*	*	*	5426	3433	*	*	4154	*	3336	3616	3338	4626	5095	*	*	45
+       0	*	*	*	*	*	*	5091	0	0	
+
+V 46   5023	6057	*	*	2941	3667	5484	3284	*	3659	3664	*	*	*	*	*	*	1861	*	2419	46
+       0	*	*	*	*	*	*	5050	0	0	
+
+E 47   3420	*	7214	4286	5670	1326	3147	*	*	5954	6867	5798	*	3885	3961	3420	5571	6035	*	6268	47
+       0	*	*	*	*	*	*	5125	0	0	
+
+L 48   *	*	*	*	7250	*	*	2498	4887	520	3786	*	*	*	*	*	6302	*	*	*	48
+       50	*	4887	*	*	*	*	5125	0	0	
+
+V 49   5404	*	*	*	6711	*	5583	3054	2322	4443	4839	6262	*	2292	4304	*	*	1853	*	*	49
+       0	*	*	*	*	*	0	5003	0	1077	
+
+V 50   1406	6451	*	*	*	*	*	4525	*	3408	6907	5771	5901	*	*	1907	4592	3034	*	*	50
+       0	*	*	*	*	*	0	5003	0	1077	
+
+E 51   5005	5155	4065	2955	6719	*	4835	4322	3283	1839	4528	5478	*	6262	7199	4610	3760	3921	*	6815	51
+       0	*	*	*	*	0	*	5003	0	1077	
+
+K 52   4190	6102	4277	943	*	3766	*	*	4042	*	*	6772	*	3198	6302	4679	4193	*	*	*	52
+       0	*	*	*	*	*	*	5125	0	0	
+
+P 53   3793	5851	3921	5389	6496	4105	5686	6955	4939	6785	5762	4188	2548	6573	2970	2856	4184	*	*	3228	53
+       0	*	*	*	*	*	*	5125	0	0	
+
+V 54   3361	3785	*	3837	5290	1496	5331	4409	3890	5151	5701	*	*	*	6102	4125	6570	3172	*	*	54
+       40	5193	*	1000	1000	*	*	5125	1064	0	
+
+Q 55   5758	6537	*	5401	4639	*	5944	4239	4444	7076	*	4760	6049	1377	2856	5972	6419	*	3056	4027	55
+       0	*	*	*	*	0	*	5089	0	1064	
+
+I 56   *	6268	*	*	4058	*	*	1016	*	1965	5607	*	5194	*	6102	*	*	3133	*	*	56
+       0	*	*	*	*	*	*	5125	0	0	
+
+R 57   *	*	5824	*	4678	6600	*	*	3851	*	*	3810	*	5431	1731	2119	2072	*	*	*	57
+       21	*	6102	*	*	*	*	5125	0	0	
+
+H 58   2121	*	3964	6513	5803	4366	2399	*	4869	*	*	4870	5315	5338	*	1699	*	*	*	6281	58
+       0	*	*	*	*	*	0	5095	0	1049	
+
+N 59   5474	7694	*	2454	*	6662	*	*	2506	6034	5517	2208	*	4371	2324	4493	4569	5948	*	*	59
+       0	*	*	*	*	*	0	5095	0	1049	
+
+A 60   1333	5338	*	*	*	*	3902	*	*	*	6869	*	*	1310	6034	5743	4448	5651	*	*	60
+       0	*	*	*	*	0	*	5095	0	1049	
+
+L 61   *	*	*	*	5734	*	*	1105	*	1092	*	*	5194	*	6102	*	*	7518	*	*	61
+       0	*	*	*	*	*	*	5125	0	0	
+
+E 62   *	*	6740	127	*	6714	*	*	5734	*	*	6114	*	*	6102	*	5811	*	*	*	62
+       0	*	*	*	*	*	*	5125	0	0	
+
+A 63   768	*	*	*	*	*	*	5734	4887	*	*	*	4639	*	*	2161	3376	*	*	*	63
+       0	*	*	*	*	*	*	5125	0	0	
+
+A 64   758	4343	*	*	*	4139	*	5169	4887	5524	7134	*	*	*	*	4992	3360	3585	*	*	64
+       0	*	*	*	*	*	*	5125	0	0	
+
+R 65   *	5290	*	5758	6102	*	5194	*	6114	6364	*	*	*	6820	292	4887	*	*	*	5167	65
+       0	*	*	*	*	*	*	5125	0	0	
+
+V 66   6102	*	5734	5193	*	*	*	1594	3409	4142	4891	*	*	4158	2684	*	5196	2438	*	*	66
+       0	*	*	0	*	*	*	5125	1000	0	
+
+A 67   1636	3808	*	*	4855	*	*	4412	*	6430	3872	4232	*	5746	*	3221	3074	2986	*	5544	67
+       28	5686	*	2835	218	*	*	5177	1052	0	
+
+A 68   2016	6763	*	*	6295	6054	*	1868	*	2942	3162	*	*	*	*	4480	4201	3311	*	*	68
+       0	*	*	*	*	*	*	5177	0	0	
+
+N 69   6253	*	*	*	*	*	6609	6184	4210	4284	5111	1234	*	7197	4390	3102	2312	5573	*	6625	69
+       0	*	*	*	*	*	*	5177	0	0	
+
+R 70   *	5544	*	5386	6129	5686	5971	*	1691	*	*	*	*	6360	1014	3765	6128	*	*	*	70
+       17	*	6426	*	*	*	*	5177	0	0	
+
+Y 71   7745	7380	*	6424	4657	*	3518	4729	2628	6918	*	2874	*	4762	4083	4333	4640	5859	6127	1788	71
+       10	*	7161	0	*	0	*	5160	1029	1029	
+
+V 72   7368	*	*	*	4317	6283	*	2765	*	1202	2475	*	*	*	*	5615	5965	2912	*	*	72
+       127	5246	4110	0	*	*	0	5172	1064	1000	
+
+Q 73   5199	*	4809	3999	5442	4120	*	6806	1693	5720	5687	5984	*	3665	3172	3196	3804	4290	*	*	73
+       31	6465	6624	429	1959	2143	370	5001	1066	1391	
+
+N 74   5438	*	5554	4672	*	5181	4603	*	1264	*	*	4390	*	*	1628	5447	5221	6576	*	*	74
+       1137	*	875	1000	1000	1328	733	5026	1064	1344	
+
+S 75   3377	*	4611	2809	*	4747	5762	*	2527	5729	3674	3302	*	6337	4857	3833	2513	*	*	*	75
+       0	*	*	0	*	189	3025	4159	1029	3202	
+
+G 76   3731	5001	7692	3570	6019	2940	*	3345	4122	3733	6507	4897	*	4006	3253	4979	3385	3498	*	*	76
+       98	4862	5011	0	*	*	0	5047	1077	1270	
+
+A 77   3591	*	*	*	*	396	*	*	5803	6122	*	3876	5069	*	*	6150	6311	*	*	*	77
+       1285	4274	895	0	*	*	0	5006	1147	1371	
+
+A 78   4718	*	2236	1901	*	*	*	*	2178	5637	*	4655	*	*	2611	4732	*	*	*	*	78
+       0	*	*	*	*	5196	40	3845	0	3306	
+
+A 79   3988	*	1945	3283	*	5200	*	*	3502	4530	3760	5741	5481	5110	5048	2730	3458	*	*	*	79
+       80	5401	5048	0	*	4456	67	3862	1003	3251	
+
+N 80   4941	*	3881	4104	*	1796	*	*	3790	*	*	1772	4685	5790	5346	3229	*	*	*	*	80
+       86	*	4104	*	*	3839	104	4245	0	3218	
+
+Y 81   4301	*	*	*	1386	4111	*	*	*	*	*	*	*	*	*	3335	*	*	*	1287	81
+       0	*	*	*	*	191	3010	4228	0	3171	
+
+K 82   *	*	7102	*	3232	7168	2731	*	1188	4400	*	7307	*	3919	3802	*	6334	6565	*	3730	82
+       0	*	*	*	*	*	0	4935	0	1268	
+
+F 83   *	*	*	*	2663	6302	*	2150	*	1632	4057	*	*	*	*	5680	*	2709	5398	5311	83
+       0	*	*	*	*	*	0	4935	0	1268	
+
+R 84   *	*	*	5326	6085	*	6826	4119	2544	6234	6669	*	*	5471	3395	*	4518	5471	1228	3497	84
+       0	*	*	*	*	*	0	4935	0	1268	
+
+I 85   *	7706	*	*	6190	*	*	729	*	2792	5914	*	*	*	*	6529	6307	2368	*	*	85
+       0	*	*	*	*	*	0	4935	0	1268	
+
+R 86   *	6722	*	6537	*	*	6176	*	4530	3356	*	3391	*	5144	658	7030	5603	4662	*	*	86
+       0	*	*	*	*	*	0	4935	0	1268	
+
+K 87   4791	6190	*	*	*	*	5924	1889	3582	4194	5846	*	4290	*	6565	5398	5171	1340	*	*	87
+       35	*	5398	*	*	*	0	4935	0	1268	
+
+F 88   *	7050	*	*	924	*	3652	*	*	6215	*	*	*	4630	*	6552	*	6419	*	1691	88
+       0	*	*	*	*	1783	495	4876	0	1358	
+
+P 89   4504	7363	*	*	*	*	*	4795	*	5180	*	*	174	*	*	*	*	*	*	*	89
+       0	*	*	*	*	*	0	5011	0	1244	
+
+F 90   7221	*	1642	*	2851	7465	1453	*	*	5233	6031	4053	*	6377	*	6702	*	6592	*	5095	90
+       0	*	*	*	*	*	0	5011	0	1244	
+
+H 91   *	*	4795	6557	4997	*	1999	3259	2468	3895	5898	5121	*	3157	4641	5540	5729	3879	6207	*	91
+       0	*	*	*	*	*	0	5011	0	1244	
+
+V 92   4031	*	*	*	*	6238	*	3488	*	4100	6702	*	1597	7106	*	3129	6216	1723	*	*	92
+       0	*	*	*	*	*	0	5011	0	1244	
+
+I 93   *	*	*	*	5115	*	*	2018	3606	1567	*	*	*	*	7108	4795	5574	2301	6869	5111	93
+       42	*	5118	*	*	1634	561	5011	0	1244	
+
+R 94   *	5227	*	*	*	*	*	*	*	*	*	*	*	*	1276	3338	1116	*	*	*	94
+       30	*	5620	*	*	*	0	5026	0	1256	
+
+E 95   3734	*	*	1546	7178	4524	*	3559	1815	*	7849	5315	*	7107	4467	4247	6328	*	*	5957	95
+       0	*	*	*	*	*	0	5042	0	1361	
+
+N 96   *	*	*	*	*	*	2965	7140	1020	*	*	1936	*	5349	4419	*	4669	*	*	*	96
+       0	*	*	*	*	1911	446	5042	0	1361	
+
+K 97   4049	*	*	*	*	5105	*	*	1545	*	*	*	957	*	6893	4969	7505	7207	*	*	97
+       0	*	*	*	*	1514	622	5026	0	1256	
+
+A 98   2513	*	*	5656	6604	*	*	4330	5680	2177	1769	7651	5987	3908	*	5076	4195	4669	*	*	98
+       839	*	1181	*	*	*	0	5110	0	1153	
+
+A 99   1508	*	*	3877	*	4526	*	4067	4693	2097	3654	5175	4134	*	*	*	*	4620	*	*	99
+       269	*	2556	*	*	4301	75	4779	0	2815	
+
+A 100  1661	3462	*	*	5339	3251	*	4776	*	*	*	*	*	*	*	2332	2232	6041	*	*	100
+       104	*	3842	*	*	*	0	4362	0	3008	
+
+A 101  4281	2687	*	*	3542	1639	*	3550	*	*	3771	*	*	*	4846	4673	3995	3457	*	*	101
+       104	5313	4498	0	*	*	0	4215	1029	3092	
+
+A 102  496	*	*	*	*	*	4860	*	3393	*	*	*	*	5237	4646	*	*	*	4744	4115	102
+       0	*	*	*	*	*	0	4122	0	3172	
+
+A 103  4877	*	*	*	*	520	5203	*	3749	4115	*	*	*	5059	4578	4744	*	*	*	*	103
+       0	*	*	0	*	3562	128	4122	1064	3172	
+
+A 104  503	*	*	4910	*	*	*	*	4612	*	*	3671	*	4951	5438	4776	*	4323	*	*	104
+       0	*	*	*	*	*	0	4362	0	3008	
+
+A 105  3890	*	630	2760	*	*	*	*	*	*	*	*	*	*	5438	4951	4910	*	*	4323	105
+       118	*	3671	*	*	*	0	4362	0	3008	
+
+A 106  4959	*	*	*	4260	3562	*	*	*	*	*	*	*	5475	307	*	*	*	*	*	106
+       213	4260	3556	0	*	*	0	4235	1077	3089	
+
+A 107  4836	*	*	*	5198	*	*	2494	*	1192	*	*	*	*	*	4319	4143	2819	*	3752	107
+       0	*	*	*	*	432	1951	3988	0	3172	
+
+A 108  5048	*	5693	1391	*	3731	5956	*	6449	*	*	*	*	1876	5137	2744	*	*	*	5963	108
+       0	*	*	*	*	524	1715	5060	0	1592	
+
+D 109  5419	*	3566	3608	*	*	*	6601	4620	4982	*	5439	*	4610	*	3154	1629	2133	*	*	109
+       0	*	*	*	*	*	0	5155	0	1157	
+
+G 110  *	*	*	*	*	1250	*	*	7327	*	*	*	*	*	956	4982	*	5256	*	*	110
+       0	*	*	*	*	872	1141	5155	0	1157	
+
+M 111  *	5287	*	*	*	*	*	4322	*	5931	181	*	*	6458	*	*	*	6093	*	*	111
+       0	*	*	*	*	*	0	5170	0	1049	
+
+R 112  *	5596	*	*	*	913	*	*	*	*	*	*	5400	3876	1538	6373	*	*	*	*	112
+       0	*	*	*	*	*	0	5170	0	1049	
+
+A 113  3707	6258	*	*	*	3044	4689	*	1399	3460	*	4153	*	5374	3534	3597	7570	5287	*	*	113
+       0	*	*	*	*	*	0	5170	0	1049	
+
+P 114  1917	*	*	*	*	913	*	*	*	*	*	6654	3693	*	*	3612	4829	*	*	*	114
+       0	*	*	*	*	*	0	5170	0	1049	
+
+F 115  *	*	*	*	1302	*	*	*	941	5287	*	*	*	*	*	6093	*	6604	5434	*	115
+       0	*	*	*	*	*	0	5170	0	1049	
+
+G 116  *	*	*	*	*	14	*	*	*	*	*	*	6735	*	*	*	*	*	*	*	116
+       0	*	*	*	*	*	0	5170	0	1049	
+
+K 117  3295	*	5223	5132	*	6100	*	*	1346	*	*	2854	5147	7716	4223	2818	4537	5979	*	6745	117
+       0	*	*	*	*	*	0	5169	0	1049	
+
+P 118  4218	*	*	*	5236	*	*	3854	*	6091	*	6672	843	*	7459	*	4456	2202	*	*	118
+       17	*	6456	*	*	*	0	5169	0	1049	
+
+V 119  3947	*	2868	2062	*	*	5316	3332	5040	*	*	5152	*	3167	5266	4522	4546	2895	*	5822	119
+       0	*	*	0	*	0	*	5153	1029	1118	
+
+G 120  4672	*	6826	7604	3283	1264	3705	*	5316	6084	6253	6903	*	6192	6860	3468	5954	*	*	2635	120
+       0	*	*	*	*	*	*	5199	0	0	
+
+T 121  *	*	*	5611	6227	*	*	5913	6474	3518	*	*	*	5321	3757	5614	2430	4780	1127	4275	121
+       16	*	6461	*	*	*	*	5199	0	0	
+
+A 122  1300	4316	*	5504	7108	5798	*	3691	*	*	*	*	*	*	*	*	5344	1517	5300	5665	122
+       0	*	*	0	*	0	*	5182	1029	1029	
+
+A 123  571	4398	*	*	4407	*	*	5765	*	*	7269	*	5321	*	*	3703	3823	5283	*	6750	123
+       0	*	*	*	*	*	*	5199	0	0	
+
+R 124  6245	6179	*	5811	4633	*	*	5480	4633	6281	*	5980	4036	4788	965	6038	6171	2604	6761	6458	124
+       0	*	*	*	*	*	*	5199	0	0	
+
+V 125  4187	6860	*	*	*	5033	*	2362	*	4472	*	*	*	*	*	*	5520	634	*	*	125
+       0	*	*	*	*	*	*	5199	0	0	
+
+H 126  5728	*	4804	4923	5479	6651	2702	*	1715	5524	6748	3925	5281	4481	3367	3531	5974	6866	*	4427	126
+       21	*	6138	*	*	*	*	5199	0	0	
+
+G 127  4049	*	*	4102	*	5727	*	3635	2673	*	6005	*	1654	5812	4176	4269	3239	4294	*	6652	127
+       24	5933	*	0	*	*	0	5169	1031	1049	
+
+A 128  5727	*	4563	*	*	302	*	*	*	*	6672	3360	*	*	*	5596	*	*	*	*	128
+       0	*	*	*	*	*	0	5169	0	1049	
+
+N 129  5746	*	4012	3673	*	*	4822	6811	3119	*	5962	4555	*	1499	2649	6652	3534	6192	*	*	129
+       0	*	*	*	*	*	0	5169	0	1049	
+
+H 130  6035	5594	6630	6898	*	*	4844	1768	4154	7233	6519	*	4541	6652	4797	5135	6910	1259	*	*	130
+       0	*	*	*	*	*	0	5169	0	1049	
+
+I 131  *	*	*	*	5713	*	*	1190	*	1414	3835	*	6311	*	*	*	*	3563	*	*	131
+       0	*	*	*	*	*	0	5169	0	1049	
+
+F 132  *	7283	*	*	966	*	*	3266	*	3358	2596	*	*	*	*	*	6093	4752	*	3989	132
+       17	*	6456	*	*	*	0	5169	0	1049	
+
+I 133  *	*	6802	841	6083	*	*	4751	6072	6909	5664	6851	*	*	5173	2445	3458	5216	*	*	133
+       0	*	*	0	*	1197	827	5153	1029	1118	
+
+A 134  5146	*	*	*	4501	5848	*	1626	*	2196	3576	*	*	*	*	*	*	1816	*	*	134
+       0	*	*	*	*	0	*	5169	0	1049	
+
+W 135  3841	4028	3398	4090	5123	3123	3855	6133	4669	5362	7119	6778	6292	5952	2900	3211	4554	*	3923	5102	135
+       0	*	*	*	*	*	*	5199	0	0	
+
+V 136  7005	5267	5643	*	5558	1368	*	6110	6292	*	*	4104	*	*	6006	4947	1952	2780	*	*	136
+       0	*	*	*	*	*	*	5199	0	0	
+
+N 137  6104	7807	3657	5031	5544	6747	5782	3291	2759	4847	7586	3319	7529	*	4917	4424	4256	1840	*	6011	137
+       21	6113	*	428	1962	*	*	5199	1019	0	
+
+P 138  3570	*	3628	4012	*	7262	6922	6413	3432	3142	*	3767	2288	*	4571	2676	4685	6909	*	5913	138
+       16	6461	*	1000	1000	*	*	5199	1029	0	
+
+D 139  4134	*	3988	2356	5686	6968	6398	4043	3406	3941	*	5481	4085	2568	3478	4419	7119	*	*	4980	139
+       943	1059	*	1000	1000	0	*	5182	3059	1029	
+
+P 140  4642	*	2720	1915	*	6292	5143	*	2500	4587	*	3901	4699	4132	6011	3631	6492	7523	*	6903	140
+       0	*	*	*	*	*	*	5199	0	0	
+
+N 141  3845	*	4904	4498	4187	*	3247	3490	3690	2577	6613	3900	*	4196	*	6227	5050	2661	5321	*	141
+       0	*	*	*	*	*	*	5199	0	0	
+
+V 142  700	*	*	7604	*	5286	*	3883	*	4563	7119	*	*	*	*	4795	6065	2432	*	*	142
+       0	*	*	*	*	*	*	5199	0	0	
+
+E 143  *	6994	*	4539	5997	*	7775	2599	1324	3765	7604	5896	*	5276	2675	*	4481	5154	*	6182	143
+       0	*	*	*	*	*	*	5199	0	0	
+
+E 144  5257	*	3621	1040	*	5283	5987	5980	2984	4981	*	4303	6922	4198	7382	6212	5501	*	*	4797	144
+       0	*	*	*	*	*	*	5199	0	0	
+
+A 145  396	4701	*	*	6461	5431	*	4096	*	5765	*	*	*	*	*	4769	*	4222	*	*	145
+       34	6805	6098	0	*	*	*	5199	1005	0	
+
+W 146  4039	6803	*	*	2969	*	*	5778	6305	584	3718	*	*	*	*	*	*	6771	5681	*	146
+       0	*	*	*	*	*	0	5174	0	1048	
+
+R 147  4587	7531	*	4328	*	*	4044	5644	2037	4812	7539	5020	*	5956	1531	5110	4698	*	6640	3892	147
+       0	*	*	*	*	0	*	5174	0	1048	
+
+R 148  4767	*	*	6413	*	6797	4922	4403	3553	2322	6474	*	*	4069	1538	3795	6725	4403	*	4913	148
+       0	*	*	*	*	*	*	5199	0	0	
+
+A 149  501	6086	5220	*	*	3580	*	5676	6805	5323	6458	*	*	*	*	5174	5425	4248	*	*	149
+       0	*	*	*	*	*	*	5199	0	0	
+
+K 150  1893	4750	5655	5765	*	3282	*	6260	2233	7171	4710	6110	*	5272	6461	2384	5862	7042	*	6196	150
+       16	*	6461	*	*	*	*	5199	0	0	
+
+M 151  4656	*	5283	*	2826	*	2916	5108	3222	4740	3833	3903	7243	4312	6798	3024	5609	4584	*	3330	151
+       0	*	*	*	*	*	0	5182	0	1029	
+
+K 152  6739	6798	*	*	*	*	*	7119	220	*	*	7457	*	4527	4167	*	*	*	*	6451	152
+       0	*	*	1000	1000	0	*	5182	1029	1029	
+
+V 153  *	7156	*	*	2117	*	*	4364	*	703	4278	*	6304	*	*	*	*	4811	*	*	153
+       17	*	6452	*	*	*	*	5198	0	0	
+
+T 154  *	5859	*	*	*	4239	*	*	*	5439	*	5169	353	*	*	3869	5183	*	*	*	154
+       0	*	*	*	*	*	0	5181	0	1029	
+
+P 155  *	5172	5027	*	3295	2351	6802	2566	5983	3103	4403	*	5123	*	*	5532	3623	2934	*	5371	155
+       0	*	*	*	*	*	0	5181	0	1029	
+
+T 156  5848	4154	6805	6171	5888	*	5515	*	1844	7530	6080	5596	2895	4463	2493	3791	3430	*	*	5439	156
+       9	*	7386	1585	585	0	*	5181	1029	1029	
+
+I 157  5322	2799	*	*	*	5240	*	5277	*	6568	5027	*	5562	2458	*	4485	1504	3585	6078	4675	157
+       27	5745	*	1000	1000	0	*	5197	1042	1011	
+
+N 158  6047	5403	*	4488	6308	5164	5958	4898	1234	6834	*	4994	*	5193	1951	7505	4338	7781	*	5980	158
+       18	6354	*	0	*	*	*	5185	1033	0	
+
+I 159  *	*	*	*	2298	*	*	925	*	2778	7541	*	*	*	*	6589	*	3206	*	*	159
+       70	4400	*	717	1353	*	*	5185	1193	0	
+
+D 160  5059	6762	4866	5196	5461	*	3295	1954	5326	4000	*	*	*	5251	6038	6579	*	1554	*	4772	160
+       44	5310	7663	827	1197	*	*	5167	1048	0	
+
+S 161  4942	6110	5175	4221	5100	6404	6602	2053	3781	4497	*	4427	*	5434	6914	3169	3789	2510	*	5290	161
+       46	5008	*	1153	861	*	0	5031	1058	1000	
+
+S 162  3974	*	3964	3987	*	7214	7389	5335	3020	4967	7332	6564	4995	*	2261	2006	4627	5788	4771	6002	162
+       26	5807	*	2295	329	0	*	5001	1003	1000	
+
+P 163  4898	*	*	3837	*	*	5305	*	1145	*	*	3802	3016	4435	3554	3845	5456	*	*	*	163
+       0	*	*	*	*	*	*	4143	0	0	
+
+A 164  1829	*	*	*	*	*	*	*	477	*	*	*	*	*	*	*	*	*	*	*	164
+       0	*	*	*	*	*	*	2155	0	0	
+
+G 165  *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	165
+       0	*	*	*	*	*	*	1000	0	0	
+
+N 166  *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	166
+       0	*	*	*	*	*	*	1000	0	0	
+
+A 167  0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	167
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  60dd783edaf524b39db3af7ecfd53a48
+FAM   
+FILE  60dd783edaf524b39db3af7ecfd53a48
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:17:44 2013
+LENG  114 match states, 114 columns in multiple alignment
+FILT  132 out of 875 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  8.7 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEEEEECCCCHHHHHHHHHHHHHHHHHHHCCCHHHEEEEEECCCCEEECCCCCCEEEEEEEEEECCCHHHHHHHHHHHHHHHHHHHCCCCCEEEEEEEE
+CCHHHEEECCEECC
+>ss_conf PSIPRED confidence values
+9899996378625589999999999999879594479999986986797898986699999998289999999999999999999969393649999998
+89999578779886
+>Consensus
+PxixixTNxxxxxxxxxxxxxlsxxiaxxlxkpexxixvxvxxxxxmxxggxxxpxxxvxixxxxgxxxxxxxxxxxxixxxlxxxlgvxxxrixIxfxx
+xxxxxwgxxGxtxx
+>60dd783edaf524b39db3af7ecfd53a48
+PMFIVNTNVPRASVPEGFLSELTQQLAQATGKPAQYIAVHVVPDQLMTFSGTNDPCALCSLHSIGKIGGAQNRNYSKLLCGLLSDRLHISPDRVYINYYD
+MNAANVGWNGSTFA
+>gi|225698066|pdb|3FWT|A Chain A, Crystal Structure Of Leishmania Major Mif2
+PFLQTIVSVSLDDQKrANLSAAYGMICr-EELGKPEDFVMTAFSDKTPISFQGSTAPAAYVRVESWGEYAPSKPKMMTPRIAAAITKECGIPAERIYVFY
+YSTKHCGW--NGT---
+>gi|319935323|ref|ZP_08009761.1| hypothetical protein HMPREF9488_00592 [Coprobacillus sp. 29_1]gi|319809731|gb|EFW06132.1| hypothetical protein HMPREF9488_00592 [Coprobacillus sp. 29_1]
+PFMRFTTTKTLTLKQeKALKESAGKFISILPNKKEEQLMIHIEDNQVMYFKGKEMDCMKIECQLFHHIEISYKQEFVKAMMNEIEMITKIPVSHQYMTID
+EYD--NWGKNGELA-
+>gi|336255477|ref|YP_004598584.1| 4-oxalocrotonate tautomerase [Halopiger xanaduensis SH-6]gi|335339466|gb|AEH38705.1| 4-oxalocrotonate tautomerase [Halopiger xanaduensis SH-6]
+PLLQFDTTLSlSADEKEALADRVTAIYTEEMATTAGHVAVTIREhePAALHLGRaVEGPLCFLDAEIRQGRPFERKRAFALETMAYVGERFDVPDENMKV
+VFTEHPGESM--------
+>gi|312219511|emb|CBX99454.1| similar to MIF domain containing protein [Leptosphaeria maculans]
+---ELRTNVIIK-DEYTLVTDLSHHLSTRYQRPETSIMITVNHSACLLLGGSFEPTYILAINALPvQLQPTTNKRNAAMIQTFMAESIGVSPERGIIKFL
+PIPEDSLAMNGMTI-
+>gi|296136495|ref|YP_003643737.1| 4-oxalocrotonate tautomerase [Thiomonas intermedia K12]gi|295796617|gb|ADG31407.1| 4-oxalocrotonate tautomerase [Thiomonas intermedia K12]
+PFITLHLSGSPDPElSRDLSKRIGALACKLLRKDLRRTSVLVRYVphADWFIADQSlqelgRNAFRLEVTVTDETNTRdEKAIFQREAFQALSTWIGNVH
+PHSNIHVIDCRATAYGYGGVT--
+>gi|302876815|ref|YP_003845448.1| 4-oxalocrotonate tautomerase family enzyme [Clostridium cellulovorans 743B]gi|307687498|ref|ZP_07629944.1| 4-oxalocrotonate tautomerase family enzyme [Clostridium cellulovorans 743B]gi|302579672|gb|ADL53684.1| 4-oxalocrotonate tautomerase family enzyme [Clostridium cellulovorans 743B]
+PYINVKLVKeQTSLEqQKKIIEGLTDLVVTVMGREKSLTVITLDELsaNQWSIGGETleqsadkKAVSFVNIKVSKGTTDAeEISKMMKATKELLAEVLG
+NNEEANYFILDELNPDAWGFDGisMT--
+>gi|315303670|ref|ZP_07874195.1| 4-oxalocrotonate tautomerase [Listeria ivanovii FSL F6-596]gi|313627960|gb|EFR96568.1| 4-oxalocrotonate tautomerase [Listeria ivanovii FSL F6-596]
+---------------ENINRAIHNALIECFQIPENDSFQLWvsTDATANfvdaHYllPTgkRNNEFLYLEIFCGPGRSIEQKRSLYQTIVAQMEQATSLS
+KQNIFILLNEVSLENWSFGDG---
+>gi|293606869|ref|ZP_06689217.1| 4-oxalocrotonate tautomerase [Achromobacter piechaudii ATCC 43553]gi|292814721|gb|EFF73854.1| 4-oxalocrotonate tautomerase [Achromobacter piechaudii ATCC 43553]
+PILNVQILQGHSAAQkAALLRAASDAVVQSIAAPLPSVRIVLqeVPAENVIVAGEIGkRMVRVDVALIEGRDEAKKAALIAALNQAVCSSIDISGEDVRV
+LIRDVPKVDMGVANG---
+>gi|338811969|ref|ZP_08624168.1| 4-oxalocrotonate tautomerase [Acetonema longum DSM 6540]gi|337275938|gb|EGO64376.1| 4-oxalocrotonate tautomerase [Acetonema longum DSM 6540]
+--------------------------------------------------------------------QAQKDEISQTFTREISRILKGDHGPVTVEFNE
+IPRPEADSKQTP--
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+P 1    *	*	*	*	*	*	*	*	*	*	*	*	30	*	*	5619	*	*	*	*	1
+       30	*	5619	*	*	*	*	7763	0	0	
+
+M 2    6639	3370	*	6240	2153	*	5038	3355	6260	2941	5548	6442	*	*	6346	*	4293	3306	*	2423	2
+       0	*	*	*	*	0	*	7845	0	1084	
+
+F 3    3638	3881	*	*	4723	*	*	1606	*	1706	5743	*	*	*	*	*	*	2820	*	5735	3
+       0	*	*	*	*	*	*	7907	0	0	
+
+I 4    6121	*	5348	2649	6117	*	6522	4394	3964	6220	4640	4061	*	2677	2836	3707	2891	5038	*	6258	4
+       0	*	*	*	*	*	*	8093	0	0	
+
+V 5    5126	6326	*	*	3560	*	*	1906	*	1767	5209	*	*	*	*	*	4572	2032	*	*	5
+       0	*	*	*	*	*	*	8126	0	0	
+
+N 6    4804	*	3209	3428	4053	*	4043	4968	2619	6671	*	5293	*	3420	4680	4107	2525	5517	*	5258	6
+       0	*	*	*	*	*	*	8126	0	0	
+
+T 7    5827	6446	*	*	*	*	*	5090	*	3370	*	*	*	*	*	4096	539	3348	*	*	7
+       0	*	*	*	*	*	*	8126	0	0	
+
+N 8    4450	*	*	*	*	6382	*	*	5554	*	*	455	6446	*	*	3458	3743	6111	*	*	8
+       0	*	*	*	*	*	*	8126	0	0	
+
+V 9    4736	5973	5395	4684	5236	5963	6279	4233	4103	2155	6159	*	*	4455	5847	4802	5324	1495	*	*	9
+       87	4362	6682	256	2623	*	*	8126	1398	0	
+
+P 10   3740	*	4106	5890	6558	5817	5387	4811	2831	6624	*	3560	2430	3941	4733	2343	5014	6571	*	*	10
+       340	2348	6232	103	3855	0	*	8133	2937	1000	
+
+R 11   2528	*	4589	4154	6290	*	6464	3544	3643	3157	4834	5410	4054	6686	5651	2994	3477	5059	*	4913	11
+       35	*	5372	*	*	*	0	8073	0	1029	
+
+A 12   3610	6110	2309	4678	*	4580	*	6709	4888	5264	*	3349	6362	5786	6633	2085	2790	5543	*	6446	12
+       16	*	6503	*	*	1823	479	8052	0	1285	
+
+S 13   3095	*	2430	3509	*	5461	6107	*	3172	4095	*	*	4027	3332	4603	3299	7017	3650	*	6392	13
+       29	*	5646	*	*	0	*	8058	0	1291	
+
+V 14   3916	6444	2805	2274	4121	6364	6079	3509	4053	4251	*	5218	*	4361	5785	*	6381	2460	*	*	14
+       213	3140	5391	0	*	0	*	8103	2018	1099	
+
+P 15   3768	*	4824	4259	*	4942	*	*	2616	*	4541	4868	2205	2972	5584	2921	4607	5155	*	*	15
+       362	2173	*	0	*	0	*	8170	3155	1134	
+
+E 16   3462	*	2864	2351	6504	*	*	5255	2363	6091	*	4649	*	3759	4067	3660	5526	4858	*	5578	16
+       0	*	*	*	*	*	*	8778	0	0	
+
+G 17   2692	*	3016	3209	*	2967	5429	5038	3157	6768	*	3840	6643	4471	4521	3562	4364	6817	*	*	17
+       0	*	*	*	*	*	*	8778	0	0	
+
+F 18   4961	6694	*	*	1494	*	*	3243	*	1335	*	*	*	*	*	*	6911	3662	6186	*	18
+       0	*	*	*	*	*	*	8778	0	0	
+
+L 19   2372	5289	6524	4017	5060	6998	4464	3864	3624	2152	4247	5598	7046	5750	5138	5211	5832	3871	*	6643	19
+       0	*	*	*	*	*	*	8778	0	0	
+
+S 20   3420	*	3705	2944	*	5323	6422	6515	2330	3864	7029	6272	6998	4651	4201	3059	3385	4422	*	*	20
+       0	*	*	*	*	*	*	8778	0	0	
+
+E 21   3575	5624	3180	2037	*	3693	*	5870	3174	*	*	4694	*	4680	3536	4130	4434	4612	5138	*	21
+       0	*	*	*	*	*	*	8778	0	0	
+
+L 22   3707	6821	*	*	3594	*	*	2490	*	1498	4506	*	*	*	*	4544	3759	3076	*	5624	22
+       0	*	*	*	*	*	*	8837	0	0	
+
+T 23   3881	4038	6464	5171	6578	3405	4204	5599	6352	*	6453	5637	*	5449	6518	1557	2457	5179	*	5299	23
+       28	*	5691	*	*	*	*	8837	0	0	
+
+Q 24   3163	6277	3378	2869	5819	5779	4045	6956	2713	5505	*	4032	*	3136	4458	3518	5491	6697	*	5391	24
+       0	*	*	*	*	0	*	8753	0	1147	
+
+Q 25   1801	4757	*	5775	3519	6296	5782	3698	5258	2154	6790	6535	*	7231	5851	4907	4214	3629	*	*	25
+       0	*	*	*	*	*	*	8837	0	0	
+
+L 26   3735	6721	*	*	4264	*	*	2093	*	2009	3939	*	*	*	*	*	4008	2224	*	4671	26
+       16	6518	*	0	*	*	*	8837	1041	0	
+
+A 27   1504	3760	*	6452	*	4743	6644	4447	6336	*	6438	6718	6578	6226	4351	1905	5112	4284	*	6000	27
+       0	*	*	*	*	0	*	8825	0	1041	
+
+Q 28   4335	*	3115	1941	6395	6466	6528	5480	2757	4568	6582	4582	*	3697	5122	3329	4112	6296	*	*	28
+       0	*	*	*	*	*	*	8837	0	0	
+
+A 29   3118	6374	5676	4537	6469	*	5088	2940	5089	2735	4662	6159	*	7184	5119	4072	3632	2118	*	*	29
+       0	*	*	*	*	*	*	8837	0	0	
+
+T 30   6011	*	*	*	3558	*	*	4482	*	1112	2730	*	3591	*	*	6960	3731	5129	6634	4777	30
+       0	*	*	*	*	*	*	8837	0	0	
+
+G 31   3917	6846	3414	4753	*	1332	6747	*	3537	*	*	3038	6159	3360	4868	5285	6870	*	*	*	31
+       0	*	*	*	*	*	*	8837	0	0	
+
+K 32   4499	6304	6159	*	5637	*	*	5302	706	5680	5635	6915	*	*	3379	6452	4606	3995	*	6450	32
+       0	*	*	*	*	*	*	8837	0	0	
+
+P 33   6846	*	3177	4598	*	6216	*	*	4938	*	6233	5459	787	*	5667	3038	4788	*	*	*	33
+       0	*	*	*	*	*	*	8837	0	0	
+
+A 34   4157	*	5707	1319	*	6582	*	3887	3340	3921	4677	6159	3762	3981	6040	5339	6216	4734	*	*	34
+       0	*	*	*	*	*	*	8837	0	0	
+
+Q 35   3346	*	2385	3050	*	4969	6738	5273	3923	6892	6129	3117	4822	5511	3789	2856	4589	*	6790	*	35
+       16	*	6496	*	*	*	*	8837	0	0	
+
+Y 36   4334	6655	3542	5733	4488	5525	4502	6447	3477	3769	*	5510	*	5367	2716	4303	*	4204	4667	2265	36
+       0	*	*	*	*	*	0	8812	0	1034	
+
+I 37   5448	4569	*	*	5490	*	*	1777	6462	3156	3776	*	*	5556	4048	5513	3985	1957	*	*	37
+       0	*	*	*	*	*	0	8829	0	1034	
+
+A 38   3319	4030	*	6256	4237	*	6252	4863	*	5170	1585	5652	*	5867	4866	3746	3362	3489	6452	5615	38
+       0	*	*	*	*	*	0	8829	0	1034	
+
+V 39   4079	6743	*	*	*	6648	4708	2901	*	4493	4566	6139	*	4483	*	5052	3903	980	*	*	39
+       54	4766	*	1585	585	*	0	8829	1315	1034	
+
+H 40   4015	7330	6347	4217	6932	4514	3703	4936	5982	3770	4020	4295	6743	4315	3349	3198	2594	3827	*	*	40
+       0	*	*	*	*	0	*	8829	0	1034	
+
+V 41   5690	*	*	*	3304	6680	*	1999	*	2136	6467	*	*	*	*	6713	*	1827	5152	4032	41
+       164	3318	7154	1000	1000	*	*	8854	2197	0	
+
+V 42   4984	6590	3201	2699	*	*	4043	4411	4334	3843	7066	4057	6569	3875	3147	4077	4061	3665	*	6473	42
+       72	4743	6489	1000	1000	0	*	8857	1382	1000	
+
+P 43   4373	6379	2207	3060	*	3765	4823	*	7059	5638	*	*	2620	6078	5230	4239	3228	4996	*	3802	43
+       62	4561	*	1000	1000	0	*	8831	1478	1045	
+
+D 44   3766	6363	2636	3211	*	2393	5558	6302	7154	6518	*	2849	4249	4544	4991	3342	5667	5700	*	*	44
+       135	3883	5529	1000	1000	*	*	8854	1762	0	
+
+Q 45   3147	4852	4348	3229	*	4512	5219	5056	3651	3626	5787	5035	5171	2868	4670	4987	4320	3484	*	6400	45
+       127	*	3573	*	*	0	*	8770	0	1173	
+
+L 46   3581	4651	2758	5114	6683	5467	3040	5104	5019	5849	5719	4219	3435	3908	3335	4348	4575	6055	6595	5535	46
+       0	*	*	*	*	0	*	8664	0	1943	
+
+M 47   5542	6358	*	*	3796	6458	*	2741	*	2238	1503	6376	*	*	*	*	6866	4453	3635	5518	47
+       134	4119	5009	1441	663	*	*	8854	1618	0	
+
+T 48   4128	4040	5544	*	3236	4866	4414	4893	*	3157	5181	*	*	*	4362	3604	2938	3776	4699	2976	48
+       17	*	6435	*	*	*	0	8755	0	1449	
+
+F 49   5367	*	*	*	1638	*	5033	3041	6529	3509	4232	6450	5299	*	2814	5694	6467	4485	4919	3984	49
+       27	5758	*	1218	811	0	*	8730	1100	1607	
+
+S 50   2816	5745	5997	7458	6533	1076	6401	5781	6125	*	5184	5114	3568	4307	5023	4806	6475	*	*	5675	50
+       39	5907	6636	0	*	*	*	8854	1095	0	
+
+G 51   3570	*	4651	5436	4928	722	*	*	6710	4218	*	4813	5549	*	4202	6341	5219	*	*	*	51
+       194	3118	6560	930	1073	0	*	8839	2344	1012	
+
+T 52   7012	*	4246	3284	*	6835	6554	*	3947	5109	*	4138	6211	4686	2916	1859	2532	4903	*	*	52
+       114	4050	5984	981	1020	0	*	8834	1857	1020	
+
+N 53   4606	6437	2934	3178	4003	4769	5129	6447	5026	5586	6971	3987	2869	5663	5638	3277	2701	6533	*	*	53
+       160	3251	*	2495	282	0	*	8849	2165	1087	
+
+D 54   3329	*	2181	2121	*	3918	*	*	4309	3931	6125	5070	5550	5242	3872	5287	4322	4959	*	*	54
+       116	3695	*	405	2031	*	*	8854	1999	0	
+
+P 55   4003	*	3763	4045	6255	5225	6651	*	4262	4583	*	4060	958	6842	6309	5690	4866	*	*	6615	55
+       0	*	*	*	*	*	*	8854	0	0	
+
+C 56   2261	2643	*	*	4730	4307	5669	7150	6510	3985	3922	6972	*	5765	5125	3759	4006	3368	5565	3896	56
+       0	*	*	*	*	*	*	8807	0	0	
+
+A 57   1550	3313	*	*	4222	4357	*	4259	*	4344	4976	*	4110	*	*	5746	3712	2997	*	4498	57
+       0	*	*	*	*	*	*	8807	0	0	
+
+L 58   *	5610	*	6595	2333	6829	4999	3058	6138	3590	3710	*	*	4248	4886	5801	5548	3247	5642	2428	58
+       0	*	*	*	*	*	*	9006	0	0	
+
+C 59   4354	4703	*	*	4563	5126	*	2110	*	2376	3481	*	*	*	*	6478	*	1781	*	5284	59
+       0	*	*	*	*	*	*	9006	0	0	
+
+S 60   6943	6988	3613	1862	5916	*	3574	6604	4724	7145	5611	3462	*	4390	3563	3412	3141	5593	*	*	60
+       0	*	*	*	*	*	*	9005	0	0	
+
+L 61   4862	5029	*	*	4609	*	*	1529	*	2170	6518	*	*	6264	*	*	6799	1814	*	6960	61
+       0	*	*	*	*	*	*	9005	0	0	
+
+H 62   4707	5840	4438	3506	4836	*	5109	5234	2524	7025	5495	3889	*	4038	3668	3850	2758	3795	*	5676	62
+       9	7257	*	0	*	*	*	9005	1000	0	
+
+S 63   2987	4471	*	*	4903	5295	7242	3161	6978	2895	3649	5340	*	6953	5781	2077	5004	3577	6041	6478	63
+       11	*	7047	*	*	*	*	9005	0	0	
+
+I 64   4339	*	*	*	3593	6189	7252	1860	6890	3031	3691	6988	6473	*	4323	4383	3346	3460	5938	4605	64
+       80	*	4211	*	*	0	*	9002	0	1084	
+
+G 65   3547	6590	4536	3093	6207	1357	6078	*	4604	*	*	4651	3703	5208	4711	4899	5078	5067	*	6789	65
+       130	3805	6070	336	2266	816	1211	8993	2075	1749	
+
+K 66   4699	*	6599	5299	*	1076	5500	5762	4205	5063	5969	3836	5404	4761	5220	4982	5596	3418	7069	*	66
+       48	5366	6875	0	*	616	1525	9015	1223	1484	
+
+I 67   7345	*	6101	6007	3497	5921	6630	3533	6170	2233	4176	6814	4856	*	2071	5103	3322	4084	*	6528	67
+       25	5889	*	0	*	769	1276	9018	1120	1237	
+
+G 68   4719	*	2964	6143	*	2658	5733	*	4289	7092	*	3175	3408	5758	5827	2472	2619	*	*	*	68
+       11	7092	*	0	*	*	0	9008	1000	1022	
+
+G 69   4067	*	3466	3829	6596	5578	5320	3992	3839	4045	5866	5592	2336	4710	3769	4342	3782	4505	*	5927	69
+       30	5609	*	0	*	0	*	9028	1221	1022	
+
+A 70   3180	*	3256	1557	6124	4957	6979	6008	4287	5683	*	5360	6810	4588	4377	3193	3989	6755	*	*	70
+       188	3129	7000	133	3504	*	*	9038	2543	0	
+
+Q 71   3499	6642	4386	2717	*	4773	6020	*	4458	3494	7089	4341	7296	2125	4269	5470	3706	4355	*	5424	71
+       29	6486	6829	2322	322	*	0	9039	1045	1000	
+
+N 72   7275	4984	6906	*	5912	*	*	4945	1777	4688	6471	1842	4499	5388	3744	5351	4054	5021	7278	5713	72
+       50	4870	*	1386	696	0	*	9034	1520	1143	
+
+R 73   3911	6115	5346	2870	*	5504	5753	6257	2263	4928	5636	5617	4607	3382	2569	4038	5647	5261	*	6655	73
+       0	*	*	*	*	*	*	9038	0	0	
+
+N 74   2475	7095	4305	2625	*	5286	7184	5192	2369	5435	*	5256	*	3525	2919	4831	5054	6255	*	*	74
+       0	*	*	*	*	*	*	9038	0	0	
+
+Y 75   5220	6708	*	*	2669	6267	3607	3466	6651	1742	3831	5285	*	*	5391	*	6070	4272	5721	3231	75
+       0	*	*	*	*	*	*	9038	0	0	
+
+S 76   2194	5966	5929	*	6074	4439	*	3160	6676	5235	5678	5740	*	6346	*	2124	2992	3492	*	4460	76
+       19	*	6267	*	*	*	*	9038	0	0	
+
+K 77   2198	*	3980	3399	*	5079	7010	5730	1903	4640	*	*	6923	3471	4668	4131	4711	5199	*	*	77
+       0	*	*	*	*	*	0	8981	0	1034	
+
+L 78   1975	*	4393	2740	5578	4086	5866	5022	2903	4256	5362	5118	6395	4773	4315	6983	4173	5686	*	*	78
+       0	*	*	*	*	*	0	8981	0	1034	
+
+L 79   4869	*	*	*	3161	*	*	1395	*	2096	4123	*	*	*	*	6687	5638	2798	*	6845	79
+       0	*	*	*	*	0	*	8981	0	1034	
+
+C 80   4425	3157	*	6422	3080	5776	5929	5570	5989	4922	4117	6039	*	4543	7217	3858	1649	4712	*	4092	80
+       0	*	*	*	*	*	*	9038	0	0	
+
+G 81   2865	7002	2419	2204	*	5795	5978	*	3390	*	6731	4774	4984	4081	3877	3720	4605	*	*	*	81
+       0	*	*	*	*	*	*	9038	0	0	
+
+L 82   2843	6547	7174	4189	2511	6540	5284	3601	5362	2540	6564	5918	6714	7206	4773	5398	4027	3977	7127	4010	82
+       11	*	7014	*	*	*	*	8862	0	0	
+
+L 83   4197	5385	*	*	3568	6910	*	2354	*	1569	3345	*	*	*	*	6061	4874	2914	*	5953	83
+       20	6151	*	1585	585	0	*	8860	1146	1045	
+
+S 84   2782	6035	5968	2483	*	5112	3900	5829	4461	5574	5338	4732	*	3473	4676	3572	3542	3835	*	4915	84
+       0	*	*	*	*	*	*	8862	0	0	
+
+D 85   4127	*	4311	1754	*	5431	*	*	2698	6965	6187	5112	5514	3178	3213	4806	3622	6540	*	*	85
+       0	*	*	*	*	*	*	8862	0	0	
+
+R 86   3667	*	5330	2465	6697	*	3545	3516	3472	4382	*	4079	7014	4422	5475	6231	3306	3150	6371	5695	86
+       10	*	7127	*	*	*	*	8862	0	0	
+
+L 87   4601	5986	*	*	4017	*	*	4147	*	698	5269	*	4936	*	6867	6154	3566	6163	6778	5678	87
+       0	*	*	*	*	0	*	8868	0	1000	
+
+H 88   3832	*	4985	4988	*	937	4907	*	2974	6023	*	4085	5942	6069	5661	4747	6885	6291	*	*	88
+       0	*	*	*	*	*	*	8862	0	0	
+
+I 89   5279	4700	*	*	7127	5773	*	1773	4402	2909	6929	5145	5940	*	*	6281	5552	1593	*	5733	89
+       0	*	*	*	*	*	*	8862	0	0	
+
+S 90   4283	*	3334	4159	*	4640	5748	6540	4110	5072	*	5905	1423	4704	5277	3152	4395	5469	*	*	90
+       45	5804	6291	0	*	*	*	8862	1170	0	
+
+P 91   3243	*	6614	4432	*	3851	4908	5736	2751	4938	7034	5496	1835	3803	4912	3602	6887	5555	*	6924	91
+       0	*	*	*	*	*	0	8809	0	1034	
+
+D 92   4232	6689	1979	1975	*	4327	6514	7093	7264	6577	7222	4062	4994	4613	7575	3189	4106	5676	*	6302	92
+       0	*	*	*	*	*	0	8809	0	1034	
+
+R 93   4529	*	3935	5260	*	6828	4271	*	4769	5945	*	3382	6621	4535	1159	3562	5510	5041	*	5825	93
+       0	*	*	*	*	0	*	8809	0	1034	
+
+V 94   6959	4654	*	*	4056	4106	*	1607	*	3994	4149	6722	*	5662	*	4439	4226	1955	*	*	94
+       0	*	*	*	*	*	*	8862	0	0	
+
+Y 95   *	*	5601	4946	3218	*	7054	3527	5596	3815	5146	4727	*	7150	3902	6072	3679	3645	7120	1585	95
+       0	*	*	*	*	*	*	8862	0	0	
+
+I 96   7026	6897	*	*	4536	5961	*	1147	*	3589	4023	*	*	*	*	*	4917	1759	*	*	96
+       0	*	*	*	*	*	*	8888	0	0	
+
+N 97   4807	7324	6568	3906	5579	6813	4178	3795	3686	3103	6125	3751	*	4186	3869	4142	3308	2945	*	5049	97
+       14	*	6716	*	*	*	*	8888	0	0	
+
+Y 98   6734	6253	*	*	1202	*	*	2487	*	3001	5345	*	*	*	*	*	*	3582	*	2928	98
+       0	*	*	*	*	0	*	8870	0	1003	
+
+Y 99   5942	*	3495	3444	4096	*	3419	4488	4648	4374	*	3678	*	3718	4208	4565	2988	3803	*	3830	99
+       0	*	*	*	*	*	*	8888	0	0	
+
+D 100  4221	*	2093	1508	6810	6072	6563	6584	*	*	*	3958	3139	5108	5560	4982	5582	5220	*	6927	100
+       0	*	*	*	*	*	*	8888	0	0	
+
+M 101  3847	4848	*	5762	5948	*	4394	2614	6260	2697	3541	4711	4610	5025	5803	4913	5463	2425	*	5202	101
+       0	*	*	*	*	*	*	8853	0	0	
+
+N 102  4425	*	3100	2702	*	5536	5763	6710	4162	5872	*	3779	2110	4347	4713	3162	4640	*	*	5875	102
+       135	*	3488	*	*	*	*	8802	0	0	
+
+A 103  2444	*	5762	4443	*	3809	6463	*	3989	4064	5484	*	2103	5828	3215	3431	4298	*	*	5481	103
+       0	*	*	*	*	*	0	8401	0	2215	
+
+A 104  3634	5289	3148	2341	*	5261	3283	5312	4609	5320	*	6670	5619	3767	*	3404	3662	7007	4722	4612	104
+       21	6085	*	0	*	0	*	8401	1045	2215	
+
+N 105  3727	6984	2696	4747	5504	5219	3241	6683	*	4820	4519	1827	6505	3843	5551	3742	6721	6202	*	*	105
+       16	*	6490	*	*	*	*	8574	0	0	
+
+V 106  6319	5522	*	*	3403	*	*	3096	6591	4757	4262	*	*	*	5951	*	5579	3265	1101	4398	106
+       26	7154	6565	0	*	*	0	8538	1000	1040	
+
+G 107  2123	*	6307	*	5715	733	6315	*	*	6344	5710	*	*	6147	6074	4177	*	*	*	6787	107
+       0	*	*	*	*	*	0	8471	0	1210	
+
+W 108  6778	*	*	5802	2315	6984	5720	2712	3334	5150	4891	5094	*	*	6600	5071	3667	3584	3487	3174	108
+       0	*	*	*	*	0	*	8463	0	1210	
+
+N 109  4149	*	3386	5740	*	1949	6602	6105	3563	5145	*	1908	6684	4664	4146	4437	*	*	6121	*	109
+       11	*	7012	*	*	*	*	8406	0	0	
+
+G 110  *	6062	4479	5522	*	288	5075	*	*	*	*	*	6363	6277	5410	6957	*	*	*	6267	110
+       38	6378	6151	1000	1000	0	*	8364	1027	1023	
+
+S 111  4944	*	6833	4247	6610	2958	5225	5908	2737	6989	4351	*	6249	6021	3686	2818	2498	3693	*	6119	111
+       19	6249	*	0	*	0	*	8334	1020	1059	
+
+T 112  6485	*	*	*	5287	*	5761	5480	5989	2426	*	4949	5335	*	6860	4544	839	4653	*	6259	112
+       0	*	*	*	*	*	*	7954	0	0	
+
+F 113  3755	*	*	*	1472	*	4486	2920	5052	2447	4565	4860	*	*	*	5514	*	4493	6210	5742	113
+       205	2918	*	2071	392	*	*	7452	1402	0	
+
+A 114  1573	*	4292	3511	*	1938	3926	*	3342	*	*	*	4998	*	*	3868	*	*	*	*	114
+       0	*	*	0	*	*	*	5846	0	0	
+
+//
+�HHsearch 1.5
+NAME  61affadfde1fab540b7313adbf4ebfda
+FAM   
+FILE  61affadfde1fab540b7313adbf4ebfda
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:03:26 2013
+LENG  231 match states, 231 columns in multiple alignment
+FILT  155 out of 321 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  6.3 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCEEECCCCCCEEECCCCCCCCCCCCCCCCCCCCCCCCCCCHHHHHCCCCEEECCCCCCCCCEEEEECCCCCCEEEEEEECCCCCCCCCHHHHHHHHH
+HCCEEEEEEEEEEEEECCCCCEEEEEEEECCCCCCCCCHHHHCCCCEEEEECCCCCCEEEEECCCCCCEEEECCCCCCCEEECCEEEEEEEECCCCCCCC
+CCCCEEEEEEECCCCCCEEEEECCCHHCCCC
+>ss_conf PSIPRED confidence values
+9958802478765374699977661688779986788743003757146682520786688664898663789868999983377676640289999976
+3026412999999980573446899999699999988978960671899997899738999603177025761379885064457999998287588999
+9995799999823899189834492311579
+>Consensus
+xxxpxxxxpgsxxfxttxxxxsxxxxxxxxxxxxxxxpgxvxnxlxiaxvxsxxxxxxxxxxxxfxxxxxxxxxxxLxxxxvxPxxxxxxxTxlxxlsxx
+fxxWrGslxxxfxfxgsxxxxGklliayxPpgxxxpxtxxxamxxxhvixDlgxxsxxxfxVPxisxtxxxxxxxxxxxxxxxxGxlxvxvxtxLvxpxx
+xxxtvxixvxxsagxDFxxxxpxxpxxxxxx
+>61affadfde1fab540b7313adbf4ebfda
+SPIPVTIREHAGTWYSTLPDSTVPIYGKTPVAPANYMVGEYKDFLEIAQIPTFIGNKMPNAVPYIEASNTAVKTQPLAVYQVTLSCSCLANTFLAALSRN
+FAQYRGSLVYTFVFTGTAMMKGKFLIAYTPPGAGKPTSRDQAMQATYAIWDLGLNSSYSFTVPFISPTHFRMVGTDQANITNVDGWVTVWQLTPLTYPPG
+CPTSAKILTMVSAGKDFSLKMPISPAPWSPQ
+>gi|3002544|gb|AAC12265.1| polyprotein [Clethrionomys glareolus picornavirus]
+---DIAEGPGAlniANVLSTTGGQTVALVGEraFYDPRTAGAAVRCKDLMEIARMPSVYKgERTePGGtNGYF-QWSHTHsPINWVFDGGIHLEDMPN--
+--LNLFSSCYNYWRGSTVLKLTVYASTFNKGRLRMAFFPNHDARY-TEEEAQNAIFMVCDIGLNNTFEMTIPYTWGNWMRPTRGS------VIGWLRIDV
+LNRLTYNSSSPNAVNCILQVKMGNDAKFMVPTTSN-----
+>gi|237769644|dbj|BAH59290.1| capsid protein VP1 [Human echovirus 24]
+----------------------------------------------------------------------------------------------------
+-------------------------------------------------------------------CFVRALDKPDALqVCCRRRLHGCWIcnllvSNK
+VVAPADAQSACYILGFVSACNDFSVRLLKDTPFISQQ
+>gi|38224698|gb|AAR14150.1| polyprotein [Maize chlorotic dwarf virus]
+--------------------------------------------------------------------------TNLMELNIHPTscaiqNGLITQTPLS
+VLAHAFARWRGSLKISIIFGASLFTRGRILAAAVPVAKRKgTMSLDE-ISGYHNvCCLLnGQQTTFELEIPYYSVGQDSFVYRDALFDISAhdgnfmITR
+LHLVILDKLVMSANASSSINFSVTLGPGSDLELKYLAG-------
+>gi|72170202|gb|AAZ66774.1| capsid protein [Norwalk virus]
+------------------------------------------------IIDPWIMNNfVQAPGGEFTVSPRNSPGEVLLNLELGPEINPY----LAHLAR
+MYNGYAGGFEVQVVLAGNAFTAGKVIFAAIPPNFPiDNLSAAQITMCPHVIVDVRQLEPINLPMPDVRNNFFHYNQGSD-----SRLRLIAMLYTPLRAN
+NSgdDVFTVSCRVLTRPSPDFSFNFLVPP------
+>gi|336391070|dbj|BAK40204.1| putative structural protein [Chaetoceros sp. RNA virus 2]
+-----------------------------IDTRVMGLGGEDElAISAIAQRPSFWQ--------QFDWAESATTDTLLASMVVTPALvrtltaspvTEVH
+PTALCFASNPFGAWQGSIKFRFNIVCSEYHRGRLRIVYNPRSNnSGPVAYN---QVYSTTIDISEDRDFEYEVKWADIRAWNVLlGADaaplfptfstva
+nvTAGEAFDNGSLSVYVVNELATPSNTNAAVKVQVWVSGGEDIAFAVPTVN------
+>gi|9632406|ref|NP_049374.1| polyprotein [Sacbrood virus]gi|4416207|gb|AAD20260.1| polyprotein [sacbrood virus]
+------------------------------------YPDEPRTTLDIARIWGLRS--------TF-NWGSGDdHGKELFNTVLDPGLrfydqdYEGQITP
+MEYVTGLYNFWSGPIELRFDFVSNAFHTGTVIISAEYNRS--STNTDECQsHSTYTkTFHLGEQKSVHFTVPYIYDTVVRRNTASAYLpvtdydkvdnvs
+RAQAMGiraeskmRVKVRVVNVLRPVASTTSTIEVLVYMRGGKNYALHGLKQST-----
+>gi|185871627|gb|ACC78151.1| structural protein VP0 [Duck hepatitis A virus]gi|189007748|gb|ACD68184.1| VP0 [Duck hepatitis A virus]
+----------------------------------------------------------------------------------------------YGQTRY
+FRFIRCGFHFRLLVNAPSGSAGALMLVWMPypycrvlSGANqihTNVERRSLMNLPYAILDLRTNTEIDLVVPYVNYRNYVEItTSDT-----TGGAICV
+IVLGKYRHGNGTSNTVDFTLFGEL-LETDLQCPRPFD-----
+>gi|297615108|gb|ADI48872.1| coat protein [Taura syndrome virus]
+-------------------GVPLSLFPNNAIDPTIAVPEGLDEMSieYLAQRPYMLN--------RY-TIRGGDtpdaHGTIIADIPVSPVNFSLYgkvi
+akyRTLfaapVSLAVAMANWWRGNINLNLRFAKTQYHQCRLLVQYLPYGSGvQPI---ESILSQ--IIDISQvdDKGIDIAFPSVYPNKWMRVYDPAKVG
+YTadcAPGRIVISVLNPLISASTVSSNIVMYPWV--------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+S 1    *	*	*	*	*	1332	*	*	*	*	*	*	*	*	*	1078	2952	*	*	*	1
+       0	*	*	*	*	*	*	2969	0	0	
+
+P 2    5380	*	*	*	*	944	3191	3712	*	*	*	*	1887	*	*	*	*	*	*	*	2
+       0	*	*	*	*	*	*	4473	0	0	
+
+I 3    *	*	*	*	3120	*	*	2147	*	1443	*	*	*	*	*	*	*	2218	3711	*	3
+       0	*	*	*	*	*	*	4872	0	0	
+
+P 4    6408	*	3895	*	*	*	*	*	2995	*	5468	*	450	*	5645	*	*	5576	*	*	4
+       40	*	5200	*	*	*	*	4940	0	0	
+
+V 5    6694	*	*	*	5464	*	*	3359	5286	*	6148	*	*	*	*	*	1593	1003	*	*	5
+       0	*	*	*	*	0	*	4913	0	1060	
+
+T 6    2370	6658	*	5184	4978	5200	*	*	5265	3492	3532	*	*	6726	1467	*	3921	4010	*	6705	6
+       0	*	*	*	*	*	*	4940	0	0	
+
+I 7    3860	3763	4637	3026	*	5568	*	4353	*	2828	4502	2643	3419	4873	*	4477	4158	4537	*	7002	7
+       0	*	*	*	*	*	*	5039	0	0	
+
+R 8    4665	*	*	*	4299	3690	5389	3765	4432	3640	*	5489	3159	5228	4021	*	1911	3059	*	*	8
+       0	*	*	*	*	*	*	5039	0	0	
+
+E 9    5188	*	3193	4021	*	*	4299	*	*	*	*	*	752	5902	*	3353	*	4552	*	*	9
+       0	*	*	*	*	*	*	5039	0	0	
+
+H 10   3582	*	*	5722	*	431	3843	*	*	*	*	4073	*	*	*	*	*	*	*	5228	10
+       0	*	*	*	*	*	*	5039	0	0	
+
+A 11   2481	*	5228	*	5232	5097	*	*	6477	*	*	*	5501	6481	*	991	3543	*	*	3252	11
+       144	3391	*	1585	585	*	*	5039	1218	0	
+
+G 12   3441	*	5095	4517	5403	1540	*	*	5423	5987	6280	2933	*	3320	5280	3562	4989	*	*	4553	12
+       0	*	*	*	*	*	*	5110	0	0	
+
+T 13   3265	6511	*	*	*	2814	*	*	*	*	5987	3550	*	943	*	4004	4078	*	*	*	13
+       73	4339	*	613	1530	*	*	5110	1108	0	
+
+W 14   *	*	*	*	317	*	*	*	*	4998	*	*	*	*	*	4474	*	3685	6423	4987	14
+       0	*	*	*	*	*	*	5240	0	0	
+
+Y 15   4714	4902	*	5032	*	3562	*	*	*	1579	2808	6596	*	3898	*	3063	5316	3829	*	4538	15
+       0	*	*	*	*	*	*	5240	0	0	
+
+S 16   *	*	*	*	*	*	*	*	*	*	*	2959	*	*	*	1789	897	4474	*	*	16
+       0	*	*	*	*	*	*	5240	0	0	
+
+T 17   3471	5316	*	*	*	*	*	4474	*	*	6332	*	*	*	*	3183	612	3989	*	*	17
+       0	*	*	*	*	*	*	5240	0	0	
+
+L 18   5461	*	1581	3350	*	*	6780	*	*	3303	*	5095	*	3604	*	3511	3553	2735	*	*	18
+       0	*	*	*	*	*	*	5240	0	0	
+
+P 19   3000	*	1976	4942	*	4247	*	*	*	5486	5461	3351	1639	*	4483	5219	*	*	*	*	19
+       0	*	*	*	*	*	*	5240	0	0	
+
+D 20   2817	*	2380	3663	3329	2291	5365	5814	3722	5343	5353	4861	*	*	5998	5379	*	*	*	4565	20
+       0	*	*	*	*	*	*	5301	0	0	
+
+S 21   4435	4938	4825	4516	*	*	*	*	*	*	*	5287	5104	1225	4645	3427	2731	3715	*	*	21
+       0	*	*	*	*	*	*	5301	0	0	
+
+T 22   3352	*	*	3066	*	3660	*	*	*	*	6029	*	4218	*	*	1107	2879	4864	*	*	22
+       0	*	*	*	*	*	*	5301	0	0	
+
+V 23   2647	*	3418	3663	4340	*	*	3166	*	3723	*	*	2039	6846	*	*	4688	2992	*	6081	23
+       0	*	*	*	*	*	*	5301	0	0	
+
+P 24   3013	3260	*	*	*	5864	*	*	*	*	*	3082	1005	5280	*	3151	*	*	*	*	24
+       0	*	*	*	*	*	*	5301	0	0	
+
+I 25   2091	4017	*	*	*	*	*	2085	*	1595	*	*	*	*	*	*	*	2868	*	*	25
+       0	*	*	*	*	*	*	5301	0	0	
+
+Y 26   3780	5883	*	5280	4228	*	*	4294	*	1936	3797	*	*	*	*	*	*	3155	*	1580	26
+       0	*	*	*	*	*	*	5301	0	0	
+
+G 27   5060	*	*	*	*	1451	*	*	5280	*	*	3637	1077	*	*	*	5379	*	*	*	27
+       164	3221	*	0	*	*	*	5301	1353	0	
+
+K 28   5940	6814	3678	2111	*	3809	4539	4671	3113	4150	4428	3279	5379	4325	4550	*	*	*	4095	6046	28
+       191	3013	*	1000	1000	*	*	5301	1392	0	
+
+T 29   4679	*	*	*	1490	*	*	5605	*	5104	*	5073	4616	*	*	3012	3085	2789	6081	3583	29
+       54	4769	*	0	*	*	*	5301	1098	0	
+
+P 30   4510	*	3163	4665	5104	*	3202	3397	*	*	*	5873	4438	4169	4669	3556	5098	2660	5415	3078	30
+       0	*	*	*	*	*	*	5371	0	0	
+
+V 31   4304	*	2754	6878	*	*	*	4473	4555	5415	*	2600	2439	*	4855	4509	4250	2437	*	5915	31
+       0	*	*	*	*	*	*	5371	0	0	
+
+A 32   5008	*	5160	*	*	*	*	*	*	*	*	*	1420	*	*	3837	1138	*	*	4549	32
+       0	*	*	*	*	*	*	5371	0	0	
+
+P 33   5988	*	6430	4038	*	5339	4057	*	3473	*	*	*	978	4938	3671	3406	5406	*	*	*	33
+       0	*	*	*	*	*	*	5371	0	0	
+
+A 34   4772	6811	*	2863	*	5283	*	5864	4526	6366	6127	5303	2760	6003	2553	4932	2302	3187	*	*	34
+       0	*	*	*	*	*	*	5371	0	0	
+
+N 35   2964	*	2712	*	3911	*	*	1939	5793	5419	3321	4380	5208	5957	5869	3891	3741	*	*	*	35
+       23	*	5957	*	*	*	*	5371	0	0	
+
+Y 36   3947	*	4437	*	2923	2546	2534	*	5036	*	*	4435	4843	6351	5376	6469	6736	*	4862	2249	36
+       0	*	*	*	*	0	*	5469	0	1018	
+
+M 37   5505	4308	*	*	4116	5336	*	1461	*	2051	3611	*	*	*	*	4960	*	3657	*	4407	37
+       0	*	*	*	*	*	*	5556	0	0	
+
+V 38   2922	5131	*	*	*	5260	6429	*	5468	*	*	*	427	*	*	*	*	6570	*	5336	38
+       0	*	*	*	*	*	*	5556	0	0	
+
+G 39   3032	*	5247	4871	*	518	*	*	*	6222	*	*	5417	*	*	4042	*	5551	*	*	39
+       0	*	*	*	*	*	*	5652	0	0	
+
+E 40   *	*	5257	1448	*	5358	*	*	3712	*	6190	*	3915	3860	1901	4693	4746	6147	*	*	40
+       0	*	*	*	*	*	*	5652	0	0	
+
+Y 41   *	5551	5275	*	2497	*	*	2507	*	4969	6321	*	5247	*	*	4746	5581	1253	*	4286	41
+       0	*	*	*	*	*	*	5652	0	0	
+
+K 42   *	*	3370	3815	*	6672	3511	*	3008	4520	*	5194	*	*	3103	3317	1674	6719	*	*	42
+       38	5275	*	0	*	*	*	5652	1035	0	
+
+D 43   5275	*	1398	5358	*	*	5947	*	*	*	*	1103	*	6054	*	4955	4598	*	*	*	43
+       0	*	*	*	*	*	*	5652	0	0	
+
+F 44   *	*	*	5655	3784	*	*	3478	*	1271	2986	*	*	*	*	7050	5247	3723	3054	4405	44
+       0	*	*	*	*	*	*	5652	0	0	
+
+L 45   7284	*	*	*	*	*	*	3192	*	1195	2179	*	*	5351	4382	3618	7050	3941	*	*	45
+       36	5358	*	1000	1000	*	*	5652	1056	0	
+
+E 46   4189	*	2616	1403	*	4745	4198	*	5613	*	5688	*	*	3210	*	3542	5686	5752	*	4631	46
+       0	*	*	*	*	*	*	5798	0	0	
+
+I 47   *	7013	*	*	4342	*	*	1600	*	1847	4588	*	*	*	5873	*	7062	2096	*	4839	47
+       0	*	*	*	*	*	*	5798	0	0	
+
+A 48   655	3315	6304	5795	5686	*	*	7065	*	3555	7167	*	*	*	5873	4682	5949	4552	*	*	48
+       0	*	*	*	*	*	*	5798	0	0	
+
+Q 49   4780	5934	6139	3080	*	4795	4210	4550	3912	*	4351	5810	6454	1694	2719	4548	*	5966	*	5827	49
+       126	3576	*	0	*	*	*	6099	1399	0	
+
+I 50   *	4169	*	*	*	*	5304	1914	4783	4448	5934	*	*	5810	2574	*	6388	1484	*	*	50
+       0	*	*	*	*	*	*	6099	0	0	
+
+P 51   *	*	1894	2724	5798	5535	6437	*	5304	4896	*	*	1359	*	*	*	*	*	3884	6388	51
+       0	*	*	*	*	*	*	6099	0	0	
+
+T 52   5605	4952	*	*	*	3335	*	*	5827	*	*	5934	3257	5181	*	1395	1824	*	*	5701	52
+       0	*	*	*	*	*	*	6099	0	0	
+
+F 53   *	6465	*	*	2103	7519	*	2897	*	2334	3166	*	6392	*	*	*	*	3130	2809	4734	53
+       49	*	4896	*	*	*	*	6099	0	0	
+
+I 54   4559	5224	6295	6370	6341	*	*	2245	*	2050	2441	*	*	*	5381	*	5986	2670	5464	4737	54
+       162	5895	3487	0	*	0	*	6026	1030	1075	
+
+G 55   4246	6726	4758	3061	4689	3815	*	*	3612	6348	5733	4894	2144	4731	3848	3431	3607	*	*	5916	55
+       1773	835	2767	26	5820	*	0	5824	3461	1336	
+
+N 56   4103	*	3423	3999	*	*	*	5839	6784	4359	6278	1082	*	4002	*	4189	4007	4440	*	*	56
+       79	5931	4755	600	1556	*	0	5485	1046	1993	
+
+K 57   6164	*	5148	6076	6274	2863	*	*	5444	6149	*	992	*	5233	3382	4086	6745	*	*	4007	57
+       817	1236	7004	0	*	3618	123	5483	2371	2107	
+
+M 58   4469	*	4652	3658	5192	5552	5717	6892	4101	5401	6752	4192	4190	5025	6006	5494	2060	2369	4129	*	58
+       918	2350	1864	959	1042	5181	40	5489	1779	2047	
+
+P 59   3918	*	3591	4677	*	3516	5395	*	5416	*	*	3218	3137	2672	6655	3592	2468	6695	*	5978	59
+       207	3268	5059	1225	806	3883	101	4765	1251	2868	
+
+N 60   2748	4879	4836	3811	*	4890	5698	6753	3003	4315	6559	3884	*	4204	5429	3505	3263	3229	*	5715	60
+       535	1821	5226	0	*	4290	76	4895	1911	2838	
+
+A 61   5382	*	3603	6537	*	1917	*	6424	6000	*	6964	2983	2133	5082	4463	3632	4620	6501	6298	6889	61
+       646	1552	5638	327	2300	4387	71	4875	1977	2832	
+
+V 62   4821	*	*	6509	5136	4173	*	3818	4286	4287	3173	3781	*	3259	*	4262	3651	2564	5849	3472	62
+       218	2835	*	0	*	957	1045	4863	1407	2801	
+
+P 63   5071	*	2937	2964	*	2392	5482	7123	5796	*	*	3697	2139	*	5128	3060	5573	*	*	*	63
+       20	6180	*	2000	415	1839	473	5826	1016	1899	
+
+Y 64   4159	*	7023	3403	6096	*	*	3705	6360	*	3411	6107	6567	5011	2231	4403	3625	7536	*	2050	64
+       24	5906	*	1614	571	1327	734	6058	1049	1644	
+
+I 65   *	*	*	*	1008	*	6147	4284	*	3595	*	*	*	*	*	6412	5921	4226	5085	2039	65
+       2033	*	404	*	*	*	0	6117	0	1373	
+
+E 66   *	*	2622	3198	*	*	*	*	*	*	*	3901	3722	4240	*	3033	1284	*	*	*	66
+       114	3722	*	1000	1000	0	*	4283	1016	4429	
+
+A 67   4380	7817	6073	5177	*	5473	*	5159	4767	3729	6702	3297	5304	3982	2941	3652	2592	3437	4015	6307	67
+       20	6213	*	0	*	*	*	6395	1049	0	
+
+S 68   4978	*	*	*	4815	5702	*	2440	*	4390	6243	*	4866	*	7436	3619	3320	1962	2579	5453	68
+       0	*	*	*	*	*	*	6395	0	0	
+
+N 69   3942	*	4204	4756	*	4315	*	*	4030	*	7695	3306	1849	4028	5150	2601	3620	6264	*	*	69
+       19	*	6243	*	*	*	*	6395	0	0	
+
+T 70   4046	*	5953	*	*	5109	5560	3796	6147	3490	7644	3023	*	*	4852	2896	3084	2651	3013	*	70
+       138	6832	3604	0	*	0	*	6381	1023	1029	
+
+A 71   3986	5908	4323	6071	*	3608	*	7355	5359	*	*	2579	*	5780	6709	2468	1673	4784	*	5884	71
+       135	3488	*	0	*	0	*	6318	1419	1492	
+
+V 72   3187	*	3353	5373	6624	3931	6149	5714	4327	6241	4885	3872	4170	4276	6687	3358	2330	3627	*	*	72
+       387	2089	*	890	1119	*	*	6395	2096	0	
+
+K 73   2999	*	5339	5858	*	3457	4790	6296	3340	7483	*	4753	2252	2749	6216	3897	3655	5834	*	6029	73
+       72	4541	7398	733	1329	0	*	6397	1168	1000	
+
+T 74   4155	*	2541	5580	*	1472	7469	5294	4328	*	7148	3629	6179	5468	*	3142	3914	7412	*	*	74
+       387	2087	*	1466	648	0	*	6532	2370	1000	
+
+Q 75   5056	*	3577	2557	*	5173	6246	*	3213	6454	*	4977	*	3643	3801	3644	1796	7776	*	*	75
+       53	5764	5801	2000	415	*	*	6695	1075	0	
+
+P 76   4604	*	*	5309	5918	6356	6634	3220	3628	2166	4831	4632	3769	3637	3823	5408	5263	3170	6409	6449	76
+       45	5022	*	1645	556	0	*	6640	1316	1097	
+
+L 77   5771	5586	*	*	*	*	*	1935	*	826	5449	*	*	*	*	6487	*	3302	*	*	77
+       0	*	*	*	*	*	*	6658	0	0	
+
+A 78   2754	7537	*	*	1651	3410	5408	5318	6676	3550	4400	6677	*	7493	*	6564	4320	4148	4588	3859	78
+       0	*	*	*	*	*	*	6658	0	0	
+
+V 79   3276	5037	3495	3660	*	5057	6497	6811	4154	7107	6564	3746	*	3816	4266	2532	3787	3313	*	5009	79
+       15	6627	*	1585	585	*	*	6658	1035	0	
+
+Y 80   5146	5844	*	*	2546	5533	6762	2734	*	2366	3506	5503	*	5289	*	5390	3371	4214	7587	3428	80
+       0	*	*	*	*	*	*	6658	0	0	
+
+Q 81   4121	*	3078	4033	*	5219	5653	5120	4107	*	*	3409	2341	3342	3570	4362	5152	3862	*	6695	81
+       24	5936	*	1000	1000	*	*	6658	1020	0	
+
+V 82   4758	7458	*	*	6286	*	6936	3301	*	1561	5377	*	*	*	*	*	7689	1133	6487	*	82
+       0	*	*	*	*	*	*	6658	0	0	
+
+T 83   3486	*	2648	5266	7744	3070	2999	5850	6286	6010	6498	5073	*	4932	6545	2409	2963	5287	*	7854	83
+       0	*	*	*	*	*	*	6658	0	0	
+
+L 84   *	*	*	*	4099	*	*	4762	*	2574	4820	*	561	*	*	*	6006	6961	*	*	84
+       15	6627	*	1000	1000	*	*	6658	1035	0	
+
+S 85   3202	*	4767	3869	4146	2350	5774	4616	7282	4572	4517	4690	*	4631	4361	2913	3919	4447	*	6676	85
+       549	1660	*	1253	785	*	*	6658	2759	0	
+
+C 86   3426	4391	2729	4812	5994	5809	5807	4301	6331	2958	5274	3056	*	6358	5033	2797	3662	*	7135	6532	86
+       220	2913	6825	2905	207	*	*	6703	1716	0	
+
+S 87   5318	6751	4954	6792	3970	3335	6607	4973	4006	3783	4952	2589	4318	4683	4558	3447	3375	4527	*	5441	87
+       17	6402	*	3707	115	1249	788	6650	1084	1143	
+
+C 88   3994	6292	5034	3889	6142	4920	4998	4970	*	3318	*	4213	1569	5626	4246	4747	5455	3651	*	6360	88
+       20	6148	*	1353	716	808	1221	6716	1082	1061	
+
+L 89   5534	*	*	6072	2528	4494	7307	4479	6557	2438	3913	4598	4901	5197	*	*	3860	3853	4738	2685	89
+       346	*	2228	*	*	*	0	6743	0	1000	
+
+A 90   3590	*	5352	3956	*	6398	3782	*	3593	6094	4291	5384	5050	2027	4164	3146	3646	*	6273	4887	90
+       42	5789	6529	2807	222	*	0	6199	1056	2329	
+
+N 91   5116	6495	5697	6386	6440	3503	4376	4398	4630	4684	*	2373	2935	4202	3550	3987	3025	*	*	7691	91
+       46	4998	*	2620	256	4942	48	6191	1117	2372	
+
+T 92   6567	*	*	*	*	*	*	*	*	*	*	5921	5219	5867	*	3516	270	6378	*	*	92
+       87	4101	*	3281	157	4939	48	6199	1266	2329	
+
+F 93   4599	*	*	*	5625	6092	4304	7409	*	1613	4386	4793	2040	*	*	4951	*	5646	5745	2812	93
+       62	4582	*	2000	415	0	*	6225	1159	2287	
+
+L 94   *	4769	*	*	5493	*	*	3699	*	874	4194	*	6711	6309	*	6408	3195	3053	*	*	94
+       16	6514	*	2000	415	*	*	6812	1033	0	
+
+A 95   2095	6492	6371	5078	*	2014	7680	*	7208	5133	6525	5295	6707	5927	5433	1988	4847	*	5340	5127	95
+       0	*	*	*	*	*	*	6881	0	0	
+
+A 96   3599	*	7592	3183	3648	3587	2493	5475	6989	4144	7206	5239	*	4307	5677	4787	6798	3892	4643	3074	96
+       0	*	*	*	*	*	*	6874	0	0	
+
+L 97   3229	*	*	*	3661	*	*	2248	*	1545	5492	*	*	4992	*	*	6554	2382	*	7721	97
+       0	*	*	*	*	*	*	6874	0	0	
+
+S 98   1827	4056	*	*	5340	5123	*	5804	*	2863	5180	6638	*	*	7271	1711	3641	5677	*	*	98
+       0	*	*	*	*	*	*	6874	0	0	
+
+R 99   3747	*	4339	6116	*	4135	5012	6600	4011	5179	*	2441	*	2406	2730	2954	6554	6546	*	*	99
+       0	*	*	*	*	*	*	6874	0	0	
+
+N 100  4500	6718	*	*	4390	*	5671	5308	5848	2830	1929	4421	3707	5585	*	6505	5649	*	*	1954	100
+       0	*	*	*	*	*	*	6874	0	0	
+
+F 101  6346	*	*	*	828	*	*	*	*	*	*	*	*	*	*	*	*	*	5170	1334	101
+       0	*	*	*	*	*	*	6874	0	0	
+
+A 102  1965	4637	*	6727	*	4048	5831	*	4705	6145	5701	3367	*	4801	5149	2842	2348	4393	*	*	102
+       0	*	*	*	*	*	*	6874	0	0	
+
+Q 103  4381	*	*	5983	3414	2847	3531	*	6457	6098	7490	3508	*	1977	5672	7390	6644	*	6346	2354	103
+       0	*	*	*	*	*	*	6874	0	0	
+
+Y 104  *	*	*	*	5580	*	*	6353	*	*	*	*	*	*	*	*	6443	5704	408	2453	104
+       0	*	*	*	*	*	*	6874	0	0	
+
+R 105  4149	*	*	*	*	4344	4859	*	7252	*	*	*	*	4826	957	2121	4241	5626	*	*	105
+       0	*	*	*	*	*	*	6874	0	0	
+
+G 106  4539	4992	*	*	*	112	*	*	*	*	*	*	*	*	*	*	*	*	*	*	106
+       0	*	*	*	*	*	*	6874	0	0	
+
+S 107  7230	7277	3405	4925	*	2691	*	*	6685	*	*	5203	5448	*	*	796	3861	*	*	*	107
+       0	*	*	*	*	*	*	6874	0	0	
+
+L 108  *	*	*	*	3692	*	*	1595	*	1312	2875	*	*	*	*	*	6718	4534	*	*	108
+       0	*	*	*	*	*	*	6874	0	0	
+
+V 109  6938	4313	4711	2411	*	*	4103	4060	3015	5267	7042	3324	*	3787	3785	5415	3690	3408	*	*	109
+       0	*	*	*	*	*	*	6874	0	0	
+
+Y 110  5989	*	*	*	2041	*	*	2466	*	2480	4449	*	*	*	*	*	*	2633	*	2523	110
+       0	*	*	*	*	*	*	6874	0	0	
+
+T 111  *	*	4697	4174	*	*	3449	*	3497	6426	7390	5320	*	4446	1858	3952	1752	*	*	*	111
+       0	*	*	*	*	*	*	6874	0	0	
+
+F 112  7206	4976	*	*	977	*	*	3397	*	2059	*	*	*	*	*	*	*	3076	*	*	112
+       0	*	*	*	*	*	*	6874	0	0	
+
+V 113  5657	*	5116	4214	6203	*	4118	3175	4479	3261	2434	6500	*	4215	4857	4254	3202	3130	7206	*	113
+       23	5983	*	0	*	*	*	6874	1049	0	
+
+F 114  4501	4800	*	*	1276	*	*	3036	*	3291	*	*	6660	5983	*	6684	5848	2565	*	4031	114
+       16	6491	*	0	*	*	*	6874	1020	0	
+
+T 115  2849	2939	6256	*	4881	4557	*	4776	*	*	6546	4380	6688	*	*	3073	2483	2189	*	5689	115
+       0	*	*	*	*	*	*	6874	0	0	
+
+G 116  2977	3561	*	*	*	969	*	6116	2888	*	*	6443	6840	6491	6987	4888	5788	4763	*	*	116
+       0	*	*	*	*	*	*	6873	0	0	
+
+T 117  6229	*	4799	6491	6764	*	*	*	*	*	*	3208	3403	6256	*	1054	2101	*	*	*	117
+       0	*	*	*	*	*	*	6873	0	0	
+
+A 118  1772	*	5234	5004	3941	3109	*	6619	3664	6674	4573	6038	5593	3410	5307	3636	3871	6764	*	6116	118
+       0	*	*	*	*	*	*	6873	0	0	
+
+M 119  5400	*	7327	*	1695	4992	7383	4719	*	4669	2214	5643	*	3488	4808	5275	*	5182	*	2911	119
+       0	*	*	*	*	*	*	6873	0	0	
+
+M 120  2982	6479	5602	*	4338	*	1647	6810	*	*	8003	4242	*	4351	6256	2956	2614	6952	*	4473	120
+       0	*	*	*	*	*	*	6873	0	0	
+
+K 121  2822	*	*	*	7201	3975	5983	*	3450	8284	*	5002	*	5493	2698	2738	1855	*	*	4513	121
+       0	*	*	*	*	*	*	6873	0	0	
+
+G 122  3717	5498	*	*	6659	267	*	*	*	6135	*	*	*	*	*	5983	6116	5939	*	*	122
+       0	*	*	*	*	*	*	6873	0	0	
+
+K 123  6353	6619	*	*	*	6256	*	*	1152	*	*	*	*	*	1183	5246	5586	*	*	5214	123
+       0	*	*	*	*	*	*	6873	0	0	
+
+F 124  5938	*	*	*	2938	*	*	2860	*	948	4849	*	*	*	*	*	*	3054	*	4571	124
+       13	6761	*	1000	1000	*	*	6873	1015	0	
+
+L 125  5178	*	*	4458	6529	*	*	3320	5448	1165	3524	*	*	5337	2808	*	*	3434	*	*	125
+       0	*	*	*	*	*	*	6873	0	0	
+
+I 126  4446	4717	*	*	4290	7106	*	1465	*	2667	4482	*	*	*	6256	*	7098	1874	*	*	126
+       26	5830	*	1000	1000	*	*	6873	1071	0	
+
+A 127  1149	3448	*	*	5460	4752	*	6256	6684	5705	*	6721	*	5442	*	2690	5296	3111	5214	*	127
+       0	*	*	*	*	*	*	6873	0	0	
+
+Y 128  3662	6256	*	*	2485	*	6491	5082	*	5275	6727	*	*	*	*	*	6551	4301	3643	966	128
+       0	*	*	*	*	*	*	6873	0	0	
+
+T 129  5147	*	3314	5679	5214	6761	4844	3093	*	3766	4992	5790	*	6600	6503	3544	1972	2633	*	5846	129
+       0	*	*	*	*	*	*	6873	0	0	
+
+P 130  6761	*	6256	*	*	*	*	*	*	*	6870	*	77	*	*	6792	*	*	*	6392	130
+       68	6353	4877	2807	222	*	*	6873	1038	0	
+
+P 131  6037	*	5517	6619	4541	3512	6592	6813	5149	5432	6292	3298	953	5613	6477	6173	6081	4656	*	5604	131
+       46	5002	*	1506	626	2399	303	6853	1206	1192	
+
+G 132  3815	6583	5753	6672	*	875	5217	5677	*	5314	*	3756	6464	5482	4881	3716	*	4673	*	5942	132
+       113	3853	7286	700	1379	*	0	6856	1411	1146	
+
+A 133  2633	*	4441	4713	4023	2351	*	3878	4784	5180	*	5460	5512	4990	6630	3450	3705	3286	*	6915	133
+       145	4021	4876	475	1835	782	1257	6853	1416	1238	
+
+G 134  3576	*	2830	5006	*	3057	6015	6723	6175	4992	5245	3428	3682	4832	3724	3124	3515	5211	*	5889	134
+       442	2410	3719	1297	754	1037	964	6854	2253	1327	
+
+K 135  2856	5969	3582	3596	6530	3851	4794	5437	4370	3311	6726	4270	3243	4318	5045	3702	4653	5192	*	*	135
+       149	5477	3725	639	1482	109	3778	6740	1084	1594	
+
+P 136  4856	*	5458	4410	6861	5531	6753	7107	4741	5836	*	4265	857	5162	4737	5537	4737	5510	*	4522	136
+       195	6478	3120	2000	415	2369	310	6777	1012	1526	
+
+T 137  3825	*	4598	4244	6554	3906	6433	4422	3055	3256	6430	6332	5730	4358	5790	4433	1963	4004	*	*	137
+       90	6545	4323	2304	326	163	3229	6536	1113	2147	
+
+S 138  5359	*	4210	5102	*	4588	*	*	5427	4750	*	2812	*	6640	6630	2309	1259	6899	*	*	138
+       69	5915	5037	1585	585	1870	461	6792	1049	1388	
+
+R 139  3786	*	*	6604	4603	6596	*	3988	5313	2474	3929	*	4716	5752	1827	6699	4211	3082	*	6421	139
+       103	5792	4306	1734	516	1675	542	6766	1072	1457	
+
+D 140  3757	*	2342	2448	7115	4780	*	*	2775	6531	7624	4853	5347	4623	4110	3359	4143	6725	*	5730	140
+       86	4855	5412	966	1035	495	1783	6704	1154	1602	
+
+Q 141  4022	*	3086	1801	5309	5017	*	*	5149	5645	*	4251	4977	2183	6377	4246	4054	*	*	*	141
+       189	5746	3264	2959	199	1245	791	6785	1090	1290	
+
+A 142  783	4912	6508	*	6626	5225	*	5135	*	3740	*	5660	3984	*	*	3577	5250	5038	*	6505	142
+       19	6281	*	0	*	1116	892	6734	1020	1793	
+
+M 143  4916	*	5150	*	6433	3815	4447	4859	6605	4523	1221	5396	*	4278	5174	4134	3191	6205	6629	*	143
+       58	4654	*	1403	685	194	2991	6846	1218	1414	
+
+Q 144  3176	6876	*	5751	*	6014	4105	*	*	2110	5010	3138	*	2947	4598	2815	4625	5158	*	5016	144
+       130	3532	*	1809	485	*	0	6867	1525	1008	
+
+A 145  3623	3519	*	*	3400	1352	*	*	*	4045	6807	4534	*	6680	6628	3357	5805	4392	*	4333	145
+       0	*	*	*	*	*	0	6867	0	1008	
+
+T 146  4794	*	*	*	4679	*	5654	4117	8122	4585	*	5860	2402	6316	*	6708	1753	4342	*	2135	146
+       18	*	6316	*	*	0	*	6867	0	1008	
+
+Y 147  *	5685	*	*	4043	5902	1133	*	4173	*	*	4364	6390	*	5511	4172	4115	*	*	2351	147
+       53	4786	*	522	1720	*	0	6850	1182	1056	
+
+A 148  2758	*	7310	6016	7054	*	*	3815	4751	5020	4982	5707	*	*	5546	4059	3419	1235	*	4904	148
+       107	3805	*	0	*	0	*	6850	1412	1056	
+
+I 149  *	6680	*	3977	5418	*	5983	1241	*	3515	5792	*	*	*	*	*	4337	1847	*	4980	149
+       0	*	*	*	*	*	*	6874	0	0	
+
+W 150  7251	3791	*	*	3629	5849	*	3479	*	3023	3915	*	*	*	*	*	*	3157	1245	6670	150
+       0	*	*	*	*	*	*	6874	0	0	
+
+D 151  *	*	165	*	*	*	6395	*	*	5675	*	4114	*	*	*	5726	*	*	*	*	151
+       0	*	*	*	*	*	*	6874	0	0	
+
+L 152  3291	*	*	*	2944	*	*	2336	*	1557	*	*	6121	*	*	*	4140	2893	*	5369	152
+       64	5247	5849	0	*	*	*	6874	1111	0	
+
+G 153  4579	*	*	*	*	1228	*	*	5022	*	*	3562	*	4374	2123	3584	4193	*	*	*	153
+       31	5551	*	0	*	0	*	6835	1081	1127	
+
+L 154  6097	5849	3731	2529	*	5332	*	4617	*	1580	*	4662	*	3927	*	4513	2894	4803	*	*	154
+       18	6366	*	1000	1000	*	*	6874	1056	0	
+
+N 155  4077	*	3672	5679	*	5340	6689	*	4854	3904	*	2560	*	1605	6669	3276	3703	5735	*	*	155
+       25	*	5849	*	*	*	*	6874	0	0	
+
+S 156  6524	*	3514	3710	8479	*	*	*	4767	7034	*	4634	*	5799	4321	1001	2855	5913	*	6048	156
+       0	*	*	0	*	0	*	6837	1127	1127	
+
+S 157  4990	5282	3582	2686	*	5353	*	*	5360	*	*	*	2929	5615	*	1727	2479	5499	*	*	157
+       0	*	*	*	*	*	*	6869	0	0	
+
+Y 158  4575	3231	*	*	1961	5118	*	2745	*	3381	5994	*	*	*	5880	*	6717	2084	7267	4788	158
+       0	*	*	*	*	*	*	6869	0	0	
+
+S 159  7041	7222	3679	2372	6546	*	5949	5205	5539	7103	*	4790	*	6878	4659	2874	1649	3652	*	6301	159
+       0	*	*	*	*	*	*	6869	0	0	
+
+F 160  *	*	*	*	1210	*	*	3178	*	1793	4099	*	*	*	*	*	*	3339	*	6444	160
+       0	*	*	*	*	*	*	6869	0	0	
+
+T 161  4788	4549	5846	3759	*	*	*	4648	6476	*	7201	4200	4033	*	3403	6581	1767	2019	*	6529	161
+       0	*	*	*	*	*	*	6869	0	0	
+
+V 162  5253	5904	*	*	6305	6899	*	1671	*	3179	4633	*	*	*	*	*	*	1085	*	*	162
+       0	*	*	*	*	*	*	6869	0	0	
+
+P 163  6230	*	6601	5270	*	6402	6929	*	6444	6878	*	5597	206	6899	*	*	*	*	*	6084	163
+       0	*	*	*	*	*	*	6869	0	0	
+
+F 164  *	*	2751	*	2257	*	*	*	*	*	*	*	6899	*	8494	6305	*	*	2126	1361	164
+       0	*	*	*	*	*	*	6869	0	0	
+
+I 165  4411	4836	*	*	6542	6984	6619	1262	*	5634	4469	4656	*	6476	*	5959	3576	2022	*	6643	165
+       0	*	*	*	*	*	*	6869	0	0	
+
+S 166  3225	7806	6444	*	5609	5542	6601	*	7062	*	*	4631	*	4330	2907	915	6396	6828	5811	5320	166
+       0	*	*	*	*	*	*	6869	0	0	
+
+P 167  2612	*	3892	6608	*	4154	8097	5073	*	7085	*	2663	3420	3690	3975	3227	3490	4291	*	5466	167
+       0	*	*	*	*	*	*	6869	0	0	
+
+T 168  3836	7570	5897	7246	6687	3971	6103	4797	6963	6706	*	4947	*	5695	3508	2860	1454	3090	*	*	168
+       0	*	*	*	*	*	*	6877	0	0	
+
+H 169  4413	7016	2820	3683	4123	*	3205	*	5372	4276	4462	3846	2563	4757	7017	5340	7187	5677	4443	4099	169
+       24	*	5896	*	*	*	*	6877	0	0	
+
+F 170  6219	7062	5623	*	1978	*	6906	*	6000	*	4331	*	*	*	4949	*	*	5800	2200	1461	170
+       51	5098	7456	1585	585	*	0	6844	1123	1127	
+
+R 171  4051	6046	*	5877	*	*	2723	*	2875	3141	5185	6417	*	*	1445	4149	6700	4880	*	*	171
+       29	6282	7126	703	1374	0	*	6844	1208	1174	
+
+M 172  4546	*	6586	3995	3676	5939	6484	6253	4419	4590	5183	4714	3420	4194	2789	3716	4232	4434	*	2806	172
+       109	4337	5437	2143	370	*	0	6875	1266	1000	
+
+V 173  5558	4699	*	*	6836	4982	7591	2986	*	4599	4756	3811	*	6363	7045	4249	1452	2465	*	*	173
+       141	4189	4707	2210	351	820	1205	6863	1437	1164	
+
+G 174  4004	5452	3307	6220	6440	3108	4118	5514	4127	6615	5397	3460	4827	4254	4177	3450	3446	4807	*	4338	174
+       94	4194	6836	2534	273	2132	374	6752	1301	1426	
+
+T 175  3447	5734	2865	5938	*	3107	8260	5441	4698	5022	5926	5273	3660	5287	3404	3060	3501	3998	*	6393	175
+       175	3393	5700	2229	346	1711	526	6776	1655	1416	
+
+D 176  3601	*	1457	3889	*	4063	5451	6590	*	5472	*	4098	4110	5472	5278	2984	3962	7693	*	6606	176
+       243	3432	4008	2811	222	2386	306	6751	1561	1463	
+
+Q 177  2897	*	3493	2715	*	3623	*	6758	8273	4776	*	2927	5389	5060	5326	3495	2960	4207	*	6283	177
+       830	3572	1501	1836	474	3210	165	6660	1456	1839	
+
+A 178  3061	*	4358	6727	6141	4185	*	*	3800	4249	*	3724	1836	6499	6101	3744	4109	6955	6301	3415	178
+       235	2903	5911	1903	449	4029	91	6111	1443	3672	
+
+N 179  4801	*	4000	4384	4202	4299	*	*	4195	3264	*	3876	5823	5527	5993	2186	2861	4929	4232	5428	179
+       155	3296	*	3544	129	4415	69	6099	1437	3585	
+
+I 180  3422	*	4202	2984	6011	3890	*	2784	*	5205	5647	6456	4357	4111	5282	3232	2977	3764	*	*	180
+       44	5044	*	1721	521	1417	677	6149	1150	3481	
+
+T 181  3898	5428	5526	*	3502	5429	7786	4139	*	2665	5379	4728	6614	*	*	5718	3440	4389	*	1614	181
+       122	4120	5423	2532	274	5688	28	6258	1227	2628	
+
+N 182  4040	7195	4940	6240	4361	6065	5704	6371	6196	5169	5887	2658	*	5236	*	2219	2819	4643	6351	2839	182
+       133	3503	*	1048	953	317	2341	6171	1473	2639	
+
+V 183  1801	6429	3676	4827	5260	5694	7062	8114	5829	6716	*	4943	3576	4730	6244	2774	4724	3503	*	3946	183
+       153	3313	*	869	1144	2912	206	6748	1613	1310	
+
+D 184  3375	5098	4119	5854	7248	4274	6748	4185	5964	4014	6277	2939	4222	4280	4861	3750	3064	3697	*	4465	184
+       30	5613	*	988	1012	0	*	6757	1144	1263	
+
+G 185  4228	7204	6817	6021	*	412	*	*	*	7484	4544	*	6163	*	5503	4686	4885	7137	*	*	185
+       33	6373	6530	2807	222	*	*	6877	1033	0	
+
+W 186  5659	7370	*	6096	4168	*	5268	4726	4599	5622	6007	6970	*	6546	2699	3618	3315	4346	2738	2256	186
+       0	*	*	0	*	0	*	6868	1024	1024	
+
+V 187  *	*	*	*	4115	*	7565	2374	*	1134	*	*	*	*	*	*	*	1931	5244	*	187
+       13	6814	*	2322	322	*	*	6876	1003	0	
+
+T 188  3654	4424	5837	5209	6695	3664	4622	5440	6374	7445	5621	5309	*	3976	5248	2790	2103	3095	*	5079	188
+       0	*	*	*	*	*	*	6876	0	0	
+
+V 189  4261	3121	*	*	4258	5581	*	2113	*	2770	3623	*	*	*	*	*	*	1816	5893	*	189
+       11	6981	*	2322	322	*	*	6876	1000	0	
+
+W 190  5493	*	4851	5373	3093	6705	5425	5199	5458	4656	4053	6907	*	*	3606	5224	*	5109	1728	2548	190
+       0	*	*	*	*	*	*	6876	0	0	
+
+Q 191  4509	6917	*	*	6799	*	6998	4294	6501	3717	5471	6020	5185	3596	*	*	*	1119	*	2441	191
+       8	7565	*	2322	322	*	*	6876	1009	0	
+
+L 192  6058	*	6304	6519	6705	6020	6751	4654	*	1712	4856	6611	*	2184	5309	7565	*	3200	5618	2666	192
+       22	*	6020	*	*	*	*	6876	0	0	
+
+T 193  6128	*	4949	6040	*	4647	5872	*	*	*	*	1460	*	4104	*	4712	1280	6682	*	*	193
+       21	*	6139	*	*	0	*	6826	0	1049	
+
+P 194  3682	*	3873	3902	*	5634	7316	6359	4095	*	*	3031	1392	5078	3730	4632	6078	5244	*	*	194
+       92	*	4016	*	*	*	0	6860	0	1038	
+
+L 195  *	*	*	*	3981	*	*	3624	*	423	5531	*	*	6628	*	*	*	4347	*	5121	195
+       0	*	*	*	*	*	0	6784	0	1486	
+
+T 196  4448	*	*	*	*	*	*	2855	4807	5983	5746	5696	*	5512	3132	4651	2375	1482	*	*	196
+       12	*	6943	*	*	*	0	6784	0	1486	
+
+Y 197  2956	5628	*	8941	4848	5295	5757	5528	6341	4010	4981	3229	4179	6507	6841	2717	3463	2710	*	3938	197
+       11	*	6986	*	*	4398	70	6788	0	1546	
+
+P 198  4583	*	5824	*	*	4722	*	5181	*	5159	4839	3379	874	*	*	3559	4032	5352	*	*	198
+       0	*	*	*	*	2861	214	6776	0	1569	
+
+P 199  3087	*	4153	4767	3603	4368	6864	6036	6881	4208	*	4927	2504	5681	6531	2026	4130	6747	*	5586	199
+       252	2641	*	268	2562	496	1780	6784	1938	1486	
+
+G 200  4180	*	3647	3873	6539	2510	*	6644	*	6984	*	2838	5369	4852	5855	2594	2573	4541	*	*	200
+       164	3220	*	899	1109	*	0	6829	1640	1108	
+
+C 201  2186	5502	3752	6899	5559	5364	4950	4982	7291	5454	*	5122	*	*	*	3027	2480	2278	*	*	201
+       37	5999	6699	0	*	1267	774	6820	1075	1162	
+
+P 202  3118	*	4505	6238	*	4433	7053	5982	7335	6668	*	4896	1627	6023	*	2214	3354	4166	*	*	202
+       15	*	6559	0	*	0	*	6846	1003	1135	
+
+T 203  4026	*	3475	5775	4152	6835	7662	6635	5271	6800	*	2709	2687	4044	8043	2339	2947	6962	*	7053	203
+       11	*	6988	*	*	0	*	6865	0	1012	
+
+S 204  3925	*	3692	4477	*	4276	5257	6397	5242	7674	*	4569	*	4304	6841	1954	1787	4971	*	6681	204
+       19	*	6234	*	*	0	*	6872	0	1008	
+
+A 205  2411	3354	7280	6704	5285	6411	*	2210	*	6037	5061	*	6078	5377	7947	4203	6160	1795	*	*	205
+       14	*	6704	*	*	0	*	6871	0	1098	
+
+K 206  4073	7252	2415	3085	*	5241	5475	5037	5337	6030	6246	4154	4308	4359	4986	3509	3651	4895	4596	3905	206
+       0	*	*	*	*	0	*	6866	0	1019	
+
+I 207  7806	3918	*	*	4498	4956	*	1446	*	3269	3847	*	*	*	*	*	8101	1816	6058	6620	207
+       9	7354	*	0	*	*	*	6876	1000	0	
+
+L 208  4946	6620	*	*	6020	*	7296	3228	7062	1881	7242	3450	*	4493	3869	5023	2751	2998	*	4854	208
+       0	*	*	*	*	*	*	6876	0	0	
+
+T 209  3384	3265	*	*	6189	5031	*	3570	*	3386	5636	*	5343	*	*	6304	4467	1111	6597	*	209
+       6	*	7806	*	*	*	*	6876	0	0	
+
+M 210  7288	4996	5308	2592	2174	*	6826	*	6628	2420	4181	*	*	5714	*	4085	4541	6433	4252	3270	210
+       13	*	6768	*	*	*	0	6879	0	1000	
+
+V 211  3290	5502	*	*	5243	4220	*	3519	5915	3033	4456	*	*	6593	*	4377	2941	1668	6145	7273	211
+       77	*	4270	*	*	0	*	6870	0	1041	
+
+S 212  3034	4853	*	5534	6570	4938	5327	*	3446	*	*	5403	*	*	2274	1248	*	*	*	6595	212
+       32	*	5499	*	*	0	*	6816	0	1322	
+
+A 213  1092	*	*	*	*	2237	*	*	*	4406	6616	*	2339	*	*	6747	*	5357	5054	*	213
+       38	*	5282	*	*	0	*	6837	0	1079	
+
+G 214  3135	3052	6041	*	6755	965	*	6797	5790	5190	7450	*	6627	4481	7883	3307	*	6893	*	*	214
+       25	*	5844	*	*	0	*	6791	0	1113	
+
+K 215  4533	*	2440	3495	*	5827	*	6696	3081	5276	*	3626	1985	6389	4359	3560	6426	5511	*	*	215
+       0	*	*	*	*	0	*	6817	0	1052	
+
+D 216  *	*	431	6248	*	6390	*	*	*	*	*	2460	*	*	*	4580	6669	*	*	*	216
+       21	6086	*	0	*	*	*	6834	1051	0	
+
+F 217  4349	*	*	*	579	*	*	4372	*	2833	5501	*	*	*	*	*	6248	5695	6794	5103	217
+       0	*	*	*	*	*	*	6834	0	0	
+
+S 218  4689	5108	3622	1707	*	5650	6542	*	4404	*	*	4757	*	3267	5038	2351	4208	4459	*	*	218
+       0	*	*	*	*	*	*	6834	0	0	
+
+L 219  6109	6269	*	*	1467	*	*	*	*	1677	4380	*	*	*	*	*	*	2168	*	5188	219
+       0	*	*	*	*	*	*	6834	0	0	
+
+K 220  2767	4437	*	7122	4310	6325	5042	6187	4392	5350	5068	6004	*	4894	1323	4594	4204	5230	*	5678	220
+       0	*	*	*	*	*	*	6834	0	0	
+
+M 221  4023	3856	*	6481	3642	3860	7186	4064	*	1926	2729	7619	*	5233	*	5247	*	2982	*	4504	221
+       0	*	*	*	*	*	*	6783	0	0	
+
+P 222  5289	6111	*	*	7212	*	*	5086	*	1770	4028	*	1009	5717	4223	*	*	*	*	*	222
+       0	*	*	*	*	*	*	6783	0	0	
+
+I 223  4268	5550	6510	*	*	*	6260	2630	2512	5128	7170	5204	*	4921	2092	4286	3648	3257	*	*	223
+       19	*	6238	*	*	*	*	6763	0	0	
+
+S 224  3924	5732	1803	4353	*	4097	5586	*	*	7156	6891	3457	2630	3732	*	3663	4482	4901	*	*	224
+       24	5945	*	0	*	*	0	6449	1031	1033	
+
+P 225  *	6803	*	5280	5770	5061	*	6041	*	6796	*	4616	1016	*	4574	3282	2232	*	*	*	225
+       17	6416	*	1000	1000	0	*	6282	1007	1115	
+
+A 226  3420	*	3468	4549	*	2956	6573	6186	4663	5924	*	3484	2555	4830	4072	4162	3296	4722	*	6080	226
+       72	*	4358	*	*	*	*	6038	0	0	
+
+P 227  5196	*	3752	5435	2567	*	5100	5886	4604	2329	3905	*	3978	3511	5525	7102	4571	*	4157	3732	227
+       31	5554	*	0	*	0	*	5567	1016	1213	
+
+W 228  4358	*	*	*	3427	*	4477	2018	5559	4914	3476	*	*	2470	4094	*	4688	5914	4249	3733	228
+       73	4340	*	0	*	*	*	4738	1106	0	
+
+S 229  3555	*	6793	3510	*	4227	6500	4544	3750	4856	6494	4536	*	3463	6816	2244	2725	3544	*	*	229
+       0	*	*	*	*	*	*	4418	0	0	
+
+P 230  *	*	*	5387	4663	*	*	*	*	5169	*	4897	3214	382	*	*	*	*	*	*	230
+       0	*	*	*	*	*	*	3578	0	0	
+
+Q 231  4007	*	*	4037	*	2428	2737	*	2786	*	*	*	*	1591	*	3965	*	*	*	*	231
+       0	*	*	0	*	*	*	2919	0	0	
+
+//
+�HHsearch 1.5
+NAME  61e58fd4d97efb70b78410488ce6cac8
+FAM   
+FILE  61e58fd4d97efb70b78410488ce6cac8
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:20:36 2013
+LENG  179 match states, 179 columns in multiple alignment
+FILT  109 out of 1185 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.3 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCEEEEEEEECCCCCCCHHHHHHHHHHHHHHHHCCCCCCEEEEEEECCCEEEEECCCCCCCHHHHHHHHHHHHCCCCCCHHHHHHHHHHHHHHHHHCCCC
+CCCCEEEEEECCCCCCCCCCHHHHCCCEEEEEEECCCCCCCCCHHHHHHHHCCCCCCEEEEECCHHHHHHHHHHHHHHC
+>ss_conf PSIPRED confidence values
+9747999997988888069999999999999963878848999997893369864776677899999998754158987599999999999865540578
+8996299998579989970569888988999997886434248999999966999854998099999999999999619
+>Consensus
+xxxdivfllDxSxSmxxxxxxxxxxxxxxxxxxlxxxxxxvxivxfxxxxxxxxxxxxxxxxxxxxxxixxlxxxxgxtxxxxalxxaxxxxxxxxxxxr
+xxxxxxvilxTDGxxxxxxxxxxxxxixvxxigigxxxxxxxxxxxlxxiaxxxxxxxxxxxxxxxxLxxxxxxixxxi
+>61e58fd4d97efb70b78410488ce6cac8
+GNVDLVFLFDGSMSLQPDEFQKILDFMKDVMKKCSNTSYQFAAVQFSTSYKTEFDFSDYVKRKDPDALLKHVKHMLLLTNTFGAINYVATEVFREELGAR
+PDATKVLIIITDGEATDSGNIDAAKDIIRYIIGIGKHFQTKESQETLHKFASKPASEFVKILDTFEKLKDLCTELQKKI
+>gi|260837234|ref|XP_002613610.1| hypothetical protein BRAFLDRAFT_127098 [Branchiostoma floridae]gi|229298996|gb|EEN69619.1| hypothetical protein BRAFLDRAFT_127098 [Branchiostoma floridae]
+-----LYPYGSySGGYPPSNMEKTMG-PGNYRVPLvaGGETITIGSIKKTEETSPseslsaekQAVVAAQDTRECTMSSITiySEERLRGTKKTYSGNGW
+LPRDPS-----WVVDSAGPAWVDSNGVTWEDV-------VTVDNVQSGDQ------RQVFGGFQGKARYWKLVITQTYTGWQPYVRE-----
+>gi|317505805|ref|ZP_07963650.1| von Willebrand factor type A domain-containing protein [Segniliparus rugosus ATCC BAA-974]gi|316255887|gb|EFV15112.1| von Willebrand factor type A domain-containing protein [Segniliparus rugosus ATCC BAA-974]
+--ATVILLLDISESMRatdvkPSRVEAARAAAIKFVDGM-APTVQLGVVTFAGNAQPLVRPSTD--HETAKKVIDQMIrpdKLEKQTATGEGIYTALQQI
+EtiAGalGGKNHA-PPARIVLVSDGKETVpdDLNAprgaYaaartaKEKHVPVCTVAFGTKAGkitldnqvdeVPVDLESLKKISDLSNSPgnscRFFPA
+ESQGELAQIYQSLNEDI
+>gi|224080450|ref|XP_002190370.1| PREDICTED: von Willebrand factor A domain containing 5B1 [Taeniopygia guttata]
+---EFIFLVDRSRSMSGVNISHAKDALLVILKSLMPA-CLFNVIGFGSTFKTLFPVSQAYCEESLLMACQSIRRIRadmGSINLLSPLKWVTRQPL----
+--HRGHPRLLFLLTGGAISNTGKVLEllrttPCSTRCYSFGIGPN----ACRRLVRGLAAVSRGVSEFLAEGERLQPKMIRSLKKAM
+>gi|327441394|dbj|BAK17759.1| uncharacterized protein containing a von Willebrand factor type A domain [Solibacillus silvestris StLB046]
+QGRDIVFVIQDTPDIQSHDPDQSR--VTEVLSLMDDasSKDRFGFVGFNKEVTKELALTNNI--VQAKSKLNEFGKnisPYMANDLSKGLEKAVDELTKK
+ST----SNDKVIVIMTVGNSiYNEVSKklaakAYEEDITIHTISFGDPL-YA-DAPFLTEIAKLTGGNYT-HSPNAAFLKDVLSKLS---
+>gi|156404021|ref|XP_001640206.1| predicted protein [Nematostella vectensis]gi|156227339|gb|EDO48143.1| predicted protein [Nematostella vectensis]
+-QIDIVFVLSASSMKSSTTFSLMQNCILKIGSKFGVYTFHYSVILYGSSSVKKFDFNtAFPYREALIEESNNLVKENGSSAITEALSFARTVLNDASA--
+RSNVRRGVAVIFDKATGKTVqqlqsaaRPLHDEGIIVVASGVGPE----VTKEEARAMTSRR--NDATHVNDTYQPGPLGDHIVRRI
+>gi|288918847|ref|ZP_06413192.1| conserved hypothetical protein [Frankia sp. EUN1f]gi|288349809|gb|EFC84041.1| conserved hypothetical protein [Frankia sp. EUN1f]
+----LLLVIDHSTSMA-ETWAggtmskadqlalAVNRLLGNAVLLCSrgddrvYDYFEVGILGYGRGVAPVLYgssvsrpllpiseVALNP--NRVDHVL
+RKVPDgagglvevqtpipawvdpvADGWTPMVEALRVAAWVVDGWCRTHTASFPPIVVNVTDGQSTDGDPRAAAAQVRAAGTADGNAL-------LFNAH
+LSATMRRAVTFPRDRADLPGEFAQVLFDM
+>gi|237801322|ref|ZP_04589783.1| magnesium chelatase subunit ChlD [Pseudomonas syringae pv. oryzae str. 1_6]gi|331024181|gb|EGI04238.1| magnesium chelatase subunit ChlD [Pseudomonas syringae pv. oryzae str. 1_6]
+------VIVDASASTrRHQALSQAKGLLSQVFDDAYRRRARLALLTASGAvPRWQHQGLKAS-----AALVPWLDGLGagGGTPLTAALEQA-RAWLEQR
+QKRYPAEQHRVLVMTDGRIKQLPVLSAFTCASLLI------------------------------------------------
+>gi|268576625|ref|XP_002643292.1| Hypothetical protein CBG08168 [Caenorhabditis briggsae]gi|187032944|emb|CAP28053.1| hypothetical protein CBG_08168 [Caenorhabditis briggsae AF16]
+-KMDIIIAFDSSDTISQEMYYSTIGAVKKIGNSItiGQDKSRIIVGTYDATSHFNGNLNTIDSFDRYQEKIADLFSLGYTGINGNNVQSVLDFIIVENST
+apLRQaPVRKLLILLSSqGWDQGNFvegkeqgfqdPTNSAQslqkiGLETFAIGLGNT----ANMSQLSAIAKCST-----KVMSESALYNVVFQIISNI
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+G 1    *	*	*	*	*	885	4104	*	*	4202	*	*	*	2017	4391	*	4285	*	*	*	1
+       0	*	*	*	*	*	*	6626	0	0	
+
+N 2    5941	*	4547	5108	5047	5922	4457	*	2865	5816	*	3989	1543	3616	4162	4096	4468	5839	*	*	2
+       22	*	6074	*	*	*	*	8798	0	0	
+
+V 3    2394	*	*	*	4424	*	6272	3643	5077	2408	3870	6415	4837	6512	4006	4371	4264	2943	*	4896	3
+       0	*	*	*	*	*	0	9217	0	1006	
+
+D 4    6388	*	748	3560	*	5218	4365	6559	6032	5686	6541	3128	6526	*	6636	*	4607	*	*	*	4
+       20	*	6200	*	*	*	0	9221	0	1006	
+
+L 5    5517	*	*	6303	6600	*	6666	1446	*	2169	6879	*	*	*	*	*	4749	1729	*	6849	5
+       0	*	*	*	*	838	1183	9330	0	1254	
+
+V 6    3320	5113	*	*	4807	5617	*	2720	*	3230	4156	6566	*	*	*	5175	4458	1634	6519	3581	6
+       0	*	*	*	*	*	0	9461	0	1006	
+
+F 7    5706	*	*	*	1054	*	*	2663	*	2173	7074	*	*	*	*	*	6570	3779	*	5120	7
+       18	6361	*	0	*	*	0	9526	1049	1006	
+
+L 8    3371	4638	*	*	*	6503	*	2606	*	1569	6610	6665	5723	*	*	6613	6319	1843	*	6592	8
+       0	*	*	0	*	866	1148	9483	1049	1243	
+
+F 9    6014	6700	*	*	5088	*	*	2238	*	1441	4677	*	6413	*	*	*	*	1804	*	5156	9
+       12	*	6956	*	*	*	0	9526	0	1006	
+
+D 10   *	*	241	4256	*	5731	5190	*	6333	*	*	*	6510	6661	*	5488	*	*	*	*	10
+       0	*	*	0	*	0	*	9512	1011	1207	
+
+G 11   2993	6766	4094	5174	6657	3690	6416	4113	*	5201	6891	4160	*	5088	4550	2701	2621	2980	*	6025	11
+       26	5781	*	0	*	*	*	9537	1190	0	
+
+S 12   6857	6517	6528	*	*	*	*	*	*	*	*	6658	*	*	*	224	3272	*	*	*	12
+       0	*	*	*	*	*	*	9537	0	0	
+
+M 13   3251	*	3684	3905	*	1782	5718	6589	5251	*	6869	4463	6696	3908	4685	2784	4071	6658	*	5613	13
+       0	*	*	*	*	*	*	9537	0	0	
+
+S 14   6546	*	4614	*	6654	3689	6760	*	5613	*	5649	4676	*	6517	6570	503	5629	6677	*	6025	14
+       27	6962	6589	0	*	*	*	9537	1011	0	
+
+L 15   4385	*	*	*	6968	*	*	2706	6379	3743	1152	6410	*	5733	*	*	5168	2580	6663	5748	15
+       66	4884	6532	3128	175	1035	966	9509	1505	1221	
+
+Q 16   3172	6914	6776	4082	6620	2670	6781	6789	3761	5197	*	4165	4372	3453	3940	2879	3172	6731	*	6730	16
+       318	3830	2974	2258	338	983	1018	9513	2229	1236	
+
+P 17   3705	*	4115	2848	5357	2394	5562	*	4345	5113	*	4000	3332	5417	4672	3025	5748	4832	*	6396	17
+       160	4824	3840	2094	385	265	2577	9311	1381	3209	
+
+D 18   3277	*	3214	2713	6601	4891	4993	*	3533	6114	6693	3434	5709	4579	4926	2683	4305	4700	*	5672	18
+       75	5678	5017	2030	405	582	1590	9441	1163	2371	
+
+E 19   3905	*	3134	3498	6902	3401	6679	6873	3603	6491	5511	2904	4975	5522	3424	3298	4639	5568	6673	4599	19
+       57	4695	*	1317	740	626	1506	9467	1535	1901	
+
+F 20   5634	*	*	4674	1844	6753	*	3240	6693	2738	4168	*	4241	6747	6546	6188	*	4456	2900	3927	20
+       0	*	*	1585	585	*	0	9513	1058	1207	
+
+Q 21   3557	*	3353	2661	*	4717	5242	6868	4403	4834	5812	3401	5201	3365	3924	2738	5156	6353	*	6513	21
+       95	3973	*	2632	254	*	0	9543	2080	1207	
+
+K 22   3419	5737	3270	4319	6833	5577	4768	5185	3180	3118	4749	4625	*	3615	3369	3735	4497	6826	*	5044	22
+       26	5825	*	1309	746	979	1021	9543	1352	1207	
+
+I 23   2457	*	*	4749	4631	5855	*	3520	6207	2555	4106	*	*	4711	6645	4198	2964	2712	*	6543	23
+       13	*	6782	*	*	*	0	9559	0	1006	
+
+L 24   5063	*	6655	5647	*	6857	*	3678	1600	3577	4836	4715	*	3553	2966	5228	5559	4068	6647	4791	24
+       39	6857	5816	0	*	962	1039	9540	1000	1212	
+
+D 25   2806	*	3427	3344	6631	4100	6878	*	2670	6646	*	4629	5792	3117	3638	4180	4352	4216	*	6714	25
+       27	*	5742	*	*	1607	574	9533	0	1402	
+
+F 26   1958	5158	5815	5728	1900	4740	6839	5138	6311	3487	6505	6605	6559	*	6179	4280	3950	4958	4995	6924	26
+       12	*	6944	*	*	429	1958	9447	0	1578	
+
+M 27   2655	6549	*	*	4029	6644	*	2611	5621	2069	4229	*	5775	*	*	6687	4271	2295	*	*	27
+       0	*	*	*	*	*	0	9551	0	1193	
+
+K 28   3021	6872	5676	2888	5759	4132	5736	5229	3092	3673	6744	4815	*	3738	3161	3498	4668	5537	*	5964	28
+       0	*	*	*	*	*	0	9551	0	1193	
+
+D 29   4074	*	3502	2966	4673	3921	*	5774	3368	3836	5689	3187	*	4445	3799	3199	4339	6525	*	5806	29
+       0	*	*	2322	322	*	0	9551	1000	1193	
+
+V 30   3886	*	*	*	2664	*	*	2373	6194	1934	3601	*	*	*	*	5263	5279	2801	*	5124	30
+       0	*	*	*	*	*	0	9551	0	1193	
+
+M 31   3608	*	*	*	5665	4598	*	2278	*	2150	4172	6663	6687	*	4831	5473	5038	2049	*	5599	31
+       29	6588	6761	3000	193	1071	932	9551	1012	1193	
+
+K 32   6643	*	2944	3198	*	3914	5830	6716	3263	4417	5841	3601	5138	3965	4179	2711	4083	5063	6765	6903	32
+       14	6731	*	1000	1000	981	1020	9555	1000	1217	
+
+K 33   3406	6738	4464	4540	6671	3998	4667	4824	2962	4032	5284	4247	4482	3990	3753	2939	4306	5675	*	6540	33
+       92	4539	5742	2152	368	*	0	9557	1659	1011	
+
+C 34   5128	5030	*	*	2131	*	*	3522	*	1215	3955	5798	*	6755	*	*	6593	3921	*	5238	34
+       515	2001	4315	1662	548	1513	622	9541	4886	1379	
+
+S 35   4158	*	2925	4282	5839	2392	6468	*	4415	5554	*	3975	4708	4240	4470	2507	4663	5071	6904	5638	35
+       398	2246	5050	1679	540	948	1054	9525	4197	2222	
+
+N 36   3990	*	4276	2818	6569	4143	*	5073	4132	5014	5651	3816	2063	4062	4238	4008	6524	6371	*	5031	36
+       325	2461	5626	1239	795	216	2845	9522	3782	2063	
+
+T 37   5393	*	2243	3166	*	4469	5691	5818	3812	4724	5598	3492	3275	5635	4701	3480	4581	4392	*	6399	37
+       14	*	6655	*	*	0	*	9550	0	1366	
+
+S 38   4471	*	3089	4558	*	2636	5217	6548	3376	4662	6655	3549	6876	3980	3669	3364	3704	5101	*	6416	38
+       87	6703	4359	1000	1000	0	*	9555	1013	1012	
+
+Y 39   3032	6505	3179	5857	4618	6149	*	2840	*	4293	6780	5186	6572	4713	*	3819	2915	2414	*	5845	39
+       25	*	5882	*	*	0	*	9564	0	1815	
+
+Q 40   6194	*	5777	4658	6577	*	4294	*	3440	*	6669	3841	6773	2840	1408	3874	5101	4786	*	4791	40
+       0	*	*	*	*	0	*	9556	0	1113	
+
+F 41   4654	*	*	*	2218	*	*	2265	*	3028	5761	*	*	*	*	*	5773	1726	*	3723	41
+       12	*	6884	*	*	*	*	9571	0	0	
+
+A 42   2428	*	4585	5691	6761	1580	*	6525	*	6964	*	4195	*	*	6649	1806	5053	*	*	6663	42
+       17	6436	*	1585	585	*	0	9565	1049	1000	
+
+A 43   3995	*	*	*	3628	*	*	1821	*	1879	5157	*	*	*	*	5762	6629	2030	*	*	43
+       0	*	*	*	*	1233	800	9526	0	1224	
+
+V 44   4487	6723	*	*	4307	5679	*	1832	*	3151	4720	5651	*	6671	6670	5003	4437	1708	6552	6533	44
+       0	*	*	*	*	*	0	9533	0	1049	
+
+Q 45   4799	6533	4786	5118	4493	3647	*	5714	5184	4084	6462	5072	6954	2860	4656	2935	2057	4248	6913	*	45
+       12	*	6954	*	*	0	*	9533	0	1049	
+
+F 46   6760	*	*	*	954	*	5570	6800	5781	4700	*	*	*	*	*	*	6637	6529	*	1446	46
+       0	*	*	*	*	*	0	9557	0	1011	
+
+S 47   2679	*	3193	*	*	2252	5761	*	*	6773	*	3351	*	6737	4354	1783	4317	*	*	*	47
+       14	6730	*	2416	299	0	*	9557	1194	1011	
+
+T 48   4152	*	2407	3836	*	3585	4901	6688	4852	5670	5217	4149	4996	4958	3878	2779	3001	5715	*	*	48
+       51	4858	*	2633	254	*	*	9571	1502	0	
+
+S 49   4618	*	4177	2882	6893	3765	4272	5017	3913	*	*	3308	5161	3791	3350	3247	3489	5266	6783	6851	49
+       198	3075	6688	1934	438	*	*	9571	3071	0	
+
+Y 50   2381	*	6487	*	4840	4381	5655	4527	6684	5322	*	4920	2842	6959	*	3691	3577	2118	*	4509	50
+       30	6779	6429	0	*	*	0	9545	1017	1033	
+
+K 51   4581	5742	4098	3566	5734	6907	3954	6027	2855	4797	*	3731	5122	4184	3571	3374	3671	3643	*	5852	51
+       41	5799	6593	1000	1000	*	0	9506	1201	1269	
+
+T 52   4880	*	5141	3734	5587	5666	6752	3172	4663	3645	5931	5045	3471	5785	4433	4569	3031	2556	4421	*	52
+       109	3958	6929	1982	421	*	0	9493	2035	1458	
+
+E 53   5234	6650	3788	3355	5363	5610	5760	3629	5592	2788	6586	5686	5101	3932	5055	5079	4552	2314	5715	4762	53
+       122	4241	5135	2585	263	*	0	9478	1846	1649	
+
+F 54   3547	*	*	*	2413	5006	4929	3211	5807	2759	4337	*	6561	5118	6673	4851	4470	2895	5655	4149	54
+       57	5039	6954	1339	725	1179	841	9448	1590	2162	
+
+D 55   3613	*	3665	5315	6734	4370	4963	6452	4444	5185	5701	3623	2276	4519	4352	3114	3741	5221	*	5434	55
+       18	6356	*	3700	115	*	0	9516	1060	1747	
+
+F 56   6642	5902	6614	5163	3039	5769	*	3825	6757	1404	5249	6668	4252	4592	6770	5198	5001	3684	6666	4262	56
+       52	5235	6805	2025	407	2399	303	9516	1523	1747	
+
+S 57   3100	*	3426	5193	5869	5118	6538	6672	4895	4402	*	3013	5640	4616	3218	2985	2797	5102	6619	6161	57
+       118	4078	5680	1082	922	1460	652	9523	1948	1745	
+
+D 58   3634	*	3366	3611	5688	4110	5147	*	3908	5542	6783	3239	5143	3865	3896	3276	3079	5598	5995	6636	58
+       14	*	6662	*	*	2460	289	9512	0	1810	
+
+Y 59   4707	*	3015	4778	2894	5832	3862	3785	5655	3994	*	4574	4123	4411	5005	5112	5641	3700	5711	3279	59
+       63	*	4551	1585	585	*	0	9501	1011	1823	
+
+V 60   4178	6545	2948	5176	5668	5422	6364	3916	3355	4990	6710	3546	4447	4605	3693	4023	3791	4567	6499	3648	60
+       291	6487	2542	3000	193	2359	313	9477	1012	2605	
+
+K 61   5478	5520	2629	3772	6648	6362	*	6470	5406	*	*	2729	6110	4723	6473	2067	2353	*	*	6059	61
+       38	6417	6110	0	*	1403	685	9260	1000	4672	
+
+R 62   4021	*	4359	4206	6405	6805	6530	4095	2882	4097	6660	4229	4899	3181	3034	3734	3803	3985	*	6348	62
+       194	5461	3278	1588	584	442	1921	9249	1176	3616	
+
+K 63   3162	*	2953	2478	*	6313	6580	5028	3474	*	*	4610	4130	4036	4459	3340	3663	4984	6604	6395	63
+       79	*	4233	*	*	1828	477	9385	0	3202	
+
+D 64   2924	4964	3469	2542	5199	4352	4300	5424	4190	6780	*	3458	6845	3484	4381	5014	3865	5418	*	*	64
+       29	6789	6538	2807	222	2368	311	9410	1000	3389	
+
+P 65   4598	*	5324	*	3333	*	*	2729	4643	1723	4259	*	4642	6810	4520	*	5582	2769	*	5140	65
+       0	*	*	*	*	473	1838	9425	0	3095	
+
+D 66   3374	*	3844	3883	6576	6537	5293	4372	2759	3294	4205	5655	6369	3604	3544	3889	4796	4489	*	5702	66
+       57	5083	6740	715	1355	1869	462	9564	1370	1511	
+
+A 67   3031	*	2685	2756	6508	4433	5501	5652	4477	5016	6938	3771	*	4353	3714	3154	4687	6773	5453	6735	67
+       12	6870	*	4392	70	1017	983	9557	1000	1506	
+
+L 68   2174	6960	5315	6378	4301	3996	6538	3832	4096	2826	5832	5875	*	5671	5506	3793	5012	3020	6001	5571	68
+       39	5237	*	1387	695	0	*	9560	1346	1167	
+
+L 69   5181	6552	5880	*	3491	*	*	1913	4501	2140	4811	6529	*	4950	*	4700	5680	2709	6699	5658	69
+       27	6675	6786	1000	1000	0	*	9554	1033	1018	
+
+K 70   3601	*	2804	3573	6664	4721	*	6706	3739	6668	6684	2703	5817	3948	3183	3314	4164	5789	6834	6752	70
+       27	5765	*	1000	1000	*	0	9552	1190	1017	
+
+H 71   3655	6842	3848	3810	5243	3705	5253	6860	3167	6583	*	3310	5760	3974	3243	2913	4553	*	6762	4703	71
+       21	6106	*	0	*	*	0	9552	1117	1017	
+
+V 72   4043	*	*	5147	4331	*	7048	2258	6834	1478	4135	*	*	*	*	*	4270	2770	*	5531	72
+       86	4599	5907	2620	256	*	0	9552	1582	1017	
+
+K 73   3790	*	4181	3168	6479	5798	5124	6825	3262	5841	5725	3944	2955	3823	3435	3428	5278	3876	6620	*	73
+       89	5354	4823	1437	665	1608	574	9537	1314	1384	
+
+H 74   4386	5840	4209	5249	3510	4129	5176	4947	4028	4510	6604	5051	3346	3414	4717	3934	4116	5378	5613	3238	74
+       211	3121	5578	2409	301	258	2612	9516	2884	1889	
+
+M 75   3472	*	4797	3496	5198	6964	6815	3359	4015	2761	3899	6663	4251	5245	3843	3748	3571	4610	*	6736	75
+       253	3185	4294	1985	420	0	*	9542	2848	1390	
+
+L 76   4271	*	4050	4096	6575	1717	5780	5776	4293	5722	*	3358	3713	5504	5077	3332	4851	4679	*	6658	76
+       384	2097	*	1352	717	0	*	9500	4541	1815	
+
+L 77   4384	6658	5060	5880	5453	984	5736	*	5324	5110	5811	*	5573	4773	4734	3875	3891	*	5691	5242	77
+       51	4843	*	1355	715	*	*	9571	1542	0	
+
+L 78   2952	6984	4725	4811	5222	1776	*	*	4987	3483	7022	3872	4442	6851	5716	3719	3609	7305	5738	5874	78
+       130	3539	*	983	1017	*	0	9565	2411	1000	
+
+T 79   4322	6590	6529	4981	*	5222	*	6436	5187	5624	*	3836	5627	*	4472	3008	917	5525	*	*	79
+       24	6891	6967	0	*	*	0	9565	1000	1000	
+
+N 80   3454	*	3227	5847	4922	5622	4429	5017	5161	5317	6480	2061	3151	6986	5072	3275	*	*	5301	3809	80
+       0	*	*	*	*	*	0	9551	0	1193	
+
+T 81   6534	*	7113	6665	5714	5311	7028	2281	*	1999	3748	6514	5089	6657	6924	3732	2290	5704	*	4949	81
+       0	*	*	*	*	*	0	9551	0	1193	
+
+F 82   2707	5501	4701	4699	5777	1544	5230	6874	5806	4749	7224	4773	5962	5691	6769	3963	4656	6414	*	3423	82
+       24	*	5950	2294	329	0	*	9551	1193	1193	
+
+G 83   2618	*	3577	2818	*	4526	4604	*	3555	4119	5883	5625	6669	4762	3783	3249	3437	6671	*	5607	83
+       0	*	*	*	*	0	*	9556	0	1113	
+
+A 84   1100	5864	6707	*	6884	2044	*	6688	*	7316	5286	6539	6730	6709	6673	4032	4961	3616	*	*	84
+       0	*	*	*	*	*	*	9571	0	0	
+
+I 85   6608	6845	*	*	3974	6976	*	2308	*	1026	3261	5791	*	*	*	*	6776	3736	*	6682	85
+       12	*	6976	*	*	*	*	9571	0	0	
+
+N 86   4414	*	4235	2357	6616	5168	6753	4413	3890	3541	6912	3785	*	3706	3134	3986	4137	6453	6993	4425	86
+       42	5116	*	764	1282	0	*	9557	1600	1011	
+
+Y 87   3844	6700	4884	3354	3871	4950	4161	5370	3425	3649	6921	5721	6929	4477	4116	4620	3413	4943	4634	3472	87
+       36	*	5337	*	*	*	0	9554	0	1018	
+
+V 88   1301	5224	*	*	6586	3362	*	3643	*	3703	4756	6494	5780	*	*	5334	4388	2686	*	6877	88
+       66	*	4474	0	*	444	1917	9539	1018	1557	
+
+A 89   2687	*	6634	5529	4785	5160	4558	3929	4655	2516	5577	5272	5701	5156	3710	4056	5169	3268	6533	4235	89
+       115	5043	4436	1619	568	601	1554	9521	1600	1931	
+
+T 90   4391	6568	2778	2727	5597	5385	5030	*	3613	6335	6536	3100	7049	3640	3372	4190	3494	*	6347	6955	90
+       72	5613	5148	0	*	236	2727	9507	1595	2047	
+
+E 91   4872	*	4377	3192	4548	5648	5054	4675	3489	4133	4023	4421	5845	3762	4313	3955	3890	3463	6760	4354	91
+       0	*	*	*	*	1165	852	9556	0	1546	
+
+V 92   3712	*	6835	*	4458	4482	6919	2670	6004	1976	3411	*	4696	*	*	5148	*	2893	6749	3562	92
+       330	6831	2352	0	*	*	0	9550	1000	1224	
+
+F 93   6705	*	4192	4872	1714	5603	6604	4426	4578	2491	5269	4768	*	3638	5496	4180	4505	6252	*	5498	93
+       100	5469	4489	1599	578	2661	248	9218	1185	4398	
+
+R 94   3435	*	3798	3580	6224	3383	6507	*	3264	4690	5546	4363	4738	4003	4489	3233	3406	4926	5119	6346	94
+       164	5060	3691	809	1220	*	0	9129	1294	4441	
+
+E 95   3256	*	4021	3755	*	5293	6122	4191	3282	4272	5379	3764	4048	3332	5012	3217	3764	6417	5977	6221	95
+       149	4772	4020	693	1391	1344	722	9021	1387	5309	
+
+E 96   2979	6181	4792	3689	*	4085	5715	4918	3454	4088	5731	3542	6696	3768	4053	3216	3425	6419	*	5363	96
+       75	6365	4689	1000	1000	*	0	9101	1013	4455	
+
+L 97   3973	*	4870	6612	4308	4430	*	6434	3171	3560	4670	3091	5173	3641	3843	2846	3507	*	*	5243	97
+       242	4952	3031	1842	472	2038	403	9031	1287	4829	
+
+G 98   3979	*	4300	6449	6542	1151	5490	*	4798	4302	*	3618	6455	*	3322	3809	4629	*	*	*	98
+       249	2950	5112	2758	231	1124	886	9041	2604	5221	
+
+A 99   2781	5200	3514	5553	5755	2835	6191	*	4947	4108	5634	4551	4394	5001	3094	4384	3927	5296	4951	5293	99
+       77	*	4269	*	*	779	1261	9310	0	3843	
+
+R 100  4543	*	5195	5626	5534	3980	6645	5860	*	4975	*	5512	4245	4338	1172	4053	3630	5662	6988	5098	100
+       99	4368	5816	1337	727	2580	264	9460	1729	2989	
+
+P 101  3849	6436	4664	3718	6406	5148	*	5874	3870	6476	6337	4064	1695	3921	5361	3146	4566	5052	*	6599	101
+       104	4305	5723	2278	333	888	1122	9426	1720	2947	
+
+D 102  4403	*	2935	4017	6011	2659	4978	*	5736	6285	6537	2246	4650	5247	4299	4024	3568	6340	6978	5759	102
+       43	5104	*	1897	451	662	1442	9533	1379	2180	
+
+A 103  2913	5928	4558	4364	5586	3942	4146	5221	4645	5819	5739	4085	4504	5666	4391	3115	6018	2577	6895	4754	103
+       74	4656	6570	1425	672	661	1444	9553	1580	1337	
+
+T 104  3564	*	5698	4826	5652	5572	*	*	3798	4416	6722	3467	2213	4818	2452	4281	4910	3594	*	*	104
+       0	*	*	*	*	*	0	9538	0	1204	
+
+K 105  4587	*	5143	*	*	3617	3895	5722	2232	4642	6638	3238	3928	4468	2468	4755	5569	4515	*	*	105
+       24	5928	*	2151	368	983	1017	9538	1155	1204	
+
+V 106  3354	6859	*	6725	4370	6399	5120	2402	6677	3188	5144	5682	4681	5704	3674	*	4122	2266	*	4764	106
+       0	*	*	*	*	*	0	9558	0	1005	
+
+L 107  3668	5753	6755	*	6567	6592	*	2063	*	2305	3588	*	*	*	*	*	5180	1642	*	*	107
+       0	*	*	*	*	0	*	9558	0	1005	
+
+I 108  6416	*	6759	*	3523	*	6715	1563	*	3011	3935	*	*	6775	*	*	*	1757	5791	4990	108
+       0	*	*	*	*	*	*	9571	0	0	
+
+I 109  5153	*	*	*	4396	*	*	2674	*	1172	5794	5558	*	*	*	*	6015	1998	*	5719	109
+       14	6715	*	0	*	*	*	9571	1006	0	
+
+I 110  4457	*	5791	*	3165	*	6379	2126	*	1759	3877	*	*	*	*	6759	6689	2605	*	4755	110
+       10	*	7113	*	*	*	*	9571	0	0	
+
+T 111  3842	*	*	6528	6419	5765	*	6569	*	6575	5662	6750	*	*	*	2191	738	5597	*	*	111
+       0	*	*	*	*	*	0	9578	0	1000	
+
+D 112  5770	*	590	4791	*	5704	6528	*	6530	*	6776	4331	5627	*	6612	3492	4541	6707	*	6706	112
+       27	6526	6980	0	*	*	0	9578	1026	1000	
+
+G 113  3505	*	5020	4960	*	413	*	*	5531	*	*	5716	*	*	*	4846	5483	*	*	*	113
+       0	*	*	0	*	896	1112	9551	1011	1184	
+
+E 114  3854	*	4965	3596	5197	4275	4851	4441	3240	4441	*	3897	3549	3441	3970	4982	4125	3882	5569	5764	114
+       0	*	*	*	*	*	0	9578	0	1000	
+
+A 115  4107	*	4016	4551	5164	6618	5842	4152	5797	5634	6882	3948	2272	6530	*	2202	3632	4419	6073	4759	115
+       45	5038	*	2595	261	*	0	9578	1415	1000	
+
+T 116  4635	*	3573	4259	5101	5006	4734	*	5244	*	6175	2745	4728	4095	4968	3013	2202	*	4658	5203	116
+       53	4789	*	3245	161	*	0	9542	1522	1000	
+
+D 117  4261	7070	1607	3595	*	3251	5784	5962	6386	7035	4840	3954	5644	4724	6594	3558	4018	4754	6994	6467	117
+       37	5845	7000	1000	1000	*	0	9542	1159	1000	
+
+S 118  4443	*	2610	2993	5948	2501	5802	5152	4459	5171	*	4710	3973	4416	5720	3287	3967	6738	*	6804	118
+       83	5617	4805	1131	880	*	0	9554	1384	1184	
+
+G 119  4755	*	3522	3827	5052	3729	5160	3221	5731	4722	6843	5684	4048	3902	5776	3312	5086	2587	6812	5122	119
+       606	1628	5694	2602	260	2412	300	9464	5508	1883	
+
+N 120  3566	*	3064	3095	*	5571	5757	*	4127	4925	*	3262	2874	5145	4199	3495	3101	5594	*	*	120
+       177	3117	*	2403	302	2365	311	9381	2942	2039	
+
+I 121  3042	5436	5845	3134	6742	6823	*	4381	4353	2969	5102	5548	3083	4335	3654	4012	4295	4043	*	6607	121
+       212	2872	*	2191	357	1107	900	9405	3154	1812	
+
+D 122  1638	*	4841	5417	6636	5606	6577	4477	4576	3230	4959	4656	3589	5051	4885	4296	*	3667	6976	5093	122
+       175	3133	*	2820	220	*	0	9437	2873	1359	
+
+A 123  2586	*	3989	3415	*	*	4352	5694	3003	5161	*	5706	5105	3121	2902	4628	4394	4696	*	4959	123
+       151	3486	6603	2327	321	1677	541	9437	2560	1359	
+
+A 124  2030	*	3782	3931	5779	4453	6904	5222	3243	4727	6602	5130	6311	3758	3533	4062	3987	5503	7072	6606	124
+       385	2092	*	1873	460	*	0	9433	4626	1393	
+
+K 125  2603	*	5684	3330	5259	3889	5602	*	3209	5212	5065	4133	6948	3807	3712	3040	4128	5301	*	5619	125
+       91	4034	*	2623	256	*	0	9433	1970	1393	
+
+D 126  5152	6659	4074	4153	6678	1356	5132	*	3223	*	*	3222	5478	4315	3823	4364	6456	*	*	*	126
+       59	4926	7072	3283	156	0	*	9433	1467	1393	
+
+I 127  3932	6656	6819	*	5193	5902	4983	1642	*	3618	6641	*	*	6175	6044	5126	4342	1770	*	5160	127
+       124	3898	6019	2752	232	0	*	9542	2185	1000	
+
+I 128  4718	6661	4224	3622	4619	6519	5658	3476	4232	5165	5811	3714	3728	4705	3224	5230	2433	4770	*	6406	128
+       60	5007	6726	2269	336	*	0	9549	1418	1117	
+
+R 129  4047	6546	*	*	3906	6593	*	2361	5276	3030	4343	*	*	6159	4388	5268	3892	1716	*	*	129
+       104	3845	*	3076	182	*	0	9530	2104	1295	
+
+Y 130  5491	5750	5166	*	1939	6606	4125	2597	*	4434	6644	6717	*	*	*	5740	6006	3611	*	1966	130
+       21	*	6139	*	*	*	0	9507	0	1295	
+
+I 131  1995	4723	*	*	6644	4214	*	4654	*	4826	5389	5720	4959	6549	*	3361	2122	2647	*	*	131
+       16	6485	*	0	*	1459	653	9462	1019	1562	
+
+I 132  *	6846	*	*	3655	*	*	1333	*	2935	6814	*	*	*	*	6380	6319	1511	*	*	132
+       15	*	6565	*	*	*	0	9521	0	1295	
+
+G 133  2191	5594	6989	6795	5719	1059	*	5660	*	5510	5765	*	5674	5126	6543	3345	5220	*	*	*	133
+       0	*	*	*	*	1815	482	9460	0	1481	
+
+I 134  4590	6662	5412	*	3464	*	*	2056	6907	2618	6379	*	6832	*	*	4320	4709	2044	*	3812	134
+       31	6592	6542	2322	322	*	0	9425	1000	1295	
+
+G 135  4907	*	3473	5698	6540	777	*	6837	5696	6410	*	4392	5674	5605	5648	4383	4129	6612	*	*	135
+       28	6925	6496	0	*	1838	473	9462	1011	1477	
+
+K 136  3969	*	2730	2863	*	3980	*	*	4042	5708	5685	3085	3188	4518	6344	3111	3836	*	*	5958	136
+       14	*	6668	0	*	1060	943	9378	1257	1722	
+
+H 137  3081	*	2460	3911	6711	3463	5679	5557	3612	4437	6634	4217	5034	4362	5670	3341	4517	6588	*	4342	137
+       1002	6107	1040	4170	82	*	0	9446	1089	1452	
+
+F 138  2909	*	3810	*	2727	3661	*	4677	4792	2608	*	3481	3974	*	*	3220	5568	5464	*	5503	138
+       852	*	1165	*	*	4126	85	8438	0	7031	
+
+Q 139  5087	*	2571	2949	*	2652	*	*	3423	3935	3919	2961	*	3961	4902	*	*	*	*	3991	139
+       909	3517	1395	2973	197	4819	52	7550	1365	8120	
+
+T 140  4305	*	4193	4213	4576	3380	*	*	4333	*	*	2874	4701	4245	*	3428	2753	2901	*	4305	140
+       372	3449	2879	2028	406	6381	17	6738	1205	8503	
+
+K 141  2248	*	*	3221	3220	2547	*	*	3278	*	*	*	3417	4219	3227	*	4421	*	*	*	141
+       83	*	4161	*	*	1289	759	6595	0	8570	
+
+E 142  2121	*	5568	3773	*	4705	4611	3078	*	3724	*	5916	5457	5565	*	3819	4060	2401	*	5506	142
+       32	*	5524	*	*	260	2598	8500	0	6890	
+
+S 143  3656	6598	2100	4172	4667	3051	4785	5660	5131	6754	*	2813	*	5416	6397	3402	3722	6876	*	6468	143
+       18	*	6297	*	*	400	2045	9262	0	2454	
+
+Q 144  5739	*	3906	3591	6896	4381	6602	*	3245	3122	4263	5546	3657	3942	3180	4402	4605	3820	5830	4656	144
+       0	*	*	*	*	*	0	9406	0	1444	
+
+E 145  2860	*	3382	2628	*	5095	4612	5626	3574	*	*	4349	4754	3656	3586	3055	4934	6813	*	5678	145
+       0	*	*	*	*	590	1574	9406	0	1444	
+
+T 146  4403	*	4218	2349	4395	6794	*	5076	4572	3187	5663	4089	6826	3034	*	5610	3206	4112	6348	4148	146
+       0	*	*	*	*	0	*	9453	0	1026	
+
+L 147  4557	5617	*	*	4554	*	*	3236	*	875	2931	6752	6595	*	6448	6377	*	4722	6575	5611	147
+       0	*	*	*	*	*	*	9461	0	0	
+
+H 148  3953	*	3715	2732	6613	5705	5270	5566	2766	5191	5684	3926	*	4200	2692	4075	3862	5909	*	5736	148
+       47	*	4976	*	*	*	*	9461	0	0	
+
+K 149  3017	*	4084	3035	*	3482	5076	6904	3432	3849	6748	4418	6591	3526	4886	3141	3246	*	*	*	149
+       28	5706	*	2648	251	0	*	9451	1195	1445	
+
+F 150  5004	*	5308	*	3892	*	6336	1389	*	1804	3800	6855	*	*	*	*	*	3118	*	*	150
+       0	*	*	*	*	*	*	9461	0	0	
+
+A 151  830	*	*	6718	4782	5810	6752	6652	6385	4596	*	*	*	5702	*	3032	3328	4053	*	*	151
+       14	*	6710	*	*	*	*	9433	0	0	
+
+S 152  5010	5863	3525	3660	6613	2452	5763	*	4276	*	*	5725	6351	5610	3951	1780	3721	5113	*	6555	152
+       42	6653	5742	0	*	*	0	9394	1000	1000	
+
+K 153  3565	5476	3345	3867	*	3127	4694	6252	3492	3941	6509	4623	4937	3976	4360	3111	4544	5562	*	5081	153
+       57	*	4691	*	*	*	0	9375	0	1326	
+
+P 154  3978	*	*	5465	*	3140	5130	5555	3771	5484	6257	4321	2093	5513	4246	3521	2762	5442	*	5298	154
+       492	5550	1902	1314	743	*	0	9351	1169	1989	
+
+A 155  3249	*	2769	*	6241	2646	6174	5639	3889	5186	4878	3623	4986	4929	4222	2977	3832	5969	*	*	155
+       144	*	3401	0	*	1220	809	8974	1018	5319	
+
+S 156  5272	*	4869	2861	*	1489	6141	6023	4000	6212	*	4122	5204	5040	3728	3343	6093	6269	*	5397	156
+       245	*	2680	*	*	414	2004	9070	0	4503	
+
+E 157  4339	*	4327	2689	*	3133	4856	4938	3287	4596	*	2971	6304	3279	4577	4727	4413	6115	5454	6199	157
+       250	2777	6244	746	1308	647	1469	9231	2810	3660	
+
+F 158  3951	6247	5110	6338	2796	6427	2672	*	3700	4884	6507	3305	5278	4084	4156	6302	4179	5510	*	3124	158
+       31	*	5565	*	*	812	1217	9329	0	2125	
+
+V 159  2746	*	*	*	2638	6370	*	3918	5716	2951	5629	6713	*	*	*	4852	4958	1877	*	3396	159
+       66	*	4493	*	*	772	1271	9344	0	1718	
+
+K 160  4856	*	*	*	1644	*	6614	3326	5535	3436	5041	*	*	4520	*	*	4712	3587	*	2144	160
+       32	6435	6579	1000	1000	546	1667	9322	1000	1927	
+
+I 161  4917	*	6196	4225	4851	5708	3942	3093	3697	5515	5455	4620	4507	4075	3709	3540	3259	3748	*	4141	161
+       0	*	*	*	*	0	*	9370	0	1353	
+
+L 162  2437	*	5824	6544	6312	6441	6409	3336	6513	2323	5568	5003	4777	*	*	4583	4634	1982	*	5846	162
+       17	*	6392	*	*	*	*	9395	0	0	
+
+D 163  4824	6440	2557	3184	*	4009	6413	*	4273	4887	6293	3078	3511	4585	4118	4040	2891	*	*	*	163
+       31	5554	*	0	*	*	0	9319	1175	1058	
+
+T 164  6758	*	1863	3658	*	3523	*	*	4398	6576	6643	2665	6322	5743	4986	2529	3505	*	*	*	164
+       17	*	6446	0	*	0	*	9245	1058	1058	
+
+F 165  3551	*	6233	4467	2459	4652	*	4393	5564	4587	4812	4436	3114	5667	5201	4309	4862	3921	6406	3090	165
+       38	5274	*	1324	736	0	*	9272	1211	1007	
+
+E 166  3210	6465	2790	2458	*	4442	6390	*	4231	6298	*	3827	5217	4002	6143	3192	3682	5710	6296	4754	166
+       32	5530	*	0	*	*	*	9250	1175	0	
+
+K 167  2946	*	2563	2782	6386	3871	6398	*	3665	4282	6511	4432	*	3554	5285	3300	4328	6181	*	*	167
+       17	6381	*	0	*	*	*	9236	1000	0	
+
+L 168  6160	*	6094	*	5410	*	*	3906	*	543	3985	*	6092	6451	5499	*	*	4063	5411	*	168
+       0	*	*	*	*	*	*	9214	0	0	
+
+K 169  3282	*	3234	4727	6420	4247	6358	4720	3193	*	*	3494	3143	3676	4082	3688	4428	4686	*	5199	169
+       20	6205	*	0	*	*	*	9209	1006	0	
+
+D 170  5304	*	2962	3406	*	3330	6235	*	3924	6205	6404	3289	4241	2958	4213	3141	4011	5507	*	6267	170
+       0	*	*	*	*	*	*	9171	0	0	
+
+L 171  2661	6283	*	5156	4713	*	*	2250	4598	2370	5272	5160	*	5153	4718	*	*	2756	*	4327	171
+       0	*	*	*	*	*	*	9084	0	0	
+
+C 172  5342	6218	*	*	2285	5978	*	2745	6203	2734	4696	6356	*	4726	5188	5171	4681	2185	*	5312	172
+       0	*	*	*	*	*	*	9084	0	0	
+
+T 173  4186	*	2587	3719	5203	5083	*	*	3243	4569	6319	2771	4190	3879	4002	4116	3904	6122	*	6044	173
+       0	*	*	*	*	*	*	9007	0	0	
+
+E 174  5130	5178	4195	2510	*	4585	4557	5204	3199	4551	6402	5139	5127	2769	3643	3234	4350	*	*	*	174
+       24	5907	*	4000	93	*	*	8986	1012	0	
+
+L 175  5952	*	*	5108	4139	*	*	1269	*	1599	3823	*	*	*	*	*	*	3602	*	*	175
+       0	*	*	*	*	*	*	8768	0	0	
+
+Q 176  2869	*	*	*	4085	4735	*	3338	4097	2971	4854	5760	*	2501	3924	3724	*	3727	*	4835	176
+       0	*	*	*	*	*	*	8381	0	0	
+
+K 177  5457	*	2286	2968	4298	5543	*	*	2926	*	5504	3947	*	3751	3794	2880	4398	*	5381	*	177
+       0	*	*	*	*	*	*	8134	0	0	
+
+K 178  4190	5176	3225	2840	*	4304	*	*	2084	4173	*	5155	*	4335	3241	3349	5324	5473	*	*	178
+       0	*	*	*	*	*	*	7957	0	0	
+
+I 179  *	*	*	*	*	*	*	853	*	2035	3787	*	*	*	*	*	*	2945	*	*	179
+       0	*	*	0	*	*	*	7385	0	0	
+
+//
+�HHsearch 1.5
+NAME  665b4706556bcfdcefa8812b17dc787c
+FAM   
+FILE  665b4706556bcfdcefa8812b17dc787c
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:15:57 2013
+LENG  233 match states, 233 columns in multiple alignment
+FILT  122 out of 1206 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  10.2
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCEECCCCCCCEEEEEEEECCCEEEEEEEECCCEEEECHHHCCCCCCEEEEEEECCCCCCCCCCEEEEEEEEEECCCCCCCCCCCCEEEEEECCCCCC
+CCCEEEEECCCCCCCCCCCCCCCEEEEEEECCCCCCCCCCCEEEEEEEEEECHHHHHHHCCCCCCCCEEEEECCCCCCCCCCCCCCCEEEEEECCEEEEE
+EEEECCCCCCCCCCCEEEEEHHHHHHHHHHHHC
+>ss_conf PSIPRED confidence values
+9999999987898699999818985999999719999989899377885699994121356788717999999997987877766565899992575436
+7744446747765432344679879999856657888777556899999867899765415777867599632789974445788882799309939999
+999737787888986189997997999999859
+>Consensus
+ixxgxxxxxxxxPxxvxixxxxxxxxCxGtlIxxxxVLTaaxCxxxxxxxxvxxgxxxxxxxxxxxxxxxvxxxxxxpxyxxxxxxxDiallkLxxxixx
+xxxvxpxxlxxxxxxxxxxxxxxxxxxxgxgxxxxxxxxxxxxxxxxxxxxxxxxCxxxxxxxxxxxxxCxxxxxxxxxxcxgdsGxplxxxxxxxxxlx
+GixsxxxxcxxxxxxxvxxxvxxxxxWIxxxxx
+>665b4706556bcfdcefa8812b17dc787c
+IVGGQECKDGECPWQALLINEENEGFCGGTILSEFYILTAAHCLYQAKRFKVRVGDRNTEQEEGGEAVHEVEVVIKHNRFTKETYDFDIAVLRLKTPITF
+RMNVAPACLPERDWAESTLMTQKTGIVSGFGRTHEKGRQSTRLKMLEVPYVDRNSCKLSSSFIITQNMFCAGYDTKQEDACQGDSGGPHVTRFKDTYFVT
+GIVSWGEGCARKGKYGIYTKVTAFLKWIDRSMK
+>gi|339237293|ref|XP_003380201.1| putative ovochymase-2 [Trichinella spiralis]gi|316977003|gb|EFV60183.1| putative ovochymase-2 [Trichinella spiralis]
+-----KASPYSMPWSVII-QTKDK-VCGGVLIrlektanSSNTVLASSYCFSQKfgkmysyVNTKVHLGVHTFPSDS-DKVTVGIKQVTSTP-YEQGMIK
+KDIALITLLSEVEFNEKIRPICLPSINY---KPPTATKYPLVGWVLSKLTRfRKIPYLLQVPIILFEPSECAMMLEIFSDDDHICGYFYDPHMfnNSVPL
+DLGSALISTYRRNLFIIGLFSAMIRfENMTGHILLFSRISTSVEWI-----
+>gi|319891581|ref|YP_004148456.1| hypothetical protein SPSINT_0291 [Staphylococcus pseudintermedius HKU10-03]gi|317161277|gb|ADV04820.1| hypothetical protein SPSINT_0291 [Staphylococcus pseudintermedius HKU10-03]
+------------------YESGTHKQCTAILISSSVALTAKHCGGDHpttYNGTIYPGESGLSTPFG---YMNISTYIPNPDY-------DIAILKgteQ
+DKTNAYKYYIKPFKT----------------PVTAFSDETLSSFIGQDVYSYGYPSKYGGYKQYRSDGKMNFYEKNNKLFLTSLPTFEGQSGSGIF-KKD
+GQ--FVGLLITRTQDYEGNFLPFTQEVA---EWVNTNSN
+>gi|157130425|ref|XP_001655710.1| hypothetical protein AaeL_AAEL002577 [Aedes aegypti]gi|108881970|gb|EAT46195.1| conserved hypothetical protein [Aedes aegypti]
+-------------------------------------------------------------------VFQTAKKVVHPDFNPASNVANIALLFLKERSEI
+NHLACTFDINET-------FNDQTCLIVGWNNDNFENIRSTSVTPNKQPISILQSSDSYLHTLSTAR-------NQSKQSCNRWRGATIICldQKDQNWK
+IIGIAAKNNErCDANGIPETLVAIPQLSPWIREQL-
+>gi|313236555|emb|CBY19847.1| unnamed protein product [Oikopleura dioica]
+---------------------NNFRLCTATLLTPTTLITTAGCTGSDanNRLFAKIGQANFDPraPSDHVQTIMIRRCVAHPKYVRGEPNNDLQICFLAE
+SIKQAKGIMIPCLTDTQ----IKLNDGDIVVTESRTNFNKGKTEGYPMRTHIPISGKYSQGKTDKER---------GYAFGDPLCMKEVGSPVFREDVNQ
+RTLVGLVQGALTpenqC--PTRLFNIVDLRDHVDWITATTK
+>gi|325194105|emb|CCA28172.1| AlNc14C1403G12929 [Albugo laibachii Nc14]
+-------------------------VCAACLIDTMNVATSSSCIrYQVQSPGDRWQFKFQKVGGGFKKSRFVTQITHAPNFQMYQMTGDFAILKLDTPIV
+---EIHPVLISNKAPR-----VGSKLHIFG---VAPANPETEKMIMGTLTVQSTDTCQLAFEGkppnlytpkYDGKQLFCAK--SQCSAVCEGELGMPFa
+redIVNNTVRLILYGIQASASVECDPRKTSSYGVPFSHENFFESYSK
+>gi|195112812|ref|XP_002000966.1| GI10530 [Drosophila mojavensis]gi|193917560|gb|EDW16427.1| GI10530 [Drosophila mojavensis]
+-------------HLVYL-RFNYNIICSGIVVNNRTVLTVTSCLDRKEPPKIIVHFTD-------GTAQTASSSSPSSDYTMSSGSNLLSFLHLEKPLDQ
+EfDTPPPFCT-------QAVRPQDNVMQLNWDKNY------SRPIPRFVPQMPLDQCQTLNRDarMLAPAVHCVE-NTQYTDECIRSYGLPYVWKGA---
+-FCGMNINGHNCSVPSNADVYVRLLREKRLISKMLR
+>gi|301166151|emb|CBW25726.1| conserved hypothetical protein [Bacteriovorax marinus SJ]
+--------------------------CTATLVGKSCIITSSVCAKLDrvVEFNIPSSEDGVPALAKAEDTYEVDPSSFSYDNSG--IGKFWAVAKLKRNA
+LTGKLPGEVQGYFPVISK-KPRKNDKIYILQYANTNPDRYdvisgevganpngys-lNYSQSSANGVLV-------KAGIFLIPEII-----YHNVDVSH
+GGAGAPLINSSTHE--VVGVHTHG-GCQSGqgrGR-------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+I 1    4685	*	*	*	*	*	*	816	*	3743	*	*	*	*	*	4687	3708	2300	*	*	1
+       0	*	*	*	*	*	*	7293	0	0	
+
+V 2    2171	*	*	4784	4765	*	*	1930	*	3838	4896	*	*	*	*	3135	2729	3752	*	*	2
+       0	*	*	*	*	*	*	7381	0	0	
+
+G 3    5041	*	5194	*	5239	1214	*	*	*	*	5148	1393	*	5813	5134	*	5080	*	*	*	3
+       40	5194	*	0	*	*	*	8064	1000	0	
+
+G 4    4363	*	5335	*	*	522	5216	*	4264	*	*	4378	5319	*	5291	4244	*	*	*	*	4
+       66	4473	*	1806	486	*	*	8373	1192	0	
+
+Q 5    5340	*	5375	2602	5385	5610	*	*	3876	5471	*	5566	4668	3451	2558	4480	2943	3198	*	4445	5
+       20	*	6189	*	*	*	*	8547	0	0	
+
+E 6    4736	*	2986	3008	*	*	*	5766	3728	4062	*	4831	2217	4155	3316	4215	4127	4626	*	*	6
+       0	*	*	0	*	0	*	8910	1000	1000	
+
+C 7    1833	4754	3847	4862	*	*	*	5828	5823	5734	*	*	3824	*	*	3988	2789	2224	5920	6028	7
+       0	*	*	*	*	*	*	9129	0	0	
+
+K 8    4988	*	3092	4032	5620	3965	*	4522	3619	4390	*	2999	2687	6085	4427	2793	5011	*	*	5938	8
+       0	*	*	*	*	*	*	9276	0	0	
+
+D 9    3498	*	3692	3901	6340	4102	6098	4156	4933	5994	5870	3438	3257	4362	3639	3157	4813	4542	4505	*	9
+       0	*	*	*	*	*	*	9303	0	0	
+
+G 10   4911	5841	3428	3278	4892	1844	4955	*	*	5058	*	3728	6192	4462	*	3255	3754	6061	5943	4874	10
+       25	*	5853	*	*	*	*	9389	0	0	
+
+E 11   4442	*	4001	1973	*	4022	6704	6160	3612	*	5957	4156	4641	2889	3274	3535	5806	*	*	6049	11
+       0	*	*	*	*	0	*	9470	0	1001	
+
+C 12   3903	6429	6273	*	2236	*	3506	5017	6303	4659	5279	*	*	5032	6153	3797	5129	5152	3088	2261	12
+       27	6712	6842	2000	415	*	*	9564	1000	0	
+
+P 13   3946	*	6325	*	*	6406	6147	6022	*	*	*	5416	416	4302	*	4464	*	*	*	6310	13
+       17	6448	*	2322	322	*	0	9699	1019	1150	
+
+W 14   6186	*	6438	*	3387	6412	3706	*	*	*	*	4745	5054	*	*	4590	*	*	1158	2098	14
+       0	*	*	2322	322	862	1153	9873	1000	1150	
+
+Q 15   4121	*	*	*	4653	6416	4177	3854	*	2448	3343	4846	6280	3987	5523	3464	4565	2413	*	4975	15
+       0	*	*	*	*	*	0	10038	0	1000	
+
+A 16   1958	4674	*	*	*	3402	*	6546	*	3845	5495	6613	*	*	*	6617	4995	1137	*	*	16
+       58	4939	7181	2361	312	0	*	10038	1423	1000	
+
+L 17   3495	*	*	4214	4961	3752	6328	4469	5330	3464	4926	*	5858	4469	2830	2603	3779	3640	*	5353	17
+       0	*	*	*	*	*	0	10040	0	1000	
+
+L 18   6468	*	*	*	3473	4318	*	1612	6357	2098	4926	*	*	6618	5858	5519	5425	2857	*	4954	18
+       899	3090	1530	913	1093	0	*	10040	2663	1000	
+
+I 19   5825	*	5337	5830	2677	4304	4294	4267	3617	3545	5022	*	*	5786	3617	4194	*	3571	5908	2498	19
+       287	2469	*	1559	598	202	2939	9329	2758	5572	
+
+N 20   5491	*	3276	4099	4544	4491	5291	3891	4080	4138	6344	3912	*	4352	4171	3985	3750	3905	5373	3206	20
+       32	6716	6349	1000	1000	2029	406	9991	1007	1602	
+
+E 21   5299	*	5006	3653	5279	3418	*	4903	3433	5246	*	2996	3738	5550	3648	3358	3696	3626	*	4829	21
+       28	5684	*	923	1081	2150	368	9993	1227	1614	
+
+E 22   4954	6507	3028	3533	4442	3094	6695	*	3864	4938	6283	3043	3569	4944	3438	3494	4983	*	*	6623	22
+       64	4516	*	2455	290	1595	580	10033	1630	1437	
+
+N 23   5505	*	3364	3859	5093	2021	5586	6390	4570	6651	*	3377	6386	4340	4296	2963	4093	*	5453	4911	23
+       328	2486	5344	2120	377	1032	969	10057	3602	1559	
+
+E 24   4495	5135	6169	5602	4578	3225	4881	*	2840	5633	*	3293	4930	3921	3507	3217	3496	5599	*	4491	24
+       128	3980	5538	1945	434	*	0	10137	1930	1583	
+
+G 25   4629	*	6514	5644	2658	4215	3129	4852	4909	4932	6744	5058	4129	3915	3414	3794	6465	3798	6163	3727	25
+       107	3994	6806	2035	403	566	1625	10128	1827	1993	
+
+F 26   3923	*	*	*	3122	6826	4187	3444	5293	2776	*	4982	4637	4378	4261	4563	3798	2708	4956	5594	26
+       32	5505	*	1577	589	0	*	10188	1197	1383	
+
+C 27   5938	252	*	*	5783	4640	6550	*	*	6249	*	*	*	*	*	4246	6805	*	*	*	27
+       9	*	7406	*	*	*	*	10349	0	0	
+
+G 28   3791	*	*	6774	6718	2700	6729	5162	*	4754	5880	4232	5581	5161	5778	2060	2223	4499	*	4465	28
+       0	*	*	*	*	*	0	10369	0	1000	
+
+G 29   2073	5476	*	*	*	594	*	*	*	6756	*	*	*	6269	*	5747	*	4779	*	*	29
+       0	*	*	*	*	*	0	10383	0	1000	
+
+T 30   2948	5034	*	*	4785	6232	6713	4839	*	4686	*	5230	*	*	*	3086	1427	2464	*	6730	30
+       0	*	*	*	*	*	0	10383	0	1000	
+
+I 31   5346	*	*	*	4305	*	*	2303	5714	1174	4154	*	*	*	*	*	*	2956	5643	4192	31
+       0	*	*	2000	415	0	*	10387	1000	1000	
+
+L 32   *	*	*	*	*	*	*	1156	*	2080	7102	*	*	*	*	*	4824	1988	*	5641	32
+       53	4791	*	2894	209	*	*	10391	1571	0	
+
+S 33   3903	6844	3563	6704	5446	2778	4323	*	5211	*	*	2796	*	6907	5429	1843	3049	*	*	6711	33
+       0	*	*	*	*	*	*	10391	0	0	
+
+E 34   5275	*	3523	3641	*	4322	*	*	4137	6985	*	3019	1904	5774	3700	3144	3989	5492	*	6937	34
+       0	*	*	*	*	*	*	10411	0	0	
+
+F 35   *	*	2738	4456	7157	5110	*	5348	3821	5913	6779	2643	6772	4086	1962	3824	4439	6884	*	4736	35
+       56	5124	6734	1999	416	*	*	10447	1404	0	
+
+Y 36   5464	6659	6929	*	3413	*	2348	4791	*	3834	5853	6776	*	5962	5988	4936	3454	3405	2401	3369	36
+       33	5451	*	2755	231	0	*	10435	1270	1000	
+
+I 37   3697	*	*	*	5072	*	6774	1978	*	3697	5862	*	*	*	*	*	6844	999	6738	5848	37
+       8	*	7481	*	*	*	*	10452	0	0	
+
+L 38   4928	*	*	*	6539	*	*	2685	*	797	5089	*	*	*	6767	*	6734	2493	*	*	38
+       0	*	*	*	*	*	0	10448	0	1000	
+
+T 39   5082	*	6767	*	*	*	*	5233	6309	*	*	6596	6327	*	*	3375	348	5862	*	*	39
+       15	*	6587	*	*	*	0	10448	0	1000	
+
+A 40   957	*	*	*	*	*	*	*	5096	*	*	7136	5743	*	*	2035	3163	4585	5524	6527	40
+       0	*	*	*	*	956	1045	10434	0	1196	
+
+A 41   905	6857	*	6655	*	3584	6734	5530	3748	5790	*	4839	*	*	4500	3311	4536	6843	*	6818	41
+       0	*	*	2000	415	0	*	10448	1000	1000	
+
+H 42   5918	*	4375	5380	5972	5254	1289	5870	4232	6675	*	4402	6350	4331	5198	3002	3870	*	*	4323	42
+       18	7136	7481	1000	1000	*	*	10452	1000	0	
+
+C 43   6160	321	6626	*	*	6896	*	4713	*	*	*	4928	6850	*	*	5078	*	4114	*	*	43
+       70	*	4395	*	*	*	0	10448	0	1000	
+
+L 44   4683	5877	*	*	2728	6882	*	2783	6602	2229	5067	6017	*	*	*	4719	3934	2001	*	5847	44
+       94	4186	6966	1472	645	2807	223	10399	1952	2076	
+
+Y 45   3750	7415	3313	3829	4394	4039	4164	6889	3771	4160	4494	5156	4231	5279	4206	3514	5077	5268	6955	3471	45
+       68	6143	4956	2155	367	1157	859	10396	1189	2119	
+
+Q 46   5206	5887	2774	4267	6749	3119	5700	6237	3493	4748	5659	4609	3993	3932	4571	2831	4833	5923	6510	4620	46
+       126	4414	4760	2320	322	2175	361	10391	1947	2477	
+
+A 47   4429	*	3551	4777	6536	3269	5884	5846	3444	3863	4900	3758	3685	3906	3945	3910	3801	5146	*	4679	47
+       956	1139	5038	2564	267	800	1233	10363	7045	2874	
+
+K 48   4693	*	3494	3510	*	3492	6704	*	3653	7045	6612	3700	3649	4133	3735	3105	2942	5867	7113	5081	48
+       53	5598	6016	1000	1000	2931	203	10349	1208	2321	
+
+R 49   4118	*	3503	2959	7062	3543	5628	5923	3933	4281	6768	3841	3251	4005	4102	4172	4167	5813	6439	4891	49
+       51	6939	5246	1000	1000	1472	645	10367	1006	2483	
+
+F 50   4835	*	5408	5734	3146	4834	5126	3673	6713	2376	5349	4286	4430	5066	6990	4314	4020	3303	*	3439	50
+       25	5884	*	1659	549	2148	369	10363	1345	2514	
+
+K 51   4995	*	4238	3938	4374	4764	3879	3780	3336	4534	6944	5058	4508	4603	3546	3768	3419	4217	5844	4815	51
+       22	6760	7418	2461	289	1875	459	10383	1175	2155	
+
+V 52   3415	*	6707	4821	4290	4574	*	2833	4874	4243	5149	5603	*	*	*	6704	4803	1249	6897	5828	52
+       0	*	*	0	*	2684	244	10388	1000	1978	
+
+R 53   5079	6929	4620	5963	4028	5897	4385	4091	4338	3897	4865	5953	5280	5340	2401	4062	3375	3357	*	4053	53
+       31	*	5554	*	*	*	0	10392	0	1805	
+
+V 54   4413	6593	5695	5113	3435	4955	*	3114	7080	2032	6790	5249	4008	*	*	5239	5480	2306	6697	4499	54
+       0	*	*	2093	385	1924	441	10382	1221	2301	
+
+G 55   5160	*	4056	4081	4525	1185	5729	7331	4864	4629	5857	5892	5810	5188	4339	4117	6497	5687	*	4242	55
+       99	6944	4110	3170	170	1116	893	10414	1000	1929	
+
+D 56   4106	*	3600	4154	3959	4431	5882	4107	5196	5518	5353	3941	4184	5019	4511	2834	3525	4005	6221	4428	56
+       46	*	4990	*	*	3398	144	10347	0	2616	
+
+R 57   3283	*	3359	5807	5661	3945	3792	4260	5054	4443	6642	4053	3897	5163	4816	3435	3787	3963	6694	4124	57
+       12	6918	*	0	*	2696	242	10330	1043	3087	
+
+N 58   4008	5755	2736	3871	5066	4038	6393	5782	4046	4172	6582	3183	5932	5376	3827	3142	4186	5067	*	4855	58
+       69	*	4414	*	*	3827	105	10352	0	2770	
+
+T 59   4802	5452	6791	6482	3871	3939	*	3509	4654	3006	5805	6681	4466	4603	3813	2971	3649	5307	4467	3783	59
+       29	6655	6614	0	*	4027	91	10257	1176	3532	
+
+E 60   5713	*	3427	3958	6905	3509	4072	5005	5646	4763	6636	3160	3911	5249	4486	3623	3024	4282	5406	4587	60
+       34	6006	6961	3700	115	*	0	10251	1076	3530	
+
+Q 61   4178	5575	3194	3956	5775	4195	6522	4790	5635	4285	5636	4555	4321	5239	3081	3733	3215	3680	5768	5490	61
+       26	5804	*	647	1469	4057	89	10260	1162	3668	
+
+E 62   4775	6017	3719	5353	4413	4217	6597	5198	4848	4411	4831	3186	3418	5554	3753	2887	3840	3685	6526	*	62
+       71	5092	5759	1862	464	1322	737	10261	1405	3637	
+
+E 63   3411	*	3084	3784	4170	3923	5336	5447	4247	5244	*	3885	4240	4916	3781	3386	3602	5231	*	4791	63
+       332	4932	2534	2573	266	*	0	10418	1518	2966	
+
+G 64   4081	*	3501	3943	*	2525	*	5725	3927	4304	6494	3886	4361	5491	4345	3323	2981	6823	*	4501	64
+       144	4874	4043	4478	66	1935	437	10174	1352	5434	
+
+G 65   5347	4075	2861	4547	4848	3568	4770	6264	4430	6678	6433	3147	3248	*	5492	3006	3819	*	*	3978	65
+       13	6758	*	1585	585	2759	231	10195	1000	5192	
+
+E 66   3211	*	4238	3219	6350	3239	6812	4225	4430	5512	6498	5523	5524	4616	3896	3098	3438	4048	5580	5064	66
+       70	5200	5630	2721	237	1032	968	10257	1381	4684	
+
+A 67   3284	*	4332	3718	6736	4272	5213	4153	3768	5232	*	4398	4840	2276	3628	7021	3553	4402	*	5830	67
+       54	5178	6755	1949	433	846	1172	10292	1380	3333	
+
+V 68   5172	*	4546	5327	5473	4434	5123	2894	4867	4528	4767	6088	6841	4642	3110	3769	3044	3192	6885	3911	68
+       26	6858	6807	1585	585	1355	715	10496	1007	2185	
+
+H 69   3502	7051	5134	6934	3146	5255	3554	3069	5061	3537	5815	6773	*	4801	2844	5214	5933	4044	6744	3434	69
+       21	6097	*	1927	440	2500	281	10511	1320	1845	
+
+E 70   4093	*	3861	5378	6767	3608	6778	4605	3035	4864	6677	4184	3661	3817	3830	3926	3075	4859	*	4420	70
+       21	6120	*	1305	748	*	0	10514	1177	1669	
+
+V 71   3219	*	5809	5537	5955	7106	*	1742	*	5329	*	6751	5906	*	5833	4530	6005	1423	5937	6105	71
+       0	*	*	*	*	2202	354	10514	0	1669	
+
+E 72   3886	6836	2924	3034	*	5720	4330	4780	3554	4650	*	6988	5075	4229	3632	2791	3663	4771	*	6954	72
+       12	6914	*	1000	1000	*	0	10520	1006	1487	
+
+V 73   4212	*	5128	3339	5995	5773	4277	5504	2998	5477	5902	4182	5557	3505	3007	3176	3340	5982	5975	5900	73
+       54	*	4761	*	*	1859	465	10520	0	1487	
+
+V 74   3846	5722	6998	5413	3572	*	6724	1980	4954	4219	5902	6697	5656	6492	4542	5851	4227	2204	6784	4316	74
+       15	6602	*	2476	286	2937	202	10502	1190	2188	
+
+I 75   6540	5690	6917	5786	3164	6849	3712	2048	4715	3405	6776	5372	5725	6010	4471	4768	4100	3575	6959	3778	75
+       57	*	4683	*	*	*	0	10506	0	2019	
+
+K 76   5118	6772	5639	6797	4146	*	3954	2838	4215	3898	4653	4302	4284	5076	4395	3986	4297	2584	*	4279	76
+       41	6726	5751	1585	585	3570	127	10452	1000	2823	
+
+H 77   5231	*	4222	4232	6643	4663	1297	5718	4594	*	6866	3711	3643	5686	4751	3688	5789	*	*	4943	77
+       50	6659	5356	2228	346	1854	467	10428	1214	2948	
+
+N 78   5244	*	5258	3441	*	4865	6758	*	3916	*	*	4886	1054	5680	6537	2998	4663	6018	*	5664	78
+       67	5263	5716	1260	780	*	0	10433	1423	2887	
+
+R 79   4369	6715	2957	3138	4429	3398	4429	5129	3378	6753	5647	3125	5500	3948	4150	4494	7309	5544	*	5157	79
+       94	*	3992	*	*	2990	194	10408	0	3344	
+
+F 80   6397	5628	6667	*	1868	5170	5637	4799	6427	5016	*	4972	5240	6364	*	6580	*	5558	5039	1234	80
+       100	4779	5022	1890	454	4321	74	10364	1597	4044	
+
+T 81   *	6671	2554	3724	5090	5383	5204	5972	3725	5034	*	2625	4978	5695	3570	2964	3765	5014	6420	*	81
+       115	6923	3870	0	*	1812	484	10213	1000	4397	
+
+K 82   2983	*	3718	4264	4900	3378	5766	4923	3529	4227	4474	5125	3462	4300	4850	3462	4877	5844	6497	5553	82
+       96	4871	5063	3513	132	2031	405	10328	1453	4460	
+
+E 83   4560	*	3642	3287	4988	3497	4665	7275	3805	4392	6661	3739	4791	3578	5804	3298	3956	4577	5638	4669	83
+       193	3407	5009	855	1162	2861	214	10330	2596	4122	
+
+T 84   4714	*	3567	4979	4990	4972	6810	6769	4983	4391	4627	3767	3999	4403	5092	2506	2230	5356	5752	*	84
+       120	4930	4402	2178	360	1614	571	10341	1566	4238	
+
+Y 85   4423	5820	4608	6651	3146	3735	5743	4498	5029	3140	4648	4474	4155	3788	3567	4304	4669	6589	5813	3762	85
+       43	5683	6644	2927	203	2033	404	10363	1396	4057	
+
+D 86   5084	6852	2780	3396	5595	3667	5731	4169	4391	*	5768	3669	5075	3985	3975	3146	3552	5985	6540	5526	86
+       72	4361	*	1712	525	1224	806	10407	1712	3514	
+
+F 87   5366	*	3833	5891	4426	3992	3261	6866	5343	6708	5607	1741	5710	4391	5333	3570	5609	6541	*	3243	87
+       84	4136	*	2182	359	236	2727	10476	1972	2452	
+
+D 88   7005	*	654	5951	*	5865	4801	*	4873	6737	*	2671	6802	6615	5228	*	7050	5831	*	5977	88
+       19	6226	*	4087	87	*	0	10553	1076	1071	
+
+I 89   6062	7157	*	*	3622	*	*	1632	*	1978	6936	*	*	*	*	5945	*	2095	4528	5745	89
+       0	*	*	*	*	*	0	10553	0	1071	
+
+A 90   735	4795	*	6741	6226	3643	*	*	*	5467	4228	6848	*	6723	6165	3915	5518	3964	*	*	90
+       0	*	*	*	*	*	0	10553	0	1071	
+
+V 91   5767	*	*	*	4679	*	*	2281	*	1301	4779	*	*	*	5803	*	*	1854	*	*	91
+       0	*	*	*	*	*	0	10553	0	1071	
+
+L 92   5870	5779	*	6226	4064	6549	*	2138	*	1401	*	*	*	*	*	7036	*	1996	5907	*	92
+       0	*	*	*	*	*	0	10553	0	1071	
+
+R 93   *	*	6553	2955	6023	*	4819	4423	1574	5345	7005	5328	*	4613	2160	4954	5431	4334	*	*	93
+       35	5891	7157	2701	241	*	0	10553	1226	1071	
+
+L 94   5881	6658	*	*	4133	*	*	3551	*	578	6791	6194	5578	6960	*	*	4915	3716	*	*	94
+       22	7108	7005	0	*	*	0	10452	1000	1231	
+
+K 95   3058	*	2810	3544	*	4979	*	5758	2907	5019	7063	4066	4289	4897	4083	2939	4261	5189	*	5941	95
+       27	*	5774	*	*	*	0	10544	0	1394	
+
+T 96   4879	*	3996	2606	*	4084	5791	5540	3017	5909	*	4529	3990	3547	4253	3208	3294	4797	*	6653	96
+       37	*	5314	*	*	*	0	10502	0	1780	
+
+P 97   3369	*	3394	4576	6932	5245	*	6856	4539	5746	5818	4052	1449	4502	3664	3933	5706	6730	*	*	97
+       54	6770	5187	0	*	2007	413	10463	1000	2309	
+
+I 98   4260	*	*	*	3436	*	5158	1776	5661	2501	6836	4813	6652	5552	*	5005	5529	2569	6624	4970	98
+       27	5734	*	1709	527	2355	314	10476	1358	2595	
+
+T 99   4517	*	3080	3770	6301	4316	4450	5182	3279	4963	*	3991	3361	4470	3885	4301	3401	3960	*	6538	99
+       355	5344	2370	1397	689	2611	258	10473	1398	2271	
+
+F 100  4848	6588	4825	6421	1904	4965	6497	3873	6663	2872	5723	5590	4540	4863	6380	4537	3982	4262	5562	3750	100
+       94	4235	6673	1953	431	2590	262	10179	1759	5345	
+
+R 101  4459	*	3089	4816	4383	2964	*	4612	4106	6741	6616	3163	5541	6906	4506	2727	2892	4803	*	*	101
+       81	4197	*	0	*	2893	209	10252	1797	4849	
+
+M 102  3883	*	2336	4299	6731	4541	5143	5481	4359	4960	6931	3692	3081	4978	4668	3243	4557	4375	*	5139	102
+       56	*	4718	*	*	1389	694	10297	0	4412	
+
+N 103  5529	*	4255	4663	4199	2645	3856	5343	4646	3893	*	3785	4329	5732	4725	4359	3882	5045	6936	2864	103
+       45	5021	*	1684	538	1675	542	10432	1392	3798	
+
+V 104  3192	*	*	5744	3733	6618	6926	2330	*	3257	5637	6906	5792	6934	*	4757	4275	1816	5769	5103	104
+       16	6505	*	0	*	2099	383	10471	1043	2967	
+
+A 105  3855	5972	5197	6537	4215	3816	4276	5210	3351	4443	5749	4804	4006	2738	3618	3900	4236	4572	*	5689	105
+       25	7370	6510	0	*	*	0	10502	1000	2506	
+
+P 106  3865	*	6020	6038	4902	5904	*	3884	5217	4305	*	6738	1037	4263	6596	5054	4331	4369	6921	6689	106
+       21	*	6119	*	*	1748	510	10479	0	2680	
+
+A 107  1993	*	*	*	5026	5295	*	1829	4752	3703	5780	6095	5259	6294	4753	5001	5843	2946	*	6633	107
+       27	6670	6854	1000	1000	*	0	10494	1000	2532	
+
+C 108  3423	1270	6049	4674	*	4753	5908	5109	3807	4829	*	5863	4407	5146	4814	4387	4274	6595	*	6560	108
+       13	*	6804	1000	1000	548	1661	10482	1000	2701	
+
+L 109  7328	5760	*	6731	4523	6612	6728	2674	*	920	5225	*	*	6914	6753	5167	4480	3452	6753	*	109
+       143	*	3404	*	*	2075	391	10524	0	1632	
+
+P 110  2920	*	4807	6364	6727	3902	*	5335	6867	4032	6767	4551	1388	*	5771	3468	5469	5845	4790	5041	110
+       0	*	*	0	*	3920	99	10355	1000	3364	
+
+E 111  3631	6927	4080	3738	5617	5355	6710	5182	4468	3713	7027	3694	4435	4084	5066	3107	2984	4201	5843	4667	111
+       78	6280	4653	2322	322	3501	133	10360	1059	3216	
+
+R 112  3934	*	4204	3583	*	4458	*	6798	3225	5849	6781	3411	4293	3389	4094	3237	2990	4137	*	5560	112
+       100	5384	4532	1317	740	3994	94	10308	1263	3666	
+
+D 113  3606	6631	3229	4056	*	3128	6583	5003	3977	4130	6428	3663	3172	4458	5122	4058	3829	4285	*	7152	113
+       406	6567	2092	2807	222	4288	76	10288	1020	4151	
+
+W 114  4488	*	3825	3953	4513	6239	5239	3632	*	3314	5214	6761	3686	4992	5130	3892	2970	4350	4686	3338	114
+       98	*	3927	1700	531	3407	143	9972	1150	6734	
+
+A 115  4405	*	3100	2827	4097	*	5586	*	3966	3185	6087	3779	4682	4872	3967	3782	4323	3856	6376	6195	115
+       244	*	2685	*	*	5136	42	9822	0	6795	
+
+E 116  5135	5991	3949	3001	*	3902	*	4457	3907	4765	6400	3554	4598	3984	3095	3699	4138	4374	5802	4974	116
+       702	*	1377	1585	585	3044	187	9782	1000	7670	
+
+S 117  3707	5407	3441	3936	5345	2951	5390	5887	4560	4767	5449	3406	2663	3469	*	4024	5413	5772	*	*	117
+       195	4200	3797	1932	438	1302	751	9152	1310	8748	
+
+T 118  4415	6274	3947	4408	6128	4587	*	3283	3998	4614	4743	4196	4056	3383	4110	2992	3374	6400	*	5243	118
+       22	*	6040	2322	322	2614	257	9855	1033	7065	
+
+L 119  3969	*	5459	5117	3638	4791	4623	4075	4231	3103	4623	5474	2878	7070	*	4688	5429	2562	5406	4752	119
+       58	*	4663	*	*	1900	450	9938	0	6502	
+
+M 120  4325	5468	4573	3183	3639	4940	5580	5386	3233	3742	5082	5979	3421	5491	5316	3984	4821	3652	*	3788	120
+       30	*	5580	0	*	894	1115	10170	1000	5774	
+
+T 121  4106	6689	3896	4082	4993	5823	4813	5212	4355	3610	6697	3665	3262	3534	5120	4351	3648	3457	*	4794	121
+       34	*	5429	*	*	965	1036	10386	0	3784	
+
+Q 122  4190	*	3170	4228	5338	2036	4711	4935	5249	4839	*	3201	5497	3441	5856	4197	4381	5510	*	6024	122
+       23	*	5995	*	*	*	0	10447	0	2755	
+
+K 123  3404	6901	2592	3940	6626	4663	4632	5817	4047	4816	5192	5168	6649	4121	3619	3133	3328	5241	6879	6639	123
+       0	*	*	*	*	1412	680	10454	0	3066	
+
+T 124  3896	*	3725	3651	5313	*	5015	5998	3264	3834	4761	3843	4021	3792	4446	3431	4039	4197	6544	5228	124
+       20	7408	6993	0	*	*	0	10468	1000	2280	
+
+G 125  3223	2389	*	6737	4384	3103	*	4390	6613	2750	*	*	6874	*	*	6143	5624	2415	6466	3645	125
+       18	*	6368	*	*	1596	580	10467	0	2428	
+
+I 126  4863	6722	4117	4415	4832	6980	4839	3206	4491	3507	5824	5137	5238	4911	4766	3952	2770	3883	5412	3510	126
+       0	*	*	*	*	420	1986	10462	0	2149	
+
+V 127  4091	6803	6658	*	3262	5874	6827	2699	*	2715	3676	6333	*	4819	7093	4057	3851	2283	5812	*	127
+       12	*	6975	*	*	941	1061	10462	0	1161	
+
+S 128  3443	6692	6770	*	3549	4254	5673	3958	6025	3672	5336	4573	4537	5889	6962	3688	3065	2426	6994	4384	128
+       14	*	6685	*	*	*	0	10562	0	1170	
+
+G 129  4788	7041	*	4434	6770	699	5649	6768	6816	6952	6754	5671	*	6995	6076	3496	3840	5125	*	*	129
+       68	6882	4746	1585	585	*	0	10541	1007	1365	
+
+F 130  6574	6556	*	*	2729	*	5952	4415	6578	4361	6505	6890	*	5744	*	4760	6786	5182	1493	2065	130
+       81	6275	4594	0	*	*	0	10516	1054	2247	
+
+G 131  4608	6789	3669	5068	6525	1051	6593	*	5164	*	*	4267	5210	5785	5652	3446	4785	4746	*	5182	131
+       137	4109	4927	626	1507	2749	232	10464	2133	3075	
+
+R 132  3749	*	5230	5127	4647	4332	4931	4840	4783	3589	5057	5066	5925	4543	3834	3084	3258	3621	5790	3600	132
+       81	6356	4565	1000	1000	3743	112	10425	1012	3388	
+
+T 133  5121	*	4332	4402	4571	3538	5706	4727	5584	5343	5616	2804	4562	4186	5212	3337	2627	4251	*	4557	133
+       188	*	3036	0	*	1877	459	10403	1000	3901	
+
+H 134  3590	*	3834	4244	5419	3718	5277	5386	3314	4253	*	3808	5398	4372	4016	3728	3589	4007	6573	4169	134
+       144	4160	4679	1409	682	990	1010	10287	1874	4836	
+
+E 135  3647	5793	3304	3250	4600	3861	4531	*	3712	4150	*	5037	3106	4642	5089	3946	4151	5740	6081	4674	135
+       103	4604	5177	2201	354	1994	417	10384	1797	3713	
+
+K 136  5591	*	3767	3623	4983	2341	4719	*	3718	5721	7056	3888	4276	4820	3985	3680	3413	5570	*	4492	136
+       40	6771	5779	715	1355	2372	310	10401	1352	3506	
+
+G 137  3754	*	3543	4748	4896	1544	6238	4684	5648	5786	*	3630	*	4612	5142	3269	4869	5018	6967	6740	137
+       134	4522	4472	3159	171	1881	457	10412	1672	3347	
+
+R 138  4712	*	4837	5124	4098	4847	4560	4803	3060	4485	*	3662	2986	4755	4151	3172	3788	4706	*	4571	138
+       15	*	6587	*	*	2373	309	10389	0	3454	
+
+Q 139  5012	*	4411	4940	4562	3513	5772	4440	3821	4058	5099	4677	3268	5963	4816	3104	3668	3386	5512	5150	139
+       120	4052	5686	865	1149	559	1638	10417	2061	3179	
+
+S 140  3377	6855	4546	3860	6984	3445	4511	4698	4475	5013	7043	5838	3394	4825	6849	2335	3835	4012	*	5013	140
+       26	*	5801	*	*	833	1188	10395	0	2178	
+
+T 141  4405	6797	3990	3856	6801	3598	5693	*	3649	4230	6519	4256	3213	4177	3499	3500	3942	4907	*	3915	141
+       46	6099	5917	0	*	*	0	10502	1220	1808	
+
+R 142  5945	6568	3780	3452	4513	4694	6657	4528	4162	3575	5753	4097	4324	4424	3624	3990	3669	3752	5578	4563	142
+       43	5599	6866	1881	457	1874	459	10399	1260	2134	
+
+L 143  5819	6517	*	5924	4748	6931	5761	4096	5834	1756	4007	5059	2844	4829	5143	4430	5591	3026	*	4872	143
+       18	6304	*	1000	1000	2756	231	10407	1059	1992	
+
+K 144  4135	*	5061	4597	5722	4877	4606	4253	3067	4354	4632	4526	5014	2837	2813	*	3806	5181	*	4033	144
+       0	*	*	*	*	*	0	10404	0	1825	
+
+M 145  4396	5168	4811	3578	4229	5251	5836	5190	3110	3909	4607	4189	4936	4136	5090	3776	3960	4151	4375	4577	145
+       50	5760	5987	3716	114	2504	280	10404	1174	1825	
+
+L 146  3584	6597	7055	4984	4791	3609	5780	3138	4838	3752	5768	4691	5339	5820	4371	4809	3156	3238	6512	3388	146
+       0	*	*	*	*	*	0	10505	0	2013	
+
+E 147  5421	*	3583	2804	5732	3912	4317	5048	4552	5788	5657	3468	4808	5298	5820	3799	3087	3795	6512	4007	147
+       28	6286	7329	2322	322	1591	582	10505	1054	2013	
+
+V 148  4403	6544	*	4792	3749	4491	*	3824	5417	2722	3756	5244	*	4574	4541	4656	4368	1988	*	5967	148
+       10	*	7112	*	*	1463	650	10523	0	1773	
+
+P 149  4628	*	4703	4462	5277	5920	4553	4538	3533	4220	6394	3395	2981	3907	3692	3315	3974	4563	*	5396	149
+       0	*	*	*	*	389	2081	10525	0	1575	
+
+Y 150  4454	*	*	5372	5272	4579	5853	2655	4703	2707	4427	*	4831	5822	4967	3647	3701	2447	*	5406	150
+       24	6862	7026	0	*	0	*	10556	1004	1000	
+
+V 151  4346	*	5229	5857	5367	4889	7189	3079	4306	2549	3495	6371	*	5430	4096	4434	4298	2738	5874	4166	151
+       48	6792	5386	2807	222	*	0	10556	1000	1016	
+
+D 152  3758	*	3293	2806	*	3847	*	6114	4237	6895	*	3834	2779	5900	5009	2816	4302	4708	*	4602	152
+       19	*	6261	*	*	*	0	10534	0	1595	
+
+R 153  5275	6906	4188	5301	4599	4301	5006	4866	3225	4205	5963	3286	4045	3736	3149	5948	3377	4782	6639	4600	153
+       63	*	4546	*	*	*	0	10431	0	1899	
+
+N 154  3721	6268	3126	3079	5765	4880	5864	6874	3650	6932	6668	4237	4133	3501	4003	3251	4198	6932	5163	4437	154
+       0	*	*	*	*	*	0	10373	0	2781	
+
+S 155  5126	5730	2973	2330	4656	4741	5959	6004	4446	4016	4777	4917	*	4852	4544	3609	3591	5079	6740	4085	155
+       26	*	5780	*	*	*	0	10373	0	2781	
+
+C 156  5153	473	5743	*	6386	6597	*	5787	5628	*	6650	*	5771	6567	5005	4673	3992	*	*	*	156
+       87	5590	4737	2308	325	2088	387	10346	1379	3137	
+
+K 157  4485	*	3715	3699	6688	4652	6726	6785	2988	6010	6598	2816	5904	2591	3464	3335	5630	5120	*	5728	157
+       66	5356	5605	2823	220	*	0	10335	1294	3287	
+
+L 158  3470	5796	4260	3977	4713	5103	7080	5436	3446	3878	5128	4292	4271	4696	3638	3480	3692	4355	6501	4597	158
+       32	*	5500	1000	1000	3014	191	10309	1000	3690	
+
+S 159  3299	5760	4298	3380	5100	4566	5617	4655	4554	3320	4459	4711	5079	3816	4472	3676	4096	4899	*	4074	159
+       13	*	6790	*	*	1719	522	10314	0	3724	
+
+S 160  5142	5369	4067	5689	3481	7034	4790	4674	4553	3108	4322	4331	4843	5178	3969	3930	4645	6701	5217	2562	160
+       256	3320	3995	1490	635	2032	405	10371	2912	3081	
+
+S 161  4105	*	5052	2927	*	2292	4485	6320	3516	5224	6562	4331	4189	4495	4795	2683	4566	6462	*	*	161
+       136	3936	5355	2994	193	3332	151	10267	2084	3814	
+
+F 162  *	*	3088	3867	3276	4059	6874	4678	5058	3396	6542	4554	4397	6556	3252	4429	3273	5162	6434	3790	162
+       531	1914	4550	1642	557	2446	292	10285	4992	4057	
+
+I 163  4342	*	5631	4949	3630	3509	6733	3571	4689	4150	5609	4332	4638	4284	3797	5621	3602	3348	6285	3418	163
+       64	4938	6508	560	1635	1341	724	10268	1540	4141	
+
+I 164  4413	6712	4105	5179	3296	5717	5599	3361	5276	2238	4384	5621	4832	5842	5793	5364	5243	2895	6155	4533	164
+       11	7011	*	0	*	1795	490	10379	1000	3286	
+
+T 165  4516	*	3263	3563	5939	3421	5071	5160	4281	3777	*	2983	4264	4630	5714	3580	2869	*	6817	6889	165
+       0	*	*	1000	1000	1750	509	10443	1000	2638	
+
+Q 166  3714	6808	3463	3089	6842	4357	4543	6852	3923	5420	5962	3453	3088	3913	5893	3010	4938	5798	6638	6019	166
+       24	6942	6935	3585	126	*	0	10471	1000	2129	
+
+N 167  4358	*	3261	3629	6383	3640	4922	*	4600	3998	6725	3238	5885	4607	4330	2841	3218	5099	*	4728	167
+       48	5255	7285	1779	497	*	0	10468	1348	2295	
+
+M 168  4892	*	4854	3657	3771	4586	3154	4203	4158	4026	3207	4006	6665	3579	5416	4866	4794	4150	6829	5029	168
+       84	4713	5774	775	1266	3216	164	10366	1562	2438	
+
+F 169  4854	*	6376	*	1915	5706	6605	2335	5805	2282	3979	6709	*	6541	6407	6804	5062	3734	*	5184	169
+       30	6670	6568	0	*	*	0	10345	1029	2600	
+
+C 170  5162	496	5343	*	5930	6791	*	*	*	4906	6744	4388	5610	*	6806	4663	6080	5623	6625	6893	170
+       56	6975	5048	0	*	1864	463	10320	1000	2774	
+
+A 171  1628	6785	6665	5192	6248	4157	*	4017	7364	4645	4241	5250	5605	5664	*	4885	2890	2760	*	5844	171
+       257	4809	2970	1738	514	3481	135	10298	1591	2782	
+
+G 172  4711	*	6097	3287	*	1944	5375	5017	3154	4598	6789	4974	*	4515	4441	3666	4210	3784	*	4636	172
+       471	4378	2118	875	1137	2648	251	10242	1751	4540	
+
+Y 173  4624	*	3655	4149	3654	3543	6470	6538	5370	4027	6275	3644	3498	5253	6275	3363	4529	3903	6223	3190	173
+       93	*	4001	*	*	1856	466	9849	0	6606	
+
+D 174  4409	6696	3611	4363	5306	3481	6382	4196	4022	4486	6409	5369	2916	5116	4861	2900	4865	3494	*	4772	174
+       68	4449	*	1718	523	370	2145	10038	1586	5934	
+
+T 175  4042	*	3640	3441	4779	4133	4231	4881	4888	5314	6777	3131	3620	4770	4695	3103	3644	4531	*	6967	175
+       73	4819	6164	0	*	*	0	10382	1536	2283	
+
+K 176  4808	*	4472	3984	4693	2333	5777	5892	4785	4099	5919	3928	4509	3213	5232	3670	4083	4794	5774	4768	176
+       62	7021	4867	1310	745	1853	468	10379	1179	2619	
+
+Q 177  3903	6697	3191	4568	4761	3198	5229	5862	4795	4430	*	3274	4468	5309	3956	3045	3508	5528	6406	5715	177
+       28	6686	6685	3170	170	1928	440	10353	1000	2863	
+
+E 178  3288	6656	3623	5094	*	3940	5907	4853	3596	3923	5241	4247	4320	3753	3863	3623	3052	5700	6632	6774	178
+       83	4457	6547	2110	380	1215	813	10475	1749	2549	
+
+D 179  3891	*	2651	4485	5514	2526	*	5755	6071	5676	7384	3689	4237	3763	3425	3693	3768	6728	*	5886	179
+       36	5335	*	2202	353	2565	267	10386	1342	2042	
+
+A 180  3003	7059	6832	4484	4217	4910	*	3392	4871	3565	6728	7063	3585	5869	4905	3662	2868	3169	7011	5176	180
+       49	5791	6035	3197	167	1378	701	10410	1183	1844	
+
+C 181  4762	1003	4814	5849	5005	4543	5192	5317	*	4857	5905	4885	7013	6857	5267	4781	4631	5244	5671	4853	181
+       26	5819	*	4112	86	2374	309	10535	1205	1815	
+
+Q 182  3955	6773	4836	4455	4881	3474	4017	6699	5855	5344	4780	3077	3062	3565	3977	4124	4364	5799	4797	5262	182
+       33	6929	6112	1000	1000	443	1920	10536	1006	1628	
+
+G 183  4284	6843	4845	4240	4863	902	6779	5400	5818	4749	5859	5459	6654	5711	4957	7071	5964	4291	*	5706	183
+       21	6839	7453	0	*	1385	697	10554	1000	1379	
+
+D 184  5266	*	1068	4003	4733	4375	*	6297	7018	6563	7137	3577	6745	4305	5710	4756	4313	4825	7358	5699	184
+       24	5924	*	2906	207	*	0	10555	1192	1348	
+
+S 185  4002	*	5897	5221	4752	5274	5750	4507	6883	3393	5855	5940	4423	6578	4700	1333	4000	4124	6735	6706	185
+       11	6985	*	3170	170	614	1528	10555	1000	1348	
+
+G 186  4995	*	6633	6793	*	173	*	*	*	6956	6924	6867	6603	*	*	5200	*	*	*	*	186
+       0	*	*	1585	585	0	*	10549	1000	1000	
+
+G 187  2740	5896	4644	5839	7063	1410	*	6777	*	5252	5303	5380	*	*	*	1961	5044	6589	*	6639	187
+       8	*	7491	*	*	*	*	10553	0	0	
+
+P 188  3042	*	*	*	*	2973	*	6633	*	*	*	*	663	7060	6583	4553	5349	5342	*	*	188
+       13	*	6827	*	*	*	0	10549	0	1000	
+
+H 189  4166	*	*	*	4779	*	7151	2842	*	1375	4463	6514	*	*	*	*	6642	1876	5168	6719	189
+       82	4174	*	1203	822	*	0	10538	2085	1176	
+
+V 190  5142	*	*	5129	2591	*	*	2476	6770	3042	3942	*	6316	6339	*	6810	4557	2227	4801	3715	190
+       37	5856	6909	1395	690	967	1033	10538	1391	1176	
+
+T 191  4854	2320	6831	4973	4290	6630	5348	3823	6002	3921	6637	3789	7073	4769	5307	4180	3824	3145	5902	3661	191
+       91	4171	7443	1336	728	895	1114	10527	2013	1197	
+
+R 192  4917	*	3474	3283	6884	3814	5813	4844	3120	3880	5721	2837	6030	4423	3520	5869	3971	4788	*	4883	192
+       49	6815	5348	0	*	1033	967	10538	1024	1176	
+
+F 193  4813	*	3695	3639	4891	2805	4261	4798	4098	3522	*	3505	5844	4363	5040	4045	4228	3755	6948	5953	193
+       63	5819	5327	1455	655	*	0	10529	1195	1570	
+
+K 194  4314	*	2930	3077	*	2516	6749	7407	3447	*	5745	2545	6520	4464	6934	3703	3915	6660	*	6514	194
+       325	5852	2439	2967	197	1193	830	10515	1175	2166	
+
+D 195  6532	*	3482	3755	5510	1490	6719	6485	3609	6550	*	3119	5529	4618	4402	3859	5073	6486	*	*	195
+       256	3219	4178	1695	533	3557	128	10309	2733	4777	
+
+T 196  6588	*	6540	3653	6383	3743	5576	4494	3883	6457	6655	3344	*	3523	2070	3695	3244	4551	*	6759	196
+       146	5018	3939	1484	638	4875	50	10198	1332	5192	
+
+Y 197  3512	5085	*	4440	3694	5669	4284	4282	5357	4084	6315	5363	3806	*	4363	6374	5488	4406	2338	3089	197
+       11	7039	*	0	*	3365	147	10095	1000	5788	
+
+F 198  5126	6414	*	6414	3341	*	5369	3667	4055	5408	5287	*	*	4146	3911	5443	2891	3139	*	2043	198
+       0	*	*	*	*	0	*	10161	0	5434	
+
+V 199  5714	*	*	*	5193	*	7171	3037	*	1085	5676	*	6409	3257	*	*	5276	2478	*	6365	199
+       0	*	*	*	*	*	*	10553	0	0	
+
+T 200  3674	4480	*	*	4899	7038	4081	2424	*	3546	7491	*	*	5956	5345	6875	4618	1862	*	2901	200
+       0	*	*	*	*	*	*	10553	0	0	
+
+G 201  3316	*	*	*	*	230	*	*	*	6365	*	6792	*	*	*	7113	5773	*	*	*	201
+       8	*	7491	*	*	*	*	10553	0	0	
+
+I 202  6844	*	*	6740	5790	*	*	1430	*	2424	4911	6583	*	*	*	5881	4397	1745	*	*	202
+       18	6325	*	1432	668	0	*	10549	1241	1000	
+
+V 203  3069	*	6701	*	3912	4969	4471	3342	6752	2469	5889	4365	6634	5208	5802	5450	3658	2345	*	5653	203
+       41	5839	6609	2838	217	*	*	10530	1185	0	
+
+S 204  3592	*	4557	7223	*	5806	5794	3656	6826	4138	5628	5037	*	6684	*	1135	3389	3906	*	6794	204
+       103	5568	4385	1775	499	0	*	10554	1256	1039	
+
+W 205  5216	6643	*	*	2808	3287	4550	*	4433	4594	*	4109	5676	5275	4457	3966	4018	4714	3400	2473	205
+       85	4658	5838	1006	994	307	2381	10350	1564	1745	
+
+G 206  3494	*	4659	6697	6671	1224	6509	5133	5134	5035	6691	5316	5000	5068	5631	3557	3903	4114	*	*	206
+       98	5745	4418	2077	390	1665	546	10192	1368	1401	
+
+E 207  3973	*	4329	3511	4668	4569	4354	4957	4023	4488	6398	3844	3397	5706	4494	3193	3466	5404	*	3902	207
+       269	3079	4275	1617	569	1636	560	10182	2836	2087	
+
+G 208  3592	5537	3327	3506	4570	3054	5527	6336	3590	5230	6456	2953	5533	5379	4229	4291	4467	5046	*	4811	208
+       366	2246	6241	1035	966	1676	541	10059	3965	2603	
+
+C 209  6575	1133	4170	3686	*	5707	5645	5600	6348	5524	*	4484	4998	*	6256	2780	5725	4948	6575	6599	209
+       245	4416	3192	1355	715	1198	826	9976	1648	2270	
+
+A 210  3931	3011	3994	3763	4711	2642	6641	*	*	5007	6502	4166	4778	4899	4859	3150	3442	5720	*	4658	210
+       71	*	4371	*	*	3626	122	9973	0	3372	
+
+R 211  4768	6307	4047	2882	6544	2899	*	6444	4066	4123	6401	3616	6608	5417	3184	3489	3665	4357	*	5194	211
+       122	4956	4356	853	1163	1755	507	9918	1347	3846	
+
+K 212  5565	4928	4788	4306	5268	4789	5455	6452	3371	3137	*	5008	3041	4443	4225	2879	3065	5477	*	5461	212
+       46	5370	7149	2183	359	875	1136	9926	1372	3663	
+
+G 213  5061	6703	3372	3728	4438	1979	5414	5749	4791	6460	*	3808	6195	5064	3581	3347	3455	6501	*	*	213
+       136	*	3471	1585	585	701	1378	10064	1033	2384	
+
+K 214  3929	*	3390	4829	4555	3721	6423	3979	3885	3335	6474	4000	4959	6515	3722	4048	3982	6126	5409	3486	214
+       10	*	7208	*	*	1121	888	10086	0	3003	
+
+Y 215  3929	*	5535	5136	3952	5102	6608	3698	6585	3754	5590	5691	1316	5379	*	6563	4387	6783	*	3548	215
+       16	*	6518	*	*	1688	536	10059	0	2225	
+
+G 216  2866	6223	2735	3244	5037	2898	5612	4942	*	4055	7049	4479	4518	*	4986	3181	5545	5303	*	4997	216
+       51	4834	*	1641	558	2391	305	10075	1435	1994	
+
+I 217  4336	*	*	6573	5029	4304	6923	2992	6311	2489	5682	6438	6364	*	5476	4886	4681	1535	7084	4536	217
+       0	*	*	*	*	1342	724	10112	0	1778	
+
+Y 218  4242	6738	6611	6587	1551	4332	5093	4995	*	4805	6312	5504	*	*	6389	4731	6499	3826	*	1922	218
+       0	*	*	*	*	542	1675	10140	0	1405	
+
+T 219  3014	*	6347	*	6551	4909	6558	3733	6797	3843	5139	4358	*	4606	*	3532	1579	3107	*	*	219
+       15	6641	*	0	*	*	0	10185	1028	1000	
+
+K 220  4052	*	2557	4388	5551	4992	6481	*	3632	6687	6763	2922	4608	5228	2003	4157	6420	6442	6750	5584	220
+       0	*	*	*	*	*	0	10185	0	1000	
+
+V 221  6534	*	*	*	*	*	*	1950	*	2264	5611	*	6442	*	*	6477	4138	1283	*	6481	221
+       38	5251	*	481	1819	*	0	10185	1321	1000	
+
+T 222  2632	6685	4204	5694	4022	4043	4641	6470	5644	5420	4939	5627	4740	6841	3348	2650	3823	4311	5534	4666	222
+       16	*	6502	3000	193	0	*	10170	1000	1000	
+
+A 223  3385	6742	4116	5181	4273	4919	4570	6607	4268	4961	6539	5047	3060	4352	3698	2848	4337	6719	*	3268	223
+       14	6650	*	1000	1000	*	0	10145	1000	1017	
+
+F 224  *	*	5010	5430	2641	*	2528	5131	6961	4660	6320	5502	*	5610	4602	4216	6541	4605	*	1582	224
+       14	6723	*	1585	585	*	0	10129	1006	1017	
+
+L 225  3339	6806	6530	4606	4956	5958	6464	3701	3909	2604	4996	6650	*	6591	3166	3899	3493	3084	5976	5654	225
+       0	*	*	*	*	0	*	10129	0	1017	
+
+K 226  4783	*	1949	3518	*	5753	4731	*	3288	*	*	3797	2532	4549	4057	3825	5006	6713	*	*	226
+       0	*	*	*	*	*	*	10162	0	0	
+
+W 227  6435	*	*	5399	2803	*	*	6379	*	4898	5365	6547	*	*	*	5484	*	6307	529	6290	227
+       0	*	*	*	*	*	*	10094	0	0	
+
+I 228  *	*	*	*	4540	*	*	493	*	2836	5075	*	*	*	6263	*	*	3972	*	*	228
+       19	*	6260	*	*	*	*	10038	0	0	
+
+D 229  4955	6124	4681	2274	*	5552	6559	5266	2733	3385	5516	5476	*	3134	3399	4796	4770	3682	*	*	229
+       0	*	*	*	*	0	*	9938	0	1020	
+
+R 230  4345	*	2817	3143	*	4589	4832	*	4056	6184	*	3191	*	2989	4434	2311	4780	*	*	5291	230
+       0	*	*	*	*	*	*	9758	0	0	
+
+S 231  3902	*	5891	4677	4684	*	6120	3965	6277	5576	6127	2772	*	3833	6185	4744	2188	2262	*	5952	231
+       0	*	*	*	*	*	*	9731	0	0	
+
+M 232  6082	*	*	*	5975	*	*	1846	*	2304	2488	*	*	5988	*	4327	3079	2984	*	*	232
+       0	*	*	*	*	*	*	9536	0	0	
+
+K 233  3228	*	3557	2988	*	*	5733	5813	2181	*	*	2245	*	3000	4477	*	5719	5309	*	*	233
+       0	*	*	0	*	*	*	8916	0	0	
+
+//
+�HHsearch 1.5
+NAME  674c81cff4c6c504dd50e35c2bf78401
+FAM   
+FILE  674c81cff4c6c504dd50e35c2bf78401
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:42:54 2013
+LENG  150 match states, 150 columns in multiple alignment
+FILT  72 out of 74 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  3.1 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCEEEECCCCCCCCCCCCCCEEEEECHHHHHHHHHHCCCCCCCCCCCCCCEECCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCEEEEEEEE
+CCCCCCCCCCCCCCCCCCCEEEEEECCCCEEEEEEEECCCCCCCEEECCC
+>ss_conf PSIPRED confidence values
+9757705888886657655410568799999987548987786788898131277555443235677864463457873123445677788767884220
+47873578877668899971899968998899998505688897040689
+>Consensus
+xxxxtCxxxxxxxxxxxxxxkxxxxxqxxAxxxaxxAxxtxGkxxsxYPHxFxNxxxxxxxxxxxxexixFxxxxCxxpxxxxxxxxgxxxxxlxEfPix
+xxgxxYxxxskxxxxxPGpxRVIyxxxxxxfCGiitHtgxnxgxFxlCsx
+>674c81cff4c6c504dd50e35c2bf78401
+AVTWTCLNDQKNPKTNKYETKRLLYNQNKAESNSHHAPLSDGKTGSSYPHWFTNGYDGDGKLPKGRTPIKFGKSDCDRPPKHSKDGNGKTDHYLLEFPTF
+PDGHDYKFDSKKPKENPGPARVIYTYPNKVFCGIIAHTKENQGELKLCSH
+>gi|262367755|pdb|2KAA|A Chain A, Solution Structure Of Hirsutellin A From Hirsutella Thompsonii
+-PIVTCRPKLDGR------EKPFKVDVATAQAQARKAGLTTGK--SGDPHRYFAG-----------DHIRWGVNNCDK-----------ADAILWEYPIY
+WVGKnaEWAKDVKTSQQKggPTPIRVVYANSRgaVQYCGVMTHSKvdkNNQgkEFFEKCD-
+>gi|115388805|ref|XP_001211908.1| predicted protein [Aspergillus terreus NIH2624]gi|114195992|gb|EAU37692.1| predicted protein [Aspergillus terreus NIH2624]
+-QVYTCKRGANND-----GELIGKVPQDKAIGHFREAKTKAGK--SGYPKRFYNN-----------ENLKFKKG-CRD-----------KKVELWELPVL
+NGGQRYAYDKPKQEAPPGPMRVYYTKD-LKFCGIGTKSNrDNSGPVHLCK-
+>gi|238501164|ref|XP_002381816.1| conserved hypothetical protein [Aspergillus flavus NRRL3357]gi|220692053|gb|EED48400.1| conserved hypothetical protein [Aspergillus flavus NRRL3357]
+---------------------------------------------RRYPHQFFNK-----------DEITWGNERCNKPE-------GGEQPVLLEFPIL
+LDKSqkkaiqeLYNYKQLKPRPEPGPCRIVTRKKGDDLCGVMCHIEygkKDAkPGFKRC--
+>gi|3915848|sp|P00654.4|RNU2_USTSP RecName: Full=Ribonuclease U2; Short=RNase U2gi|257472077|pdb|1RTU|A Chain A, Ustilago Sphaerogena Ribonuclease U2gi|300193153|pdb|3AGN|A Chain A, Crystal Structure Of Ustilago Sphaerogena Ribonuclease U2 Complexed With Adenosine 3'-Monophosphategi|300193154|pdb|3AGO|A Chain A, Crystal Structure Of Ustilago Sphaerogena Ribonuclease U2 Complexed With Adenosine 3'-Monophosphategi|300193158|pdb|3AHW|A Chain A, Crystal Structure Of Ustilago Sphaerogena Ribonuclease U2 Complexed With Adenosine 2'-Monophosphate
+-------------------------DINTAIQGALDDVA-NGDRPDNYPHQYYDE-----------ASEDITLC-CgSG--------------PWSEFPL
+VYNGPYYSSRD--NY-vSPGPDRVIYQTNTGEFCATVTHTGAASyDGFTQC--
+>gi|115402733|ref|XP_001217443.1| predicted protein [Aspergillus terreus NIH2624]gi|114189289|gb|EAU30989.1| predicted protein [Aspergillus terreus NIH2624]
+--------------NRQYAAHKYTVNQIQAAFRAGINLQSKGKqTgDNHYPHNFRNG-----------DRLALGA--CGN------------TRTKSEFP
+IQIDGKTYSGG----KVDAVPDRVIYEYKEskktleVWFCGIVRHGTGN--NFLNC--
+>gi|336364646|gb|EGN93001.1| hypothetical protein SERLA73DRAFT_146126 [Serpula lacrymans var. lacrymans S7.3]
+------------------------------------NPTPTATNGVIYPHRFSNN-----------ERITFHN--CPA------------AQTLVEYPLR
+L-----------PTEvGAARHRVVYDYNKpHQFCGCMTHDGAIGNQFVAC--
+>gi|83766539|dbj|BAE56679.1| unnamed protein product [Aspergillus oryzae RIB40]
+-------------------------------------NTQVGR--NRYPHQFNNR-----------EALQIPEE-FR-------------NRRLQEFPIL
+RG-QIY------SGQAPGAMRVILAQVGnnWLLAGVMRHPTGRGNAFELCQ-
+>gi|154296967|ref|XP_001548912.1| predicted protein [Botryotinia fuckeliana B05.10]gi|150843099|gb|EDN18292.1| predicted protein [Botryotinia fuckeliana B05.10]
+-----------------------TYDQSAIDAACKQALLlasekkTVGK--DKYPHAYNDY-----------EKFTFIPA--A------------KKPYL
+-EFPILSNGATYTGSD---PASPGADRIVIGSiatdyKSAIFCAVITHDGSTKNGFTEC--
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+A 1    423	*	*	*	*	*	*	*	*	*	*	*	*	*	1976	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1206	0	0	
+
+V 2    2130	*	*	*	*	*	*	*	*	*	*	*	2496	1442	*	*	*	2143	*	*	2
+       0	*	*	*	*	*	*	2162	0	0	
+
+T 3    *	*	*	*	*	*	*	3985	*	*	2766	*	*	*	*	3797	890	3185	*	3875	3
+       0	*	*	*	*	*	*	2567	0	0	
+
+W 4    *	*	*	*	*	*	*	3898	*	*	*	*	*	*	*	4181	*	1719	1094	3243	4
+       0	*	*	*	*	*	*	2596	0	0	
+
+T 5    *	*	*	*	*	*	*	4417	2874	*	*	*	*	*	*	*	292	*	*	*	5
+       0	*	*	*	*	*	*	2661	0	0	
+
+C 6    *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	6
+       0	*	*	*	*	*	*	2661	0	0	
+
+L 7    *	*	*	3217	*	*	*	3611	1278	2694	3700	*	*	*	4293	4343	3911	*	*	*	7
+       0	*	*	*	*	*	*	2661	0	0	
+
+N 8    *	*	*	*	*	*	*	*	*	*	*	1153	1338	*	3357	*	4135	*	*	*	8
+       0	*	*	*	*	*	*	2661	0	0	
+
+D 9    *	*	2809	2752	*	3357	4417	*	2486	*	*	*	*	2196	4042	*	3226	*	*	*	9
+       0	*	*	*	*	*	*	2661	0	0	
+
+Q 10   3357	*	*	4323	*	*	*	*	4343	2568	*	2266	*	1229	*	*	*	*	*	*	10
+       0	*	*	*	*	*	*	2661	0	0	
+
+K 11   *	*	2657	3676	*	*	*	*	2706	3611	*	1579	2874	*	*	4135	*	*	*	*	11
+       0	*	*	*	*	*	*	2661	0	0	
+
+N 12   *	*	*	3807	*	3212	*	*	*	*	*	869	*	3911	*	2644	4417	*	*	*	12
+       0	*	*	*	*	*	*	2661	0	0	
+
+P 13   *	*	3357	3217	*	*	*	*	4135	2874	*	*	2111	*	4293	2076	3611	*	*	*	13
+       1674	*	542	*	*	*	*	2661	0	0	
+
+K 14   *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	14
+       0	*	*	*	*	*	0	1206	0	1548	
+
+T 15   *	*	*	*	*	*	*	*	*	*	*	1891	*	*	*	*	453	*	*	*	15
+       0	*	*	*	*	*	0	1512	0	1548	
+
+N 16   *	*	*	*	*	2407	*	*	*	*	*	884	*	*	1891	*	*	*	*	*	16
+       0	*	*	*	*	*	0	1512	0	1548	
+
+K 17   *	*	*	*	*	*	*	*	453	*	*	*	*	1891	*	*	*	*	*	*	17
+       0	*	*	*	*	*	0	1512	0	1548	
+
+Y 18   *	*	*	*	*	*	*	*	*	*	*	*	2407	*	*	*	*	*	2451	670	18
+       0	*	*	*	*	530	1701	1512	0	1548	
+
+E 19   2653	*	3706	1446	*	2553	*	*	*	*	*	*	3209	*	*	*	3075	*	*	*	19
+       409	3075	2967	1000	1000	1943	435	2531	1066	1150	
+
+T 20   3140	*	3326	2528	*	*	*	2989	*	*	*	3406	*	*	*	*	1697	3557	*	*	20
+       0	*	*	*	*	0	*	2448	0	1198	
+
+K 21   *	*	2969	*	*	*	3483	*	656	3488	*	*	*	*	*	*	*	4078	*	*	21
+       0	*	*	*	*	*	*	2820	0	0	
+
+R 22   *	*	*	*	*	*	*	3488	2018	*	*	2969	3473	*	1810	2633	*	*	*	*	22
+       0	*	*	*	*	*	*	2820	0	0	
+
+L 23   *	*	*	*	1479	3488	*	*	*	1277	*	*	*	*	*	*	*	*	*	2843	23
+       0	*	*	*	*	*	*	2820	0	0	
+
+L 24   *	*	*	4409	*	*	*	*	2244	2431	*	3934	*	3052	3232	*	1922	*	*	*	24
+       55	*	4745	*	*	*	*	3029	0	0	
+
+Y 25   *	*	*	*	*	*	*	3904	*	*	*	*	*	*	*	*	*	1140	*	1061	25
+       0	*	*	*	*	*	0	3009	0	1010	
+
+N 26   *	*	1693	*	*	*	*	*	4321	*	*	1940	4479	4942	*	1724	*	*	*	*	26
+       0	*	*	*	*	*	0	3443	0	1010	
+
+Q 27   *	*	*	4630	*	*	*	3328	*	*	*	*	*	1150	4541	*	*	1448	*	*	27
+       0	*	*	*	*	*	0	3445	0	1010	
+
+N 28   2660	*	1900	*	*	4133	*	4525	3783	*	*	1953	5227	*	5221	3951	5356	*	*	*	28
+       0	*	*	3459	138	*	0	3445	1000	1010	
+
+K 29   4064	*	3014	*	*	*	*	*	2396	*	*	1805	*	4532	3794	4812	2911	4149	*	*	29
+       0	*	*	*	*	*	0	3446	0	1010	
+
+A 30   143	*	*	*	*	*	*	3874	*	*	*	*	*	*	*	*	*	5257	*	*	30
+       0	*	*	*	*	*	0	3455	0	1010	
+
+E 31   3315	*	4217	1979	*	5110	*	2608	2810	3136	*	*	*	3313	4570	*	*	*	*	*	31
+       0	*	*	*	*	*	0	3455	0	1010	
+
+S 32   2237	*	3701	3774	4595	4575	*	*	4570	*	*	4200	*	4393	3978	1987	*	*	3926	5110	32
+       0	*	*	*	*	*	0	3455	0	1010	
+
+N 33   4709	*	6544	5419	*	4756	4718	*	*	2983	*	1945	*	1676	4222	3577	5952	*	*	*	33
+       0	*	*	*	*	0	*	3441	0	1010	
+
+S 34   1270	4723	*	*	4735	*	4864	3354	*	2795	*	*	*	*	*	2768	*	4973	*	4187	34
+       16	*	6469	*	*	*	*	3451	0	0	
+
+H 35   3349	*	*	5893	*	3149	2256	5489	2943	4192	*	*	*	5269	2377	*	*	4396	*	3474	35
+       53	*	4791	*	*	*	0	3452	0	1000	
+
+H 36   5713	*	4790	3787	*	5981	1983	4869	2614	6430	*	4075	*	2382	5613	3853	5485	4999	*	*	36
+       49	*	4899	*	*	*	0	3398	0	1048	
+
+A 37   539	*	4012	*	*	5906	*	4503	*	*	*	3642	5370	6449	*	3977	6705	*	*	*	37
+       0	*	*	*	*	*	0	3417	0	1098	
+
+P 38   6469	*	4414	*	*	1721	5525	*	5000	4155	5265	4103	1310	*	*	6650	*	4977	*	*	38
+       0	*	*	*	*	*	0	3416	0	1098	
+
+L 39   4574	*	4086	4424	3218	7261	*	3895	6183	1437	*	*	5718	4165	*	4570	2737	*	5547	*	39
+       88	5176	4977	2154	367	1217	812	3416	1056	1098	
+
+S 40   6134	*	3947	4179	*	*	5065	*	3986	*	*	*	4526	4229	6321	2027	1344	5360	*	*	40
+       0	*	*	*	*	296	2430	3380	0	1097	
+
+D 41   2398	*	2048	*	*	4494	5874	5452	3071	6575	*	5179	5026	*	6717	*	2437	3290	*	*	41
+       86	*	4118	*	*	*	0	3447	0	1000	
+
+G 42   5315	5291	5544	*	*	384	5462	*	*	*	*	*	*	6131	*	5062	3403	*	*	*	42
+       148	4676	4104	1000	1000	*	0	3441	1064	1117	
+
+K 43   6349	*	4533	3383	*	4384	*	*	1123	*	*	*	*	*	3025	2769	4195	*	*	5854	43
+       1442	5163	727	0	*	2515	277	3399	1041	1231	
+
+T 44   *	*	*	*	*	2921	*	*	*	*	*	2003	*	*	3187	3643	1222	*	*	*	44
+       366	3442	2921	0	*	3535	130	2544	1041	2220	
+
+G 45   4552	*	3798	2781	*	843	*	*	*	*	*	*	3554	*	*	3361	*	*	*	*	45
+       63	4552	*	0	*	82	4170	2678	1000	2160	
+
+S 46   *	*	3982	*	*	4474	7055	*	*	*	*	3476	*	*	3623	715	4308	4219	*	*	46
+       0	*	*	*	*	603	1549	3653	0	1038	
+
+S 47   6079	*	4005	4901	*	1640	5721	5692	4402	5190	*	3340	*	*	4183	2104	3854	*	*	*	47
+       0	*	*	*	*	*	0	3667	0	1000	
+
+Y 48   *	*	3461	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	137	48
+       0	*	*	*	*	*	0	3667	0	1000	
+
+P 49   *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	49
+       0	*	*	*	*	*	0	3667	0	1000	
+
+H 50   *	*	*	*	*	*	209	*	5242	*	*	*	*	5238	*	*	*	*	*	3604	50
+       0	*	*	*	*	*	0	3667	0	1000	
+
+W 51   5805	*	4204	3991	3604	5040	*	5190	5691	5994	*	5039	4994	2538	2658	*	3945	4165	2637	5950	51
+       0	*	*	*	*	*	0	3667	0	1000	
+
+F 52   *	*	*	*	655	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1454	52
+       0	*	*	*	*	*	0	3667	0	1000	
+
+T 53   *	*	*	*	4352	3351	3457	*	4783	6377	4275	1763	*	5190	3609	5692	2637	*	*	3683	53
+       0	*	*	*	*	*	0	3667	0	1000	
+
+N 54   5840	*	3063	*	*	*	*	*	*	*	*	239	*	*	*	6002	*	*	*	*	54
+       22	6079	*	0	*	*	0	3667	1003	1000	
+
+G 55   *	*	4343	5294	5369	1423	6580	*	3652	4572	*	3836	*	*	3454	*	*	*	*	2090	55
+       2012	*	411	*	*	743	1313	3648	0	1028	
+
+Y 56   *	*	*	*	*	*	*	*	*	*	*	*	2340	*	*	*	*	*	*	317	56
+       317	*	2340	*	*	*	0	1769	0	2639	
+
+D 57   *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	57
+       0	*	*	*	*	*	0	1557	0	2669	
+
+G 58   *	*	*	*	*	517	*	*	*	*	*	1731	*	*	*	*	*	*	*	*	58
+       0	*	*	*	*	4950	47	1557	0	2669	
+
+D 59   *	*	1883	*	*	2288	*	*	*	2027	*	1843	*	*	*	*	*	*	*	*	59
+       330	*	2289	*	*	*	0	1789	0	2619	
+
+G 60   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	60
+       0	*	*	*	*	*	0	1557	0	2669	
+
+K 61   *	*	*	*	*	*	*	*	517	*	*	*	*	*	1731	*	*	*	*	*	61
+       0	*	*	*	*	*	0	1557	0	2669	
+
+L 62   *	*	*	*	*	*	*	2525	*	929	*	*	*	*	*	*	*	1731	*	*	62
+       517	1731	*	1000	1000	*	0	1557	1103	2669	
+
+P 63   *	*	*	*	*	*	*	2511	*	1498	*	*	1088	*	*	*	*	*	*	*	63
+       0	*	*	*	*	*	0	1557	0	2669	
+
+K 64   *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	64
+       0	*	*	*	*	*	0	1557	0	2669	
+
+G 65   *	*	*	*	*	517	*	*	*	*	*	1731	*	*	*	*	*	*	*	*	65
+       0	*	*	*	*	4671	58	1557	0	2669	
+
+R 66   *	*	*	*	*	*	*	*	*	*	*	2021	2147	*	922	*	*	*	*	*	66
+       0	*	*	*	*	19	6221	1809	0	2608	
+
+T 67   5327	*	2517	1154	*	4214	*	*	4726	*	*	*	3604	4204	*	*	3024	*	*	*	67
+       0	*	*	*	*	*	0	3667	0	1000	
+
+P 68   5758	*	6965	4390	*	1692	3990	*	2950	*	*	3466	2041	*	3928	5327	*	*	*	*	68
+       0	*	*	*	*	*	0	3667	0	1000	
+
+I 69   *	*	*	5327	1784	*	*	1482	*	1614	*	*	*	*	*	*	*	*	*	*	69
+       46	4994	*	2000	415	*	0	3667	1064	1000	
+
+K 70   4672	*	2667	5402	*	*	*	*	1501	*	*	5341	3333	4694	4692	3791	3156	6420	*	5114	70
+       0	*	*	*	*	*	0	3642	0	1088	
+
+F 71   *	*	*	*	537	*	*	4260	*	4702	4589	*	*	*	*	*	*	*	2728	5171	71
+       48	5446	6649	2916	205	*	0	3642	1052	1088	
+
+G 72   3846	*	7484	*	*	1486	4583	6066	4597	4084	*	7514	1755	7476	*	4022	5249	*	7088	6874	72
+       150	4450	4240	1229	802	278	2511	3638	1163	1113	
+
+K 73   2991	5934	6063	5652	*	*	*	6089	2286	3295	*	2750	4956	5022	6053	3680	5666	2601	6354	*	73
+       425	*	1970	*	*	1069	934	3637	0	1148	
+
+S 74   2224	4733	*	3933	*	2264	4466	*	5079	*	*	3888	4891	*	5538	2102	*	*	*	4501	74
+       1042	*	959	*	*	*	0	3597	0	1607	
+
+D 75   *	*	2064	3659	*	3789	2829	*	2955	*	*	1929	*	*	3699	*	*	*	*	*	75
+       0	*	*	*	*	750	1303	2619	0	2299	
+
+C 76   *	49	*	*	4911	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	76
+       118	3673	*	0	*	328	2297	3579	1120	1533	
+
+D 77   4938	*	1501	6882	*	4330	*	*	4419	*	*	2436	4387	*	3462	2694	5001	*	*	*	77
+       620	*	1516	*	*	*	0	3654	0	1085	
+
+R 78   4869	*	3400	*	*	2995	*	*	2198	*	*	2437	5169	*	2095	3622	*	*	*	*	78
+       1292	*	757	*	*	*	0	3365	0	1804	
+
+P 79   *	*	*	*	*	*	*	*	*	*	*	*	271	*	*	*	2546	*	*	*	79
+       0	*	*	*	*	*	0	2060	0	2558	
+
+P 80   *	*	*	2491	*	*	*	*	*	*	*	*	698	*	*	*	2280	*	*	*	80
+       283	*	2491	*	*	*	0	2060	0	2558	
+
+K 81   *	*	*	*	*	*	*	*	369	*	*	*	*	2147	*	*	*	*	*	*	81
+       0	*	*	*	*	*	0	1809	0	2608	
+
+H 82   *	*	*	*	*	*	408	*	*	*	*	*	*	*	2021	*	*	*	*	*	82
+       0	*	*	*	*	*	0	1809	0	2608	
+
+S 83   *	*	*	*	*	*	*	*	2147	*	*	*	*	*	*	369	*	*	*	*	83
+       0	*	*	*	*	*	0	1809	0	2608	
+
+K 84   *	*	*	*	*	*	*	*	637	*	*	*	2147	2931	*	*	*	*	*	*	84
+       369	*	2147	*	*	*	0	1809	0	2608	
+
+D 85   *	*	1516	*	*	1731	*	*	*	*	*	1518	*	*	*	*	*	*	*	*	85
+       0	*	*	*	*	*	0	1557	0	2669	
+
+G 86   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	86
+       0	*	*	*	*	*	0	1557	0	2669	
+
+N 87   *	*	1498	*	*	1731	*	*	*	*	2511	2561	*	*	*	*	*	*	*	*	87
+       0	*	*	*	*	4952	47	1557	0	2669	
+
+G 88   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	88
+       0	*	*	*	*	*	0	1843	0	2619	
+
+K 89   *	*	*	*	*	2073	*	2083	926	*	*	*	*	*	*	*	*	*	*	*	89
+       0	*	*	*	*	1371	705	1843	0	2619	
+
+T 90   4880	*	3995	2957	*	2732	*	*	1559	*	*	2579	*	*	*	*	3092	*	*	*	90
+       58	4673	*	1585	585	334	2274	3124	1024	2019	
+
+D 91   4551	*	1902	*	*	1876	6019	*	2540	*	*	4019	7444	3884	*	4309	4495	*	*	*	91
+       270	*	2551	*	*	1765	503	3580	0	1196	
+
+H 92   3327	*	6201	5137	*	4637	1776	*	4935	*	*	3081	2899	5550	3090	4608	5096	4958	*	*	92
+       56	5276	6329	0	*	0	*	3565	1002	1468	
+
+Y 93   6094	*	5254	4325	*	*	*	4208	5188	*	4318	*	2429	5530	5002	6918	2503	5013	6651	1674	93
+       120	*	3652	0	*	0	*	3707	1002	1018	
+
+L 94   *	*	*	*	3443	*	*	4684	5450	694	5648	*	*	*	*	*	*	5146	4203	2991	94
+       104	*	3843	*	*	0	*	3660	0	1152	
+
+L 95   *	*	*	*	4332	*	*	*	6295	1734	4984	4743	*	3889	3993	4126	*	3942	3523	2129	95
+       0	*	*	*	*	0	*	3627	0	1143	
+
+E 96   *	*	*	33	*	*	*	*	5463	*	*	*	*	*	*	*	*	*	*	*	96
+       0	*	*	*	*	*	*	3667	0	0	
+
+F 97   *	*	*	*	846	*	*	3606	*	4507	*	*	*	*	*	*	*	*	5713	1743	97
+       0	*	*	*	*	*	*	3667	0	0	
+
+P 98   *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	98
+       0	*	*	*	*	*	*	3667	0	0	
+
+T 99   *	*	*	*	*	*	*	1075	*	2319	5191	*	*	*	*	*	2643	2865	*	*	99
+       29	*	5631	*	*	*	*	3667	0	0	
+
+F 100  *	*	5068	5904	1617	*	*	*	3928	2128	7460	*	*	5710	4061	3604	*	4269	5167	3533	100
+       10	*	7130	*	*	0	*	3663	0	1017	
+
+P 101  3372	*	*	*	6485	*	*	5723	4195	4299	6140	4768	2044	4470	3593	2846	3893	*	3120	5315	101
+       46	*	5000	*	*	0	*	3668	0	1000	
+
+D 102  6340	*	1610	6118	*	4051	*	*	5962	5971	*	3338	*	3077	5452	2288	5450	3547	*	*	102
+       51	*	4852	*	*	1383	698	3686	0	1035	
+
+G 103  *	*	3197	6234	7050	706	4849	*	4288	*	*	6134	5061	4547	*	4609	5487	*	*	5586	103
+       252	3913	3415	0	*	634	1492	3609	1146	1083	
+
+H 104  3430	*	5504	4560	*	5204	1617	4735	2534	*	*	6777	3696	4147	4307	3535	*	*	*	*	104
+       711	1683	3682	1102	904	248	2663	3607	1652	1226	
+
+D 105  3948	*	3030	2739	*	4776	*	3709	6371	3571	*	*	3316	4488	5116	*	3891	2432	*	5192	105
+       17	*	6381	*	*	3395	144	3536	0	1160	
+
+Y 106  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2756	231	106
+       28	*	5695	*	*	*	0	3532	0	1167	
+
+K 107  4341	*	3765	5001	*	5813	*	*	2359	*	6018	2899	3052	4580	*	2718	2563	*	*	*	107
+       76	*	4285	*	*	1275	769	3513	0	1206	
+
+F 108  *	*	*	*	1659	1706	*	5563	2752	*	*	*	4274	*	6359	5178	*	*	*	3112	108
+       124	*	3599	*	*	*	0	3566	0	1224	
+
+D 109  5458	*	1463	4108	*	1611	*	*	4771	*	*	4072	*	4822	5004	3908	*	*	*	*	109
+       244	*	2686	*	*	*	0	3416	0	1384	
+
+S 110  5340	*	4102	3152	*	5569	5224	*	4066	*	5889	3361	*	3759	*	1224	4539	4725	*	*	110
+       456	*	1884	*	*	*	0	3412	0	1667	
+
+K 111  *	*	*	*	*	*	*	*	1003	3364	*	*	4431	*	2107	4293	*	3748	*	*	111
+       421	*	1982	*	*	*	0	3089	0	1979	
+
+K 112  2909	*	*	*	*	*	*	*	938	*	*	*	*	*	*	4176	2572	4508	3686	*	112
+       342	3686	2909	4170	82	1805	486	2797	1000	2213	
+
+P 113  *	*	4076	*	*	4669	*	*	3330	4619	*	3450	1108	4269	*	3312	4230	*	*	*	113
+       58	*	4669	*	*	938	1065	3129	0	1997	
+
+K 114  *	*	3199	4231	*	2055	*	*	1710	*	*	*	4906	4122	3590	5763	3903	*	*	4942	114
+       48	*	4942	*	*	2591	262	3569	0	1509	
+
+E 115  3628	*	5921	2117	*	2297	*	*	*	*	4825	5575	2685	2246	*	5878	*	5110	*	*	115
+       102	3877	*	589	1577	569	1617	3609	1161	1474	
+
+N 116  4823	*	2334	3834	*	3531	*	*	4281	*	*	3237	5208	2806	6756	1966	5893	*	*	*	116
+       27	5758	*	1000	1000	0	*	3674	1015	1136	
+
+P 117  3931	*	5954	*	3606	*	*	*	3863	*	*	*	435	*	*	6136	6225	*	*	*	117
+       0	*	*	*	*	*	*	3667	0	0	
+
+G 118  5697	*	5191	*	*	381	*	*	*	5083	*	*	*	*	*	*	2866	5726	*	*	118
+       0	*	*	*	*	*	*	3667	0	0	
+
+P 119  1859	*	*	*	*	*	*	*	*	3606	*	*	813	*	4454	*	5191	*	*	*	119
+       0	*	*	*	*	*	*	3667	0	0	
+
+A 120  1944	4996	1340	*	4085	*	5697	3104	*	5587	4486	5191	*	*	*	*	*	5245	*	*	120
+       0	*	*	*	*	*	*	3667	0	0	
+
+R 121  *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	121
+       0	*	*	*	*	*	*	3667	0	0	
+
+V 122  *	*	*	*	*	*	*	3092	*	4837	*	*	*	*	*	*	*	238	*	*	122
+       0	*	*	*	*	*	*	3667	0	0	
+
+I 123  *	*	*	*	*	*	*	898	*	5191	*	*	*	*	*	*	*	1384	*	4249	123
+       0	*	*	*	*	*	*	3667	0	0	
+
+Y 124  4085	5463	*	*	2878	*	*	2830	*	5766	*	*	*	*	*	*	4996	*	*	756	124
+       7	*	7637	*	*	*	*	3667	0	0	
+
+T 125  2363	*	3170	4365	5583	4406	*	*	4899	6447	*	3159	*	4653	4984	3926	1816	*	*	*	125
+       187	*	3041	*	*	0	*	3670	0	1000	
+
+Y 126  4886	*	7255	4518	5986	5510	*	*	2973	*	*	2876	*	3722	4753	3767	3554	5705	*	1626	126
+       117	5293	4247	2322	322	0	*	3619	1022	1239	
+
+P 127  5503	*	2601	4103	*	4199	6768	*	2768	4964	*	2824	2020	4865	*	4728	5815	4841	*	*	127
+       114	6331	3983	0	*	0	*	3634	1000	1080	
+
+N 128  *	4786	2032	4484	*	3078	*	*	4423	*	*	1829	*	6396	5177	3735	3658	*	*	4871	128
+       623	1821	3882	1479	641	0	*	3646	1655	1114	
+
+K 129  3813	3912	4324	*	4156	2630	4670	3818	2162	4462	*	4672	*	*	3962	5520	*	3828	5625	*	129
+       0	*	*	0	*	0	*	3652	1003	1157	
+
+V 130  *	*	3736	2976	*	*	4671	5672	4165	4167	*	4165	*	3219	5362	4950	3054	2075	5726	5004	130
+       30	5587	*	1585	585	*	*	3667	1024	0	
+
+F 131  *	*	*	6631	960	*	*	3739	*	2959	*	*	*	6609	5193	*	*	*	6845	2144	131
+       0	*	*	*	*	*	*	3667	0	0	
+
+C 132  2552	317	5777	*	*	6845	*	*	*	*	*	*	*	*	*	*	*	*	*	*	132
+       0	*	*	*	*	*	*	3667	0	0	
+
+G 133  3133	*	*	*	*	228	*	*	*	*	6865	*	*	*	*	6694	*	6147	*	*	133
+       0	*	*	*	*	*	*	3667	0	0	
+
+I 134  4891	3196	*	4981	*	*	*	1425	*	3760	*	*	*	5282	*	*	4312	1722	*	*	134
+       0	*	*	*	*	*	*	3667	0	0	
+
+I 135  *	*	*	*	*	4249	*	1455	*	5087	1834	*	*	*	*	*	*	1875	*	*	135
+       0	*	*	*	*	*	*	3667	0	0	
+
+A 136  1944	4996	*	*	*	*	*	4424	*	5245	*	*	*	*	3905	4085	971	*	*	*	136
+       0	*	*	*	*	*	*	3667	0	0	
+
+H 137  *	*	*	*	*	*	78	*	4249	*	*	*	*	*	*	*	*	*	*	*	137
+       43	*	5083	*	*	*	*	3667	0	0	
+
+T 138  4617	*	2938	6051	*	5487	*	4959	5809	5176	*	4928	3311	4536	*	3219	1219	*	*	*	138
+       0	*	*	*	*	*	0	3677	0	1035	
+
+K 139  *	*	*	3548	*	1088	*	*	3189	*	*	4205	*	*	2601	5727	4083	4744	*	*	139
+       661	1523	5678	1353	716	0	*	3677	1766	1035	
+
+E 140  1587	*	3486	3531	*	2035	*	*	4397	*	*	3431	3811	*	*	4801	*	*	*	*	140
+       0	*	*	*	*	0	*	3596	0	1006	
+
+N 141  5275	*	4630	*	4677	5876	*	5652	6542	*	*	1227	6530	6249	5085	1767	5724	*	*	4216	141
+       29	*	5642	*	*	*	*	3611	0	0	
+
+Q 142  3383	*	5741	6778	*	1940	5426	*	5150	*	*	4199	5111	1602	6560	3136	5197	*	*	*	142
+       388	2085	*	738	1320	*	0	3564	1524	1041	
+
+G 143  5531	*	3269	5784	*	1023	*	*	4717	*	*	1901	4863	*	*	5366	*	*	*	*	143
+       0	*	*	*	*	0	*	3564	0	1041	
+
+E 144  4978	*	2260	4271	3837	2260	*	*	*	4893	*	2091	5177	5641	*	3147	*	*	*	*	144
+       0	*	*	*	*	*	*	3622	0	0	
+
+L 145  *	*	*	*	527	*	*	*	*	1989	*	*	5245	*	*	*	*	5177	*	*	145
+       0	*	*	*	*	*	*	3622	0	0	
+
+K 146  *	*	*	2813	*	*	2915	5196	2231	3780	*	*	*	5505	*	*	4399	1545	*	*	146
+       0	*	*	*	*	*	*	3622	0	0	
+
+L 147  2818	*	*	4202	*	4762	*	*	2945	1149	*	4343	*	3672	4901	5327	*	*	*	*	147
+       0	*	*	*	*	*	*	3622	0	0	
+
+C 148  *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	148
+       0	*	*	*	*	*	*	3622	0	0	
+
+S 149  *	*	4161	5375	*	7052	*	*	3301	*	*	3788	5297	2791	4221	1243	3434	*	*	*	149
+       0	*	*	*	*	*	*	3321	0	0	
+
+H 150  *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	150
+       0	*	*	0	*	*	*	1152	0	0	
+
+//
+�HHsearch 1.5
+NAME  679a9284ef0ef040ad53936c4c1e9d7d
+FAM   
+FILE  679a9284ef0ef040ad53936c4c1e9d7d
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:09:07 2013
+LENG  204 match states, 204 columns in multiple alignment
+FILT  92 out of 106 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  5.1 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCEEEEECHHHHHHHHHHCCCCEEEEEEEEEEECCCCCEEEEEEECCEEEEEEEECCHHHHHHCCCCCCEEEEEEEECCCCCCCEEEECCEEECCCC
+CCCCCCCCEEEEEEEECCCEEEECCCEEEEECCEEEHHHHHHHHHHHHHHHHCCCCCCCCCEEEEEEECCCCEEEEECHHHHHHHCCCCEEECCCEEEEE
+EEEC
+>ss_conf PSIPRED confidence values
+9877605673663899999766897789956999970899489999778669999998638877625888967899988034777629998989938987
+5667642105899990795279766168970659962455489999999973756699765489999889987999806844453589836114416899
+9979
+>Consensus
+xxxxxxxxxxxxxxxdLkxYYsxxxxexxNxxgxxxxxxgxxxxxxxxxxxxxxixlxgxdxxxfkxxxxkxVDVFgvxxxxxxxxxxxxyGGVTxxnxx
+xxxdxxxxixlxvxxxxgxxtxxxxxxxxixKexvTlkELDfKiRkxLixxxxLYxxxxxxGxIxixmkdgxxytxDLxkkLqxxrmxxxIdsxxixxIe
+Vxlx
+>679a9284ef0ef040ad53936c4c1e9d7d
+SEHKAKYENVTKDIFDLRDYYSGASKELKNVTGYRYSKGGKHYLIFDKHQKFTRIQIFGKDIERLKTRKNPGLDIFVVKEAENRNGTVFSYGGVTKKNQG
+AYYDYLNAPKFVIKKEVDAGVYTHVKRHYIYKEEVSLKELDFKLRQYLIQNFDLYKKFPKDSKIKVIMKDGGYYTFELNKKLQPHRMSDVIDGRNIEKME
+ANIR
+>gi|334277106|gb|EGL95345.1| toxin, beta-grasp domain protein [Staphylococcus aureus subsp. aureus 21310]
+-----------TNINELIKYYTQKPLTFSNRWLYQ-YDDGNIYVEFKRYSWSAHIRLWGAESWgNINQLRDRYVDVFGLKDKDTRRLWWvytdTFTGGVT
+PAASSS--D--KPYNIYVQYKDKLQTFIGAHkIYQGNKPVLTLKEIDFRVRESLIKNKILYNENRNKGNIHIT-GGGNNFTIDlskrlhsdlanvyvknp
+qkitvevlid---------------------------
+>gi|34536505|dbj|BAC87686.1| exotoxin G variant 5 [Streptococcus dysgalactiae subsp. equisimilis]gi|34536507|dbj|BAC87687.1| exotoxin G variant 6 [Streptococcus dysgalactiae subsp. equisimilis]
+--YGSKLVYADEILNDlkasLRFAYDVTPLEYENVEItFVTT--NNIHINTGQ-KKSGCVLYVDSIVslgitDNFIKG--DKVDVFGLPYNFSSPNVDNI
+YGGVVKHSDDKLQ---SLQFVGILNQDGEETSLPSYTILIKHKQFTLQEFDFKIRKFLMETYSIYDSEsrYISGSFFLATKDSKHYEVDLF---------
+----------------
+>gi|145386879|gb|ABP65290.1| mitogenic exotoxin Z-43 [Streptococcus pyogenes]
+----------------levdnnslLRNIYSTIVYEYSDTVIdFKTS--HNLVTKKLD-VRDARDFFINSEMdeyaaNDFKAG--DKIAMFSVPFDWN--y
+lskgkVTAYTYGGITPYQK-tSIP---KNIPVN-LWINGKQISVPYNEISTNKTTVTAQEIDLKVRKFLIAQHQLYSSGssYKSGKLVFHTNNns-DKYS
+LDLF-------------------------
+>gi|4206380|gb|AAD11625.1| exotoxin C [Streptococcus pyogenes]gi|4206384|gb|AAD11627.1| exotoxin C [Streptococcus pyogenes]
+--------------SDLLYAYTITPYDYKDCRVNFS---TTHTLNIdtqKYRGKDYYISSemSYEASQKFKRD--DHVDVFGLFYILNSHTGEYIYGGIT
+PAQNNKV-NHKLLGNLFISGESQQNLNN---KIILEKDIVTFQEIDFKIRKYLMDNYKIYDATSpyVSGRIEI---------------------------
+-----------
+>gi|166409297|dbj|BAG06666.1| enterotoxin T [Staphylococcus aureus]
+--------------EGLKDFYSKKIDVYTNKKIN---EKDKYSVDIEVDNYVYRINTLDDKILnQFKVG--DYVDAWGHIINNKPIgkVIKFYDGDISKH
+SPL---DKPTniSYRINLFK-EQKQTEVTPEkELEIGNRYLTMKQIDYRIKSYLVKKQQLYT-EFYNGKIEISMLDGKKHFIDLSTYY------------
+----------
+>gi|341844123|gb|EGS85342.1| enterotoxin type C-2 [Staphylococcus aureus subsp. aureus 21269]
+--------------------------------------------------------------------DGKEVDIFGVNYFDqcyfsneniqcdSNQggg
+sKKTCMYGGITLNENNTN-NRIQPIVVKVYE-NDSVTLSF--DINIDKETVTIQELDYKVRNKLISKINLYHLggtSYETGYIKFIENGNRYYWYDMMpd
+pgftqsKYLMIYRGNETVESAK-TEIEVHL-
+>gi|297589926|ref|ZP_06948566.1| toxic shock syndrome toxin-1 [Staphylococcus aureus subsp. aureus MN8]gi|297577054|gb|EFH95768.1| toxic shock syndrome toxin-1 [Staphylococcus aureus subsp. aureus MN8]
+---------TNDNIKDLLDWYSSGSDTFTNSEVLDNslgsmrikNTDGSISLIIFP-SPYYSPA--------FTKGE--KVDLNTKRTKksqHTSEGTyi
+HFQISGVTNTEKLPTP---IELPLKVKVHGK--DSPLKYWPKFDKKQLAISTLDFEIRHQLTQIHGLYRSSDKTgGYWKITMNDGSTYQSDLSKKFEYNT
+EKPPINIDEIKTIEAEIN
+>gi|304388588|gb|ADM29185.1| Enterotoxin [Staphylococcus aureus]
+---------------------------------------------------------------------SKNVDVYAIRYSIncyggEIDKTACTYGGVT
+PHEGNKL-KERKKIPINLWINGVQKEVSLD-KVQTDKKNVTVQELDAQARRYLQKDLKLYNNDtlggkIQRGKIEFDSSDGSKVSYDL------------
+--------------
+>gi|225871304|ref|YP_002747251.1| exotoxin H precursor [Streptococcus equi subsp. equi 4047]gi|8117875|gb|AAF72809.1|AF186180_3 SeeH [Streptococcus equi]gi|225700708|emb|CAW95321.1| exotoxin H precursor [Streptococcus equi subsp. equi 4047]
+--------------------------------------------------------------------KDKEVDIYALSAQEACecPGkRYEAFGGITLT
+NSEK-KE--IKVPINVWDKSKQH----PPMFiTVNKPKVTAQEVDIKVRKLLIKKYDIYNNreqKYSKGTVTLDLNSGKDIVFDLyyfgngdfNSMLKIY
+SNNERIDSTQF--------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+S 1    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	1
+       0	*	*	*	*	*	*	1000	0	0	
+
+E 2    *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2
+       0	*	*	*	*	*	*	1000	0	0	
+
+H 3    *	*	*	*	*	*	696	*	*	*	*	*	*	*	*	*	*	*	*	1385	3
+       0	*	*	*	*	*	*	2187	0	0	
+
+K 4    *	*	*	*	*	409	*	*	2019	*	*	*	*	*	*	*	*	*	*	*	4
+       0	*	*	*	*	*	*	2580	0	0	
+
+A 5    2275	*	*	*	*	*	*	*	*	*	*	*	*	*	*	742	*	*	*	2355	5
+       0	*	*	*	*	*	*	2659	0	0	
+
+K 6    *	*	*	2131	*	4224	4513	4967	1687	*	*	4767	*	4603	3641	4567	3355	4889	*	*	6
+       348	2221	*	1000	1000	*	*	3900	1357	0	
+
+Y 7    4237	*	*	*	*	*	4778	*	*	1330	*	*	3085	*	*	2601	*	2660	*	3798	7
+       114	3714	*	0	*	*	0	3869	1049	1357	
+
+E 8    3651	*	*	2373	*	*	*	3782	2093	*	*	*	*	4237	*	3209	2620	3376	*	*	8
+       0	*	*	*	*	0	*	3869	0	1357	
+
+N 9    5523	*	4280	4008	*	*	*	5622	4949	*	*	3419	*	2207	3813	3162	*	2115	*	3506	9
+       0	*	*	*	*	*	*	4291	0	0	
+
+V 10   3866	*	4662	*	*	4193	*	2748	*	*	4427	*	*	3202	3586	4617	2562	2060	*	*	10
+       0	*	*	*	*	*	*	4186	0	0	
+
+T 11   *	*	3866	*	*	*	4779	*	4617	*	*	2175	*	2722	*	1335	3560	*	*	*	11
+       0	*	*	*	*	*	*	4186	0	0	
+
+K 12   *	*	4233	2144	*	*	3330	*	2313	*	*	4011	3911	3537	4572	5166	3110	*	*	5676	12
+       358	2898	3542	758	1292	*	*	4882	1357	0	
+
+D 13   3698	*	1798	4441	*	*	*	4755	2901	*	*	1479	*	4794	*	*	*	*	*	5399	13
+       79	4739	5958	2313	324	*	0	4865	1084	1202	
+
+I 14   3847	*	*	*	4633	*	*	1572	4276	3810	*	*	*	*	*	3886	2263	3953	*	3467	14
+       0	*	*	*	*	824	1201	4812	0	1399	
+
+F 15   4468	*	3835	3302	4784	*	*	*	1743	*	*	2796	*	2618	5852	3009	*	*	*	*	15
+       0	*	*	*	*	*	0	5114	0	1143	
+
+D 16   4557	*	1318	2237	*	4053	*	*	3773	*	5617	3633	*	5155	*	3607	*	*	*	*	16
+       179	3103	*	2254	339	0	*	5114	1419	1143	
+
+L 17   *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	17
+       0	*	*	*	*	*	*	5241	0	0	
+
+R 18   *	*	*	*	*	*	3310	3905	1273	3204	*	5139	*	*	2476	4798	4855	*	*	4991	18
+       0	*	*	*	*	*	*	5241	0	0	
+
+D 19   3717	*	2440	3788	4238	5146	4387	*	2714	5136	*	4819	*	4730	3402	4558	4989	*	*	3112	19
+       0	*	*	*	*	*	*	5241	0	0	
+
+Y 20   2962	*	*	*	4589	*	4778	4819	*	*	*	*	*	*	*	*	*	*	4504	486	20
+       66	*	4493	*	*	*	*	5241	0	0	
+
+Y 21   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	21
+       0	*	*	*	*	*	0	5195	0	1143	
+
+S 22   4748	*	5091	5078	*	*	*	*	5265	*	*	3124	*	*	*	1125	1715	*	*	*	22
+       0	*	*	*	*	*	0	5195	0	1143	
+
+G 23   *	*	*	5649	*	1966	*	3280	2245	*	*	*	*	2151	5297	3415	4772	5091	*	*	23
+       0	*	*	*	*	*	0	5195	0	1143	
+
+A 24   4798	*	*	3558	*	4442	*	4772	2847	*	*	5692	1682	5029	4072	6007	2178	*	*	*	24
+       0	*	*	2000	415	0	*	5195	1143	1143	
+
+S 25   *	*	*	*	3676	4136	3941	3923	*	*	*	*	2509	*	*	1241	4507	4819	*	4162	25
+       0	*	*	*	*	*	*	5241	0	0	
+
+K 26   *	5368	3546	3945	1717	*	*	4712	4303	2420	4991	*	*	*	*	*	4923	4121	*	3016	26
+       0	*	*	*	*	*	*	5241	0	0	
+
+E 27   5933	*	2671	952	*	*	*	5134	*	*	*	4461	*	*	*	4489	3141	3681	*	*	27
+       0	*	*	*	*	*	*	5241	0	0	
+
+L 28   *	*	*	*	1777	*	4663	*	*	2365	4821	*	5713	*	4753	*	*	*	*	1384	28
+       0	*	*	*	*	*	*	5241	0	0	
+
+K 29   *	*	*	3634	*	*	*	5646	1482	*	*	5279	*	4461	5042	2245	2127	*	*	*	29
+       0	*	*	*	*	*	*	5241	0	0	
+
+N 30   *	*	3602	*	*	5827	*	*	3906	*	*	308	*	*	*	5279	*	*	*	*	30
+       0	*	*	*	*	*	*	5241	0	0	
+
+V 31   *	3731	*	5035	*	*	*	3013	2543	3611	*	*	*	4669	5728	4025	4298	1529	*	*	31
+       0	*	*	*	*	*	*	5241	0	0	
+
+T 32   *	*	4630	2905	5181	6199	*	4338	3581	6063	*	4078	*	*	4025	2419	2252	4819	3574	*	32
+       0	*	*	*	*	*	*	5241	0	0	
+
+G 33   4356	*	*	*	*	953	*	2659	*	2946	*	*	*	*	*	*	*	2771	*	*	33
+       219	2830	*	0	*	*	*	5241	1419	0	
+
+Y 34   *	*	*	*	2584	*	*	5035	3947	2907	*	3951	*	5747	*	*	3945	*	3925	1356	34
+       160	6221	3451	1585	585	*	*	5241	1000	0	
+
+R 35   *	*	4285	*	5283	5149	5826	3320	2247	4979	5089	*	*	2812	3381	3902	5731	2872	*	4485	35
+       170	*	3173	*	*	*	0	5010	0	1274	
+
+Y 36   *	*	*	1930	4982	*	4385	5739	5558	4313	*	4159	*	4639	4332	3532	2548	4377	*	3102	36
+       734	2691	2035	2080	389	1052	950	4786	1315	1574	
+
+S 37   *	*	4281	*	5431	3701	*	5813	2938	*	*	3016	4154	4146	*	2497	2048	*	*	4477	37
+       534	3504	2177	1817	482	1615	570	4846	1176	1925	
+
+K 38   *	*	2263	2654	*	3665	5025	*	3141	*	*	3590	5537	*	*	5288	3538	*	3946	2958	38
+       0	*	*	*	*	3063	184	4634	0	2110	
+
+G 39   *	*	2609	5412	*	4525	4552	3830	2572	5118	*	2353	5760	*	*	*	3196	3612	*	4207	39
+       77	*	4272	*	*	0	*	4716	0	1978	
+
+G 40   *	*	4035	4648	*	1038	3500	*	3196	*	*	3454	*	*	5988	*	3215	*	*	*	40
+       0	*	*	*	*	*	0	5245	0	1029	
+
+K 41   *	*	2853	4765	3936	4414	*	6032	2529	5773	*	2461	*	6141	*	2559	3156	5150	*	*	41
+       97	*	3936	*	*	*	0	5245	0	1029	
+
+H 42   *	*	5280	5665	5048	*	3826	1969	2251	3986	*	2465	*	*	3586	5808	*	*	*	4542	42
+       207	*	2904	*	*	*	0	5189	0	1263	
+
+Y 43   *	*	*	*	2776	4279	2611	*	*	4808	*	3459	*	*	*	3395	5129	2783	*	2040	43
+       34	5409	*	0	*	0	*	5154	1000	1636	
+
+L 44   3598	*	*	*	5944	*	*	2605	*	2241	2487	*	*	*	*	5279	4819	1807	*	*	44
+       66	4493	*	2322	322	*	*	5241	1143	0	
+
+I 45   *	*	2664	3437	*	*	*	3396	3921	5647	*	1946	*	*	3486	*	2902	4488	*	4579	45
+       0	*	*	*	*	*	0	5195	0	1143	
+
+F 46   *	*	*	*	1771	*	*	2097	4772	3372	5818	*	*	*	*	*	3108	2276	*	*	46
+       35	5386	*	1585	585	*	0	5195	1021	1143	
+
+D 47   6254	*	4837	4564	4126	5091	*	2231	2443	3491	*	3885	5779	3839	*	5078	3680	4972	4579	*	47
+       0	*	*	*	*	*	0	5195	0	1143	
+
+K 48   *	*	3211	5818	4778	*	*	*	3300	*	*	6226	2508	2235	4770	3830	5116	2956	*	3836	48
+       359	*	2182	*	*	*	0	5195	0	1143	
+
+H 49   *	*	2058	5639	5436	2889	3467	5540	5612	5445	*	2428	*	5294	2755	*	*	*	5651	4412	49
+       0	*	*	*	*	0	*	4612	0	1827	
+
+Q 50   *	*	5975	*	*	2508	6302	*	3871	5614	6319	2594	6494	4223	4321	2365	4382	4299	6172	3222	50
+       0	*	*	*	*	*	*	5241	0	0	
+
+K 51   *	*	*	5832	4106	*	*	5796	2531	*	5019	*	4504	1840	3583	5817	3832	*	2946	3681	51
+       26	*	5832	*	*	*	*	5241	0	0	
+
+F 52   4441	*	3310	*	3876	4234	5309	4081	3359	4101	*	3581	*	3588	*	3483	*	3245	*	2942	52
+       0	*	*	*	*	0	*	5213	0	1022	
+
+T 53   3330	*	*	5368	4730	5118	4449	3330	4261	*	*	2878	*	*	*	3308	3627	3742	*	2185	53
+       0	*	*	*	*	*	*	5241	0	0	
+
+R 54   *	4238	3259	*	4368	*	3303	*	3244	4994	*	3464	*	2873	2667	3602	*	4461	*	4522	54
+       77	*	4261	*	*	*	*	5241	0	0	
+
+I 55   *	*	4683	*	*	*	*	1188	*	3410	*	*	4438	*	*	*	4726	1539	*	*	55
+       68	*	4431	*	*	0	*	5149	0	1135	
+
+Q 56   2542	*	*	*	2701	4579	*	*	5244	3388	*	3540	*	3278	5684	2888	3249	4748	*	5337	56
+       68	*	4442	*	*	*	0	5195	0	1143	
+
+I 57   *	*	*	*	4694	*	*	4789	*	652	*	*	*	*	*	4142	4435	3284	*	3588	57
+       37	5317	*	1000	1000	*	0	5078	1021	1291	
+
+F 58   *	*	*	6180	3495	*	*	3107	*	1823	*	*	4526	*	*	5317	3537	2016	4712	4089	58
+       0	*	*	*	*	*	0	5078	0	1291	
+
+G 59   *	*	2892	5251	*	526	*	*	*	*	*	3674	*	*	*	5251	6053	*	*	5317	59
+       0	*	*	*	*	*	0	5078	0	1291	
+
+K 60   4712	*	3525	3999	*	*	*	*	1843	*	*	2862	3533	*	*	2023	3973	*	*	*	60
+       0	*	*	*	*	*	0	5078	0	1291	
+
+D 61   5317	*	921	1678	*	*	*	4136	4435	*	*	*	*	5006	*	*	*	*	*	*	61
+       0	*	*	*	*	*	0	5078	0	1291	
+
+I 62   *	*	4379	4761	*	5741	*	3267	1520	5090	3945	6208	*	*	*	2414	*	3499	*	4061	62
+       240	2705	*	2322	322	*	0	5078	1419	1291	
+
+E 63   5983	*	2538	2655	*	*	*	*	3566	2985	*	3382	*	3301	5628	4251	4985	*	2828	*	63
+       371	2141	*	0	*	*	0	5078	1592	1291	
+
+R 64   *	*	3470	3774	*	*	4294	5753	1345	*	*	2672	*	3107	3755	*	6614	5938	*	*	64
+       0	*	*	*	*	1226	805	5008	0	1291	
+
+L 65   4524	*	*	*	1145	*	*	3092	*	5072	*	*	*	*	*	*	5850	3379	*	2036	65
+       0	*	*	*	*	*	0	5130	0	1143	
+
+K 66   6010	*	6429	6203	*	4878	4352	4422	1161	*	*	2541	5776	4380	*	4298	3418	*	*	*	66
+       0	*	*	3459	138	0	*	5130	1143	1143	
+
+T 67   3645	*	2582	3057	5182	*	6305	*	2244	*	*	4155	6013	2801	4298	*	3744	4608	*	*	67
+       198	2965	*	497	1780	*	*	5161	1458	0	
+
+R 68   *	*	3324	5611	3243	1333	*	*	4159	2823	*	4092	*	4952	3862	6739	*	*	*	6517	68
+       321	*	2327	*	*	*	0	5170	0	1000	
+
+K 69   *	*	3318	3327	6242	5284	*	5051	1402	5371	*	5750	5724	*	3280	4558	5140	3092	*	*	69
+       88	*	4086	*	*	4511	65	5132	0	1788	
+
+N 70   5972	*	2583	5563	*	2349	2877	4978	*	*	*	1968	*	5307	*	6443	*	5553	*	3080	70
+       157	7000	3395	0	*	300	2412	4994	1000	1930	
+
+P 71   *	*	2412	4756	*	6120	5871	*	1198	*	*	5221	4142	5062	3283	3665	6270	*	*	*	71
+       0	*	*	0	*	0	*	5378	1071	1543	
+
+G 72   5905	*	4936	5237	*	2664	4315	*	1955	*	*	2020	*	4895	5315	5207	5361	6727	*	3445	72
+       0	*	*	*	*	*	*	5505	0	0	
+
+L 73   *	*	*	*	*	*	*	3229	6508	2028	*	*	*	4958	*	*	*	725	*	*	73
+       0	*	*	*	*	*	*	5505	0	0	
+
+D 74   4822	*	185	*	*	*	*	*	*	*	*	3553	*	*	*	*	*	*	*	*	74
+       0	*	*	*	*	*	*	5505	0	0	
+
+I 75   4109	*	*	*	*	*	*	1339	*	3327	6394	*	*	*	*	*	*	1201	*	*	75
+       0	*	*	*	*	*	*	5505	0	0	
+
+F 76   *	*	*	*	506	*	*	*	*	*	*	4977	*	*	*	*	*	*	4097	2283	76
+       0	*	*	*	*	*	*	5505	0	0	
+
+V 77   3587	*	*	*	5021	998	*	4740	*	5342	*	*	*	*	*	4822	4445	2338	*	4504	77
+       48	*	4934	*	*	*	*	5505	0	0	
+
+V 78   4023	*	*	*	*	6083	4887	2980	4910	2318	*	*	*	*	*	4987	4454	1145	*	*	78
+       0	*	*	*	*	*	0	5476	0	1143	
+
+K 79   5347	*	6510	4355	5111	*	*	4075	3056	4071	*	3475	2625	4845	2548	3196	*	*	*	3632	79
+       115	*	3707	*	*	*	0	5476	0	1143	
+
+E 80   5742	*	3596	1391	3592	*	*	4836	*	*	*	*	*	*	*	*	4844	*	*	1456	80
+       0	*	*	*	*	707	1367	5498	0	1454	
+
+A 81   4946	*	3497	3836	4833	2231	*	4440	3393	4146	*	3441	*	4504	6512	5350	*	*	*	2384	81
+       49	4910	*	3163	171	*	0	5476	1291	1143	
+
+E 82   4958	*	3947	3411	3766	*	4088	4203	4220	5111	*	2672	6010	*	5348	3079	5229	4998	4782	2941	82
+       452	1895	*	2374	309	*	0	5476	2090	1143	
+
+N 83   5705	*	2677	*	*	2515	*	*	3337	*	*	2509	4922	5172	5193	3409	2466	*	*	6426	83
+       39	6326	6152	2000	415	*	0	5430	1000	1755	
+
+R 84   4658	5698	5453	4564	4634	5250	*	4732	3830	5488	*	4541	2793	4652	2388	3185	6366	4359	6352	3680	84
+       251	2923	5162	2212	351	*	0	5428	2007	1841	
+
+N 85   5989	3514	4722	3073	5080	5586	3591	4563	3840	*	*	2853	4035	2591	5135	3665	*	*	*	5526	85
+       141	3667	6090	1652	553	534	1692	5375	1301	1955	
+
+G 86   2907	*	4200	*	*	1883	*	5860	2619	4344	*	3979	*	*	3840	5576	4631	3538	*	5002	86
+       24	5912	*	0	*	1094	912	5427	1020	1318	
+
+T 87   4898	*	4152	4866	6546	3711	*	3349	3631	*	*	4949	*	*	3410	3276	1925	4295	4753	5113	87
+       71	4381	*	1190	832	*	0	5476	1151	1143	
+
+V 88   2696	6328	4514	4451	6200	6149	4910	5357	2404	4962	5554	3215	*	4632	6688	4856	3159	4920	4449	4920	88
+       115	3705	*	1576	589	*	0	5476	1525	1143	
+
+F 89   7048	1895	*	5976	3470	*	5802	5382	5976	6996	*	3983	*	*	*	4602	3500	5291	*	1584	89
+       0	*	*	*	*	*	0	5476	0	1143	
+
+S 90   5976	*	*	*	3705	*	*	2686	*	4181	2606	*	*	4910	*	1665	3003	*	*	4075	90
+       0	*	*	*	*	*	0	5476	0	1143	
+
+Y 91   *	*	4887	*	5219	*	*	2055	*	*	*	6781	*	*	5291	*	3705	3120	*	1082	91
+       0	*	*	*	*	0	*	5476	0	1143	
+
+G 92   *	*	*	*	*	78	*	*	*	*	*	*	*	*	*	4250	*	*	*	*	92
+       48	*	4934	*	*	*	*	5505	0	0	
+
+G 93   *	*	4887	*	*	88	*	*	*	*	*	*	*	*	*	*	5291	*	*	*	93
+       0	*	*	0	*	0	*	5476	1143	1143	
+
+V 94   6528	*	*	*	*	*	*	1327	*	4738	6281	*	*	*	*	*	5909	933	*	*	94
+       0	*	*	*	*	*	*	5505	0	0	
+
+T 95   *	*	*	*	*	*	*	5591	*	*	*	*	*	*	*	3893	228	4098	*	*	95
+       0	*	*	*	*	*	*	5505	0	0	
+
+K 96   6672	*	*	4501	6363	*	*	5419	1296	2629	6512	3742	2516	5591	6059	6321	4935	*	*	*	96
+       24	*	5909	*	*	*	*	5505	0	0	
+
+K 97   2405	*	*	*	*	*	1872	*	3723	*	*	4832	6556	*	*	3346	2016	*	*	3817	97
+       0	*	*	*	*	0	*	5491	0	1019	
+
+N 98   3749	*	2962	2630	*	5184	6314	*	*	*	*	1341	*	3986	*	3044	*	5914	*	*	98
+       0	*	*	*	*	*	*	5505	0	0	
+
+Q 99   *	*	3429	4502	*	2909	*	*	2671	*	*	2247	4097	4236	4472	2814	4627	5440	*	*	99
+       40	*	5194	*	*	*	*	5505	0	0	
+
+G 100  5237	*	5686	3581	*	5128	*	5297	3003	3918	*	1686	4476	3603	6290	4129	4102	5542	*	4721	100
+       392	6744	2128	0	*	0	*	5488	1079	1121	
+
+A 101  4179	*	4477	4973	6506	5782	3878	*	3184	3598	*	3175	3940	3362	4580	2356	4456	5484	*	*	101
+       545	*	1667	*	*	2463	289	5264	0	2004	
+
+Y 102  5827	*	*	5494	3661	*	5466	3060	5305	2623	*	4087	*	5699	*	3664	4424	2929	*	2210	102
+       931	4067	1266	2608	259	3298	155	4814	1143	2861	
+
+Y 103  4920	*	*	4437	5296	*	4807	2337	1938	*	*	*	2436	4605	*	5435	*	3691	*	3749	103
+       870	3894	1374	0	*	441	1924	4435	1077	3534	
+
+D 104  5525	*	933	2737	*	3904	*	4717	4700	*	*	3924	*	*	5841	4256	5293	*	*	*	104
+       367	*	2154	*	*	1001	999	5110	0	2490	
+
+Y 105  *	*	4804	6129	4263	5944	4579	4535	1781	5829	*	4361	6609	3139	4883	3268	4499	5859	*	3102	105
+       467	2026	5011	1564	596	4958	47	4987	1787	2463	
+
+L 106  6070	*	5623	2743	*	*	*	2839	3364	4777	*	4028	2669	*	6188	4715	5082	2046	*	*	106
+       31	5571	*	0	*	164	3220	4936	1000	2665	
+
+N 107  4429	*	*	*	*	*	4530	3776	1640	6292	*	2882	5147	4225	3146	3827	3391	*	*	7020	107
+       88	4079	*	1000	1000	*	0	5476	1213	1143	
+
+A 108  4829	5884	7054	3236	*	6615	4198	6695	2968	4086	*	2059	4168	*	5292	3094	3475	4472	*	*	108
+       0	*	*	*	*	*	0	5476	0	1143	
+
+P 109  4515	*	*	*	*	6292	*	1684	4918	4911	*	*	2802	4890	*	*	4921	2182	*	2883	109
+       0	*	*	*	*	0	*	5476	0	1143	
+
+K 110  *	*	5357	6049	4926	3545	5295	3083	4638	4512	*	2803	2047	*	2852	6411	4877	4813	*	6747	110
+       15	*	6577	*	*	*	*	5524	0	0	
+
+F 111  5928	6113	*	*	5590	*	*	1830	*	1529	4353	*	*	*	*	*	*	1881	*	*	111
+       0	*	*	*	*	*	0	5509	0	1000	
+
+V 112  6507	*	*	3847	4251	3942	*	4549	2757	4761	*	1463	6513	4312	5081	4565	6693	4878	5414	6470	112
+       17	*	6396	*	*	0	*	5509	0	1000	
+
+I 113  *	*	*	*	*	*	*	1900	4552	2285	*	4961	*	*	*	*	7005	1170	*	*	113
+       0	*	*	*	*	0	*	5525	0	1034	
+
+K 114  6332	*	*	5063	2977	*	*	5680	2745	3712	*	3800	*	5617	*	3216	2544	*	2714	4011	114
+       0	*	*	*	*	*	*	5524	0	0	
+
+K 115  *	*	4121	3729	6042	4823	*	2757	1701	5411	*	4260	*	*	3954	6400	*	2848	6401	4102	115
+       658	*	1450	*	*	*	*	5524	0	0	
+
+E 116  *	*	3807	3081	*	*	3402	3596	2000	6067	*	2783	5479	4347	*	3957	4806	4286	*	*	116
+       0	*	*	*	*	285	2480	5102	0	2561	
+
+V 117  6237	*	1357	4124	*	3052	*	4574	4108	*	*	3174	*	6207	6634	4081	3369	6373	*	5959	117
+       38	*	5262	*	*	*	0	5555	0	1254	
+
+D 118  6265	*	3814	4760	*	1090	6401	*	2551	*	*	3415	*	4399	6238	4108	*	6133	*	*	118
+       49	*	4897	*	*	355	2196	5533	0	1375	
+
+A 119  4292	*	5064	2854	*	3948	3287	3736	2519	5038	6722	5623	6540	3297	4896	3549	5611	4269	*	*	119
+       0	*	*	*	*	2225	347	5477	0	1187	
+
+G 120  *	*	3713	4186	6731	3682	4157	5429	3535	*	*	2523	*	1662	6747	4706	6525	4916	*	4862	120
+       23	*	5958	*	*	363	2169	5501	0	1135	
+
+V 121  4335	*	4167	4127	*	5432	6535	4460	4061	3844	6935	6026	*	3542	*	3922	1266	4737	*	*	121
+       0	*	*	*	*	1509	625	5564	0	1063	
+
+Y 122  5375	*	4332	2754	3382	*	5741	2972	3812	3471	*	5426	*	6030	5278	3570	3385	4442	*	3568	122
+       8	7417	*	1000	1000	*	0	5503	1000	1020	
+
+T 123  4354	*	4521	*	*	4677	*	3977	5362	4288	*	5167	3945	6268	*	1770	2737	2470	*	*	123
+       110	*	3767	*	*	*	0	5564	0	1055	
+
+H 124  *	*	6283	5740	2192	3976	5149	4770	4382	3668	6033	5228	3584	5029	4847	3574	4058	3358	*	4003	124
+       257	4878	2954	1180	840	283	2491	5479	1081	1391	
+
+V 125  4676	*	3595	6253	4732	3473	*	3862	3402	3471	5911	4439	3178	6002	*	3169	2801	5224	*	6208	125
+       135	*	3489	*	*	*	0	5412	0	1597	
+
+K 126  6746	*	2203	3110	4661	5366	4787	5166	5295	*	*	3369	4028	*	6317	3250	4749	4379	*	2803	126
+       928	1244	4267	0	*	511	1746	5304	2652	1915	
+
+R 127  4890	*	3207	3145	4390	*	6506	4940	2392	3947	5774	*	4113	6175	5593	4370	3159	4698	4880	4184	127
+       0	*	*	*	*	0	*	5491	0	1471	
+
+H 128  *	*	*	*	2320	6400	5179	1901	*	4117	*	7034	5003	*	*	*	*	2498	*	2191	128
+       36	6046	6679	0	*	*	*	5524	1020	0	
+
+Y 129  5560	*	5622	3020	5475	*	*	4368	2138	4390	6975	5768	6288	3540	4719	2490	3407	*	*	4205	129
+       21	6143	*	0	*	0	*	5543	1029	1000	
+
+I 130  6763	*	*	*	5019	4124	*	1202	6693	4596	*	6422	*	5466	*	*	1588	4318	*	*	130
+       46	5506	6693	661	1444	*	*	5544	1081	0	
+
+Y 131  *	*	2376	5157	5628	4910	*	5469	3064	6255	*	1541	*	4653	6034	4596	4104	*	*	3787	131
+       0	*	*	*	*	0	*	5574	0	1143	
+
+K 132  *	*	*	*	*	*	5749	*	131	*	6527	4123	*	*	*	*	*	*	*	*	132
+       0	*	*	*	*	*	*	5544	0	0	
+
+E 133  6389	*	4587	1325	*	*	*	*	1487	*	*	4854	3788	*	4356	*	4845	*	*	*	133
+       33	*	5466	*	*	*	*	5544	0	0	
+
+E 134  4907	*	4179	1738	*	*	*	3909	3276	4711	4340	4246	*	3136	*	6738	3828	3745	*	4898	134
+       0	*	*	*	*	0	*	5520	0	1031	
+
+V 135  *	*	*	*	4350	5466	*	1856	*	3050	4535	*	6267	*	*	*	*	1073	*	*	135
+       0	*	*	*	*	*	*	5544	0	0	
+
+S 136  5019	*	*	*	*	*	*	*	*	*	*	5466	5241	*	*	1594	764	*	*	*	136
+       0	*	*	*	*	*	*	5544	0	0	
+
+L 137  2654	5466	*	*	5224	*	*	2920	*	878	4943	*	*	*	*	*	*	3593	*	*	137
+       0	*	*	*	*	*	*	5544	0	0	
+
+K 138  *	*	*	*	*	*	*	*	949	*	*	*	*	1223	*	4225	*	*	*	*	138
+       0	*	*	*	*	*	*	5544	0	0	
+
+E 139  *	*	*	150	*	*	*	*	6297	*	*	*	*	4943	5466	*	5019	*	*	*	139
+       0	*	*	*	*	*	*	5544	0	0	
+
+L 140  *	*	*	*	4350	*	*	2128	*	664	*	*	*	*	*	*	5329	3919	*	*	140
+       0	*	*	*	*	*	*	5544	0	0	
+
+D 141  *	*	55	*	*	*	*	*	*	*	*	6099	*	*	*	5466	*	*	*	*	141
+       0	*	*	*	*	*	*	5544	0	0	
+
+F 142  4997	6374	*	*	920	*	6099	3891	*	3288	*	*	*	*	*	*	5638	3799	*	2721	142
+       0	*	*	*	*	*	*	5544	0	0	
+
+K 143  *	*	*	5019	*	*	*	6099	557	6756	*	*	*	3260	2849	*	5466	*	*	*	143
+       0	*	*	*	*	*	*	5544	0	0	
+
+L 144  3409	*	*	*	*	*	*	1628	*	1529	*	*	*	*	*	4877	4487	2670	*	*	144
+       46	*	4981	*	*	*	*	5544	0	0	
+
+R 145  *	*	*	*	*	*	*	*	4910	*	*	*	*	*	49	*	*	*	*	*	145
+       0	*	*	0	*	0	*	5574	1143	1143	
+
+Q 146  *	*	*	4499	5237	*	3704	*	896	*	*	3666	*	3122	4530	4943	6524	*	*	4837	146
+       0	*	*	*	*	*	*	5544	0	0	
+
+Y 147  4318	*	*	*	3343	*	2969	4624	3610	4744	*	*	*	2907	5375	6495	4748	6267	5460	1634	147
+       0	*	*	*	*	*	*	5544	0	0	
+
+L 148  5375	*	*	*	*	*	6099	6267	*	77	*	*	*	*	*	*	*	*	*	*	148
+       0	*	*	*	*	*	*	5544	0	0	
+
+I 149  *	*	*	5492	*	*	4900	1056	*	4807	3321	5320	*	3130	*	5986	3569	3505	*	*	149
+       21	*	6099	*	*	*	*	5544	0	0	
+
+Q 150  5344	*	2228	1946	*	5063	*	*	2073	*	*	3294	*	3670	*	4203	*	*	*	*	150
+       0	*	*	*	*	0	*	5524	0	1081	
+
+N 151  *	*	6726	3044	*	*	4476	5019	1650	6389	*	2087	*	2979	6374	4837	4549	6524	*	*	151
+       0	*	*	*	*	*	*	5544	0	0	
+
+F 152  *	*	*	4347	3839	*	2405	6528	2610	5745	*	4932	*	4943	*	5630	*	*	*	1274	152
+       0	*	*	*	*	*	*	5544	0	0	
+
+D 153  *	*	3362	7006	*	1938	5329	5635	2252	6303	*	2070	*	3351	6423	5749	*	*	*	*	153
+       0	*	*	*	*	*	*	5544	0	0	
+
+L 154  *	*	*	*	*	*	*	2225	*	371	*	*	*	*	*	*	*	6297	*	*	154
+       0	*	*	*	*	*	*	5544	0	0	
+
+Y 155  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	155
+       0	*	*	*	*	*	*	5544	0	0	
+
+K 156  *	*	3335	3350	*	2657	4911	*	2352	*	6099	2850	*	4912	5019	3073	3983	*	*	5986	156
+       187	*	3040	*	*	*	*	5544	0	0	
+
+K 157  4013	*	6605	4194	3345	3157	4306	*	3822	6428	*	2611	5129	6079	6386	2706	2814	*	*	6027	157
+       827	1197	*	2343	317	0	*	5384	2709	1580	
+
+F 158  5460	*	4176	2267	5622	2674	6099	5053	3222	*	6595	2693	4307	6422	*	3548	3782	*	*	*	158
+       148	3521	6576	1161	855	*	*	5544	1458	0	
+
+P 159  5453	*	4989	*	2964	*	6311	3053	*	4058	4524	6374	3210	6050	5584	3688	6062	4470	*	1800	159
+       18	6365	*	1000	1000	0	*	5511	1021	1000	
+
+K 160  *	*	4690	2941	*	4958	*	4829	1769	*	*	2823	*	3325	5354	3110	6131	4594	*	4916	160
+       0	*	*	*	*	*	*	5526	0	0	
+
+D 161  *	*	2938	6162	*	*	6660	5493	1982	*	*	3727	*	4480	4583	2353	2490	*	*	4854	161
+       46	4994	*	0	*	*	*	5526	1092	0	
+
+S 162  *	*	*	*	*	151	*	*	*	*	*	*	*	*	*	3334	*	*	*	*	162
+       0	*	*	*	*	*	*	5526	0	0	
+
+K 163  *	6373	6095	5325	6262	*	6669	*	1537	4130	*	5306	*	3602	3704	4006	3631	*	*	2348	163
+       0	*	*	*	*	*	*	5526	0	0	
+
+I 164  *	*	*	*	5738	*	*	526	*	3198	6252	*	*	*	*	*	*	2906	4994	*	164
+       0	*	*	*	*	*	*	5526	0	0	
+
+K 165  *	*	*	2873	4472	*	6467	3633	1896	5724	*	6580	*	6058	4030	6917	2725	2376	*	*	165
+       0	*	*	*	*	*	*	5526	0	0	
+
+V 166  *	*	*	*	1555	*	*	1185	*	4375	*	*	*	*	*	*	*	2766	*	5338	166
+       0	*	*	*	*	*	*	5526	0	0	
+
+I 167  4315	*	4608	5322	*	5749	2075	2880	3386	*	*	3602	*	5588	*	4203	2065	*	*	*	167
+       111	*	3760	*	*	*	*	5516	0	0	
+
+M 168  *	*	6147	3422	*	*	*	4873	6245	2705	1292	5958	4503	*	*	3716	2762	*	*	*	168
+       0	*	*	*	*	0	*	5396	0	1331	
+
+K 169  4874	*	6112	5582	*	3719	4884	*	1275	4894	*	1862	*	6519	*	3786	6031	*	*	*	169
+       203	2930	*	339	2254	*	*	5516	1566	0	
+
+D 170  6403	*	1000	4973	*	3486	*	*	5768	*	*	1936	*	*	*	4283	*	*	*	4800	170
+       37	6212	6406	439	1931	130	3534	5409	1203	1566	
+
+G 171  *	*	3399	3323	*	867	*	*	4160	*	*	3399	5921	*	*	4477	*	*	*	4480	171
+       0	*	*	*	*	0	*	5517	0	1132	
+
+G 172  5322	*	3457	3747	6257	2506	6507	*	2144	*	*	2940	5474	6368	5199	2891	4154	*	*	*	172
+       83	4161	*	0	*	*	*	5516	1237	0	
+
+Y 173  *	*	4962	6244	3337	*	3819	*	2116	6788	*	3282	*	6005	4289	2418	3122	*	*	3762	173
+       46	5000	*	612	1533	0	*	5488	1113	1143	
+
+Y 174  *	*	*	4183	2126	*	3114	5090	*	*	6073	6402	*	7406	*	*	*	3511	*	1150	174
+       0	*	*	*	*	*	*	5516	0	0	
+
+T 175  *	*	*	3542	4894	6937	*	*	5322	*	*	4727	*	4318	*	2437	1412	4836	3098	4408	175
+       0	*	*	*	*	*	*	5516	0	0	
+
+F 176  *	*	*	*	1655	*	*	2007	*	3384	*	*	*	*	*	4987	*	4901	*	1874	176
+       0	*	*	*	*	*	*	5516	0	0	
+
+E 177  *	*	517	1997	*	6678	*	*	*	*	*	4616	*	*	*	*	*	*	*	*	177
+       111	3760	*	4810	52	*	*	5516	1331	0	
+
+L 178  *	*	*	*	4357	*	*	5861	*	217	4113	*	*	*	*	5960	*	*	*	*	178
+       29	5641	*	3000	193	*	*	5391	1020	0	
+
+N 179  *	*	4283	*	1969	3848	3838	*	*	*	3704	2617	*	*	4718	2693	5066	*	*	3448	179
+       628	1503	*	3119	176	*	*	5280	2054	0	
+
+K 180  *	5921	3207	3593	*	*	*	*	818	*	*	*	*	3601	*	4223	3489	*	*	*	180
+       0	*	*	*	*	*	*	4957	0	0	
+
+K 181  *	*	*	5383	3494	*	*	4243	930	4708	5238	*	*	4499	*	*	*	5451	*	2493	181
+       0	*	*	*	*	*	*	4957	0	0	
+
+L 182  *	*	5454	*	3653	*	*	*	*	244	*	*	*	*	*	*	*	5838	*	4799	182
+       0	*	*	*	*	*	*	4957	0	0	
+
+Q 183  5863	*	5999	3187	*	*	*	*	2835	5666	3262	4741	*	1216	3456	5685	6078	*	*	*	183
+       0	*	*	*	*	*	*	4777	0	0	
+
+P 184  *	*	5940	2822	2409	*	*	1881	3521	5816	3904	*	3674	6401	*	*	3761	*	*	4411	184
+       0	*	*	*	*	*	*	4777	0	0	
+
+H 185  *	*	3715	2760	*	*	2295	*	4438	*	*	3146	*	*	*	*	*	*	*	1275	185
+       0	*	*	*	*	*	*	4777	0	0	
+
+R 186  5381	*	*	5348	*	4741	*	*	4609	*	*	2883	*	6020	864	3655	4411	*	*	4438	186
+       0	*	*	*	*	*	*	4777	0	0	
+
+M 187  *	*	1443	3808	*	5827	*	*	*	*	960	5099	*	*	*	*	*	*	*	*	187
+       0	*	*	*	*	*	*	4783	0	0	
+
+S 188  3670	*	*	*	5685	1638	*	*	4411	*	*	1192	*	*	*	3379	*	*	*	*	188
+       16	*	6530	*	*	*	*	4777	0	0	
+
+D 189  *	*	1267	2429	*	*	*	5713	1795	*	*	*	4409	*	5630	*	*	5356	*	*	189
+       0	*	*	*	*	*	0	4777	0	1000	
+
+V 190  6245	*	*	*	*	*	*	3610	5356	6110	*	*	4409	*	5099	3977	1384	1543	*	*	190
+       0	*	*	*	*	*	0	4777	0	1000	
+
+I 191  *	*	*	*	*	*	*	607	*	2929	5675	*	*	*	*	*	*	2377	*	*	191
+       0	*	*	*	*	*	0	4777	0	1000	
+
+D 192  *	*	987	3359	*	*	*	*	3849	*	*	2150	5713	*	*	3566	*	*	*	*	192
+       0	*	*	*	*	0	*	4777	0	1000	
+
+G 193  4415	*	*	*	*	1918	*	4411	*	*	*	*	*	*	*	903	4651	3899	*	*	193
+       0	*	*	*	*	*	*	4777	0	0	
+
+R 194  4578	*	3387	3802	*	*	*	6032	2133	*	*	4392	*	*	2763	3039	2114	*	*	*	194
+       0	*	*	*	*	*	*	4777	0	0	
+
+N 195  4768	*	2279	4411	*	*	6015	*	2523	*	*	2010	*	2903	6201	3568	4609	*	*	*	195
+       280	*	2505	*	*	*	*	4777	0	0	
+
+I 196  *	*	*	*	4821	*	*	524	*	3133	4235	*	*	*	*	*	*	5091	*	3784	196
+       475	*	1834	*	*	0	*	4498	0	1463	
+
+E 197  *	*	3093	2645	*	*	*	3227	1729	*	*	4585	*	3373	5710	4073	5261	3803	*	*	197
+       0	*	*	0	*	0	*	4296	1019	1566	
+
+K 198  5741	*	4402	3457	*	6081	2212	*	1857	*	*	3068	*	4002	3485	*	4364	*	*	5898	198
+       0	*	*	*	*	*	*	4717	0	0	
+
+M 199  *	*	*	*	*	*	*	159	*	5338	4859	*	*	*	*	*	*	4473	*	*	199
+       0	*	*	*	*	*	*	4717	0	0	
+
+E 200  6191	*	2212	802	*	*	*	*	*	3963	*	4210	*	*	*	4907	4456	*	*	*	200
+       0	*	*	*	*	*	*	4717	0	0	
+
+A 201  3698	*	*	*	5319	*	*	2848	*	6268	*	*	*	*	*	*	*	423	*	*	201
+       0	*	*	*	*	*	*	4717	0	0	
+
+N 202  *	*	5015	2249	4628	*	3245	*	3942	*	*	1975	*	*	*	5898	4290	*	*	2149	202
+       0	*	*	*	*	*	*	4717	0	0	
+
+I 203  *	*	*	*	*	*	*	2313	*	554	4667	*	*	*	*	*	*	3671	*	*	203
+       26	5828	*	0	*	*	*	4296	1000	0	
+
+R 204  *	*	*	3791	*	*	*	*	1210	*	*	1825	*	*	3381	*	4138	4973	*	5118	204
+       0	*	*	0	*	*	*	3759	0	0	
+
+//
+�HHsearch 1.5
+NAME  68a5857c951cd0795a2bfc79e65a0c63
+FAM   
+FILE  68a5857c951cd0795a2bfc79e65a0c63
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:21:28 2013
+LENG  88 match states, 88 columns in multiple alignment
+FILT  121 out of 1407 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.4 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCHHHHHHHHHHHHHHHHCCCCCCCEECHHHHHHHHHHHHHHHCCCCCCHHHHHHHHHHHCCCCCCCCCHHHHHHHHHHHHHHHHHCC
+>ss_conf PSIPRED confidence values
+9579999999999999825389989777999999999986765178898999999999866799991949999999999999998619
+>Consensus
+xxxxxxxxxlxxxFxxxdxxxxxxgxixxxelxxxlxxxxxxxxxxxxxxxxxxxxxxxxdxxxdgxixxxeFxxxxxxxxxxxxxxx
+>68a5857c951cd0795a2bfc79e65a0c63
+SELEKAVVALIDVFHQYSGREGDKHKLKKSELKELINNELSHFLEEIKEQEVVDKVMETLDSDGDGECDFQEFMAFVAMITTACHEFF
+>gi|60097902|ref|NP_002007.1| filaggrin [Homo sapiens]gi|84028206|sp|P20930.3|FILA_HUMAN RecName: Full=Filaggringi|56205087|emb|CAI19595.1| filaggrin [Homo sapiens]gi|260158880|gb|ACX32320.1| filaggrin [synthetic construct]
+------------------SEESDTQSVSAHGQAGPHQQSHQESTRGQsgERSGRSGSFL--------------------------YQV--
+>gi|196016045|ref|XP_002117877.1| hypothetical protein TRIADDRAFT_51129 [Trichoplax adhaerens]gi|190579546|gb|EDV19639.1| hypothetical protein TRIADDRAFT_51129 [Trichoplax adhaerens]
+------EDILMKALEVLD-QEHK-EHLTIDEITKFMTE-----YGEAFTQDELEEMKSAAVDQEKGVIYYKDYVSLLVV---------
+>gi|1396048|dbj|BAA12908.1| troponin C [Chlamys nipponensis akazara]
+---EKQISDAKQAFCNFD-KKKE-GTVSCKDLGAIFKS-----LGLVMKDDKIKDWSDEVDEEATGRLSCEQWLKLFEWKLKE-----
+>gi|242033981|ref|XP_002464385.1| hypothetical protein SORBIDRAFT_01g017320 [Sorghum bicolor]gi|241918239|gb|EER91383.1| hypothetical protein SORBIDRAFT_01g017320 [Sorghum bicolor]
+---EDELIYIRAQYNLLE-PDSGDGRICIDNFSTALLQN----CTDAMKESRTLEILNALEPLAYRRMDFEEFCAATISPYQ------
+>gi|66808853|ref|XP_638149.1| EF-hand domain-containing protein [Dictyostelium discoideum AX4]gi|74996819|sp|Q54MZ4.1|MCFB_DICDI RecName: Full=Mitochondrial substrate carrier family protein Bgi|60466585|gb|EAL64637.1| EF-hand domain-containing protein [Dictyostelium discoideum AX4]
+----------------------------MSNNNNNNNN-----NNNNNNNNNN----NNNNNNNNDKNNNNNIDSSIK----------
+>gi|220908286|ref|YP_002483597.1| Calcium-binding EF-hand-containing protein [Cyanothece sp. PCC 7425]gi|219864897|gb|ACL45236.1| Calcium-binding EF-hand-containing protein [Cyanothece sp. PCC 7425]
+-KLYATQMAWWENLRAATDKDNN-GQVTLEEWSAFWEAWLTSV---ANEAATgqtpsleaikgsAAVTFDMIDSNQDGQVTSDEYASWFQTLN-------
+>gi|334328558|ref|XP_001367800.2| PREDICTED: calpain-12 [Monodelphis domestica]
+---SAPLDFdLEQLFHELA---GEEEAISTAQLQALLSLALEPgdwgsswTHPPGeIGFRTCEQLIHCFGqRG--HCLTLPEFQQLWYRL--------
+>gi|241711501|ref|XP_002413417.1| Ca2+ sensor, putative [Ixodes scapularis]gi|215507231|gb|EEC16725.1| Ca2+ sensor, putative [Ixodes scapularis]
+---------MLRRYKGFV-KDCPSGHLTEQGFLRIYKL----FFPQGDPSKFTSLIFRVFDENKVRLFSYQWFLrwrPVVLLLCVS-----
+>gi|195012466|ref|XP_001983657.1| GH15448 [Drosophila grimshawi]gi|193897139|gb|EDV96005.1| GH15448 [Drosophila grimshawi]
+---EESKRRLGLIVDRID-ADKN-VFITLAELKAWIQY-----TQRRYIDEDVSRIWRQHNPDNNKTISWDVYRKSIYG---------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+S 1    *	*	*	3052	*	*	*	*	*	*	*	*	*	*	*	1047	1338	*	*	*	1
+       0	*	*	*	*	*	*	4488	0	0	
+
+E 2    4650	*	2293	2928	*	*	*	4553	3118	*	*	4496	4559	4451	2337	3317	*	4793	*	*	2
+       0	*	*	*	*	*	*	7065	0	0	
+
+L 3    3387	*	4818	*	4777	*	*	2853	*	1085	*	*	*	*	*	*	4500	2486	*	*	3
+       0	*	*	*	*	*	*	7381	0	0	
+
+E 4    5747	5712	4509	1683	*	4754	4176	*	4962	6177	4259	3714	3698	4204	5756	3381	5780	5545	5873	4727	4
+       0	*	*	*	*	*	*	9101	0	0	
+
+K 5    3173	*	3199	1817	5676	*	*	*	3249	4079	*	4148	*	4004	4531	3541	5936	5382	*	5363	5
+       0	*	*	*	*	*	*	9266	0	0	
+
+A 6    3054	6400	3603	2741	*	6473	5356	5978	5281	4607	*	4611	6378	2755	4691	2994	3517	4894	*	4996	6
+       34	6318	6537	2807	222	*	*	9594	1000	0	
+
+V 7    4852	*	5261	4235	4466	*	*	2264	3995	2696	3733	*	5454	3617	4962	5443	*	3224	*	3753	7
+       16	6529	*	1000	1000	*	0	9739	1092	1000	
+
+V 8    2958	6365	2636	2681	6796	*	4971	4762	3576	5581	5118	4216	*	3954	3617	4907	4444	5364	*	5179	8
+       15	6623	*	1585	585	0	*	9919	1095	1000	
+
+A 9    3616	*	3191	2630	*	3682	*	5426	2995	5227	6511	5015	5207	3873	3285	5747	3452	4930	*	6443	9
+       51	6060	5681	3450	138	*	*	10045	1298	0	
+
+L 10   4207	6129	*	*	3621	*	*	2484	*	1484	4739	*	*	*	6319	*	4860	3099	4609	3798	10
+       15	*	6559	*	*	710	1363	10028	0	1273	
+
+I 11   4213	7039	5916	3488	5104	4309	5527	3013	2681	4852	6159	5722	*	4612	3248	4363	5302	3874	3382	*	11
+       0	*	*	*	*	*	0	10053	0	1223	
+
+D 12   3839	*	3392	2952	5011	*	5348	4979	2283	4074	*	3786	*	4481	3095	4756	4618	4984	6652	*	12
+       22	*	6020	1286	762	0	*	10126	1223	1223	
+
+V 13   2232	6047	5614	5036	4986	7004	7353	3028	4663	2656	4852	4945	*	4012	5807	3879	5980	3272	6569	6629	13
+       17	6450	*	0	*	1051	951	10148	1020	1163	
+
+F 14   6370	6822	*	*	658	*	*	*	*	2930	6245	*	6574	*	*	*	*	4961	3749	3578	14
+       32	6338	6687	5334	36	*	0	10164	1178	1001	
+
+H 15   4545	6988	2962	3577	5184	5084	3779	4977	2388	3861	6796	3252	*	3991	4365	4788	*	4822	6826	6653	15
+       10	*	7179	*	*	*	0	10184	0	1416	
+
+Q 16   3456	4976	6283	4081	5054	6486	5374	4631	3464	2714	4008	4401	*	3604	3599	3634	4344	5248	*	5262	16
+       11	7057	*	1792	492	2655	249	10199	1127	1523	
+
+Y 17   3999	5707	6680	6576	1980	6680	5442	3489	6582	2346	5673	5188	5666	*	*	5544	6322	5194	5258	2630	17
+       38	7074	5750	1585	585	1774	499	10174	1000	1416	
+
+S 18   3203	5947	1042	4556	5162	6673	5755	*	5600	6292	*	5156	6333	*	5314	3601	4685	4305	6660	6615	18
+       2267	*	336	*	*	2351	315	10150	0	1779	
+
+G 19   3757	*	1412	4366	*	2517	*	*	*	3373	*	*	4350	*	*	2911	*	4367	*	*	19
+       127	4361	4813	2807	222	199	2955	6806	1023	8699	
+
+R 20   4240	6449	4089	3951	6568	5042	5281	5197	2141	4691	6697	5166	3833	4348	3078	5385	3432	4035	*	*	20
+       60	7046	4904	271	2546	744	1311	9987	1650	2894	
+
+E 21   5318	6824	1686	3117	*	4831	5537	*	3341	6279	*	2614	4726	4520	5251	4616	4056	*	*	*	21
+       33	7326	5919	3000	193	743	1313	10154	1000	2275	
+
+G 22   4036	6278	3634	3690	6713	1973	5795	*	2717	6697	7099	3590	5699	4953	3881	3986	5520	6317	*	5892	22
+       165	7060	3314	2000	415	1092	913	10248	1000	1708	
+
+D 23   *	4937	2018	3401	6311	5209	6822	6044	3583	7042	*	3214	4673	3813	5359	2730	3886	6600	*	*	23
+       2532	6690	291	0	*	1203	822	10163	1000	3039	
+
+K 24   4366	5133	2424	*	*	*	4341	4471	2187	*	*	*	*	4678	3442	2952	3033	*	*	4639	24
+       80	4207	*	1000	1000	73	4344	7121	1012	8690	
+
+H 25   4637	*	4224	3468	*	945	5250	*	4940	*	5012	4311	6593	4486	4703	5041	*	4941	*	*	25
+       49	6947	5308	0	*	905	1101	10181	1256	1602	
+
+K 26   4442	5511	5989	3582	4763	5505	6788	4897	2691	4543	*	*	*	3886	2942	3213	3376	4704	*	3420	26
+       0	*	*	*	*	0	*	10244	0	1650	
+
+L 27   6287	6986	*	*	5703	*	*	1571	5835	1480	3931	*	*	6527	*	6372	*	2652	*	*	27
+       8	7448	*	2322	322	*	*	10297	1000	0	
+
+K 28   5752	5361	2665	3696	7170	4449	*	*	4441	7132	6038	3284	5027	5569	4629	2271	2489	6201	*	7057	28
+       20	6209	*	1571	592	*	*	10297	1092	0	
+
+K 29   3111	7006	5882	4539	4907	5790	*	4635	2955	2593	4848	7052	4567	4376	3225	5611	4677	3355	7192	5240	29
+       0	*	*	*	*	0	*	10346	0	1000	
+
+S 30   2981	*	2765	2437	5004	5427	5775	6549	3805	*	5575	3864	5448	4193	4123	3035	5476	6617	7070	*	30
+       41	5706	6785	0	*	*	*	10357	1187	0	
+
+E 31   4402	7067	2961	1035	*	5975	5573	6887	5174	6697	7253	4603	7170	3679	6730	4328	4855	6806	6546	*	31
+       0	*	*	*	*	1969	426	10301	0	1387	
+
+L 32   5922	6793	*	*	2017	*	*	3221	*	1464	4721	6480	*	6631	6547	6784	6292	2908	6544	5503	32
+       0	*	*	*	*	*	0	10310	0	1246	
+
+K 33   4143	7095	6378	4170	6632	4379	5768	4162	2602	3487	5436	5603	5653	3262	2947	4254	4444	4070	*	5217	33
+       31	6568	6540	1000	1000	*	0	10310	1013	1246	
+
+E 34   3456	*	3508	3189	6879	5064	4997	5475	3389	4716	5857	3274	5598	3292	4040	3641	3828	5470	*	6898	34
+       29	6449	6906	2807	222	*	0	10213	1012	1460	
+
+L 35   2710	5289	6440	6713	3797	4475	6593	2689	5751	2323	4161	6471	5960	*	6105	4409	6203	3367	4979	6296	35
+       40	6037	6375	557	1643	*	0	10194	1104	1613	
+
+I 36   5315	5335	*	5664	3240	5046	6563	2936	6580	1565	3482	5572	6668	*	*	*	5983	2969	5553	5683	36
+       82	4679	5922	346	2229	2178	360	10152	1605	1796	
+
+N 37   4627	6270	4625	3232	*	5915	6858	5344	3091	4280	7068	3421	6338	3536	2410	3750	4045	4629	*	5785	37
+       43	*	5105	*	*	*	0	10181	0	1878	
+
+N 38   2991	5634	4227	3213	*	5887	7524	6158	3104	3886	5829	4035	6839	3514	3970	3386	3577	4871	*	5621	38
+       1357	5853	755	2440	294	1200	824	10135	1137	2388	
+
+E 39   3077	5198	*	3952	*	5403	5440	4458	5287	3235	5683	3157	*	3533	3953	3469	3629	4601	5428	4396	39
+       176	5447	3446	1585	585	4733	55	8520	1028	7836	
+
+L 40   4459	5535	4766	4242	2309	5484	5529	5367	5605	1775	4421	5612	*	*	5419	3675	5938	5697	*	4156	40
+       175	4528	3822	1245	790	5363	35	8479	1260	7894	
+
+S 41   3568	*	4559	3889	*	2857	4864	*	4021	*	5380	3361	2308	4599	3852	3831	3886	*	*	*	41
+       246	5653	2868	2000	415	*	0	8461	1000	7913	
+
+H 42   5272	*	3686	2770	4260	4075	3313	5015	4210	4170	*	2352	*	4682	*	4147	4193	4288	*	*	42
+       314	3279	3435	686	1402	4197	81	8067	1426	8173	
+
+F 43   5059	*	5055	5220	2405	3076	*	5214	*	3135	4255	4344	4112	5375	4246	4245	*	3581	5070	3998	43
+       514	3584	2209	1749	510	337	2262	8086	1328	8181	
+
+L 44   5425	6437	*	4908	3595	4903	4533	3348	4521	1805	3875	5408	6998	5939	6129	4504	3676	3899	6927	5895	44
+       78	5138	5380	0	*	3065	184	9846	1231	4446	
+
+E 45   5098	*	4142	3479	6086	1606	5066	6198	3178	4882	*	3876	4842	4594	4766	4626	5519	5422	*	5239	45
+       59	5012	6781	381	2106	1883	456	9796	1291	4352	
+
+E 46   4319	5190	2819	3143	3918	4296	4991	5564	3992	3736	6536	3875	*	4705	3720	5501	4818	4543	6551	4165	46
+       144	4657	4177	404	2032	3963	96	9882	1441	3658	
+
+I 47   3658	5487	4512	4936	5701	4109	5535	4910	3304	4926	4889	2978	3663	3768	3598	3866	5449	4419	6247	6817	47
+       87	5026	5176	1277	767	1292	758	9779	1630	4251	
+
+K 48   5650	*	4131	4167	5053	4458	5991	3242	4529	2621	4304	4443	2833	5544	5643	4436	4496	4757	6395	4423	48
+       27	6785	6743	2000	415	2084	388	9946	1000	3396	
+
+E 49   3774	*	3219	4677	*	*	*	5041	3742	4871	5261	3687	3572	5520	4125	2534	2644	6763	6431	5586	49
+       82	5127	5217	1305	748	2667	247	10004	1301	2989	
+
+Q 50   4077	*	3253	2566	*	4308	5953	5182	2923	4201	7075	4191	4096	4242	4362	4413	3652	4719	*	*	50
+       35	5367	*	1198	826	1371	705	10008	1247	3129	
+
+E 51   3768	*	3285	2513	6922	4388	5293	6063	3125	4731	*	4749	4472	3988	4291	3574	4696	4359	*	4947	51
+       0	*	*	*	*	*	0	10099	0	2313	
+
+V 52   4094	6808	3004	2216	4389	4854	5890	5005	3807	4005	5124	5256	5644	4998	4518	5506	3995	4715	5360	4979	52
+       76	4291	*	2973	197	933	1071	10099	2629	2313	
+
+V 53   2748	4670	6808	6593	4878	5704	*	2506	6492	2492	5493	6453	6352	6539	5650	5858	3954	2701	5191	4830	53
+       30	6821	6453	0	*	1950	432	10212	1000	1564	
+
+D 54   4630	5439	3025	2811	*	4485	6984	4665	3868	4189	*	4984	6726	3076	2552	3630	4766	*	*	6907	54
+       60	4618	*	1839	473	*	0	10184	1622	1616	
+
+K 55   3250	5863	4203	2283	6816	4448	5801	4892	3476	4539	5374	4557	7032	3196	3285	4659	5913	5104	7054	*	55
+       0	*	*	*	*	*	0	10184	0	1616	
+
+V 56   4175	*	6420	5775	3959	*	6854	2125	6549	1839	3422	*	*	*	*	*	3773	3257	4546	6896	56
+       30	7356	6129	3077	182	2573	265	10184	1100	1616	
+
+M 57   6545	6490	*	*	1928	6823	6424	2470	6093	2051	3972	7020	*	*	*	5625	5701	4218	4024	4946	57
+       70	*	4409	*	*	1859	465	10172	0	1709	
+
+E 58   3449	6909	3251	3122	6527	5003	5409	*	2364	5877	*	3417	5922	3503	3417	3723	4807	*	*	*	58
+       71	6058	4925	2552	270	1040	961	10135	1101	2421	
+
+T 59   4166	6445	3675	2448	6366	4474	5081	4703	3862	4414	4830	3982	6720	4066	4612	4104	5860	3436	*	4204	59
+       34	*	5419	1000	1000	1853	468	10213	1001	2304	
+
+L 60   3140	4545	*	4851	3060	5479	6135	3636	5544	2300	3941	4246	5814	5953	*	6870	5131	3506	6821	4013	60
+       50	5316	6796	1132	879	1551	602	10209	1787	2286	
+
+D 61   6888	6780	1082	3709	*	4544	*	5005	6931	4796	6806	3212	5142	5302	5204	4357	5178	5818	*	5399	61
+       52	5729	5896	1893	453	*	0	10195	1294	1973	
+
+S 62   4932	6750	5671	3676	6196	5505	4859	3751	3420	4235	*	5026	3378	3750	4368	2912	3086	3860	*	*	62
+       32	*	5517	*	*	1043	958	10174	0	2239	
+
+D 63   5524	*	1913	3460	*	3947	7257	6775	4380	4873	6654	1914	4659	4498	6536	4026	6877	6684	*	6693	63
+       34	5419	*	414	2004	1597	579	10183	1230	1931	
+
+G 64   4284	6567	4373	3448	*	2371	5205	*	2822	4394	7100	2786	4797	4676	4553	3930	4891	6607	*	6764	64
+       19	7180	7305	2141	371	2141	371	10236	1122	1580	
+
+D 65   5225	*	1457	3541	*	3500	5650	6812	4447	5644	*	2800	6717	6888	4294	4769	3802	*	*	5707	65
+       59	5282	6105	1916	444	2619	256	10249	1514	1525	
+
+G 66   4907	*	3398	4655	*	915	*	*	3375	*	*	4560	7161	4249	5568	4134	*	*	*	5308	66
+       51	6358	5467	0	*	2840	217	10225	1039	1829	
+
+E 67   5286	*	*	3947	4935	3694	4681	4614	2253	5079	4921	5314	7078	4338	3113	4037	3658	4944	*	3692	67
+       34	5893	7212	585	1585	501	1769	10181	1116	2249	
+
+C 68   6542	6914	*	*	5219	*	*	1489	6289	1960	3856	6451	*	*	*	6769	*	2109	7240	*	68
+       0	*	*	2585	263	2090	386	10251	1000	1398	
+
+D 69   5530	5957	2209	4068	6175	4397	5595	*	4706	*	*	2945	4541	5409	7109	2404	2661	*	*	6011	69
+       0	*	*	*	*	*	0	10260	0	1266	
+
+F 70   4989	6998	*	5008	1546	7345	*	4409	4645	2474	7240	6470	*	*	4001	5503	5397	4944	5100	2985	70
+       28	6295	7332	1000	1000	*	0	10260	1044	1266	
+
+Q 71   3666	*	2537	1734	5577	5157	5590	6899	3727	5924	6863	4585	6013	4385	5106	4000	4723	5272	*	6727	71
+       9	*	7343	0	*	2270	335	10257	1000	1378	
+
+E 72   5055	*	2565	1116	6861	4981	6425	5856	5597	*	*	5122	5952	2875	*	6194	4395	7120	*	*	72
+       0	*	*	*	*	*	0	10251	0	1398	
+
+F 73   5573	*	*	*	655	*	6691	4695	*	3590	6708	*	6769	*	*	*	*	5324	4974	2867	73
+       28	6656	6757	2585	263	*	0	10251	1000	1398	
+
+M 74   4334	4732	6411	4622	5827	5869	*	3217	4352	2348	4180	6843	*	4287	4247	3962	4478	2750	4602	7344	74
+       0	*	*	*	*	*	0	10188	0	1795	
+
+A 75   3722	*	3049	4090	6403	7086	5051	4220	2889	4923	*	4733	5247	3310	3090	3660	4238	4705	*	5571	75
+       25	6533	7229	0	*	*	0	10188	1043	1795	
+
+F 76   3783	5642	6319	6424	2899	5738	6606	3235	4629	2007	3100	5888	*	*	5877	4147	6771	4180	6463	4576	76
+       21	6142	*	2624	255	3270	158	10135	1190	1900	
+
+V 77   4150	4337	*	5819	3750	6410	5892	2318	6822	1912	3279	*	*	6474	6591	*	6455	3246	6449	4455	77
+       48	5433	6659	1443	662	*	0	10128	1213	1795	
+
+A 78   3708	5296	5458	3891	6901	3408	5296	3696	3845	3597	5170	5246	*	4884	3887	2918	4046	5184	6517	3976	78
+       13	6767	*	1570	593	461	1871	9986	1238	1938	
+
+M 79   4647	6000	3669	4684	5533	3538	4464	5516	2601	6830	5549	4823	5086	4339	3450	2913	6111	3931	6627	5138	79
+       0	*	*	*	*	*	0	9910	0	1142	
+
+I 80   5165	*	4647	4966	4115	*	6039	2983	4087	2188	4656	5291	4723	4001	4600	4245	4684	3661	4476	*	80
+       0	*	*	1000	1000	*	0	9566	1010	1142	
+
+T 81   3363	*	5585	5935	*	3540	5776	5096	5063	3419	3866	4626	4238	3911	4877	3799	2907	3291	*	4687	81
+       41	5152	*	0	*	*	0	9036	1048	1142	
+
+T 82   3000	5325	*	5438	*	5195	4083	3872	2715	2959	*	2862	5506	5004	3450	*	4243	4147	*	*	82
+       0	*	*	*	*	*	0	8441	0	1142	
+
+A 83   3516	*	2829	1832	4713	3661	*	*	*	3090	*	4630	*	4457	3251	4976	4899	*	*	*	83
+       0	*	*	*	*	0	*	7091	0	1142	
+
+C 84   2517	2607	*	*	4481	*	*	*	*	4152	*	*	*	4119	*	*	4132	3118	*	1598	84
+       0	*	*	*	*	*	*	6141	0	0	
+
+H 85   *	*	3758	*	2777	4275	2300	3827	3679	4014	*	*	*	4179	2405	*	*	*	3817	*	85
+       0	*	*	*	*	*	*	5628	0	0	
+
+E 86   *	*	*	2892	*	*	*	3039	1182	*	*	3618	*	*	3118	*	*	3236	*	*	86
+       0	*	*	*	*	*	*	4399	0	0	
+
+F 87   *	*	*	*	1244	*	2876	*	*	2502	*	*	*	3102	*	*	2752	*	*	*	87
+       0	*	*	*	*	*	*	3156	0	0	
+
+F 88   *	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	88
+       0	*	*	0	*	*	*	2396	0	0	
+
+//
+�HHsearch 1.5
+NAME  6a5d2aa2a4dfa511f1b7a6417307a0bf
+FAM   
+FILE  6a5d2aa2a4dfa511f1b7a6417307a0bf
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:59:12 2013
+LENG  225 match states, 225 columns in multiple alignment
+FILT  124 out of 1363 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  10.0
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCEEECCCCEEEECCCCEEEEEEECCCCCCCCEEEEEEECCCCCCEEEEEEECCCCCEEECCCCCCCEEEEEECCCCCEEEEEECCCHHCCCCEEEEEEC
+CCCCCCCEEECCCCEEEEEEECCCCCCEEEECCCCCEEECCCEEEEEEEEECCCCCCEEEEECCCCCCCCCCCEEEEECCCCEEEEEEEEEEECCCCCCE
+EEEEEEECCCCEEEEEEEECCCCCC
+>ss_conf PSIPRED confidence values
+9379688878995799899998963888889789999958999858999995378840444666872688750588948699944542009847999973
+8987521120378557778602356404785288621205855999999827779976999899842577321024754997899999999503457976
+9999993889888999980579839
+>Consensus
+xxxxxxpxxxxxxxGxxvxLxCxxxxxxxxxxxixWxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxrxxxxxxxxxxxxsLxIxxvxxxDxgxYxCxvxx
+xxxxxxxxxxxxxxxxlxvxxxxxxxPxvxxxxxxxxxxxgxxxxlxCxxxxxxPxxxxvxWxxxxxxxxxxxxxxxxxxxxxxxxsxLxixxxxxdxgx
+ytCxvxxxxxxxxxxxxxxxxxpxx
+>6a5d2aa2a4dfa511f1b7a6417307a0bf
+EVNLQQSGTVLARPGASVRMSCKASGYSFTSYWLHWIKQRPGQGLEWIGGIYPGNRDTRYTQRFKDKAKLTAVTSANTAYMELSSLTNEDSAVYYCSIIY
+FDYADFIMDYWGQGTTVTVSSAKTTAPSVYPLAPVCGDTTGSSVTLGCLVKGYFPEPVTLTWNSGSLSSGVHTFPAVLQSDLYTLSSSVTVTSSTWPSQS
+ITCNVAHPASSTKVDKKIEPRGPTI
+>gi|2707433|gb|AAB92274.1| T-cell receptor gamma chain Vg2-Jg1 [Gallus gallus]
+---------ITMSRVNT-DLKCHFKdfSGNFDNTVIHWYQQKENKAPVRMIYFTSG--RTKVNESFQRhRYRIQTIPTQRLCTLTIRNVIPDDAATYYCA
+YW-DP-RRILLQSFRLWYKAHCIRQRKFSTREL-------------------------------------------------------------------
+----------------------------
+>gi|145408204|gb|ABP65664.1| MHC class I antigen [Sus scrofa]
+----------------------------------------------------------------------------------------------------
+------------------------------------------htyqwmygcylgpdglflrgysqfgydgadyvalne--DLRSWTAADMAAQI------
+--------skrkweaadeaerm----RSYlQGRCVEWLQKYLEMGK-----------------dt--LQ--hadP-PQPPV
+>gi|194039786|ref|XP_001927231.1| PREDICTED: butyrophilin subfamily 1 member A1-like [Sus scrofa]
+HFDVIGPPEPIlAVVGEDAELPCRLSPNVSAeRMELRWFRK--KVSPAVFVRREGREQAGEQMPEYRGRVTLVEDDiAAGHVAVRIQGVKASDDGEYRCF
+FRQD-------ENYEEAIVHLKVAALGSDPQIHMEV-----QESGEIQLECTSMGWYPEP-WVQWrtPKGEEFPSMSESKSPNEEGLFTVAASVIIRDPS
+--VKNVSCYVRNLLLGQEKEVEISIPAPF-
+>gi|297295448|ref|XP_001107711.2| PREDICTED: macrophage colony-stimulating factor 1 receptor-like isoform 1 [Macaca mulatta]
+--------------------------------------------------------------------------------FTIHRAKFIQGQDYQCSALM
+GS-----RKVMSISIRLKVQKVIPGPPALTLVPEELVRIRGEAAQIVCSASNI-DVDFDVFLQHNTTKLAIPQRSDFH-DNRYQKVLTLSLGQVDFqHAG
+NYSCVASNVQGKHSTSMFFR------
+>gi|242008252|ref|XP_002424921.1| down syndrome cell adhesion molecule, putative [Pediculus humanus corporis]gi|212508527|gb|EEB12183.1| down syndrome cell adhesion molecule, putative [Pediculus humanus corporis]
+---KIEPVDTNVTSGQELILNCQGNGYPTPTTTWKK---STGEFL-----------GEYKDFLYDSNISIYPNGS-----LKFSKIFKENQGHYLCELKN
+E---------VGSGLSKLIYLKVNVPVYFPQKFKQIQVIQGKEAHMQCPAIGETP--IEIEWriKGQKIQENKhSRYIINKQILTDGLVSEISIPKTYRh
+DTGIFTCYATN------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+E 1    *	*	3255	2163	*	*	4183	4345	4591	*	*	*	*	1450	*	3941	3394	*	*	*	1
+       0	*	*	*	*	*	*	6800	0	0	
+
+V 2    3963	*	*	*	4772	*	*	3352	*	2289	*	4837	*	4852	*	3787	*	1229	*	5155	2
+       0	*	*	*	*	*	*	7996	0	0	
+
+N 3    *	*	4249	5600	4445	4171	5206	5482	2843	*	5508	5194	*	4504	*	3075	3832	1609	*	5235	3
+       0	*	*	*	*	*	*	8547	0	0	
+
+L 4    4612	*	*	5855	3961	5944	*	3423	*	1873	5639	*	4537	5843	4757	5712	3572	1950	5994	*	4
+       0	*	*	*	*	*	*	8939	0	0	
+
+Q 5    5851	*	4827	3313	*	5460	*	4255	4499	4208	5788	5211	6126	2797	5824	2572	2552	3136	*	*	5
+       22	6030	*	2000	415	*	*	9132	1000	0	
+
+Q 6    3540	*	4981	3908	*	5735	5022	6114	4500	5625	6442	5908	2595	2229	4084	3996	4015	3368	*	*	6
+       67	4887	6442	3024	189	*	*	9201	1206	0	
+
+S 7    *	*	4505	3612	*	5145	5118	*	5944	4595	*	6543	1007	4659	5092	2843	4542	*	*	*	7
+       0	*	*	0	*	0	*	9565	1008	1008	
+
+G 8    3508	*	4048	3845	*	3272	5948	*	4560	5806	6037	4669	2293	4133	6172	2779	3418	4911	*	*	8
+       34	6402	6406	0	*	*	*	9657	1000	0	
+
+T 9    3987	*	3190	3095	6291	6543	*	4622	6513	6209	6056	4063	3575	4042	4650	2697	3298	3565	6424	6590	9
+       37	5315	*	0	*	0	*	9792	1217	1000	
+
+V 10   4207	*	*	5309	5573	6733	*	3283	4126	2139	4611	6205	4422	6724	6789	3716	4920	1910	*	6914	10
+       27	5774	*	0	*	*	*	10022	1175	0	
+
+L 11   6657	6390	4437	3378	5448	6238	5804	3852	4586	4193	4900	6260	5447	5606	4252	2489	2967	3374	*	3813	11
+       31	5535	*	524	1715	0	*	10089	1198	1008	
+
+A 12   2242	5616	*	5589	5398	4898	*	3670	5023	4077	4822	5554	*	5467	4906	5400	5039	1624	*	5041	12
+       0	*	*	*	*	*	*	10123	0	0	
+
+R 13   4361	*	6007	4953	4822	*	5267	4961	3327	4162	6456	4967	5156	2529	3599	2820	3920	3348	5540	*	13
+       13	6855	*	4644	59	*	*	10400	1000	0	
+
+P 14   3708	*	4998	1951	*	*	*	4501	5193	3176	6590	6510	3103	6566	4058	3853	4355	3262	*	5595	14
+       14	6655	*	0	*	*	*	10275	1013	0	
+
+G 15   *	*	5263	4272	5688	483	5878	*	6484	*	*	4006	*	5885	5519	4704	6835	6473	*	*	15
+       11	7035	*	1585	585	*	*	10424	1000	0	
+
+A 16   3530	6989	2914	2434	*	2939	4725	*	4474	6709	6504	5328	6392	2763	5257	3618	4267	6580	*	*	16
+       15	6580	*	0	*	*	*	10697	1000	0	
+
+S 17   4980	5209	3333	4404	7126	*	5900	*	5694	7077	6805	3811	3209	4896	4890	2121	2210	4875	*	6873	17
+       16	*	6510	*	*	*	*	10720	0	0	
+
+V 18   2344	*	*	6888	5911	5837	*	3680	*	3291	5898	*	7057	*	6765	6627	4175	1075	*	7247	18
+       0	*	*	*	*	0	*	10485	0	1010	
+
+R 19   5126	*	5735	3334	5543	6810	4558	4931	5730	4279	6872	4491	4524	4742	4482	2750	2221	3363	5858	5550	19
+       0	*	*	*	*	*	*	10746	0	0	
+
+M 20   *	*	*	*	3234	*	7058	2602	7003	750	4115	*	*	*	*	6760	*	4539	*	6763	20
+       0	*	*	*	*	*	*	10746	0	0	
+
+S 21   5887	*	5324	4579	*	4786	4748	6602	4879	4523	5909	3101	2332	4922	3222	3064	2994	4999	7221	*	21
+       0	*	*	*	*	*	*	10746	0	0	
+
+C 22   5855	137	*	*	6492	6798	*	6376	7003	*	*	*	*	*	7058	5758	7134	*	*	*	22
+       0	*	*	*	*	*	*	10746	0	0	
+
+K 23   4845	7058	5513	3832	5913	3920	4821	5362	3407	4129	5395	3265	3778	5310	3858	3543	2867	4728	*	5933	23
+       17	6400	*	1585	585	*	*	10746	1018	0	
+
+A 24   2949	6848	6868	6376	3128	5083	5913	3376	*	3182	7158	6854	5322	7003	*	4729	4503	2187	*	3006	24
+       139	4017	5068	516	1734	*	*	10746	2003	0	
+
+S 25   5310	*	4421	4039	7153	4233	4394	5145	3596	4515	6855	4089	4456	5018	3804	2733	2405	5956	5865	5879	25
+       198	3884	4046	1087	918	1452	657	10471	2058	1374	
+
+G 26   4283	7109	3036	4354	6445	1633	*	*	4714	4852	*	3564	4969	4113	4392	3597	4639	6696	*	6689	26
+       123	*	3617	2807	222	1640	558	10450	1047	2439	
+
+Y 27   4187	5698	5504	4967	3289	3751	4312	4362	3978	3726	*	5061	4041	4882	4620	3887	4043	6033	6659	2852	27
+       93	6915	4204	0	*	103	3855	10426	1000	3274	
+
+S 28   4190	6636	4314	4062	4321	4220	4836	5372	5039	5404	6696	4180	2707	4723	5067	2702	3625	4058	*	5170	28
+       246	5451	2902	632	1495	1506	626	10697	1235	1948	
+
+F 29   3963	4575	4260	4520	4148	4629	6582	4741	3601	3500	6552	5493	2294	5140	4573	3743	5836	4004	*	5573	29
+       441	4874	2125	1436	666	2708	240	10451	1315	3922	
+
+T 30   3836	*	3012	3449	*	3639	6303	*	3616	4404	*	4258	5206	4791	4216	3434	2724	4214	*	5286	30
+       204	3899	3945	1270	773	2498	281	9844	1772	6277	
+
+S 31   5186	*	2558	5418	6551	4063	4145	*	4706	3593	*	4181	3284	4561	3882	3859	3729	3627	*	4725	31
+       98	4239	6296	1237	796	234	2741	10200	1594	6200	
+
+Y 32   5701	*	4212	3968	4753	3982	6518	3731	4425	3026	6634	4340	2647	4399	5722	4425	4356	3955	*	4017	32
+       44	5549	6905	0	*	854	1163	10689	1245	2069	
+
+W 33   4086	*	4565	5192	6713	4973	6443	3717	4738	4892	4611	4536	5271	4705	4932	2927	2804	3184	5578	3560	33
+       38	5269	*	1440	663	2161	365	10488	1378	1556	
+
+L 34   5034	*	*	6959	3609	*	6545	1870	*	2008	5719	*	*	*	*	*	5292	1938	5185	6199	34
+       20	*	6164	*	*	*	0	10728	0	1395	
+
+H 35   5986	5881	*	3508	3034	5809	3857	5958	4538	4001	6726	4736	*	3388	5591	2594	2927	4226	6677	5305	35
+       14	6690	*	0	*	*	0	10717	1000	1724	
+
+W 36   *	*	*	*	4829	*	*	5782	*	5688	*	6693	*	*	*	*	*	4831	214	5637	36
+       24	6752	7070	0	*	*	0	10717	1000	1724	
+
+I 37   *	*	6599	5864	2768	*	5607	3852	4182	3599	5216	6772	*	4865	4091	4577	3566	4864	4841	1869	37
+       30	*	5620	3000	193	930	1074	10713	1041	1871	
+
+K 38   *	*	5455	5551	5479	*	3997	4761	1841	4347	5088	6366	6921	3452	2217	*	4588	4009	5062	5972	38
+       284	4907	2784	1139	873	1492	634	10586	1630	1677	
+
+Q 39   5142	*	3384	4985	*	4112	5094	5756	3701	4010	5891	3906	*	1976	4506	4410	5463	3763	5532	4239	39
+       67	6381	4898	0	*	3414	142	10321	1020	4199	
+
+R 40   4514	*	2909	4295	5570	4470	6274	5147	2617	4939	*	3868	4067	4457	3240	4251	3785	4896	*	5008	40
+       89	*	4066	*	*	1474	644	10290	0	4357	
+
+P 41   4914	*	3060	3762	4959	4104	6649	5598	3480	4935	6847	3270	2118	6580	5440	3928	4337	4697	*	*	41
+       90	5058	5052	1885	456	1016	984	10377	1345	4039	
+
+G 42   4421	*	3476	5549	5622	1392	6456	*	4288	5722	7060	3902	6522	5054	3825	3775	4189	6799	*	4777	42
+       86	4331	6885	1167	850	1776	498	10501	1686	3062	
+
+Q 43   4150	6499	3661	2843	*	3289	5686	5340	3072	4859	*	4018	6883	3410	3538	3956	4047	4679	*	*	43
+       16	*	6460	*	*	2051	399	10536	0	2593	
+
+G 44   2968	*	3875	3258	6583	2918	*	6321	4271	5218	6706	4024	3198	4297	6084	3056	3597	7016	*	6750	44
+       120	5188	4250	458	1879	*	0	10561	1322	2381	
+
+L 45   5336	5804	5556	4720	5669	6554	*	4116	4747	2463	5662	4739	2113	4472	4326	3674	3899	4315	6296	*	45
+       212	6730	2976	0	*	2210	351	10462	1014	3322	
+
+E 46   4848	*	4550	2838	6826	5256	4560	6669	3425	5514	6504	4049	6362	2572	4255	3530	3513	3494	6214	*	46
+       61	5556	5624	1000	1000	4442	68	10311	1174	4769	
+
+W 47   6527	6416	4969	6385	2886	6361	6631	3623	5087	2392	6190	4907	5450	5778	3465	5195	4579	3436	4114	3701	47
+       17	6385	*	4392	70	*	0	10273	1084	4839	
+
+I 48   5750	*	5483	4245	4471	6525	*	2573	5670	1750	4155	5108	6318	5468	*	4449	6458	2501	*	6472	48
+       521	6324	1783	0	*	*	0	10273	1022	4839	
+
+G 49   2764	4880	*	*	3615	2875	*	3379	*	2271	6036	*	*	4003	6109	4887	4451	3441	5606	6229	49
+       131	4986	4176	2058	396	*	0	9533	1241	7310	
+
+G 50   3956	*	*	4156	3897	5670	4367	5047	4854	6174	4652	4973	*	*	3645	3107	2450	5056	4254	2916	50
+       75	6142	4787	1000	1000	1442	662	9391	1000	7510	
+
+I 51   5475	6153	6198	6514	3911	5438	6347	2139	5310	3119	6308	6450	5947	4580	3939	4199	4383	2700	6417	4199	51
+       14	*	6711	*	*	4339	73	9888	0	6011	
+
+Y 52   5169	*	3684	4355	3989	*	4313	4233	4361	3146	6538	3588	*	6367	4586	3238	3698	5223	*	2644	52
+       382	5315	2267	1000	1000	5073	44	9932	1172	5919	
+
+P 53   4389	*	3857	4807	5017	3352	5822	*	5132	6006	6063	5111	2547	4980	4379	2155	4818	4132	6130	5019	53
+       195	6304	3135	0	*	3036	188	9608	1041	7185	
+
+G 54   3931	5965	3414	3603	5625	3072	*	6271	3664	4921	*	4551	6156	3889	4444	2318	4151	4867	*	5875	54
+       220	4953	3196	946	1057	3312	153	9712	1169	7348	
+
+N 55   5010	*	2287	4950	4856	2271	*	*	3638	*	*	3711	*	6289	*	3018	2802	4926	*	5583	55
+       181	4244	3935	2043	401	1806	486	9466	1328	7431	
+
+R 56   *	*	3263	6315	4719	2374	5268	6565	4292	*	5211	3146	*	4138	3564	2604	3902	4630	*	6409	56
+       72	5377	5337	0	*	5412	34	9829	1160	6541	
+
+D 57   4593	*	3499	4153	6051	3692	5232	6362	2702	3762	5868	5067	6003	5804	3518	3024	3718	4068	*	5107	57
+       20	6165	*	2585	263	3506	133	9862	1029	6619	
+
+T 58   3422	*	3571	6089	6382	6115	3907	3672	3229	6063	6136	5272	3705	4754	4546	3606	3043	3801	*	4541	58
+       39	5245	*	1514	622	3956	96	9944	1202	6282	
+
+R 59   4067	*	4740	4046	4862	3589	4259	3853	3636	4693	*	3892	5565	3195	3882	3728	4708	3724	6295	5901	59
+       42	6355	5896	1000	1000	5137	42	10027	1010	6043	
+
+Y 60   6197	6088	4369	4007	2888	4574	*	3978	4804	4042	6346	6132	*	5329	3734	5459	5077	3142	5268	2281	60
+       39	6648	5932	3170	170	1759	505	10007	1000	6056	
+
+T 61   3166	6381	4027	4100	4156	3759	5559	*	4361	4863	6273	3520	3833	4970	4779	2881	3680	4926	6233	5360	61
+       32	6340	6684	0	*	2777	227	10200	1000	5003	
+
+Q 62   4554	6526	4134	2537	*	3509	4611	5074	4202	6403	6639	3407	2993	5379	4730	2965	4536	5646	*	6641	62
+       24	*	5952	*	*	3521	132	10287	0	4666	
+
+R 63   5217	*	4545	2950	6520	2415	6519	6378	3741	4908	6198	4235	2953	5518	4095	3347	4208	4880	*	6816	63
+       30	5605	*	1325	735	3666	118	10313	1238	4619	
+
+F 64   5429	*	4591	5073	2322	4495	5348	6731	4524	3042	5640	4764	6828	4994	6424	4641	3850	3065	*	3002	64
+       104	4666	5037	1509	624	2613	257	10317	1506	4519	
+
+K 65   4574	6748	4259	3048	*	3942	6645	6636	2899	*	*	4712	3361	2829	3531	3468	3615	6225	*	6914	65
+       125	3962	5712	630	1499	1413	679	10323	1836	4399	
+
+D 66   3302	*	3022	3189	6645	2487	5623	*	5063	4390	*	3413	3779	6088	4842	3777	3863	6508	6555	*	66
+       79	4239	*	1537	610	3089	180	10418	2136	3507	
+
+K 67   6966	6234	4451	4331	*	4216	4711	5978	3209	6718	5789	5628	*	4620	924	5728	5345	6897	*	*	67
+       18	6355	*	2000	415	1245	791	10431	1011	3231	
+
+A 68   3256	*	6893	5154	2026	5564	5858	3504	5397	3993	4935	6879	6465	*	5465	5260	6502	2496	7043	3276	68
+       23	6879	7096	1000	1000	3349	149	10680	1000	2291	
+
+K 69   5279	*	5759	3910	6897	5803	4847	4664	4359	4024	*	3158	6698	2989	3770	3026	2750	3872	6613	7023	69
+       43	6839	5617	2000	415	2803	223	10450	1000	2301	
+
+L 70   4302	6480	5498	5543	2696	4091	6699	3603	*	2685	4074	5691	5386	5452	5857	4453	4514	2829	6893	4243	70
+       12	*	6882	*	*	*	0	10417	0	2634	
+
+T 71   5117	*	3840	4174	4307	4771	5069	3715	4699	3933	6947	4312	4344	4393	4191	3408	2473	4143	*	6988	71
+       108	6959	3965	0	*	1837	474	10398	1000	2804	
+
+A 72   3898	*	4741	4208	5246	2944	5216	5502	3544	4479	*	4292	3927	3759	3100	3710	3645	5111	6269	*	72
+       101	6585	4124	0	*	4052	90	10440	1000	3266	
+
+V 73   5639	*	2424	3648	5394	4263	5032	4884	3690	4339	5766	3127	5738	4524	4260	4667	3990	4733	5565	4700	73
+       358	5363	2355	0	*	1189	833	10378	1218	3919	
+
+T 74   4972	*	3867	3871	6380	2949	5431	5362	2907	4327	6341	3557	3482	5511	4724	3756	3955	4352	6253	6384	74
+       155	5336	3696	582	1592	4000	93	10261	1242	5417	
+
+S 75   2828	*	3528	3760	6341	5159	4415	*	3862	3705	6551	3709	*	4154	4045	2507	5268	4445	*	6129	75
+       313	5418	2543	962	1039	977	1023	10203	1369	5900	
+
+A 76   3725	*	3615	3537	6360	2523	5327	4562	3780	4912	*	3834	4589	3889	3489	3439	4763	*	*	*	76
+       113	5268	4349	584	1586	1511	623	10151	1169	5448	
+
+N 77   4204	5727	4061	4655	*	2181	*	*	4458	5474	5572	2891	6438	5142	3970	2468	4190	4978	*	6377	77
+       133	4955	4158	582	1590	3615	123	10298	1531	4610	
+
+T 78   3806	*	2780	4130	4912	4063	4787	6079	4227	4327	*	3314	4424	4816	4751	3015	3340	4782	*	*	78
+       31	6496	6600	0	*	1438	665	10209	1003	5030	
+
+A 79   3390	3684	*	6748	2778	2833	5473	4265	*	4504	7042	6480	5403	5609	*	3591	6685	3396	6626	2717	79
+       11	6989	*	579	1597	1976	423	10325	1228	3851	
+
+Y 80   4205	*	5610	4820	5178	*	5772	5040	5830	4361	6715	4432	4562	6526	4444	1770	2250	4594	*	4397	80
+       46	4998	*	1563	596	587	1581	10469	1357	3178	
+
+M 81   7064	5793	*	6430	5288	*	*	3472	*	461	6447	*	*	*	*	*	5774	3930	*	5292	81
+       0	*	*	*	*	1715	524	10574	0	1675	
+
+E 82   4787	*	*	3907	4695	5792	4523	4817	3309	4058	5701	4460	6447	4068	3550	3836	2495	3628	6536	4631	82
+       12	*	6915	2000	415	1672	543	10612	1000	1420	
+
+L 83   *	*	*	*	4840	*	*	1022	6048	2410	5264	6503	*	*	*	4962	5771	2543	*	6591	83
+       0	*	*	1585	585	1871	461	10723	1000	1452	
+
+S 84   4528	*	5338	4985	6720	5231	3903	*	3457	5058	*	5204	4258	3825	3199	2383	2647	5844	5390	5336	84
+       7	*	7745	*	*	*	0	10730	0	1282	
+
+S 85   5272	6553	3096	4341	5828	3829	4028	6986	3977	*	*	2007	4065	4016	3862	3257	6126	5752	*	*	85
+       27	*	5780	*	*	*	0	10729	0	1441	
+
+L 86   2757	*	7246	*	4875	5520	6514	4096	*	2114	5190	6555	6985	*	*	5626	3552	1566	*	*	86
+       0	*	*	*	*	2437	295	10683	0	1821	
+
+T 87   5305	*	5877	3215	6106	5845	4940	6515	2981	5164	*	4408	6547	2320	3299	5369	2387	4876	6499	*	87
+       0	*	*	0	*	*	0	10707	1000	1643	
+
+N 88   3616	*	5934	4885	4637	*	6401	4409	3435	2199	4694	6475	2828	5118	4248	5272	4730	3389	5653	6973	88
+       12	6889	*	0	*	1993	417	10714	1000	1643	
+
+E 89   5000	*	3389	2154	*	4121	6710	*	4803	4075	6934	4006	5724	3463	4819	2356	4380	5175	*	*	89
+       22	6069	*	1536	610	*	0	10735	1138	1441	
+
+D 90   5644	*	526	4466	6166	4424	3890	*	6939	6086	*	5759	6695	5265	6507	5759	7423	*	*	*	90
+       16	6541	*	2000	415	*	0	10735	1084	1441	
+
+S 91   2946	6842	3369	2668	6700	4202	6650	5980	5017	7046	5078	5532	*	4349	6510	2186	3160	5213	*	6755	91
+       43	6695	5680	2585	263	1491	634	10735	1000	1441	
+
+A 92   2442	*	4017	*	*	860	7179	*	5813	6345	*	*	5804	6785	4869	4180	5599	5084	*	*	92
+       25	6858	6862	1585	585	1062	941	10586	1013	1584	
+
+V 93   6992	5351	3397	3403	4284	5241	6588	4448	4704	3126	5335	5496	*	4905	4662	4238	2399	3279	6690	5946	93
+       63	4857	6913	2138	372	1646	555	10612	1697	1409	
+
+Y 94   *	6408	*	*	3278	*	*	6820	*	4843	*	*	*	*	5795	*	7131	5653	6542	348	94
+       0	*	*	*	*	1491	634	10741	0	1441	
+
+Y 95   6685	5775	6423	4340	3840	4828	5407	3947	4366	3803	8058	7403	*	3382	4350	3864	2881	3591	4655	3111	95
+       0	*	*	*	*	*	0	10632	0	1222	
+
+C 96   *	216	*	*	6692	*	*	6709	*	4800	*	*	*	*	7091	5633	5095	5207	*	*	96
+       25	5857	*	4921	48	*	0	10632	1272	1222	
+
+S 97   3162	5757	4923	3341	6634	5920	5607	4231	5083	3601	5564	5409	*	3545	2719	3990	4207	2982	*	*	97
+       37	*	5291	*	*	*	0	10632	0	1222	
+
+I 98   2078	6761	7171	*	5102	5790	6804	4163	4889	3787	5756	4587	*	*	4180	6653	4612	1511	*	6410	98
+       39	*	5246	*	*	*	0	10596	0	1735	
+
+I 99   4824	6741	4871	3665	4473	4973	5246	4306	3842	4470	4119	4627	5533	4669	3746	3482	3762	4265	3639	4482	99
+       139	4925	4089	749	1305	2974	196	10656	1449	2214	
+
+Y 100  4884	*	3777	3978	4626	4617	3108	5284	5265	4217	6246	2447	7039	4090	4513	3672	3823	6052	6505	4467	100
+       53	6493	5316	0	*	2742	234	10275	1006	2996	
+
+F 101  3809	*	3386	4346	5418	2636	5577	*	3871	4376	6609	3679	3107	5387	5219	3771	3633	6421	5605	5573	101
+       592	5609	1661	1000	1000	*	0	10503	1168	3132	
+
+D 102  3251	5847	4368	5107	6200	2624	4492	5952	4764	3563	7326	3113	5054	4265	6380	3010	4613	4027	*	*	102
+       2064	5145	449	2015	410	5264	38	9861	1180	6822	
+
+Y 103  4251	*	*	4289	*	2116	*	*	*	2728	*	*	3171	*	4401	3384	3105	*	*	2794	103
+       190	3803	4273	1000	1000	4300	75	6671	1004	9316	
+
+A 104  4477	*	*	3457	4614	1713	*	*	3502	*	*	*	*	*	3260	2353	2947	*	*	*	104
+       949	3324	1388	0	*	*	0	7047	1216	9190	
+
+D 105  3621	*	3721	1620	3718	2819	*	*	*	*	*	3701	2791	*	3672	*	*	*	*	*	105
+       118	*	3665	*	*	3134	174	5790	0	9455	
+
+F 106  4674	4315	4836	4626	4514	4810	3725	3421	*	*	*	2928	*	*	4407	4505	2967	3039	4762	3686	106
+       145	*	3389	*	*	1835	474	7147	0	9121	
+
+I 107  4574	5513	3010	3857	*	4645	*	3629	*	3569	*	4442	3460	4165	4474	3287	4807	4234	5719	3476	107
+       0	*	*	*	*	902	1106	9090	0	8113	
+
+M 108  3479	*	4378	3228	3526	5327	4597	4458	3428	4106	5208	*	5123	5404	4111	3662	4193	3845	5209	4699	108
+       21	*	6107	0	*	3301	154	10080	1008	5337	
+
+D 109  3836	*	3452	3998	3836	4407	6316	5320	4017	3422	5364	3510	4052	4340	4614	4267	3673	4659	5456	6522	109
+       57	5247	6349	666	1435	3820	106	10141	1222	5110	
+
+Y 110  5650	*	5497	3842	4503	*	4779	3200	3414	4503	6311	5283	3899	*	4730	4487	3229	2468	6333	3765	110
+       55	6384	5309	2322	322	360	2181	10187	1000	4976	
+
+W 111  4323	6447	6826	7111	1940	3869	5071	3621	4294	3344	*	6540	5791	7384	3887	4506	4763	4232	4428	4320	111
+       28	*	5701	*	*	1907	448	10371	0	2288	
+
+G 112  5598	*	4193	3404	*	1988	7049	7739	5994	5102	5719	4594	4709	4222	4024	2502	3788	4718	*	5610	112
+       52	5259	6703	1470	646	2986	195	10380	1495	2248	
+
+Q 113  4155	*	5136	2943	*	4159	5356	4227	3091	5704	*	4207	3928	3663	3259	2772	4850	5646	*	6546	113
+       0	*	*	*	*	2208	352	10364	0	2248	
+
+G 114  3210	6865	5191	4798	6449	1878	*	6398	3167	4872	6737	5153	4631	5123	3730	3019	4142	7197	6588	*	114
+       37	5572	7857	2473	287	1608	574	10419	1201	1956	
+
+T 115  3469	*	6456	5046	4158	6206	5682	3572	3635	3835	5644	5862	5703	5373	6775	4754	1908	3151	*	4699	115
+       22	7140	6975	0	*	1324	736	10450	1000	1751	
+
+T 116  5168	6071	*	2860	5778	5519	5791	5918	3490	4782	5104	5162	4206	3444	2977	3256	3707	3745	6646	5400	116
+       10	7149	*	5209	40	*	0	10479	1007	1534	
+
+V 117  3965	6761	*	6795	5604	7164	5694	3881	4796	1156	*	*	6736	6506	6133	4162	4577	2572	6978	6676	117
+       63	5478	5610	1693	534	*	0	10481	1329	1534	
+
+T 118  5025	7092	6730	3858	4696	4731	4164	4209	4501	4541	6871	4271	4695	5171	3331	3318	2523	3615	6389	5931	118
+       46	5847	6171	567	1622	*	0	10434	1153	1864	
+
+V 119  5269	4988	5293	6499	6005	5128	7492	2886	5643	3930	5810	6491	6858	5510	*	5121	4467	1031	*	6319	119
+       53	6519	5297	0	*	2474	286	10325	1002	2107	
+
+S 120  4235	5567	5378	4721	3996	6446	5253	3335	3232	3016	*	5321	4219	*	3619	3586	3197	3947	*	5873	120
+       483	5314	1947	2513	278	2385	307	10352	1484	2381	
+
+S 121  2986	6315	3966	4277	6146	3546	*	5845	4059	3649	6220	5223	2623	6773	4418	3542	3802	4445	*	5214	121
+       221	2912	6729	1964	427	1313	743	9896	2763	5626	
+
+A 122  2519	6580	3306	4644	*	4352	5450	4461	3826	3953	5728	5118	4300	3857	4018	4752	4707	3094	*	*	122
+       189	3497	4872	2888	209	2089	387	10129	2238	4165	
+
+K 123  3560	*	4116	4152	*	3956	5303	4013	3398	4501	*	6668	2822	6887	4017	3575	3625	3282	*	5550	123
+       61	4590	*	1448	658	1643	557	10146	1526	3877	
+
+T 124  3713	*	3408	3489	4845	4443	*	6435	4167	4004	5427	4827	2976	4691	3752	4804	5017	2881	*	5096	124
+       61	5894	5355	1990	419	1312	744	10136	1156	3012	
+
+T 125  3235	6460	7132	4417	3812	5558	5743	5634	4904	4635	5952	5086	2734	5696	4389	2557	3279	3639	*	7058	125
+       63	4781	7288	1771	500	1045	957	10077	1525	2604	
+
+A 126  2623	6741	4529	3517	5732	4291	*	*	2993	5181	7011	4603	2200	5096	4853	4095	4970	4547	6499	*	126
+       15	*	6586	*	*	*	0	10159	0	1955	
+
+P 127  4212	*	5808	6968	5232	5927	*	5628	5605	4483	7547	*	619	6696	5764	4757	4678	4997	*	*	127
+       0	*	*	*	*	1917	444	10141	0	2134	
+
+S 128  4149	*	4161	3242	6935	6921	6945	4459	3370	5065	5837	4986	3922	4826	4077	3220	2868	3367	*	4848	128
+       29	5665	*	2980	195	*	0	10167	1145	1802	
+
+V 129  5745	5719	6992	4770	4453	6660	*	2499	*	2865	6785	7084	3639	5067	5126	*	4320	1597	*	6335	129
+       33	6401	6566	3310	153	1558	599	10130	1167	1802	
+
+Y 130  5027	6867	5981	3955	3479	7110	4620	3321	4311	4384	*	6809	4872	5386	4635	3405	2749	3326	5153	3912	130
+       8	*	7490	*	*	1653	552	10160	0	1640	
+
+P 131  3941	6745	*	4743	5672	5927	6798	2657	6690	2592	5052	6984	3296	3972	5228	6908	3906	2586	5874	5633	131
+       53	7087	5109	985	1015	2162	365	10203	1140	1543	
+
+L 132  5164	6956	5278	4372	3398	4817	6803	3263	4071	2635	4862	4702	4855	3932	5889	3710	4546	4000	5456	4976	132
+       96	5221	4744	1232	800	1583	586	10169	1322	1922	
+
+A 133  4695	6590	6414	4853	5580	3984	4584	*	3835	3822	*	4771	2760	3359	4965	2468	3234	5150	*	6771	133
+       99	4427	5676	1464	649	2819	220	10087	1866	2238	
+
+P 134  4514	*	3714	4028	5872	4108	6738	5452	4733	5565	6860	5068	1571	4098	6066	3043	4612	4998	6506	*	134
+       56	6950	5066	3807	107	2195	356	10063	1016	2395	
+
+V 135  4382	5731	4597	3987	5663	5194	6174	6622	3774	5089	6627	4066	4258	3289	4788	2172	3569	4596	5707	5155	135
+       24	*	5927	*	*	2474	286	10045	0	2575	
+
+C 136  6761	4034	3911	3554	5030	4630	*	3517	4223	3402	5097	4982	3882	5715	4989	3080	3835	3556	*	5712	136
+       73	5438	5255	578	1599	3016	190	10041	1203	2553	
+
+G 137  3432	*	3936	3347	6560	5064	5704	4377	5145	4532	4967	4775	4509	3772	5602	2788	4695	2699	*	5593	137
+       44	6725	5619	2228	346	2082	389	10046	1180	2764	
+
+D 138  3528	6870	3083	2978	6924	4741	6496	3700	5510	3655	*	6392	4925	4576	3945	5025	4372	2364	*	*	138
+       155	4183	4424	469	1850	584	1587	10020	1914	2791	
+
+T 139  5123	*	4643	4129	5195	*	5203	3565	4274	2676	4902	4254	3910	3748	4116	4389	3746	3480	6396	5735	139
+       32	5507	*	0	*	983	1017	10082	1337	2396	
+
+T 140  4289	*	4334	2252	6837	4090	*	5171	3851	3692	*	4570	3619	6306	4421	3404	3778	3726	6658	6406	140
+       409	2146	5565	1435	666	2025	407	10120	4485	1629	
+
+G 141  5597	5509	4505	3953	*	1043	6628	6895	4729	6783	*	3872	7054	4513	5929	3694	4414	5609	*	5837	141
+       0	*	*	*	*	1094	912	10117	0	1804	
+
+S 142  4394	*	2890	2678	6588	3507	5790	5821	4514	6618	*	3781	5753	3192	4722	2616	5022	5625	*	5612	142
+       28	7011	6428	4443	68	*	0	10147	1285	1352	
+
+S 143  4730	*	3915	2775	*	7170	4965	6716	3382	5208	6034	3690	3357	4746	4507	2797	3028	5890	6225	6619	143
+       0	*	*	*	*	1239	795	10118	0	1730	
+
+V 144  2471	6639	*	6756	5289	6565	6739	2942	6381	2854	4553	5671	5832	5510	4768	4563	4162	2130	*	6756	144
+       32	5507	*	2502	280	0	*	10129	1213	1352	
+
+T 145  6605	*	5658	3767	5466	*	6671	4496	4512	5729	5163	3583	6421	3812	4216	3644	1750	3133	7022	6652	145
+       0	*	*	*	*	*	*	10161	0	0	
+
+L 146  4706	*	*	*	3786	6657	*	2802	*	835	5115	*	6265	*	*	*	*	3097	*	5923	146
+       14	6650	*	0	*	*	*	10161	1000	0	
+
+G 147  4557	6711	5342	4457	6809	5584	4891	4323	4265	3258	5773	4022	5839	3958	4615	3380	1989	4845	*	5464	147
+       14	6657	*	0	*	*	*	10161	1000	0	
+
+C 148  6265	89	*	*	*	*	*	*	*	*	*	*	*	*	*	7970	6686	5324	*	6929	148
+       13	*	6782	*	*	*	*	10161	0	0	
+
+L 149  5205	*	6015	3347	4562	*	4482	4152	3927	2736	4486	5067	6490	3621	3697	4152	2995	4072	6077	*	149
+       0	*	*	*	*	*	0	10138	0	1000	
+
+V 150  2197	5205	*	6819	6912	5740	*	3648	*	3991	6241	6924	6884	6440	*	3035	4096	1621	*	5092	150
+       17	*	6455	*	*	*	0	10138	0	1000	
+
+K 151  5230	*	4829	3393	5854	6447	5744	4847	4060	4208	6541	3504	4403	3872	3331	2478	3540	5063	7022	5059	151
+       64	5146	6056	2740	234	1155	860	10117	1340	1202	
+
+G 152  3852	6653	4946	4432	5708	1594	6598	5873	4347	*	*	2265	5628	5625	4211	3640	4949	*	*	*	152
+       0	*	*	0	*	1830	476	10109	1190	1398	
+
+Y 153  5707	6472	4945	5747	2359	2631	6419	5821	5017	4158	5662	3735	4239	4648	5865	3728	5298	4462	5764	3711	153
+       395	5625	2188	512	1744	*	0	10115	1171	1237	
+
+F 154  4217	4344	6330	*	3506	4188	4473	6878	3879	6329	5993	5345	3582	6536	3738	2958	4372	5317	*	2350	154
+       51	*	4845	*	*	116	3693	9773	0	4813	
+
+P 155  5542	*	5652	4760	*	6766	6631	*	*	4518	*	5143	568	5306	4921	5156	4365	6527	*	6584	155
+       168	5159	3607	980	1021	856	1160	10080	1442	1709	
+
+E 156  3264	*	3447	2720	6795	4509	5372	6780	3776	4986	5860	5390	3250	3589	3838	3816	5176	3970	*	*	156
+       126	4183	5136	228	2774	294	2441	10016	1884	2605	
+
+P 157  4160	6802	4988	3816	6717	3947	5098	4985	4488	3954	6601	4106	1704	4423	5058	3383	5815	5456	*	*	157
+       316	*	2346	*	*	1312	743	10075	0	1676	
+
+V 158  3587	*	*	4686	5542	*	5058	2153	6329	2583	6737	*	4840	4724	6110	5527	3412	2605	6426	4872	158
+       331	*	2285	*	*	67	4466	9907	0	4437	
+
+T 159  5492	*	4925	3090	7053	5508	4406	*	4630	5623	6264	3460	6555	2959	3997	2801	2635	4513	5419	6310	159
+       0	*	*	*	*	114	3723	9890	0	3968	
+
+L 160  *	*	*	*	2924	*	6233	2596	6895	2161	5551	6495	6466	*	*	6457	*	1702	5183	3889	160
+       16	6495	*	0	*	*	0	10128	1014	1095	
+
+T 161  5354	*	4533	4241	6622	6919	5242	4267	3944	4992	*	5649	*	3324	3950	2416	2025	5092	*	4666	161
+       20	*	6206	*	*	*	0	10128	0	1095	
+
+W 162  *	*	*	*	4829	5570	6874	*	*	5739	*	*	*	*	*	6658	*	*	179	5420	162
+       1954	564	3931	1148	866	1943	435	10108	8247	1444	
+
+N 163  6509	*	2586	4881	5515	4330	6296	*	2305	5468	6331	2735	5325	4250	3769	3690	4081	*	*	5091	163
+       58	6444	5163	0	*	2478	285	9995	1008	2570	
+
+S 164  5351	*	2563	3639	5386	1929	5611	*	4783	4694	*	3027	4925	7050	3406	3890	*	*	*	5711	164
+       50	4884	*	419	1987	2562	268	9959	1331	2730	
+
+G 165  5742	*	4610	3155	*	1486	5525	5081	3474	*	*	3968	4147	4548	4017	5410	5095	4261	*	*	165
+       209	4411	3508	1100	907	930	1074	9982	1557	2433	
+
+S 166  3551	*	5363	2710	6274	3554	6172	6788	3805	3744	6405	4601	3932	4164	4236	3895	3458	3559	*	*	166
+       33	6386	6596	0	*	3859	103	9887	1008	3040	
+
+L 167  5432	*	4498	4297	6525	*	6513	2795	3820	2036	6423	5031	4611	4649	5121	3956	5321	2643	*	*	167
+       103	5306	4528	1912	446	*	0	9888	1194	3048	
+
+S 168  6383	*	3580	3999	4855	5522	6676	3988	5537	2969	6394	4494	3316	4811	3662	3216	3338	3544	*	*	168
+       35	6230	6581	1799	489	2581	264	9814	1161	3644	
+
+S 169  4881	6504	3668	3506	*	4213	*	4719	3727	3374	5647	4489	3336	4471	5064	2813	3777	*	*	3822	169
+       43	6497	5782	589	1578	2260	338	9848	1236	3392	
+
+G 170  3302	*	2935	2914	*	2655	*	5804	5144	4826	*	4272	5154	3920	4033	4070	3205	5644	*	*	170
+       58	6174	5298	0	*	3751	111	9887	1013	3324	
+
+V 171  5411	*	4628	4986	4325	4487	5310	3121	6477	3401	6286	4794	6258	4097	6552	2756	3434	2572	6405	6328	171
+       118	5185	4292	0	*	1935	437	9865	1403	3597	
+
+H 172  4497	*	4770	3969	5473	4561	3983	4170	3667	5447	5523	4312	3903	3356	5713	2812	3245	4886	*	4943	172
+       123	5800	3969	2640	252	1238	796	9812	1773	3530	
+
+T 173  4844	*	5432	4121	*	4586	6471	4843	4348	4604	*	2579	4251	4139	3578	3020	2454	6472	*	5099	173
+       16	6475	*	0	*	2441	294	9818	1193	3333	
+
+F 174  4769	*	4625	4388	3322	4181	6352	3948	6581	3405	5617	4374	*	4880	4096	2672	3722	4208	7029	3599	174
+       52	5272	6674	3311	153	1348	720	9856	1209	2921	
+
+P 175  4581	*	4793	3578	6762	4115	5904	5041	4575	4606	*	5265	2837	4130	4492	2807	2871	4066	6500	5407	175
+       19	6285	*	1000	1000	*	0	9926	1020	2295	
+
+A 176  4799	*	4507	3020	6574	4639	5501	3668	6665	4362	5507	3721	3378	4104	4499	3670	3435	3313	*	5722	176
+       96	4618	5389	1191	831	1821	480	9926	1524	2295	
+
+V 177  5730	*	4890	4165	5494	4242	4232	3833	5393	3738	5724	4958	4038	4493	3536	3135	4007	2761	*	5136	177
+       32	6240	6823	1074	930	3452	138	9935	1185	2507	
+
+L 178  6322	6399	5321	4279	4677	6560	3666	4681	4254	2609	5011	4180	3941	3888	3258	3881	3621	*	6734	4903	178
+       155	*	3291	0	*	2379	308	9994	1000	2536	
+
+Q 179  4267	6237	4348	2527	6706	3563	4907	6458	3427	4827	*	3457	3980	3699	4914	3806	3829	5405	*	6056	179
+       702	1394	7626	770	1274	635	1489	9845	5582	3696	
+
+S 180  5339	*	2093	3246	6918	2880	*	5567	6461	5466	*	2847	4170	6158	4473	2881	5423	5398	*	*	180
+       71	5733	5111	0	*	1478	642	9953	1171	2262	
+
+D 181  6754	6257	3114	4211	6540	1460	5563	*	3339	5694	*	3374	6467	6255	4767	3401	5445	5681	*	*	181
+       186	3188	6504	1104	903	1518	620	10002	2582	2278	
+
+L 182  6765	6744	3860	5629	*	4673	6663	5610	4124	2722	4473	3918	*	6108	3402	3072	2086	5173	*	6425	182
+       170	5757	3434	0	*	*	0	9971	1201	2015	
+
+Y 183  5348	7684	*	4736	1971	*	5753	5066	6243	3892	*	5475	5390	5406	5551	5462	5654	4514	5778	1501	183
+       45	*	5018	*	*	1552	602	9784	0	3441	
+
+T 184  4862	*	4232	5319	4553	*	4887	6506	6572	6373	4234	3086	5665	6739	5563	1802	2250	4380	*	6487	184
+       52	6298	5474	2806	223	2747	233	9809	1403	3200	
+
+L 185  3555	*	4998	7731	5410	3902	5466	3971	4920	2284	3864	*	*	6397	4950	4472	3251	2699	5471	5374	185
+       49	*	4915	0	*	2294	329	9847	1029	3220	
+
+S 186  4132	*	*	6409	4227	4638	4861	4950	4958	4145	4864	4603	5237	5462	4648	2687	2261	3928	4219	4863	186
+       36	5333	*	2119	377	2276	334	9857	1186	3217	
+
+S 187  3843	6398	*	*	*	4908	*	4653	4780	4568	4509	4390	5034	6566	5501	786	5225	7559	*	*	187
+       0	*	*	*	*	*	0	9955	0	2772	
+
+S 188  4820	*	5537	3787	5790	*	4212	3986	4144	4191	6566	4538	*	3375	4192	2867	3137	3429	4558	4901	188
+       100	4560	5344	587	1582	274	2530	9955	1475	2772	
+
+V 189  4397	*	*	6659	5677	5163	*	3723	7823	575	*	*	6666	*	*	*	5172	3679	*	5148	189
+       0	*	*	*	*	0	*	9972	0	1551	
+
+T 190  4903	*	4937	4713	*	5007	5725	3588	5136	3397	5072	3721	6088	3996	3252	3321	2562	3893	*	6082	190
+       0	*	*	*	*	*	*	10074	0	0	
+
+V 191  *	*	*	7084	2682	6626	6689	1888	*	2177	5918	*	6580	6670	6446	5547	6367	2239	6479	5579	191
+       27	6624	6942	0	*	*	*	10074	1000	0	
+
+T 192  5706	6510	6026	4586	*	5689	5533	5118	3534	4976	5697	3835	2675	3988	3567	2876	2786	4626	*	6647	192
+       25	6985	6725	0	*	*	0	10076	1000	1000	
+
+S 193  3357	*	3661	3535	6557	*	6811	4750	5576	4234	4909	3886	2834	4921	3678	2921	4341	4017	6530	*	193
+       0	*	*	*	*	*	0	10077	0	1120	
+
+S 194  3825	5032	4378	3518	*	5419	5585	5100	3927	5499	6957	4471	5096	4196	6379	2362	2931	3090	*	6610	194
+       73	*	4336	*	*	*	0	10077	0	1120	
+
+T 195  4057	*	3442	2812	*	4532	5095	5438	3184	4868	5873	6876	4382	3806	4030	3059	3677	5396	6158	5410	195
+       235	6707	2831	0	*	836	1185	10082	1000	1955	
+
+W 196  4095	*	5553	2755	4434	*	5474	5261	4093	2797	5813	*	5527	4571	3210	3552	5488	5242	2726	*	196
+       545	1829	4920	631	1498	4337	73	9765	4635	3725	
+
+P 197  6144	*	1169	2714	*	4689	4461	*	5105	5568	*	3664	4668	4892	4167	4835	*	*	*	6400	197
+       410	2103	6112	83	4154	655	1454	9735	3882	3972	
+
+S 198  3040	*	2493	4793	*	2566	3610	*	5007	6957	6270	3811	7728	4939	5351	2616	4587	5375	*	*	198
+       285	2479	*	0	*	1050	952	9907	3611	2260	
+
+Q 199  3222	*	5060	4098	*	1192	6652	*	2853	5594	*	4627	*	4901	5653	4337	5494	5615	*	6408	199
+       18	*	6372	*	*	2123	376	9991	0	1589	
+
+S 200  4663	*	4986	4157	6537	*	6797	3521	3760	4258	5423	2988	5343	4969	3693	3807	2292	3625	*	*	200
+       105	3829	*	0	*	922	1082	9989	2027	1733	
+
+I 201  7008	*	*	*	2299	6328	5030	3934	*	3678	*	*	*	*	*	*	*	3319	6793	1020	201
+       0	*	*	*	*	*	0	10059	0	1259	
+
+T 202  *	*	*	5128	4967	6453	6530	3853	4315	6625	5400	6793	*	4767	4068	3028	1426	4686	6438	3140	202
+       0	*	*	1585	585	1427	671	10059	1000	1259	
+
+C 203  *	28	*	*	*	6784	*	*	*	*	*	*	*	*	*	*	*	6644	*	*	203
+       0	*	*	*	*	*	0	10066	0	1095	
+
+N 204  3926	5701	*	2987	*	*	5226	3164	5200	6614	5494	4204	*	3179	2600	5024	3259	3379	5725	6492	204
+       0	*	*	*	*	*	0	10066	0	1095	
+
+V 205  1868	*	*	6303	5114	5809	*	4007	5601	3949	*	*	*	*	*	5882	6539	1025	*	*	205
+       8	7461	*	0	*	*	0	9980	1000	1095	
+
+A 206  3647	*	4541	3490	5554	6575	5775	5337	3981	4851	*	4676	*	3117	3923	2595	2803	3912	6570	6719	206
+       9	7378	*	0	*	*	0	9918	1000	1095	
+
+H 207  *	*	5432	*	6747	6517	1459	*	*	*	*	1667	*	4439	*	3344	3973	*	*	3839	207
+       35	5402	*	3000	193	1427	671	9829	1153	1259	
+
+P 208  3837	*	3812	2542	5408	3988	5285	6330	3586	5047	*	4740	3259	5502	3638	2752	4671	6457	7497	*	208
+       9	7334	*	1000	1000	*	0	9740	1000	1095	
+
+A 209  2192	*	4757	5493	6282	2779	6239	5395	4758	3733	4518	4310	4888	4717	4799	3145	6864	3819	*	5636	209
+       61	6258	5148	0	*	*	0	9740	1000	1095	
+
+S 210  5460	*	5448	4178	5935	1766	6215	5196	*	2558	6432	4254	4374	3683	5287	3017	5227	*	*	6342	210
+       142	3706	5873	359	2184	*	0	9586	1949	1464	
+
+S 211  5161	*	4762	3073	6216	3844	6140	5258	3722	6076	*	4003	3712	3460	4283	2531	3610	3910	*	*	211
+       119	3658	*	2793	225	1560	597	9419	1846	1824	
+
+T 212  2636	*	4271	3565	6105	4516	5402	5569	3860	4960	*	4595	4173	5035	5350	3193	2887	3496	*	6179	212
+       0	*	*	1000	1000	1657	550	9381	1095	1493	
+
+K 213  6265	*	4534	3088	6032	4145	4940	5124	3201	6101	*	3596	2905	3606	3628	4349	3397	4424	*	*	213
+       33	6976	6061	0	*	1305	749	9407	1000	1283	
+
+V 214  2843	5218	*	6123	*	6178	6466	4118	2946	2009	7075	6121	*	*	5883	4824	3868	2403	6060	6379	214
+       0	*	*	*	*	816	1211	9433	0	1305	
+
+D 215  *	*	3790	2534	6385	*	*	5373	3949	4812	6202	4351	5255	5152	4148	2518	2578	3473	*	6239	215
+       21	6122	*	1798	489	0	*	9428	1233	1029	
+
+K 216  3052	6071	*	5957	5018	6013	4956	3115	3683	3554	*	5866	*	3738	3556	*	3432	2173	*	*	216
+       8	*	7507	*	*	*	*	9321	0	0	
+
+K 217  *	*	5097	3209	4827	4977	6085	5039	2374	6202	*	3957	3657	3833	4181	3273	3189	5117	*	4917	217
+       0	*	*	*	*	*	0	9286	0	1095	
+
+I 218  3841	*	*	*	2981	*	*	2038	*	1719	*	5950	5849	5737	*	5734	5766	2701	*	6271	218
+       0	*	*	1585	585	0	*	9056	1095	1095	
+
+E 219  4985	*	3788	4127	*	5698	4223	4835	3249	3777	*	3290	4749	5158	4272	3106	2596	4262	*	*	219
+       115	3869	6917	2419	299	*	*	8956	1328	0	
+
+P 220  *	*	5461	*	*	3845	*	2563	5490	4267	*	*	1679	*	4195	3368	5172	2792	5131	*	220
+       0	*	*	*	*	0	*	8414	0	1095	
+
+R 221  3962	*	3356	2864	*	5485	5141	4351	3591	*	*	*	3416	3754	3603	2893	3614	4271	*	*	221
+       0	*	*	*	*	*	*	8231	0	0	
+
+G 222  3577	*	4158	2928	*	4886	*	5062	3362	3648	*	3604	3475	4869	4825	2832	4951	3765	*	*	222
+       45	5023	*	0	*	*	*	8087	1022	0	
+
+P 223  3328	*	*	*	4699	*	*	*	5084	*	5173	*	742	*	*	2942	3706	*	*	*	223
+       0	*	*	*	*	*	*	7707	0	0	
+
+T 224  *	*	3861	*	3132	*	*	2123	*	4076	*	*	3806	*	*	4215	2043	2640	*	*	224
+       0	*	*	*	*	*	*	6018	0	0	
+
+I 225  3746	*	*	*	*	*	*	1254	*	3576	*	*	3528	*	*	*	*	1575	*	*	225
+       0	*	*	0	*	*	*	5025	0	0	
+
+//
+�HHsearch 1.5
+NAME  6dc27b301d7556991a74587deb3a9692
+FAM   
+FILE  6dc27b301d7556991a74587deb3a9692
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:24:35 2013
+LENG  232 match states, 232 columns in multiple alignment
+FILT  135 out of 1524 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.8 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEEECCCCEEEECCCCEEEEEEECCCCCCCCEEEEEEECCCCCCEEEEEEECCCCEEECCCCCCCEEEEEECCCCEEEEEECCCCCCCCCEEEEEEEEC
+CCCCCCCCCCCCCEEEEEECCCCCCCEEEEECCCCCCCCCCCEEEEEEECCCCCCCCEEEEEEECCEECCCCCCCCCEEECCCCEEEEEEEEEECCCCCC
+CCCCEEEEEEECCCCCEEEEEEECCCCCCCCC
+>ss_conf PSIPRED confidence values
+9089887848996799899998961788888679999968999847999980478604456668857999614675378998035304572799999851
+5887542201531132110012342014770775310027742899997378889983999998991725784002117538958998899996110002
+89988999999089868999994898988979
+>Consensus
+xxxvxxpxxxxxxxGxxvxLxCxxxxxxxxxxxixWxkxxxxxxxxxxxxxxxxxxxxxxxxxxxRxxxxxxxxxxxxsLxIxxvxxxDxgxYxCxvxxx
+xxxxxxxxxxxxxxxlxVxxxxxxxpxxxxxxxxxxxxxxxxxxxlxCxxxgxxpxxxxvxWxxxxxxxxxxxxxxxxxxxxxxxxxxsxlxixxxxxxx
+xxxxxxtCxvxxxxxxxxxxixxxxxxxxxPx
+>6dc27b301d7556991a74587deb3a9692
+EVQLQQWGAGLLKPSETLSLTCAVYGGSFSDYYWSWIRQPPGKGLEWIGEINHSGSTNYNPSLKSRVTISVDTSKNQFSLKLSSVTAADTAVYYCARPPH
+DTSGHYWNYWGQGTLVTVSSGSASAPTLFPLVSCENSPSDTSSVAVGCLAQDFLPDSITFSWKYKNNSDISSTRGFPSVLRGGKYAATSQVLLPSKDVMA
+GTDEHVVCKVQHPNGNKEKNVPLPVIAELPPK
+>gi|62464905|gb|AAX83161.1| immunoglobulin heavy chain variable region [Aotus nancymaae]
+--------------GDPVPHLRCLWLLHRQ-------willeldpPAPKGRG--WSGldisivwWVHql-QRLPQES-----sh---YFSRHVQEPVLVE
+---------AE-LCDRR-----------------------------------------------------------------------------------
+---------------------------------------------------
+>gi|241177585|gb|ACS66861.1| MHC class II antigen beta chain [Amblyrhynchus cristatus]
+----------------------------------------------------------------------------------------------------
+---------YGVYEPFARKRLVQPKMSITPAEHDSSSQKT----LLICDVAGFWPSGINITWLRNGKEEEGtKVMTTDLIRNGDwTFQIQVMLETKAEWG
+-----DVYACQVEHPSFPTPARVQWEPQSD----
+>gi|296485480|gb|DAA27595.1| butyrophilin-like 9 [Bos taurus]
+EIRVVGhEEPILAHVGDEVEFSCHLSPYRDAqHMEILWFWSQASNV-VHLYREQQEFYGWQMKQFQNRTQLIRDdIIDGSVTLRLHLVVPADQGLYGCRF
+LS---S----DFTGEATWELEVAGLGSDPHISIEGF------KEGGIQLRCHSNGWYPKP-QAQWRDRHGRCLPPETENITEDVQGLFSLETSVVVQEGA
+H----SNVS-CSIQNhlLGQKKEFVVHIADV------
+>gi|56207974|emb|CAI21226.1| novel immune-type receptor 9, allele 1 [Danio rerio]
+-------------SGDSVSLTCTVlNQKCVGNHSMYWLIIESQDYRPRIISTHGTPVDQCEWISDADFRAL----RCVYSFSRKDFRLSNSATYSCTVTA
+--CG---EKLDRNVSKLDIDADST-Ee-MMILVLLS----------------------------------------------------------------
+----------------------------------
+>gi|326703679|gb|AEA06491.1| MHC class I antigen [Macaca mulatta]
+----------------------------------------------------------------------------------------------------
+------------------------------------------htiqtmygcdlgpdgrllrgyeqyaydgrdyfalne--DLRSWTAADMAAQN------
+----------tqrkweaagvaeqw----RAYLeGECLEWLRRYLEKGK--------------------et--LQ--raePs-SQSTIPI
+>gi|309362790|emb|CAP27555.2| CBR-SYG-2 protein [Caenorhabditis briggsae AF16]
+QLFLESPSNLSTIAGESITFRCAAEKSPEPIVYSQW-KSNTGS---LLGY----HQEGVLPGHQGRFSYVKQN-AEELHLKITHVNLDDDGEYECQMLHP
+EEG-----PIRAKAFLNIL---VPPQLVYFSnyqPNSVIAVKENTPLNITCVVPNVKPDPQ-VSWYMDGKVMSRDVKQASMPHLNKTFTVYTSLVIQPGR
+S--DHGKIVTCEVVQKETETRITTNTTLDVLFPPS
+>gi|221330930|ref|NP_001137898.1| CG42256, isoform F [Drosophila melanogaster]gi|220902492|gb|ACL83253.1| CG42256, isoform F [Drosophila melanogaster]
+--------------------vaknpaaeikytallqvKGSVLAYPS--QKLN-TEHK-KRKPHKYRshllskl-----K-------------------LS
+QCSLTLAA----slkp----FI------------------------------------------------------------------------------
+------------------------------------------------------------
+>gi|326678203|ref|XP_001337469.4| PREDICTED: hypothetical protein LOC797033 [Danio rerio]
+-----------VKEGDSVTLNSGLTE-VKDTDLILWwF--RDEDTLIAEINVTTDSTFVFDDVLDGRFRDRLKLDNKTGSLTITDAGTEHDGDYKLLIIG
+---AKWAVDWF----SVSVC-AHLRFPVISRNssqCSSSSSSSV-QYCSVLCSVVNVN--HATLSWYKENSLLSSISVSDFSI------SLSLPLEV---
+EY--QDNNTYSCVIDNpfSNltQLLNISQLCRTCSD----
+>gi|269115798|gb|ACZ26466.1| Down syndrome cell adhesion molecule [Litopenaeus vannamei]
+---IVEPADKAFALGSDARLECKADGFPRPTLGWKK---AAGHTP----------GDYRDLDVNNpNIKVTDDG-----TLHISSIQKSHEGYYLCEANN
+---G------IGAGLSTVIY-VRVQAPPQFKIQYRNQTARHGDDAVLECEAGGETP--IGILWSKDKHSVDQAAePRYTIREEMRGGSVHSSLSIKTTDR
+--TDSAVYTCIATNAFGSADTNINLIIQERPEQ-
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+E 1    4621	*	3092	1786	*	*	4206	*	4707	*	*	*	4319	1873	3561	*	*	4271	*	*	1
+       0	*	*	*	*	*	*	6824	0	0	
+
+V 2    4294	*	*	*	4978	*	*	2317	*	2108	5429	*	5296	4132	*	5261	3803	2020	*	4849	2
+       0	*	*	*	*	*	*	8116	0	0	
+
+Q 3    4024	*	6069	3169	5620	5677	5528	4132	3390	4609	5605	*	5342	3803	4128	4632	2579	2863	*	4708	3
+       28	*	5716	*	*	*	*	8762	0	0	
+
+L 4    6018	*	4857	*	4943	*	*	2573	5137	1969	4280	*	5144	5762	*	*	4389	1645	*	*	4
+       22	6038	*	1832	476	0	*	9205	1198	1005	
+
+Q 5    6329	*	5367	2786	*	6295	*	4796	5000	4233	5168	5283	5418	2911	6254	2901	2139	3502	6263	*	5
+       18	*	6355	*	*	*	*	9569	0	0	
+
+Q 6    3160	*	5374	2925	6234	4590	5398	5521	4377	6225	*	4715	4649	1869	5119	4029	4438	3833	*	6328	6
+       628	1503	*	50	4884	*	0	9596	4549	1000	
+
+W 7    4023	*	4889	3938	6315	4768	6448	*	5359	4679	*	*	1142	4289	*	3186	3509	*	6222	*	7
+       0	*	*	*	*	0	*	9766	0	1000	
+
+G 8    3822	*	4512	3733	*	3418	6191	5402	4615	5340	*	4945	2658	3392	4280	2823	4303	3999	*	5530	8
+       78	4933	5657	406	2028	*	*	9820	1303	0	
+
+A 9    4879	*	3170	3622	5626	4909	4387	4732	6864	5268	6202	3535	4153	3636	4824	2525	4164	4462	5208	5244	9
+       45	5792	6298	0	*	0	*	9869	1028	1128	
+
+G 10   4433	*	*	*	7160	5069	*	3184	4156	2466	5187	5600	5595	3966	6694	4260	4353	1656	*	6794	10
+       0	*	*	*	*	*	0	9979	0	1021	
+
+L 11   6644	*	5502	4112	6414	5442	5198	3413	4709	4012	5080	4709	5591	6568	4977	2918	2061	3393	6776	4412	11
+       11	7047	*	0	*	0	*	10047	1000	1021	
+
+L 12   2262	5303	*	*	5151	3992	5678	4279	4657	4471	5642	*	5722	*	4640	5759	3607	1632	*	5862	12
+       0	*	*	*	*	*	*	10120	0	0	
+
+K 13   4426	*	5046	4459	5978	5269	5916	4937	3095	3801	4641	4069	3603	4436	4267	3046	3345	3492	6741	*	13
+       11	7009	*	4644	59	*	*	10157	1000	0	
+
+P 14   3669	*	7065	2286	*	5815	*	4761	3903	3113	5819	6325	3863	4826	4519	3223	4744	2838	*	6674	14
+       12	6906	*	0	*	*	*	10244	1000	0	
+
+S 15   *	*	4490	4837	6983	448	*	*	6152	6788	*	4746	*	5120	5501	4572	7249	6714	*	6634	15
+       0	*	*	*	*	*	*	10336	0	0	
+
+E 16   3790	*	2821	2277	*	3490	5659	*	3638	5765	*	4265	*	3292	5417	2752	5102	6924	6791	*	16
+       21	*	6132	*	*	*	*	10336	0	0	
+
+T 17   3776	5753	3715	3799	6736	6630	5768	6778	5214	*	6672	2989	3906	5336	5116	2213	2318	6136	*	*	17
+       29	6630	6702	2322	322	*	0	10334	1004	1145	
+
+L 18   2304	*	*	*	5525	5783	6937	3245	*	3561	5837	*	*	*	*	*	5274	1009	*	5704	18
+       0	*	*	*	*	475	1834	10279	0	1321	
+
+S 19   4560	*	5553	3280	5333	*	5355	3830	3638	4719	*	4344	7096	5879	4884	2821	1831	4109	*	7044	19
+       0	*	*	1585	585	0	*	10340	1000	1000	
+
+L 20   7186	*	*	*	3348	*	7096	2331	*	819	4486	*	*	*	*	*	*	4048	6895	6897	20
+       0	*	*	4087	87	*	*	10336	1000	0	
+
+T 21   *	*	4160	3438	5998	5723	5440	7157	4073	4537	6949	3492	2550	4922	3439	3305	2925	4381	*	6516	21
+       0	*	*	*	*	*	*	10493	0	0	
+
+C 22   7093	142	*	*	6651	8149	6765	6671	*	*	*	*	6516	*	5845	6704	*	7105	6829	*	22
+       10	*	7233	*	*	*	*	10493	0	0	
+
+A 23   5058	7092	3492	4894	6885	4523	4581	5040	3273	4217	*	3739	4647	4197	3528	2832	3464	4361	7101	5993	23
+       32	5494	*	793	1241	0	*	10487	1433	1000	
+
+V 24   3116	6807	6920	5653	2882	5793	6877	3437	*	2877	6962	5824	4765	*	*	4407	4174	2326	*	3435	24
+       88	5232	4933	380	2111	*	*	10493	1350	0	
+
+Y 25   4539	*	4599	3939	5983	4544	4648	4422	3897	4781	6637	3760	4515	4751	4899	2216	2925	5014	6997	5805	25
+       301	3690	3170	1467	648	926	1078	10288	2249	1487	
+
+G 26   3321	6942	4109	3933	6823	1715	7031	5093	5805	5122	5822	4379	4342	3658	5226	3250	4779	*	*	6826	26
+       105	5741	4285	2174	361	1599	578	10308	1376	3284	
+
+G 27   5343	6466	4576	4739	3198	3721	4424	5153	3610	4161	6756	3986	3650	5550	5577	2675	4026	6732	6578	4178	27
+       105	6316	4110	0	*	88	4079	10173	1152	3236	
+
+S 28   5351	6584	4046	4193	5941	5323	5286	5497	3930	4413	*	4071	2116	3875	5169	3043	3767	4200	*	6265	28
+       137	5869	3769	2566	267	1161	855	10405	1229	1986	
+
+F 29   4086	6562	4777	4001	3602	4721	4674	3968	4144	3326	7031	5715	2966	5103	4475	4103	4074	3735	*	5028	29
+       486	4949	1979	1020	980	1197	827	10304	1738	2919	
+
+S 30   4790	6260	3308	4000	*	3095	*	*	3226	3403	*	3702	4077	4240	4027	3077	4029	4689	*	*	30
+       92	4727	5380	409	2018	5136	42	10054	1358	5686	
+
+D 31   4352	6507	2162	4756	6104	3833	3855	4401	5356	3937	*	3446	4810	5002	4947	3784	3920	4925	*	5264	31
+       372	2276	5598	1229	802	156	3284	9828	3556	5795	
+
+Y 32   5294	*	4186	6091	4138	5030	6616	3776	5159	3246	6665	3858	2512	5519	4698	4339	3483	4931	*	3123	32
+       27	5754	*	0	*	1083	921	10455	1194	1835	
+
+Y 33   5115	*	4656	5294	5441	6892	7028	4441	4750	4862	4674	4620	5438	3880	4343	3068	2405	3226	6836	3245	33
+       44	5523	6871	985	1016	*	0	10461	1286	1375	
+
+W 34   5931	*	*	*	4206	6724	*	1763	6590	2500	4266	*	*	*	*	6963	5415	1687	4500	*	34
+       10	*	7197	*	*	*	0	10456	0	1519	
+
+S 35   4324	*	6729	3613	3445	4881	4217	4811	3960	3635	*	4656	*	4035	3623	3232	3715	4889	7541	3389	35
+       34	6779	6123	0	*	2445	293	10322	1004	1634	
+
+W 36   *	*	*	*	5294	*	*	5869	5873	5913	*	*	*	*	*	*	*	5567	182	5562	36
+       146	4681	4131	1882	457	2847	216	10257	1492	1778	
+
+I 37   *	6408	5960	4681	2552	*	4972	4334	3361	3432	*	5566	6626	4648	4984	4704	4406	5088	5835	1965	37
+       42	*	5130	3000	193	1700	531	10355	1052	2732	
+
+R 38   *	6482	*	7873	4293	*	3750	5073	1555	4384	6732	5003	6770	3161	2277	6034	*	*	4829	5441	38
+       392	7098	2118	1585	585	1025	975	10295	1006	2644	
+
+Q 39   5025	*	4422	3401	4406	3782	5070	5333	4255	4116	5530	5084	*	1644	7068	3831	4733	4894	6478	6361	39
+       81	5081	5334	1241	794	3025	189	9891	1306	5195	
+
+P 40   5507	6352	3124	4804	6634	4326	5065	3671	2719	5120	5385	3705	4495	5609	3361	3536	3634	6315	*	5370	40
+       126	6641	3763	3807	107	1746	511	9891	1016	4994	
+
+P 41   4489	*	3111	3765	4963	3903	6963	*	3132	5198	6517	3689	2142	5066	4962	3826	4665	5613	*	6553	41
+       77	6550	4592	0	*	1746	511	10171	1014	4887	
+
+G 42   6526	*	2812	3181	*	1807	*	6531	4172	*	*	3915	5105	3421	5221	4503	4235	5010	4982	6806	42
+       12	6868	*	1585	585	695	1387	10134	1010	4340	
+
+K 43   4522	*	3084	3688	6083	3450	4506	6728	2873	5406	*	3927	4566	3304	4736	3375	4026	4768	*	*	43
+       56	*	4714	*	*	*	0	10317	0	2355	
+
+G 44   3327	*	4830	3089	5745	2554	5784	5622	5466	3637	5251	4721	3740	4331	5794	3716	3365	5286	*	6404	44
+       111	4597	4922	836	1185	*	0	10316	1512	2981	
+
+L 45   5569	6413	5034	4548	4581	5957	6561	3729	5294	2200	6544	4459	2276	5049	4978	4211	5282	3399	*	6972	45
+       13	*	6783	*	*	1776	498	10222	0	3540	
+
+E 46   5257	*	4088	3039	6974	4490	6008	3794	3847	4222	6978	4937	4338	2716	3888	4094	3248	4142	*	*	46
+       26	*	5804	*	*	2625	255	10293	0	2988	
+
+W 47   3346	*	4776	5863	3425	5732	6598	4046	5063	2431	5810	5067	7029	5186	3731	3603	4405	4796	3993	3975	47
+       32	*	5499	*	*	*	0	10250	0	2949	
+
+I 48   5374	6633	6836	4767	3839	6553	6748	2623	6842	1816	5120	6868	3472	5012	*	4269	5609	3082	*	5234	48
+       108	6575	4027	1000	1000	2865	213	10235	1020	3289	
+
+G 49   3082	5901	5893	5695	4313	3266	*	2243	5365	3296	*	6889	6885	4961	4687	4314	3763	3605	*	4521	49
+       43	6196	5977	2807	222	*	0	10183	1186	3892	
+
+E 50   4012	*	4527	4847	3126	6495	4757	4072	4597	5735	6695	4312	6832	5895	4949	2823	3672	4966	4593	2586	50
+       517	*	1730	*	*	3461	137	10160	0	4231	
+
+I 51   5997	4870	*	6417	2853	4026	5269	2944	5498	3375	5203	5107	*	5349	6494	3729	3519	2783	6600	4205	51
+       332	2579	4713	423	1977	*	0	9485	2752	6809	
+
+N 52   3981	5827	3587	5153	3140	4458	4466	6115	4017	4554	6929	3188	6399	5229	4527	3107	3894	6351	*	3483	52
+       71	5189	5593	1000	1000	2590	262	9414	1201	7131	
+
+H 53   *	*	4202	3350	6481	2722	6263	6176	3760	6363	5396	3266	4451	5477	3817	3044	3323	3812	*	6290	53
+       440	*	1927	*	*	4605	61	9638	0	6647	
+
+S 54   3679	*	3463	3909	6235	2287	*	6204	3344	6167	*	4765	5505	4362	5156	2675	3679	4909	*	5861	54
+       33	*	5471	*	*	1128	882	9110	0	7759	
+
+G 55   5242	*	3908	5770	*	1932	4132	4792	3446	6214	*	4180	5211	3467	4282	2934	4496	*	*	5103	55
+       78	6069	4723	0	*	1971	425	9944	1018	5658	
+
+S 56   5457	6395	3695	3395	4168	3558	6710	5677	5913	5011	6398	3969	4262	3303	4536	2829	3096	4738	*	6897	56
+       59	7061	4930	0	*	4140	84	10107	1000	5088	
+
+T 57   3942	*	4321	4160	5132	4082	4526	5284	3168	4264	*	5672	3487	5540	3977	2945	3675	3634	*	5236	57
+       100	4191	6346	2297	328	5143	41	10070	1782	5230	
+
+N 58   4175	*	5698	4084	5492	4303	5160	4562	3947	4335	*	3421	5323	3350	3750	3720	3701	2898	*	5004	58
+       137	4199	4781	2151	368	4176	82	10042	1703	5253	
+
+Y 59   4760	5316	6545	3916	3618	5397	5460	4392	4258	4749	*	6106	6299	4217	3975	3436	6849	2671	6495	2456	59
+       0	*	*	*	*	1740	513	10074	0	5377	
+
+N 60   3721	*	3119	3108	5019	4549	5158	5219	4708	4667	5588	3553	3779	5524	4685	3002	4265	5469	6338	4801	60
+       28	6741	6706	1000	1000	3629	122	10212	1016	4292	
+
+P 61   5270	6499	3142	2767	5811	2516	6500	5591	5083	3951	*	4324	2825	5849	*	2936	*	6573	5401	6497	61
+       62	5352	5835	757	1293	3588	125	10206	1325	4213	
+
+S 62   4473	*	3733	3087	5768	2725	5749	5201	4148	4725	*	4093	3927	4195	3799	3254	4659	4126	*	*	62
+       125	4514	4683	208	2896	3603	124	10192	1765	4194	
+
+L 63   4104	*	6451	5049	2945	4980	5638	4133	4388	3481	6689	5683	3650	5399	6939	4358	4241	3325	*	2457	63
+       56	5143	6725	1582	587	2719	238	10139	1460	4415	
+
+K 64   4493	6839	3136	3806	5511	3616	6524	*	2389	4678	6698	3746	4548	4070	3517	3708	4333	*	*	5858	64
+       107	3808	*	639	1482	699	1381	10193	2099	4073	
+
+S 65   3218	*	2934	3250	*	2314	6928	*	3740	6989	*	3583	4207	5804	4526	3241	4590	5765	*	*	65
+       86	4541	6066	852	1165	2158	366	10401	1836	2229	
+
+R 66   7340	6684	4448	*	5893	6454	5163	4617	4134	5881	*	4801	5665	4278	696	5661	5895	7264	*	*	66
+       58	5066	6678	1177	843	1980	422	10256	1355	2280	
+
+V 67   3269	*	*	6855	1640	4989	5250	3559	*	3663	5771	7320	7308	*	5872	6431	4704	2844	6843	3330	67
+       39	5618	7341	1828	477	*	0	10271	1281	2111	
+
+T 68   5442	*	5130	4798	6116	5926	4954	5844	3895	4920	6740	5313	5895	3343	3478	1935	2882	4055	5288	6758	68
+       14	*	6645	*	*	1999	415	10421	0	2250	
+
+I 69   3603	6817	6685	7331	3492	3981	7162	2477	*	2042	3869	*	4587	5866	6586	5212	6885	3312	6895	5102	69
+       37	7193	5751	0	*	2741	234	10281	1000	2090	
+
+S 70   5034	*	4197	3791	4261	*	5323	5171	4419	3169	*	4345	5637	4445	3672	2433	3241	4237	5836	5337	70
+       233	6866	2830	0	*	2956	199	10416	1000	2255	
+
+V 71   4201	7453	3684	5217	4060	3190	4760	*	3310	4862	6857	3712	3551	4412	3319	4533	4819	4024	5700	5901	71
+       91	7262	4203	0	*	4448	68	10205	1000	4158	
+
+D 72   5643	*	2181	3108	6074	6798	5395	5090	3730	4151	5885	3092	4121	4278	5718	4457	4210	4827	6206	5370	72
+       477	5027	1997	293	2443	1095	911	10132	1455	4696	
+
+T 73   4294	*	3699	4012	6647	3105	6441	5197	3674	3528	*	3260	3276	4516	5279	3856	3494	4852	*	6569	73
+       682	4858	1547	2338	318	2181	360	9886	1323	5862	
+
+S 74   4188	*	3120	2172	*	4310	*	4880	4300	3972	5775	4987	6338	4933	5945	2230	4884	4288	*	*	74
+       50	6169	5630	0	*	844	1175	9441	1017	7395	
+
+K 75   4370	*	5444	3818	6398	2932	6580	5371	3349	3975	5668	3289	4077	3487	3829	3323	4076	6688	6831	*	75
+       14	6654	*	1000	1000	4763	54	10030	1000	4715	
+
+N 76   5168	6243	3539	4151	6638	2737	4093	*	3903	5571	*	4053	*	4084	3384	2601	3507	4964	6590	*	76
+       91	4277	6696	466	1858	4797	53	10066	1672	4603	
+
+Q 77   4545	*	3058	4082	4634	5817	6512	4990	3794	6277	*	2586	4631	3923	3359	4441	2828	4820	*	*	77
+       28	6891	6529	0	*	1301	751	10169	1000	4612	
+
+F 78   2641	3567	*	6296	3120	3482	6997	5081	*	4115	6965	5039	5154	*	7332	2649	6170	3760	5854	3239	78
+       17	6429	*	0	*	250	2654	10260	1004	3431	
+
+S 79   3560	*	5937	7171	5295	7090	5301	5151	6615	5449	6549	5425	4700	4406	3771	1636	2463	4118	*	5719	79
+       0	*	*	0	*	0	*	10486	1000	1299	
+
+L 80   *	6566	*	6623	5243	*	*	3446	*	325	5982	*	*	*	*	*	*	5074	6840	6863	80
+       0	*	*	*	*	*	*	10497	0	0	
+
+K 81   5243	*	5131	4151	6002	5387	4602	3669	3185	3933	5746	4292	*	3557	3545	3951	2550	4352	6027	6151	81
+       10	*	7117	*	*	*	*	10497	0	0	
+
+L 82   *	*	7422	*	4771	*	*	834	6844	2322	5547	6746	6673	*	6667	6638	*	3084	6703	*	82
+       0	*	*	*	*	*	0	10355	0	1052	
+
+S 83   4438	*	5188	4124	6983	5039	5328	5645	3326	3738	7048	4882	4317	4302	3399	2274	2974	7102	*	4930	83
+       0	*	*	*	*	*	0	10355	0	1052	
+
+S 84   4383	6737	2614	5437	5721	3401	3898	*	3963	*	*	2357	4419	4325	3695	3401	5347	*	*	5438	84
+       5	*	8139	*	*	*	0	10355	0	1052	
+
+V 85   2453	*	6825	6965	4806	5246	*	3125	*	2466	5519	*	5206	*	*	5732	5340	1513	*	*	85
+       0	*	*	*	*	*	0	10321	0	1186	
+
+T 86   7104	*	5860	3443	6045	5790	5571	5862	3306	5569	7017	5927	5800	1765	3261	3431	2834	7083	6805	*	86
+       0	*	*	*	*	*	0	10321	0	1186	
+
+A 87   4783	6868	6969	3472	7013	*	*	4657	3566	2334	5024	7083	2551	4441	3645	4831	4037	4179	4613	*	87
+       0	*	*	*	*	*	0	10321	0	1186	
+
+A 88   3625	*	4075	1991	*	3823	*	*	4286	5154	*	4326	6887	3439	5939	2326	4166	5855	6883	6587	88
+       23	5994	*	920	1085	*	0	10321	1286	1186	
+
+D 89   5843	*	388	5539	*	5098	4191	*	6852	*	*	5236	*	4799	5866	6030	*	6701	*	*	89
+       0	*	*	*	*	*	0	10321	0	1186	
+
+T 90   2635	*	4300	2660	*	4996	7457	5319	4461	*	5044	5420	*	3927	6881	1985	3465	5866	*	4864	90
+       0	*	*	*	*	697	1384	10321	0	1186	
+
+A 91   2393	6677	4901	*	*	731	6871	*	6005	6863	*	*	6579	5929	4879	4286	6766	6644	*	*	91
+       0	*	*	*	*	*	0	10377	0	1000	
+
+V 92   5111	5808	5106	4154	4522	5930	4737	3706	4496	3376	4602	4881	7354	5884	5019	5283	2217	2777	5101	6863	92
+       23	6813	7120	0	*	0	*	10377	1017	1000	
+
+Y 93   *	5852	*	*	3167	*	6906	6811	*	6921	*	*	*	*	6564	*	*	5129	*	310	93
+       8	*	7422	*	*	0	*	10355	0	1052	
+
+Y 94   4648	6677	*	3896	3907	6568	5312	3847	5018	3972	6834	5717	*	3464	3684	3930	2521	4826	4651	3244	94
+       0	*	*	*	*	0	*	10507	0	1023	
+
+C 95   *	132	*	*	5784	*	6677	*	*	5619	*	*	*	*	*	6644	5658	6707	*	*	95
+       0	*	*	*	*	*	*	10377	0	0	
+
+A 96   2917	6644	4545	3091	5662	4704	5906	4862	4381	4477	4489	5201	*	3332	3544	4442	4211	3077	*	5640	96
+       24	*	5924	*	*	*	*	10377	0	0	
+
+R 97   2352	5628	*	*	5764	5461	7055	2930	4739	3756	5850	5611	*	6648	4872	5152	5687	1569	6845	5835	97
+       92	*	4017	*	*	*	0	10299	0	1154	
+
+P 98   4912	*	4092	3624	4768	5110	*	4286	3723	4184	5164	4064	5667	5054	3425	3299	3717	4111	3701	4777	98
+       69	4773	6636	264	2582	3367	147	10266	1509	2411	
+
+P 99   4129	*	4002	4289	4596	4438	4488	5651	4663	4384	5342	2047	4872	4893	4798	4207	4149	3777	*	4791	99
+       2376	*	309	*	*	*	0	10197	0	2416	
+
+H 100  4464	*	4588	3482	*	2923	4458	*	3253	*	*	3344	3340	4362	*	4214	2353	4449	*	*	100
+       442	4464	2194	1000	1000	*	0	6678	1000	9050	
+
+D 101  3167	*	2977	1990	*	3232	*	2507	3991	*	*	*	4270	*	*	*	*	3150	*	*	101
+       0	*	*	*	*	2836	218	5899	0	9178	
+
+T 102  4974	4591	*	2692	*	2264	*	*	*	3452	*	2380	5190	5016	*	5066	2892	*	4122	*	102
+       51	*	4856	*	*	987	1013	7843	0	8706	
+
+S 103  5142	*	5421	5193	*	1418	4960	6256	5412	4444	*	3663	4848	6356	4209	2235	5141	6463	*	*	103
+       1349	*	719	*	*	3933	98	9767	0	6276	
+
+G 104  4971	*	2821	3400	4942	2541	*	*	5133	4759	*	5187	3289	*	2899	3390	4977	*	*	3812	104
+       430	4010	2355	0	*	3891	101	7866	1172	8703	
+
+H 105  5090	*	3383	3791	4793	4960	4932	3858	3358	3955	*	4742	*	4301	5202	3974	4874	2600	5124	3966	105
+       85	4129	*	0	*	952	1050	7748	1178	8698	
+
+Y 106  3921	*	3392	3751	5860	3497	*	4898	4365	4390	6177	3614	5547	3715	5992	3142	4696	3710	5174	3963	106
+       16	*	6529	2000	415	1088	917	9646	1004	6182	
+
+W 107  3523	*	5249	3515	4881	5069	5557	4893	3246	4921	*	6596	3664	3771	3378	3677	3216	4410	6564	4638	107
+       33	5471	*	423	1976	2395	304	10154	1338	4284	
+
+N 108  4771	*	3399	4707	4351	3897	5692	6563	3684	3173	*	3882	3283	3974	3646	3965	4715	5121	5522	5117	108
+       30	*	5581	*	*	1076	928	10103	0	3736	
+
+Y 109  5346	4773	5666	4058	5381	6551	5578	3272	4745	3954	5653	6829	4434	4625	6138	3323	3466	2666	5183	3427	109
+       57	5048	6829	754	1296	796	1237	10111	1382	2781	
+
+W 110  3536	*	4454	4528	1966	4904	5198	3692	5389	4063	5907	7124	5756	7067	3729	3656	5171	4156	4888	5326	110
+       67	7092	4706	0	*	2855	215	10171	1000	2041	
+
+G 111  4525	*	5673	3320	*	1392	5107	6681	4754	5703	*	4619	5185	5445	4659	2726	4252	5239	*	*	111
+       63	4556	*	1890	454	2329	320	10107	1652	2510	
+
+Q 112  3379	*	4447	3824	6879	4258	5921	5165	3710	4859	6609	4571	3376	3345	4247	3111	3940	4120	*	4911	112
+       12	*	6968	*	*	2958	199	10132	0	2201	
+
+G 113  4296	7024	6785	3976	6957	1629	4950	5193	3338	5044	*	5003	4467	6639	4070	3649	3840	4514	6765	*	113
+       17	*	6388	3585	126	1482	640	10163	1000	2164	
+
+T 114  3627	*	6622	5943	5016	*	6557	3051	6726	3924	5682	*	5300	4603	6763	3475	1791	2538	*	6816	114
+       36	5357	*	382	2105	1037	964	10203	1305	1875	
+
+L 115  4897	6538	6794	3278	5365	5099	5289	5216	2856	4454	5763	5341	5313	3156	3192	2976	4112	5707	5043	5079	115
+       34	5417	*	3563	128	1608	573	10266	1288	1382	
+
+V 116  4934	*	6996	6072	5769	5897	5834	3742	5459	918	*	6958	*	6083	*	4507	5302	2557	*	8372	116
+       12	6915	*	1000	1000	*	0	10270	1033	1205	
+
+T 117  3965	*	4818	3846	5164	4855	4687	3696	4161	3954	5237	4155	5478	4817	4306	3283	2741	3640	*	6891	117
+       23	7078	6836	2322	322	*	0	10270	1000	1205	
+
+V 118  5327	6879	*	5816	5813	*	6577	2569	7101	3797	*	5915	5887	5460	8201	4656	6942	850	*	6562	118
+       186	6662	3167	2807	222	1568	594	10117	1014	1387	
+
+S 119  5052	6530	5098	4100	4974	5899	4078	4410	4501	2395	5727	5743	6576	5017	3997	3990	2907	3521	*	4123	119
+       757	3821	1567	1088	917	2908	206	10167	2079	3302	
+
+S 120  3429	6110	3561	2964	6242	3640	5959	6221	4605	3866	*	4794	3273	6426	3524	3194	5155	3800	*	*	120
+       123	5208	4187	0	*	887	1122	9686	1193	6675	
+
+G 121  2689	*	3163	4120	*	4233	*	5593	3859	4195	*	5488	4179	3730	4094	3925	4414	2697	*	*	121
+       193	3310	5344	1557	599	1568	594	9987	2313	4600	
+
+S 122  5086	6610	4106	5629	6795	4025	4590	3869	3439	3281	6755	6304	3227	5626	4671	3239	3516	2999	*	*	122
+       30	5612	*	1339	726	1760	505	10030	1181	3767	
+
+A 123  4266	*	4817	4297	5109	4271	5016	5868	4413	3911	5812	3740	2405	4172	4511	4645	4136	3256	*	4750	123
+       192	3250	5676	1382	698	3935	98	9952	2550	3004	
+
+S 124  2853	*	*	3645	4421	6860	4664	6001	3622	5340	7013	4069	2832	*	4389	2682	3367	4760	6562	6677	124
+       27	5734	*	2697	242	312	2361	9907	1193	3180	
+
+A 125  2982	*	5287	4364	4948	4799	5932	6758	2717	5684	5794	5259	1907	4913	5298	3833	4242	4593	*	*	125
+       45	5691	6483	5394	35	*	0	10069	1185	1340	
+
+P 126  3922	*	4774	*	*	7000	6842	*	7013	5661	*	7309	691	4329	5435	3920	4775	5564	*	5007	126
+       88	4331	6735	1983	421	2300	327	9988	1669	1705	
+
+T 127  4296	*	4837	3807	*	5578	*	4237	3222	4588	4218	5204	4172	4601	4298	3481	2719	3118	*	4842	127
+       0	*	*	*	*	2521	276	10016	0	1676	
+
+L 128  5460	5513	*	5906	3932	6826	5709	2137	6954	2844	5291	*	4393	5660	5026	5732	4212	1962	*	5833	128
+       40	5822	6744	1333	730	1063	939	10017	1194	1534	
+
+F 129  4213	7185	*	4154	3244	6094	5260	3763	5836	3427	5778	5292	5250	5120	5166	2887	2938	3584	5965	4038	129
+       0	*	*	*	*	652	1459	10012	0	1385	
+
+P 130  4686	5991	4296	4027	5196	6980	*	3158	4378	2990	5611	5398	3468	3779	4458	5099	4197	2833	6794	5260	130
+       88	*	4084	*	*	*	0	10060	0	1037	
+
+L 131  5326	6753	5868	4504	3948	5431	5690	4123	2937	2439	*	4226	3894	6789	5198	3258	3632	4343	6581	5447	131
+       57	5714	5648	1585	585	*	0	9985	1169	2104	
+
+V 132  4554	5490	4628	4322	5758	4647	5311	6874	4278	4309	5681	4894	2763	3643	4625	2630	3546	3758	*	6873	132
+       46	8188	5156	0	*	1188	834	9939	1000	2416	
+
+S 133  3946	*	4340	3902	5816	5099	4627	5091	5035	4801	*	3795	1961	3474	5556	3497	3591	5378	*	*	133
+       33	*	5482	*	*	600	1556	9947	0	2159	
+
+C 134  3926	5269	4223	4178	5819	4565	7068	5148	3454	5412	*	5169	3374	5720	5020	1993	4349	3505	*	5228	134
+       14	*	6695	*	*	2208	352	9978	0	1664	
+
+E 135  5887	*	3862	3703	6868	3829	6735	4247	5123	3913	4314	4211	4948	3427	4036	3314	3943	3172	*	4862	135
+       0	*	*	*	*	*	0	10003	0	1634	
+
+N 136  3352	7008	4062	3549	6555	4636	*	4852	4159	4108	5756	6595	3746	3703	4376	3049	3733	3203	6984	6847	136
+       11	*	7106	*	*	2428	297	10003	0	1634	
+
+S 137  3790	*	3355	2606	*	4073	6845	4880	5178	3659	*	5315	5542	5185	5117	3071	3350	3057	*	5898	137
+       125	5678	3981	1047	954	2547	271	10009	1311	1620	
+
+P 138  4697	6649	5761	5336	8518	4643	5495	3374	3870	3071	5428	4718	3602	4322	4386	3678	3709	2727	*	6322	138
+       12	6863	*	0	*	*	0	9894	1000	2468	
+
+S 139  4215	6660	4257	3162	7039	3288	5487	6707	3269	5014	6925	4892	4034	3747	4639	2707	3899	4358	6768	*	139
+       78	6288	4651	2585	263	857	1159	9894	1012	2468	
+
+D 140  4459	5881	4187	2507	6743	1861	4688	6771	4834	3877	*	3803	5665	4989	4978	5813	4739	4027	*	*	140
+       1638	4394	664	2434	295	*	0	10083	1688	2223	
+
+T 141  *	*	4969	*	4982	1109	5075	*	3215	5336	*	3522	*	5201	5018	5399	3112	5258	*	*	141
+       88	4085	*	1832	476	737	1322	8100	1343	8147	
+
+S 142  4845	*	3289	3263	*	3153	5565	*	4125	6188	*	3139	5448	3003	4368	2811	3476	6353	*	*	142
+       16	6546	*	4430	69	575	1606	9691	1263	4926	
+
+S 143  4024	*	3405	3140	*	5079	5214	6878	3166	5729	6658	4211	3943	3726	4535	2924	3124	5609	*	5587	143
+       0	*	*	*	*	3220	164	10006	0	2422	
+
+V 144  2750	5074	*	5566	5421	5055	5621	3485	5607	3023	5811	5252	5168	4628	*	4182	3743	2033	*	7052	144
+       13	6809	*	944	1059	165	3212	10008	1132	2264	
+
+A 145  4773	*	5709	3950	7025	*	5260	4890	4507	4523	6940	4259	6787	3349	4042	3526	1628	4161	6942	5508	145
+       10	*	7122	*	*	*	0	10144	0	1000	
+
+V 146  4553	*	6650	6736	4246	5732	*	3740	*	827	4003	*	*	*	*	*	*	2871	*	5116	146
+       24	6690	7153	0	*	881	1129	10055	1005	1135	
+
+G 147  4981	*	5695	3605	5267	5628	5555	4212	4581	3027	5340	4632	5247	3905	4672	3305	2422	3563	*	6463	147
+       0	*	*	532	1696	609	1538	10056	1142	1301	
+
+C 148  5948	148	*	*	6634	7218	*	6908	*	6566	*	*	*	*	*	8838	5967	5847	6667	*	148
+       68	4805	6623	1756	506	*	0	10155	1504	1000	
+
+L 149  4314	7195	5931	3792	6731	6736	3909	4351	4026	3118	5088	5135	4739	3699	4154	3388	3463	3188	8221	6009	149
+       11	6982	*	1822	480	1050	952	10173	1182	1169	
+
+A 150  1734	5097	*	5954	5840	5795	*	3466	*	3485	*	*	*	6932	*	3065	4260	2069	*	5596	150
+       29	5634	*	2433	295	948	1054	10163	1402	1193	
+
+Q 151  4054	7112	4705	3091	5440	6991	5930	4608	4643	5167	7790	3961	4261	4311	3627	2600	3545	3435	6755	5956	151
+       25	*	5844	*	*	*	0	10186	0	1008	
+
+D 152  5308	6762	3531	5206	*	1186	6219	*	3865	5287	*	3124	6960	5807	4708	3872	4729	6572	6744	*	152
+       160	5567	3579	3196	167	*	0	10157	1351	1335	
+
+F 153  4000	*	4872	5058	2158	2488	6540	4825	5553	5295	6416	4476	6828	6674	5015	3625	5763	3523	6416	3758	153
+       15	6590	*	0	*	411	2013	9988	1131	2822	
+
+L 154  5091	6497	6974	6012	3203	*	5155	6899	4268	4130	8161	3759	2616	5222	4268	3945	3844	4923	7867	2387	154
+       31	*	5566	*	*	1635	561	10149	0	1367	
+
+P 155  4554	6872	*	5004	6867	*	6590	5874	5849	4833	6777	5618	646	5313	4688	5400	4749	5849	*	5765	155
+       77	5873	4845	0	*	960	1041	10117	1122	1532	
+
+D 156  3366	*	3099	3411	*	5098	*	*	4012	4885	6669	4431	2486	3557	3929	3369	4803	5165	*	5540	156
+       607	3642	1926	1080	925	1014	986	10084	2276	1851	
+
+S 157  3650	*	2668	3993	*	5328	4219	6246	5415	4642	*	4376	2082	6004	5111	2754	5267	5190	*	6112	157
+       185	*	3054	*	*	1218	810	9693	0	5101	
+
+I 158  3520	*	*	4689	5640	*	*	2108	*	2717	4999	5310	4345	5432	5298	6290	4852	2140	6256	5140	158
+       264	*	2582	*	*	103	3865	9696	0	4627	
+
+T 159  4582	6526	4355	3097	*	6828	5002	5342	3446	5583	5768	2933	5680	3807	4293	3337	2787	4342	6704	6597	159
+       51	4855	*	2163	365	320	2329	9956	1420	3398	
+
+F 160  *	6681	*	6728	2824	6518	*	2272	*	2264	4712	6916	*	*	*	*	5803	1868	6698	3935	160
+       0	*	*	*	*	1824	479	10141	0	1406	
+
+S 161  5675	*	5631	4051	4519	5828	5712	4036	3529	5943	6525	5784	6749	4797	4428	2687	1996	3836	7045	4278	161
+       12	6945	*	2585	263	*	0	10158	1000	1247	
+
+W 162  *	*	6468	*	6824	*	*	*	*	5249	*	*	*	*	5418	*	*	*	164	4742	162
+       88	*	4079	*	*	*	0	10049	0	1247	
+
+K 163  5151	6609	*	4700	3413	*	5984	4383	2803	3156	4041	6531	*	5041	4448	5701	3853	6387	4349	2233	163
+       16	*	6515	*	*	3537	130	9894	0	2265	
+
+Y 164  *	*	5120	3370	6665	5586	5552	4302	2263	3289	6663	4944	6408	4910	2060	4967	5933	3769	*	6354	164
+       27	*	5741	*	*	2227	347	9877	0	2291	
+
+K 165  6621	6295	2138	3065	*	3205	*	6460	3732	5705	*	2249	4693	3738	*	4019	5645	*	6568	*	165
+       61	4588	*	2082	389	2182	359	9835	1490	2303	
+
+N 166  4537	*	3316	4451	6596	1433	*	*	4500	5739	*	2824	6859	6157	5238	3279	4971	*	*	4573	166
+       79	*	4229	*	*	2955	199	9848	0	1999	
+
+N 167  4866	*	5482	3325	*	2343	6444	5186	3103	5592	5371	3666	*	3865	4084	3351	3652	4214	*	6876	167
+       13	*	6840	*	*	2231	345	9806	0	2710	
+
+S 168  4447	*	6124	2322	*	4205	6569	4971	3365	3882	*	4108	4047	4171	4039	4104	3606	3574	7025	6452	168
+       31	5542	*	585	1585	3337	150	9813	1196	2493	
+
+D 169  7047	*	5064	4373	6680	6333	*	2774	6584	1781	4100	3759	6232	5465	6543	3714	5481	2675	*	6592	169
+       122	6394	3854	2807	222	*	0	9825	1004	2342	
+
+I 170  5465	*	3375	3941	5685	*	4901	3145	3973	3094	6678	4500	4099	4080	4073	3326	3548	5515	6360	5719	170
+       162	5066	3711	0	*	3923	98	9688	1316	3325	
+
+S 171  4461	*	3902	2955	5199	4097	5261	4835	4656	3895	6338	3966	3370	6306	5448	2626	3703	6438	5486	5392	171
+       132	4261	4825	1114	894	3215	164	9627	1583	4185	
+
+S 172  3247	*	2766	3327	*	2036	5815	4603	6532	5424	*	3451	*	4506	6090	3465	4887	4771	*	*	172
+       34	*	5432	*	*	4527	64	9565	0	4224	
+
+T 173  5511	*	4725	4766	4104	3750	*	3963	4152	4778	6729	3610	4062	4823	6374	2946	3139	2763	*	5317	173
+       100	5329	4566	0	*	3759	111	9536	1195	4336	
+
+R 174  4250	*	5266	3614	5198	6230	7639	3617	3795	5275	5721	4554	4083	3582	3874	3612	2366	4185	*	6410	174
+       123	4639	4585	2445	293	4863	50	9484	1598	4557	
+
+G 175  7192	*	5100	3983	*	6019	6352	4847	3425	4648	*	3060	6233	4186	3815	3341	1911	4217	5967	6409	175
+       57	5207	6445	579	1597	1924	441	9444	1145	4853	
+
+F 176  6391	*	3848	4397	3071	3812	4336	3944	5393	4367	*	4650	6220	6574	5502	3070	3220	3561	*	3362	176
+       19	6283	*	0	*	1228	803	9578	1167	4108	
+
+P 177  4502	*	3958	4303	5689	5079	6522	4985	5396	4601	6122	3751	2303	5613	4598	2563	2987	6079	*	5559	177
+       17	*	6445	4170	82	2818	221	9715	1000	2867	
+
+S 178  3694	*	4366	4010	5119	4684	*	3978	5679	4372	5421	4937	4504	3314	5037	2765	3352	2977	*	6623	178
+       6	7851	*	0	*	904	1103	9718	1000	2758	
+
+V 179  6758	*	6319	3733	5249	3500	5405	3151	6755	3495	5479	4039	4100	4628	4600	3510	5054	2373	6596	6693	179
+       120	5625	4062	0	*	*	0	9807	1185	1780	
+
+L 180  4523	*	5444	3680	5586	5657	5165	5419	3423	2509	5275	4373	4719	3353	3318	4689	3631	4442	*	5715	180
+       49	5477	6482	586	1582	*	0	9697	1204	2691	
+
+R 181  4083	*	3548	3486	6451	4595	5513	4851	3568	4183	*	2835	3919	3392	4238	5611	3941	4954	*	4471	181
+       48	6286	5633	2322	322	*	0	9683	1010	2818	
+
+G 182  4809	*	2813	3004	*	3444	5864	6502	4576	5746	5160	3452	4985	5602	4202	2507	3405	6587	*	6641	182
+       1324	964	3508	917	1088	917	1088	9657	6289	3036	
+
+G 183  5339	*	3014	4241	*	1231	5555	*	3465	5365	5344	4784	*	6721	4160	3669	5508	*	6704	*	183
+       51	5454	6394	791	1244	1558	598	9603	1336	3310	
+
+K 184  5009	*	4210	7859	*	4633	6648	5632	3025	2547	5421	5815	*	4740	3620	3233	2145	4587	*	6341	184
+       108	4806	4770	273	2538	*	0	9657	1453	2667	
+
+Y 185  5603	4657	5407	4704	2106	*	6409	4864	6336	6367	6333	6845	5422	5705	6621	4612	4925	4315	6716	1443	185
+       14	*	6682	*	*	745	1310	9601	0	3185	
+
+A 186  4119	6273	4273	4383	6877	4648	4962	6587	4947	6020	4490	3130	6963	4955	3922	1957	3080	5343	6962	5824	186
+       19	6290	*	0	*	2932	203	9749	1034	2018	
+
+A 187  4403	*	5725	6176	6962	4891	5317	3194	5445	2414	3940	5646	*	*	5063	4411	3167	2314	4820	5414	187
+       42	5133	*	1829	477	2609	258	9762	1316	1871	
+
+T 188  5108	*	*	5336	4517	4161	5658	4798	5105	3858	4428	4501	6600	6127	4706	2263	2483	3104	5943	5673	188
+       18	6308	*	2585	263	835	1186	9775	1037	1708	
+
+S 189  5009	5446	5739	5812	6373	4237	5101	5033	6259	4455	6855	4213	5845	5752	5292	1000	3446	6595	*	*	189
+       54	5680	5846	615	1527	*	0	9814	1168	1227	
+
+Q 190  4269	6840	4380	4067	5273	5905	5290	3522	6917	4550	5857	4135	4627	4544	3871	3601	2710	3541	4425	4966	190
+       33	5484	*	3612	123	1224	806	9814	1381	1513	
+
+V 191  4491	6810	6604	6590	5532	3875	*	4066	*	800	5216	*	6760	*	6299	5192	5311	3923	6784	5269	191
+       33	*	5475	*	*	*	0	9814	0	1227	
+
+L 192  5806	*	5717	3694	*	6702	4302	4704	4629	3835	3968	3518	*	4351	3019	3824	2260	4110	*	5984	192
+       0	*	*	*	*	2279	333	9782	0	1565	
+
+L 193  6618	*	*	*	4159	*	*	1855	5567	1756	6846	*	*	*	6582	5897	6587	2007	*	4468	193
+       58	5783	5559	1585	585	1497	631	9796	1377	1418	
+
+P 194  5285	8022	4433	4955	*	5593	*	4658	3591	4729	6328	3792	3060	5054	3589	2815	2562	3981	6579	6959	194
+       15	*	6631	*	*	*	0	9779	0	1548	
+
+S 195  2965	*	4116	3997	5109	5189	4653	3436	4888	4112	*	3602	3014	6756	4304	3251	4333	4686	6392	*	195
+       17	*	6427	*	*	*	0	9760	0	1698	
+
+K 196  3552	6236	3972	4411	*	3924	5528	4124	3093	4814	*	4857	7229	4014	4694	2692	3350	3343	*	*	196
+       28	*	5700	*	*	578	1598	9742	0	1846	
+
+D 197  4180	*	2637	4216	6330	5223	5101	*	3221	3975	*	4424	4481	4206	3818	2770	3511	5642	*	5622	197
+       19	*	6271	*	*	*	0	9790	0	1465	
+
+V 198  3926	*	4982	3657	4615	4935	4463	4100	4056	2716	5370	5512	6841	6545	3814	4649	6449	3347	3237	4592	198
+       1999	*	415	*	*	*	0	9777	0	1950	
+
+M 199  4078	*	3950	*	4504	*	4484	*	2868	4428	4349	3192	*	3429	3671	2643	3134	*	*	*	199
+       140	*	3438	*	*	3708	115	6838	0	8308	
+
+A 200  4555	*	3260	2780	*	*	5298	*	3121	5810	*	3108	4590	3953	2899	6179	3230	4545	*	5061	200
+       0	*	*	*	*	487	1804	7235	0	8132	
+
+G 201  4077	*	1820	3590	*	3137	4430	*	4530	6199	5491	3532	4280	4334	4098	4727	4276	*	*	*	201
+       173	6331	3309	0	*	1445	661	9495	1017	3963	
+
+T 202  4675	*	1437	4171	6292	4793	3121	5672	4663	5417	6271	4032	5489	*	4115	4846	4527	6447	*	4438	202
+       0	*	*	*	*	1609	573	9476	0	3947	
+
+D 203  2790	*	3451	4598	*	2031	6476	6665	4760	*	6382	2635	*	5498	4143	3740	3662	6116	*	*	203
+       46	5438	6926	0	*	856	1161	9644	1154	3051	
+
+E 204  3535	*	5897	4142	*	1909	6310	6305	3843	4972	*	3892	6502	6646	3936	4032	2814	3701	*	6235	204
+       0	*	*	*	*	2826	219	9742	0	2174	
+
+H 205  5791	*	5653	5136	4128	*	4474	3681	4184	4616	5659	4946	4897	4266	6989	4165	3926	3102	*	1867	205
+       12	*	6970	*	*	338	2261	9769	0	1997	
+
+V 206  *	*	*	5864	2595	*	*	6354	3797	4542	6743	6730	*	*	5714	3679	3717	3622	4808	1391	206
+       630	*	1499	0	*	1357	714	9818	1000	1247	
+
+V 207  *	*	6126	*	5114	5064	5802	4605	3563	*	*	*	*	3462	3559	3335	1125	4321	*	*	207
+       0	*	*	*	*	59	4642	9159	0	5583	
+
+C 208  *	61	*	*	*	*	*	6702	*	*	*	6768	*	*	*	*	*	6556	*	6413	208
+       15	*	6578	*	*	*	0	9830	0	1087	
+
+K 209  3793	*	*	3507	*	*	*	3364	4227	4279	5798	5525	*	2536	3675	4202	3378	2494	*	5680	209
+       23	6400	7997	2322	322	*	0	9818	1044	1258	
+
+V 210  1463	*	*	*	5130	*	*	3372	*	4209	*	*	*	*	*	4579	6724	1298	*	*	210
+       17	6421	*	988	1012	1744	512	9813	1191	1434	
+
+Q 211  3701	*	4569	3798	6741	6590	5068	7981	3997	6983	*	4516	5755	3058	3501	2477	2566	4413	6534	6929	211
+       107	3811	*	1953	431	1298	753	9792	1919	1258	
+
+H 212  6443	6357	6247	6520	6536	*	1580	6444	*	*	*	1313	*	4173	4913	4762	5143	*	*	4668	212
+       523	1717	*	820	1205	*	0	9784	4611	1087	
+
+P 213  3555	*	3894	2700	5442	3012	6327	4940	3687	5256	6471	5510	4512	4368	4760	2886	4194	4452	*	*	213
+       7	7750	*	1000	1000	*	0	9743	1000	1087	
+
+N 214  3578	*	5570	4798	4951	1966	*	*	6718	4091	*	2422	*	4647	6494	2434	4974	4696	*	6664	214
+       840	1215	6579	919	1086	*	0	9743	5628	1087	
+
+G 215  4445	*	4140	4405	5062	2208	4233	*	4452	4200	*	6337	4108	4803	4711	3149	3399	4146	*	4569	215
+       0	*	*	*	*	*	0	9670	0	1265	
+
+N 216  4169	*	*	3380	6482	4852	6548	6510	3380	4770	*	3426	2507	5434	3668	3266	2960	4477	*	*	216
+       0	*	*	*	*	*	0	9648	0	1265	
+
+K 217  3599	*	4045	4210	6508	6320	*	2633	4583	2944	4776	4724	*	6474	4617	5186	2987	2773	*	5629	217
+       0	*	*	1000	1000	1268	774	9648	1087	1265	
+
+E 218  4502	*	3829	2478	*	4918	4964	*	7708	6589	*	3637	3858	4407	3567	2967	3022	3819	*	5435	218
+       0	*	*	*	*	*	0	9661	0	1087	
+
+K 219  2768	*	5360	4451	*	6557	6339	3608	2872	2878	5372	5488	*	3530	3866	4399	4290	3728	6422	5780	219
+       0	*	*	*	*	0	*	9661	0	1087	
+
+N 220  3931	*	5206	3477	*	6492	3683	4049	4038	4110	*	3568	6392	4140	4194	2964	2705	4049	*	*	220
+       0	*	*	*	*	*	*	9671	0	0	
+
+V 221  5081	6573	*	6460	4259	5381	*	2096	*	2214	5793	*	6083	5086	4854	6517	4315	2038	6507	6574	221
+       7	*	7779	*	*	*	*	9623	0	0	
+
+P 222  6437	*	3872	3093	4984	6234	5212	4753	3822	3360	*	3017	3816	4075	4217	3312	3969	5241	6250	6149	222
+       46	4998	*	3740	112	*	0	9560	1206	1087	
+
+L 223  5859	5101	*	*	2399	4753	*	3084	3460	2334	6018	*	5208	*	*	*	5213	2634	4976	4120	223
+       146	3675	5780	948	1054	0	*	9405	1945	1087	
+
+P 224  4296	*	4307	4852	*	5856	*	4864	4887	4754	*	5171	1390	3758	3178	3412	4215	*	*	*	224
+       9	7307	*	0	*	*	0	9042	1087	1020	
+
+V 225  4323	*	*	4120	*	3866	*	4038	4356	4171	6545	*	2052	*	5691	3835	5716	1745	*	*	225
+       0	*	*	*	*	794	1241	8905	0	1270	
+
+I 226  4524	4648	5663	3700	4764	5111	5960	3050	4399	3216	*	5810	2991	4502	3758	3730	*	3180	6050	*	226
+       0	*	*	*	*	*	0	8843	0	1020	
+
+A 227  3868	*	6088	3078	5910	4514	5856	3353	4354	5618	*	5598	2789	4426	4070	3718	4879	2901	5812	5605	227
+       31	*	5577	*	*	*	0	8684	0	1020	
+
+E 228  3912	5465	3680	3382	*	4259	5365	4647	4573	4470	5396	4537	2286	4335	4505	4901	5062	3575	*	5587	228
+       240	3556	3876	535	1691	0	*	8471	1500	1167	
+
+L 229  5129	*	3807	4889	3636	*	5035	4394	5244	4967	5680	5389	2523	4728	5054	3341	2872	4350	*	3645	229
+       0	*	*	*	*	715	1356	8101	0	1313	
+
+P 230  3716	*	*	3282	*	*	4828	6732	5414	*	*	4325	970	5336	4038	3658	5175	*	*	*	230
+       19	6252	*	0	*	0	*	8080	1016	1023	
+
+P 231  5356	*	*	*	*	*	*	5127	5136	*	*	*	269	*	5314	3971	*	*	*	*	231
+       0	*	*	*	*	*	*	7910	0	0	
+
+K 232  4018	*	*	4283	*	*	4220	3427	1989	*	*	2941	*	*	4462	2312	3166	*	*	*	232
+       0	*	*	0	*	*	*	5862	0	0	
+
+//
+�HHsearch 1.5
+NAME  6e235e11f9c330891bd4a7eac552e81b
+FAM   
+FILE  6e235e11f9c330891bd4a7eac552e81b
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:02:52 2013
+LENG  187 match states, 187 columns in multiple alignment
+FILT  10 out of 12 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  2.4 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCEEEECCCCCCCCCCCEEEEEEEECCCCCCCCEECCCCCCCCEEEEEEEEEEEEEECCCCCEEEEEEECCCCCCCCEEEEEEEEEECCCCCCCEEEEE
+EEEECCCCCCCCCCCCEEEEEEEEECCCCCEEEEEEEEEECCCCCCCCCCEEEEEEEEECCCCCCCEEEEEEHHHEEEEEEEEECCC
+>ss_conf PSIPRED confidence values
+9417433045643457512341165317767586663796464248999987776776389717999991799989864899998863267988378999
+987457888856744245898787307874788986688324463258867999999867754242799998054333478740179
+>Consensus
+MfQxfvsKHxxxxxxapfssxxxxxxxtPaxxxpVvxtxxixxxrstxxxxxsxtaxtxxxGxfxxxxxxDxsxpxxnqVxSvxasLSfxvxsxxixxxV
+RFExaxxxxxtxxpxxxdxyPiexxxxsgxaxSxrDcvTidxhprtxGNnVyvGvxxxSxxwtagxvxGxiSxxQVxxExtvLQPLK
+>6e235e11f9c330891bd4a7eac552e81b
+MYQNFVTKHDTAIQTSRFSVTGNVIPAAPTGNIPVINGGSITAERAVVNLYANMNVSTSSDGSFIVAMKVDTSPTDPNCVISAGVNLSFAGTSYPIVGIV
+RFESASEQPTSIAGSEVEHYPIEMSVGSGGVCSARDCATVDIHPRTSGNNVFVGVICSSAKWTSGRVIGTIATTQVIHEYQVLQPLK
+>gi|2493330|sp|Q38042.1|G_BPPHK RecName: Full=Major spike protein G; AltName: Full=G protein; AltName: Full=GPGgi|1478127|emb|CAA42892.1| G [Enterobacteria phage phiK]
+MYQIFVTKHDTAIQTSRFSVTGSITPVAPTGNIPVINTGNI--taEHAVVSLYANLTAGTSSDGSFIVAMKVDTSPADPNCVISAGVNLSFAGTSYPIVG
+IVRFESASDQPTSIags---QIEHYPIEMSv-GSGGVCSARDCVTVDIHPRAFGNNVFVGVICSSAKWTSGRVLGTIATTQVIREYQVLQPLK
+>gi|71842816|gb|AAZ49017.1| gpG [Enterobacteria phage NC28]
+MFQVYVSKH-----VAPFTSKNRAFSIAPAANPQVVNSGEI--vaGRSTFRIASSIASAVNGSG-FAFVQMMDPNSPDSQQVFSVAASLSFSVDSNYIPC
+VVRFEDNAAQPTDFdia---TADFIPVEVSa-ISPRALSVRDCVTVDVKPRTQGNNVFVGVVFFSASANAGNVTGVVSMAQVDHEVTALQPLK
+>gi|71842783|gb|AAZ48987.1| gpG [Enterobacteria phage NC35]
+MFQVYVSKH-----VSPFTSMNRAFGITPSSNPTVVNSGEI--qaGRSTFRIASSIGAASNGQG-FAFVQMMDPYSPDNQQVFSVAASLSFSVDSNYVPC
+VIRFETASTQPTNIdvs---TADFIPLESSa-LSARALSVRDCVTVDVKPRIEGNNVFVGVVFCSAGASAGNVTGAVSMAQVDHEVTALQPLK
+>gi|71842861|gb|AAZ49058.1| gpG [Enterobacteria phage NC29]
+MFQVYVAKH-----VAPFTSMNRTFSISPAAAPQVVNSGEI--vaGRSTFRIASSIGSASNGNG-FAFVQMMDPNSPDSQQVFSVAASLSFSVDSNYVPC
+VVRFESSFSQPGQFaia---EADFIPVESSa-LSARALSVRDCVTVDVKPRAEGNNVFVGLFLSSAAANAGNVTGVISMAQVDHEVTALQPLK
+>gi|89888617|ref|YP_512377.1| gpG [Enterobacteria phage ID2 Moscow/ID/2001]gi|71842750|gb|AAZ48957.1| gpG [Enterobacteria phage ID2 Moscow/ID/2001]
+MFQKFIKKH-----NAPLTSQpAISKAVTPSMTaAPLVTTPL-GVSSTQLFLELTTTAAA--GG-FAYAIRVDNSNPTDNQVFSVCAHItS-DVDPKYIA
+CLVRFEVTAGTTPTAMPPVYDAYPIA-GYYDAGSYTVEDCATIPTHAVSSGNDVYVGLMLFSRMWPVAKLSGIASLNQVNKEVTVLQPLK
+>gi|71843197|gb|AAZ49366.1| gpG [Enterobacteria phage NC6]
+MFQKFISKH-----NAPISSTQVTVTETPAATAPILGVP--GLSRSTIQINVTTTAVTTHSG-LCHVVRIDETNPTNHHALSVAGSLS-HVSADMIAFAI
+RFEVADGFVPTAVPTLYDVYPIE-IVNTGKAISFKDVVTIDSHPRTVGNDVYAGIMLWSNAWSATTTSGVLSVNQVNREATVLQPLK
+>gi|71843149|gb|AAZ49322.1| gpG [Enterobacteria phage ID41]
+MFQKFISKH-----NAPINSTQLAATKTPAVTAPVLSVP--DLSRSTIQINATTTAVTTHSG-LCHVVRIDETNPTNHHALSIAGSLS-NVPADMIAFAI
+RFEVADGVVPTAVPALYDVYPIE-TFNNGKAISFKDAVTIDSHSRTVGNDVYAGIMLWSNAWTASTISGVLSVNQVNREATVLQPLK
+>gi|71843221|gb|AAZ49388.1| gpG [Enterobacteria phage WA14]
+MFQTYLSKH-----NSPLTSQSITATKTPAAAAPIISTP--ELSRSTIFAGLTLTAATTHSG-VAHVVRIDETNPTDNQVLSVAASLS-GVPSDAIAIAI
+RFEVADGTVPTALPALYSAYPVE-FFTSGAALSCKDAVSIPTHPVTAGNDVYAGILIWSKSWAAGVVSGLLSVNQVNRETTVLQPLK
+>gi|304269275|gb|ADM16612.1| protein G [Enterobacteria phage phiX174]
+MFQTFISRHN----SNFFSDKLVLTSVTPASSAPVLQTP--KATSSTLYFD-SLTVNAGNGG-FPHCIQMDTSVNAANQVVSVGADIAFDADPKFFACLV
+RFESSS--VPTTLPTAYDVYPLN-GRHDGGYYTVKDCVTIDVLPRTPGNNVYVGFMVWSN-FTATKCRGLVSLNQVIKEIICLQPLK
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	2517	0	0	
+
+Y 2    *	*	*	*	393	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2067	2
+       0	*	*	*	*	*	*	2517	0	0	
+
+Q 3    *	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	3
+       0	*	*	*	*	*	*	2517	0	0	
+
+N 4    *	*	*	*	*	*	*	3135	1776	*	*	3002	*	*	*	*	2165	2021	*	*	4
+       0	*	*	*	*	*	*	2517	0	0	
+
+F 5    *	*	*	*	603	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1549	5
+       0	*	*	*	*	*	*	2517	0	0	
+
+V 6    *	*	*	*	*	*	*	1253	*	3391	*	*	*	*	*	*	*	1044	*	*	6
+       0	*	*	*	*	*	*	2517	0	0	
+
+T 7    3604	*	*	*	*	*	*	*	3103	*	*	*	*	*	*	829	2067	*	*	*	7
+       0	*	*	*	*	*	*	2517	0	0	
+
+K 8    *	*	*	*	*	*	*	*	197	*	*	*	*	*	2970	*	*	*	*	*	8
+       0	*	*	*	*	*	*	2517	0	0	
+
+H 9    *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	9
+       1449	*	658	*	*	*	*	2517	0	0	
+
+D 10   *	*	735	*	*	*	*	*	*	*	*	1324	*	*	*	*	*	*	*	*	10
+       735	*	1325	*	*	*	0	1596	0	1811	
+
+T 11   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	11
+       0	*	*	*	*	*	0	1085	0	1994	
+
+A 12   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	12
+       0	*	*	*	*	*	0	1085	0	1994	
+
+I 13   *	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	13
+       0	*	*	*	*	*	0	1085	0	1994	
+
+Q 14   *	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	14
+       0	*	*	*	*	0	*	1085	0	1994	
+
+T 15   *	*	*	*	*	*	*	*	*	*	*	1368	*	*	*	2970	2067	2021	*	*	15
+       0	*	*	*	*	*	*	2517	0	0	
+
+S 16   1134	*	*	*	*	*	*	*	*	*	*	2970	*	*	*	1263	*	*	*	*	16
+       0	*	*	*	*	*	*	2517	0	0	
+
+R 17   *	*	*	*	2970	*	*	*	*	*	*	*	658	*	2067	*	*	*	*	*	17
+       0	*	*	*	*	*	*	2517	0	0	
+
+F 18   *	*	*	*	707	*	*	2509	*	2240	*	*	*	*	*	*	*	*	*	*	18
+       0	*	*	*	*	*	*	2517	0	0	
+
+S 19   *	*	*	*	*	*	*	*	*	*	*	3493	*	*	*	1142	1126	*	*	*	19
+       0	*	*	*	*	*	*	2517	0	0	
+
+V 20   *	*	2970	*	*	*	*	*	*	*	*	*	*	*	*	658	*	2067	*	*	20
+       0	*	*	*	*	*	*	2517	0	0	
+
+T 21   *	*	*	*	*	*	*	*	2258	*	2600	*	*	2240	*	*	1271	*	*	*	21
+       178	3103	*	0	*	*	*	2517	1027	0	
+
+G 22   3103	*	*	*	*	2067	*	*	*	2970	*	2021	*	2509	*	3391	*	*	*	*	22
+       0	*	*	*	*	*	*	2517	0	0	
+
+N 23   *	*	*	*	*	*	*	2240	*	3493	*	3002	*	*	2021	3135	*	2221	*	*	23
+       0	*	*	*	*	*	*	2517	0	0	
+
+V 24   1983	*	*	*	*	*	*	3135	*	2970	*	*	*	*	*	3103	1919	3002	*	*	24
+       0	*	*	*	*	*	*	2517	0	0	
+
+I 25   2441	*	*	*	2021	*	*	3002	3103	*	*	*	*	*	*	*	2050	3525	*	*	25
+       0	*	*	*	*	*	*	2517	0	0	
+
+P 26   3103	*	*	*	*	3595	*	*	*	*	*	*	2067	*	*	1780	1883	*	*	*	26
+       0	*	*	*	*	*	*	2517	0	0	
+
+A 27   3002	*	*	3525	*	*	*	2021	2441	*	*	*	*	*	*	*	*	1483	*	*	27
+       0	*	*	*	*	*	*	2517	0	0	
+
+A 28   1644	*	*	*	*	*	*	*	*	*	*	*	*	*	*	3604	742	*	*	*	28
+       0	*	*	*	*	*	*	2517	0	0	
+
+P 29   *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	29
+       0	*	*	*	*	*	*	2517	0	0	
+
+T 30   831	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2328	2067	*	*	*	30
+       0	*	*	*	*	*	*	2517	0	0	
+
+G 31   1532	*	*	*	*	2067	*	*	*	*	3103	*	*	*	*	2249	*	3493	*	*	31
+       0	*	*	*	*	*	*	2517	0	0	
+
+N 32   2493	*	*	*	*	*	*	*	*	*	*	1312	*	*	*	2970	1776	*	*	*	32
+       178	3103	*	0	*	*	*	2517	1027	0	
+
+I 33   957	*	*	*	*	*	*	2067	*	*	*	*	2021	*	*	*	*	*	*	*	33
+       0	*	*	*	*	*	*	2517	0	0	
+
+P 34   *	*	*	*	*	*	*	*	*	*	*	*	408	2612	*	*	3595	*	*	*	34
+       0	*	*	*	*	*	*	2517	0	0	
+
+V 35   *	*	*	*	*	*	*	2456	*	3103	*	*	*	*	*	*	*	512	*	*	35
+       0	*	*	*	*	*	*	2517	0	0	
+
+I 36   *	*	*	*	*	*	*	1582	*	1721	*	*	*	*	*	*	*	1463	*	*	36
+       0	*	*	*	*	*	*	2517	0	0	
+
+N 37   *	*	*	*	*	3525	*	*	*	*	*	1044	*	2970	*	2441	3103	*	*	*	37
+       0	*	*	*	*	*	*	2517	0	0	
+
+G 38   *	*	*	*	*	3002	*	*	*	*	*	*	*	*	*	2021	1142	2509	*	*	38
+       0	*	*	*	*	*	*	2517	0	0	
+
+G 39   *	*	*	*	*	1044	*	*	*	*	*	*	957	*	*	*	*	*	*	*	39
+       734	*	1327	*	*	*	*	2517	0	0	
+
+S 40   *	*	*	1347	*	*	*	*	*	2022	*	2538	*	*	*	2407	*	*	*	*	40
+       408	*	2022	*	*	*	0	2043	0	1463	
+
+I 41   *	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	41
+       1982	*	421	*	*	0	*	1663	0	1636	
+
+T 42   *	*	3029	2855	*	1809	*	*	2459	*	*	*	*	*	*	*	1878	*	*	*	42
+       0	*	*	*	*	*	0	2242	0	1403	
+
+A 43   1139	*	*	*	*	*	*	*	*	1389	*	*	*	*	*	*	*	2606	*	*	43
+       0	*	*	1000	1000	0	*	2242	1403	1403	
+
+E 44   *	*	*	2067	*	2021	*	*	*	*	*	*	*	*	*	1368	2970	*	*	*	44
+       0	*	*	*	*	*	*	2517	0	0	
+
+R 45   *	*	*	*	*	*	3135	*	*	*	*	*	*	*	639	2035	*	*	*	*	45
+       0	*	*	*	*	*	*	2517	0	0	
+
+A 46   2067	*	*	*	*	*	*	*	*	*	*	*	*	*	*	633	3103	*	*	*	46
+       0	*	*	*	*	*	*	2517	0	0	
+
+V 47   *	*	*	*	*	*	*	*	*	*	*	*	*	3103	*	*	633	2067	*	*	47
+       0	*	*	*	*	*	*	2517	0	0	
+
+V 48   *	*	*	*	2021	*	*	1883	*	2035	*	*	*	*	*	*	*	2067	*	*	48
+       0	*	*	*	*	*	*	2517	0	0	
+
+N 49   *	*	*	*	2240	*	*	*	*	*	*	3002	*	2509	2021	3135	*	*	*	2970	49
+       0	*	*	*	*	*	*	2517	0	0	
+
+L 50   3391	*	*	*	2970	*	*	1245	*	1494	*	*	*	*	*	*	*	*	*	*	50
+       0	*	*	*	*	*	*	2517	0	0	
+
+Y 51   2021	*	2970	3103	*	3391	*	*	*	*	*	2509	*	*	*	*	*	*	*	2067	51
+       197	*	2970	*	*	*	*	2517	0	0	
+
+A 52   1430	*	*	*	*	*	*	*	*	1999	*	*	*	*	*	1844	*	3321	*	*	52
+       0	*	*	*	*	0	*	2367	0	1046	
+
+N 53   *	*	*	*	*	*	*	*	*	*	*	2067	*	*	*	1419	1368	*	*	*	53
+       0	*	*	*	*	*	*	2517	0	0	
+
+M 54   *	*	*	*	*	*	*	2021	*	1570	3002	*	*	*	*	*	1776	*	*	*	54
+       0	*	*	*	*	*	*	2517	0	0	
+
+N 55   3620	*	*	*	*	2600	*	*	*	*	*	3002	*	*	*	*	669	*	*	*	55
+       0	*	*	*	*	*	*	2517	0	0	
+
+V 56   776	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2612	*	1986	*	*	56
+       0	*	*	*	*	*	*	2517	0	0	
+
+S 57   1126	*	*	*	*	3135	*	*	*	*	*	2970	*	*	*	3002	*	2509	*	*	57
+       0	*	*	*	*	*	*	2517	0	0	
+
+T 58   2035	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2600	972	3620	*	*	58
+       178	*	3103	*	*	*	*	2517	0	0	
+
+S 59   *	*	*	*	*	2714	*	*	*	*	*	1878	*	*	*	1938	1669	*	*	*	59
+       0	*	*	*	*	*	0	2405	0	1027	
+
+S 60   *	*	*	*	*	1878	1669	*	*	*	*	2714	*	*	*	1938	*	*	*	*	60
+       0	*	*	*	*	0	*	2405	0	1027	
+
+D 61   *	*	2067	*	*	2035	*	*	*	*	*	3604	*	3595	*	1505	*	*	*	*	61
+       0	*	*	*	*	*	*	2517	0	0	
+
+G 62   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	62
+       2067	*	393	*	*	*	*	2517	0	0	
+
+S 63   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	63
+       0	*	*	*	*	0	*	1085	0	1994	
+
+F 64   *	*	*	*	456	*	*	*	*	2509	*	*	*	*	*	*	*	3391	*	*	64
+       0	*	*	*	*	*	*	2517	0	0	
+
+I 65   1126	2509	*	*	*	*	*	2067	*	*	*	*	2970	*	*	*	*	*	*	*	65
+       0	*	*	*	*	*	*	2517	0	0	
+
+V 66   *	*	*	*	2021	*	1327	*	*	*	*	*	*	*	*	*	*	2067	*	3103	66
+       0	*	*	*	*	*	*	2517	0	0	
+
+A 67   1494	2970	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	951	*	*	67
+       0	*	*	*	*	*	*	2517	0	0	
+
+M 68   *	*	*	*	*	*	*	2035	*	*	2067	*	*	2021	*	*	*	1883	*	*	68
+       0	*	*	*	*	*	*	2517	0	0	
+
+K 69   *	*	*	*	*	*	*	*	2067	*	2021	*	*	2970	1368	*	*	*	*	*	69
+       0	*	*	*	*	*	*	2517	0	0	
+
+V 70   *	*	*	*	*	*	*	1883	*	*	1419	*	*	*	*	*	*	1494	*	*	70
+       0	*	*	*	*	*	*	2517	0	0	
+
+D 71   *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	71
+       0	*	*	*	*	*	*	2517	0	0	
+
+T 72   *	*	*	1883	*	*	*	*	*	*	*	3103	2021	*	*	*	1449	*	*	*	72
+       0	*	*	*	*	*	*	2517	0	0	
+
+S 73   *	*	*	*	*	*	*	*	*	*	*	2612	*	*	*	1051	1883	*	*	3595	73
+       0	*	*	*	*	*	*	2517	0	0	
+
+P 74   *	*	*	*	*	*	*	*	*	*	*	1368	2067	*	*	2021	*	2970	*	*	74
+       0	*	*	*	*	*	*	2517	0	0	
+
+T 75   3135	*	*	*	*	*	*	*	*	*	*	2970	658	*	*	*	3002	*	*	*	75
+       0	*	*	*	*	*	*	2517	0	0	
+
+D 76   2970	*	1044	*	*	*	*	*	*	*	*	*	*	*	*	*	1368	*	*	*	76
+       0	*	*	*	*	*	*	2517	0	0	
+
+P 77   2970	*	2240	*	*	*	*	*	*	*	*	1952	2067	*	*	2612	*	*	*	*	77
+       0	*	*	*	*	*	*	2517	0	0	
+
+N 78   *	*	*	*	*	*	2509	*	*	*	*	791	*	2021	*	*	*	*	*	*	78
+       0	*	*	*	*	*	*	2517	0	0	
+
+C 79   *	2067	*	*	*	*	2509	*	*	*	*	*	*	772	*	*	*	*	*	*	79
+       0	*	*	*	*	*	*	2517	0	0	
+
+V 80   2509	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	279	*	*	80
+       0	*	*	*	*	*	*	2517	0	0	
+
+I 81   *	*	*	*	1463	*	*	2067	*	1883	*	*	*	*	*	*	*	2970	*	*	81
+       0	*	*	*	*	*	*	2517	0	0	
+
+S 82   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	82
+       0	*	*	*	*	*	*	2517	0	0	
+
+A 83   2067	*	*	*	*	*	*	3493	*	*	*	*	*	*	*	*	*	572	*	*	83
+       0	*	*	*	*	*	*	2517	0	0	
+
+G 84   951	3103	*	*	*	1449	*	*	*	*	*	*	*	*	*	*	*	*	*	*	84
+       0	*	*	*	*	*	*	2517	0	0	
+
+V 85   772	*	*	*	*	2509	*	*	*	*	*	*	*	*	*	*	*	2067	*	*	85
+       0	*	*	*	*	*	*	2517	0	0	
+
+N 86   *	*	2970	*	*	*	3103	*	*	*	*	2067	*	*	*	951	*	*	*	*	86
+       0	*	*	*	*	*	*	2517	0	0	
+
+L 87   *	*	*	*	*	*	*	2035	*	404	*	*	*	*	*	*	*	*	*	*	87
+       178	3103	*	0	*	*	*	2517	1027	0	
+
+S 88   2970	*	*	*	*	*	*	*	*	*	*	*	*	*	*	197	*	*	*	*	88
+       707	*	1368	*	*	*	*	2517	0	0	
+
+F 89   *	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	89
+       0	*	*	*	*	0	*	2021	0	1445	
+
+A 90   2067	*	2035	*	*	3391	3525	*	*	*	*	3493	*	*	*	2021	*	*	*	*	90
+       0	*	*	*	*	*	*	2517	0	0	
+
+G 91   2970	*	*	*	*	2067	*	*	*	*	*	*	*	*	*	*	*	658	*	*	91
+       0	*	*	*	*	*	*	2517	0	0	
+
+T 92   *	*	1028	*	*	*	*	*	*	*	*	*	2441	*	*	3525	2067	*	*	*	92
+       0	*	*	*	*	*	*	2517	0	0	
+
+S 93   2509	*	*	*	*	*	*	*	*	*	*	*	2035	*	*	785	*	*	*	*	93
+       0	*	*	*	*	*	*	2517	0	0	
+
+Y 94   *	*	1883	*	*	*	*	*	2035	*	*	2021	*	*	*	*	*	*	*	2067	94
+       0	*	*	*	*	*	*	2517	0	0	
+
+P 95   3391	*	*	*	2970	*	*	*	*	*	2509	*	2067	*	*	*	*	*	*	1463	95
+       0	*	*	*	*	*	*	2517	0	0	
+
+I 96   *	*	*	*	2970	*	*	499	*	*	*	*	*	*	*	*	*	2600	*	*	96
+       0	*	*	*	*	*	*	2517	0	0	
+
+V 97   957	*	*	*	*	*	*	*	*	*	*	*	2021	*	*	*	*	2067	*	*	97
+       0	*	*	*	*	*	*	2517	0	0	
+
+G 98   *	1028	*	*	2509	2067	*	3391	*	*	*	*	*	*	*	*	*	*	*	*	98
+       0	*	*	*	*	*	*	2517	0	0	
+
+I 99   1883	*	*	*	*	*	*	2067	*	2035	*	*	*	*	*	*	*	2021	*	*	99
+       0	*	*	*	*	*	*	2517	0	0	
+
+V 100  *	*	*	*	*	*	*	1499	*	*	*	*	*	*	*	*	*	630	*	*	100
+       0	*	*	*	*	*	*	2517	0	0	
+
+R 101  *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	101
+       0	*	*	*	*	*	*	2517	0	0	
+
+F 102  *	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	102
+       0	*	*	*	*	*	*	2517	0	0	
+
+E 103  *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	103
+       0	*	*	*	*	*	*	2517	0	0	
+
+S 104  *	*	3620	*	*	*	*	*	*	*	*	*	*	*	*	1157	3595	1368	*	*	104
+       0	*	*	*	*	*	*	2517	0	0	
+
+A 105  755	*	*	*	*	*	*	*	*	*	*	3620	*	*	*	2252	3103	*	*	*	105
+       0	*	*	*	*	*	*	2517	0	0	
+
+S 106  2338	*	1883	*	3604	*	*	*	*	*	*	*	*	*	*	1155	*	*	*	*	106
+       197	*	2970	*	*	*	*	2517	0	0	
+
+E 107  3445	*	2949	2821	*	1151	*	*	*	*	*	*	*	*	*	3429	3413	*	*	*	107
+       0	*	*	*	*	*	0	2367	0	1046	
+
+Q 108  *	*	*	*	3321	*	*	*	*	*	*	*	*	864	*	*	1999	3319	*	*	108
+       0	*	*	*	*	0	*	2367	0	1046	
+
+P 109  *	*	*	*	*	*	*	*	*	*	*	*	1044	*	*	*	3103	1327	*	*	109
+       0	*	*	*	*	*	*	2517	0	0	
+
+T 110  *	*	*	*	*	3604	*	*	*	*	*	*	957	*	*	*	1312	*	*	*	110
+       0	*	*	*	*	*	*	2517	0	0	
+
+S 111  *	*	3620	*	*	*	*	*	*	*	*	3595	*	3604	*	2067	957	*	*	*	111
+       0	*	*	*	*	*	*	2517	0	0	
+
+I 112  1368	*	*	*	2612	*	*	1638	*	*	*	*	*	*	*	*	2970	*	*	*	112
+       644	1473	*	1585	585	*	*	2517	1403	0	
+
+A 113  1878	*	*	*	*	*	*	*	*	1643	2606	*	*	*	*	*	*	2037	*	*	113
+       0	*	*	*	*	*	0	2242	0	1403	
+
+G 114  *	*	*	*	*	1878	*	*	*	*	*	*	458	*	*	*	*	*	*	*	114
+       0	*	*	*	*	*	0	2242	0	1403	
+
+S 115  1939	*	*	*	*	*	*	*	*	*	*	*	2606	*	*	1878	1723	*	*	*	115
+       0	*	*	*	*	0	*	2242	0	1403	
+
+E 116  2970	*	*	2272	*	*	*	*	*	1883	*	*	*	3135	*	*	2607	3103	*	*	116
+       0	*	*	*	*	*	*	2517	0	0	
+
+V 117  2021	*	*	*	*	*	*	3135	*	*	*	*	*	*	*	*	*	3002	*	957	117
+       0	*	*	*	*	*	*	2517	0	0	
+
+E 118  *	*	586	2067	*	*	*	*	*	*	*	*	*	*	*	3391	*	*	*	*	118
+       0	*	*	*	*	*	*	2517	0	0	
+
+H 119  2240	*	*	*	2021	*	2067	*	*	*	*	*	*	*	*	*	*	1721	*	*	119
+       0	*	*	*	*	*	*	2517	0	0	
+
+Y 120  *	*	*	*	*	*	*	2021	*	*	*	*	*	*	*	*	*	*	*	408	120
+       0	*	*	*	*	*	*	2517	0	0	
+
+P 121  *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	121
+       0	*	*	*	*	*	*	2517	0	0	
+
+I 122  *	*	*	*	*	*	*	914	*	2249	*	*	*	*	*	*	*	1949	*	*	122
+       0	*	*	*	*	*	*	2517	0	0	
+
+E 123  3103	*	*	404	*	*	*	*	*	*	*	2970	*	*	*	*	*	*	*	*	123
+       1044	*	957	*	*	*	*	2517	0	0	
+
+M 124  *	*	*	*	*	*	*	*	*	*	1070	*	*	*	*	1510	*	2534	*	*	124
+       0	*	*	*	*	0	*	1663	0	1636	
+
+S 125  *	*	*	*	3391	2035	*	3525	*	*	*	*	*	*	*	1044	3493	*	*	*	125
+       644	1473	*	0	*	*	*	2517	1403	0	
+
+V 126  *	*	*	*	1939	*	*	*	*	*	*	*	*	*	2459	*	*	1347	*	2606	126
+       0	*	*	*	*	0	*	2242	0	1403	
+
+G 127  *	*	*	*	*	2067	2970	3620	*	2600	*	2509	*	*	*	*	3391	*	*	3103	127
+       0	*	*	*	*	*	*	2517	0	0	
+
+S 128  *	*	2035	*	*	*	*	*	*	*	*	3493	*	*	*	785	3525	*	*	*	128
+       0	*	*	*	*	*	*	2517	0	0	
+
+G 129  1830	*	*	*	*	650	*	*	*	*	*	*	3620	*	*	*	*	*	*	*	129
+       0	*	*	*	*	*	*	2517	0	0	
+
+G 130  3391	*	*	*	*	1051	*	*	2509	*	*	*	*	*	2021	*	*	*	*	*	130
+       0	*	*	*	*	*	*	2517	0	0	
+
+V 131  951	*	*	*	*	*	*	*	*	*	*	*	*	*	*	3103	*	2067	*	2970	131
+       0	*	*	*	*	*	*	2517	0	0	
+
+C 132  *	2067	*	*	*	*	*	2509	*	1549	*	*	*	*	*	*	*	*	*	2035	132
+       0	*	*	*	*	*	*	2517	0	0	
+
+S 133  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	404	2035	*	*	*	133
+       0	*	*	*	*	*	*	2517	0	0	
+
+A 134  2067	3391	*	*	2509	*	*	*	*	*	*	*	*	*	*	*	*	1028	*	*	134
+       0	*	*	*	*	*	*	2517	0	0	
+
+R 135  *	*	*	3103	*	*	*	*	1327	*	*	*	*	*	1044	*	*	*	*	*	135
+       0	*	*	*	*	*	*	2517	0	0	
+
+D 136  *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	136
+       0	*	*	*	*	*	*	2517	0	0	
+
+C 137  2441	456	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	3525	*	*	137
+       0	*	*	*	*	*	*	2517	0	0	
+
+A 138  2052	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	398	*	*	138
+       0	*	*	*	*	*	*	2517	0	0	
+
+T 139  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	3391	145	*	*	*	139
+       0	*	*	*	*	*	*	2517	0	0	
+
+V 140  *	*	*	*	*	*	*	957	*	*	*	*	*	*	*	*	*	1044	*	*	140
+       0	*	*	*	*	*	*	2517	0	0	
+
+D 141  *	*	343	*	*	*	*	*	*	*	*	*	2240	*	*	*	*	*	*	*	141
+       0	*	*	*	*	*	*	2517	0	0	
+
+I 142  *	*	*	*	*	*	*	2067	*	*	*	*	*	*	*	2509	2240	1419	*	*	142
+       0	*	*	*	*	*	*	2517	0	0	
+
+H 143  *	*	*	*	*	*	676	*	2021	2970	*	*	*	*	*	*	*	*	*	*	143
+       0	*	*	*	*	*	*	2517	0	0	
+
+P 144  3103	*	*	*	*	*	*	*	*	*	*	*	331	*	*	3493	*	*	*	*	144
+       0	*	*	*	*	*	*	2517	0	0	
+
+R 145  *	*	*	*	*	*	*	*	*	*	*	*	*	*	343	*	*	2240	*	*	145
+       0	*	*	*	*	*	*	2517	0	0	
+
+T 146  2350	*	*	*	*	*	*	3595	*	*	*	*	*	*	*	3103	725	*	*	*	146
+       0	*	*	*	*	*	*	2517	0	0	
+
+S 147  3391	*	*	2600	3135	*	*	*	*	*	*	*	2970	3620	*	2052	*	2509	*	*	147
+       0	*	*	*	*	*	*	2517	0	0	
+
+G 148  *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	148
+       0	*	*	*	*	*	*	2517	0	0	
+
+N 149  *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	149
+       0	*	*	*	*	*	*	2517	0	0	
+
+N 150  *	*	1368	*	*	*	*	*	*	*	*	707	*	*	*	*	*	*	*	*	150
+       0	*	*	*	*	*	*	2517	0	0	
+
+V 151  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	151
+       0	*	*	*	*	*	*	2517	0	0	
+
+F 152  *	*	*	*	1044	*	*	*	*	*	*	*	*	*	*	*	*	*	*	957	152
+       0	*	*	*	*	*	*	2517	0	0	
+
+V 153  1883	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	456	*	*	153
+       0	*	*	*	*	*	*	2517	0	0	
+
+G 154  *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	154
+       0	*	*	*	*	*	*	2517	0	0	
+
+V 155  *	*	*	*	2970	*	*	1883	*	2332	*	*	*	*	*	*	*	1312	*	*	155
+       0	*	*	*	*	*	*	2517	0	0	
+
+I 156  *	*	*	*	3604	*	*	2067	*	3391	1253	*	*	*	*	*	*	2607	*	*	156
+       0	*	*	*	*	*	*	2517	0	0	
+
+C 157  *	2067	*	*	2607	*	*	3391	*	1418	*	*	*	*	*	*	*	2970	*	*	157
+       0	*	*	*	*	*	*	2517	0	0	
+
+S 158  *	3595	*	*	2338	*	*	*	*	*	*	*	*	*	*	1640	*	*	1327	*	158
+       0	*	*	*	*	*	*	2517	0	0	
+
+S 159  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	159
+       0	*	*	*	*	*	*	2517	0	0	
+
+A 160  1044	*	*	*	*	*	*	*	3391	*	*	1721	*	*	3103	*	*	*	*	*	160
+       197	*	2970	*	*	*	*	2517	0	0	
+
+K 161  1771	*	*	*	*	3413	*	*	1884	*	2819	*	*	*	*	2319	*	*	*	*	161
+       0	*	*	*	*	0	*	2367	0	1046	
+
+W 162  2021	*	*	*	2970	*	*	*	*	*	*	*	*	*	*	*	*	*	676	*	162
+       0	*	*	*	*	*	*	2517	0	0	
+
+T 163  3391	*	*	*	*	*	*	*	*	*	*	2612	3103	*	*	2560	1136	*	*	*	163
+       0	*	*	*	*	*	*	2517	0	0	
+
+S 164  633	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2067	*	3103	*	*	164
+       0	*	*	*	*	*	*	2517	0	0	
+
+G 165  3103	*	*	*	*	785	*	*	*	*	*	*	*	*	*	3493	2221	*	*	*	165
+       0	*	*	*	*	*	*	2517	0	0	
+
+R 166  *	*	*	*	*	*	*	*	2035	*	*	2021	*	*	2067	*	2509	3391	*	*	166
+       0	*	*	*	*	*	*	2517	0	0	
+
+V 167  *	2970	*	*	*	*	*	3493	*	3103	*	*	*	*	*	*	3525	785	*	*	167
+       0	*	*	*	*	*	*	2517	0	0	
+
+I 168  *	*	*	*	*	*	*	3002	*	3135	*	*	*	*	2970	1368	2021	*	*	*	168
+       0	*	*	*	*	*	*	2517	0	0	
+
+G 169  *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	169
+       0	*	*	*	*	*	*	2517	0	0	
+
+T 170  3595	*	*	*	*	*	*	3103	*	2165	*	*	*	*	*	*	2067	1559	*	*	170
+       0	*	*	*	*	*	*	2517	0	0	
+
+I 171  3103	*	*	*	*	*	*	1640	*	1883	*	*	*	*	*	*	*	1777	*	*	171
+       0	*	*	*	*	*	*	2517	0	0	
+
+A 172  2067	*	*	*	*	*	*	*	*	*	*	*	*	*	*	393	*	*	*	*	172
+       0	*	*	*	*	*	*	2517	0	0	
+
+T 173  *	*	*	*	*	*	*	*	*	2035	2021	*	*	*	*	*	2067	1883	*	*	173
+       0	*	*	*	*	*	*	2517	0	0	
+
+T 174  2021	*	*	*	*	*	*	*	*	*	*	957	*	*	*	*	2067	*	*	*	174
+       0	*	*	*	*	*	*	2517	0	0	
+
+Q 175  *	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	175
+       0	*	*	*	*	*	*	2517	0	0	
+
+V 176  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	176
+       0	*	*	*	*	*	*	2517	0	0	
+
+I 177  *	*	2021	*	*	*	*	1449	*	*	*	1368	*	*	*	*	*	*	*	*	177
+       0	*	*	*	*	*	*	2517	0	0	
+
+H 178  *	*	*	*	*	*	1430	*	2035	*	*	*	*	*	1378	*	*	*	*	*	178
+       0	*	*	*	*	*	*	2517	0	0	
+
+E 179  *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	179
+       0	*	*	*	*	*	*	2517	0	0	
+
+Y 180  2509	*	*	*	*	*	*	2970	*	*	*	*	*	*	*	*	3391	1463	*	2067	180
+       0	*	*	*	*	*	*	2517	0	0	
+
+Q 181  *	*	*	*	*	*	*	2970	*	*	*	*	*	2067	*	*	658	*	*	*	181
+       0	*	*	*	*	*	*	2517	0	0	
+
+V 182  2021	2970	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	676	*	*	182
+       0	*	*	*	*	*	*	2517	0	0	
+
+L 183  *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	183
+       0	*	*	*	*	*	*	2517	0	0	
+
+Q 184  *	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	184
+       0	*	*	*	*	*	*	2517	0	0	
+
+P 185  *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	185
+       0	*	*	*	*	*	*	2517	0	0	
+
+L 186  *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	186
+       0	*	*	*	*	*	*	2517	0	0	
+
+K 187  *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	187
+       0	*	*	0	*	*	*	2517	0	0	
+
+//
+�HHsearch 1.5
+NAME  6f8bf45e3bf355ef54d788898343cb1c
+FAM   
+FILE  6f8bf45e3bf355ef54d788898343cb1c
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:41:56 2013
+LENG  65 match states, 65 columns in multiple alignment
+FILT  16 out of 18 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  1.9 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCEEEEEEEECCHHHHHHHHHHHHHHHHHHHHHHCCCCCCEEEECCCCEEEEEEEC
+>ss_conf PSIPRED confidence values
+97533343444179999966303257888878889999999870578640887246656788109
+>Consensus
+xxxxxxxxxxxxtykLiinxxtxxxtteAvdAatAekxfKxYaNxngVdGeWtYddatkTFTvTE
+>6f8bf45e3bf355ef54d788898343cb1c
+MHHHHHHAMDTYKLVIVLNGTTFTYTTEAVDAATAEKVFKQYANDNGVDGEWTYADATKTFTVTE
+>gi|24159073|pdb|1MI0|A Chain A, Crystal Structure Of The Redesigned Protein G Variant Nug2gi|24159074|pdb|1MI0|B Chain B, Crystal Structure Of The Redesigned Protein G Variant Nug2
+------------TYKLVIVLNGTTftYTTEAVDAATAEKVFKQYANDNGVDGEWTYADATKTFTVTE
+>gi|198443040|pdb|2JWS|A Chain A, Solution Nmr Structures Of Two Designed Proteins With 88% Sequence Identity But Different Fold And Function
+------------TYKLILNLKQAKeeAIKELVDAGIAEKYIKLIANAKTVEGVWTLKDEILTFTVTE
+>gi|119389519|pdb|2FS1|A Chain A, Solution Structure Of Psd-1
+-------------------meavdans------LAQAKEAAikelkqygIGDYYIKLINNAKTVEGVESLKNEIL------
+>gi|64174789|gb|AAY41168.1| protein G/SspDnaE fusion protein [Expression vector pJJDuet30]
+----------HMQYKLILNGKTLKgeTTTEAVDAATAEKVFKQYANDNGVDGEWTYDDATKTYTVTE
+>gi|195977828|ref|YP_002123072.1| IgG binding protein Zag [Streptococcus equi subsp. zooepidemicus MGCS10565]gi|195974533|gb|ACG62059.1| IgG binding protein Zag [Streptococcus equi subsp. zooepidemicus MGCS10565]
+-----------SevidaaeltpaltSYKLVIKGATFSgeTATKAVDAAVAEQTFRDYANKNGVDGVWAYDAATKTFTVTE
+>gi|195977828|ref|YP_002123072.1| IgG binding protein Zag [Streptococcus equi subsp. zooepidemicus MGCS10565]gi|195974533|gb|ACG62059.1| IgG binding protein Zag [Streptococcus equi subsp. zooepidemicus MGCS10565]
+-----------TTYRLVIKGVTFSgeTATKAVDAATAEQTFRQYANDNGITGEWAYDTATKTFTVTE
+>gi|15824801|gb|AAL09476.1|AF354651_1 Mig precursor [Streptococcus dysgalactiae]
+------------TYKLIVKGNTFSgeTTTKAVDAETAEKAFKQYATANNVDGEWSYDDATKTFTVTE
+>gi|313885225|ref|ZP_07818977.1| B domain protein [Eremococcus coleocola ACS-139-V-Col8]gi|312619916|gb|EFR31353.1| B domain protein [Eremococcus coleocola ACS-139-V-Col8]
+---------------LVVNSEDAQITSEytASSVELAGQYFRDYVNNNGLgDLEWSYDPATYTFTATD
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1000	0	0	
+
+H 2    *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	2
+       0	*	*	*	*	*	*	1000	0	0	
+
+H 3    *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	3
+       0	*	*	*	*	*	*	1000	0	0	
+
+H 4    *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	4
+       0	*	*	*	*	*	*	1000	0	0	
+
+H 5    *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	5
+       0	*	*	*	*	*	*	1000	0	0	
+
+H 6    *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	6
+       0	*	*	*	*	*	*	1000	0	0	
+
+H 7    *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	7
+       0	*	*	*	*	*	*	1000	0	0	
+
+A 8    0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	8
+       0	*	*	*	*	*	*	1000	0	0	
+
+M 9    *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	9
+       0	*	*	*	*	*	*	1000	0	0	
+
+D 10   *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	10
+       0	*	*	*	*	*	*	1000	0	0	
+
+T 11   *	*	*	*	*	*	1000	*	*	*	*	*	*	*	*	*	1000	*	*	*	11
+       0	*	*	*	*	*	*	1178	0	0	
+
+Y 12   *	*	*	*	*	*	*	*	*	*	2379	*	*	*	*	2250	1383	*	*	2224	12
+       341	2250	*	3700	115	*	*	1454	1000	0	
+
+K 13   *	*	*	*	*	*	*	*	3729	*	*	*	*	4272	*	3632	336	*	*	*	13
+       0	*	*	*	*	*	*	1806	0	0	
+
+L 14   *	*	*	*	2948	*	*	*	*	3729	*	*	*	*	*	*	*	*	*	331	14
+       0	*	*	*	*	*	*	1806	0	0	
+
+V 15   *	*	*	*	*	*	*	*	241	*	*	*	*	*	3673	*	*	3729	*	*	15
+       0	*	*	*	*	*	*	1806	0	0	
+
+I 16   *	*	*	*	*	*	*	3899	*	100	*	*	*	*	*	*	*	*	*	*	16
+       0	*	*	*	*	*	*	2026	0	0	
+
+V 17   *	*	*	*	3920	*	*	1022	*	*	*	*	*	*	*	*	*	1179	*	*	17
+       0	*	*	*	*	*	*	2026	0	0	
+
+L 18   *	*	*	*	*	*	*	1334	*	1341	*	*	*	*	*	*	*	2261	*	*	18
+       0	*	*	*	*	*	*	2026	0	0	
+
+N 19   *	*	*	*	*	*	*	*	2378	*	*	536	*	*	*	*	*	3086	*	*	19
+       0	*	*	3000	193	*	*	2026	1050	0	
+
+G 20   *	*	*	*	*	834	*	3920	*	2164	*	*	*	*	*	2737	*	*	*	*	20
+       0	*	*	*	*	*	*	2026	0	0	
+
+T 21   3902	*	*	2737	*	3920	*	*	1081	*	*	3181	*	*	*	*	3899	3901	*	*	21
+       0	*	*	*	*	*	*	2026	0	0	
+
+T 22   *	*	2210	*	*	4274	*	*	*	*	*	*	*	2544	*	*	834	*	*	*	22
+       0	*	*	*	*	*	*	2026	0	0	
+
+F 23   1637	*	*	*	1947	*	*	*	*	1730	*	*	*	*	3920	*	4274	*	*	*	23
+       0	*	*	*	*	*	*	2026	0	0	
+
+T 24   *	*	*	*	*	*	*	*	1081	*	*	*	*	2737	*	2378	3075	3920	*	*	24
+       2204	353	*	1000	1000	*	*	2026	1500	0	
+
+Y 25   2544	*	*	*	*	*	*	2319	*	*	*	*	*	*	*	*	1174	3920	*	3075	25
+       0	*	*	*	*	*	*	2026	0	0	
+
+T 26   3106	*	*	*	*	*	*	2895	*	3135	*	*	*	*	*	*	654	*	*	*	26
+       0	*	*	*	*	*	*	2218	0	0	
+
+T 27   3135	*	*	*	*	*	*	4475	2895	*	*	*	*	*	*	2816	824	*	*	*	27
+       0	*	*	*	*	*	*	2218	0	0	
+
+E 28   *	*	*	558	*	*	*	*	2273	*	*	*	*	3135	*	*	*	*	*	*	28
+       221	2816	*	1000	1000	*	*	2218	1050	0	
+
+A 29   208	*	*	*	*	*	*	*	*	2895	*	*	*	*	*	*	*	*	*	*	29
+       0	*	*	*	*	*	*	2218	0	0	
+
+V 30   *	*	*	*	*	*	*	*	3135	*	*	*	*	*	*	2816	*	426	*	*	30
+       0	*	*	*	*	*	*	2218	0	0	
+
+D 31   *	*	426	3135	*	*	*	*	*	*	*	*	*	*	*	2816	*	*	*	*	31
+       0	*	*	*	*	*	*	2218	0	0	
+
+A 32   221	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2816	*	*	32
+       0	*	*	*	*	*	*	2218	0	0	
+
+A 33   645	*	*	1832	*	3651	*	*	*	*	*	*	*	*	*	*	*	*	*	*	33
+       174	3135	*	3000	193	*	*	2218	1050	0	
+
+T 34   *	*	*	4475	*	*	*	2370	*	2816	*	*	*	*	*	*	834	4092	*	*	34
+       0	*	*	*	*	*	*	2218	0	0	
+
+A 35   174	*	*	*	*	3135	*	*	*	*	*	*	*	*	*	*	*	*	*	*	35
+       0	*	*	*	*	*	*	2218	0	0	
+
+E 36   *	*	3135	426	*	2816	*	*	*	*	*	*	*	*	*	*	*	*	*	*	36
+       0	*	*	*	*	*	*	2218	0	0	
+
+K 37   *	*	*	*	*	*	*	*	786	*	*	*	*	1954	4377	*	*	*	*	3135	37
+       0	*	*	*	*	*	*	2218	0	0	
+
+V 38   3461	*	*	*	*	*	*	4475	*	*	*	*	*	*	*	*	3106	1483	*	1357	38
+       0	*	*	*	*	*	*	2218	0	0	
+
+F 39   *	*	*	*	402	*	*	2370	*	4331	*	*	*	*	*	*	*	*	*	*	39
+       0	*	*	*	*	*	*	2218	0	0	
+
+K 40   *	*	*	*	*	*	*	*	431	*	*	*	*	*	1954	*	*	*	*	*	40
+       0	*	*	*	*	*	*	2218	0	0	
+
+Q 41   *	*	2318	4377	*	*	4101	*	*	2010	*	*	*	1169	*	*	*	*	*	*	41
+       0	*	*	*	*	*	*	2218	0	0	
+
+Y 42   *	*	*	*	*	*	*	2370	*	*	*	*	*	*	*	*	*	*	*	310	42
+       0	*	*	*	*	*	*	2218	0	0	
+
+A 43   526	*	*	*	*	*	*	4331	*	*	*	3135	*	*	*	*	*	2816	*	*	43
+       0	*	*	*	*	*	*	2218	0	0	
+
+N 44   *	*	*	*	*	*	*	*	4377	*	*	157	*	*	*	*	4178	*	*	*	44
+       0	*	*	*	*	*	*	2218	0	0	
+
+D 45   1720	*	1360	4101	*	*	*	*	3228	*	*	2816	*	*	*	*	*	*	*	*	45
+       0	*	*	*	*	*	*	2218	0	0	
+
+N 46   *	*	*	*	*	*	4101	*	2010	*	*	528	*	*	*	*	*	*	*	*	46
+       0	*	*	*	*	*	*	2218	0	0	
+
+G 47   *	*	*	*	*	522	*	*	*	*	*	4178	*	*	*	*	2010	*	*	*	47
+       0	*	*	*	*	*	*	2218	0	0	
+
+V 48   *	*	*	*	*	*	*	2716	*	2816	*	*	*	*	*	*	*	502	*	*	48
+       221	2816	*	0	*	*	*	2218	1050	0	
+
+D 49   *	*	653	2010	*	*	4101	*	*	*	*	*	*	*	*	*	4121	*	*	*	49
+       0	*	*	*	*	*	*	2218	0	0	
+
+G 50   *	*	*	*	*	221	*	*	*	2816	*	*	*	*	*	*	*	*	*	*	50
+       0	*	*	*	*	*	*	2218	0	0	
+
+E 51   *	*	*	739	*	*	4101	*	*	*	*	*	*	*	*	*	*	1546	*	*	51
+       0	*	*	*	*	*	*	2218	0	0	
+
+W 52   *	*	*	3135	*	*	*	*	*	*	*	*	*	*	*	*	*	*	174	*	52
+       0	*	*	*	*	*	*	2218	0	0	
+
+T 53   3106	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1685	804	*	*	*	53
+       0	*	*	*	*	*	*	2218	0	0	
+
+Y 54   *	*	*	*	*	*	*	*	*	2370	*	*	*	*	*	*	*	*	*	310	54
+       0	*	*	*	*	*	*	2218	0	0	
+
+A 55   3333	*	616	*	*	*	*	*	2010	*	*	*	*	*	*	*	*	*	*	*	55
+       0	*	*	*	*	*	*	2218	0	0	
+
+D 56   4092	*	811	*	*	*	*	*	*	*	*	3135	2320	*	*	*	4121	*	*	*	56
+       0	*	*	*	*	*	*	2218	0	0	
+
+A 57   528	*	*	1706	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	57
+       0	*	*	*	*	*	*	2218	0	0	
+
+T 58   3941	*	*	*	*	*	*	2370	*	*	*	*	*	*	*	*	432	*	*	*	58
+       0	*	*	*	*	*	*	2218	0	0	
+
+K 59   *	*	*	*	*	*	*	*	589	2370	*	*	*	*	*	*	*	*	*	2816	59
+       0	*	*	*	*	*	*	2218	0	0	
+
+T 60   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	60
+       0	*	*	*	*	*	*	2026	0	0	
+
+F 61   *	*	*	*	152	*	*	*	*	*	*	*	*	*	*	*	*	*	4171	4498	61
+       0	*	*	*	*	*	*	2026	0	0	
+
+T 62   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	62
+       0	*	*	*	*	*	*	2026	0	0	
+
+V 63   2737	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	234	*	*	63
+       0	*	*	*	*	*	*	2026	0	0	
+
+T 64   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	64
+       0	*	*	*	*	*	*	2026	0	0	
+
+E 65   *	*	2737	234	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	65
+       0	*	*	0	*	*	*	2026	0	0	
+
+//
+�HHsearch 1.5
+NAME  70185c53b564a6651b730e4dcf340af6
+FAM   
+FILE  70185c53b564a6651b730e4dcf340af6
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:19:29 2013
+LENG  54 match states, 54 columns in multiple alignment
+FILT  104 out of 210 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  5.5 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCHHHHHHHHHHHHHHHHHHHHCCCCCHHHHHHHHHHCCCCHHHHHHHHHHCCC
+>ss_conf PSIPRED confidence values
+908789898733999999998878999999999999949976999999972349
+>Consensus
+xxxxxxxxxxxxxxxxxxLxxMFPxldxxvIxxvLxxxxgxxdxaIdxLLxmsx
+>70185c53b564a6651b730e4dcf340af6
+SSLIKKIEENERKDTLNTLQNMFPDMDPSLIEDVCIAKKSRIEPCVDALLSLSE
+>gi|281343012|gb|EFB18596.1| hypothetical protein PANDA_003683 [Ailuropoda melanoleuca]
+-RPARQVRRLEFNQAMDDFKTMFPNMDYDIIECVLRANSGAVDATIDQLLQMN-
+>gi|51535464|dbj|BAD37361.1| hypothetical protein [Oryza sativa Japonica Group]gi|222635963|gb|EEE66095.1| hypothetical protein OsJ_22122 [Oryza sativa Japonica Group]
+----------------iEVLQLIF------phedpq-lLKSFFEASGNVLDA-aIRGFKHR--
+>gi|334184040|ref|NP_001185446.1| uncharacterized protein [Arabidopsis thaliana]gi|332198229|gb|AEE36350.1| uncharacterized protein [Arabidopsis thaliana]
+------------SSSLDQLHSAFPHIELTVaskihvsvaqvLVKALEDNGSDFNAAMKSLYSF--
+>gi|330922638|ref|XP_003299915.1| hypothetical protein PTT_11019 [Pyrenophora teres f. teres 0-1]gi|311326207|gb|EFQ91994.1| hypothetical protein PTT_11019 [Pyrenophora teres f. teres 0-1]
+------------PTKELLLAETFPGLRVSQVTYTLKKCGYDYDKATDELLNQV-
+>gi|302407576|ref|XP_003001623.1| conserved hypothetical protein [Verticillium albo-atrum VaMs.102]gi|261359344|gb|EEY21772.1| conserved hypothetical protein [Verticillium albo-atrum VaMs.102]
+------------DFQIRQLQDMFADLKTHDIQLAFKKSHG--------dfftamdsLLNTQ-
+>gi|255932461|ref|XP_002557787.1| Pc12g09600 [Penicillium chrysogenum Wisconsin 54-1255]gi|211582406|emb|CAP80587.1| Pc12g09600 [Penicillium chrysogenum Wisconsin 54-1255]
+------------ADKAQNLISMFPSITRLEAERILEDCHDNLSRSMDVLLNLA-
+>gi|255713396|ref|XP_002552980.1| KLTH0D05962p [Lachancea thermotolerans]gi|238934360|emb|CAR22542.1| KLTH0D05962p [Lachancea thermotolerans]
+----------SLSNntdgrsegegmgsrHAKALSEEnFPDENHTKARKGAVNLKKRMWRPIHSFTK---
+>gi|194667823|ref|XP_587938.4| PREDICTED: phosphonoformate immuno-associated protein 5-like [Bos taurus]gi|297475788|ref|XP_002688251.1| PREDICTED: phosphonoformate immuno-associated protein 5-like [Bos taurus]gi|296486625|gb|DAA28738.1| phosphonoformate immuno-associated protein 5-like [Bos taurus]
+--LPSVYETkVDQEELFTSVSEMFSDLDPDVVYLMLSECDFKVENAMDCLLELSA
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+S 1    2856	*	2728	*	*	*	*	*	*	*	*	*	*	*	*	1791	1245	*	*	*	1
+       0	*	*	*	*	*	*	2056	0	0	
+
+S 2    *	*	*	2047	*	*	*	*	*	*	*	*	*	*	1202	2175	*	3295	*	*	2
+       0	*	*	*	*	*	*	2424	0	0	
+
+L 3    *	*	*	2289	*	*	*	*	*	743	3917	*	2926	*	*	*	*	*	*	*	3
+       0	*	*	*	*	*	*	3140	0	0	
+
+I 4    686	*	*	*	*	3477	*	2602	*	*	*	*	3011	*	*	*	*	*	*	*	4
+       0	*	*	*	*	*	*	3494	0	0	
+
+K 5    *	*	*	2784	*	*	*	*	3308	*	*	*	*	1883	1826	2317	*	*	*	*	5
+       0	*	*	*	*	*	*	3494	0	0	
+
+K 6    2845	*	*	4280	*	*	*	4210	2171	*	*	*	*	2794	1747	*	*	3455	*	*	6
+       0	*	*	*	*	*	*	3676	0	0	
+
+I 7    *	*	*	*	*	*	*	2280	*	1603	3483	*	*	*	*	3718	3965	2792	*	3455	7
+       0	*	*	*	*	*	*	3676	0	0	
+
+E 8    *	*	*	1172	*	4298	2834	*	4282	*	*	4373	*	2226	4274	*	*	*	*	*	8
+       74	4324	*	1585	585	*	*	4032	1002	0	
+
+E 9    3058	*	4899	2511	*	*	3762	*	*	*	*	4490	4105	3423	1880	4102	3807	*	*	*	9
+       107	3807	*	2660	249	*	*	4032	1188	0	
+
+N 10   3513	*	*	2912	*	*	*	*	2962	4298	*	3633	*	2096	2956	4695	4388	3822	*	*	10
+       59	4630	*	3459	138	*	*	4056	1027	0	
+
+E 11   4280	5131	4711	1327	*	*	*	*	*	*	*	4850	3732	2458	5205	2607	*	*	*	*	11
+       0	*	*	4790	53	*	*	5298	1097	0	
+
+R 12   4040	*	*	5280	3532	*	2588	4990	5835	3185	4348	4537	5006	3192	3956	3702	3448	5710	*	5873	12
+       0	*	*	*	*	*	*	5539	0	0	
+
+K 13   3665	*	3179	1863	*	*	6754	6213	4294	*	6930	4223	3774	3480	3585	3235	4665	6862	*	*	13
+       0	*	*	*	*	*	*	6074	0	0	
+
+D 14   2804	*	2778	1955	5868	5878	6289	*	5629	5604	*	3504	6015	4337	5694	3041	4189	5908	*	*	14
+       158	3266	*	2898	208	*	*	6029	1423	0	
+
+T 15   2928	*	3645	3738	6778	6625	3974	5310	2986	3461	6903	5585	5160	4018	6811	3514	3187	3979	*	*	15
+       0	*	*	*	*	*	*	6070	0	0	
+
+L 16   4133	*	*	4046	4831	*	4793	2750	*	1650	4654	*	*	6292	5197	*	5698	2306	*	4549	16
+       19	*	6220	1638	559	*	*	6030	1100	0	
+
+N 17   3418	*	2909	2614	5594	6045	6828	6897	2684	4468	*	4333	*	3374	3988	3686	4589	5167	*	*	17
+       12	6857	*	2585	263	0	*	6069	1027	1001	
+
+T 18   3469	*	4781	3139	5020	6864	5973	5705	*	5091	*	3880	*	2216	4468	3792	2357	4618	*	5671	18
+       28	5705	*	1585	585	*	*	6088	1028	0	
+
+L 19   *	*	*	*	5124	*	*	3754	*	287	4579	*	*	*	*	*	*	4797	*	*	19
+       0	*	*	*	*	*	*	6088	0	0	
+
+Q 20   3825	6059	*	6731	*	*	3706	4443	2215	4215	4846	*	*	2624	3183	3354	4230	4786	*	5727	20
+       0	*	*	*	*	*	*	6088	0	0	
+
+N 21   2760	*	4049	1627	*	3577	*	*	*	5345	*	6072	6173	3995	6483	2375	4276	6281	*	*	21
+       0	*	*	*	*	*	*	6088	0	0	
+
+M 22   4587	*	*	4697	*	*	*	3026	*	3848	682	*	*	6636	6173	*	4290	5096	*	*	22
+       57	4697	*	0	*	*	*	6088	1118	0	
+
+F 23   *	5870	*	*	53	*	*	*	*	*	*	*	*	*	*	*	*	*	*	5705	23
+       28	*	5715	*	*	*	*	6088	0	0	
+
+P 24   5634	*	*	5024	*	6586	*	*	*	*	*	*	170	*	*	4321	*	*	*	*	24
+       0	*	*	*	*	*	0	6031	0	1058	
+
+D 25   4674	*	1767	5429	*	4010	4923	5533	6200	5236	*	2374	*	4226	*	2911	3215	*	*	*	25
+       27	5772	*	0	*	*	0	6031	1029	1058	
+
+M 26   6935	*	*	4625	4130	*	6435	2634	*	1599	2362	*	*	*	6026	*	6744	2723	5586	*	26
+       0	*	*	*	*	*	0	6031	0	1058	
+
+D 27   6295	*	733	3548	*	5672	5913	*	3623	*	*	4625	6621	6435	5758	3895	4850	*	*	*	27
+       0	*	*	*	*	*	0	6031	0	1058	
+
+P 28   4393	*	5268	3527	6653	5234	4293	6026	3336	4239	6489	5648	2797	4574	2654	3995	4442	3465	*	6670	28
+       0	*	*	*	*	*	0	6031	0	1058	
+
+S 29   4165	*	3064	1632	4577	6011	5267	*	5507	5933	*	4753	5173	3322	*	3279	3898	6109	*	5010	29
+       0	*	*	2585	263	*	0	6031	1058	1058	
+
+L 30   5745	*	3745	5933	*	*	6820	2654	4310	2658	5669	*	*	5758	*	5076	3333	1579	*	6392	30
+       18	6317	*	2112	379	0	*	6031	1116	1058	
+
+I 31   4188	*	*	*	*	*	*	1058	*	2385	*	*	*	*	*	*	*	1872	*	*	31
+       0	*	*	*	*	*	*	6088	0	0	
+
+E 32   5827	6452	5408	1693	*	7059	6021	5828	2236	5985	*	6268	*	3458	2640	5705	4799	4726	*	6350	32
+       0	*	*	*	*	*	*	6088	0	0	
+
+D 33   3546	5230	2687	5242	5793	5178	4358	*	3025	4438	4895	6173	*	5410	3945	2634	3620	5856	5931	5029	33
+       0	*	*	*	*	*	*	6088	0	0	
+
+V 34   2883	6512	*	*	5715	4697	*	3540	*	4876	5573	*	*	*	*	5435	3250	925	*	*	34
+       0	*	*	*	*	*	*	6088	0	0	
+
+C 35   4142	4707	*	*	4142	*	6240	3746	*	673	*	*	*	*	*	6993	*	4266	5919	4131	35
+       42	5648	6837	1824	479	*	*	6088	1049	0	
+
+I 36   4577	*	3555	1969	5337	5477	5078	3478	3233	5250	*	6899	*	4169	3233	4423	6486	3761	*	5910	36
+       0	*	*	*	*	0	*	6078	0	1000	
+
+A 37   1818	*	3841	2783	*	6162	*	5030	3107	6737	6502	3664	*	4356	5406	3012	4477	*	*	*	37
+       0	*	*	*	*	*	*	6088	0	0	
+
+K 38   5787	2043	6837	*	*	*	4415	*	2857	4697	*	2453	*	3979	4634	2878	4827	4864	*	6059	38
+       28	7956	6042	1585	585	*	*	6088	1000	0	
+
+K 39   6837	*	3044	4805	6698	2336	4852	*	2771	6640	*	2104	*	3593	3280	5869	*	*	*	*	39
+       20	6164	*	1950	432	*	0	6010	1103	1035	
+
+S 40   5251	5655	4486	6284	4828	911	7163	*	4399	*	*	2727	*	6325	*	5250	*	*	7126	3676	40
+       44	*	5054	*	*	0	*	6009	0	1035	
+
+R 41   4726	*	1733	6050	*	*	3712	*	3528	*	*	1760	*	*	2993	5934	6815	5486	*	6073	41
+       0	*	*	*	*	*	0	5994	0	1108	
+
+I 42   6790	*	*	*	4171	*	*	2740	3568	2267	2843	*	*	4688	5506	*	4617	2243	5627	5550	42
+       0	*	*	*	*	*	0	5950	0	1108	
+
+E 43   5642	*	1104	2139	*	3221	5627	*	*	*	*	4391	6059	5490	*	4843	*	*	4625	*	43
+       0	*	*	*	*	*	0	5950	0	1108	
+
+P 44   2322	*	4081	5013	*	*	6227	6915	3415	4002	*	3790	4246	4356	2725	3182	4887	4264	*	6497	44
+       33	*	5482	*	*	*	0	5950	0	1108	
+
+C 45   907	3240	*	*	*	*	*	6502	*	*	*	*	4583	*	*	3376	2445	5146	*	*	45
+       0	*	*	0	*	1279	766	5937	1058	1224	
+
+V 46   4982	*	*	*	5048	*	*	947	*	4738	2948	*	*	*	*	*	5550	2113	*	*	46
+       0	*	*	*	*	*	0	5950	0	1108	
+
+D 47   5864	*	1337	2775	*	6528	4270	*	3121	*	6111	2936	*	6453	4443	5817	5276	5853	*	*	47
+       0	*	*	*	*	*	0	5950	0	1108	
+
+A 48   2092	4571	4269	3756	5317	5482	*	5552	5681	*	5847	6730	*	4236	5448	2038	4358	3501	*	5270	48
+       0	*	*	3000	193	0	*	5950	1108	1108	
+
+L 49   *	3427	*	*	3812	*	*	5400	*	300	*	*	*	*	*	*	*	*	*	*	49
+       0	*	*	*	*	*	*	5991	0	0	
+
+L 50   *	*	*	*	*	*	5657	*	5538	287	6188	4073	*	*	*	6251	4643	*	*	6298	50
+       0	*	*	*	*	*	*	5991	0	0	
+
+S 51   4408	6469	5037	1950	6414	4725	5535	*	3930	6666	6599	2380	*	2787	*	3384	4261	6571	*	*	51
+       0	*	*	*	*	*	*	5995	0	0	
+
+L 52   *	*	*	*	4454	*	4832	3983	*	1346	1436	*	*	4431	5389	*	6335	6581	*	*	52
+       0	*	*	*	*	*	*	5697	0	0	
+
+S 53   3529	5075	6289	*	*	6814	*	*	4710	*	6068	3250	*	3690	*	1332	3040	3218	*	*	53
+       0	*	*	*	*	*	*	5429	0	0	
+
+E 54   2981	*	1516	2008	*	*	*	*	*	*	*	4468	*	*	*	2892	3394	*	*	*	54
+       0	*	*	0	*	*	*	4412	0	0	
+
+//
+�HHsearch 1.5
+NAME  717d981e28459396ae1133448788c53e
+FAM   
+FILE  717d981e28459396ae1133448788c53e
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:34:14 2013
+LENG  238 match states, 238 columns in multiple alignment
+FILT  84 out of 86 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  4.9 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCHHHCHHHHCCCEEEEECCCCCCCCCCCCCCCCCCCCCCEEEEECCCCEEEECCCEEEEECCCCCCCEEEEEEEEECCCCCCCEEEEEEECCCHHHHC
+CHHHHHHCCHHHHCCCCCHHHHHHHHHHCCCCCEEEEECCCCEEEHHHEEEEEEECCHHHHHHCCCCCCCCCEEEEEEEECCCCCCCCEEEHHHHHHHHH
+HCCHHHHHHHHHHCEEECCCCCCCCCCCCCCCCCCCCC
+>ss_conf PSIPRED confidence values
+9422217366378679994577787769976454458867389998469979977879999278889960899999972778873689999814888917
+6122210382440445533566444442168643788565131674230201388459997430467658937999978828888404077999999998
+47989999999840532434544557733241244569
+>Consensus
+xxxMAxxxkdlxGWxixxxdxxxxxixxxxrRxRrxxxxxxixLxRxxdxxxxxxGDsVlxkxxxxxxxxVxlIxeIxxxtxxnxvEixvxWyxrxxEix
+xxxxxxxxxPxxxxxxxrxdxxxxxxxxxxxxnELfLTxxxdeixLxxIigkaxVlSxxefxxlxxxxxxxxxFxcRxxcxxxxxxftxfdxxdxxxxix
+xxxpkxxxexlkxltxxxxxxxxkxxxxxxxxxxxxxx
+>717d981e28459396ae1133448788c53e
+AMTMAKTLKDLQGWEIITTDEQGNIIDGGQKRLRRRGAKTEHYLKRSSDGIKLGRGDSVVMHNEAAGTYSVYMIQELRLNTLNNVVELWALTYLRWFEVN
+PLAHYRQFNPDANILNRPLNYYNKLFSETANKNELYLTAELAELQLFNFIRVANVMDGSKWEVLKGNVDPERDFTVRYICEPTGEKFVDINIEDVKAYIK
+KVEPREAQEYLKDLTLPSKKKEIKRGPQKKDKATQTAQ
+>gi|294656587|ref|XP_458878.2| DEHA2D09504p [Debaryomyces hansenii CBS767]gi|218511733|sp|Q6BSE2.2|ORC1_DEBHA RecName: Full=Origin recognition complex subunit 1gi|199431584|emb|CAG87030.2| DEHA2D09504p [Debaryomyces hansenii]
+---MAKSQRDLKGWQYFLDDAELNNtdsVNGePTTPSRrsRRgksTSSQKISLKREEDELEIKEGDFLLVQQDN-NSPEVAIVKEIKFGN-DNFLDIIVS
+WFIRMRDIEEA-----DLPKVEEY-KERSQ--------LNENELFITSYLDEVKLGEIIDKVNILSEEEFNnDIVIDDSNKaSTFICRRGCDSAGELFTd
+VFDFRDLCVLFE-KNHHEFIEFIRRKTVPV--------------------
+>gi|242768097|ref|XP_002341502.1| origin recognition complex subunit Orc1, putative [Talaromyces stipitatus ATCC 10500]gi|218724698|gb|EED24115.1| origin recognition complex subunit Orc1, putative [Talaromyces stipitatus ATCC 10500]
+-----------------------------------------------MGKFECRLGHVVLLKSPEAGKDWVGLITEFLEEE-DDDDEeemIKSAnimWFA
+SAEEFLSTK----------TKNRkRVD---------ALPNEQYLTTDFNVNPLTSINGRGKVMSKDAFFAKYpngtPPrnkAelaEYKKCIVCRRGVNQl
+QGK-YTeEFVWEDVY------------------------------------------
+>gi|50550345|ref|XP_502645.1| YALI0D10104p [Yarrowia lipolytica]gi|49648513|emb|CAG80833.1| YALI0D10104p [Yarrowia lipolytica]
+--------------------------------------KAAVRAIRDQDNVEISAGDVVLLKDDPdVEGKEFALIQGLKHGD--QGLEAKCVLMKLFNDA
+EA------LTPKHVIPNTNKNRY-------SKGQELVMMNSIVDVLVEELHLPVNCYSFAEFEALSREDKKGdNVYFCRYVFDNDANKTSvEFDWQDITK
+DMC--------------------------------------
+>gi|255631163|gb|ACU15947.1| unknown [Glycine max]
+--------------------------------------------VKHISKT-IRAGDCVLMRPSDLSKPSyVARIERIEADARGSNVKIHVRWYYRPEES
+IG---------------GRRQF--------HGSKEVFLSDHFDVQSADTIEAKCTVHSFKSYTKL--DAVGNDDFFCRFEYNSSTGAFN-----------
+---------------------------------------
+>gi|145507041|ref|XP_001439481.1| hypothetical protein [Paramecium tetraurelia strain d4-2]gi|124406665|emb|CAK72084.1| unnamed protein product [Paramecium tetraurelia]
+------------------------------------------------CGEIIKLNDKVIIKNE--DSNVedyIGSIQKIcSIVE-PRTLKLiclcEVQW
+FMRKNEIIC------HKPRAR------SW--------IGNQEIFSTNTNDYVLAQTIVQRCTVVDCEEYFNM--ENCDSTTYYNRLEWDVECKKFTNMN-
+----------------------------------------------
+>gi|145539714|ref|XP_001455547.1| hypothetical protein [Paramecium tetraurelia strain d4-2]gi|124423355|emb|CAK88150.1| unnamed protein product [Paramecium tetraurelia]
+------------------------------------------------QNQEYHVGQNLCIR-gD--NGS-eyVAKLIKVvKLID-NED-N-clpfiKVQ
+WYYRKTELTG------LPKDYL------EC--------ISENEVFKTNELDYIEIESIIGLAIILSYEEYDKI--EELNENVYFMRATY-FDQ-kLFPSF
+E-----------------------------------------------
+>gi|19112852|ref|NP_596060.1| origin recognition complex subunit Orc1 [Schizosaccharomyces pombe 972h-]gi|1709487|sp|P54789.1|ORC1_SCHPO RecName: Full=Origin recognition complex subunit 1gi|1127741|gb|AAC49129.1| Orp1 [Schizosaccharomyces pombe]gi|1161930|gb|AAC49141.1| orc1+ protein [Schizosaccharomyces pombe]gi|4007803|emb|CAA22443.1| origin recognition complex subunit Orc1 [Schizosaccharomyces pombe]
+-----------------------------------------------KNDVIYRVGDDITVHDGD-SSFYLGVICKlyekaIDKHSGKKYVEA--IWYSR
+AYakrmEIKPE----YLLPD------------------RHINEVYVSCGRDENLTSCIIEHCNVYSEAEFFskfpaGIPTKrkDLFPCNFFIRRGVHLKV
+NKYTePLDWSYYAHNLE--------------------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+A 1    963	*	*	*	*	1038	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1433	0	0	
+
+M 2    *	*	*	*	*	*	*	*	*	*	963	*	*	*	*	1038	*	*	*	*	2
+       0	*	*	*	*	*	*	1433	0	0	
+
+T 3    *	*	*	*	*	*	1038	*	*	*	*	*	*	*	*	*	963	*	*	*	3
+       0	*	*	*	*	*	*	1433	0	0	
+
+M 4    *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	4
+       0	*	*	*	*	*	*	4504	0	0	
+
+A 5    326	*	*	*	*	*	*	*	*	*	*	3212	*	*	*	3406	*	*	*	*	5
+       0	*	*	*	*	*	*	4504	0	0	
+
+K 6    3411	3660	*	3588	*	*	3379	*	2134	*	*	*	*	3465	3321	2126	*	*	*	*	6
+       0	*	*	*	*	*	*	4504	0	0	
+
+T 7    *	*	*	*	*	*	*	4471	3440	3184	*	3295	*	*	4313	2243	1361	*	*	*	7
+       67	*	4471	*	*	*	*	4504	0	0	
+
+L 8    3454	*	*	*	*	*	*	3352	*	1696	*	*	3061	1591	*	4309	*	*	*	*	8
+       75	*	4309	*	*	0	*	4429	0	1063	
+
+K 9    3322	*	*	*	*	*	*	*	685	*	*	*	*	*	3521	2825	4330	*	*	*	9
+       177	*	3117	*	*	*	0	4410	0	1068	
+
+D 10   *	*	872	2120	*	*	*	*	4210	*	*	4044	*	3200	*	*	*	*	*	*	10
+       90	4044	*	0	*	1717	523	4234	1071	1354	
+
+L 11   *	*	*	*	1982	*	*	3417	*	614	*	*	*	*	*	*	*	*	*	*	11
+       0	*	*	*	*	*	0	4350	0	1230	
+
+Q 12   4256	*	4722	1482	*	*	*	*	1745	*	*	3135	*	2841	*	*	*	*	*	*	12
+       83	4160	*	0	*	0	*	4350	1067	1230	
+
+G 13   4444	*	4313	*	*	230	*	*	*	*	*	*	*	4282	*	*	*	*	*	*	13
+       0	*	*	*	*	*	*	4504	0	0	
+
+W 14   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	68	4444	14
+       0	*	*	*	*	*	*	4504	0	0	
+
+E 15   *	*	4433	1906	*	4471	*	*	3337	*	*	3202	*	1539	4380	4568	*	*	*	*	15
+       0	*	*	*	*	*	*	4504	0	0	
+
+I 16   *	*	*	*	2330	*	*	1089	*	4557	*	*	*	*	*	*	*	3118	*	2529	16
+       134	*	3499	*	*	*	*	4504	0	0	
+
+I 17   *	*	*	4196	4469	*	4388	1297	*	4058	*	*	*	4169	4291	*	3814	2652	*	4364	17
+       0	*	*	*	*	*	0	4346	0	1178	
+
+T 18   *	*	*	*	3376	*	*	1684	3220	2267	*	*	*	*	*	*	2567	3203	*	*	18
+       195	2980	*	758	1291	0	*	4346	1359	1178	
+
+T 19   *	*	2615	2905	*	*	4568	*	2799	4160	*	4978	*	4433	*	*	1383	*	*	*	19
+       0	*	*	*	*	*	*	4504	0	0	
+
+D 20   *	*	724	2828	4568	*	*	*	*	*	*	3715	*	*	*	3439	*	4530	*	*	20
+       0	*	*	*	*	*	*	4504	0	0	
+
+E 21   3079	*	3694	1737	*	4396	*	*	*	4282	*	*	3346	4403	*	3401	4557	3026	*	*	21
+       0	*	*	*	*	*	*	4504	0	0	
+
+Q 22   *	*	3018	1969	4396	4557	4879	*	2803	*	*	4503	*	3005	*	2433	*	*	*	*	22
+       0	*	*	*	*	*	*	4504	0	0	
+
+G 23   *	*	3234	*	*	1080	*	*	4380	4694	*	4361	*	3481	*	2737	*	4444	*	*	23
+       0	*	*	*	*	*	*	4504	0	0	
+
+N 24   *	*	2475	3350	*	4380	*	*	*	*	*	1254	4313	*	3582	3478	5009	*	*	*	24
+       207	*	2905	*	*	*	*	4504	0	0	
+
+I 25   *	*	3438	*	*	3192	*	2051	*	3051	*	3538	*	*	*	3149	*	2074	*	*	25
+       738	1320	*	1638	559	664	1438	4267	1869	1282	
+
+I 26   *	*	*	*	*	*	*	1218	*	2321	4222	*	*	4249	*	*	3145	2731	*	*	26
+       0	*	*	*	*	*	0	4229	0	1305	
+
+D 27   4100	*	1461	*	*	*	4738	*	4278	*	*	3454	3213	3679	4108	4335	4335	4182	*	*	27
+       0	*	*	*	*	*	0	4229	0	1305	
+
+G 28   *	*	1859	2631	*	1837	*	*	*	*	*	4229	*	*	*	*	2594	*	*	3965	28
+       1005	995	*	185	3057	593	1570	4229	2005	1305	
+
+G 29   *	*	*	4098	*	4546	*	*	4465	*	*	3765	3506	*	1962	2438	1996	*	*	*	29
+       0	*	*	*	*	*	0	4404	0	1064	
+
+Q 30   4335	*	4351	*	*	3453	*	*	3549	*	*	4782	2175	2325	2484	*	3497	*	*	*	30
+       0	*	*	*	*	0	*	4404	0	1064	
+
+K 31   4433	*	*	*	*	*	*	*	2791	*	*	*	*	*	557	4444	4694	4471	*	*	31
+       0	*	*	*	*	*	*	4504	0	0	
+
+R 32   *	*	4433	*	*	*	*	*	4403	*	*	*	4694	*	364	*	3457	*	*	*	32
+       124	3601	*	0	*	*	*	4504	1194	0	
+
+L 33   4303	*	*	*	*	*	*	*	4387	4529	*	*	3246	*	1801	1411	3473	*	*	*	33
+       0	*	*	*	*	0	*	4512	0	1078	
+
+R 34   *	*	*	*	*	*	*	*	4433	*	*	*	*	*	123	4831	*	*	*	*	34
+       914	1379	3562	895	1113	*	*	4504	1923	0	
+
+R 35   3180	*	*	*	*	*	*	4328	2994	*	*	*	*	*	755	*	4829	3526	*	*	35
+       55	*	4731	*	*	*	0	4374	0	1152	
+
+R 36   4187	*	*	*	*	3194	*	*	*	*	*	3262	*	3814	1005	3258	*	4119	*	*	36
+       695	1607	4208	1363	710	533	1695	4380	1881	1287	
+
+G 37   2674	*	4169	*	*	1180	*	*	*	*	*	3294	*	*	3348	*	2774	*	*	*	37
+       419	2211	4796	1001	999	*	0	4346	1512	1178	
+
+A 38   1728	*	*	2613	*	3037	*	*	*	4319	*	3247	4206	*	*	2750	*	4195	*	*	38
+       91	4027	*	2322	322	*	0	4354	1095	1260	
+
+K 39   4262	*	*	4335	*	4639	4181	*	1718	*	*	4401	*	*	*	1646	3563	4391	*	*	39
+       0	*	*	1000	1000	1947	433	4475	1024	1260	
+
+T 40   4278	*	3292	1326	*	*	*	*	*	4485	4363	*	3097	4547	*	4274	2807	*	*	*	40
+       0	*	*	*	*	*	0	4467	0	1178	
+
+E 41   3320	*	4356	4602	*	*	4347	3646	4547	4394	*	3201	*	2712	4463	3340	4863	3287	*	4373	41
+       0	*	*	*	*	*	0	4467	0	1178	
+
+H 42   *	*	*	*	4846	*	4602	1276	*	2796	*	*	*	*	*	*	4730	1602	*	*	42
+       0	*	*	*	*	*	0	4467	0	1178	
+
+Y 43   *	*	*	*	2156	*	4373	*	3300	*	*	4235	*	4863	2449	2870	4447	4347	*	3017	43
+       178	3106	*	2099	383	0	*	4467	1461	1178	
+
+L 44   4378	*	*	*	*	*	*	3464	*	215	*	*	*	*	*	*	*	*	*	*	44
+       0	*	*	*	*	*	*	4621	0	0	
+
+K 45   *	*	*	4538	4895	*	4774	1813	2672	*	*	*	*	2828	3039	5140	4295	3765	*	5056	45
+       0	*	*	*	*	*	*	4917	0	0	
+
+R 46   *	*	*	*	*	*	*	*	2899	*	*	5056	*	4570	333	*	*	*	*	*	46
+       64	*	4524	*	*	*	*	4917	0	0	
+
+S 47   *	*	3623	2121	*	2081	5570	4109	3505	3761	*	5068	*	4102	*	4475	3667	*	*	*	47
+       45	*	5037	*	*	0	*	4842	0	1067	
+
+S 48   4213	*	4022	5854	*	5669	*	4855	3121	5058	2678	6674	6703	3882	*	2267	2718	5533	*	4534	48
+       0	*	*	*	*	*	0	5408	0	1003	
+
+D 49   *	5735	935	4282	*	2391	7408	*	*	*	*	3108	*	4181	5873	6421	6612	*	*	*	49
+       0	*	*	1000	1000	*	0	5754	1003	1003	
+
+G 50   4438	*	4146	3516	*	1351	7314	*	2860	5153	*	3346	7284	5150	*	3248	7026	*	*	*	50
+       0	*	*	*	*	*	0	5754	0	1003	
+
+I 51   *	*	*	4524	2403	*	*	2899	6167	1976	4400	*	*	3943	6038	*	4465	2377	*	*	51
+       172	*	3155	*	*	*	0	5754	0	1003	
+
+K 52   *	*	5191	1425	*	*	5325	3770	3810	4950	*	*	*	4497	3214	3870	4055	3088	*	*	52
+       0	*	*	*	*	182	3077	5618	0	1459	
+
+L 53   *	2319	*	*	2145	*	*	2257	*	2259	*	*	*	*	*	*	*	3361	*	4108	53
+       0	*	*	0	*	0	*	5754	1003	1003	
+
+G 54   7118	6416	*	4695	*	2912	5264	*	1817	6690	*	6050	*	*	2009	3127	4196	*	*	4119	54
+       0	*	*	*	*	*	*	5768	0	0	
+
+R 55   3541	4186	*	6161	*	*	7058	3184	4733	2929	*	*	3719	*	2570	*	4911	1831	*	*	55
+       0	*	*	*	*	*	*	5768	0	0	
+
+G 56   4711	*	*	*	*	84	*	*	*	*	*	5758	*	*	*	*	*	*	*	*	56
+       0	*	*	*	*	*	*	5768	0	0	
+
+D 57   *	*	532	3755	*	*	6012	*	*	*	*	5516	*	2883	*	6061	5899	5071	*	*	57
+       0	*	*	*	*	*	*	5768	0	0	
+
+S 58   3209	2897	5841	*	6161	*	*	6039	5758	*	*	3260	*	*	*	2014	2126	3356	*	6194	58
+       0	*	*	*	*	*	*	5768	0	0	
+
+V 59   5240	*	*	*	*	*	*	1713	*	3602	*	*	*	*	*	*	7008	790	*	*	59
+       0	*	*	*	*	*	*	5768	0	0	
+
+V 60   *	4639	*	4067	7422	*	*	2652	*	1031	5635	*	*	6416	*	*	4829	2484	*	*	60
+       0	*	*	*	*	*	*	5768	0	0	
+
+M 61   *	4141	*	*	5720	*	*	2157	*	2029	1964	*	*	*	*	*	*	2329	*	*	61
+       0	*	*	*	*	*	*	5768	0	0	
+
+H 62   *	*	*	*	*	*	3588	*	1339	*	6991	2431	*	3962	2860	4895	4543	*	*	4329	62
+       80	6190	4639	1585	585	*	*	5768	1048	0	
+
+N 63   2639	*	1907	4072	*	4441	*	*	*	*	*	3282	3789	4035	*	2326	*	4974	*	*	63
+       33	*	5466	0	*	0	*	5699	1110	1217	
+
+E 64   4241	*	2548	1787	*	2757	4848	*	5764	*	*	4855	2834	6417	5740	3644	*	*	*	*	64
+       570	*	1615	*	*	0	*	5762	0	1037	
+
+A 65   4024	*	2161	2514	*	2510	*	*	3594	*	*	5162	4351	4725	*	5258	4507	3370	*	*	65
+       298	3372	3471	0	*	3529	131	4958	1304	2581	
+
+A 66   2091	*	*	*	*	4959	*	4482	*	4018	*	6014	3349	*	*	2235	2291	3378	*	*	66
+       0	*	*	*	*	0	*	4838	0	2655	
+
+G 67   *	*	1706	3898	*	2727	7367	*	3078	*	*	2515	*	5186	5257	3033	*	*	*	*	67
+       0	*	*	*	*	*	*	5768	0	0	
+
+T 68   5292	*	*	3033	5899	3339	*	*	2255	*	*	4246	*	4472	3953	2177	2798	*	*	*	68
+       0	*	*	*	*	*	*	5768	0	0	
+
+Y 69   3240	*	3669	*	5841	*	4275	6308	4694	4141	*	3198	2286	7408	5037	6161	4070	6207	*	2314	69
+       59	*	4639	*	*	*	*	5768	0	0	
+
+S 70   4795	*	4135	3224	5673	5075	*	4334	*	*	*	*	3231	5458	*	1691	*	5679	2285	4740	70
+       551	1655	*	1422	674	0	*	5716	2463	1110	
+
+V 71   3781	*	*	*	4395	*	*	2481	*	4938	*	*	*	*	*	*	*	686	*	4433	71
+       0	*	*	*	*	*	*	5768	0	0	
+
+Y 72   1595	5758	*	*	*	1640	*	*	*	*	6190	*	*	*	*	*	*	*	*	1662	72
+       0	*	*	*	*	*	*	5768	0	0	
+
+M 73   *	*	*	*	5776	*	*	2065	3253	1443	3633	*	*	*	3574	5758	4774	4306	*	*	73
+       0	*	*	*	*	*	*	5768	0	0	
+
+I 74   6812	*	*	*	*	*	*	529	*	4031	*	*	*	*	*	*	*	2078	*	*	74
+       0	*	*	*	*	*	*	5768	0	0	
+
+Q 75   *	2932	*	2967	*	*	2185	5184	2916	6308	5516	4196	*	2961	4334	5633	3913	*	*	7042	75
+       0	*	*	*	*	*	*	5768	0	0	
+
+E 76   6529	*	2465	1135	*	4379	*	*	2922	*	*	*	*	3709	4320	5127	*	*	*	5816	76
+       52	4829	*	2456	290	*	*	5768	1091	0	
+
+L 77   *	*	*	*	2337	*	*	676	*	3495	6363	*	*	*	5816	*	*	4122	*	*	77
+       346	2871	3706	0	*	*	*	5768	1504	0	
+
+R 78   *	*	4235	2760	6844	*	5092	*	2874	3728	*	*	*	4569	1587	3001	4597	6914	*	*	78
+       0	*	*	0	*	0	*	5746	1278	1278	
+
+L 79   3655	*	5335	2626	3287	7569	4443	3274	4829	1744	*	*	5679	4659	*	5267	7367	6050	5758	5776	79
+       14	6706	*	0	*	*	*	5768	1000	0	
+
+N 80   4560	*	2508	3522	*	2272	5298	6161	4316	*	6050	1673	*	7118	6690	*	6991	4486	*	*	80
+       115	*	3706	*	*	*	*	5768	0	0	
+
+T 81   5850	7314	3452	2732	*	4003	7628	3642	6537	4967	5723	5119	*	*	7082	4865	1400	3721	*	*	81
+       1185	*	836	*	*	*	0	5746	0	1278	
+
+L 82   3961	*	*	*	*	3000	*	*	6057	1571	2958	*	3222	*	2253	6225	*	*	*	*	82
+       74	4316	*	1275	769	251	2646	4018	1089	3472	
+
+N 83   5124	*	2769	3892	*	3501	*	*	4523	5872	*	1469	3704	6501	*	3090	5542	5609	*	*	83
+       20	*	6158	*	*	1866	462	5647	0	1402	
+
+N 84   7319	*	3679	3377	*	5510	4351	*	3873	*	*	1258	5826	3851	4239	5001	4068	5812	*	6203	84
+       249	*	2658	*	*	2685	244	5731	0	1338	
+
+V 85   5200	*	2910	4275	2676	4742	5959	4986	*	4195	*	4985	5216	*	*	4766	3498	2833	*	2574	85
+       207	4518	3471	2933	202	1215	813	5659	1059	1819	
+
+V 86   4109	*	5477	6435	*	5494	6228	2770	*	2111	*	4998	*	*	*	5372	5907	1244	*	*	86
+       9	7321	*	334	2275	788	1249	5577	1025	1722	
+
+E 87   6537	*	3115	875	*	6743	*	*	2395	5719	*	6068	*	4689	4697	5817	*	*	*	*	87
+       232	3250	4533	1642	557	0	*	5746	1615	1278	
+
+L 88   4299	*	*	3202	*	6987	*	1904	*	1952	*	*	*	7021	*	*	*	1819	*	5977	88
+       218	3285	4740	2103	382	0	*	5716	1504	1110	
+
+W 89   5908	*	*	4068	5960	*	4633	4207	1866	3645	6000	4887	*	5434	2861	*	*	5728	2121	*	89
+       0	*	*	*	*	*	0	5689	0	1091	
+
+A 90   1687	3013	*	*	*	4926	*	5389	7032	*	5441	*	*	6658	*	3692	*	1355	*	*	90
+       118	*	3666	*	*	0	*	5689	0	1091	
+
+L 91   2810	*	6223	5069	2352	*	*	4208	*	3046	4050	6114	*	3299	2920	6022	5698	3580	*	5936	91
+       231	2758	*	1941	435	0	*	5746	1747	1278	
+
+T 92   *	*	*	*	*	4621	*	*	*	3993	*	4114	5516	*	6041	3644	3730	5121	695	*	92
+       0	*	*	*	*	*	*	5768	0	0	
+
+Y 93   *	*	*	*	1291	*	*	*	*	3856	5022	*	*	*	*	*	*	*	*	1025	93
+       0	*	*	*	*	*	*	5768	0	0	
+
+L 94   3527	6061	*	*	*	*	*	3799	5022	1515	3494	*	*	*	*	3046	5303	5516	*	2404	94
+       0	*	*	*	*	*	*	5768	0	0	
+
+R 95   *	5214	*	*	*	4041	5516	*	6041	5022	*	*	*	*	766	2385	3946	*	*	*	95
+       0	*	*	*	*	*	*	5768	0	0	
+
+W 96   3642	*	6690	3653	5022	*	4715	5516	2721	*	4955	*	2034	*	4400	5355	*	*	2058	*	96
+       0	*	*	*	*	*	*	5768	0	0	
+
+F 97   *	*	2643	2752	2137	*	*	5758	3268	6041	*	4132	*	6489	4944	3045	5024	*	*	3754	97
+       171	4829	3706	2000	415	*	*	5768	1091	0	
+
+E 98   *	*	2919	244	*	*	*	*	*	*	*	5434	*	*	*	*	*	*	*	*	98
+       0	*	*	*	*	*	0	5746	0	1278	
+
+V 99   3669	*	*	*	3034	*	*	1740	*	1992	*	*	*	*	*	3252	*	2801	*	*	99
+       0	*	*	*	*	*	0	5746	0	1278	
+
+N 100  *	*	2652	2945	*	6095	6219	2730	2835	3991	3617	3558	*	*	3942	4773	6068	4435	*	*	100
+       0	*	*	1585	585	0	*	5746	1278	1278	
+
+P 101  3486	5758	4958	5175	5776	2464	*	*	3383	*	*	3416	1945	6061	*	2799	5329	*	*	*	101
+       988	*	1012	*	*	*	*	5768	0	0	
+
+L 102  3455	*	2844	2890	*	*	*	3605	3645	3832	*	*	*	*	2888	*	2181	4422	*	*	102
+       920	*	1085	*	*	*	0	4742	0	3061	
+
+A 103  3937	*	3555	2585	*	*	*	3748	2456	2517	*	*	*	3671	*	3345	3744	*	*	*	103
+       150	*	3344	*	*	*	0	3377	0	3799	
+
+H 104  *	*	*	*	*	*	2648	*	*	*	*	*	*	*	3331	*	*	*	4042	556	104
+       0	*	*	*	*	*	0	3128	0	3820	
+
+Y 105  *	*	*	*	*	*	*	*	*	1786	*	*	*	*	*	*	*	*	*	494	105
+       0	*	*	*	*	*	0	3128	0	3820	
+
+R 106  2729	*	*	2050	*	*	*	*	1976	*	*	*	*	3174	3780	3590	*	3528	*	*	106
+       0	*	*	*	*	4501	65	3128	0	3820	
+
+Q 107  *	*	*	2638	*	*	4366	*	3813	3441	*	3851	*	1111	*	*	*	*	*	3389	107
+       107	3813	*	0	*	1489	635	3660	1093	3715	
+
+F 108  *	4585	3146	*	1542	*	4982	3855	*	1911	*	5125	*	*	*	3878	*	4693	*	*	108
+       0	*	*	*	*	1729	518	5056	0	2840	
+
+N 109  *	*	2800	4717	*	*	4455	5350	3282	1717	4755	4090	3951	5704	3502	*	4511	5085	*	*	109
+       0	*	*	*	*	*	0	5218	0	2313	
+
+P 110  4723	*	*	5301	*	4616	*	*	3888	*	*	*	425	5156	*	4842	*	5588	*	*	110
+       116	3699	*	2908	206	*	0	5218	1241	2313	
+
+D 111  *	*	2039	2344	*	4291	*	*	1988	5400	*	5743	4217	3757	5171	4723	5588	*	*	*	111
+       399	*	2050	*	*	*	0	5218	0	2313	
+
+A 112  2817	4304	*	4667	2685	*	4020	*	*	3969	*	4590	*	3770	*	3179	*	2972	*	2896	112
+       58	*	4667	*	*	*	0	4709	0	3075	
+
+N 113  3917	*	*	4546	*	*	*	4949	3883	2314	3726	3239	*	*	4721	4255	*	2171	*	3383	113
+       548	*	1663	*	*	6354	18	4652	0	3155	
+
+I 114  3511	*	4174	2308	*	*	*	2777	2489	*	*	3976	*	*	*	2503	3460	*	*	*	114
+       0	*	*	*	*	1925	441	4164	0	3560	
+
+L 115  6282	*	3318	3345	*	6184	*	*	2144	4713	4538	4523	2584	5296	4083	4567	4290	*	*	3657	115
+       227	*	2778	*	*	*	0	4554	0	2954	
+
+N 116  *	*	3036	2983	*	*	*	6113	4047	4281	*	1050	5828	6299	*	5056	4936	4341	*	*	116
+       0	*	*	*	*	1720	522	4318	0	3254	
+
+R 117  4864	*	4655	3652	*	2087	5156	*	1381	*	*	*	*	*	2761	*	4282	*	*	*	117
+       551	1655	*	185	3053	3977	95	4878	1827	2622	
+
+P 118  4695	*	3705	5153	*	4554	*	*	*	*	*	4323	2794	*	981	4591	3800	*	*	*	118
+       0	*	*	*	*	*	0	4923	0	2526	
+
+L 119  3527	*	3572	4233	*	*	*	5223	2986	3218	4986	4144	6382	*	2031	4449	3127	6553	*	*	119
+       0	*	*	*	*	235	2732	4923	0	2526	
+
+N 120  *	*	1362	2069	*	5663	*	6298	4527	*	*	4135	5144	2984	5804	3893	*	*	*	*	120
+       335	*	2272	*	*	*	0	5672	0	1198	
+
+Y 121  *	5718	*	3322	1650	*	4806	5346	5397	*	*	*	*	3810	4619	3616	*	5530	2923	2930	121
+       1248	*	788	*	*	*	0	5312	0	1982	
+
+Y 122  *	*	*	*	2034	*	*	2467	*	*	*	*	*	*	*	*	*	3760	*	997	122
+       161	*	3245	*	*	*	0	3375	0	3731	
+
+N 123  *	*	*	3331	*	*	*	*	2745	*	*	1721	*	*	2729	*	2286	3436	*	*	123
+       0	*	*	*	*	*	0	3128	0	3820	
+
+K 124  3436	*	3931	1151	*	*	*	*	2648	*	*	3928	*	*	3590	*	3581	*	*	*	124
+       0	*	*	*	*	*	0	3128	0	3820	
+
+L 125  *	*	*	*	*	*	*	*	778	3780	*	*	*	*	2661	*	3331	3528	*	*	125
+       131	*	3528	*	*	*	0	3128	0	3820	
+
+F 126  *	*	*	*	533	*	*	3318	*	*	3483	*	*	*	*	*	*	*	*	3068	126
+       0	*	*	*	*	*	0	3033	0	3925	
+
+S 127  2323	*	*	3318	3802	*	*	2853	3068	2357	*	*	*	3395	*	3638	*	*	*	*	127
+       0	*	*	*	*	*	0	3033	0	3925	
+
+E 128  *	*	*	1194	*	*	*	*	3913	3395	*	2389	*	3318	*	3179	*	*	*	*	128
+       0	*	*	*	*	*	0	3033	0	3925	
+
+T 129  *	*	1934	1223	*	*	*	*	*	3068	*	*	*	3179	*	*	3638	*	*	*	129
+       0	*	*	*	*	44	5049	3033	0	3925	
+
+A 130  2859	5184	6037	*	3221	*	3007	2751	*	4920	*	*	*	*	4192	3585	5152	2311	*	4700	130
+       55	4743	*	1524	617	0	*	5753	1300	1048	
+
+N 131  6296	*	3418	5899	*	2533	3967	5071	4344	2476	*	2746	5516	6190	*	3080	5216	4982	*	5635	131
+       0	*	*	*	*	*	*	5768	0	0	
+
+K 132  3563	*	4233	2318	7295	5022	*	5841	2109	5816	*	4061	2891	4741	4329	4727	5418	*	6110	*	132
+       11	*	7008	*	*	*	*	5768	0	0	
+
+N 133  *	5813	4557	*	*	*	6675	*	2545	*	*	930	*	3115	*	3079	*	*	*	*	133
+       0	*	*	*	*	*	0	5767	0	1000	
+
+E 134  *	*	5743	75	*	*	*	*	*	*	*	*	*	*	4961	*	*	*	*	*	134
+       0	*	*	*	*	0	*	5767	0	1000	
+
+L 135  *	*	*	*	*	*	*	3147	*	702	*	*	*	3669	*	*	*	2368	*	*	135
+       0	*	*	*	*	*	*	5768	0	0	
+
+Y 136  *	*	*	*	1132	5159	*	*	*	5355	*	*	*	*	*	*	*	5022	*	1119	136
+       0	*	*	*	*	*	*	5768	0	0	
+
+L 137  *	*	*	6361	4123	*	*	2358	3866	946	4105	*	*	*	*	4476	*	4485	*	*	137
+       0	*	*	*	*	*	*	5768	0	0	
+
+T 138  *	6969	*	*	*	*	*	*	*	*	5022	*	*	*	*	2293	401	*	*	*	138
+       0	*	*	*	*	*	*	5768	0	0	
+
+A 139  1481	5841	3183	*	*	*	*	6744	5135	4797	7030	2986	2600	*	*	4077	4558	4648	*	*	139
+       0	*	*	*	*	*	*	5768	0	0	
+
+E 140  6259	5240	3476	2027	5355	3984	2654	5746	*	6050	*	7162	*	5126	*	2962	3583	5899	*	3628	140
+       0	*	*	*	*	*	*	5768	0	0	
+
+L 141  5746	7059	*	6226	2403	*	*	4221	*	1628	*	5758	4648	4579	4068	5341	4532	4728	4596	3515	141
+       0	*	*	*	*	*	*	5768	0	0	
+
+A 142  4250	*	1248	3156	*	*	*	5121	5471	*	*	3365	*	*	*	2332	5453	5022	*	6190	142
+       0	*	*	*	*	*	*	5768	0	0	
+
+E 143  *	*	4484	1265	5023	*	*	4346	5021	6559	*	*	5453	6706	5899	4503	5458	2666	*	2794	143
+       0	*	*	*	*	*	*	5768	0	0	
+
+L 144  6361	*	*	*	*	*	*	1143	*	3815	*	2172	*	3183	*	*	*	2921	*	*	144
+       0	*	*	*	*	*	*	5768	0	0	
+
+Q 145  5252	*	*	4639	5776	5746	*	*	2774	2621	*	*	2577	4041	6190	2983	*	*	2890	3562	145
+       0	*	*	*	*	*	*	5768	0	0	
+
+L 146  2317	6190	*	*	5355	7374	*	4388	*	726	*	*	*	*	*	*	4829	4350	*	5758	146
+       0	*	*	*	*	*	*	5768	0	0	
+
+F 147  3497	6041	3528	3056	5386	5110	4572	6296	2696	*	4658	6159	*	3432	5071	2782	3409	6417	*	*	147
+       0	*	*	*	*	*	*	5768	0	0	
+
+N 148  4436	4829	1746	3617	*	*	*	*	*	*	*	3328	*	5121	*	2385	2189	*	*	*	148
+       0	*	*	*	*	*	*	5768	0	0	
+
+F 149  *	*	*	*	1836	*	*	779	*	3434	7030	*	*	*	*	*	*	4766	*	*	149
+       0	*	*	*	*	*	*	5768	0	0	
+
+I 150  *	*	5893	3183	*	*	5022	1467	*	4071	*	2653	*	4526	4965	5496	*	2604	*	*	150
+       0	*	*	*	*	*	*	5768	0	0	
+
+R 151  5339	7268	3177	3246	5071	1313	6226	*	*	4492	*	6061	*	5758	3581	2899	6416	*	*	*	151
+       0	*	*	*	*	*	*	5768	0	0	
+
+V 152  *	*	*	*	*	*	4392	4875	1287	3117	4771	5298	3497	*	4220	4242	5515	3131	*	*	152
+       0	*	*	*	*	*	*	5768	0	0	
+
+A 153  960	1972	*	*	*	4218	*	3949	*	*	*	*	*	*	*	*	*	3152	*	*	153
+       0	*	*	*	*	*	*	5768	0	0	
+
+N 154  *	*	*	5453	6361	*	5725	3733	2922	*	*	1754	*	3257	4426	3751	2331	6559	*	6991	154
+       0	*	*	*	*	*	*	5768	0	0	
+
+V 155  *	5022	*	*	*	*	*	1681	*	7162	*	*	*	*	*	*	*	621	*	*	155
+       0	*	*	*	*	*	*	5768	0	0	
+
+M 156  *	*	*	*	6226	*	3110	5679	5071	1234	2844	*	*	*	*	5126	5081	3966	*	2889	156
+       0	*	*	*	*	*	*	5768	0	0	
+
+D 157  *	*	3850	4965	*	6445	*	*	*	*	*	2615	4240	*	*	829	3213	*	*	*	157
+       0	*	*	*	*	*	*	5768	0	0	
+
+G 158  4592	3834	5471	2112	2480	5386	6405	*	3153	3992	6361	*	4589	4105	6744	*	4855	6061	*	3765	158
+       0	*	*	*	*	*	*	5768	0	0	
+
+S 159  2964	*	2600	2459	*	5882	5360	*	2284	4669	*	6445	*	5186	5620	2979	4873	5720	*	*	159
+       0	*	*	*	*	*	*	5768	0	0	
+
+K 160  2861	*	3833	1258	*	*	*	*	4419	*	6690	3272	*	3516	5832	3572	5668	7499	*	*	160
+       0	*	*	*	*	*	*	5768	0	0	
+
+W 161  4965	*	*	*	1153	*	*	*	*	*	*	*	*	*	5679	*	*	*	2376	1707	161
+       0	*	*	*	*	*	*	5768	0	0	
+
+E 162  3401	*	3710	2800	3767	*	*	*	3322	3599	6161	3365	5159	4191	6205	4357	3183	5565	*	4574	162
+       126	3958	5720	1451	657	*	*	5768	1286	0	
+
+V 163  2761	*	2360	3476	*	4291	*	*	2287	5090	*	4153	5130	4497	4291	4502	4938	5292	*	*	163
+       0	*	*	*	*	*	0	5765	0	1064	
+
+L 164  5613	*	4098	5130	*	*	*	2440	3175	1504	5750	5399	*	6808	4625	3537	*	3894	*	*	164
+       436	*	1939	*	*	0	*	5765	0	1064	
+
+K 165  5022	4947	*	5331	6589	4008	6511	5325	5100	*	*	*	5078	*	4192	2420	3798	2436	*	2021	165
+       450	1901	*	1960	429	*	0	5217	1747	1991	
+
+G 166  5554	*	3989	3814	*	5100	*	1965	*	5148	*	4738	3022	5040	3835	5362	3360	2753	*	*	166
+       101	4755	5043	0	*	0	*	5217	1095	1991	
+
+N 167  7260	*	1791	2260	*	*	*	*	3275	*	*	3537	2488	6270	6984	3651	5183	*	*	*	167
+       447	1908	*	1399	688	0	*	5749	1999	1045	
+
+V 168  3862	*	2577	2784	*	*	*	3645	2307	*	*	4185	5600	4063	5318	3699	4266	4409	*	*	168
+       120	3642	*	1585	585	*	0	5762	1253	1000	
+
+D 169  *	5753	3205	2261	*	5110	*	3812	5016	3617	4153	5437	5151	*	6344	2682	5507	2790	*	6689	169
+       47	*	4958	*	*	*	0	5762	0	1000	
+
+P 170  7271	*	3285	3225	3269	3639	7271	*	3865	4320	*	2108	4421	*	*	4817	6027	*	*	2783	170
+       0	*	*	*	*	373	2135	5698	0	1143	
+
+E 171  4037	*	3571	3054	*	2514	7078	*	3431	*	*	3268	4584	5210	6167	2132	4687	7366	*	*	171
+       442	1922	*	0	*	0	*	5762	2454	1000	
+
+R 172  *	5047	5263	3055	*	6194	*	*	1849	*	*	2821	*	*	3655	4463	2215	5471	*	5159	172
+       0	*	*	*	*	*	*	5768	0	0	
+
+D 173  *	3669	1953	5126	*	*	*	4473	*	5899	5071	4107	*	*	5159	*	1775	2602	*	*	173
+       0	*	*	*	*	*	*	5768	0	0	
+
+F 174  *	*	*	*	525	*	*	3669	*	*	*	*	*	*	*	*	*	*	*	2142	174
+       0	*	*	*	*	*	*	5768	0	0	
+
+T 175  *	*	*	*	1427	*	*	3167	*	2708	3818	*	*	*	5746	*	4560	2785	*	3527	175
+       0	*	*	*	*	*	*	5768	0	0	
+
+V 176  4615	1033	*	*	*	*	*	5841	*	4404	5233	3834	*	*	*	*	4644	1893	*	*	176
+       0	*	*	*	*	*	*	5768	0	0	
+
+R 177  *	*	*	*	*	*	*	*	5355	*	*	4965	*	5746	155	5214	*	*	*	*	177
+       0	*	*	*	*	*	*	5768	0	0	
+
+Y 178  4639	*	*	*	2721	*	*	*	4924	3201	*	*	*	*	1475	4141	*	*	*	1999	178
+       0	*	*	*	*	*	*	5768	0	0	
+
+I 179  2260	5899	7320	2651	5746	1653	*	3410	*	5758	*	*	*	*	6226	6050	6161	3092	*	*	179
+       0	*	*	*	*	*	*	5768	0	0	
+
+C 180  5758	1131	*	*	4073	*	*	*	*	6474	*	*	*	*	*	5746	4665	3019	3372	2505	180
+       59	*	4639	*	*	*	*	5768	0	0	
+
+E 181  6612	*	1672	2371	*	*	5019	6191	3142	4464	*	2152	*	*	*	4195	*	*	*	*	181
+       0	*	*	*	*	0	*	5716	0	1110	
+
+P 182  3845	*	5758	6061	6161	*	5037	4596	*	4499	5006	4179	1559	3669	4626	3573	3210	5061	*	*	182
+       384	2099	*	0	*	*	*	5768	1958	0	
+
+T 183  3194	*	2559	3462	*	*	*	4820	4182	*	*	5233	*	3116	5799	2892	2301	5433	*	5712	183
+       0	*	*	*	*	0	*	5753	0	1048	
+
+G 184  2452	4601	*	4763	*	1649	*	*	3679	*	*	*	*	6161	5257	3210	2721	5124	*	6190	184
+       59	*	4639	*	*	*	*	5768	0	0	
+
+E 185  *	*	4377	2786	*	2945	*	6628	2579	*	*	2695	*	*	4167	3709	2370	*	*	5686	185
+       531	*	1699	0	*	0	*	5716	1110	1110	
+
+K 186  4246	*	*	*	4753	3883	4219	*	2331	4494	*	1710	*	3798	4373	3361	*	*	5478	*	186
+       0	*	*	*	*	0	*	5248	0	2345	
+
+F 187  *	*	*	*	895	*	*	3980	*	4374	*	*	*	5257	*	*	5022	5126	*	1916	187
+       0	*	*	*	*	*	*	5768	0	0	
+
+V 188  4114	*	6194	5323	*	5431	*	*	*	*	*	5947	4639	6226	6050	2805	1362	2054	*	5471	188
+       1004	996	*	0	*	*	*	5768	3009	0	
+
+D 189  3452	5797	4131	1676	*	3855	*	6133	*	5475	*	3805	2508	*	5267	3156	6240	5961	*	*	189
+       0	*	*	*	*	*	*	5618	0	0	
+
+I 190  *	*	*	*	1198	*	*	1676	*	3092	4305	*	*	*	*	*	*	4380	*	4822	190
+       0	*	*	*	*	*	*	5618	0	0	
+
+N 191  *	6444	1049	3313	*	*	*	3539	5749	6513	*	2703	*	*	*	5817	5279	3442	*	*	191
+       0	*	*	*	*	*	*	5618	0	0	
+
+I 192  *	*	*	*	2621	*	*	1735	*	4822	*	*	*	*	*	*	*	*	1260	3571	192
+       0	*	*	*	*	*	*	5217	0	0	
+
+E 193  *	*	2798	1806	5369	5489	3771	4067	3300	*	*	6511	*	3835	3322	3206	*	*	*	*	193
+       0	*	*	*	*	*	*	5217	0	0	
+
+D 194  6511	*	1261	2108	4738	3789	*	*	3510	*	*	5040	*	4086	5424	*	*	*	*	5078	194
+       0	*	*	*	*	*	*	5217	0	0	
+
+V 195  5424	*	*	2704	3071	*	*	2321	*	2980	5489	*	*	*	*	*	*	2064	5022	3554	195
+       41	*	5148	*	*	*	*	5217	0	0	
+
+K 196  5006	3822	*	3220	4554	*	4277	4040	4147	*	4172	*	*	4141	3359	3746	4601	*	*	1977	196
+       0	*	*	*	*	*	0	5171	0	1068	
+
+A 197  3569	*	3514	3473	*	5239	4458	*	2772	*	*	3530	4449	3229	2434	5190	*	3873	*	*	197
+       0	*	*	*	*	*	0	4775	0	1068	
+
+Y 198  *	*	4075	*	*	4782	*	*	1820	1973	*	2200	*	4539	3929	*	*	*	*	4638	198
+       0	*	*	*	*	0	*	4775	0	1068	
+
+I 199  *	*	*	*	2939	*	*	1736	*	2181	2414	*	*	*	*	*	*	2633	*	*	199
+       0	*	*	*	*	*	*	4836	0	0	
+
+K 200  4877	4138	*	3197	*	*	3619	4920	2412	2170	*	*	*	3943	2920	4709	*	4633	*	*	200
+       800	*	1232	*	*	*	*	4836	0	0	
+
+K 201  *	*	3528	1602	*	*	*	*	1584	*	*	3928	*	*	3554	3331	*	*	*	*	201
+       0	*	*	*	*	0	*	3128	0	2082	
+
+V 202  *	4361	*	3253	4503	*	*	*	2486	4396	3855	4444	*	*	3391	2814	3673	4607	3261	*	202
+       0	*	*	*	*	*	*	4504	0	0	
+
+E 203  *	*	2182	2040	*	4380	*	*	*	*	4160	1566	*	*	*	4403	4396	*	*	*	203
+       0	*	*	*	*	*	*	4504	0	0	
+
+P 204  2817	*	*	*	4313	*	3630	*	4557	*	*	4471	758	*	*	*	4380	*	*	*	204
+       0	*	*	*	*	*	*	4504	0	0	
+
+R 205  4557	*	3499	2457	*	*	4694	*	1108	*	*	3377	*	*	3501	*	*	*	*	*	205
+       0	*	*	*	*	*	*	4504	0	0	
+
+E 206  4444	*	4403	2178	*	*	3430	*	2636	*	*	*	*	2655	*	4799	2856	4282	*	4380	206
+       0	*	*	*	*	*	*	4504	0	0	
+
+A 207  2415	3994	*	*	1694	4568	*	*	*	*	*	*	*	*	*	1668	*	4380	*	4799	207
+       0	*	*	*	*	*	*	4504	0	0	
+
+Q 208  5009	*	3658	2592	4568	*	*	4694	4453	2665	*	4557	*	3497	*	*	3702	3439	*	2840	208
+       0	*	*	*	*	*	*	4504	0	0	
+
+E 209  4370	*	2875	941	*	*	4530	5009	4471	*	*	4313	*	*	4453	*	3662	*	*	*	209
+       0	*	*	*	*	*	*	4504	0	0	
+
+Y 210  *	*	*	4557	2908	*	3838	*	4471	4568	4403	4530	*	3994	4380	*	*	4433	*	1253	210
+       0	*	*	*	*	*	*	4504	0	0	
+
+L 211  *	*	*	*	*	*	*	2160	*	1231	*	*	*	*	*	*	*	1764	*	4160	211
+       0	*	*	*	*	*	*	4504	0	0	
+
+K 212  4313	*	*	*	*	4444	*	*	473	*	4471	*	*	*	2857	*	*	*	*	*	212
+       0	*	*	*	*	*	*	4504	0	0	
+
+D 213  *	*	2837	1732	*	*	*	*	2846	*	*	2882	*	*	2046	4568	*	*	*	*	213
+       0	*	*	*	*	*	*	4504	0	0	
+
+L 214  4444	*	*	*	*	*	*	2190	4694	1350	2493	*	*	*	*	*	*	3577	*	4557	214
+       0	*	*	*	*	*	*	4504	0	0	
+
+T 215  3388	*	*	*	*	*	*	3253	*	4433	*	*	*	*	*	2042	971	*	*	*	215
+       0	*	*	*	*	*	*	4504	0	0	
+
+L 216  4453	*	*	3295	3680	4530	*	4380	*	2425	*	*	*	*	*	3620	*	1442	4396	*	216
+       0	*	*	*	*	*	*	4504	0	0	
+
+P 217  *	*	*	*	*	*	*	4406	3467	*	*	3326	1312	*	*	2839	2595	4195	*	*	217
+       0	*	*	*	*	*	*	4410	0	0	
+
+S 218  2982	*	*	*	*	4322	4398	4195	2327	4107	*	4323	4756	*	4330	4563	2642	3001	*	*	218
+       610	2536	2538	6222	19	*	*	4410	1180	0	
+
+K 219  *	*	*	2810	*	*	*	*	3143	*	*	3021	3028	3045	*	*	1407	*	*	*	219
+       0	*	*	*	*	*	0	3061	0	1221	
+
+K 220  3028	*	3045	*	*	*	*	2713	3143	2154	*	*	*	*	*	*	3021	2810	*	*	220
+       0	*	*	*	*	*	0	3061	0	1221	
+
+K 221  *	*	*	*	*	3023	*	*	1873	*	*	2767	2788	*	1680	*	*	*	*	*	221
+       0	*	*	*	*	*	0	2763	0	1221	
+
+E 222  *	*	*	2713	*	*	*	2618	*	*	*	2413	*	*	2700	*	2518	2570	*	*	222
+       0	*	*	*	*	1033	968	2693	0	1221	
+
+I 223  2741	*	*	*	*	*	*	1795	2550	2782	*	*	*	*	*	2022	*	*	*	*	223
+       0	*	*	*	*	0	*	2720	0	1084	
+
+K 224  *	*	*	*	*	3223	*	*	163	*	*	*	*	*	*	*	*	*	*	*	224
+       236	*	2726	*	*	*	*	2828	0	0	
+
+R 225  *	*	*	*	*	*	*	*	2669	*	*	*	*	2993	1859	1179	*	*	*	*	225
+       534	1693	*	0	*	0	*	2594	1241	1095	
+
+G 226  *	*	*	*	*	1549	*	*	3223	*	*	*	*	2876	*	2726	2932	2913	*	*	226
+       0	*	*	*	*	*	*	2828	0	0	
+
+P 227  *	*	*	2876	*	*	*	*	*	*	*	*	1344	*	*	3179	1476	*	*	*	227
+       163	3223	*	2322	322	*	*	2828	1078	0	
+
+Q 228  2932	*	3064	*	*	*	3223	*	2876	*	*	*	*	1928	*	*	3179	2913	*	*	228
+       0	*	*	*	*	*	*	2828	0	0	
+
+K 229  *	*	*	2876	2932	*	*	*	1435	*	*	*	*	2913	3179	*	3064	*	*	*	229
+       0	*	*	*	*	*	*	2828	0	0	
+
+K 230  *	*	*	*	*	*	*	*	2042	*	3223	*	2876	*	1935	3064	*	2913	*	*	230
+       0	*	*	*	*	*	*	2828	0	0	
+
+D 231  *	*	3162	2726	*	3223	*	*	1967	*	*	*	*	*	*	2913	2050	*	*	*	231
+       268	2563	*	1000	1000	*	*	2828	1095	0	
+
+K 232  *	*	*	2909	*	*	*	*	1849	*	*	1752	*	2760	*	2790	*	*	*	*	232
+       0	*	*	*	*	*	*	2818	0	0	
+
+A 233  2972	*	2790	*	*	*	*	2735	*	1750	*	*	*	2911	2760	*	*	*	*	*	233
+       0	*	*	*	*	*	*	2818	0	0	
+
+T 234  2735	*	*	*	*	*	*	*	*	*	*	*	2909	*	2760	2608	1878	2911	*	*	234
+       0	*	*	*	*	*	*	2818	0	0	
+
+Q 235  *	*	*	2608	*	*	*	2790	1819	*	*	*	*	2972	2760	*	2911	*	*	*	235
+       0	*	*	*	*	*	*	2818	0	0	
+
+T 236  *	*	*	2909	*	1775	*	*	*	*	*	*	*	*	*	1161	2972	*	*	*	236
+       0	*	*	*	*	*	*	2818	0	0	
+
+A 237  1878	*	*	2760	2909	*	*	*	*	*	2735	2608	2911	*	*	*	*	*	*	*	237
+       0	*	*	*	*	*	*	2818	0	0	
+
+Q 238  *	*	*	*	*	2608	*	*	2735	2909	*	*	*	1862	2790	2911	*	*	*	*	238
+       0	*	*	0	*	*	*	2818	0	0	
+
+//
+�HHsearch 1.5
+NAME  71fdde7383f09a65b56a391c1db52e35
+FAM   
+FILE  71fdde7383f09a65b56a391c1db52e35
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:48:26 2013
+LENG  94 match states, 94 columns in multiple alignment
+FILT  102 out of 383 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  5.5 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCEECCCCHHHHHHHHHHHHHHHHHCCCCCEEEEEEEEEEECCCCCEEEEEECCEEEEEEEEEECCCEEEEEEEEECCCCEEEEEECCCCCCC
+>ss_conf PSIPRED confidence values
+9973988998999999999999876375886399999997652543258999657899999999489779999997078928999801789998
+>Consensus
+GgwxxidvxxxvqxxaxfAvxexNkxxxxxxlxfxkVvxaxxxxxxxxxxQvVaGxnYxLxixaxxxxyxaxVxexpwxxxxxLxsFxxxxxxx
+>71fdde7383f09a65b56a391c1db52e35
+GEWEIIDIGPFTQNLGKFAVDEENKIGQYGRLTFNKVIRPCMKKTIYENEREIKGYEYQLYVYASDKLFRADISEDYKTRGRKLLRFNGPVPPP
+>gi|224158457|ref|XP_002337975.1| predicted protein [Populus trichocarpa]gi|224160549|ref|XP_002338224.1| predicted protein [Populus trichocarpa]gi|222870101|gb|EEF07232.1| predicted protein [Populus trichocarpa]gi|222871368|gb|EEF08499.1| predicted protein [Populus trichocarpa]
+GGWTPIkNMNdTQAIEIAEFAITENNKQA-SSNLELDSIVKGL-------ERDAGDNKNYQLVLTVKGGKadeqYEADVNV--SGNLKALILFVP-L---
+>gi|15225164|ref|NP_180758.1| cysteine proteinase inhibitor 2 [Arabidopsis thaliana]gi|125991828|sp|Q8L5T9.2|CYT2_ARATH RecName: Full=Cysteine proteinase inhibitor 2; Short=AtCYS-2; Flags: Precursorgi|4263720|gb|AAD15406.1| putative cysteine proteinase inhibitor B (cystatin B) [Arabidopsis thaliana]gi|110738361|dbj|BAF01107.1| putative cysteine proteinase inhibitor B [Arabidopsis thaliana]gi|330253521|gb|AEC08615.1| cysteine proteinase inhibitor 2 [Arabidopsis thaliana]
+GGKSGVpNIRtnREIQQLGRYCVEQFNQQA-qneqgnigsiaktdtaiSNPLQFSRVVSA--------QKQVVAGLKYYLRIEVTQPngstrMFDSVVVI
+QPWLHSKQLLGFTP-VVSP
+>gi|242039791|ref|XP_002467290.1| hypothetical protein SORBIDRAFT_01g023010 [Sorghum bicolor]gi|241921144|gb|EER94288.1| hypothetical protein SORBIDRAFT_01g023010 [Sorghum bicolor]
+-SYTKQeDVSsDFIKQVGKFAVNVYRLAH-MIPMNYLSTSKC--------WSSPAGgga-NNYWMVLSATNYtgtagSYVSTVWGIPGSesKTWKLLTF-
+------
+>gi|241159543|ref|XP_002408587.1| cystatin, putative [Ixodes scapularis]gi|215494370|gb|EEC04011.1| cystatin, putative [Ixodes scapularis]
+GVWRKHhpDVDPRYKEWAHFAISSQ---V-EDRTNFDtlmTLISV--------ESQVIAGVDYKLKMKVAESncvigvdsysrerchlkvdapymICTAL
+VNYMPWEHKTSLKSYNC-----
+>gi|296200364|ref|XP_002747566.1| PREDICTED: cystatin-S-like [Callithrix jacchus]
+GGIHDADLSdEWVQRALHFAISKYNKAT-KDAYYRRllRVLRA--------REQTVAGTNYFFDVEIgrttctksqPNLdtcPfreqpelqkkqfCSFQI
+YEVPWEDRMSLVKSR------
+>gi|2665886|gb|AAB95324.1| cystatin-1 [Haemonchus contortus]
+GGLTDQSTDdPEFMEQAWKAATKVNEEaN-DGDYYMipTKVLSA--------KTQVVSGVMFTSKVLFeesfckkgdvpvdqlkaSNcapkeGgkrvIYE
+ISVLLQPWVKSEQVG---------
+>gi|28900876|ref|NP_800531.1| hypothetical protein VPA1021 [Vibrio parahaemolyticus RIMD 2210633]gi|28809322|dbj|BAC62364.1| hypothetical protein [Vibrio parahaemolyticus RIMD 2210633]
+GGWNEFDATPDAQKAMAFVLKQMDTLS-----SFKQILTV--------HAQIVSGVNYAIEFEMDDGSiWNTIVYR-------------------
+>gi|123480843|ref|XP_001323421.1| Clan IH, family I25, phytocystatin-like peptidase inhibitor [Trichomonas vaginalis G3]gi|121906286|gb|EAY11198.1| Clan IH, family I25, phytocystatin-like peptidase inhibitor [Trichomonas vaginalis G3]
+GGVKPANVDdEHVIQAFKDAVALANQKN-GTNLEFVELITA--------TQQVVSGFIFEGVVKTNDGDYKAKIWCKPGNTEKELQSFE------
+>gi|73991007|ref|XP_848363.1| PREDICTED: similar to cystatin 11 isoform 1 precursor [Canis familiaris]
+-----VSASdPYVTTTMQYLSDDFNKKS-NDKYNFRivRLLKV--------QKQITDHMEFHVNME-------------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+G 1    *	*	5599	*	*	101	*	*	*	*	*	5908	*	5804	6299	*	*	*	*	*	1
+       0	*	*	*	*	*	*	5332	0	0	
+
+E 2    4210	*	*	3767	5843	772	*	*	3596	*	*	6191	5976	5523	5079	4040	*	4472	*	*	2
+       15	6614	*	0	*	*	*	5921	1000	0	
+
+W 3    5235	*	*	6304	3779	*	*	4364	6461	3722	*	*	3557	6658	6504	6927	*	5654	889	3672	3
+       32	5490	*	2278	333	*	*	6050	1090	0	
+
+E 4    5307	*	*	3388	4906	7120	5103	3426	3638	*	5443	4824	*	6420	3728	2884	2078	3541	7328	5247	4
+       26	5817	*	1585	585	*	*	6064	1055	0	
+
+I 5    4862	*	2785	3600	*	6535	*	4227	3028	6507	*	4496	1645	5507	5184	5860	3714	4904	*	*	5
+       0	*	*	*	*	*	*	6078	0	0	
+
+I 6    2631	*	6515	*	6241	6498	5280	1350	3989	4751	5352	6471	*	4304	4616	5030	*	2970	*	*	6
+       769	1275	*	172	3157	*	*	6013	3026	0	
+
+D 7    5648	*	886	5052	*	5892	6502	*	5539	*	*	2056	4746	*	*	3842	6400	*	*	*	7
+       26	5822	*	0	*	*	*	6020	1036	0	
+
+I 8    4204	*	*	5523	6736	*	6700	2473	6658	3851	4086	*	3330	6956	*	7068	4042	1282	*	*	8
+       73	5271	5413	0	*	*	*	6020	1064	0	
+
+G 9    5192	*	2806	5033	*	3786	6475	6558	4305	6763	*	1851	*	4316	6528	2176	3551	*	*	*	9
+       2861	214	*	109	3787	0	*	5998	4645	1053	
+
+P 10   5133	*	4295	3459	*	5519	5455	*	2952	4424	*	4596	1280	5317	5017	4324	4631	6668	*	*	10
+       24	5927	*	0	*	*	0	5996	1033	1000	
+
+F 11   4514	5455	3377	2043	3335	4344	3137	*	3838	4549	*	4791	6810	4346	5357	4711	*	4652	7103	5958	11
+       15	6636	*	1000	1000	0	*	5996	1052	1000	
+
+T 12   4510	*	*	*	6269	*	*	2110	*	4656	6596	*	*	*	*	5671	3748	1164	*	3045	12
+       0	*	*	*	*	*	*	5925	0	0	
+
+Q 13   5215	*	4800	4619	*	*	5713	3203	2839	3479	5378	6466	*	1304	4249	*	*	4432	*	*	13
+       0	*	*	*	*	*	*	5939	0	0	
+
+N 14   4335	*	3581	1786	*	6017	*	*	2576	6487	*	3756	*	2618	4239	4561	5119	6611	*	6467	14
+       0	*	*	*	*	*	*	5939	0	0	
+
+L 15   2155	6662	*	*	5764	*	5792	3439	*	1580	5954	*	*	5548	6494	*	4942	2473	5353	5893	15
+       0	*	*	*	*	*	*	5939	0	0	
+
+G 16   940	*	*	*	5679	2120	*	5959	6593	3218	5465	*	*	*	*	6597	6475	4293	*	*	16
+       0	*	*	*	*	*	*	5919	0	0	
+
+K 17   4776	6316	4944	3736	6799	*	3229	6564	2069	5424	6857	3766	6360	3897	2563	6747	4266	*	3974	*	17
+       16	*	6494	*	*	*	*	5933	0	0	
+
+F 18   6068	*	5101	*	830	*	4738	5300	4613	4950	6628	*	*	*	4967	6355	5758	6614	3267	3825	18
+       0	*	*	*	*	0	*	5919	0	1000	
+
+A 19   311	7050	*	*	6467	5472	*	6360	*	5650	*	*	6657	*	*	5095	4935	4356	*	*	19
+       0	*	*	*	*	*	*	5933	0	0	
+
+V 20   3760	*	*	*	*	6549	*	3105	*	3290	3782	6297	*	*	*	*	3915	875	*	*	20
+       15	6583	*	1000	1000	*	*	5920	1000	0	
+
+D 21   3244	*	2804	3407	*	5863	7262	5199	3369	4842	6387	5128	6647	4432	5002	2676	2956	4694	6222	6803	21
+       0	*	*	*	*	*	*	5920	0	0	
+
+E 22   3731	*	5655	1146	*	5409	7137	5386	3739	5686	5825	*	*	3915	5224	3391	5277	3792	*	*	22
+       24	*	5930	*	*	*	*	5920	0	0	
+
+E 23   6669	*	*	3464	2877	6689	2394	3721	*	*	5174	5108	*	4021	5482	4859	6130	4463	6068	2071	23
+       51	6481	5395	1000	1000	*	0	5927	1001	1011	
+
+N 24   4620	*	4328	*	*	5496	*	*	6393	*	*	559	6829	6453	5270	3021	7162	5616	*	*	24
+       29	*	5668	*	*	*	0	5880	0	1144	
+
+K 25   4039	*	5253	4905	6395	4723	*	*	1242	4785	4906	3871	*	3680	3611	4967	5119	4896	6077	*	25
+       11	*	7034	*	*	792	1243	5850	0	1253	
+
+I 26   3128	5778	5594	4695	*	4491	*	3801	2489	4234	5465	4258	*	2246	3785	4096	5263	5807	*	*	26
+       89	4338	6561	1507	626	648	1466	5879	1283	1148	
+
+G 27   2983	*	*	6533	6671	3197	3532	6940	6557	6687	5371	3101	6148	3642	5467	1930	3922	4541	*	*	27
+       2008	*	413	*	*	*	0	5921	0	1065	
+
+Q 28   3426	*	*	*	*	2916	3613	*	*	*	*	2793	3693	2568	3461	4174	2678	*	*	*	28
+       67	4464	*	3861	103	173	3149	4018	1124	4489	
+
+Y 29   4356	*	4464	3552	*	2593	5751	*	3349	6201	6182	1718	5838	5979	5544	4036	6061	*	*	3714	29
+       0	*	*	*	*	1399	688	5682	0	1433	
+
+G 30   3567	6691	1565	6409	*	2438	5375	6201	5678	6528	*	4596	*	*	6382	3122	3908	5549	6648	4737	30
+       14	6668	*	1000	1000	1587	584	5877	1000	1249	
+
+R 31   4500	*	4835	4394	6143	3038	5040	4351	3144	3994	5413	3695	3278	6814	2950	3424	5177	5703	*	*	31
+       28	5691	*	1000	1000	*	0	5875	1042	1147	
+
+L 32   5903	6543	*	5831	4103	*	5500	5208	6603	929	5023	5205	*	*	*	6526	5022	4537	*	2559	32
+       16	6543	*	1000	1000	0	*	5875	1000	1147	
+
+T 33   5343	5001	*	3601	4687	*	4431	5886	2393	3307	6370	3995	5875	3939	4386	4696	3099	4783	*	3801	33
+       17	6437	*	1000	1000	*	*	5928	1000	0	
+
+F 34   *	6914	*	6953	1311	*	4857	6437	*	2477	4967	6531	6370	*	5638	5252	*	5322	*	2128	34
+       216	2844	*	1000	1000	*	*	5928	1783	0	
+
+N 35   4959	*	3176	4248	*	5723	7185	3160	3756	4102	*	3290	*	4349	4384	3854	4388	2507	*	4552	35
+       201	2942	*	1120	889	*	*	5928	1683	0	
+
+K 36   4480	6496	*	3185	*	5036	5938	6554	1561	*	*	4803	*	4511	2542	3538	3756	*	*	5254	36
+       0	*	*	*	*	*	*	5928	0	0	
+
+V 37   *	*	*	*	*	*	*	2160	*	3625	6671	6836	*	*	*	6230	3737	765	*	*	37
+       17	6375	*	1585	585	*	*	5928	1036	0	
+
+I 38   6539	*	6109	5400	5423	*	4600	2215	5604	2434	5985	5166	*	*	*	4124	5289	1768	*	4465	38
+       0	*	*	*	*	*	*	5928	0	0	
+
+R 39   5130	6761	5889	2469	*	4516	5752	*	1901	*	5783	3716	*	4659	3379	2360	6643	*	*	*	39
+       64	*	4530	*	*	*	*	5928	0	0	
+
+P 40   1257	5011	*	*	*	1893	*	4502	*	5008	6490	*	4450	*	*	6890	*	2828	*	*	40
+       2773	*	228	*	*	*	0	6014	0	1114	
+
+C 41   *	1054	*	*	*	*	*	*	*	2568	*	*	*	*	*	*	*	*	1516	*	41
+       266	*	2568	*	*	*	0	2866	0	5002	
+
+M 42   *	*	*	*	2134	*	*	*	*	*	1816	*	*	*	*	*	*	1035	*	*	42
+       323	*	2317	*	*	*	0	2578	0	5046	
+
+K 43   *	*	*	*	*	*	*	*	1527	*	1732	1506	*	*	*	*	*	*	*	*	43
+       0	*	*	*	*	5728	27	2270	0	5099	
+
+K 44   *	*	2092	*	*	*	*	*	386	*	*	*	*	*	*	*	*	*	*	*	44
+       0	*	*	*	*	6241	19	2658	0	5041	
+
+T 45   *	*	*	*	*	*	*	*	*	962	*	*	*	*	*	*	1935	2152	*	*	45
+       354	*	2199	*	*	4692	57	2756	0	5002	
+
+I 46   *	*	*	*	*	*	*	735	*	2016	*	*	*	*	*	*	*	*	2718	*	46
+       0	*	*	*	*	*	0	2862	0	4965	
+
+Y 47   *	*	*	2016	*	*	*	*	*	2214	*	*	*	*	*	2786	*	*	*	1350	47
+       0	*	*	*	*	*	0	2862	0	4965	
+
+E 48   *	2718	*	2058	*	*	*	*	*	*	*	2786	*	*	*	*	*	1111	*	*	48
+       0	*	*	*	*	66	4476	2862	0	4965	
+
+N 49   6112	*	*	1635	*	6599	7351	*	3091	4708	6281	4266	6755	2626	3511	4582	3803	6596	4838	6793	49
+       36	*	5361	*	*	1296	755	5918	0	1175	
+
+E 50   5718	*	*	2758	6632	5442	*	*	2700	5763	5570	*	*	3577	4607	2566	2247	3473	*	6338	50
+       0	*	*	*	*	1206	820	5878	0	1186	
+
+R 51   *	*	6185	5664	*	*	*	6467	5618	5380	6466	5603	*	424	3558	6273	7022	5687	*	6852	51
+       15	6636	*	3322	152	0	*	5969	1002	1079	
+
+E 52   4706	*	*	4548	6132	4222	5307	3148	*	3404	6483	4960	4391	6479	*	*	4106	1126	*	*	52
+       40	5187	*	1278	767	*	0	6081	1132	1002	
+
+I 53   4300	6588	*	6132	*	4916	5035	4335	6836	5831	*	*	*	4859	*	5656	4072	603	*	6269	53
+       14	6701	*	0	*	*	0	6081	1001	1002	
+
+K 54   1447	*	3674	4626	*	4064	*	6483	3870	6852	*	3638	*	6900	5980	2235	5049	7012	6458	*	54
+       108	3796	*	677	1416	*	0	6081	1335	1002	
+
+G 55   6050	*	*	*	*	308	5698	5508	5952	*	*	3780	5843	*	6579	5691	*	*	*	*	55
+       0	*	*	*	*	606	1543	5982	0	1122	
+
+Y 56   *	*	6464	7106	5794	*	*	2963	4017	3277	2550	4948	*	5980	6173	6900	2621	2539	*	3406	56
+       17	6458	*	0	*	*	0	6081	1013	1002	
+
+E 57   6773	*	4005	3420	*	*	*	4494	2409	4794	4464	1051	*	7608	6726	*	6132	6701	*	*	57
+       21	6132	*	0	*	*	0	6081	1015	1002	
+
+Y 58   *	*	*	*	3341	*	5304	6599	*	*	*	*	*	*	*	6173	6966	5303	6500	309	58
+       0	*	*	*	*	*	0	6081	0	1002	
+
+Q 59   5247	*	7541	4282	5562	*	3963	4376	2785	4945	5228	5644	*	3088	1994	5402	5136	6308	5362	3298	59
+       23	5980	*	2775	228	0	*	6081	1088	1002	
+
+L 60   *	*	*	*	3395	5088	*	2851	5991	815	3764	*	*	*	*	6313	*	4816	*	5006	60
+       0	*	*	*	*	*	*	6094	0	0	
+
+Y 61   6997	*	4140	3199	6999	*	3769	3993	3372	5134	7119	4992	*	5953	6176	5584	1861	2790	*	4378	61
+       0	*	*	*	*	*	*	6094	0	0	
+
+V 62   6704	*	*	*	3986	*	*	1786	*	1922	4194	*	*	5991	*	*	6610	1771	*	*	62
+       0	*	*	*	*	*	*	6094	0	0	
+
+Y 63   4599	*	3721	1932	*	*	5991	*	2274	4318	*	5912	*	4259	4276	3853	3990	4478	*	4301	63
+       156	3288	*	1878	458	*	*	6094	1501	0	
+
+A 64   1316	*	6601	6842	5118	4125	*	3714	5927	3786	4883	*	*	*	*	*	3659	2316	*	6139	64
+       183	3070	*	3482	135	*	0	6206	1554	1000	
+
+S 65   2565	5144	5660	4578	*	5171	5915	4818	3055	5662	7197	4042	6209	5866	6765	2296	2758	4378	*	6129	65
+       35	6559	6233	2000	415	*	0	6206	1000	1000	
+
+D 66   6872	*	1594	3778	*	3697	6589	*	5307	6856	*	2689	3794	4131	3452	3768	6741	7058	*	*	66
+       286	2549	6830	3597	124	1336	728	6189	1825	1073	
+
+K 67   3674	5651	5467	5701	4906	1506	*	6417	3539	4668	*	7281	3993	5060	4622	3852	4048	5291	5070	6301	67
+       1603	576	*	2877	211	0	*	6164	3991	1096	
+
+L 68   6491	*	4342	4856	6522	4012	6691	4007	3488	2846	5780	3898	3626	3762	5153	3596	2994	4440	*	6689	68
+       751	1301	*	2249	341	*	*	6181	3014	0	
+
+F 69   6857	1886	*	*	3251	7391	6250	*	*	*	6202	*	*	*	*	*	*	6704	5251	870	69
+       0	*	*	*	*	*	*	6181	0	0	
+
+R 70   7204	*	2970	1967	*	5836	4469	5787	3302	*	*	4194	5610	3449	4232	5379	3261	4296	*	5133	70
+       0	*	*	*	*	*	*	6181	0	0	
+
+A 71   805	5000	*	*	3563	*	*	4425	*	5245	6490	*	*	*	*	4669	4892	2692	*	*	71
+       20	6547	8287	1000	1000	*	*	6181	1000	0	
+
+D 72   6487	*	3809	3451	5397	*	6161	3345	3451	3953	*	*	*	4344	4912	6067	3372	1597	*	6729	72
+       0	*	*	*	*	*	0	6181	0	1000	
+
+I 73   6411	*	*	*	*	*	*	1956	*	4929	*	*	*	*	*	*	*	519	*	*	73
+       0	*	*	*	*	*	0	6181	0	1000	
+
+S 74   6348	*	*	*	2922	6748	4822	5694	*	3721	*	4132	*	*	5433	4605	*	5354	1366	2455	74
+       42	5111	*	0	*	*	0	6161	1079	1000	
+
+E 75   6274	5688	3441	1330	*	3662	6614	5614	6284	6062	*	6382	*	6298	4764	3718	4841	2904	6681	5344	75
+       76	*	4278	*	*	0	*	6161	0	1000	
+
+D 76   6533	*	4068	4084	*	*	4959	3103	2013	6261	5470	6766	6800	2522	2911	6148	6109	3557	*	*	76
+       58	*	4663	*	*	466	1857	6050	0	1219	
+
+Y 77   4704	5411	5366	3946	4943	5947	*	*	5394	3602	6056	*	1057	6077	*	3281	6115	5523	*	4482	77
+       225	3146	5006	1038	963	0	*	6050	1456	1234	
+
+K 78   *	*	5999	*	6537	2985	6222	*	4177	3703	*	6666	*	6036	5520	4316	5562	*	811	6188	78
+       21	*	6098	*	*	0	*	6070	0	1091	
+
+T 79   4956	*	6188	2181	*	4728	*	5032	4850	2666	5178	3785	5584	4447	6397	3117	2611	6029	*	*	79
+       37	5315	*	1000	1000	*	0	6096	1059	1013	
+
+R 80   6899	*	4030	5087	*	4684	3263	*	2581	*	*	1517	5016	4996	3924	5806	3816	*	6557	6188	80
+       52	*	4820	*	*	0	*	6096	0	1013	
+
+G 81   *	6179	4611	3830	2789	3681	5708	3926	3443	5999	6823	5399	*	6337	3484	3417	2466	4297	*	*	81
+       34	5416	*	0	*	*	0	6082	1052	1152	
+
+R 82   *	*	*	4663	3686	*	*	2913	2368	4353	4465	6179	*	6530	2262	7014	3330	6337	3373	6257	82
+       0	*	*	*	*	632	1495	6082	0	1152	
+
+K 83   6026	*	*	2224	*	6176	*	4909	1630	*	*	4210	*	3106	4663	2838	5494	6172	6075	*	83
+       45	5017	*	0	*	*	0	6122	1079	1015	
+
+L 84   *	*	*	*	4365	*	*	4547	*	599	5029	*	*	*	*	*	6239	2288	*	*	84
+       0	*	*	*	*	*	0	6110	0	1015	
+
+L 85   6364	*	*	3583	*	5995	*	2695	4380	2487	5078	6117	5552	4363	4724	3832	2371	3657	6222	*	85
+       23	5959	*	2807	222	*	0	6110	1012	1015	
+
+R 86   5142	*	6202	2822	6273	5464	*	*	3514	5125	*	4794	*	*	3524	1009	6113	6020	*	6023	86
+       0	*	*	*	*	*	0	5956	0	1015	
+
+F 87   *	*	*	*	506	*	6066	4919	*	4218	5943	4687	*	*	*	4477	6295	*	*	3618	87
+       0	*	*	*	*	*	0	5934	0	1015	
+
+N 88   4969	*	4447	3081	*	*	*	*	1895	3791	*	2980	*	5016	4265	3882	3036	3975	*	*	88
+       66	*	4485	*	*	*	0	5837	0	1015	
+
+G 89   4413	3818	*	3729	*	3409	*	*	4942	4312	*	*	961	4420	4838	*	4868	*	*	*	89
+       2259	*	338	*	*	0	*	4750	0	1183	
+
+P 90   *	*	2221	*	*	*	*	*	2166	*	*	*	829	*	*	*	*	*	*	*	90
+       348	2221	*	3459	138	0	*	2104	1015	1668	
+
+V 91   1706	*	*	*	*	*	*	4126	*	2453	*	4141	*	*	*	*	*	1334	*	*	91
+       194	2987	*	1000	1000	*	*	3472	1000	0	
+
+P 92   *	*	*	*	*	*	2774	*	*	*	*	2714	1893	*	2918	2827	*	2654	*	*	92
+       0	*	*	*	*	*	*	2529	0	0	
+
+P 93   *	*	*	*	*	*	*	*	*	*	*	*	1220	*	*	809	*	*	*	*	93
+       471	1843	*	1000	1000	*	*	1880	1015	0	
+
+P 94   *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	94
+       0	*	*	0	*	*	*	1609	0	0	
+
+//
+�HHsearch 1.5
+NAME  74210cc330abf78ec4c1fa3592d2152d
+FAM   
+FILE  74210cc330abf78ec4c1fa3592d2152d
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:23:49 2013
+LENG  223 match states, 223 columns in multiple alignment
+FILT  138 out of 1103 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  10.1
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCEECCCCCCCEEEEEECCCEEEEEEEEECCEEEECHHHCCCCCEEEECCCCCCCCCCCCEEEEEEEEEECCCCCCCCCCCCEEEEEECCCCCCCCCE
+EEEECCCCCCCCCCEEEEEEECCCCCCCCCCCCEEEEEEEEEECHHHHHHHCCCCCCCCEEEEECCCCCCCCCCCCCCCEEEECCEEEEEEEECCCCCCC
+CCCEEEEEHHHHHHHHHHHHHCC
+>ss_conf PSIPRED confidence values
+9999899987888699997698699999980999998989977863899742102335787479998899818887777776868999988877678835
+7778687777899889999857647888777723279999971689966642588886749974178998657789788399989999999706788888
+98639999899799999997439
+>Consensus
+ixxgxxxxxxxxPwxvxxxxxxxxCxGtlIsxxxVLTaaxCxxxxxxvxxgxxxxxxxxxxxxxxxvxxxxxhpxxxxxxxxxDiAllxLxxxxxxxxxx
+xpiclxxxxxxxxxxxxxxgxgxxxxxxxxxxxxlxxxxxxxxxxxxCxxxxxxxxxxxxxCxxxxxxxxxxcxgdsGxplxxxxxlxGixsxxxxcxxx
+xxxxxxxxvxxxxxwIxxxixxx
+>74210cc330abf78ec4c1fa3592d2152d
+IVGGYTCGANTVPYQVSLNSGYHFCGGSLINSQWVVSAAHCYKSGIQVRLGEDNINVVEGNEQFISASKSIVHPSYNSNTLNNDIMLIKLKSAASLNSRV
+ASISLPTSCASAGTQCLISGWGNTKSSGTSYPDVLKCLKAPILSDSSCKSAYPGQITSNMFCAGYLEGGKDSCQGDSGGPVVCSGKLQGIVSWGSGCAQK
+NKPGVYTKVCNYVSWIKQTIASN
+>gi|118790260|ref|XP_001231107.1| AGAP004700-PA [Anopheles gambiae str. PEST]gi|116122431|gb|EAU76241.1| AGAP004700-PA [Anopheles gambiae str. PEST]
+----------------------YFCSAVFISADFLLAPAMCLKlmqpvddhpsSHMFVLIEAEHVFYYEGG--RRYINKIFYHPKLEEEPVYHNLAVVKL
+RNPIrEt-VmanGQSIVACLWSEIKLRNNKVYLGEWFKYHP---EQNPAFRWLDVPVITRKECREELSKNkviipefdrgVAETQLCVKDKKNSTmiEFC
+EPRSSGPLFMTLgntvYVVGMPTVHIdDCNV--QIEVFNQVSSFLDWIEAIV---
+>gi|17511021|ref|NP_491910.1| TRYpsin-like Protease family member (try-7) [Caenorhabditis elegans]gi|2088690|gb|AAB54144.1| Trypsin-like protease protein 7 [Caenorhabditis elegans]
+VYNGRDASQSEAPWSVFTYlyskdeQSATTCTGTIVSPRHILIATHCFAgqnrdGSWNLIEDTFDRSNCKDDDYVITNQEFLKRVEFLSnkkgisrypek
+itlvhactkrtanrtkkippQYYTDDFAIVHLYEELTFSSNVQSVCVADDETQPNDKLSLEYFGfglnppsDINQNGVDNTGQLRYEKIEVFRSHPMEIY
+F--------FQARDITDKTVACvvslkililnktqaslnislKGDSGGGAIADVkgkkTIIGVLSQTScqkRRGGNETMELYSSVGFYKNQI-------
+>gi|189240061|ref|XP_001808986.1| PREDICTED: hypothetical protein [Tribolium castaneum]gi|270011741|gb|EFA08189.1| hypothetical protein TcasGA2_TC005816 [Tribolium castaneum]
+--NGERVPPGYYSYAVIFKlmkepkshlfnNSDFFeslaiCSGTVLNRRWVVTKASPIAYYKTKLYRVMVQPDGSQASNTYKVESVLLHPNHFPGDITTD
+VALVRVARDFQFALDLRNANLGFPvMPLNQTACKMPVWSFFFVDNSNSSKIMEKGEISLtVVTTGC--------HTDFLCLK-PNNSKAPCSFNIGMPII
+CNTVLTAVY-FGNettgGCNG-QLPEMVTALRADTPFLE------
+>gi|187735175|ref|YP_001877287.1| 2-alkenal reductase [Akkermansia muciniphila ATCC BAA-835]gi|187425227|gb|ACD04506.1| 2-alkenal reductase [Akkermansia muciniphila ATCC BAA-835]
+------------PWNTGRY-QGGIGTGFLIGENAFMTNAHVVSNAERIYISMY-----GDSRKIPARVKFIAH--------DADLALLEADDPR-PFKGI
+RPFEFSkN-LPHLEDEVRVIGYPIGGNRLSVTRGVVSRIDFTTYAHPRNTEHLTIQVDAAIN------------PGNSGGPVLMGNKVIGVA--------
+------------------------
+>gi|195112812|ref|XP_002000966.1| GI10530 [Drosophila mojavensis]gi|193917560|gb|EDW16427.1| GI10530 [Drosophila mojavensis]
+-------------HLVYLRfNYNIICSGIVVNNRTVLTVTSCLDRKEPPKIIVHFTD-----GTAQTASSSSPSSDYTMSSGSNLLSFLHLEKPLD-QEF
+DTPPPFCTQAVRPQDNVMQLNWDKNYSR-------PIPRFVPQMPLDQCQTLNRDarMLAPAVHCVEN-TQYTDECIRSYGLPYVWKGAFCGMNINGHNC
+SVPSNADVYVRLLREKRLISKMLRT-
+>gi|42521718|ref|NP_967098.1| hypothetical protein Bd0072 [Bdellovibrio bacteriovorus HD100]gi|39574248|emb|CAE77752.1| hypothetical protein predicted by Glimmer/Critica [Bdellovibrio bacteriovorus HD100]
+------------------------CTVTLVSDNCVVTVGACALdrdyVEFNVPVSVAGVAQKSSLEDRYYVEKGTERHKADG--IGHQWAVLRLKPNEVT
+GKNAGAVqgfyRMATKKSQNNDPIRVVSYGYALND--LYdikrgdmpansnpdq-mHFAQQVSHGKLV----KAGIF--LIPEII-----EHDADTSYGS
+WGAPVINEKtnELVGINTHG-GCRAQyvvkagaRY---------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+I 1    *	*	*	*	4868	*	*	1075	4724	5081	4824	*	*	4983	*	*	4815	1639	*	*	1
+       0	*	*	*	*	*	*	7520	0	0	
+
+V 2    4912	*	5017	4036	*	4753	*	2423	*	2661	4130	*	*	*	*	4064	3271	2060	*	4922	2
+       0	*	*	*	*	*	*	7564	0	0	
+
+G 3    5424	*	4388	5212	*	1174	*	*	*	*	*	1555	*	5781	*	4395	5182	*	*	5311	3
+       0	*	*	*	*	*	*	8111	0	0	
+
+G 4    3962	*	*	5528	*	497	5342	*	*	*	*	5536	5679	4360	5314	3917	*	*	*	*	4
+       58	5596	5729	2000	415	*	*	8549	1006	0	
+
+Y 5    5663	*	*	2302	*	*	*	5615	3367	4040	*	5614	*	3593	3281	3103	2818	3688	5622	4752	5
+       20	*	6211	*	*	0	*	8699	0	1003	
+
+T 6    3591	*	2486	2979	*	*	*	4365	5012	4924	*	4736	2654	5984	3372	4465	3629	4924	*	4989	6
+       0	*	*	0	*	0	*	9141	1000	1000	
+
+C 7    1735	6450	4450	5810	*	*	*	5014	6165	6104	*	*	3760	*	*	4031	2878	1765	*	*	7
+       0	*	*	*	*	*	*	9297	0	0	
+
+G 8    3182	*	3172	4228	5956	3135	5195	5021	4163	4593	*	3311	3542	5184	4131	2985	5090	*	*	6229	8
+       23	6008	*	0	*	*	*	9417	1000	0	
+
+A 9    3007	*	4155	5949	*	4562	6186	4185	6130	4644	*	4501	2171	3847	4581	3506	5184	3928	4246	5233	9
+       0	*	*	*	*	*	*	9452	0	0	
+
+N 10   4312	6016	3147	3688	6315	2617	2992	*	*	*	*	2929	6233	4718	4632	3238	3538	*	*	5191	10
+       36	5338	*	3322	152	*	*	9507	1195	0	
+
+T 11   4260	*	3075	2282	*	4610	6945	6677	2945	5372	*	3741	6379	3156	4719	3859	5280	4614	*	4708	11
+       33	5452	*	0	*	*	*	9521	1170	0	
+
+V 12   2949	*	6327	6578	2729	4672	5049	5274	*	5319	4464	*	*	5356	5491	5402	4299	4937	3039	1967	12
+       26	6639	6984	3322	152	*	*	9549	1000	0	
+
+P 13   4281	*	5670	*	6540	5533	6228	8091	*	6764	*	6631	464	5542	6576	3792	6502	*	*	5651	13
+       27	6700	6786	0	*	*	0	9752	1000	1000	
+
+Y 14   4521	6801	6701	*	3061	*	3872	*	*	*	*	5642	6441	*	*	5025	*	*	1048	2293	14
+       0	*	*	2322	322	0	*	9808	1000	1185	
+
+Q 15   3274	*	*	5677	5101	*	5563	3553	*	2516	2698	6778	*	3577	5014	3943	4772	2580	*	5653	15
+       18	*	6333	*	*	*	*	9868	0	0	
+
+V 16   2470	6599	*	*	*	3769	6744	5518	6643	5069	6797	*	*	6635	6511	4545	4956	863	6634	*	16
+       51	5147	7247	1751	508	0	*	9960	1331	1071	
+
+S 17   2990	*	*	5671	4285	4684	6532	4382	4677	3899	3829	6261	6756	5008	3021	2371	4356	4570	6543	4121	17
+       5	*	8127	*	*	*	0	9867	0	1000	
+
+L 18   6379	*	*	*	3539	4668	*	1959	4537	1638	6372	6651	*	6691	*	6403	5657	2667	*	5630	18
+       58	4668	*	2133	373	1272	771	9986	1683	1228	
+
+N 19   6384	*	*	4433	4060	5663	4391	4312	4367	2946	5145	4421	*	4181	2717	3956	4175	4277	*	2919	19
+       1763	611	4299	1940	435	*	0	9989	7781	1065	
+
+S 20   4189	*	3280	3331	5128	3362	4989	6930	3403	*	*	2989	4005	4337	4340	3729	4167	5377	*	4624	20
+       14	6730	*	1585	585	2640	252	9930	1008	1948	
+
+G 21   4692	*	4387	3449	*	1886	4998	5645	3838	6312	*	3539	5757	5417	4104	2979	4234	*	5686	4959	21
+       68	5237	5683	1966	427	1568	594	9840	1338	1777	
+
+Y 22   5602	*	3656	4772	5603	2783	4795	6526	3268	6246	6547	3885	5662	4076	3235	3329	3382	5084	*	4467	22
+       102	4148	6373	1109	899	2238	344	9880	1838	1810	
+
+H 23   5705	*	5751	4504	3305	4850	2747	4360	5210	4485	7023	3723	4171	6750	3812	5075	4710	3704	5005	3085	23
+       38	5283	*	973	1027	1426	672	10018	1278	1781	
+
+F 24   4880	*	6849	6729	2467	5931	5068	3404	5185	2690	5923	4771	5296	5677	4136	4934	3213	3522	5259	4829	24
+       130	3538	*	1160	856	687	1400	10149	2405	1438	
+
+C 25   *	154	*	*	5865	4936	*	*	*	5281	*	*	*	*	*	6654	5967	*	*	*	25
+       7	*	7643	4644	59	*	0	10214	1031	1065	
+
+G 26   3770	*	*	*	*	2358	5416	6920	*	4514	4409	5261	6023	6564	6968	1984	2130	4513	*	5381	26
+       0	*	*	*	*	*	0	10239	0	1228	
+
+G 27   2558	6988	*	6603	*	399	*	*	*	6801	*	*	*	*	6596	*	*	4869	*	*	27
+       0	*	*	*	*	*	0	10216	0	1228	
+
+S 28   2986	5345	*	5816	5853	*	6938	5187	*	4652	6360	5728	*	*	*	2763	1620	2134	*	7084	28
+       0	*	*	*	*	*	0	10216	0	1228	
+
+L 29   5041	*	*	*	4606	*	6811	2145	*	1211	4395	*	6602	6479	*	*	*	2840	5824	4822	29
+       15	6607	*	2000	415	1272	771	10221	1215	1228	
+
+I 30   6904	*	*	*	5894	*	7144	1091	*	2060	*	*	*	*	*	*	*	2048	*	5899	30
+       54	4773	*	2665	248	*	0	10221	1597	1065	
+
+N 31   3029	6840	3516	*	*	2976	4765	*	4941	*	6823	3128	6958	*	5044	1617	3360	*	*	*	31
+       15	*	6608	*	*	*	0	10221	0	1065	
+
+S 32   4299	*	3347	3359	*	4654	6015	*	3672	4971	*	3392	2036	5055	3818	3225	5940	*	*	5342	32
+       0	*	*	*	*	982	1019	10315	0	1300	
+
+Q 33   *	*	2957	4756	*	6085	5256	6252	3948	4607	5479	2744	6966	3813	1946	4370	3971	6697	5123	6222	33
+       79	4222	*	2274	334	*	0	10242	1887	1065	
+
+W 34   5450	6831	7016	*	3182	7114	2636	5343	5533	3659	5064	6940	*	5826	5874	6014	3149	3630	2733	3002	34
+       10	7114	*	3585	126	*	0	10233	1000	1065	
+
+V 35   4287	*	*	*	4705	*	*	2146	*	3478	5390	*	*	*	*	6896	6783	903	6683	6838	35
+       7	*	7691	*	*	*	0	10233	0	1065	
+
+V 36   6926	*	*	*	6893	*	*	2866	*	551	5338	*	*	*	*	*	6683	2951	*	*	36
+       0	*	*	*	*	771	1272	10233	0	1228	
+
+S 37   6023	*	8578	*	*	6646	*	6003	*	5237	*	6876	*	*	*	3240	322	7140	*	6909	37
+       11	7052	*	1585	585	*	0	10238	1000	1000	
+
+A 38   1186	*	6909	6879	5902	*	*	*	5313	6013	*	6124	5268	*	*	2050	2675	5013	*	5886	38
+       13	*	6782	*	*	*	0	10238	0	1000	
+
+A 39   837	6699	4974	5727	*	3594	6678	*	4965	5995	*	5232	6722	*	3980	3552	4405	7042	*	*	39
+       0	*	*	2000	415	0	*	10228	1000	1156	
+
+H 40   5007	*	4225	5539	6963	5741	1436	5688	4303	7015	7018	4596	6381	4237	4725	2665	4407	5361	*	4694	40
+       21	6650	7699	3000	193	*	*	10238	1052	0	
+
+C 41   6067	245	5843	*	5902	6937	*	6840	8578	5374	*	*	7019	6915	*	5880	*	5043	*	*	41
+       75	4632	6594	1472	645	*	0	10238	1672	1000	
+
+Y 42   4639	5975	*	5891	2290	6634	*	3616	6800	2133	4898	*	6547	*	*	*	3653	2008	*	5529	42
+       225	3151	4975	2974	196	0	*	10235	3224	1227	
+
+K 43   3957	*	3685	3167	4882	4264	4411	6091	4707	5403	4611	5413	5532	3844	3203	3165	4691	4580	*	3631	43
+       745	1334	7203	2882	210	*	0	10179	6617	1516	
+
+S 44   3867	*	2936	4904	6784	3389	5943	*	3558	*	*	3619	3256	3924	3814	2952	3581	6739	*	5927	44
+       134	4673	4335	2587	263	2423	298	10185	1609	1667	
+
+G 45   3582	*	3939	3618	6735	3531	5294	5257	3333	5712	5812	4110	3188	4240	3548	3451	4667	5940	*	4921	45
+       147	3764	5433	2552	270	1357	714	10128	2280	2640	
+
+I 46   4432	*	5150	4613	3103	4486	6787	4230	4368	3010	5252	4844	5004	5856	4460	3830	4254	2812	5385	4486	46
+       25	6956	6822	616	1525	2347	316	10160	1183	2430	
+
+Q 47   4304	*	5859	4132	4286	5006	4273	5288	3293	5596	6094	4103	3953	4711	3610	3528	2984	3738	6985	4667	47
+       31	5923	7670	2659	249	1671	544	10162	1155	2282	
+
+V 48   3407	*	6100	5242	5105	5819	*	2789	4925	3961	5972	4937	5678	4683	7082	4587	5377	1399	*	5884	48
+       25	5882	*	2198	355	2887	209	10194	1359	2000	
+
+R 49   5562	*	5270	6040	4722	5441	5471	3978	3415	3447	5345	6950	5379	4853	2196	4943	4113	3143	5347	3884	49
+       32	*	5525	*	*	*	0	10194	0	1850	
+
+L 50   3702	*	7092	6845	2801	4674	7168	3124	6601	2187	5323	6950	7229	5841	6938	4450	4846	2744	*	3684	50
+       34	6007	7031	2271	335	1151	863	10170	1489	2322	
+
+G 51   6110	*	3626	4626	4752	1050	*	4818	3973	4912	7019	*	6047	6782	4540	4674	4860	4792	6470	6002	51
+       32	*	5528	*	*	1167	850	10215	0	1824	
+
+E 52   3727	*	3986	3365	5980	4000	5342	4207	4570	4466	4860	6569	4384	4646	4352	2842	3973	3260	6681	5590	52
+       21	*	6096	*	*	2656	249	10221	0	1922	
+
+D 53   3736	*	3827	4813	4270	3746	3831	4434	6860	3736	6991	4578	5062	5328	4307	3810	3811	3993	5308	3229	53
+       35	6899	5977	3585	126	2043	401	10211	1009	2094	
+
+N 54   4655	6127	2592	4239	4872	3612	5013	6458	4308	5299	*	3036	4461	5065	4324	3432	4174	3730	*	5469	54
+       7	*	7719	*	*	*	0	10184	0	2125	
+
+I 55   4017	5254	5888	4835	3699	*	*	3176	4455	2494	5237	6850	5390	4955	4052	4426	3731	3119	5129	4954	55
+       53	4805	*	2376	309	2161	365	10184	1784	2270	
+
+N 56   4497	6933	3148	4965	4734	3564	5070	5401	4248	5312	*	3426	4322	4950	4004	3598	3216	4006	5772	4614	56
+       152	6666	3472	3700	115	*	0	10185	1071	1967	
+
+V 57   4590	6649	3960	4453	4396	5080	5680	5707	4055	4265	5347	5238	3554	4714	3448	3018	4383	2757	6782	5922	57
+       192	6742	3118	1585	585	2971	197	10032	1005	3601	
+
+V 58   4463	6620	4008	4250	3828	3915	*	7107	4261	3734	5722	3883	4014	6743	3912	3350	3713	3446	6548	4123	58
+       38	5279	*	2061	395	1171	847	9933	1283	4839	
+
+E 59   3210	*	2931	3456	5685	3393	6172	4747	4624	5766	5415	4248	5316	4506	4287	3041	3730	5234	*	5311	59
+       126	4544	4611	2711	239	1897	451	10057	1698	3301	
+
+G 60   3578	*	3451	3324	5890	3028	5363	6842	4288	5893	6705	4466	3858	4047	6021	3599	3272	4305	*	4376	60
+       149	4346	4361	1334	729	4427	69	10040	1758	3372	
+
+N 61   4775	5002	2814	4349	4882	3198	4756	*	5468	5199	5868	3333	3364	5080	5126	3616	3556	5112	*	4505	61
+       67	5153	5840	1626	565	591	1573	9985	1365	4000	
+
+E 62   3407	5831	3850	3283	4860	3153	5802	5101	3806	5416	7181	4354	4979	5322	3506	3419	4079	5306	5178	5562	62
+       141	4025	4980	3756	111	*	0	10138	2084	2284	
+
+Q 63   4494	*	3101	3305	6787	5814	5412	4079	3262	5088	6884	5362	4817	2362	3726	5209	3844	4591	*	5779	63
+       53	6852	5200	0	*	1159	857	10102	1011	2866	
+
+F 64   4507	5276	4408	4576	4095	5377	5487	3464	5529	4259	4326	5391	6778	4812	3648	3775	2879	3336	6811	4143	64
+       35	5950	6980	1852	468	1792	492	10140	1156	2494	
+
+I 65   3400	*	4529	*	3865	5994	4215	3421	5394	2906	7975	5835	5363	5897	2918	4955	4025	3218	*	3695	65
+       0	*	*	2322	322	976	1024	10152	1000	2190	
+
+S 66   4218	*	5285	4253	6126	3277	4872	6111	3068	4620	6070	3583	3605	4100	3713	4097	4294	4370	6502	4102	66
+       30	5596	*	1005	995	*	0	10215	1356	1523	
+
+A 67   3161	*	4849	5663	5831	4464	5227	1952	*	*	7289	5045	6154	*	5818	4534	6299	1496	7165	*	67
+       13	6839	*	1000	1000	1122	888	10215	1022	1523	
+
+S 68   3459	*	3398	3147	5802	5810	4942	4172	3551	4421	*	4764	5257	4343	4498	3012	3315	5174	*	4762	68
+       14	*	6739	*	*	*	0	10218	0	1211	
+
+K 69   5019	*	5352	3249	6899	6009	3454	*	2579	6004	6896	4999	5880	3781	3411	2853	3693	4175	4703	6899	69
+       65	7045	4780	2000	415	1622	567	10210	1015	1389	
+
+S 70   3752	5859	7170	6712	2954	*	7060	2060	5495	5320	5449	6995	*	5748	4858	4743	3974	1983	5969	6079	70
+       49	5282	7054	3802	107	1855	467	10173	1525	2031	
+
+I 71   4567	5242	7165	4658	4041	*	3669	3061	5179	2686	5927	7181	6097	7323	4447	4841	3922	3112	5421	3148	71
+       7	*	7735	*	*	*	0	10179	0	1857	
+
+V 72   5092	6694	*	7063	4772	7004	5101	2329	4697	3362	4727	4898	3710	5122	5874	4077	3964	2516	6768	4495	72
+       21	7298	6959	1000	1000	1213	814	10174	1020	2007	
+
+H 73   4902	*	5096	6966	6106	5032	1100	5452	4746	5329	5726	3764	3643	6015	6162	4080	7052	6957	7140	4357	73
+       70	6080	4954	2413	300	2411	300	10196	1320	1685	
+
+P 74   5467	*	5542	3209	6590	5822	5914	*	3748	7048	7062	5474	1027	5433	4822	3156	7287	5428	*	*	74
+       116	5552	4152	0	*	2192	356	10173	1363	2231	
+
+S 75   4894	*	2622	3353	4991	3335	5329	5332	3588	4313	5934	3007	6640	3592	4466	4139	6060	4852	*	7151	75
+       68	*	4451	*	*	3946	97	10240	0	3083	
+
+Y 76   5739	5864	6844	*	1829	7070	4310	6744	6960	4070	6871	5815	5974	6709	5719	5230	6648	6959	4803	1366	76
+       163	3545	5564	1145	868	4325	74	10254	2398	3698	
+
+N 77   6540	6615	2276	3625	4842	5084	5273	*	4579	4501	*	2655	6645	4834	3078	3675	3971	4534	*	6993	77
+       61	5451	5766	1204	821	2642	252	10100	1258	3914	
+
+S 78   3273	*	4396	3281	4805	3466	4708	5786	4118	4516	5098	4877	2973	4886	4450	4011	4502	5347	4560	5723	78
+       51	5939	5785	4589	61	2200	354	10257	1153	3766	
+
+N 79   4531	6895	3795	3121	5805	2907	4494	5285	4536	6728	*	3925	3329	4328	4798	3704	3823	4893	6085	4617	79
+       67	5256	5700	1840	473	4058	89	10309	1345	3455	
+
+T 80   3536	7138	3514	4203	5910	3744	5323	5780	5906	4203	6765	4250	4105	4936	3815	2623	3223	4985	5804	5881	80
+       215	4038	3692	1752	508	1426	672	10297	2175	3649	
+
+L 81   5691	*	4860	4845	3622	3381	5439	4018	5308	3020	4945	4845	4079	4249	4488	4030	4750	4027	5667	3351	81
+       96	4181	6795	2825	220	1196	827	10199	1997	3923	
+
+N 82   4374	*	2679	3658	5219	3920	4350	5530	4218	5053	*	3794	5808	4342	4783	3200	3761	4450	*	3942	82
+       74	4551	7035	1698	532	337	2262	10278	1659	2852	
+
+N 83   4729	7017	3609	5626	4263	3612	3379	6850	5185	5433	5330	2150	5512	4851	4930	3419	5868	5773	*	3401	83
+       21	6102	*	2322	322	937	1066	10231	1164	1434	
+
+D 84   5801	*	679	5388	*	4367	5340	*	5823	6805	6183	2773	*	6904	5408	7222	6498	5939	*	6985	84
+       33	5455	*	4350	73	957	1044	10240	1351	1123	
+
+I 85   6079	7245	*	*	3983	*	*	1795	*	1706	5851	*	6004	*	*	7020	*	2056	6083	5332	85
+       0	*	*	*	*	0	*	10358	0	1000	
+
+M 86   537	5067	*	6822	*	4032	*	*	*	5886	5061	7146	*	6942	*	4249	7804	3444	*	*	86
+       0	*	*	*	*	*	*	10363	0	0	
+
+L 87   6001	*	*	*	5353	*	*	2205	*	1126	4260	*	6521	*	6836	*	7051	2283	*	*	87
+       0	*	*	*	*	*	*	10363	0	0	
+
+I 88   6918	5331	*	*	4467	6521	*	1877	*	1439	5374	*	*	*	*	7223	*	2116	6923	*	88
+       13	6836	*	3322	152	*	*	10363	1028	0	
+
+K 89   *	*	6903	2454	5474	7085	5015	*	1756	4606	6167	6146	*	3949	2615	5195	4368	3783	7210	*	89
+       10	*	7251	*	*	*	*	10363	0	0	
+
+L 90   6900	*	*	*	5080	*	*	3728	*	485	4441	*	6047	*	7566	6949	4688	4084	*	*	90
+       32	6906	6167	2000	415	*	0	10243	1011	1000	
+
+K 91   3341	*	2550	3459	6511	5789	*	5415	3565	5460	*	3242	5084	4476	4039	2988	3789	5912	*	5381	91
+       44	6120	6015	3401	143	*	0	10231	1135	1273	
+
+S 92   5293	*	3380	2565	*	3864	5080	*	3114	5877	*	3949	5520	4236	3992	2939	3693	5032	6138	5389	92
+       0	*	*	*	*	*	0	10208	0	1605	
+
+A 93   3300	*	2913	3598	*	5797	*	*	3791	5963	*	4089	1719	5206	3862	4048	4795	6190	*	6923	93
+       7	*	7765	*	*	2421	298	10208	0	1605	
+
+A 94   3471	*	7021	*	3257	*	5374	1974	5821	2282	*	7004	4772	*	*	5602	6678	2534	6871	4659	94
+       131	4450	4597	698	1383	1241	793	10327	1877	1621	
+
+S 95   3989	*	3633	3375	6977	4706	5912	6837	3640	4348	6940	3975	2974	3981	3889	4685	3187	3803	*	6805	95
+       336	5656	2414	1264	777	2065	394	10298	1284	2237	
+
+L 96   4368	5829	6623	5748	1812	5111	6737	3275	*	3469	4698	5167	4300	5671	5525	4666	5018	4536	6600	3232	96
+       148	3362	*	1895	452	1455	654	10354	2469	5143	
+
+N 97   3629	*	3194	4886	*	3817	7018	6798	3743	5784	6357	3268	4146	5151	5249	2563	2466	5756	*	*	97
+       49	5873	5950	975	1025	2021	408	10339	1134	3835	
+
+S 98   3647	*	2834	3137	6946	4125	4963	5189	3330	5227	*	3657	3282	5831	4066	3523	4959	5143	*	6898	98
+       0	*	*	*	*	1522	617	10237	0	3436	
+
+R 99   4689	7082	4190	5495	3995	3338	3610	*	5510	4732	*	3616	4923	4731	4218	3832	3511	4346	5965	2788	99
+       34	5422	*	1338	727	481	1819	10275	1280	2614	
+
+V 100  2700	*	6774	6874	4344	4873	5458	2363	6625	3178	*	6884	5613	7255	*	5629	3362	2375	5098	4948	100
+       47	4959	*	1546	605	*	0	10325	1537	1371	
+
+A 101  3874	6492	4777	3779	5456	4243	5883	4462	3508	3884	5868	5572	6885	3144	3078	3458	4225	4188	7207	4894	101
+       33	7763	5795	0	*	*	0	10325	1000	1371	
+
+S 102  3767	5718	*	4417	5381	6030	*	4631	6040	5045	*	7006	1067	4666	5325	4614	4489	4694	6438	4307	102
+       7	*	7739	*	*	1237	797	10287	0	1772	
+
+I 103  2286	*	5652	*	5108	6285	6497	1636	5345	3846	6000	7167	4569	*	6251	6123	6753	2337	*	7151	103
+       38	6852	5836	2000	415	*	0	10325	1012	1541	
+
+S 104  3917	1069	5622	5902	*	7059	*	5387	3861	5971	*	5465	3750	5415	6086	4118	4243	5048	6996	5621	104
+       0	*	*	1000	1000	608	1541	10289	1000	1894	
+
+L 105  7063	7010	*	7081	4237	*	6804	2579	*	995	4250	5602	*	5275	6692	5165	5195	3755	*	6916	105
+       36	*	5343	*	*	*	0	10327	0	1209	
+
+P 106  2821	4990	4763	4652	7074	4670	6762	7128	6104	4177	*	5026	1820	5750	5077	4170	5315	3947	3777	4755	106
+       78	5625	4956	1538	609	2632	254	10201	1463	1819	
+
+T 107  3433	*	3606	4270	5489	5576	5870	5155	4480	4431	6886	3667	3925	4324	3814	3288	2963	5377	5228	4695	107
+       140	3431	*	1410	681	879	1132	10286	2617	2306	
+
+S 108  3874	*	3148	3146	7007	4415	5832	5018	3971	4857	*	4338	4272	4002	3897	2766	3716	4882	*	5883	108
+       166	3198	*	1466	648	2201	354	10315	3085	1532	
+
+C 109  4289	6179	2789	3219	*	4660	5424	3798	4502	4332	5211	3840	3770	5089	4554	3463	3575	5588	*	5886	109
+       33	5467	*	1818	481	*	0	10317	1311	1383	
+
+A 110  3877	*	3531	3587	5412	6871	5785	4161	4929	3380	7165	5034	2490	6218	4385	4031	3678	3484	*	5518	110
+       86	4675	5734	2597	261	*	0	10317	1718	1383	
+
+S 111  3444	7060	3492	3353	5235	5536	5090	5230	3214	3336	5074	5823	3693	3992	3899	4151	4655	4793	*	5929	111
+       162	3239	*	1157	859	788	1248	10205	3086	1998	
+
+A 112  4129	*	4281	3912	5857	7056	5502	4456	3892	3218	6315	3437	3009	4927	4480	4350	3603	3712	*	4529	112
+       20	7331	7049	0	*	443	1919	10229	1000	1511	
+
+G 113  4470	7262	3308	5067	6890	1954	5099	*	5939	3583	*	3144	4120	4617	4299	4367	4987	7158	6635	3991	113
+       25	5843	*	1635	561	*	0	10342	1229	1179	
+
+T 114  3734	*	2745	3902	5932	4775	4819	*	3908	5431	4791	4487	7070	3505	3912	3525	2853	4677	*	5408	114
+       37	6902	5902	1585	585	*	0	10342	1000	1179	
+
+Q 115  4066	6072	3396	3892	4854	6916	6070	5494	3506	4377	6703	3594	3665	4191	4154	3673	3072	4092	6837	*	115
+       7	7762	*	0	*	1982	421	10311	1000	1541	
+
+C 116  3878	2692	5934	7033	3486	3294	*	4012	*	2509	4806	*	6797	*	6492	*	4249	2642	7073	4371	116
+       28	6193	7467	616	1525	*	0	10323	1148	1366	
+
+L 117  4681	*	6010	4637	4439	*	5104	4081	4649	3727	4900	4900	6226	3850	3812	4171	2400	3531	4705	3945	117
+       11	*	7038	*	*	*	0	10323	0	1494	
+
+I 118  3419	*	*	*	3906	5629	*	2779	*	2151	3964	6617	5971	5613	*	4317	3503	2398	6642	*	118
+       10	*	7175	*	*	1221	808	10308	0	1654	
+
+S 119  3222	4875	6882	6928	3868	4739	7590	4261	6082	3416	6128	5331	5052	5917	6196	3625	3270	2210	*	3838	119
+       9	7411	*	1000	1000	*	0	10336	1000	1466	
+
+G 120  4567	*	6099	5445	7142	714	*	8048	5678	5076	7056	4950	*	6616	7000	3647	3922	5469	*	5361	120
+       36	*	5333	*	*	1853	467	10336	0	1466	
+
+W 121  6071	*	6893	5011	2325	*	5822	4882	6777	4467	7043	5831	*	6049	7011	6745	*	5357	1522	2250	121
+       81	7149	4390	4755	54	3050	186	10207	1000	1896	
+
+G 122  4229	*	5020	5951	5343	1048	5857	4957	4651	6690	6305	3830	4227	7089	5185	3856	5875	6932	*	5217	122
+       119	5351	4195	2473	287	3619	122	10261	1518	2698	
+
+N 123  3677	5784	4785	4660	4869	5348	6463	4348	4198	3516	5908	5083	4591	5900	3007	3418	4080	4266	5171	3245	123
+       67	7004	4740	0	*	3051	186	10182	1031	3510	
+
+T 124  4567	6439	3354	6165	5231	3265	5299	4848	6774	4814	5236	3309	5715	4337	4278	3075	2702	4511	6575	5320	124
+       49	4912	*	1154	861	1399	688	10064	1649	3839	
+
+K 125  4425	*	3314	3373	5107	3436	6934	6937	4441	4396	*	2945	5015	5210	3488	2986	4328	4871	6417	5250	125
+       75	5665	5020	1611	572	*	0	10127	1236	2941	
+
+S 126  4057	*	3510	3721	4640	4982	4507	6698	4442	3624	5918	4516	3893	3635	5394	3278	3581	3471	*	6043	126
+       121	6811	3804	0	*	3115	177	10086	1177	3490	
+
+S 127  3627	*	2914	3074	5554	2592	6884	5299	4335	5186	5543	3484	6764	5221	4517	3425	4163	5585	*	6739	127
+       429	4309	2272	872	1140	1991	418	10028	1859	4243	
+
+G 128  3631	6908	4013	3577	6115	2203	4775	5007	3924	5591	6457	3527	3645	5583	4884	4633	5625	3915	*	5661	128
+       327	6635	2376	1000	1000	5431	34	9871	1000	5960	
+
+T 129  4247	5928	4467	4679	4711	2643	6113	4798	5243	5232	4780	3310	3087	*	6139	3350	3181	4586	*	5272	129
+       17	6452	*	0	*	752	1300	9456	1000	7325	
+
+S 130  3747	*	4498	2881	6828	3765	5912	5083	3253	5115	6751	3516	3567	4282	4242	3419	4369	4649	7155	6768	130
+       83	6553	4467	2585	263	3767	110	10090	1028	4263	
+
+Y 131  4153	6569	6677	5198	4710	3953	4760	5738	4096	3607	4702	4295	3148	3739	4454	3997	3433	4498	*	3733	131
+       40	5694	6954	0	*	1946	433	10083	1147	4659	
+
+P 132  3522	*	4938	3304	5453	3514	6692	4314	4695	5356	5217	4005	2874	5279	4705	3063	3412	5188	7063	7038	132
+       0	*	*	*	*	1403	685	10045	0	3945	
+
+D 133  3503	6831	3907	3255	7023	3362	5995	5806	3459	4513	6752	4518	3710	4319	4767	3287	3578	5694	*	4772	133
+       75	6264	4742	2000	415	3914	99	10258	1103	2897	
+
+V 134  4219	6054	4868	3818	4925	*	6957	4858	4321	4293	5188	3868	4337	3633	3544	3155	3404	3537	6668	4830	134
+       0	*	*	*	*	600	1555	10178	0	3362	
+
+L 135  5847	*	*	*	4360	5479	6095	3290	6000	1236	4182	*	3711	5873	5858	4974	5379	3477	*	4538	135
+       10	7243	*	2000	415	*	0	10153	1000	1773	
+
+K 136  4343	*	6057	3801	6148	5348	4347	4332	3730	4163	4766	4501	7190	3006	2211	4515	3663	6934	*	4786	136
+       23	*	5952	*	*	*	0	10153	0	1773	
+
+C 137  4562	5697	5936	3747	6095	4769	5099	5047	3218	5595	4442	4859	4828	4060	4013	3035	3438	4668	4451	3800	137
+       22	6964	7151	3000	193	2054	398	10143	1011	2091	
+
+L 138  3113	*	4843	4155	4424	4362	5079	4521	4313	3430	5217	4905	5775	5473	4568	4419	3194	2999	6057	4551	138
+       0	*	*	*	*	*	0	10142	0	1932	
+
+K 139  5619	6654	3526	2640	6000	4729	6044	6095	3774	5401	6033	4153	3966	4597	5098	3271	3164	4129	*	3959	139
+       12	*	6934	*	*	2789	225	10142	0	1932	
+
+A 140  3840	*	*	4846	4033	5562	5883	4044	5432	2481	3720	4830	7156	*	4292	4689	4058	2109	*	4900	140
+       68	5655	5258	2821	220	1517	620	10141	1277	1929	
+
+P 141  4214	7126	4291	4992	5938	4837	5332	5042	3345	5075	6945	3161	3316	4406	3268	3196	4331	4171	*	4785	141
+       30	6213	7168	1478	642	1577	589	10119	1362	2078	
+
+I 142  4170	*	6823	4969	4874	4632	6000	2409	5015	2676	5300	6071	5281	5293	5725	4808	3459	2518	*	5241	142
+       47	5423	6854	1655	551	*	0	10168	1294	1844	
+
+L 143  4741	*	6126	5031	5025	4997	6997	2578	4710	2703	4000	5533	6776	5452	4267	5471	4767	2253	*	4276	143
+       38	5729	7067	1769	501	1763	504	10151	1208	2017	
+
+S 144  3602	*	3277	3632	*	3902	6780	5821	4504	7083	*	3706	2609	6885	4647	2690	3718	4953	6938	5139	144
+       21	*	6093	*	*	983	1017	10182	0	1826	
+
+D 145  4698	6966	4330	4750	5070	3947	4506	6935	3999	3929	5031	4125	4153	3941	2653	4321	4141	4105	6897	4315	145
+       52	*	4810	*	*	*	0	10323	0	1645	
+
+S 146  3437	*	3070	2921	7047	4263	5938	5033	3234	*	5424	5272	5221	4019	3716	2854	4421	6901	6537	5270	146
+       60	6878	4951	2000	415	*	0	10287	1000	2399	
+
+S 147  4098	*	3200	2319	4433	5123	6893	4530	4130	4333	5344	4001	5280	4039	4452	4441	3724	5191	*	5032	147
+       17	6430	*	3585	126	2930	203	10357	1047	2989	
+
+C 148  5205	471	6989	*	7063	4405	*	6651	6948	5967	5760	6694	5910	6701	*	6214	4379	6828	*	5064	148
+       53	5773	5818	2668	247	1576	589	10369	1362	2734	
+
+K 149  3488	*	3687	3737	5046	4593	4171	4975	3398	6791	6852	4217	5082	2871	2886	4427	4900	4747	*	6137	149
+       17	*	6404	*	*	*	0	10390	0	2443	
+
+S 150  4612	6860	4098	2866	5293	6123	4697	6848	2950	3951	5295	4289	4240	4561	3123	3838	4333	4534	6790	6028	150
+       49	7062	5266	2585	263	3643	120	10392	1000	2727	
+
+A 151  3836	*	4195	3209	4389	5689	5469	4315	3984	3197	5344	4645	5333	5279	3213	3792	3830	4441	8058	4654	151
+       56	5068	6961	779	1262	1090	916	10350	1597	3014	
+
+Y 152  4778	6176	5314	6783	3119	5099	4928	4233	7064	2673	4123	4282	4986	5003	4608	5078	4744	6142	4626	2421	152
+       134	4375	4625	2796	224	*	0	10264	1811	2365	
+
+P 153  3461	6641	4632	3577	6915	2575	5429	5118	4375	6844	6900	3891	2893	4647	3845	3541	5256	4862	*	5397	153
+       181	4327	3873	1779	497	3833	105	10322	2020	3086	
+
+G 154  5353	*	2650	4010	5643	3253	4712	6798	3203	3728	6625	3633	4971	4428	4540	4187	4288	3971	5956	*	154
+       391	2360	4544	1952	431	1869	462	10200	3966	4100	
+
+Q 155  6567	7002	4684	4189	3659	3821	5550	3703	4203	4076	5555	3727	3084	4636	4411	4583	3428	5297	6892	4161	155
+       244	2923	5389	1953	431	1244	791	10269	3179	3933	
+
+I 156  4308	*	3780	6837	3735	6722	6696	2573	6098	2290	5289	4489	5302	7105	5860	4536	5107	2616	6999	5403	156
+       65	4496	*	1248	789	2477	286	10362	1671	3294	
+
+T 157  4581	*	3680	4056	6593	3674	4573	5987	4855	3598	5356	3002	4344	4614	6107	3394	2530	6037	6956	6488	157
+       15	6639	*	559	1637	1691	535	10278	1178	2900	
+
+S 158  3852	7038	3112	2893	7286	4701	4515	6752	4083	4869	7054	3317	3721	4446	5232	2936	4182	5460	*	5874	158
+       0	*	*	*	*	*	0	10308	0	2308	
+
+N 159  4200	7499	3392	3408	5216	3827	4157	7124	4331	4587	*	3378	5338	4469	3845	3246	3413	4921	6992	5444	159
+       33	6104	6936	1000	1000	*	0	10308	1131	2308	
+
+M 160  4968	7483	5123	3905	4133	5970	3692	4117	3922	3612	3472	4837	7034	3165	7010	4001	4138	4113	6641	3791	160
+       51	4852	*	981	1019	3239	161	10304	1570	2447	
+
+F 161  4596	*	*	*	1928	5534	6768	2563	*	2238	4451	5837	6644	5793	4838	5480	6243	3742	*	4404	161
+       47	*	4977	*	*	*	0	10317	0	2288	
+
+C 162  5207	474	*	*	6028	6938	*	6647	5190	4630	7056	5849	*	6818	6826	4921	5349	5135	6688	6206	162
+       57	5351	6164	4098	87	3692	116	10383	1356	2887	
+
+A 163  1833	5382	5419	5334	4822	3296	*	5200	6371	3636	4617	6541	6934	4842	*	7031	3298	2489	*	6898	163
+       260	5239	2852	446	1911	3712	115	10278	1350	2983	
+
+G 164  3828	*	4686	4542	6712	2195	6540	4447	2814	5150	5536	6473	6203	5144	3121	4353	4055	4563	6384	4649	164
+       355	5292	2377	316	2347	2780	227	10133	1565	4837	
+
+Y 165  4898	*	3625	4103	3970	4138	5263	6512	6380	4927	6079	2912	3399	5481	3770	3403	5353	5427	6295	2925	165
+       245	*	2678	*	*	1946	434	9926	0	6371	
+
+L 166  4581	6528	4454	3060	*	4948	*	4061	5492	3962	5917	4775	2374	5304	4404	3170	4177	3528	*	4988	166
+       104	3846	*	521	1722	330	2290	9793	1931	6530	
+
+E 167  4175	*	3551	4645	4388	4449	4464	5976	4420	5791	7123	2942	3779	4385	4339	3337	3281	4386	6857	4874	167
+       29	7019	6387	0	*	2486	284	10400	1000	2399	
+
+G 168  4784	*	3728	3692	4594	2624	5714	7122	4210	5834	6121	3274	4239	4083	4477	3579	4064	4317	6720	4980	168
+       119	4011	5841	1840	473	1516	621	10403	2257	2410	
+
+G 169  4867	5045	4150	4425	5558	2763	6114	5259	5104	4630	7109	3596	3926	5563	4385	2946	3178	4665	6643	4659	169
+       44	5436	7174	748	1306	1665	546	10281	1297	2249	
+
+K 170  3797	*	4179	4375	6659	3422	7315	4469	3474	4473	6207	4472	4635	3602	3686	2831	3482	5077	*	5922	170
+       46	5488	6749	1000	1000	1502	628	10183	1271	1970	
+
+D 171  4108	*	2735	3886	5325	2477	6810	6964	5594	6870	*	4001	5032	4356	3367	3728	3165	4641	*	7023	171
+       50	5917	5858	3613	123	1527	615	10177	1177	1769	
+
+S 172  3134	7238	4879	4309	3974	7004	*	3965	5183	3001	7225	6849	4592	5026	4519	3601	2711	3305	6889	5000	172
+       92	5189	4860	1755	507	2315	324	10271	1361	1792	
+
+C 173  4144	786	4868	6966	4533	4703	6979	7216	*	4979	5329	5477	6766	6079	4871	4952	7050	5382	5899	7149	173
+       28	5686	*	3264	159	1984	420	10359	1233	2270	
+
+Q 174  3886	7525	4164	3855	4797	4041	4666	4985	4843	5394	4283	3687	3014	4315	4925	4286	3602	4361	5179	5065	174
+       34	6048	6911	5357	36	242	2698	10263	1148	1927	
+
+G 175  5500	*	4518	5432	4506	948	*	5910	6899	4503	6142	4515	4754	6860	5550	7100	5043	3698	7070	4945	175
+       29	6853	6469	0	*	1008	992	10357	1010	1183	
+
+D 176  4487	7606	1079	3980	5219	4986	6141	6689	7229	6075	5394	3640	*	4570	5089	4349	4625	6845	7424	5055	176
+       22	6062	*	2896	208	1638	559	10363	1159	1331	
+
+S 177  3952	*	7069	5899	4482	7008	5575	3950	6036	3851	6154	4759	4425	5757	5162	1303	3789	4603	6920	5852	177
+       0	*	*	*	*	948	1054	10361	0	1173	
+
+G 178  5612	*	6879	7135	*	188	*	5929	*	5762	*	*	6220	*	*	5125	6756	*	*	*	178
+       0	*	*	1585	585	0	*	10370	1000	1000	
+
+G 179  2984	5353	4172	5993	6683	1324	*	*	*	5980	5506	5170	*	*	*	2076	4335	*	6973	6880	179
+       7	*	7653	*	*	*	*	10371	0	0	
+
+P 180  2832	*	7115	6963	*	3216	*	5241	*	6740	*	6771	693	6961	*	5091	5133	7058	*	*	180
+       0	*	*	*	*	*	0	10332	0	1000	
+
+V 181  4036	7583	*	*	5017	*	*	3153	6459	1190	4653	6910	*	*	6771	7136	6546	2195	5908	5023	181
+       0	*	*	*	*	*	0	10332	0	1000	
+
+V 182  4942	*	*	5384	2871	7286	6662	2622	6459	2891	4679	*	*	4709	6184	5280	3749	2236	5318	4224	182
+       14	6662	*	1837	474	0	*	10332	1215	1000	
+
+C 183  4262	2739	4545	5622	5040	4923	4526	3543	5516	3855	5872	4697	7283	4669	4240	3360	4344	4003	5065	4100	183
+       296	2467	7682	1812	484	*	*	10333	4231	0	
+
+S 184  6068	*	2660	3413	6767	3510	5885	6185	4072	4613	6912	2845	5401	3665	3525	4375	4761	4080	*	5385	184
+       20	6205	*	2048	399	*	0	10315	1143	1223	
+
+G 185  4276	*	2938	3295	5933	2303	4513	7085	4967	5010	6894	2708	5437	7025	*	3762	4683	5402	5407	5017	185
+       861	1177	7117	2300	327	*	0	10315	7126	1223	
+
+K 186  5850	*	6914	3004	4522	6946	5389	4720	3158	5291	*	*	*	3654	2729	6925	3039	3336	*	2842	186
+       148	3362	*	2292	330	568	1619	10325	3070	1407	
+
+L 187  5427	*	*	*	5335	*	*	2774	*	1046	6758	*	*	3635	*	6902	6064	2326	*	6775	187
+       21	6121	*	546	1666	*	0	10330	1178	1022	
+
+Q 188  3541	4395	*	*	4532	6054	5428	2707	*	3597	5035	6959	*	6406	5266	5653	4266	1971	5748	2973	188
+       11	7023	*	0	*	*	0	10330	1019	1022	
+
+G 189  3061	*	*	*	*	264	*	*	*	6727	*	6775	*	6828	6453	6872	*	*	*	*	189
+       32	5864	7678	1585	585	*	0	10330	1192	1022	
+
+I 190  6893	*	*	*	7060	*	6084	1481	6734	2648	4298	6871	*	*	*	*	5318	1483	*	*	190
+       35	6917	5982	0	*	0	*	10329	1183	1185	
+
+V 191  3232	*	*	*	4703	4731	4166	3946	7517	2907	4758	3931	6025	5859	4917	4973	3828	2252	5757	4078	191
+       46	5922	6041	2337	318	0	*	10264	1162	1165	
+
+S 192  3450	*	5968	7427	*	4588	7053	4422	4806	4952	5388	4868	*	5755	7192	1094	3452	3652	*	*	192
+       49	7127	5264	1000	1000	0	*	10231	1003	1134	
+
+W 193  4072	*	6867	4681	2480	3171	4597	5428	4215	4128	5405	4535	5896	5157	5379	4542	4775	4934	3970	3112	193
+       44	5993	6116	2457	290	519	1726	10060	1184	1339	
+
+G 194  3595	*	4812	7039	6922	1326	5436	4398	4819	5187	6833	4700	6918	5411	5837	2805	4505	4320	*	*	194
+       25	*	5852	0	*	1655	551	10053	1000	1345	
+
+S 195  3732	*	4942	4102	4477	4540	3948	3494	5404	5185	5714	3793	3268	*	4847	3060	3132	4741	*	4632	195
+       582	1891	4007	1567	594	1942	435	10023	4978	1510	
+
+G 196  3980	5161	3912	3409	5540	3410	5812	7061	3975	7492	6663	2969	4724	4502	3596	3337	4440	4477	6829	4751	196
+       95	4628	5431	1344	723	1295	755	9964	1560	2478	
+
+C 197  4863	1007	5978	4059	5730	4172	*	6815	*	5342	*	5162	5812	6357	4498	3854	3738	5668	6832	6681	197
+       174	4216	4060	1871	461	2289	330	9986	1810	2238	
+
+A 198  4286	3870	3673	3963	5625	2262	6908	*	4684	6717	5054	4186	4258	6685	4744	2875	3512	5508	*	5512	198
+       73	6674	4649	0	*	3858	103	9902	1019	2929	
+
+Q 199  3963	4675	3997	3654	5956	2977	6526	5581	4145	4197	6693	3481	*	4324	4505	3340	3503	4316	*	4701	199
+       317	5767	2481	1322	737	1385	697	9870	1159	3394	
+
+K 200  3513	6291	4795	4240	5677	3949	6607	6583	4621	4607	*	4321	2862	4135	3990	3344	2826	4460	*	4984	200
+       163	3860	4708	2355	314	777	1265	9757	1861	4765	
+
+N 201  4745	4972	3233	3825	5089	2407	5028	6512	5089	6573	*	3135	5268	5082	4404	3399	3541	4773	*	5600	201
+       25	*	5888	1585	585	1716	524	9883	1031	3256	
+
+K 202  3983	*	3465	3453	4711	3370	5130	4559	4481	3384	*	3934	6650	4114	3965	4378	3774	*	5885	3774	202
+       21	6832	7501	0	*	1226	805	9918	1000	2856	
+
+P 203  3734	5974	5251	5137	4701	5288	6416	4048	6668	4210	4502	5635	1536	6826	*	4186	4676	4081	*	3588	203
+       63	5840	5298	595	1565	1468	647	9969	1164	2191	
+
+G 204  2865	*	3096	3551	4773	2957	5693	4173	5558	3994	7065	4437	5667	5784	5702	3168	4508	4595	*	5107	204
+       12	6899	*	2322	322	2797	224	9972	1007	2145	
+
+V 205  4502	5731	*	5225	5686	3635	*	3034	6852	2366	5249	6658	*	*	4782	4334	3791	1873	*	5767	205
+       0	*	*	*	*	811	1218	9996	0	1966	
+
+Y 206  3962	7084	7080	*	1688	4349	6986	4775	*	4545	6694	6605	6900	*	6876	5236	6835	4033	5855	1626	206
+       0	*	*	*	*	1474	644	10022	0	1335	
+
+T 207  3783	*	*	6964	6883	4390	*	3488	5786	3935	5327	4859	*	5266	*	3718	1550	2535	7092	7003	207
+       0	*	*	*	*	1019	981	9972	0	1156	
+
+K 208  4239	*	1980	6663	6715	5785	*	*	3163	6862	*	3302	4880	5242	2205	3838	5364	5744	6954	4785	208
+       13	6854	*	1585	585	*	0	9987	1008	1000	
+
+V 209  5085	*	*	*	5628	*	*	1800	6389	2451	6659	*	6660	*	*	*	3666	1461	*	7256	209
+       0	*	*	*	*	*	0	9988	0	1000	
+
+C 210  2771	6109	4473	5435	3986	3914	4796	*	5793	4622	6717	6923	4579	4549	3080	2604	4173	4722	5795	4314	210
+       0	*	*	3000	193	0	*	9988	1000	1000	
+
+N 211  3647	6991	4297	4591	4466	5218	4223	*	3940	5807	*	4976	2740	4293	3462	2717	4212	6500	*	3817	211
+       85	4133	*	873	1139	*	*	9990	1858	0	
+
+Y 212  5225	*	6788	5714	2444	*	2631	5867	6745	4540	5746	4935	*	4780	*	4865	5825	3173	*	1837	212
+       0	*	*	*	*	*	*	9984	0	0	
+
+V 213  3165	5948	6726	5156	5755	6055	5724	4341	3913	2111	5123	5944	*	5155	3147	4245	4434	3223	6745	4883	213
+       0	*	*	*	*	*	*	9984	0	0	
+
+S 214  4051	*	1952	3564	*	4845	4821	*	3775	5932	*	3331	3133	3882	4701	3657	6602	6957	6575	6723	214
+       0	*	*	*	*	*	*	9984	0	0	
+
+W 215  6696	*	6997	5769	2132	*	6833	*	*	6575	*	6662	*	6666	*	6344	*	*	604	5215	215
+       0	*	*	*	*	*	*	9985	0	0	
+
+I 216  5582	*	*	*	4211	*	*	550	*	2914	4693	*	*	*	*	4811	*	4836	*	*	216
+       14	6668	*	0	*	*	*	9959	1002	0	
+
+K 217  4813	6651	3580	2346	*	5833	5609	5711	3211	3046	5204	5753	6814	3717	3367	4616	5093	4322	6263	5195	217
+       0	*	*	*	*	*	*	9883	0	0	
+
+Q 218  4231	5418	2616	3416	*	3661	5462	*	3920	6678	6676	3997	5716	3283	3697	2659	4073	*	*	*	218
+       0	*	*	*	*	*	*	9782	0	0	
+
+T 219  3948	*	*	5416	4922	5574	6515	2978	4978	4426	6202	3660	*	3739	6377	4003	2614	2434	6154	4748	219
+       0	*	*	*	*	*	*	9755	0	0	
+
+I 220  6459	*	*	*	6179	*	*	1947	*	2453	2830	6005	*	*	6412	5298	3019	2210	*	*	220
+       0	*	*	*	*	*	*	9618	0	0	
+
+A 221  3649	*	4784	3677	6055	3017	*	*	2098	*	*	2390	5803	4840	3533	4325	6031	*	4697	*	221
+       0	*	*	*	*	*	*	9106	0	0	
+
+S 222  3594	*	2574	3122	*	4159	*	*	2179	*	*	4187	*	5323	5229	2426	3947	*	*	*	222
+       0	*	*	*	*	*	*	8363	0	0	
+
+N 223  *	*	2268	*	*	*	2371	*	3825	*	*	1121	*	*	3862	*	*	*	*	*	223
+       0	*	*	0	*	*	*	6021	0	0	
+
+//
+�HHsearch 1.5
+NAME  757d964661b62316dff0960e2a4a87ea
+FAM   
+FILE  757d964661b62316dff0960e2a4a87ea
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:41:44 2013
+LENG  201 match states, 201 columns in multiple alignment
+FILT  134 out of 974 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.0 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCHHHHHHHHHHHHHHHHCCCCCCCHHHHHHHHHHHHHHHHCCCCCCCCCCCHHHHHHHCCHHHHHHHHHHHHHHHHHHHHCCCHHHHHHHHH
+HHHHHCCCCCCEEEEEEEECCCCCCCCCEEEEECCCEEEEECCCCCEEEEEEEHHHEEEEEECCCEEEEEECCCCCEEEEEECHHHHHHHHHHHHHHHHH
+C
+>ss_conf PSIPRED confidence values
+9988699998999999999999998398889999999999999999957998433561220188867988877668999999999811389999999999
+9998578778689998870368877760799987875999838996068896279917887359889999836765399984559999999999999984
+9
+>Consensus
+xxxxxxxxdxxxxxlxyxQxxxdvlxgxxxxxxxxxxxLaAlxxqxxxGdxxxxxxxxxxxxxxxxxPxxxxxxxxxxxixxxxxxlxgxsxxxAxxxyL
+xxxxxxpxyGxxxfxvxxxxxgxxxxxxxxLgIxxxGIxxxxxxxxxxlxxxxxxxIxxxxxxxxxxxixxxxxxxxxxxxxtxxxxxixxlixxyxxxx
+x
+>757d964661b62316dff0960e2a4a87ea
+SDQNVDSRDPVQLNLLYVQARDDILNGSHPVSFDKACEFAGYQCQIQFGPHNEQKHKPGFLELKDFLPKEYIKQKGERKIFMAHKNCGNMSEIEAKVRYV
+KLARSLKTYGVSFFLVKEKMKGKNKLVPRLLGITKECVMRVDEKTKEVIQEWSLTNIKRWAASPKSFTLDFGDYQDGYYSVQTTEGEQIAQLIAGYIDII
+L
+>gi|72124671|ref|XP_790458.1| PREDICTED: similar to myosin regulatory light chain interacting protein [Strongylocentrotus purpuratus]gi|115963894|ref|XP_001177677.1| PREDICTED: similar to myosin regulatory light chain interacting protein [Strongylocentrotus purpuratus]
+------------RHLFFHDAKLLVKEEKIKAALKDAARLAALFTQAEKGDFgASN--DVELLagYFPQFADSE----EFKVTAQAEYARLRSMKVEHALL
+SLLREICEMDSYGLNTFTAKTCS-GQ----LCEVGVGAHGILVTNIETQD-CVKIPLSSVKRLSVEKRDCQMHYelddGHNfttdkmeltlhtkeiaegl
+yrsiteKVEFFTSETVSEPVKDQFVRD------
+>gi|47215134|emb|CAG02558.1| unnamed protein product [Tetraodon nigroviridis]
+--------NELYVSMHYNQVLPDYLKALLSIVpqgkaseqqLQQIARLAALQHRAKDSIYLPTV-----REAQECVPPPFYSKQNpqlwLNVTTQHMQHV
+QPLNPHQARAQFLGLVSAFPMFGSSFFYIQSCS-SASIQAPCVLAVNLNGLHFLNKDTHEAVVHFPLKEIqSTRTQRPtsgssyPYVDIMIGDLLNqRIT
+QLQLEQGLELCRVIAMHVENML
+>gi|195118260|ref|XP_002003658.1| GI21679 [Drosophila mojavensis]gi|193914233|gb|EDW13100.1| GI21679 [Drosophila mojavensis]
+--------DETSRHNYYLQLRHNVLQRELPrdHADQALVMLAGYALQADLGDAPTIaaaaeetheeqaatagtsrngrstgmtttlpkirkrlssynerm
+lrlstyvtstsqtatkreaapacpvpsNSSTDYFRMEDYLPATLHTDWAKSELRACHREHKGLAQAEAELMYIQQACSLhETINAHTFRMRLAK-SEVGV
+GSAWFVIYAKGIKILGSGAGAEPATFLWPHITKLSFERKKFEIRSGESRITLYAASDEKNKLLLTLCKDTHQ---
+>gi|324502376|gb|ADY41046.1| Pleckstriny domain-containing family H member 1 [Ascaris suum]
+-----SSETPAERLFLVHRMANEIVAGRIPMSNELAEELAAVYAQMHYGDIG-dSITDEQLRtVTISYFPAKMLDVGCertlRLNIQSHWTQLRGTSPAD
+CVRMILVVLRKWRFFGAHITEARMKMRNDE---RIFIALNDQGVHLLTVRQLDVIRSFPYHRLVSFGGYHNDFMLTVDRilppeaHPeetareRLTFSMP
+PRAIDQLTCHLAEYIR---
+>gi|241998718|ref|XP_002434002.1| focal adhesion kinase, putative [Ixodes scapularis]gi|215495761|gb|EEC05402.1| focal adhesion kinase, putative [Ixodes scapularis]
+-----YEKDPVLFAYFYKQVQSDFLVKCNDIDQDLAIHLCCLEIRRFWKDMTHAalDKKSNYelIekeiGLHKFLPANVITSNKvgllFCWISNAKVACS
+YYCHNTELFdksKLYGSFSIRLTFLFFSSLCLFQT-GWS--VPVELVVNQElGIGYLTDRKGLTNHIANFQQVQSIQtiv-NDasp-KpvLQLKIaGASE
+vrfPFLFPIpWAITGFSFLRLI--WGAEF-
+>gi|145541975|ref|XP_001456675.1| hypothetical protein [Paramecium tetraurelia strain d4-2]gi|124424488|emb|CAK89278.1| unnamed protein product [Paramecium tetraurelia]
+------YQDQVRMQYILLQFFEEIRELKFLLNREKLFLYIAFYLIIKRQEVK-------HENISKYLKSEIFDQIEphrwEVEVKRYITqinsQLLQL-E
+TEkkSMVylcqyqflknIYYEKEATMNIYKLEVHRELQAA-FSKLKVpDikgnIYIGLSQAKISLLTPLDKKVIQEIQYQEIDNIQSFPNKLVIRTKsnI
+P-EKGWKFITFQSYEIKMLINFYKEL--
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+S 1    *	1037	*	*	*	*	*	*	*	*	*	*	*	*	*	964	*	*	*	*	1
+       0	*	*	*	*	*	*	1729	0	0	
+
+D 2    *	*	400	*	*	2046	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2
+       0	*	*	*	*	*	*	2686	0	0	
+
+Q 3    *	*	*	*	*	*	*	*	2046	*	*	*	*	982	*	*	1992	*	*	*	3
+       0	*	*	*	*	*	*	2686	0	0	
+
+N 4    *	*	*	*	*	*	*	*	*	*	*	2748	1817	*	*	2821	*	*	*	1232	4
+       0	*	*	*	*	*	*	3893	0	0	
+
+V 5    *	*	*	2743	*	*	*	3606	*	2099	3768	*	*	*	*	*	*	2115	*	2116	5
+       0	*	*	*	*	*	*	5346	0	0	
+
+D 6    *	*	897	*	*	*	*	4540	*	3291	4493	4521	4658	*	*	4321	*	*	*	2832	6
+       0	*	*	*	*	*	*	6630	0	0	
+
+S 7    4426	*	4258	4943	5393	4412	*	3606	4041	2476	*	5304	2112	*	5052	3392	5135	5745	*	4438	7
+       33	*	5479	*	*	*	*	7741	0	0	
+
+R 8    3948	5653	4391	2409	*	6238	5860	*	3409	*	5961	5932	3480	3042	3311	3566	3510	4704	*	*	8
+       83	4163	*	434	1946	0	*	8325	1271	1000	
+
+D 9    *	5979	585	4206	*	*	4457	*	6203	*	*	3697	*	4617	*	4109	5126	*	*	*	9
+       23	5953	*	2000	415	*	*	8553	1035	0	
+
+P 10   4090	*	3595	3204	*	6204	5428	5092	4450	5249	*	6137	1223	4571	4087	4151	*	6383	*	*	10
+       0	*	*	*	*	*	*	8690	0	0	
+
+V 11   3673	6456	4585	4008	5832	6549	6643	3107	3947	4188	4380	5222	*	5744	5416	3979	3244	2157	*	5490	11
+       0	*	*	*	*	*	*	8775	0	0	
+
+Q 12   2091	6724	*	3032	4553	6653	*	5606	6488	4516	5004	*	*	4442	3893	4355	2296	4465	6497	4254	12
+       0	*	*	*	*	*	*	8883	0	0	
+
+L 13   5672	*	5634	*	3390	*	6624	3268	4660	1916	5560	*	*	3655	2435	6353	3684	3819	*	*	13
+       104	3841	*	4132	85	*	*	8963	1903	0	
+
+N 14   5742	*	3928	2580	5885	*	2658	4613	4140	4077	*	3485	*	3987	4067	6552	4659	*	6570	2801	14
+       41	6595	5803	0	*	*	*	9095	1014	0	
+
+L 15   *	*	*	6785	3223	*	5074	4377	*	1197	4220	5633	*	3835	5729	5806	5054	5824	4970	3190	15
+       0	*	*	0	*	0	*	9136	1000	1119	
+
+L 16   5329	*	7297	6141	2729	*	5230	3256	*	1651	3752	6710	*	*	*	4856	4767	5247	*	2535	16
+       0	*	*	*	*	*	*	9213	0	0	
+
+Y 17   4468	5915	*	*	1408	*	*	*	*	4710	*	*	*	*	*	*	6733	5151	*	1042	17
+       0	*	*	*	*	*	*	9257	0	0	
+
+V 18   4144	5516	3866	5443	4471	6794	4591	4352	5383	1683	5392	4627	5784	4437	4994	5200	5894	5023	4892	3613	18
+       0	*	*	*	*	*	*	9281	0	0	
+
+Q 19   7020	6485	4121	3818	*	*	3464	*	5893	*	*	*	*	527	6800	4906	6805	*	*	*	19
+       0	*	*	*	*	*	*	9281	0	0	
+
+A 20   2110	5884	*	5299	6427	5681	*	3043	*	1861	5455	6563	*	*	*	4574	4150	2814	*	5354	20
+       0	*	*	*	*	*	*	9281	0	0	
+
+R 21   3876	*	*	*	6427	6475	5890	4578	2077	3444	6803	7097	*	5246	1872	5786	4920	2887	*	5706	21
+       0	*	*	*	*	*	*	9281	0	0	
+
+D 22   5319	6986	3342	2504	4990	7232	3285	*	3095	5281	*	3884	4976	3506	3753	3687	5638	*	6759	4643	22
+       0	*	*	*	*	*	*	9259	0	0	
+
+D 23   3926	6823	1230	3188	5881	4873	4904	*	5313	3629	*	3602	*	4429	6827	4668	6483	*	*	6546	23
+       11	*	7031	*	*	*	*	9259	0	0	
+
+I 24   *	*	*	*	5314	*	6571	2169	*	2304	4968	6797	*	*	*	*	6897	1528	6131	2952	24
+       10	7222	*	0	*	*	0	9254	1005	1000	
+
+L 25   3865	7036	*	5963	5750	*	5708	3827	3968	1316	4908	6041	6743	7505	3917	4242	5446	3060	*	6811	25
+       0	*	*	1000	1000	0	*	9242	1000	1145	
+
+N 26   4601	5311	4134	2598	6776	6035	3871	7521	3661	4379	7143	3385	6801	4642	2573	3397	4257	*	*	5708	26
+       39	5221	*	832	1190	*	*	9259	1315	0	
+
+G 27   5263	6907	3765	3823	*	707	5614	*	6574	4743	*	5234	*	5210	*	3703	*	*	*	6612	27
+       13	6765	*	0	*	*	*	9264	1005	0	
+
+S 28   6913	5896	4756	3205	6792	5561	4075	6900	2681	4045	5702	4381	5293	4804	2169	4554	4458	6044	5642	4615	28
+       0	*	*	*	*	*	*	9264	0	0	
+
+H 29   *	4605	*	*	3100	*	5073	3161	*	1636	6494	6631	*	*	6136	5848	6111	3374	6648	2283	29
+       89	4067	*	181	3087	*	*	9264	1857	0	
+
+P 30   3853	6197	3998	5500	4799	*	6772	3551	4227	3316	7058	6071	2092	4358	4236	4892	4390	3644	*	5151	30
+       32	5915	7532	3322	152	*	*	9264	1142	0	
+
+V 31   4060	1867	*	7116	6841	5352	7132	3744	7031	3040	4174	5770	4625	*	5932	5325	6179	2123	*	6006	31
+       48	4939	*	1883	456	*	0	9260	1383	1000	
+
+S 32   5108	6798	3012	3640	*	4862	6871	*	4550	5488	6768	3849	3363	6682	4115	2215	2445	7030	*	*	32
+       51	4839	*	1824	479	*	0	9260	1516	1000	
+
+F 33   4955	6691	3346	2371	4812	6957	5455	4626	4596	3386	*	4262	3788	4962	3083	4064	4605	4703	*	6857	33
+       22	6034	*	3245	161	*	0	9260	1110	1000	
+
+D 34   3949	*	2035	1699	*	7197	5898	5183	3059	6841	5871	4781	6804	4298	4945	4842	7096	7230	6819	*	34
+       35	5825	7287	1226	805	0	*	9260	1286	1000	
+
+K 35   4205	*	2390	2493	5719	*	6794	5683	3968	3402	5982	4851	*	3257	5724	5359	3816	3293	*	*	35
+       38	5268	*	378	2117	*	0	9267	1306	1000	
+
+A 36   1439	3738	*	5625	*	5383	5468	4300	5938	3165	4633	6929	*	*	7114	3907	6885	3487	6794	3614	36
+       24	5903	*	1334	729	*	0	9267	1138	1000	
+
+C 37   2681	5375	*	5452	3824	*	7246	2503	*	2591	5790	6450	6253	5768	*	3829	5824	2554	5952	4565	37
+       13	6822	*	0	*	*	0	9267	1000	1000	
+
+E 38   5124	*	5869	2502	7562	6640	5084	5406	3086	2894	4111	*	5774	3075	3411	4958	3621	4699	*	5945	38
+       0	*	*	*	*	*	0	9267	0	1000	
+
+F 39   5744	*	*	*	4375	*	*	3465	*	425	4155	*	*	*	*	*	7532	5317	*	6469	39
+       21	*	6085	*	*	*	0	9267	0	1000	
+
+A 40   822	4012	5933	*	6797	3115	*	6458	*	5338	*	6798	*	7143	*	3666	4335	4859	*	5899	40
+       0	*	*	0	*	1419	676	9259	1000	1228	
+
+G 41   676	6362	*	*	*	3434	*	6557	*	6819	*	6202	6508	*	6887	2603	7121	5313	*	5644	41
+       12	*	6887	1000	1000	898	1110	9265	1000	1089	
+
+Y 42   *	*	*	*	2902	*	7082	3852	*	900	5677	*	*	6770	7555	6796	6706	6446	*	2400	42
+       8	*	7521	*	*	765	1281	9257	0	1118	
+
+Q 43   2262	5807	6560	5192	4930	5917	4193	3636	6742	2778	6012	7274	*	2311	4547	4626	6792	5924	6815	4186	43
+       0	*	*	*	*	*	0	9262	0	1108	
+
+C 44   2524	6101	*	*	4522	6188	4965	3340	5905	1483	3613	*	*	6994	5799	5474	5882	4123	*	4478	44
+       23	*	5971	*	*	*	0	9262	0	1108	
+
+Q 45   5194	*	*	*	4204	*	4517	4922	6486	5237	6682	5354	*	762	3198	6853	5106	*	*	4899	45
+       44	6709	5617	2322	322	1064	939	9253	1036	1377	
+
+I 46   1404	6989	6734	5799	5632	7338	6737	3061	*	3421	4642	*	*	6842	6370	4237	5722	2344	*	6912	46
+       22	*	6065	*	*	*	0	9219	0	1556	
+
+Q 47   4983	*	2612	1533	5182	6775	5812	5957	3927	3894	6785	5245	*	5170	5723	5040	4034	4257	6761	5613	47
+       24	*	5908	0	*	2962	198	9224	1000	1804	
+
+F 48   4699	5348	5385	4550	2232	6180	4185	4698	5053	2490	6971	6718	*	4904	5109	5648	4435	3840	6700	3102	48
+       29	6703	6640	0	*	1416	678	9203	1051	1952	
+
+G 49   4472	*	4757	4796	*	583	*	*	6346	4925	*	6482	4640	5076	5735	4869	5760	6993	*	6826	49
+       134	3965	5343	1180	840	1513	622	9223	2030	1708	
+
+P 50   5748	*	974	3033	*	6543	*	6826	5751	*	*	2929	4051	*	6969	3603	5653	*	*	6614	50
+       77	5306	5227	1597	579	3141	174	9199	1283	1955	
+
+H 51   5205	5127	5850	6602	2829	5672	3437	4860	4599	3635	6716	5786	5828	4548	5849	4123	6650	4366	4847	1989	51
+       68	4722	6926	1911	446	1448	658	9162	1445	2328	
+
+N 52   5305	5822	2883	4529	6708	5302	7060	5341	3225	4685	*	2555	3783	5106	5642	2978	3602	4215	*	6605	52
+       55	*	4731	*	*	2016	410	9205	0	1927	
+
+E 53   3626	*	4053	2565	6665	4880	7079	5354	4313	4703	*	4942	3374	4387	4208	2564	3465	5241	*	6882	53
+       50	5687	6125	1839	473	*	0	9103	1174	2290	
+
+Q 54   4260	*	2926	2920	4845	4486	4805	5347	3889	4943	*	3848	5747	4040	5109	3110	3848	4755	*	4502	54
+       211	5473	3136	1000	1000	2148	369	9095	1198	2500	
+
+K 55   5736	*	4770	3148	5109	6956	4638	4557	2396	4396	6587	3717	4697	3325	3848	5648	3477	4565	*	5144	55
+       453	3334	2553	990	1010	3283	156	8993	2364	3833	
+
+H 56   4547	5076	4363	3576	6293	*	1748	4837	4557	4446	6352	5148	5012	5308	5588	2695	4709	6262	5287	6306	56
+       205	3503	4495	2148	369	1184	837	8757	1983	5119	
+
+K 57   4508	6646	3468	*	5491	4293	5982	3304	3217	2785	6652	6589	4425	4781	4247	5417	3243	3098	*	6498	57
+       78	4239	*	1581	587	1490	635	8891	1693	4084	
+
+P 58   3006	5285	5881	4451	*	4684	*	5883	4085	4546	*	6799	1899	3972	4119	3664	3416	4307	6952	*	58
+       68	*	4434	*	*	2515	277	9060	0	3091	
+
+G 59   4954	*	2641	3050	*	2399	5266	*	3212	5693	*	5028	6793	4362	4193	3302	3823	5694	*	6714	59
+       287	5650	2639	626	1506	1679	540	9037	1133	3298	
+
+F 60   4913	5558	*	5736	2435	6687	4215	4330	6464	3147	5480	4874	*	5568	*	5422	6422	4440	5168	1653	60
+       386	2951	3244	811	1217	1731	517	8923	2512	4379	
+
+L 61   5656	6420	4236	3329	3100	4783	*	4116	4287	1588	6191	*	*	4565	5152	4056	*	3941	6352	*	61
+       166	3199	*	2158	366	376	2125	8926	2348	4460	
+
+E 62   3950	*	3080	2999	7128	4807	6615	5510	4022	3320	*	3247	5811	4694	3678	3229	4648	4278	6758	6949	62
+       177	3202	7191	1292	757	3007	192	9212	2720	1845	
+
+L 63   4968	*	4024	4483	4852	5198	5894	2820	5033	1910	4781	5635	4087	4564	*	4630	6928	3289	6548	5274	63
+       31	6172	7086	3714	114	1834	475	9238	1160	1861	
+
+K 64   3847	6611	4971	2342	4462	4349	5975	6979	2766	4517	6089	5793	4576	4953	3598	3679	3863	6049	*	5023	64
+       61	*	4587	*	*	2613	257	9331	0	1721	
+
+D 65   4060	6082	4031	3911	5380	5820	4305	*	2993	3921	6559	4253	5252	3422	2726	3330	3908	6173	*	*	65
+       22	6022	*	1253	784	1765	503	9268	1356	2371	
+
+F 66   5943	4241	*	*	1913	*	*	3673	6891	2256	6556	*	*	5650	*	*	6979	4117	6748	1923	66
+       0	*	*	*	*	*	0	9314	0	1952	
+
+L 67   5545	4898	6713	6832	3416	7039	6575	2467	*	1701	4976	*	*	5762	*	6814	6919	2293	6101	4623	67
+       25	6802	6885	1000	1000	*	0	9314	1000	1952	
+
+P 68   5322	*	6981	6698	*	5056	5907	*	6425	*	*	5482	332	6883	6820	4463	5677	*	*	*	68
+       11	*	6988	*	*	*	0	9300	0	2099	
+
+K 69   2924	*	3772	3420	*	7378	6555	5374	2706	4861	*	4438	3072	3348	3658	3316	7275	7267	*	5846	69
+       13	6842	*	2322	322	*	0	9296	1000	2218	
+
+E 70   4892	4521	4250	3295	7145	3877	3510	5324	4217	5928	5771	5915	4650	3682	3322	3458	4241	5433	3878	5468	70
+       118	*	3669	2585	263	2310	325	9296	1000	2218	
+
+Y 71   5840	5822	6975	6624	3430	*	6752	2893	5185	2609	3272	6256	6450	6729	5517	7124	4084	2191	7426	3868	71
+       195	4642	3530	3186	168	3978	95	9321	1558	3165	
+
+I 72   4054	6810	6656	5038	3916	*	*	2268	4960	1859	6832	*	4978	4090	4153	4259	5850	4001	*	5549	72
+       28	5722	*	2164	364	1516	621	9165	1148	4041	
+
+K 73   3453	*	3616	4036	5666	4530	5745	4567	2961	6401	6873	3892	5339	3786	3056	2940	4254	5886	6766	*	73
+       26	5807	*	2000	415	1090	916	9243	1172	3077	
+
+Q 74   4088	7024	4659	4277	*	4259	4650	5349	3059	3855	6073	2849	3914	3353	6049	3092	4677	4398	*	*	74
+       119	4279	5171	1396	690	2993	194	9305	1713	2108	
+
+K 75   4245	5865	4221	3706	*	5140	5222	4659	3217	4273	5093	3903	7070	4670	2850	3841	5910	3475	5904	3812	75
+       127	3689	7285	2400	303	1760	505	9352	2173	2384	
+
+G 76   4365	5984	4169	3683	4107	2870	4596	5989	3209	4739	5991	3979	4738	4825	4865	3403	4457	6965	3982	7125	76
+       1477	666	6568	2234	345	881	1130	9389	7429	2058	
+
+E 77   3277	*	6239	2566	5783	4242	6780	4737	3210	3793	7242	7543	5482	3822	2801	4971	4429	3767	*	5899	77
+       107	4223	5790	1848	469	2078	390	9384	1799	1594	
+
+R 78   4789	7529	3802	2787	*	4947	5668	7139	2413	4840	6788	5360	7026	2940	2880	4222	4079	4643	*	*	78
+       0	*	*	*	*	2743	233	9386	0	1742	
+
+K 79   3726	6981	3655	2592	*	7495	4468	7042	3209	3381	4825	4259	*	4670	2484	4110	5437	5494	*	*	79
+       39	5231	*	1385	696	*	0	9393	1316	1614	
+
+I 80   4033	*	6769	*	4829	*	*	1316	6039	2801	5245	*	*	*	*	5761	6583	1843	*	*	80
+       15	6565	*	2000	415	2434	295	9393	1033	1614	
+
+F 81   3281	*	*	4259	4462	6799	7666	3166	3754	2520	5699	4904	4435	4143	4527	4023	3847	4024	6607	5371	81
+       51	5287	6799	3679	117	*	0	9349	1347	1478	
+
+M 82   3503	*	3561	2721	*	4968	5382	6588	3512	4362	5719	4685	7186	3191	3261	3019	4185	6835	7140	*	82
+       0	*	*	*	*	*	0	9384	0	1635	
+
+A 83   2613	4684	*	3652	4917	5827	4115	3893	3969	3569	4072	5018	*	3054	4502	4848	5311	5638	6919	4291	83
+       0	*	*	*	*	*	0	9384	0	1635	
+
+H 84   7016	6533	*	*	3795	*	1289	4902	*	3417	7594	*	*	5360	5351	6371	*	5859	3168	2486	84
+       10	7233	*	2000	415	*	0	9384	1000	1635	
+
+K 85   3060	*	5950	3904	6186	5419	6657	6330	1961	6024	7099	4488	6318	3284	2806	3640	4390	5186	*	*	85
+       61	4595	*	1509	624	*	0	9384	1685	1635	
+
+N 86   3690	6885	3545	3738	7600	5037	6004	6138	2508	4930	6132	3537	6812	2969	3769	3055	4627	*	*	6923	86
+       14	6715	*	2000	415	*	0	9384	1003	1635	
+
+C 87   5553	4655	*	*	3539	6767	3399	3575	6199	1233	5224	4364	*	4635	5073	5279	*	4960	*	5448	87
+       57	4697	*	2236	344	*	0	9384	1720	1635	
+
+G 88   3053	5309	5853	3794	5377	4457	5228	4817	2672	6580	*	5240	3879	3693	2703	4120	4848	4376	*	*	88
+       139	3447	*	511	1745	2272	335	9384	2546	1635	
+
+N 89   4229	5869	4735	5067	6659	1086	6859	5555	4269	*	*	3360	5578	4321	5852	3795	4583	*	*	*	89
+       48	5437	6739	1657	550	*	0	9349	1253	1478	
+
+M 90   6737	5760	*	4250	6960	*	5374	3553	4457	1904	2682	4860	6568	3883	4936	5869	4038	3703	5859	5946	90
+       65	5430	5578	1229	803	2347	316	9393	1321	1625	
+
+S 91   6376	7256	3513	5614	7330	4670	7240	6622	4469	6359	*	3911	4095	7039	5964	1609	1945	5821	*	*	91
+       42	5136	*	1236	797	1396	690	9347	1299	1841	
+
+E 92   3605	*	4656	3533	*	6739	6050	7051	2912	6090	*	5738	2549	3213	3385	4441	3364	3899	6799	*	92
+       0	*	*	*	*	*	0	9349	0	1478	
+
+I 93   3038	*	4296	2682	6152	4383	4629	5044	4888	3525	5919	3551	5259	3936	4901	3550	3622	6093	*	6616	93
+       16	6505	*	0	*	526	1711	9349	1036	1478	
+
+E 94   5250	6858	2742	1942	*	6316	5419	5915	4722	4123	5807	4645	6968	2947	5328	4567	3702	4669	6007	6225	94
+       47	4961	*	1266	775	*	0	9395	1502	1047	
+
+A 95   685	3907	*	*	*	5823	*	6756	*	3402	*	7383	6759	5805	6077	4258	6879	3778	*	6954	95
+       12	6873	*	2585	263	*	0	9395	1000	1047	
+
+K 96   5999	*	5044	2557	6815	*	5237	4780	1943	4452	2829	7101	*	4062	3344	*	5213	4320	*	5436	96
+       13	6759	*	2322	322	*	0	9395	1009	1047	
+
+V 97   4646	5280	5897	4393	4743	5846	4708	3960	3458	2021	5866	5064	6815	6380	2918	4312	5009	5142	5923	4349	97
+       37	5313	*	2909	206	*	0	9395	1374	1047	
+
+R 98   3185	6989	4557	3512	7132	4957	4237	5172	2179	4190	4475	4610	*	3292	4160	3866	*	5955	6932	5679	98
+       14	*	6662	*	*	*	0	9391	0	1192	
+
+Y 99   6809	*	*	*	1399	*	*	4928	*	3543	5878	*	*	*	*	*	*	5319	*	1148	99
+       0	*	*	*	*	*	0	9371	0	1367	
+
+V 100  *	5796	*	6820	*	*	*	1969	*	920	4070	*	*	*	6806	*	*	3311	*	5643	100
+       0	*	*	*	*	*	0	9371	0	1367	
+
+K 101  3926	*	3463	2214	*	6378	4763	7257	2955	4978	*	3343	*	2819	4010	4479	4298	6966	7409	*	101
+       0	*	*	*	*	*	0	9371	0	1367	
+
+L 102  5981	5481	7200	3491	4410	*	*	2599	4148	1892	5737	7150	*	5236	4844	5986	3612	3609	7580	4148	102
+       13	6749	*	3459	138	1533	612	9371	1025	1367	
+
+A 103  1766	3128	*	6509	*	6754	*	3238	*	2838	6065	*	*	6762	*	5458	5024	2193	5100	*	103
+       25	5842	*	1805	486	808	1221	9391	1153	1192	
+
+R 104  4180	5476	6887	4636	5600	5027	5825	6990	5460	5352	4629	5977	*	2446	1941	2582	5828	4982	5359	6818	104
+       65	4515	*	0	*	*	0	9404	1647	1000	
+
+S 105  4305	*	4705	3344	*	4318	5087	6775	2407	5534	5494	4719	*	3165	3213	2898	3321	*	*	*	105
+       11	7085	*	0	*	*	0	9404	1000	1000	
+
+L 106  7031	4497	*	*	4255	*	4531	4974	5916	1405	4769	6186	*	5649	6216	3385	5309	4878	2631	5247	106
+       10	7199	*	0	*	*	0	9404	1000	1000	
+
+K 107  4897	*	3157	3068	7120	7224	5313	*	4225	5607	*	5200	1064	5367	6079	5093	5705	5846	*	6435	107
+       62	5285	5906	0	*	*	0	9404	1422	1000	
+
+T 108  6679	*	3874	5288	3866	3958	5739	5625	5533	2006	3691	5107	*	5183	6418	3284	2892	*	6984	3987	108
+       0	*	*	*	*	550	1658	9394	0	1309	
+
+Y 109  4703	5967	*	6736	1688	*	6010	*	*	6828	*	*	*	*	5862	*	5782	5042	6256	936	109
+       14	*	6736	*	*	*	0	9404	0	1000	
+
+G 110  4450	*	6420	*	6812	376	5319	*	5785	*	6684	5017	7170	5837	5364	5333	7400	*	*	*	110
+       0	*	*	*	*	808	1221	9391	0	1192	
+
+V 111  3042	3647	*	5605	5949	4306	6871	4732	*	3775	4327	*	6685	4696	4955	2417	4603	2424	7340	4614	111
+       0	*	*	*	*	*	0	9404	0	1000	
+
+S 112  3616	*	5028	2699	*	6078	3021	6024	4743	4651	7107	5882	*	5061	3544	3263	2190	5333	*	6029	112
+       38	5273	*	1449	658	*	0	9375	1300	1000	
+
+F 113  6087	5560	5765	*	2040	*	4932	3643	5087	2460	4857	*	8023	4789	4616	4371	5122	4183	4684	3440	113
+       14	6723	*	1000	1000	*	0	9375	1047	1000	
+
+F 114  *	6677	*	*	739	*	3137	6933	*	7172	*	6821	*	*	*	7107	6723	5431	7331	2271	114
+       14	*	6677	*	*	*	0	9375	0	1000	
+
+L 115  4339	4976	3356	2912	5939	6876	4162	7632	3608	3589	7072	4570	3470	4132	3567	4418	4740	5368	6815	4681	115
+       0	*	*	*	*	858	1158	9426	0	1178	
+
+V 116  2298	4027	6863	5745	6809	3374	*	3810	*	3525	*	*	7107	7074	7282	4913	6146	1447	*	6731	116
+       45	5031	*	0	*	*	0	9375	1391	1000	
+
+K 117  4878	7107	4316	3852	6007	5770	5311	5774	1955	4378	5662	5456	*	2980	4215	4818	3295	4139	6986	5023	117
+       63	5266	5923	1272	771	*	0	9375	1308	1000	
+
+E 118  5351	6099	2770	4445	4239	5972	5187	5851	4958	4190	4781	4211	4162	3499	3684	4590	4455	3483	7007	3819	118
+       87	4536	6030	688	1398	*	0	9362	1599	1388	
+
+K 119  3893	5603	4085	4219	4320	5602	5714	5556	2322	5051	5288	4567	5113	4472	3250	4109	4541	3453	*	5687	119
+       510	3545	2237	1981	421	*	0	9356	2203	1648	
+
+M 120  3735	4981	5085	2855	5087	5367	6326	6558	4190	4827	5061	3704	5715	4816	4005	3516	3294	3711	4758	4938	120
+       929	4802	1188	1511	623	1236	797	9054	1391	4563	
+
+K 121  5017	*	2247	3487	*	3815	5868	*	2531	*	6267	5722	4381	3730	3442	3092	6009	5160	*	*	121
+       106	4349	5527	1693	534	492	1792	8610	1270	6756	
+
+G 122  5015	6885	2967	5066	4334	1173	5721	6642	5640	*	6556	3382	6593	5626	6987	4054	5715	5609	*	5973	122
+       229	5602	2983	1590	583	1717	523	9314	1154	3398	
+
+K 123  *	5689	4646	5207	5724	4661	5007	6568	2671	4113	*	4683	2683	4132	3789	3365	3511	3937	6049	6730	123
+       358	5116	2389	1945	434	2142	371	9340	1291	4131	
+
+N 124  2997	6535	5648	3677	6421	5535	5682	4858	3164	4934	5311	2760	4263	4729	3560	3690	3380	*	6228	*	124
+       538	4391	1925	2288	331	3915	99	9095	1416	5305	
+
+K 125  *	5731	3689	*	5064	3715	*	5388	2405	3671	5004	4689	4381	3893	2576	3464	4523	5691	*	*	125
+       443	3308	2612	1541	608	2138	372	9013	1736	6636	
+
+L 126  5263	*	4410	3987	6218	3228	5292	6296	3971	3035	4989	3521	4204	4019	3805	3753	3426	5513	5354	*	126
+       61	5123	6296	1585	585	849	1169	8772	1130	6422	
+
+V 127  5455	5779	5040	4203	4393	4085	6579	3206	4182	3323	5166	4993	4823	4310	5123	6196	2973	2965	6773	4573	127
+       110	3773	*	945	1057	198	2962	9131	1862	4057	
+
+P 128  4652	6797	3148	3105	6861	5870	6842	5714	3845	6198	7242	5051	1709	4286	4911	3590	4287	5376	*	*	128
+       156	3282	*	2801	223	*	0	9367	2745	1344	
+
+R 129  3209	4430	7647	6583	4851	4688	6996	3575	5375	2044	6384	6861	*	5002	5111	5767	5320	2051	5917	5946	129
+       62	4569	*	566	1625	0	*	9367	1869	1344	
+
+L 130  4913	6760	*	5183	4948	7164	5025	2461	6151	2334	5875	5249	*	6897	6013	6163	3503	3502	3068	3489	130
+       30	6238	7093	705	1372	*	*	9390	1220	0	
+
+L 131  6929	*	*	*	5477	*	*	2239	*	754	6216	*	*	6665	6565	*	*	2934	*	*	131
+       9	*	7336	*	*	*	0	9392	0	1000	
+
+G 132  1932	5435	*	*	*	1055	*	6372	6590	5894	6714	6660	*	6995	*	3200	5337	5471	*	6528	132
+       0	*	*	*	*	872	1141	9399	0	1090	
+
+I 133  6076	5393	*	6579	6220	*	*	1252	*	2723	*	*	6765	*	*	7392	7087	1541	*	*	133
+       0	*	*	*	*	0	*	9397	0	1000	
+
+T 134  4168	4778	5374	5784	6651	2403	4483	*	5822	7093	6016	1937	7402	7240	4751	2477	3639	6534	*	*	134
+       13	*	6785	*	*	*	*	9390	0	0	
+
+K 135  3258	5016	4548	3527	4910	6354	4811	4261	3851	3982	6087	5529	2274	4283	4579	4201	5710	6175	6059	5033	135
+       0	*	*	*	*	0	*	9374	0	1043	
+
+E 136  5826	6744	2883	3772	6141	4858	3828	7339	3145	5271	5304	3719	*	3404	3031	3637	4326	*	*	4270	136
+       18	6356	*	0	*	*	*	9378	1057	0	
+
+C 137  5189	6216	6064	5114	6081	555	5348	*	4713	*	*	5560	*	5730	4830	4172	*	6761	6744	6976	137
+       0	*	*	*	*	*	*	9378	0	0	
+
+V 138  *	*	*	*	4252	*	*	1165	*	2499	4775	*	*	*	6539	*	6714	1941	*	7029	138
+       9	7327	*	1000	1000	*	*	9378	1000	0	
+
+M 139  3875	*	6723	5558	3464	7103	2701	4661	4919	5040	5341	5257	*	3919	4292	3355	3400	3450	6761	3551	139
+       58	5416	5996	460	1874	*	*	9378	1346	0	
+
+R 140  *	7094	*	*	2981	*	*	2254	7256	1812	4595	*	*	5452	5768	*	6495	1990	*	5666	140
+       12	*	6872	*	*	0	*	9300	0	1113	
+
+V 141  6914	5281	*	*	2668	5564	*	2857	7043	2242	4050	*	6758	*	5381	6683	5084	3775	5870	2269	141
+       33	5454	*	868	1145	0	*	9370	1287	1003	
+
+D 142  5595	*	1723	3841	*	6132	5471	6824	4144	5778	*	3013	5154	3535	3184	3371	4906	*	*	6974	142
+       41	7389	5514	0	*	*	*	9378	1000	0	
+
+E 143  3567	7255	5437	3321	*	6077	4013	4894	5044	3679	5548	4067	2595	4279	3606	3813	5075	4043	*	5299	143
+       46	5503	6779	376	2123	0	*	9355	1257	1257	
+
+K 144  4401	7307	3165	3815	6529	4431	5121	6716	2743	4190	7132	3266	7038	4023	3775	3782	3576	4669	*	6047	144
+       195	3359	5106	1410	681	0	*	9369	2502	1002	
+
+T 145  4975	5911	3538	3671	6814	4216	6753	5330	4685	4143	6052	3287	4881	4904	4984	2814	2228	5470	*	*	145
+       44	5418	7231	749	1305	299	2415	9294	1241	1427	
+
+K 146  4615	5917	5344	4629	6818	3684	4255	5632	1862	4847	4372	3779	7030	3879	3320	3853	5863	*	6813	5938	146
+       93	5194	4845	1904	448	*	0	9383	1283	1098	
+
+E 147  4479	6801	3678	1883	6070	5447	6602	4051	3544	4666	7054	4144	6990	3617	4593	3864	4209	4852	*	6490	147
+       224	3607	4022	1383	697	581	1593	9269	2280	1677	
+
+V 148  4428	5259	5698	4606	*	5860	5505	3893	4431	3082	6027	5270	3137	4252	5213	4088	4022	2212	*	5292	148
+       133	4158	4949	1191	831	393	2067	9396	1736	2132	
+
+I 149  6572	5253	*	5056	4041	6962	6088	2547	4861	1409	6108	*	6036	5539	5397	4834	4556	3482	7520	5619	149
+       104	4468	5376	1531	613	991	1009	9355	1587	1727	
+
+Q 150  3443	5379	4678	3693	4861	5279	4221	4323	4175	3182	5171	4080	*	3136	4442	5348	4185	3935	*	4421	150
+       0	*	*	*	*	252	2641	9368	0	1677	
+
+E 151  4607	5721	5121	3631	3534	5211	5045	5253	4087	4018	6967	5297	*	3851	3570	2771	2851	4479	*	5419	151
+       0	*	*	*	*	0	*	9375	0	1000	
+
+W 152  4678	4217	*	*	1736	*	5064	2840	6871	3132	*	*	*	6128	5992	*	6753	4461	3556	2786	152
+       0	*	*	*	*	*	*	9378	0	0	
+
+S 153  5358	6857	4039	3163	5755	4989	6802	7212	4183	5322	6792	3698	2073	4329	3207	3037	5125	*	7271	6654	153
+       51	*	4853	*	*	*	*	9305	0	0	
+
+L 154  *	*	*	*	2330	6520	*	6628	6596	2809	6375	*	*	*	*	*	*	5192	1590	1968	154
+       0	*	*	*	*	*	0	9232	0	1520	
+
+T 155  3401	5840	3646	4008	*	5276	4681	5989	4126	*	7033	3519	3975	3758	3395	2261	3798	*	*	*	155
+       0	*	*	*	*	348	2221	9232	0	1520	
+
+N 156  4513	7062	2819	2084	*	5718	3877	*	4437	5993	6135	3385	*	4426	3105	3245	5237	5837	*	*	156
+       24	6783	7047	2000	415	*	0	9299	1019	1000	
+
+I 157  *	5454	*	*	4314	*	*	975	*	2861	4295	*	6677	*	6522	*	6202	2429	*	6713	157
+       50	6755	5325	502	1767	1026	975	9295	1190	1139	
+
+K 158  5635	6948	4777	4464	*	4096	5062	3812	3208	4453	5841	6627	5838	3341	3133	2527	4157	3606	*	7124	158
+       81	4465	6739	1393	691	392	2072	9281	1730	1416	
+
+R 159  3570	5535	5278	4558	6747	4467	5781	6787	3178	5914	6164	2587	6598	4216	3932	2280	3570	6897	6860	*	159
+       50	5323	6815	1203	822	1066	937	9301	1332	1137	
+
+W 160  5118	*	6843	*	3119	*	6726	3220	6727	2259	6031	*	*	*	7031	*	4921	2213	2236	5131	160
+       8	7552	*	2039	402	1588	583	9283	1110	1296	
+
+A 161  3872	5752	4267	3105	*	3197	5385	4952	5373	4780	7036	3891	6525	4289	3938	2927	3227	5468	*	4158	161
+       18	6337	*	1585	585	*	0	9285	1057	1150	
+
+A 162  4395	5317	6675	6764	2797	4704	4451	4745	*	3857	*	5547	5326	4716	5814	2650	6855	3236	*	2338	162
+       0	*	*	*	*	1031	970	9285	0	1150	
+
+S 163  4695	5216	3422	4577	5253	4725	5627	5923	3243	5279	6957	3666	5762	5242	3535	2375	3497	4109	*	6645	163
+       13	6809	*	1585	585	0	*	9274	1000	1005	
+
+P 164  4692	*	2754	3744	*	3744	5659	*	2847	3965	6986	3793	3396	6814	3075	3786	*	5306	5031	6620	164
+       234	2738	*	1464	650	*	*	9266	3223	0	
+
+K 165  5881	6793	3113	4293	*	4583	4301	7227	1858	*	*	3113	5271	6054	3304	3729	3333	*	*	*	165
+       46	4998	*	2868	212	*	*	9325	1359	0	
+
+S 166  4262	5198	4254	4466	5223	5710	4254	4826	2437	6687	5526	5147	6547	4520	4384	2989	2650	5522	*	4799	166
+       118	3675	*	1633	562	*	*	9311	2022	0	
+
+F 167  6470	6676	*	*	1365	*	*	3086	*	1888	4820	*	*	*	*	*	6456	2851	*	5849	167
+       0	*	*	*	*	*	0	9273	0	1000	
+
+T 168  5837	5784	6012	3493	4409	*	4545	3848	4565	3573	4305	*	*	4698	5611	2648	2794	3219	5621	4906	168
+       13	6790	*	1820	480	0	*	9273	1122	1000	
+
+L 169  *	*	*	*	3366	*	*	1162	*	1791	4633	*	*	*	*	*	*	2979	*	*	169
+       90	4508	5896	1290	758	*	*	9275	1542	0	
+
+D 170  4027	7300	4733	2912	*	7473	5072	5873	2751	4203	5450	4716	6697	4434	3747	4626	3201	3007	*	4587	170
+       27	5764	*	1000	1000	947	1055	9260	1134	1124	
+
+F 171  4750	4607	*	*	2410	5695	6280	3924	5902	2576	5006	*	4171	6653	6689	4798	3146	2788	6534	4630	171
+       271	2544	*	1032	969	*	0	9263	3121	1000	
+
+G 172  4065	*	3472	4802	*	1835	4851	4964	3584	5927	6443	4333	5586	3817	3193	3641	6991	*	7145	6640	172
+       58	5489	5864	694	1388	0	*	9157	1192	1000	
+
+D 173  5086	6819	2739	3061	*	3975	4949	5301	4745	*	*	2558	5476	5078	5007	3123	3471	3969	*	6420	173
+       208	4037	3774	1906	448	*	0	9045	1724	1154	
+
+Y 174  4697	*	3659	3507	5262	4742	3662	4674	3455	2384	4923	4201	4123	4861	5388	4237	6100	5261	*	4911	174
+       655	2105	2915	2760	230	2326	321	9084	3419	2189	
+
+Q 175  5454	*	3517	2783	*	6387	5229	4720	2826	5399	4780	6457	3732	4214	4479	3075	3495	3753	*	*	175
+       585	1585	*	1423	673	503	1764	8703	3909	3311	
+
+D 176  *	*	3529	3757	5104	3531	4223	6531	3590	4369	5445	2913	4042	3383	3658	5314	3977	4829	*	6299	176
+       198	2960	*	389	2082	317	2342	9010	2594	1657	
+
+G 177  4108	*	3976	3821	*	3528	4504	4216	4001	3557	5610	5750	6425	3989	4002	3676	3618	2953	6533	*	177
+       173	3146	*	885	1125	0	*	9078	2291	1016	
+
+Y 178  4631	5421	6464	4002	2800	5078	4835	6341	2989	4018	6270	3536	5421	4664	5688	4219	3684	3402	*	4415	178
+       34	5430	*	1555	600	*	*	9093	1171	0	
+
+Y 179  5531	*	6150	*	1863	*	6272	2866	5688	2378	6271	6634	*	6747	6659	*	4864	4528	6053	2376	179
+       0	*	*	*	*	*	*	9093	0	0	
+
+S 180  4035	6583	4875	4130	5640	6524	5381	3937	4443	3049	4924	*	*	3486	3239	3154	2802	4192	6396	*	180
+       0	*	*	*	*	*	*	9093	0	0	
+
+V 181  4576	3096	4998	*	1618	6371	*	3079	*	2652	5523	5060	5845	6733	6104	5322	6446	3946	*	*	181
+       68	4439	*	0	*	*	*	9093	1450	0	
+
+Q 182  5088	6371	3283	2576	5491	4954	5651	6053	3698	5906	6270	6570	6214	3224	3722	3441	3851	3715	6464	4782	182
+       61	4587	*	1453	656	*	*	9093	1381	0	
+
+T 183  3662	5409	6339	6825	*	7146	6394	4335	5540	5340	5505	5678	5513	5484	6614	2420	1229	4259	*	*	183
+       34	5426	*	1116	893	*	*	9093	1164	0	
+
+T 184  3844	*	3965	3628	6053	4954	5553	*	3100	4751	*	4144	3178	5593	3518	2989	3301	4385	*	6302	184
+       65	4499	*	0	*	*	*	9093	1493	0	
+
+E 185  5474	6477	3135	3216	*	*	5616	*	4103	5133	4102	4608	*	1607	4070	4117	3875	6583	6104	*	185
+       0	*	*	*	*	*	*	9093	0	0	
+
+G 186  1356	3231	*	6287	*	2665	5796	4912	6597	*	5203	5075	4757	5222	4931	3737	*	4945	*	6634	186
+       0	*	*	*	*	*	*	9093	0	0	
+
+E 187  3586	*	4969	2485	5796	6574	5707	5558	2173	5421	*	5623	5339	3939	3238	3821	*	5539	6104	3853	187
+       0	*	*	*	*	*	*	9093	0	0	
+
+Q 188  3855	*	3197	2105	*	*	6330	6281	4139	3470	6253	4714	*	3667	3601	5582	5766	3676	*	3517	188
+       0	*	*	*	*	*	*	9035	0	0	
+
+I 189  4335	*	*	*	4851	*	*	912	6272	2902	3324	*	*	6037	*	*	5524	3309	*	*	189
+       0	*	*	*	*	*	*	9042	0	0	
+
+A 190  2941	5474	3880	6427	*	6559	5219	4842	4247	3011	6332	4238	*	5052	6384	3154	4042	3400	2927	6394	190
+       0	*	*	*	*	*	*	9042	0	0	
+
+Q 191  3969	5162	3086	3423	*	6194	4254	6318	3339	3536	5085	4829	*	3563	3670	2355	*	6614	*	*	191
+       0	*	*	*	*	*	*	9026	0	0	
+
+L 192  5339	*	*	*	3255	*	4765	3886	5118	767	4886	*	*	*	6356	6513	4402	4947	*	6257	192
+       0	*	*	*	*	*	*	9018	0	0	
+
+I 193  *	2410	*	*	4113	*	*	1441	*	2453	6348	*	*	6002	*	6235	6289	2987	*	5430	193
+       0	*	*	*	*	*	*	9011	0	0	
+
+A 194  3043	*	4672	4608	*	3831	6443	3984	3613	6724	6302	5031	6209	3797	2702	3293	3890	3369	*	6191	194
+       0	*	*	*	*	*	*	8962	0	0	
+
+G 195  3456	*	2621	2725	4917	2769	5031	6005	5223	6376	*	6065	*	3468	4928	3193	4200	*	*	5145	195
+       0	*	*	*	*	*	*	8855	0	0	
+
+Y 196  *	*	*	*	3987	*	5137	*	*	4047	*	4543	*	4182	5931	4898	5781	4777	6204	662	196
+       0	*	*	*	*	*	*	8822	0	0	
+
+I 197  5805	4692	*	*	4868	5869	2386	1927	5666	3847	3199	*	*	5163	5900	3975	4935	3951	5758	5994	197
+       0	*	*	*	*	*	*	8732	0	0	
+
+D 198  3805	*	3798	2837	4429	4680	4539	5604	3586	*	5696	3208	*	3259	3640	3956	3454	*	*	5928	198
+       0	*	*	*	*	*	*	8328	0	0	
+
+I 199  3186	5341	*	*	3262	*	*	3626	*	1472	3726	5324	*	3683	*	4080	5133	5263	*	5172	199
+       0	*	*	*	*	*	*	7757	0	0	
+
+I 200  *	*	*	*	3834	*	*	1803	*	2141	3005	*	*	*	*	*	*	2868	*	2688	200
+       0	*	*	*	*	*	*	5765	0	0	
+
+L 201  *	*	*	*	*	*	*	2727	*	856	*	*	*	*	*	2712	*	2799	*	*	201
+       0	*	*	0	*	*	*	3966	0	0	
+
+//
+�HHsearch 1.5
+NAME  75f1ddc04ebf9d5bc247ed264936c742
+FAM   
+FILE  75f1ddc04ebf9d5bc247ed264936c742
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 11:56:49 2013
+LENG  168 match states, 168 columns in multiple alignment
+FILT  142 out of 811 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  7.4 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCEEEEECCCCHHHHHCCCCCCCCCCHHHHHHHHCCCCCCCCCHHHHHHHHHCCEEEEEEEECCCCCCCCCCHHHHHCCHHHHHHHHHHCC
+CCEEEECCHHHHHHHHCCCCCCCCCCCCCCCCCEEEEECCCCHHHHCCHHHHHHHHHHHHHHHCCCCC
+>ss_conf PSIPRED confidence values
+9887569999899996799987885696246870169999997499965589889966887798988774347876121777777422888999999759
+98999849899998836666402665443488308995689957717999999999999998653379
+>Consensus
+xxppxxxxxxxvLilGxxPxxxsxxxgxyYxxxxNxFWxiLxxxglxxxxxxxxxxxxLxxxxixlxdvvxRxxxxxxxxxxxexxxxxxxlxxxixxxx
+pkxIxxxGxxaxxxxxgxxkxxxgxxxxxxxxxxxxvlPStSpaxxxxxxxkxxxwxxlxxxxxxxxx
+>75f1ddc04ebf9d5bc247ed264936c742
+MVEDILAPGLRVVFCGINPGLSSAGTGFPFAHPANRFWKVIYQAGFTDRQLKPQEAQHLLDYRCGVTKLVDRPTVQANEVSKQELHAGGRKLIEKIEDYQ
+PQALAILGKQAYEQGFSQRGAQWGKQTLTIGSTQIWVLPNPSGLSRVSLEKLVEAYRELDQALVVRGR
+>gi|294951287|ref|XP_002786911.1| conserved hypothetical protein [Perkinsus marinus ATCC 50983]gi|239901489|gb|EER18707.1| conserved hypothetical protein [Perkinsus marinus ATCC 50983]
+-FPPSIGDSPRVLILGSAPCEMSLEKGQFYGNPRNHFWAVMAYAmdDPTfPMLDFEARCSVLHSRGIALWNICdvfTRYKSSDATLHCEEYT----DIAG
+LLVEHpTIGYILCNGSASYDCMLKydlaaRLEVSTGLQPTPLSlatqargaaqavDLPvILKLPSTSPANAMadPVGTKGKVWKEKlQEAL-----
+>gi|326565388|gb|EGE15565.1| G:T/U mismatch-specific DNA glycosylase [Moraxella catarrhalis 103P14B1]
+-LPPFTPPNACVMMLGSFPPPPERwAMPFYYPNYNNDMWRILGLVFFDDAKrfidstnktFDQDAiEQFLTKTGIAIGDTAEqviRQKDNASDQFLQIVT
+P--ADIEKTLKQLpRCHAFITTGKKATEVLCqqfTSQKiPNIGEQVQlLIAnrRIDLYRLPSSSRAYPLAIDKKADFYRKVFETLGV---
+>gi|307106992|gb|EFN55236.1| hypothetical protein CHLNCDRAFT_134530 [Chlorella variabilis]
+-----GDAPLRLVIVGHNPSEHAWASSHFYSNPTNWFWRILRDTGIAPPAAisGAADDGKMPAvAGVGFTDVGSgAPGTDSSQFTAQDFEAWRPAFYQRM
+ATqarrasaaigctcgaCgAPCIVAFSGKRQFQELFaGaagggrgRskgaavaqaapaaagaagpplgegavaaaaapqqqqqqraptlqarrpRRVDTG
+RQwvlPEGWplpLDTEVWVMTSTSGAAPMTRQQRLAPWQALAERL-----
+>gi|325474169|gb|EGC77357.1| hypothetical protein HMPREF9353_01707 [Treponema denticola F0402]
+---AYVLENTNTLILGTFPGKKFTdpnkendKEDWYYGTDRNEFWALIEYAlGCKRNSlqTKNEKQKFLTEHKIGITDIIKKARRrqnnnLDINLNVIEI
+T----NLDFIIDKCkDIHTIILTSKDMYTRFFIpyyVKKYNaiFKedknKEPEtheekgkkiniyyyTFKGRPIRVVPLHSPARKNvSIKIKKALYKY--
+--------
+>gi|296444847|ref|ZP_06886809.1| Uracil-DNA glycosylase superfamily [Methylosinus trichosporium OB3b]gi|296257515|gb|EFH04580.1| Uracil-DNA glycosylase superfamily [Methylosinus trichosporium OB3b]
+------APGAPLMVLDFAPGEEDERSGEAFVGAEARLLDkMLKAIGQKR-------------ESAYLAYATPwRP-PGARELNAGEVTALQPFLRRHVEL
+AAPKILLILGDYAARAALGATDvakLRGQWFDYDAGASRPRALLASSLDNLLkTPALKRRAWRDLRA-------
+>gi|323452034|gb|EGB07909.1| hypothetical protein AURANDRAFT_64500 [Aureococcus anophagefferens]
+----------HTLILSTSSCSTDTFAGEYYARVDNAFWYIAGLRlGLTPERTmlgklnpannktahkipsnyaaafveehpkadYAQQCAALTGAGFGLW
+TVLSRCSVpdGHDKITAANSE--ANAIRALCEERGVtRVVLAEGTKCEQAFalFnedwlksglltlgpmdrlpggparfKQKKFDAVRGGAAAGGVELTV
+CISTQNAVKGLYADKRADWMR----------
+>gi|148269551|ref|YP_001244011.1| phage SPO1 DNA polymerase-like protein [Thermotoga petrophila RKU-1]gi|170288227|ref|YP_001738465.1| phage SPO1 DNA polymerase-like protein [Thermotoga sp. RQ2]gi|281411730|ref|YP_003345809.1| phage SPO1 DNA polymerase-related protein [Thermotoga naphthophila RKU-10]gi|147735095|gb|ABQ46435.1| phage SPO1 DNA polymerase-related protein [Thermotoga petrophila RKU-1]gi|170175730|gb|ACB08782.1| phage SPO1 DNA polymerase-related protein [Thermotoga sp. RQ2]gi|281372833|gb|ADA66395.1| phage SPO1 DNA polymerase-related protein [Thermotoga naphthophila RKU-10]
+------NLDTRIVFVGEGPGEEEDKTGRPFVGRAGMLLTELLrESGIRRE-------------DVYICNVVKCRPPNNRTPTPEEQAACGHFLLAQIEII
+NPDVIVALGATALSFLMdGKK-VSITKIRGNpIDwLAGKKVIPTFHPSYLLrNRsnELRKIVLEDIE--------
+>gi|255321596|ref|ZP_05362754.1| uracil-DNA glycosylase family protein [Campylobacter showae RM3277]gi|255301452|gb|EET80711.1| uracil-DNA glycosylase family protein [Campylobacter showae RM3277]
+------DKSAKVVFVFDAPNTAEDASGEFLAGDD-KFLqNLNELAGLKK-------------DEIYVTSLLKcK-P-AAKVPTNA-YELCEPYFSAEARL
+VAPKLIVALGEEVFYKMiKQSAqSFEtiRG-NI--MKFKHSALLATYSPTVVAkNPSKKELFFSDL---------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	1908	2810	2772	1170	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	3012	0	0	
+
+V 2    *	*	*	*	1498	*	*	5175	*	1128	5891	*	*	*	*	*	*	2799	*	*	2
+       0	*	*	*	*	*	*	6114	0	0	
+
+E 3    4399	6435	3218	3207	6684	5510	6245	*	3571	*	*	5020	943	*	6682	4806	*	*	*	*	3
+       44	5044	*	1093	913	*	*	6711	1134	0	
+
+D 4    4043	*	1727	*	6774	4649	*	*	*	*	*	*	915	6362	*	*	5388	*	*	5509	4
+       0	*	*	*	*	*	*	6677	0	0	
+
+I 5    6415	*	*	6657	2913	*	5144	1692	*	2840	5318	5132	*	*	5566	5721	*	2545	6446	3447	5
+       0	*	*	*	*	*	*	6732	0	0	
+
+L 6    5928	6961	*	5980	3940	4271	7019	2121	*	1646	*	*	*	*	*	6745	5044	2618	5916	3911	6
+       0	*	*	*	*	*	*	6833	0	0	
+
+A 7    3392	5974	2069	4960	5016	4962	5628	*	4542	5396	*	2724	2748	5727	4552	3574	6194	6787	*	*	7
+       23	5991	*	1000	1000	*	*	7639	1048	0	
+
+P 8    3552	*	4235	2532	*	5259	4374	*	2904	4524	*	5914	2392	4944	4093	3601	6327	5464	*	5534	8
+       0	*	*	*	*	*	*	7724	0	0	
+
+G 9    7112	*	2409	3039	*	2854	4408	*	3978	*	*	2121	4896	5636	4084	3861	5470	*	*	*	9
+       0	*	*	*	*	*	*	7724	0	0	
+
+L 10   1763	4642	*	*	*	*	*	6000	*	2009	6711	*	3554	*	*	2256	3572	6251	*	*	10
+       0	*	*	*	*	*	*	7725	0	0	
+
+R 11   5135	5852	2858	3893	*	7577	5063	6034	2199	5944	*	4717	5054	7271	1871	4720	4311	7144	7143	6142	11
+       0	*	*	*	*	*	*	7787	0	0	
+
+V 12   4388	7221	*	*	*	*	7359	1726	5640	2203	*	*	*	*	*	6738	4529	1527	*	*	12
+       0	*	*	*	*	*	*	7787	0	0	
+
+V 13   5231	*	*	*	5144	*	*	4288	*	710	2708	*	*	*	*	*	*	3052	6788	*	13
+       0	*	*	*	*	*	*	7787	0	0	
+
+F 14   *	*	*	*	1777	*	*	1072	*	3097	4665	*	*	*	*	*	*	3711	*	*	14
+       0	*	*	*	*	*	*	7787	0	0	
+
+C 15   *	3744	*	*	7318	*	*	2672	*	1143	6631	*	*	*	*	*	7023	1778	*	*	15
+       0	*	*	*	*	*	*	7787	0	0	
+
+G 16   5272	*	4647	6475	6529	188	*	*	*	*	*	*	*	*	*	5414	6558	*	*	*	16
+       0	*	*	*	*	*	*	7787	0	0	
+
+I 17   7390	*	4632	2983	4287	*	4795	3143	6163	4054	*	5396	*	*	*	1978	2021	*	*	5126	17
+       0	*	*	*	*	*	*	7787	0	0	
+
+N 18   2383	*	4826	*	2257	6230	6490	5464	5898	3544	3101	2142	*	6902	*	5006	5246	*	*	7597	18
+       16	6486	*	3170	170	*	*	7787	1027	0	
+
+P 19   5270	*	*	*	*	*	*	*	*	*	*	*	104	*	*	5252	*	5855	*	*	19
+       0	*	*	*	*	*	*	7787	0	0	
+
+G 20   4727	5581	5584	5458	*	1259	6433	*	6321	*	*	6529	3899	*	*	1477	6738	6735	*	*	20
+       0	*	*	*	*	*	*	7787	0	0	
+
+L 21   4007	*	4900	3149	5062	5284	7195	3848	3955	2922	6760	6479	3117	5488	4162	5449	3460	2963	*	7075	21
+       71	4379	*	2592	262	*	*	7787	1427	0	
+
+S 22   3457	*	4438	2871	7254	5672	4125	4510	2546	5093	4603	4538	5253	4007	5093	4912	4336	4586	5659	4262	22
+       71	4763	6486	1376	702	*	*	7787	1332	0	
+
+S 23   4007	*	4565	2276	6488	5792	*	*	4823	5316	*	7042	6308	6578	*	879	5315	*	*	*	23
+       0	*	*	*	*	0	*	7765	0	1027	
+
+A 24   2724	*	2506	5542	5566	5817	*	4879	6281	2134	*	4216	*	6735	2945	5286	5326	4682	4521	6433	24
+       47	4972	*	1626	565	*	*	7787	1231	0	
+
+G 25   2804	5749	5026	1981	5363	5645	*	5111	3004	6165	*	4680	*	3744	2803	4724	5854	7276	*	5387	25
+       0	*	*	*	*	*	*	7785	0	0	
+
+T 26   2932	7148	5173	3685	5685	5771	6063	6271	3057	4502	4406	3670	6742	3502	4535	3624	3047	4771	*	5560	26
+       0	*	*	*	*	*	*	7785	0	0	
+
+G 27   4790	*	4699	4677	*	829	*	*	6232	5459	*	4545	5595	2842	5248	4460	*	*	*	6321	27
+       0	*	*	*	*	*	*	7785	0	0	
+
+F 28   4423	7382	*	3312	2115	6761	2409	5441	4303	5409	5384	6757	*	3264	3423	4736	*	5463	5614	6633	28
+       0	*	*	*	*	*	*	7785	0	0	
+
+P 29   4376	6254	*	*	3879	*	2884	*	*	5048	5100	*	2911	*	7343	7189	6332	4881	*	1048	29
+       0	*	*	*	*	*	*	7785	0	0	
+
+F 30   4881	*	*	6321	1986	*	*	*	6332	4989	*	*	*	*	*	*	*	*	*	606	30
+       0	*	*	*	*	*	*	7785	0	0	
+
+A 31   1445	5826	*	6332	6478	2335	*	6729	*	6058	4845	*	4418	4130	*	3165	5651	3339	*	*	31
+       0	*	*	*	*	*	*	7785	0	0	
+
+H 32   *	*	6232	*	6350	1850	1909	*	6321	*	*	1980	*	*	4578	3536	5898	*	*	5653	32
+       46	5651	6435	1000	1000	*	*	7785	1153	0	
+
+P 33   3846	*	4894	5445	5142	5418	5971	*	2900	*	6696	5753	1309	6776	3284	3631	6705	5618	*	5785	33
+       0	*	*	*	*	0	*	7767	0	1056	
+
+A 34   2991	*	4539	5460	*	3084	7524	*	5178	*	6561	4729	6492	2634	2240	2485	4648	*	*	7187	34
+       32	*	5505	*	*	*	*	7785	0	0	
+
+N 35   6372	*	5633	6414	*	2101	6469	*	6366	*	*	562	*	*	6300	6716	*	*	*	*	35
+       0	*	*	*	*	1144	869	7732	0	1156	
+
+R 36   3167	6718	4230	3582	6453	7094	3421	6598	4149	5226	5055	5999	7279	2939	1881	4316	6860	6669	6858	7518	36
+       46	5003	*	0	*	*	0	7755	1235	1050	
+
+F 37   *	*	*	*	551	*	*	5084	5687	3003	3472	*	*	*	6023	6726	6480	5806	*	*	37
+       45	5017	*	0	*	0	*	7755	1218	1050	
+
+W 38   *	*	6021	*	6461	5999	5865	*	*	2249	*	*	*	*	*	*	7249	6870	509	6338	38
+       171	3312	6492	0	*	*	*	7785	1926	0	
+
+K 39   4399	*	3892	4928	*	5874	6443	5435	2180	5484	*	4020	2768	5286	2272	4532	4837	*	*	4704	39
+       44	5068	*	0	*	0	*	7763	1216	1027	
+
+V 40   4135	4995	*	6194	5745	7503	*	1699	5000	2169	3392	6773	*	6492	5172	6493	4899	3006	*	*	40
+       0	*	*	*	*	*	*	7785	0	0	
+
+I 41   6194	*	*	*	3946	*	*	2374	*	866	2853	6542	*	*	*	*	5600	*	*	6637	41
+       0	*	*	*	*	*	*	7787	0	0	
+
+Y 42   2557	6601	6192	2835	4117	3083	3916	*	4883	4200	*	3933	*	5257	5230	3270	5289	*	*	3502	42
+       320	3950	2899	0	*	*	*	7787	1594	0	
+
+Q 43   3474	6978	3920	2718	5473	5362	5865	5102	3348	3433	7211	4237	*	4877	3542	2676	5736	6226	*	4971	43
+       0	*	*	*	*	*	0	7699	0	2231	
+
+A 44   2623	5667	*	6442	6953	*	*	2343	*	2502	*	6644	*	*	5957	3088	4142	2432	*	4676	44
+       938	1185	4708	541	1678	0	*	7699	4377	2231	
+
+G 45   4352	*	3870	4042	4637	997	6101	*	4576	6232	*	3420	6378	5873	5320	4498	*	5704	*	*	45
+       32	*	5527	0	*	0	*	7672	1291	1291	
+
+F 46   5319	5556	6613	4455	3192	*	*	2563	6599	1396	5110	4910	6236	4847	7139	7247	7427	3786	7469	5569	46
+       35	5737	7568	0	*	355	2197	7793	1135	1163	
+
+T 47   4261	*	2994	4567	4040	6096	7160	4289	3490	2967	*	5504	4136	6333	5066	4110	2275	4736	*	7288	47
+       88	5165	5010	0	*	965	1036	7790	1226	1030	
+
+D 48   5137	7350	3326	3932	4842	4691	7226	4755	3962	3899	7257	4467	2169	6120	2951	4400	4602	5789	6602	5884	48
+       300	5355	2615	2140	371	500	1771	7787	1173	1329	
+
+R 49   4335	*	3960	2377	*	5199	4397	*	3923	5029	5768	4890	2558	4800	3193	3734	4760	4526	*	*	49
+       330	3067	3553	1382	698	4098	87	7557	1965	2560	
+
+Q 50   3190	*	3105	2947	7218	4882	*	5790	3878	3032	*	5124	3167	5288	3403	4381	5391	4321	*	6209	50
+       277	2847	4819	2532	274	3110	178	7252	2190	3087	
+
+L 51   4081	5972	3731	4080	2990	*	6115	5366	6232	2556	5243	5725	4868	6131	4920	3478	2964	4219	*	4498	51
+       153	3316	*	2808	222	4313	74	7171	1787	3055	
+
+K 52   4140	*	3080	5263	5626	5131	4892	4322	4139	4942	*	5345	4803	6586	*	3187	3492	4725	*	1889	52
+       94	5840	4461	0	*	*	0	7167	1057	2961	
+
+P 53   2887	6425	3947	2182	6636	5219	7085	4717	4586	5729	*	4604	2136	4337	7276	6006	5697	5863	6611	4700	53
+       12	6962	*	2417	299	3777	109	6934	1040	3184	
+
+Q 54   3455	*	3344	1914	5729	*	5097	6528	3765	5295	6337	5586	*	2664	5291	3561	4395	7082	*	5021	54
+       52	4812	*	2585	263	*	0	7077	1158	3040	
+
+E 55   4528	*	2432	2889	*	*	6337	4725	2402	5729	*	4647	6681	4992	1838	6700	7004	*	*	*	55
+       152	3320	*	531	1699	*	0	7077	1712	3040	
+
+A 56   5770	4303	1930	4924	5534	5291	5710	3601	2472	3469	*	6214	*	4183	4447	7146	4585	4819	*	5799	56
+       64	4526	*	2587	263	*	0	7077	1250	3040	
+
+Q 57   2133	*	2947	4218	5236	4473	4662	7203	3772	7028	7094	3528	5899	3587	3854	3802	5141	5912	*	6646	57
+       0	*	*	*	*	*	0	7077	0	3040	
+
+H 58   3962	7101	4951	3983	1903	4392	6607	4213	3930	2591	5574	*	*	5258	3949	5719	4188	6863	6847	5703	58
+       11	7094	*	1585	585	*	0	7077	1000	3040	
+
+L 59   3944	4898	*	*	7159	*	*	3998	*	377	4570	*	*	*	*	*	*	5650	*	*	59
+       52	4807	*	2633	254	*	0	7081	1165	3040	
+
+L 60   6962	*	*	*	6362	*	4282	4068	2920	1903	5629	7210	2913	4947	3502	6698	3286	3702	*	*	60
+       59	4650	*	0	*	*	0	7081	1267	3040	
+
+D 61   3225	7280	2998	2500	*	4521	5669	7467	2937	5087	*	4580	7089	4418	2675	4015	4889	7021	*	*	61
+       65	4506	*	0	*	821	1205	7081	1242	3040	
+
+Y 62   4518	4918	4314	4683	4334	4912	2462	6840	3856	4285	7208	3091	*	5102	3291	4878	5784	6877	6934	3102	62
+       18	6357	*	0	*	582	1591	7600	1027	1910	
+
+R 63   *	*	3429	3689	*	1391	3309	*	2890	*	*	5014	*	4754	3841	4169	5706	*	*	*	63
+       0	*	*	*	*	859	1156	7780	0	1262	
+
+C 64   6399	6097	*	*	3913	*	*	1026	*	2620	*	*	*	*	*	*	6454	2596	7227	3838	64
+       0	*	*	*	*	*	0	7808	0	1075	
+
+G 65   1651	*	*	*	5249	1276	*	*	*	5939	*	6487	*	*	5829	6543	*	7446	*	2467	65
+       0	*	*	*	*	0	*	7808	0	1075	
+
+V 66   7006	*	*	*	2642	*	*	1882	*	1306	6047	*	*	*	6626	5419	*	3216	*	*	66
+       0	*	*	*	*	*	*	7787	0	0	
+
+T 67   4405	4283	*	*	5809	6496	*	5749	*	*	*	*	*	*	*	4084	1311	5867	1521	5247	67
+       0	*	*	*	*	*	*	7787	0	0	
+
+K 68   6029	*	816	*	*	*	4463	6632	7053	*	*	2322	5633	*	*	4337	4020	*	*	5476	68
+       0	*	*	*	*	*	*	7787	0	0	
+
+L 69   3964	*	*	*	*	*	*	2045	*	2259	5214	*	6486	*	*	5343	3695	1536	*	*	69
+       0	*	*	*	*	*	*	7787	0	0	
+
+V 70   3695	3862	*	*	4969	4556	*	2540	*	2443	*	6403	*	*	*	4949	5706	1636	*	4696	70
+       435	2054	5671	1553	601	*	*	7787	3298	0	
+
+D 71   4263	5905	4976	2588	*	4571	5475	4824	1589	5051	*	*	4174	4143	5571	3258	5473	7494	*	7615	71
+       519	1726	*	1217	812	0	*	7765	3593	1153	
+
+R 72   6202	5073	6703	4893	6492	5740	5768	4141	3369	*	*	*	*	6352	669	4910	7458	5366	*	7083	72
+       117	6717	3868	1000	1000	*	0	7782	1029	1005	
+
+P 73   3765	2908	5815	3507	7222	6909	7477	5238	3900	5951	7358	4948	1638	5086	4462	5262	4266	4745	*	7099	73
+       166	3744	4877	1263	778	1203	822	7565	1641	1701	
+
+T 74   4970	*	4863	6675	*	1760	*	5549	4044	5712	*	4445	2917	7467	4940	2937	2535	*	*	6979	74
+       175	*	3132	1000	1000	1344	723	7594	1291	1652	
+
+V 75   2808	*	5132	6686	*	4383	*	3911	4830	5865	6994	4590	3194	6873	3318	1630	5761	4528	*	*	75
+       195	3263	5503	773	1269	82	4179	7396	1883	2327	
+
+Q 76   3764	6899	3983	4624	6159	2494	*	*	4695	2498	6877	3377	5628	5445	3607	2738	6692	6970	*	6734	76
+       0	*	*	*	*	526	1710	7757	0	1192	
+
+A 77   2163	6793	1406	5245	6606	4328	6223	6333	*	6317	6068	3353	*	8121	5663	3381	5941	5870	*	*	77
+       21	7198	7056	1000	1000	*	0	7782	1000	1005	
+
+N 78   2965	*	3965	4796	*	5892	5245	6005	3132	5920	*	3806	*	4306	2996	1865	4201	7302	*	*	78
+       0	*	*	*	*	0	*	7809	0	1075	
+
+E 79   3588	*	1785	2554	6642	6122	5775	*	3882	*	6494	3020	5604	4630	7412	3784	4783	4806	*	*	79
+       0	*	*	*	*	*	*	7787	0	0	
+
+V 80   4846	*	6504	*	3958	*	*	1706	6733	2077	*	6753	2476	6539	6364	4108	*	4407	*	5648	80
+       8	*	7517	*	*	*	*	7787	0	0	
+
+S 81   4595	6386	4359	4369	6536	4381	6153	6753	2668	6493	5083	4056	7398	5168	3267	2502	2528	6417	*	6627	81
+       0	*	*	*	*	*	0	7790	0	1000	
+
+K 82   3628	6037	4140	3191	5161	7555	6484	3210	3053	4263	4706	2875	3479	5954	3982	4967	6319	6502	*	6222	82
+       0	*	*	*	*	0	*	7790	0	1000	
+
+Q 83   2697	7783	3270	2084	7602	5108	5623	4830	3875	6115	*	6036	4297	3937	4521	4108	4723	4092	*	*	83
+       52	6196	5525	4975	47	*	*	7787	1070	0	
+
+E 84   5005	*	3781	1128	*	*	6442	4442	4550	5458	7295	4363	6634	4108	4408	5207	4177	3988	*	*	84
+       163	5478	3568	0	*	0	*	7737	1156	1142	
+
+L 85   4126	*	*	5482	4532	6848	*	2841	4461	3459	4139	*	2927	5093	5023	5218	5335	2731	5811	3009	85
+       261	*	2595	*	*	3971	95	7808	0	1865	
+
+H 86   2889	*	3850	3064	*	6671	4836	4703	3547	4667	6599	4937	*	4326	3192	4286	3736	2842	*	*	86
+       286	*	2475	*	*	1095	911	7852	0	3143	
+
+A 87   2286	6002	6582	3041	*	5381	*	6331	4578	4500	6552	2718	2765	4136	5698	4273	4635	4853	*	6334	87
+       434	6790	1994	1000	1000	*	0	7608	1007	3278	
+
+G 88   3797	1657	5135	6148	*	2053	*	*	*	3899	*	2723	*	*	6507	5283	5241	*	4446	*	88
+       273	*	2535	*	*	1741	513	7223	0	4553	
+
+G 89   3128	*	*	6160	5368	4289	*	4003	3293	2737	6130	*	3919	6012	3457	3746	4845	3015	*	4012	89
+       0	*	*	*	*	1255	783	7479	0	4192	
+
+R 90   3469	6925	5497	4294	*	*	4953	6497	5618	4667	*	1733	2196	5706	3844	3875	5417	5278	*	*	90
+       12	6952	*	0	*	0	*	7703	1000	2997	
+
+K 91   4505	*	1626	5120	3828	7210	7428	4815	5187	4297	6611	3893	4677	7040	3532	7004	5674	4949	5275	3182	91
+       0	*	*	*	*	*	*	7789	0	0	
+
+L 92   *	*	*	*	2308	*	*	2151	*	973	5566	*	*	*	*	*	*	4561	*	*	92
+       14	6690	*	2000	415	*	*	7789	1012	0	
+
+I 93   3712	8297	3603	3242	4392	6525	5033	3759	4024	3361	5512	4157	5103	4274	3996	4319	4859	3893	*	4734	93
+       0	*	*	*	*	*	*	7789	0	0	
+
+E 94   2680	6357	3831	2984	6517	3791	6348	5989	3640	*	4663	5000	5492	3781	3250	3656	4199	5195	*	6407	94
+       0	*	*	*	*	*	*	7791	0	0	
+
+K 95   5859	*	*	3028	3999	*	4913	2973	3040	1820	6247	*	*	2905	5410	6061	6552	5783	*	5763	95
+       34	6695	6226	4954	47	*	*	7791	1012	0	
+
+I 96   5576	5144	*	*	3309	*	*	1457	7539	1623	5704	*	*	*	7199	*	6421	3158	*	7417	96
+       14	6701	*	0	*	*	0	7813	1012	1079	
+
+E 97   2462	*	3525	2617	7563	6317	5194	6580	3042	3574	*	5078	*	3974	3393	4265	5002	4795	*	*	97
+       49	6791	5347	4248	78	*	0	7813	1010	1079	
+
+D 98   3583	6764	4503	3293	5158	6383	5393	3930	3899	2623	5718	4815	6667	3805	2642	4603	4370	7188	*	6665	98
+       19	6866	7747	3211	165	2926	204	7782	1058	1340	
+
+Y 99   4045	4263	*	5985	4646	5825	3078	3484	6394	2919	*	4309	*	*	4856	4724	4699	3281	7237	2386	99
+       689	1397	*	107	3803	193	2997	7782	4461	1337	
+
+Q 100  3683	6177	5004	*	*	5093	5040	*	2361	*	*	2715	5946	3156	2384	3540	3953	*	*	*	100
+       20	6178	*	1315	742	0	*	7795	1134	1030	
+
+P 101  6046	5644	7443	*	*	*	*	1750	*	3351	*	*	1064	*	*	*	*	3550	*	*	101
+       36	5359	*	296	2431	*	*	7791	1195	0	
+
+Q 102  4245	6906	5480	3700	*	5784	4936	6517	1592	7006	6181	6019	6061	3808	1879	6171	5968	5564	*	*	102
+       0	*	*	*	*	*	*	7791	0	0	
+
+A 103  3386	6465	*	*	5539	5999	4838	2346	3902	2908	7553	5906	*	5985	4889	4665	3559	2509	5384	5128	103
+       0	*	*	*	*	*	*	7791	0	0	
+
+L 104  5029	*	*	*	6552	6890	*	1200	*	3137	6407	*	*	*	*	*	*	1360	*	*	104
+       0	*	*	*	*	*	*	7791	0	0	
+
+A 105  2574	2715	*	*	3149	4937	*	3225	*	2505	*	*	*	*	*	*	*	2151	*	5269	105
+       0	*	*	*	*	*	*	7791	0	0	
+
+I 106  2939	3148	*	*	1342	6061	7192	5171	8373	3341	6761	*	7104	*	*	6505	3193	4037	*	6238	106
+       12	6890	*	0	*	*	*	7791	1000	0	
+
+L 107  5868	*	*	5424	5549	*	6018	5020	8373	1978	5541	1635	*	*	*	4587	2752	3296	*	*	107
+       11	7070	*	1585	585	*	*	7791	1000	0	
+
+G 108  *	*	*	*	6088	160	*	*	*	*	*	*	*	*	*	3711	*	*	*	6187	108
+       9	7379	*	0	*	*	*	7815	1000	0	
+
+K 109  3836	*	5807	4417	6582	3257	*	5457	1604	4948	5199	4996	*	4330	2947	4403	4149	6337	*	6346	109
+       13	*	6767	*	*	*	*	7815	0	0	
+
+Q 110  4010	*	5015	3541	4820	3448	4537	5737	1913	4385	6724	5684	*	5388	4668	5377	2715	5171	*	5473	110
+       8	7555	*	0	*	0	*	7795	1000	1023	
+
+A 111  969	6218	*	*	*	6510	*	3565	*	6129	6475	*	3855	4632	*	3075	4847	3448	*	*	111
+       28	*	5709	*	*	*	*	7792	0	0	
+
+Y 112  2402	7010	7517	3502	3422	4189	5163	*	5336	4761	7086	*	5645	4713	5728	4789	3715	4975	3984	2473	112
+       39	5212	*	1321	738	*	0	7786	1214	1132	
+
+E 113  4300	*	3956	2336	4751	*	5683	*	2482	6696	7416	4751	*	2921	2906	4317	4294	5554	*	6568	113
+       57	4904	7544	1947	433	1388	694	7786	1448	1132	
+
+Q 114  2781	7108	7464	3507	4587	7593	5592	4659	4292	2406	5223	5711	6688	5050	4144	4958	3947	3576	7307	3695	114
+       151	4110	4585	1327	733	0	*	7796	1509	1112	
+
+G 115  4204	5504	*	*	1615	5250	7463	4192	6962	2265	4670	*	*	6126	7522	6694	6677	4077	4894	3022	115
+       861	3983	1373	1106	901	*	0	7668	1493	1352	
+
+F 116  5231	5061	*	6064	1800	*	*	4166	4298	2060	4237	*	6559	*	6104	4251	3440	4967	6569	5074	116
+       314	2745	4431	2588	262	3591	125	7257	2136	4500	
+
+S 117  5963	*	4477	4523	*	1117	*	5633	3025	5114	*	4368	6195	5996	4360	3539	4317	*	*	*	117
+       131	3789	6091	2828	219	3245	161	7330	1491	4379	
+
+Q 118  3884	6258	5309	3953	6648	3483	5444	4631	2376	4191	*	4899	5096	3485	3093	4960	5236	3453	*	*	118
+       252	3112	4487	3280	157	73	4344	7479	1607	4158	
+
+R 119  4778	*	5689	3661	5634	4117	5604	7104	2124	3920	7082	3639	4111	3951	2581	4884	4842	6589	*	7046	119
+       576	2074	3448	1448	658	0	*	7689	2967	1397	
+
+G 120  4081	*	4310	4310	6025	5979	6079	*	1253	*	6648	4565	4575	5971	2568	4361	4640	*	*	7189	120
+       105	4003	6963	1461	651	1489	636	7551	1420	1781	
+
+A 121  4162	6902	*	6283	2334	6925	3505	4701	5392	2889	5010	*	4574	5687	*	5418	4497	2797	6027	3163	121
+       143	5597	3763	1039	962	189	3023	7608	1467	1560	
+
+Q 122  3732	6737	3919	3549	3328	4993	5143	4299	3164	4709	7109	3959	6842	4212	3649	3803	7022	3704	7159	5212	122
+       713	2287	2432	985	1016	1114	895	7697	2670	1680	
+
+W 123  3754	5612	*	*	3325	3655	5422	3336	5074	3573	5381	6820	5265	5873	2956	5251	3774	4295	3867	3907	123
+       149	5832	3632	1809	485	2349	315	7688	1084	2911	
+
+G 124  5181	*	5385	5468	5583	649	6422	6824	4183	*	*	4863	4195	5521	*	5668	4961	5717	*	6593	124
+       346	3707	2872	1816	482	2059	396	7704	1498	2989	
+
+K 125  5878	6211	5810	3259	4713	*	6397	6636	2872	2200	6200	4115	3940	4217	3147	4514	*	6693	3710	*	125
+       129	5198	4103	0	*	316	2344	7452	1110	3531	
+
+Q 126  4560	*	5060	3501	4907	4595	4985	3857	4339	4548	6644	6095	4615	1537	4244	4936	5429	6705	6682	4887	126
+       229	5048	3100	675	1420	2316	323	7720	1189	1901	
+
+T 127  3848	*	4221	3101	6377	4370	5045	4254	6104	5253	*	4471	2368	4317	3560	3744	4351	3974	*	6012	127
+       426	5084	2146	856	1160	3902	100	7671	1140	2644	
+
+L 128  3240	5434	4502	2890	6067	3209	*	5526	5020	2611	*	*	4478	4604	3921	6651	4820	3734	5398	4146	128
+       430	3031	2887	2381	307	3126	176	7276	1663	3995	
+
+T 129  3853	*	4031	4298	*	4479	5141	*	3191	4473	*	3815	2601	4363	3885	3315	3440	4434	*	*	129
+       510	1796	6683	2493	282	990	1010	7241	2677	4363	
+
+I 130  3537	*	4809	6814	2841	6612	5770	2102	5739	3175	5363	6899	5664	*	4576	4834	4752	4253	3807	4369	130
+       169	3304	6782	2058	396	1332	730	7564	1684	3170	
+
+G 131  3793	6000	3989	3376	5334	2735	4566	5489	3390	4279	*	7148	3119	4632	4800	3801	4120	6630	5879	6407	131
+       125	3718	7115	1840	472	791	1245	7585	1867	2404	
+
+S 132  4268	7267	3409	3902	3669	2217	4511	6376	4271	5246	*	4029	5304	4914	3613	4261	4206	6545	*	4867	132
+       110	4099	6078	1245	791	1505	626	7729	1702	1631	
+
+T 133  3425	8117	5707	5767	6209	4036	*	2951	3407	2674	6215	6385	6718	5651	4966	3575	2954	3352	*	6235	133
+       49	4911	*	1515	622	579	1597	7707	1285	1524	
+
+Q 134  4667	*	3606	2708	6166	3813	4413	5682	3635	4790	6094	4472	3782	4384	3409	3694	3859	5547	*	6022	134
+       12	6881	*	1032	969	1292	757	7701	1081	1125	
+
+I 135  3844	4633	6141	7299	3826	*	6132	2587	6382	2639	6093	*	5258	*	5783	4062	4118	2369	*	3720	135
+       0	*	*	*	*	*	0	7707	0	1042	
+
+W 136  4760	*	7589	5320	2248	7234	5816	3019	3911	3821	5255	*	6008	5375	4556	5778	4938	3556	4203	2849	136
+       29	5632	*	1000	1000	*	0	7707	1132	1042	
+
+V 137  3901	6876	7389	6342	6159	5316	7499	3969	4426	3279	*	7450	7000	5825	3257	6860	4339	1327	*	4166	137
+       17	6389	*	1569	593	*	0	7700	1029	1250	
+
+L 138  4331	4332	*	*	4691	6876	*	4529	*	987	2819	*	*	*	*	*	5600	3103	*	5220	138
+       0	*	*	*	*	652	1459	7700	0	1250	
+
+P 139  4316	*	*	*	6444	7265	6505	4784	*	4006	7257	5853	502	*	*	5161	6825	4625	*	6080	139
+       9	7358	*	4524	64	*	0	7707	1000	1042	
+
+N 140  6411	*	*	*	6497	5569	*	5839	*	6331	5122	4082	7034	*	*	591	2695	6335	*	*	140
+       0	*	*	*	*	*	0	7707	0	1042	
+
+P 141  *	*	*	*	4079	*	6331	*	*	*	*	*	2842	*	*	2520	1156	6171	*	2720	141
+       0	*	*	3000	193	0	*	7707	1042	1042	
+
+S 142  *	*	4407	*	*	5563	2838	*	*	*	*	*	*	6113	*	392	*	*	*	6025	142
+       10	7218	*	1000	1000	*	*	7723	1000	0	
+
+G 143  4212	*	*	*	*	2143	6516	*	*	5667	*	5574	962	*	3902	4955	5663	4806	*	*	143
+       0	*	*	*	*	*	*	7723	0	0	
+
+L 144  905	*	6384	5335	6288	7207	*	7434	*	2856	6352	4112	6087	5070	3562	4795	6530	5675	*	*	144
+       0	*	*	*	*	*	*	7689	0	0	
+
+S 145  2631	5201	*	*	4461	*	5171	*	*	6278	*	1464	5288	6269	5177	6040	5247	3108	5374	3119	145
+       53	*	4789	*	*	*	*	7680	0	0	
+
+R 146  1397	6145	6311	*	*	7238	*	6255	5164	3058	5843	6094	4090	6988	3600	6123	3180	3058	*	*	146
+       72	4911	6043	305	2392	0	*	7639	1426	1275	
+
+V 147  3407	*	6715	5634	7215	4182	4637	4394	3810	2576	3705	4144	*	4880	2869	3387	6256	4372	6340	6139	147
+       1844	485	7189	146	3373	0	*	7680	5731	1053	
+
+S 148  4527	*	4644	*	7036	5015	5489	*	3366	5909	*	2477	3600	5339	3903	2028	2896	6797	*	*	148
+       141	5356	3862	344	2236	1977	423	7501	1136	1490	
+
+L 149  4871	*	*	5294	2825	*	*	3780	3860	2081	5144	6519	2150	5597	4933	6661	*	6703	*	3577	149
+       13	6782	*	2586	263	*	0	7419	1557	1896	
+
+E 150  2730	*	3397	1624	*	4609	*	5277	3662	*	*	5521	4533	4324	5273	3038	6104	7149	*	*	150
+       37	*	5286	0	*	1823	479	7419	1000	1896	
+
+K 151  4364	*	2338	2393	5190	6622	6085	4829	3321	3482	7186	5056	*	3845	3669	5272	5458	5800	4854	*	151
+       0	*	*	0	*	1654	552	7466	1069	1829	
+
+L 152  *	*	*	6354	6329	5071	*	5214	823	2481	6241	*	*	6440	3118	6562	*	6106	6749	*	152
+       0	*	*	1153	862	0	*	7488	1192	1550	
+
+V 153  3069	*	7020	3387	7248	6804	*	3227	3441	2213	5404	*	6753	5524	3179	5049	4624	3335	7473	7171	153
+       9	*	7277	*	*	*	*	7623	0	0	
+
+E 154  2676	8132	3777	2040	*	7311	6000	4114	3240	3847	7288	4503	6539	5149	4144	6242	4784	3951	*	6858	154
+       68	4717	6970	1585	585	*	0	7620	1291	1000	
+
+A 155  2293	5108	4863	3853	2877	*	*	4135	4712	3041	*	6307	4174	4917	5301	6381	4277	4003	5120	5087	155
+       18	6305	*	1000	1000	0	*	7614	1032	1050	
+
+Y 156  *	*	*	6524	3081	*	*	5540	5870	4272	*	*	*	*	4820	*	*	*	957	2119	156
+       21	6124	*	0	*	*	*	7623	1055	0	
+
+R 157  4428	6501	4824	4651	*	6022	4998	5408	2615	4803	5437	3339	*	3124	2069	3728	6270	5491	6313	*	157
+       28	5720	*	434	1944	*	*	7623	1110	0	
+
+E 158  3415	*	1904	2380	7188	5461	6201	4986	3345	6083	*	6779	6335	3705	4388	5078	6144	4372	7009	6240	158
+       19	6286	*	1748	510	*	*	7610	1086	0	
+
+L 159  3580	*	*	7022	3374	6834	*	2750	5201	1051	4346	*	*	7057	6945	*	6120	4269	*	6168	159
+       18	6351	*	1680	540	*	*	7528	1207	0	
+
+D 160  2643	6993	5644	6315	3438	4923	6632	4400	2688	2181	5957	*	*	3295	3840	6363	6024	6954	6638	7031	160
+       21	6136	*	1585	585	*	*	7153	1000	0	
+
+Q 161  3919	*	3615	1902	6038	4273	*	5974	3022	5997	*	4127	4129	3307	4327	4260	4451	*	*	*	161
+       145	3389	*	2407	301	*	*	6538	1225	0	
+
+A 162  1940	*	5135	*	2874	4422	5069	3680	4003	3637	5271	*	5613	5347	4132	*	3486	*	*	4059	162
+       0	*	*	*	*	*	*	5804	0	0	
+
+L 163  2632	5345	*	*	4222	*	*	4076	*	985	4765	*	*	*	*	4908	*	2990	*	*	163
+       0	*	*	*	*	*	*	5540	0	0	
+
+V 164  *	*	4479	3311	*	1513	*	*	4169	4084	4424	*	*	4129	3307	2925	*	4234	*	*	164
+       126	3577	*	0	*	*	*	4631	1000	0	
+
+V 165  3185	*	*	*	*	3367	*	2477	*	2523	*	4195	*	*	*	*	*	1377	*	*	165
+       0	*	*	*	*	*	*	3685	0	0	
+
+R 166  *	*	*	*	*	*	*	*	*	*	*	*	*	*	1000	1000	*	*	*	*	166
+       0	*	*	*	*	*	*	1475	0	0	
+
+G 167  *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	167
+       0	*	*	*	*	*	*	1475	0	0	
+
+R 168  *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	168
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  79b1bbcf6f43d0235bc61bef7593bdbe
+FAM   
+FILE  79b1bbcf6f43d0235bc61bef7593bdbe
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:20:58 2013
+LENG  178 match states, 178 columns in multiple alignment
+FILT  116 out of 250 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  6.4 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCHHHHHHHHHHHHHHHHHHCCCCCCCCCCCCCCCCCCHHHHHHHHHHHHHHHHHHHHHHHHHHHCCCCCCCHHHHHHHHHHHHCCCCCCHHHHHHHHH
+HHHHHHHHHHHCCCHHHHHHHHHHHHHHHHHHHHHHHHHCCCHHHHHHHHCCCCHHHHHHHHHHHHHHHHHHHCCCCC
+>ss_conf PSIPRED confidence values
+9730599999999999999983677777788999997319999999999999998299999999852889874899999999997379998999999999
+999999999984885689999999999999989999998798989999969971889999899998886431023578
+>Consensus
+xxxxxxxxtxxLxxdYIxyrlxxxgxxxxxxxxxxpxxxxxxxxLrxxgdelexxxxxxfxxxxxxLxitxxxxxxxFxxVaxelFxdginWGRIvaLxx
+FxgxLaxxxxxxxxxxxvxxIxxwxxxylxexlxxWIxxxGGWxxxxxxfxxxxxxxxxxxxxxxxxxxxxxxxxxxx
+>79b1bbcf6f43d0235bc61bef7593bdbe
+ATPASAPDTRALVADFVGYKLRQKGYVCGAGPGEGPAADPLHQAMRAAGDEFETRFRRTFSDLAAQLHVTPGSAQQRFTQVSDELFQGGPNWGRLVAFFV
+FGAALCAESVNKEMEVLVGQVQEWMVAYLETRLADWIHSSGGWAEFTALYGDGALEEARRLREGNWASVRLEHHHHHH
+>gi|30851239|gb|AAH52690.1| Bcl2l10 protein [Mus musculus]
+-------RTRRLLSDYIFFCAREPD------TPEPPPTSVEAALLRSVTRQIQQEHQEFFSSFCE----S--rgNRLELVKQMADKLLSkdQDFSWSQLV
+MLLAFAGTLMNQGPymavkq----krdlgnrvi---VTRDCCLIVNFLYNLLMgrrhrARLEALG--gwDGFCRFFK-----------------------
+----
+>gi|312377925|gb|EFR24635.1| hypothetical protein AND_10635 [Anopheles darlingi]
+----VIQQGKRLCGEYIRARLKRSGLLNRkilqrlrnsivpdgasAGIgsvGGgsgmmliagggGAVVREAFPILHGMGIELERMHPRLYTNVSRQISne
+pwgelTEPDTVGYLLHIVAKDLFKTGVTWGKVISLFAIVGGLAVDCVRQDHTDYLQQLIEGTTDVIEEDLAGWLVERGGWLGLQDHVYPQPAEITLTGWL
+TIT------------
+>gi|47213719|emb|CAF95150.1| unnamed protein product [Tetraodon nigroviridis]
+-----DSDTRQLVSRLMADVTGISRAQWR-------ESR-ALATTKRVVGDLMEKHRYTYRGMINKLFMEDRVgDVSFVGAVAKSTFEDGNtNWGRVASL
+LAFAAVVAQYLNDHGQRDCVEQVAQEISTYLLTDQRDWLIKNNAWDGFVEFFQVPDPESTVRT-----------------
+>gi|9188120|emb|CAB97205.1| BHP1 protein [Suberites domuncula]
+-------QSACLSYHLTYYLLNQGGIKLNGYAGNGRTShtrnrltndkkfREAISTLESSCKQMKSKYQQEIEGLVKTLDISDTQLYTNFQHAANSLMDG
+DIRWGRIAVLFFFTSVLAKRLHKDGHSHQISSLIGWLTTFLNDNATSWILENGGWAAIKDSV----------------------------
+>gi|125812975|ref|XP_001343654.1| PREDICTED: apoptosis regulator BAX-like [Danio rerio]
+----------------------------------DPSHKDAIECMVRIANEMEGNE--ELQGMLNSALLNPT--LEHYILVVNGTFSDVtLSWGSVVALF
+YVACRFVVKAAEINSVDLVRSIINWTMPFIRKtCILTWIREQGGWGAIRSYFGTPT------------------------
+>gi|308497734|ref|XP_003111054.1| CRE-CED-9 protein [Caenorhabditis remanei]gi|308242934|gb|EFO86886.1| CRE-CED-9 protein [Caenorhabditis remanei]
+----------GFVVrnlkkyfripkflkaDYFTYRIEQSGLDWYDAPALPDGVQDEFKMMRSLATIFEKKHTEELENCSEQLLAVPKLTFHLYQEVAKFF
+DRsigpghCSMSYGHLIGLISFGGMVAAKMMGTaELQGQVRNLLLYTSLFIKTRIRqCWKEHDRSWAGFMAL----------------------------
+-
+>gi|194382608|dbj|BAG64474.1| unnamed protein product [Homo sapiens]
+---QVAQDTEEVFRSYVFYRHQQEQEAEGVAAPADPemvtlplqPSStmgQVGRQLAIIGDDINRRYDSEFQTMLQHLQPTAENAYEYFTKIATRYP---
+-----------------------------------------------------------------------------------------
+>gi|311256133|ref|XP_003126516.1| PREDICTED: apoptosis facilitator Bcl-2-like protein 14-like [Sus scrofa]
+----------------------------------------IVELLKYSGDQLERELKKDSILMTS---FQDGLSYSVFKTITDQFLRGVDTRGEsEVKAQ
+SFKAALAIDAMAKLTtiDnHPMNRVLGFGTKYLKENFSPWVQQHGGWEKVLG------------------------------
+>gi|4590358|gb|AAD26543.1|AF120456_1 Bcl-2 homolog [Papiine herpesvirus 1]gi|9802029|gb|AAF99596.1| BHRF1 [Papiine herpesvirus 1]
+----------------------------------------------ALLEQIIVQNEDAFAETLDRFLLNTEDLDLDFSRVFAEIFHnEDPTLGRGLAWL
+AWCMHACRTlCGDTNCPYYVVDLAvRGMLE-ASEGLDGWIGQH-gGWPAVLR------------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+A 1    0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1000	0	0	
+
+T 2    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	2
+       0	*	*	*	*	*	*	1000	0	0	
+
+P 3    *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	3
+       0	*	*	*	*	*	*	1748	0	0	
+
+A 4    1804	*	*	*	*	*	*	*	*	*	*	*	*	487	*	*	*	*	*	*	4
+       0	*	*	*	*	*	*	2527	0	0	
+
+S 5    *	*	*	*	*	*	*	2419	*	*	*	*	*	*	*	2421	*	675	*	*	5
+       0	*	*	*	*	*	*	3325	0	0	
+
+A 6    1494	*	2856	*	*	3049	*	2848	*	*	*	*	*	*	*	*	3236	2827	*	*	6
+       0	*	*	*	*	*	*	3981	0	0	
+
+P 7    *	*	3598	2027	*	*	4331	4131	*	*	4187	*	4803	2683	4142	3322	*	*	4229	3198	7
+       0	*	*	*	*	*	*	5598	0	0	
+
+D 8    *	*	2305	2723	*	*	5157	*	*	*	*	*	*	1312	3785	3928	4608	*	*	4785	8
+       0	*	*	*	*	*	*	5977	0	0	
+
+T 9    3032	*	*	*	5826	3002	*	4028	*	*	*	3708	*	*	*	2789	1383	4429	*	5450	9
+       0	*	*	*	*	*	*	6621	0	0	
+
+R 10   3260	5442	*	2840	5427	*	*	*	2795	5460	*	5907	*	4188	1469	5553	4391	*	*	4606	10
+       0	*	*	*	*	*	*	6740	0	0	
+
+A 11   2787	5296	3972	2319	*	3826	*	4499	4566	4620	*	6010	*	3384	3051	5773	4243	4439	*	5738	11
+       0	*	*	*	*	*	*	6803	0	0	
+
+L 12   *	*	*	*	3521	*	*	2321	*	754	4908	*	*	*	*	*	*	3533	*	*	12
+       0	*	*	*	*	*	*	6821	0	0	
+
+V 13   2261	2640	*	*	4305	5728	*	4790	*	2921	*	*	*	*	*	5381	5895	1621	*	5193	13
+       0	*	*	*	*	*	*	6821	0	0	
+
+A 14   4210	5934	5780	2587	*	4121	*	5712	3313	4547	4216	4084	*	4172	3227	4467	3670	3862	*	4123	14
+       30	5583	*	3907	100	*	*	6874	1004	0	
+
+D 15   *	*	725	3699	4961	*	4540	*	5131	*	*	5284	*	4103	5485	3910	5448	*	*	5747	15
+       0	*	*	*	*	*	*	6874	0	0	
+
+F 16   *	*	*	*	2246	*	5609	*	*	3540	*	*	*	*	*	*	*	5536	*	597	16
+       0	*	*	*	*	*	*	6874	0	0	
+
+V 17   *	*	*	*	3548	*	*	967	*	2444	5485	*	*	*	*	5747	4968	2773	*	*	17
+       0	*	*	*	*	*	*	6874	0	0	
+
+G 18   4543	5566	3766	4088	4032	4310	4249	*	4727	4184	*	4228	5747	3097	2822	3398	4068	4695	*	5419	18
+       124	*	3605	*	*	*	*	6874	0	0	
+
+Y 19   4667	*	4385	3900	3566	4787	3394	*	5968	5367	*	*	*	*	*	4652	5257	*	6035	975	19
+       0	*	*	*	*	1808	485	6771	0	1269	
+
+K 20   *	4008	*	5207	*	*	5669	*	1910	4385	*	*	*	3861	1312	*	*	3244	*	*	20
+       0	*	*	*	*	*	0	6811	0	1173	
+
+L 21   4596	5689	*	*	5631	*	5407	2518	*	917	*	*	*	*	*	*	3384	3529	*	6801	21
+       33	*	5478	*	*	*	0	6837	0	1173	
+
+R 22   4375	*	*	4320	5521	3076	5617	*	3255	5843	*	4186	*	2551	1859	3335	5757	*	*	*	22
+       0	*	*	*	*	*	0	6835	0	1242	
+
+Q 23   5687	*	5394	3577	*	5521	5597	4306	2461	3885	*	5872	*	1944	2475	4252	5553	*	*	*	23
+       53	5617	6017	2000	415	*	0	6835	1000	1242	
+
+K 24   *	*	3918	2693	*	4707	5180	*	3612	*	*	3163	3206	4406	3151	1990	*	*	*	*	24
+       127	*	3572	*	*	*	0	6812	0	1293	
+
+G 25   5223	*	5677	*	5736	961	*	4504	5528	*	*	2993	7511	5285	3285	4482	5126	5466	*	*	25
+       220	5223	3124	0	*	*	0	6752	1000	1561	
+
+Y 26   5013	*	5391	4060	3275	*	6031	2714	*	1772	4153	4922	*	*	5236	5284	5188	5207	*	2993	26
+       194	3337	5207	1663	547	1497	631	6530	1223	1933	
+
+V 27   3762	6103	5361	3149	4175	4335	3765	4264	3855	3134	*	*	4483	3463	4255	4380	4403	3679	*	*	27
+       70	5494	5308	1585	585	3862	103	6659	1003	1664	
+
+C 28   7495	2235	5384	3749	*	6651	4259	4415	5089	3598	*	3915	*	5168	3341	5708	4751	5015	2452	*	28
+       117	5426	4199	4322	74	*	0	6622	1000	1687	
+
+G 29   3250	6200	4205	4600	5395	2432	*	*	4609	*	*	5062	3848	*	2520	3203	4425	4091	*	4375	29
+       683	3318	1853	3499	134	*	0	6517	1351	1857	
+
+A 30   2744	5497	3916	4130	*	2261	*	4827	2972	5126	*	*	*	*	3980	*	3240	3265	*	4967	30
+       181	3081	*	3692	116	1426	672	5933	1199	2615	
+
+G 31   3699	4246	4186	3889	5816	2607	*	*	3957	3548	6035	*	5603	4437	3725	3329	4234	5472	5688	3968	31
+       153	4408	4231	2003	414	964	1037	6544	1056	2027	
+
+P 32   3379	*	6170	3483	*	6269	5713	4669	6026	5589	*	3014	1677	*	5478	4881	2769	4228	*	*	32
+       148	4438	4291	1074	930	1870	461	6812	1184	1681	
+
+G 33   3467	*	4228	6280	*	2536	*	*	3407	4120	5960	*	2519	4793	3596	4052	5445	3660	5556	5250	33
+       193	3467	4856	4118	86	1594	580	6856	1239	1648	
+
+E 34   3472	5913	5336	2909	5200	4155	*	6027	5949	2427	5238	4750	4180	3270	4782	4517	3558	*	5233	5602	34
+       342	2898	3705	2589	262	1644	556	6930	1560	1580	
+
+G 35   4190	3930	2462	4665	*	2295	*	4882	5879	3786	*	5723	3035	5634	5732	3757	5127	5412	*	5295	35
+       86	4694	5682	2398	303	1322	737	6913	1078	1676	
+
+P 36   4135	*	5447	4756	*	*	6046	6197	*	4566	5662	4380	749	5689	4629	3742	*	6065	*	*	36
+       149	5015	3896	2655	249	901	1106	6910	1192	1479	
+
+A 37   2490	*	5250	3798	5803	3819	*	*	4787	6083	*	4855	2466	4431	4179	3580	3325	3580	*	*	37
+       96	4581	5476	1803	487	2631	254	6948	1147	1428	
+
+A 38   3450	5825	4302	4893	*	*	4899	3580	5124	6365	6421	5806	2769	3719	5684	2502	3188	3463	*	*	38
+       158	3660	5351	2676	245	1355	715	6805	1325	1420	
+
+D 39   6188	*	3920	3828	*	*	4929	5993	3444	*	*	3393	5977	3514	2722	2296	3126	4607	*	*	39
+       121	4975	4355	1032	968	3140	174	6891	1209	1317	
+
+P 40   2751	4862	3793	2723	*	5784	*	6391	2648	*	*	5947	2213	6763	3452	6270	4663	5721	*	*	40
+       95	3967	*	1823	479	796	1238	6936	1215	1501	
+
+L 41   2610	*	*	3494	*	*	6299	3327	6527	2356	*	5316	6556	*	5357	4424	4028	1938	*	*	41
+       31	*	5557	2484	284	507	1755	7116	1032	1176	
+
+H 42   1796	*	*	*	4203	4342	4033	4313	5548	3672	*	4728	5681	5345	*	2760	6830	3027	*	4787	42
+       80	4657	6143	1787	493	1265	776	7117	1158	1105	
+
+Q 43   2675	5704	5514	2541	7073	5171	5348	6165	4812	3968	*	4715	4028	3767	2805	4012	5497	4503	*	6249	43
+       0	*	*	*	*	779	1262	7211	0	1105	
+
+A 44   3320	3966	6386	3646	*	6295	6008	5609	4837	3338	3869	4590	*	5660	4602	4037	2218	3125	*	*	44
+       39	5216	*	3122	176	0	*	7224	1127	1003	
+
+M 45   *	*	*	*	*	*	*	3760	*	568	2842	*	*	*	*	*	6224	3546	*	6261	45
+       0	*	*	*	*	*	*	7231	0	0	
+
+R 46   3269	*	5216	6487	5106	5392	4566	5047	3376	3918	5598	*	*	4607	1044	6296	*	6489	*	*	46
+       0	*	*	*	*	*	*	7227	0	0	
+
+A 47   3937	5479	5256	3823	5665	5510	4113	4895	2890	6203	7275	4917	*	3674	2275	3320	4482	5119	6651	5274	47
+       28	5720	*	1803	487	*	*	7366	1043	0	
+
+A 48   3025	6304	*	*	6817	*	5910	2283	*	1954	4218	6260	*	6477	*	4230	5576	2163	*	*	48
+       0	*	*	*	*	*	0	7363	0	1000	
+
+G 49   2167	3760	*	*	*	1267	5921	*	6189	5022	*	*	*	6413	*	3550	5462	3221	*	*	49
+       20	6190	*	1000	1000	*	0	7364	1000	1000	
+
+D 50   3807	*	1316	4121	*	3932	*	6675	6574	4226	*	3501	*	4652	4847	3693	4024	5993	*	6276	50
+       0	*	*	*	*	*	0	7376	0	1000	
+
+E 51   5288	*	2912	1017	*	4656	*	3590	7168	5911	*	6583	*	2906	5407	5357	6729	*	*	*	51
+       18	6319	*	0	*	0	*	7376	1006	1000	
+
+F 52   5329	*	*	*	2459	*	*	2399	*	1184	3606	*	*	*	*	*	6206	4123	*	6579	52
+       0	*	*	*	*	*	*	7389	0	0	
+
+E 53   *	*	3438	1126	6622	*	*	4253	5453	3084	5299	4283	*	3674	5311	4938	*	4908	*	*	53
+       0	*	*	*	*	*	*	7389	0	0	
+
+T 54   3982	6868	3915	2658	*	4893	*	4917	3124	5934	6532	4829	6328	3248	2272	3599	5174	5341	*	*	54
+       40	*	5203	*	*	*	*	7389	0	0	
+
+R 55   3567	5863	5217	4294	*	*	*	5041	1904	4178	3330	3594	*	4053	2419	5254	6375	*	*	*	55
+       89	4587	5757	1889	454	*	0	7372	1193	1089	
+
+F 56   *	6293	6168	4424	3470	5928	1893	6325	*	3849	6138	3626	*	5449	4813	6194	6498	6771	*	1829	56
+       58	5125	6566	1000	1000	857	1159	7358	1100	1218	
+
+R 57   4589	*	4186	2731	*	4705	6715	6653	3405	*	*	6067	2423	3338	2627	3191	5106	*	*	*	57
+       26	6563	7157	1585	585	1190	832	7322	1000	1114	
+
+R 58   4368	*	3001	3163	6649	4326	3895	3433	4455	4876	*	5342	3577	3782	2963	4678	5469	*	*	4485	58
+       16	6480	*	1000	1000	428	1961	7404	1000	1069	
+
+T 59   3432	6505	4931	2659	2734	*	5395	5553	5543	2416	5948	6368	5574	4824	4987	4901	3260	4405	*	*	59
+       50	4873	*	725	1340	0	*	7441	1115	1000	
+
+F 60   6558	6577	*	6331	1102	*	*	3685	6300	2290	6477	*	*	*	6631	6350	*	4910	*	2848	60
+       9	*	7299	*	*	*	*	7434	0	0	
+
+S 61   3690	7493	3864	2899	*	5205	4796	5433	3866	5642	*	3128	5405	3343	2644	3491	4463	6891	*	*	61
+       13	*	6793	*	*	*	0	7439	0	1000	
+
+D 62   5896	6200	2625	3911	*	3263	4227	6448	4717	4317	*	2672	5531	4453	3124	3238	4684	*	*	*	62
+       0	*	*	*	*	*	0	7439	0	1032	
+
+L 63   4450	4398	5725	*	4318	5905	*	3176	*	2237	1803	*	*	*	6420	6236	5035	3126	5138	6225	63
+       30	*	5618	*	*	940	1062	7439	0	1032	
+
+A 64   2901	2884	4596	5682	6846	4776	*	3299	*	2885	5949	*	4696	6265	4809	2683	4942	3644	5970	*	64
+       36	*	5354	*	*	*	0	7416	0	1089	
+
+A 65   5087	*	3374	2790	*	6864	4773	*	3162	4977	*	2707	5428	3296	2956	3613	5086	5458	*	*	65
+       208	4337	3563	1807	486	*	0	7359	1250	1230	
+
+Q 66   5037	*	4755	4171	*	5314	4213	5185	3347	5113	4244	5715	*	2093	2638	3433	4749	4914	*	6216	66
+       109	4098	6126	241	2698	3807	107	7187	1197	1875	
+
+L 67   5245	*	*	*	3700	*	*	3248	*	791	4068	*	*	5960	5872	*	6355	3872	5500	5785	67
+       65	5374	5660	3809	107	2371	310	7199	1069	1853	
+
+H 68   5779	6019	2187	3998	6423	3458	3885	5695	5561	3608	*	2738	4590	3801	5706	4118	4986	5655	*	*	68
+       102	4708	5046	2398	304	1732	517	7189	1207	1821	
+
+V 69   4461	7014	5782	6042	4186	4392	*	1884	5846	2359	5072	*	4857	*	4565	6742	5100	2632	*	5553	69
+       104	4376	5548	919	1086	653	1457	7231	1406	1689	
+
+T 70   5022	6183	3392	3864	*	6502	5899	*	5907	*	*	3160	6695	4412	5288	2332	1781	4295	*	6331	70
+       71	6509	4760	0	*	539	1682	7315	1000	1337	
+
+P 71   4024	*	3606	3242	6784	5883	7363	6869	3770	4185	*	5890	1734	5763	4155	4071	3696	4561	*	6544	71
+       72	5425	5284	1938	436	2650	250	7328	1154	1320	
+
+G 72   4995	6467	2273	2543	7131	3453	4939	7157	5340	4973	6368	4797	5335	5503	3590	3125	3665	*	*	6286	72
+       80	5331	5119	1633	561	843	1176	7316	1121	1391	
+
+S 73   3874	5593	4046	6892	5364	6766	5041	4710	4655	3741	5844	2598	6639	5236	6041	3151	2137	4283	*	*	73
+       63	5036	6370	672	1424	2296	328	7348	1174	1300	
+
+A 74   1673	6470	4444	3956	*	4974	*	4887	5962	3660	*	5068	3907	*	5242	3552	3630	3120	*	*	74
+       131	3529	*	1107	900	0	*	7342	1487	1310	
+
+Q 75   6346	3795	4672	4667	3797	4109	4277	5215	3981	3553	6486	*	7182	3588	3813	5792	6818	4282	6617	2189	75
+       15	6563	*	2322	322	*	*	7427	1000	0	
+
+Q 76   4949	*	3395	2278	*	4597	5817	5603	4074	5079	*	7455	4021	3447	3504	2600	4014	6011	*	6895	76
+       82	5758	4776	611	1535	*	*	7427	1105	0	
+
+R 77   3511	*	4489	5528	4364	*	5735	4606	4311	3204	4786	4558	*	5631	4149	3943	2401	2740	*	5677	77
+       0	*	*	*	*	*	0	7392	0	1173	
+
+F 78   6264	6777	*	*	668	*	*	4471	*	3292	6661	*	*	*	*	*	*	3783	*	3073	78
+       16	6529	*	0	*	*	0	7392	1000	1173	
+
+T 79   4164	*	*	5366	4082	4609	5331	4170	3315	3381	4594	3752	*	3485	4807	3255	3782	3673	5818	5117	79
+       0	*	*	*	*	0	*	7445	0	1173	
+
+Q 80   3223	7006	4229	2998	*	3594	6963	4977	4077	6894	*	4001	*	3561	3227	3025	3062	6454	*	6870	80
+       15	6636	*	0	*	*	*	7595	1000	0	
+
+V 81   5598	7001	*	*	5163	6068	*	1972	*	3490	4267	*	*	*	*	6877	5138	1011	*	*	81
+       0	*	*	*	*	*	*	7595	0	0	
+
+S 82   1322	4973	*	6663	4849	4027	*	6618	*	3560	3484	*	*	7023	6639	4530	4284	2691	6553	*	82
+       0	*	*	*	*	*	*	7595	0	0	
+
+D 83   4573	*	2488	2798	*	4870	5166	6037	3498	5411	5992	3405	*	3744	2936	4652	3782	6869	*	6609	83
+       15	*	6622	*	*	*	*	7595	0	0	
+
+E 84   4997	*	4682	1347	6412	4397	5087	*	3953	6309	*	4033	*	3243	3805	3467	5540	5588	*	*	84
+       0	*	*	*	*	0	*	7584	0	1000	
+
+L 85   *	*	*	6787	4054	*	6162	2319	6761	1450	3226	6112	*	*	*	*	4236	2612	*	8204	85
+       0	*	*	*	*	*	*	7594	0	0	
+
+F 86   *	*	5364	7273	632	5486	*	4750	*	2936	5940	6064	6124	*	*	*	5373	4214	6583	*	86
+       96	3953	*	1476	643	*	*	7594	1410	0	
+
+Q 87   3724	6200	3999	2736	*	4447	4135	6905	3679	6305	6306	4323	*	3803	2975	2423	4645	6893	*	*	87
+       311	2441	6638	1189	833	*	*	7592	2101	0	
+
+G 88   7440	5042	1127	4111	*	2610	*	*	5296	6842	7090	3767	5201	5300	6287	4079	4475	*	*	*	88
+       96	3955	*	3697	116	0	*	7588	1310	1000	
+
+G 89   *	4905	4084	4313	*	1039	5647	*	4410	6600	*	3982	4880	4003	*	3949	6151	4184	*	*	89
+       387	2160	6457	829	1194	*	*	7592	2460	0	
+
+P 90   *	4784	5279	*	3730	*	6600	1517	4746	3075	4103	6782	3699	*	*	*	5472	2715	6800	5735	90
+       57	4680	*	0	*	0	*	7548	1286	1062	
+
+N 91   5580	*	*	*	*	5179	5035	*	6865	6753	*	964	6103	6647	5143	2979	2326	6459	*	*	91
+       0	*	*	*	*	*	*	7567	0	0	
+
+W 92   *	5545	*	*	6587	*	*	6557	*	4901	*	*	6459	*	4206	*	*	5330	347	4392	92
+       0	*	*	*	*	*	*	7567	0	0	
+
+G 93   4174	*	*	4378	*	427	*	*	6623	*	*	*	6575	*	*	3359	6647	6695	*	6064	93
+       16	6459	*	3170	170	*	*	7567	1000	0	
+
+R 94   6147	*	*	5337	*	*	4572	*	3241	6575	*	*	*	5390	439	5886	6103	6645	*	*	94
+       36	5337	*	0	*	*	*	7567	1063	0	
+
+L 95   4811	6066	*	5337	*	6299	*	1095	*	3201	*	*	*	*	*	*	*	1578	*	*	95
+       0	*	*	*	*	*	*	7567	0	0	
+
+V 96   2569	5801	*	*	*	*	*	2326	*	2749	6748	*	*	*	*	6936	5608	1227	*	*	96
+       0	*	*	*	*	*	*	7567	0	0	
+
+A 97   1304	6615	*	*	6647	3768	*	6861	5337	5379	5750	*	*	*	*	2375	3384	2869	*	*	97
+       0	*	*	*	*	*	*	7567	0	0	
+
+F 98   4440	*	*	*	3074	*	*	3749	*	933	4768	*	*	*	*	*	4785	2946	4869	*	98
+       0	*	*	*	*	*	*	7567	0	0	
+
+F 99   *	6304	*	*	1639	*	6315	2418	*	2123	5114	*	*	6359	*	*	*	4665	*	2674	99
+       0	*	*	*	*	*	*	7567	0	0	
+
+V 100  1722	4920	*	4897	4133	3777	7268	6623	6064	6575	4730	*	*	*	*	3359	3290	2673	*	3964	100
+       0	*	*	*	*	*	*	7567	0	0	
+
+F 101  6574	*	*	*	567	*	*	4474	*	3304	*	*	*	*	*	*	*	3332	4869	4850	101
+       0	*	*	*	*	*	*	7567	0	0	
+
+G 102  1653	2744	*	*	*	1906	*	5497	5337	6642	5812	*	*	*	*	3530	3693	5185	*	*	102
+       0	*	*	*	*	*	*	7567	0	0	
+
+A 103  2532	5060	*	6810	6929	1297	*	5540	*	*	4413	*	*	5701	3902	3696	6647	5387	6753	3349	103
+       15	6557	*	1585	585	*	*	7567	1000	0	
+
+A 104  3252	5816	4660	4769	4489	4133	4164	4713	3587	3843	6415	5729	*	4581	2554	4235	4532	3807	*	4561	104
+       8	7583	*	1585	585	*	*	7567	1000	0	
+
+L 105  5231	*	*	*	4427	*	6557	3462	*	1012	3138	*	*	*	*	*	6681	2503	*	5066	105
+       97	3950	*	1375	703	*	*	7567	1386	0	
+
+C 106  1144	2761	*	6307	5897	*	*	4581	*	5276	6607	*	*	*	*	3335	3522	3229	*	*	106
+       0	*	*	*	*	*	*	7567	0	0	
+
+A 107  3142	5724	6608	4488	6239	*	6176	3063	2879	3254	4770	6607	*	4538	3877	*	4499	2227	*	6702	107
+       26	6936	6647	1585	585	*	*	7567	1000	0	
+
+E 108  4961	*	2844	2910	5644	*	3524	6240	2823	*	*	4001	*	3422	2989	*	4840	6590	5774	3495	108
+       62	5226	6024	0	*	*	0	7557	1073	1000	
+
+S 109  2755	1896	5797	5554	4280	*	6016	4738	*	2745	5456	5390	6242	*	5331	3409	6801	3511	*	6068	109
+       90	7490	4194	0	*	1315	741	7602	1000	1080	
+
+V 110  4072	4923	*	5652	*	5296	5105	3684	3611	3088	3896	5038	6235	3449	4370	5353	*	2182	6795	4286	110
+       151	3872	5021	1963	428	2528	275	7243	1404	1514	
+
+N 111  4788	6417	2710	2450	*	4411	6927	6809	2939	5470	6832	3866	*	4231	2804	3442	5312	6937	*	*	111
+       17	*	6456	*	*	1995	417	7173	0	1812	
+
+K 112  4847	6525	4027	4074	*	*	4489	4596	2584	4500	5299	2885	6709	2630	3602	4986	3666	6353	*	*	112
+       202	3336	4990	959	1042	1280	766	7492	1610	1652	
+
+E 113  *	*	4384	3004	6824	1431	5708	*	4217	4357	*	2865	6886	4304	4778	3951	5632	6886	*	*	113
+       111	4972	4556	1316	741	1763	504	7493	1130	1525	
+
+M 114  6066	5238	4207	4837	5228	6486	3285	4774	4651	2687	2895	4736	7337	4468	3911	4117	3818	4165	6830	6112	114
+       112	4727	4755	1858	466	3042	187	7481	1205	1750	
+
+E 115  4326	*	3293	2922	6117	4009	4221	6835	5915	4323	*	5211	2211	4331	3913	3328	5278	5802	*	6889	115
+       201	3299	5149	1579	588	780	1259	7476	1558	1868	
+
+V 116  4990	*	2595	2041	*	3536	3937	*	4851	*	5900	4435	5619	4918	4827	3107	6289	4347	*	4497	116
+       19	*	6289	*	*	399	2050	7417	0	1477	
+
+L 117  4696	4559	*	3828	3951	3729	5682	3243	4613	1960	6260	7232	4710	4435	6536	5192	6727	4592	6891	3575	117
+       0	*	*	*	*	0	*	7525	0	1141	
+
+V 118  4141	6696	*	5578	5080	*	*	2649	5680	2950	4439	*	4605	6307	5303	5840	5574	1370	*	5354	118
+       18	6307	*	2585	263	*	*	7567	1008	0	
+
+G 119  4452	5616	3022	3262	*	3780	5859	6304	3403	*	*	3706	4899	4505	3038	3079	4447	4768	*	4944	119
+       41	5593	7041	0	*	*	*	7567	1077	0	
+
+Q 120  3800	*	3330	4342	6621	6932	6651	4937	3961	4765	4738	3624	4707	3227	2897	2827	4207	5349	*	*	120
+       13	*	6814	*	*	*	0	7603	0	1000	
+
+V 121  6610	*	5407	*	5926	*	*	1443	*	1885	5166	*	6443	*	*	*	*	1951	*	6248	121
+       0	*	*	*	*	*	0	7597	0	1059	
+
+Q 122  2129	4024	*	5387	4865	6194	*	2599	6998	4032	4601	7120	4676	4602	*	3545	4126	3221	*	5315	122
+       41	5149	*	0	*	*	0	7597	1073	1059	
+
+E 123  4199	6748	3178	2171	*	3052	5897	6859	3942	4528	6424	4507	*	5237	3442	3401	4956	6484	*	4751	123
+       18	*	6360	*	*	*	0	7597	0	1059	
+
+W 124  4191	4430	*	5271	2849	4423	*	4486	6296	5398	*	6890	*	6846	*	5458	4158	5512	1351	3372	124
+       0	*	*	*	*	2540	272	7603	0	1139	
+
+M 125  4177	6993	*	*	5295	4416	*	2601	*	2211	3267	*	*	*	*	4063	2498	2806	*	*	125
+       12	*	6867	*	*	*	0	7601	0	1103	
+
+V 126  2773	6292	*	5664	6753	3331	*	5666	6976	3442	5054	*	6580	7377	6883	2518	2440	2723	6689	5808	126
+       0	*	*	*	*	*	0	7593	0	1147	
+
+A 127  3652	*	2783	2689	*	7488	4786	5587	2746	4446	6309	4702	6848	4146	3339	3420	4873	5641	*	*	127
+       42	*	5114	*	*	331	2286	7593	0	1147	
+
+Y 128  6439	*	*	6504	1391	*	*	5558	*	3799	*	*	*	*	*	5740	6713	3941	*	1287	128
+       42	5135	*	0	*	0	*	7482	1126	1118	
+
+L 129  4468	6322	*	*	5164	*	*	2022	*	1375	3686	*	*	*	*	6617	4217	2825	*	*	129
+       34	5433	*	0	*	*	*	7565	1102	0	
+
+E 130  3522	5032	4293	2589	7054	4748	4776	5811	3018	4245	*	4367	*	4488	3378	3864	4226	4628	*	4710	130
+       143	4157	4714	838	1183	*	*	7565	1295	0	
+
+T 131  6155	6890	3452	1434	*	4927	4265	5101	3790	5122	*	4677	*	5590	3882	3876	3418	6427	*	*	131
+       13	6809	*	0	*	0	*	7276	1000	1236	
+
+R 132  5723	5538	5045	3643	*	4186	3043	7116	2731	*	*	2247	7380	6622	2431	4941	4785	6147	6619	6679	132
+       15	*	6581	*	*	*	*	7565	0	0	
+
+L 133  4791	5820	*	*	3634	*	5352	2305	3743	1354	6625	*	6420	4371	*	*	6296	3670	*	6441	133
+       0	*	*	*	*	0	*	7558	0	1000	
+
+A 134  2645	4375	4260	4606	6322	3775	5206	7011	3707	3697	*	*	*	5559	3301	2426	4194	5332	*	4778	134
+       102	3868	*	543	1673	*	*	7565	1409	0	
+
+D 135  4400	5863	2646	4142	7116	3605	4960	6773	5216	*	6632	3863	2585	3591	5323	3044	4119	5593	*	6896	135
+       0	*	*	*	*	*	*	7565	0	0	
+
+W 136  *	*	*	6147	4653	*	*	*	*	6100	6045	*	*	*	*	6060	*	*	150	*	136
+       0	*	*	*	*	*	*	7565	0	0	
+
+I 137  6449	*	*	*	4284	*	*	741	5454	2662	5237	*	6191	*	*	*	*	3088	*	*	137
+       0	*	*	*	*	*	*	7565	0	0	
+
+H 138  3346	6679	5764	3331	*	6264	4660	3406	3271	4159	5485	4293	*	2927	2801	4707	6547	4144	*	6191	138
+       0	*	*	*	*	*	*	7565	0	0	
+
+S 139  3658	*	2968	2221	*	6613	4776	*	3044	5624	*	4580	6619	2641	4388	3279	5207	*	*	*	139
+       15	*	6603	*	*	*	*	7565	0	0	
+
+S 140  6075	*	5410	5058	*	*	2441	6440	3632	*	6668	2027	*	1970	3434	5816	*	5363	*	6607	140
+       19	*	6258	*	*	0	*	7560	0	1000	
+
+G 141  *	*	4788	*	*	287	6594	*	5210	*	*	4436	*	*	4040	*	*	*	*	*	141
+       23	7533	6599	0	*	0	*	7548	1054	1000	
+
+G 142  5152	6595	*	*	*	188	*	*	*	*	*	*	*	*	*	3788	*	*	*	6455	142
+       0	*	*	*	*	*	0	7552	0	1003	
+
+W 143  *	*	*	*	6547	*	*	*	*	*	*	*	*	6583	7047	*	*	*	42	*	143
+       0	*	*	1000	1000	0	*	7548	1003	1003	
+
+A 144  3502	*	2188	2161	*	4225	7281	4333	*	5516	6713	4870	5504	6621	5173	3809	4794	2986	*	*	144
+       23	6697	7356	0	*	*	*	7578	1006	0	
+
+E 145  2708	7430	4509	4340	*	1383	6217	6150	3345	*	*	5559	*	4645	5240	3927	3827	6084	*	*	145
+       10	*	7235	*	*	0	*	7286	0	1000	
+
+F 146  5524	6253	*	*	1525	*	6980	2573	*	2036	5856	6978	6211	*	*	6130	*	2911	*	6378	146
+       0	*	*	*	*	*	0	7142	0	1000	
+
+T 147  4891	3303	6562	5112	4943	*	*	2684	5097	2249	4617	4781	5546	5996	3840	4959	4356	2913	*	*	147
+       59	*	4642	*	*	0	*	7226	0	1000	
+
+A 148  3866	*	3141	2290	6499	5033	5794	*	3646	5091	*	3502	*	3498	3637	3070	4524	5320	*	*	148
+       0	*	*	*	*	603	1549	7385	0	1145	
+
+L 149  *	5981	*	4069	2199	*	3605	4567	4529	2979	5421	4672	*	5646	3644	3767	5357	3916	*	3545	149
+       0	*	*	*	*	0	*	7184	0	1003	
+
+Y 150  5629	5856	*	*	929	*	6093	*	5690	3496	6008	*	*	*	*	4115	5996	4996	*	2362	150
+       64	*	4517	*	*	*	*	6815	0	0	
+
+G 151  3882	*	3836	3966	5185	1900	4299	*	3981	5505	*	*	5195	5662	3801	2917	3684	5930	*	5564	151
+       183	3067	*	0	*	0	*	6573	1303	1098	
+
+D 152  5583	*	2911	3032	5422	*	2696	*	4146	*	*	5149	4026	5564	3026	4169	3428	3213	*	*	152
+       0	*	*	*	*	*	*	6198	0	0	
+
+G 153  *	*	3069	5547	*	3088	*	*	4949	*	*	3833	2376	2879	3980	3042	2988	*	*	*	153
+       0	*	*	*	*	*	*	6076	0	0	
+
+A 154  3024	*	2439	*	3293	*	4029	2759	*	4187	*	*	3354	*	*	*	2816	4553	*	4494	154
+       0	*	*	*	*	*	*	5404	0	0	
+
+L 155  3093	*	*	*	*	*	*	*	*	1001	2824	*	3176	*	*	*	*	3776	*	4101	155
+       0	*	*	*	*	*	*	4878	0	0	
+
+E 156  3887	*	*	948	*	*	*	*	2529	*	*	*	*	*	3548	*	2687	*	*	*	156
+       0	*	*	*	*	*	*	4349	0	0	
+
+E 157  3207	*	*	1719	*	2960	3337	3186	*	*	*	*	*	*	*	1996	*	*	*	*	157
+       0	*	*	*	*	*	*	3979	0	0	
+
+A 158  2091	*	*	*	*	2641	*	*	*	*	*	*	3149	*	*	3247	2072	2745	*	*	158
+       0	*	*	*	*	*	*	3499	0	0	
+
+R 159  *	*	*	*	*	*	*	2641	*	2881	*	*	*	*	2091	*	2745	1643	*	*	159
+       0	*	*	*	*	*	*	3499	0	0	
+
+R 160  *	*	*	2577	*	*	*	*	2859	*	*	*	*	*	907	*	2632	*	*	*	160
+       0	*	*	*	*	*	*	3339	0	0	
+
+L 161  *	*	*	*	*	2632	*	*	*	2786	*	*	*	*	*	1325	1764	*	*	*	161
+       0	*	*	*	*	*	*	3339	0	0	
+
+R 162  2570	*	*	*	*	*	*	*	*	2603	2435	*	*	*	1725	*	*	*	2478	*	162
+       0	*	*	*	*	*	*	3211	0	0	
+
+E 163  *	*	*	1725	*	*	*	*	2435	964	*	*	*	*	*	*	*	*	*	*	163
+       0	*	*	*	*	*	*	3211	0	0	
+
+G 164  *	*	*	*	*	2388	*	*	*	*	*	*	*	2242	*	*	743	*	*	*	164
+       0	*	*	*	*	*	*	2935	0	0	
+
+N 165  *	*	*	*	1221	*	*	2273	*	2530	*	2388	*	*	*	*	*	*	*	*	165
+       0	*	*	*	*	*	*	2935	0	0	
+
+W 166  *	*	*	*	1976	2046	*	*	*	*	*	*	*	*	*	*	2021	*	1959	*	166
+       0	*	*	*	*	*	*	2769	0	0	
+
+A 167  945	*	*	*	*	*	*	*	1057	*	*	*	*	*	*	*	*	*	*	*	167
+       0	*	*	*	*	*	*	1672	0	0	
+
+S 168  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	168
+       0	*	*	*	*	*	*	1000	0	0	
+
+V 169  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	169
+       0	*	*	*	*	*	*	1000	0	0	
+
+R 170  *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	170
+       0	*	*	*	*	*	*	1000	0	0	
+
+L 171  *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	171
+       0	*	*	*	*	*	*	1000	0	0	
+
+E 172  *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	172
+       0	*	*	*	*	*	*	1000	0	0	
+
+H 173  *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	173
+       0	*	*	*	*	*	*	1000	0	0	
+
+H 174  *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	174
+       0	*	*	*	*	*	*	1000	0	0	
+
+H 175  *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	175
+       0	*	*	*	*	*	*	1000	0	0	
+
+H 176  *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	176
+       0	*	*	*	*	*	*	1000	0	0	
+
+H 177  *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	177
+       0	*	*	*	*	*	*	1000	0	0	
+
+H 178  *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	178
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  79cba631d7059d8c2467baa2b9e42370
+FAM   
+FILE  79cba631d7059d8c2467baa2b9e42370
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:20:42 2013
+LENG  77 match states, 77 columns in multiple alignment
+FILT  173 out of 1097 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  7.8 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCHHHHHHHHCCCCCCCCCCCCCCCCHHHHCCCCCCCCCCCCCCCHHHCCCCCCCCCCCCCCCCCCC
+>ss_conf PSIPRED confidence values
+98887776330133188985887888875552566377643210234446667135327778999866677888788
+>Consensus
+xxxxxxxxxxkxxlCxxxxxxgxCxxGxxCxfxHxxxxxxxxxxxxxxxxxxCxxfxxxGxCxxGxxCxfxHxxxex
+>79cba631d7059d8c2467baa2b9e42370
+GSHMTTSSRYKTELCRTYSESGRCRYGAKCQFAHGLGELRQANRHPKYKTELCHKFKLQGRCPYGSRCHFIHNPTED
+>gi|255724312|ref|XP_002547085.1| hypothetical protein CTRG_01391 [Candida tropicalis MYA-3404]gi|240134976|gb|EER34530.1| hypothetical protein CTRG_01391 [Candida tropicalis MYA-3404]
+--------KDTIKLCASLIDPedEsvVCSAgGaENCKFHHDVVSYL-ESKPEDIE-GVCPVFEAIGYCPSGIKCRWLKS----
+>gi|124088676|ref|XP_001347192.1| hypothetical protein [Paramecium tetraurelia strain d4-2]gi|50057581|emb|CAH03565.1| hypothetical protein PTMB.368c [Paramecium tetraurelia]
+-----NEEKKKTEICKNFLFKGSCKYQENVQIIKisVHSPMETTNQeIEYLRMRTSKQSHArtiislelapmdqgVNTCTRKQRTR-LNGG---
+>gi|302851829|ref|XP_002957437.1| hypothetical protein VOLCADRAFT_98560 [Volvox carteri f. nagariensis]gi|300257241|gb|EFJ41492.1| hypothetical protein VOLCADRAFT_98560 [Volvox carteri f. nagariensis]
+----------AANTPQPIAGRPDVPRDpwktvvvKNVPWAAGEEEIA------GFFAQAGqvvnvwrgtnnrdgrvqafthVQFETREGAERALQlhnCD
+FngrqvfvePSTAGT-
+>gi|303286099|ref|XP_003062339.1| predicted protein [Micromonas pusilla CCMP1545]gi|226455856|gb|EEH53158.1| predicted protein [Micromonas pusilla CCMP1545]
+----------RARLAANIDRRP----------LQGDTDKT------VYVRNLG------------------------
+>gi|116192477|ref|XP_001222051.1| hypothetical protein CHGG_05956 [Chaetomium globosum CBS 148.51]gi|88181869|gb|EAQ89337.1| hypothetical protein CHGG_05956 [Chaetomium globosum CBS 148.51]
+-----------DLGAGQLTP------GFSGRQSGAVKK-----------VNMpCKQFSMTGNIISSTD----------
+>gi|322699105|gb|EFY90869.1| CCCH zinc finger protein [Metarhizium acridum CQMa 102]
+-----------LQPCKTFSTTGN-------RYFQMDRT-----------SALSK---RDSPETRGWLWVYTNDDT--
+>gi|61675708|ref|NP_035876.2| probable E3 ubiquitin-protein ligase makorin-3 [Mus musculus]gi|341940956|sp|Q60764.2|MKRN3_MOUSE RecName: Full=Probable E3 ubiquitin-protein ligase makorin-3; AltName: Full=Zinc finger protein 127gi|32452060|gb|AAH54771.1| Makorin, ring finger protein, 3 [Mus musculus]gi|74147940|dbj|BAE22320.1| unnamed protein product [Mus musculus]
+--------WTKQILCRYYL-HGQCKEGDNCRYSHDLSGRRR--------SRGGQ-DAQPRASADRGPKMATRWE---
+>gi|328856795|gb|EGG05915.1| hypothetical protein MELLADRAFT_29924 [Melampsora larici-populina 98AG31]
+--------LHAKTVCKHWL-RGLCKKGNSCEFLHEYNLRTMPecwffgkygfcsngdecmylHVDERMRVLEC-MDYRRGFCSKGPTCSQKHIR---
+>gi|156101764|ref|XP_001616575.1| hypothetical protein [Plasmodium vivax SaI-1]gi|148805449|gb|EDL46848.1| hypothetical protein, conserved [Plasmodium vivax]
+--SLIKKQFFKTKMCPFQKNKNYCLNESNCHYAHSIDELKPM--PDLRNTKLC-DYVKKKIPCRDENCKFAHDID--
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+G 1    *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1
+       356	2195	*	3170	170	*	*	2605	1106	0	
+
+S 2    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	2
+       0	*	*	*	*	*	*	3010	0	0	
+
+H 3    2964	*	*	*	*	3954	2336	*	*	3214	*	3744	3164	*	*	1665	*	*	*	*	3
+       0	*	*	*	*	*	*	3825	0	0	
+
+M 4    4662	3879	*	4256	*	*	*	4014	*	*	2482	*	1308	3960	*	2931	*	*	*	*	4
+       0	*	*	*	*	*	*	5118	0	0	
+
+T 5    *	*	*	3975	4719	3900	4922	4857	*	4416	*	4457	2418	3868	4815	4679	2544	2557	*	*	5
+       0	*	*	*	*	*	*	5846	0	0	
+
+T 6    3800	*	4159	4102	4783	4213	*	*	2969	*	5463	2392	*	*	3137	3305	2801	*	*	5359	6
+       0	*	*	*	*	*	*	6319	0	0	
+
+S 7    6552	*	4636	3459	*	4742	3486	*	3382	4657	*	2461	2561	5925	5390	2582	5750	5718	*	*	7
+       15	6552	*	1000	1000	*	*	6733	1106	0	
+
+S 8    3050	*	5103	4041	4987	4669	6204	5340	4270	4404	6037	4068	3814	3712	3588	2437	5790	4152	*	5902	8
+       0	*	*	1000	1000	*	*	7225	1000	0	
+
+R 9    5830	*	4675	5087	3667	6747	4056	*	2128	4089	6632	3149	4638	6417	2470	4454	6667	*	4969	4808	9
+       0	*	*	*	*	*	*	7532	0	0	
+
+Y 10   5448	*	4054	4966	3227	6800	5551	*	3726	3996	*	5854	3755	5675	3899	5181	4148	5778	5743	1686	10
+       14	6731	*	0	*	*	*	7728	1000	0	
+
+K 11   3951	*	5460	4120	6131	4128	7192	7126	1063	6909	*	5294	5881	5471	3340	3495	5417	*	*	7208	11
+       19	*	6260	*	*	*	*	8082	0	0	
+
+T 12   3673	*	5573	4228	*	5182	5998	4654	3338	4895	6004	5029	5223	3843	3667	3462	1936	4448	*	6310	12
+       10	7229	*	0	*	*	0	8237	1021	1124	
+
+E 13   4625	*	5332	2966	*	4892	6540	4174	2808	4222	4596	4259	4033	3525	2845	*	3593	4415	*	*	13
+       0	*	*	*	*	1631	563	8242	0	1216	
+
+L 14   5339	*	5913	4473	7253	5393	6208	2877	6616	1556	4208	6424	3620	6378	6394	*	4341	2776	*	5869	14
+       9	7272	*	887	1123	0	*	8300	1090	1124	
+
+C 15   5309	136	*	*	*	*	*	6606	*	*	*	7283	5958	*	6391	*	*	*	5637	*	15
+       7	7732	*	2000	415	*	*	8341	1000	0	
+
+R 16   4127	*	6403	4750	5740	4970	4706	5306	2350	5621	6016	4846	3286	4073	2295	4535	4010	6857	5611	6277	16
+       0	*	*	*	*	*	*	8341	0	0	
+
+T 17   4293	*	3817	4987	2513	7464	3086	7754	3853	7036	7336	3468	5635	5653	4845	4210	4686	*	4948	2559	17
+       0	*	*	3585	126	*	*	8341	1017	0	
+
+Y 18   5843	*	*	*	1463	*	7124	3862	6861	3845	6216	6408	6248	7330	*	*	6570	3753	3441	2033	18
+       30	*	5614	*	*	*	*	8341	0	0	
+
+S 19   2826	7382	7401	5001	6685	*	6510	4371	4028	2545	3817	5168	5446	3076	4003	3898	4305	3690	*	5924	19
+       610	7662	1557	2585	263	738	1320	8331	1000	1158	
+
+E 20   4643	6729	4421	4700	4729	4326	7021	4791	3033	4251	6956	4849	5570	3461	2548	3352	2972	*	*	6901	20
+       213	3445	4462	2287	331	56	4726	8264	1609	4616	
+
+S 21   4177	*	6350	4854	5716	3187	3358	6280	3102	6188	*	2983	4238	4438	3809	4238	2542	*	*	7188	21
+       33	5480	*	3305	154	1292	757	8256	1251	1527	
+
+G 22   5924	*	4981	4061	7023	685	7291	*	3404	*	*	5171	5109	6396	4181	5948	5552	*	*	*	22
+       73	4542	7280	2506	279	2026	406	8267	1358	1287	
+
+R 23   4773	5848	4679	3939	4364	3852	4311	4605	3515	4855	*	4296	5419	4730	3194	2933	4729	3887	7428	4403	23
+       41	7193	5575	1585	585	*	0	8212	1000	1383	
+
+C 24   *	117	6813	*	*	*	*	*	*	*	*	6909	*	*	*	*	5648	5204	6187	*	24
+       0	*	*	*	*	*	0	8150	0	1623	
+
+R 25   4051	*	5664	5088	5090	7227	5414	5310	2789	4494	6077	4247	2751	4309	2516	3714	3702	6040	*	7106	25
+       0	*	*	*	*	2816	221	8150	0	1623	
+
+Y 26   4637	*	6029	4041	3009	*	4605	5893	3174	4260	5708	3577	*	5744	2832	6473	6408	5187	5674	2275	26
+       78	6393	4608	0	*	1232	800	8145	1091	1528	
+
+G 27   5298	*	4544	4981	*	409	*	*	5309	*	*	5053	*	5113	5103	5835	*	5963	*	*	27
+       36	5360	*	2401	303	745	1310	8208	1171	1771	
+
+A 28   4323	*	1590	3035	4965	5366	6180	6403	4067	5739	6388	3761	4090	5816	6467	3082	6404	6286	*	5687	28
+       8	7482	*	1000	1000	*	0	8225	1000	1277	
+
+K 29   3025	*	3862	4470	*	5206	6300	*	2800	5051	6301	2522	*	3936	2744	3099	4979	*	*	*	29
+       8	7444	*	0	*	*	0	8225	1000	1277	
+
+C 30   6447	146	*	*	*	5594	*	*	*	*	5739	*	*	*	6835	*	*	4777	*	*	30
+       0	*	*	*	*	1101	906	8225	0	1277	
+
+Q 31   5546	*	5151	4288	6607	5039	3881	5845	2409	4464	*	5147	3472	4284	2247	3849	3862	7554	6726	7277	31
+       17	*	6447	*	*	*	0	8273	0	1116	
+
+F 32   7267	7541	6995	*	870	*	7638	5909	6689	4832	*	7371	*	5835	*	6499	*	7918	4378	1838	32
+       10	*	7119	*	*	2027	406	8240	0	1308	
+
+A 33   1871	6845	6391	4776	6265	6127	5344	4689	5362	3079	7188	5493	6994	5055	5355	1824	6607	5249	*	5278	33
+       6	*	7962	*	*	*	0	8253	0	1303	
+
+H 34   5847	*	6719	*	*	6037	160	*	5908	*	*	5591	*	5716	7331	*	*	*	*	*	34
+       24	5908	*	1000	1000	*	0	8255	1088	1355	
+
+G 35   4898	5721	2090	4367	*	2365	6662	5207	4692	6208	6263	3459	3968	5379	7431	3345	5048	4193	*	*	35
+       26	*	5796	*	*	*	0	8255	0	1355	
+
+L 36   4792	6823	3848	2902	6112	5123	5666	3473	4048	2748	6983	*	3461	4728	4405	4537	5473	3256	6549	5318	36
+       15	6588	*	2545	271	2389	306	8260	1119	1587	
+
+G 37   4040	7376	3359	2427	5090	4990	5530	5952	3078	5643	6621	4820	4012	4195	4201	3304	4245	4569	*	*	37
+       36	5342	*	2276	334	2545	271	8254	1428	1464	
+
+E 38   3267	8492	3539	1661	*	4019	6722	7120	3045	5927	6421	5675	3927	5802	5502	3675	5278	6054	6070	7926	38
+       139	4233	4688	2386	306	*	0	8265	1497	1375	
+
+L 39   4431	5217	5246	5389	3419	5700	5336	4130	5336	2632	3985	5401	5703	3742	3984	4208	4525	4829	7622	3133	39
+       64	4897	6667	2416	299	*	0	8135	1385	1842	
+
+R 40   4087	6925	*	4378	5350	7260	5688	4320	3251	2937	4132	5884	5748	4382	1937	4542	5192	4778	5294	6078	40
+       227	4444	3324	2525	275	*	0	8128	1410	1966	
+
+Q 41   3048	*	4865	4426	4396	5194	5522	6256	3148	5103	4789	3614	4042	4223	3823	2980	3747	5085	*	6234	41
+       109	5449	4324	3134	174	3420	141	7888	1189	2945	
+
+A 42   2637	7253	4751	3786	7436	6350	4561	3896	4262	4565	4843	4381	3538	4719	4874	3532	3200	4226	*	6447	42
+       567	2806	2459	3466	137	4169	82	7811	2210	3143	
+
+N 43   3632	6945	4895	3860	*	5253	4159	5534	3533	4616	6159	2371	2760	4178	*	3732	4407	5462	*	5474	43
+       620	1772	4147	4409	70	3967	95	7647	3102	4296	
+
+R 44   4802	*	2795	4422	6697	6263	4781	5937	2641	4814	5064	5331	4827	4173	2473	4832	5314	3543	*	5029	44
+       369	2210	6697	3176	169	1607	574	7662	2456	4523	
+
+H 45   7648	6504	3678	4426	5035	4669	3949	4309	2703	4443	*	3263	2354	5185	4052	5260	5169	5263	*	7089	45
+       218	2882	7718	3223	163	2061	395	7849	2108	3584	
+
+P 46   3991	6087	4718	2873	*	4877	6070	6602	5365	7225	*	5311	1348	4759	4995	3123	5463	5368	*	6664	46
+       151	3329	*	2694	242	2132	374	7892	1899	3063	
+
+K 47   4069	*	3404	4288	4611	4981	4926	4568	2576	3889	6884	4313	4270	4386	3040	4849	5140	5182	*	4599	47
+       95	4087	7586	2443	293	3508	133	8050	1559	2624	
+
+Y 48   5329	7174	2980	3991	3658	5508	6250	5459	5372	3515	6038	6067	4695	4997	4479	4261	5303	3703	4993	2327	48
+       140	4706	4212	371	2142	2099	384	8082	1318	2624	
+
+K 49   5811	*	3983	4962	5216	4089	6385	3953	1992	4126	7026	5943	5752	3784	2463	4395	4583	5507	*	6914	49
+       182	3132	7814	3232	162	82	4183	8035	2005	2726	
+
+T 50   3480	*	7491	4259	4986	3785	6372	4741	4082	5773	5489	6638	4383	4911	4309	3006	1819	4550	*	7114	50
+       41	5174	*	1220	809	0	*	8308	1220	1079	
+
+E 51   4033	*	5504	5034	4742	4172	6152	4525	2543	4794	5296	4380	4193	3633	2887	4241	3899	4322	7580	6754	51
+       18	6353	*	0	*	*	*	8299	1061	0	
+
+L 52   4176	7195	5283	4563	7345	5572	*	2995	5347	2313	3641	7441	2908	5441	4442	4900	5464	2819	*	7535	52
+       26	5835	*	524	1715	*	*	8299	1147	0	
+
+C 53   *	235	*	*	*	4766	*	*	*	*	*	*	4892	7347	5850	5063	7207	*	6592	6709	53
+       295	5956	2567	4392	70	*	*	8299	1102	0	
+
+H 54   5575	4221	5379	7355	5102	6349	5731	5239	2201	7053	7380	4533	2131	4724	3139	*	4119	4142	*	4626	54
+       102	*	3869	*	*	59	4648	8331	0	2858	
+
+K 55   5374	*	3448	5490	3325	*	4196	5554	2901	4872	5341	3020	6734	3789	3762	3797	5639	4279	6937	3981	55
+       78	6157	4704	2585	263	585	1586	8150	1095	1656	
+
+F 56   6371	*	5279	*	1253	*	7963	6290	*	4039	6826	5702	*	*	*	5282	6986	4706	3537	1843	56
+       149	*	3351	*	*	3428	141	8197	0	1628	
+
+K 57   3813	*	5011	3217	3527	6003	3218	4407	4452	3700	4295	5035	5404	3808	5751	4092	4725	5804	5730	3599	57
+       91	5872	4506	0	*	380	2112	8128	1132	2534	
+
+L 58   2891	*	4261	4118	5539	6416	*	5100	3598	2796	5241	4931	7236	2970	3751	4091	3261	5070	7367	*	58
+       106	4227	5831	2684	244	471	1845	8235	1439	1857	
+
+Q 59   4132	*	4992	7393	5303	4102	4742	6154	3398	4101	5104	4288	4528	3324	3374	3555	3027	4816	7529	4355	59
+       8	7495	*	1000	1000	2927	203	8236	1000	1474	
+
+G 60   5723	7325	6345	4976	7253	531	7205	*	5064	*	6673	3886	*	5311	4724	4592	6954	7582	*	*	60
+       59	4959	6945	2168	363	1534	611	8235	1387	1404	
+
+R 61   4752	6642	5104	5012	3278	3626	5153	5081	3299	5453	5252	3982	5620	4886	4156	3890	3849	4653	6553	2840	61
+       9	7276	*	1000	1000	985	1015	8277	1021	1320	
+
+C 62   5394	137	*	6134	*	*	*	6175	*	6003	*	6958	*	*	*	6028	*	*	*	*	62
+       6	8019	*	0	*	*	0	8257	1001	1124	
+
+P 63   4278	6178	7416	4265	6511	6003	5133	4859	2573	5973	7442	5768	2151	5341	2544	4906	3855	4900	7369	5975	63
+       20	*	6151	*	*	*	0	8257	0	1124	
+
+Y 64   4101	*	4653	5165	2695	6976	5092	*	4082	5368	5180	2709	*	4962	2485	4549	*	7391	*	2650	64
+       40	7064	5649	0	*	1014	986	8265	1009	1313	
+
+G 65   4493	*	6105	4918	*	409	6843	7534	5350	6929	*	6208	*	*	5268	4254	*	*	5946	*	65
+       8	7476	*	0	*	926	1078	8251	1000	1337	
+
+S 66   3940	*	2591	3686	7208	4273	*	4314	4472	3483	6725	4972	3785	4051	4776	3559	5489	3756	4965	5374	66
+       18	7492	7255	0	*	*	0	8256	1024	1124	
+
+R 67   3856	6072	4315	4759	5637	5560	5406	*	2660	4815	5180	2868	6039	4883	2689	3475	3790	5207	*	6342	67
+       43	5082	*	2059	396	*	0	8300	1211	1192	
+
+C 68   *	127	*	*	*	*	*	*	5944	5999	*	*	*	*	6557	*	5851	*	6084	6691	68
+       0	*	*	*	*	*	0	8271	0	1192	
+
+H 69   4487	*	4800	6021	4966	7239	4826	7386	3579	5282	4301	4968	3542	3585	1540	4937	4700	5052	5797	*	69
+       25	*	5851	*	*	435	1942	8271	0	1192	
+
+F 70   5910	6987	7509	7568	877	*	5035	5964	*	4466	5731	5896	*	7134	6136	*	*	*	5899	1974	70
+       37	5291	*	2665	248	0	*	8247	1155	1156	
+
+I 71   1988	5211	4616	5979	7318	4775	4966	5262	3909	2895	5396	5799	5246	6548	4860	2957	5013	4096	6666	5566	71
+       10	7156	*	0	*	*	*	8303	1000	0	
+
+H 72   6949	*	6540	*	*	4198	381	*	5163	*	6969	4968	*	*	5900	3756	*	*	*	*	72
+       0	*	*	*	*	0	*	8253	0	1000	
+
+N 73   4642	*	2658	4078	5706	2632	5652	4724	6062	7342	6970	6479	3731	6497	5578	2798	3144	3609	5838	*	73
+       19	6275	*	716	1353	*	*	8203	1073	0	
+
+P 74   3769	*	3354	2763	6098	4603	4756	4536	4157	3923	5764	5018	3742	5941	3559	4152	5087	3413	7235	6353	74
+       17	6410	*	1585	585	0	*	8140	1000	1000	
+
+T 75   3518	6443	3383	3012	*	3886	*	6703	6331	5280	*	3700	3870	3479	4588	3392	2781	5620	6680	5748	75
+       0	*	*	*	*	*	*	7742	0	0	
+
+E 76   5321	*	4361	627	*	*	*	*	5166	*	*	4211	5668	3829	*	5303	3613	*	*	*	76
+       0	*	*	*	*	*	*	6738	0	0	
+
+D 77   *	*	915	2386	*	*	*	*	*	*	*	*	*	1845	*	*	*	*	*	*	77
+       0	*	*	0	*	*	*	4019	0	0	
+
+//
+�HHsearch 1.5
+NAME  7aa7e6eee43e1aae66ded2fce9550a54
+FAM   
+FILE  7aa7e6eee43e1aae66ded2fce9550a54
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 11:59:39 2013
+LENG  67 match states, 67 columns in multiple alignment
+FILT  101 out of 249 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  4.2 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEEEEEEECCCCCHHHHHHHHHHHHHHCCCCCEEEEEEEEEEECCEEEEEEEEEEEEEEEEECCCC
+>ss_conf PSIPRED confidence values
+9689999987998899999999999874013970999999999899797799999999999988889
+>Consensus
+VxKviElvgsSxxSxeDAixxAixxAxkTlxnixxxeVxxxxVxdgxixxxxyqvxlkVxFxxexxx
+>7aa7e6eee43e1aae66ded2fce9550a54
+VFKKVLLTGTSEESFTAAADDAIDRAEDTLDNVVWAEVVDQGVEIGAVEERTYQTEVQVAFELDGSQ
+>gi|89900230|ref|YP_522701.1| hypothetical protein Rfer_1437 [Rhodoferax ferrireducens T118]gi|89344967|gb|ABD69170.1| protein of unknown function DUF1458 [Rhodoferax ferrireducens T118]
+VAKVIEVSATSKISFEDAINQGITRACDTVSNVRgaWIKEQKVSIEDGRI--SAYRVNMQVTFVLGGD-
+>gi|332704415|ref|ZP_08424503.1| protein of unknown function DUF1458 [Desulfovibrio africanus str. Walvis Bay]gi|332554564|gb|EGJ51608.1| protein of unknown function DUF1458 [Desulfovibrio africanus str. Walvis Bay]
+VVKTIEIIAQSEKGFEDAVRTAVSEVAKSVRNIVSVWIKefEAKVENNQV--TVFRVTTKISFMVE---
+>gi|300311709|ref|YP_003775801.1| hypothetical protein Hsero_2394 [Herbaspirillum seropedicae SmR1]gi|300074494|gb|ADJ63893.1| hypothetical protein Hsero_2394 [Herbaspirillum seropedicae SmR1]
+TIEVIEVLAESDSSWRQAAQNAVHGAAVKIHNLRSLYVSdmEAVVADNKI--TRYRINAKISFLVD---
+>gi|297204099|ref|ZP_06921496.1| conserved hypothetical protein [Streptomyces sviceus ATCC 29083]gi|197714765|gb|EDY58799.1| conserved hypothetical protein [Streptomyces sviceus ATCC 29083]
+TYRVTEIVGTSPDGVDQAIRNGISRASQTLRNLDWFEVTqvRGQIEDGQI--LHWQVGLKVGFRLDES-
+>gi|78189964|ref|YP_380302.1| hypothetical protein Cag_2011 [Chlorobium chlorochromatii CaD3]gi|78172163|gb|ABB29259.1| conserved hypothetical protein [Chlorobium chlorochromatii CaD3]
+IYKKVEMVGSSPNSIEDAINNAVAKAAETMHSIRWVEVAetRCHVENQKV--AYFQVTVKIGATLEE--
+>gi|256752056|ref|ZP_05492924.1| protein of unknown function DUF1458 [Thermoanaerobacter ethanolicus CCSD1]gi|320115951|ref|YP_004186110.1| hypothetical protein Thebr_1151 [Thermoanaerobacter brockii subsp. finnii Ako-1]gi|256749066|gb|EEU62102.1| protein of unknown function DUF1458 [Thermoanaerobacter ethanolicus CCSD1]gi|319929042|gb|ADV79727.1| protein of unknown function DUF1458 [Thermoanaerobacter brockii subsp. finnii Ako-1]
+VVKVLNVVGDSTVSWEDAIHKAVEEAAKSIDNISGIEVVnqTANVKNGKI--VEYKANIQIAYRADK--
+>gi|330508936|ref|YP_004385364.1| hypothetical protein MCON_3276 [Methanosaeta concilii GP6]gi|328929744|gb|AEB69546.1| Protein of unknown function (DUF1458) [Methanosaeta concilii GP6]
+VYRAIELVGSSPIGWEDAAKNAIDTAHKSIWNLRIARVAelDAKLdEKGNI--ILYRIKLRISLKYED--
+>gi|284165347|ref|YP_003403626.1| hypothetical protein Htur_2070 [Haloterrigena turkmenica DSM 5511]gi|284015002|gb|ADB60953.1| protein of unknown function DUF1458 [Haloterrigena turkmenica DSM 5511]
+--EIVELVGNSTESWEDAVQNAMDAADETIDHVSGVEIEseRIDREGRET--ERYVVTLEASIVPE---
+>gi|258654236|ref|YP_003203392.1| hypothetical protein Namu_4114 [Nakamurella multipartita DSM 44233]gi|258557461|gb|ACV80403.1| protein of unknown function DUF1458 [Nakamurella multipartita DSM 44233]
+VQKAIDLSGSG-ETIQDAVSEALDRARETLEGITRFEVKDItGIVDGPH--TAYQVEIRVWFTV----
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+V 1    6549	*	*	*	4934	*	*	2627	*	6753	*	*	*	5881	*	*	2965	643	*	*	1
+       0	*	*	*	*	*	*	4280	0	0	
+
+F 2    2468	*	*	6328	3529	*	*	5328	*	3652	*	*	*	5413	*	*	*	2388	*	1318	2
+       0	*	*	*	*	*	*	4314	0	0	
+
+K 3    6603	*	*	4815	*	6790	*	*	373	*	*	6022	6708	6397	2879	*	*	*	*	*	3
+       0	*	*	*	*	*	*	4345	0	0	
+
+K 4    4931	*	*	*	5312	*	5253	2469	2463	4534	7149	6035	*	*	*	6740	5681	1121	*	*	4
+       0	*	*	*	*	*	*	4345	0	0	
+
+V 5    6000	*	*	*	*	*	*	1093	*	3768	*	*	*	*	*	4721	2778	1952	*	*	5
+       0	*	*	*	*	*	*	4345	0	0	
+
+L 6    5957	*	3503	340	*	*	*	*	*	5276	*	6670	*	6093	*	*	4179	*	*	*	6
+       0	*	*	*	*	*	*	4372	0	0	
+
+L 7    5060	*	*	*	5503	*	*	1866	*	1251	5111	*	*	*	*	*	5943	2264	*	*	7
+       0	*	*	*	*	*	*	4390	0	0	
+
+T 8    *	*	*	*	*	*	*	2274	*	3342	*	6846	*	*	*	3355	2723	1226	*	6749	8
+       0	*	*	*	*	*	*	4390	0	0	
+
+G 9    1896	5968	*	*	*	653	*	*	*	*	*	*	*	*	*	3658	*	*	*	*	9
+       0	*	*	*	*	*	*	4390	0	0	
+
+T 10   6446	*	4933	2881	5503	*	*	5483	*	6777	6645	4092	*	4424	6048	1707	1643	6693	*	*	10
+       0	*	*	*	*	*	*	4390	0	0	
+
+S 11   *	*	*	*	*	4841	*	*	*	*	*	*	*	*	*	51	*	*	*	*	11
+       51	*	4841	*	*	*	*	4390	0	0	
+
+E 12   5277	*	2643	2437	*	*	*	*	3517	*	*	4417	2009	4868	5854	4024	2983	7082	*	*	12
+       0	*	*	*	*	0	*	4347	0	1095	
+
+E 13   *	*	3708	2035	*	*	6600	4768	2046	*	*	3711	*	4769	6693	3552	3397	3516	*	*	13
+       0	*	*	*	*	*	*	4390	0	0	
+
+S 14   6720	*	*	*	*	2567	*	*	*	*	*	4707	*	*	*	393	5515	*	*	*	14
+       0	*	*	*	*	*	*	4390	0	0	
+
+F 15   *	*	*	*	1744	*	*	2330	*	5426	7136	*	*	6772	*	4733	7023	3608	1616	6698	15
+       0	*	*	*	*	*	*	4390	0	0	
+
+T 16   7078	*	1792	857	*	*	*	*	4944	*	*	7112	*	4496	6038	5913	4805	*	*	*	16
+       0	*	*	*	*	*	*	4390	0	0	
+
+A 17   3170	*	521	3711	*	*	6533	*	4892	*	*	6377	*	4079	*	*	*	*	*	*	17
+       0	*	*	*	*	*	*	4390	0	0	
+
+A 18   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	18
+       0	*	*	*	*	*	*	4390	0	0	
+
+A 19   2051	*	*	*	5968	*	*	1515	*	6294	*	*	*	*	*	*	4656	1555	*	*	19
+       0	*	*	*	*	*	*	4390	0	0	
+
+D 20   4307	*	3471	3414	*	*	6679	*	2430	6034	*	3912	*	1901	2675	4433	5804	*	*	*	20
+       0	*	*	*	*	*	*	4390	0	0	
+
+D 21   3844	*	4412	4053	*	5763	5060	*	3498	*	*	1264	*	3916	6611	3836	4027	4008	*	*	21
+       0	*	*	*	*	*	*	4390	0	0	
+
+A 22   401	*	*	*	*	2407	*	*	*	*	*	*	*	*	*	*	4494	6656	*	*	22
+       0	*	*	*	*	*	*	4390	0	0	
+
+I 23   *	*	*	*	5599	*	*	1236	*	2695	5091	*	*	*	5060	*	*	1552	*	*	23
+       0	*	*	*	*	*	*	4390	0	0	
+
+D 24   2455	*	2935	2291	*	6034	4048	6590	2901	*	*	5497	*	4784	4177	3733	4817	5035	7023	*	24
+       0	*	*	*	*	*	*	4390	0	0	
+
+R 25   4773	*	6062	2269	*	5220	4573	*	2851	*	*	*	*	4601	1390	6640	3492	6388	*	*	25
+       0	*	*	*	*	*	*	4390	0	0	
+
+A 26   256	7043	*	*	*	5060	*	6057	*	*	*	*	*	*	*	*	5757	3450	*	*	26
+       0	*	*	*	*	*	*	4390	0	0	
+
+E 27   2191	5854	4898	5295	*	3093	4932	*	*	*	*	3364	*	5341	4395	1653	4047	7153	*	*	27
+       32	*	5503	*	*	*	*	4390	0	0	
+
+D 28   5410	*	4553	2456	*	*	*	*	1045	*	*	4483	*	3178	3862	6018	6360	6023	*	*	28
+       24	5899	*	2322	322	*	0	4364	1021	1051	
+
+T 29   *	*	6405	*	*	*	*	*	4443	*	*	*	*	*	*	1936	555	*	*	*	29
+       19	*	6276	*	*	*	0	4364	0	1051	
+
+L 30   *	*	*	*	*	*	6402	2280	5889	1164	4191	*	*	*	*	*	*	1919	*	*	30
+       0	*	*	*	*	*	0	4346	0	1122	
+
+D 31   6745	*	2805	3841	*	5187	3326	*	2446	6962	*	5328	6371	*	1548	4439	5364	*	6674	*	31
+       0	*	*	*	*	840	1180	4346	0	1122	
+
+N 32   *	*	3198	5874	*	2891	2974	*	4726	*	*	885	*	6600	*	6741	*	*	*	6252	32
+       0	*	*	*	*	0	*	4373	0	1032	
+
+V 33   *	*	*	*	*	*	*	1306	*	2066	3555	*	5503	*	*	*	*	2002	*	*	33
+       0	*	*	*	*	*	*	4390	0	0	
+
+V 34   5904	7184	3026	3305	*	*	6855	*	3112	*	5968	*	*	3636	2007	3666	2793	4828	*	5341	34
+       115	3711	*	1000	1000	*	*	4390	1257	0	
+
+W 35   6428	*	*	*	6650	2276	5503	4498	*	*	*	*	*	6262	5515	2539	*	4089	1185	*	35
+       0	*	*	*	*	*	*	4390	0	0	
+
+A 36   2152	*	*	*	1601	6440	*	2832	*	4780	6446	*	*	*	*	*	*	2026	*	*	36
+       0	*	*	*	*	*	*	4390	0	0	
+
+E 37   *	*	*	848	*	*	*	*	4060	*	*	4384	*	4301	4574	5749	6792	*	3200	3217	37
+       118	*	3667	*	*	*	*	4390	0	0	
+
+V 38   *	*	5541	4085	*	*	*	2532	*	*	6705	*	*	*	*	*	6588	460	*	*	38
+       0	*	*	0	*	0	*	4423	1260	1260	
+
+V 39   4409	*	4279	5304	*	*	*	4585	2203	4911	6650	3995	*	3102	6977	5314	2864	2278	*	5787	39
+       2557	269	*	980	1020	*	*	4390	3725	0	
+
+D 40   6913	*	2586	2751	*	*	*	*	2919	*	*	4505	*	5937	1614	4896	3014	*	*	*	40
+       0	*	*	*	*	*	*	4390	0	0	
+
+Q 41   2047	5155	*	*	5341	1805	*	4045	*	4212	4423	*	*	5295	*	6303	6072	2286	*	*	41
+       153	3313	*	0	*	*	*	4390	1344	0	
+
+G 42   5442	6760	3456	4230	*	2868	2464	4523	4210	*	6304	3236	*	4364	5220	4136	3719	3810	*	6755	42
+       0	*	*	*	*	0	*	4423	0	1260	
+
+V 43   4734	*	*	*	*	*	*	1944	*	3388	6440	*	*	*	5907	5503	*	845	*	*	43
+       102	3876	*	0	*	*	*	4390	1226	0	
+
+E 44   4430	*	3228	1447	*	5387	*	*	2942	6303	*	4471	*	4071	5048	4490	4318	3574	*	*	44
+       0	*	*	*	*	*	*	4390	0	0	
+
+I 45   6645	*	1081	3645	*	3301	6428	5295	4758	5341	*	2700	6118	5060	*	5836	*	5538	*	*	45
+       32	5495	*	0	*	*	*	4390	1061	0	
+
+G 46   5067	*	4304	6969	*	668	*	*	5341	*	*	2615	*	5962	4691	4655	*	*	*	*	46
+       11	7040	*	0	*	*	*	4390	1000	0	
+
+A 47   3703	*	5015	3383	*	4975	6015	*	1444	6992	6693	3513	5515	3336	3257	5130	*	6172	*	6880	47
+       0	*	*	*	*	*	*	4390	0	0	
+
+V 48   *	*	*	6303	6880	*	5515	1246	*	4025	*	*	5633	*	*	4778	5907	1320	*	*	48
+       3803	*	107	*	*	*	*	4390	0	0	
+
+E 49   1607	*	1574	1574	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	49
+       0	*	*	*	*	5343	36	1494	0	3989	
+
+E 50   *	*	942	1060	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	50
+       0	*	*	*	*	62	4568	1948	0	3929	
+
+R 51   2692	*	4221	4454	7004	5015	*	4479	4034	5578	5290	5397	5326	4714	3720	3825	2533	2747	*	*	51
+       0	*	*	*	*	0	*	4368	0	1111	
+
+T 52   3094	*	5819	2128	*	5201	2430	*	3432	5781	*	6262	*	6698	3450	4275	3739	5865	*	4186	52
+       0	*	*	*	*	*	*	4390	0	0	
+
+Y 53   *	*	*	*	2587	*	*	*	*	*	*	*	*	*	*	*	*	6698	2743	568	53
+       0	*	*	*	*	*	*	4390	0	0	
+
+Q 54   *	*	*	*	*	4753	5412	*	3352	5943	*	*	*	1209	1442	*	*	5348	*	*	54
+       0	*	*	*	*	*	*	4390	0	0	
+
+T 55   2481	5208	*	*	*	*	*	3942	*	6590	6377	*	*	*	*	5060	4503	661	*	*	55
+       118	*	3667	*	*	*	*	4390	0	0	
+
+E 56   6824	*	4399	3655	*	4866	4292	6064	3749	*	*	2087	*	*	3294	5507	2033	3540	*	*	56
+       0	*	*	*	*	*	0	4423	0	1260	
+
+V 57   3335	4013	*	*	*	*	*	3819	*	1360	3187	*	*	*	*	*	6504	1956	*	*	57
+       0	*	*	1000	1000	0	*	4423	1260	1260	
+
+Q 58   5390	*	*	2709	*	*	6852	6057	848	7035	6986	5278	*	3772	3799	5546	4780	*	*	*	58
+       0	*	*	*	*	*	*	4390	0	0	
+
+V 59   5197	*	*	*	*	*	*	1684	*	3162	*	5029	*	*	*	*	*	946	*	*	59
+       0	*	*	*	*	*	*	4364	0	0	
+
+A 60   2371	6060	*	*	*	1996	*	5385	*	*	*	*	*	*	*	1655	2515	*	5358	*	60
+       0	*	*	*	*	*	*	4381	0	0	
+
+F 61   6379	*	*	*	220	*	*	5460	*	5600	6565	*	*	*	*	*	*	5890	*	4096	61
+       0	*	*	*	*	*	*	4381	0	0	
+
+E 62   4707	*	*	2879	*	6921	6141	4710	2810	3358	6467	*	6609	*	2343	5831	2759	2826	*	*	62
+       0	*	*	*	*	*	*	4381	0	0	
+
+L 63   6389	*	5097	5849	6666	*	5866	3173	6422	1384	5791	*	4229	*	5890	*	*	1997	*	3835	63
+       22	6025	*	1000	1000	*	*	4381	1010	0	
+
+D 64   3852	*	1943	1347	*	5669	4732	*	3861	*	*	4800	*	3813	5560	*	6585	6301	*	*	64
+       61	4593	*	552	1653	*	*	4302	1036	0	
+
+G 65   4903	*	1038	2964	*	3236	*	*	4834	*	*	4527	4490	5843	4963	3778	*	*	*	*	65
+       899	1108	*	1854	467	*	*	3811	1189	0	
+
+S 66   2671	*	2155	3263	*	2016	*	*	*	*	*	*	*	*	*	1905	*	*	*	*	66
+       0	*	*	*	*	*	*	2682	0	0	
+
+Q 67   *	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	67
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  7bf67dbec14c0ea001ff88bc73dd7396
+FAM   
+FILE  7bf67dbec14c0ea001ff88bc73dd7396
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:27:42 2013
+LENG  229 match states, 229 columns in multiple alignment
+FILT  167 out of 236 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  4.3 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCEEEEEEECCCCCCCCCCCCCCCEEEHHEEEEEECCCCCCCCCCCCCCCCCCCCCCCCCEEEECCCCEECCCCCCCCCEECCCCCCCCCCCCCCCHHH
+HHHHCCCCCEEEECCEEEEEECCCCCCCCCCCCCCCCCCEEEEEEEECCCCCCCCCCCCCCCCCCCCCCCCCEEEECCCCCCCCCCCCCCEEEECCCCCC
+CCCCCCCCCCCHHHHHHHCCEEEEEECCC
+>ss_conf PSIPRED confidence values
+9734899996257874777999974531013234651467888989887422125645786257799984155567874200256888887778868778
+5524351625043367589841676478899986322321647878347887778776888631146246771588899987636887406763268765
+43477441223210020231604866039
+>Consensus
+xxxxgxlxtxHSQtxxiPxCpxgxxxLwxGySllxxxgxxxxxgQdLGxxGSClxxFstmPfxxCxxxxvCxyasrndxSyWLstxxxxpxxmxpxxxxx
+ixxyISRCxVCexxxxxiaxHSQtxxiPxCPxGxxxLWxGYSflmxtgxgxxgxGQxLgspGSCLxxFrtxPFieCxgxgxCxyxsnxxSfWLstxxxxx
+xfxxPxxxxlxxxxixxxISRCxVCxxxx
+>7bf67dbec14c0ea001ff88bc73dd7396
+SVDHGFLVTRHSQTTDDPQCPPGTKILYHGYSLLYVQGNERAHGQDLGTAGSCLRKFSTMPFLFCNINNVCNFASRNDYSYWLSTPEPMPMSMAPITGEN
+IRPFISRCAVCEAPAMVMAVHSQTIQIPQCPTGWSSLWIGYSFVMHTSAGAEGSGQALASPGSCLEEFRSAPFIECHGRGTCNYYANAYSFWLATIERSE
+MFKKPTPSTLKAGELRTHVSRCQVCMRRT
+>gi|261408017|ref|YP_003244258.1| collagen triple helix repeat-containing protein [Paenibacillus sp. Y412MC10]gi|261284480|gb|ACX66451.1| collagen triple helix repeat protein [Paenibacillus sp. Y412MC10]
+---GVTGATGATGE-------TGVTGATGATGAIGVTGATGTTGETgvTGATGATGTTGAATGATGVRGNRSNRINSNRSYR------------------
+----------------------------------------------------------------------------------------------------
+-------------------------------
+>gi|76154243|gb|AAX25734.2| SJCHGC06113 protein [Schistosoma japonicum]
+----------------------------------------------------------------------------------------------------
+--------------SILFARHYQTpfVen--LTCPGGTNKLFTGYSYVMGGGV-DDLVSMDLGTPSSCLSKFSSLPMTQCERDTTCQS--smrH--erSY
+WLATL--VPRSEQP----IPVNQTADQIARCVVCEA--
+>gi|260825417|ref|XP_002607663.1| hypothetical protein BRAFLDRAFT_84648 [Branchiostoma floridae]gi|229293011|gb|EEN63673.1| hypothetical protein BRAFLDRAFT_84648 [Branchiostoma floridae]
+----------------------------------------------------------------------------------------------------
+--------------AILTVIHSQTKDIPECPCGLTEVYNGYSLV-ELTGSNFDPDQDLGSTRSCLPYFSVS-pVTVC-g-GKVCT-EQpT---qktLWLT
+S-gEALPTSQ------hVTDDVLASAVSRCTLC----
+>gi|313230516|emb|CBY18732.1| unnamed protein product [Oikopleura dioica]
+----------------------------------------------------------------------------------------------------
+--------------GFVVTRHSQSTFVPKCPAGSMKLWDGYSLAGIRT-PAGDIAQDMGGSGSCLPNVSLEPAKSCR-KGSCK--SmTKLTSWLGIGDSP
+PTGPNP----VC--DVKAFISRCSVCEV--
+>gi|26348681|dbj|BAC37980.1| unnamed protein product [Mus musculus]
+----------------------------------------------------------------------------------------------------
+-----------VAHGFLITRHSQTTEAPQCPRGTVHIYEGFSLLYVQ-GNKRAHGQDLGTAGSCLRRFSTMPFMFCNINNVCNFAsRNDYSYWLSTPEPM
+PMN----MEPLKGQSIQPFISRCAVCEA--
+>gi|318087214|gb|ADV40199.1| putative glycine-rich secreted cement protein [Latrodectus hesperus]
+-----NVIAVHSQSLSIPNCPRGWDSLWIGYSFAMHTAAgAEGGGQSLSSAGSCLEDFRATPFIECNGgKGTCHYFA-SKYSFWLTSIEDDEQFERPAsv
+tlk-ANDLRSRVSRCNVCVKNTNV----------------------------------------------------------------------------
+------------------------------------
+>gi|340380057|ref|XP_003388540.1| PREDICTED: mucin-19-like [Amphimedon queenslandica]
+------LIAKVYQNESglqqedgheqgDLAFNLENQSLY---I--YVNAttalraCSDFIPGPPGSPGE--RGLRGKPGSKGDKGASGLPGLKGEpgprg
+RPGKMGPQGPTGP--GGMKGEKGNEGMKGDQGLKGAA--------GKKGIPGPVGMKG-FPGSMGQKGEK-GNQGARGRSGKPGPIGEKGDTGPpgLNGT
+TGSiG-------------------------------------------------
+>gi|261408017|ref|YP_003244258.1| collagen triple helix repeat-containing protein [Paenibacillus sp. Y412MC10]gi|261284480|gb|ACX66451.1| collagen triple helix repeat protein [Paenibacillus sp. Y412MC10]
+----------------------------------------------------------------------------------------------------
+----------------GATGATGE-------TGVTGATGATGAIGVTGAT-GTTGETgvTGATGATGTTGAATGATGVRGNRSNRINSnRSYR-------
+--------------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+S 1    *	*	2271	*	*	*	*	*	*	*	*	*	2042	*	2829	1289	*	*	*	*	1
+       0	*	*	*	*	*	*	2283	0	0	
+
+V 2    5647	*	*	3148	5339	3593	*	3916	4642	3416	6276	3215	3966	5545	6063	3602	4668	3540	5712	3159	2
+       81	4202	*	4322	74	*	*	2955	1033	0	
+
+D 3    3437	*	3630	*	5183	4520	5287	6315	6265	2695	4333	4077	5740	4620	3309	2798	4319	4996	6700	4437	3
+       292	2580	5953	991	1009	*	0	3190	1232	1033	
+
+H 4    4135	4587	3436	*	5317	4102	4531	4453	*	6333	5894	4861	5832	4654	2110	3725	2365	6112	*	*	4
+       95	3978	*	2886	210	0	*	3295	1148	1055	
+
+G 5    3439	*	*	*	*	520	*	*	*	*	6322	5458	*	*	*	3431	*	3604	*	*	5
+       0	*	*	*	*	*	*	3500	0	0	
+
+F 6    *	*	5950	*	1009	*	4700	3097	*	4597	*	5132	7936	*	*	*	3725	3253	*	3700	6
+       17	6455	*	0	*	*	*	3634	1000	0	
+
+L 7    5346	*	*	*	3767	3997	*	4451	*	935	6050	*	*	*	*	5299	4968	2718	*	4438	7
+       0	*	*	*	*	*	*	4337	0	0	
+
+V 8    3997	*	*	*	1944	*	*	1949	*	1875	4630	*	*	*	*	*	5560	3686	*	7274	8
+       0	*	*	*	*	*	*	4337	0	0	
+
+T 9    1664	*	*	*	4954	*	*	*	*	*	*	*	*	5237	*	7049	1272	2294	*	*	9
+       0	*	*	*	*	*	*	4337	0	0	
+
+R 10   *	*	4952	*	5487	3991	*	3367	2352	4223	7066	*	*	*	1361	*	*	2920	*	7123	10
+       0	*	*	*	*	*	*	4320	0	0	
+
+H 11   3983	*	*	*	*	*	326	*	*	*	*	*	4932	*	*	*	*	3232	*	*	11
+       0	*	*	*	*	*	*	4359	0	0	
+
+S 12   *	*	*	*	5972	*	*	5220	*	*	*	*	*	*	*	329	3983	*	*	3353	12
+       0	*	*	*	*	*	*	4359	0	0	
+
+Q 13   *	*	*	*	*	4069	*	*	*	5222	*	*	*	183	*	4935	*	*	*	*	13
+       0	*	*	*	*	*	*	4360	0	0	
+
+T 14   7323	*	4609	3659	*	4358	*	*	7036	*	*	3188	*	*	7543	1921	1303	4935	*	*	14
+       117	5782	4069	1000	1000	*	*	4360	1019	0	
+
+T 15   4835	*	2511	2769	*	*	*	4074	5127	4207	7180	*	4257	4246	5927	4560	2026	3565	*	*	15
+       27	5739	*	1000	1000	*	0	4138	1019	1183	
+
+D 16   4384	*	3743	3318	5171	5655	5269	7046	4854	4306	4694	4862	*	2803	3658	2638	3624	5614	*	4231	16
+       132	3520	*	3459	138	*	0	4115	1180	1225	
+
+D 17   7285	*	3439	3772	*	4352	*	1144	*	4474	*	*	5308	*	*	*	*	2110	*	5320	17
+       0	*	*	*	*	2540	272	4115	0	1225	
+
+P 18   *	*	*	*	*	*	*	*	*	2914	*	*	267	*	*	4789	*	*	*	*	18
+       24	5908	*	0	*	*	0	4138	1018	1183	
+
+Q 19   2711	*	4307	2786	7634	4544	5062	5709	5173	5912	5449	4347	5218	2616	5159	3136	3838	4765	*	*	19
+       0	*	*	*	*	*	0	4138	0	1183	
+
+C 20   4789	235	*	*	3561	*	*	*	*	5090	*	*	*	*	*	*	*	*	*	*	20
+       53	4789	*	3000	193	*	0	4138	1026	1183	
+
+P 21   7181	*	4587	4852	7506	*	*	7605	*	4286	*	3561	400	*	*	6301	*	*	*	*	21
+       0	*	*	*	*	0	*	4138	0	1183	
+
+P 22   2292	5613	5083	3967	*	3969	*	4893	7135	2877	7182	4830	3035	3878	3406	4522	4100	6274	*	*	22
+       0	*	*	*	*	*	*	4357	0	0	
+
+G 23   *	*	3762	3553	*	762	5642	*	*	*	*	2989	4857	*	*	4607	6693	*	*	5622	23
+       31	5536	*	2322	322	*	*	4357	1030	0	
+
+T 24   7350	*	*	*	6270	*	4103	*	*	4134	3012	3669	4960	4961	5744	3577	1948	3563	2988	5225	24
+       0	*	*	*	*	*	*	4357	0	0	
+
+K 25   4664	*	4158	5022	*	4960	*	4597	5496	*	4972	3695	4553	3256	3450	4645	1896	3209	*	6217	25
+       0	*	*	*	*	*	*	4357	0	0	
+
+I 26   *	*	*	4272	*	3719	7366	7730	2089	4298	6303	6586	3852	3354	3684	2229	4544	5685	4960	*	26
+       0	*	*	*	*	*	*	4357	0	0	
+
+L 27   4100	*	*	*	*	4960	*	3972	*	502	4075	*	*	*	*	5249	*	4211	*	*	27
+       0	*	*	*	*	*	*	4357	0	0	
+
+Y 28   *	*	*	*	4724	*	*	*	*	5406	7286	*	*	*	*	*	4100	*	585	2271	28
+       160	*	3253	*	*	*	*	4357	0	0	
+
+H 29   *	*	2374	2399	*	3851	6519	3402	5537	*	7651	5037	*	3324	6087	3379	2751	5240	*	*	29
+       60	*	4621	*	*	*	0	3942	0	1228	
+
+G 30   3712	*	*	*	*	115	*	*	*	*	*	*	*	*	*	*	*	*	*	*	30
+       0	*	*	*	*	1619	568	3896	0	1276	
+
+Y 31   *	*	*	*	2250	*	*	*	*	*	*	*	*	*	*	*	3924	4798	*	540	31
+       0	*	*	*	*	0	*	3981	0	1180	
+
+S 32   *	*	*	*	*	4100	*	3669	*	*	*	*	*	*	4960	267	*	*	*	*	32
+       118	*	3669	*	*	*	*	4357	0	0	
+
+L 33   3924	*	*	*	2428	*	*	6425	*	653	7280	*	*	*	*	*	5050	6852	*	4171	33
+       0	*	*	*	*	*	0	3981	0	1180	
+
+L 34   4009	*	*	*	5425	*	*	3613	*	694	4901	*	*	*	*	5460	5815	2831	*	*	34
+       0	*	*	*	*	0	*	3981	0	1180	
+
+Y 35   4960	*	*	5613	3293	2924	3327	*	*	*	2650	*	*	4162	5249	4527	6169	*	*	1665	35
+       0	*	*	*	*	*	*	4357	0	0	
+
+V 36   5248	*	*	*	4658	4436	3397	2979	*	2557	4855	4977	*	*	*	6925	3771	1591	*	5936	36
+       42	5111	*	0	*	*	*	4357	1046	0	
+
+Q 37   5017	*	4657	2476	*	3702	*	5529	*	4721	4289	3206	*	2909	4905	6110	1976	5757	*	*	37
+       0	*	*	*	*	*	*	4357	0	0	
+
+G 38   2273	*	*	*	*	560	4960	*	*	*	*	*	*	*	5249	6082	4585	*	*	*	38
+       118	3669	*	2585	263	*	*	4357	1180	0	
+
+N 39   2785	3175	5114	6849	*	5111	6693	5929	6229	*	*	1334	5308	3678	*	3969	5406	4297	*	*	39
+       81	4194	*	0	*	*	*	4357	1115	0	
+
+E 40   3913	*	2703	1903	*	2731	5825	*	7366	*	*	4317	*	7606	5249	2458	3742	*	*	*	40
+       7	7781	*	0	*	*	*	4357	1000	0	
+
+R 41   *	*	3180	3384	5613	3305	5343	5406	2449	4494	7139	*	5249	4928	2015	7781	*	5074	*	4363	41
+       0	*	*	*	*	*	*	4357	0	0	
+
+A 42   1451	*	4452	*	3669	2709	6229	*	*	4332	4960	*	6260	*	*	2869	3158	*	*	*	42
+       0	*	*	*	*	*	*	4357	0	0	
+
+H 43   6082	*	*	*	6659	3129	1309	3013	*	*	6940	*	4420	*	*	3564	3199	3681	*	7099	43
+       38	5249	*	2000	415	*	*	4357	1025	0	
+
+G 44   4683	*	4868	*	*	867	5731	*	6943	*	*	2906	3175	*	*	4221	4490	6716	*	*	44
+       0	*	*	*	*	*	*	4357	0	0	
+
+Q 45   *	*	*	4100	5249	3669	*	*	*	*	4407	6716	4960	419	*	*	*	*	*	*	45
+       0	*	*	*	*	*	*	4357	0	0	
+
+D 46   4746	*	559	*	*	4552	*	5536	*	*	*	*	3669	*	*	3591	4100	*	*	*	46
+       87	4100	*	1000	1000	*	*	4357	1183	0	
+
+L 47   4960	*	*	*	5536	*	*	*	*	414	4945	*	3669	5249	*	*	4100	*	*	*	47
+       16	6463	*	0	*	*	*	4357	1000	0	
+
+G 48   4692	*	*	5937	*	224	*	*	*	*	6962	*	*	*	*	3907	*	6123	*	*	48
+       0	*	*	*	*	*	*	4364	0	0	
+
+T 49   3572	*	5612	*	5528	4547	6234	*	7754	2963	5547	*	*	3682	4385	1670	2303	*	*	5597	49
+       0	*	*	*	*	*	*	4364	0	0	
+
+A 50   1459	*	*	*	*	*	*	*	*	3485	*	*	1554	*	*	3436	3473	5395	*	*	50
+       0	*	*	*	*	*	*	4364	0	0	
+
+G 51   6943	*	5814	*	*	166	*	*	*	*	*	*	*	*	5613	4003	*	*	*	*	51
+       0	*	*	*	*	*	*	4364	0	0	
+
+S 52   3844	*	*	3677	*	*	*	*	*	*	*	*	*	*	*	231	*	*	*	*	52
+       117	*	3677	*	*	*	*	4364	0	0	
+
+C 53   *	116	*	*	*	*	*	*	*	*	*	*	*	*	6310	*	3951	*	*	*	53
+       0	*	*	*	*	*	0	3991	0	1180	
+
+L 54   6310	*	*	*	*	3951	*	4355	*	453	3796	*	*	*	*	*	*	3807	*	*	54
+       0	*	*	*	*	0	*	3991	0	1180	
+
+R 55   4494	*	*	2917	*	*	7527	5642	4640	*	4965	*	2088	3410	1963	4593	3469	6939	*	*	55
+       16	*	6464	*	*	*	*	4389	0	0	
+
+K 56   6222	*	4211	5112	*	3696	5287	*	2707	5998	5192	4564	*	*	1268	6280	4036	4239	*	5611	56
+       0	*	*	*	*	*	0	4394	0	1000	
+
+F 57   *	*	*	*	259	4036	*	*	*	3696	*	*	*	*	*	*	*	5259	*	*	57
+       0	*	*	*	*	*	0	4394	0	1000	
+
+S 58   3753	*	*	*	*	5773	6280	*	*	*	*	3438	*	5903	2335	997	3532	*	*	*	58
+       0	*	*	*	*	*	0	4394	0	1000	
+
+T 59   2779	*	*	*	*	3696	*	4931	*	5259	6531	*	3797	5903	*	4962	854	4899	*	*	59
+       0	*	*	*	*	*	0	4394	0	1000	
+
+M 60   4338	*	6222	5307	*	*	4684	4827	3659	3304	1061	*	*	*	*	4198	3015	*	*	*	60
+       30	*	5595	*	*	*	0	4358	0	1000	
+
+P 61   *	*	*	*	*	3986	*	*	*	*	*	*	94	*	*	*	*	*	*	*	61
+       0	*	*	0	*	500	1771	4318	1033	1056	
+
+F 62   3518	*	*	*	617	3659	*	5489	*	*	4909	*	*	*	*	*	*	3942	*	4040	62
+       0	*	*	*	*	*	0	4358	0	1000	
+
+L 63   3651	*	*	*	5802	*	*	2990	5307	1833	2327	7299	*	*	*	3421	2913	5478	*	5917	63
+       0	*	*	*	*	0	*	4358	0	1000	
+
+F 64   *	7113	*	3007	1715	4099	*	*	3666	7092	6853	6183	6407	4596	5427	3479	6553	3615	*	2851	64
+       0	*	*	*	*	*	*	4359	0	0	
+
+C 65   *	213	*	*	*	3666	*	*	*	*	*	*	*	*	*	*	*	4099	*	*	65
+       112	4539	4973	405	2031	*	*	4359	1094	0	
+
+N 66   7303	*	2147	3828	*	4365	4872	*	6151	*	*	1266	*	5337	3481	4627	5050	*	*	*	66
+       65	5803	5241	0	*	*	0	4318	1079	1056	
+
+I 67   4084	*	5301	*	4178	2330	*	2323	3452	3458	5525	7131	3406	5734	4748	5990	4692	4451	*	*	67
+       54	5108	6979	0	*	0	*	4252	1044	1114	
+
+N 68   *	*	3538	5911	6681	2374	4845	*	4140	*	6388	1209	*	4240	3243	*	*	*	*	*	68
+       11	*	7106	*	*	0	*	4363	0	1003	
+
+N 69   3663	*	3275	4293	5424	2467	7461	*	4738	*	*	1681	*	3821	3675	4624	5794	*	*	*	69
+       0	*	*	*	*	0	*	4359	0	1000	
+
+V 70   6452	*	*	7272	*	*	4705	5168	5672	4763	*	5007	*	5817	5378	2568	2644	1127	*	*	70
+       0	*	*	*	*	*	*	4359	0	0	
+
+C 71   *	241	*	*	*	3666	*	*	*	*	*	4099	*	*	*	*	5919	*	*	*	71
+       0	*	*	*	*	*	*	4359	0	0	
+
+N 72   *	*	4329	4759	7472	5557	2337	*	4372	3470	*	1835	*	4719	3296	6319	4759	6660	*	3827	72
+       110	*	3765	*	*	*	*	4359	0	0	
+
+F 73   *	*	5291	*	2834	*	*	3252	*	7535	*	5525	3578	*	6198	5679	*	3942	*	943	73
+       76	*	4291	*	*	1803	487	4222	0	1174	
+
+A 74   837	*	*	4347	4273	2865	*	*	*	*	*	3312	*	*	*	4565	*	*	*	4077	74
+       60	*	4619	*	*	946	1056	4210	0	1238	
+
+S 75   5558	*	7025	5982	5203	5561	*	*	*	3542	4519	4761	*	3222	4729	960	4000	*	*	5707	75
+       87	*	4088	*	*	1207	819	3921	0	1199	
+
+R 76   3607	*	*	*	*	7088	*	*	3402	*	5085	3057	5508	*	711	*	6449	5500	*	*	76
+       0	*	*	1585	585	507	1754	3906	1019	1257	
+
+N 77   *	*	4309	6937	*	3545	4856	*	4943	6304	*	794	*	5401	3981	4420	3928	*	*	*	77
+       59	*	4640	*	*	*	0	4334	0	1060	
+
+D 78   *	*	825	2609	*	4789	*	*	3650	*	6231	*	*	5749	*	3289	*	5540	*	*	78
+       127	3574	*	2322	322	*	0	4264	1180	1159	
+
+Y 79   *	*	4387	6278	5001	*	*	*	2231	5172	*	*	*	*	2297	5540	4503	5215	*	1429	79
+       0	*	*	1000	1000	2093	385	4264	1019	1159	
+
+S 80   *	*	*	*	*	*	*	*	*	*	*	*	3627	*	3955	507	2730	*	*	*	80
+       0	*	*	2833	218	1309	745	4293	1093	1117	
+
+Y 81   *	*	*	*	2381	3522	*	6056	*	3443	*	*	*	*	*	4319	*	*	*	827	81
+       0	*	*	*	*	*	0	4136	0	1060	
+
+W 82   *	*	*	*	*	*	*	*	3521	6625	*	*	*	*	*	*	*	*	148	*	82
+       0	*	*	*	*	*	0	4140	0	1060	
+
+L 83   *	*	*	*	*	*	*	*	*	138	3452	*	*	*	*	*	*	*	*	*	83
+       21	6107	*	1000	1000	*	0	3827	1008	1060	
+
+S 84   2689	*	*	*	*	2929	*	*	*	*	*	*	*	*	*	733	3424	5726	*	*	84
+       0	*	*	*	*	*	0	4136	0	1092	
+
+T 85   4680	*	*	*	*	*	*	5054	*	*	*	*	3492	*	*	2410	651	5873	*	*	85
+       120	4133	5454	1425	672	1843	471	4136	1132	1092	
+
+P 86   2691	*	6672	4090	*	4092	*	4420	*	3513	*	3395	3424	3343	8061	3708	2685	4032	*	*	86
+       90	4624	5653	1068	935	1309	745	4090	1129	1117	
+
+E 87   1983	*	4611	1608	6121	3273	*	5550	4195	5024	*	4632	5406	4957	5382	5663	6185	*	*	*	87
+       0	*	*	*	*	*	0	3802	0	1103	
+
+P 88   3335	*	5204	4036	*	5395	5550	*	6440	6230	4927	5730	900	4218	*	4409	4571	6317	*	*	88
+       55	6727	5173	1585	585	1560	598	3802	1003	1103	
+
+M 89   *	*	6396	6298	7095	*	6034	2419	6176	2478	2156	*	3674	4940	4702	5806	3417	4356	*	4697	89
+       69	4988	6062	2466	288	1127	883	3811	1053	1131	
+
+P 90   5123	*	6364	5867	*	3448	*	*	6465	5902	5774	6269	505	6025	6331	5607	4720	*	*	*	90
+       273	7032	2603	1000	1000	*	0	3829	1000	1092	
+
+M 91   5007	*	6319	4688	5796	*	*	*	*	4355	1216	*	2561	4412	4478	4042	4015	6986	*	5141	91
+       1180	*	840	*	*	3868	102	4048	0	1442	
+
+S 92   5812	*	3411	*	2703	3979	*	*	*	3952	2806	2940	4585	4760	*	2192	4804	*	*	*	92
+       0	*	*	*	*	2178	360	3114	0	2405	
+
+M 93   *	*	5680	3475	*	*	*	*	*	*	657	5937	4348	5116	4784	4217	*	4547	*	5101	93
+       0	*	*	*	*	174	3141	3414	0	2110	
+
+A 94   2849	*	*	4066	*	3443	*	4639	3771	*	1906	4259	5888	4962	4957	3680	3579	4870	*	*	94
+       253	2635	*	1361	711	*	0	3798	1385	1112	
+
+P 95   4864	*	*	*	*	3433	*	*	*	5816	6568	*	431	*	*	6848	3402	*	*	*	95
+       8	7444	*	968	1033	1763	504	3751	1059	1168	
+
+I 96   5033	*	*	*	*	*	*	1877	*	2480	3194	*	5285	5705	*	6443	*	1505	*	*	96
+       17	6401	*	2490	283	848	1170	3798	1060	1112	
+
+T 97   4237	5080	4881	4619	*	5552	*	*	2299	7154	6767	6847	3264	3531	4062	2002	3528	7253	*	*	97
+       71	5765	5080	3056	185	0	*	3829	1091	1069	
+
+G 98   2938	*	4072	2493	*	1306	*	5682	*	*	*	4123	5823	7618	5023	4260	*	4458	*	*	98
+       0	*	*	*	*	*	0	3823	0	1033	
+
+E 99   4608	*	3018	2154	5666	3669	6396	7420	6019	4021	*	3986	4386	4328	3538	3934	3338	*	*	7219	99
+       0	*	*	*	*	0	*	3823	0	1033	
+
+N 100  2723	*	2469	1953	*	5826	*	6652	3419	5145	7318	3418	*	3346	5554	6076	7479	5619	*	*	100
+       0	*	*	*	*	*	*	3892	0	0	
+
+I 101  *	*	*	*	*	3513	*	1072	*	2143	5390	*	*	*	5582	*	4998	2894	*	*	101
+       0	*	*	*	*	*	*	3892	0	0	
+
+R 102  3399	*	5166	2687	*	4899	*	7276	2759	4320	4272	3513	5382	3291	2387	5550	7292	*	*	*	102
+       0	*	*	*	*	*	*	3892	0	0	
+
+P 103  4406	*	4785	2916	*	5705	*	*	3341	*	*	6457	1641	4182	3207	2917	5133	*	6652	*	103
+       0	*	*	*	*	*	*	3892	0	0	
+
+F 104  3971	*	*	*	3011	3513	4194	6391	*	6863	5816	*	*	5686	4029	*	*	6215	*	895	104
+       0	*	*	*	*	*	*	3892	0	0	
+
+I 105  *	*	*	*	*	*	*	463	*	5023	3513	*	*	*	*	*	*	2679	*	*	105
+       0	*	*	*	*	*	*	3892	0	0	
+
+S 106  5686	*	*	*	*	3979	*	*	3513	*	*	6946	*	*	*	284	*	*	*	*	106
+       0	*	*	*	*	*	*	3892	0	0	
+
+R 107  *	*	*	*	*	3513	*	*	*	*	*	*	*	*	132	*	*	*	*	*	107
+       0	*	*	*	*	*	*	3892	0	0	
+
+C 108  *	158	3513	*	*	*	*	*	5955	*	*	*	*	*	*	*	*	*	*	*	108
+       0	*	*	*	*	*	*	3892	0	0	
+
+A 109  2550	*	*	*	*	*	*	4401	*	*	*	6477	5955	2864	5002	2062	3617	1915	*	*	109
+       33	*	5472	*	*	*	*	3892	0	0	
+
+V 110  *	*	*	5939	*	3464	*	*	*	5574	6932	*	*	*	*	*	*	211	*	*	110
+       0	*	*	*	*	*	0	3870	0	1025	
+
+C 111  *	163	*	*	*	*	*	*	*	3464	*	*	*	*	*	5939	*	*	*	*	111
+       0	*	*	*	*	*	0	3870	0	1025	
+
+E 112  *	*	*	578	6731	*	*	6039	3502	5767	4084	*	*	3572	*	5449	7064	5283	*	*	112
+       0	*	*	*	*	*	0	3967	0	1025	
+
+A 113  1331	*	6019	*	*	3015	*	*	4166	4782	*	*	*	*	6044	3627	2762	2967	*	*	113
+       33	5477	*	1000	1000	*	0	3825	1030	1025	
+
+P 114  4285	5095	6175	6021	6663	*	4010	5673	4026	*	*	4797	1354	4243	3479	4109	3376	6216	*	*	114
+       0	*	*	*	*	*	0	4379	0	1025	
+
+A 115  1952	*	6101	6271	*	1713	*	*	7752	*	7347	7858	*	*	*	2304	2583	5349	*	*	115
+       60	*	4629	*	*	*	0	4561	0	1025	
+
+M 116  5624	*	6711	*	2126	7166	4449	3221	4485	4163	5212	3372	4913	3412	3614	6173	5203	4489	6050	4392	116
+       11	7075	*	0	*	*	0	4368	1000	1228	
+
+V 117  3808	*	*	*	4783	4192	*	3941	*	1762	6384	*	4915	6603	*	4760	4608	1649	*	5288	117
+       20	6166	*	1000	1000	*	0	4703	1028	1228	
+
+M 118  3933	*	*	*	2679	*	6603	1708	*	2043	3569	*	*	6166	*	*	6250	3543	*	5493	118
+       0	*	*	*	*	*	0	4703	0	1228	
+
+A 119  868	*	*	*	5155	*	*	5702	*	*	*	*	*	5304	*	*	1938	3076	*	*	119
+       0	*	*	*	*	*	0	4703	0	1228	
+
+V 120  *	*	5155	*	3671	4192	*	3055	3719	3347	6452	*	*	*	2270	*	*	1652	*	7113	120
+       0	*	*	*	*	*	0	4703	0	1228	
+
+H 121  4192	*	*	*	*	*	165	*	*	*	*	*	5155	*	*	*	*	5304	*	*	121
+       0	*	*	*	*	*	0	4703	0	1228	
+
+S 122  *	*	*	*	*	*	*	5304	*	*	*	*	*	*	*	150	4192	*	*	5760	122
+       0	*	*	*	*	*	0	4703	0	1228	
+
+Q 123  *	*	*	*	*	4192	*	*	*	4750	5702	*	*	216	*	5155	*	*	*	*	123
+       21	6086	*	0	*	309	2375	4703	1014	1228	
+
+T 124  5815	*	3036	4078	*	3671	*	*	5842	*	6720	5656	*	*	5708	1991	1413	5074	*	*	124
+       113	5874	4093	1000	1000	*	0	4781	1021	1025	
+
+I 125  4902	*	3312	4216	*	6091	*	3753	4043	3702	3652	6409	4488	3694	5327	3384	2481	3783	*	*	125
+       27	5765	*	1000	1000	*	0	4593	1021	1242	
+
+Q 126  3712	*	3581	3765	5891	7687	6615	4760	3800	4256	5794	3607	*	3203	3934	3372	2884	5282	*	4579	126
+       39	5232	*	0	*	*	0	4556	1048	1286	
+
+I 127  5917	*	5753	4661	*	3562	*	1010	*	4757	*	*	5210	5020	*	*	*	2179	*	5122	127
+       0	*	*	*	*	2801	223	4556	0	1286	
+
+P 128  *	*	*	*	*	*	*	4637	*	4485	*	*	221	5426	*	5071	7961	*	*	*	128
+       0	*	*	*	*	*	0	4594	0	1242	
+
+Q 129  4444	*	2400	2879	*	4481	6627	6431	4564	6587	5249	4329	3169	2837	4950	3508	4463	5902	*	*	129
+       0	*	*	2322	322	2239	343	4594	1033	1242	
+
+C 130  5162	140	*	*	*	4680	*	*	*	5273	*	*	*	*	*	*	*	*	*	*	130
+       41	5162	*	3000	193	*	0	4499	1042	1187	
+
+P 131  *	*	4948	5630	6511	*	*	*	*	5579	*	*	183	*	*	4856	*	*	*	*	131
+       0	*	*	*	*	378	2116	4499	0	1187	
+
+T 132  2956	6277	4881	4632	*	3687	5085	5196	7131	4230	5625	4010	2657	4265	3806	3491	3754	4017	*	*	132
+       30	5580	*	2322	322	*	0	4782	1035	1025	
+
+G 133  *	*	4979	7536	*	461	*	*	6590	*	*	3343	6791	*	6280	3925	5352	*	*	6028	133
+       17	8270	6885	0	*	*	0	4782	1000	1025	
+
+W 134  7727	*	*	*	5170	*	4753	*	*	4802	3289	*	5285	8005	6231	4327	2881	3860	1161	4386	134
+       0	*	*	0	*	1092	914	4649	1019	1068	
+
+S 135  5175	*	4229	3228	*	4786	*	3832	4113	7096	5300	3820	6297	4804	2834	3786	2127	4498	*	6627	135
+       0	*	*	*	*	*	0	4782	0	1025	
+
+S 136  *	*	*	3228	*	2841	7714	*	2612	4750	*	4337	4424	4062	4462	1988	4440	5452	5275	*	136
+       46	*	4995	*	*	*	0	4782	0	1025	
+
+L 137  3778	*	*	*	*	4645	*	4341	*	526	4012	*	*	*	*	5331	*	4150	*	*	137
+       25	*	5857	*	*	309	2375	4584	0	1228	
+
+W 138  *	*	*	*	4352	*	*	*	*	6039	7313	*	*	*	*	*	4378	*	283	4065	138
+       34	*	5404	*	*	2506	279	4764	0	1104	
+
+I 139  6009	*	3335	2782	7486	4335	7796	2450	5623	6668	8050	4179	4297	3909	7491	4222	2324	4968	*	*	139
+       44	*	5062	*	*	*	0	4716	0	1144	
+
+G 140  4233	*	*	*	*	87	*	*	*	*	*	*	*	*	7578	*	*	*	*	*	140
+       0	*	*	*	*	867	1147	4661	0	1209	
+
+Y 141  *	*	*	*	2559	*	5669	*	*	*	*	*	*	*	*	4356	4425	4665	*	565	141
+       4	*	8611	*	*	*	0	4762	0	1081	
+
+S 142  *	*	*	*	*	4411	*	*	*	*	4959	*	*	*	5193	162	*	*	*	*	142
+       0	*	*	*	*	*	0	4754	0	1091	
+
+F 143  4411	*	*	*	1168	4959	*	6960	*	1512	7292	*	*	*	*	*	5394	*	*	3523	143
+       0	*	*	*	*	*	0	4754	0	1091	
+
+V 144  4090	*	*	*	4296	*	*	3062	*	1114	4671	*	6129	4959	*	7228	7110	2422	6435	6540	144
+       81	*	4191	*	*	*	0	4754	0	1091	
+
+M 145  4898	*	*	*	4181	3296	4445	*	4911	5905	1096	7312	*	4734	5357	4306	6676	*	*	3091	145
+       10	7217	*	3613	123	771	1273	4725	1054	1265	
+
+H 146  4897	*	*	6078	5100	4204	1571	3920	*	3655	5547	3951	*	5115	*	6228	4066	2776	*	4257	146
+       13	*	6777	*	*	*	0	4633	0	1096	
+
+T 147  6209	*	5160	3234	7113	4531	*	4299	*	4231	6176	5323	*	4025	4626	5892	962	5215	*	*	147
+       102	7273	4012	2664	248	1117	892	4622	1054	1120	
+
+S 148  2463	*	4825	4372	*	1064	5203	5557	4486	6855	6266	*	*	*	5326	4052	4132	*	*	*	148
+       80	*	4208	*	*	319	2333	4607	0	1246	
+
+A 149  1577	5111	4155	*	*	3462	*	*	6872	7662	*	2239	7463	4430	*	3492	4245	4276	*	5774	149
+       121	*	3639	*	*	272	2541	4537	0	1287	
+
+G 150  4478	*	5206	3377	*	938	7591	6043	*	*	*	3146	5945	5352	5287	3988	4406	*	*	*	150
+       629	*	1501	*	*	342	2243	4614	0	1230	
+
+A 151  1885	*	2370	3268	7580	3957	6553	5483	5446	*	*	3196	*	*	*	2781	4601	6565	*	*	151
+       52	4832	*	515	1736	84	4146	4215	1108	1892	
+
+E 152  5549	*	4518	1972	6080	3056	5484	*	3127	4774	7440	6140	5419	3058	2645	5878	6049	7678	*	6441	152
+       29	*	5647	*	*	*	0	4630	0	1087	
+
+G 153  2223	*	5015	5749	*	1013	6955	5687	*	5007	5166	*	7409	*	*	3874	3859	6457	*	*	153
+       25	*	5846	0	*	1130	881	4634	1033	1181	
+
+S 154  4432	*	*	*	5560	2008	2099	4637	5764	*	*	6251	4694	*	*	2838	2945	4054	*	6619	154
+       34	5405	*	2000	415	1653	552	4651	1038	1139	
+
+G 155  5582	*	5449	*	*	484	7463	*	7344	*	*	4455	5232	*	5018	3868	4806	5514	*	*	155
+       0	*	*	*	*	*	0	4687	0	1087	
+
+Q 156  *	*	*	4487	5434	5018	*	*	*	*	5086	7049	4698	337	*	*	5962	*	*	5784	156
+       0	*	*	*	*	*	0	4687	0	1087	
+
+A 157  3643	*	1280	6437	5159	4608	*	6127	*	6513	7523	5022	4762	4559	5017	2428	4439	7413	5784	*	157
+       68	4439	*	1000	1000	*	0	4688	1138	1087	
+
+L 158  5231	*	*	*	4954	*	*	5960	*	315	5563	*	*	5433	*	5017	4439	*	*	*	158
+       0	*	*	*	*	*	0	4688	0	1087	
+
+A 159  3501	*	*	4751	*	1007	6674	7681	*	*	4571	*	*	4885	*	2664	4399	3621	*	*	159
+       0	*	*	*	*	956	1046	4688	0	1087	
+
+S 160  3785	*	5624	*	6908	5382	6229	*	4840	3495	6502	*	*	4643	4787	852	3524	*	*	6671	160
+       0	*	*	*	*	*	0	4689	0	1030	
+
+P 161  2235	*	*	*	*	*	*	*	*	4848	*	*	843	*	*	3224	3618	7140	*	*	161
+       0	*	*	*	*	*	0	4689	0	1030	
+
+G 162  *	*	5640	*	*	110	*	*	*	*	*	*	*	*	6095	4685	*	*	*	*	162
+       0	*	*	*	*	*	0	4689	0	1030	
+
+S 163  4448	*	*	*	*	*	*	*	*	5784	*	*	5017	*	*	144	*	*	*	*	163
+       13	*	6833	*	*	*	0	4689	0	1030	
+
+C 164  *	115	*	*	*	*	*	5015	*	*	*	*	*	*	*	*	4447	*	*	*	164
+       0	*	*	0	*	1172	846	4681	1019	1073	
+
+L 165  *	*	*	*	*	3705	*	5273	*	369	3729	*	*	*	*	*	*	4384	*	*	165
+       0	*	*	*	*	0	*	4689	0	1030	
+
+E 166  5018	*	7184	1385	*	*	*	*	4930	7687	5649	*	2426	3402	2812	5349	3862	7505	*	*	166
+       0	*	*	*	*	*	*	4697	0	0	
+
+E 167  5270	*	2451	3061	*	*	4009	*	2725	7052	5799	4718	*	5430	2182	5416	4453	4342	*	4936	167
+       0	*	*	*	*	*	*	4697	0	0	
+
+F 168  *	*	*	*	231	3721	*	*	*	*	*	*	*	*	*	*	*	4890	*	4711	168
+       0	*	*	*	*	*	*	4697	0	0	
+
+R 169  4139	*	5051	*	*	6945	6928	5752	*	6431	*	4419	*	5351	1121	1802	4518	*	*	7553	169
+       0	*	*	*	*	*	*	4697	0	0	
+
+S 170  1940	*	5051	5444	*	*	*	5471	7121	6042	6973	*	3346	6231	*	2882	1535	4959	*	6825	170
+       17	*	6429	*	*	*	*	4696	0	0	
+
+A 171  3533	*	5206	6029	*	4861	4509	4436	5780	3401	1819	5929	*	4163	5439	4120	2495	5620	*	*	171
+       21	*	6092	0	*	0	*	4677	1033	1033	
+
+P 172  5787	*	*	*	*	4436	*	*	*	7541	5951	*	139	*	*	*	7415	*	*	*	172
+       62	5043	6374	876	1136	0	*	4669	1219	1016	
+
+F 173  4028	*	*	*	483	*	*	4701	*	4634	5888	*	*	*	*	*	*	3621	*	4432	173
+       0	*	*	0	*	0	*	4677	1033	1033	
+
+I 174  4493	*	*	*	6919	*	*	1275	6046	2367	3078	5050	*	*	*	6207	3595	3903	*	6242	174
+       0	*	*	*	*	*	*	4706	0	0	
+
+E 175  *	7267	*	1193	2574	3399	*	*	5789	7270	*	6808	6739	4553	6931	4577	5165	4597	*	3494	175
+       13	*	6795	*	*	*	*	4706	0	0	
+
+C 176  *	114	*	*	*	*	*	*	*	*	*	*	*	*	*	*	5050	4444	*	*	176
+       57	*	4698	0	*	0	*	4706	1008	1008	
+
+H 177  7470	*	2916	4622	6763	6434	2495	*	*	*	*	1433	*	3635	3709	4652	4160	*	*	*	177
+       61	8274	4723	0	*	1917	444	4656	1027	1095	
+
+G 178  4822	*	4891	*	6041	1001	*	3051	6977	4409	5661	5377	4112	6382	5285	4624	4926	5176	*	*	178
+       279	2566	7160	0	*	0	*	4582	1549	1176	
+
+R 179  5192	*	3701	5660	6763	3748	3731	7879	3680	7941	6897	2124	*	4586	2073	3501	6429	6190	*	*	179
+       191	3107	7014	59	4640	0	*	4703	1531	1000	
+
+G 180  5745	*	3617	4701	5906	998	*	*	5155	6211	*	2765	*	4466	3675	6062	5896	*	*	*	180
+       27	*	5744	*	*	0	*	4701	0	1000	
+
+T 181  7765	*	*	7699	*	4921	5074	4995	5600	4461	6747	4282	*	5266	4123	3413	1562	1978	*	*	181
+       13	*	6747	*	*	*	0	4592	0	1041	
+
+C 182  *	104	*	*	*	*	*	*	*	*	*	4173	*	*	*	*	6173	*	*	*	182
+       0	*	*	*	*	*	0	4582	0	1085	
+
+N 183  *	*	4407	4763	4691	4643	2139	6535	5105	*	*	1792	*	4741	3673	4232	4386	7341	7062	4288	183
+       65	*	4494	*	*	*	0	4582	0	1085	
+
+Y 184  *	*	5967	5011	2365	*	5227	3408	*	7533	*	6403	*	4674	6845	5670	*	4424	*	981	184
+       29	*	5670	*	*	2535	273	4495	0	1209	
+
+Y 185  1585	*	5817	4955	2380	5032	*	6420	5522	*	*	3849	4751	*	*	5353	6478	*	5919	2309	185
+       158	3368	7178	0	*	2568	267	4485	1210	1213	
+
+A 186  2064	*	4275	4694	*	4821	*	5659	*	*	8080	6620	7054	3317	3481	1497	4692	6487	*	*	186
+       697	1383	*	126	3583	1623	566	4511	1920	1202	
+
+N 187  6113	*	3547	5361	*	4399	5715	*	6853	6721	*	938	6188	6066	4132	4339	3017	6556	*	*	187
+       94	7378	4139	0	*	1227	804	4562	1000	1129	
+
+A 188  3895	*	1519	4023	*	4172	5795	5270	3210	6612	5794	6009	*	4117	5684	2771	4920	6125	*	*	188
+       0	*	*	0	*	3015	190	4511	1008	1237	
+
+Y 189  6065	*	4649	5070	4068	6542	5297	6386	2613	3554	7902	*	*	*	3467	4306	4226	5352	*	1574	189
+       0	*	*	1000	1000	2355	314	4511	1021	1205	
+
+S 190  7362	*	*	*	*	5092	*	*	*	*	*	5808	5695	*	4195	371	3331	*	*	*	190
+       0	*	*	2849	216	2197	355	4551	1061	1160	
+
+F 191  *	*	*	*	1146	*	*	6436	*	3737	*	*	*	*	*	4695	*	5888	*	1300	191
+       0	*	*	*	*	*	0	4380	0	1120	
+
+W 192  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	192
+       0	*	*	*	*	*	0	4377	0	1120	
+
+L 193  *	*	*	*	*	*	*	*	*	145	3594	*	*	*	*	*	*	6292	*	*	193
+       8	7496	*	1000	1000	*	0	4377	1000	1120	
+
+A 194  2205	*	*	*	*	5229	*	5283	6326	*	*	*	*	5277	5726	1233	2177	5559	*	7407	194
+       15	*	6592	3700	115	1871	461	4377	1019	1133	
+
+T 195  3347	*	6360	*	*	6101	*	4280	*	*	*	6291	*	*	6736	2677	802	3805	*	*	195
+       72	5442	5295	1585	585	3489	135	4387	1028	1123	
+
+I 196  3448	*	5175	4526	*	5394	*	1873	*	2982	5770	5158	3985	*	*	3934	3397	2794	*	*	196
+       69	5588	5257	1989	419	2286	331	4371	1087	1172	
+
+E 197  2632	*	2802	1709	*	5418	*	5537	4802	5219	5586	3651	3362	5727	5080	6153	5535	*	*	*	197
+       93	4435	5974	2502	280	1065	938	4343	1179	1190	
+
+R 198  3108	*	3368	2698	*	4579	7045	*	6343	*	8132	4792	1650	4003	4682	4194	4776	5608	*	*	198
+       39	7393	5612	1585	585	1283	763	4337	1000	1140	
+
+S 199  5556	*	2830	4058	7362	6364	5152	3087	7822	3023	3036	3727	4904	4229	4237	4122	5033	5057	*	4994	199
+       134	5798	3816	1316	741	1722	521	4352	1015	1115	
+
+E 200  4468	*	3370	2866	8070	*	5675	*	4967	4856	5285	4046	1463	4033	4480	4440	5045	*	*	*	200
+       288	6301	2572	1000	1000	3233	162	4335	1001	1245	
+
+M 201  5767	*	5416	3794	6107	6429	*	*	*	5003	1592	*	4217	1691	5166	5277	3801	6921	*	*	201
+       83	7700	4296	297	2424	3763	110	4127	1033	1579	
+
+F 202  7147	*	5987	*	937	5346	*	6153	*	5278	3180	4822	*	6091	*	2782	5356	4907	6046	6406	202
+       184	5879	3284	0	*	1379	700	4084	1021	1611	
+
+K 203  4870	*	5197	3735	*	4722	7601	5437	4257	6344	1988	5066	5323	3462	2994	3697	4720	3955	6476	5741	203
+       66	6343	4959	0	*	4340	73	4219	1008	1502	
+
+K 204  3317	*	5127	4330	*	6047	*	5502	2554	*	2514	4035	4285	4039	3620	3802	3720	4767	*	*	204
+       143	3481	7683	512	1743	1327	734	4196	1247	1563	
+
+P 205  7226	*	*	*	*	5799	6084	5808	*	6747	6445	5774	271	*	*	4892	5617	5573	*	*	205
+       711	*	1361	*	*	4873	50	4278	0	1346	
+
+T 206  7266	6309	6962	3190	*	4382	*	3329	4185	3949	3851	5547	4781	2842	3189	3613	3924	4050	*	6401	206
+       81	4754	5837	0	*	2372	310	3259	1068	2063	
+
+P 207  3653	*	*	5213	*	4643	*	*	4534	*	3144	5481	2197	2479	4335	2298	5352	*	*	*	207
+       31	*	5577	*	*	3092	180	3882	0	1878	
+
+S 208  3680	*	4455	2625	6021	5572	*	5111	6116	*	3229	5236	6476	1997	6740	3743	3686	3683	*	*	208
+       123	*	3613	*	*	4177	82	3924	0	1798	
+
+T 209  *	*	*	6302	7584	6213	*	5094	*	*	5226	*	2084	*	*	5612	936	3207	*	5287	209
+       27	*	5765	0	*	500	1772	3800	1073	1876	
+
+L 210  6980	*	*	*	6860	5076	*	2320	*	1329	5285	5888	5856	*	*	7154	4991	2027	*	6392	210
+       0	*	*	0	*	2453	291	4254	1008	1281	
+
+K 211  4090	5592	7145	4274	*	5630	*	6678	1321	6961	*	5074	4015	4391	4350	2814	3509	7574	*	*	211
+       56	6227	5333	1886	455	1899	451	4269	1055	1226	
+
+A 212  2069	*	4501	2464	*	2262	*	5513	6438	5741	6941	4579	5883	4729	6832	3883	5326	3847	*	*	212
+       91	5456	4703	1835	475	2189	357	4250	1049	1243	
+
+G 213  4818	*	3143	3362	5229	1852	5792	*	6093	4569	*	3581	5144	4934	3662	3951	3857	8394	6021	*	213
+       45	5375	7188	0	*	1089	916	4263	1033	1292	
+
+E 214  3458	*	2487	2364	6717	4090	*	6873	6395	6275	7547	2619	*	2606	6562	5090	5284	4958	*	7726	214
+       33	6711	6233	0	*	3456	138	4305	1000	1162	
+
+L 215  5800	*	6648	7871	7746	*	5462	1454	*	1638	4752	*	6293	4376	7346	5290	4565	3606	*	*	215
+       40	6452	5944	0	*	3474	136	4297	1022	1186	
+
+R 216  3918	*	*	2942	*	5933	7628	7268	2865	4053	5026	*	6578	3168	1552	5041	4197	*	*	*	216
+       22	6029	*	2272	335	3365	147	4310	1086	1210	
+
+T 217  5143	*	3357	4255	*	*	*	*	3695	*	6483	4246	2322	3351	4091	2194	3366	*	6878	*	217
+       0	*	*	2000	415	915	1090	4313	1028	1187	
+
+H 218  4307	*	6725	6295	3721	*	3943	6150	3964	5781	6708	5354	*	5420	2133	4171	*	7028	*	1550	218
+       9	7282	*	0	*	0	*	4414	1037	1076	
+
+V 219  6220	*	*	*	7728	*	*	691	6080	4334	*	*	*	*	*	*	5834	1833	*	*	219
+       19	*	6220	*	*	*	*	4435	0	0	
+
+S 220  5670	*	*	*	*	3715	*	7638	*	*	*	6816	*	*	*	168	*	*	*	*	220
+       16	6468	*	1000	1000	*	0	4412	1008	1033	
+
+R 221  *	*	*	*	*	*	*	*	3983	6054	*	*	*	*	118	*	*	*	*	*	221
+       0	*	*	1000	1000	652	1460	4410	1033	1065	
+
+C 222  *	68	*	*	5488	*	*	*	6795	*	*	*	*	*	*	6075	*	*	*	*	222
+       0	*	*	*	*	0	*	4436	0	1008	
+
+Q 223  2577	*	*	*	*	6007	*	4240	*	*	*	6239	*	2264	3187	2112	4187	2771	*	*	223
+       0	*	*	*	*	*	*	4433	0	0	
+
+V 224  *	*	6760	*	*	*	*	6273	*	5953	6790	*	*	*	*	*	*	70	*	*	224
+       0	*	*	*	*	*	*	4384	0	0	
+
+C 225  6760	72	*	*	*	*	6000	*	*	*	*	*	*	*	5405	*	*	*	*	*	225
+       0	*	*	*	*	*	*	4384	0	0	
+
+M 226  8057	*	*	1249	*	*	*	4100	6240	4131	2030	*	*	4082	4325	5529	7514	3922	*	*	226
+       48	4943	*	810	1219	*	*	4336	1059	0	
+
+R 227  2093	*	*	5972	*	6316	5493	*	2110	4964	6094	5645	*	*	2394	4644	3533	3509	6361	*	227
+       100	3894	*	1000	1000	*	*	4319	1085	0	
+
+R 228  4431	*	5719	*	*	4896	4478	5405	3399	5082	6584	2074	5005	5034	2613	3391	3492	6116	*	4773	228
+       0	*	*	4158	83	*	*	2962	1069	0	
+
+T 229  *	*	4368	6308	3921	4754	*	*	6011	3611	4478	5168	4198	3847	3065	2838	2013	4849	*	*	229
+       0	*	*	0	*	*	*	2923	0	0	
+
+//
+�HHsearch 1.5
+NAME  7cff8b05889041a6d059231e4f4bc281
+FAM   
+FILE  7cff8b05889041a6d059231e4f4bc281
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:50:46 2013
+LENG  193 match states, 193 columns in multiple alignment
+FILT  135 out of 327 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  5.3 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCCCCCEEEEEEECCCEEEEECCCCCCCCCCCCCCCCCEEEEEECCCCEEEEEEECCCEEEEECCCCCEEEECCCCCEEEEEEEECCCCE
+EEEEEEEECCCCCCCEEEEEECCCCCCCCCCCCCCCCCCEEEEEECCCCCCEECCCCCCCCCCCCCCCCCCCCCCCCCCEECCCEECCCCCCC
+>ss_conf PSIPRED confidence values
+9876566787752017289999858858998799859774389980346999991388899998136528999899988870235740489999846976
+899988604888885179999989988117767999850358731079885527885543664877677887786232232187076877889
+>Consensus
+xxxxxxxxxxxxxlxgxxxqLYcrxgxxLqIxxdGxVxGtxdxxsxxsxleixsvxxgxVxIrgvxsxxYLcMNxxGkLyxsxxxsxeCxFxExxxeNxY
+xtYxSxxyxxxxxxrxwYlalnkxGkxrxGxrtkxxxxsshFLprxvxxxxxrxpxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
+>7cff8b05889041a6d059231e4f4bc281
+GSKKRRRRRPEPQLKGIVTKLYSRQGYHLQLQADGTIDGTKDEDSTYTLFNLIPVGLRVVAIQGVQTKLYLAMNSEGYLYTSELFTPECKFKESVFENYY
+VTYSSMIYRQQQSGRGWYLGLNKEGEIMKGNHVKKNKPAAHFLPKPLKVAMYKEPSLHDLTEFSRSGSGTPTKSRSVSGVLNGGKSMSHNEST
+>gi|28071267|dbj|BAC55965.1| fibroblast growth factor 8/17/18 isoform 2 [Ciona savignyi]
+---------------------------RVQILGK-RVNAKGVRGNKYSKMAILSTSFggR-IMIQGVETGRVLCMNRKGRLvgkvLRRAKHDLKCQFNDL
+MMPNLFDYFTNVAH------PKWYVAFNSHGRPKKGPTTKLGQVETMFLKRPIETFGY-----------------------------------------
+>gi|56692781|ref|YP_164239.1| hypothetical protein ORF144R [Singapore grouper iridovirus]gi|42517493|gb|AAS18159.1| unknown [Singapore grouper iridovirus]
+------------------KILYCKTNFMLEVNGTA-VSGGTDKQSQTAKLTLKSVRAGQIVIKGSI-GGYVCMDRNGAVSAKTTYvQSDCVFNETLLPNN
+YNSYSAAEHLNPETRANMHLAIDKAGKVRSGKRTAKTDNSAQWLVL------------------------------------------------
+>gi|221110175|ref|XP_002166704.1| PREDICTED: similar to fibroblast growth factor 1B, partial [Hydra magnipapillata]
+-----------------LIYARRRNGMNLGII-NKKVAGMKKDNDINGLFEIQSYATSIVMLRHFATENYIAINEKGEIIVTPSKNDECLFYHYMEENGY
+VTFASVKYYI-NEHYDLFLNLKANGKVRDVRRTAPGQTSSQFILIP-----------------------------------------------
+>gi|170589121|ref|XP_001899322.1| Fibroblast growth factor family protein [Brugia malayi]gi|158593535|gb|EDP32130.1| Fibroblast growth factor family protein [Brugia malayi]
+-----------------VWQLYSRcSSAFVQIFLKhANARGQQFNH-CLTDLLMHADNEGRIRIENALTGKFICFNKRQRLAIrSDGMDDKCLFREQLTS
+SGYTMFQSA-WK-----QNLFLGFNRKGKFQDPSQINTKRRCFLFIKLLREVKSTR----------------------------------------
+>gi|20069930|ref|NP_613134.1| fibroblast growth factor FGF [Mamestra configurata NPV-A]gi|20043324|gb|AAM09159.1| fibroblast growth factor FGF [Mamestra configurata NPV-A]gi|33331762|gb|AAQ11070.1| FGF [Mamestra configurata NPV-A]
+-------------------QIFI-NHHLLRMNLDGIVNGTQTGESSETVWHRISQSDG-ILLRSSLYCNYACINECGYGYSALIPNNECLWTEQYDEHNY
+R-FINKKFG----NRTAYLSINLEGKLKRTVLL------------------------------------------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+G 1    *	*	*	*	*	421	*	*	*	*	*	2883	*	*	*	3089	*	*	*	*	1
+       0	*	*	*	*	*	*	1544	0	0	
+
+S 2    *	*	*	*	*	997	*	*	*	3056	*	*	*	*	2883	2040	*	*	*	*	2
+       0	*	*	*	*	*	*	1544	0	0	
+
+K 3    *	*	*	*	*	*	*	*	2944	*	*	*	*	*	201	*	*	*	*	*	3
+       0	*	*	*	*	*	*	1544	0	0	
+
+K 4    *	*	*	*	*	3143	*	*	681	*	*	*	2751	*	3126	*	*	*	*	*	4
+       452	1895	*	0	*	*	*	1544	1063	0	
+
+R 5    *	*	*	*	*	3126	*	*	*	*	*	*	*	2883	415	*	*	*	*	*	5
+       0	*	*	*	*	*	*	1544	0	0	
+
+R 6    *	*	*	*	*	*	*	*	3723	*	*	3724	1957	2487	1277	*	*	*	*	*	6
+       533	1695	*	0	*	*	*	2130	1197	0	
+
+R 7    3645	*	3841	4786	*	*	3772	*	2740	5299	*	3098	*	*	1733	*	2755	*	*	*	7
+       0	*	*	0	*	0	*	3165	1054	1054	
+
+R 8    4136	5384	*	*	*	3662	*	*	1753	*	*	4064	4299	*	2422	4226	3663	3135	*	*	8
+       0	*	*	*	*	*	*	3175	0	0	
+
+R 9    2936	*	4328	5600	*	3742	*	4725	*	*	*	3088	*	4273	1932	3392	3216	4262	*	*	9
+       0	*	*	*	*	*	*	3509	0	0	
+
+P 10   5646	*	3534	3128	*	4565	*	*	2861	*	*	*	2109	2765	4963	3100	3800	*	*	*	10
+       0	*	*	*	*	*	*	3509	0	0	
+
+E 11   *	*	6061	1309	3311	*	*	*	*	2813	*	3845	*	4002	4078	4738	*	*	*	3190	11
+       0	*	*	*	*	*	*	3926	0	0	
+
+P 12   4262	*	3985	4192	*	*	*	*	*	*	*	3464	997	*	*	2831	4516	*	*	4209	12
+       54	*	4767	*	*	*	*	4033	0	0	
+
+Q 13   *	*	*	*	*	*	1711	*	*	*	*	4113	*	1059	4230	*	*	3962	*	4662	13
+       0	*	*	*	*	0	*	3996	0	1000	
+
+L 14   *	*	*	*	4209	*	*	2092	*	623	*	*	*	*	*	*	*	*	*	4013	14
+       0	*	*	*	*	*	*	4033	0	0	
+
+K 15   *	*	4281	3451	4482	*	*	*	981	4938	*	4153	*	4849	*	*	2765	4835	*	*	15
+       0	*	*	*	*	*	*	4098	0	0	
+
+G 16   3817	4528	*	*	*	392	*	*	*	4432	*	*	4764	4625	*	*	*	*	*	*	16
+       0	*	*	*	*	*	*	4281	0	0	
+
+I 17   3882	*	3778	*	*	*	5235	1481	*	4738	*	4817	5072	4655	3675	*	3245	2754	*	*	17
+       181	3085	*	719	1349	*	*	4469	1090	0	
+
+V 18   5785	*	*	5121	*	*	*	4521	3628	1899	4889	*	3517	*	4265	5775	4794	1586	*	*	18
+       132	3517	*	1000	1000	*	*	5669	1218	0	
+
+T 19   5157	*	*	6602	*	4016	*	3558	4151	4832	4854	*	5843	3764	2269	*	2701	2775	4861	4155	19
+       34	5435	*	3706	115	*	*	6294	1049	0	
+
+K 20   5375	*	*	*	6328	6092	3882	5355	3470	5163	6936	5541	*	1542	1746	6413	5083	*	*	5275	20
+       0	*	*	*	*	*	*	6358	0	0	
+
+L 21   6233	*	*	*	6426	*	*	3619	*	308	4795	*	*	*	6091	*	*	5418	*	6413	21
+       15	*	6624	*	*	*	*	6392	0	0	
+
+Y 22   *	*	*	6515	2181	*	7490	*	6177	5448	*	6475	*	4709	4397	*	*	*	*	668	22
+       64	4519	*	1658	550	*	0	6383	1129	1005	
+
+S 23   4892	1248	*	*	6468	6043	*	4273	*	*	5205	4884	*	*	5316	1780	5124	4334	*	6435	23
+       54	*	4756	*	*	*	0	6383	0	1005	
+
+R 24   4583	6995	4873	4306	7000	5038	5193	*	2791	5476	7084	4998	*	4222	1150	3672	6399	*	*	*	24
+       270	2549	*	750	1302	0	*	6344	1559	1128	
+
+Q 25   7266	6586	6456	*	6988	*	4564	*	5272	*	7410	1776	5404	3710	6861	2111	2260	4356	*	*	25
+       329	2694	4340	848	1171	*	*	6452	1576	0	
+
+G 26   5468	*	6686	6509	*	785	3838	*	4190	*	*	3893	*	4744	4594	3421	6347	*	*	*	26
+       52	7169	5128	0	*	0	*	6429	1000	1143	
+
+Y 27   5487	5211	*	*	2207	5412	4035	*	3130	3554	5173	*	*	5430	3680	7134	5062	6239	4601	2121	27
+       14	6718	*	0	*	692	1392	6541	1000	1049	
+
+H 28   5585	*	*	*	2228	*	1780	5812	*	4188	5622	3804	*	7113	5077	6790	6840	5592	5525	2232	28
+       8	*	7436	*	*	*	0	6701	0	1000	
+
+L 29   6530	*	*	*	6625	*	*	3204	*	365	5823	*	*	6038	*	*	*	4033	*	*	29
+       0	*	*	*	*	*	0	6704	0	1023	
+
+Q 30   3119	*	4951	2834	*	5612	5090	6762	5871	5874	6438	*	*	1719	2399	4487	4047	6746	*	*	30
+       0	*	*	*	*	1096	910	6738	0	1023	
+
+L 31   6161	6938	*	*	5218	4717	*	952	*	4832	2902	*	*	*	*	*	*	2138	*	*	31
+       31	6601	6484	0	*	*	0	6735	1007	1000	
+
+Q 32   5627	*	3415	7240	3074	*	3274	6706	4817	2155	5367	2656	7607	4606	3751	5102	5083	*	*	5279	32
+       81	5869	4742	2585	263	*	0	6718	1142	1039	
+
+A 33   3138	6200	5537	3772	*	3005	*	*	4606	3850	7137	*	1609	5675	4292	3572	5567	6723	*	5443	33
+       79	6379	4591	2322	322	235	2736	6670	1035	1189	
+
+D 34   6742	*	1157	6277	*	5640	6290	*	3673	*	*	1952	6833	*	4343	4085	5260	6807	*	7024	34
+       111	4746	4764	281	2500	817	1210	6682	1160	1154	
+
+G 35   4264	*	6723	*	*	334	*	6878	5453	5276	*	5915	*	*	4363	6482	6395	*	*	*	35
+       46	*	4980	*	*	627	1504	6686	0	1198	
+
+T 36   4084	*	5356	3971	*	6219	4209	4381	3390	6882	6554	4816	*	5489	2795	3013	1958	5076	*	6648	36
+       17	6417	*	2000	415	406	2027	6686	1035	1162	
+
+I 37   5495	*	*	*	*	*	*	1914	*	3990	6939	*	*	*	*	5711	6042	720	*	*	37
+       0	*	*	*	*	0	*	6725	0	1007	
+
+D 38   5152	5894	2353	7437	*	3364	5668	4954	5165	5602	6093	2488	7453	5548	2868	3321	4491	5110	6708	5961	38
+       25	5840	*	598	1558	*	*	6741	1038	0	
+
+G 39   2871	4949	*	*	6965	467	*	*	5555	*	*	6661	6387	6823	5743	5119	*	*	*	*	39
+       46	*	4988	*	*	*	*	6741	0	0	
+
+T 40   4939	*	5581	5157	*	4536	*	6677	4346	5803	5723	4406	*	6506	4444	2454	1150	5207	*	6038	40
+       27	5747	*	0	*	2128	375	6708	1178	1162	
+
+K 41   4686	*	4763	4085	*	3346	4588	7117	3264	4472	*	5352	4175	4628	1967	4299	3059	6285	*	6727	41
+       0	*	*	0	*	0	*	6751	1028	1186	
+
+D 42   5094	6600	1519	2870	5744	5267	6057	*	4114	5922	*	3942	7118	3525	4880	3844	5518	5908	6647	5079	42
+       0	*	*	*	*	*	*	6781	0	0	
+
+E 43   4194	*	2262	3217	*	3970	4112	4383	4069	*	*	4984	4107	3383	3058	3934	5102	*	*	*	43
+       168	7016	3290	0	*	*	*	6781	1000	0	
+
+D 44   4807	6998	3925	4444	6606	3680	3413	5454	4538	6572	6604	2152	5723	6582	4790	2491	3742	*	*	4932	44
+       160	4577	3993	981	1019	0	*	6686	1119	1577	
+
+S 45   4939	4925	2213	5011	*	4859	6023	*	*	6535	*	2763	4721	*	5651	1648	3397	6955	*	*	45
+       0	*	*	*	*	243	2687	6727	0	1224	
+
+T 46   4466	4999	4080	3784	*	*	5460	4092	3625	3810	6181	4408	2184	3925	4215	3902	5231	4129	*	7219	46
+       72	5948	4956	3100	179	0	*	6757	1031	1000	
+
+Y 47   5102	*	3989	5679	3945	4730	3324	*	6513	4635	*	3054	7436	6391	5347	3678	4639	6568	5456	1642	47
+       15	*	6563	*	*	0	*	6690	0	1099	
+
+T 48   2406	5323	6084	6989	*	3347	*	4279	*	5626	*	4992	*	5070	*	1983	1990	5173	*	*	48
+       79	5403	5081	4085	88	0	*	6778	1120	1077	
+
+L 49   5299	5667	4423	4616	*	*	6112	2487	3339	2187	6383	5758	*	5191	5536	5496	5338	2164	*	7189	49
+       58	*	4666	*	*	1055	947	6778	0	1121	
+
+F 50   *	6956	*	*	1987	*	*	4508	*	1201	3342	*	*	*	*	5983	*	3971	3598	*	50
+       12	*	6956	*	*	838	1183	6711	0	1193	
+
+N 51   6687	*	6506	1561	7312	5972	3663	3935	3757	4378	6691	3717	*	3178	4973	6707	4507	5594	*	4335	51
+       23	5977	*	1000	1000	1088	917	6718	1023	1100	
+
+L 52   *	*	*	*	3290	*	*	1936	6751	1959	4189	*	*	6647	2839	5645	6100	3152	*	5772	52
+       0	*	*	*	*	*	0	6771	0	1033	
+
+I 53   5112	*	5190	3084	4340	*	4592	2530	3295	4005	5887	7103	*	3462	3764	3455	4884	4358	5758	5906	53
+       63	4538	*	2053	398	967	1034	6771	1182	1033	
+
+P 54   2297	6101	*	*	6389	5480	*	*	*	6761	*	*	2318	*	*	1382	2787	6752	*	*	54
+       0	*	*	*	*	0	*	6779	0	1000	
+
+V 55   4917	*	4637	4089	4336	6591	4706	4362	7332	3386	4650	6392	6243	5823	*	6833	5272	1135	*	4428	55
+       34	6706	6192	2000	415	*	*	6789	1003	0	
+
+G 56   3471	6814	3453	3368	*	1723	5314	*	4022	*	*	4757	5758	6623	4257	2994	4687	5881	6111	6723	56
+       77	4263	*	1490	635	0	*	6785	1172	1016	
+
+L 57   4233	*	5259	4601	3485	4826	4912	4389	5203	2852	5538	5053	3437	4391	3664	3923	4540	3258	*	5360	57
+       139	3444	*	726	1339	*	*	6789	1377	0	
+
+R 58   7222	*	4583	5555	*	1243	*	*	4551	6910	*	3450	*	5792	2316	3005	6640	6414	*	*	58
+       255	4170	3233	1551	602	*	*	6789	1207	0	
+
+V 59   *	6532	*	3686	6529	4928	4408	3192	3541	2828	7457	*	*	4313	3230	5155	3600	2314	*	6595	59
+       32	5514	*	0	*	114	3721	6674	1038	1459	
+
+V 60   7345	5745	*	*	5259	*	6046	2151	*	3556	5856	*	*	6795	6084	*	7059	816	*	7109	60
+       0	*	*	*	*	*	0	6781	0	1000	
+
+A 61   2445	*	*	*	*	4946	*	5259	4502	3108	4161	6342	*	6731	2126	2965	3987	3762	*	5259	61
+       0	*	*	*	*	*	0	6781	0	1000	
+
+I 62   5609	*	*	*	6623	*	*	498	*	2351	6990	*	5745	*	*	*	*	4694	*	*	62
+       0	*	*	*	*	*	0	6781	0	1000	
+
+Q 63   *	*	*	6541	4187	5758	*	6454	2073	4396	*	6702	*	2255	1784	6795	*	4701	4977	5028	63
+       0	*	*	*	*	*	0	6781	0	1000	
+
+G 64   3318	*	6707	*	*	1031	3839	*	*	5745	*	3478	*	5557	*	2313	*	*	*	*	64
+       0	*	*	*	*	*	0	6781	0	1000	
+
+V 65   2615	*	6717	3841	5675	*	5175	4077	4654	3880	*	*	5562	7363	*	3721	4844	1321	*	7614	65
+       14	6741	*	2585	263	*	0	6781	1000	1000	
+
+Q 66   2976	*	4598	2394	5352	*	5477	4442	2186	4166	6333	6262	6775	4268	4696	3952	5365	4703	*	5596	66
+       13	*	6813	*	*	*	0	6781	0	1000	
+
+T 67   3457	*	5578	6642	6838	6081	4574	*	*	5356	*	6733	*	*	6443	1526	1444	5563	*	4994	67
+       0	*	*	*	*	1023	977	6773	0	1033	
+
+K 68   7647	2846	4809	5235	5177	1624	6921	*	3334	6353	*	3000	*	4637	3990	3819	*	5442	*	*	68
+       0	*	*	*	*	*	0	6781	0	1000	
+
+L 69   6981	6747	*	*	3746	6813	4335	6795	3360	1937	4729	4127	*	6285	1894	6865	6018	7143	6786	3937	69
+       0	*	*	*	*	*	0	6781	0	1000	
+
+Y 70   *	6472	*	*	2063	*	5541	*	*	4905	7092	*	*	*	*	*	*	6706	*	562	70
+       0	*	*	*	*	*	0	6781	0	1000	
+
+L 71   7484	*	*	*	*	*	5745	2546	6084	703	6740	*	*	*	*	*	*	2589	*	*	71
+       0	*	*	*	*	*	0	6781	0	1000	
+
+A 72   1684	890	*	*	*	4836	*	*	6094	*	6532	*	*	*	6289	4622	4827	*	*	*	72
+       0	*	*	*	*	*	0	6780	0	1000	
+
+M 73   *	*	*	*	3201	*	*	2309	*	4781	864	6393	*	6760	*	*	5764	4102	*	7393	73
+       27	7218	6431	0	*	*	0	6777	1000	1000	
+
+N 74   *	*	2020	6578	*	5200	6810	*	4670	*	*	962	*	*	6759	3428	4576	*	*	6608	74
+       0	*	*	*	*	0	*	6745	0	1046	
+
+S 75   3236	*	3319	3732	6828	5788	7396	*	2384	6449	6739	4568	4414	4881	2828	2562	6204	5249	*	*	75
+       0	*	*	*	*	*	*	6785	0	0	
+
+E 76   *	2827	3247	3014	*	5403	5701	*	2628	6617	5305	3647	*	4837	2922	3599	4500	*	*	5929	76
+       21	*	6112	*	*	*	*	6785	0	0	
+
+G 77   6114	*	7057	*	*	228	*	*	6207	6820	6791	6368	5688	6534	6924	5800	*	*	5376	*	77
+       0	*	*	*	*	*	0	6722	0	1028	
+
+Y 78   4884	*	5443	5388	5613	6969	5424	7061	1836	4668	6552	4177	*	3899	2264	5090	4661	6713	*	3048	78
+       24	6828	6969	0	*	*	0	6722	1000	1028	
+
+L 79   5454	*	*	6438	*	*	*	3856	7385	707	4337	*	5623	*	*	*	5777	2398	*	*	79
+       52	4826	*	3627	122	*	0	6715	1110	1067	
+
+Y 80   5048	6754	6280	5789	3638	*	5256	4444	5385	6704	*	*	*	5603	4206	5260	4011	4267	*	919	80
+       0	*	*	*	*	0	*	6713	0	1067	
+
+T 81   2188	*	*	7398	*	1537	*	5610	6100	4877	*	*	5806	5755	5990	2895	2597	6793	*	*	81
+       79	4226	*	1819	481	*	*	6760	1250	0	
+
+S 82   3439	*	6776	3968	*	*	*	*	3137	4062	5673	*	*	4557	3634	1488	2624	*	*	*	82
+       170	3304	6644	1036	965	*	*	6760	1390	0	
+
+E 83   3837	*	3254	2692	6137	5234	5184	5118	2663	4621	6440	4669	3711	7386	3217	3670	4250	8410	*	*	83
+       64	4524	*	2216	350	0	*	6757	1171	1081	
+
+L 84   6182	7549	3416	5266	4984	3073	3803	3978	3700	4292	8104	3725	6136	4796	4388	4359	3269	3130	*	8070	84
+       42	5133	*	1606	575	*	*	6760	1107	0	
+
+F 85   4982	5698	6537	6797	2244	7100	6709	4615	3437	3539	5874	4910	2930	5886	3949	7222	4151	5246	*	2946	85
+       13	6824	*	0	*	*	*	6760	1000	0	
+
+T 86   6656	*	3876	5795	*	3131	7127	5646	6928	6825	*	2556	*	6837	3933	2048	1973	7661	*	*	86
+       107	3803	*	0	*	*	*	6738	1291	0	
+
+P 87   3763	*	2926	3355	5800	5867	5043	6774	2621	4948	5598	4288	2988	5091	4423	3960	5151	4710	7029	6021	87
+       68	4799	6667	2721	237	*	*	6738	1138	0	
+
+E 88   5580	*	1808	1245	6114	*	7343	*	3767	8143	6046	3603	*	5972	5824	6305	5035	*	*	*	88
+       123	3612	*	253	2635	*	0	6731	1434	1021	
+
+C 89   6279	284	6791	*	*	5698	*	5342	*	*	*	6507	*	*	*	4915	3858	*	*	*	89
+       10	7232	*	0	*	*	0	6731	1000	1021	
+
+K 90   4038	*	5961	4071	4891	6791	5833	3573	2907	2482	7094	7016	*	4181	5370	5218	3669	2465	*	5264	90
+       0	*	*	*	*	0	*	6731	0	1021	
+
+F 91   *	*	*	*	293	*	*	5172	6670	3654	6132	*	*	*	*	*	*	*	4256	*	91
+       0	*	*	*	*	*	*	6740	0	0	
+
+K 92   6847	*	6670	3886	4480	*	4340	3898	2456	3927	*	4012	*	3747	2571	5588	4259	3939	*	4021	92
+       0	*	*	*	*	*	*	6740	0	0	
+
+E 93   *	*	5327	362	*	*	4174	5577	5556	7145	*	5659	*	5073	*	*	5391	*	*	5718	93
+       52	5652	6022	599	1557	*	*	6740	1038	0	
+
+S 94   6723	6692	6828	2780	*	6633	4437	3759	3452	3922	7289	4255	*	5018	3218	2644	3065	5321	5815	5663	94
+       28	*	5680	*	*	1111	897	6690	0	1023	
+
+V 95   7199	*	*	5840	3913	*	5225	2485	*	2106	2940	*	4866	5923	6726	6470	5722	2418	*	3967	95
+       95	*	3965	*	*	537	1686	6652	0	1071	
+
+F 96   5746	*	4138	2167	3437	5083	5102	7290	5630	2113	5479	6846	6730	5553	5390	4226	3783	6602	4932	4702	96
+       57	5551	5858	615	1526	163	3223	6584	1046	1286	
+
+E 97   4132	6726	3703	1084	*	6275	6988	*	4160	4952	*	6818	3535	4309	4873	3670	6382	7453	*	*	97
+       0	*	*	*	*	539	1682	6674	0	1071	
+
+N 98   6980	*	3280	6712	*	3733	4689	*	5111	5943	7026	769	*	5831	7259	3784	5092	*	*	*	98
+       0	*	*	*	*	0	*	6687	0	1000	
+
+Y 99   4914	*	5691	5749	3596	1794	3819	*	5663	4747	7321	2798	6855	6847	6074	4381	*	*	5023	2566	99
+       30	5580	*	1840	472	*	*	6696	1068	0	
+
+Y 100  *	6360	*	6308	2765	*	5287	*	*	6725	*	*	*	6174	5690	6828	*	6500	4744	509	100
+       23	*	5993	*	*	*	*	6696	0	0	
+
+V 101  5652	5608	3592	*	5404	*	4212	6823	5782	5345	*	1621	*	5569	5599	4068	2578	3009	*	5091	101
+       14	*	6657	*	*	976	1025	6688	0	1020	
+
+T 102  3182	6385	*	5402	4940	6583	*	4158	*	4192	5589	5767	*	4624	4202	3915	1597	2888	6115	5634	102
+       0	*	*	*	*	*	0	6679	0	1062	
+
+Y 103  *	*	*	*	1909	*	*	6706	*	3882	6671	*	*	*	*	*	*	6431	*	655	103
+       14	*	6706	*	*	*	0	6679	0	1062	
+
+S 104  3078	*	*	3303	4690	6823	*	4600	4956	4470	5657	5639	*	3888	3040	2252	4306	5902	7145	3310	104
+       47	*	4972	*	*	2233	345	6671	0	1102	
+
+S 105  5516	6761	*	*	*	*	*	*	4595	6223	*	4018	*	*	4351	349	*	*	*	5791	105
+       14	6712	*	2322	322	2320	322	6614	1000	1190	
+
+M 106  2382	5385	7050	4121	5573	*	4382	4522	3692	4916	3885	7426	5811	4375	3745	4273	3653	3195	*	4582	106
+       170	6008	3388	1354	716	1341	725	6636	1008	1144	
+
+I 107  4318	*	5900	4553	7941	*	4536	4672	1769	2783	6220	3940	*	3974	3345	4650	5910	4829	*	4915	107
+       45	6609	5614	2322	322	259	2604	6459	1000	1463	
+
+Y 108  *	6916	5680	6719	4728	*	2341	5660	6695	*	6517	3637	*	5707	5409	*	4309	*	4233	1118	108
+       530	6306	1762	2341	317	*	0	6595	1025	1198	
+
+R 109  5161	5809	4987	6226	5208	3228	4472	*	2780	5083	*	4461	3735	5386	1817	4001	5379	*	*	4619	109
+       450	6232	1975	1000	1000	4007	93	6218	1072	2415	
+
+Q 110  4460	*	3875	4792	*	4745	3205	4876	4515	3250	6033	3827	5220	2406	3625	6037	3478	4863	*	*	110
+       514	6379	1798	3322	152	4579	62	5711	1000	2947	
+
+Q 111  *	5630	6519	4360	3877	4346	3217	*	4401	4430	*	4142	2124	3127	3541	3968	4686	6322	*	*	111
+       472	3274	2510	3850	104	2792	225	5424	1157	3395	
+
+Q 112  *	*	2560	2360	*	5005	5571	5617	3348	5777	5402	3332	4699	3474	4716	4765	4148	4519	*	5623	112
+       111	*	3760	*	*	2025	407	5535	0	3352	
+
+S 113  4756	*	4123	4439	6640	5464	3487	*	3569	*	*	3074	5709	4778	3445	2132	2798	*	6028	*	113
+       168	*	3184	*	*	3058	185	5706	0	2941	
+
+G 114  4303	*	4389	4401	*	1574	3507	*	4040	6101	*	3799	4081	4578	2905	5062	*	*	*	5736	114
+       74	4994	5721	3222	164	1000	1000	5834	1022	2949	
+
+R 115  6444	*	*	4671	*	*	4753	*	2325	4990	*	4175	3926	4051	1633	4408	4471	6406	6823	3954	115
+       27	7506	6275	0	*	774	1267	6351	1000	2056	
+
+G 116  4235	6280	3500	4670	*	2336	5518	*	3851	4939	7392	3899	3643	5368	2890	4069	3440	5600	*	*	116
+       0	*	*	*	*	1798	489	6516	0	1545	
+
+W 117  4260	4691	*	*	4386	*	5947	5006	*	3343	2881	*	*	6141	5713	5173	5223	*	1115	5044	117
+       0	*	*	*	*	2943	201	6581	0	1380	
+
+Y 118  5364	5560	*	*	2136	*	4442	*	*	4574	6610	5665	5914	*	5541	*	*	*	6592	835	118
+       0	*	*	*	*	1456	654	6584	0	1326	
+
+L 119  *	*	*	*	5905	*	*	2327	*	1200	5287	*	*	*	*	*	*	1630	*	*	119
+       0	*	*	*	*	640	1481	6609	0	1193	
+
+G 120  1316	*	*	6479	*	1517	6980	6695	*	*	*	5066	6704	*	6202	2784	5506	*	*	*	120
+       0	*	*	*	*	0	*	6617	0	1042	
+
+L 121  *	*	*	*	2341	*	*	1876	*	1151	4477	*	*	*	*	*	*	4836	*	*	121
+       12	*	6860	*	*	*	*	6643	0	0	
+
+N 122  5977	*	3260	6395	*	4367	7274	6712	2681	7007	*	1330	6849	6676	3916	3561	3785	*	*	*	122
+       11	*	7007	*	*	*	0	6641	0	1077	
+
+K 123  5242	*	5983	5835	*	4050	*	6556	1403	5112	*	3911	6193	5917	1972	3341	*	6409	*	*	123
+       0	*	*	*	*	*	0	6636	0	1119	
+
+E 124  3766	*	3305	3676	4990	6556	5944	6679	3028	5398	*	2136	*	4892	2811	3432	5664	*	*	5912	124
+       10	*	7117	*	*	*	0	6636	0	1119	
+
+G 125  *	*	*	*	6412	186	6425	*	4172	*	*	6541	6370	*	5685	*	*	*	*	*	125
+       25	*	5878	*	*	*	0	6631	0	1152	
+
+E 126  7280	*	*	4745	*	6208	3803	6095	1777	4929	7175	4175	*	2503	2185	6024	4938	5309	*	*	126
+       12	*	6903	*	*	436	1938	6620	0	1244	
+
+I 127  3562	6226	*	*	4077	*	6821	3495	6416	4274	5547	*	1492	5922	*	4680	3145	2933	*	7508	127
+       33	6838	6169	2322	322	1743	512	6634	1000	1065	
+
+M 128  6554	*	*	*	5530	6847	6714	5126	1811	3425	3594	*	*	5218	1412	6613	*	4884	*	6242	128
+       64	5499	5539	0	*	1725	520	6580	1044	1120	
+
+K 129  5250	*	4648	5957	6464	*	5533	5848	1889	4430	*	3074	3723	4617	1937	5055	6443	6252	*	*	129
+       69	6645	4775	1000	1000	619	1519	6539	1000	1150	
+
+G 130  3291	*	*	*	6248	731	6896	6224	6388	4473	*	5705	4440	*	6601	4557	6335	3928	*	7079	130
+       65	5693	5328	544	1670	*	0	6554	1042	1189	
+
+N 131  5382	5024	*	*	4168	*	4897	*	3804	5796	*	2648	2900	3823	3398	2550	3892	5218	*	4557	131
+       18	6328	*	1000	1000	2321	322	6356	1000	1267	
+
+H 132  6023	6220	*	*	*	5669	4412	*	2130	5111	4457	3865	*	4580	1397	4821	3715	*	*	*	132
+       82	5070	5286	0	*	1334	729	6385	1054	1206	
+
+V 133  4037	*	4835	*	*	5361	*	5391	*	4545	6018	6212	5377	5509	5446	3536	1273	2328	5951	*	133
+       59	*	4643	*	*	2370	310	6291	0	1194	
+
+K 134  4771	*	6295	*	6755	6023	4993	*	1565	4328	6471	3685	6468	6243	2064	3893	4055	*	*	5226	134
+       50	6754	5340	1000	1000	3282	156	6231	1003	1284	
+
+K 135  6520	*	6093	4913	*	4930	5475	5801	1952	6309	*	5433	2492	4338	2507	3505	5829	*	4741	5175	135
+       0	*	*	*	*	720	1347	6188	0	1331	
+
+N 136  *	*	4242	3847	4990	2135	4470	6601	4066	3860	*	4126	5242	4764	4290	4838	2296	5943	*	6965	136
+       36	7259	5770	0	*	436	1940	6246	1000	1106	
+
+K 137  6157	*	5394	5694	*	6594	2947	*	2446	5793	4495	4696	3628	1727	4357	4935	6188	6738	5803	6265	137
+       16	*	6508	*	*	1865	463	6269	0	1059	
+
+P 138  4523	*	5283	5329	*	6652	4733	6058	2120	4349	*	4380	2512	4108	2481	5336	4344	5073	*	*	138
+       14	6714	*	1585	585	577	1602	6259	1024	1067	
+
+A 139  2094	3177	5008	4757	4994	6750	5416	*	6339	4933	6949	5493	5648	6182	6281	1746	4321	4641	*	6277	139
+       15	6583	*	2000	415	*	0	6258	1077	1000	
+
+A 140  2242	*	*	6628	4093	6772	6320	4264	*	5263	*	*	*	*	6498	1846	2385	2842	*	*	140
+       0	*	*	*	*	*	0	6258	0	1000	
+
+H 141  *	6008	*	*	4893	*	1290	*	4383	3705	5141	4216	*	1785	4699	*	*	*	*	7275	141
+       0	*	*	*	*	0	*	6258	0	1000	
+
+F 142  *	*	*	*	103	*	*	*	*	4947	*	*	*	*	*	*	*	*	4782	*	142
+       14	*	6660	*	*	*	*	6268	0	0	
+
+L 143  *	*	*	6199	*	*	*	2865	5653	546	3883	6415	*	7297	6789	*	*	4337	*	*	143
+       13	*	6811	*	*	*	0	6228	0	1005	
+
+P 144  4794	*	*	5248	*	*	*	4472	2868	5329	*	*	756	*	6034	5218	4846	4015	*	*	144
+       20	6156	*	2807	222	*	0	6021	1000	1042	
+
+K 145  *	*	*	6128	*	*	6215	3626	3372	2768	4071	5857	*	6070	1065	5864	*	4468	*	5990	145
+       12	6910	*	4248	78	*	0	5889	1000	1042	
+
+P 146  4953	4603	4372	5704	5321	*	5710	5900	4684	3103	*	4583	1550	6319	3686	4830	4770	3586	*	6117	146
+       39	5214	*	3537	130	*	0	5848	1027	1042	
+
+L 147  4190	*	*	5806	4954	5833	5660	2068	*	3240	*	3128	4904	*	4572	6036	5734	1788	*	*	147
+       0	*	*	*	*	*	0	5646	0	1042	
+
+K 148  4863	*	2569	1727	*	4151	5783	*	3918	5675	*	5812	5451	*	3860	3477	3371	4681	*	*	148
+       0	*	*	*	*	*	0	5492	0	1042	
+
+V 149  4960	*	*	5003	5139	4801	4387	3933	*	4509	5202	*	3683	4926	*	2544	3951	1551	*	*	149
+       184	4517	3712	3907	100	*	0	5144	1031	1042	
+
+A 150  2944	3612	4536	*	4494	*	4691	*	4149	*	4997	4445	1518	5432	3925	3928	5336	*	*	*	150
+       115	3704	*	1645	556	2002	414	4742	1046	1149	
+
+M 151  3936	*	4947	*	*	3678	*	4493	*	1946	1400	*	*	*	4604	4213	*	4434	*	*	151
+       51	*	4842	*	*	0	*	4809	0	1102	
+
+Y 152  *	*	5303	3271	3849	*	*	*	4063	3620	3297	*	*	*	*	*	3335	3181	4475	1716	152
+       0	*	*	*	*	*	0	4709	0	1012	
+
+K 153  *	*	*	*	*	*	4120	*	2136	*	*	*	4560	3168	833	*	*	*	*	*	153
+       148	3362	*	631	1498	0	*	4559	1065	1012	
+
+E 154  *	*	*	1016	*	4004	*	*	*	2593	*	*	*	4909	3487	*	4424	3206	*	*	154
+       82	4177	*	2585	263	*	*	4194	1077	0	
+
+P 155  *	*	*	*	*	*	*	*	*	*	*	*	100	3899	*	*	*	*	*	*	155
+       0	*	*	*	*	*	*	3807	0	0	
+
+S 156  *	*	*	4819	*	*	*	*	3985	3973	*	4261	3749	4267	3419	955	*	4322	*	*	156
+       0	*	*	*	*	*	*	3807	0	0	
+
+L 157  *	*	*	*	*	3419	4633	3647	3973	1376	3899	*	3119	4364	*	3749	*	4946	*	*	157
+       0	*	*	*	*	*	*	3807	0	0	
+
+H 158  4276	3997	*	3006	*	*	914	*	*	*	*	*	2984	4589	*	*	*	*	*	3996	158
+       0	*	*	*	*	*	*	3770	0	0	
+
+D 159  *	*	1148	1912	*	*	3316	*	*	*	*	*	3604	*	3843	5033	*	*	*	*	159
+       117	3687	*	0	*	*	*	3770	1120	0	
+
+L 160  *	*	*	*	1839	*	*	2489	*	1890	*	*	*	*	*	*	3230	2591	*	*	160
+       39	*	5239	*	*	*	*	3625	0	0	
+
+T 161  2849	*	5329	4291	2186	2197	*	4160	*	3927	*	*	3882	*	*	*	2663	*	*	*	161
+       0	*	*	*	*	0	*	3244	0	1069	
+
+E 162  4269	*	*	784	*	2778	*	*	*	*	*	*	*	*	*	2566	*	4248	*	*	162
+       220	2825	*	1235	798	*	*	2793	1283	0	
+
+F 163  3764	*	*	3755	4771	*	3652	*	*	*	*	*	3222	1794	3081	2893	3511	*	*	*	163
+       0	*	*	*	*	*	0	2805	0	1043	
+
+S 164  *	*	2893	*	*	*	*	*	4831	*	*	*	4683	*	*	550	*	3207	*	*	164
+       0	*	*	*	*	0	*	2805	0	1043	
+
+R 165  *	*	*	*	*	4926	*	*	*	2459	*	*	1510	*	1334	*	*	4737	*	*	165
+       0	*	*	*	*	*	*	2793	0	0	
+
+S 166  *	*	*	*	*	*	*	*	2024	2928	*	*	3961	*	1927	1758	*	*	*	*	166
+       214	5425	3127	0	*	*	*	2793	1062	0	
+
+G 167  2700	*	*	*	*	4376	*	*	*	*	*	4634	4049	*	*	769	*	3178	*	*	167
+       134	3497	*	0	*	*	0	2370	1028	1165	
+
+S 168  *	*	*	*	*	3418	*	*	*	*	2570	*	2868	*	4571	839	*	*	*	*	168
+       0	*	*	*	*	*	0	2298	0	1235	
+
+G 169  *	*	*	2731	*	1599	*	*	*	*	*	*	*	*	4159	2539	*	1779	*	*	169
+       0	*	*	*	*	*	0	2257	0	1235	
+
+T 170  *	*	*	*	*	2479	*	*	*	*	*	*	4238	*	*	2782	1084	2731	*	*	170
+       0	*	*	*	*	*	0	2257	0	1235	
+
+P 171  *	*	2539	*	*	*	*	*	*	*	*	*	562	2731	*	*	*	*	*	*	171
+       0	*	*	0	*	613	1530	2257	1028	1235	
+
+T 172  *	*	*	*	*	*	2882	*	*	*	*	*	*	*	*	911	1588	*	*	*	172
+       986	*	1014	*	*	*	0	2218	0	1054	
+
+K 173  *	*	*	*	*	*	*	*	816	*	*	*	*	1942	2543	*	*	*	*	*	173
+       0	*	*	*	*	*	0	1735	0	1555	
+
+S 174  *	*	*	*	*	1942	*	*	2543	*	*	*	*	*	*	816	*	*	*	*	174
+       0	*	*	*	*	*	0	1735	0	1555	
+
+R 175  *	*	2543	*	*	*	*	*	*	*	*	*	*	*	1224	*	1321	*	*	*	175
+       0	*	*	3170	170	2659	249	1735	1054	1555	
+
+S 176  *	*	*	*	*	*	*	*	*	*	*	*	2315	*	*	542	3155	*	*	*	176
+       0	*	*	*	*	1471	646	1808	0	1463	
+
+V 177  1683	*	*	*	*	3012	*	*	*	*	*	*	*	*	*	1458	*	2318	*	*	177
+       545	1669	*	3131	175	*	0	1883	1125	1283	
+
+S 178  *	*	*	2804	*	*	*	*	*	*	*	*	*	*	*	543	2551	*	*	*	178
+       0	*	*	*	*	*	0	1763	0	1352	
+
+G 179  1967	*	*	2551	*	2625	*	*	*	*	*	*	2804	*	*	*	1898	*	*	*	179
+       0	*	*	*	*	*	0	1763	0	1352	
+
+V 180  2551	*	*	1898	*	*	*	1967	*	*	*	*	*	*	*	*	*	1711	*	*	180
+       543	1672	*	1021	979	0	*	1763	1174	1352	
+
+L 181  *	*	*	*	2646	*	*	*	*	1975	1105	*	*	*	*	*	*	3047	*	*	181
+       0	*	*	*	*	*	*	1890	0	0	
+
+N 182  *	*	*	*	*	*	*	*	*	*	*	298	*	*	*	3927	3047	*	*	*	182
+       0	*	*	*	*	*	*	1890	0	0	
+
+G 183  *	*	*	*	*	215	*	*	*	*	*	*	*	*	*	3785	3927	*	*	*	183
+       186	3047	*	2000	415	*	*	1890	1028	0	
+
+G 184  *	*	*	*	*	478	*	*	*	*	*	*	*	*	3756	2265	*	*	*	*	184
+       146	3375	*	0	*	*	*	1822	1069	0	
+
+K 185  *	*	*	3658	*	*	*	*	119	*	*	*	*	*	*	*	*	*	*	*	185
+       0	*	*	*	*	*	*	1822	0	0	
+
+S 186  3542	*	*	3391	*	*	*	*	*	*	*	*	1729	*	3370	2932	*	1789	*	*	186
+       177	3118	*	0	*	*	*	1563	1045	0	
+
+M 187  2861	*	*	*	*	*	*	*	*	3170	2769	*	*	*	*	*	*	726	*	*	187
+       0	*	*	2700	241	*	*	1518	1065	0	
+
+S 188  *	*	*	*	*	2861	*	*	*	*	*	715	*	*	*	2769	3233	*	*	*	188
+       0	*	*	*	*	*	*	1518	0	0	
+
+H 189  *	*	*	*	*	*	2769	*	1599	*	*	*	*	1232	3358	*	*	*	*	*	189
+       129	*	3543	*	*	*	*	1518	0	0	
+
+N 190  *	*	1039	*	*	*	*	*	*	*	*	2682	2942	*	*	2135	*	*	*	*	190
+       0	*	*	*	*	0	*	1529	0	1016	
+
+E 191  *	*	3365	2639	*	*	*	*	1978	*	*	*	*	*	*	1034	*	*	*	*	191
+       0	*	*	*	*	*	*	1514	0	0	
+
+S 192  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1957	430	*	*	*	192
+       604	1547	*	2199	354	*	*	1514	1146	0	
+
+T 193  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1073	930	*	*	*	193
+       0	*	*	0	*	*	*	1548	0	0	
+
+//
+�HHsearch 1.5
+NAME  7d7b394238d3b3e35f1bbacceedade0b
+FAM   
+FILE  7d7b394238d3b3e35f1bbacceedade0b
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:07:45 2013
+LENG  212 match states, 212 columns in multiple alignment
+FILT  177 out of 1181 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  8.5 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCEEEECCCCCCCCCCEECCCCCCCCCEEEECCCCCEEEECCCEEEEEEEECCCCCEEEEEEEEECCEEEEEEEEEEEECCCCCEEEEEEEECCCCCCCC
+CCEEEEEEEECCCCEEEEEEECCCCCCCCEEEECCCCCCCCEEEEEEEEECCEEEEEECCEEEEEECCCCCCCCEEEEEEEECCCCCCCCCCCCCCCCCE
+EEEEEEEEEECC
+>ss_conf PSIPRED confidence values
+9836961799974567884797788305777086677990899899999946899737899998230312599999994699964999996035677999
+7629999983269778899976998996459758999877819999999599899999999999968999999749999997278765568887999985
+999999999869
+>Consensus
+xxxfxDeFxxldxxxWxxxxxwxxxxxxxxxxxxxnvxvxxxGxLxlxxxxxxgxxxxsgxixsxxxxxyGxxEarxkxxxxxgxxxafwlxxxxxxxxx
+xxEIDiExxgxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxHxYxxxWxxxxixfyvDgxxvxxxxxxxpxxpxxlxlnxxxxxxxxxwxgxxxxxxxx
+xxxVDxVrvyxx
+>7d7b394238d3b3e35f1bbacceedade0b
+GSVFWEPLSYFNPSTWEKADGYSNGGVFNCTWRANNVNFTNDGKLKLGLTSSAYNKFDCAEYRSTNIYGYGLYEVSMKPAKNTGIVSSFFTYTGPAHGTQ
+WDEIDIEFLGKDTTKVQFNYYTNGVGGHEKVISLGFDASKGFHTYAFDWQPGYIKWYVDGVLKHTATANIPSTPGKIMMNLWNGTGVDDWLGSYNGANPL
+YAEYDWVKYTSN
+>gi|109897132|ref|YP_660387.1| glycoside hydrolase family protein [Pseudoalteromonas atlantica T6c]gi|109699413|gb|ABG39333.1| glycoside hydrolase, family 16 [Pseudoalteromonas atlantica T6c]
+--QFTDEFDGqiLDTQRWHPTnPGWKGREPTF--FHKDNTRLEG-GELVMSINQHgdtelpEGYTHSSGFIKTKERVLYGYFESEAKLMDA-PWVSGFWL
+TMG--TKEWWTEIDIqENCPCVDGqrhDINSNLHVfrSpkEHGNvkkhfsDSKKYYHPDEIQKDYHVWGLEWNEDVIRFFIDGFMFREVENTHWHQPLTI
+NVNNES----NKWFNALPdDnRTDEEYRVKYVRVWQ-
+>gi|90021040|ref|YP_526867.1| thiol oxidoreductase-like protein [Saccharophagus degradans 2-40]gi|89950640|gb|ABD80655.1| putative retaining b-glycosidase [Saccharophagus degradans 2-40]
+--IFEENFNTLNSDRWNVIegdgcqygpnlCGWGNQELQYYQD--SNVTIEDvpgePGnkAVVFEARNETvnGSAFTSGKIDSEDgiAIKYGMIEFRLRV
+PNmGVGYWPAVWMLGTSTESWPSkGEIDMMEMGHRAQgmadagHPGTNlnNYTAanaifyaeAAcvPENPTcaAMTAWQtdnayvsqtSMGERFVIYRTY
+WTDTQLRFTVIdnGVEYDMyddpitIGEEatELQQPFYLLANLAVGGNFTDA-STPAevtAQLPGKMYLDYIRVYQL
+>gi|170727005|ref|YP_001761031.1| hydrolase [Shewanella woodyi ATCC 51908]gi|169812352|gb|ACA86936.1| hydrolase (secreted protein) [Shewanella woodyi ATCC 51908]
+--IMFDDFNYINlaqaeENGWMARTETGHPGIKGATWWSEGVSFhpdpLNYSnqVMRISSKTDGTPaNTRQTQVCHKRKYHEGTYAARVYFndkpqygPD
+GDGIVETFYAISPlASPLDPAySEMDFEYLANGgwgeGDhALFaTSWETfQLKpwtPVNA--YDATRNSLQGWNTLVLQVSDNKLRYFINGELFAEHgSE
+VYPEVAMSINFNLWFIP---------------------------
+>gi|152967800|ref|YP_001363584.1| hypothetical protein Krad_3857 [Kineococcus radiotolerans SRS30216]gi|151362317|gb|ABS05320.1| conserved hypothetical protein [Kineococcus radiotolerans SRS30216]
+--------------------------------------------------------------------REGQVDVRVTASLDRGCMLAVWLVGTEHEsPG
+DSGEVCVcEIDADAVGetstRVRTGVKAHHDPrlrTEVTEVVVPVGA-GQAHWWSARWNASGVVVACDERVVFTSA-QHVRGPQQLMVDLFEVV------
+APgPAGEYPKTAVVHAVRGS--
+>gi|154296949|ref|XP_001548903.1| hypothetical protein BC1G_12563 [Botryotinia fuckeliana B05.10]gi|150843090|gb|EDN18283.1| hypothetical protein BC1G_12563 [Botryotinia fuckeliana B05.10]
+------------------------------------TKVIG-NQVYMGVDNTTvlsdkVNGkRNSIWVNLFMSF---LMV--FLlVISRtCLVVivePGL
+vsanrfasWTIRN---GdGPYg-EMDIlEGSNDIT-----------------------------------------------------------------
+----------------------------------
+>gi|255692839|ref|ZP_05416514.1| conserved hypothetical protein [Bacteroides finegoldii DSM 17565]gi|260621401|gb|EEX44272.1| conserved hypothetical protein [Bacteroides finegoldii DSM 17565]
+------------------------------------AQVTNEGELNICV--GVegt--NYGTAAIHcckslaqmwaQNVtRIYPGmRIEVKVRLGGnRTG
+FVPMIEVKNPSTATtskEAKQSICIlKNVsGTAITqSVRGETIS-D----VKSVvtAIP--KVEDYNIYWMELVDENtIKLGINGSTTLevsKdMLNSWP
+ftkastgtsvgAKGLYLIMRwdLFGesntiSPDlPAGWDTELKsidptkyATEGPRMIIDWIRFYV-
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+G 1    *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1000	0	0	
+
+S 2    *	*	*	*	*	1676	*	*	*	*	*	*	2498	*	*	971	*	*	*	*	2
+       281	2498	*	0	*	*	*	3035	1011	0	
+
+V 3    3115	6437	4064	4988	*	*	6795	3443	5828	3419	6730	4972	6882	4749	6688	4594	3216	1797	*	4787	3
+       0	*	*	*	*	*	*	7936	0	0	
+
+F 4    *	*	*	*	960	*	*	6327	6690	3518	4397	*	*	*	*	*	*	4822	1862	5764	4
+       0	*	*	*	*	*	*	8056	0	0	
+
+W 5    4077	6527	4778	2812	3822	5299	4082	7007	4993	6988	5631	4560	*	3745	4065	2045	6839	4047	4918	7087	5
+       0	*	*	*	*	*	*	8149	0	0	
+
+E 6    6538	*	351	2649	6799	*	*	*	*	*	*	*	6422	6748	*	7096	6887	*	*	*	6
+       0	*	*	*	*	*	*	8136	0	0	
+
+P 7    *	*	1842	1155	*	5862	6737	*	*	*	*	3274	5833	5011	*	4580	4274	*	*	*	7
+       0	*	*	*	*	*	*	8136	0	0	
+
+L 8    *	6566	*	*	72	*	*	*	*	5982	*	*	*	*	*	*	*	6340	6670	*	8
+       0	*	*	*	*	*	*	8162	0	0	
+
+S 9    4828	*	1547	3941	*	5864	5686	*	6094	*	*	1542	*	*	5668	3806	3802	*	*	*	9
+       775	1266	*	1216	812	*	*	8174	4482	0	
+
+Y 10   3492	*	3942	4844	*	2431	6756	*	4132	7047	*	4457	7108	3907	5306	2336	2945	5879	*	4006	10
+       376	2177	6919	1886	455	*	*	8174	3053	0	
+
+F 11   5875	*	*	6813	4089	5889	6659	2713	5854	1318	7101	7063	2515	*	*	6746	5243	3721	6730	7147	11
+       79	4238	*	1325	735	*	0	8157	1449	1000	
+
+N 12   5843	*	952	4492	6984	5207	*	5427	6701	5236	*	1977	*	5338	6949	5136	*	6436	*	*	12
+       148	3608	6000	1919	443	0	*	8186	1865	1000	
+
+P 13   4171	*	3794	3649	*	4594	*	7112	5803	4076	5794	4875	3243	4747	4703	3150	1789	7159	6031	6760	13
+       10	7159	*	2807	222	*	0	8191	1000	1114	
+
+S 14   2680	*	3352	5039	*	4885	5414	*	3730	6645	6928	3819	5436	3929	6649	2018	2854	6655	*	*	14
+       10	7158	*	1000	1000	*	0	8279	1000	1114	
+
+T 15   5884	6989	4882	5255	5376	4994	5865	4958	1537	4906	6905	2776	6644	6116	3115	6875	6150	3777	*	4553	15
+       0	*	*	*	*	*	0	8415	0	1114	
+
+W 16   *	*	*	*	5275	*	*	*	*	*	*	*	*	*	*	*	*	*	38	*	16
+       12	*	6944	*	*	*	0	8415	0	1114	
+
+E 17   4597	*	4593	4252	5413	4599	5247	3883	3865	4213	7054	2613	*	3559	3896	4013	3043	4663	*	4733	17
+       110	4189	5759	766	1280	*	0	8400	1532	1214	
+
+K 18   3825	5745	5009	6786	4165	4888	4419	3495	3743	3920	6982	*	4042	5457	4515	5654	4584	2611	*	2790	18
+       97	4547	5498	1518	620	2105	382	8360	1494	1430	
+
+A 19   4024	6047	4832	3035	7025	3582	4950	4377	5037	3804	5002	4389	5125	4586	3374	3803	4155	4361	5281	4485	19
+       485	2008	4754	1602	576	1934	438	8361	3380	1553	
+
+D 20   5385	6860	2385	4379	6725	3882	4927	6097	4580	5016	6545	3140	3324	5125	4617	3286	3776	5735	*	4547	20
+       699	1973	2952	2123	376	2907	206	8333	3360	1767	
+
+G 21   4916	*	4131	4751	4981	1197	5383	5370	4595	6928	*	3618	3990	5210	5348	3744	5713	*	*	5854	21
+       156	3800	5017	1233	799	862	1152	8308	1643	2867	
+
+Y 22   6681	6881	4339	7120	3502	4803	5226	7313	7143	3869	5829	7190	7332	6970	6896	5409	6068	6876	890	4089	22
+       393	2570	3838	998	1002	1938	436	8521	2673	2116	
+
+S 23   4535	7037	4051	6792	5921	1927	4427	5244	4270	5877	*	4247	4679	5878	4101	3170	4796	3847	5959	4083	23
+       99	4643	5238	1515	621	726	1338	8506	1352	2508	
+
+N 24   3476	*	5062	6734	*	2461	5260	*	4693	5578	5675	1612	3731	5849	*	4296	3611	*	*	4996	24
+       36	6112	6660	1322	737	1685	538	8536	1075	1820	
+
+G 25   5345	*	4281	6767	*	1642	6035	6764	5015	6623	*	2884	3803	3901	3115	4013	5045	5270	6044	7382	25
+       40	5541	7382	1000	1000	1907	447	8536	1147	1648	
+
+G 26   4699	7545	3909	1814	5301	3408	6051	*	5066	6009	6129	4732	4898	3530	4933	3009	4697	4987	7160	5705	26
+       124	6772	3770	0	*	2943	201	8558	1003	1522	
+
+V 27   3890	5811	4882	4959	4683	4665	5508	4328	5248	2901	5112	4891	2369	4161	3791	4587	5295	4113	5578	6904	27
+       154	6680	3450	1290	759	1838	474	8462	1132	2211	
+
+F 28   *	6799	*	3384	3347	4178	7037	5355	3888	5359	5368	5382	5074	1787	4143	4647	5800	4181	*	3635	28
+       96	6964	4146	2322	322	1960	429	8383	1000	2867	
+
+N 29   3765	4059	3845	4849	3973	4660	4328	5868	5428	3693	5731	3390	5865	4660	5176	3739	3580	5853	6007	3301	29
+       143	7203	3511	1000	1000	1252	785	8352	1000	2861	
+
+C 30   3518	3428	*	6926	4065	4032	5299	4450	6714	5472	5353	4106	5382	*	6580	5044	3770	5502	5200	1655	30
+       271	5749	2714	2995	193	1597	579	8429	1111	2845	
+
+T 31   5244	*	4683	6640	5898	5188	5104	4283	5188	2920	6878	3906	5126	4879	4749	3536	2178	2986	*	4964	31
+       126	4840	4361	1842	472	2072	392	8344	1253	3574	
+
+W 32   4355	*	2651	*	2264	5986	6767	6836	5900	4639	6721	3628	5054	*	4414	4987	4946	5077	2510	4144	32
+       148	3998	4841	2303	327	371	2141	8564	1548	3410	
+
+R 33   4119	6046	2545	4736	*	3415	6996	6053	4850	4571	6990	3686	6419	4915	3732	2315	3946	4799	*	5822	33
+       39	6038	6444	0	*	442	1923	8702	1085	1906	
+
+A 34   2716	*	5223	3823	*	3523	4621	6144	3508	7488	*	4704	1865	4600	4114	4483	5124	*	*	5063	34
+       51	5316	6699	2810	222	0	*	8764	1238	1349	
+
+N 35   4021	*	2236	2414	*	3637	*	*	3642	7362	7090	3668	6539	4574	4357	2957	5251	7517	7208	5854	35
+       52	4818	*	1531	613	*	0	8697	1431	1021	
+
+N 36   3536	5248	4693	7371	*	6296	5092	*	6918	6507	7110	744	5882	4257	6241	4899	5774	5742	*	5372	36
+       0	*	*	*	*	*	0	8697	0	1021	
+
+V 37   2948	6243	*	7608	5950	*	6259	3251	*	4991	6319	7062	5780	6127	*	4172	3760	1078	7054	5425	37
+       26	5819	*	1312	744	0	*	8686	1177	1021	
+
+N 38   5453	6901	4444	3832	3787	5790	5785	5685	3697	5780	*	4620	7427	4464	3460	2616	2635	4595	4824	4446	38
+       17	7427	7388	1585	585	*	*	8727	1000	0	
+
+F 39   4538	*	7609	5106	3451	7431	6954	2526	6279	3721	6169	6785	7074	5385	*	6955	4886	1226	*	4992	39
+       49	6202	5650	725	1341	0	*	8710	1100	1000	
+
+T 40   4563	6966	3009	2645	*	4110	6283	5862	3501	5586	*	4514	6780	4930	4788	2362	3441	4220	7273	*	40
+       28	5719	*	0	*	704	1373	8688	1194	1208	
+
+N 41   4440	*	1703	4096	*	2260	7387	*	4106	7080	*	2675	4669	4782	7283	4681	5960	7118	*	7138	41
+       1659	4697	633	1658	550	*	0	8706	1460	1025	
+
+D 42   4836	*	1566	3156	*	3943	4799	*	6345	5576	*	3231	4338	3327	*	3225	5781	*	*	*	42
+       86	4104	*	1643	557	18	6361	7819	1218	6879	
+
+G 43   *	*	5086	6554	*	227	*	*	7279	*	*	4517	*	*	6995	6446	5532	6826	*	7525	43
+       143	3774	5568	748	1305	*	0	8695	1940	1025	
+
+K 44   3348	6408	4859	4579	5541	5759	4797	4637	3576	4386	4703	2465	*	4754	4051	4700	3915	3711	*	3882	44
+       77	4260	*	1311	744	0	*	8702	1745	1410	
+
+L 45   3845	*	*	*	*	*	*	5216	*	437	4562	7438	*	*	*	5075	*	3782	*	6122	45
+       20	7325	6995	1585	585	*	*	8698	1008	0	
+
+K 46   5258	7434	5178	4794	*	7550	3651	4214	3160	5718	7435	4710	*	4396	2742	4062	3841	2115	6443	5524	46
+       0	*	*	*	*	0	*	8675	0	1032	
+
+L 47   *	6082	*	*	5179	*	*	1517	*	1012	3762	*	*	*	*	7265	*	4955	*	*	47
+       0	*	*	*	*	*	*	8698	0	0	
+
+G 48   5078	*	7125	3409	6984	5625	5194	4298	2767	5291	7674	4608	*	4089	3245	3045	2454	4190	6126	7088	48
+       30	6139	7309	0	*	*	*	8698	1107	0	
+
+L 49   1722	7519	*	*	6473	4494	*	2987	*	2708	4839	5680	4604	7155	*	6326	3298	3108	7449	5779	49
+       26	5829	*	1452	656	*	0	8692	1178	1006	
+
+T 50   5007	6050	3439	4529	5169	5197	5439	4227	3258	7162	*	4186	5677	4095	2407	3978	3250	4500	5525	5699	50
+       93	4003	*	1704	529	*	0	8692	1836	1006	
+
+S 51   3873	*	5195	4058	5583	5041	5812	7147	2331	5796	7144	3697	4174	4148	2838	3740	5089	4466	6423	4196	51
+       165	3399	6245	1739	514	0	*	8693	2291	1109	
+
+S 52   4200	*	2825	2603	6148	4336	5693	6983	3948	5632	6520	3263	3504	4068	5014	3639	3867	7103	*	6140	52
+       366	2411	4802	2883	210	*	0	8708	3335	1117	
+
+A 53   3476	7177	3641	4715	*	3109	6379	6958	5688	6340	6943	3404	3282	4488	5565	2207	3009	7532	*	*	53
+       1097	1109	3856	2789	226	2158	366	8643	5699	1703	
+
+Y 54   3892	*	3701	4734	*	1072	4900	*	5456	*	*	3706	7586	4854	*	3653	4637	5516	*	5154	54
+       679	1569	4706	2622	256	2083	388	8566	4630	2449	
+
+N 55   4766	*	5175	4172	4500	2626	4549	5558	2944	5785	*	4891	4355	5821	3210	4802	3766	4400	6759	3513	55
+       39	6097	6386	1369	706	1487	637	8588	1291	2543	
+
+K 56   4437	*	3535	4780	6829	4584	5247	5673	3442	5043	7429	3190	2687	4233	4017	4176	3453	4885	5114	5839	56
+       39	6565	5985	503	1764	791	1244	8638	1107	2139	
+
+F 57   7506	*	7146	*	3076	4786	4845	4053	6150	4522	5612	5717	5380	*	5889	*	5711	3435	2645	1607	57
+       17	7440	7459	2585	263	970	1030	8640	1007	1641	
+
+D 58   3791	7153	3661	4907	*	6132	5826	4654	5300	4396	5669	5568	*	5521	4064	2871	1799	4172	7290	4167	58
+       53	5246	6655	597	1562	1309	746	8680	1269	1351	
+
+C 59   3469	3637	*	*	6164	2425	6205	6861	6802	*	*	5523	*	7260	*	1259	2996	5235	*	*	59
+       22	6062	*	618	1522	0	*	8705	1140	1321	
+
+A 60   1678	6350	5472	*	*	1091	*	7766	5406	*	*	*	5393	*	*	3482	5387	5789	*	*	60
+       0	*	*	*	*	*	*	8715	0	0	
+
+E 61   3260	5731	7024	2629	5095	3521	6290	4961	4863	4651	4463	5570	*	6618	2319	4016	5069	5000	5058	4566	61
+       0	*	*	*	*	*	*	8739	0	0	
+
+Y 62   6397	7034	7542	7442	4095	*	*	1621	*	1963	5482	7518	*	*	*	*	*	1856	*	5314	62
+       35	5734	7682	2910	206	*	*	8739	1198	0	
+
+R 63   3940	*	4369	3697	5205	5031	4175	4645	4878	6233	5831	4507	*	3234	3661	2876	3187	3724	*	4628	63
+       46	5008	*	3938	97	*	0	8741	1357	1000	
+
+S 64   5576	*	*	*	7102	5141	7097	*	*	4709	*	5864	5657	6788	6932	1124	1421	*	7343	7581	64
+       21	7539	6815	2322	322	0	*	8741	1000	1000	
+
+T 65   4716	*	6331	4132	7745	5065	6077	6316	2095	4137	7775	3633	5812	3637	2840	4612	3738	3914	6635	5361	65
+       133	3617	7246	1750	509	0	*	8718	2113	1021	
+
+N 66   3328	*	3930	3473	3646	3014	5066	6242	4058	7308	7739	3161	*	3912	3353	3919	4288	7258	7234	5618	66
+       258	2610	*	1241	793	0	*	8733	3183	1004	
+
+I 67   3129	6399	4689	5073	5341	5362	6465	5550	2713	4962	5882	4430	5335	4650	3398	3138	2845	7281	7034	4336	67
+       295	2489	7186	1099	907	0	*	8738	3382	1000	
+
+Y 68   6271	*	7547	7084	1293	5622	6246	3343	6008	3019	5007	6300	7773	4587	6213	7321	5872	4256	5256	3475	68
+       248	2771	6454	1382	698	0	*	8728	3018	1014	
+
+G 69   5342	*	5350	4693	6314	2983	6443	7170	2655	3376	6145	5101	5324	3121	3164	4199	3102	5529	7192	7535	69
+       41	5170	*	2163	365	*	0	8741	1329	1129	
+
+Y 70   5750	6331	*	5235	3386	5002	4008	*	5492	7163	*	4961	4414	6060	7249	5230	5046	5397	6533	910	70
+       36	5751	7401	1839	473	*	0	8748	1250	1129	
+
+G 71   5099	6060	7252	*	7179	209	*	7532	*	*	7259	*	5196	*	*	6261	6207	7508	*	7427	71
+       118	3669	*	511	1745	826	1198	8730	2180	1362	
+
+L 72   7232	7109	*	*	5272	7109	7880	*	2962	5271	4818	5263	*	5152	2043	4066	3360	4705	7439	1938	72
+       98	4044	7641	910	1095	1077	927	8756	1807	1108	
+
+Y 73   5680	*	*	*	2288	*	*	2483	*	3858	4465	*	*	7326	*	*	5302	2722	3782	2141	73
+       0	*	*	*	*	1037	964	8765	0	1113	
+
+E 74   5027	*	5924	584	*	7311	*	*	6259	7668	*	*	7428	5436	4075	4124	3587	5258	*	7216	74
+       7	*	7753	*	*	*	0	8763	0	1013	
+
+V 75   1355	4790	*	7128	4190	5402	*	2906	*	7427	4802	*	*	*	*	4290	3803	2639	5107	*	75
+       8	*	7427	*	*	1070	933	8752	0	1129	
+
+S 76   5801	7361	7564	4161	*	7784	*	5275	3625	6207	5847	7550	*	6398	757	3772	4462	5060	7048	7091	76
+       10	7120	*	1000	1000	917	1089	8750	1017	1126	
+
+M 77   1845	6950	*	*	3358	*	*	2412	*	3038	2851	*	*	*	*	6575	5512	2884	*	*	77
+       18	6309	*	988	1012	*	0	8762	1104	1011	
+
+K 78   6377	*	7388	6099	*	*	6120	5500	1080	5527	7349	6520	*	3769	1956	4339	5452	7657	6528	*	78
+       43	5558	6906	299	2416	*	0	8762	1316	1011	
+
+P 79   2705	5255	7127	*	3211	4375	7584	3686	6914	2209	3458	*	5111	*	7261	4451	4490	3047	6389	*	79
+       89	4228	7342	2328	320	*	0	8732	1703	1134	
+
+A 80   2842	7288	4328	5124	*	5019	5883	5922	6330	*	5766	4851	1589	4855	5146	2890	3626	5469	*	6350	80
+       120	3886	6376	2330	320	564	1628	8728	1904	1224	
+
+K 81   3871	5786	3842	4163	7092	3447	5878	7597	3518	4917	6489	2997	3184	3771	3606	3909	4245	5708	*	7351	81
+       448	2017	5670	882	1128	573	1608	8751	4090	1201	
+
+N 82   3154	7464	3390	5478	*	1952	5062	4658	4557	4642	7396	6201	5853	4510	5337	3589	3487	4085	*	5876	82
+       175	5526	3432	1850	469	2242	343	8729	1314	1315	
+
+T 83   3101	6592	2855	3672	7162	5296	7712	5591	3811	4888	*	4759	2831	4499	3618	3250	5370	4763	*	5370	83
+       49	6221	5661	0	*	81	4190	8620	1118	2530	
+
+G 84   5487	*	7119	5788	7471	627	5758	*	*	5217	*	4039	5628	7312	6365	4075	6340	5757	4302	6218	84
+       10	7118	*	1585	585	378	2118	8753	1008	1261	
+
+I 85   3572	6340	6165	7628	4055	6428	7421	3149	*	2771	3725	4952	*	*	7041	4015	3121	2277	6306	4776	85
+       0	*	*	*	*	*	0	8769	0	1000	
+
+V 86   5032	5117	5899	7118	3739	6309	4870	4306	6383	4355	6340	4372	*	5309	7316	4053	4600	2589	1802	4759	86
+       16	7754	7243	1585	585	0	*	8769	1024	1000	
+
+S 87   3511	5308	7272	7386	5235	4658	4955	*	*	4810	6330	4766	1476	5642	*	2488	3212	6392	6921	7528	87
+       11	*	7067	*	*	0	*	8767	0	1001	
+
+S 88   869	6185	*	6434	7707	2716	6869	*	6147	7344	*	5816	7137	6407	*	3107	3807	6409	7560	*	88
+       0	*	*	*	*	0	*	8760	0	1025	
+
+F 89   6418	*	*	*	987	*	6303	2768	*	2905	4175	*	7361	*	*	*	7116	3759	4523	7697	89
+       18	6327	*	2316	324	*	*	8769	1141	0	
+
+F 90   5621	*	*	*	2530	7228	*	5863	*	5311	6104	*	*	6082	7240	*	7337	5036	626	4766	90
+       0	*	*	*	*	*	*	8769	0	0	
+
+T 91   4101	7361	*	*	4204	7123	6182	4697	*	1360	2601	6529	6009	7282	*	4536	2731	5627	5594	*	91
+       21	7050	7116	2807	222	*	*	8769	1013	0	
+
+Y 92   5780	7550	7238	7138	4836	6406	5845	3618	5190	2188	3601	5423	*	4017	5046	4716	4487	4656	4254	2337	92
+       128	7760	3641	1000	1000	*	0	8760	1000	1025	
+
+T 93   4141	7575	5375	5194	5715	2269	5650	7612	7453	*	7257	3569	2294	5213	5768	2375	5103	6352	5535	4888	93
+       207	5753	3118	1634	561	*	0	8685	1179	2302	
+
+G 94   3459	*	2490	3377	6725	2770	5243	6982	4443	6579	5960	3144	4788	4132	5614	4270	3674	*	6744	7433	94
+       506	4536	1984	1389	694	1868	462	8550	1469	3622	
+
+P 95   4620	6673	3347	2926	6001	3559	5282	7142	7042	4748	6366	3195	3034	4405	4083	3264	4112	7095	*	5458	95
+       298	4116	2956	2181	359	2436	295	8359	1523	5156	
+
+A 96   4478	*	3602	4539	5509	4534	6741	3892	5229	3955	5045	2846	4840	5138	4948	3153	3987	4176	7098	3416	96
+       188	3344	5410	1617	569	2518	277	8279	1904	5337	
+
+H 97   3483	*	2403	2950	5649	4511	5149	5633	4449	5884	4828	4805	4686	4202	3471	4098	4910	5274	*	4461	97
+       370	2316	5311	2086	387	983	1017	8319	2909	4893	
+
+G 98   3962	*	3919	3714	6890	2284	5424	*	3371	7320	*	3217	3808	5358	5724	3064	4052	5292	*	5271	98
+       209	2981	6948	1961	428	577	1602	8487	2467	3373	
+
+T 99   4398	*	2474	5301	*	3200	*	5078	5304	5571	*	3260	4187	4943	5681	4031	3957	4257	2682	5841	99
+       86	4105	*	1433	668	461	1871	8711	1729	1986	
+
+Q 100  5284	5254	2897	5728	4731	2841	6561	7190	5728	7202	7297	4290	1787	4682	4646	4043	4620	6357	6406	5428	100
+       238	2719	*	1999	415	860	1155	8762	3019	1216	
+
+W 101  4096	7576	6182	4769	4506	4132	3377	6063	4449	5268	*	3726	7500	4138	4253	3770	4420	5109	2436	3686	101
+       504	1763	*	1154	861	665	1437	8768	4689	1047	
+
+D 102  3966	7678	3342	5299	5796	1837	4674	5075	7463	4614	6113	3857	4061	4551	4778	4411	4099	4471	*	5582	102
+       0	*	*	*	*	529	1704	8760	0	1075	
+
+E 103  7033	7338	6151	171	*	7305	6987	*	*	7226	*	5203	7238	5749	*	6528	*	*	*	*	103
+       0	*	*	*	*	*	0	8770	0	1000	
+
+I 104  *	*	*	6313	4416	*	*	733	*	3124	4657	6347	*	*	*	6311	5420	3332	5799	5714	104
+       0	*	*	*	*	*	0	8770	0	1000	
+
+D 105  5204	5890	240	*	6217	7733	*	6290	7408	*	7505	6922	*	7121	5627	5983	*	*	*	6017	105
+       18	6335	*	0	*	*	0	8770	1099	1000	
+
+I 106  5926	*	*	*	2907	*	5900	1083	7505	3445	5477	7335	*	7266	6909	7714	*	2430	5367	7344	106
+       1613	571	*	304	2396	0	*	8770	7305	1000	
+
+E 107  6342	*	5480	268	*	6029	*	*	5688	5678	6054	*	*	4937	6853	7192	6695	*	*	6990	107
+       112	4000	6377	1495	632	*	*	8769	1906	0	
+
+F 108  4190	5503	7425	5468	3082	3907	3835	3422	7170	5629	5133	3743	*	5875	*	3834	3971	3601	3631	3290	108
+       40	5190	*	1667	545	686	1403	8763	1494	1138	
+
+L 109  4994	7316	5110	6292	4336	4536	5704	3963	4683	2745	4951	5798	4527	4950	3307	3703	4928	3165	6350	3379	109
+       74	4878	5992	1293	756	1224	806	8771	1395	1112	
+
+G 110  4098	7551	5247	7296	7497	977	5953	6625	5234	7253	6158	3818	4859	6288	5496	3336	4286	6323	*	6230	110
+       140	4493	4375	766	1280	1765	503	8754	1576	1276	
+
+K 111  4115	5479	3482	5572	5683	3416	4835	6110	3581	6028	6137	2274	4930	4371	3585	3837	5117	5886	5567	5293	111
+       156	4063	4561	1322	737	1872	460	8718	1757	1925	
+
+D 112  4002	*	1933	3013	6352	4332	6136	5221	5776	7273	7564	3173	4819	5140	3786	4540	4122	5339	5909	5062	112
+       121	4227	5209	1419	676	850	1168	8694	1655	2364	
+
+T 113  3771	*	4569	4735	4532	3538	*	5367	4625	5268	7733	4292	1949	5219	4579	4317	2903	4298	6801	*	113
+       84	4598	6043	1710	526	1995	417	8693	1594	1953	
+
+T 114  3882	7265	4208	4347	*	2893	6030	7471	3593	6309	5782	2875	4727	4113	3801	3963	3258	5591	5106	5001	114
+       554	1777	5197	2088	387	1505	626	8647	4384	1888	
+
+K 115  4730	*	4182	3653	6320	5210	5622	4215	3262	4623	7258	3920	4851	3335	3304	3536	3506	4019	6737	5939	115
+       257	2765	5931	1352	717	274	2531	8678	2944	1933	
+
+V 116  4066	*	5427	6467	4227	7105	6954	3070	*	2586	3850	5770	5378	7291	7309	4235	5172	2048	4535	4029	116
+       199	3473	4682	1592	582	1381	699	8744	2200	1346	
+
+Q 117  4773	*	4605	4768	7132	3927	2383	5188	5833	4846	7253	2959	6268	2496	5644	4370	4907	6387	4482	4120	117
+       131	3989	5384	1714	525	886	1124	8686	1850	1773	
+
+F 118  4325	6029	7404	*	3599	3452	5930	4396	*	3884	4774	4972	6279	6109	*	2334	2168	4256	7154	4399	118
+       189	3303	5534	1353	717	3146	173	8692	2321	1661	
+
+N 119  3528	6204	6142	6039	5601	3752	3585	5633	*	6289	6756	1610	*	7092	6274	3540	2416	6509	*	5813	119
+       99	3921	*	2164	364	855	1161	8692	1855	1890	
+
+Y 120  5579	6514	6539	5767	3519	6843	4273	2635	7613	2914	6997	5733	*	7955	6550	4969	3847	2536	4743	2836	120
+       75	4806	6054	1816	482	1174	845	8727	1443	1361	
+
+Y 121  *	7370	5878	6875	2583	*	1563	7685	5865	6109	6381	6110	7097	7060	6325	*	5376	7109	3064	2172	121
+       67	4838	6609	1607	574	1454	655	8712	1402	1382	
+
+T 122  3710	6471	4344	5631	4668	3395	4974	5052	6280	5137	5127	4831	3845	5791	4025	4055	3205	4031	3765	3490	122
+       291	2888	4393	1806	486	*	0	8712	2777	1393	
+
+N 123  3446	*	3277	5359	5831	3086	5258	5862	4354	5078	*	2411	3298	3590	4752	4917	4644	7159	5531	6390	123
+       354	2304	6068	1919	443	1272	771	8624	3467	2067	
+
+G 124  4277	7243	4765	5078	7474	1221	4866	6923	3891	5388	*	4192	4462	5023	5472	3603	4600	6049	7027	7111	124
+       114	4372	5175	2582	264	1345	722	8675	1592	1895	
+
+V 125  3420	7699	4429	3970	5622	4826	4690	4917	3483	3895	*	4324	3323	3169	6375	3837	4363	3825	7062	4731	125
+       198	3170	5849	2098	384	*	0	8645	2444	1901	
+
+G 126  3542	5044	4419	4127	5694	1849	6245	6230	3759	5293	*	5571	3406	5286	5497	4298	3232	5437	6208	*	126
+       259	2745	6026	1834	475	1878	458	8641	2887	2133	
+
+G 127  3641	7618	3169	4479	*	2144	5380	6481	3846	6676	*	2389	5420	4819	5761	4047	5226	5028	*	4968	127
+       283	2544	7282	1855	467	1239	795	8620	3259	2008	
+
+H 128  3937	5571	3545	4448	*	6439	3413	*	4176	5216	6337	2412	6166	6439	3300	3138	3900	4351	5574	5901	128
+       169	3344	6385	1985	420	517	1732	8690	2338	1647	
+
+E 129  5307	*	4346	2399	4879	3111	5986	6159	4894	7202	*	4540	3302	3701	4582	3504	3231	5026	5860	6568	129
+       146	4170	4613	2176	361	*	0	8738	1759	1323	
+
+K 130  4392	5788	4514	4906	4992	4833	5050	4982	2949	5834	7078	5071	5980	2612	4316	3457	3256	4522	7340	3847	130
+       351	2441	4980	1857	466	1411	681	8678	3292	1915	
+
+V 131  4416	7270	5716	4494	5535	3631	4075	4482	3608	4813	7306	4379	*	3625	4318	3281	3481	3664	4674	3983	131
+       58	5355	6049	2108	381	1045	957	8659	1279	1983	
+
+I 132  3680	7485	7007	5701	3452	5116	3392	3102	5032	4434	4568	5075	6240	4698	7329	6451	4270	3304	5155	2660	132
+       109	3934	7101	1135	876	2782	227	8673	1835	1692	
+
+S 133  4196	6593	2685	4793	5538	4812	5474	6323	3939	7633	5811	3632	3677	5501	3712	3668	2986	4924	*	3870	133
+       76	5132	5472	2198	355	971	1029	8688	1439	1671	
+
+L 134  4008	6591	6019	4320	5068	6233	5957	3821	6068	1777	4669	5522	4261	6914	5566	3734	3316	3540	*	5558	134
+       258	3296	4016	1729	518	1854	467	8696	2401	1596	
+
+G 135  4127	7291	3574	4161	*	1707	*	7199	5639	*	*	3806	2691	5898	6636	3846	4024	4919	4679	7137	135
+       240	4151	3366	1819	481	1333	730	8662	1654	2331	
+
+F 136  4991	5954	4045	4673	2673	3311	*	4150	4969	6094	5978	3868	4151	5351	5517	4457	4085	3230	5549	3778	136
+       177	3444	5406	1979	422	1405	684	8599	2129	2938	
+
+D 137  4272	*	1495	4918	*	4320	7278	6066	7390	4558	*	3004	4054	5549	4735	3546	4239	4773	*	5530	137
+       263	3167	4180	778	1263	482	1815	8612	2393	2488	
+
+A 138  3286	6199	4184	7293	4060	5983	7078	4471	5922	2919	4817	4626	2733	5778	6340	4021	4210	4145	3424	5425	138
+       99	4956	4880	620	1517	139	3446	8694	1456	2109	
+
+S 139  3115	7508	3840	5749	4275	3937	*	4717	5197	4352	5507	4356	5293	4294	4764	2445	3227	5402	5116	4947	139
+       75	5552	5077	3485	135	302	2406	8696	1244	1513	
+
+K 140  3272	6504	2563	3909	7181	3429	*	*	4087	5755	*	3850	5584	4805	6476	2685	2539	*	*	7013	140
+       0	*	*	*	*	297	2427	8723	0	1521	
+
+G 141  3900	*	2234	2572	*	2599	*	*	4461	7166	*	3774	6913	3815	4157	3840	4292	*	*	7505	141
+       0	*	*	*	*	0	*	8747	0	1025	
+
+F 142  5262	*	6018	5419	1341	*	7143	6916	*	5819	6293	*	6542	*	*	*	7132	5727	2085	2171	142
+       31	5573	*	1093	912	*	*	8748	1225	0	
+
+H 143  5161	7045	*	*	6234	*	538	7327	*	6277	*	3948	*	4891	4674	6244	5437	4704	*	5011	143
+       10	7125	*	0	*	*	*	8748	1015	0	
+
+T 144  6412	*	3932	4816	*	*	*	3191	5262	4731	*	4213	*	*	3655	5795	1359	2585	7318	*	144
+       0	*	*	*	*	*	*	8748	0	0	
+
+Y 145  6110	*	*	*	2919	*	4443	5581	*	5662	6182	*	*	6802	*	*	7135	4685	4439	617	145
+       0	*	*	*	*	*	*	8748	0	0	
+
+A 146  2766	*	6272	4392	6176	1639	*	*	5686	*	*	*	*	6309	2839	3131	3033	5115	5603	*	146
+       0	*	*	*	*	*	*	8748	0	0	
+
+F 147  3941	5866	*	*	2848	7179	*	2406	*	2239	3617	*	*	*	*	*	5180	2072	6700	6069	147
+       0	*	*	*	*	*	*	8748	0	0	
+
+D 148  5618	*	2315	1542	6616	7288	6413	3794	7322	3571	7557	6037	*	5962	5810	5722	5235	4454	4754	4013	148
+       7	7743	*	4170	82	*	*	8748	1000	0	
+
+W 149  7204	*	*	*	6208	*	6948	3946	6151	5175	6603	7148	*	7113	5821	*	*	5416	451	3888	149
+       105	3829	*	657	1451	*	*	8748	1952	0	
+
+Q 150  4981	*	3096	4603	5531	4542	6369	7470	4882	4289	7106	3708	*	3924	4173	3626	1653	5769	*	5605	150
+       57	4690	*	2343	317	0	*	8748	1491	1000	
+
+P 151  3163	*	3844	2992	*	5182	*	*	3928	*	*	4438	1254	5603	6576	3730	6981	6846	*	6457	151
+       43	5086	*	2220	348	*	*	8748	1394	0	
+
+G 152  5478	*	1965	3009	*	2872	*	7554	4119	*	7175	2757	*	4913	5011	3798	3684	7204	*	5494	152
+       16	6506	*	1831	476	*	*	8748	1117	0	
+
+Y 153  3976	*	6574	2741	6277	3542	3596	*	2867	5774	7547	5613	7340	4019	2932	3657	4915	6383	7460	3560	153
+       58	4671	*	1179	841	0	*	8747	1583	1025	
+
+I 154  4842	7045	*	*	6422	*	*	1375	*	2212	4335	*	*	*	*	7175	4836	2121	*	5421	154
+       0	*	*	*	*	*	*	8748	0	0	
+
+K 155  3851	6802	3693	4191	6437	7384	*	3552	3718	5232	*	6846	*	5139	3033	3793	2314	2837	*	6401	155
+       0	*	*	*	*	*	*	8748	0	0	
+
+W 156  7680	*	*	*	1059	5669	*	5712	*	5484	5626	*	7045	*	7130	*	7616	5249	1993	2874	156
+       0	*	*	*	*	*	*	8748	0	0	
+
+Y 157  4961	*	*	6189	2751	4924	7795	6484	5106	3771	7450	*	*	5232	4896	5219	4395	6175	5445	1066	157
+       18	6316	*	2098	384	*	*	8748	1089	0	
+
+V 158  5117	6322	*	7680	3365	*	*	1885	7261	2865	4997	*	*	6379	*	6244	6325	1678	6948	4248	158
+       40	5187	*	2198	355	*	*	8748	1319	0	
+
+D 159  *	*	447	6237	*	5689	*	7271	*	*	*	2330	*	7143	6350	6802	*	*	*	*	159
+       51	4855	*	1625	565	*	*	8748	1419	0	
+
+G 160  *	*	2663	4895	*	649	*	*	*	*	7189	3422	*	6519	5144	5332	*	*	*	7261	160
+       18	6309	*	1000	1000	*	*	8748	1103	0	
+
+V 161  4366	*	5789	2926	7355	5614	4903	3950	2236	6352	7504	4999	*	3489	3258	5388	4139	2881	*	7410	161
+       0	*	*	*	*	*	*	8748	0	0	
+
+L 162  4518	*	6242	2356	5471	*	5838	4649	4306	2184	5839	*	2722	4165	6568	5643	4823	3323	*	7208	162
+       51	4854	*	1764	503	*	*	8748	1406	0	
+
+K 163  5262	7653	*	6094	4098	*	6594	3643	5198	3773	6293	6834	7179	4121	6224	7785	3407	1360	5344	3427	163
+       17	6446	*	481	1819	*	*	8748	1073	0	
+
+H 164  3477	6345	5641	7719	3348	3171	3045	7045	4000	6440	5697	4203	7625	6367	2935	4926	5443	5121	3676	3704	164
+       52	4808	*	1240	794	*	*	8748	1466	0	
+
+T 165  5291	*	4875	3334	7784	*	5004	5900	4077	6006	7268	5098	*	4577	2457	2602	1959	4943	*	*	165
+       172	3267	6889	1708	527	*	*	8742	2353	0	
+
+A 166  3665	*	5551	4635	3990	6294	4995	2959	4728	3250	7574	7162	5707	4365	5444	4126	4056	2343	7246	4126	166
+       957	1077	6551	2287	331	*	0	8697	5916	1032	
+
+T 167  3728	*	4315	5050	*	2369	7168	7616	3970	6284	*	3614	3290	5278	4162	3501	2581	5728	6626	6391	167
+       352	2528	4537	2591	262	1890	454	8720	3252	1217	
+
+A 168  2865	*	3580	3707	6206	3680	6440	5832	3847	5092	7559	3142	4194	4892	4623	3250	3936	4247	*	6316	168
+       128	3710	6909	2052	398	617	1523	8670	1950	1793	
+
+N 169  3453	*	3235	4647	6126	3490	6318	5586	3541	6375	6139	3012	4152	3405	3828	4354	4426	4637	*	4917	169
+       200	2952	*	2376	309	941	1061	8708	2715	1522	
+
+I 170  4066	6792	5024	6435	3350	7679	5805	2250	5559	3616	5610	7266	*	5743	6183	5740	4534	3003	3106	3426	170
+       44	5988	6163	1638	559	506	1756	8722	1147	1207	
+
+P 171  4061	7629	5768	7130	4237	5777	7613	6504	7750	7181	6284	7557	680	6166	6190	4520	4630	5268	5315	7448	171
+       587	1628	6529	1440	664	0	*	8737	4715	1187	
+
+S 172  4825	7040	2371	3888	6615	4301	3395	7378	4168	6186	6953	3432	5007	3871	4697	3381	3413	4785	*	*	172
+       50	5099	7671	1177	842	752	1299	8742	1329	1193	
+
+T 173  3473	*	4116	4299	7841	4062	4127	4482	3444	4571	5727	4469	6157	3159	3931	3595	3713	4930	6504	4543	173
+       9	7303	*	0	*	773	1270	8752	1129	1107	
+
+P 174  3638	*	3893	3423	*	4546	*	*	5103	6864	*	4866	1047	6143	6115	3969	4643	7393	7698	5860	174
+       47	6476	5606	1000	1000	*	0	8755	1061	1000	
+
+G 175  4472	6971	*	5214	2432	4637	4808	7087	*	3021	1714	6922	*	3437	7323	4071	7264	5692	6484	5631	175
+       0	*	*	*	*	2241	343	8739	0	1295	
+
+K 176  4252	*	6081	6408	3392	6930	3212	5180	4462	5279	6368	3581	4611	4114	3539	4260	5026	*	*	2014	176
+       8	*	7507	*	*	*	0	8737	0	1214	
+
+I 177  4663	*	*	*	3394	*	*	2027	*	1542	4129	*	4899	6992	*	6274	*	2925	5795	5996	177
+       0	*	*	*	*	2225	347	8737	0	1296	
+
+M 178  7190	4931	*	*	5168	7088	3997	1722	6329	2781	3751	5006	*	4817	4714	*	4247	3522	6478	3805	178
+       0	*	*	*	*	0	*	8737	0	1214	
+
+M 179  4069	6091	*	7290	2204	*	*	3029	*	1231	4056	*	*	*	*	5372	7146	4150	7320	*	179
+       17	*	6375	*	*	*	*	8753	0	0	
+
+N 180  5881	*	3423	6402	*	3586	*	*	6768	*	*	1116	*	4228	7078	2409	4011	6244	*	*	180
+       9	7280	*	1000	1000	*	0	8744	1000	1096	
+
+L 181  6311	6012	*	*	4477	*	4095	3511	*	1621	5304	3960	6915	4435	*	4849	3059	2848	*	5803	181
+       126	5261	4124	1800	488	*	0	8744	1277	1096	
+
+W 182  1976	7348	6023	3612	5443	3865	6125	6456	7199	6332	6333	6479	*	4722	6140	3957	5032	6084	1766	5246	182
+       8	*	7544	*	*	2549	270	8661	0	1896	
+
+N 183  3236	7277	4462	4682	6143	*	5798	3645	5683	3147	4456	4199	5301	7225	7054	3552	4674	1822	*	6410	183
+       80	5958	4726	2008	412	2268	336	8706	1203	1815	
+
+G 184  4166	*	4323	5131	4812	1437	5809	4801	5198	5000	7231	4098	4163	5301	5483	4082	4315	4332	*	5572	184
+       253	5293	2888	1835	475	4014	92	8659	1237	2155	
+
+T 185  5971	6730	3725	4213	*	1300	6449	6848	4954	6467	7086	4094	4646	4947	4935	3033	4291	5353	*	7260	185
+       611	4843	1688	2188	358	3689	116	8571	1266	3576	
+
+G 186  4567	*	2774	5673	6224	2177	*	5228	5580	*	*	2708	3833	*	*	2657	4149	4460	6322	6183	186
+       716	3028	1897	1209	818	4610	60	8183	1876	5524	
+
+V 187  4915	*	5873	6162	2754	5316	*	5946	3875	4331	5086	4481	2939	4385	4323	4517	3066	3205	4700	5970	187
+       399	3193	2917	1875	459	2151	368	7793	1519	6359	
+
+D 188  4231	*	3844	5163	4316	3450	6211	3763	6390	4054	*	3163	2628	6290	6303	*	3151	3410	*	4550	188
+       212	4238	3578	1289	760	825	1199	7910	1254	5904	
+
+D 189  3973	*	2555	3697	4904	3090	7185	*	3794	5822	4670	3068	3567	5503	7022	3238	4981	7068	6680	6149	189
+       11	7101	*	520	1725	1380	700	8235	1051	3994	
+
+W 190  6057	5948	*	5544	3689	5574	5149	6617	*	3931	5130	4777	*	7057	6135	7135	*	6072	796	4050	190
+       44	7292	5415	1585	585	1483	639	8275	1000	2956	
+
+L 191  1994	*	4432	5281	4390	3672	5562	4355	7232	4258	6329	4619	2962	4356	5854	4490	3730	4725	6521	7485	191
+       33	7319	5947	1585	585	1339	726	8385	1000	2506	
+
+G 192  4339	7019	4962	5058	*	716	*	5268	4247	5591	*	5155	5570	6824	5174	4458	4901	6971	*	*	192
+       59	4866	7516	1700	531	1438	665	8461	1327	2064	
+
+S 193  3546	7093	4074	4108	6884	2475	7594	5328	5192	4247	6058	3428	3016	4116	5342	4368	3835	5699	6164	5286	193
+       206	3501	4483	1003	997	3178	169	8507	1985	1722	
+
+Y 194  4844	6259	5365	4568	3838	5298	6648	3300	6869	3763	4432	5486	1663	6591	7026	5564	4961	3827	5739	4276	194
+       113	4437	5109	1953	431	2458	290	8449	1589	2149	
+
+N 195  3120	6169	2244	4423	*	4472	4621	6035	6380	5870	6817	2726	3722	5564	7280	3627	3178	5134	*	*	195
+       678	1563	4773	1594	581	335	2269	8466	4246	2269	
+
+G 196  2979	*	2608	3859	5362	3312	7110	6561	5522	6205	5659	4251	3271	4589	5724	2917	4392	5484	7382	5855	196
+       179	3372	5618	2002	414	128	3560	8529	2072	1736	
+
+A 197  3213	6812	3679	3825	6168	3733	*	6183	4157	6162	6936	2917	3474	4906	3839	3414	3390	6642	*	5127	197
+       123	3831	6488	1785	494	752	1299	8527	1805	1487	
+
+N 198  2920	*	4037	3833	4789	2882	*	5016	4969	3440	*	4426	*	3493	5196	4063	2719	6117	*	5555	198
+       555	1647	*	466	1857	1525	616	8521	4315	1273	
+
+P 199  4042	*	3696	3447	*	3951	7504	5457	4224	6497	*	5115	1450	4863	4836	3756	4292	6266	*	6550	199
+       52	5153	7098	704	1373	1314	743	8553	1282	1147	
+
+L 200  2162	*	5163	5039	4347	3721	6185	6149	4616	4886	6134	3802	4870	5231	4582	3750	4372	3160	6385	4162	200
+       0	*	*	*	*	1355	716	8548	0	1143	
+
+Y 201  3715	*	3749	2988	5458	*	7348	5415	3801	*	6247	7350	6266	4505	4195	3065	2398	4596	6022	3288	201
+       0	*	*	*	*	*	0	8557	0	1051	
+
+A 202  3738	*	*	5389	2920	6023	6099	5420	7117	2757	1465	7112	*	7032	*	5633	4837	3904	*	4021	202
+       0	*	*	*	*	0	*	8557	0	1051	
+
+E 203  *	*	3839	2463	5429	6985	5824	5322	3895	3256	7301	5369	7118	3480	4134	4840	4156	3611	5616	2994	203
+       0	*	*	*	*	*	*	8578	0	0	
+
+Y 204  6155	*	*	*	4502	*	*	1695	*	5044	*	*	*	*	*	6617	6793	917	*	4215	204
+       0	*	*	*	*	*	*	8578	0	0	
+
+D 205  5501	*	529	4177	*	5211	5150	*	3964	*	*	5347	*	5667	4475	7311	6061	*	*	*	205
+       0	*	*	*	*	*	*	8570	0	0	
+
+W 206  7049	6597	5149	7121	5448	*	5682	*	6631	*	*	5486	*	6967	5035	3988	7037	*	1467	1318	206
+       0	*	*	*	*	*	*	8567	0	0	
+
+V 207  6845	5803	*	*	3315	*	*	1976	*	3862	*	*	*	*	*	*	6593	911	*	6978	207
+       0	*	*	*	*	*	*	8553	0	0	
+
+K 208  4343	*	*	4166	*	6040	6232	6564	2790	5340	*	5598	*	5751	848	4131	5519	7380	*	7157	208
+       0	*	*	*	*	*	*	8525	0	0	
+
+Y 209  3628	4916	*	6888	3465	5124	4767	3242	*	4576	6060	*	*	6128	*	*	4701	1204	6349	4058	209
+       0	*	*	*	*	*	*	8482	0	0	
+
+T 210  6815	*	6869	5415	4080	*	*	6332	*	6483	*	*	*	*	5832	4882	2985	5029	2635	980	210
+       0	*	*	*	*	*	*	8262	0	0	
+
+S 211  3626	*	5620	4172	*	*	6495	5433	2947	*	*	5557	3001	1851	3264	3287	4335	*	*	*	211
+       0	*	*	*	*	*	*	8033	0	0	
+
+N 212  *	*	*	*	3433	*	*	*	*	1243	3596	4240	2097	5143	5033	5177	*	*	*	5110	212
+       0	*	*	0	*	*	*	6466	0	0	
+
+//
+�HHsearch 1.5
+NAME  7ec67cbbd85f59718803563580f1731b
+FAM   
+FILE  7ec67cbbd85f59718803563580f1731b
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:07:18 2013
+LENG  190 match states, 190 columns in multiple alignment
+FILT  120 out of 1646 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  10.3
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCHHHHHHHHHHHHHHCCCCCCCCEEEEECCCCCCHHHHHHHHHCCCCCCCCCCCCCEEEEEEECCEEEEEEECCCCHHHHHHHHHHHCCCCEEEEEEEC
+CCHHHHHHHHHHHHHHHHHHCCCCCCEEEEEECCCCCCCCCHHHHHHHHHHHHHHHHHHHHCCCCCEEEEEECCCCCCHHHHHHHHHHHC
+>ss_conf PSIPRED confidence values
+9413099999999974787667618999999999899999999668876546744630799998999999985698244556677662257689999857
+755768899999999997650379978999987105663499999999731222102233114685299996788979999999999749
+>Consensus
+xxxxxxxxxxxxxxxxxxxxxxxxxixlxGxxxxGKStlixxlxxxxxxxxxxxxxxxxxxxxxxxxxxxxxDxxgxxxxxxxxxxxxxxxdxxixvxdx
+xxxxxxxxxxxxxxxxxxxxxxxxxxxiivxnKxDxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxSaxxxxxixxlxxxlxxxx
+>7ec67cbbd85f59718803563580f1731b
+MAGWDIFGWFRDVLASLGLWNKHGKLLFLGLDNAGKTTLLHMLKNDRLATLQPTWHPTSEELAIGNIKFTTFDLGGHIQARRLWKDYFPEVNGIVFLVDA
+ADPERFDEARVELDALFNIAELKDVPFVILGNKIDAPNAVSEAELRSALGLLNTTGSQRIEGQRPVEVFMCSVVMRNGYLEAFQWLSQYI
+>gi|328699670|ref|XP_001952428.2| PREDICTED: mitochondrial Rho GTPase-like [Acyrthosiphon pisum]
+---------------------------VIGSKGSGKSTICKRHVKTAK------IDNCFEdaeDI----TSVNRVQVYGQDKYLVLkeiktisenhLTKK
+DIKCDVVCLVFDSSQSCSFEYSAHVYLKYYQS---RNIPVLIVANDKGRPLmkqdyILQPDQFCKQNRLS-------------SPYIFINSNEG---KKL
+YSNLA---
+>gi|290971748|ref|XP_002668642.1| rab family small GTPase [Naegleria gruberi]gi|284082126|gb|EFC35898.1| rab family small GTPase [Naegleria gruberi]
+------------------LNtnKANFKLCITGPGGSGIHSFIHRYLNDVFYdQYDYSIDDIfYKTILFNErkVELEIWETGFRStDYYLFLESKLKGARG
+YIVLLPIHADVDkYGVFERIIKSIVYMHDDESVPLLIGITQIDKLETNSslnldqvKQKVTDIMNVY---------SCLDFEIVETSSKSNINIHTVIE-
+-----
+>gi|6690690|gb|AAF24258.1| UreG [Rhodobacter sphaeroides]
+---------------------DPCAWGSAARWAPARRPSTEKLCAALAHRCSMAVITNDIytredaealmraqvlpaerirgvetgaapytairedasin
+laavadlRRTFPDLDLILIESGGDNLAATFSPEL---ADLTIYVIDTAAGQ-------------DIPRKRGPGLarsdLLVVNKIDLAPhvGVDLARLEA
+DTQAA----------RGQRPYVMARMRAGVGVEAIVAFLEREG
+>gi|260810141|ref|XP_002599862.1| hypothetical protein BRAFLDRAFT_127644 [Branchiostoma floridae]gi|229285145|gb|EEN55874.1| hypothetical protein BRAFLDRAFT_127644 [Branchiostoma floridae]
+-------------------EKTNISIVVIGHVNSGKSNTTGHLiykcggidkrniekyereaaearfneiqqELSAcIKKVGYDPGTVAFVPVSAQHGDN
+MVEPSGNMPWYKGWSiernegngSGTTLlealdsilppqrpTDKPLRLPLADVynfrpggmgtmpvGRVetgILKPGmevtfapagltaevepvdikhES
+VPEALPGDTVGInfKNADVSVKELwrgcvagdSKNDppkeAVSFD--AEELSACiKKVGYD----PGTVAFVPVSAQHGDNMVE---------
+>gi|296089292|emb|CBI39064.3| unnamed protein product [Vitis vinifera]
+---------IAKTLRAMPvVDLETPTLCLVGAPNVGKSSLVRVLSTGKPEVcnyPFTTRGILMGHIAFNYRHFQVTDTPGLLNRHDDERNNLekltlavl
+sHLPTAILYVHDLSGECGTSPSDQFFIYKEIRERFSDHLWIDVVSKCDLLQespiifntEDVSADNPELARYQ---------KMGPEGAIHVSVKNEAAL
+NQLKGRVHELL
+>gi|14595136|dbj|BAB61872.1| Picchu-236-X [synthetic construct]
+------------------LDMAGNfdseersswywgrlsrqeavallqgqrhGVFLVRDSSTSPGDYVLSVSENSRVsHYIINSSGPRpPVPPSPAqppp
+gvspSRLRI----GDQEFDSLPALL-----EFYKIHYLDTTTLIEPVSR---------SRQGSGVILRQEEAEYVRAL----------------------
+----------------------------
+>gi|238852571|ref|ZP_04642981.1| ribosome small subunit-dependent GTPase A [Lactobacillus gasseri 202-4]gi|238834717|gb|EEQ26944.1| ribosome small subunit-dependent GTPase A [Lactobacillus gasseri 202-4]
+-----------------------------------------------------------------------------PRTNEIGRPAVANVSRVLLVISA
+VEPD---FSLELLDRYLTFFAWKNVGVVIYLSKADITpTEKlkAIKCKLDYY------------QKIGYSvFEDAEE----LERQLPTMIQKDQ
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	*	1046	955	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1747	0	0	
+
+A 2    0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2
+       0	*	*	*	*	*	*	2344	0	0	
+
+G 3    2052	*	*	*	*	398	*	*	*	*	*	*	*	*	*	*	*	*	*	*	3
+       0	*	*	*	*	*	*	2951	0	0	
+
+W 4    *	*	*	*	*	*	*	*	*	1788	1254	*	*	*	*	*	2839	*	2724	*	4
+       0	*	*	*	*	*	*	4192	0	0	
+
+D 5    *	*	1829	3329	*	3546	*	*	3578	*	*	3470	*	*	*	1476	*	*	*	*	5
+       0	*	*	*	*	*	*	5339	0	0	
+
+I 6    *	*	*	*	2497	*	*	2435	*	1324	4200	*	*	4094	*	*	*	3984	*	4009	6
+       0	*	*	*	*	*	*	6487	0	0	
+
+F 7    3159	*	3289	*	2060	*	*	3178	*	2446	*	*	*	*	*	3295	*	3272	*	4427	7
+       0	*	*	*	*	*	*	6963	0	0	
+
+G 8    *	*	2374	4399	*	2746	*	*	3421	*	*	3629	*	4377	3192	2109	4410	*	*	*	8
+       0	*	*	*	*	*	*	7112	0	0	
+
+W 9    *	4454	4075	*	2869	*	*	4252	4369	2768	*	*	*	*	*	2106	4318	3451	4430	3469	9
+       0	*	*	*	*	*	*	7112	0	0	
+
+F 10   2475	*	*	*	2292	*	*	3627	*	2547	3773	*	*	*	4590	4451	3524	*	4625	3716	10
+       60	*	4625	*	*	*	*	7428	0	0	
+
+R 11   3558	*	*	3954	4833	*	4900	*	3536	3686	4624	4531	*	2959	3286	2779	*	4631	4572	3736	11
+       0	*	*	*	*	*	0	7605	0	1027	
+
+D 12   *	*	5060	3720	*	5051	5039	4929	2517	3107	*	4846	*	3949	2303	3831	3815	3910	*	*	12
+       106	3818	*	2711	239	*	0	8025	1214	1027	
+
+V 13   4845	*	4859	4879	2817	*	4983	3415	*	2116	4978	4812	*	*	4083	4864	4129	2734	5027	*	13
+       0	*	*	*	*	*	0	8321	0	1027	
+
+L 14   3616	5022	*	*	2991	*	*	5132	3940	1797	3435	*	*	*	4612	*	3685	3232	*	3989	14
+       0	*	*	*	*	0	*	8509	0	1027	
+
+A 15   3262	*	2560	4124	*	4675	5023	*	2903	5046	*	5107	4910	3073	3557	2763	*	5533	*	*	15
+       92	*	4015	*	*	*	*	8573	0	0	
+
+S 16   4143	5086	*	5027	*	3635	4622	*	3346	5124	*	3411	5489	3472	3987	1580	5002	*	*	*	16
+       0	*	*	*	*	*	0	8433	0	1412	
+
+L 17   4191	3998	*	4010	4805	*	*	3118	5067	1411	5033	*	5071	4920	*	4826	*	2886	*	*	17
+       300	*	2415	*	*	0	*	8463	0	1412	
+
+G 18   5003	*	3378	3295	*	3000	*	4802	5150	*	*	2866	2730	5006	4823	2319	*	*	*	5213	18
+       221	3136	5148	794	1240	1521	618	8477	1713	2188	
+
+L 19   4301	*	*	5307	3844	5298	5012	2813	*	1734	2971	*	*	5311	4384	*	5353	3320	*	5071	19
+       73	4337	*	1416	677	2406	302	8943	1497	1955	
+
+W 20   3305	*	3239	3708	*	4540	*	3091	4504	3428	*	3854	5466	*	4388	2703	3214	*	5772	*	20
+       0	*	*	*	*	427	1966	9011	0	1747	
+
+N 21   5483	*	5853	4422	*	5076	4760	3959	3561	5269	3611	3089	3177	3126	4365	6186	3701	3709	*	4966	21
+       29	5664	*	1000	1000	*	0	9719	1038	1049	
+
+K 22   3599	*	6046	4005	*	6059	4115	4521	2863	*	*	4096	2286	3850	2890	3732	5067	*	*	6211	22
+       0	*	*	*	*	*	0	9974	0	1049	
+
+H 23   6468	5272	4644	3656	4833	3588	4348	5119	2995	5393	6286	4740	3162	4309	3592	3507	3122	*	*	*	23
+       19	6283	*	2322	322	*	0	10116	1027	1049	
+
+G 24   5469	*	6232	6262	3035	3518	*	3577	4278	2790	4738	4158	3683	6219	6235	5268	4672	3385	6562	3437	24
+       28	5682	*	4807	52	0	*	10146	1093	1049	
+
+K 25   4620	5480	4562	5639	*	5070	4275	5367	2232	6571	*	3004	*	4903	2259	4856	3450	4250	*	*	25
+       89	4372	6404	0	*	*	*	10332	1784	0	
+
+L 26   5528	3747	*	*	3593	*	6532	1207	*	2877	6548	*	*	*	*	6137	6669	2439	*	5523	26
+       83	4158	*	333	2278	0	*	10351	1721	1002	
+
+L 27   2928	4237	*	*	4454	2744	*	3024	*	2460	5557	6497	*	6252	*	4326	4985	2489	*	6509	27
+       0	*	*	*	*	*	*	10444	0	0	
+
+F 28   6118	*	*	*	2594	5824	*	2058	*	1710	4701	*	*	*	*	*	*	2352	*	5494	28
+       0	*	*	*	*	*	*	10368	0	0	
+
+L 29   4120	4233	6337	*	6586	6318	*	2207	*	2524	3719	*	6329	5860	6711	4732	3613	2202	*	6405	29
+       0	*	*	*	*	*	*	10561	0	0	
+
+G 30   6252	*	*	*	*	133	*	*	*	*	*	*	*	*	5277	4880	*	6065	*	*	30
+       0	*	*	*	*	*	*	10567	0	0	
+
+L 31   4280	*	2978	4029	5072	5997	3775	*	3627	4569	5144	3960	2406	5113	3975	3953	4758	5296	*	5792	31
+       0	*	*	*	*	*	*	10567	0	0	
+
+D 32   4206	6757	5889	3229	5639	4105	6716	4658	5239	6947	6065	4063	2615	5090	4448	2567	3471	3799	*	7105	32
+       0	*	*	*	*	*	*	10567	0	0	
+
+N 33   3905	6279	3490	5857	*	1287	6618	*	3986	5580	*	2728	7300	4626	4990	3631	*	*	*	*	33
+       0	*	*	*	*	*	*	10567	0	0	
+
+A 34   2465	3286	6279	*	*	*	4868	4727	*	5440	*	5198	*	*	5636	1773	3979	2287	*	*	34
+       24	*	5902	*	*	*	*	10567	0	0	
+
+G 35   5301	*	5372	*	*	148	*	*	*	*	*	*	*	5870	*	5983	*	6068	*	*	35
+       0	*	*	*	*	862	1152	10403	0	1198	
+
+K 36   *	*	*	6337	*	*	*	6014	198	*	*	*	5984	5428	5044	*	6175	*	*	5863	36
+       0	*	*	1000	1000	0	*	10555	1000	1000	
+
+T 37   *	*	6094	6604	*	5992	*	*	5709	*	*	*	*	5168	5448	1091	1311	*	5872	*	37
+       15	*	6590	*	*	*	*	10567	0	0	
+
+T 38   3555	4879	5257	5262	6609	6744	6336	6266	*	4332	*	5212	*	6083	6271	1832	1401	6581	*	6724	38
+       0	*	*	0	*	0	*	10555	1000	1000	
+
+L 39   4542	*	*	*	3013	*	*	3138	*	1017	4969	6424	*	*	*	5230	4260	3854	*	4887	39
+       0	*	*	*	*	*	*	10651	0	0	
+
+L 40   3917	3700	*	*	3534	4673	*	1895	*	2471	5213	*	*	5434	5340	6628	6874	2406	*	*	40
+       17	*	6408	*	*	*	*	10651	0	0	
+
+H 41   3878	6710	4521	4388	6441	5226	5454	6979	2712	4590	7135	2276	5901	3612	2893	4020	5585	*	*	4686	41
+       0	*	*	*	*	0	*	10639	0	1009	
+
+M 42   2999	5432	*	6956	5092	5131	5769	4227	3027	4401	7135	4761	*	3476	2250	3657	4496	4558	5896	5858	42
+       0	*	*	*	*	*	*	10651	0	0	
+
+L 43   6005	7239	*	*	2297	*	5770	2783	*	1529	5587	*	6442	*	5918	6464	5175	3340	5759	4080	43
+       13	6753	*	5285	37	*	*	10651	1030	0	
+
+K 44   4187	3748	5770	5041	3414	6618	5591	4532	4470	2816	5959	4977	6408	6584	4192	3291	3073	3389	5284	*	44
+       184	3060	*	2248	341	*	*	10651	3220	0	
+
+N 45   4037	*	4395	3489	5930	2128	5327	6071	3805	4178	*	4105	6767	3399	4464	4744	3817	*	5271	4348	45
+       191	5146	3387	3209	165	*	*	10526	1443	0	
+
+D 46   4651	6598	3724	3892	*	3114	5005	6738	2801	4919	*	2895	*	3837	3748	3798	4691	4553	*	4566	46
+       44	5679	6613	668	1432	3945	97	10477	1202	2862	
+
+R 47   4377	5503	3286	3355	4915	4610	6507	5067	2805	4034	5060	4362	4576	4249	4460	3362	5335	4532	*	5230	47
+       44	*	5056	0	*	2783	227	10482	1000	3034	
+
+L 48   3985	*	4506	5822	2567	4191	5444	4013	4241	3200	4483	5404	3598	*	4770	4210	4268	4608	*	3826	48
+       189	3268	5700	4334	73	2378	308	10470	2978	3179	
+
+A 49   3790	6734	4624	4328	5701	*	5806	3716	4483	3751	4951	3724	3089	5781	3832	2850	5057	3474	*	5432	49
+       447	1909	*	664	1438	3943	97	10515	4986	3042	
+
+T 50   4428	*	3359	3570	*	4768	4906	3583	5126	4975	5985	3746	3351	3645	4225	3227	4059	4068	*	6683	50
+       149	3348	*	1977	423	3331	151	10514	2623	3072	
+
+L 51   5905	6480	4737	4512	6350	3738	3785	6238	3810	3696	*	4959	4116	5636	4971	4318	3338	3213	*	2551	51
+       74	4604	6810	1003	997	*	0	10525	1743	2870	
+
+Q 52   4342	*	4086	3468	4334	2936	5707	3475	3970	6645	6681	6636	4032	4242	5942	2373	5590	4592	*	4922	52
+       29	6574	6769	1000	1000	*	0	10464	1000	3184	
+
+P 53   3196	6381	4252	4060	6281	6784	4573	3762	5780	5665	*	*	1991	4865	5391	3340	2965	4199	*	*	53
+       194	2990	*	3700	115	223	2802	10461	3021	3362	
+
+T 54   4812	*	4853	4664	5434	4347	6020	4019	4140	4439	6653	4613	5062	4528	5212	3646	1520	4092	*	*	54
+       17	6427	*	1000	1000	*	0	10645	1046	1211	
+
+W 55   5050	7057	5598	4899	4880	4626	5030	2663	5245	2476	4502	4192	3768	*	4634	3878	4138	4158	7183	4684	55
+       23	5971	*	1156	859	948	1054	10645	1290	1211	
+
+H 56   4536	6924	3531	3471	4961	2145	7196	4704	3437	5714	*	4783	5837	4195	4344	3332	4262	5464	*	5290	56
+       116	3695	*	1532	612	0	*	10675	2521	1000	
+
+P 57   4404	4788	5166	3725	3700	4526	7100	3067	5753	4228	5338	4460	3326	4923	5902	5167	3928	3293	*	3658	57
+       0	*	*	*	*	*	*	10689	0	0	
+
+T 58   4378	4482	2947	3947	5678	5694	6882	4916	4103	5298	*	3777	4493	3728	5848	3742	2592	4762	*	4036	58
+       85	4316	7161	2565	267	*	*	10689	1901	0	
+
+S 59   4081	6824	6773	3471	3911	4516	5948	3577	5187	5922	6008	4593	*	4092	3483	3065	3300	3337	6890	4468	59
+       160	3255	*	1034	967	*	0	10680	2978	1000	
+
+E 60   4480	5633	4617	3673	5277	2349	5048	5768	3072	4304	*	4381	5595	4190	5162	4123	3440	4227	*	5548	60
+       93	5113	4893	4973	47	*	0	10680	1531	1000	
+
+E 61   4856	6591	3683	4256	5697	6972	4061	3674	3159	4201	6706	5496	3921	5439	3403	3654	3268	3764	*	5583	61
+       23	*	5989	*	*	*	0	10592	0	1652	
+
+L 62   4615	6622	6641	4745	3575	5155	*	2441	5280	2639	3795	5840	5344	*	5281	6563	5360	2433	6718	4323	62
+       27	6605	6973	3187	168	1854	467	10713	1373	2001	
+
+A 63   4427	6788	4300	2507	6816	5362	5538	4165	3839	4103	*	4843	4879	4380	3813	3721	3286	4285	*	4021	63
+       24	5912	*	671	1428	1925	441	10504	1192	1846	
+
+I 64   4269	5779	*	5581	3187	6288	5225	2704	6683	3407	4870	4107	*	5926	6254	3992	5236	2890	4148	3326	64
+       151	3514	6383	3166	170	2145	370	10563	2609	1798	
+
+G 65   4575	6717	2351	4084	6675	3106	4635	6476	3957	4917	*	3672	3890	3839	4853	3783	5142	6633	*	4130	65
+       104	3850	*	1937	437	644	1474	10520	2381	1810	
+
+N 66   3944	*	2839	3462	5647	2186	4515	*	4233	6837	*	3098	6930	*	4677	3050	4588	5943	6694	7186	66
+       850	1235	5624	2018	409	1093	913	10598	7132	1174	
+
+I 67   4490	4753	5234	3997	3698	5822	4668	3015	5388	3573	6484	6757	6383	7328	3611	3892	4475	2808	*	3508	67
+       45	6003	6019	4524	64	944	1059	10534	1113	1581	
+
+K 68   4465	5178	3621	3818	*	5637	5528	4585	2709	4667	*	3827	3960	3570	3255	5180	4557	4177	5616	5075	68
+       135	3480	*	4412	69	*	0	10540	2672	1445	
+
+F 69   4622	4942	5576	5659	2757	*	6666	2743	5650	2211	4766	6612	6975	6621	6256	6764	5969	2646	7369	3759	69
+       34	7015	5983	0	*	851	1166	10531	1004	1603	
+
+T 70   5494	5816	6989	3347	6757	6305	4638	4127	4815	3397	4822	3575	6666	3245	4904	3929	2943	3009	*	5937	70
+       0	*	*	*	*	*	0	10658	0	1560	
+
+T 71   5150	5793	6666	5598	2739	6305	*	2030	6762	2182	4772	*	5900	5019	5662	*	4836	3218	*	4642	71
+       58	*	4672	*	*	*	0	10658	0	1560	
+
+F 72   4331	5794	*	4648	4850	6942	*	2507	6710	3755	5992	6662	6383	*	5154	*	4404	2608	2070	3739	72
+       30	5600	*	1400	687	2866	213	10507	1247	2237	
+
+D 73   *	*	676	3146	6750	4540	6787	6857	*	*	*	4414	*	5263	4780	4971	4994	*	*	5767	73
+       54	4757	*	1739	514	1033	967	10438	1738	2052	
+
+L 74   4295	4733	5040	6980	4109	6825	*	3096	*	2487	6612	*	*	*	5542	3987	1659	4025	6876	5072	74
+       25	6964	6779	4087	87	1924	441	10576	1000	1459	
+
+G 75   3167	6917	5023	5170	5812	2253	6659	5824	5037	*	6893	4799	1741	*	5052	3389	5061	4750	*	*	75
+       14	6727	*	2585	263	1146	867	10594	1000	1440	
+
+G 76   5200	*	5088	4682	5775	791	5938	6086	4775	5281	*	5259	6786	6891	6743	3812	5144	5222	*	4802	76
+       111	3898	7132	2153	367	*	0	10667	2292	1155	
+
+H 77   4389	*	3408	3943	3499	4453	3598	3844	5659	4581	*	4596	5350	2530	*	3833	5944	4082	*	4043	77
+       65	4907	6583	3149	173	694	1389	10658	1580	1317	
+
+I 78   4825	5699	3052	2448	6889	3894	5395	4514	4930	4707	6087	3785	3774	4383	3847	4390	4329	5326	6538	5923	78
+       163	3354	6823	2497	281	*	0	10684	2844	1200	
+
+Q 79   3850	*	2708	2835	7146	4736	5677	5960	3243	5277	*	4941	4583	4352	2836	3709	4505	6354	6392	5804	79
+       96	4148	6957	3448	139	1894	452	10667	2333	1539	
+
+A 80   4447	*	5872	5508	2483	5152	4255	3902	*	2675	4569	4699	4338	4911	6519	4428	4448	5141	6780	2961	80
+       39	5215	*	2617	257	*	0	11556	1332	1513	
+
+R 81   3665	*	3003	3707	5359	5853	5945	4852	3725	3585	4810	4625	4768	5295	2888	4389	4120	4001	*	5195	81
+       59	4644	*	847	1171	400	2047	11556	1602	1513	
+
+R 82   3537	5798	4992	3536	4609	4246	5528	6192	3822	5294	7200	3948	4149	3828	4085	2655	3274	5954	*	5847	82
+       25	*	5882	*	*	*	0	11594	0	1000	
+
+L 83   3622	4749	7145	3929	5061	5590	7420	4122	3844	2610	3722	5006	7084	3710	6728	3771	3779	3860	*	4432	83
+       82	5149	5191	1883	456	539	1682	11554	1417	1358	
+
+W 84   4564	*	4232	4939	4745	5208	4871	3420	*	3115	5390	3923	5587	5842	3345	4646	3645	3710	3486	4250	84
+       44	5065	*	3025	189	943	1059	11554	1392	1571	
+
+K 85   3561	6949	3999	3381	4647	5807	5254	4637	3319	4768	*	5198	2727	3915	3532	3472	5636	5189	*	5723	85
+       31	6069	7304	1538	609	*	0	11571	1172	1176	
+
+D 86   3411	6769	3337	3693	6883	4580	5144	5283	3981	3846	5264	3615	4763	4011	4362	3209	3779	4403	*	*	86
+       127	3920	5794	913	1092	*	0	11550	2148	1371	
+
+Y 87   3296	4525	*	5620	2844	4922	5538	3099	5734	2525	5271	*	7494	4017	6857	4593	4807	4842	*	3089	87
+       97	5313	4650	1951	432	2321	322	11528	1362	1773	
+
+F 88   4153	6990	*	4340	2751	5562	*	2855	5893	2385	4816	*	*	4351	5030	4439	4716	3599	6257	3727	88
+       241	2764	7276	2686	244	*	0	11471	3546	2524	
+
+P 89   4593	6592	5221	3321	5158	4210	4772	5888	2788	5337	6686	4820	3428	3860	2833	3348	5261	4481	*	*	89
+       43	5092	*	2000	415	3450	138	11486	1338	2687	
+
+E 90   4978	*	3833	3156	6399	3352	4479	4700	3345	3759	6407	2900	*	4106	4085	4117	4593	5697	6794	5036	90
+       0	*	*	*	*	975	1026	11496	0	2529	
+
+V 91   2375	3478	5228	4870	5207	5061	*	4137	5606	3202	4920	6553	4033	*	6763	3236	3885	3127	6470	*	91
+       22	6050	*	5209	40	2243	342	11523	1113	1687	
+
+N 92   4541	*	1375	4442	4519	4707	3507	6440	5067	5154	*	3651	*	4173	4837	4076	4685	6601	*	6989	92
+       27	5768	*	3955	96	469	1848	11511	1187	1506	
+
+G 93   2676	4192	*	5719	4962	2423	*	3141	5632	3541	4795	5812	6329	6843	5047	5145	4893	2677	*	6917	93
+       0	*	*	*	*	*	0	11568	0	1000	
+
+I 94   3065	4945	*	4878	3273	6958	5514	2217	*	2636	5904	*	*	*	5642	4764	4765	2725	*	4533	94
+       43	5104	*	2868	212	*	0	11568	1486	1000	
+
+V 95   4807	4840	*	5020	3715	5638	7417	1768	6329	2560	5018	6837	*	*	*	*	6329	2120	6859	5050	95
+       0	*	*	*	*	*	0	11568	0	1000	
+
+F 96   *	4683	6482	5146	2226	*	5173	2798	6529	2254	5896	*	*	5879	*	*	*	3590	5390	2513	96
+       0	*	*	*	*	*	0	11554	0	1000	
+
+L 97   4892	3410	6351	*	6698	6683	5740	2914	*	2752	4307	*	6479	*	*	*	4924	1164	*	*	97
+       34	5414	*	2107	381	*	0	11554	1252	1000	
+
+V 98   3593	6163	*	5677	2093	5859	5518	2547	6479	3820	4677	*	*	6974	6975	6699	5101	2858	6793	3103	98
+       18	6351	*	0	*	*	0	11554	1004	1000	
+
+D 99   5778	*	853	*	4706	4779	6941	*	6791	6677	*	4004	4851	6533	6523	2567	7875	*	6336	5472	99
+       66	5761	5249	1585	585	984	1016	11537	1245	1201	
+
+A 100  2803	7746	*	6617	4612	4694	5650	2809	*	3364	5217	6806	4440	6381	4803	3062	5349	2239	*	5892	100
+       14	6741	*	0	*	*	0	11526	1004	1534	
+
+A 101  3429	5902	3894	4438	6075	4997	5640	5062	5063	4492	*	3302	5579	4334	4920	2341	2753	4870	6658	6415	101
+       63	4955	6612	2177	361	*	0	11526	1464	1534	
+
+D 102  4152	5778	2419	3694	*	5067	4012	*	4528	5540	6914	2529	5852	4936	3562	3098	5050	5314	*	5945	102
+       169	3316	6610	1718	523	703	1374	11509	2840	1722	
+
+P 103  5275	6301	4620	3630	5699	2916	5381	3967	4306	4453	5135	5795	2410	4456	3956	4468	4782	4279	6710	5892	103
+       113	6818	3915	2422	298	613	1531	11505	1122	1370	
+
+E 104  3447	5492	2891	2509	5237	5603	5432	4778	3518	5648	*	5069	6365	3427	4093	3869	4256	5165	6860	6534	104
+       148	5628	3697	5212	39	*	0	11481	1199	2676	
+
+R 105  4748	*	6406	4308	6444	4681	6700	4286	4005	3657	5510	4450	4620	4639	4086	1839	3386	4439	*	5712	105
+       29	6617	6681	0	*	1301	751	10431	1027	4181	
+
+F 106  5100	*	6660	4637	2029	4640	6531	3282	5956	2510	4150	5407	6768	6299	5251	5217	4351	4746	5835	3803	106
+       15	*	6604	*	*	2876	211	10601	0	3095	
+
+D 107  3915	*	3554	2516	*	3970	5140	5704	4220	4224	5461	4152	5556	3376	3885	3216	5768	4776	6894	5636	107
+       86	4105	*	0	*	2019	409	10603	2025	2979	
+
+E 108  4217	4865	3548	2914	5349	4650	5226	6627	3568	4987	6777	3386	5608	3673	3456	4002	4021	5834	6238	5202	108
+       30	5595	*	1013	987	665	1437	11518	1191	2487	
+
+A 109  4031	4949	4612	4835	4622	5121	*	2595	5792	2722	4758	5579	5510	4840	4763	3368	3974	3133	*	*	109
+       24	*	5931	*	*	1860	465	11555	0	1456	
+
+R 110  3080	6595	3444	3466	5926	5236	5293	3781	3861	3050	4552	6619	3970	3921	4987	4898	4891	4297	6742	5916	110
+       41	*	5160	*	*	*	0	11538	0	1630	
+
+V 111  4014	6860	3663	2609	5707	5025	4844	5084	3792	5302	6598	4640	5309	3790	3360	4271	3829	4473	4936	5073	111
+       60	5815	5431	0	*	1978	422	11446	1202	2170	
+
+E 112  4317	6678	5209	3938	4683	5069	6401	3942	4472	3501	5159	4674	6910	3998	6599	4630	3493	4033	2798	3535	112
+       14	*	6727	*	*	*	0	11381	0	2313	
+
+L 113  4865	6640	6782	6177	2789	*	5246	2878	5752	1844	5245	*	*	6815	3983	6816	4674	3825	4495	3897	113
+       11	*	6993	*	*	*	0	11552	0	2468	
+
+D 114  4166	7056	4389	3181	5118	4700	5216	4168	2914	3191	*	4740	5900	4082	3383	4043	4953	4354	*	4801	114
+       16	6541	*	2367	311	647	1468	11535	1145	2610	
+
+A 115  3513	5264	3469	2685	6775	*	5896	4971	3679	3661	*	4605	4756	3385	3819	3613	4218	5924	*	5107	115
+       11	*	7094	*	*	*	0	11450	0	1493	
+
+L 116  3761	4615	*	6754	3282	5894	5847	2419	5231	2168	5152	5672	6895	4798	5753	5572	4098	3145	*	*	116
+       112	5258	4363	4034	91	2388	306	11437	1388	1650	
+
+F 117  6744	5172	5942	4999	3479	5006	6862	2915	4756	2157	4391	4247	5211	4381	5083	5335	4226	3934	6096	5102	117
+       79	*	4232	*	*	3285	156	11479	0	2413	
+
+N 118  4444	*	4187	3146	5640	3964	5194	6549	2896	4504	5529	3693	6677	3307	3949	2960	5710	4645	*	5411	118
+       108	5450	4343	0	*	*	0	11487	1167	3299	
+
+I 119  3692	*	3912	3823	4909	4687	3806	4014	3943	3076	*	4578	5486	4009	4193	4510	6876	3156	*	4295	119
+       550	*	1657	*	*	1839	473	11367	0	4118	
+
+A 120  2637	4462	5000	3717	3864	4985	5034	4426	4242	3477	4091	4076	5195	4965	5223	4437	4073	4524	*	6205	120
+       251	2891	5342	1456	654	834	1187	11036	2550	6879	
+
+E 121  4029	5584	3986	3295	5549	3489	5582	4407	3794	4224	5549	4141	4944	4527	3860	4138	4149	4194	6537	4393	121
+       15	6637	*	5160	41	1898	451	11204	1186	4462	
+
+L 122  4346	5628	4273	3712	4828	4167	5894	4253	3250	2898	5785	4432	3941	4857	4158	3898	6508	3990	6278	5097	122
+       0	*	*	*	*	902	1105	11244	0	3627	
+
+K 123  4029	5137	4175	4411	5007	4338	5962	5835	3795	3424	6522	4515	3317	4049	3863	2907	3921	5778	6756	5815	123
+       27	5760	*	1339	725	2059	396	11367	1173	2223	
+
+D 124  5151	*	2650	3543	6628	2710	5598	*	3810	4813	6649	2615	5242	4173	3600	4910	4413	6773	*	6733	124
+       55	4735	*	902	1105	1426	672	11395	1743	1900	
+
+V 125  5286	6303	5630	5878	5665	*	5779	2815	2511	3381	5059	4447	4894	5221	4143	3941	3643	3126	6627	6597	125
+       52	5224	6908	1468	647	*	0	11463	1353	1504	
+
+P 126  4028	6783	5762	4915	5785	5020	4406	5068	4054	4546	5642	4399	1469	5201	4113	3458	6028	5709	*	6650	126
+       23	5955	*	1308	746	2296	328	11455	1172	1676	
+
+F 127  5704	4282	*	*	3256	5679	6463	2238	3902	3459	5847	6812	5501	6668	6273	5163	3533	2367	*	4480	127
+       152	3440	7031	1699	531	*	0	11463	2584	1504	
+
+V 128  3864	4743	*	5475	4484	*	*	1880	*	2313	6652	*	6607	6809	*	*	6360	1985	*	4064	128
+       15	*	6641	*	*	1153	862	11449	0	1661	
+
+I 129  4708	6033	*	6794	3583	5814	7108	1939	*	1908	6646	*	*	*	*	3775	6801	2345	6280	*	129
+       15	*	6596	*	*	*	0	11470	0	1456	
+
+L 130  3274	4216	5728	*	3880	4580	*	3151	5912	2645	*	*	*	6608	5552	*	6606	1491	*	5186	130
+       0	*	*	1000	1000	2288	331	11426	1000	1658	
+
+G 131  3177	6795	*	7175	5060	1907	6726	3213	6571	2479	5814	6482	*	5085	6902	5994	4663	2968	6680	6615	131
+       45	5674	6502	2048	399	*	0	11436	1243	1488	
+
+N 132  6819	6743	5671	5150	*	6861	4449	6923	*	3975	5036	1303	6356	5017	6408	3814	2075	*	*	6839	132
+       38	5251	*	2890	209	*	0	11382	1380	1687	
+
+K 133  6585	*	*	5747	5842	5572	4736	*	447	*	5535	*	*	4030	3880	*	*	6560	*	*	133
+       26	5808	*	653	1458	*	0	11382	1164	1687	
+
+I 134  3194	3195	6381	6625	6824	*	7066	2853	5003	4558	3635	4824	*	3974	4939	3107	3961	3950	6707	3957	134
+       27	6595	6942	2000	415	1859	465	11532	1025	1687	
+
+D 135  6503	*	345	3320	*	4951	*	*	*	*	*	5617	*	7385	6627	5531	6528	*	*	*	135
+       9	*	7358	*	*	1843	471	11533	0	1623	
+
+A 136  4691	6685	6840	4136	*	3822	6847	3440	3577	1606	4726	6518	*	4017	5270	4080	4345	4378	*	6749	136
+       158	5900	3523	0	*	1079	925	11260	1554	1590	
+
+P 137  3395	4093	4415	4658	3991	*	5120	4371	4405	2936	*	5025	3408	4537	4402	*	5377	2553	*	4959	137
+       94	4246	6586	673	1423	3408	143	11302	1825	2760	
+
+N 138  4855	*	2608	4232	5750	3024	4874	*	3679	4498	*	3525	3684	3532	3523	3650	4942	*	*	*	138
+       620	1798	4023	1829	477	3594	125	11199	5080	2761	
+
+A 139  3002	*	3384	3284	*	3529	6173	6844	4225	3933	5339	4434	4381	3909	4060	3763	5494	3895	*	4646	139
+       106	4513	5221	2895	208	370	2144	11005	1519	3464	
+
+V 140  4836	*	3459	4045	6549	6805	6299	3141	5004	5010	4455	4582	5368	4088	4075	4489	4250	2079	*	4573	140
+       37	5860	6896	1578	588	718	1350	11263	1203	1921	
+
+S 141  4852	*	3290	3653	6769	4110	*	3998	3774	4769	*	3730	3968	4126	4601	3509	2843	4645	6738	5066	141
+       31	6381	6779	1585	585	*	0	10583	1034	1418	
+
+E 142  4873	6415	4273	3426	4189	*	4814	3852	4745	3162	5517	4295	3837	3360	3892	3987	6709	3617	*	4677	142
+       102	3879	*	3829	105	401	2043	10578	2026	1609	
+
+A 143  4573	*	3259	2323	6539	4303	4473	6141	3392	4397	6583	4120	4501	4239	3895	3477	5782	5756	6700	5507	143
+       0	*	*	1000	1000	0	*	10631	1000	1000	
+
+E 144  4318	6888	2844	1878	7470	4129	6680	5636	3612	4954	6840	5028	*	3919	3416	3728	4713	*	*	6574	144
+       147	3495	6888	1655	551	*	*	10633	2448	0	
+
+L 145  4052	6535	6938	6216	3784	5846	5772	2026	5633	1943	4933	*	*	5676	*	6739	4247	2972	6464	5632	145
+       0	*	*	*	*	*	0	10631	0	1000	
+
+R 146  3281	4404	4589	3480	6946	4301	5685	5009	3132	4016	4846	3516	*	3400	3742	4719	3736	5800	*	6522	146
+       12	*	6883	*	*	*	0	10573	0	1000	
+
+S 147  3708	*	2996	2290	4707	5422	6651	*	2521	4559	7082	4505	*	3601	4197	4572	4242	7156	*	6042	147
+       17	*	6441	0	*	1142	871	10621	1000	1166	
+
+A 148  2748	*	5266	4857	4796	4614	4404	4507	4116	3333	4537	5575	*	3198	3934	5593	5556	3270	4940	4349	148
+       32	6517	6500	0	*	993	1007	10597	1004	1201	
+
+L 149  3968	5539	*	3932	3441	*	4466	3961	4467	1760	4620	5561	5412	5742	4886	5610	6104	3704	6457	4440	149
+       100	6418	4182	2000	415	*	0	10598	1000	1189	
+
+G 150  4284	*	5059	3175	6398	3390	4430	5490	2979	5789	*	2486	6476	3901	2917	4688	4606	7125	*	6506	150
+       82	*	4177	*	*	*	0	10480	0	2169	
+
+L 151  4369	5280	4481	3837	4340	5636	6860	4476	3846	2345	4710	5252	6397	3737	3486	3853	4830	5748	*	4103	151
+       190	5400	3324	1797	489	*	0	10446	1213	3177	
+
+L 152  4740	5875	3635	4187	3831	5320	5326	2891	4105	3667	4253	5395	3849	6289	4563	5364	4718	3925	5570	3870	152
+       1989	1784	1127	985	1015	*	0	10308	4706	4375	
+
+N 153  4474	*	4276	2335	*	5221	*	5361	3747	4338	*	3092	3602	3624	4638	4306	5342	3207	*	5280	153
+       33	*	5478	*	*	5796	26	8934	0	7786	
+
+T 154  4332	*	4560	2683	5524	5280	5379	4225	5108	3735	5030	5229	4396	3640	4442	2789	2761	*	*	*	154
+       80	5275	5165	3000	193	5740	27	8909	1000	7789	
+
+T 155  3067	*	4155	4297	3591	5365	*	5400	4749	3019	4401	5097	3294	4321	5307	3753	4434	*	4261	4163	155
+       144	*	3395	*	*	*	0	8934	0	7786	
+
+G 156  3558	5173	5224	4288	5319	1908	*	*	5307	4954	*	5076	3174	2756	5274	*	*	4039	*	3555	156
+       168	4157	4219	3690	116	*	0	8739	1258	8038	
+
+S 157  3503	*	4092	2251	5141	4908	*	*	2974	4232	5136	4986	*	3538	5259	4163	4881	2848	*	*	157
+       87	*	4099	*	*	*	0	8608	0	8182	
+
+Q 158  3049	*	5068	4090	*	3239	*	5169	4087	4956	*	3922	*	2496	2933	3449	*	3892	*	4927	158
+       185	3954	4168	1000	1000	3185	168	8511	1204	8376	
+
+R 159  4276	*	5176	4107	5283	*	5177	4203	2700	3162	*	5202	4299	3166	3566	3175	4246	5179	*	5349	159
+       73	5223	5469	2322	322	5892	24	9011	1000	8044	
+
+I 160  5356	*	5149	5213	3256	5100	*	2265	5302	2671	3632	*	4190	*	*	4182	4292	2975	*	5185	160
+       795	2531	1996	2185	358	3051	186	9032	2019	8032	
+
+E 161  2274	5006	3968	2884	5073	*	4996	5096	5064	*	*	3478	2898	3883	4926	3448	*	*	*	5245	161
+       200	2953	*	1496	632	936	1066	8651	1655	8149	
+
+G 162  5398	5775	3606	4049	4393	2823	4835	5977	4624	3634	6093	5901	6006	3708	2865	3193	6068	4530	*	5249	162
+       0	*	*	*	*	1075	928	9900	0	5388	
+
+Q 163  3918	6704	4662	5415	6367	3644	5482	4355	3395	3458	5325	3496	3752	3815	5085	3497	4309	4145	*	5154	163
+       0	*	*	*	*	*	0	10197	0	3534	
+
+R 164  6864	4957	4804	4596	5226	3251	6089	4087	4064	4052	*	3807	4552	3622	3981	3539	4199	5332	3784	4053	164
+       20	6173	*	0	*	2928	203	10197	1002	3534	
+
+P 165  4468	3969	4171	4055	5216	2612	5482	4389	3598	3709	*	4456	5515	3337	4021	3450	6321	6580	*	6236	165
+       42	5134	*	2653	250	2287	331	10244	1287	3220	
+
+V 166  3220	4159	4531	5431	3923	5446	6216	2456	5420	4099	5231	5243	4330	6994	6957	3903	5921	2852	4705	5313	166
+       0	*	*	*	*	463	1865	10285	0	2773	
+
+E 167  4425	6830	4147	4255	6525	3953	4783	5559	3356	4524	6634	4435	2184	3760	3951	3403	6755	5657	*	5421	167
+       30	6640	6601	1000	1000	514	1739	10501	1000	1382	
+
+V 168  6725	3834	*	*	2986	*	5651	2511	6891	3325	5524	5454	5525	*	*	*	6164	2167	5296	2623	168
+       0	*	*	0	*	0	*	10544	1000	1155	
+
+F 169  3912	6474	*	7433	2356	5070	4920	2907	5734	3376	4575	6311	*	4306	5585	*	5704	2328	7141	4091	169
+       12	6905	*	1000	1000	*	*	10567	1000	0	
+
+M 170  5108	5753	5039	2047	3509	5213	5132	6607	3704	4938	5188	4210	3204	4642	4059	5079	4929	4204	*	6584	170
+       0	*	*	*	*	*	*	10567	0	0	
+
+C 171  4530	3304	7059	*	5144	4184	7109	2437	*	3905	4715	6325	*	*	6307	5582	2489	2111	*	6330	171
+       14	*	6683	*	*	*	*	10567	0	0	
+
+S 172  5256	6673	4980	*	6424	7137	6517	*	5338	*	*	3903	6444	*	5042	552	4205	5475	*	6589	172
+       14	6657	*	2807	222	*	0	10543	1000	1000	
+
+V 173  1315	4174	5639	6213	*	4929	*	4681	*	4680	4621	4440	*	6319	*	2727	4608	3366	*	6640	173
+       26	5809	*	2131	374	0	*	10543	1196	1000	
+
+V 174  4771	5479	6607	5176	6759	5026	5129	3929	1897	3436	6571	4426	*	5385	4088	5574	3808	3555	6416	3661	174
+       45	6705	5577	1000	1000	*	*	10567	1000	0	
+
+M 175  5415	*	3032	3120	6684	6489	6894	5766	3551	3646	5548	3289	6593	5194	5674	3486	2274	*	5606	5116	175
+       61	6463	5043	2322	322	991	1009	10530	1000	1204	
+
+R 176  3860	6616	3333	5438	4633	1428	6640	*	4111	6407	6392	3019	4023	6598	3897	5446	6678	*	*	*	176
+       28	5699	*	753	1299	497	1778	10432	1431	1480	
+
+N 177  6646	5577	3739	2377	5400	4534	5042	3420	3799	4162	*	3943	5059	5110	4644	4551	4932	3943	6136	3950	177
+       63	5431	5669	3138	174	0	*	10474	1177	1001	
+
+G 178  4541	*	4209	*	*	1262	6642	*	4650	*	*	2343	6530	3614	5666	3602	4876	6575	*	*	178
+       30	5582	*	1510	624	1197	826	10480	1142	1211	
+
+Y 179  4995	6621	5241	*	4438	6649	6705	1821	5479	2680	4094	7086	4926	*	*	5584	6688	1909	*	6753	179
+       0	*	*	*	*	0	*	10487	0	1033	
+
+L 180  4506	*	2175	2226	4480	4685	6453	5309	3977	5117	*	4043	*	4361	3870	3729	4969	5442	*	*	180
+       23	5989	*	3585	126	*	*	10387	1051	0	
+
+E 181  4272	*	2771	1503	*	5022	*	6550	4520	4300	*	4459	5239	4288	4003	4533	4043	5398	*	*	181
+       0	*	*	*	*	*	*	10387	0	0	
+
+A 182  2948	6289	*	6656	4882	4230	6292	3633	*	1428	4997	*	5640	*	6560	6279	4072	2846	5508	*	182
+       41	5794	6620	3433	140	*	*	10387	1097	0	
+
+F 183  6323	6115	*	5623	1899	6439	*	3615	3831	2149	3702	*	6105	5317	4555	5563	6586	4321	5568	4879	183
+       0	*	*	*	*	*	0	10379	0	1000	
+
+Q 184  3069	*	3171	2543	*	4967	*	*	3596	4215	6454	3523	*	3985	4118	3859	3581	4414	*	6490	184
+       0	*	*	*	*	*	0	10354	0	1000	
+
+W 185  2861	*	4660	3698	4384	3833	5320	5742	2954	4169	6352	6609	5720	5124	5339	4446	4668	4920	2990	4049	185
+       0	*	*	*	*	*	0	10298	0	1000	
+
+L 186  6354	6371	*	*	6731	*	*	2050	*	1134	3656	*	*	*	*	6527	6279	2589	*	*	186
+       0	*	*	*	*	*	0	10267	0	1000	
+
+S 187  2843	4416	5019	3305	6100	4770	*	2938	4794	3484	6395	*	*	*	4047	3123	4687	3131	6546	5391	187
+       0	*	*	*	*	*	0	10180	0	1000	
+
+Q 188  3987	*	2970	2982	*	5203	5328	*	2581	5318	*	3477	*	2880	3505	4263	4052	*	6327	*	188
+       0	*	*	2585	263	0	*	10114	1000	1000	
+
+Y 189  3237	5828	5392	5102	3457	*	4710	4432	3429	2710	4094	4435	*	3595	3414	4684	*	5927	*	3935	189
+       0	*	*	*	*	*	*	9902	0	0	
+
+I 190  *	*	*	*	3526	*	*	1857	*	1549	*	*	*	*	5789	5646	5090	2132	*	*	190
+       0	*	*	0	*	*	*	9404	0	0	
+
+//
+�HHsearch 1.5
+NAME  81e79b5741c9fbdcdbbebf2c8b14e32c
+FAM   
+FILE  81e79b5741c9fbdcdbbebf2c8b14e32c
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:06:51 2013
+LENG  163 match states, 163 columns in multiple alignment
+FILT  142 out of 1148 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  10.3
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEEEECCCCCCHHHHHHHHHHHHHHHHHCCCCCHHHHHHHHHCCCCCEEEEEEECCEEEEEEEEEEECCCCEEEEEEEEECHHHCCCCHHHHHHHHHHH
+HHHHCCCCEEEEECCCHHHHHHHHCCCEEEEEECCCEEECEECCCCCEEEEEEECCCCCCCCC
+>ss_conf PSIPRED confidence values
+9799992788998999999999999764367668999999863689858999998998999999999279988999999997888489899999999999
+999869969999348379999998899999674463120403189976999998899988679
+>Consensus
+xxxxxxxxxxxxxxxxxxlxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxvGxxxxxxxxxxxxxxixxxxvxxxxrxxGxgxxllxxxxx
+xxxxxxxxxxxxxxxnxxxxxyxxxGfxxxxxxxxxxxxxxxxxxxxxxxmxxxlxxxxxxxx
+>81e79b5741c9fbdcdbbebf2c8b14e32c
+LLDFDILTNDGTHRNMKLLIDLKNIFSRQLPKMPKEYIVKLVFDRHHESMVILKNKQKVIGGICFRQYKPQRFAEVAFLAVTANEQVRGYGTRLMNKFKD
+HMQKQNIEYLLTYADNFAIGYFKKQGFTKEHRMPQEKWKGYIKDYDGGTLMECYIHPYVDYGR
+>gi|328907443|gb|EGG27209.1| acetyltransferase, GNAT family [Propionibacterium humerusii P08]
+--------------------QVYDDWASdpevtrflTWPTHSsvdvsravVGPWVDSY--eDPGTFNWGIELieDGTLIGQTSV-VKEDLT-VGLvnVGY
+VVGRRWWGKGYCTEALVAVMNYLFAvAEANKveASHDPANvASGRVMEKAGMVAEGLRRA----SCLSGsmIRVQLYHGM----------
+>gi|320156268|ref|YP_004188647.1| acetyltransferase [Vibrio vulnificus MO6-24/O]gi|319931580|gb|ADV86444.1| predicted acetyltransferase [Vibrio vulnificus MO6-24/O]
+--KFEHKKVEPSNIDFQSLVGELNSSLTQITSDSgESSFASDAFDSSKDGCIVVYLNNVAVACGVFRYHEN-EVCELKRMYSN----KSGAGSYLLKHLE
+CYAVSKGYRKaiLSTRRVNsKAVSFYERNSYSES------SAYGKYVGVKRSICLSKVLVT------
+>gi|302526259|ref|ZP_07278601.1| predicted protein [Streptomyces sp. AA4]gi|302435154|gb|EFL06970.1| predicted protein [Streptomyces sp. AA4]
+EIAFLPPSAAeDTALVALLTDLVNTVYAKAEAGLWAGSADRTNAGEmaglvRAGEIAVARIDGTVVGSVRIQRLAE-DLGEFGLLAASPEVRGAGIGRAL
+VEFAESCCRAQGCTRmqleLLVPreWTHPSkeflAQWYGRLGYQVVeTSTIDGPHPELAPLlatPCDFLIWHKDL--------
+>gi|168701123|ref|ZP_02733400.1| hypothetical protein GobsU_16469 [Gemmata obscuriglobus UQM 2246]
+------------------FSMLRKRYETQVMRaaGVPSWWHECvWGTLDPVEFrMVDKLASGFIAArALVWELEGygwrwgFPSAGVLDIQVRSDLRRLG
+LAKLLLSQILRFLQDQFFGICEVQapAADpALVGLCRSVTLDH----------------------------------
+>gi|290954852|ref|YP_003486034.1| acetyltransferase [Streptomyces scabiei 87.22]gi|260644378|emb|CBG67463.1| putative acetyltransferase [Streptomyces scabiei 87.22]
+----------------------------------RTEKEQRVRESRTHASLVF-AGDDCLGWCQFGSPAElpeikrerryekdltvLPDWRITCFFTGKG
+LRKRGVAHAALEGALTQISRNGGGTVEGYPeethgrtlsgSFlhtGPMAV-----fenhgFTRTRPISP-----------HRWVV----tltvDP-----
+-
+>gi|301165969|emb|CBW25543.1| hypothetical protein BMS_0636 [Bacteriovorax marinus SJ]
+--HWRCMNTVIEHAKLTDVNELLSLYLSvygedyplDIG-TKRSVMEEALNHPEENHWYVMRcTdSNQIIVSGIIQIERENLIGKLSGVAVHDEYRKHGL
+ATGFIGHVVNEVLKEKkLvNSIYATARTiShsSQTMLMKNGFIPLGFFPNCRRIKTYETlallaiFADGVLEKRKVPTVVP---
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+L 1    3147	*	3165	2136	*	3235	*	*	3300	3207	*	2107	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	5162	0	0	
+
+L 2    *	*	*	*	3954	*	*	1618	*	1578	4843	*	4907	*	*	5057	*	3979	*	3144	2
+       0	*	*	*	*	*	*	8544	0	0	
+
+D 3    5160	*	4278	3488	*	*	3975	3613	4143	5192	5177	*	*	2940	2869	3211	2564	*	*	5049	3
+       37	5309	*	1000	1000	*	*	9132	1000	0	
+
+F 4    5237	*	*	*	1686	*	4457	1882	*	2679	*	*	*	*	*	*	*	3440	5302	3793	4
+       0	*	*	*	*	*	*	9532	0	0	
+
+D 5    *	5437	3114	3186	5378	*	*	5539	3115	5553	5363	*	*	4023	1532	5521	3929	4314	*	*	5
+       0	*	*	*	*	*	*	9532	0	0	
+
+I 6    5625	5357	5680	4508	3814	*	4540	2389	4029	4615	*	*	2663	5608	2918	5451	3930	4043	*	5329	6
+       0	*	*	*	*	*	*	9604	0	0	
+
+L 7    4022	*	*	5592	3551	5537	*	3080	4545	2099	4551	5457	4022	*	*	*	5232	1929	*	*	7
+       0	*	*	*	*	*	*	9681	0	0	
+
+T 8    3372	5649	3727	3668	*	5582	4670	*	3550	5690	*	3538	*	*	4698	2441	1968	*	*	*	8
+       27	*	5774	*	*	*	*	9822	0	0	
+
+N 9    3424	*	3396	3310	5747	*	*	4097	3145	4179	*	1766	*	*	4188	*	3687	4668	*	*	9
+       63	4554	*	0	*	*	0	9830	1246	1015	
+
+D 10   4339	*	2181	3117	5931	*	*	*	4796	4150	*	3931	4951	3886	3965	2598	3781	4700	*	*	10
+       74	4326	*	1469	647	0	*	10027	1373	1015	
+
+G 11   3620	*	1976	5025	5873	3326	*	4071	5702	3990	*	3261	5977	5019	*	3486	4522	3448	*	*	11
+       0	*	*	*	*	*	*	10249	0	0	
+
+T 12   4139	*	2835	4175	4746	5230	5135	4212	3563	3426	6278	3448	4572	5032	*	3377	3009	*	6271	6247	12
+       0	*	*	*	*	*	*	10371	0	0	
+
+H 13   4178	*	3384	2819	6136	4717	4194	4304	5260	4092	6245	5160	2308	3603	4672	5139	4119	*	*	6108	13
+       21	6116	*	0	*	*	*	10371	1000	0	
+
+R 14   3941	*	3693	2361	6288	5226	6225	4184	3214	3311	5453	5156	4227	4176	4164	4767	4618	5181	*	5255	14
+       36	5355	*	2926	204	*	*	10421	1316	0	
+
+N 15   5389	*	2958	3847	4652	5215	3974	5248	3630	3801	4447	3862	5256	4599	5326	3492	3885	3991	*	4559	15
+       56	5340	6204	2213	351	*	*	10448	1138	0	
+
+M 16   3986	6302	6315	4634	4266	*	3738	3414	4312	1810	4751	6314	4437	5156	4785	4726	*	3769	*	4516	16
+       39	6210	6278	2585	263	*	0	10413	1025	1047	
+
+K 17   3023	*	3539	4004	5949	4859	5185	4315	3451	4015	5272	*	4467	3503	3839	3725	3727	4252	*	6145	17
+       0	*	*	*	*	*	0	10421	0	1226	
+
+L 18   3261	4421	3792	4384	3695	5378	6495	3953	4649	2563	5435	*	6390	3566	4647	4876	5445	6304	3700	4756	18
+       0	*	*	*	*	1130	881	10482	0	1226	
+
+L 19   5468	*	*	5395	3688	4729	6094	2607	5303	1220	4427	6238	*	*	5664	6325	5535	4100	6593	5454	19
+       16	6489	*	1000	1000	0	*	10590	1000	1047	
+
+I 20   4102	6322	4575	3807	6389	4762	*	3578	4289	3256	6591	3068	4421	4971	4463	4110	3551	3192	*	5547	20
+       30	*	5594	*	*	*	*	10616	0	0	
+
+D 21   2984	6551	3648	3508	*	4058	5128	4861	5082	4441	5386	4471	5564	3158	3628	3592	4126	4762	6287	5399	21
+       69	5375	5465	1000	1000	920	1084	10619	1169	1087	
+
+L 22   3716	4996	5545	5657	5682	4923	4177	3212	5619	2106	5519	5658	6666	6357	*	5059	5160	2859	4225	3833	22
+       42	5139	*	0	*	2059	396	10687	1282	1329	
+
+K 23   3647	*	4072	4223	3893	5883	3962	5069	3492	3263	5674	4025	5681	3532	3052	5674	5702	5637	4995	4715	23
+       41	5635	7035	0	*	1198	826	10710	1134	1212	
+
+N 24   3136	*	3030	2781	6751	5123	5058	5001	5051	5734	6059	3839	6852	3057	4763	3480	3889	4508	*	5745	24
+       14	6683	*	0	*	*	0	10728	1000	1188	
+
+I 25   3972	6912	5185	5077	4449	5192	6660	2349	4113	2730	5662	5784	5057	6939	4630	4469	5844	2601	5128	6568	25
+       17	6403	*	2000	415	1327	733	10735	1016	1188	
+
+F 26   *	4769	6924	6559	1830	6821	4836	5256	*	2969	5144	5221	*	5512	5708	3947	5262	4362	4174	2519	26
+       16	6498	*	0	*	*	0	10796	1000	1047	
+
+S 27   3620	*	4332	2797	5203	3220	4421	5275	3947	4813	4720	5294	4364	4823	3726	3837	5806	4322	5403	4902	27
+       51	6794	5276	3170	170	*	0	10796	1000	1047	
+
+R 28   4365	6948	3743	3173	*	4221	4877	4616	3412	5884	5885	5188	3688	3345	3771	3202	4468	4800	5230	6867	28
+       185	3281	5854	2720	238	1824	479	10765	2579	1576	
+
+Q 29   4126	5886	3020	2839	5921	6795	4860	6617	5120	4564	5506	4168	4044	2778	4027	4053	4513	5253	4740	6865	29
+       12	6877	*	0	*	*	0	10767	1000	1725	
+
+L 30   3855	5488	3976	4224	3002	4970	5380	3976	4185	2473	5001	6429	6576	3306	5097	4461	6317	4297	6493	6841	30
+       118	6840	3840	1000	1000	*	0	10787	1000	1725	
+
+P 31   3772	*	4367	5069	5652	3030	5542	5095	4366	6199	5586	5630	1832	4622	5540	3250	5192	4971	6568	4858	31
+       548	5659	1755	1425	672	*	0	10740	1201	2856	
+
+K 32   4306	6088	3456	3809	4594	3169	5047	4663	3664	4111	*	4376	4206	4655	4276	3210	*	5136	4604	4578	32
+       343	2240	*	1014	986	394	2065	10306	3244	6215	
+
+M 33   4415	6751	4341	4571	3372	6532	5799	3484	4563	2928	3469	6787	3952	4695	6623	4260	4669	4782	3932	4111	33
+       28	6685	6682	0	*	3848	104	10750	1000	2491	
+
+P 34   4595	*	3812	3536	5139	4294	5803	5861	5158	5253	5397	4006	2554	4880	4765	2694	3868	5705	5896	4424	34
+       40	5208	*	950	1052	625	1508	10845	1341	2569	
+
+K 35   4290	*	3256	2447	6711	5447	5969	4312	3023	3906	*	4434	4097	5032	3446	4914	4454	4757	*	5084	35
+       31	5575	*	2444	293	813	1215	10924	1381	1478	
+
+E 36   3299	*	2886	2091	7534	4126	5861	6409	4201	4247	*	4253	5119	4558	3958	3980	4278	5738	6970	*	36
+       175	5234	3512	2141	371	*	0	10979	1491	1114	
+
+Y 37   4193	6114	4074	4198	2822	5915	6145	4064	6172	3223	5294	4777	*	4316	4250	4852	5287	4402	3601	3192	37
+       16	6475	*	0	*	234	2739	10880	1191	2800	
+
+I 38   4392	*	7349	5992	3338	6774	7025	2482	6059	1891	4453	5791	*	6108	4480	7198	4574	4251	3670	4371	38
+       0	*	*	*	*	1094	912	10975	0	1152	
+
+V 39   3033	6031	4022	2288	6130	5098	5397	6237	4421	3996	6940	4940	5609	3720	3098	4298	4578	4645	*	5647	39
+       18	7780	7033	0	*	*	0	10995	1000	1002	
+
+K 40   3762	*	3677	2691	7186	4051	6216	4479	3738	4623	7119	4345	6194	3777	3004	3629	5409	5123	5548	5055	40
+       117	4016	5965	1021	979	2039	402	10983	2184	1261	
+
+L 41   3066	4915	4217	4489	5159	6494	3946	3778	4358	2646	4429	5051	*	4836	5206	4802	4096	4973	6897	3466	41
+       102	4051	6950	733	1328	1994	417	10960	2246	1445	
+
+V 42   3960	6137	4372	4905	4640	6468	5334	2637	5492	2246	3890	5572	*	4227	4232	4377	4957	4522	6044	4807	42
+       361	*	2175	*	*	1065	938	10954	0	1428	
+
+F 43   3270	6786	4196	4051	4588	3831	6462	4385	3691	3839	6917	3616	6001	5143	3527	3492	4184	4585	6789	4686	43
+       55	5768	5703	1977	423	625	1508	10675	1157	5127	
+
+D 44   3542	6233	2793	2829	6862	4432	4769	6057	3726	4704	6060	3464	4623	3791	4653	3908	4497	6292	*	6219	44
+       121	3761	7274	1147	866	997	1003	10866	2323	2906	
+
+R 45   4267	*	3792	3589	4848	3737	5052	6155	3657	4563	*	3363	3438	4052	3551	3382	5913	6167	6979	4387	45
+       108	3989	6723	2600	260	599	1556	10979	2356	2033	
+
+H 46   5189	*	3489	3145	6278	2831	5233	5354	3762	4479	*	3654	3303	7231	3983	3417	4649	5816	6169	4979	46
+       27	6391	7167	1251	786	2508	279	10975	1346	1545	
+
+H 47   3589	4987	4185	3654	4299	4016	4562	4594	4276	4906	5335	3722	3670	5130	4184	3812	5902	4353	5494	4385	47
+       44	5961	6164	2020	408	501	1770	10969	1306	1552	
+
+E 48   3627	6292	3743	3160	6061	3987	4472	4032	4965	4417	6117	4004	4166	4921	4210	4342	5307	4105	5469	3610	48
+       9	7287	*	2807	222	524	1714	10994	1000	1310	
+
+S 49   4638	5672	4873	3802	3412	3636	3766	4460	4845	3460	4797	5084	6113	5548	3580	4126	3489	5062	7033	4423	49
+       32	*	5517	*	*	*	0	11008	0	1000	
+
+M 50   4517	3968	6072	6401	2756	5981	5113	3267	5301	3004	5144	5402	6212	5332	5450	5402	4844	3586	5184	2871	50
+       94	4373	6104	618	1521	0	*	10983	1793	1512	
+
+V 51   3776	4740	*	*	2732	6209	7347	2963	6942	2212	5047	*	*	6702	6420	*	6032	3187	3588	3220	51
+       12	6892	*	2000	415	936	1067	11017	1000	1115	
+
+I 52   3171	4532	*	6195	4811	3338	*	2784	5816	2832	5986	*	*	6945	7014	5183	4375	1838	*	7140	52
+       28	6228	7391	0	*	0	*	11012	1294	1000	
+
+L 53   2265	5188	5483	3968	4218	4668	7006	2584	6231	3024	5255	5513	7199	*	5744	5789	6145	3169	6957	4340	53
+       151	4910	3919	1589	583	0	*	11015	1601	1000	
+
+K 54   5392	5077	3897	2919	4471	5324	5510	5331	3296	3370	5880	4257	6891	4298	4262	4986	4801	4477	4422	3440	54
+       73	4341	*	2092	386	0	*	10920	1870	2284	
+
+N 55   4257	6153	2328	3279	*	5656	5491	4212	4080	3775	7163	4777	5380	4784	4219	4206	6228	3284	7117	3870	55
+       119	3657	*	583	1589	*	*	11015	2554	0	
+
+K 56   3766	*	2206	3141	*	2880	*	6413	4314	5659	*	2773	7020	3846	4422	3808	5780	7081	*	6429	56
+       33	6033	7104	2567	267	*	*	11015	1148	0	
+
+Q 57   *	*	2652	3277	*	1572	6867	*	4107	5648	*	3270	5587	3762	7260	3733	5180	7103	*	*	57
+       49	4904	*	2566	267	0	*	11008	1530	1000	
+
+K 58   4279	7365	4199	2111	*	5688	5686	4555	2972	*	7309	4613	*	2857	3865	4949	3594	4218	7004	5868	58
+       29	5643	*	1033	967	*	0	10998	1276	1000	
+
+V 59   3802	5741	*	6910	4293	*	*	2363	6065	1952	4809	6686	2889	*	6509	6845	5753	2729	*	6253	59
+       26	5794	*	1000	1000	*	0	10998	1219	1000	
+
+I 60   3101	6311	*	*	5081	*	*	2034	5041	3530	5820	*	*	5791	6994	7110	5709	1286	*	*	60
+       0	*	*	*	*	*	0	10998	0	1000	
+
+G 61   2370	6076	*	6429	*	608	*	*	*	*	*	*	*	*	*	3405	6045	6129	*	*	61
+       26	7363	6429	2000	415	0	*	10998	1000	1000	
+
+G 62   3285	4510	*	6289	2103	5568	5314	3958	*	4661	4890	7151	*	7051	6950	4010	3916	3184	4629	3026	62
+       11	7067	*	0	*	*	0	10968	1000	1044	
+
+I 63   2622	3595	*	7046	5095	2726	*	3525	7127	2529	4337	*	*	*	*	4362	4329	2869	6986	7155	63
+       0	*	*	*	*	*	0	10968	0	1044	
+
+C 64   3196	4875	7336	4755	4589	3579	4920	4849	5951	3214	4392	7017	*	5456	3333	3220	3631	3312	6160	5909	64
+       17	7130	7809	0	*	0	*	10968	1000	1044	
+
+F 65   4231	4395	6412	*	3184	3760	*	3081	*	2366	4738	*	*	*	5058	4468	4541	2696	7313	3732	65
+       67	4778	6855	3609	123	0	*	11015	1779	1000	
+
+R 66   4332	7133	4903	4088	5470	5045	4013	4766	3636	3728	5324	4729	7373	4787	3242	3955	3733	5180	4881	2924	66
+       37	5599	7838	0	*	0	*	10994	1637	1005	
+
+Q 67   4118	6403	4389	4713	3909	*	4361	3629	3941	3802	7180	6302	3031	4236	3465	5470	3962	3943	5615	4206	67
+       96	5572	4528	0	*	0	*	11015	1509	1000	
+
+Y 68   4623	7428	3618	3838	3936	4772	5194	3328	4201	3586	4767	4051	4858	6002	4633	3292	5858	4706	5342	3922	68
+       176	3436	5490	3479	136	2040	402	10905	2587	1601	
+
+K 69   4997	6983	2680	3580	5792	3415	5053	6196	3633	6378	6050	4570	3197	3918	4111	3861	4955	4897	*	4381	69
+       126	3928	5822	2243	342	*	0	10914	2393	1899	
+
+P 70   4522	*	3216	2984	*	3643	5103	4921	3444	5205	5506	3446	3274	4898	4963	4090	3818	5142	6817	6411	70
+       1169	1704	2010	2794	225	1178	841	10924	5952	2458	
+
+Q 71   4620	*	4461	4093	4342	3035	4818	4270	4439	4178	*	4064	3667	5236	3013	3666	3818	5709	*	4729	71
+       102	4387	5593	1727	519	1756	507	10592	1557	5779	
+
+R 72   4757	*	2875	4017	5933	4269	4733	*	3144	4817	*	2944	3620	4093	3509	3997	5409	4783	*	5049	72
+       13	*	6822	*	*	99	3917	10682	0	4842	
+
+F 73   3852	5086	5530	3993	3739	7139	4354	4159	3904	4319	*	5104	6305	4517	4325	3475	2841	3458	6990	4338	73
+       9	7338	*	4700	57	0	*	10984	1000	1297	
+
+A 74   2156	4385	*	6048	5226	3003	5091	4659	7036	2771	5567	5529	5263	5200	6413	5428	5028	3368	5065	4325	74
+       10	*	7197	*	*	*	*	11015	0	0	
+
+E 75   4215	5135	4550	2308	3909	4239	4005	5709	5095	4772	6162	5552	*	6418	4195	4271	4936	4288	4302	3079	75
+       11	*	7023	*	*	0	*	11012	0	1000	
+
+V 76   6336	*	*	6107	4131	5085	7052	1693	7299	1863	4232	*	*	*	*	5128	5465	2572	5995	*	76
+       49	4901	*	1474	644	0	*	11014	1847	1047	
+
+A 77   3755	5652	3809	4155	4819	2708	4768	4624	4576	3634	5162	5184	6349	*	4951	3282	4218	4552	4739	4218	77
+       12	*	6956	*	*	*	*	11015	0	0	
+
+F 78   4198	*	3468	3962	4445	3440	4961	4830	6350	3158	5336	4935	6142	5126	3821	3353	4747	6389	4611	3289	78
+       159	*	3260	*	*	0	*	10998	0	1000	
+
+L 79   4015	5448	6906	*	2953	5192	*	2448	*	2208	3305	*	*	*	*	*	5301	2352	6752	5724	79
+       0	*	*	*	*	55	4741	10943	0	3334	
+
+A 80   2165	4181	7160	6127	3412	3578	6113	4457	*	4254	5430	6644	*	5057	6160	4012	6863	2883	4828	3445	80
+       0	*	*	*	*	*	0	11015	0	1000	
+
+V 81   7359	*	*	*	5017	4901	*	2604	5893	3613	6957	*	*	*	*	5668	2824	1111	6644	5343	81
+       25	5877	*	1703	530	*	0	11015	1154	1000	
+
+T 82   3204	7126	2530	3950	7004	7080	2662	5515	4745	3322	5606	4261	7038	6864	3713	3777	5096	4949	*	6112	82
+       8	*	7464	*	*	*	0	11015	0	1000	
+
+A 83   3489	*	4809	3388	*	6892	5097	*	3797	6947	*	4943	1427	4184	3971	3433	4749	6773	*	*	83
+       0	*	*	*	*	*	0	11018	0	1152	
+
+N 84   3591	7251	2319	2172	7073	4623	5211	6146	3963	5784	6865	4135	5673	4310	6039	2950	5622	*	*	5934	84
+       23	5978	*	0	*	*	0	11018	1158	1152	
+
+E 85   3530	5558	*	4631	2548	6108	3562	6001	5423	3558	6638	5417	*	5597	*	4643	6929	4920	4100	1920	85
+       27	6868	6680	0	*	*	0	11018	1001	1152	
+
+Q 86   7044	*	6900	5537	*	*	4421	7248	5322	5057	5642	*	*	2113	927	6480	6197	6859	4514	*	86
+       0	*	*	*	*	333	2277	10987	0	1336	
+
+V 87   4934	*	5915	4710	*	1398	3799	*	3952	6907	*	3315	*	4693	2569	4423	6240	6141	*	7239	87
+       22	6058	*	552	1653	*	0	11015	1225	1000	
+
+R 88   4979	*	5671	5094	*	4829	4247	*	2241	3789	6859	4302	*	2436	2201	5375	4409	7174	*	6979	88
+       49	6511	5495	2000	415	*	0	11015	1023	1000	
+
+G 89   5943	*	5328	6919	*	472	4574	*	4548	6631	*	5473	*	5680	4253	5952	6861	*	*	6006	89
+       0	*	*	*	*	785	1253	10988	0	1483	
+
+Y 90   5515	5871	*	5748	3555	*	5234	1951	*	2310	5181	6507	*	6798	6705	*	*	2983	7104	2477	90
+       0	*	*	*	*	686	1401	11014	0	1109	
+
+G 91   2034	*	*	6040	5881	1006	*	6563	*	*	4594	6925	*	7059	*	3486	5906	4877	6659	6960	91
+       26	5805	*	0	*	*	0	11015	1170	1000	
+
+T 92   4449	*	6011	4647	5215	4247	4626	*	2483	5562	7312	6091	5900	4190	3071	2520	2767	4796	*	6659	92
+       0	*	*	*	*	*	0	11015	0	1000	
+
+R 93   3268	*	4659	2719	4153	5751	4579	5585	3132	3685	4948	7154	*	3317	3395	5456	4215	5413	5557	5692	93
+       0	*	*	*	*	*	0	11015	0	1000	
+
+L 94   3757	6684	*	*	4839	*	*	3180	*	964	3217	*	*	*	*	5798	6798	3383	*	5161	94
+       9	7380	*	1000	1000	*	0	11015	1000	1000	
+
+M 95   7080	5256	*	*	3871	*	4951	2239	5197	1764	3437	6202	*	6389	*	7018	4668	3062	7089	4632	95
+       9	7380	*	1000	1000	*	0	11015	1000	1000	
+
+N 96   3886	6028	3236	2865	6644	5667	4636	7295	3292	4332	6157	4158	6511	3426	3377	4618	3651	6254	*	4579	96
+       10	7137	*	1000	1000	*	0	11015	1000	1000	
+
+K 97   2566	7023	5121	3084	3943	6511	3335	5622	3643	3974	5306	5836	*	4393	4713	4106	3969	6312	5098	4461	97
+       11	*	7031	*	*	*	0	11015	0	1000	
+
+F 98   2531	5040	*	7131	4306	7104	*	2930	*	2023	3644	*	*	5263	5081	6291	6254	2590	6085	6383	98
+       0	*	*	0	*	573	1609	11013	1047	1151	
+
+K 99   4870	5129	*	2524	4317	6204	5312	3094	3718	2777	3948	6511	7196	4820	3952	5589	6563	3240	*	5993	99
+       9	7380	*	0	*	*	0	11015	1000	1000	
+
+D 100  3165	6357	3046	2649	7174	4208	4897	5350	3598	5295	7439	3300	7029	3613	3697	4172	5738	7137	*	6210	100
+       0	*	*	*	*	*	0	11015	0	1000	
+
+H 101  4633	6299	5623	3111	3945	5434	3921	3988	4361	3261	*	6412	*	3683	3875	5192	5668	3703	4862	3001	101
+       9	*	7268	*	*	*	0	11015	0	1000	
+
+M 102  1744	3829	*	6866	3913	4111	5983	3648	*	3018	4776	*	6072	7133	6788	4462	5512	3046	*	5426	102
+       23	7192	6795	2000	415	*	0	11015	1000	1063	
+
+Q 103  4482	*	4980	3947	2930	6161	6250	6222	2563	4007	*	6141	4836	3629	2641	4812	5895	3329	*	6224	103
+       62	5992	5246	0	*	969	1032	10991	1166	1301	
+
+K 104  3493	*	3715	2619	7229	4632	4992	6285	3020	5296	5469	4288	5256	3627	3961	3513	4267	4879	*	6194	104
+       232	2811	7382	793	1241	909	1097	11002	3807	1743	
+
+Q 105  3879	7036	4603	3752	5182	7186	4103	4787	3505	3343	4541	3604	5919	3953	3111	4421	4025	6061	*	4368	105
+       77	6208	4696	0	*	577	1602	10998	1294	1515	
+
+N 106  4432	*	3891	5514	4961	1388	4998	7008	3392	7115	*	3116	5418	4370	4351	5589	5150	*	5986	6992	106
+       218	2832	*	682	1408	1494	633	10954	3559	1889	
+
+I 107  3555	4102	7086	6297	4007	5291	6856	2688	4740	2728	4945	7222	5214	5382	4770	4210	*	3164	*	3260	107
+       37	7170	5791	0	*	2052	398	10972	1095	1526	
+
+E 108  6290	6392	3773	3285	6992	4558	3845	4620	3465	4419	7085	3981	4440	5228	3138	3791	3811	3930	5595	6076	108
+       9	7368	*	2322	322	0	*	10923	1000	1687	
+
+Y 109  3581	5065	5937	3151	6952	3924	4632	4476	3520	4162	5625	7081	*	6305	2821	3265	4183	4640	7245	3883	109
+       412	2010	*	1481	640	*	*	11015	5416	0	
+
+L 110  3620	5357	6674	*	4233	7162	6867	2398	7159	1759	4699	5169	*	7077	*	5070	4520	2666	7239	6335	110
+       20	7397	7028	3907	100	*	0	10995	1000	1023	
+
+L 111  4841	*	4870	3536	4938	5223	4306	4232	6010	3102	4449	5684	*	5086	4571	3438	3213	3348	5162	3530	111
+       126	3584	*	1042	960	1088	917	10964	2610	1236	
+
+T 112  3538	4456	*	5295	5453	6187	*	2886	7079	2834	6178	*	6119	6774	*	4799	2336	1989	*	*	112
+       81	4190	*	2386	306	*	0	10996	2385	1047	
+
+Y 113  4121	6086	3378	3405	4803	4028	4277	4394	*	2877	5034	4628	4286	4988	4252	4831	4952	4869	4880	3990	113
+       256	2752	6137	1005	995	0	*	10996	4254	1047	
+
+A 114  2310	6175	5569	3481	*	4795	5674	4819	4023	6270	7293	7120	3479	5534	4169	2836	3417	3934	5550	7056	114
+       45	5038	*	3076	182	1069	934	10987	1458	1233	
+
+D 115  4615	*	2401	3810	4462	3648	5609	6670	4909	4995	6919	4240	5728	3935	4612	2929	3181	5843	6498	5501	115
+       28	6261	7303	3418	142	1243	792	10987	1233	1195	
+
+N 116  4290	*	2836	3893	6863	6237	3926	6940	4886	7164	7008	1275	4662	7120	6022	4341	4327	7041	*	6054	116
+       1556	616	7091	575	1605	654	1457	10994	8869	1163	
+
+F 117  3178	*	5779	4488	5379	3837	5124	5022	4025	5095	6080	4191	2913	4350	2914	3699	4394	4491	7108	5487	117
+       142	3495	7582	1275	769	843	1176	10994	2870	1105	
+
+A 118  2022	6191	5390	6221	6805	4661	7320	5000	5188	3504	4369	4882	5006	6015	4839	2269	3656	4679	*	6423	118
+       102	4066	6921	763	1283	1124	885	11006	2248	1095	
+
+I 119  4320	5709	6032	4890	5980	6167	4404	2796	4166	2964	5593	4603	5056	3196	2907	5487	*	3492	7036	5390	119
+       10	7188	*	0	*	986	1015	11003	1000	1114	
+
+G 120  2913	*	4479	4144	*	3231	3745	5496	2967	*	*	3330	4556	4455	3367	3450	4513	6051	*	*	120
+       0	*	*	*	*	0	*	10995	0	1000	
+
+Y 121  4909	7106	*	*	1542	6861	6022	3542	*	1971	4167	7058	*	*	6863	7217	5671	3710	4909	4532	121
+       0	*	*	*	*	*	*	11011	0	0	
+
+F 122  3639	5645	*	*	2481	*	5285	5529	*	3499	5337	5998	*	6041	*	6578	*	6964	4236	1127	122
+       24	5900	*	0	*	*	*	11011	1179	0	
+
+K 123  4092	*	6314	2416	*	5336	5899	4807	2629	3049	5371	*	6056	4094	2676	6177	3866	5572	*	5381	123
+       11	7060	*	0	*	*	*	11000	1000	0	
+
+K 124  3639	*	5051	5924	*	4990	4324	*	1876	5935	*	3962	*	4264	1984	3126	5677	*	*	*	124
+       11	6994	*	0	*	*	*	11000	1005	0	
+
+Q 125  3711	3554	*	5931	3798	*	3623	4075	5559	2085	4730	3869	*	4322	4157	4465	6056	5041	5509	5159	125
+       0	*	*	*	*	*	*	10991	0	0	
+
+G 126  5102	*	4152	7086	*	440	5916	*	5395	*	*	4391	*	5977	5162	5518	6988	*	*	6864	126
+       13	*	6794	*	*	*	*	11009	0	0	
+
+F 127  4442	4690	*	*	824	*	6513	*	6837	3846	4605	*	*	*	6933	*	*	5890	5346	2553	127
+       0	*	*	0	*	0	*	10947	1005	1005	
+
+T 128  5303	*	4129	2588	*	6799	6752	4245	3219	6814	5636	4412	6903	3252	3918	2895	3456	3698	*	6077	128
+       13	*	6851	1000	1000	*	*	10933	1047	0	
+
+K 129  3708	5647	4299	3284	4883	7253	5797	3661	3538	3484	4862	5703	3114	7083	4779	4819	4190	3354	7143	5098	129
+       97	6823	4154	2000	415	0	*	10772	1000	1000	
+
+E 130  5536	4841	4647	2362	6099	6481	*	3731	4276	3636	4806	5735	*	5641	4688	4060	3280	2716	6647	4736	130
+       433	4524	2212	318	2338	288	2468	10646	1638	1852	
+
+H 131  3774	6249	3895	4707	*	1379	4180	5830	5195	3577	*	*	*	4193	6385	3436	5395	4564	*	6084	131
+       16	*	6459	*	*	3507	133	10168	0	4088	
+
+R 132  4570	6018	3623	3770	5140	5270	6253	5397	5120	*	6137	*	3982	4313	2666	2747	3574	3451	*	4097	132
+       322	*	2323	*	*	*	0	10091	0	3951	
+
+M 133  4083	5263	5680	3929	4427	5710	5777	4111	4536	2446	3677	5745	5491	3787	4538	5885	4711	2737	*	5516	133
+       97	*	3944	*	*	5207	40	9635	0	5399	
+
+P 134  *	*	3019	2874	*	*	*	5632	3651	4593	*	5317	2672	5612	1821	*	3830	5509	*	5561	134
+       33	*	5485	*	*	*	0	9496	0	5633	
+
+Q 135  4351	*	2806	3470	5533	4256	5410	5186	3298	5437	*	2847	*	2818	3394	*	4321	*	*	4567	135
+       550	*	1657	*	*	3150	172	9340	0	5721	
+
+E 136  3849	4796	3987	4015	5066	4026	4792	4039	4033	4952	5098	3483	*	4699	2579	4004	3918	*	*	4829	136
+       54	4768	*	0	*	2422	298	8790	1076	6547	
+
+K 137  4197	*	4236	4266	*	4384	*	2200	4361	4984	*	*	5301	4176	2989	3362	4275	5545	*	3087	137
+       121	3641	*	742	1314	5474	33	9232	1370	5793	
+
+W 138  5488	*	5221	5055	3197	5277	4234	5304	4254	3264	*	*	5250	4046	1988	5111	5152	*	3216	4396	138
+       39	*	5247	*	*	1504	627	9163	0	5713	
+
+K 139  3982	*	5591	3655	4102	4452	4022	3923	2409	4086	5637	5602	5572	5665	3071	4113	*	4013	*	4721	139
+       0	*	*	*	*	267	2567	9548	0	4435	
+
+G 140  5052	*	3709	3225	6061	2473	3596	*	4008	5020	*	3030	4445	*	2808	4937	5070	4563	*	*	140
+       0	*	*	*	*	*	0	10074	0	1550	
+
+Y 141  5755	*	4855	4241	2607	5825	*	3840	4776	2961	4749	*	5534	*	4410	6065	5555	6072	4793	1813	141
+       0	*	*	*	*	*	0	9803	0	1550	
+
+I 142  4726	*	5212	*	3501	*	5774	3843	6024	2977	5693	*	*	5768	5684	4735	*	3213	4774	1405	142
+       55	*	4749	*	*	915	1090	9760	0	1550	
+
+K 143  4864	*	4515	3168	5763	3177	4947	*	2659	4121	5641	3845	3756	3912	3605	3957	5694	5881	*	5611	143
+       89	5723	4604	1585	585	*	0	9676	1005	1518	
+
+D 144  4604	*	2601	3259	*	3405	*	5665	3649	4416	*	2982	3449	3704	*	4024	4566	5568	*	5094	144
+       1218	956	4194	1792	491	530	1701	9543	4656	1865	
+
+Y 145  *	*	4588	5440	3453	1725	5896	*	4571	5677	5567	3400	3597	*	4537	4720	*	4612	4640	3283	145
+       26	5829	*	2000	415	1004	997	9502	1135	1925	
+
+D 146  4477	4629	3291	2122	5481	3745	4619	5644	4567	4571	4576	3299	5657	5867	4514	4127	5876	5647	5481	*	146
+       29	5643	*	1585	585	978	1022	9507	1005	1394	
+
+G 147  4658	*	1675	5489	*	2395	5697	*	5643	5417	*	3472	2939	5734	4630	6049	*	5813	*	4068	147
+       0	*	*	*	*	*	0	9439	0	1112	
+
+G 148  2439	4564	4567	3518	4425	2967	4454	*	4682	3883	*	4963	*	*	5560	2965	5355	3445	*	5692	148
+       33	*	5463	*	*	*	0	9296	0	1112	
+
+T 149  4387	*	*	*	4594	*	*	2458	*	2293	5810	5362	*	*	4581	5759	3464	2634	4438	3006	149
+       35	5383	*	0	*	*	0	9249	1000	1282	
+
+L 150  5680	5569	4523	*	3432	*	4727	2719	5322	1863	*	5810	4437	*	4077	*	4372	3184	*	4264	150
+       0	*	*	1000	1000	0	*	9249	1005	1282	
+
+M 151  5930	5751	*	5293	4530	*	5411	4362	*	1919	1302	*	*	*	*	*	5403	5718	5315	3532	151
+       0	*	*	*	*	*	*	9330	0	0	
+
+E 152  4371	4895	*	2269	*	*	4340	5307	3621	3910	5528	*	*	4497	3215	3101	*	2945	5513	4436	152
+       0	*	*	*	*	*	*	9105	0	0	
+
+C 153  *	3814	*	*	5123	*	5358	4470	1819	1776	*	*	*	*	2887	*	*	5570	3793	5210	153
+       80	5095	5331	0	*	*	*	9014	1103	0	
+
+Y 154  4356	*	3526	*	*	5256	4154	5289	2601	4053	5580	4219	3699	5382	3024	*	4285	4215	3347	5087	154
+       0	*	*	*	*	*	0	8734	0	1053	
+
+I 155  *	*	*	*	*	5028	4835	2742	*	871	4743	*	4978	*	3839	*	4010	4758	*	*	155
+       59	*	4649	*	*	*	0	8374	0	1053	
+
+H 156  4366	4454	2869	*	4342	4583	2582	*	3425	*	*	4622	4213	4247	3492	4567	3416	4443	*	*	156
+       0	*	*	*	*	0	*	7306	0	1219	
+
+P 157  3473	*	2363	4485	*	*	*	*	3271	*	*	*	1531	4160	*	*	3255	4044	*	*	157
+       0	*	*	*	*	*	*	7124	0	0	
+
+Y 158  3796	*	4106	2320	*	*	*	*	2437	*	*	3023	*	2960	*	3603	*	3714	*	3737	158
+       0	*	*	*	*	*	*	6311	0	0	
+
+V 159  3669	*	*	3724	3752	*	*	2662	*	2581	*	*	2627	*	3538	*	*	2333	*	*	159
+       0	*	*	*	*	*	*	5625	0	0	
+
+D 160  *	*	2384	3536	3274	*	3509	*	*	*	*	*	2373	3506	*	3532	2613	*	*	*	160
+       0	*	*	*	*	*	*	5355	0	0	
+
+Y 161  *	*	*	2907	2849	*	*	*	*	*	*	*	*	*	2842	*	*	2914	*	1134	161
+       0	*	*	*	*	*	*	4037	0	0	
+
+G 162  *	*	*	*	*	1989	*	*	*	1426	*	*	*	*	*	*	2389	2434	*	*	162
+       0	*	*	*	*	*	*	3260	0	0	
+
+R 163  2487	*	2389	*	*	*	*	*	*	*	*	*	*	*	665	*	*	*	*	*	163
+       0	*	*	0	*	*	*	3260	0	0	
+
+//
+�HHsearch 1.5
+NAME  8237cebaaa25ac6a2b0d49c9d5837da5
+FAM   
+FILE  8237cebaaa25ac6a2b0d49c9d5837da5
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:52:06 2013
+LENG  188 match states, 188 columns in multiple alignment
+FILT  83 out of 85 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  3.9 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCEEEEEEECCCCCCCCCCCHHHHHHHHHHHHHHCCCCCEEEEEECCCCCCCCCCCCCCCCCCCEEECCCCEEECCHHHHHCCCCCCCCC
+CCCEECCCCEECCCCCCCCCEEEEECCCCCCCCCCCCCCCCCCCCCCCCEEECCCCCCCCCCCCCCCCCCCCEEEEEEECCCCCCCCC
+>ss_conf PSIPRED confidence values
+9965414557703789992798677767613388999999998378762456775152368420340105678808356978556899970798885688
+9857674896647899876116876789997662348533554468762420344668964337765677765899985365556688
+>Consensus
+xxxxxxxxxxxxxLxliAlNxPxxGdlgGixGADxxCxxqAraaGlxgTfRAfLSsxxqdlxxiVxxxDRxxxPxvNlkGevLfxswxxlfxxxxxxxxx
+xxxIxsfngxdVltdxxwPqKxvWhGSxxxGxxxxdxxCxxWxsxxxxxxGxAsxlxxxxllxqxxxsCxxxxivLCiExxxxxxxxx
+>8237cebaaa25ac6a2b0d49c9d5837da5
+APLAHTHQDFQPVLHLVALNTPLSGGMRGIRGADFQCFQQARAVGLSGTFRAFLSSRLQDLYSIVRRADRGSVPIVNLKDEVLSPSWDSLFSGSQGQLQP
+GARIFSFDGRDVLRHPAWPQKSVWHGSDPSGRRLMESYCETWRTETTGATGQASSLLSGRLLEQKAASCHNSYIVLCIENSFMTSFSK
+>gi|328709259|ref|XP_003243912.1| PREDICTED: hypothetical protein LOC100573836 [Acyrthosiphon pisum]
+-----------KMLRIAALNEPYTGNMHGVQSVDYSCYRQSQRAGLHGAFKAFLSSRINNLKTIVHESDRD-LPVVNIKGDVLFNSWKDIFSENGAFISQ
+QPRIYSFSGKNVLTDFTWPQKTIWHGSDMSGDSAVDGNCDAWNSESSDKRGLGSSLTpksdrQAKLLDQDSaFDCRNFFVVLCVEI--------
+>gi|268566099|ref|XP_002639634.1| C. briggsae CBR-CLE-1 protein [Caenorhabditis briggsae]
+---------KDRVIHMIALSQPFAGNIHGLRGADLQCYREARASGYTTTFRAMLSSNVQDLVKIVHSVDHD-TPVVNIAGHHLFASWRSFVNG--AKINQ
+HARLFSFDRHDVLNDSRWPDKRVWHGSKEGGIR-ADQYCDGWRRSDASITSLAGQIYSNTTIFQSSgpSTCENKLVILCVENM-------
+>gi|313229600|emb|CBY18415.1| unnamed protein product [Oikopleura dioica]
+----------GKRIRLVALDVPMSGLTHGVRGLDHRCYNAARSSRLRGTFRGFVSAVVQDINTIVRRSERYDYPICNSKDELLFNSWNELFSDESNkGAL
+YGKSIYSFSGRDILTDRRWPNKSIWTGSTPDGRRNPSKYCDGWRSANSNNVGLSSNLSAG-LLNQQVSKCSERKVILCVENAA------
+>gi|149584137|ref|XP_001519691.1| PREDICTED: similar to type XVIII collagen alpha 1 chain, partial [Ornithorhynchus anatinus]
+---------LSPQLRLVALNAPLPGHLGGLRGADLQCHQQAREAGLYGTFRALLAASGQRLASLVHRADRV-LPIVNLQGQRLARTWESLLESKTRRAhG
+LRAPIYTFDDRAVLEDPLWTQKAAWIGPSQKDSPGPQGTCQDWRMG-SGVQGLAALLDEREFPRVASLDCAESLAVLCIEIAFP-----
+>gi|76152955|gb|AAX24626.2| SJCHGC06390 protein [Schistosoma japonicum]
+-----------KKLYLIAQNEPLRGDLKhgdRITGAhagsIFACQ---RAANLKGLGRAFyplLSTDMFNMDYVVPPTYRYGVPLVNLYGEVLFDDFMSL
+V---EGRSRPQAKILNFDGADIADDIVAP--CIWIGQKPIylngdYEYAAQSKCRNWQSTYPGENGF---------------------------------
+---
+>gi|149920904|ref|ZP_01909366.1| putative lipoprotein [Plesiocystis pacifica SIR-1]gi|149818303|gb|EDM77756.1| putative lipoprotein [Plesiocystis pacifica SIR-1]
+------------------TSEDFSGDLGGLTGADAACQQLAEAAGLTGDYLAWLSASPlsapasrfvQsnALYRLV-------------DGTPVAANWGD
+LVDDT---LAAAINMDEFG------ATVGP-HRVWTNTSSSGHYDTSSTCLGWHSED--GTGRAGHTNEVdKnWTSHAFHPCSFSAKLYCVQ--------
+-
+>gi|121606464|ref|YP_983793.1| hypothetical protein Pnap_3576 [Polaromonas naphthalenivorans CJ2]gi|120595433|gb|ABM38872.1| conserved hypothetical protein [Polaromonas naphthalenivorans CJ2]
+-----------------------GADLGGLAGADAYCQTLAASANAGGkNWRAYLSAPASGASPAVNARERIgRGPWQNARGVVVATSVDNLHSADNQ-L
+TKQNsltekgEVVsgrgdAVNMHDMLT-----------GSTADGRLDTsapDTTCGGWTQSG--------------------------------------
+----
+>gi|24213395|ref|NP_710876.1| hypothetical protein LA_0695 [Leptospira interrogans serovar Lai str. 56601]gi|24194153|gb|AAN47894.1| LenA [Leptospira interrogans serovar Lai str. 56601]gi|86753692|gb|ABD15102.1| LenA [Leptospira interrogans serovar Pomona]
+---------------FIATNngAGYNGNLGGISGADAKCA-AAKSSSLTGAYKALIVDGPTG-RQVISALDGS----VDKKDWVLYSNKQYRRSDGTtIT
+FTTNAnSIVIdnlQNGID-----SGAQKFFWNGLGNNvGfLWEPLSNCNNWNSADGLITGQAGNTTelqADItpegAFTVDNHACNTNLNLLCVE-----
+----
+>gi|307823103|ref|ZP_07653333.1| conserved hypothetical protein [Methylobacter tundripaludum SV96]gi|307735878|gb|EFO06725.1| conserved hypothetical protein [Methylobacter tundripaludum SV96]
+-----------------------GAELGGLAGADAHCQKLAEAAGSVNkTWHAYLSTQAADGQPVINARDRIgSGPWHNAKGAEVAKNIAHLHGNTLela
+rlgNNLSRTTV-LTEKNETVNGAGDKPnQHDILTGSQPDGTAftdAADHTCKNYTrSAED----------------------------------------
+-
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+A 1    1000	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1000	*	*	*	*	1
+       0	*	*	*	*	*	*	1118	0	0	
+
+P 2    *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	2
+       0	*	*	*	*	*	*	1487	0	0	
+
+L 3    2730	*	*	*	*	*	3982	1881	*	2613	3225	*	2396	*	*	*	4214	*	*	*	3
+       0	*	*	*	*	*	*	2121	0	0	
+
+A 4    1560	*	*	*	3563	*	*	4360	*	4402	*	*	2758	*	*	2694	4619	2865	*	*	4
+       0	*	*	*	*	*	*	2194	0	0	
+
+H 5    *	*	*	*	*	*	492	4402	*	*	*	4048	3524	*	*	3410	*	*	*	*	5
+       0	*	*	*	*	*	*	2194	0	0	
+
+T 6    3410	*	*	*	*	*	*	*	*	*	4048	*	*	*	*	1926	1083	3181	*	*	6
+       0	*	*	*	*	*	*	2194	0	0	
+
+H 7    *	*	3524	*	2801	*	1063	*	4048	3490	*	3410	*	*	*	4402	*	*	*	*	7
+       0	*	*	*	*	*	*	2194	0	0	
+
+Q 8    *	*	*	*	*	*	2174	*	*	*	*	3671	*	2020	4956	4304	2901	2567	*	3884	8
+       820	4481	1364	2408	301	*	*	2384	1081	0	
+
+D 9    2743	*	1620	2495	*	*	*	*	3841	3964	*	2617	*	4293	*	*	*	*	*	*	9
+       295	4293	2901	2807	222	0	*	2553	1000	1282	
+
+F 10   5376	*	4569	3942	2343	4461	*	*	2391	3864	*	*	*	*	4420	2304	3923	*	4968	5660	10
+       65	4506	*	0	*	851	1166	2967	1029	1064	
+
+Q 11   5595	*	2743	*	5257	2041	*	4118	4760	*	5543	4300	*	2370	4369	3457	5082	4977	*	*	11
+       0	*	*	*	*	*	0	3085	0	1005	
+
+P 12   5929	*	*	5445	*	*	5422	*	2303	5282	4998	*	1264	4491	2879	6157	4663	5191	*	*	12
+       0	*	*	*	*	*	0	3218	0	1005	
+
+V 13   2150	*	*	*	*	4207	*	*	4095	*	3961	5377	*	2599	3612	3178	5900	2325	*	*	13
+       20	6204	*	3700	115	0	*	3219	1000	1005	
+
+L 14   *	*	*	*	*	*	*	3105	*	178	*	*	*	*	*	*	*	*	*	*	14
+       0	*	*	*	*	*	*	3270	0	0	
+
+H 15   *	*	*	*	*	*	823	*	*	*	*	*	*	*	1401	*	*	*	*	4154	15
+       0	*	*	*	*	*	*	3270	0	0	
+
+L 16   *	*	*	*	2924	*	*	5504	*	827	2098	*	*	*	*	*	*	4347	*	*	16
+       0	*	*	*	*	*	*	3617	0	0	
+
+V 17   2241	*	*	*	*	6327	*	1272	*	*	*	*	*	*	*	*	*	1558	*	5487	17
+       0	*	*	*	*	*	*	3617	0	0	
+
+A 18   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	18
+       0	*	*	*	*	*	*	3617	0	0	
+
+L 19   *	*	*	*	*	*	*	*	*	362	*	*	*	4432	*	*	2512	*	*	*	19
+       0	*	*	*	*	*	*	3732	0	0	
+
+N 20   *	*	4930	*	*	*	*	*	*	*	*	225	*	*	*	3163	*	*	*	*	20
+       191	3011	*	1000	1000	*	*	3732	1238	0	
+
+T 21   2023	*	5875	1755	3940	5715	*	*	*	6466	6691	6321	*	3482	*	3915	3495	4098	*	5650	21
+       0	*	*	*	*	*	*	3732	0	0	
+
+P 22   5802	*	4285	*	*	3011	*	*	*	*	*	*	310	*	*	*	*	*	*	*	22
+       0	*	*	*	*	*	*	3732	0	0	
+
+L 23   *	*	*	*	2418	*	5101	6087	*	1655	3486	*	*	3813	*	4664	*	5072	*	2172	23
+       0	*	*	*	*	*	*	3732	0	0	
+
+S 24   4041	*	5001	*	*	1846	*	*	6738	*	*	3374	5308	*	3877	1967	2960	5169	5750	*	24
+       0	*	*	*	*	*	*	4277	0	0	
+
+G 25   2852	*	*	*	*	265	*	*	*	*	*	*	*	*	5101	*	*	*	*	*	25
+       18	6346	*	2585	263	*	*	4329	1005	0	
+
+G 26   6375	*	1195	6018	*	5175	5383	*	*	5438	*	1339	*	*	5681	4438	*	*	*	*	26
+       40	*	5197	*	*	*	*	4329	0	0	
+
+M 27   *	*	*	*	4784	*	*	4085	*	926	1629	*	*	*	*	*	4571	6270	*	*	27
+       0	*	*	*	*	*	0	4282	0	1034	
+
+R 28   *	*	*	*	*	1052	2777	*	4307	*	*	5642	*	3506	2665	5785	5396	*	*	6200	28
+       120	4704	4599	1585	585	*	0	4282	1073	1034	
+
+G 29   *	*	*	*	*	89	*	*	*	*	*	*	*	*	4723	5491	*	*	*	*	29
+       0	*	*	*	*	1834	475	4314	0	1230	
+
+I 30   *	*	*	*	*	*	*	1205	*	1288	*	*	5388	*	*	5241	*	3235	*	*	30
+       0	*	*	*	*	*	0	4360	0	1154	
+
+R 31   2127	5241	5388	4348	*	5640	*	*	5740	*	*	*	*	4627	1358	3290	3592	5857	*	*	31
+       0	*	*	*	*	*	0	4360	0	1154	
+
+G 32   5388	*	*	*	*	180	*	*	*	*	*	*	*	*	5242	3901	*	*	*	*	32
+       0	*	*	*	*	0	*	4360	0	1154	
+
+A 33   193	*	*	*	*	*	*	7090	*	5487	*	*	*	*	*	5275	*	3841	*	*	33
+       54	4771	*	2000	415	*	*	4351	1073	0	
+
+D 34   *	*	132	*	*	*	*	4771	*	*	*	*	*	*	*	4293	*	*	*	*	34
+       0	*	*	*	*	*	*	4351	0	0	
+
+F 35   1623	*	*	5275	2058	*	4926	*	5489	3341	5709	4544	*	5312	3602	*	*	*	*	3542	35
+       0	*	*	*	*	*	*	4351	0	0	
+
+Q 36   2393	*	*	*	6718	*	2029	*	3311	4125	5054	*	*	2286	4673	5326	4529	*	*	4201	36
+       0	*	*	*	*	*	*	4351	0	0	
+
+C 37   *	38	*	*	*	*	*	*	*	*	*	*	5275	*	*	*	*	*	*	*	37
+       0	*	*	*	*	*	*	4351	0	0	
+
+F 38   3137	*	*	*	2411	6221	4038	*	*	*	*	6024	*	1909	5312	*	4382	*	*	1894	38
+       191	*	3010	*	*	*	*	4351	0	0	
+
+Q 39   4960	*	5488	3602	*	*	6197	*	3408	6455	*	4609	5150	1948	2318	3952	2881	6070	*	*	39
+       0	*	*	*	*	493	1788	3991	0	1350	
+
+Q 40   3136	*	*	4329	*	*	*	*	*	1541	*	*	*	1101	5226	*	*	*	*	*	40
+       0	*	*	*	*	*	0	4267	0	1073	
+
+A 41   138	*	*	*	*	5283	*	*	*	*	*	*	*	*	5226	4677	*	*	*	*	41
+       0	*	*	*	*	0	*	4267	0	1073	
+
+R 42   3750	*	*	2938	*	6499	*	*	3860	*	*	5100	*	2724	1165	3970	5330	*	*	*	42
+       0	*	*	*	*	*	*	4351	0	0	
+
+A 43   1099	*	5709	3594	*	5695	*	*	5598	7085	*	5694	3936	3995	3150	3169	6292	*	*	*	43
+       0	*	*	*	*	*	*	4351	0	0	
+
+V 44   753	*	*	*	*	6221	*	5028	5275	5312	4997	*	*	*	6525	2871	6292	3059	*	*	44
+       0	*	*	*	*	*	*	4351	0	0	
+
+G 45   *	*	*	*	*	369	*	*	*	*	*	3232	*	*	5487	3872	5126	*	*	*	45
+       53	4794	*	1789	493	*	*	4351	1060	0	
+
+L 46   2528	*	*	*	4917	6266	*	4741	5265	883	5666	*	*	*	*	3855	*	5067	5686	4763	46
+       0	*	*	0	*	0	*	4324	1010	1010	
+
+S 47   4074	*	*	*	*	2474	4888	*	3260	3936	7092	6302	5472	6369	3113	4370	1826	6035	*	4600	47
+       0	*	*	*	*	*	*	4351	0	0	
+
+G 48   4781	*	*	*	*	700	*	*	*	5275	*	3540	5472	6629	5126	3994	3711	4794	*	*	48
+       531	1700	*	37	5317	*	*	4351	1824	0	
+
+T 49   4545	*	5328	*	*	5312	*	4531	*	4771	*	4487	*	*	*	6790	385	7000	*	*	49
+       16	6486	*	2322	322	*	*	4351	1000	0	
+
+F 50   *	*	*	*	1185	4771	*	*	*	*	*	*	*	*	*	*	*	*	1700	2211	50
+       0	*	*	*	*	*	*	4351	0	0	
+
+R 51   6790	*	*	*	*	*	3558	*	2994	5328	*	*	*	5312	453	*	*	*	*	*	51
+       0	*	*	*	*	*	*	4351	0	0	
+
+A 52   70	*	*	*	*	5487	*	*	*	*	*	*	5312	*	*	*	*	*	*	*	52
+       0	*	*	*	*	*	*	4351	0	0	
+
+F 53   *	*	*	*	944	*	*	*	*	3168	4782	*	*	*	*	*	*	*	5328	1700	53
+       54	4771	*	1585	585	*	*	4351	1073	0	
+
+L 54   *	*	*	*	*	*	*	5074	*	130	*	*	*	*	*	*	*	4148	*	*	54
+       0	*	*	*	*	*	*	4351	0	0	
+
+S 55   3673	*	*	*	*	*	*	*	*	*	*	*	*	*	*	272	3966	5074	*	*	55
+       0	*	*	*	*	*	*	4351	0	0	
+
+S 56   2705	*	4100	*	*	*	5312	*	*	*	*	6616	*	6492	*	1187	1725	*	*	*	56
+       0	*	*	*	*	*	*	4351	0	0	
+
+R 57   6616	*	3935	*	*	5074	2827	*	4599	*	5100	4428	5168	2382	1847	3378	6718	4887	*	*	57
+       0	*	*	*	*	*	*	4351	0	0	
+
+L 58   2456	*	4180	4250	*	3951	*	4801	*	2373	4771	*	4196	5126	5472	5246	4098	2401	*	*	58
+       36	5328	*	3170	170	*	*	4351	1077	0	
+
+Q 59   3445	*	6499	3437	4771	*	*	*	*	4821	6629	6250	*	1001	4579	4821	3039	6492	*	*	59
+       178	5328	3450	1000	1000	*	*	4351	1077	0	
+
+D 60   5211	*	1135	5213	*	2607	5640	*	6016	*	*	2119	*	*	5204	*	5553	6307	*	*	60
+       151	6451	3503	0	*	*	0	4219	1000	1251	
+
+L 61   3861	*	*	*	*	2316	*	4095	*	881	4569	5449	*	*	*	*	*	3969	*	*	61
+       0	*	*	*	*	444	1916	4051	0	1476	
+
+Y 62   4271	*	2765	6272	*	6310	6360	*	2834	4783	*	4169	*	3063	2544	4181	*	4151	*	2958	62
+       0	*	*	*	*	*	0	4330	0	1098	
+
+S 63   5214	*	4041	5076	*	*	4237	*	4044	*	*	*	2509	4538	3460	1781	2937	*	*	4728	63
+       16	*	6536	*	*	1991	418	4330	0	1098	
+
+I 64   2087	*	*	*	*	5207	*	1418	*	3703	*	*	5442	*	4857	6328	*	2207	*	*	64
+       0	*	*	0	*	1798	489	4335	1000	1105	
+
+V 65   *	*	*	*	*	*	*	2625	*	*	*	*	*	6707	*	*	*	272	*	*	65
+       147	*	3369	*	*	0	*	4333	0	1063	
+
+R 66   *	*	5566	*	5040	*	2743	*	5049	*	*	1986	4699	*	1522	3240	*	*	*	5382	66
+       0	*	*	*	*	1465	649	4206	0	1283	
+
+R 67   1454	*	*	6192	*	*	5307	5404	3140	6366	*	*	3077	*	2212	3799	*	5074	*	6494	67
+       0	*	*	*	*	*	0	4251	0	1167	
+
+A 68   2012	*	*	5055	*	3064	*	6241	6661	4551	*	5027	6039	*	1766	3710	3615	4691	*	*	68
+       0	*	*	*	*	1221	809	4251	0	1167	
+
+D 69   *	*	392	3219	5457	4566	*	*	*	*	*	*	*	*	*	6259	*	*	*	4252	69
+       46	*	4988	*	*	*	0	4306	0	1077	
+
+R 70   *	*	6411	*	5257	3464	6314	*	6491	*	*	*	*	5676	338	*	*	*	6603	5212	70
+       12	*	6951	*	*	*	0	4251	0	1167	
+
+G 71   5154	*	2856	3611	5753	5671	6957	1712	6325	6737	*	4667	*	6367	5049	2722	4928	5322	*	3513	71
+       1113	2180	1658	0	*	963	1038	4254	1524	1202	
+
+S 72   4960	*	3801	5618	*	2317	5140	*	3032	*	*	2619	*	5162	4352	2482	3240	*	*	*	72
+       197	3261	5439	0	*	698	1382	3826	1235	2067	
+
+V 73   *	*	*	*	5439	1510	*	5091	*	1758	6759	*	*	*	*	*	3896	2477	*	4475	73
+       0	*	*	*	*	2317	323	4013	0	1452	
+
+P 74   *	*	*	*	*	*	*	*	*	*	*	*	42	6171	*	*	6105	*	*	*	74
+       0	*	*	*	*	*	0	4024	0	1355	
+
+I 75   *	*	*	*	*	*	*	1491	*	4578	*	*	*	*	*	*	*	1967	1529	*	75
+       0	*	*	*	*	510	1748	4024	0	1355	
+
+V 76   6459	5470	*	*	6724	*	3415	5158	6465	*	*	*	*	4575	5377	4599	3073	890	*	4117	76
+       0	*	*	*	*	*	0	4306	0	1077	
+
+N 77   *	*	5036	*	*	*	*	*	*	*	*	135	*	*	5069	5093	*	*	*	*	77
+       0	*	*	*	*	*	0	4306	0	1077	
+
+L 78   1738	*	*	*	*	*	*	3904	5036	1132	*	*	*	*	*	5470	3958	4071	*	*	78
+       0	*	*	*	*	0	*	4306	0	1077	
+
+K 79   4167	*	5328	*	*	*	*	*	1042	*	*	5394	*	5004	1675	*	*	5100	*	4771	79
+       0	*	*	*	*	*	*	4351	0	0	
+
+D 80   *	*	2046	*	*	488	*	*	7394	*	*	5065	*	6821	*	*	*	*	*	*	80
+       0	*	*	*	*	*	*	4340	0	0	
+
+E 81   4348	*	3086	1260	*	*	4793	*	6806	*	*	*	*	3366	*	*	5323	2625	3532	*	81
+       0	*	*	*	*	*	*	4340	0	0	
+
+V 82   *	*	*	4363	*	*	4793	3899	4407	3234	4885	*	5323	5095	4236	*	4959	939	*	*	82
+       0	*	*	*	*	*	*	4340	0	0	
+
+L 83   7394	*	*	*	*	*	*	2340	*	692	5466	*	*	*	*	*	*	2691	*	*	83
+       0	*	*	*	*	*	*	4340	0	0	
+
+S 84   1413	*	*	*	1019	*	*	*	*	*	*	*	*	*	*	4927	*	*	*	3346	84
+       0	*	*	*	*	*	*	4340	0	0	
+
+P 85   4210	*	2975	*	*	6288	*	*	2699	*	*	2350	2655	6614	3281	3084	4230	6282	*	*	85
+       0	*	*	*	*	*	*	4340	0	0	
+
+S 86   *	*	2212	*	*	6407	*	*	*	*	*	1907	*	*	*	1220	3707	*	*	*	86
+       0	*	*	*	*	*	*	4340	0	0	
+
+W 87   *	*	*	*	4768	*	*	5236	3529	4287	*	*	*	*	*	*	*	2105	820	*	87
+       0	*	*	*	*	*	*	4340	0	0	
+
+D 88   2794	*	2449	2749	*	5319	*	*	3931	*	4174	2997	*	3529	4075	3861	5462	6031	*	*	88
+       0	*	*	*	*	*	*	4340	0	0	
+
+S 89   3778	*	2420	2755	*	4683	4193	*	*	*	*	4665	*	6282	*	1635	5278	*	*	3344	89
+       0	*	*	*	*	*	*	4340	0	0	
+
+L 90   *	*	*	*	4786	*	*	2018	*	817	4244	*	*	*	3529	*	*	6649	*	*	90
+       0	*	*	*	*	*	*	4340	0	0	
+
+F 91   *	*	*	*	1053	*	1688	*	*	5430	*	*	*	*	3529	*	6393	3538	*	*	91
+       78	7393	4412	0	*	*	*	4340	1000	0	
+
+S 92   5778	*	3901	3856	*	2431	5970	6189	5377	6155	*	3048	*	6446	4286	1381	5315	*	*	*	92
+       33	*	5470	*	*	2244	342	4253	0	1103	
+
+G 93   3442	*	1817	6164	*	1369	*	*	*	5771	6233	4230	5602	6304	*	4125	4390	*	*	*	93
+       207	3585	4305	1515	621	*	0	4253	1219	1157	
+
+S 94   *	*	3887	3818	*	2682	4597	*	5197	*	*	2002	3643	3818	6096	2652	3994	*	*	*	94
+       232	5552	2977	604	1547	898	1110	4215	1017	1325	
+
+Q 95   4326	*	*	2713	*	1781	5364	*	6519	4590	*	2724	*	3977	5133	3979	3021	*	*	*	95
+       612	2029	3315	1690	535	851	1167	4152	1596	1499	
+
+G 96   2466	*	5446	*	*	1489	*	4925	5050	*	*	2996	*	6138	3850	5801	3080	4980	*	*	96
+       158	4538	4041	0	*	1979	422	4254	1072	1448	
+
+Q 97   3565	*	*	*	3565	4205	*	5489	4264	5093	*	3675	3519	2812	2994	3918	2820	6374	*	5647	97
+       59	4636	*	2000	415	0	*	4309	1048	1450	
+
+L 98   4107	*	*	6097	1953	*	*	3207	6518	1495	3310	*	*	*	*	4768	*	4117	*	*	98
+       172	3297	6512	0	*	*	*	4340	1263	0	
+
+Q 99   4723	*	3905	3344	6496	4130	4828	*	4150	3922	6905	3022	4470	7125	4026	2820	2523	*	*	6571	99
+       80	4561	6459	0	*	0	*	4336	1080	1007	
+
+P 100  3900	*	4431	4937	*	*	5570	5135	2233	4798	*	4247	2851	3158	5145	3736	3169	*	6028	5470	100
+       0	*	*	*	*	0	*	4339	0	1000	
+
+G 101  3471	*	4211	6607	*	1893	3862	*	7162	6528	*	2738	4543	2485	4080	5868	5433	5717	*	*	101
+       25	*	5886	*	*	*	*	4340	0	0	
+
+A 102  1780	*	6586	4144	6741	6794	*	4345	5463	6466	*	3596	3569	5688	6308	4929	2440	3007	*	*	102
+       402	2040	*	1998	416	0	*	4330	1678	1017	
+
+R 103  4001	*	4123	3379	*	6986	5600	*	4021	6288	5220	5319	2133	*	2232	3198	*	3652	*	*	103
+       109	*	3783	*	*	*	*	4340	0	0	
+
+I 104  *	*	*	*	5996	*	*	719	*	3326	3795	*	*	*	*	*	6653	2357	*	*	104
+       61	*	4598	*	*	0	*	4250	0	1154	
+
+F 105  *	*	5287	*	3430	*	*	4256	4811	2868	*	5378	*	*	*	5477	*	2564	*	1181	105
+       207	2905	*	2322	322	*	0	4305	1335	1048	
+
+S 106  4558	*	*	4787	*	3606	*	5059	*	*	*	3869	*	5937	*	875	2480	*	*	*	106
+       269	2555	*	1787	494	*	0	4305	1463	1048	
+
+F 107  *	*	*	3202	697	*	*	*	*	*	*	*	2778	4088	*	*	*	3840	*	*	107
+       0	*	*	*	*	0	*	4305	0	1048	
+
+D 108  *	*	1520	5917	5694	5319	*	*	4229	*	*	1183	*	*	*	3374	*	*	*	*	108
+       37	*	5319	*	*	*	*	4340	0	0	
+
+G 109  *	*	5391	4771	*	766	*	*	*	6350	5463	3735	*	5495	2593	5105	6454	6247	*	*	109
+       0	*	*	*	*	*	0	4294	0	1077	
+
+R 110  4731	*	*	4184	*	*	2000	4073	2717	*	*	*	*	4571	1469	*	6220	5111	*	*	110
+       20	*	6189	*	*	*	0	4297	0	1077	
+
+D 111  5381	*	641	*	*	*	*	*	*	*	*	2304	5942	4292	*	7734	5934	5373	5675	*	111
+       134	*	3493	*	*	*	0	4288	0	1117	
+
+V 112  *	*	*	*	*	5488	*	1598	*	5205	5043	*	6016	5573	*	*	*	853	*	*	112
+       0	*	*	*	*	*	0	4026	0	1393	
+
+L 113  4283	*	*	*	3931	5573	*	5191	4724	821	3141	4537	*	*	*	5773	4790	5652	*	*	113
+       168	*	3187	*	*	*	0	4026	0	1393	
+
+R 114  3921	*	4531	4436	*	3419	*	*	*	5792	*	3504	*	6065	3312	4497	1044	*	*	*	114
+       293	*	2442	*	*	1788	493	3936	0	1661	
+
+H 115  3379	*	603	*	*	5222	3568	*	*	*	*	5162	*	*	4444	5145	*	*	*	4964	115
+       0	*	*	*	*	*	0	3962	0	1819	
+
+P 116  4699	*	4620	6486	4977	2843	6030	3132	*	5609	6837	6244	1484	6233	5040	2935	4849	*	*	*	116
+       0	*	*	*	*	1666	546	3962	0	1819	
+
+A 117  2393	*	3365	*	3912	6243	*	5298	*	3838	*	*	*	6054	3129	2906	2859	2868	*	*	117
+       0	*	*	*	*	*	0	4267	0	1557	
+
+W 118  4610	6947	*	*	*	2831	*	*	4174	*	*	*	3660	*	*	*	4586	*	657	*	118
+       0	*	*	*	*	*	0	4267	0	1557	
+
+P 119  3256	*	*	*	*	*	*	5261	*	*	*	5331	338	*	6385	6350	5118	*	*	*	119
+       319	2987	3793	2400	303	*	0	4270	1154	1557	
+
+Q 120  *	*	4086	2236	*	*	3792	6592	4800	6368	4873	5227	*	1284	3265	*	*	5453	*	*	120
+       0	*	*	*	*	2826	219	4124	0	1776	
+
+K 121  *	*	*	*	*	*	2194	*	396	*	*	*	*	*	5529	*	*	*	*	*	121
+       0	*	*	*	*	2663	248	4180	0	1665	
+
+S 122  3792	4601	2751	5132	3431	*	*	4924	*	3299	3506	*	*	*	3101	3054	6016	3972	*	3678	122
+       0	*	*	*	*	*	0	4270	0	1557	
+
+V 123  4017	*	*	*	3861	*	*	1466	*	6092	6621	*	*	*	*	*	*	1163	*	4801	123
+       0	*	*	*	*	*	0	4270	0	1557	
+
+W 124  *	*	*	*	*	*	*	*	*	2498	*	*	*	*	*	*	*	*	281	*	124
+       0	*	*	*	*	1402	686	4270	0	1557	
+
+H 125  *	*	*	*	*	*	879	3382	*	*	*	4934	*	*	*	*	1609	*	*	*	125
+       0	*	*	*	*	0	*	4361	0	1335	
+
+G 126  *	*	*	*	*	37	*	*	*	*	*	5319	*	*	*	*	*	*	*	*	126
+       0	*	*	*	*	*	*	4344	0	0	
+
+S 127  4464	*	*	*	*	*	*	*	*	4105	*	*	5435	4759	*	494	3350	5137	*	*	127
+       0	*	*	*	*	*	*	4344	0	0	
+
+D 128  4444	*	2862	*	*	3577	6574	*	2922	4372	6288	4289	*	2883	5653	2813	2805	*	*	4747	128
+       85	4135	*	1282	764	*	*	4344	1147	0	
+
+P 129  2914	*	5305	6436	*	4542	*	6289	6541	4918	5201	4496	1317	4174	5701	4053	3711	4414	*	*	129
+       0	*	*	*	*	*	0	4295	0	1048	
+
+S 130  *	*	1405	6354	*	3751	4781	4742	3372	5410	*	3101	4968	*	5346	2985	5394	5723	*	*	130
+       160	3248	*	1110	898	0	*	4295	1350	1048	
+
+G 131  *	*	5435	*	*	134	*	*	*	*	*	*	*	*	*	*	5137	*	*	4759	131
+       131	3530	*	402	2039	*	*	4344	1238	0	
+
+R 132  5310	*	4258	2711	*	5887	4622	3839	*	4105	6517	*	*	4825	2015	4290	2172	5814	*	*	132
+       14	6702	*	1000	1000	*	*	4344	1000	0	
+
+R 133  2004	*	*	*	*	5310	5887	*	5763	4744	*	*	5435	*	1226	6228	6600	5049	3530	4012	133
+       272	3062	4270	1261	779	*	*	4344	1291	0	
+
+L 134  2569	*	3361	3473	4161	4780	5401	5585	*	2379	4906	4599	4238	4508	6350	3497	7755	4716	*	*	134
+       97	3938	*	1382	698	0	*	4309	1189	1209	
+
+M 135  2138	*	*	4499	*	3468	5690	7040	5107	4356	3614	*	3122	*	5880	3752	2640	3551	*	*	135
+       214	3229	4998	1583	586	*	0	4343	1263	1000	
+
+E 136  4855	*	1132	2783	*	4607	*	*	*	5058	4785	*	5884	3769	5858	2861	6435	*	*	*	136
+       0	*	*	*	*	0	*	4307	0	1078	
+
+S 137  5843	*	*	5106	*	3854	3056	*	3365	5137	*	4089	*	3665	3419	2109	2904	5310	5887	*	137
+       0	*	*	*	*	*	*	4344	0	0	
+
+Y 138  *	*	5887	*	4159	*	5440	5133	4759	*	*	3467	*	*	*	4765	1482	*	*	1501	138
+       0	*	*	*	*	*	*	4344	0	0	
+
+C 139  *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	139
+       0	*	*	*	*	*	*	4344	0	0	
+
+E 140  5914	*	2027	2283	*	3484	6472	*	4229	5319	*	2574	*	4384	3659	4094	*	*	*	*	140
+       0	*	*	*	*	*	*	4344	0	0	
+
+T 141  2038	*	3517	*	*	3164	*	*	*	*	*	1518	*	4648	*	5914	2979	*	5310	*	141
+       0	*	*	*	*	*	*	4344	0	0	
+
+W 142  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	81	4202	142
+       0	*	*	*	*	*	*	4344	0	0	
+
+R 143  *	*	*	*	*	5133	3222	*	*	6458	*	3574	*	4759	1397	*	1575	*	*	5914	143
+       61	5027	6500	0	*	*	*	4344	1039	0	
+
+T 144  4746	*	5125	6187	*	*	6423	*	5644	*	4019	*	*	6574	4768	848	2291	5649	*	*	144
+       0	*	*	*	*	*	0	4346	0	1000	
+
+E 145  2074	*	3453	3120	*	2845	*	*	*	5707	*	3722	6295	5877	*	2007	4523	*	*	*	145
+       34	*	5414	*	*	*	0	4346	0	1000	
+
+T 146  3453	*	1910	3620	*	2747	4625	7141	*	6425	*	3425	*	6424	*	2906	3876	6944	*	4693	146
+       45	*	5029	*	*	514	1738	4313	0	1065	
+
+T 147  3113	*	3514	3347	*	3547	4676	*	5670	4655	4706	*	3324	4313	4239	2911	3458	4345	*	*	147
+       38	*	5282	*	*	*	0	4268	0	1109	
+
+G 148  1945	*	2994	6001	6044	2585	*	6253	4530	4123	6538	4269	*	*	*	2611	5573	4152	*	*	148
+       66	4489	*	1585	585	240	2708	3630	1057	1168	
+
+A 149  3483	*	*	3978	5650	4282	*	3293	3016	3826	*	4979	*	4187	4956	*	4898	1611	*	*	149
+       0	*	*	*	*	*	0	3778	0	1000	
+
+T 150  5117	*	4570	5287	6117	4240	*	6494	*	5417	4777	4482	*	4870	4876	4044	1348	2549	*	5171	150
+       0	*	*	*	*	*	0	3778	0	1000	
+
+G 151  *	*	*	*	*	104	*	*	*	*	*	*	*	*	*	3842	*	*	*	*	151
+       0	*	*	*	*	*	0	3778	0	1000	
+
+Q 152  4619	*	*	*	3907	*	*	*	*	2010	3196	*	*	1525	3824	5865	4322	5417	*	5233	152
+       0	*	*	*	*	0	*	3778	0	1000	
+
+A 153  328	*	*	*	*	4736	*	*	*	*	*	*	*	*	*	3654	3529	*	*	*	153
+       0	*	*	*	*	*	*	3682	0	0	
+
+S 154  2937	*	*	*	*	2217	*	*	*	*	*	*	*	*	*	680	5053	*	*	*	154
+       0	*	*	*	*	*	*	3682	0	0	
+
+S 155  5225	*	*	*	4227	*	3269	*	*	3997	*	2669	2629	4670	*	1339	*	*	*	*	155
+       25	*	5855	*	*	*	*	3682	0	0	
+
+L 156  *	*	*	*	*	*	*	3381	*	475	*	4470	*	*	*	*	2841	*	*	*	156
+       0	*	*	*	*	0	*	3680	0	1000	
+
+L 157  3817	*	4363	4114	5655	4430	4804	3771	5046	3062	4256	3532	*	3712	*	2907	3385	*	*	4233	157
+       354	2200	*	2382	307	*	*	3682	1423	0	
+
+S 158  2428	*	6165	2909	*	2231	*	*	*	*	*	4517	*	4684	5668	2127	3024	*	*	*	158
+       0	*	*	*	*	*	*	3682	0	0	
+
+G 159  5526	*	3520	*	*	944	3304	*	*	*	*	3250	4846	*	3709	*	*	4217	*	*	159
+       292	3092	3926	0	*	*	*	3682	1218	0	
+
+R 160  4418	*	4978	4716	*	*	*	4479	1267	4209	5586	*	*	6194	2466	4675	3597	*	*	4982	160
+       310	2369	*	1635	560	0	*	3603	1355	1109	
+
+L 161  2952	*	*	*	3920	*	*	4416	*	712	*	*	5668	*	*	4654	5686	6088	4217	*	161
+       25	5855	*	1000	1000	*	*	3682	1000	0	
+
+L 162  *	*	*	*	2952	*	*	3789	*	559	*	*	3920	*	*	*	4217	*	*	*	162
+       54	4759	*	625	1508	*	*	3682	1050	0	
+
+E 163  3522	*	2708	2701	4080	2215	*	*	*	*	*	4963	*	4027	4799	3514	3123	*	*	*	163
+       0	*	*	*	*	*	*	3682	0	0	
+
+Q 164  *	5855	*	*	*	5225	3726	*	*	*	*	*	*	524	*	3961	*	3052	*	*	164
+       0	*	*	*	*	*	*	3682	0	0	
+
+K 165  3479	*	2563	3470	*	*	3012	*	2418	5904	*	*	*	2875	4356	3446	5040	5982	*	*	165
+       0	*	*	*	*	*	*	3682	0	0	
+
+A 166  3321	*	4777	6165	4217	*	*	*	4217	*	*	3259	2502	5641	3128	2813	2829	4521	*	*	166
+       122	3629	*	802	1230	*	*	3682	1146	0	
+
+A 167  4352	*	*	4401	2875	5720	3022	*	*	4799	6603	*	*	3162	3221	3083	4488	5855	*	2472	167
+       0	*	*	*	*	*	*	3682	0	0	
+
+S 168  3562	*	4117	4759	*	4488	*	*	4268	*	*	4738	3333	*	4774	960	4760	*	*	*	168
+       0	*	*	*	*	*	*	3682	0	0	
+
+C 169  *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	169
+       0	*	*	*	*	*	*	3682	0	0	
+
+H 170  3931	*	3000	3988	*	*	4143	*	6543	*	*	2008	*	4412	4966	1715	5904	*	*	5053	170
+       0	*	*	*	*	*	*	3682	0	0	
+
+N 171  5225	*	5095	3879	4217	4620	4751	4488	4422	*	*	1333	*	*	4328	2609	4553	*	*	*	171
+       0	*	*	*	*	*	*	3682	0	0	
+
+S 172  3962	*	*	4759	5526	5397	5228	*	2735	*	*	2908	4136	4587	2190	2259	5894	*	*	*	172
+       0	*	*	*	*	*	*	3682	0	0	
+
+Y 173  4217	*	*	*	1485	*	*	*	4963	1414	*	*	*	*	*	*	*	*	*	2460	173
+       0	*	*	*	*	*	*	3682	0	0	
+
+I 174  3166	*	*	*	*	*	*	1186	4217	*	*	2952	*	*	*	*	*	1910	*	*	174
+       0	*	*	*	*	*	*	3682	0	0	
+
+V 175  6277	*	*	*	*	*	*	3386	*	2085	*	*	*	*	*	*	*	609	*	*	175
+       0	*	*	*	*	*	*	3682	0	0	
+
+L 176  *	*	*	*	*	*	*	*	*	80	*	*	*	*	*	*	*	*	*	4217	176
+       0	*	*	*	*	*	*	3682	0	0	
+
+C 177  *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	177
+       23	*	5982	*	*	*	*	3682	0	0	
+
+I 178  *	*	*	*	*	*	*	980	*	*	*	*	*	*	*	*	*	1020	*	*	178
+       0	*	*	*	*	*	0	3682	0	1000	
+
+E 179  *	*	*	132	*	*	*	*	*	*	*	*	*	3512	*	*	*	*	*	*	179
+       0	*	*	*	*	*	0	3682	0	1000	
+
+N 180  2548	*	*	*	*	*	*	3626	*	*	*	734	*	*	*	*	3390	4285	*	*	180
+       0	*	*	*	*	*	0	3161	0	1000	
+
+S 181  2277	*	*	*	*	*	*	*	*	4789	2743	*	*	*	4101	1123	3463	*	*	*	181
+       0	*	*	2000	415	0	*	3026	1000	1000	
+
+F 182  3066	*	*	*	1100	*	4591	*	*	*	*	*	3236	*	*	4580	4486	4535	*	2871	182
+       69	*	4420	*	*	*	*	2899	0	0	
+
+M 183  *	*	*	2991	*	4311	4405	3859	*	*	1538	*	3459	*	3076	*	4946	3042	*	*	183
+       86	4110	*	2322	322	0	*	2712	1005	1016	
+
+T 184  4532	*	4217	*	*	4875	*	*	4112	*	*	3751	4864	4759	*	3289	828	*	*	*	184
+       0	*	*	*	*	*	*	2535	0	0	
+
+S 185  3284	*	2538	*	*	*	2392	*	*	3761	*	4626	*	3271	3791	2488	3914	*	*	*	185
+       99	3914	*	2000	415	*	*	2449	1000	0	
+
+F 186  3290	*	*	*	3518	4550	3705	*	*	4893	*	4551	2922	*	2708	2383	2857	*	*	*	186
+       0	*	*	*	*	*	*	2385	0	0	
+
+S 187  *	*	*	*	*	4153	3557	*	2230	3195	*	*	*	2907	2060	2614	*	*	*	*	187
+       0	*	*	*	*	*	*	2296	0	0	
+
+K 188  *	*	*	*	*	3235	*	*	468	*	*	*	*	*	2552	*	*	*	*	*	188
+       0	*	*	0	*	*	*	2105	0	0	
+
+//
+�HHsearch 1.5
+NAME  84792f9cbc9eb5adabb41b1a904360bb
+FAM   
+FILE  84792f9cbc9eb5adabb41b1a904360bb
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:17:16 2013
+LENG  51 match states, 51 columns in multiple alignment
+FILT  100 out of 113 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  4.4 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCCCCCCHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHCC
+>ss_conf PSIPRED confidence values
+987788867666888880999999999999999999999999999999819
+>Consensus
+MaehxxxxxxxxxgxMDxxxhexTyxgFixxxkxgtixxxxxllxlaifxx
+>84792f9cbc9eb5adabb41b1a904360bb
+MADHSHPAHGHVAGSMDITQQEKTFAGFVRMVTWAAVVIVAALIFLALANA
+>gi|126740567|ref|ZP_01756254.1| hypothetical protein RSK20926_04347 [Roseobacter sp. SK209-2-6]gi|126718368|gb|EBA15083.1| hypothetical protein RSK20926_04347 [Roseobacter sp. SK209-2-6]
+---------------MDTSVQEQTYEGFIKFSTRFCIFLVFVALFLAVFAT
+>gi|158422053|ref|YP_001523345.1| hypothetical protein AZC_0429 [Azorhizobium caulinodans ORS 571]gi|158328942|dbj|BAF86427.1| conserved hypothetical protein [Azorhizobium caulinodans ORS 571]
+MSEHGAIEYAT-ADGNDYAEHKRTYELFTALTKWGTVAVAALMVIMWFTL-
+>gi|337264849|ref|YP_004608904.1| aa3 type cytochrome c oxidase subunit IV [Mesorhizobium opportunistum WSM2075]gi|336025159|gb|AEH84810.1| aa3 type cytochrome c oxidase subunit IV [Mesorhizobium opportunistum WSM2075]
+MADHTPSGPVELGAKMDYAEHDRTYAGFLMLAKYGSLFCGAILLAMA----
+>gi|92117331|ref|YP_577060.1| hypothetical protein Nham_1786 [Nitrobacter hamburgensis X14]gi|91800225|gb|ABE62600.1| hypothetical protein Nham_1786 [Nitrobacter hamburgensis X14]
+MSDHSEMIFTT-ADGMDYPAHEQQFKTFVKIGMIATATVATIVVLMAIFIG
+>gi|296444936|ref|ZP_06886898.1| aa3 type cytochrome c oxidase subunit IV [Methylosinus trichosporium OB3b]gi|296257604|gb|EFH04669.1| aa3 type cytochrome c oxidase subunit IV [Methylosinus trichosporium OB3b]
+MGEHHK-----VASSAEFAEHEATYKGFLTLLKVSTAACVVTLLLLFFFV-
+>gi|254295291|ref|YP_003061314.1| aa3 type cytochrome C oxidase subunit IV [Hirschia baltica ATCC 49814]gi|254043822|gb|ACT60617.1| aa3 type cytochrome c oxidase subunit IV [Hirschia baltica ATCC 49814]
+--------GEYVRGQMDVKSQTATYSGFLKVTAWTSLLLTLILGY------
+>gi|83859915|ref|ZP_00953435.1| hypothetical protein OA2633_07939 [Oceanicaulis alexandrii HTCC2633]gi|83852274|gb|EAP90128.1| hypothetical protein OA2633_07939 [Oceanicaulis alexandrii HTCC2633]
+--------EEYIRGDMDISEHKASFDGFIGVSVYSTLVIVTTLLC------
+>gi|197106565|ref|YP_002131942.1| hypothetical protein PHZ_c3104 [Phenylobacterium zucineum HLK1]gi|196479985|gb|ACG79513.1| conserved hypothetical protein [Phenylobacterium zucineum HLK1]
+------PASDYHRGEMDIAEQRSTYHLVMLMTKWGSLYTAALILLLTM---
+>gi|220920257|ref|YP_002495558.1| hypothetical protein Mnod_0210 [Methylobacterium nodulans ORS 2060]gi|219944863|gb|ACL55255.1| conserved hypothetical protein [Methylobacterium nodulans ORS 2060]
+MASSNHASNDAYGPSMDGDTHEATYRGFVRFVEIATTVVVCWILSLGI---
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    4850	*	*	*	*	*	*	*	*	*	51	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	4126	0	0	
+
+A 2    559	*	*	*	*	4859	4850	*	*	*	*	*	*	*	*	1987	*	*	*	*	2
+       72	4369	*	704	1373	*	*	4126	1099	0	
+
+D 3    *	*	1269	1172	*	*	*	*	4333	*	*	5313	*	*	*	3917	*	*	*	*	3
+       0	*	*	*	*	*	*	4132	0	0	
+
+H 4    *	*	4628	*	5884	*	460	*	6081	*	*	5034	*	5960	*	4017	3937	*	*	5187	4
+       0	*	*	*	*	*	*	4132	0	0	
+
+S 5    5449	*	5262	4470	*	3621	2463	*	1776	*	5960	4155	4852	6571	4554	2581	5375	*	*	*	5
+       265	*	2577	*	*	*	*	4132	0	0	
+
+H 6    4264	*	5856	2447	*	3591	1352	*	4562	5790	*	*	3684	5924	*	*	3085	*	*	*	6
+       898	*	1110	*	*	270	2549	3953	0	1377	
+
+P 7    4217	*	*	4444	*	*	*	2413	*	3467	4981	*	2408	*	*	3200	2678	2868	*	*	7
+       0	*	*	*	*	*	0	3706	0	2095	
+
+A 8    1636	*	*	3295	*	2246	*	5019	*	5559	5940	*	*	*	*	4231	4492	2326	*	*	8
+       0	*	*	*	*	*	0	3707	0	2095	
+
+H 9    *	*	*	3824	5589	2467	5099	*	*	*	*	4853	2471	5151	*	3448	5195	*	*	1571	9
+       0	*	*	*	*	*	0	4251	0	2095	
+
+G 10   2597	*	1870	3956	*	5130	5295	5667	*	5160	*	*	*	*	*	2595	3197	3054	*	*	10
+       0	*	*	*	*	*	0	4264	0	2095	
+
+H 11   3968	*	*	2157	*	*	5130	5582	*	*	*	5160	6313	6476	*	*	1784	*	*	1642	11
+       604	*	1548	*	*	2542	272	4264	0	2095	
+
+V 12   4367	*	*	*	*	*	2822	3783	*	4206	*	*	*	5227	*	*	2179	1684	*	3004	12
+       0	*	*	*	*	1021	979	4026	0	2623	
+
+A 13   1400	*	*	*	*	1918	4888	*	5241	*	*	*	5791	*	2240	3913	*	*	*	*	13
+       0	*	*	*	*	0	*	4379	0	1844	
+
+G 14   2681	*	3351	3312	*	993	*	*	*	*	*	*	3443	*	*	4297	*	*	*	*	14
+       0	*	*	*	*	*	*	4546	0	0	
+
+S 15   3529	*	3958	1945	*	2346	*	*	5371	*	*	4856	3795	5797	*	2722	3592	*	6712	*	15
+       0	*	*	*	*	*	*	4559	0	0	
+
+M 16   4483	*	*	*	*	*	*	*	*	*	198	3584	*	*	*	*	*	*	*	*	16
+       0	*	*	*	*	*	*	4562	0	0	
+
+D 17   *	*	205	5463	*	*	*	*	6152	*	*	4026	*	6143	*	*	5614	*	*	*	17
+       0	*	*	*	*	*	*	4562	0	0	
+
+I 18   6333	6676	*	6366	5463	5860	*	1459	*	*	*	*	*	*	*	4918	4104	4262	5504	1334	18
+       0	*	*	*	*	*	*	4562	0	0	
+
+T 19   2018	*	4724	4066	*	*	4188	*	3188	*	*	6143	2677	6209	4822	2931	2923	6849	*	*	19
+       0	*	*	*	*	*	*	4562	0	0	
+
+Q 20   2295	*	6020	1318	*	5782	5344	*	*	6602	*	5323	*	4842	*	4906	3585	2737	*	*	20
+       49	*	4918	*	*	*	*	4562	0	0	
+
+Q 21   *	*	*	*	*	*	889	*	*	*	*	*	*	1120	*	*	*	*	*	*	21
+       0	*	*	*	*	*	0	4529	0	1072	
+
+E 22   4220	*	6059	636	*	*	6478	*	4387	5515	*	5597	*	4071	4766	4794	4528	6552	*	*	22
+       0	*	*	*	*	0	*	4529	0	1072	
+
+K 23   2610	*	5615	4742	*	4233	6207	*	1856	*	*	4568	*	2403	2916	4388	6610	*	6196	*	23
+       0	*	*	*	*	*	*	4562	0	0	
+
+T 24   5281	*	*	*	*	*	*	*	*	*	*	*	*	5485	*	5380	108	*	*	*	24
+       0	*	*	*	*	*	*	4562	0	0	
+
+F 25   *	*	*	*	1739	*	*	*	*	*	*	*	*	*	*	*	*	*	4349	618	25
+       0	*	*	*	*	*	*	4562	0	0	
+
+A 26   2894	*	2218	2865	*	5522	3675	*	2951	*	*	3126	*	6281	3988	3865	6426	6249	*	*	26
+       0	*	*	*	*	*	*	4562	0	0	
+
+G 27   3790	*	5435	*	4921	854	*	*	*	2683	5199	5925	*	6661	6281	3702	5694	*	*	*	27
+       0	*	*	*	*	*	*	4562	0	0	
+
+F 28   *	*	*	*	54	*	*	*	*	*	*	*	*	*	*	*	*	5585	*	5949	28
+       0	*	*	*	*	*	*	4562	0	0	
+
+V 29   4762	*	*	*	*	5382	*	1683	*	2232	2710	*	*	5614	*	*	5407	2198	*	*	29
+       0	*	*	*	*	*	*	4562	0	0	
+
+R 30   2833	*	4855	*	*	4048	*	*	1488	4525	6087	4289	*	*	3093	4014	3357	*	5504	*	30
+       0	*	*	*	*	*	*	4562	0	0	
+
+M 31   4074	*	*	*	1923	4537	*	4426	*	1532	2997	*	*	*	*	*	*	4346	4183	6362	31
+       0	*	*	*	*	*	*	4562	0	0	
+
+V 32   3318	*	*	*	6559	3488	*	5716	*	3762	4421	*	*	*	*	2641	1753	2296	*	*	32
+       0	*	*	*	*	*	*	4562	0	0	
+
+T 33   5238	*	*	4582	*	*	*	4197	1024	5338	4600	*	*	*	6649	5434	2012	4693	*	*	33
+       0	*	*	*	*	*	*	4562	0	0	
+
+W 34   *	*	*	*	5504	*	*	2601	4971	*	*	*	*	*	2845	*	*	3270	1417	2608	34
+       0	*	*	*	*	*	*	4562	0	0	
+
+A 35   3813	*	*	*	3750	1009	*	5042	*	4608	*	*	*	*	*	3026	3152	4295	*	*	35
+       0	*	*	*	*	*	*	4562	0	0	
+
+A 36   2747	4012	*	*	*	4225	*	4584	*	5402	*	*	*	*	*	2125	1492	3547	*	*	36
+       0	*	*	*	*	*	*	4562	0	0	
+
+V 37   2734	*	*	*	*	5465	*	1960	*	2040	4846	*	*	*	*	4802	5860	2215	*	5402	37
+       0	*	*	*	*	*	*	4562	0	0	
+
+V 38   1448	*	*	*	4070	4790	*	2581	*	3432	*	6013	*	*	*	5466	3683	2823	*	5585	38
+       0	*	*	*	*	*	*	4562	0	0	
+
+I 39   3607	3884	*	*	*	*	*	1974	*	3025	6426	6306	*	*	*	2789	4143	2016	*	*	39
+       0	*	*	*	*	*	*	4562	0	0	
+
+V 40   1535	6462	*	*	4775	6087	*	2054	*	3931	*	*	*	*	*	6209	5823	1973	*	*	40
+       0	*	*	*	*	*	*	4562	0	0	
+
+A 41   1954	3283	*	*	4274	4352	*	3924	*	3581	6059	5947	*	*	*	*	3420	1919	*	*	41
+       0	*	*	*	*	*	*	4562	0	0	
+
+A 42   4800	*	*	*	3551	6168	*	2060	*	1953	*	*	*	*	*	5425	3480	2237	4582	*	42
+       0	*	*	*	*	*	*	4562	0	0	
+
+L 43   3753	6735	*	*	*	5103	*	3322	*	913	4319	*	*	*	*	*	6827	2341	*	*	43
+       0	*	*	*	*	*	*	4562	0	0	
+
+I 44   3282	*	*	*	*	4936	*	2043	*	1433	*	*	*	*	*	5562	5126	2311	*	*	44
+       0	*	*	*	*	*	*	4562	0	0	
+
+F 45   2748	4617	*	*	1729	5904	*	4966	*	1584	*	*	*	*	*	5091	6578	4830	6791	4557	45
+       0	*	*	*	*	*	*	4562	0	0	
+
+L 46   6304	*	*	*	4496	6248	*	4233	*	1057	1416	*	*	*	*	*	*	5539	*	*	46
+       0	*	*	*	*	*	*	4447	0	0	
+
+A 47   696	*	*	*	5308	4932	*	3823	5507	*	6195	*	*	*	*	*	2917	5170	5237	4985	47
+       0	*	*	*	*	*	*	4447	0	0	
+
+L 48   6145	*	*	*	3420	*	*	1119	*	1980	3839	*	*	*	*	*	*	3201	*	*	48
+       0	*	*	*	*	*	*	4429	0	0	
+
+A 49   4551	6155	*	*	641	*	*	3645	*	4200	*	*	*	*	*	*	4692	2954	*	*	49
+       0	*	*	*	*	*	*	4004	0	0	
+
+N 50   2710	*	*	*	*	3679	*	3796	*	1386	*	2068	*	*	5648	*	5820	4704	*	*	50
+       0	*	*	*	*	*	*	3946	0	0	
+
+A 51   2144	*	*	*	*	1613	*	5673	*	*	*	*	*	*	4340	3275	2007	5282	*	*	51
+       0	*	*	0	*	*	*	3288	0	0	
+
+//
+�HHsearch 1.5
+NAME  86ed36c2fe7938800e5622d9b4acb515
+FAM   
+FILE  86ed36c2fe7938800e5622d9b4acb515
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 14:36:43 2013
+LENG  234 match states, 234 columns in multiple alignment
+FILT  112 out of 117 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  5.4 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCHHHHHHHHHCCCCCHHHHHHHHCCCCCEEEEEEECCCEECCCCEEEEEEECCCCCEEEEEEEECCHHHHHHCCCCCEEEEEEECCCEEECC
+CCCCCEEEECCEEECCCCCCCCCCCCCEEEEECCCCEEECCEEEEEECCEEEEEEEHHHHHHHHHHHHCCCCCCCCCCCCCEEEEEEEECCCCEEEEECC
+CCCCCCHHHHHHHHCCCCEEECCCCEEEEEEECC
+>ss_conf PSIPRED confidence values
+9845699596895325416733489999975659957998130453208886899866056786889999966889997536896589999713303125
+7778689978799679763476654545999889720864415998476887875437999999987453368987777312289999899988999886
+6899788887665416975875044799999569
+>Consensus
+xxxxxxxxxxxxlxxxsxxxxxxxxnLkxyYxxxxxxexxNvxxxxxxxxxxlxfxxxxxxxxxxxxlxvxxxxxxxxxkfkxkxVDIFgvxyxxxcxxx
+xxxxxxxxyGGVTkxnxxxxdxxkxixinvxxdgxxxxxxxxxixxxKkxVTlQELDfKlRkxLixxxxLYxxxxxxsxxxxGxIxxxxkdgxxxtxDLx
+xxxxxxxxxxLxxYxdNktIdsxxxhIdVxLxxx
+>86ed36c2fe7938800e5622d9b4acb515
+MSEKSEEINEKDLRKKSELQGTALGNLKQIYYYNEKAKTENKESHDQFRQHTILFKGFFTDHSWYNDLLVRFDSKDIVDKYKGKKVDLYGAYAGYQCAGG
+TPNKTACMYGGVTLHDNNRLTEEKKVPINLWLDGKQNTVPLETVKTNKKNVTVQELDLQARRYLQEKYNLYNSDVFDGKVQRGLIVFHTSTEPSVNYDLF
+GAQGQYSNTLLRIYRDNKTINSENMHIDIYLYTS
+>gi|21282488|ref|NP_645576.1| enterotoxin type C precursor [Staphylococcus aureus subsp. aureus MW2]gi|21203925|dbj|BAB94624.1| ENTEROTOXIN TYPE C PRECURSOR [Staphylococcus aureus subsp. aureus MW2]
+--ESQPDPTPDELHKSSEF-TGTMGNMKYLYD-DHYVSATKVKSVDKFLAHDLIYNISDKKLKNYDKVKTELLNEDLAKKYKDEVVDVYGSNYYVNCYFs
+SKDnvgkvtGGKTCMYGGITKHEGNHFDNgnl-QNVLIRVYENKRNTISF--EVQTDKKSVTAQELDIKARNFLINKKNLYEFNS--SPYETGYIKFIEN
+NGNTFWYDMMPAPGdkFDQSKYLMMYNDNKTVDSKRVKIEVHlttk----
+>gi|34536505|dbj|BAC87686.1| exotoxin G variant 5 [Streptococcus dysgalactiae subsp. equisimilis]gi|34536507|dbj|BAC87687.1| exotoxin G variant 6 [Streptococcus dysgalactiae subsp. equisimilis]
+---------------------------RFAYD-VTPLEYENVE-ITFVTTNNIH--I---NTGQKKSGCVLYVDSivslGITDNFiKGDKVDVFGLPYNF
+-----SSPNVDNIYGGVVKHSDdK---LQSLQFVGiLNQDGEETSLPSYTILIKHKQFTLQEFDFKIRKFLMETYSIYDS-E--SRYISGSFFLATKDSK
+HYEVDLFNKDDkLlDRNRFFKRYRDNKVFNSEEiSHFDIYLKT-
+>gi|225871304|ref|YP_002747251.1| exotoxin H precursor [Streptococcus equi subsp. equi 4047]gi|8117875|gb|AAF72809.1|AF186180_3 SeeH [Streptococcus equi]gi|225700708|emb|CAW95321.1| exotoxin H precursor [Streptococcus equi subsp. equi 4047]
+------------------YNTTNRHNLESLYKHdSNLIEADSIKnSPDIVTSHMLKYSVKD------KNLSVFFEKDWISQEFKDKEVDIYALSAQEACE
+--CPGKRYEAFGGITLTNSE---KkEIKVPINVWDKSKQHPPMF--ITVNKPKVTAQEVDIKVRKLLIKKYDIYNNRE--QKYSKGTVTLDLNSGKDIVF
+DLYYFGNGDFNSMLKIYSNNERIDSTQFHVDVS----
+>gi|71903885|ref|YP_280688.1| exotoxin type K precursor [Streptococcus pyogenes MGAS6180]gi|94990809|ref|YP_598909.1| exotoxin type C precursor [Streptococcus pyogenes MGAS10270]gi|71802980|gb|AAX72333.1| exotoxin type K precursor [Streptococcus pyogenes MGAS6180]gi|94544317|gb|ABF34365.1| Exotoxin type C precursor [Streptococcus pyogenes MGAS10270]
+--------------------DEILDNrrLKEIYN-KEIIEKNNIS-INAKQGTQLIFNTDEnTTVWndnTFKKVISSNLSPSQERMFnVGDHVNIFAIVk
+sYHVVCK----EQFNYSDGGIIKTSDV-KPEEKAIYINIFGEKELRTlTAKDKITFKNNIVTLQEIDVRLRKSLMgdSKIKLYEY-D--SLYKKGFWDIH
+YKDGGIRHTNLFTYPD---------YTDNETIDMSKvSHFDVHLNE-
+>gi|253730779|ref|ZP_04864944.1| superantigen family protein [Staphylococcus aureus subsp. aureus USA300_TCH959]gi|253725492|gb|EES94221.1| superantigen family protein [Staphylococcus aureus subsp. aureus USA300_TCH959]
+----------------------DKEALYRYYT-GKTMEMKNISALKH-GKNNLRFK----FRGIKI--QVLLPGND-KSKFQQRsyeGLDVFFVQEKR--
+---DKHDIFYTVGGVIQNNKTS-GVVSAPILNISKeKGEDAFVKGYPYYIKKEKITLKELDYKLRKHLIEKYGLYKTIS-----KDGRVKISLKDGSFYN
+LDLRS--------KLKFKYMGEVIESKQiKDIEVNLK--
+>gi|224475929|ref|YP_002633535.1| superantigen-like protein [Staphylococcus carnosus subsp. carnosus TM300]gi|222420536|emb|CAL27350.1| similar to exotoxin [Staphylococcus carnosus subsp. carnosus TM300]
+---------------------NQADELKKYYS-QTPEIFSNKKLT-QVeegSDKGKIYVKI--QSSWGAFINVIGnQSWGNVNKLRGKQVDVFGIKDKPT
+S------QYWWAYteyftGGVTPAANP---SAPVYPIKVTvKKNAHVKSSfdIKAFETRKDKITLKELDFQIRKALINNNNLYSN-----GQNTGTVQIT
+-TKDNQlFTFDLN---KRLENERANVYVDGK----------------
+>gi|22219371|pdb|1M4V|A Chain A, Crystal Structure Of Set3, A Superantigen-Like Protein From Staphylococcus Aureusgi|22219372|pdb|1M4V|B Chain B, Crystal Structure Of Set3, A Superantigen-Like Protein From Staphylococcus Aureus
+--------------------TKDIFDLRDYYS-GASKELKNVTG--YRYSKGgkhyLIFD----KHQKFTRIQIFGKDIERLKTRKNPGLDIFVVKEAE-
+----NRNGTVFSYGGVTKKNQGaYYDYLN--APKFVIkkeVDAGVYTHVKRHYIYKEEVSLKELDFKLRQYLIQNFDLYKKFP-----KDSKIKVIMKDG
+GYYTFELNKK--------LQPHRMSDVIDGRNiEKMEANI---
+>gi|261263454|gb|ACX55067.1| exotoxin I [Streptococcus dysgalactiae subsp. equisimilis]
+---------------------------------------------GPPFSGSLFYKNIP-YGNSSIELKVELNSVEKANFFSGKRVDIFTLEYSPPC---
+NSNIKKNSYGGITLS-------------------------------------------------------------------------------------
+----------------------------------
+>gi|166409297|dbj|BAG06666.1| enterotoxin T [Staphylococcus aureus]
+------------------------EGLKDFYS-KKIDVYTNKK-INEKDKY----SV-DIEVDNYV-YRINTLDDKILNQFkVGDYVDAWGHIINN----
+----KPigkvIKFYDGdISKHSP--LDKPTNIsyRINLFKEQKQTEVTPEkELEIGNRYLTMKQIDYRIKSYLVKKQQLYTE------FYNGKIEISMLD
+GKKHFIDLS---T--------YYYdpSNFTLDYTKiSHFDIYM---
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1000	0	0	
+
+S 2    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	2
+       0	*	*	*	*	*	*	1000	0	0	
+
+E 3    *	*	3056	1477	3571	*	*	3823	*	*	*	2433	*	*	*	2470	*	*	*	*	3
+       0	*	*	*	*	*	*	2999	0	0	
+
+K 4    2360	3995	*	*	*	*	4200	4198	2416	*	*	4436	*	*	*	2099	3857	3358	*	*	4
+       0	*	*	*	*	*	*	3201	0	0	
+
+S 5    3618	*	*	3584	*	*	*	*	4224	*	*	2798	*	1621	*	2139	3545	*	*	*	5
+       0	*	*	*	*	*	*	3326	0	0	
+
+E 6    3589	*	*	2037	4608	3934	*	*	*	4486	*	3249	2190	4041	*	3618	4168	*	*	*	6
+       0	*	*	*	*	*	*	3326	0	0	
+
+E 7    3618	*	1104	2581	*	*	*	*	*	*	*	3228	*	4608	4168	4411	4805	*	*	*	7
+       0	*	*	*	*	*	*	3326	0	0	
+
+I 8    *	*	*	4626	*	*	*	2049	*	*	*	*	768	*	*	*	4608	3480	*	*	8
+       69	*	4411	*	*	*	*	3326	0	0	
+
+N 9    *	*	3671	3529	*	*	*	*	1748	*	*	2150	*	*	3334	3527	2990	*	*	*	9
+       576	1602	*	291	2454	*	0	3273	1534	1026	
+
+E 10   *	*	*	2811	*	*	*	2181	*	3742	*	*	831	*	*	*	*	*	*	*	10
+       0	*	*	0	*	0	*	2893	1013	1534	
+
+K 11   *	*	2640	1663	*	4307	*	*	2396	*	*	*	*	*	*	1820	*	*	*	*	11
+       0	*	*	*	*	*	*	3426	0	0	
+
+D 12   *	*	1435	2157	*	*	*	*	*	*	*	4890	*	1994	*	3680	4534	*	*	*	12
+       0	*	*	*	*	*	*	3426	0	0	
+
+L 13   *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	13
+       0	*	*	*	*	*	*	3426	0	0	
+
+R 14   *	3682	*	*	*	*	1248	*	3679	*	*	1982	*	3595	3520	*	*	*	*	*	14
+       0	*	*	*	*	*	*	3426	0	0	
+
+K 15   *	*	4026	*	*	*	3135	*	686	*	*	4534	*	*	2643	*	*	*	*	*	15
+       575	*	1605	*	*	*	*	3426	0	0	
+
+K 16   2904	*	*	*	*	*	*	*	1504	*	*	*	*	*	*	1390	*	2920	*	*	16
+       0	*	*	*	*	*	0	3076	0	1534	
+
+S 17   *	*	*	*	*	*	*	*	*	*	*	3852	*	*	*	104	*	*	*	*	17
+       241	*	2702	*	*	0	*	3076	0	1534	
+
+E 18   *	*	3156	1774	*	*	*	*	1319	*	*	*	*	3220	*	3521	*	*	*	*	18
+       645	1472	*	1000	1000	0	*	3350	1534	1167	
+
+L 19   *	*	*	*	2343	*	*	*	*	958	*	*	*	*	*	*	*	3778	*	2216	19
+       841	3432	1518	0	*	*	*	3578	1101	0	
+
+Q 20   *	*	1601	*	*	*	*	*	3504	*	*	2020	*	2672	*	3408	3564	*	*	*	20
+       1353	717	*	0	*	0	*	3127	1680	1604	
+
+G 21   *	*	1942	*	*	3815	*	*	3186	*	*	*	4691	*	*	2695	1867	3451	*	*	21
+       0	*	*	*	*	0	*	4239	0	1534	
+
+T 22   4952	*	*	4896	5088	2532	*	4078	2157	3720	*	4745	*	3966	*	5808	2098	*	*	5668	22
+       0	*	*	3459	138	*	*	5203	1000	0	
+
+A 23   2308	*	2628	4851	*	*	*	5375	4648	4257	*	2223	*	4986	5088	4616	3224	4673	*	5426	23
+       96	5039	4890	1959	429	*	*	5598	1094	0	
+
+L 24   4998	*	*	*	4673	*	*	2706	5214	1878	3223	*	4989	*	5434	4813	3036	3135	5809	5246	24
+       0	*	*	*	*	*	0	5587	0	1259	
+
+G 25   4433	*	3473	4017	4489	3216	3897	5164	3150	4852	*	3020	*	3036	6908	3652	5877	5726	*	4700	25
+       0	*	*	*	*	*	0	5737	0	1259	
+
+N 26   5423	*	2781	2910	*	5226	*	5429	4685	*	5644	1007	5734	6283	*	4530	5890	*	*	*	26
+       83	4153	*	1000	1000	0	*	5725	1187	1259	
+
+L 27   4378	*	*	*	*	*	*	3586	*	414	4182	*	*	*	*	*	*	4652	*	5416	27
+       0	*	*	*	*	*	*	5819	0	0	
+
+K 28   *	*	6246	5061	*	*	4310	3808	1447	5493	6337	5221	*	*	1835	4971	5117	*	6164	4266	28
+       0	*	*	*	*	*	*	5992	0	0	
+
+Q 29   4649	6328	2916	3521	3874	4888	4017	*	3251	6104	6466	2861	*	4418	4311	4206	5715	5430	*	3289	29
+       10	7185	*	1585	585	*	*	5992	1000	0	
+
+I 30   4132	*	5235	*	3254	*	5853	3155	*	2723	*	6617	*	5672	*	4271	6905	*	*	1182	30
+       66	*	4474	*	*	*	*	5992	0	0	
+
+Y 31   *	*	*	*	5335	*	*	*	*	*	5521	*	*	*	*	*	*	*	*	69	31
+       0	*	*	*	*	*	0	5905	0	1259	
+
+Y 32   4103	*	3623	5034	5614	5064	*	5324	3899	*	5041	2735	*	*	5521	1969	2332	*	*	4988	32
+       1987	*	419	*	*	*	0	5905	0	1259	
+
+Y 33   *	*	3258	*	4766	*	2085	*	2951	*	*	3464	*	4500	*	2601	3217	*	*	3530	33
+       838	1454	3725	0	*	172	3154	3261	1484	4279	
+
+N 34   *	*	4029	6765	*	2432	6320	4352	2575	*	*	3840	*	2671	3830	3586	5802	4540	*	3765	34
+       0	*	*	*	*	*	0	5795	0	1916	
+
+E 35   4961	*	2892	3037	*	*	5255	5802	3096	6619	*	3611	2235	5399	3799	6463	2847	*	*	*	35
+       48	4919	*	1115	893	0	*	5795	1959	1916	
+
+K 36   6319	*	*	*	3473	4903	3634	3377	4927	4675	*	*	2154	6537	*	2180	3921	4979	*	4025	36
+       0	*	*	*	*	*	*	5992	0	0	
+
+A 37   5005	6150	5410	3871	2465	6633	*	2718	4265	2989	6001	*	*	*	*	*	3670	2397	*	4114	37
+       0	*	*	*	*	*	*	5992	0	0	
+
+K 38   7055	*	2501	1480	*	*	*	3519	3929	*	*	3729	*	6466	*	3614	3777	3985	*	*	38
+       0	*	*	*	*	*	*	5992	0	0	
+
+T 39   3967	*	*	4171	2951	4282	3518	5111	3367	2360	5348	*	6961	*	5693	5695	5455	6123	*	2446	39
+       0	*	*	*	*	*	*	5992	0	0	
+
+E 40   *	*	5843	2376	*	*	6683	5257	1811	*	*	5184	*	4283	4964	2549	2681	5001	*	*	40
+       0	*	*	*	*	*	*	5992	0	0	
+
+N 41   *	*	4631	*	*	3998	*	6225	4200	*	*	380	6246	*	*	4395	*	*	*	*	41
+       0	*	*	*	*	*	*	5992	0	0	
+
+K 42   *	5196	*	6072	*	*	*	2227	1980	4470	5943	*	*	7471	5808	6806	5400	1422	*	*	42
+       0	*	*	*	*	*	*	5992	0	0	
+
+E 43   *	*	5097	3677	*	6254	*	3673	2019	6246	6633	3915	5001	*	4933	2619	2699	5312	4088	*	43
+       285	5843	2627	0	*	*	*	5992	1038	0	
+
+S 44   4461	*	4726	*	*	1603	*	5166	*	3162	*	3818	5412	*	*	2293	3136	4802	*	*	44
+       47	*	4977	*	*	0	*	5611	0	1740	
+
+H 45   *	*	4688	4874	6122	5255	6021	2551	3738	4022	*	4175	5811	5185	*	4717	3441	3630	4563	2250	45
+       191	7089	3101	1000	1000	*	0	5987	1000	1094	
+
+D 46   5994	*	1869	3835	*	3890	6499	4120	3430	*	*	2754	*	*	3560	4992	3525	4695	*	5518	46
+       13	6775	*	1000	1000	172	3154	5621	1000	1699	
+
+Q 47   5934	*	*	2893	3620	4819	5610	4479	3297	5294	*	5095	5799	1863	4171	4417	5687	*	*	3381	47
+       544	2668	2675	1449	658	*	0	5943	1752	1033	
+
+F 48   *	*	5360	6509	2381	6860	5779	4880	2510	2690	*	4504	3919	6551	4224	4487	6543	3278	*	4361	48
+       58	5686	5647	1585	585	155	3294	5827	1008	1772	
+
+R 49   *	*	4562	4654	5774	2447	*	4701	3511	1700	*	5294	6998	5885	4415	5357	3066	*	*	4590	49
+       0	*	*	*	*	0	*	5919	0	1116	
+
+Q 50   3996	*	2715	4041	4832	3017	*	*	3087	*	*	3946	5977	4220	7354	2149	3902	*	7619	6650	50
+       72	6239	4832	2322	322	*	*	5997	1010	0	
+
+H 51   *	*	4594	*	4760	5774	1721	6966	2707	*	*	1859	6373	*	6002	6860	3444	*	*	4829	51
+       180	*	3089	*	*	*	0	5959	0	1144	
+
+T 52   *	*	1928	6550	5684	2540	5694	*	4924	5949	5714	3831	*	2928	6583	5602	3088	3969	*	4898	52
+       68	4439	*	1265	776	514	1738	5860	1144	1684	
+
+I 53   5690	*	*	*	4798	*	*	3595	4646	929	3824	5222	*	*	*	5608	4541	2880	*	*	53
+       144	*	3398	*	*	*	0	5897	0	1236	
+
+L 54   *	*	6111	3707	7110	*	4453	1458	5120	3228	*	3091	*	6307	4145	*	3885	3967	*	4700	54
+       121	*	3638	*	*	*	0	5836	0	1806	
+
+F 55   *	*	*	*	989	*	4296	4427	*	7115	4205	5899	*	*	*	*	*	3212	*	2234	55
+       0	*	*	*	*	2092	386	5663	0	2122	
+
+K 56   4159	6269	3891	*	7185	5940	*	2868	2897	5095	5975	2647	3869	*	5548	3044	4543	3941	5395	5533	56
+       929	4175	1254	2500	281	1440	663	5803	1828	1860	
+
+G 57   4140	*	*	4331	*	4807	*	1522	3994	*	*	3304	*	*	*	5357	2466	2833	*	*	57
+       639	*	1482	*	*	2190	357	5078	0	3338	
+
+F 58   *	*	4505	*	2896	*	*	2966	3341	2760	*	3033	*	3342	5191	3484	4059	4328	*	*	58
+       1311	3540	969	1182	839	3758	111	4553	1173	3587	
+
+F 59   *	*	1153	2603	2995	3516	4129	*	4016	*	*	*	4217	*	*	*	*	*	*	*	59
+       523	2505	2966	0	*	3999	93	4278	1187	4286	
+
+T 60   *	*	*	*	*	2388	*	3727	4679	4584	*	4079	*	*	*	3157	1055	*	*	*	60
+       244	*	2684	*	*	318	2338	3912	0	4213	
+
+D 61   *	*	3023	3853	5662	5669	*	5956	1967	5025	*	3468	3959	2918	5619	4060	5197	5157	*	4535	61
+       0	*	*	*	*	4038	91	5751	0	1948	
+
+H 62   *	*	3736	5117	*	3253	2980	4708	5269	4048	*	3595	*	4628	3609	3611	3853	2703	*	5055	62
+       151	3663	5599	0	*	142	3415	5799	1283	1890	
+
+S 63   5303	*	3166	*	*	3215	7216	5871	3527	4143	5243	3387	4082	3863	5125	2808	5860	5054	3694	4554	63
+       97	3941	*	1315	742	*	0	5937	1269	1102	
+
+W 64   *	*	4233	3496	6042	4273	6066	6816	3210	*	4952	2815	*	2312	*	3752	3817	*	2966	6563	64
+       13	*	6842	*	*	1291	758	5937	0	1102	
+
+Y 65   5664	*	5651	*	2937	4905	6272	6045	3120	5119	*	3718	*	4110	*	3705	4970	4324	*	1590	65
+       0	*	*	*	*	0	*	5950	0	1100	
+
+N 66   4707	*	3184	5923	5379	6475	5253	3677	2771	*	*	2098	*	*	4530	3601	3679	4630	*	3811	66
+       488	*	1802	*	*	*	*	5997	0	0	
+
+D 67   6394	*	1911	3846	4748	5682	3472	4633	2889	5156	*	4239	*	4093	4564	3452	4749	*	*	5632	67
+       0	*	*	*	*	2768	229	5627	0	2389	
+
+L 68   5650	*	*	5901	5261	5776	*	2540	4849	1361	*	*	*	*	*	*	*	1874	*	4312	68
+       132	*	3517	*	*	0	*	5753	0	2192	
+
+L 69   *	5075	4223	*	5860	*	*	3793	1814	3738	*	3651	*	3082	2835	4498	4913	5401	*	5102	69
+       64	*	4533	*	*	*	0	5922	0	1259	
+
+V 70   5031	*	5904	*	*	*	*	2668	*	3398	*	*	*	*	*	3143	2608	1240	*	*	70
+       0	*	*	*	*	1303	749	5855	0	1467	
+
+R 71   4460	*	5954	1643	2690	5639	*	6223	4995	4110	*	4358	*	4402	6062	3392	3965	5737	5228	5341	71
+       0	*	*	*	*	*	0	5922	0	1259	
+
+F 72   *	*	*	*	1771	3030	*	4559	*	1406	6655	4311	*	*	*	4828	5334	*	*	4494	72
+       127	3565	*	0	*	*	0	5922	1343	1259	
+
+D 73   4996	*	4850	2839	5802	5954	6759	3696	3072	2509	*	3115	5577	4890	*	4804	4688	3110	*	5737	73
+       0	*	*	*	*	*	0	5922	0	1259	
+
+S 74   *	*	2969	5215	*	2023	5884	*	5761	*	*	2115	*	*	*	1705	5246	*	*	*	74
+       0	*	*	*	*	*	0	5922	0	1259	
+
+K 75   5707	*	3617	3854	5634	*	*	6545	1939	*	*	4002	3949	5092	6800	2338	4542	4732	3399	*	75
+       147	3365	*	2076	390	*	0	5901	1426	1259	
+
+D 76   3810	*	1507	2151	6675	3131	*	*	4438	6213	*	6500	*	*	*	3696	6106	*	5769	4409	76
+       445	*	1914	*	*	*	0	5901	0	1259	
+
+I 77   4271	*	4734	4535	*	*	*	2301	3702	2511	3563	3129	*	4516	4774	*	3892	4688	*	5213	77
+       0	*	*	*	*	308	2378	5523	0	2463	
+
+V 78   2122	*	6431	3767	5745	6953	6781	3235	2631	3733	*	7378	*	*	6680	3036	3832	3624	*	5829	78
+       0	*	*	*	*	*	0	5901	0	1259	
+
+D 79   5119	*	2736	3594	*	4987	*	*	2640	5851	*	2048	*	3249	4253	3684	4273	*	*	*	79
+       0	*	*	3459	138	0	*	5901	1259	1259	
+
+K 80   6034	*	4510	3711	5795	*	4070	7042	1292	4723	5891	4562	*	2580	4019	6195	5429	6934	*	*	80
+       13	6786	*	1000	1000	*	*	6033	1007	0	
+
+Y 81   *	*	6203	*	910	5218	*	7358	6786	3214	*	*	*	*	4840	*	*	5407	*	2024	81
+       311	2366	*	0	*	*	*	6033	1931	0	
+
+K 82   6012	*	5329	4998	6284	5333	5255	4949	1037	5635	*	4128	6677	4887	3338	5321	6405	3504	*	*	82
+       10	*	7147	*	*	*	*	6033	0	0	
+
+G 83   5256	*	2102	3256	*	1761	5612	*	7134	*	*	2417	6927	4248	6892	6013	4856	*	*	7146	83
+       133	3503	*	259	2604	*	0	6031	1408	1000	
+
+K 84   *	*	2403	4254	*	3354	5860	*	1205	6782	*	5296	5006	6372	3490	5643	5903	*	*	7300	84
+       407	2025	*	1471	646	0	*	6044	2192	1009	
+
+K 85   5728	*	4634	4445	*	2672	4431	*	2331	*	*	1786	*	4982	5123	6820	4809	6772	*	3491	85
+       0	*	*	*	*	*	*	6042	0	0	
+
+V 86   *	*	*	*	*	*	*	3464	7263	2147	*	*	*	5100	6810	*	*	646	*	*	86
+       0	*	*	*	*	*	*	6042	0	0	
+
+D 87   6019	*	142	*	*	*	*	*	*	*	*	3673	*	*	*	*	*	*	*	*	87
+       0	*	*	*	*	*	*	6042	0	0	
+
+L 88   4513	*	*	*	6616	*	*	1180	*	3718	6019	*	*	*	*	*	*	1275	*	*	88
+       0	*	*	*	*	*	*	6042	0	0	
+
+Y 89   *	*	*	*	497	*	*	*	*	*	*	*	*	*	*	*	*	*	4575	2002	89
+       0	*	*	*	*	*	*	6042	0	0	
+
+G 90   3158	*	*	*	5068	921	*	5533	*	5680	*	*	6000	*	*	6019	5794	2279	*	4883	90
+       72	*	4361	*	*	*	*	6042	0	0	
+
+A 91   4018	*	*	*	*	5392	5355	2769	*	2117	*	*	*	*	*	4603	4198	1262	*	*	91
+       0	*	*	*	*	*	0	5931	0	1259	
+
+Y 92   4340	*	6590	4177	6075	*	*	4053	2919	4581	*	3209	2965	5248	2890	2986	*	5899	*	3390	92
+       88	4078	*	1303	750	*	0	5931	1259	1259	
+
+A 93   4362	*	3578	1697	4179	6711	*	5355	*	6130	*	*	*	*	*	*	*	*	*	1134	93
+       0	*	*	*	*	*	0	5931	0	1259	
+
+G 94   4693	*	4430	3401	4701	2288	5899	5141	3539	4242	*	3311	*	4619	6653	3134	*	*	*	2968	94
+       0	*	*	3734	113	*	0	5931	1259	1259	
+
+Y 95   4139	*	3699	3422	3856	4080	5154	4046	5212	6075	*	3226	4984	*	5640	3781	5716	3650	6038	2564	95
+       1007	*	993	*	*	*	0	5931	0	1259	
+
+Q 96   4770	*	5718	5087	5013	5535	4105	4808	3685	3943	*	3454	4316	2722	*	*	2042	4170	*	4860	96
+       34	*	5439	*	*	*	0	4600	0	3529	
+
+C 97   *	519	5912	*	*	*	*	4241	*	*	*	*	*	*	5861	3314	*	4359	5701	4416	97
+       635	*	1490	*	*	*	0	4736	0	3551	
+
+A 98   4421	*	*	3236	4392	*	3819	4768	2422	3092	*	*	*	*	*	*	4982	*	*	1488	98
+       674	*	1421	*	*	*	0	4175	0	4109	
+
+G 99   *	*	*	*	1809	1628	*	4038	3454	2908	*	*	*	*	*	*	*	4067	*	4438	99
+       1175	844	*	1423	673	*	0	3214	2232	4480	
+
+G 100  4332	*	3910	2005	*	1904	*	3454	2617	*	*	*	*	*	4665	3761	*	*	*	*	100
+       0	*	*	*	*	1085	920	3214	0	4480	
+
+T 101  6758	4961	2319	5045	*	3076	4562	*	4322	*	*	2278	6066	*	5188	2456	3535	*	*	*	101
+       53	6758	5219	0	*	4495	65	5197	1007	3029	
+
+P 102  4133	*	4967	3442	4670	*	*	4598	3146	6177	*	3860	2801	4494	2211	4071	5148	5098	*	5510	102
+       217	2839	*	2391	305	2921	204	5281	2018	3009	
+
+N 103  5923	*	3537	2922	4156	4335	4162	6718	3958	*	*	2304	4514	2960	*	3727	6058	4578	*	5450	103
+       56	5657	5799	2312	325	247	2669	5452	1107	2766	
+
+K 104  3144	*	3693	5355	*	2334	*	4882	2199	5745	*	4080	*	3130	3410	*	6065	5646	*	6139	104
+       0	*	*	*	*	2472	287	5926	0	1327	
+
+T 105  5319	*	4366	4990	5899	3607	*	3588	3531	5245	*	5008	5355	5749	3615	3220	1921	4527	*	5073	105
+       55	4738	*	1876	459	*	0	5931	1140	1259	
+
+A 106  2812	6389	4752	4896	5641	6552	5021	4297	3085	4798	6960	2964	*	4532	6693	4329	3011	4628	4656	3923	106
+       0	*	*	*	*	*	0	5931	0	1259	
+
+C 107  5406	1678	*	5777	4719	*	6107	5867	4210	7396	6721	3756	*	*	*	3988	5127	*	4147	1814	107
+       0	*	*	*	*	*	0	5931	0	1259	
+
+M 108  4987	*	*	*	5355	*	*	2574	*	3689	2426	*	*	*	*	1683	2759	4232	*	*	108
+       0	*	*	*	*	0	*	5931	0	1259	
+
+Y 109  6815	*	4931	6616	5218	*	*	2492	6779	*	*	4471	*	*	*	5946	*	3220	*	822	109
+       114	3724	*	2322	322	*	*	6042	1343	0	
+
+G 110  *	*	5363	*	*	84	*	*	*	*	*	*	*	*	5824	6124	*	*	*	*	110
+       72	*	4361	*	*	*	*	6042	0	0	
+
+G 111  *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	111
+       63	4538	*	0	*	0	*	5931	1479	1259	
+
+V 112  6600	*	*	*	*	*	*	1430	*	3674	*	*	*	*	*	*	5980	931	*	*	112
+       0	*	*	*	*	*	*	6042	0	0	
+
+T 113  *	*	*	*	*	*	*	4377	*	*	*	*	*	*	*	4286	280	3700	*	*	113
+       0	*	*	*	*	*	*	6042	0	0	
+
+L 114  6574	*	*	4390	6462	*	*	5100	1189	2471	6549	4411	2665	6026	6465	6801	5398	*	*	7019	114
+       0	*	*	*	*	*	*	6042	0	0	
+
+H 115  2693	*	*	*	*	*	1862	*	3549	*	*	4350	5767	*	*	3115	2198	4620	*	4522	115
+       23	*	5972	*	*	*	*	6042	0	0	
+
+D 116  3709	*	2830	2595	*	5067	6307	*	*	*	*	1319	*	5111	*	2909	*	6372	*	*	116
+       0	*	*	*	*	0	*	5966	0	1042	
+
+N 117  *	*	3185	3869	*	2694	*	*	3191	*	*	2239	4585	3946	4745	2876	4579	5393	*	*	117
+       163	3945	4585	0	*	*	*	5994	1298	0	
+
+N 118  5447	*	7287	3939	*	4310	*	*	3109	*	*	1423	4454	3954	3879	4190	4172	4762	*	4612	118
+       959	4762	1156	0	*	*	0	5903	1128	1173	
+
+R 119  4071	*	3917	4878	*	*	2965	*	2139	*	*	4220	6404	2693	4832	2956	4129	5245	*	5832	119
+       178	*	3108	*	*	1591	582	4868	0	3298	
+
+L 120  *	*	*	4534	4190	*	5975	3320	3661	1424	*	5097	*	*	5477	5754	*	3761	*	2394	120
+       354	2202	*	210	2885	3203	166	5325	1791	2869	
+
+T 121  5016	*	1191	2850	*	3156	*	4696	3989	*	*	4194	5495	*	5862	4076	5300	*	*	*	121
+       60	*	4621	*	*	294	2441	5425	0	2681	
+
+E 122  4948	*	5207	3582	4608	6320	5923	4208	2307	4540	*	3732	7412	3389	4974	2868	4705	6549	*	3420	122
+       351	2503	4655	2055	397	*	0	5893	2241	1452	
+
+E 123  5270	*	3213	2586	*	4867	*	3417	3886	4999	*	5832	2732	5894	5728	4537	5612	2387	*	6101	123
+       26	5832	*	415	1999	602	1551	5850	1050	1915	
+
+K 124  4720	*	*	*	*	*	4752	5793	1243	*	*	3057	5301	3952	3113	3568	3848	*	*	7634	124
+       55	*	4740	*	*	3522	131	5936	0	1289	
+
+K 125  4397	5648	7290	4028	*	6576	4091	6632	2884	4249	*	1749	4301	*	5695	4148	2939	4533	*	*	125
+       0	*	*	*	*	*	0	5922	0	1436	
+
+V 126  4766	*	*	*	*	*	*	1104	5122	5726	*	*	2946	5035	*	*	5720	2510	*	3387	126
+       64	4520	*	1000	1000	0	*	5922	1173	1436	
+
+P 127  6758	*	5654	7830	5192	3060	6166	3537	4721	4346	*	3319	2133	*	2930	5395	4940	4578	*	3746	127
+       20	*	6196	*	*	*	*	6004	0	0	
+
+I 128  5854	5496	*	*	5241	*	*	1694	6627	2120	3610	*	6732	*	*	*	*	1768	*	*	128
+       0	*	*	*	*	*	0	5993	0	1034	
+
+N 129  5298	*	*	4072	4571	4254	7124	4530	2923	5282	*	1140	6554	4227	4989	6104	6623	5057	*	6845	129
+       78	4254	*	0	*	0	*	5993	1218	1034	
+
+L 130  *	*	*	*	6762	*	*	2291	4861	1774	7027	*	*	*	*	*	7453	1164	*	*	130
+       0	*	*	*	*	*	*	6007	0	0	
+
+W 131  6790	*	*	5301	2407	*	*	5871	3072	5001	*	3890	*	4959	*	3671	2766	6762	2376	3592	131
+       188	3030	*	0	*	*	*	6007	1643	0	
+
+L 132  *	*	4134	3337	*	4951	*	2016	1621	5760	*	5807	*	5198	4303	7119	6810	3196	*	*	132
+       477	2047	4663	357	2190	*	*	6007	2171	0	
+
+D 133  6549	*	1152	3442	*	*	7506	4955	3895	*	*	2374	*	*	6981	5317	3569	5467	*	6686	133
+       13	*	6749	*	*	*	0	5985	0	1153	
+
+G 134  6944	*	3620	6265	*	757	6797	*	3395	*	*	3683	6750	4617	*	3755	*	*	*	*	134
+       0	*	*	*	*	0	*	5974	0	1213	
+
+K 135  4068	*	5127	2734	6771	4217	3500	3482	2243	4850	7091	4908	6952	4553	4892	4129	5866	3729	*	*	135
+       0	*	*	*	*	*	*	6004	0	0	
+
+Q 136  *	*	3868	4532	7091	3918	3704	6831	3774	5242	*	2544	5276	1572	6744	5031	*	5033	*	5284	136
+       0	*	*	*	*	*	*	6004	0	0	
+
+N 137  4496	*	5852	4111	*	4749	5297	4275	3147	4003	*	4774	*	3401	5902	3917	1649	4110	*	*	137
+       0	*	*	*	*	*	*	6004	0	0	
+
+T 138  5284	*	3752	2790	3358	*	6065	4350	3438	3382	7161	5296	5930	6257	6682	4119	2287	6744	*	4005	138
+       100	3902	*	177	3112	*	*	6004	1316	0	
+
+V 139  4625	*	4858	*	*	4678	*	2755	5742	4833	*	6255	4823	5996	*	2300	2301	2321	*	6183	139
+       10	*	7162	*	*	*	0	6004	0	1000	
+
+P 140  5893	*	6797	5091	2208	3966	5217	5378	4663	4567	5186	5841	3420	5323	5590	2411	4316	3651	*	5058	140
+       465	2863	2857	474	1836	0	*	6002	1735	1030	
+
+L 141  *	*	6914	*	3849	5214	4283	3506	2869	2761	6429	4709	4360	6238	7212	3288	2684	4473	*	4321	141
+       219	5997	2996	1000	1000	*	0	5783	1039	1818	
+
+E 142  7115	*	2128	2834	6494	4756	*	7125	3696	6537	*	3513	3883	6476	5994	3057	4311	5326	*	3282	142
+       387	2371	4575	0	*	893	1116	5525	1729	2384	
+
+T 143  4614	*	3041	3338	4149	*	5453	5121	2164	4075	6718	7232	4454	*	5568	4286	2973	5329	*	4011	143
+       0	*	*	*	*	0	*	5801	0	1823	
+
+V 144  *	*	7328	*	2703	6818	5490	1617	*	4596	*	7416	*	*	*	*	*	2221	*	2175	144
+       20	*	6200	*	*	*	*	6004	0	0	
+
+K 145  5694	*	5910	3211	5389	*	*	4356	2415	4590	*	5693	*	3294	4584	2566	2562	*	*	4236	145
+       28	5677	*	0	*	0	*	6014	1043	1030	
+
+T 146  6540	*	*	*	3761	3987	*	1413	6256	6262	*	6825	*	5605	*	*	1444	4581	*	6380	146
+       70	5488	5317	497	1780	*	*	6015	1095	0	
+
+N 147  *	*	2304	4462	5983	5360	*	5656	2967	*	*	1571	*	4147	6292	5135	4566	*	*	3508	147
+       0	*	*	*	*	0	*	5954	0	1259	
+
+K 148  *	*	*	*	*	*	6133	*	152	*	6317	3769	*	*	*	*	*	*	*	*	148
+       0	*	*	*	*	*	*	6015	0	0	
+
+K 149  6730	*	5380	1493	*	*	*	6808	1348	*	*	4374	3656	*	4816	4991	6051	*	*	*	149
+       30	*	5605	*	*	*	*	6015	0	0	
+
+N 150  5269	*	4382	1820	5996	*	*	3570	3113	4626	4140	3808	4978	3724	*	6623	4325	3922	*	5303	150
+       0	*	*	*	*	0	*	6005	0	1069	
+
+V 151  *	*	*	*	4698	5605	*	1921	*	3642	4886	*	5789	*	*	*	*	876	*	*	151
+       0	*	*	*	*	*	*	6015	0	0	
+
+T 152  6872	*	*	*	*	*	*	6808	*	*	*	5605	6554	*	*	1662	654	*	*	*	152
+       0	*	*	*	*	*	*	6015	0	0	
+
+V 153  2483	5605	*	*	3833	*	*	3215	*	993	5383	*	*	*	*	*	*	3376	*	*	153
+       0	*	*	*	*	*	*	6015	0	0	
+
+Q 154  *	*	*	*	*	*	*	*	1131	*	*	*	*	936	*	5605	*	*	*	*	154
+       0	*	*	*	*	*	*	6015	0	0	
+
+E 155  *	*	*	66	*	*	*	*	*	*	*	*	*	5383	5605	*	*	*	*	*	155
+       0	*	*	*	*	*	*	6015	0	0	
+
+L 156  *	*	*	*	4409	*	*	2167	*	681	*	*	*	*	*	*	5853	3489	*	*	156
+       0	*	*	*	*	*	*	6015	0	0	
+
+D 157  *	*	48	6378	*	*	*	*	*	*	*	*	*	*	*	5605	*	*	*	*	157
+       0	*	*	*	*	*	*	6015	0	0	
+
+L 158  4827	6373	*	*	1178	*	*	3552	*	3241	*	*	*	*	*	*	5726	2704	*	2763	158
+       0	*	*	*	*	*	*	6015	0	0	
+
+Q 159  *	*	*	*	*	*	*	*	577	6715	*	6808	*	3295	2403	*	5605	*	*	*	159
+       0	*	*	*	*	*	*	6015	0	0	
+
+A 160  3232	*	*	*	*	*	*	2178	*	1271	*	*	*	*	*	4779	4361	2530	*	*	160
+       70	*	4400	*	*	*	*	6015	0	0	
+
+R 161  *	*	*	*	*	*	*	*	5360	*	*	*	*	*	36	*	*	*	*	*	161
+       0	*	*	0	*	0	*	5954	1259	1259	
+
+R 162  *	*	*	4461	6730	*	4375	*	862	*	*	3527	*	3122	4157	5383	5303	*	*	4641	162
+       0	*	*	*	*	*	*	6015	0	0	
+
+Y 163  4741	*	*	*	3790	*	2984	5098	3505	5011	6841	6808	*	3516	5564	3795	4406	6770	5530	1559	163
+       0	*	*	*	*	*	*	6015	0	0	
+
+L 164  5564	*	*	*	4991	*	*	5789	*	106	*	*	*	*	*	*	*	*	*	*	164
+       0	*	*	*	*	*	*	6015	0	0	
+
+Q 165  *	*	*	5764	*	*	4764	1236	*	5066	2889	4401	*	2830	*	5868	4112	3601	*	6613	165
+       71	4377	*	1000	1000	*	*	6015	1187	0	
+
+E 166  6051	*	2145	1923	*	5903	*	*	2164	6018	*	3009	*	4179	*	4047	*	*	*	*	166
+       22	6018	*	1000	1000	*	*	6015	1029	0	
+
+K 167  6292	*	5590	2770	*	*	4312	*	1582	6730	*	2133	*	3329	5181	5826	4608	6314	*	*	167
+       0	*	*	*	*	*	*	6015	0	0	
+
+Y 168  *	*	*	4750	3634	*	3095	3691	2443	5288	*	4532	*	5383	*	5800	*	*	*	1347	168
+       0	*	*	*	*	*	*	6015	0	0	
+
+N 169  *	*	3244	7358	*	2502	5853	5365	1827	6697	*	1928	*	3732	5942	6133	6613	*	*	*	169
+       0	*	*	*	*	*	*	6015	0	0	
+
+L 170  *	*	*	*	*	*	*	2339	*	334	6808	*	*	*	*	*	*	*	*	*	170
+       0	*	*	*	*	*	*	6015	0	0	
+
+Y 171  *	6871	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	12	171
+       0	*	*	*	*	*	*	5999	0	0	
+
+N 172  *	*	3369	2841	*	2673	4960	*	2483	*	*	2547	*	3984	*	3584	4044	*	*	5832	172
+       51	*	4860	*	*	*	*	5999	0	0	
+
+S 173  4851	*	7060	4031	3248	3527	3957	*	3645	6143	*	2419	5214	5465	5263	3589	2862	*	*	3989	173
+       1068	2546	1508	2546	271	0	*	5947	1932	1144	
+
+D 174  *	*	3010	2440	4600	2656	*	4489	5600	*	4539	3088	*	*	4958	2642	3896	7305	*	*	174
+       0	*	*	0	*	785	1252	5006	1182	3052	
+
+V 175  4309	*	3706	4172	*	2766	6487	*	3493	4425	4979	3650	2544	*	5372	3537	3257	5252	*	*	175
+       2729	*	236	*	*	*	0	5611	0	1898	
+
+F 176  *	*	*	*	164	*	*	*	*	3221	*	*	*	*	*	*	*	*	*	*	176
+       0	*	*	*	*	*	0	2274	0	4860	
+
+D 177  *	*	3483	*	4008	2188	*	*	3985	*	*	2766	*	3433	*	*	*	*	*	1616	177
+       0	*	*	*	*	1037	964	2274	0	4860	
+
+G 178  *	*	*	*	*	2062	*	*	*	*	*	*	*	4765	*	527	5078	*	*	*	178
+       0	*	*	*	*	1760	505	4336	0	3226	
+
+K 179  4907	*	3337	4446	5063	2844	*	4223	2090	5342	5669	3981	3043	5909	4649	4111	7150	6174	*	*	179
+       49	*	4899	*	*	3004	192	5446	0	2620	
+
+V 180  *	5486	*	*	2456	*	*	2527	*	6729	*	*	4997	5899	4781	5166	6985	3274	*	1362	180
+       0	*	*	*	*	82	4176	5472	0	2504	
+
+Q 181  *	*	4555	2716	*	6082	*	4991	1875	5049	*	2808	*	2912	5696	3516	6191	4755	*	5431	181
+       0	*	*	*	*	0	*	6044	0	1039	
+
+R 182  7397	*	2826	5563	*	*	6933	5605	1762	*	*	4072	*	4661	4113	2534	2732	*	*	5143	182
+       0	*	*	*	*	*	*	5999	0	0	
+
+G 183  *	*	*	*	*	177	*	*	*	*	*	*	*	*	*	3112	*	*	*	*	183
+       0	*	*	*	*	*	*	5999	0	0	
+
+L 184  *	6711	*	5864	5242	*	6829	*	1582	3888	*	4017	*	3725	3962	4206	4005	*	*	2194	184
+       0	*	*	*	*	*	*	5999	0	0	
+
+I 185  *	*	*	*	6133	*	*	510	*	3608	6761	*	*	*	*	*	*	2968	3953	*	185
+       0	*	*	*	*	*	*	5999	0	0	
+
+V 186  *	*	5902	2743	4774	5978	6860	4020	1690	5722	*	6779	*	6500	4053	6717	2896	2661	*	*	186
+       0	*	*	*	*	*	*	5999	0	0	
+
+F 187  *	*	*	*	1302	*	*	1427	*	4527	*	*	*	*	*	*	*	2760	*	4995	187
+       0	*	*	*	*	*	*	5999	0	0	
+
+H 188  4679	*	4348	5442	*	6238	1754	2643	3827	*	*	4015	*	5903	*	4421	2242	*	*	6368	188
+       113	*	3732	*	*	*	*	5983	0	0	
+
+T 189  *	*	6562	3320	*	5389	*	5362	6709	2672	1475	5409	4145	*	*	3418	3259	*	*	4761	189
+       0	*	*	*	*	0	*	5813	0	1343	
+
+S 190  5173	*	5493	6008	*	3638	4483	*	1282	5347	*	2136	*	5904	*	3191	5645	*	*	*	190
+       182	3186	6808	483	1812	*	*	5983	1670	0	
+
+T 191  6691	*	1225	6481	*	3099	5012	*	6259	*	*	1984	*	*	7207	3918	4728	*	*	5204	191
+       42	5856	6481	419	1987	148	3360	5921	1175	1617	
+
+E 192  *	*	3635	2900	*	939	*	*	3433	*	*	3682	5802	*	8809	4726	*	*	*	4814	192
+       0	*	*	*	*	0	*	5976	0	1143	
+
+P 193  5857	*	3317	3388	6667	2503	5728	*	2176	*	*	2979	5030	5528	4985	3644	3841	*	*	*	193
+       71	4388	*	0	*	*	*	5983	1259	0	
+
+S 194  *	*	4443	5002	3467	*	3864	5857	2529	6699	*	3237	*	6276	4637	2073	3532	*	*	3639	194
+       34	5414	*	583	1589	0	*	5920	1069	1259	
+
+V 195  7440	*	*	4042	1935	*	3340	4726	5907	*	6545	6810	*	6698	5836	*	*	3339	*	1422	195
+       0	*	*	*	*	*	*	5983	0	0	
+
+N 196  *	*	*	3477	4600	4765	5836	*	5687	*	*	4499	*	6238	*	2557	1527	5100	2956	3990	196
+       0	*	*	*	*	*	*	5983	0	0	
+
+Y 197  5561	*	*	*	1693	*	*	2168	*	4135	*	*	*	*	*	*	4871	5181	*	1607	197
+       0	*	*	*	*	*	*	5983	0	0	
+
+D 198  *	*	505	2159	*	6582	*	*	*	*	*	4033	*	*	*	*	*	*	*	*	198
+       0	*	*	*	*	*	*	5983	0	0	
+
+L 199  *	*	*	*	4061	*	*	5724	*	218	4029	*	*	*	*	*	*	*	*	*	199
+       0	*	*	*	*	*	*	5920	0	0	
+
+F 200  *	*	5210	*	1392	4351	5437	*	*	*	3768	2838	*	*	5637	2623	5672	*	*	3256	200
+       354	*	2200	*	*	*	*	5920	0	0	
+
+G 201  6776	6382	2283	5470	*	4876	*	*	1905	*	*	4749	2676	4512	*	5143	4560	*	*	2820	201
+       584	*	1588	*	*	*	0	5468	0	2110	
+
+A 202  2691	*	5160	3561	4077	*	4993	3886	1955	4973	*	*	5729	*	*	5080	2962	5226	*	3628	202
+       217	*	2841	*	*	*	0	4617	0	3197	
+
+Q 203  *	*	3930	5366	*	2122	*	*	2305	4385	*	*	1648	4305	*	5109	4985	*	*	*	203
+       148	5545	3720	1508	625	1154	861	4129	1582	3334	
+
+G 204  *	*	2309	3905	*	1421	4757	*	2873	*	*	3675	7776	*	*	5560	3957	*	*	5957	204
+       671	2199	2699	833	1189	*	0	5178	1714	2458	
+
+Q 205  *	*	4545	3905	2123	2223	*	*	3401	4182	*	4622	*	3668	2960	4349	*	*	*	*	205
+       82	4182	*	437	1937	4761	54	4724	1165	2844	
+
+Y 206  *	*	2583	*	5332	6459	*	5581	6145	1799	*	3950	*	4297	*	5311	2983	4725	*	2561	206
+       0	*	*	*	*	*	0	4763	0	2782	
+
+S 207  4516	*	5109	5270	4948	4244	4381	*	3685	*	*	*	1613	2659	2736	4180	*	*	*	*	207
+       0	*	*	*	*	*	0	4763	0	2782	
+
+N 208  5925	*	2750	2609	*	*	5852	*	5596	4937	*	3218	*	*	5717	1733	5399	3679	*	3812	208
+       0	*	*	*	*	5371	35	4763	0	2782	
+
+T 209  *	*	2718	3248	*	*	*	*	1944	*	*	*	*	3740	5176	2247	2558	*	*	*	209
+       0	*	*	*	*	578	1600	4791	0	2742	
+
+L 210  *	*	4288	*	2365	*	*	3662	1690	3910	4749	6427	*	4373	6056	*	*	5050	*	2672	210
+       0	*	*	*	*	1838	473	5601	0	1582	
+
+L 211  3719	*	5595	7400	3177	*	*	*	*	425	*	*	*	*	*	*	5720	6276	*	6652	211
+       0	*	*	*	*	*	0	5619	0	1409	
+
+R 212  5126	*	6448	4441	*	*	*	*	1808	5892	3491	3037	*	1895	3367	5653	6070	*	*	*	212
+       0	*	*	*	*	1043	958	5629	0	1409	
+
+I 213  *	*	*	3873	3037	*	*	1559	3290	6211	3910	*	4120	6708	4012	6827	3974	4071	*	5194	213
+       0	*	*	*	*	0	*	5749	0	1187	
+
+Y 214  *	*	4333	3547	*	7498	2981	6748	5586	5731	*	6052	*	*	*	*	*	*	*	581	214
+       8	*	7498	*	*	*	*	5913	0	0	
+
+R 215  4879	*	*	4296	*	5320	*	*	3127	*	*	2885	*	6647	1432	3442	4840	3539	*	4418	215
+       66	4477	*	1000	1000	*	0	5880	1173	1000	
+
+D 216  *	*	937	*	*	5989	*	*	3813	*	1712	5732	*	5696	*	5292	*	*	*	5517	216
+       0	*	*	*	*	*	0	5858	0	1000	
+
+N 217  5594	*	*	5699	5644	2147	*	*	6669	*	*	620	*	*	*	4224	*	*	*	*	217
+       0	*	*	*	*	0	*	5856	0	1000	
+
+K 218  *	*	1967	2593	5308	*	*	6464	1238	*	*	5544	3821	*	5278	*	*	*	*	*	218
+       0	*	*	*	*	*	*	5888	0	0	
+
+T 219  *	*	*	*	*	*	*	3341	*	4439	6512	*	*	*	5497	3944	967	2025	*	*	219
+       0	*	*	*	*	*	*	5618	0	0	
+
+I 220  5914	*	*	*	3810	*	*	806	*	2754	6669	*	*	*	*	*	*	2458	*	*	220
+       0	*	*	*	*	*	*	5618	0	0	
+
+N 221  *	*	902	3136	*	*	*	*	4302	*	*	2287	6339	*	*	3913	*	*	*	5914	221
+       15	6610	*	2322	322	*	*	5618	1000	0	
+
+S 222  4633	*	*	*	5619	2427	*	4252	*	*	3796	*	*	*	*	927	4640	4808	*	5213	222
+       0	*	*	*	*	*	*	5618	0	0	
+
+E 223  5870	*	2769	2733	*	*	*	6461	2238	*	*	4780	*	*	2976	2848	2643	*	*	*	223
+       0	*	*	*	*	*	*	5618	0	0	
+
+N 224  5225	*	2719	4935	*	*	5796	6610	1817	*	*	2051	*	2996	6397	4220	4888	6532	*	*	224
+       1542	607	*	0	*	*	*	5618	3590	0	
+
+M 225  *	*	4783	3060	3169	5625	*	3951	3167	4179	5541	4987	*	4140	6823	1971	5737	4606	*	4393	225
+       20	6153	*	2000	415	0	*	5565	1000	1534	
+
+H 226  6104	*	5485	3869	*	6905	972	*	2127	*	*	3888	*	4398	4944	*	*	*	*	*	226
+       0	*	*	*	*	*	*	5614	0	0	
+
+I 227  *	*	*	*	2918	*	*	559	*	3032	5146	*	*	*	*	*	*	4699	*	*	227
+       0	*	*	*	*	*	*	5614	0	0	
+
+D 228  6986	*	972	1465	*	*	*	*	*	4413	*	4640	*	*	*	5679	6213	*	*	*	228
+       0	*	*	*	*	*	*	5614	0	0	
+
+I 229  5268	*	*	*	*	*	*	1848	*	6686	*	*	*	*	*	*	*	543	*	*	229
+       0	*	*	*	*	*	*	5614	0	0	
+
+Y 230  *	*	4928	2451	5243	*	3242	*	4944	*	*	2512	*	*	*	5488	4722	*	*	1380	230
+       234	2738	*	2000	415	*	*	5614	1648	0	
+
+L 231  *	*	*	*	*	*	*	2288	*	571	3581	*	*	*	*	*	*	4700	*	*	231
+       0	*	*	*	*	*	*	5312	0	0	
+
+Y 232  *	*	*	3927	2344	*	*	*	2061	*	*	2369	*	*	4644	*	*	5735	4859	2246	232
+       0	*	*	*	*	*	*	4916	0	0	
+
+T 233  *	*	*	2328	*	*	*	*	2523	*	*	5063	*	*	*	3642	952	*	*	*	233
+       0	*	*	*	*	*	*	3616	0	0	
+
+S 234  *	*	3731	*	*	*	*	*	1496	*	*	3600	*	3672	*	1731	3211	*	*	*	234
+       0	*	*	0	*	*	*	2540	0	0	
+
+//
+�HHsearch 1.5
+NAME  88117153c423d8f3cd1f072dcda24597
+FAM   
+FILE  88117153c423d8f3cd1f072dcda24597
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:00:03 2013
+LENG  123 match states, 123 columns in multiple alignment
+FILT  138 out of 594 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  6.4 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CHHHHHHHHHHHCCCCCCHHHHHHCCCCCCCCCCCCCCCCHHHHHHHHHHHHHHHHCCCCCCCCCCCCEEEEEEEEEECCEEEECCCCCHHHHHHHHHHH
+HHHHHHHHCCCCHHHCCCCCCCC
+>ss_conf PSIPRED confidence values
+9899999999885899887999627867678998982632668888438899997028998645688647656899868937889999969999999799
+99999996888887727982469
+>Consensus
+xlxqlxxMixxxxxxxxxxxxyxxYGCxCgxgGxGxPvDxiDxcCxxhxxCyxcxxxxxxCxxxxxxxxxxxYxxxxxxxxixCxxxxxxCxxxlCeCDx
+xxAxclxxxxynxxxxxxxxxxC
+>88117153c423d8f3cd1f072dcda24597
+ALWQFNGMIKCKIPSSEPLLDFNNYGCYCGLGGSGTPVDDLDRCCQTHDNCYKQAKKLDSCKVLVDNPYTNNYSYSCSNNEITCSSENNACEAFICNCDR
+NAAICFSKVPYNKEHKNLDKKNC
+>gi|321469432|gb|EFX80412.1| putative phospholipase A2 [Daphnia pulex]
+DIFHLYN-MMSCT-tQC-DPLSYKGYGCYCGFLGSGLTVDAIDRCCKKHDFCYGA----TPCRHQS-LIYFVPYKWKCNGGHPYCVTGYgqmkagDICAH
+HLCECDRQFAECIRHYPCPAKKTTCPSN--
+>gi|313239766|emb|CBY14648.1| unnamed protein product [Oikopleura dioica]
+--LQMKIVILFMQK-NKFLGKYCFYGCWCFPrgagnnGGFGQPVDNIDKSCREYSTCYNCIYNqnigSQRCPE----NTADRYQIGgfvdrFGQVQIFCT
+DPWGTCNRSRCECDRDLAMKLRQHepEWNMQYHH------
+>gi|313241201|emb|CBY33484.1| unnamed protein product [Oikopleura dioica]
+---QLMQLMQFYTLdETFDADKYWNYGCNCMIhgdrplsdMGTGPGVDRLDRKCREYKLCQQCARAqhGDMCIGEFIsyrRPRTrtILNDLGVEETHKVC
+RDAPDTCERALCECDLQFAKDHAKVslvAFDPAHHN------
+>gi|313220609|emb|CBY31456.1| unnamed protein product [Oikopleura dioica]gi|313226182|emb|CBY21325.1| unnamed protein product [Oikopleura dioica]
+-LRQFRRLYTFYLVGyRLRPAHLVQYGCWCFPRgqlimGYGQPIDGIDATCRNHQLCLNCVGLdtNYECN-----PHTQPYRVYgqiyQNGRRLMCKDPP
+GSCAWLACQCDVNMVTTSIiESlkGYKPRFWMYDPGRC
+>gi|313232232|emb|CBY09341.1| unnamed protein product [Oikopleura dioica]
+-------------------TKYTSYGCYCWAkgtsniedlg--AGSAnVDWNDKACTDLYRCYACVNIDYGKK-YTELSYDAIFSTDvDGNRKIDCSGAA
+QSDGEHICQCDAAFAERIAFN--------------
+>gi|313234547|emb|CBY10504.1| unnamed protein product [Oikopleura dioica]
+--------------------RMNNYGCHCWPdypqienlSGQGASLDGIDSSCHKLQDCHACLKQeygAEDCD-----PVHTRYKARLIDGEILCLNKss
+gKQACKRNLCECDKKFSSEFSLSfgSWSSEY--------
+>gi|313212373|emb|CBY36361.1| unnamed protein product [Oikopleura dioica]
+------KLVQHFT--SIDIEKLQDYGCA-GRGyfdstepAVGLPVDEIDRSFIWWKKCIKCAQSEYSAYDLEynHFDYREFYEFDF--DSEICGG-SETV
+EHAICQCDKSFAKRLIDLTENNDFHNYDTDSC
+>gi|313232459|emb|CBY24127.1| unnamed protein product [Oikopleura dioica]
+SILQFHLNFEYGF-GAYSAADLLSYGCWCDLEnphRHGKPVDDVDKLCHKHFRCHRCVSMdsSYACS-----PN-VQYELTFDtaTQSHFCAASnTDLCE
+MEACLCDLELITQMVRQ--------------
+>gi|313225706|emb|CBY07180.1| unnamed protein product [Oikopleura dioica]
+-------------------YEFHNYGCYCVApsdtkKMRGRPVDEIDRKLVAkfplvknthfvtpvHFLTTDAIRKQ---W----GFSILIYRYKItkts
+SGNRIECTNAADTCAYASCMCDKGLAEDLGTLlmngvKVNSTYREHDGEK-
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+A 1    2468	*	4586	*	*	3933	5731	*	*	*	*	2496	*	*	*	1191	4305	5180	*	*	1
+       0	*	*	*	*	*	*	5380	0	0	
+
+L 2    3895	*	5783	*	4128	*	*	2524	*	975	4736	*	6020	*	*	*	*	3036	*	*	2
+       0	*	*	*	*	*	*	5882	0	0	
+
+W 3    4217	*	6207	*	3201	4913	*	4858	5743	2096	4648	3858	4693	*	5778	4969	*	3390	2995	3553	3
+       0	*	*	*	*	*	*	6269	0	0	
+
+Q 4    6446	*	3766	3630	6530	*	5691	*	*	6532	*	2341	*	1042	4007	5513	5252	*	*	*	4
+       0	*	*	*	*	*	*	6388	0	0	
+
+F 5    *	*	*	6308	1316	*	*	4558	*	970	5401	*	*	*	*	*	6757	*	*	*	5
+       0	*	*	*	*	*	*	6444	0	0	
+
+N 6    3349	6239	4607	3402	4477	2389	4733	6337	3449	3586	5981	4299	*	4589	3685	4967	6687	5173	6860	5139	6
+       0	*	*	*	*	*	*	6483	0	0	
+
+G 7    3902	6765	4124	3307	4476	4152	6316	5434	3386	4279	5907	3178	*	5282	3701	3283	3761	4707	6415	5309	7
+       14	*	6655	*	*	*	*	6519	0	0	
+
+M 8    5701	*	*	*	*	6409	*	4697	*	2899	560	6316	*	4817	*	*	5660	4599	6807	*	8
+       0	*	*	*	*	0	*	6562	0	1015	
+
+I 9    *	6671	*	*	5307	*	*	1049	5859	3560	2550	*	*	*	*	4916	4792	2985	*	6238	9
+       0	*	*	*	*	*	*	6569	0	0	
+
+K 10   5194	*	5916	2705	5020	4637	*	*	2235	4190	3783	4439	*	3244	4588	3515	3819	5702	*	5563	10
+       0	*	*	*	*	*	*	6569	0	0	
+
+C 11   4883	1338	*	6636	3721	6664	3193	6756	3463	*	6556	*	*	4781	6666	4961	*	4304	6684	3105	11
+       19	6292	*	0	*	*	*	6569	1013	0	
+
+K 12   3200	6716	6364	5911	6165	5093	4882	3073	5920	3656	4110	*	6267	*	5375	5599	3169	2619	*	2544	12
+       163	*	3230	*	*	0	*	6545	0	1013	
+
+I 13   4021	*	5641	4821	3714	5046	*	3995	*	3758	4743	3260	*	3529	6278	4658	1590	*	*	5217	13
+       913	6296	1132	1000	1000	2354	314	6497	1000	1566	
+
+P 14   5039	*	3236	3537	*	3855	5709	5347	5361	*	*	4013	1615	5428	4060	5567	3362	5278	*	5356	14
+       597	4220	1809	0	*	882	1129	5964	1153	3561	
+
+S 15   *	5282	4589	3905	*	1175	6212	4445	4618	5922	*	4561	6120	4885	4889	3445	4095	6253	5733	*	15
+       252	3119	4459	1640	558	0	*	6103	1423	2899	
+
+S 16   4566	6771	4502	3944	5789	2990	6332	6107	3154	5611	4211	4732	6389	4830	3281	2727	3843	4066	6177	*	16
+       165	4450	4003	3020	190	0	*	6645	1207	1080	
+
+E 17   *	6567	6815	3701	2516	5445	6365	4416	3715	4674	*	4087	4635	5142	2722	2985	4891	*	4216	4688	17
+       12	*	6896	*	*	935	1068	6615	0	1351	
+
+P 18   2505	4696	2744	6608	6773	3864	6654	6556	*	6897	6410	2838	3555	5398	6660	2411	4242	7021	*	*	18
+       132	3943	5473	2092	386	2265	337	6639	1468	1190	
+
+L 19   2375	*	4886	4400	3094	4375	6779	3529	5267	2907	5863	*	2882	*	*	5255	7056	4357	4313	5640	19
+       28	6432	7034	3170	170	0	*	6562	1007	1262	
+
+L 20   4135	*	4002	3413	3625	3777	6655	5308	5005	2355	*	4840	6263	*	3933	3836	3780	6052	3697	5472	20
+       51	5220	7012	2572	266	0	*	6602	1130	1000	
+
+D 21   3972	*	2100	3672	*	5904	5652	5957	2362	6766	7060	4666	*	3971	3739	3710	4960	5826	7828	4262	21
+       0	*	*	*	*	0	*	6575	0	1000	
+
+F 22   5897	*	*	*	2381	6890	6656	6007	*	3054	5368	*	*	6609	6857	*	*	5556	6301	837	22
+       0	*	*	*	*	*	*	6583	0	0	
+
+N 23   4493	4839	4978	4565	4091	3640	5597	4602	5422	3246	6308	2836	*	4914	4761	4406	4724	4493	3177	4197	23
+       24	7801	6349	1585	585	*	*	6570	1000	0	
+
+N 24   4750	*	2644	4399	4767	2363	6088	*	4175	7443	6471	2606	*	5051	4297	3032	6408	7189	7707	4430	24
+       0	*	*	0	*	0	*	6566	1013	1074	
+
+Y 25   *	*	*	*	*	*	*	*	*	5786	*	*	*	*	*	6237	6371	6642	*	79	25
+       0	*	*	*	*	*	*	6570	0	0	
+
+G 26   6606	*	*	*	*	42	*	*	*	*	*	*	*	*	5786	*	*	*	*	*	26
+       0	*	*	*	*	*	*	6570	0	0	
+
+C 27   *	72	*	*	*	*	*	*	*	5786	*	5044	*	*	*	*	*	*	*	*	27
+       0	*	*	*	*	*	*	6570	0	0	
+
+Y 28   5232	*	*	*	3513	*	2454	*	7444	5786	*	3741	*	7421	*	5420	*	*	2513	1321	28
+       28	*	5723	*	*	*	*	6570	0	0	
+
+C 29   *	109	*	*	*	5537	*	*	*	5781	*	*	*	*	*	6004	*	*	5843	*	29
+       65	5134	6004	2807	222	0	*	6539	1132	1091	
+
+G 30   7023	*	7170	*	3387	1084	5835	7345	*	3488	5269	3727	6673	4371	6221	4345	5095	6401	4878	7001	30
+       24	5895	*	2949	200	0	*	6538	1067	1049	
+
+L 31   3863	*	*	7441	3402	6053	*	3695	5395	2301	4248	5679	2601	5135	4079	4024	6199	4961	5380	4157	31
+       454	1889	*	2742	234	*	*	6570	2840	0	
+
+G 32   4484	*	6077	4247	6696	1025	7060	4585	4522	4747	4211	4760	5108	5274	4681	4148	6611	7546	*	*	32
+       400	2046	*	2869	212	*	*	6570	2719	0	
+
+G 33   4640	*	7177	6644	6677	485	*	*	7554	*	5215	5035	5492	6816	4130	5218	5446	7328	*	6418	33
+       27	5765	*	2927	203	*	*	6574	1084	0	
+
+S 34   4779	*	5614	4833	4010	4286	3806	4580	2440	6983	6618	6811	5570	3391	3449	2680	4737	4862	*	4865	34
+       98	4391	5789	1761	504	*	*	6573	1326	0	
+
+G 35   6300	*	6675	*	*	121	*	*	6433	*	7372	*	*	6076	*	6907	6599	7237	*	*	35
+       84	4152	*	174	3134	1535	610	6551	1464	1130	
+
+T 36   3461	*	5075	3939	6056	7404	5395	5359	2943	4206	5879	4658	3969	3486	3067	5420	2818	4324	6812	6956	36
+       22	6049	*	367	2153	1432	668	6548	1125	1137	
+
+P 37   3548	*	*	*	*	6762	*	5509	*	*	*	6583	343	*	7027	5341	5368	5777	6710	*	37
+       9	7409	*	1000	1000	*	0	6554	1000	1064	
+
+V 38   5244	*	*	*	*	*	*	3388	4207	2864	4200	*	*	4559	5006	*	6091	878	*	*	38
+       0	*	*	*	*	*	0	6554	0	1064	
+
+D 39   *	*	74	5798	*	6178	*	*	*	*	*	5785	*	*	*	*	*	*	*	*	39
+       0	*	*	*	*	*	0	6554	0	1064	
+
+D 40   2108	*	2755	1966	6562	3809	6810	5940	5434	6271	*	3999	5162	4647	5439	4259	*	7106	*	6979	40
+       0	*	*	*	*	*	0	6554	0	1064	
+
+L 41   6003	*	*	*	6901	*	*	1463	7052	2338	6178	*	7394	*	6999	4595	2505	2770	*	5945	41
+       0	*	*	*	*	*	0	6554	0	1064	
+
+D 42   *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	42
+       0	*	*	*	*	*	0	6554	0	1064	
+
+R 43   4017	7330	*	3825	5467	*	6667	4863	3163	4633	6839	4853	*	3781	1699	2987	4656	7004	4477	*	43
+       0	*	*	*	*	*	0	6560	0	1064	
+
+C 44   3077	1114	*	6621	6705	6445	6047	5349	4715	4633	*	6814	6598	5199	7266	4413	3476	3773	*	7124	44
+       15	*	6598	*	*	*	0	6560	0	1064	
+
+C 45   *	100	*	*	5746	*	*	5412	*	6340	*	*	*	*	*	6286	*	*	*	*	45
+       0	*	*	*	*	*	0	6548	0	1139	
+
+Q 46   5387	*	*	6278	3527	*	3529	5435	2395	5328	4652	5412	*	2422	2296	7341	6587	4855	7191	4635	46
+       0	*	*	*	*	1413	679	6548	0	1139	
+
+T 47   2829	6718	3564	3228	*	7409	4784	5223	3289	4285	7090	3745	*	3780	3843	3769	4051	4053	5823	*	47
+       17	6414	*	3807	107	*	0	6560	1030	1064	
+
+H 48   6966	*	*	*	4295	*	864	*	*	2763	*	*	*	5689	6822	6598	*	*	3829	2884	48
+       0	*	*	*	*	0	*	6560	0	1064	
+
+D 49   5592	*	1391	7103	5764	4819	4488	7501	2300	5107	*	4583	6610	4703	4148	4663	6179	7068	6581	4769	49
+       15	6627	*	1585	585	*	*	6578	1015	0	
+
+N 50   5400	3512	3969	3348	5796	5546	4100	7134	3113	4570	6392	3902	*	3138	2841	4542	4622	5238	6999	6129	50
+       0	*	*	*	*	*	*	6578	0	0	
+
+C 51   6581	62	*	*	*	6610	*	*	*	*	*	*	*	*	*	6674	6423	*	*	*	51
+       13	6759	*	0	*	*	*	6578	1005	0	
+
+Y 52   6181	*	*	*	7261	6944	4115	5003	*	3238	*	5663	*	4162	*	6712	4855	5872	6374	671	52
+       9	*	7294	*	*	*	*	6578	0	0	
+
+K 53   3983	6755	2791	3937	*	3344	4674	*	2097	7420	6067	4323	*	4163	3475	3322	6455	7460	7363	7224	53
+       0	*	*	*	*	*	0	6576	0	1000	
+
+Q 54   3770	1072	4259	4166	*	5514	*	7575	3644	7092	*	5415	*	4000	4126	4655	5717	5216	*	*	54
+       43	*	5081	*	*	*	0	6576	0	1000	
+
+A 55   1736	*	6600	*	7150	*	*	3079	*	2216	6320	5988	5329	*	*	4920	4785	2143	*	*	55
+       161	6664	3381	3170	170	2605	259	6556	1008	1263	
+
+K 56   4103	*	4507	3915	6048	4253	7350	4694	2470	4623	4830	3670	6286	3209	3112	4995	4576	4152	*	5786	56
+       209	5068	3252	2063	395	2140	371	6473	1151	2002	
+
+K 57   4291	*	3343	2960	5976	6554	5621	3669	2600	4065	3727	3862	*	3573	4532	4366	5431	5135	*	*	57
+       827	1351	4494	1253	785	1070	933	6474	3313	2445	
+
+L 58   7118	*	2705	3165	5645	2164	4420	5364	4220	6279	5422	5890	*	4527	3953	3058	3841	6733	*	*	58
+       187	3377	5308	672	1425	441	1926	6476	1753	2045	
+
+D 59   5021	*	3331	3113	5332	2782	5243	6739	3627	5040	5739	5649	3781	4762	5907	3502	3358	6019	*	3818	59
+       20	7361	7068	0	*	1870	461	6492	1000	1403	
+
+S 60   5581	*	2987	2637	*	3002	7289	4554	4101	7147	4248	3969	5081	5313	4707	2976	3561	5419	6887	*	60
+       0	*	*	0	*	1684	538	6507	1008	1331	
+
+C 61   5526	170	*	*	6031	6670	*	6805	*	*	*	*	*	*	*	5262	6015	6142	*	*	61
+       109	4321	5440	1512	623	1600	577	6510	1383	1211	
+
+K 62   4748	*	2840	4120	5717	5661	6765	3272	3548	4646	7586	3345	5482	4075	4821	3035	4549	6236	4169	4865	62
+       1165	*	852	*	*	*	0	6524	0	1369	
+
+V 63   6055	*	4406	3978	5613	2940	5069	6259	3065	4831	*	3519	3369	*	3823	2533	*	4426	6222	4693	63
+       147	5663	3701	1585	585	3026	189	5839	1009	4755	
+
+L 64   *	*	4266	3567	5788	4649	3918	3404	5789	2142	*	4828	*	4720	4563	3310	6051	3769	4582	4212	64
+       805	5820	1286	1000	1000	4769	54	5905	1011	4536	
+
+V 65   3522	*	4547	3122	3319	3899	*	3423	*	2672	*	5797	5556	*	*	4297	2696	3928	*	5170	65
+       758	4734	1430	1000	1000	3307	154	5479	1071	5334	
+
+D 66   5210	*	4074	3781	3812	4036	3627	3168	5498	*	*	3463	3459	3982	3971	5097	3919	3467	*	*	66
+       148	3359	*	1376	702	2508	279	5363	1271	5460	
+
+N 67   4563	*	5653	3961	3903	2987	5744	*	5806	3470	*	3978	*	2606	5336	2844	3816	4538	5693	5119	67
+       0	*	*	*	*	326	2305	5781	0	4874	
+
+P 68   3779	*	6490	3975	6117	3850	*	5482	5324	5388	7136	4667	1209	7337	7329	3647	4228	4000	*	6614	68
+       22	*	6069	*	*	748	1305	6503	0	1926	
+
+Y 69   6247	*	4317	3102	4039	5506	4488	6976	3976	3826	*	5930	*	4905	6726	3916	4986	4946	7761	1487	69
+       46	*	4998	*	*	913	1092	6547	0	1422	
+
+T 70   4577	*	5100	5076	2473	5492	5751	3524	5203	3255	5276	4427	*	4728	5372	3888	2401	4777	6259	5720	70
+       88	5708	4631	1332	730	172	3157	6559	1073	1398	
+
+N 71   3482	6679	4184	4826	7343	4539	6173	4265	3478	3556	*	3829	6703	3741	5894	4132	2737	2816	*	*	71
+       35	6110	6759	1585	585	1896	451	6532	1049	1294	
+
+N 72   5555	*	4143	5775	4419	4401	5414	4116	5073	3373	6669	3533	2968	5273	3502	3049	3418	4770	7426	7074	72
+       0	*	*	*	*	2237	344	6522	0	1261	
+
+Y 73   *	*	*	*	5152	*	*	5213	*	5800	*	6757	*	*	*	6734	6830	*	6124	176	73
+       10	*	7125	*	*	0	*	6544	0	1193	
+
+S 74   7269	*	3266	3352	7224	3989	5622	*	2765	7242	*	3209	7097	4011	3654	2775	3382	5261	7392	5872	74
+       16	*	6470	*	*	0	*	6575	0	1000	
+
+Y 75   7218	*	*	7383	2430	*	5099	4733	6691	4839	5704	*	*	*	*	5225	5705	3520	2283	1588	75
+       43	5430	7322	1319	739	*	0	6572	1137	1035	
+
+S 76   4795	*	3592	3095	5149	5188	5137	5064	3479	7083	7521	3758	4997	4666	3434	3227	3073	4208	5819	6266	76
+       252	3408	3919	1517	620	648	1467	6572	1730	1088	
+
+C 77   3956	1851	5639	4393	3437	5747	*	3685	5641	3310	4851	6648	*	4429	*	4992	5078	3528	6025	5214	77
+       262	2928	4841	2087	387	1794	491	6510	1869	1494	
+
+S 78   4864	*	3355	2971	6613	3108	5532	4213	4089	4249	7024	3407	*	4245	5031	3104	5089	3481	7222	*	78
+       154	3305	*	1791	492	2629	254	6498	1663	1655	
+
+N 79   4132	*	2444	3120	*	3275	*	6574	3819	*	6532	2530	5225	4578	5165	3286	4103	6474	7128	*	79
+       176	3436	5491	1659	549	2254	339	6505	1593	1543	
+
+N 80   4375	5353	3780	5299	*	2195	6606	*	2897	*	*	3198	4400	4763	2832	4437	4413	5768	*	5562	80
+       139	3447	*	2209	352	655	1455	6512	1626	1580	
+
+E 81   4831	7550	4010	3065	4662	4290	5062	5128	3381	7189	5408	3964	6808	3965	3393	3261	3158	5210	*	5219	81
+       15	6551	*	0	*	487	1803	6564	1018	1179	
+
+I 82   4398	*	*	6036	4788	5325	6001	1507	4574	3313	5729	7532	3350	*	6992	6833	5024	2603	*	4968	82
+       16	6465	*	0	*	*	0	6576	1040	1008	
+
+T 83   5492	*	4673	3743	4686	*	6964	3258	4119	5809	7096	4882	6816	4424	4749	4597	2009	2506	7117	5044	83
+       0	*	*	*	*	*	0	6576	0	1008	
+
+C 84   6181	127	*	*	*	6910	*	*	*	*	*	*	6662	*	*	5407	7131	6076	*	7184	84
+       8	7495	*	0	*	*	0	6576	1012	1008	
+
+S 85   3972	7252	3391	4021	*	3287	5874	6129	3774	3792	5656	4711	7624	6822	3948	2641	3064	4660	7403	4981	85
+       40	6386	6033	0	*	*	0	6576	1040	1008	
+
+S 86   4953	5392	1712	3084	*	3438	7161	6240	5959	6328	*	2785	5606	6242	6304	3105	4504	5649	*	6950	86
+       292	4466	2856	1113	895	0	*	6570	1264	1172	
+
+E 87   3072	*	4167	2803	*	3748	6886	5849	4240	4930	6738	3148	3294	4192	4616	3260	4163	7263	*	6674	87
+       349	2337	5864	2388	306	157	3277	6428	2362	2166	
+
+N 88   3112	*	4207	3006	4518	4698	6104	*	3313	4263	7036	3536	3940	5621	4448	3681	4160	4731	5204	4946	88
+       71	5122	5712	2202	354	1714	525	6567	1203	1319	
+
+N 89   5195	5913	2495	5909	*	1832	5851	*	5698	7320	*	2311	6214	4852	5770	3263	4282	6080	*	*	89
+       8	7429	*	415	2001	0	*	6548	1119	1347	
+
+A 90   4422	*	4649	3803	*	5006	5790	6262	4213	5264	*	7328	3334	6757	4671	2034	2065	4487	5791	*	90
+       6	8034	*	0	*	*	*	6576	1000	0	
+
+C 91   7039	230	6574	*	5544	*	*	*	*	5438	*	6600	*	*	*	*	*	5290	5008	5813	91
+       0	*	*	*	*	*	*	6576	0	0	
+
+E 92   2289	*	5472	2129	*	2701	*	*	2851	6099	*	5812	6909	4804	3237	4259	6922	6829	*	*	92
+       0	*	*	*	*	*	*	6576	0	0	
+
+A 93   4373	*	4864	4825	*	4980	4500	*	3602	4819	4385	5340	*	3302	1381	5110	5951	6122	5542	4334	93
+       0	*	*	*	*	*	*	6576	0	0	
+
+F 94   1854	*	3948	4188	5161	5188	5875	6463	4517	4189	5368	3038	*	3825	6159	3177	4061	7231	7093	7292	94
+       0	*	*	*	*	*	*	6576	0	0	
+
+I 95   3663	*	*	*	5854	*	7549	2114	5918	1449	5924	5888	*	6075	7254	5315	4149	2869	*	6449	95
+       0	*	*	*	*	*	*	6576	0	0	
+
+C 96   *	114	*	*	4362	*	*	*	*	*	*	*	*	*	*	*	*	*	5854	6661	96
+       0	*	*	*	*	*	*	6576	0	0	
+
+N 97   4470	*	4121	1069	*	*	7127	*	4210	4585	5882	3957	*	2721	5368	4285	6757	*	*	*	97
+       0	*	*	*	*	*	*	6576	0	0	
+
+C 98   *	61	*	*	*	*	*	*	*	5649	*	*	*	*	*	*	6579	6499	*	*	98
+       0	*	*	*	*	*	*	6576	0	0	
+
+D 99   6449	*	79	6992	*	*	6982	*	*	*	*	*	*	*	6499	7036	7068	*	*	*	99
+       0	*	*	*	*	*	*	6576	0	0	
+
+R 100  3607	*	*	5356	6371	6757	5758	6469	1648	3295	6673	*	*	4609	2006	5535	4530	4518	*	6221	100
+       0	*	*	*	*	*	*	6576	0	0	
+
+N 101  2594	*	3642	2841	5492	5460	*	5674	2899	*	5244	4147	5854	2892	4457	4754	3810	5673	*	7011	101
+       11	6982	*	1000	1000	*	*	6576	1000	0	
+
+A 102  2076	6499	*	*	1403	5924	*	5371	*	2206	4947	*	*	*	*	5449	*	4703	*	5461	102
+       0	*	*	*	*	*	*	6576	0	0	
+
+A 103  622	*	*	*	*	5222	*	4122	*	6444	*	7518	5852	*	*	4390	5507	2704	*	6832	103
+       0	*	*	*	*	*	*	6579	0	0	
+
+I 104  7061	*	7116	2376	4887	7115	4803	4074	2814	3326	4644	3282	*	4379	4293	4490	4428	4509	*	4728	104
+       0	*	*	*	*	*	*	6574	0	0	
+
+C 105  5516	1043	3330	4125	*	4893	6996	*	4742	6455	*	4054	*	4603	4530	4643	4854	5232	*	*	105
+       0	*	*	*	*	*	*	6597	0	0	
+
+F 106  6787	7426	*	*	1761	*	4797	3472	*	1239	4153	*	*	6909	*	7029	*	4485	5403	*	106
+       0	*	*	*	*	*	*	6585	0	0	
+
+S 107  1627	7085	6060	5155	5096	3529	6319	4066	3688	4937	7138	6186	6444	4692	3486	3798	4622	5213	6647	5823	107
+       36	5334	*	706	1370	*	*	6559	1147	0	
+
+K 108  3577	*	2946	3424	*	5586	5461	*	2816	4537	*	4085	7063	3481	2163	4688	4710	*	*	6883	108
+       34	6203	6701	1000	1000	*	*	6537	1058	0	
+
+V 109  2568	*	6808	4644	5276	6654	3883	4883	5116	4263	5642	2975	*	4370	5904	3047	4698	3377	*	3380	109
+       1109	898	*	1289	759	0	*	6574	3869	1006	
+
+P 110  4414	*	4002	3501	*	5718	5139	5590	3715	5673	5933	6724	2362	5105	5047	2781	2649	4214	*	*	110
+       85	4122	*	924	1081	*	*	6483	1341	0	
+
+Y 111  *	5850	*	6212	2198	*	6987	5899	6732	6607	6154	*	5936	*	*	*	*	5126	3367	860	111
+       0	*	*	*	*	*	*	6483	0	0	
+
+N 112  5336	*	2710	3978	*	6957	5760	7446	5704	*	*	888	3993	6072	5921	4459	6813	5751	*	*	112
+       8	7590	*	0	*	*	*	6465	1000	0	
+
+K 113  4292	5541	4161	3275	6883	6700	6008	5808	2781	3919	5278	3964	2945	6799	4471	3528	4251	3875	6958	5970	113
+       0	*	*	*	*	*	*	6402	0	0	
+
+E 114  3177	*	3451	3322	*	4421	5408	*	2065	5239	*	3460	*	4738	3864	3665	3930	6570	*	6590	114
+       0	*	*	*	*	*	*	6426	0	0	
+
+H 115  *	*	*	*	2638	*	3142	5984	5672	3495	6240	3176	*	4535	*	*	*	*	*	1201	115
+       0	*	*	*	*	*	*	6416	0	0	
+
+K 116  4990	*	4935	4445	4058	6616	2302	6874	2960	3683	5082	5347	6059	5156	2876	5333	5449	5659	4322	4289	116
+       0	*	*	*	*	*	*	6374	0	0	
+
+N 117  4985	*	3770	4938	3849	3203	3798	5589	7072	3738	4207	2405	6069	4988	5028	3334	6026	5825	*	4126	117
+       0	*	*	*	*	*	*	6250	0	0	
+
+L 118  5015	5748	*	5994	2410	5897	4734	3722	*	2797	4713	6247	5602	6052	*	*	*	3918	6373	1702	118
+       32	*	5503	*	*	*	*	6127	0	0	
+
+D 119  6299	*	1343	*	4891	4895	*	*	5374	5875	*	3576	2432	6270	5829	3411	6025	*	4239	5464	119
+       0	*	*	0	*	0	*	6143	1019	1019	
+
+K 120  4158	*	5848	4996	*	4457	*	5972	2412	*	*	4388	4333	3762	3035	2884	2635	5806	*	4700	120
+       0	*	*	*	*	*	*	6030	0	0	
+
+K 121  6096	5948	3342	3090	4916	3822	*	5716	2996	4817	*	3170	4714	4321	4803	2802	3457	*	*	*	121
+       107	4163	6003	0	*	*	*	5870	1082	0	
+
+N 122  *	*	*	3693	5383	*	*	4398	1848	2712	5621	4803	*	*	3013	3221	3703	5262	*	5022	122
+       268	2560	*	0	*	0	*	5473	1441	1000	
+
+C 123  4883	50	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	123
+       0	*	*	0	*	*	*	5348	0	0	
+
+//
+�HHsearch 1.5
+NAME  8e30ca516d2b86076f51d1316fab39ad
+FAM   
+FILE  8e30ca516d2b86076f51d1316fab39ad
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 15:03:45 2013
+LENG  244 match states, 244 columns in multiple alignment
+FILT  114 out of 1070 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  8.3 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCCCCCCCHHHHHHHHHHHCCCEEEEEEECCEEEEEECCCCCCCCEEECCCCCEEEEECCCEEEEECCCHHHHHHHHHHHHHHHHHHHHH
+HCCCCCHHHHHHHHHHHHHHHHHCCCCCCCEEEEEEEEEECCCCCEEEEECCCCCEEEEEEEEECCCHHHHHHHHHHHHHCCCCHHHHHHHHHHHHHHHH
+HHCCCCCCCEEEEEEECCCCCCCCCEEECCHHHHHHHHHHHHCC
+>ss_conf PSIPRED confidence values
+9863447775478998364778787677519659999979999999846556686463377444999769899998356899999999999999987886
+2998999999999999999986213678743899999995799947999948998787135998677599999999874239999999999999999998
+53567899589999965643789888993999999999997449
+>Consensus
+xxxxxdxxxxxfxpxGxlxQxeyaxxavxxGxtxigixxxdgvviaxdxxxxxxxxxxxxxxxKixxIxxxixxxxsGxxxDxxxlxxxxxxxxxxxxxx
+xxxxxxxxxlaxxlxxxxxxxxxxxxxrPxxxxxivaGxdxxxxpxLyxidxxGxxxxxxxxaxGxgxxxaxxxLexxxxxxxsxxeaxxlxxxxlxxxx
+xrdxxxxxxixvxiixxxxxxxxgxxxxxxxxxixxxxxxxxxx
+>8e30ca516d2b86076f51d1316fab39ad
+GSRRYDSRTTIFSPEGRLYQVEYALESISHAGTAIGIMASDGIVLAAERKVTSTLLEQDTSTEKLYKLNDKIAVAVAGLTADAEILINTARIHAQNYLKT
+YNEDIPVEILVRRLSDIKQGYTQHGGLRPFGVSFIYAGYDDRYGYQLYTSNPSGNYTGWKAISVGANTSAAQTLLQMDYKDDMKVDDAIELALKTLSKTT
+DSSALTYDRLEFATIRKGANDGEVYQKIFKPQEIKDILVKTGIT
+>gi|291226741|ref|XP_002733349.1| PREDICTED: proteasome beta 9 subunit isoform 1 proprotein-like [Saccoglossus kowalevskii]
+----------R-LKMDKFPV-PFPDitKPVQTGTTIMATEFNDGVVIGGDTRTTSGTIITHKVSDKITEITDSIYCARSGSLADTQALADIIKYYMDMYR
+YYIDTNPMVSVvakQFQSLSYTWRDK--------IQAGLIVAGWDSVNCGQVYSIPMGGACVRQHVTISGSGSSYISGYIDAYYHNQMTKNECMNFTTNA
+ISLAIARDGGSGGVIRLAVITKD----GVERKVILGNHLPCFYDG----
+>gi|195037993|ref|XP_001990445.1| GH19348 [Drosophila grimshawi]gi|193894641|gb|EDV93507.1| GH19348 [Drosophila grimshawi]
+-----------------------------CNGSIIAMHGKDCVAIAV------KGGNINDSNKNLYKLGARLYLGLTGRLADILMAYKHLILRKNIFELE
+KNRELLPKELTLILSQLL--Y----AHRlvPFQIEAVIVGMDPDTlEPHICSLGMIGYPNVtKDFVVAGHRHGPLLGLCKSLWRPSLNPSQLYDTIGQTM
+IQFCTSYISVGCGVDICLIEK---------------------------
+>gi|335282239|ref|XP_003354003.1| PREDICTED: LOW QUALITY PROTEIN: proteasome subunit beta type-5-like [Sus scrofa]
+---------------------------MLHHTTILAFKILLGVIVAADSWDMAVAYIASQTVKNVIEISLYLLATGAVGAVN----crf---LAQQXXIY
+ELQNKGCISVAAASKLLANMVYQYKGM----GLSMGTMICVWGK----rgpGLYYMDSEGNWIWGVDFSVGSRSVHAY--gfM--GYSYDLE-vERAYDM
+ASQATYXASXSDAYSGGLVNLYHVW-----E--DgWIQSSSDNVAYLH---ykyS--
+>gi|194765170|ref|XP_001964700.1| GF23325 [Drosophila ananassae]gi|190614972|gb|EDV30496.1| GF23325 [Drosophila ananassae]
+----------------------HSTAAITTGSSVIGIRFDKGVMMAADTLVSYGSLaRY-QNMERIFMINNNILFGGCGDFADIQSIIRGIEQKIVeDQC
+NGDDIEMKPKALGQWMTRVL--YDRRTQMNPLLVDVVLGGLDvQ-GKPYLANVDLRGRSHDDFVIATGFARHLTIPFIRSAKPkdRDFNMDEAHEMIKRS
+MQILYYRDTRNNSQYTLGVCSP-----KN-CGIEGPYQVAEN-------
+>gi|341876605|gb|EGT32540.1| hypothetical protein CAEBREN_25994 [Caenorhabditis brenneri]gi|341877137|gb|EGT33072.1| hypothetical protein CAEBREN_23993 [Caenorhabditis brenneri]
+----------------------------MAGMhFLVGISTENYVILAADKATfAYGAILADSENDKEYRLGKKLTMMCIGEEGDVAQFGDWTKRNLQLYS
+VRNGYEVSPACAHHFVRRSIAEGLRS--QDHYTVDVLIGGYDDKEeKAFLGSVDYLANgLAQQPYLFRGFCGRFCYAIMDREYKKDMSEADGLALMNKCI
+GEAKRRFVANIPGYKVVIIDK-----NG-YRKLD--------------
+>gi|328543397|ref|YP_004303506.1| peptidase, T1 family [Polymorphum gilvum SL003B-26A1]gi|326413142|gb|ADZ70205.1| Peptidase, T1 family [Polymorphum gilvum SL003B-26A1]
+------------------------------MTYCVGLKLDRGLVFAADTRTNAGVDNI-ATFKKLKIWEKPgervFALMSSGNLAITQSVVSILSEQIAs
+hSNKGPtLMSVDTLFQAARVVGSAVrEVRALDGeaLaasAENFYVTFIFGGQIMGEEPRLFQIYSAGNFIEatddTMFFQIGE-HKYGKPILDRVTRHDM
+RLGEAAKMALLSFDSTLRSNLSVGMPIDLLLYNT---------------------------
+>gi|162606210|ref|XP_001713620.1| 26s proteasome SU A6 [Guillardia theta]gi|13794540|gb|AAK39915.1|AF165818_123 26s proteasome SU A6 [Guillardia theta]
+-------NQTLFDSDGKILQLEFALKIPNQGKMIFSFKSINHSYIISEiheKKTNN------KFFNRFYSIDNNIGLGISGIFFDAKKIFNFCVELNIKI
+KQAFKNFCSVEYISKKISEAFSNNTLKINQRPYAINVFIIGFSD-KGPIIFEISTDGLMTYKKTCLSGSSINSYTKELFSIIKndKKMLNDEIFMIsFYQ
+CIKKSEK--NSSNQIFSLSILGK-----KTKFTILN-KIVDRFYTK----
+>gi|114705646|ref|ZP_01438549.1| hypothetical protein FP2506_14309 [Fulvimarina pelagi HTCC2506]gi|114538492|gb|EAU41613.1| hypothetical protein FP2506_14309 [Fulvimarina pelagi HTCC2506]
+-------------------------------TVVLAVVCRDGVVIGSDSQITDKGRDMTYPADKLHPLGELAAWGGSGARSVLADVKRRFDENSAaiLDA
+PDIGRALQEQvlpilrhHYETFIPDVPGE---AGGG-TPAAYVMAAGWRN-GEPWILEITPSGMighYANIGFHAIGSGAPMAQQanSLLSHFHlTKRSL
+RFGCAAVLRVLQ-ALDLTsSSVGGPFNLCRIDA-----EG-AHHLDKDEIEVVSDIV---
+>gi|340788739|ref|YP_004754204.1| 20S proteasome subunits A and B [Collimonas fungivorans Ter331]gi|340554006|gb|AEK63381.1| 20S proteasome, A and B subunits [Collimonas fungivorans Ter331]
+------------HPTGQ---LAYRWRAIM--TTCVVVKKNGQIAIASDSLVTFGdtrLSHAYEVNNKIFQIGE-SYITLAGTAAHFPVMRKLLTAMGEEC
+RLNSRDEVfdTFSKVHTILKDQYFLNTKEDEDDPYESsqiTSLVA--NP-YG--IFGVYSYREVFSfDRFWGIGSGRNFALGAMYAVYDKDVSAQH---I
+AEVGIHAGVEFDKSSAMPLRIHSFEM---------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+G 1    *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1000	0	0	
+
+S 2    *	*	3477	3350	*	3511	*	*	*	3484	*	*	3431	3352	2560	1864	*	*	*	*	2
+       0	*	*	*	*	*	*	3948	0	0	
+
+R 3    4213	*	4050	*	*	4104	*	*	2680	4133	*	3264	*	*	3264	2243	2781	*	*	4335	3
+       0	*	*	*	*	*	*	4969	0	0	
+
+R 4    3711	*	3856	3696	*	2203	*	*	3492	4758	4701	3116	4577	4839	3234	3937	*	4951	*	*	4
+       0	*	*	1585	585	*	*	5647	1046	0	
+
+Y 5    *	4759	4878	*	3712	*	4113	4823	*	*	*	4930	*	*	*	4971	4105	*	4523	753	5
+       0	*	*	*	*	*	*	5919	0	0	
+
+D 6    4302	*	747	3888	*	*	*	*	4124	*	*	*	*	5164	*	3392	4905	5009	*	4613	6
+       0	*	*	*	*	*	*	5998	0	0	
+
+S 7    4700	*	4101	*	4068	*	*	*	4992	2236	*	3170	4971	5406	2559	2679	3590	*	*	5348	7
+       0	*	*	0	*	*	*	6119	1037	0	
+
+R 8    4413	*	2720	4037	4496	*	5335	*	5329	5026	*	3430	3363	*	4260	1772	5165	5021	*	5512	8
+       35	*	5382	3999	93	*	*	6276	1154	0	
+
+T 9    3620	5035	*	*	*	*	*	3151	*	2158	*	5743	2514	4946	5352	5258	3838	3070	*	3543	9
+       32	*	5489	*	*	*	0	6499	0	1000	
+
+T 10   4370	5333	4900	*	*	4041	*	*	*	4157	*	2568	*	*	5319	3848	962	*	*	*	10
+       0	*	*	*	*	0	*	6476	0	1110	
+
+I 11   5531	*	*	*	4501	*	*	1901	4034	3696	3697	4478	4437	*	5014	4130	2421	3550	*	*	11
+       89	*	4058	*	*	*	*	6752	0	0	
+
+F 12   *	*	*	*	666	*	*	*	*	*	*	*	*	*	*	*	*	3806	4427	1991	12
+       0	*	*	*	*	0	*	6594	0	1190	
+
+S 13   3300	*	3938	4543	*	3398	4807	*	*	5078	*	3901	*	*	5006	1248	3171	*	*	*	13
+       0	*	*	*	*	*	*	6918	0	0	
+
+P 14   5820	*	*	5708	*	*	5550	*	5078	*	*	5429	570	5531	*	3425	4324	4301	*	*	14
+       38	5269	*	0	*	*	*	6918	1046	0	
+
+E 15   5514	*	1591	1626	*	5460	*	*	5626	*	5078	5726	*	3871	*	3885	3400	*	*	*	15
+       63	4543	*	0	*	*	*	6918	1124	0	
+
+G 16   *	*	5109	5916	5009	158	*	*	*	*	5214	*	*	*	*	*	*	*	*	*	16
+       0	*	*	*	*	*	*	6886	0	0	
+
+R 17   5916	*	5760	*	*	*	4770	5009	2281	*	*	3922	*	4040	1297	3124	5516	*	*	5571	17
+       80	*	4210	*	*	*	*	6886	0	0	
+
+L 18   *	*	*	*	5038	*	*	2206	*	1139	4562	5948	*	*	5146	*	4250	2648	*	*	18
+       41	*	5146	*	*	*	0	6743	0	1185	
+
+Y 19   *	*	4508	4525	2723	4326	4485	5341	4609	2142	*	5796	3670	*	4130	5863	4495	*	*	2651	19
+       35	5393	*	0	*	*	0	6790	1000	1335	
+
+Q 20   *	*	*	5482	*	*	*	*	*	5604	*	*	5175	244	*	5213	*	4106	*	*	20
+       49	*	4903	*	*	1519	619	6790	0	1335	
+
+V 21   *	5476	*	*	*	5472	*	2351	5408	1868	*	5470	4878	*	*	4412	*	1482	*	*	21
+       0	*	*	*	*	1412	680	6797	0	1354	
+
+E 22   4961	*	3175	746	*	*	4985	*	4613	5028	*	*	4995	5268	*	4424	4746	5895	*	*	22
+       0	*	*	2322	322	1004	996	7051	1006	1174	
+
+Y 23   *	6018	5662	*	3390	*	5356	5162	*	4604	*	5658	5633	*	3735	5459	*	*	*	648	23
+       0	*	*	2585	263	0	*	7270	1021	1021	
+
+A 24   728	*	*	*	5278	4063	*	4523	5457	*	5201	*	5229	5598	5101	3569	5830	4681	*	*	24
+       0	*	*	*	*	*	*	7299	0	0	
+
+L 25   4051	*	5697	*	3494	4866	5764	5205	3971	2128	3087	5393	*	3350	4823	3713	4774	4364	5436	*	25
+       146	4390	4365	1661	548	*	*	7860	1305	0	
+
+E 26   4299	*	3751	2253	*	4970	*	4799	1885	*	5745	3573	*	3955	3001	5654	6103	*	*	*	26
+       0	*	*	*	*	*	0	7894	0	1223	
+
+S 27   1046	4776	*	5885	5804	5560	*	4704	5597	4997	*	5427	2866	5954	5638	3663	5061	5197	*	*	27
+       58	5721	5597	1843	471	706	1370	7925	1153	1223	
+
+I 28   3196	*	*	6343	6098	*	*	2480	*	4807	4352	5531	4526	5889	*	3210	4594	1548	*	5225	28
+       19	6287	*	0	*	889	1121	8239	1000	1167	
+
+S 29   4747	6087	3460	4000	6534	*	*	4593	2711	4242	3571	2509	5312	4676	*	3855	3747	4809	*	4901	29
+       85	4641	5866	2115	379	0	*	8406	1280	1006	
+
+H 30   3620	6143	6370	6379	4372	6333	4468	5309	2927	3910	6239	2379	*	3930	3451	4361	2962	*	*	6412	30
+       0	*	*	*	*	*	0	8480	0	1032	
+
+A 31   3703	*	*	5991	*	618	*	*	*	*	4610	6236	*	6547	6592	2689	6347	6247	*	*	31
+       24	5914	*	2361	312	0	*	8663	1099	1032	
+
+G 32   5965	6725	5378	6570	6453	2301	5586	*	5085	4994	6481	3645	5118	*	4907	2765	1648	5352	*	*	32
+       60	4626	*	0	*	*	*	8833	1350	0	
+
+T 33   3822	6888	*	*	4672	*	6311	4626	*	3381	6226	5420	3841	*	*	2540	1422	4135	*	5381	33
+       0	*	*	*	*	*	*	8909	0	0	
+
+A 34   3158	3405	*	*	*	*	*	2150	*	3123	5640	*	6507	*	*	3588	3165	2176	*	7288	34
+       0	*	*	*	*	*	*	8909	0	0	
+
+I 35   4421	*	*	*	4914	*	*	1583	*	2373	5184	*	6507	*	*	*	*	1495	*	*	35
+       12	*	6888	*	*	*	*	8909	0	0	
+
+G 36   1409	6712	*	*	6254	1068	*	*	*	*	*	*	*	*	*	4911	5103	4021	*	*	36
+       0	*	*	0	*	0	*	8903	1000	1000	
+
+I 37   3689	*	*	*	4048	*	*	1534	*	2212	3982	*	*	*	*	6283	6678	2283	*	6727	37
+       0	*	*	*	*	*	*	8929	0	0	
+
+M 38   3923	5771	*	4676	*	*	6549	4612	1635	4540	5810	*	*	3661	2736	4036	4118	3403	*	*	38
+       9	7262	*	4392	70	*	*	8929	1000	0	
+
+A 39   4220	3331	6283	*	3441	2290	5711	6845	5022	4874	*	4428	*	*	6901	3189	3277	5217	6768	2824	39
+       0	*	*	*	*	*	*	8929	0	0	
+
+S 40   4331	*	3219	3950	*	4407	5485	6276	1860	*	*	2577	5778	5933	3420	3429	5503	6657	*	*	40
+       0	*	*	*	*	*	*	8953	0	0	
+
+D 41   5517	*	1138	4098	*	3285	5192	*	3630	*	*	3223	6835	5805	5950	4054	4489	*	*	*	41
+       50	6406	5499	0	*	*	*	8953	1027	0	
+
+G 42   5571	3861	*	6763	3037	875	5037	*	5291	6891	*	6880	*	6303	6875	4359	5808	5733	*	4197	42
+       0	*	*	*	*	0	*	8906	0	1154	
+
+I 43   3011	5683	*	*	6526	6555	*	1961	*	3696	6560	*	*	*	*	5082	5607	1184	*	*	43
+       16	*	6525	*	*	*	*	8953	0	0	
+
+V 44   3677	5049	*	*	6786	*	*	1980	*	2739	4822	*	*	*	6518	*	6445	1360	*	4965	44
+       0	*	*	*	*	0	*	8934	0	1029	
+
+L 45   5841	*	*	*	3157	*	*	1752	*	1566	3598	*	*	*	*	*	*	2706	*	*	45
+       34	5440	*	2416	299	*	*	8953	1158	0	
+
+A 46   915	5134	*	*	5607	2830	*	4033	*	4215	5841	6332	*	*	*	5520	6345	3305	*	*	46
+       27	*	5757	*	*	*	*	8953	0	0	
+
+A 47   1894	4112	6504	*	6765	3161	*	4855	6407	5267	*	*	*	6546	*	2267	2914	3397	*	5455	47
+       83	6504	4469	572	1612	799	1234	8902	1157	1126	
+
+E 48   5960	*	891	2479	6440	*	4604	*	5526	4720	5746	5475	5928	4442	6737	5786	*	6957	*	6149	48
+       36	6194	6550	792	1243	636	1487	8827	1317	1548	
+
+R 49   *	6850	6525	6281	*	3948	*	4573	2264	3944	6081	4067	6765	6772	3557	2512	2199	5887	*	*	49
+       43	6759	5637	5170	41	*	0	8895	1004	1282	
+
+K 50   4308	6643	5431	5778	5378	6492	6207	5621	2694	4262	6519	5008	4490	3075	1873	3974	4042	5640	*	*	50
+       10	7234	*	1000	1000	*	0	8875	1000	1534	
+
+V 51   2948	5699	*	6127	4974	5829	5663	2924	4537	3075	5576	5588	5698	4691	5551	3910	2855	2753	*	*	51
+       102	5123	4661	470	1846	2624	255	8875	1221	1534	
+
+T 52   4322	5788	*	4841	5601	4197	4377	4689	*	5738	*	3212	4194	5640	6631	2216	1981	4514	*	6486	52
+       168	3480	5613	1916	444	*	0	8794	1974	1909	
+
+S 53   4204	6012	4590	4396	5402	3665	5086	*	5577	4536	4227	3052	4806	4203	4479	2445	4048	*	*	3437	53
+       58	5339	6103	277	2518	2303	327	8771	1292	2133	
+
+T 54   *	*	4606	4081	7001	1472	*	6697	2691	5839	*	4060	3623	5025	6491	2936	5416	*	*	6316	54
+       78	4925	5679	2451	291	*	0	8767	1387	2040	
+
+L 55   3637	*	*	5006	4643	4287	6610	3436	6428	1881	3745	4077	*	6805	6496	3414	4616	3543	*	4748	55
+       58	5336	6111	0	*	1843	472	8703	1347	2314	
+
+L 56   4005	*	4844	5749	4656	5617	*	2964	*	2547	3839	5337	5586	4764	4726	3193	4270	4291	*	3026	56
+       218	3892	3778	2100	383	2974	196	8741	1701	2080	
+
+E 57   5657	*	3376	3248	4436	5053	6110	2208	3587	5078	*	3757	5891	6402	3952	4016	5105	3545	*	6087	57
+       126	5276	4118	0	*	2551	270	8665	1232	2767	
+
+Q 58   3224	*	4377	4794	4594	6821	6527	4734	4705	3739	4210	4625	3560	5278	5500	3061	3433	3272	*	4215	58
+       1144	5488	929	1330	732	*	0	8606	1134	2997	
+
+D 59   4609	5557	3101	*	*	*	4374	*	2286	5420	5310	3184	*	5339	4399	2229	3787	*	*	4279	59
+       72	4370	*	1539	608	209	2889	7296	1201	6538	
+
+T 60   5212	5612	3261	3471	6754	4782	5988	6290	2780	*	*	4081	4630	4103	2914	2784	4209	6469	*	4739	60
+       49	*	4901	0	*	519	1728	8815	1150	1987	
+
+S 61   4454	*	2869	4235	5470	5935	5087	5976	5214	5052	6361	2266	4040	6528	5461	2544	4340	4003	*	5293	61
+       0	*	*	2661	248	1288	760	8830	1185	1627	
+
+T 62   3533	4438	5568	4233	3301	4185	5841	4774	*	4859	5039	3739	7262	3292	*	4307	4934	2446	*	3887	62
+       12	*	6968	*	*	595	1566	8869	0	1323	
+
+E 63   *	6930	2933	2865	*	*	5257	*	3171	6409	6723	2982	3804	3654	4231	2969	3920	5937	6506	6245	63
+       0	*	*	0	*	0	*	8926	1000	1116	
+
+K 64   *	*	6301	5306	5924	*	5015	*	715	5604	6449	4838	*	*	2418	5023	5605	*	*	*	64
+       0	*	*	*	*	*	*	8954	0	0	
+
+L 65   *	5636	*	6672	3763	*	5897	1171	6826	2649	4933	*	*	6685	*	*	5079	2357	*	*	65
+       0	*	*	*	*	*	*	8954	0	0	
+
+Y 66   4363	6393	6702	6154	1760	*	3419	3839	*	4161	5117	6389	*	4967	4187	5015	4254	4149	6863	2995	66
+       12	6904	*	3459	138	*	*	8967	1002	0	
+
+K 67   3992	6455	4456	2954	6306	6641	5569	4402	2606	4758	*	4169	3481	4241	3785	4120	4400	4454	*	4730	67
+       53	*	4783	*	*	*	*	8967	0	0	
+
+L 68   5812	*	*	*	5387	*	6473	1287	*	1819	*	*	*	*	*	*	*	2028	*	6852	68
+       28	5681	*	351	2213	0	*	8908	1383	1370	
+
+N 69   5381	5855	2005	6646	6641	2954	4951	*	4992	5823	*	2776	6521	4846	5180	2724	4056	*	*	4367	69
+       15	*	6588	*	*	*	*	8967	0	0	
+
+D 70   5149	*	1861	2875	*	3700	6466	6514	2908	*	*	3200	3273	6633	7237	3801	5210	*	*	*	70
+       88	4677	5637	393	2068	0	*	8840	1388	1030	
+
+K 71   6253	6677	4547	6069	6780	5652	2731	6891	2674	5013	6841	2143	*	4132	3532	4847	4370	5600	*	4023	71
+       79	4237	*	2739	234	0	*	8841	1535	1194	
+
+I 72   4373	5539	*	*	5515	5801	6745	1485	4648	3110	3694	*	*	*	7194	4080	3839	2690	*	*	72
+       46	*	5007	*	*	*	*	8906	0	0	
+
+A 73   3322	5359	*	*	5690	2054	*	3638	*	2213	4710	*	*	*	*	*	4584	3482	4769	3140	73
+       0	*	*	*	*	0	*	8822	0	1298	
+
+V 74   4017	2578	*	*	4197	4585	*	2343	*	2615	3021	*	*	*	*	6506	6931	3057	5035	5564	74
+       0	*	*	*	*	*	*	8906	0	0	
+
+A 75   2022	3564	*	*	6772	1810	6374	4000	*	4662	4912	*	*	*	*	4581	3089	3873	*	*	75
+       12	6882	*	2000	415	*	*	8906	1000	0	
+
+V 76   3194	4325	*	*	2585	3692	*	3051	*	4017	3645	*	*	*	5251	3433	3755	3408	6350	4834	76
+       0	*	*	*	*	*	*	8906	0	0	
+
+A 77   2132	*	6685	*	*	4463	6783	4540	*	6840	*	4915	5531	*	*	1287	2835	4286	*	*	77
+       0	*	*	*	*	*	*	8906	0	0	
+
+G 78   *	*	*	*	*	55	*	*	*	*	*	*	*	*	6206	6526	6296	*	*	*	78
+       16	*	6490	*	*	*	*	8906	0	0	
+
+L 79   5670	4949	4479	3493	4430	4789	5940	3028	6498	2332	5080	3613	6623	6426	4729	3269	3975	6064	*	5053	79
+       13	*	6848	0	*	0	*	8879	1016	1016	
+
+T 80   2485	7235	6893	5136	4097	4185	5712	4245	5507	3295	*	*	4959	4243	4410	3433	3176	4450	5293	4006	80
+       0	*	*	*	*	0	*	8917	0	1000	
+
+A 81   1594	6112	5835	*	5418	2136	6727	5269	*	6512	*	4749	3353	6977	*	2539	5944	6938	*	*	81
+       0	*	*	*	*	*	*	8920	0	0	
+
+D 82   6562	*	278	6484	*	6191	5720	*	*	5744	*	5061	6896	*	*	*	5397	4635	*	*	82
+       0	*	*	*	*	*	*	8920	0	0	
+
+A 83   2292	3470	6694	*	2909	3411	*	3528	*	5174	7217	*	6881	*	4310	4132	3165	3292	*	5785	83
+       0	*	*	*	*	*	*	8920	0	0	
+
+E 84   5134	*	4451	3716	4262	5888	5670	5386	3623	3635	*	5116	6497	2395	2512	5374	4900	5711	*	3420	84
+       0	*	*	*	*	*	*	8920	0	0	
+
+I 85   2954	6639	4076	4361	4397	4768	5919	3486	4354	5694	4340	4462	6883	4347	4035	3769	3960	4273	*	3441	85
+       27	*	5736	*	*	*	*	8920	0	0	
+
+L 86   5418	6891	*	*	3234	*	*	3528	*	1410	3895	*	*	4450	*	6754	6988	2243	5168	5068	86
+       0	*	*	0	*	0	*	8888	1134	1134	
+
+I 87   3542	4877	*	4472	5552	4441	4764	2768	3572	2875	4891	6518	*	5136	4310	4863	4835	2641	*	6572	87
+       16	*	6497	*	*	*	*	8920	0	0	
+
+N 88   *	6610	2733	2495	6718	6880	5252	6470	3277	5649	6686	3118	*	3985	2505	3186	*	*	*	6763	88
+       0	*	*	*	*	*	0	8893	0	1016	
+
+T 89   4219	6984	5830	5040	4367	*	4541	3554	3107	3307	5281	5138	*	5554	2730	4762	4861	4313	4085	3472	89
+       0	*	*	*	*	*	0	8893	0	1016	
+
+A 90   2617	4196	*	*	3302	5053	*	2352	*	1931	5371	*	*	*	*	4576	5777	3359	6509	*	90
+       27	7025	6509	1000	1000	*	0	8893	1000	1016	
+
+R 91   5190	6716	4592	3251	6813	5618	4779	4763	2585	*	*	5175	*	3552	1813	4154	4939	4363	6895	7957	91
+       0	*	*	*	*	*	0	8871	0	1178	
+
+I 92   3314	*	3954	3409	5082	7190	6895	4497	3058	5114	5259	3835	*	5017	2927	3125	3723	5674	*	4866	92
+       28	*	5720	*	*	*	0	8871	0	1178	
+
+H 93   5528	6824	5319	2043	4503	*	4982	4042	3484	3347	4674	3765	*	4192	4637	4620	7202	4378	6827	3927	93
+       67	4847	6582	1473	644	1108	900	8808	1561	1439	
+
+A 94   1984	3003	6408	5305	6273	6444	5785	3223	5246	2747	5196	4971	5631	*	6751	4478	6330	3254	*	6693	94
+       35	6675	6167	2322	322	*	0	8826	1000	1313	
+
+Q 95   4505	6805	4660	2691	4608	6001	*	4159	3479	2686	6881	3534	*	3207	4110	3528	4798	*	*	6472	95
+       74	5045	5667	1678	541	1784	495	8825	1384	1490	
+
+N 96   5771	*	3364	2823	6540	6617	4765	4287	3836	2635	5178	3176	*	4281	4104	3628	5126	6558	6201	5529	96
+       97	5655	4477	0	*	1416	677	8802	1388	1571	
+
+Y 97   5036	6291	5089	4172	3027	*	3193	5471	6524	3810	6809	4850	5322	5624	3782	5751	*	5712	5930	1646	97
+       0	*	*	*	*	1652	552	8875	0	1855	
+
+L 98   4054	5155	*	2592	5294	5474	*	5090	2722	5090	*	5094	5275	5043	2450	3335	4789	6175	5832	4249	98
+       38	5815	6967	0	*	2339	318	8848	1158	1553	
+
+K 99   6025	*	3901	5146	3307	5064	5124	3826	3766	2416	5888	4577	6437	4673	4365	4806	6791	5177	6790	2653	99
+       28	*	5724	0	*	1582	586	8841	1000	1678	
+
+T 100  4573	*	3457	3504	5900	5154	6649	5483	3383	3745	6650	3363	*	3689	3319	3452	3765	4005	*	5712	100
+       46	5464	6838	906	1100	567	1622	8859	1371	1645	
+
+Y 101  5809	*	4755	4024	2573	5483	5719	4632	5067	3936	5733	2703	*	*	4793	4349	3887	6631	*	2296	101
+       55	6294	5355	0	*	1782	496	8890	1045	1231	
+
+N 102  7409	5903	3120	3704	*	1314	*	*	3323	4782	*	3407	5155	4598	4815	5101	6714	6762	*	*	102
+       40	*	5175	0	*	1191	832	8889	1000	1467	
+
+E 103  5086	*	4724	2630	5679	5361	6559	5019	4073	4256	4529	4634	6668	4566	2420	5014	2970	4973	8016	4125	103
+       73	5531	5161	286	2478	1536	610	8985	1424	1597	
+
+D 104  2950	*	3744	2706	4702	4998	6636	*	3255	4180	6944	4846	2901	5917	5692	3961	4250	5712	*	4195	104
+       66	5982	5121	867	1147	1795	490	8844	1365	1684	
+
+I 105  4721	4967	*	6409	5701	6620	7030	2281	6768	2687	3040	6419	3192	*	5535	4570	5517	2593	*	5864	105
+       91	4923	5146	750	1303	635	1491	8857	1673	1797	
+
+P 106  5100	6051	3845	4851	*	5743	6449	*	4478	5714	6632	4215	2679	4611	4956	2166	2314	5242	*	6170	106
+       0	*	*	*	*	2798	224	8863	0	1615	
+
+V 107  3568	5486	*	5575	4975	4477	*	3845	*	4136	4535	*	2361	*	6470	5190	3248	1798	*	*	107
+       34	7917	5727	3736	113	1343	723	8831	1107	1511	
+
+E 108  4480	*	3144	3323	6227	4586	4375	6973	2938	*	5833	4193	5891	3944	3000	2617	5684	5161	*	6496	108
+       43	5088	*	3020	190	1401	687	8830	1221	1496	
+
+I 109  3515	6724	5093	2829	6721	3817	3911	3711	4746	4958	5192	5985	6386	4487	4095	3458	4116	3863	*	3949	109
+       41	5154	*	1585	585	1696	532	8856	1353	1262	
+
+L 110  3003	4947	*	6510	4914	*	*	3033	5812	1376	4821	*	*	6680	*	5892	6895	2671	*	4436	110
+       11	*	6989	*	*	*	0	8921	0	1142	
+
+V 111  1359	4374	6640	6501	4675	5775	3933	6636	5642	3878	6627	*	*	*	5567	3268	4228	3019	*	6929	111
+       0	*	*	*	*	*	0	8913	0	1272	
+
+R 112  4408	6929	3775	3988	7017	4567	3245	*	2906	5632	*	2688	*	4110	3127	3657	4280	5807	*	5409	112
+       16	6545	*	0	*	*	0	8913	1027	1272	
+
+R 113  4472	5774	5085	4594	3033	5634	5754	4224	3126	2802	3745	6901	*	5087	4143	3676	6876	5321	4560	3828	113
+       39	*	5228	*	*	*	0	8913	0	1272	
+
+L 114  3817	4758	*	*	3867	*	*	1822	*	1378	6033	*	*	*	*	6680	5326	3529	*	5690	114
+       13	*	6758	*	*	*	0	8838	0	1608	
+
+S 115  2175	4606	*	6573	*	2872	*	6344	5106	*	5762	5679	6443	5009	3142	1903	4502	4940	*	6498	115
+       50	*	4866	*	*	*	0	8831	0	1711	
+
+D 116  4374	5163	2553	3825	6246	5154	*	5835	3560	5073	*	3236	*	3698	3060	3284	4378	6302	*	4541	116
+       0	*	*	0	*	2230	346	8759	1016	2121	
+
+I 117  5412	*	7119	4281	4891	*	5793	2665	3375	2642	3913	5045	6330	4955	5804	4789	3409	3434	*	3841	117
+       0	*	*	*	*	3247	161	8795	0	1868	
+
+K 118  4246	7885	*	6334	3783	*	6912	2989	4385	2226	3354	4401	4953	6676	5111	4547	4138	3535	6577	4332	118
+       473	4850	2031	2931	203	2706	240	8804	1460	1768	
+
+Q 119  3729	*	*	5180	4661	4452	2715	5509	3639	3539	*	*	*	1854	3888	3961	*	6135	6333	4791	119
+       23	5968	*	0	*	4675	58	8410	1039	4204	
+
+G 120  3293	*	3397	2275	6385	4470	6452	4505	3512	3826	5372	3803	6395	4549	4400	4708	*	4498	*	4460	120
+       43	*	5092	*	*	398	2054	8460	0	4100	
+
+Y 121  4743	4691	6530	*	2995	6660	5273	5104	5708	4097	7196	3548	5705	5399	5053	4497	4596	4828	4473	1670	121
+       275	6678	2608	1585	585	*	0	8800	1020	2011	
+
+T 122  4202	*	6703	5111	4310	5231	*	4510	3762	3103	5475	4382	*	5423	3843	3822	1510	6543	*	*	122
+       69	*	4411	*	*	*	0	8664	0	3774	
+
+Q 123  5241	6245	*	4663	6053	4145	5957	6086	3954	3399	6806	4482	5384	1995	2149	5233	4561	6960	*	5146	123
+       102	6389	4154	521	1722	1713	525	8602	1209	4097	
+
+H 124  6198	*	3910	4893	*	4476	4096	6399	3247	5082	4556	4367	6946	5980	2005	3199	5576	5169	*	3128	124
+       245	4951	3016	3669	118	2069	393	8614	1208	3679	
+
+G 125  4281	4725	4383	4773	5101	2200	*	4568	4581	4643	6684	4917	4977	5239	4044	2402	6089	*	4640	4326	125
+       218	4497	3385	1563	596	1318	740	8564	1399	3957	
+
+G 126  3185	*	4542	4004	6038	1787	5306	*	4062	5363	5997	3727	6048	4458	5714	3247	5080	4580	*	5461	126
+       168	4263	4107	2056	397	1435	666	8587	1428	3548	
+
+L 127  3888	6705	4283	5311	5077	3308	6214	5019	4193	3074	3211	4844	*	4059	3273	4523	4989	4067	*	4130	127
+       160	4009	4548	2119	378	2042	401	8847	1666	3200	
+
+R 128  4848	*	3375	6620	5088	5461	6561	6336	4621	4781	6333	4732	*	4875	799	5487	6459	6137	*	*	128
+       142	3629	6267	1098	908	751	1301	8850	1717	3073	
+
+P 129  6596	*	*	*	6709	3751	6675	6962	6571	4996	*	6480	627	5176	4748	4164	5509	5657	*	5315	129
+       13	6778	*	0	*	0	*	8877	1000	1939	
+
+F 130  5610	*	6547	5425	1942	*	4835	5008	6644	2020	6585	*	4989	6007	6370	6753	5543	4753	6771	2210	130
+       33	5452	*	1317	740	*	*	9029	1274	0	
+
+G 131  2802	5856	4936	3880	4671	1674	6832	5740	6607	5891	*	4779	*	3885	6120	3793	4923	4838	5829	4173	131
+       0	*	*	*	*	*	*	9029	0	0	
+
+V 132  2288	2937	*	5481	5572	*	*	3569	6778	4894	5817	4537	6331	*	*	4996	3996	1613	*	*	132
+       17	6436	*	1585	585	*	*	9001	1032	0	
+
+S 133  3673	6194	4109	3757	6485	3811	7121	*	6061	5192	5265	3274	*	5058	4797	1755	3882	4955	*	4255	133
+       29	6491	6874	0	*	*	*	9001	1027	0	
+
+F 134  3358	6400	*	*	3965	4625	*	3532	*	2083	3203	5050	4354	*	*	4223	4263	2633	*	6772	134
+       0	*	*	*	*	0	*	9001	0	1000	
+
+I 135  *	6205	*	*	5067	*	*	1608	*	1585	3577	*	*	*	*	6611	5171	2618	6556	*	135
+       10	*	7141	*	*	*	*	9001	0	0	
+
+Y 136  4752	6409	*	*	4141	*	*	1974	*	1927	6736	*	*	*	*	6780	6625	1635	*	5247	136
+       11	*	7022	*	*	0	*	8977	0	1000	
+
+A 137  1375	4480	*	*	4685	1928	*	3262	*	4771	*	*	*	*	*	4763	5604	3843	*	*	137
+       68	*	4443	0	*	0	*	8995	1021	1021	
+
+G 138  6524	6567	*	4952	6438	314	*	*	*	*	*	6334	6840	6317	*	4461	5272	5726	*	7315	138
+       40	*	5190	0	*	2425	297	8951	1000	1490	
+
+Y 139  6460	4963	*	6461	2908	*	5636	2710	6701	3138	6487	*	6652	4124	5720	6969	5666	3180	2968	2713	139
+       33	6127	6885	2622	256	0	*	8897	1358	1758	
+
+D 140  *	6941	864	3371	7103	4680	6712	5606	5324	6513	*	3503	*	5060	5656	3736	*	6719	*	6523	140
+       156	*	3286	0	*	*	0	8996	1000	1000	
+
+D 141  5415	6234	2754	2672	7028	6609	6750	*	3075	5332	6584	3547	3314	4187	5026	3045	3987	5566	*	*	141
+       637	5604	1572	2449	292	345	2233	8916	1229	2330	
+
+R 142  *	*	2691	2798	4457	3578	5210	4996	3329	5962	*	3508	4208	5211	4832	5058	3444	4649	*	4956	142
+       549	3819	2025	833	1189	412	2009	8613	1718	4657	
+
+Y 143  5387	*	3648	3177	*	1884	5175	*	4547	4789	6230	3029	*	4514	4079	4235	3649	6575	*	5261	143
+       217	2935	6771	1795	490	662	1442	8636	2614	3995	
+
+G 144  4976	6622	6464	2784	6675	1363	6528	5176	3207	5280	*	5528	6631	6760	4520	3600	4782	5205	*	*	144
+       118	4161	5469	1875	459	998	1002	8879	1781	2289	
+
+Y 145  4089	7034	5462	*	4191	3418	5338	5014	4335	3753	*	5597	1108	*	6622	5899	5823	5874	*	4752	145
+       16	6503	*	0	*	1107	900	8920	1350	1845	
+
+Q 146  5295	6399	5864	3371	3283	5022	2775	4902	4717	*	6583	4623	5743	2927	3278	3053	*	6724	5485	4602	146
+       16	6481	*	0	*	325	2310	8946	1277	1404	
+
+L 147  *	5875	*	*	6402	*	*	1851	6546	960	5414	6465	*	*	*	6883	5833	3207	*	*	147
+       0	*	*	*	*	0	*	9001	0	1000	
+
+Y 148  4499	4380	*	*	2009	3596	6794	6562	*	3973	6348	*	*	*	6602	6731	5833	6645	5972	1259	148
+       0	*	*	*	*	*	*	8977	0	0	
+
+T 149  4934	4213	5743	4338	3992	5637	5122	5586	3532	3858	4804	6926	6558	3453	4331	2874	4081	3623	5890	3875	149
+       0	*	*	*	*	*	*	8977	0	0	
+
+S 150  *	5975	*	*	4320	6338	*	1666	*	2973	5146	6046	*	*	*	4924	3697	1794	6945	5098	150
+       18	*	6335	*	*	*	*	8977	0	0	
+
+N 151  5767	6859	759	4110	*	5636	5587	*	6434	5597	5779	5058	5815	6183	*	3579	4585	*	*	4439	151
+       24	*	5926	*	*	0	*	8941	0	1051	
+
+P 152  4196	4644	6900	6312	*	4482	*	4719	5901	5239	4709	4465	1327	5091	6702	2969	5351	5236	*	4089	152
+       0	*	*	0	*	1017	984	8987	1000	1106	
+
+S 153  4187	*	3902	4595	4854	4826	5311	4163	4038	3695	*	4542	5616	4987	5310	1926	3859	4959	*	3976	153
+       0	*	*	*	*	*	0	8993	0	1000	
+
+G 154  3698	*	*	6713	*	184	*	*	*	*	*	*	*	*	5565	6353	*	*	*	*	154
+       0	*	*	*	*	*	0	8993	0	1000	
+
+N 155  3164	5221	5233	5572	5521	3995	6953	5796	4394	4695	6509	2983	*	7018	6591	2108	2997	4232	*	4288	155
+       79	4666	6173	1057	945	*	0	8993	1337	1000	
+
+Y 156  4759	4630	*	7061	2913	*	6784	2826	*	3713	5540	7017	5615	6744	4423	3579	5581	3178	6425	2160	156
+       56	5200	6525	0	*	753	1298	8922	1226	1164	
+
+T 157  3911	5713	4776	3824	3371	*	5833	3359	5520	3592	5411	4011	*	3556	5527	3525	4749	3795	4840	3882	157
+       26	5813	*	1306	748	1764	503	8948	1100	1266	
+
+G 158  *	5707	3737	2215	5352	4139	5550	*	2922	6304	6318	4793	4277	3616	3757	3487	4138	6581	*	4999	158
+       169	3178	*	929	1075	*	0	8954	2279	1150	
+
+W 159  4888	3435	3366	4595	5532	3973	6642	4753	4978	4933	6437	6450	6328	4106	4715	3673	4120	3306	4471	3001	159
+       16	6519	*	2000	415	*	0	8954	1011	1150	
+
+K 160  5240	*	3093	5753	*	3506	5569	6318	2795	5656	*	2737	3301	4363	3506	4841	4884	5752	*	3704	160
+       13	6798	*	0	*	*	0	8954	1000	1150	
+
+A 161  2100	5613	*	6304	2570	4361	5090	4532	7019	5266	6819	6426	6675	7533	5690	4534	5064	3277	5666	2650	161
+       11	*	7031	*	*	*	0	8954	0	1150	
+
+I 162  3040	3027	6740	*	4439	4274	4425	3031	4505	4233	5190	7005	*	6614	5961	4110	3490	2945	4892	6567	162
+       0	*	*	0	*	558	1640	8955	1000	1242	
+
+S 163  1129	4508	*	*	5791	4273	*	4058	*	5352	6509	*	*	5418	*	2641	4222	3375	*	*	163
+       0	*	*	*	*	*	0	8972	0	1000	
+
+V 164  3433	6900	*	*	*	5826	4637	1775	6327	3674	5358	5841	*	4472	5791	3483	2584	3366	*	*	164
+       12	6863	*	0	*	*	0	8972	1000	1000	
+
+G 165  6746	*	6732	*	*	63	*	*	*	*	*	*	*	5364	*	*	*	*	*	*	165
+       16	6467	*	1585	585	*	0	8972	1001	1000	
+
+A 166  5401	6177	5918	4510	4121	5074	5216	5043	4053	5209	4589	4080	5604	5560	4131	1827	3652	5007	*	3674	166
+       69	*	4418	*	*	*	0	8972	0	1000	
+
+N 167  2553	6607	5487	*	*	1068	6585	*	3158	6800	*	3845	*	6693	4326	4391	6417	*	*	*	167
+       0	*	*	*	*	747	1306	8847	0	1588	
+
+T 168  2752	5097	4791	4106	*	3362	5561	5275	5070	*	5924	4232	*	4067	4195	1770	4675	*	*	4729	168
+       0	*	*	*	*	*	0	8948	0	1165	
+
+S 169  3932	*	4141	3074	6601	4305	5074	4634	3858	4918	5752	4290	4192	2975	3892	3789	4692	6364	*	3571	169
+       0	*	*	*	*	*	0	8948	0	1165	
+
+A 170  4300	6474	5324	3778	2355	4823	6522	4281	4575	3173	5039	4535	4286	5807	6610	4229	4875	4415	*	3224	170
+       15	*	6623	*	*	749	1304	8948	0	1165	
+
+A 171  1250	4407	6149	7006	*	4517	*	2706	*	3103	5541	5487	*	*	*	4652	*	3307	*	6309	171
+       0	*	*	*	*	0	*	8963	0	1122	
+
+Q 172  6778	6378	6843	4124	4208	*	*	3555	2920	2871	4240	4043	*	3456	4018	5126	3714	5612	7551	3215	172
+       0	*	*	*	*	*	*	8967	0	0	
+
+T 173  2826	*	4646	4741	5581	2582	*	6407	4246	6884	*	3606	3154	4201	6843	2944	3049	*	*	6312	173
+       42	5116	*	727	1337	*	*	8967	1257	0	
+
+L 174  3536	*	*	3923	3309	*	4215	2631	6739	2232	5248	*	*	6063	*	5668	3839	4023	6481	3238	174
+       0	*	*	*	*	*	*	8963	0	0	
+
+L 175  4533	5204	*	*	4394	*	*	3702	*	638	3942	*	*	6649	*	*	6874	3902	*	6343	175
+       13	*	6788	*	*	*	*	8963	0	0	
+
+Q 176  *	*	2085	1501	6304	6752	5668	6642	3827	5563	*	*	*	4947	3019	3718	*	6328	*	5407	176
+       40	*	5180	*	*	*	0	8949	0	1000	
+
+M 177  3111	*	4864	3073	6809	4825	5622	*	2202	*	5772	3702	*	5423	2888	3016	4576	6107	6000	*	177
+       33	6760	6240	635	1490	*	0	8919	1238	1395	
+
+D 178  5074	6267	4521	3993	5971	3826	3081	4857	4542	2905	6541	3579	*	4134	2968	5324	5212	4586	*	3998	178
+       91	5171	4910	1221	809	1239	795	8881	1230	1550	
+
+Y 179  *	*	5070	5948	2826	6679	*	3939	4218	4445	5568	4907	6556	5751	*	6097	*	4294	2606	1621	179
+       77	5323	5206	954	1047	2359	313	8869	1233	1690	
+
+K 180  *	*	4227	3496	4639	5479	4083	5406	2140	5744	5378	3451	5697	5718	2449	3827	5522	5417	*	6073	180
+       225	2988	5790	1456	654	1906	448	8880	2636	1904	
+
+D 181  4312	*	3740	2880	5539	6756	5605	*	3172	5573	*	4013	2445	4762	4641	3265	4147	5791	5661	4843	181
+       234	3050	5106	2211	351	1589	583	8897	2612	1891	
+
+D 182  4818	5888	1989	3310	5394	3666	6528	*	3462	6207	*	2706	6524	4701	5362	3925	4199	5799	*	6369	182
+       82	4580	6237	1526	616	891	1118	8840	1694	1923	
+
+M 183  5680	5062	*	6501	4332	6572	*	3657	4347	1880	1980	*	6867	6185	4646	4646	4818	3803	5924	*	183
+       54	4771	*	1749	510	747	1306	8882	1585	1527	
+
+K 184  5092	5167	2930	4844	*	4914	*	5755	4368	6186	*	3678	4779	6747	6678	1620	2366	6668	*	*	184
+       0	*	*	0	*	708	1367	8887	1021	1290	
+
+V 185  3622	4493	4591	3446	4526	5815	6231	3015	4058	1985	4933	5604	4426	*	4779	5749	*	3729	*	*	185
+       0	*	*	*	*	*	0	8899	0	1033	
+
+D 186  3790	*	2126	1774	*	6487	*	6791	3216	4645	*	4047	*	4723	4082	4540	5054	*	*	6961	186
+       28	*	5693	*	*	0	*	8899	0	1033	
+
+D 187  4585	*	2272	1091	6449	5470	4957	*	4016	*	*	6894	*	3455	5196	6989	*	*	*	5717	187
+       46	6850	5463	0	*	*	0	8891	1000	1110	
+
+A 188  1117	5705	*	*	*	3318	*	6194	*	2795	6465	4631	6438	*	*	3970	4144	3679	*	*	188
+       0	*	*	*	*	*	0	8854	0	1377	
+
+I 189  4784	6417	6532	3985	4168	7024	*	2280	3316	2335	4348	*	*	6781	4839	*	5074	2505	*	6473	189
+       0	*	*	*	*	1091	914	8854	0	1377	
+
+E 190  3231	5092	3605	2332	5577	6534	5497	5869	3172	4256	6234	3583	6735	4447	3543	4110	4933	5602	*	*	190
+       0	*	*	*	*	0	*	8894	0	1141	
+
+L 191  4103	6483	6547	5554	4251	6603	4795	2887	4896	1367	4718	6662	*	6814	5626	6981	4366	3311	*	6750	191
+       19	6242	*	0	*	*	*	8919	1033	0	
+
+A 192  1739	5073	*	*	5565	3509	*	2275	*	3467	4574	7066	*	*	*	4694	5743	2664	*	*	192
+       16	*	6496	*	*	*	*	8919	0	0	
+
+L 193  4778	5770	6579	4675	6424	5551	*	3207	3407	2207	5993	5013	*	6826	2663	4675	5152	3156	*	4306	193
+       0	*	*	*	*	*	0	8909	0	1029	
+
+K 194  4920	*	4086	2758	*	4970	6080	6150	2377	3415	5647	3611	*	3863	3684	4112	4353	4774	6531	6535	194
+       0	*	*	*	*	*	0	8909	0	1029	
+
+T 195  1538	2586	*	*	6124	4243	6331	3949	6372	6535	6906	*	7052	*	*	3113	3693	3146	*	*	195
+       11	*	6983	*	*	*	0	8909	0	1029	
+
+L 196  *	*	*	*	3041	*	*	2413	*	1016	3535	*	*	*	*	6730	6622	3654	*	6518	196
+       12	*	6967	*	*	*	0	8902	0	1183	
+
+S 197  5335	6229	4181	4045	6727	4313	4598	4409	2255	4244	6226	5142	*	5011	2901	3668	4687	6730	*	3289	197
+       45	*	5022	*	*	*	0	8905	0	1290	
+
+K 198  3260	5539	6604	2717	*	5622	4934	3641	3703	4356	4814	3860	*	3858	6839	3654	3138	3877	*	6680	198
+       0	*	*	*	*	1042	960	8850	0	1674	
+
+T 199  1694	6483	6399	6224	5548	3853	*	3558	*	2927	6612	6476	*	*	*	3142	3771	3049	*	5743	199
+       48	6379	5605	1000	1000	1395	690	8903	1039	1290	
+
+T 200  3021	5403	*	5401	5473	6683	5069	3373	4216	2893	3884	4328	*	3989	3728	4582	3991	3597	*	4669	200
+       44	6664	5639	3273	158	1194	829	8865	1133	1388	
+
+D 201  4157	5584	2630	2787	4748	3470	6752	*	2915	5786	*	3935	4491	5018	3397	5635	5569	6346	*	4642	201
+       289	6359	2564	0	*	1039	962	8847	1027	1437	
+
+S 202  5115	6624	3607	3570	6069	6172	6325	4534	5259	5335	*	3640	5034	*	1261	3589	5469	5287	*	*	202
+       164	4787	3807	1159	857	488	1801	8656	1296	3191	
+
+S 203  4792	6543	1191	4510	4105	4395	*	*	5406	4075	*	3457	*	4549	5919	4616	4762	5624	*	4854	203
+       57	5389	6045	1322	737	470	1846	8727	1275	2366	
+
+A 204  2877	4635	3307	3843	*	4363	*	3334	3479	4429	6770	3730	5022	8564	5009	4105	4310	3165	*	*	204
+       17	*	6457	*	*	1052	949	8829	0	1465	
+
+L 205  4103	5565	3642	5426	3707	3586	*	4423	5747	3232	4809	5019	6908	*	5115	2913	3769	3471	*	3543	205
+       13	6833	*	2000	415	1512	623	8824	1000	1347	
+
+T 206  3231	6840	4666	5516	6479	3833	*	5300	3452	*	6365	3960	5066	5421	*	2024	2891	3117	*	*	206
+       15	6620	*	0	*	0	*	8838	1000	1181	
+
+Y 207  3488	5109	4701	3848	5675	1723	6676	4557	5541	4741	*	4053	3916	5054	6124	3945	3975	6255	*	5173	207
+       12	6951	*	0	*	*	*	8883	1021	0	
+
+D 208  6563	4725	3752	3616	3988	2724	5024	6640	3808	*	6299	3659	3634	5502	5073	2981	4688	4900	5782	5160	208
+       19	*	6273	*	*	0	*	8876	0	1021	
+
+R 209  5713	5971	4049	3315	5039	3409	5182	4635	4680	5626	6688	2592	3312	4321	4801	4440	4794	3895	*	4605	209
+       44	5058	*	1473	644	*	0	8854	1241	1023	
+
+L 210  5153	*	*	*	2512	*	*	1806	*	2788	4515	6669	*	*	*	6757	5724	2365	5495	3883	210
+       28	5685	*	2585	263	0	*	8854	1109	1023	
+
+E 211  *	6933	2634	1945	5415	*	4825	4328	4012	6695	5657	4618	*	3415	3366	4077	4087	6738	*	6359	211
+       17	*	6386	*	*	*	*	8883	0	0	
+
+F 212  6703	*	*	*	4480	*	*	1788	*	2286	3705	*	*	*	*	*	6537	1509	*	6340	212
+       14	*	6725	0	*	0	*	8846	1016	1016	
+
+A 213  2555	3099	6174	4830	4169	2587	6291	6519	3812	3699	6759	5957	*	*	6923	4058	4166	4700	5003	4284	213
+       18	*	6367	0	*	0	*	8864	1000	1000	
+
+T 214  *	6633	*	5236	5397	*	5605	1823	4071	3357	8613	*	*	*	4911	6261	3508	2166	3920	4218	214
+       20	6213	*	1036	964	0	*	8846	1181	1016	
+
+I 215  4309	5100	*	*	4689	*	*	1833	*	2331	6900	*	*	*	*	*	4733	1739	*	4146	215
+       74	5120	5577	0	*	0	*	8829	1253	1033	
+
+R 216  4480	6444	2551	4098	6162	3206	6717	*	3969	5580	*	5663	6913	*	3564	3101	2131	*	*	4620	216
+       464	6631	1917	0	*	0	*	8823	1000	1136	
+
+K 217  3531	*	4666	4086	4876	6438	6563	6251	1802	3734	4844	4231	4425	5208	3105	4712	6101	4229	*	*	217
+       1001	5869	1049	3000	193	*	0	8448	1000	3722	
+
+G 218  3378	*	1675	1863	*	3842	*	*	4680	4922	4518	*	*	4564	*	4798	4260	*	*	*	218
+       1549	*	603	*	*	*	0	6539	0	5463	
+
+A 219  2893	*	1751	*	*	2885	*	*	2795	*	*	*	*	*	2682	*	2909	*	*	*	219
+       514	*	1738	*	*	*	0	3706	0	6352	
+
+N 220  *	*	2357	2377	*	2370	*	*	*	*	*	2304	*	2208	*	*	*	*	*	*	220
+       0	*	*	*	*	5655	29	2949	0	6489	
+
+D 221  2423	*	1641	*	*	*	*	*	*	*	*	2567	1626	*	*	*	*	*	*	*	221
+       252	2643	*	4087	87	637	1486	3322	1000	6422	
+
+G 222  3352	*	*	3407	5300	3434	*	*	2283	*	*	3510	4482	5731	5577	3404	2516	5448	*	5652	222
+       122	4459	4809	0	*	305	2392	7514	1159	3462	
+
+E 223  4935	*	2650	2993	*	2794	*	6422	3618	*	*	2175	5568	2870	5894	5084	*	5682	*	*	223
+       117	6260	3940	523	1718	1007	993	8145	1143	1671	
+
+V 224  *	*	*	3645	*	946	*	5670	3698	*	*	4936	3963	4836	4553	6033	4790	4021	*	5892	224
+       851	*	1166	1810	484	673	1424	8123	1163	1938	
+
+Y 225  5226	*	3585	3323	*	3401	5071	4294	2617	4224	5420	5032	3741	5010	3657	*	3648	4221	*	5285	225
+       0	*	*	*	*	65	4512	7346	0	4005	
+
+Q 226  3750	5052	*	*	1667	*	4322	3660	*	3413	*	*	*	6052	5017	5245	4125	2846	4078	5072	226
+       65	5102	6045	635	1489	*	0	8168	1140	1033	
+
+K 227  *	4956	4513	3209	6250	*	3196	5929	1826	5012	6128	5917	*	5042	2255	6064	4386	5027	*	*	227
+       0	*	*	*	*	1055	947	8149	0	1185	
+
+I 228  *	6242	6096	6152	4008	*	3663	1931	2779	3526	*	*	*	4655	3764	*	4619	3221	*	4033	228
+       26	5795	*	0	*	*	0	8168	1023	1033	
+
+F 229  6258	*	6187	3517	3001	4407	6338	3440	6173	1523	4925	4941	*	*	*	*	*	3178	5939	4180	229
+       68	4444	*	2220	349	*	0	8168	1246	1033	
+
+K 230  4149	*	3199	3610	5888	3691	*	*	4485	5896	*	3311	2356	6047	5226	2874	3224	5986	*	*	230
+       32	*	5507	*	*	0	*	8086	0	1033	
+
+P 231  4319	*	4296	2679	4369	3830	5190	6002	3073	5018	5660	3952	2611	5866	6039	3787	4375	5931	*	6160	231
+       0	*	*	*	*	0	*	7982	0	1033	
+
+Q 232  4218	*	2901	2053	6133	4998	4984	6000	3042	5954	6080	3293	5675	4968	*	4208	6166	6084	*	3475	232
+       55	*	4740	*	*	*	*	8044	0	0	
+
+E 233  5512	*	3169	1317	5964	*	5778	3686	4080	4202	*	5893	*	5377	3883	5920	4941	4023	5591	*	233
+       27	5769	*	4459	67	*	0	7921	1021	1154	
+
+I 234  *	*	*	4782	4241	*	*	1486	*	3258	*	5973	*	*	4322	5574	5948	1531	*	*	234
+       0	*	*	1000	1000	0	*	7848	1154	1154	
+
+K 235  4219	*	2556	2215	5842	4076	5800	4913	3257	6212	*	3875	4270	4701	4093	3354	*	*	*	*	235
+       56	5604	5823	1585	585	*	*	7938	1021	0	
+
+D 236  3352	4605	3110	2142	5799	5812	*	4611	3709	5854	5415	4130	3673	3987	5269	5646	4601	4681	*	*	236
+       0	*	*	0	*	0	*	7603	1021	1021	
+
+I 237  5052	5489	*	*	2331	*	5778	2604	*	2148	5634	4222	*	*	*	*	*	2520	*	3436	237
+       0	*	*	*	*	*	*	7344	0	0	
+
+L 238  5312	*	*	*	3003	*	4416	2846	5432	1469	*	*	*	*	4390	3425	*	5091	5062	3649	238
+       0	*	*	*	*	*	*	7192	0	0	
+
+V 239  4140	*	2708	2203	*	3554	*	*	3588	5109	*	*	*	4124	3987	3549	3999	4266	*	4173	239
+       0	*	*	*	*	*	*	7032	0	0	
+
+K 240  5079	*	5117	5142	*	4044	*	4184	2606	*	5186	3906	*	4085	3687	2768	3054	2884	*	*	240
+       0	*	*	*	*	*	*	6958	0	0	
+
+T 241  3402	*	*	*	5105	*	*	1949	*	3185	4788	*	*	*	4825	4903	3855	2168	*	3175	241
+       0	*	*	*	*	*	*	6481	0	0	
+
+G 242  1807	*	3784	1937	*	2633	*	*	2773	*	*	*	3779	*	*	*	*	*	*	*	242
+       391	2073	*	1000	1000	*	*	4701	1013	0	
+
+I 243  *	*	*	*	2049	*	*	1958	1988	*	*	*	*	*	*	*	*	2006	*	*	243
+       0	*	*	*	*	*	*	2507	0	0	
+
+T 244  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	244
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  8fd273e25da1bf193a2bf90e2bc9fef0
+FAM   
+FILE  8fd273e25da1bf193a2bf90e2bc9fef0
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:12:17 2013
+LENG  63 match states, 63 columns in multiple alignment
+FILT  7 out of 9 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  1.4 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEEEEEEEEECCCEEEEEEECCHHHHHHHHHHHHHHHHHHCCEEEEEECCCCEEEEEEECCC
+>ss_conf PSIPRED confidence values
+938999999807947878860307888799999999878657806999617926999996679
+>Consensus
+evtikanlifaxgxtqtaefkgtfeeataeayxyadxlxkxngextxdxxdxgxtlnikfagk
+>8fd273e25da1bf193a2bf90e2bc9fef0
+EVTIKVNLIFADGKIQTAEFKGTFEEATAEAYRYAALLAKVNGEWTADLEDGGNHMNIKFAGK
+>gi|159164775|pdb|2PTL|A Chain A, Three-Dimensional Solution Structure Of An Immunoglobulin Light Chain-Binding Domain Of Protein L. Comparison With The Igg-Binding Domains Of Protein G
+EVTIKANLIFANGSTQTAEFKGTFEKATSEAYAYADTLKKDNGEYTVDVADKGYTLNIKFAG-
+>gi|261824459|pdb|2KAC|A Chain A, Nmr Solution Structure Of Kx6e Protl Mutant
+EVTIKANLIFANGSTQTAEFEGTFEEATSEAYAYADTLEEDNGEWTVDVADEGYTLNIEFAG-
+>gi|150674|gb|AAA67503.1| protein L [Finegoldia magna]gi|745058|prf||2015385A protein L
+EVTIKVNLIFADGKIQTAEFKGTFEEATAKAYAYANLLAKENGEYTADLEDGGNTINIKFAGK
+>gi|322065|pir||A45063 immunoglobulin-binding protein LG - Peptostreptococcus magnusgi|261706|gb|AAA03280.1| protein LG [Finegoldia magna]
+EVTIKANLIYADGKTQTAEFKGTFAEATAEAYRYADLLAKENGKYTADLEDGGYTINIRFAGK
+>gi|297588180|ref|ZP_06946824.1| probable protein L precursor [Finegoldia magna ATCC 53516]gi|297574869|gb|EFH93589.1| probable protein L precursor [Finegoldia magna ATCC 53516]
+EVTIKANLIYADGKTQTAEFKGTFEEATAEAYRYADLLAKENGKYTVDVADKGYTLNIKFAGK
+>gi|18655716|pdb|1KH0|A Chain A, Accurate Computer Base Design Of A New Backbone Conformation In The Second Turn Of Protein Lgi|18655717|pdb|1KH0|B Chain B, Accurate Computer Base Design Of A New Backbone Conformation In The Second Turn Of Protein L
+EVTIKANLIFANGSTQTAEFKGTKEKALSEVLAYADTLKKDNGEWTIDkrVTNGVIILNIKFAG-
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+E 1    *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1417	0	0	
+
+V 2    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	2
+       0	*	*	*	*	*	*	1417	0	0	
+
+T 3    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	3
+       0	*	*	*	*	*	*	1417	0	0	
+
+I 4    *	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	4
+       0	*	*	*	*	*	*	1417	0	0	
+
+K 5    *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	5
+       0	*	*	*	*	*	*	1417	0	0	
+
+V 6    476	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1831	*	*	6
+       0	*	*	*	*	*	*	1417	0	0	
+
+N 7    *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	7
+       0	*	*	*	*	*	*	1417	0	0	
+
+L 8    *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	8
+       0	*	*	*	*	*	*	1417	0	0	
+
+I 9    *	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	9
+       0	*	*	*	*	*	*	1417	0	0	
+
+F 10   *	*	*	*	440	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1928	10
+       0	*	*	*	*	*	*	1417	0	0	
+
+A 11   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	11
+       0	*	*	*	*	*	*	1417	0	0	
+
+D 12   *	*	879	*	*	*	*	*	*	*	*	1133	*	*	*	*	*	*	*	*	12
+       0	*	*	*	*	*	*	1417	0	0	
+
+G 13   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	13
+       0	*	*	*	*	*	*	1417	0	0	
+
+K 14   *	*	*	*	*	*	*	*	879	*	*	*	*	*	*	1133	*	*	*	*	14
+       0	*	*	*	*	*	*	1417	0	0	
+
+I 15   *	*	*	*	*	*	*	1831	*	*	*	*	*	*	*	*	476	*	*	*	15
+       0	*	*	*	*	*	*	1417	0	0	
+
+Q 16   *	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	16
+       0	*	*	*	*	*	*	1417	0	0	
+
+T 17   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	17
+       0	*	*	*	*	*	*	1417	0	0	
+
+A 18   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	18
+       0	*	*	*	*	*	*	1417	0	0	
+
+E 19   *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	19
+       0	*	*	*	*	*	*	1417	0	0	
+
+F 20   *	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	20
+       0	*	*	*	*	*	*	1417	0	0	
+
+K 21   *	*	*	2757	*	*	*	*	231	*	*	*	*	*	*	*	*	*	*	*	21
+       0	*	*	*	*	*	*	1417	0	0	
+
+G 22   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	22
+       0	*	*	*	*	*	*	1417	0	0	
+
+T 23   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	23
+       0	*	*	*	*	*	*	1417	0	0	
+
+F 24   *	*	*	*	289	*	*	*	2461	*	*	*	*	*	*	*	*	*	*	*	24
+       0	*	*	*	*	*	*	1417	0	0	
+
+E 25   2865	*	*	213	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	25
+       0	*	*	*	*	*	*	1417	0	0	
+
+E 26   *	*	*	532	*	*	*	*	1698	*	*	*	*	*	*	*	*	*	*	*	26
+       0	*	*	*	*	*	*	1417	0	0	
+
+A 27   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	27
+       0	*	*	*	*	*	*	1417	0	0	
+
+T 28   *	*	*	*	*	*	*	*	*	2461	*	*	*	*	*	*	289	*	*	*	28
+       0	*	*	*	*	*	*	1417	0	0	
+
+A 29   879	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1133	*	*	*	*	29
+       0	*	*	*	*	*	*	1417	0	0	
+
+E 30   *	*	*	214	*	*	*	*	2858	*	*	*	*	*	*	*	*	*	*	*	30
+       0	*	*	*	*	*	*	1417	0	0	
+
+A 31   289	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2461	*	*	31
+       0	*	*	*	*	*	*	1417	0	0	
+
+Y 32   *	*	*	*	*	*	*	*	*	2461	*	*	*	*	*	*	*	*	*	289	32
+       0	*	*	*	*	*	*	1417	0	0	
+
+R 33   751	*	*	*	*	*	*	*	*	*	*	*	*	*	1300	*	*	*	*	*	33
+       0	*	*	*	*	*	*	1417	0	0	
+
+Y 34   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	34
+       0	*	*	*	*	*	*	1417	0	0	
+
+A 35   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	35
+       0	*	*	*	*	*	*	1417	0	0	
+
+A 36   2805	*	476	*	*	*	*	*	*	*	*	2858	*	*	*	*	*	*	*	*	36
+       0	*	*	*	*	*	*	1417	0	0	
+
+L 37   *	*	*	*	*	*	*	*	*	879	*	*	*	*	*	*	1133	*	*	*	37
+       0	*	*	*	*	*	*	1417	0	0	
+
+L 38   *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	38
+       0	*	*	*	*	*	*	1417	0	0	
+
+A 39   879	*	*	2757	*	*	*	*	1698	*	*	*	*	*	*	*	*	*	*	*	39
+       0	*	*	*	*	*	*	1417	0	0	
+
+K 40   *	*	*	2757	*	*	*	*	231	*	*	*	*	*	*	*	*	*	*	*	40
+       0	*	*	*	*	*	*	1417	0	0	
+
+V 41   *	*	1133	1319	*	*	*	*	*	*	*	*	*	*	*	*	*	2805	*	*	41
+       0	*	*	*	*	*	*	1417	0	0	
+
+N 42   *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	42
+       0	*	*	*	*	*	*	1417	0	0	
+
+G 43   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	43
+       0	*	*	*	*	*	*	1417	0	0	
+
+E 44   *	*	*	440	*	*	*	*	1928	*	*	*	*	*	*	*	*	*	*	*	44
+       0	*	*	*	*	*	*	1417	0	0	
+
+W 45   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1081	923	45
+       0	*	*	*	*	*	*	1417	0	0	
+
+T 46   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	46
+       0	*	*	*	*	*	*	1417	0	0	
+
+A 47   1257	*	*	*	*	*	*	2461	*	*	*	*	*	*	*	*	*	1322	*	*	47
+       0	*	*	*	*	*	*	1417	0	0	
+
+D 48   *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	48
+       289	2461	*	1000	1000	*	*	1417	1016	0	
+
+L 49   *	*	*	*	*	*	*	*	*	1257	*	*	*	*	*	*	*	782	*	*	49
+       0	*	*	*	*	*	*	1417	0	0	
+
+E 50   1322	*	*	1257	*	*	*	*	*	*	*	*	*	*	*	*	2461	*	*	*	50
+       0	*	*	*	*	*	*	1417	0	0	
+
+D 51   *	*	289	*	*	*	*	*	*	*	*	2461	*	*	*	*	*	*	*	*	51
+       0	*	*	*	*	*	*	1417	0	0	
+
+G 52   *	*	*	2757	*	737	*	*	1988	*	*	*	*	*	*	*	*	*	*	*	52
+       0	*	*	*	*	*	*	1417	0	0	
+
+G 53   *	*	*	*	*	289	*	*	*	*	*	*	*	*	*	*	*	2461	*	*	53
+       0	*	*	*	*	*	*	1417	0	0	
+
+N 54   *	*	*	*	*	*	*	2461	*	*	*	1831	*	*	*	*	*	*	*	896	54
+       0	*	*	*	*	*	*	1417	0	0	
+
+H 55   *	*	*	*	*	*	2805	2461	*	*	*	*	*	*	*	*	567	*	*	*	55
+       0	*	*	*	*	*	*	1417	0	0	
+
+M 56   *	*	*	*	*	*	*	1861	*	782	2805	*	*	*	*	*	*	*	*	*	56
+       0	*	*	*	*	*	*	1417	0	0	
+
+N 57   *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	57
+       0	*	*	*	*	*	*	1417	0	0	
+
+I 58   *	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	58
+       0	*	*	*	*	*	*	1417	0	0	
+
+K 59   *	*	*	2757	*	*	*	*	484	*	*	*	*	*	2865	*	*	*	*	*	59
+       0	*	*	*	*	*	*	1417	0	0	
+
+F 60   *	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	60
+       0	*	*	*	*	*	*	1417	0	0	
+
+A 61   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	61
+       0	*	*	*	*	*	*	1417	0	0	
+
+G 62   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	62
+       0	*	*	*	*	*	*	1417	0	0	
+
+K 63   *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	63
+       0	*	*	0	*	*	*	1205	0	0	
+
+//
+�HHsearch 1.5
+NAME  91ee985382113129d3975a1aa1210405
+FAM   
+FILE  91ee985382113129d3975a1aa1210405
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 14:16:49 2013
+LENG  211 match states, 211 columns in multiple alignment
+FILT  130 out of 1316 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  10.5
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEEEECCCCEEEECCCCEEEEEEECCCCCCEEEEEEECCCCCCEEEEEECCCCCCCCCCCEEEECCCCEEEEEEECCCHHHCEEEEEEEEECCCCEEEE
+EEEEEEEEEEEEEEEEECCCCEEEECCCEEEEEEEECCCCCCCCEEEEEECCEECCCCCCEEEEEEECCCCCEEEEEEEEECCCCHHHCCEEEEEEECCC
+CCCCEEEEEEC
+>ss_conf PSIPRED confidence values
+9499965983899789989999997478997799999589987279997046447676762687426870589991343111849999998178731410
+2899999730044589718850662397099999971688986189999899784577520111476289848888999983488776928999999089
+88338999709
+>Consensus
+xxxvxxxxxxxxxxxGxxvxLxCxxxxxxxxxvxWxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxLxIxxxxxxDxgxYxCxvxxxxxxxxxx
+xxxlxvxxxxxxpxvxxxxxxxxxxxgxxxxlxCxxxxxxpxxxxvxWxxxxxxxxxxxxxxxxxxxxxxxxxxxxsxLxixxxxxxdxgxyxCxvxxxx
+xxxxxxxxxxx
+>91ee985382113129d3975a1aa1210405
+DIKMTQSPSSMYASLGERVTITCKASQDINSYLNWFQQKPGKSPKTLIYRTNRLVDGVPSRFSGSGSGQDYSLTISSLEYEDMGIYYCLQYDEFPYTFGS
+GTKLEIKRTVAAPSVFIFPPSDEQLKSGTASVVCLLNNFYPREAKVQWKVDNALQSGNSQESVTEQDSKDSTYSLSSTLTLSKADYEKHKVYACEVTHQG
+LSSPVTKSFNR
+>gi|281349765|gb|EFB25349.1| hypothetical protein PANDA_021873 [Ailuropoda melanoleuca]
+--SVSQMKNQVTLSERAFLIVNHSFAANKsappfsgvFSVLVKLCSCPENH----KRKCDGSNKG----FEATnEEKTTFPWEKLSVPMADMAVCHCA--
+----------------------------------------------------------------------------------------------------
+--------------------
+>gi|326703679|gb|AEA06491.1| MHC class I antigen [Macaca mulatta]
+----------------------------------------------------------------------------------------------------
+----------------------------htiqtmygcdlgpdgrllrgyeqyaydgrdyfalne--DLRSWTAADMAAQN-----------------tqr
+kweaagvaeqw----RAYLEGECLEWLRRYLEKGK------------------et--LQ----
+>gi|62464905|gb|AAX83161.1| immunoglobulin heavy chain variable region [Aotus nancymaae]
+---------------GDPVPHLRCLWLLhRQ------willeldpPAPKGRG--WSGldisivwWVHql-qrlpQES-----sh---YFsrHVQEPVLVE
+---------A------------------------------------------------------------------------------------------
+-------------------------------------
+>gi|301609249|ref|XP_002934188.1| PREDICTED: vascular cell adhesion protein 1-like [Xenopus (Silurana) tropicalis]
+NTRLTITPS-ELVRQGDRVIIQCMSEAFPAPTLILKRKTERGQVELE--------------------TTSGEYIITSVTVKHSGTYTCESVNpvgnevae
+lhvtvqvppqnttvlvkpsknvtegdtvtitcethsttlptillkkvcagnstvqqaengtftlhnvtrndtgtyvlsiiNEAGNTTEVIEinvqvppkn
+trltitpselvregdhviphavppqnttvlvkpskn--------------------VTEGDTVTITCETHSTTHPTILLKKVCAGNSTVQQA--------
+-ENGTF------TLHNVTRNDTGTYMVSIINEAGNT--------
+>gi|26367762|dbj|BAB26738.2| unnamed protein product [Mus musculus]
+---FITPIFDFRIPENSSAVFKCSVIGIPPPEVRWYKEYMCIEPDD-------------TKYVISEEKGSHSLRIQDVGPSDCATYRCRALNSAGEAICR
+GfltmgdsqvsavatrtSKVTLSSQkeelvlrsryadsffefqvvDGPPRFIKGISDCHAPLGTAAYFQCLVRGSPRP--TVSWYKDGKLVQGSRFSAEE
+SGIGFHNLF-------ITGLVKGDEGEYSCVATNNS-----------
+>gi|209732526|gb|ACI67132.1| Butyrophilin subfamily 1 member A1 precursor [Salmo salar]
+-FEVLGPTDPIVAVAGDDIILPCYLKPNISAedmTVDWLNLDFKDSrvyryqnHRIIRDYQIPYYRGRTSLFEEELWRGNTSLKLTRVQGTDEGRYKCFI
+KAK-SWYDDFTIQVLVKAVGSKPVVS-----IEGHREGGMGLLCESEGWHPEP-ELAWLDSKGVHLSAG--PPETHRDFKGFYRVKQHVIVQETD---TN
+RFTCRVQQSRINEKMETEV--
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+D 1    *	*	1804	3068	*	*	*	*	4186	*	*	4067	3894	2506	*	2532	*	*	*	3976	1
+       0	*	*	*	*	*	*	6548	0	0	
+
+I 2    3569	*	5145	*	3407	*	5215	2961	*	2010	5567	*	5438	4426	4847	4244	5150	2447	*	*	2
+       0	*	*	*	*	*	*	8793	0	0	
+
+K 3    4828	*	5347	4015	4710	5805	6360	4815	3762	5763	5760	5807	*	2349	5730	2688	2675	3313	*	5749	3
+       27	5749	*	6256	19	*	*	9380	1186	0	
+
+M 4    6087	*	*	*	2988	5841	*	2335	5736	2495	5177	*	5969	5891	*	*	5807	1505	5899	*	4
+       0	*	*	0	*	*	*	9786	1000	0	
+
+T 5    5302	*	4635	3612	*	4572	5033	3190	4713	3696	*	4688	6045	4359	4081	3302	2293	3786	*	6016	5
+       0	*	*	*	*	*	*	9994	0	0	
+
+Q 6    4166	*	*	3263	*	4548	6416	3771	4692	5017	6089	5107	4158	2088	3782	4225	5239	2687	*	*	6
+       128	*	3555	*	*	*	*	10035	0	0	
+
+S 7    4019	*	5147	3392	6276	4601	6205	5041	4160	6420	6291	5199	2411	5052	3588	2476	3325	5143	*	*	7
+       11	*	7066	*	*	0	*	10044	0	2034	
+
+P 8    3567	*	5477	4918	6193	4913	5829	*	4091	6325	*	5520	1249	3761	5375	3472	4052	5493	*	6445	8
+       20	*	6193	0	*	0	*	10238	1006	1006	
+
+S 9    3521	*	4496	3068	*	4214	6379	*	3454	6519	5516	4525	3267	6498	3352	2698	4061	4100	*	5026	9
+       42	6429	5875	0	*	*	0	10291	1011	1024	
+
+S 10   5399	*	5699	3522	5480	3977	4970	4285	4999	3188	*	3777	3245	4624	5189	2608	3937	4061	*	5367	10
+       0	*	*	*	*	0	*	10359	0	1408	
+
+M 11   4025	*	5952	4129	5527	*	6512	3120	5080	2780	6774	*	5130	3630	4669	6704	4567	1670	*	5746	11
+       0	*	*	*	*	*	*	10509	0	0	
+
+Y 12   5024	*	4256	2985	4664	6279	7056	4674	5196	3959	6145	4774	5861	3728	4822	3146	2498	3577	6776	4701	12
+       0	*	*	*	*	*	*	10603	0	0	
+
+A 13   2401	6930	*	5243	6843	3965	6670	3462	4561	3089	6465	*	6581	6735	5802	5009	5054	1588	*	*	13
+       0	*	*	*	*	*	*	10611	0	0	
+
+S 14   4218	*	4805	4566	4154	6882	5046	4844	4197	2887	4602	5528	5354	3759	2872	3866	4274	3822	5693	4619	14
+       11	7018	*	4644	59	*	*	10649	1000	0	
+
+L 15   4044	*	4703	1968	*	6516	7027	4819	4066	3355	*	6886	4890	5304	3600	4680	4210	2605	*	5234	15
+       0	*	*	*	*	*	*	10676	0	0	
+
+G 16   *	6767	5406	4635	6977	456	4768	*	5033	*	*	5994	*	4646	4911	5326	*	*	*	6758	16
+       0	*	*	*	*	*	*	10677	0	0	
+
+E 17   4601	*	2839	2161	6755	3291	4963	6766	4035	6139	5847	4505	6792	3603	5992	2909	4668	7151	6928	6449	17
+       12	6885	*	0	*	*	*	10688	1000	0	
+
+R 18   4231	6146	3281	3823	6769	5729	5849	6834	4696	5402	*	4344	3395	4486	3887	2373	2603	5602	*	6970	18
+       12	*	6967	*	*	*	*	10698	0	0	
+
+V 19   2152	6945	*	*	4982	6795	*	3178	7172	3379	5913	*	6802	6098	*	*	4754	1230	*	6781	19
+       0	*	*	0	*	0	*	10695	1017	1017	
+
+T 20   4417	*	5992	3165	7044	6904	5439	3407	4419	4891	7146	4291	6431	4385	3714	4018	2002	3482	*	5832	20
+       0	*	*	*	*	*	*	10708	0	0	
+
+I 21   6878	*	*	*	3068	*	7738	2575	*	704	4340	*	*	*	*	*	*	4775	*	*	21
+       0	*	*	*	*	*	*	10708	0	0	
+
+T 22   7050	6760	3763	4149	5992	5454	5273	5792	4333	5553	5318	3705	2608	4894	4064	3324	2721	4411	5981	5252	22
+       0	*	*	*	*	*	*	10708	0	0	
+
+C 23   5372	162	*	*	6760	*	*	*	*	4574	*	*	*	*	7738	6939	*	5774	*	*	23
+       13	*	6808	*	*	*	*	10708	0	0	
+
+K 24   5824	7724	4342	3128	6778	4882	5163	4871	3907	4382	*	3915	4855	4080	3560	3000	2874	4039	*	5198	24
+       0	*	*	*	*	0	*	10707	0	1026	
+
+A 25   2759	*	*	*	3218	7819	6634	2703	*	3536	*	5190	5069	*	*	4469	5969	1943	6787	3278	25
+       0	*	*	*	*	*	*	10708	0	0	
+
+S 26   4465	*	3241	4075	6856	4431	4557	5263	4494	5240	5752	4839	4578	4947	5172	2535	2366	5353	5821	5005	26
+       22	6069	*	574	1608	*	*	10708	1180	0	
+
+Q 27   3903	6773	3796	5393	6767	1996	*	5925	5554	4782	5837	3883	3584	4635	4598	3459	3654	4208	*	5671	27
+       41	5167	*	0	*	*	*	10708	1390	0	
+
+D 28   3971	*	3797	4355	4104	3639	6231	5173	4920	4381	6856	3897	3324	4309	5203	2798	4099	4956	*	3891	28
+       324	2731	4306	83	4154	*	*	10708	3905	0	
+
+I 29   4980	*	3854	4872	4458	4416	6789	6985	4139	4008	5237	3506	2209	5305	4997	3620	3950	4445	6155	4523	29
+       120	3811	6847	1400	687	0	*	10755	2290	1944	
+
+N 30   3607	6767	3452	4482	5304	4198	4367	7142	3359	4822	5276	4058	2803	4772	5061	3418	5284	4243	*	4766	30
+       322	2356	7727	973	1028	1008	992	10689	4424	1189	
+
+S 31   4020	*	4069	4243	5401	5203	5814	5817	4581	3518	*	4043	2629	5893	4531	3791	3570	3824	*	3305	31
+       366	2159	*	1566	595	795	1239	10686	4820	1449	
+
+Y 32   5369	*	5394	3236	*	4139	5843	4531	3963	4817	5881	3588	5170	4318	3889	2908	3073	4182	6871	3885	32
+       0	*	*	*	*	*	0	10697	0	1085	
+
+L 33   5964	*	6892	*	3697	*	*	1992	5855	2384	4546	*	*	*	5887	6762	4863	1860	5824	4585	33
+       26	6801	6838	1000	1000	*	0	10697	1005	1085	
+
+N 34   4022	*	6067	3724	4218	*	4519	3968	5448	5330	*	4943	*	3342	3563	2819	2636	7084	6840	3259	34
+       34	6137	6752	2585	263	*	0	10686	1119	1282	
+
+W 35   5680	6652	*	*	6020	*	*	5503	*	5356	*	*	*	5935	*	7185	*	6129	207	7773	35
+       53	5133	7072	877	1134	*	0	10658	1432	1531	
+
+F 36   4894	5270	6535	4954	2786	*	4877	3671	3883	3796	5066	7058	*	4844	4866	5327	4518	5832	4656	1900	36
+       38	6936	5807	2457	290	1718	523	10658	1279	1690	
+
+Q 37   6810	*	6910	5738	4275	*	4940	6727	1601	3671	5781	5760	6155	5511	2541	5270	6687	3301	4440	4852	37
+       405	4435	2334	2221	348	*	0	10767	1727	1776	
+
+Q 38   5934	*	3138	5527	6322	3055	3721	6572	3939	4833	5561	3507	*	2390	4409	3310	5099	5072	*	5492	38
+       182	5072	3491	1852	468	4069	89	10517	1302	5164	
+
+K 39   5650	5624	2387	4369	6124	4118	6325	6406	3435	6213	5265	3529	3852	4364	4362	3455	3985	4811	*	4349	39
+       169	4719	3788	2284	332	539	1682	10447	1357	5857	
+
+P 40   4356	5534	2750	3801	*	3560	6683	*	4159	5849	*	3268	2587	4659	4123	3503	4181	5020	*	*	40
+       100	5038	4770	0	*	928	1076	10677	1384	3625	
+
+G 41   4098	*	3620	4156	*	1513	*	*	3911	5091	6981	3422	*	5234	5284	3554	3810	5740	6827	5600	41
+       11	*	7021	*	*	1629	564	10630	0	2939	
+
+K 42   4186	6682	4511	3158	6008	3384	4896	3947	2666	5329	5919	4341	5068	3321	4117	3834	4227	6589	*	*	42
+       270	5721	2719	625	1508	3478	136	10695	1210	2437	
+
+S 43   2848	6490	4238	3571	5157	3160	*	5520	2992	5443	5271	3887	4023	*	4704	3830	4078	3653	*	*	43
+       68	5616	5291	0	*	4726	56	10557	1159	4733	
+
+P 44   4431	6595	5603	4533	5252	5557	6447	4157	6404	2314	5075	4980	2537	4596	3479	4859	4130	3568	*	6506	44
+       114	5491	4218	0	*	4942	48	10295	1168	5023	
+
+K 45   4838	*	5251	3167	6504	4439	4236	4471	3270	4583	5024	4571	4647	2887	4305	4208	3917	3966	*	4507	45
+       43	5730	6597	4457	67	2341	317	10320	1112	5498	
+
+T 46   5072	*	5014	4641	3842	4239	4860	4208	*	2542	6541	5681	5500	4294	3324	3456	6759	3125	4670	4089	46
+       156	6498	3455	0	*	3139	174	10496	1000	4891	
+
+L 47   6392	7004	5517	6655	4928	*	*	2071	4871	2218	5432	5997	4551	4860	5293	4456	3954	2603	*	6335	47
+       50	6449	5467	0	*	3370	147	10320	1000	5516	
+
+I 48   3858	6494	5549	5513	4955	3562	*	2511	5330	3004	4429	3985	5484	4867	5499	5506	3755	3725	5387	4297	48
+       186	3503	4930	1586	584	4978	47	10216	2365	5385	
+
+Y 49   4108	5470	4092	5848	3214	4644	6610	4939	4120	3868	6318	4713	6338	4425	5425	2804	4003	4870	7296	2757	49
+       160	5438	3611	1830	476	4164	83	10338	1195	5701	
+
+R 50   4113	*	3574	4688	3849	2732	5411	4788	3713	4051	5381	5490	5275	5357	3536	3788	3887	4626	*	4639	50
+       126	4850	4357	1498	630	3711	115	9978	1323	6222	
+
+T 51   3599	*	3737	5014	4863	3143	5816	4637	4247	4663	*	4387	5208	4379	6228	3145	3098	3779	*	3737	51
+       60	5754	5499	670	1428	5251	38	10006	1272	6306	
+
+N 52   5197	*	4755	3175	4682	2988	4310	5262	3817	5180	5556	4369	3751	5250	4651	3051	3740	4133	*	5481	52
+       177	3514	5155	1598	579	3727	113	9988	2296	6501	
+
+R 53   4709	*	4087	*	6306	3944	4384	6362	3510	5264	6482	2670	4218	3548	4703	3346	2823	4739	*	5134	53
+       79	4227	*	2352	314	4466	67	9975	1720	6480	
+
+L 54   6307	6259	6172	3256	4115	4575	6329	4111	*	4351	5467	4370	3715	3557	3453	3749	4008	3719	*	3309	54
+       0	*	*	*	*	960	1042	10016	0	6305	
+
+V 55   3679	*	5710	3638	5682	3332	4300	5155	4860	3960	6663	3620	3598	4854	4685	3162	3680	4019	6782	5762	55
+       37	6662	6034	2322	322	4391	70	10437	1000	3974	
+
+D 56   4452	*	3792	2572	4953	4092	6650	3525	4355	5065	6608	4664	3263	4335	4418	3213	4716	4975	*	5670	56
+       129	4791	4334	1378	701	1172	847	10409	1636	4174	
+
+G 57   4466	*	3001	3064	5546	2979	6953	5701	3571	4435	6683	3462	4476	5031	4451	3536	4685	4408	6580	*	57
+       13	*	6767	*	*	2005	413	10496	0	3589	
+
+V 58   4034	*	6719	4313	3156	*	5183	2986	4767	2847	5814	4071	4703	4700	4791	4264	3389	3980	*	4781	58
+       160	3551	5653	1500	629	1482	639	10578	2618	3121	
+
+P 59   4389	5852	3389	4232	5685	4860	7074	7281	3675	4808	5237	3498	3299	3974	3421	3384	3893	4362	*	5700	59
+       49	6871	5339	0	*	1138	874	10588	1000	2687	
+
+S 60   4140	*	3945	3546	5152	1798	5910	*	4918	5740	*	3931	4031	4931	4050	3330	4577	4738	*	6655	60
+       84	4415	6718	2583	264	1183	837	10633	2008	2338	
+
+R 61   5735	6731	4125	4333	*	4308	5914	6696	3309	5223	*	5836	4793	3676	1531	3924	4090	5261	5414	6868	61
+       182	3422	5321	1218	811	2492	282	10646	2748	1875	
+
+F 62   5784	7477	6961	*	2108	6694	4233	4023	6773	3561	5970	5757	5895	4751	5890	6135	5101	2843	5339	2283	62
+       10	7240	*	0	*	2946	201	10626	1000	2183	
+
+S 63   5252	6895	4553	3471	5871	4191	4819	4822	4222	5301	*	3368	6139	4040	4456	2519	2631	5378	7022	5264	63
+       49	5367	6728	2085	388	2195	356	10631	1315	2015	
+
+G 64   3767	*	4483	4592	4571	2678	6355	3247	5385	3062	6801	4183	4490	6827	*	4559	4996	2724	*	4702	64
+       78	5954	4782	958	1043	*	0	10616	1156	2002	
+
+S 65   4794	*	4058	3675	6052	4448	4865	4825	3557	5797	*	4556	5681	5787	2877	2995	2636	3997	*	5213	65
+       855	1191	6798	1137	875	*	0	10588	7096	2640	
+
+G 66   4502	*	4560	4553	6993	3476	4461	4746	3008	3948	6847	4239	4211	4582	3970	3843	3243	3693	5667	7003	66
+       74	6027	4850	676	1418	2312	324	10575	1190	2788	
+
+S 67   4837	*	2728	3622	6867	5185	5652	4821	4851	4225	6712	3655	6764	4071	5134	2418	3371	4214	*	5079	67
+       28	*	5683	*	*	1613	571	10583	0	3162	
+
+G 68   3668	5613	3885	4051	*	3095	4353	5676	3729	4042	6755	4024	4279	3937	4162	3776	3131	*	*	5597	68
+       53	5857	5737	611	1535	1760	505	10567	1445	2838	
+
+Q 69   5250	6735	4132	4961	4950	2618	4738	5248	3867	5869	5702	3208	5637	4804	4014	3353	3149	4631	6757	5315	69
+       193	3000	*	1026	974	2331	320	10581	3126	2648	
+
+D 70   5169	6902	3383	3416	5176	4752	5016	4742	4006	7118	4790	3985	6108	3374	4075	3490	3001	4157	*	4953	70
+       44	5325	7714	3026	189	1708	527	10682	1418	2482	
+
+Y 71   2996	4340	*	*	3665	3697	4766	5888	5616	3332	*	5492	5752	*	4268	2497	4672	4348	4845	3279	71
+       0	*	*	*	*	877	1134	10649	0	2175	
+
+S 72   4988	*	4850	4044	*	5379	3869	4282	4966	4686	*	3916	6238	5226	3314	2293	2597	4099	*	5376	72
+       22	6052	*	1800	489	730	1333	10699	1181	1455	
+
+L 73   6806	6879	*	*	4422	*	*	3296	*	463	6885	*	6636	*	*	*	5617	4036	*	6802	73
+       13	*	6817	*	*	*	0	10757	0	1071	
+
+T 74   4950	*	7021	4239	5740	*	3695	3728	4344	3958	*	3892	4861	3794	3819	3570	2655	3179	7109	5901	74
+       7	*	7725	*	*	*	0	10739	0	1274	
+
+I 75   7115	*	*	*	4922	6776	*	968	7082	2036	5366	6917	6830	*	*	5778	6365	3577	5878	5973	75
+       0	*	*	*	*	*	0	10727	0	1538	
+
+S 76   3931	6776	4190	5985	*	6830	4105	7187	3101	4331	6985	3734	3617	3662	3418	3086	2953	5448	6994	*	76
+       0	*	*	*	*	*	0	10727	0	1538	
+
+S 77   4310	6794	3197	4350	*	4164	5330	6891	3802	5414	6917	2175	5021	4423	3357	2976	4617	6944	*	5820	77
+       0	*	*	*	*	1839	473	10727	0	1538	
+
+L 78   2555	7077	5909	*	5815	6900	6438	3324	*	2288	6740	6707	5204	*	*	3839	4580	1710	*	*	78
+       0	*	*	*	*	*	0	10746	0	1340	
+
+E 79   5927	6862	5336	3523	*	4499	5833	7059	2822	5962	6754	4081	5321	2647	2923	4089	2507	6806	6967	*	79
+       39	*	5216	*	*	*	0	10746	0	1340	
+
+Y 80   4409	*	5357	4039	5200	*	4656	4946	4572	2423	5375	*	3228	4565	4242	3648	4812	3009	4278	5449	80
+       0	*	*	*	*	*	0	10716	0	1899	
+
+E 81   3309	*	3364	2485	5367	3834	7040	*	4099	*	*	4265	*	4338	4684	2141	3464	7524	*	*	81
+       48	5795	6076	0	*	2410	301	10716	1278	1899	
+
+D 82   6764	*	437	4676	6777	6825	3312	*	5919	6596	*	5908	*	5254	*	7031	6797	6928	*	*	82
+       21	6085	*	0	*	*	0	10725	1135	1980	
+
+M 83   2735	*	3468	2929	6832	3274	7037	*	5514	6809	5450	4151	6928	4255	*	2177	3370	6712	*	6596	83
+       0	*	*	*	*	683	1407	10725	0	1980	
+
+G 84   2440	*	5486	4701	*	759	5597	*	5838	5873	*	*	*	6865	5520	4451	5295	7097	*	*	84
+       14	6738	*	1585	585	1201	823	10761	1030	1267	
+
+I 85   5843	6890	4373	3481	5816	7142	5424	3389	4871	3359	4388	4459	*	4318	3602	5465	2724	2953	6003	5908	85
+       12	6888	*	2000	415	*	0	10752	1046	1071	
+
+Y 86   *	*	*	*	3017	*	5758	5807	6803	4472	*	*	*	*	*	6888	*	4526	*	446	86
+       8	7477	*	0	*	0	*	10752	1000	1071	
+
+Y 87   5848	6981	6515	3843	5500	6754	4483	3224	4034	4323	7200	6938	*	3806	3495	4265	2536	3843	4861	3376	87
+       10	7186	*	3000	193	*	*	10779	1000	0	
+
+C 88   5893	149	*	*	6197	*	6450	*	*	5865	6796	*	*	*	6890	*	*	5527	*	*	88
+       0	*	*	*	*	*	*	10768	0	0	
+
+L 89   3827	7372	5365	3002	*	*	5892	4365	3762	4227	5362	4365	6940	3276	3505	4944	3190	2756	*	5675	89
+       23	*	5988	*	*	*	*	10768	0	0	
+
+Q 90   2255	*	*	7484	4979	6230	6953	2880	6757	3295	5976	*	*	5983	6927	4776	4678	1436	*	*	90
+       72	5898	4968	3157	171	*	0	10769	1207	1195	
+
+Y 91   4261	5830	4514	3262	5231	4814	5295	4859	4027	6100	6841	4317	6949	4380	3918	2736	3056	4422	4983	4198	91
+       302	2518	6102	1156	859	989	1011	10744	4132	1873	
+
+D 92   3886	*	3645	4083	5286	4097	3048	5342	4307	5138	*	2498	7541	4503	5290	4166	3915	3932	*	4462	92
+       269	2785	5326	1351	718	*	0	10763	3671	1656	
+
+E 93   4693	7104	3691	3410	*	2582	4202	5756	3982	4783	6786	3500	3925	5034	4205	3828	4077	4900	*	4968	93
+       447	4023	2286	549	1659	2051	399	10677	2324	2439	
+
+F 94   4692	*	3962	4118	3986	2933	5417	5429	6425	4127	6595	3057	4992	5070	4531	2961	3972	4235	*	4329	94
+       65	5524	5495	1000	1000	927	1077	10410	1395	5547	
+
+P 95   4531	6724	4323	3240	3810	3715	5143	6578	3822	3959	*	3942	3257	4847	3943	3585	4717	4459	*	4878	95
+       91	4210	7085	533	1696	1619	568	10613	1907	3685	
+
+Y 96   4024	*	3639	3436	4460	3573	5748	4071	4256	3322	6039	5609	4009	6683	4668	3327	4581	3440	*	5288	96
+       13	*	6770	*	*	*	0	10615	0	3093	
+
+T 97   4464	6077	4189	3846	5980	3824	5253	4902	4292	4843	5785	5997	4294	3806	5265	4015	2783	2989	6783	4084	97
+       0	*	*	*	*	1653	552	10613	0	3230	
+
+F 98   3789	*	5862	4163	2750	6862	4931	4038	5795	4266	4756	5240	5124	4200	3950	3681	4248	3677	5221	3523	98
+       126	6997	3725	3807	107	988	1012	10679	1000	2527	
+
+G 99   3918	6738	4768	3360	6786	2075	7017	*	5303	5200	5928	3781	4479	5074	3807	2346	4595	6554	*	*	99
+       78	6803	4507	1000	1000	2807	223	10657	1000	3120	
+
+S 100  2925	*	5014	4319	6752	4361	5647	5125	3043	6767	*	3762	4407	3551	3962	3182	3136	4461	*	6558	100
+       59	6279	5193	0	*	3576	126	10602	1053	3537	
+
+G 101  3319	6369	4123	4654	6810	2400	5684	5150	3434	6553	5829	3408	5247	5624	4322	3019	4519	4404	*	5733	101
+       43	6756	5619	579	1596	684	1406	10614	1151	3728	
+
+T 102  3391	5006	6000	4344	4602	6568	*	3444	4621	3919	6769	5868	5848	6665	5832	3653	2019	2994	*	4818	102
+       11	7096	*	0	*	365	2163	10662	1014	2383	
+
+K 103  5199	*	4850	3757	7060	5893	6718	4561	3181	4728	5913	3988	*	3560	2915	2968	3555	4387	7218	3725	103
+       19	*	6277	*	*	*	0	10746	0	1183	
+
+L 104  5360	*	*	6156	4658	6730	*	2853	4322	1225	5908	7049	6810	6949	5116	5856	5720	2619	6950	5707	104
+       0	*	*	0	*	936	1067	10753	1006	1532	
+
+E 105  5129	*	4646	4399	4843	5019	4065	3213	3934	4104	6831	3261	*	4734	4096	3681	2801	4078	6868	5113	105
+       57	*	4687	*	*	*	0	10767	0	1161	
+
+I 106  4544	*	*	6361	5301	6711	6394	2583	6649	3533	6827	*	7126	*	7025	5868	4954	941	5772	5451	106
+       75	5831	4927	3997	93	1969	425	10680	1195	2233	
+
+K 107  4777	*	4853	3956	3746	4740	5203	3643	4046	2423	6769	4488	6026	4140	4551	4867	4025	3479	*	4489	107
+       192	6770	3116	0	*	*	0	10677	1011	2531	
+
+R 108  2552	*	3864	3830	5458	3874	*	5353	4341	4394	6527	6765	3520	5098	3772	4223	3972	3614	5151	4590	108
+       1272	1481	2135	1375	703	3243	161	10525	6099	4388	
+
+T 109  3731	*	3972	3639	*	4779	6445	3591	2960	5275	*	4859	3897	4289	5966	2739	4626	3187	6326	6144	109
+       10	*	7108	*	*	585	1584	10201	0	6523	
+
+V 110  3840	*	4790	4070	5265	4364	5155	5961	5034	3306	5720	4416	2873	3688	4654	4539	3836	3004	6619	5910	110
+       27	6578	6989	5000	46	1383	697	10580	1008	3357	
+
+A 111  3884	*	5543	3729	3731	4333	5844	*	4075	4006	5918	5353	2881	4747	4187	3247	3622	3453	*	5335	111
+       42	5125	*	1444	661	484	1811	10633	1432	2598	
+
+A 112  2677	*	4176	3466	6049	4767	6014	4515	3523	4918	*	4028	2527	4585	4343	4110	5333	4360	*	6707	112
+       24	7666	6421	2585	263	1012	988	10730	1000	1521	
+
+P 113  4692	*	7076	*	4659	4531	5446	4337	4814	4837	*	7287	941	5253	4800	5574	4464	4198	*	5790	113
+       12	6917	*	2160	365	1328	733	10704	1202	1409	
+
+S 114  3793	*	5046	3639	5609	5321	*	6929	3487	4222	5875	4112	4605	4402	4530	2374	3507	3295	7091	5363	114
+       13	*	6837	*	*	827	1196	10741	0	1175	
+
+V 115  5447	4955	6858	6265	4625	6868	6010	2527	5843	3184	5275	5962	4245	5837	5011	6850	4086	1594	7024	6942	115
+       0	*	*	*	*	1306	748	10735	0	1203	
+
+F 116  5321	*	5200	3653	3197	6001	4024	4872	4700	3769	5932	*	4684	5299	4880	2598	2809	4641	*	3762	116
+       135	5584	3874	2220	348	0	*	10722	1333	1046	
+
+I 117  4898	*	4754	*	5268	5718	7042	2057	4016	3006	4830	6853	4112	4481	5929	4328	4823	2568	6054	5745	117
+       41	6722	5738	1585	585	1160	856	10701	1012	2256	
+
+F 118  5472	5107	5234	4609	4140	5781	4487	3997	3784	2639	5419	3603	5287	5626	5896	3123	3795	4108	5753	4880	118
+       63	5263	5887	1684	538	*	0	10714	1541	1985	
+
+P 119  3651	*	5106	3862	5335	3910	6490	7031	3818	5210	*	4457	2095	3187	4250	3660	4485	4951	6834	7019	119
+       13	*	6765	*	*	2390	305	10692	0	2335	
+
+P 120  4391	*	5097	4315	5740	3985	5474	6626	3724	3847	6585	3946	2576	4162	4617	2872	3636	4717	5754	*	120
+       132	*	3515	1000	1000	*	0	10674	1017	2234	
+
+S 121  4096	5690	3418	3388	*	5197	*	4710	4385	3575	6502	6567	3230	4381	5694	2384	3295	4769	6601	*	121
+       15	6576	*	1585	585	4189	81	10547	1011	4015	
+
+D 122  5139	*	5741	3410	7012	3519	6486	3236	4602	3463	6707	3575	5494	5249	4133	2761	4851	3247	*	5151	122
+       33	5472	*	1286	761	3129	175	10559	1239	3867	
+
+E 123  4288	6799	3435	2944	5837	6827	4477	3338	5175	5356	5674	4619	4463	5147	6712	2580	3779	3162	*	*	123
+       69	5114	5815	2782	227	528	1707	10569	1385	3568	
+
+Q 124  3311	*	4240	3289	5292	4464	6996	4346	5420	3618	5343	4552	4026	4357	4592	4110	3382	3024	*	5995	124
+       31	*	5540	*	*	2719	238	10678	0	2066	
+
+L 125  4849	6085	5730	4921	5018	4031	5810	2498	5277	2797	4342	5758	4521	5293	3916	4154	5091	2863	6974	6921	125
+       171	3158	*	370	2144	3177	169	10644	3051	2357	
+
+K 126  3249	*	4280	2385	*	5187	5317	5735	2937	3861	*	5924	4028	4833	4954	3276	4526	3599	*	7176	126
+       120	4488	4817	674	1422	0	*	10652	1836	2197	
+
+S 127  4771	5596	2962	4346	*	1118	6824	*	5360	5832	*	4737	5265	4378	5390	3614	5425	7227	*	7232	127
+       202	3230	5382	1149	865	0	*	10719	2929	1618	
+
+G 128  4757	*	2560	2839	*	2443	5131	6238	4712	7054	6737	3957	6150	3123	4482	3444	6042	5685	*	6873	128
+       24	5899	*	3136	174	589	1576	10735	1190	1364	
+
+T 129  4144	*	3131	3040	7232	5863	6078	5298	4803	5369	6076	3754	3046	4386	4913	2989	3088	5313	6950	5981	129
+       9	7271	*	0	*	*	0	10754	1000	1000	
+
+A 130  3044	6880	6878	5477	5405	4952	6984	3883	7115	2945	5343	5017	4644	5944	5500	4391	4421	1740	6692	4899	130
+       178	3110	*	920	1085	*	0	10754	3066	1000	
+
+S 131  4583	*	6086	3497	5935	6692	*	3810	4218	4617	6007	2998	6102	5833	3970	3143	2484	3275	5976	6028	131
+       0	*	*	*	*	0	*	10754	0	1000	
+
+V 132  4273	*	7093	*	3378	6837	*	2694	*	965	4446	*	*	*	7993	5410	6890	3517	*	*	132
+       0	*	*	*	*	*	*	10760	0	0	
+
+V 133  6963	*	6088	4036	7236	4611	5032	4176	4030	3965	5054	4606	4117	4649	3667	2867	2364	3846	*	6739	133
+       17	6963	7993	1000	1000	*	*	10760	1000	0	
+
+C 134  *	142	*	*	*	6944	*	*	*	5792	*	*	*	*	6996	*	6912	4477	*	7225	134
+       23	5955	*	1021	979	0	*	10713	1199	1032	
+
+L 135  4597	6765	4914	3225	5320	5397	5511	4685	4078	3537	4309	4435	6761	3576	4598	3871	2785	3368	7993	6776	135
+       0	*	*	*	*	*	*	10760	0	0	
+
+L 136  2277	4761	*	7024	4200	5328	7213	3881	*	5011	6823	6602	5231	*	*	3022	3951	1934	*	3858	136
+       50	5899	5862	557	1642	*	*	10760	1175	0	
+
+N 137  5392	6894	3980	2828	5447	4131	4326	6905	4453	5651	*	4452	4173	5955	3475	2663	3049	3928	6932	*	137
+       83	4665	5925	1447	660	0	*	10718	1818	1250	
+
+N 138  3482	7213	3480	4364	*	1783	6940	*	4649	5888	*	3085	6044	6915	4953	2759	3883	6365	*	6802	138
+       26	6792	6802	0	*	1633	561	10740	1005	1371	
+
+F 139  4612	6840	5945	5334	2706	2733	5301	5016	4945	4380	*	4689	4502	4818	6953	3006	4604	4395	5274	3271	139
+       88	5872	4562	634	1492	*	0	10735	1195	1380	
+
+Y 140  4812	5416	4417	6038	3507	5703	5278	5072	3765	5092	*	3758	2762	5132	3748	3638	3884	5430	7958	3134	140
+       488	4385	2064	0	*	198	2962	10658	1876	2299	
+
+P 141  4569	*	4470	4633	*	5973	*	6232	6381	5433	6540	7063	712	4222	5194	4331	6923	5476	*	5774	141
+       44	5727	6526	1098	908	1210	817	10311	1350	5162	
+
+R 142  3725	*	3680	3675	5362	3712	6694	5997	3394	5187	4120	5634	2371	4675	3916	4300	4701	4210	*	*	142
+       622	3993	1799	779	1262	177	3116	10530	2168	3685	
+
+E 143  3365	*	2979	3263	4818	5434	4811	*	4304	6389	*	3741	2183	3977	5615	3606	5624	*	*	4888	143
+       314	6461	2438	0	*	1244	791	10401	1000	5516	
+
+A 144  2637	*	*	*	5660	6524	4774	2817	6176	3745	4356	*	3240	4808	*	4347	3499	2721	5236	4812	144
+       103	5529	4402	1787	494	83	4164	10382	1247	5771	
+
+K 145  *	*	3942	3149	6675	4877	4849	6153	4384	4383	6770	3087	5835	3740	4080	2903	2593	6895	*	4391	145
+       51	5801	5923	0	*	0	*	10719	1183	1862	
+
+V 146  4362	5998	6909	6713	3945	*	*	2055	5363	2571	6639	*	6660	*	*	6194	5990	1717	*	3915	146
+       13	6853	*	1000	1000	984	1016	10702	1000	1191	
+
+Q 147  5347	*	3898	4365	4323	*	6024	4247	4274	5298	4879	5330	6281	4011	3999	2575	2254	4533	*	4389	147
+       10	*	7208	*	*	*	0	10708	0	1000	
+
+W 148  *	5605	*	*	5969	*	7252	*	6818	5984	*	*	*	*	*	6027	*	*	171	5134	148
+       46	*	4986	*	*	1385	696	10682	0	1300	
+
+K 149  6311	6751	5807	3828	2763	6838	4861	4232	3653	2916	4012	6768	6608	4917	6927	5344	4971	5261	5271	2301	149
+       77	4263	*	1368	707	1375	702	10669	1895	1777	
+
+V 150  5053	*	4903	4253	4329	*	4953	5028	1790	4201	5393	4135	*	4520	2519	5369	6791	4568	7167	4424	150
+       14	6679	*	0	*	990	1010	10684	1022	1415	
+
+D 151  *	*	2093	3780	*	2893	5514	6138	5302	4467	5766	2108	5221	5249	4786	3695	6795	6963	6832	6814	151
+       87	4546	6018	1845	471	*	0	10684	1723	1115	
+
+N 152  5174	*	3795	3881	*	1256	7036	*	5504	5938	6974	3317	6714	5022	4974	3012	4216	*	*	6731	152
+       27	5779	*	3951	96	383	2101	10664	1183	1457	
+
+A 153  5182	6157	4427	3214	*	3192	6955	6029	2533	4669	*	4825	5221	3638	3685	3267	4356	3534	*	*	153
+       98	4143	6798	1940	436	*	0	10708	1982	1000	
+
+L 154  4302	*	3895	2845	6364	4877	*	5274	3988	3606	5860	4689	3823	3765	4822	3664	3347	3605	6443	5688	154
+       64	5205	5922	2508	279	*	0	10698	1368	1155	
+
+Q 155  5335	7200	4022	6139	5758	6822	7288	2854	5927	2015	4666	4920	*	5163	5010	4478	3920	2221	*	*	155
+       118	5295	4243	1932	439	941	1061	10687	1354	1517	
+
+S 156  3986	*	4271	3861	4492	5895	4874	4019	4299	3616	6716	4131	3514	4513	4930	2974	3191	4555	*	5892	156
+       107	6755	4006	0	*	1150	864	10618	1011	2367	
+
+G 157  4854	*	4513	3103	5168	3579	4584	4622	4870	4473	*	3813	3051	5439	5761	2736	3402	5196	6879	5764	157
+       26	*	5805	0	*	2017	409	10554	1017	2927	
+
+N 158  4504	*	2978	3386	*	2411	7957	5107	3851	5140	*	4024	5508	5254	4833	2542	4896	4467	6703	6664	158
+       129	6931	3689	526	1711	2095	385	10547	1278	2769	
+
+S 159  4742	*	4671	4218	4322	4923	6654	4119	3921	4303	5879	4143	4536	3993	5739	2526	3384	3260	6642	5607	159
+       1665	6466	571	0	*	*	0	10478	1024	3723	
+
+Q 160  3428	*	3572	4997	4897	*	*	3475	5056	2673	*	*	3927	5193	3058	5025	*	2975	*	3180	160
+       89	4061	*	1044	957	499	1773	8497	1199	9311	
+
+E 161  5746	6255	3924	2993	4457	5653	4047	4831	4375	4412	4049	4039	4451	5164	4917	3394	3434	5050	*	3741	161
+       31	*	5548	*	*	1764	503	10396	0	4794	
+
+S 162  5569	*	4820	4622	6695	3111	5516	5254	3880	4398	6524	4502	5702	6689	3187	3059	2154	4293	*	5334	162
+       16	6533	*	0	*	1497	631	10384	1214	4099	
+
+V 163  5238	6227	6997	3671	3301	6642	4079	4050	4824	4138	*	3777	4497	5219	4098	3094	4106	3397	5609	4115	163
+       55	4729	*	2235	344	*	0	10507	1483	3070	
+
+T 164  3825	7513	5308	4541	5631	4633	5746	5081	5070	4451	6594	3904	2803	4708	3697	3101	3219	4239	6724	4338	164
+       62	5925	5276	2121	377	2330	320	10507	1144	3070	
+
+E 165  4246	*	3850	3212	5715	4782	5596	4138	4674	4013	6933	4612	3297	*	5134	2819	3674	3078	*	5770	165
+       79	6503	4567	2326	321	2048	399	10508	1213	3107	
+
+Q 166  4441	*	4346	4482	4278	4758	6726	5675	5619	3080	4186	5178	4050	3503	3967	3682	3988	2961	*	4664	166
+       98	5211	4693	1149	865	*	0	10491	1342	3298	
+
+D 167  6535	4388	3518	3255	6524	5128	5236	3733	3517	3409	4967	5711	4475	3664	3518	3685	5634	3908	*	*	167
+       52	5872	5771	4130	85	3946	97	10415	1112	3918	
+
+S 168  3319	6509	3622	2995	3742	4745	4979	6569	5119	5668	5555	2903	4571	4964	4207	3950	3608	4334	*	*	168
+       210	4697	3370	2261	338	3345	149	10434	1718	3986	
+
+K 169  3305	*	3914	3544	*	2832	6340	6954	3702	3943	6442	3867	4537	6230	4233	2970	3424	5523	6399	*	169
+       117	4519	4865	284	2483	717	1353	10322	1702	5033	
+
+D 170  4821	6571	1631	2985	6479	3787	6026	5601	4771	6712	*	3927	4784	6650	3794	3525	4359	6477	*	6933	170
+       40	*	5198	*	*	2843	217	10493	0	3474	
+
+S 171  5618	6696	3776	5071	5674	1408	5016	6507	3423	*	4985	4355	6556	5129	4981	2832	4509	*	*	*	171
+       53	6731	5236	3585	126	2512	278	10475	1004	3570	
+
+T 172  4778	6557	5707	5205	6860	4902	*	5681	3858	2753	5611	3526	6625	5915	3601	3114	2205	4122	*	5533	172
+       71	*	4383	*	*	2697	242	10488	0	3541	
+
+Y 173  4439	6688	*	4340	2555	6638	4798	4147	*	4102	*	4282	6551	4014	4729	3866	5491	4156	6134	2052	173
+       250	6606	2748	5000	46	2675	246	10443	1000	3850	
+
+S 174  4161	*	4363	4411	4882	4486	4959	4744	5389	4882	6294	3079	*	4701	5495	2166	2373	6457	6322	6467	174
+       51	6524	5375	1000	1000	4920	48	10256	1009	5378	
+
+L 175  3013	6245	6268	6051	*	6640	5481	3997	4537	3323	3673	6369	5313	4359	5581	3401	3886	2378	6439	4464	175
+       31	*	5553	*	*	2248	341	10206	0	5597	
+
+S 176  4913	5677	6361	4261	5392	4977	4924	5454	4523	4939	6498	4097	*	5451	6563	2320	2143	4164	3858	4600	176
+       31	*	5549	*	*	2490	283	10304	0	5024	
+
+S 177  3617	5013	*	6428	4065	4233	4629	6576	4762	4267	6632	5565	*	6468	4194	1288	3923	5210	6363	6428	177
+       95	4210	6684	3265	158	950	1051	10377	1869	4643	
+
+T 178  4452	*	5342	3883	4498	6611	5556	4166	5107	4701	*	4782	*	3825	3853	2740	2197	3331	6675	6667	178
+       0	*	*	*	*	2835	218	10513	0	3022	
+
+L 179  5141	5702	*	*	4750	*	*	3789	*	646	5654	*	*	*	5696	*	6601	3128	*	4637	179
+       14	6703	*	2322	322	3612	123	10540	1011	2742	
+
+T 180  5844	*	5348	4775	4954	*	3859	4726	5263	2985	4798	4862	*	5128	2775	2935	2685	3753	*	5339	180
+       0	*	*	1585	585	391	2076	10531	1000	2766	
+
+L 181  6734	6624	*	6372	3465	*	*	1819	5698	1951	5305	5290	*	*	6776	5467	5326	2382	5858	*	181
+       12	*	6879	*	*	*	0	10631	0	1310	
+
+S 182  4443	*	4083	*	*	4890	3975	5399	3317	4471	5739	3770	3089	4572	3939	3693	2438	4919	*	5895	182
+       0	*	*	*	*	*	0	10609	0	1491	
+
+K 183  3757	*	4737	4800	6896	4278	5397	6121	3959	3452	5223	3158	3212	5364	3244	2729	5207	4491	*	*	183
+       13	6855	*	0	*	1878	458	10609	1000	1491	
+
+A 184  3007	7061	4476	4520	6896	6101	5929	4368	5333	3240	*	5814	5748	4655	4951	3032	3320	2272	*	5426	184
+       13	*	6830	*	*	1336	727	10619	0	1310	
+
+D 185  4340	7402	3515	3983	*	5213	4794	6549	3475	4292	5187	3728	5390	3598	3212	2752	3364	7125	6748	*	185
+       132	*	3514	*	*	1342	724	10638	0	1309	
+
+Y 186  5700	5661	4919	3349	5868	6554	5098	4726	3797	2811	4339	6836	3555	5824	3842	4703	3983	4644	3180	4716	186
+       159	3708	5152	795	1239	3784	109	10536	2173	3043	
+
+E 187  4232	*	2086	2670	*	4399	6981	*	5023	6941	*	4288	4704	4125	4774	2291	4651	6812	*	5408	187
+       0	*	*	*	*	2901	207	10501	0	3320	
+
+K 188  *	*	1137	3553	*	5720	3657	6274	4179	5756	*	3618	*	5208	4189	4614	4927	5776	*	5658	188
+       43	5627	6729	0	*	192	3002	10532	1198	3022	
+
+H 189  3189	6073	3542	4305	6071	2431	7024	5113	5890	5165	4776	3776	6734	4467	5281	2353	4210	5806	*	*	189
+       14	*	6700	*	*	*	0	10631	0	1293	
+
+K 190  3255	*	5176	5357	*	1011	5178	*	4074	4868	*	5022	*	5897	5396	4924	3687	4762	*	7147	190
+       25	5845	*	3080	182	1766	502	10616	1172	1487	
+
+V 191  6001	*	4422	3318	7169	*	5936	3397	3723	4158	5630	3646	4584	5317	4059	4271	2513	3445	5820	5372	191
+       27	5748	*	3454	138	1419	675	10631	1205	1293	
+
+Y 192  *	*	*	*	2553	*	5731	5226	*	3215	*	*	*	*	*	*	7168	3170	5786	889	192
+       0	*	*	*	*	0	*	10619	0	1310	
+
+A 193  5937	*	6904	3894	5846	6924	4378	4626	4110	5915	6795	6788	6688	4441	3718	3748	1502	3961	5752	4076	193
+       26	5805	*	0	*	*	*	10644	1223	0	
+
+C 194  7044	160	6649	*	6635	7128	*	*	*	5228	6774	*	*	7086	*	*	*	5212	*	*	194
+       13	6801	*	0	*	0	*	10623	1000	1011	
+
+E 195  3707	5910	6647	2652	5147	6801	5316	4433	3843	4974	5991	7062	*	4020	2907	3848	3397	2784	*	*	195
+       0	*	*	*	*	*	*	10643	0	0	
+
+V 196  1610	*	6651	6563	4961	5030	*	3342	6586	4828	*	*	6745	*	*	4034	6758	1490	*	6758	196
+       80	7509	4362	1585	585	*	*	10606	1000	0	
+
+T 197  5078	*	5529	3874	4361	4226	4033	6512	3702	*	*	5716	6782	2983	4165	2607	2715	4947	4647	5037	197
+       29	6691	6567	368	2153	0	*	10409	1454	1733	
+
+H 198  6343	*	6806	5492	4632	5617	1919	6498	6883	5786	5578	1413	*	4974	5465	3578	5521	*	*	4747	198
+       47	6441	5602	3907	100	0	*	10446	1011	1026	
+
+Q 199  4207	*	4853	2613	6821	3921	6380	4783	2821	5576	6518	5302	2782	3870	4550	3923	4868	4878	*	4828	199
+       0	*	*	*	*	*	0	10225	0	1308	
+
+G 200  2577	*	3764	3219	*	3266	4381	5478	6446	3794	*	3384	4183	4830	4914	3005	*	4967	*	5818	200
+       0	*	*	*	*	1345	722	10099	0	1308	
+
+L 201  4974	*	6361	4770	4993	2514	*	4219	5090	1577	4139	5990	6787	4511	6092	3295	5219	5275	*	*	201
+       96	5045	4861	1078	926	*	0	9883	1188	1115	
+
+S 202  5065	*	3794	2807	6179	3227	*	6672	6123	4311	*	5967	2551	4031	4523	2676	3613	5029	*	*	202
+       175	*	3129	0	*	0	*	9721	1075	1577	
+
+S 203  3356	*	5143	2688	5897	5682	*	4886	3556	4771	*	4424	5052	4267	3775	2527	4263	3570	*	5993	203
+       0	*	*	*	*	*	0	9524	0	2065	
+
+P 204  4745	5852	5745	5044	*	*	4171	*	4929	5652	*	3723	1747	4244	3711	3232	2849	4631	*	*	204
+       26	5801	*	1000	1000	0	*	9341	1000	2065	
+
+V 205  3915	5774	5969	4265	4200	4934	6395	3184	3812	2541	6028	6060	*	5708	*	3650	4875	2207	*	5993	205
+       0	*	*	*	*	*	*	9562	0	0	
+
+T 206  5105	5646	4810	3478	*	*	4870	*	3917	*	*	3890	5942	5608	3534	2500	2006	3471	*	5738	206
+       53	4785	*	1582	587	*	*	9513	1207	0	
+
+K 207  2823	5722	5614	5907	5607	5683	4647	3982	2770	4521	*	5848	*	4723	2998	4849	3111	2852	*	*	207
+       0	*	*	*	*	*	*	9483	0	0	
+
+S 208  *	*	5611	3908	4912	*	4811	4894	4988	*	*	2305	6294	5920	4833	2324	1851	4818	*	*	208
+       0	*	*	*	*	*	*	9483	0	0	
+
+F 209  6248	5601	*	*	2562	*	*	2163	6147	2449	5653	*	*	*	5654	*	4029	2383	6151	3845	209
+       0	*	*	*	*	*	*	9411	0	0	
+
+N 210  *	*	5068	*	*	5596	5271	*	3912	*	*	1907	*	*	2912	2115	2535	4201	*	*	210
+       0	*	*	*	*	*	*	8262	0	0	
+
+R 211  *	*	*	*	*	*	*	*	2515	*	3177	*	3287	3223	1308	*	*	*	3308	*	211
+       0	*	*	0	*	*	*	5040	0	0	
+
+//
+�HHsearch 1.5
+NAME  9287755aa6aa27583da6be3b2408bfcc
+FAM   
+FILE  9287755aa6aa27583da6be3b2408bfcc
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:18:36 2013
+LENG  146 match states, 146 columns in multiple alignment
+FILT  107 out of 1086 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  8.7 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHCHHHHHHCCCCCCCCCHHHHHCCHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHCCCCH
+HHHHHHHHHHHHHHHHHCCCCCCHHHHHHHHHHHHHHHHHHHHHCC
+>ss_conf PSIPRED confidence values
+9999999999999998855677999999999998978888762334568388874389999999999999999998476389999999998787619998
+9999999999999998734049999999999999999999987648
+>Consensus
+mxLsxxxxxxixxsWxxvxxxxxgxxxxxxlfxxxPxxkxxFxxxxxxxxxxxlxxxxxxxxhxxxxxxxlxxxixxlxxlxxxlxxlgxxHxxxxgvxx
+xxxxxxxxxlxxxlxxxlgxxxxxxxxxAWxxxxxxixxxmxxxxx
+>9287755aa6aa27583da6be3b2408bfcc
+VHLTPEEKSAVTALWGKVNVDEVGGEALGRLLVVYPWTQRFFESFGDLSTPDAVMGNPKVKAHGKKVLGAFSDGLAHLDNLKGTFATLSELHCDKLHVDP
+ENFRLLGNVLVCVLAHHFGKEFTPPVQAAYQKVVAGVANALAHKYH
+>gi|454407|gb|AAA33018.1| hemoglobin [Casuarina glauca]gi|454920|emb|CAA54775.1| haemoglobin [Casuarina glauca]
+MALTEKQEALLKQSWEVLKqnIPAHSLRLFALILEAAPESKYVFSFLKDS---NEIpENNPKLKAHAAVIFKTICESATELRQkghAVWDNNTlkrLGSI
+HLKN-KITDPHFEVMKGALLGTIKEAIKENWSDEMGCAWTEAYNQLVATIKAEM-
+>gi|114799562|ref|YP_759630.1| globin domain-containing protein [Hyphomonas neptunium ATCC 15444]gi|114739736|gb|ABI77861.1| globin domain protein [Hyphomonas neptunium ATCC 15444]
+--------I-ILSTFERAaqACADPAPLIYARLFELRPDFKPLFDMD----------TDGGVRGS--MLETCFEAILGVIEGassQRVIISAARFSHGG-
+YGVVDEEFDIMFASIRDVFRDLLGARWTGTEEAQWAILLKEIAAis-------
+>gi|321473021|gb|EFX83989.1| hypothetical protein DAPPUDRAFT_223071 [Daphnia pulex]
+-SFSQKDVDVIVNTWNTLKRrGDFAPKVFIRYFKAKPESQKMFPAFANVPI-TELPTNHDFLNSAYTCITSLNYLIPYLKFdHPERCPAFP-KHLkDKYN
+A--VDLKKLGSIWMTAMQEEMGNAFTNDVRDVWKKAVMAVIEYA-----
+>gi|110319969|emb|CAJ44467.1| haemoglobin type 2 [Biomphalaria glabrata]
+-GPTANDRKALDSSWRKLRSgaggrKNAGTNLVLWMLSNVPNMRSQFSKFDANQPDSVLKENTEFLNQVDRILGGIESLVNTVNDpvaLKAAIDKLADAH
+LSmPSRIGLDFFGPLQQNIAQYIQQELGVSADSDESKAWPDLFAAYNLVLKE---
+>gi|20270894|gb|AAM18464.1|AF461710_1 myoglobin [Clonorchis sinensis]gi|23344091|gb|AAN28366.1| 17 kDa myoglobin [Clonorchis sinensis]
+-PLSKDEVDaLFEELNPLVSTteqrTEFGKAVYMALFSAYPEYIQLFTKMQGLTK-DNVEASEGIKYYGQTFADSILEMLQCASDdgkLEAVLEKSGKEH
+IT-RNVTKQQFLSAEEVFIKHFSGVLT---KEENKQSMERFLKHIVPKVAGF--
+>gi|339256778|ref|XP_003370265.1| putative globin [Trichinella spiralis]gi|316965561|gb|EFV50254.1| putative globin [Trichinella spiralis]
+-KFTDEEVELLARTWKKDDFDwlyRIGTDIYTCVFQLAPELKVFFPYVTECEKkNQSWESSKGFRTQALRFVQILGMAVEKTESrmkdddshLHHRLYKL
+GETHRRfaLKGFTPTHWKGFVIAVRVAMRRAVeaMPNLTPAecetAIEAWDKLSRYVVHRMEEGY-
+>gi|88813510|ref|ZP_01128744.1| hypothetical protein NB231_06775 [Nitrococcus mobilis Nb-231]gi|88789223|gb|EAR20356.1| hypothetical protein NB231_06775 [Nitrococcus mobilis Nb-231]
+---------LFNDSYERCidnpNPPGFLQRFYKVFLSSSEEVAEKFKNT-DF------------EKQTRVLKASLYYLMLScngSPEAMAHLRRIACLHS
+rkQ-LDIRPELYDLWLASLLQAAREYD-PRFDQQTETAWRQVLSHGIDFMKSRY-
+>gi|195427633|ref|XP_002061881.1| GK17234 [Drosophila willistoni]gi|194157966|gb|EDW72867.1| GK17234 [Drosophila willistoni]
+--FSLTEKVALRQAFDLIKPfrRKMGKDIFYTYLVQHEDVIDIFRKNGDldek---------inLTALHKHAQTMMRTIHFVVNKgld-DMpsFHMMAHD
+IVNIHVD-HWVPKAHVQLLGLAIRDYVLNVMSNRCSESLISGFDKVLN-----------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+V 1    *	*	*	*	*	*	*	3695	*	*	477	*	3844	*	*	*	*	2894	*	*	1
+       0	*	*	*	*	*	*	5465	0	0	
+
+H 2    4212	5857	4689	6101	*	3092	4108	5650	3484	*	*	3997	2361	*	4118	2462	4270	4544	*	*	2
+       0	*	*	*	*	*	*	7886	0	0	
+
+L 3    *	*	*	*	3156	*	*	4451	*	507	3882	*	*	*	*	*	*	4157	6116	*	3
+       0	*	*	*	*	*	*	8397	0	0	
+
+T 4    6361	*	4464	*	*	*	6303	*	5324	*	*	3779	6105	6149	*	1260	1442	5814	*	*	4
+       0	*	*	*	*	*	*	8428	0	0	
+
+P 5    2600	6113	2810	3571	*	5187	5845	5482	3418	4799	5150	6472	2753	4699	5464	3718	6037	5046	*	5225	5
+       0	*	*	*	*	*	*	8481	0	0	
+
+E 6    2566	6575	3311	2771	*	5362	4634	4295	2729	6645	*	4711	6491	4350	4165	3383	5442	6622	*	6180	6
+       0	*	*	*	*	*	*	8590	0	0	
+
+E 7    4651	*	2219	1770	*	*	5509	*	5499	6364	*	5055	*	1569	*	*	5113	*	*	*	7
+       0	*	*	*	*	*	*	8702	0	0	
+
+K 8    4625	*	*	5543	5058	*	6428	2435	2129	3772	6832	*	*	4920	2338	*	5069	3243	5602	6165	8
+       0	*	*	*	*	*	*	8694	0	0	
+
+S 9    3220	*	3302	2685	4869	6796	4805	4224	2635	4926	*	5428	*	3157	3998	4691	6315	5745	*	4591	9
+       38	6249	6298	0	*	*	*	8785	1043	0	
+
+A 10   2627	*	4933	5755	6857	6552	5685	3626	4691	1420	5735	4714	*	5656	*	*	3530	3451	*	*	10
+       0	*	*	*	*	0	*	8926	0	1036	
+
+V 11   4816	*	*	*	4267	*	*	1694	*	2188	5056	*	*	*	*	*	5496	1637	*	6577	11
+       0	*	*	*	*	*	*	8950	0	0	
+
+T 12   4990	*	6422	4105	6646	6737	6498	6618	2337	3608	6583	3684	*	2921	1807	*	5516	4316	*	*	12
+       0	*	*	*	*	*	*	8950	0	0	
+
+A 13   3560	*	2471	3386	*	4574	5704	*	3308	6597	*	3262	*	3103	4240	2511	6858	*	*	6777	13
+       0	*	*	*	*	*	*	8950	0	0	
+
+L 14   3055	*	5345	*	6447	*	5241	5616	*	4911	*	*	*	5660	*	1152	2088	4517	6075	*	14
+       0	*	*	*	*	*	*	8950	0	0	
+
+W 15   5545	*	*	*	3394	*	*	5602	*	5674	6620	6359	*	*	*	*	*	5701	432	4054	15
+       0	*	*	*	*	*	*	8950	0	0	
+
+G 16   2423	6492	4049	3028	6277	4066	*	6205	3128	*	*	2986	3861	4279	4363	3833	4488	6775	*	*	16
+       0	*	*	*	*	*	*	8950	0	0	
+
+K 17   3069	*	*	5653	*	5081	6726	4446	2634	3593	5913	4542	4281	3465	2936	4044	4239	3701	*	6738	17
+       33	5471	*	2103	382	*	*	8950	1227	0	
+
+V 18   3376	4389	6366	*	4798	*	*	2022	7041	2373	5044	6277	6996	6959	6482	6597	*	1834	*	*	18
+       711	1361	*	972	1028	*	*	8950	5639	0	
+
+N 19   5180	6867	3206	3680	5121	4577	5245	6942	2519	5204	*	2754	5733	4452	3383	3614	5209	5583	*	4942	19
+       467	1854	*	1308	746	*	*	8950	4503	0	
+
+V 20   3635	4923	4791	4749	6366	3499	4850	5262	2703	4909	5071	5202	2693	5944	4225	3922	5341	4376	6305	4950	20
+       490	1795	*	1325	735	*	*	8950	4644	0	
+
+D 21   3758	*	2482	3182	*	3849	6420	*	4531	5682	*	3585	4598	3573	3549	4528	3487	3910	*	*	21
+       115	3704	*	2189	357	*	*	8961	2046	0	
+
+E 22   4314	*	3244	2342	6319	4274	6883	6438	3446	4468	6662	5464	6309	3455	3164	4605	3504	4360	*	*	22
+       38	5280	*	1249	788	*	*	8961	1326	0	
+
+V 23   3649	6501	*	*	2325	*	3784	2952	*	3008	5260	3774	6743	6210	*	*	4390	2800	6453	4089	23
+       48	5295	7062	3066	183	*	*	8961	1254	0	
+
+G 24   3035	5528	6862	6595	3934	939	6449	6476	*	5574	6259	*	6820	*	*	4377	5053	3395	*	6457	24
+       0	*	*	*	*	*	0	8964	0	1000	
+
+G 25   4466	6479	3943	3863	6531	6744	7135	4166	3846	3785	5083	4066	4588	3419	3440	3521	3391	3540	*	*	25
+       0	*	*	*	*	0	*	8940	0	1000	
+
+E 26   3284	6325	3517	2766	5605	5723	4648	3742	3470	3971	*	3791	*	4074	4284	4164	3811	5827	*	6078	26
+       19	6249	*	1585	585	*	*	8937	1061	0	
+
+A 27   4638	5285	*	*	1784	*	*	2255	*	2363	3784	*	*	*	*	5455	*	2791	*	*	27
+       0	*	*	*	*	*	*	8937	0	0	
+
+L 28   6487	*	*	*	1378	*	*	*	*	2414	4774	*	*	*	*	*	*	5698	6739	1510	28
+       0	*	*	*	*	*	*	8937	0	0	
+
+G 29   3465	*	5081	4031	4604	4796	4961	3354	3678	3067	4704	4855	*	4168	3457	4172	3753	4806	*	5096	29
+       0	*	*	*	*	*	*	8957	0	0	
+
+R 30   3807	6391	6874	5615	6621	5655	4907	5143	2964	3978	6784	3250	*	4512	1711	5553	4087	5510	6458	5183	30
+       0	*	*	*	*	*	*	8957	0	0	
+
+L 31   *	*	*	*	2020	*	*	3527	*	1165	4175	*	*	*	*	*	*	4285	4863	3647	31
+       0	*	*	*	*	*	*	8961	0	0	
+
+L 32   *	5422	*	5476	666	*	*	4017	*	2367	6349	6452	*	5934	*	*	6347	*	5949	*	32
+       0	*	*	*	*	*	*	8961	0	0	
+
+V 33   3775	*	4751	2143	5485	7038	5872	*	2845	5326	6695	3050	*	3672	5052	3858	3101	5172	*	*	33
+       0	*	*	*	*	*	*	8961	0	0	
+
+V 34   2826	6849	3529	3111	*	*	5056	4459	2852	3385	4698	4268	*	5208	3259	4646	4057	5954	*	*	34
+       12	*	6890	*	*	*	*	8961	0	0	
+
+Y 35   3310	4873	3367	4755	3817	6898	2551	6456	4423	7011	6910	3277	*	5729	5551	4489	5408	5679	6852	2579	35
+       0	*	*	*	*	0	*	8962	0	1000	
+
+P 36   5799	*	6347	5140	*	5979	*	6603	5577	6447	*	*	327	5708	6798	6089	*	6168	*	5101	36
+       11	*	7107	*	*	*	*	8961	0	0	
+
+W 37   4452	*	2227	1889	6485	4309	5098	6954	5532	5647	5561	4619	*	3619	4074	4000	5883	5040	5809	*	37
+       0	*	*	0	*	0	*	8970	1000	1000	
+
+T 38   3250	5572	5640	5573	3920	6812	*	3525	*	2674	4323	4881	*	*	6712	3594	3219	3140	6532	3233	38
+       0	*	*	*	*	*	*	8961	0	0	
+
+Q 39   6497	*	*	4703	*	*	5797	4076	1654	3795	5696	*	5674	2861	2072	5687	6347	5017	*	7255	39
+       0	*	*	*	*	*	*	8961	0	0	
+
+R 40   2912	*	3171	3407	*	5735	5681	6005	3098	4496	*	3832	4428	4175	4142	2767	5060	5585	*	5609	40
+       15	6627	*	0	*	*	*	8961	1009	0	
+
+F 41   4284	*	*	5956	3085	*	5049	3268	3473	2084	3169	6890	6879	5485	5753	6849	6506	3880	*	3348	41
+       0	*	*	*	*	*	*	8961	0	0	
+
+F 42   *	*	*	*	138	*	6347	*	*	6465	6447	*	*	*	*	*	*	*	4964	5378	42
+       58	*	4659	*	*	*	*	8961	0	0	
+
+E 43   4847	*	5119	4704	6494	3028	4502	*	2811	6228	6806	4607	2267	4557	5326	3523	3783	4099	*	5558	43
+       67	*	4469	*	*	569	1618	8910	0	1539	
+
+S 44   4885	*	4125	4303	5671	3278	4481	5751	2622	4993	5589	4733	4950	3365	3734	3373	4863	4362	6550	5310	44
+       346	4202	2655	722	1345	383	2099	8921	1673	1804	
+
+F 45   4134	*	5381	6032	1327	6681	6830	5044	6601	3064	4366	6244	*	*	6559	4700	3777	3450	6316	4688	45
+       424	6140	2057	1585	585	3042	187	8740	1061	3406	
+
+G 46   3862	*	4186	3825	*	2640	*	*	2019	*	*	*	5688	4404	2994	3361	4290	4111	*	*	46
+       85	5612	4754	0	*	635	1489	8296	1046	5404	
+
+D 47   4411	*	1727	4058	6465	2605	3616	6411	4011	*	*	2699	*	*	*	4058	4451	*	*	*	47
+       36	6135	6632	1000	1000	*	0	8763	1038	3183	
+
+L 48   *	5131	4532	6740	3275	6401	5309	3500	3152	2294	3660	4737	6404	5423	5208	6470	5535	2812	*	5665	48
+       518	6148	1798	2322	322	1645	556	8763	1291	3312	
+
+S 49   4323	5901	3207	3597	5167	5892	*	*	3734	4696	*	5644	2494	4975	5885	1759	4985	6548	*	*	49
+       405	5798	2140	1000	1000	1894	452	8456	1061	5435	
+
+T 50   4836	*	5034	3553	5609	5999	6025	3950	3006	5999	*	4073	2627	4911	5509	3235	2665	5812	5703	6003	50
+       663	3853	1740	1141	872	1535	610	8390	1534	5825	
+
+P 51   3271	*	3575	3644	5985	6084	*	5842	3171	2663	5632	3408	3658	4277	4841	*	5614	3507	*	5199	51
+       184	*	3059	*	*	1955	430	8273	0	6123	
+
+D 52   2506	*	1629	3129	5548	3681	*	*	5120	*	5882	5721	5667	3565	*	4156	4503	*	*	5801	52
+       22	6058	*	2585	263	3035	188	8241	1000	5746	
+
+A 53   3460	*	2647	1605	*	5875	*	*	6184	6204	5635	3336	*	3479	5209	3125	*	6155	*	6410	53
+       111	*	3754	*	*	*	0	8307	0	5328	
+
+V 54   *	5670	6122	*	*	*	*	2589	*	1097	3663	5491	*	5838	5510	*	5765	2831	5776	6086	54
+       25	*	5883	*	*	3316	153	8187	0	5745	
+
+M 55   3320	5600	*	3121	6401	*	*	3843	2814	3410	5157	4761	3268	2988	3509	5018	*	4922	*	*	55
+       51	5813	5905	1000	1000	1772	500	8254	1011	5505	
+
+G 56   3274	*	3408	3868	4951	3641	*	*	3494	*	*	3398	*	4464	3809	2614	3382	*	6486	4300	56
+       0	*	*	*	*	2572	266	8538	0	4577	
+
+N 57   4383	6690	2309	6215	*	6377	*	5473	*	5315	5303	2144	4990	*	*	1632	4439	5993	*	*	57
+       21	*	6104	*	*	3167	170	8573	0	4076	
+
+P 58   2879	6002	5253	3560	6043	4516	3898	6396	4190	*	*	4408	1933	5010	4292	3411	4731	6389	*	6608	58
+       12	6959	*	0	*	1341	724	8725	1000	3918	
+
+K 59   3237	6078	3503	2794	4918	3677	6497	*	2968	4816	6379	4990	*	3534	3100	3935	*	5467	6312	6153	59
+       15	*	6568	*	*	2716	238	8826	0	2849	
+
+V 60   6223	*	*	6651	1606	*	*	3072	6666	1939	3510	5351	*	*	*	6336	*	3335	6756	5286	60
+       22	6025	*	1585	585	844	1176	8846	1046	2703	
+
+K 61   4712	6268	6445	3362	6548	4666	3667	5082	2702	3793	6888	3842	*	3862	2365	4710	4877	6666	*	4926	61
+       0	*	*	*	*	1874	460	8934	0	1713	
+
+A 62   2137	*	4959	4931	5826	3240	4297	5535	3891	4009	*	4053	*	5737	2859	4225	4395	5778	*	4436	62
+       32	*	5496	*	*	*	0	8936	0	1482	
+
+H 63   *	*	*	*	6554	*	864	6628	5291	5638	5991	*	*	1623	6653	6477	*	6633	*	6305	63
+       25	*	5837	*	*	1586	584	8900	0	1822	
+
+G 64   1541	3759	*	6943	4978	2631	*	4410	6846	6744	5469	*	5529	*	4851	3537	4050	3633	*	6624	64
+       17	*	6406	*	*	1644	556	8911	0	1779	
+
+K 65   3242	6823	4193	4780	5237	5090	7001	3973	2953	2995	4960	4639	*	5577	3108	3968	4166	4112	*	5276	65
+       19	*	6266	*	*	382	2103	8875	0	1676	
+
+K 66   3221	6250	*	*	*	5753	5688	4039	3043	4858	4029	4762	*	4389	2067	3948	3195	4126	*	6738	66
+       36	5353	*	1585	585	1113	895	8882	1269	1268	
+
+V 67   *	6558	*	*	1991	*	*	2717	*	2238	5501	*	*	*	*	6302	*	1714	*	4877	67
+       16	*	6487	*	*	0	*	8910	0	1069	
+
+L 68   2879	5092	*	6704	3728	3909	*	3433	5733	2578	2815	*	*	4970	6973	4297	4740	3482	5281	5740	68
+       0	*	*	*	*	*	0	8927	0	1022	
+
+G 69   3435	6086	3761	2910	*	3483	5271	*	3555	4645	5132	3217	*	4366	3669	4231	3409	7191	*	5148	69
+       18	6335	*	3000	193	0	*	8927	1069	1022	
+
+A 70   1877	*	*	6523	3824	3354	*	4504	6841	3158	4265	*	*	5140	5008	2800	4167	4055	*	6295	70
+       0	*	*	*	*	*	0	8910	0	1069	
+
+F 71   *	*	*	*	3559	*	*	1964	*	1322	4301	*	*	*	*	*	*	2265	*	*	71
+       17	6448	*	1585	585	*	0	8910	1034	1069	
+
+S 72   3679	*	2148	3385	*	2756	4282	6529	6586	4834	5609	3126	6324	4913	6703	4422	3964	4887	*	6650	72
+       46	4983	*	3014	191	*	0	8910	1362	1069	
+
+D 73   4186	5708	3708	3348	4305	5840	6234	4572	4024	4491	4205	3622	*	5660	4773	2816	3792	4478	6118	4142	73
+       0	*	*	*	*	*	0	8910	0	1069	
+
+G 74   3003	4714	*	*	3201	4179	*	2360	*	2475	5022	6448	*	5628	*	6703	4894	2680	5694	5827	74
+       91	4035	*	1870	461	*	0	8910	1861	1069	
+
+L 75   4133	5422	*	6485	5723	*	*	1518	*	3354	4280	6345	*	6573	*	6577	*	1574	*	5504	75
+       47	4949	*	2400	303	*	0	8910	1386	1069	
+
+A 76   4872	*	2337	2799	*	4191	5712	*	3266	6711	4838	3222	5565	4907	4031	3509	4671	4605	6486	*	76
+       28	5709	*	2000	415	*	0	8910	1149	1069	
+
+H 77   3966	4980	4972	3845	5755	4553	3741	*	3953	4253	6672	2235	6486	4504	4031	3022	4361	5705	*	5616	77
+       110	4012	6485	1457	653	*	0	8910	1876	1069	
+
+L 78   4616	*	5223	6252	5779	6663	*	3624	5022	1239	4040	6651	3680	6740	6310	4106	5568	3902	*	4688	78
+       75	4301	*	1819	481	1113	895	8882	1713	1268	
+
+D 79   4775	6324	1462	2788	6672	2997	5059	6573	4155	*	7039	3930	*	5397	5726	4080	5201	6723	*	*	79
+       77	4496	7017	1575	590	0	*	8910	1596	1069	
+
+N 80   5154	*	1792	3611	4992	5566	6783	6334	3973	5708	6689	2067	4386	4603	6583	4054	5183	6788	*	*	80
+       1093	936	6897	1673	543	*	0	8933	6657	1017	
+
+L 81   4428	5719	6233	*	2704	*	4683	3809	*	1356	4418	6263	4366	*	*	6489	5225	3052	*	*	81
+       34	5417	*	3911	99	*	0	8934	1211	1176	
+
+K 82   3386	*	3703	3047	*	5773	4412	4633	4427	4590	4815	5361	5171	3249	3883	3305	4699	3149	*	*	82
+       18	6325	*	0	*	*	0	8934	1061	1176	
+
+G 83   2610	6680	3652	2976	5565	3328	5352	6325	3397	4776	6951	5644	4684	4805	4955	3466	3855	4795	*	*	83
+       15	6560	*	2000	415	1096	910	8934	1012	1176	
+
+T 84   3268	*	*	4299	3800	4850	4376	4109	5786	3000	3428	5600	6851	4509	5474	4406	4013	3331	*	3434	84
+       26	5826	*	1585	585	0	*	8933	1145	1017	
+
+F 85   4928	4631	6713	*	3632	7027	*	2853	*	1195	4760	*	*	*	*	4744	*	2561	6655	*	85
+       44	5044	*	1848	470	*	*	8945	1393	0	
+
+A 86   2934	6051	3885	3491	5571	5707	6518	5395	3007	5908	5378	3762	4660	3885	3313	4837	3837	4381	*	5451	86
+       40	5210	*	1585	585	*	*	8945	1282	0	
+
+T 87   3950	*	3399	3775	6040	5795	5149	*	2461	5034	6264	5913	4910	3688	2945	3433	4593	5115	6729	4283	87
+       19	6264	*	1585	585	*	*	8945	1046	0	
+
+L 88   5526	*	*	6756	4078	*	*	2620	*	1099	3807	4561	*	5757	*	6388	5086	3896	*	4656	88
+       66	4484	*	967	1034	*	*	8945	1579	0	
+
+S 89   2386	5795	*	6912	*	992	6979	5708	5721	5834	6626	4660	6563	*	5414	4575	4661	4582	*	6770	89
+       28	6839	6563	1000	1000	*	*	8945	1000	0	
+
+E 90   2950	*	5142	3216	*	4924	4450	7022	2844	4329	5181	5165	6290	3379	2737	4524	4098	4969	*	6495	90
+       8	*	7484	*	*	0	*	8931	0	1015	
+
+L 91   3695	*	4162	4893	*	5797	6307	4103	3074	3667	5075	4160	6705	4340	2434	3706	3342	4570	*	*	91
+       0	*	*	*	*	0	*	8961	0	1000	
+
+H 92   *	*	*	*	*	5839	70	*	*	*	*	*	*	6500	*	5708	*	*	*	*	92
+       16	6509	*	0	*	*	*	8945	1016	0	
+
+C 93   2464	6785	5627	6626	5295	5825	4305	4333	3083	4452	*	4979	6509	7032	3138	4175	3806	2797	5690	5773	93
+       135	3834	5711	1058	944	*	*	8945	2024	0	
+
+D 94   3909	5486	3767	4183	4415	3799	5781	*	2648	5773	5384	3505	4126	5477	3342	4155	3401	5884	*	6690	94
+       1953	3437	623	563	1630	*	0	8938	2269	1168	
+
+K 95   4374	*	4846	4843	*	4079	*	5117	1989	5025	5143	3877	*	4053	2888	*	3709	3120	*	5140	95
+       399	2926	3186	1416	677	42	5120	7430	1593	7497	
+
+L 96   6706	5712	*	*	3471	*	4308	5861	4588	2747	3907	5591	5483	5902	2043	4638	*	4905	5583	2649	96
+       0	*	*	*	*	0	*	8912	0	1770	
+
+H 97   5696	6802	4915	*	*	1088	4174	*	3369	*	*	3238	5083	4085	3458	5029	*	*	*	*	97
+       90	4044	*	2065	394	*	*	8945	1826	0	
+
+V 98   3730	6349	*	*	3392	*	*	1992	*	2679	4201	*	6503	*	*	*	*	1539	*	*	98
+       42	5795	6563	0	*	*	*	8945	1149	0	
+
+D 99   4656	4380	3611	3332	*	3537	6451	6481	3452	5034	*	4047	3816	4585	4281	4252	2291	6707	*	6730	99
+       0	*	*	*	*	*	0	8931	0	1015	
+
+P 100  3028	*	4503	4554	6313	4184	6720	5638	3917	4972	6692	6891	1598	4297	4109	3319	5779	5652	*	*	100
+       0	*	*	*	*	0	*	8931	0	1015	
+
+E 101  3770	*	3121	2057	6756	4687	4452	4973	3189	*	6876	5067	5002	3474	5262	3922	5049	4200	*	*	101
+       0	*	*	*	*	*	*	8945	0	0	
+
+N 102  5535	*	3288	*	5124	*	2079	6549	6997	3312	3631	4845	*	3458	7000	5698	6509	5033	5770	2337	102
+       0	*	*	*	*	*	*	8945	0	0	
+
+F 103  6335	*	*	*	1324	*	*	3425	*	3101	4925	6674	*	*	*	*	*	4472	2930	2647	103
+       0	*	*	*	*	*	*	8945	0	0	
+
+R 104  3908	*	2654	2402	*	3579	*	6759	3201	3999	6599	3416	5528	4278	4437	6783	4770	4895	6627	6915	104
+       15	6580	*	2322	322	*	*	8933	1012	0	
+
+L 105  3182	*	4133	3659	5158	5675	5292	3832	4473	2936	4321	3739	4558	4423	6627	6380	3829	3280	5990	6723	105
+       15	6599	*	0	*	*	*	8933	1026	0	
+
+L 106  3853	*	*	*	1708	*	*	3405	*	2195	2958	*	*	*	*	*	*	3172	4072	6281	106
+       0	*	*	*	*	*	*	8933	0	0	
+
+G 107  3395	6580	*	4782	4187	1776	6905	4666	3101	3646	6709	*	6650	4946	3481	3996	6148	5568	5700	6875	107
+       15	6606	*	0	*	*	*	8933	1001	0	
+
+N 108  4600	6583	3035	1788	7161	3984	6281	6396	4098	*	*	3476	4816	4461	3806	3828	4301	6816	6492	*	108
+       0	*	*	*	*	*	*	8933	0	0	
+
+V 109  1748	3453	5874	5827	*	7085	6683	3422	*	5394	6713	*	4342	5717	*	3003	5064	2334	*	6467	109
+       0	*	*	*	*	*	*	8933	0	0	
+
+L 110  6851	*	*	*	2339	*	*	3033	*	1129	4334	*	*	*	*	6253	6888	3279	5058	6630	110
+       0	*	*	*	*	*	*	8933	0	0	
+
+V 111  4766	6664	6518	6888	5414	6297	6467	2459	*	1781	3988	*	5930	5838	5531	7024	4109	2221	*	6072	111
+       0	*	*	*	*	*	*	8933	0	0	
+
+C 112  3325	5673	3032	2523	4511	4406	4881	5863	4381	5939	6689	5868	6606	3224	4579	4198	4186	5342	6456	4423	112
+       0	*	*	*	*	*	*	8933	0	0	
+
+V 113  2654	4970	*	*	4679	6499	5567	6656	*	4126	4060	*	*	*	6496	3847	2029	2517	*	3175	113
+       0	*	*	*	*	*	*	8933	0	0	
+
+L 114  4770	6281	*	*	2979	*	*	2166	*	1738	3256	*	*	6599	*	*	5494	2610	*	*	114
+       26	*	5780	*	*	*	*	8933	0	0	
+
+A 115  3084	5677	*	3115	*	4311	6758	5654	2617	4269	*	5535	5701	4033	2537	2905	5090	5993	*	*	115
+       14	*	6649	*	*	1058	944	8936	0	1167	
+
+H 116  3777	6308	3124	2005	*	5574	6738	*	3527	5465	*	4256	6478	3529	4096	3234	4107	5423	*	6100	116
+       73	*	4336	*	*	0	*	8939	0	1167	
+
+H 117  3382	4462	5141	4230	5595	4646	3767	4035	3887	4030	5604	4771	*	4875	4923	4945	4312	2790	4981	3837	117
+       142	6292	3627	0	*	1290	759	8904	1006	1651	
+
+F 118  5182	3829	3459	6191	3798	5943	6582	5453	*	1270	4491	5004	6066	5401	*	6595	6260	3931	5433	4832	118
+       278	4341	2987	3311	153	465	1860	8813	1590	2501	
+
+G 119  5272	6150	6691	4466	*	837	4968	5504	4435	*	6198	*	3567	4382	4794	4924	6070	6043	*	*	119
+       107	6712	4020	0	*	669	1431	8731	1005	3127	
+
+K 120  3919	*	2861	4446	*	4277	6456	6534	3058	5519	*	4266	2749	4458	4012	3787	3789	4008	*	5678	120
+       31	6305	6832	1000	1000	966	1034	8836	1020	2549	
+
+E 121  3097	4506	3494	3390	6005	3373	5204	*	3448	5604	6447	3837	6649	3273	3847	3545	5134	5317	*	*	121
+       88	4083	*	1877	458	1050	952	8881	1825	1842	
+
+F 122  4804	5101	*	6848	1877	*	*	4846	6626	3016	4643	6563	5522	6572	4314	4334	6477	4683	2561	3585	122
+       82	4917	5513	1721	522	505	1759	8910	1373	1369	
+
+T 123  5801	6459	2120	5734	6704	5643	5726	*	4883	*	*	2857	6666	*	6403	2699	1658	6805	*	*	123
+       14	6745	*	2807	222	1719	522	8924	1000	1356	
+
+P 124  2546	*	3183	2823	5596	4161	4467	*	3947	6770	6319	5572	2863	4794	3996	3443	5648	*	*	*	124
+       57	*	4702	*	*	824	1200	8924	0	1200	
+
+P 125  3028	*	2658	1797	*	5134	*	6274	3885	5748	*	5632	5685	3541	5407	3512	4182	6420	*	*	125
+       18	6324	*	2000	415	*	0	8905	1022	1636	
+
+V 126  2606	5425	5578	5137	*	*	5753	3165	*	2645	5624	6288	*	4632	6245	5063	2511	2539	*	6753	126
+       12	*	6913	*	*	*	0	8905	0	1636	
+
+Q 127  3954	*	4215	2131	*	5185	5330	4143	2833	4776	4929	5559	5578	3705	3581	6712	4825	3514	*	*	127
+       0	*	*	*	*	0	*	8904	0	1765	
+
+A 128  2853	*	2801	2907	6709	4356	5454	5736	2861	4719	6135	4952	6897	3638	5604	4148	3522	6664	*	*	128
+       0	*	*	*	*	*	*	8933	0	0	
+
+A 129  548	*	*	5808	*	4422	*	4661	*	5016	*	*	*	*	6530	3365	6679	4229	6600	*	129
+       13	6783	*	1585	585	*	*	8933	1000	0	
+
+Y 130  5513	*	*	*	4161	*	*	*	*	4589	4921	*	*	*	*	*	*	*	314	4524	130
+       0	*	*	*	*	*	*	8933	0	0	
+
+Q 131  3848	*	3739	3776	6599	5033	6649	4525	3067	4747	4925	3535	*	3906	2693	4064	3581	6247	5313	6683	131
+       0	*	*	*	*	*	*	8933	0	0	
+
+K 132  3499	5311	3694	3735	5516	5033	6456	4606	1778	4606	6679	4784	*	5513	3495	4712	5007	3826	*	*	132
+       0	*	*	*	*	*	*	8933	0	0	
+
+V 133  2765	4179	*	*	3091	5291	*	3458	*	1883	4092	*	*	6599	*	5082	3972	2940	*	*	133
+       0	*	*	*	*	*	*	8933	0	0	
+
+V 134  6297	*	*	*	2046	5720	*	3111	*	2126	3572	5138	*	*	6775	5569	5720	3696	4686	3271	134
+       16	6518	*	0	*	*	*	8933	1013	0	
+
+A 135  3107	*	2387	3816	*	3354	*	*	3217	6788	6556	4294	6456	3799	3928	3153	4244	6496	5603	*	135
+       14	*	6713	*	*	*	*	8933	0	0	
+
+G 136  4005	5424	*	5616	2155	4934	4797	3910	*	3860	6965	4387	5349	6554	4687	4318	3966	2659	*	3986	136
+       0	*	*	*	*	*	0	8815	0	1000	
+
+V 137  5068	6084	*	*	3644	4270	*	1538	*	3025	3626	*	*	*	*	*	*	1910	6763	*	137
+       0	*	*	1585	585	0	*	8817	1000	1000	
+
+A 138  2437	3914	6633	*	5524	4878	*	2559	6606	3047	5574	5717	*	5721	4938	4382	3731	2871	*	5025	138
+       0	*	*	*	*	*	*	8808	0	0	
+
+N 139  3396	6410	2414	2924	6372	3826	4850	6659	3808	6165	*	3043	4821	5068	5548	4029	3973	*	6630	5754	139
+       0	*	*	*	*	*	*	8829	0	0	
+
+A 140  3009	6223	5606	4647	6093	3941	4376	3934	4139	3066	5556	6439	6332	4921	3697	4751	3580	3398	*	4023	140
+       0	*	*	*	*	*	*	8790	0	0	
+
+L 141  5287	*	*	*	4103	*	6516	2147	*	1975	1494	*	*	*	*	*	*	3834	*	*	141
+       0	*	*	*	*	*	*	8790	0	0	
+
+A 142  3411	6732	6533	3816	6626	4618	6385	4444	1807	4028	4378	*	6349	5166	4061	3447	3831	4356	*	*	142
+       0	*	*	*	*	*	*	8637	0	0	
+
+H 143  3026	*	3934	2617	*	3889	3540	5688	4410	*	*	4180	*	4396	2934	3222	4178	4924	*	*	143
+       0	*	*	*	*	*	*	8382	0	0	
+
+K 144  2955	*	*	3277	4863	1007	5078	*	3554	4809	*	*	*	*	*	3549	*	*	*	*	144
+       0	*	*	*	*	*	*	7481	0	0	
+
+Y 145  4769	3889	*	*	2321	*	*	*	*	4741	4481	*	*	*	*	4549	*	*	4293	944	145
+       0	*	*	*	*	*	*	6750	0	0	
+
+H 146  *	*	*	*	*	*	1917	*	444	*	*	*	*	*	*	*	*	*	*	*	146
+       0	*	*	0	*	*	*	2630	0	0	
+
+//
+�HHsearch 1.5
+NAME  9343cd2395312266b68b016d74fb3c86
+FAM   
+FILE  9343cd2395312266b68b016d74fb3c86
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:15:32 2013
+LENG  84 match states, 84 columns in multiple alignment
+FILT  131 out of 989 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  5.6 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCEEEECCCCHHHHHHHHHCCEEEEEECCCCCHHHHHHHHHHHCCCCEEEEEEEECCCCCEEEEEECCCCCCHHHHHHHHCCC
+>ss_conf PSIPRED confidence values
+976366032078899989868989999879899899999999972998379997884899538999879999389998853559
+>Consensus
+xxxvixxpxxTEKsxxxxexxnxyxFxVxxxanKxxIKxavexlfxVkVxxVnTxxxxxxxKKAxVxLxxgxxaxxxaxxxgxx
+>9343cd2395312266b68b016d74fb3c86
+SWDVIKHPHVTEKAMNDMDFQNKLQFAVDDRASKGEVADAVEEQYDVTVEQVNTQNTMDGEKKAVVRLSEDDDAQEVASRIGVF
+>gi|162606070|ref|XP_001713550.1| 60S ribosomal protein L23A [Guillardia theta]gi|13794470|gb|AAK39845.1|AF165818_53 60S ribosomal protein L23A [Guillardia theta]
+IYKQLIYPVTSESAMKKIQTSNTLTFLVEPMNNKNSLKKIISKLFKVKTIKINSLISMNGKKKIFVKLGPEHDALDVANKIGYI
+>gi|116515257|ref|YP_802886.1| 50S ribosomal protein L23 [Buchnera aphidicola str. Cc (Cinara cedri)]gi|58384690|gb|AAW72705.1| 50S ribosomal protein L23 [Buchnera aphidicola (Cinara cedri)]gi|116257111|gb|ABJ90793.1| 50S ribosomal protein L23 [Buchnera aphidicola str. Cc (Cinara cedri)]
+-LKIILSAHVSDKTSDNMKRNNTVVLKVLKNSKKYEIKLAIEKFFKVRVYKINTLIVKgkrkrqknkickfSNWKKAYVILHTGQ------------
+>gi|58617354|ref|YP_196553.1| 50S ribosomal protein L23 [Ehrlichia ruminantium str. Gardel]gi|58416966|emb|CAI28079.1| 50S ribosomal protein L23 [Ehrlichia ruminantium str. Gardel]
+-FSIIHSSIITEKAVLLNEKFNKYAVYVSGDADKKTIKKAFKVVFGLDVVRINILNQKgkkkyfkgiighrKDRKKVYFSLLKDQ------------
+>gi|281339576|gb|EFB15160.1| hypothetical protein PANDA_018218 [Ailuropoda melanoleuca]
+--PIIKFSL----TIKKMENNSTLVFTVDAKANNPQIKHSLKKLHDIDVAEVNTLVRPEEAQEAYTKLVSD------------y-
+>gi|251772492|gb|EES53058.1| Ribosomal protein L25/L23 [Leptospirillum ferrodiazotrophum]
+ISDVLIRPILSEKSDRVREKNSVYLFHVYKKANKIQIQKAIESIFNVKVESVRTVVRKgkakrigivkgslPDRKRAYITLKDGFK-LDI-------
+>gi|49574623|ref|NP_848102.2| ribosomal protein L23 [Adiantum capillus-veneris]gi|68566046|sp|Q85FI0.2|RK23_ADICA RecName: Full=50S ribosomal protein L23, chloroplasticgi|48476034|gb|AAP29433.2| ribosomal protein L23 [Adiantum capillus-veneris]
+--DKLKNQVITGKSIRLLQQ-NQYTFQVDLKLTKTGMKDWIERFFDVKVEGINSSRMTskngkkknklnityVSYKKMIVRLKKNYF-IPL-------
+>gi|268680585|ref|YP_003305016.1| 50S ribosomal protein L23 [Sulfurospirillum deleyianum DSM 6946]gi|268618616|gb|ACZ12981.1| 50S ribosomal protein L23 [Sulfurospirillum deleyianum DSM 6946]
+----IKAILYTEKSLSLQEN-GTVVIQTSVRMTKNGLKEVLKQYFGFTPIKINSLRVMgkvkkfkgiegkrNDFKKFYVQLPEGAKL----------
+>gi|225709724|gb|ACO10708.1| Probable mitochondrial 39S ribosomal protein L23 [Caligus rogercresseyi]gi|225711026|gb|ACO11359.1| Probable mitochondrial 39S ribosomal protein L23 [Caligus rogercresseyi]
+---------------------NVIKFHVSPEMSRLDAKSYLEKIYGLPVMDVHSfhpsqKIKVsrlksdilykkegHEFKVIYAVLPKDFS---------
+--
+>gi|159478154|ref|XP_001697169.1| mitochondrial ribosomal protein L23 [Chlamydomonas reinhardtii]gi|158274643|gb|EDP00424.1| mitochondrial ribosomal protein L23 [Chlamydomonas reinhardtii]
+----ICFPNITLQMMKLTPEQmdqvketgwlREVAFKTTPDVTKLEIAAFLQSVYGMNVERVSTINYLgrrrlaisrngkrlwwreDDWKKAYVIFRPP-
+------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+S 1    2748	5674	5951	5583	4824	*	2851	3537	*	2417	4787	6009	2800	*	*	3463	5755	5885	*	5277	1
+       0	*	*	*	*	*	*	4629	0	0	
+
+W 2    4165	6405	6551	5327	2703	*	4115	3921	6446	3881	*	6231	*	5484	4415	5214	4329	5147	6177	1560	2
+       75	5341	5264	224	2800	*	*	4985	1161	0	
+
+D 3    5506	*	1490	4347	*	4377	*	5646	3371	*	*	3505	5710	3728	4016	3152	4927	*	*	5770	3
+       34	5440	*	0	*	*	0	5257	1058	1055	
+
+V 4    *	6563	6103	6804	7261	4577	*	1806	5332	3817	*	6426	7107	4558	*	6240	4396	1409	*	4748	4
+       91	4380	6240	1360	712	*	0	5300	1216	1055	
+
+I 5    *	*	*	*	4654	*	*	979	*	1786	6506	*	*	*	*	6346	5545	3083	*	*	5
+       13	6808	*	1000	1000	1531	613	5350	1000	1109	
+
+K 6    6294	5989	*	5590	5236	*	5841	2190	1599	3182	6498	*	5930	4445	3807	5559	*	3618	*	*	6
+       0	*	*	*	*	*	0	5377	0	1055	
+
+H 7    4048	*	5341	5145	5443	5851	4585	4642	2676	5446	4986	4334	*	4173	2764	2847	5658	6368	*	2938	7
+       0	*	*	*	*	*	0	5400	0	1055	
+
+P 8    4372	*	*	*	5942	4674	6575	4982	*	4948	*	*	479	5070	6494	5140	*	4843	*	*	8
+       0	*	*	*	*	*	0	5400	0	1055	
+
+H 9    *	*	*	*	5019	*	3700	2268	5626	1987	6395	6013	*	5801	5533	6261	*	1877	6221	4427	9
+       34	5443	*	1505	627	*	0	5419	1073	1055	
+
+V 10   5709	*	*	*	4389	*	6097	2135	7035	2321	7476	5198	6486	6543	*	4456	3436	1909	*	5374	10
+       31	6801	6347	0	*	*	0	5430	1000	1055	
+
+T 11   5328	*	*	*	*	6760	*	6052	*	*	*	4900	6072	*	*	2149	563	*	*	*	11
+       0	*	*	*	*	*	0	5462	0	1116	
+
+E 12   *	*	3170	395	6568	6652	*	*	6344	5294	*	*	*	5790	5222	5912	6864	*	*	*	12
+       0	*	*	*	*	1425	672	5525	0	1116	
+
+K 13   5516	6088	*	5541	*	*	7223	*	405	*	*	6361	6168	5194	4141	3833	*	*	*	*	13
+       36	*	5323	*	*	*	0	5569	0	1055	
+
+A 14   1901	*	*	*	*	5136	*	5948	6849	*	5035	5041	*	*	*	1389	2256	6011	*	6456	14
+       29	6771	6583	1000	1000	922	1083	5512	1000	1169	
+
+M 15   5352	6475	7042	5664	5756	5582	*	3685	6666	4161	2465	4391	*	5016	6897	3389	2012	4171	*	3521	15
+       0	*	*	*	*	*	0	5593	0	1126	
+
+N 16   3933	*	4821	5682	5142	4332	5649	5201	2649	3747	3429	3776	*	4079	2737	4432	4338	4535	*	7186	16
+       31	5546	*	2325	321	1289	759	5593	1134	1126	
+
+D 17   4650	*	5415	5790	5693	4986	5999	4378	2779	1271	3772	5204	6289	4335	6361	5806	5306	6213	*	6309	17
+       46	4983	*	0	*	*	0	5608	1107	1055	
+
+M 18   3462	*	7040	4908	4568	5895	*	2686	5260	2492	3231	5095	5755	4421	4037	4266	3439	4504	*	*	18
+       13	6836	*	0	*	*	0	5608	1000	1055	
+
+D 19   4688	*	3651	878	*	4605	*	*	4831	5794	6826	6762	5513	3620	7218	3959	5064	7453	*	6033	19
+       77	5231	5307	2651	250	*	0	5608	1084	1055	
+
+F 20   5349	*	3487	3053	6946	4973	7631	6291	2302	6316	5674	2488	*	3353	3727	3731	5176	*	*	5765	20
+       945	*	1058	*	*	1521	618	5595	0	1215	
+
+Q 21   4705	*	3783	2289	3550	6510	4149	4756	4823	6254	*	2332	5066	4388	5835	4266	4209	*	*	4430	21
+       33	5483	*	3322	152	93	3999	5110	1015	3315	
+
+N 22   6589	*	4641	7222	*	2991	6501	*	3448	*	*	844	5887	7421	3910	4113	6578	*	*	*	22
+       63	4540	*	2371	310	0	*	5764	1267	1121	
+
+K 23   5900	6949	7460	4621	*	*	5116	6599	2136	5855	*	6535	7763	2378	3718	5452	2347	2979	6906	7257	23
+       0	*	*	*	*	*	*	5815	0	0	
+
+L 24   6569	*	*	*	5215	*	*	2856	6495	2226	5115	*	*	*	*	*	*	3042	6751	1184	24
+       31	5562	*	0	*	*	*	5917	1067	0	
+
+Q 25   3658	5275	*	5588	5806	5292	*	4708	*	5326	5507	*	6958	4243	*	3905	1528	1912	*	7521	25
+       26	*	5806	*	*	*	*	5917	0	0	
+
+F 26   *	*	*	*	349	*	*	4781	*	3383	*	*	*	*	*	4797	*	4717	*	6841	26
+       0	*	*	*	*	0	*	5872	0	1055	
+
+A 27   5047	*	3826	3614	6495	*	5857	2347	2771	3850	6914	4440	*	3909	3915	5729	4428	4041	5932	4404	27
+       16	6495	*	0	*	*	*	5917	1006	0	
+
+V 28   4486	4722	*	*	*	*	*	4362	*	*	*	*	*	*	*	6304	3811	349	*	*	28
+       0	*	*	*	*	*	*	5917	0	0	
+
+D 29   3227	*	1555	3698	6243	5256	4129	6922	6542	6180	*	3633	4576	5488	5030	3042	6009	5692	*	6085	29
+       0	*	*	*	*	*	*	5917	0	0	
+
+D 30   3841	5507	7004	5498	*	5745	*	3816	2800	3969	4055	5473	2228	*	2935	4164	7281	3440	*	*	30
+       0	*	*	*	*	*	*	5917	0	0	
+
+R 31   5811	7221	2902	4054	*	4616	5308	*	1762	*	6580	2935	*	5393	2759	3584	5909	*	6980	*	31
+       0	*	*	*	*	*	*	5917	0	0	
+
+A 32   819	*	*	*	6996	*	*	*	*	3283	3337	6580	5796	*	*	3591	5426	3878	*	5573	32
+       0	*	*	*	*	*	*	5917	0	0	
+
+S 33   6338	*	5039	*	*	4624	7281	*	5493	*	*	1352	6851	*	6282	2557	1714	*	*	*	33
+       0	*	*	*	*	*	*	5917	0	0	
+
+K 34   *	*	*	*	*	*	*	*	107	*	*	*	*	*	3803	*	*	*	*	*	34
+       0	*	*	*	*	*	*	5917	0	0	
+
+G 35   4739	5562	6613	5688	6950	5980	3965	3643	3605	3423	*	4785	2616	4738	3810	7112	2275	6771	6569	5229	35
+       0	*	*	*	*	*	*	5917	0	0	
+
+E 36   7460	*	2970	1645	6980	5941	5806	7312	4286	4634	5937	5370	*	1678	*	5124	6749	7040	*	6901	36
+       0	*	*	*	*	*	*	5917	0	0	
+
+V 37   *	*	*	*	6520	*	*	469	*	4301	5961	6670	*	*	*	6741	*	2470	*	*	37
+       0	*	*	*	*	*	*	5917	0	0	
+
+A 38   3749	*	*	*	6217	6587	*	6561	503	*	*	*	*	4258	3096	5954	*	*	*	*	38
+       14	*	6670	*	*	*	*	5917	0	0	
+
+D 39   3252	*	4036	2868	*	*	5868	6122	2982	4456	6041	3453	*	2421	3124	4373	5965	6154	*	7112	39
+       0	*	*	*	*	*	0	5917	0	1032	
+
+A 40   900	6756	5859	4274	4761	*	*	4551	*	4137	*	*	*	*	5748	4647	6927	5044	4661	3144	40
+       0	*	*	*	*	0	*	5917	0	1032	
+
+V 41   *	*	*	*	3154	*	*	1804	*	2396	5941	*	*	*	*	*	*	1340	*	*	41
+       0	*	*	*	*	*	*	5917	0	0	
+
+E 42   6451	*	*	812	7131	6741	*	*	2463	6997	6509	5047	*	3996	4501	5060	4826	*	*	*	42
+       0	*	*	*	*	*	*	5917	0	0	
+
+E 43   3505	*	5113	3271	6273	*	6914	6243	1714	4215	6078	4260	*	3218	4380	3611	4538	5458	*	5945	43
+       0	*	*	*	*	*	*	5917	0	0	
+
+Q 44   3931	*	*	*	3918	*	*	2505	5610	1396	3901	6224	*	5022	4971	6217	6751	3686	5872	5008	44
+       36	*	5362	*	*	*	*	5917	0	0	
+
+Y 45   *	4583	*	*	1017	*	*	*	*	5289	6916	*	5621	*	*	5748	*	*	5744	1425	45
+       12	6956	*	1585	585	1144	869	5731	1002	1109	
+
+D 46   *	*	2031	4104	*	1924	*	*	3127	*	*	2120	*	4949	5204	5071	*	*	*	*	46
+       49	4915	*	482	1815	*	0	5867	1164	1038	
+
+V 47   5265	6894	*	6626	5531	7273	*	3748	6676	4370	6833	*	*	5276	*	6504	3287	645	*	7101	47
+       0	*	*	*	*	0	*	5867	0	1038	
+
+T 48   5902	*	3277	3819	7270	6771	6851	*	1324	6217	*	3893	4068	5432	3758	4573	3601	5405	*	*	48
+       0	*	*	*	*	*	*	5917	0	0	
+
+V 49   5833	*	*	*	*	*	*	3976	*	6338	*	*	3279	*	*	5872	5294	394	*	*	49
+       0	*	*	*	*	*	*	5917	0	0	
+
+E 50   2872	*	4915	2737	*	*	6304	3829	2795	3368	*	4738	*	6772	4841	5607	3720	2778	*	4940	50
+       0	*	*	*	*	*	*	5917	0	0	
+
+Q 51   3612	*	3552	3973	*	3931	*	*	1596	*	*	3744	*	5146	3284	2579	*	*	*	*	51
+       0	*	*	*	*	*	*	5913	0	0	
+
+V 52   5603	5831	*	*	*	*	*	2552	*	5910	5871	*	*	*	*	*	6846	417	*	*	52
+       0	*	*	*	*	*	*	5913	0	0	
+
+N 53   5801	5764	*	*	*	*	5344	6594	6995	*	6561	630	*	5547	2491	5188	4970	*	7445	*	53
+       0	*	*	*	*	*	*	5913	0	0	
+
+T 54   *	*	*	*	*	*	*	4274	6271	6580	6108	5523	*	*	*	2951	561	3614	*	*	54
+       24	*	5907	*	*	*	*	5903	0	0	
+
+Q 55   4441	4860	*	*	*	*	3687	3160	5587	1628	3436	*	*	4168	4295	4054	*	3392	*	5003	55
+       0	*	*	0	*	0	*	5901	1023	1097	
+
+N 56   *	6834	*	*	6367	*	5794	1598	5309	5442	6063	1713	*	*	2687	6193	6111	3828	6847	*	56
+       73	5725	5049	3807	107	*	*	5903	1105	0	
+
+T 57   4901	6318	6347	*	5818	7039	*	5121	4638	3935	3908	5737	4863	3870	3058	3979	2920	2207	*	4016	57
+       13	6774	*	0	*	583	1590	5919	1002	1136	
+
+M 58   4137	*	5790	4318	5437	5836	7407	5925	2382	3777	3766	6926	1865	4178	4227	4459	5142	6847	*	*	58
+       1382	748	5583	3817	106	0	*	5926	3809	1013	
+
+D 59   3232	*	4027	4705	*	4221	6245	*	2731	7586	5557	3498	2766	7145	4142	2740	4184	6965	5464	6010	59
+       138	4238	4720	3416	142	1059	944	5923	1297	1100	
+
+G 60   4559	7345	2160	5088	6161	1814	5397	*	3830	*	*	3671	*	7046	3935	3352	6077	*	5470	5703	60
+       62	6999	4870	0	*	359	2182	5793	1023	1299	
+
+E 61   7188	*	6421	3702	3156	5312	*	6933	4454	4481	5788	5079	*	6842	2912	6670	3808	5854	2586	2222	61
+       50	4883	*	3456	138	0	*	5907	1130	1320	
+
+K 62   *	*	*	4648	*	5621	*	*	191	*	*	6253	*	*	4301	*	*	*	*	*	62
+       0	*	*	*	*	*	*	5940	0	0	
+
+K 63   *	*	*	5517	6484	*	6379	5466	464	6384	*	*	*	*	2751	*	*	4726	*	6777	63
+       0	*	*	*	*	*	*	5940	0	0	
+
+A 64   531	6839	*	*	5783	5542	5668	4953	*	*	3633	*	5835	*	6996	*	*	3301	*	*	64
+       0	*	*	*	*	*	*	5834	0	0	
+
+V 65   *	*	5835	*	3018	*	*	1469	*	*	4293	*	*	*	6896	6415	4933	3607	*	1681	65
+       26	*	5823	*	*	*	*	5834	0	0	
+
+V 66   5436	*	*	*	4341	*	5388	1854	*	5601	*	*	*	*	*	*	5711	768	*	*	66
+       30	5611	*	3310	153	0	*	5792	1156	1055	
+
+R 67   *	*	6941	5117	*	*	7152	5905	2472	5652	6776	*	5818	4030	2880	3464	1461	4562	*	5707	67
+       0	*	*	*	*	*	*	5834	0	0	
+
+L 68   *	*	*	*	3326	*	*	4892	*	502	5748	*	*	*	*	5652	5528	3319	*	*	68
+       16	*	6521	*	*	*	*	5834	0	0	
+
+S 69   2266	*	4145	3830	*	5873	5617	*	2275	6614	6001	5604	3097	4379	3859	4359	4926	4640	*	5695	69
+       45	6910	5485	0	*	*	0	5813	1000	1030	
+
+E 70   3244	*	3136	2148	6808	5854	5775	7026	3084	4966	*	5184	2964	5165	4586	3462	5182	6722	*	*	70
+       17	*	6453	*	*	*	0	5714	0	1144	
+
+D 71   6007	*	3067	2880	*	1108	6102	*	6178	6420	*	4442	4122	*	5828	4315	5070	5372	*	*	71
+       0	*	*	*	*	0	*	5694	0	1198	
+
+D 72   5866	*	2661	3400	6211	4440	4122	4799	4278	5736	*	4792	7022	2509	6750	5358	7216	4109	*	2405	72
+       9	7325	*	1000	1000	*	*	5558	1000	0	
+
+D 73   4658	*	2846	3941	5636	*	4747	5092	2366	7045	*	4497	5547	4715	4125	2430	3478	4983	*	*	73
+       636	*	1488	*	*	*	*	5508	0	0	
+
+A 74   528	*	4287	*	*	*	*	2602	*	3887	*	*	*	*	*	*	5451	*	*	*	74
+       0	*	*	*	*	0	*	4787	0	2032	
+
+Q 75   *	*	5786	3354	4895	*	*	1323	5455	1976	4292	*	*	6147	4668	4185	*	6129	*	*	75
+       0	*	*	*	*	*	*	4952	0	0	
+
+E 76   4372	*	1276	2086	*	*	*	*	4291	*	*	4931	3400	5857	4902	5786	4980	5373	*	*	76
+       0	*	*	*	*	*	*	4952	0	0	
+
+V 77   4406	*	*	*	3228	*	*	1747	*	2651	*	*	*	*	*	5373	4958	1981	*	3657	77
+       48	4929	*	0	*	*	*	4952	1007	0	
+
+A 78   564	*	*	*	4172	3760	*	*	*	3165	*	*	5076	*	*	*	5086	*	*	5402	78
+       44	*	5045	*	*	*	*	4420	0	0	
+
+S 79   4227	*	*	4843	*	5252	*	*	4851	4771	3543	2114	*	*	*	1808	2473	4969	*	*	79
+       0	*	*	0	*	0	*	4193	1022	1022	
+
+R 80   4584	*	*	3756	*	*	*	*	1116	*	*	*	*	3484	1752	4771	*	*	*	*	80
+       0	*	*	*	*	*	*	4126	0	0	
+
+I 81   3618	*	*	*	*	*	*	1540	*	1132	3544	*	*	*	*	*	*	4942	*	*	81
+       0	*	*	*	*	*	*	4055	0	0	
+
+G 82   *	*	*	*	*	196	*	*	4595	*	*	4458	*	*	*	4648	*	*	*	*	82
+       0	*	*	*	*	*	*	3995	0	0	
+
+V 83   3789	*	*	*	3142	*	*	1359	*	2391	4653	*	*	*	4648	*	*	3167	*	4541	83
+       0	*	*	*	*	*	*	3995	0	0	
+
+F 84   4814	*	*	*	2245	*	*	1275	*	2506	3680	*	*	*	*	*	*	3535	*	*	84
+       0	*	*	0	*	*	*	3919	0	0	
+
+//
+�HHsearch 1.5
+NAME  93a4e2eb4447ccb72cf9476930f1f5df
+FAM   
+FILE  93a4e2eb4447ccb72cf9476930f1f5df
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:33:27 2013
+LENG  148 match states, 148 columns in multiple alignment
+FILT  106 out of 1062 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  10.3
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CHHHHHHHHHHHHCCCCCCCCCHHHHHHHHHHCCCCCCHHHHHHHHHHHHCCCCCCCCCHHHHHHHHHHHHHHHHCCCCCHHHHHHHHHHHHCCCCCCCC
+CHHHHHHHHHHHCCCCCHHHHHHHHHHHCCCCCCEECHHHHHHHHHCC
+>ss_conf PSIPRED confidence values
+9899999999997779999486999999999807888899999999998287889954799999999988654300231269999999998676899958
+799999999983799999999999998577899818099999998649
+>Consensus
+xxxxxxxxxFxxxDxxxxgxixxxexxxxlxxxxxxxxxxxxxxlxxxxxdxxxxxxixxxefxxxxxxxxxxxxxxxxxxxxxxxxxfxxxDxxxxgxI
+xxxelxxxxxxxxxxxxxxxxxxxxxxxxxxxxgxixxxefxxxlxxx
+>93a4e2eb4447ccb72cf9476930f1f5df
+SATRANKDIFTLFDKKGQGAIAKDSLGDYLRAIGYNPTNQLVQDIINADSSLRDASSLTLDQITGLIEVNEKELDATTKAKTEDFVKAFQVFDKESTGKV
+SVGDLRYMLTGLGEKLTDAEVDELLKGVEVDSNGEIDYKKFIEDVLRQ
+>gi|335293094|ref|XP_001928795.2| PREDICTED: EF-hand domain-containing protein 1 [Sus scrofa]
+------------------------------------RRDTPALELDS-PQGRPKPrkGPKGVGGQ-----------------------------------
+--------------------------------------------------
+>gi|255084932|ref|XP_002504897.1| predicted protein [Micromonas sp. RCC299]gi|226520166|gb|ACO66155.1| predicted protein [Micromonas sp. RCC299]
+--SEALRVVFHALDGDDSGSIEIEEVLHLATGMCQTMSEDDARAWFQ-EMDKDGDATVDEAEYLEAMLKLTDDLSpqqfehrvkdllartnkevtdprwy
+yhcennreyleaevvpllesglnemmraieaerlrvasgkdwdedghvppdwrpmrplqflgeylrensrtmvrkreeearlaaeaaakaeylnrtFDEM
+DREQKLRYSFDKIDGDGNGALDFDELVFVCRKINPGKGVEEARMQLSWMDKDGDGQVDQDEYVNAILE-
+>gi|74189848|dbj|BAE24569.1| unnamed protein product [Mus musculus]
+--IAASTNRGKDLIGVQNLLKKHQALQAEIAGHEPRIkavt-----------------------------------------------------------
+----------------------------------------------------
+>gi|270012781|gb|EFA09229.1| stem cell tumour protein [Tribolium castaneum]
+-LRDQWRQFFDKYDPEGFGEIPWGDLISAMSDPEFrhRVGTGKREILLE-KARSATTPAITFQDFVNVMTGK----------------------------
+--------------------------------------------------
+>gi|340500330|gb|EGR27218.1| protein kinase domain protein [Ichthyophthirius multifiliis]
+-----INSYLDDNNNNNTinkDFINEDQFYQLLLSIDNRIAKDDSNYLFQ-NIihqlqseqtitssNNQNEKQISIQLFKMILNEQ-------NYIEIEQ
+ktiqifnslkgifkhknfdLNFIYSNYNDESKEILNQQKFQQILKILNIDLQKYEINCVFEIFDKKKNGIVTYQQFYQILNEL
+>gi|281202106|gb|EFA76311.1| phosphoinositide-specific phospholipase C [Polysphondylium pallidum PN500]
+SLDNEMGFVMREFNSFGKDSLNRDEIKKLLERLNYTTSSEMLARMMA-MVDRNDDCNLDFVEFSDLLK---------YLRSRPEIKMIFERYSSDSAQHL
+TIPQMIRFFKEEQqEDWKESDCIALITKYNHEELPHILFEQLEDYIVSD
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+S 1    3510	*	3490	1637	*	4260	*	*	*	*	*	*	4190	3354	*	2031	4255	*	*	*	1
+       0	*	*	*	*	*	*	7021	0	0	
+
+A 2    2946	*	4219	2307	5681	*	4106	5190	4069	5070	*	5118	*	2041	3049	5184	*	*	*	*	2
+       0	*	*	*	*	*	*	8538	0	0	
+
+T 3    4803	*	5682	3351	5616	5758	*	2285	4232	2303	4690	4811	4710	4723	6620	4524	5525	3287	5747	*	3
+       0	*	*	*	*	*	*	9520	0	0	
+
+R 4    3224	*	4562	3011	*	6096	6025	4980	2864	4951	*	3994	6129	3887	2581	2554	6251	*	*	*	4
+       0	*	*	*	*	*	*	9951	0	0	
+
+A 5    4079	5439	3468	2230	*	*	4932	5007	3636	5133	6064	6180	*	3634	2591	4520	4321	5240	*	4439	5
+       0	*	*	*	*	*	*	9980	0	0	
+
+N 6    3721	5425	*	*	2488	*	*	2371	5322	1805	5461	6065	*	*	*	6815	4954	3445	4647	7020	6
+       39	5242	*	938	1065	*	*	10388	1260	0	
+
+K 7    3885	7022	*	3582	4760	5621	4564	4440	2663	4202	6255	5519	6602	3193	2524	4030	5725	5826	6224	4513	7
+       0	*	*	0	*	*	*	10475	1005	0	
+
+D 8    4210	6374	2802	2969	5123	6778	5588	5392	2809	5437	4783	4288	6011	3679	3142	4011	5049	5156	*	*	8
+       25	*	5892	*	*	*	*	10531	0	0	
+
+I 9    2856	4987	5683	4733	4891	7193	6358	2321	5448	3346	3975	6684	*	4635	4264	5574	4681	2820	5519	6614	9
+       0	*	*	*	*	*	0	10539	0	1106	
+
+F 10   6584	4680	*	*	561	6970	*	5174	*	3756	5771	*	*	*	*	6521	*	6000	5412	3402	10
+       18	6298	*	0	*	0	*	10539	1020	1106	
+
+T 11   3488	6676	4101	4045	6440	4537	6361	6644	2849	4340	4853	2910	*	3836	3326	3680	5336	5066	*	4399	11
+       12	*	6926	2585	263	*	*	10620	1000	0	
+
+L 12   3489	5569	4601	3251	4883	6647	4874	4120	2999	2822	3652	4281	*	4307	5067	5811	6503	4313	*	4289	12
+       13	6833	*	0	*	0	*	10618	1000	1000	
+
+F 13   4243	5478	6472	*	1921	*	5602	4204	6791	2169	4566	6655	*	5516	6788	6836	5331	4022	6410	2707	13
+       60	6393	5112	2807	222	*	*	10634	1000	0	
+
+D 14   4298	6452	652	4504	*	5184	6524	6972	4681	*	*	3812	7212	6528	5079	4954	*	5557	*	*	14
+       13	6855	*	3700	115	0	*	10602	1000	1470	
+
+K 15   3841	6613	4158	3616	5568	7038	*	5708	2624	4256	*	4964	3836	4907	3280	3161	3519	4143	6069	6482	15
+       16	*	6466	*	*	*	*	10657	0	0	
+
+K 16   5138	6802	1587	2798	6828	3668	6341	6639	4884	5423	6844	2841	5831	5526	6055	4052	4681	5864	*	*	16
+       85	5625	4748	2075	391	0	*	10633	1190	1042	
+
+G 17   5414	*	4352	4886	5408	2317	3598	6625	2393	4963	6380	3632	4298	3601	5148	4554	5471	*	5622	6067	17
+       31	5556	*	1530	613	882	1128	10611	1477	1645	
+
+Q 18   *	6418	2233	4642	*	4916	*	5462	3121	5189	6536	2940	*	5033	5371	2669	2810	4585	*	*	18
+       54	5346	6333	832	1190	0	*	10662	1316	1179	
+
+G 19   6731	5582	3857	4659	*	822	5105	*	5599	7042	5834	3535	*	5438	5389	4548	5867	5885	*	6541	19
+       65	5008	6295	786	1251	*	0	10647	1466	1023	
+
+A 20   6319	6631	6787	3613	3987	4276	4245	4133	3282	4775	4413	4417	6542	6010	2948	5195	3503	3853	6648	3669	20
+       0	*	*	*	*	0	*	10624	0	1285	
+
+I 21   5137	*	*	*	4751	*	*	1581	7048	1650	3405	*	7349	*	*	*	6524	2619	*	*	21
+       0	*	*	*	*	*	*	10688	0	0	
+
+A 22   4983	5587	2582	4343	*	5066	*	*	7048	5855	*	2906	3980	4759	5136	1969	2953	6893	*	5537	22
+       15	6590	*	1000	1000	*	*	10688	1001	0	
+
+K 23   4723	5384	6559	4380	3402	4102	5487	2962	3200	3614	4873	*	4135	4151	3925	4405	5152	4257	6874	4787	23
+       0	*	*	*	*	*	*	10688	0	0	
+
+D 24   3600	*	2893	2747	4658	*	5406	5651	3068	5521	*	3558	4522	3529	5046	3719	4837	5704	*	4862	24
+       0	*	*	*	*	*	*	10688	0	0	
+
+S 25   5803	*	2858	1312	*	5776	5480	*	4470	5997	*	3864	*	2735	6766	4606	4040	6633	*	*	25
+       17	*	6437	*	*	*	*	10688	0	0	
+
+L 26   5079	5558	*	*	1433	*	*	3420	*	1652	4051	*	*	*	*	*	*	3722	*	5002	26
+       38	6073	6505	1000	1000	0	*	10681	1106	1028	
+
+G 27   4223	4267	5738	4683	5670	4506	5071	4576	3061	3251	6545	6230	5066	3209	2705	4813	5644	4145	*	4343	27
+       28	5693	*	1000	1000	*	0	10668	1243	1025	
+
+D 28   3571	6173	4331	2584	5468	6757	6719	5599	3418	4077	5160	3222	*	4036	4171	3117	5703	4511	*	4615	28
+       54	6387	5341	3322	152	*	0	10668	1011	1025	
+
+Y 29   2888	4845	*	7035	2915	4164	*	2794	*	2193	4977	*	*	*	4126	6743	4332	3897	5453	4911	29
+       25	5868	*	0	*	415	2001	10626	1421	1675	
+
+L 30   4288	6658	*	*	3529	*	6447	3188	6420	1199	4134	*	6557	6092	5567	5773	5729	3519	7042	4364	30
+       106	4616	5063	612	1532	0	*	10677	1868	1003	
+
+R 31   4214	5685	4139	3620	*	4053	6399	5413	3537	3535	6284	4197	5013	3379	2622	4239	5119	5548	4656	5575	31
+       27	6730	6746	0	*	*	0	10631	1000	1453	
+
+A 32   2628	5235	4484	3047	5113	4540	6754	4806	4008	3696	6384	4727	*	4017	3891	3100	5313	5164	*	4602	32
+       124	3602	*	1338	726	*	0	10621	2509	1651	
+
+I 33   4526	5853	*	6826	3895	6682	4725	3306	6899	1605	3915	4609	5387	6798	4627	4337	4968	4074	6092	4592	33
+       218	3186	5043	1359	713	923	1082	10621	2933	1651	
+
+G 34   5556	6050	3710	4632	5206	1396	5513	6797	4537	4385	5065	3031	*	6327	4699	4081	4543	6293	*	*	34
+       95	4489	5682	3993	94	1276	768	10604	1656	1825	
+
+Y 35   3732	4569	3924	6736	3209	6485	5050	3834	4251	2535	6795	5076	4773	4131	4750	5743	*	3496	6791	3700	35
+       79	4983	5508	1254	784	752	1300	10608	1423	1785	
+
+N 36   4619	*	3100	3840	5612	4897	5012	4470	3369	4975	*	2973	4115	4611	3688	3772	4067	4566	6355	5423	36
+       26	5814	*	2015	410	774	1268	10535	1409	1818	
+
+P 37   4048	6622	4043	5959	4603	5031	*	3474	5012	2434	4573	4890	2382	7093	6000	4675	5122	3699	6897	5008	37
+       46	4990	*	4261	77	996	1004	10651	1662	1218	
+
+T 38   3992	6427	3583	4940	4739	5828	*	6529	3495	4249	6561	3896	4265	*	5933	1780	2845	5280	*	*	38
+       25	5852	*	0	*	*	0	10650	1157	1000	
+
+N 39   6999	6906	3114	2520	6836	*	6702	4377	2788	4077	5562	3040	4434	4165	4441	4760	4320	5688	*	5248	39
+       62	5572	5574	2247	341	*	0	10650	1216	1000	
+
+Q 40   3653	*	2893	2454	4608	7487	6056	6759	3791	4252	6651	6831	3500	3479	4784	2946	5142	*	6619	7253	40
+       13	*	6830	*	*	1804	487	10614	0	1443	
+
+L 41   4168	*	2755	2163	4128	*	*	4922	4838	3484	4262	4771	7178	3077	4999	4861	5608	5024	6568	5897	41
+       13	*	6827	*	*	*	0	10614	0	1456	
+
+V 42   2721	5032	*	*	4440	6394	*	2081	*	2225	*	*	*	6032	*	4484	4208	2617	6367	5610	42
+       18	6335	*	1000	1000	2107	381	10591	1005	1654	
+
+Q 43   3633	*	4053	2715	5016	6745	5177	4416	3360	4324	5764	3249	5559	3132	4363	4010	6544	4678	7064	5799	43
+       55	5051	7078	4478	66	931	1073	10586	1473	1676	
+
+D 44   2737	6506	3630	3315	5713	5612	*	4416	3040	4581	*	3729	*	3679	4172	3837	4917	4156	6545	5101	44
+       13	6806	*	3459	138	1405	684	10622	1000	1381	
+
+I 45   4049	4828	*	5214	5585	*	6594	2375	5625	1445	3782	6429	*	*	*	*	5475	2927	*	5167	45
+       25	6437	7505	3907	100	*	0	10638	1021	1154	
+
+I 46   6517	4685	5916	5054	1893	*	*	3351	4990	2472	3541	*	6988	5264	5607	5458	5648	3892	6347	4013	46
+       0	*	*	0	*	1410	681	10629	1003	1380	
+
+N 47   3455	*	3926	4707	6594	4907	4188	5502	3488	4272	5686	3234	*	3821	2702	2800	4719	*	6437	*	47
+       4356	*	72	*	*	*	0	10638	0	1154	
+
+A 48   2037	*	*	*	*	2017	*	*	*	1954	*	*	1993	*	*	*	*	*	*	*	48
+       0	*	*	*	*	144	3394	3025	0	10093	
+
+D 49   3280	5894	4753	3429	4277	4728	5347	4190	3711	2716	4540	6634	7118	3971	3557	4636	5122	4847	6656	5037	49
+       29	6775	6524	1000	1000	1538	609	10500	1000	2712	
+
+S 50   3390	3488	*	6530	3036	6468	6410	3128	*	2667	4286	6381	5590	7142	6003	5353	5626	3050	*	3112	50
+       131	4400	4669	2797	224	1024	976	10548	1728	2292	
+
+S 51   5594	*	1175	3734	*	3827	*	6707	4739	6009	*	4064	6515	4595	4283	3330	5076	5401	*	6379	51
+       146	4124	4675	4503	65	1357	714	10557	1910	2396	
+
+L 52   5266	5201	4999	3950	*	4475	4267	4121	2966	3995	*	5263	3720	4094	3782	4194	3159	3888	*	4700	52
+       49	6357	5560	0	*	1749	509	10557	1206	2533	
+
+R 53   6336	*	2316	2949	6346	4165	6444	6318	3860	4899	*	2577	5681	4367	4711	3741	4184	4691	*	5596	53
+       25	7046	6708	428	1963	1031	970	10654	1437	2436	
+
+D 54   4343	4769	4197	4034	*	2536	4484	6367	3178	5086	*	3700	4117	4033	3210	3404	5492	6817	*	*	54
+       91	5202	4873	3150	172	2237	344	10584	1384	1850	
+
+A 55   3847	6458	2239	3179	*	3981	6443	5090	3994	*	*	2432	7100	4823	5512	3601	4282	5376	*	5495	55
+       11	7100	*	1000	1000	216	2847	10539	1087	2301	
+
+S 56   5128	5798	2955	3826	6391	1755	6552	7005	4322	4819	*	3110	5456	4739	3970	4646	5109	6437	*	5527	56
+       94	4854	5142	2396	304	0	*	10633	1537	1000	
+
+S 57   5625	5418	*	5784	4542	3892	4045	4610	2583	3792	5253	3467	5788	5568	3200	3853	3586	4082	*	6478	57
+       0	*	*	*	*	0	*	10603	0	1615	
+
+L 58   4657	6440	6076	*	4333	*	*	1692	7213	1880	3985	*	5539	*	*	*	6447	2448	*	5871	58
+       0	*	*	*	*	*	*	10648	0	0	
+
+T 59   6890	*	1920	4375	*	4154	*	*	4958	4715	*	3265	5038	5336	*	2174	2786	6150	*	6280	59
+       0	*	*	*	*	*	*	10648	0	0	
+
+L 60   5038	*	6985	5319	1841	*	*	4892	4133	2073	6879	*	5303	6532	5043	*	6551	5044	5109	2440	60
+       0	*	*	*	*	*	*	10654	0	0	
+
+D 61   4668	5830	3467	2022	*	5338	5088	6690	3261	*	6419	3806	5306	3519	4243	3397	4434	5047	*	5774	61
+       0	*	*	*	*	*	*	10654	0	0	
+
+Q 62   4914	6073	2644	1368	7288	6360	5770	*	4513	5711	*	3984	5529	3231	5721	5576	4543	5600	*	6654	62
+       0	*	*	*	*	*	*	10654	0	0	
+
+I 63   6993	6442	*	*	915	6090	*	3848	*	2802	5104	*	*	7213	*	*	6540	4872	4432	3383	63
+       12	6872	*	2000	415	*	*	10654	1000	0	
+
+T 64   4343	5086	*	3595	5561	6496	6757	2613	4449	2135	4938	5366	*	5949	4529	4534	4996	2929	6612	5175	64
+       17	6386	*	1000	1000	*	*	10630	1037	0	
+
+G 65   3166	5618	3268	3544	5273	5004	*	5201	3311	4533	5073	4226	4590	4323	3118	3957	4589	4513	*	6511	65
+       0	*	*	*	*	*	*	10630	0	0	
+
+L 66   2860	5052	6283	5310	2987	5831	6498	3754	5838	2039	4744	5448	*	4931	*	4248	4992	4770	6770	3618	66
+       7	*	7717	*	*	*	*	10630	0	0	
+
+I 67   4349	5190	*	6606	3912	4914	*	2959	7263	2104	3817	6509	6421	6595	*	6511	4346	2368	6737	3666	67
+       30	5617	*	6160	20	*	0	10571	1211	1024	
+
+E 68   3580	4316	5413	3547	5513	4979	4592	4207	3272	3748	5710	4131	7280	4191	3798	3442	3802	4672	*	5803	68
+       56	*	4728	*	*	*	0	10624	0	1024	
+
+V 69   3459	*	5324	3535	5116	4130	5198	4317	3442	3599	6899	5055	3972	4301	3904	3786	4254	3765	6595	4993	69
+       39	6670	5868	4392	70	*	0	10560	1000	1942	
+
+N 70   4086	6606	4925	4534	3478	5966	4399	3037	3726	2409	4976	5341	6425	4776	5774	4592	4959	4021	5173	5054	70
+       116	6290	3957	0	*	*	0	10539	1037	2325	
+
+E 71   4153	4087	4651	3866	3914	4437	6433	4002	4444	2395	4376	6452	6840	4077	4148	5525	4134	4464	6488	4841	71
+       322	6497	2403	2322	322	*	0	10575	1000	3415	
+
+K 72   *	6141	3901	3505	*	4375	4086	6115	2485	5192	*	4445	4767	3456	3501	3026	4017	6081	6189	5151	72
+       769	4992	1389	4700	57	5011	45	10328	1219	5808	
+
+E 73   3158	*	4431	2757	5436	*	4510	4613	3850	3811	5814	5571	5245	*	4346	2344	4411	4616	*	4440	73
+       679	*	1413	*	*	*	0	9146	0	8255	
+
+L 74   3176	*	*	3143	*	4582	4742	4871	4641	3274	3569	2806	*	*	*	3125	3849	3734	*	4927	74
+       284	3836	3201	1825	479	*	0	8121	1231	9141	
+
+D 75   3704	*	3643	2856	*	3734	*	3625	2618	3584	*	4447	3464	*	2970	*	4698	*	*	*	75
+       2570	266	*	4441	68	4640	59	7593	4890	9291	
+
+A 76   4795	*	3785	2772	*	4965	*	3575	*	3651	*	*	3829	3822	3024	3859	3195	4929	*	3745	76
+       105	3826	*	3008	191	3020	190	8140	1231	9151	
+
+T 77   4182	*	3462	2469	*	3553	*	5160	4281	3543	*	5082	*	4815	3041	3781	3580	5343	*	4168	77
+       86	4105	*	2059	396	425	1971	8678	1237	8682	
+
+T 78   4350	6322	3350	3284	5566	4911	5024	6447	3662	4018	6352	2744	4162	5472	3384	3700	4254	6596	*	5315	78
+       0	*	*	*	*	3914	99	10350	0	3905	
+
+K 79   4348	6467	3918	3685	4860	4636	4627	4353	3377	3319	5250	4863	3169	4914	4461	3907	4760	6380	*	3854	79
+       31	5563	*	2124	376	1239	795	10367	1393	3729	
+
+A 80   3795	*	2688	3930	6977	5463	4575	4077	4352	4282	5484	4959	3481	6332	4525	3170	3728	4264	6354	5369	80
+       13	6799	*	2000	415	*	0	10599	1000	2770	
+
+K 81   4223	*	3620	4552	5338	4323	6370	4667	3285	3686	4942	3884	3381	4339	4594	3830	3795	3774	6207	*	81
+       16	*	6500	*	*	1167	851	10599	0	2770	
+
+T 82   3836	*	3472	3274	4915	6181	6828	3679	3167	3155	*	4823	4474	5732	3628	4426	4512	3838	*	4689	82
+       29	5647	*	2740	234	1527	615	10651	1194	2128	
+
+E 83   3178	*	2769	1937	*	5636	5626	4113	4401	4707	5937	6845	5667	4736	4078	3608	4482	5075	*	*	83
+       0	*	*	*	*	*	0	10760	0	1677	
+
+D 84   4191	6537	3689	2704	5161	6476	6601	3687	3068	3757	6384	4792	*	3828	3278	4001	5669	4198	6588	6090	84
+       53	4784	*	3897	100	400	2046	10760	1566	1677	
+
+F 85   3472	6357	*	*	3307	6714	*	2180	*	1877	5037	*	6654	*	5221	6671	5011	2884	5546	5096	85
+       0	*	*	*	*	*	0	10763	0	1000	
+
+V 86   4420	*	3874	3472	6709	5588	4406	3927	2779	3617	*	4360	6684	3016	3545	4074	4558	5440	6660	5505	86
+       35	5916	7036	3461	137	*	0	10763	1176	1000	
+
+K 87   3977	6681	4286	3231	4668	4534	6542	5075	2872	4211	5184	3802	*	3474	3896	4321	4274	4577	5683	4793	87
+       13	*	6751	0	*	1047	955	10844	1000	1206	
+
+A 88   1808	6648	*	6478	3796	*	4556	2990	5482	2761	4477	*	*	6492	4839	4957	4752	3028	*	*	88
+       17	6452	*	0	*	953	1049	10810	1000	1205	
+
+F 89   *	4334	*	6423	923	*	*	5035	*	2861	6390	7815	6421	*	*	*	*	*	5111	2425	89
+       14	6712	*	5615	30	0	*	10772	1000	1000	
+
+Q 90   3396	*	2948	3721	*	5729	4454	*	2841	4499	5636	3776	*	3992	2987	3660	5496	4681	6933	5583	90
+       0	*	*	*	*	*	*	10780	0	0	
+
+V 91   2895	6784	3920	3874	4990	*	6425	3289	3923	3208	5828	4401	*	3693	5095	3616	5835	3329	6795	5406	91
+       0	*	*	*	*	*	*	10780	0	0	
+
+F 92   5108	4650	6460	*	1831	*	4749	3130	6621	2442	4047	7816	*	5288	5637	6455	5738	4465	6419	3392	92
+       55	5565	5912	2113	379	*	*	10780	1233	0	
+
+D 93   4526	6695	650	6392	*	4390	6563	6998	6523	6551	*	4197	*	5479	*	4420	4746	4343	*	*	93
+       24	*	5893	*	*	984	1017	10836	0	1160	
+
+K 94   4642	*	4343	3418	6545	4231	6508	4956	3069	3981	5631	5893	4237	4012	3775	3132	2960	4328	*	6652	94
+       70	*	4391	*	*	568	1619	10761	0	1367	
+
+E 95   4855	6513	1778	2874	*	4576	4509	6601	3636	6449	*	2530	6645	5459	5015	3549	5942	*	*	*	95
+       59	4977	6950	4358	72	0	*	10614	1527	2017	
+
+S 96   4920	6519	3878	4909	*	2300	4096	5859	2836	*	5713	3415	6481	3556	3187	3390	6577	6458	*	*	96
+       34	5415	*	2483	284	0	*	10680	1256	1000	
+
+T 97   4390	5045	2100	3927	5525	4987	*	*	3347	4706	6626	3455	6924	5121	4446	2855	3506	5456	*	*	97
+       22	*	6041	*	*	*	*	10780	0	0	
+
+G 98   6590	4806	4033	4391	*	921	4906	*	5819	5420	*	3663	7014	5012	5445	4430	5041	6033	*	6683	98
+       52	6766	5266	1000	1000	903	1104	10769	1000	1191	
+
+K 99   4762	4436	5777	4557	3239	*	4217	4615	3384	3656	5594	4037	4652	4203	5080	3838	4345	3818	6328	3779	99
+       41	5148	*	0	*	714	1357	10629	1458	1783	
+
+V 100  6693	*	*	*	6549	*	*	1294	6646	1739	5006	*	6088	*	*	*	*	2208	*	*	100
+       0	*	*	*	*	0	*	10664	0	1177	
+
+S 101  *	5685	2539	3901	6564	4097	5669	6748	5118	5212	*	3665	4215	6831	*	2283	2253	5009	*	*	101
+       0	*	*	*	*	*	*	10780	0	0	
+
+V 102  4341	6643	6924	4152	3247	6621	4806	3191	3905	3069	4888	*	4350	4121	4340	4649	5703	2960	6798	4531	102
+       12	6966	*	4755	54	*	*	10780	1000	0	
+
+G 103  3604	*	2613	2072	6781	4616	6095	5666	4257	5508	7023	4075	5257	3517	4959	3472	4469	*	*	6635	103
+       15	6572	*	6190	20	*	*	10666	1000	0	
+
+D 104  6810	*	2088	1403	*	6762	5175	5480	4161	*	*	4747	*	2962	*	5913	4038	6671	*	6685	104
+       0	*	*	*	*	*	*	10666	0	0	
+
+L 105  6095	*	*	*	1949	*	7848	3528	*	1112	4154	*	*	*	6737	*	*	4066	5602	5225	105
+       40	5737	6871	3341	150	*	*	10666	1195	0	
+
+R 106  4805	4245	5173	3465	6825	*	5573	3453	2470	4119	4552	5038	6326	3978	2768	4296	5882	4282	*	5725	106
+       11	*	6980	*	*	*	0	10835	0	1000	
+
+Y 107  4194	5475	3268	3448	*	5589	4255	6780	2875	4236	6842	4150	6016	3316	3900	3543	4067	6424	5500	5124	107
+       0	*	*	*	*	*	0	10833	0	1192	
+
+M 108  2822	5468	5517	*	3075	4779	6676	3151	6359	2497	3290	*	*	6867	6528	*	5645	2885	5689	4291	108
+       28	5683	*	1263	778	907	1099	10633	1297	1192	
+
+L 109  4671	4490	*	5239	2672	5249	6418	3139	*	1709	3074	*	6339	5492	*	5167	6843	3696	*	6888	109
+       108	4673	4931	2214	350	*	0	10653	1578	1000	
+
+T 110  5189	5630	3474	5021	6287	4507	5609	5132	2006	6285	5721	4438	6008	3762	2896	3911	3887	6583	5601	6617	110
+       44	6287	5845	2322	322	892	1117	10539	1058	1665	
+
+G 111  3725	6416	4534	3156	*	4810	5761	4051	3600	3950	6505	4208	6356	4285	3438	3455	3107	5210	*	4621	111
+       45	5011	*	580	1596	1127	883	10546	1584	1643	
+
+L 112  3127	4843	6733	5431	2831	5735	5774	3042	*	2364	3869	4985	6680	5581	*	4184	4560	3869	*	5142	112
+       261	2910	4950	928	1075	568	1619	10403	3133	1453	
+
+G 113  3238	5422	4928	4420	*	1503	5544	6299	4234	5052	4318	3891	4510	4463	4130	4429	*	*	*	6583	113
+       193	3638	4473	1130	881	425	1972	10371	2275	1635	
+
+E 114  5388	5584	3479	2885	4250	6634	4426	3246	4954	3225	4434	4900	3585	*	4473	4427	6301	4750	6403	4055	114
+       53	5572	6038	2330	320	*	0	10374	1188	1845	
+
+K 115  4867	*	3295	4747	6260	3076	4776	4348	3085	5047	5056	4170	3640	4355	4685	3359	4031	5411	*	5285	115
+       158	3418	6589	1637	560	781	1259	10365	2435	2215	
+
+L 116  6575	*	6686	*	3713	5313	6811	2719	6155	1842	4222	4903	3526	*	4438	5320	3917	3281	6558	*	116
+       76	5557	5060	1749	509	421	1982	10406	1183	1591	
+
+T 117  4146	6721	2854	5586	5466	5637	*	5519	5592	5328	5356	3370	4153	3838	4399	2614	2410	5762	*	*	117
+       49	5407	6666	2802	223	*	0	10332	1224	1551	
+
+D 118  4036	5316	2804	2403	6725	5571	6786	*	3146	4708	*	4811	3250	4862	6306	3911	4133	4411	*	4936	118
+       18	6359	*	1585	585	2310	325	10322	1022	1739	
+
+A 119  3034	*	3192	2274	5431	5361	6328	5737	3659	4819	6547	4183	*	4431	3532	3697	6357	6659	6313	4105	119
+       0	*	*	0	*	327	2303	10311	1022	1785	
+
+E 120  3918	*	2497	1894	*	4489	6170	4296	5177	3918	*	5698	*	4330	4042	4867	4399	4533	5853	6317	120
+       31	5561	*	2912	206	*	0	10423	1211	1000	
+
+V 121  3078	4536	*	5383	3538	5112	6530	2331	6455	2533	5507	*	*	6245	6225	5551	4541	2623	6565	5648	121
+       15	6577	*	2000	415	*	0	10423	1000	1000	
+
+D 122  3914	6538	3007	2572	4915	6510	5158	4850	3727	4497	6658	3404	5853	3950	3430	4804	4409	5039	*	6458	122
+       29	*	5635	*	*	*	0	10423	0	1000	
+
+E 123  3141	6640	3735	2987	5252	4793	4477	4207	3351	4188	*	4460	5898	4835	3902	3851	4458	5247	6818	4409	123
+       0	*	*	0	*	1596	580	10382	1000	1398	
+
+L 124  3964	5353	*	5478	2993	*	*	2443	6255	1831	2902	*	*	*	*	*	6830	3440	5276	5342	124
+       47	5455	6792	2263	337	997	1003	10404	1225	1194	
+
+L 125  5031	3855	*	6150	1846	*	*	2928	5771	2650	3268	5848	*	5532	4396	*	*	4216	5489	4937	125
+       25	5892	*	3170	170	*	0	10386	1090	1233	
+
+K 126  3427	*	4495	3627	*	4207	5665	*	2914	4475	5344	3532	6536	3635	3080	3072	4203	5266	*	6590	126
+       0	*	*	*	*	879	1132	10386	0	1233	
+
+G 127  4215	6263	5146	3660	4274	4711	4488	4037	3340	3346	5602	4473	6151	3479	3915	4032	3923	4299	*	5658	127
+       33	6158	6899	2322	322	*	0	10413	1058	1000	
+
+V 128  2846	*	*	6541	2701	*	5520	2605	*	3778	3808	5412	*	*	6632	6567	5075	2836	4868	3086	128
+       117	5454	4188	1585	585	1053	949	10411	1218	1179	
+
+E 129  5603	6349	1365	3825	6850	3269	5571	*	4009	6404	6494	3362	5076	*	4746	4874	4363	5324	*	5787	129
+       68	4436	*	321	2326	506	1756	10327	1607	2070	
+
+V 130  4866	4798	5328	3768	5035	4278	5447	3973	3606	3312	6542	6730	3478	4623	3567	3693	3642	3889	*	5630	130
+       14	6725	*	2322	322	1079	925	10404	1000	1172	
+
+D 131  *	*	2183	3775	6333	4237	5316	6588	3758	*	*	1871	4149	5706	4416	3443	5052	6149	*	*	131
+       127	4024	5450	2191	357	*	0	10392	1918	1206	
+
+S 132  5662	6522	3089	3050	*	3152	5376	6432	3549	5055	5216	3080	3714	3652	4711	3632	6200	4874	*	*	132
+       88	4074	*	1042	960	1928	440	10350	1878	1631	
+
+N 133  5419	6416	1813	4888	*	5472	5676	*	2932	6599	*	3188	4464	3717	5466	3133	4098	5433	*	6171	133
+       0	*	*	*	*	*	0	10368	0	1412	
+
+G 134  4007	*	4666	5323	*	1173	4363	6659	4133	6495	6305	3868	4839	4672	3959	4585	5437	6640	*	6778	134
+       31	*	5558	4170	82	1614	571	10361	1000	1412	
+
+E 135  4923	5922	6391	5328	6133	5534	3578	3623	2483	6587	5225	3981	5538	3872	3638	4070	4387	3598	5830	4156	135
+       85	4124	*	1444	661	981	1019	10360	1853	1607	
+
+I 136  6422	*	*	*	4369	6567	*	1262	*	1963	5022	*	*	*	*	*	*	2218	*	6589	136
+       0	*	*	*	*	1006	994	10395	0	1192	
+
+D 137  6601	*	2704	3929	6802	5860	6374	6389	5452	5043	*	3300	4924	6258	6024	1662	2506	*	*	6341	137
+       0	*	*	*	*	*	0	10406	0	1000	
+
+Y 138  *	*	*	5632	2786	*	6535	3734	4300	2893	6510	6489	6252	5419	3695	6385	*	4229	4419	1664	138
+       0	*	*	*	*	*	0	10410	0	1000	
+
+K 139  4270	6475	2625	1840	5508	*	5451	5334	3887	6472	*	4824	5522	3125	4647	3724	5407	5443	*	6233	139
+       20	6164	*	0	*	*	0	10407	1042	1000	
+
+K 140  4891	*	2480	1362	6126	4208	6510	*	3642	6415	*	5474	*	3438	6140	4429	6392	6541	5880	6401	140
+       16	6509	*	1000	1000	*	0	10389	1000	1000	
+
+F 141  *	6112	*	6317	796	*	6650	4831	*	2521	5521	6155	*	*	*	*	*	5252	4528	3788	141
+       0	*	*	*	*	*	0	10360	0	1000	
+
+I 142  3598	4555	6310	3485	5155	*	6326	3380	4908	2352	4505	6368	*	4995	3307	6098	4394	3160	6694	4839	142
+       0	*	*	*	*	*	0	10308	0	1000	
+
+E 143  3828	*	3033	3786	*	*	5424	6166	2869	3900	5247	3823	5328	3413	3870	3017	5315	5297	6566	5319	143
+       0	*	*	*	*	*	0	10243	0	1000	
+
+D 144  3661	4804	5173	6253	2878	4794	5302	2751	5418	2770	3260	*	*	6242	6160	4841	5398	3979	6487	3975	144
+       0	*	*	*	*	*	0	10185	0	1000	
+
+V 145  4317	6158	*	*	3478	5682	*	2844	*	1221	3127	*	*	*	*	6380	*	3451	6052	5306	145
+       0	*	*	*	*	*	0	10099	0	1000	
+
+L 146  3625	4821	6064	5733	*	4419	5609	4995	2616	2839	5035	3980	*	4342	3171	3313	4461	5977	*	4951	146
+       0	*	*	*	*	0	*	9637	0	1000	
+
+R 147  4864	*	4027	3425	*	4589	5699	*	2563	*	*	3998	4622	3490	2905	2507	4049	*	*	5709	147
+       0	*	*	*	*	*	*	9307	0	0	
+
+Q 148  3810	*	2268	*	*	*	*	*	2782	3891	*	3830	*	2238	2146	*	*	*	*	*	148
+       0	*	*	0	*	*	*	6235	0	0	
+
+//
+�HHsearch 1.5
+NAME  98b5ff80a113b7bb28949a2a5cd20879
+FAM   
+FILE  98b5ff80a113b7bb28949a2a5cd20879
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:35:45 2013
+LENG  121 match states, 121 columns in multiple alignment
+FILT  30 out of 32 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  1.9 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCEECCCCEEEECCCEEEEEECCCCCCCCEEEECCCCCCEEEEEEEECCEECCCEEEEEEECCCCCCCEEEEEEEECCCCCCCCCEEEEEEEE
+CCCEECCCCCEEEEEEEEECC
+>ss_conf PSIPRED confidence values
+9842725550234630130443024761640212425640001563045653000002033266444037610787999742148312289568876796
+498388988616600088639
+>Consensus
+dgtcxntnsqisxnsxcvxstxtnCyidNSQxxxxttCtxSqyxxaxvxxSttTnCxIdNSQvxtTTCTxSqYxgxxitsSTTTxxxIsgxxxxxttCTi
+TxgxxxpxxaCxISgCtlxax
+>98b5ff80a113b7bb28949a2a5cd20879
+DGTCVNTNSQITANSQCVKSTATNCYIDNSQLVDTSICTRSQYSDANVKKSVTTDCNIDKSQVYLTTCTGSQYNGIYIRSSTTTGTSISGPGCSISTCTI
+TRGVATPAAACKISGCSLSAM
+>gi|11181763|gb|AAF86610.1| antifreeze protein isoform 10 precursor [Choristoneura fumiferana]
+DGSCVNTNSQVSENSWCVRSTLTFCNIDNSQL-ESTTCTRSQYNGAYVVSSRTTNCNIRNSQLHTTTCTNSQYDGVYITSSTTTNTRISGPACSISRCTI
+TRGVAAPSAACRISGCTLRA-
+>gi|11225528|gb|AAG33033.1| PR-S/thermal hysteresis protein fusion protein [synthetic construct]
+DGSCTNTNSQLSANSKCEKSTLTNCYVDKS-------------------------------EVYGTTCTGSRFDGVTITTSTSTGSRISGPGCKISTCII
+TGGVPAPSAACKISGCTFSA-
+>gi|57635206|gb|AAW52736.1| antifreeze protein AFP Cr32 [Choristoneura rosaceana]
+---------QISENSRCVNSTANNCYIDNSQV-DTTTCTRSRYINANVMISTTTDCSISNSQVLISTCTNSQFSGIYMTTSTIRDSRISGP---------
+---------------------
+>gi|57635194|gb|AAW52730.1| antifreeze protein AFP Cc5 [Choristoneura conflictana]
+---------QI-TNSRCFKSTATNCYIDNSQL-DTTTCTNSQYNNAYVVISTTTNSIIDYSQVYSTTCTNSHYNGVHITSSTTTNTRITGP---------
+---------------------
+>gi|57635212|gb|AAW52739.1| antifreeze protein AFP Cc9 [Choristoneura conflictana]
+---------HIT-NSECVTSTLTNCNLVNS-------------------------------QVDTTTCTNSEYKDAHISTATTTGTRIA-----------
+---------------------
+>gi|11181765|gb|AAF86611.1| antifreeze protein isoform 501 precursor [Choristoneura fumiferana]
+------------------------CVNTNSQITANSQCVKSTA----------TNCYIDNSQLvDTs-ICTRSQYSDANVKKSVTTDCNIDKSQVYLTTC
+TgsqyngiyirssTTTGTSISGPGCSISTCTI---
+>gi|11181767|gb|AAF86612.1| antifreeze protein isoform 104 precursor [Choristoneura fumiferana]
+------------------------CRNTNSQISANSLCASSTL----------TNCYIDDSQLESTTCTRSQYNGAYVVSSRTTNCNIRNSQVHTTTCTn
+sqyeegvyitssTTTNTRVTGIACSVSSCTI---
+>gi|57635206|gb|AAW52736.1| antifreeze protein AFP Cr32 [Choristoneura rosaceana]
+-------------------------------------------------NSTANNCYIDNSQVDTTTCTRSRYINANVMISTTTDCSISNSQVLISTCT-
+---------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+D 1    *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1443	0	0	
+
+G 2    *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2
+       0	*	*	*	*	*	*	1443	0	0	
+
+T 3    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1612	571	*	*	*	3
+       0	*	*	*	*	*	*	1443	0	0	
+
+C 4    *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	4
+       0	*	*	*	*	*	*	1443	0	0	
+
+V 5    *	*	*	*	*	*	*	*	*	*	*	*	*	*	1625	*	1957	1258	*	*	5
+       0	*	*	*	*	*	*	1443	0	0	
+
+N 6    *	*	*	*	*	*	*	*	3014	*	*	191	*	*	*	*	*	*	*	*	6
+       0	*	*	*	*	*	*	1443	0	0	
+
+T 7    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	7
+       0	*	*	*	*	*	*	1443	0	0	
+
+N 8    *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	8
+       0	*	*	*	*	*	*	1443	0	0	
+
+S 9    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	9
+       0	*	*	*	*	*	*	1443	0	0	
+
+Q 10   *	*	*	*	*	*	4561	*	*	*	*	*	*	228	*	*	*	*	5377	3652	10
+       0	*	*	*	*	*	*	1761	0	0	
+
+I 11   *	*	*	*	*	*	*	240	*	4590	*	*	*	*	*	*	*	3160	*	*	11
+       96	*	3954	*	*	*	*	1761	0	0	
+
+T 12   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	423	1976	*	*	*	12
+       242	*	2697	*	*	0	*	1752	0	1000	
+
+A 13   1514	*	*	2469	*	*	*	*	*	*	*	*	4923	3843	2870	3899	2618	*	*	*	13
+       0	*	*	*	*	0	*	1713	0	1091	
+
+N 14   *	*	*	*	*	*	*	*	*	*	*	93	*	*	*	*	*	*	*	3998	14
+       0	*	*	*	*	*	*	1761	0	0	
+
+S 15   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	15
+       0	*	*	*	*	*	*	1761	0	0	
+
+Q 16   *	*	*	4561	*	*	*	*	3663	3995	*	*	*	1549	1277	*	*	*	4025	*	16
+       0	*	*	*	*	*	*	1761	0	0	
+
+C 17   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	17
+       0	*	*	*	*	*	*	1761	0	0	
+
+V 18   3995	*	*	4590	2796	*	*	*	*	*	*	3946	*	*	*	*	*	542	*	*	18
+       0	*	*	*	*	*	*	1761	0	0	
+
+K 19   *	*	*	*	*	*	*	*	1643	*	*	2841	*	*	1803	2813	3166	*	*	*	19
+       0	*	*	*	*	*	*	1761	0	0	
+
+S 20   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	20
+       0	*	*	*	*	*	*	1761	0	0	
+
+T 21   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	55	4741	*	*	21
+       0	*	*	*	*	*	*	1761	0	0	
+
+A 22   1388	*	*	*	*	*	*	*	*	1177	*	*	4741	*	*	*	*	2855	*	*	22
+       0	*	*	*	*	*	*	1761	0	0	
+
+T 23   *	*	*	*	*	*	*	*	*	*	*	3290	*	*	*	*	156	*	*	*	23
+       0	*	*	*	*	*	*	1761	0	0	
+
+N 24   *	*	*	*	4025	*	*	*	*	*	*	91	*	*	*	*	*	*	*	*	24
+       0	*	*	*	*	*	*	1761	0	0	
+
+C 25   *	101	*	*	*	*	*	*	*	*	*	*	*	*	*	3881	*	*	*	*	25
+       0	*	*	*	*	*	*	2033	0	0	
+
+Y 26   *	*	*	*	*	*	*	*	*	*	*	2544	*	*	3938	*	*	2802	*	690	26
+       0	*	*	*	*	*	*	2033	0	0	
+
+I 27   *	*	*	*	*	*	*	848	*	3131	*	2261	*	*	*	*	*	3040	*	*	27
+       0	*	*	*	*	*	*	2033	0	0	
+
+D 28   *	*	631	*	*	*	*	*	*	*	*	3881	*	*	6005	*	2261	4005	*	*	28
+       0	*	*	*	*	*	*	2033	0	0	
+
+N 29   *	*	4223	*	*	*	*	*	4992	*	*	165	*	*	*	5442	*	*	*	*	29
+       0	*	*	*	*	*	*	2033	0	0	
+
+S 30   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	30
+       330	*	2292	*	*	*	*	2033	0	0	
+
+Q 31   *	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	31
+       0	*	*	*	*	*	0	1976	0	1242	
+
+L 32   *	*	*	*	*	*	*	1993	*	1195	*	*	*	*	*	*	*	1680	*	*	32
+       1521	*	618	*	*	*	0	1976	0	1242	
+
+V 33   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1385	2180	1335	*	*	33
+       0	*	*	*	*	880	1131	1620	0	1559	
+
+D 34   2399	*	1049	1902	*	4072	*	*	*	*	*	*	*	*	*	*	*	*	*	*	34
+       0	*	*	*	*	*	0	1976	0	1242	
+
+T 35   3636	*	4072	*	*	*	*	*	*	*	*	1937	*	*	*	2352	1311	*	*	*	35
+       0	*	*	*	*	*	0	1976	0	1242	
+
+S 36   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1521	618	*	*	*	36
+       0	*	*	*	*	*	0	1976	0	1242	
+
+I 37   *	*	*	*	*	*	*	3517	*	3662	*	*	*	3177	*	*	618	*	3803	*	37
+       0	*	*	*	*	*	0	1976	0	1242	
+
+C 38   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	38
+       0	*	*	*	*	*	0	1976	0	1242	
+
+T 39   3662	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	437	2456	*	*	39
+       0	*	*	*	*	*	0	1976	0	1242	
+
+R 40   *	*	*	*	*	2438	*	*	3177	*	*	2667	*	*	1338	2719	*	*	*	*	40
+       0	*	*	*	*	*	0	1976	0	1242	
+
+S 41   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	41
+       0	*	*	*	*	*	0	1976	0	1242	
+
+Q 42   *	*	*	*	*	*	*	*	*	*	*	*	*	656	3264	*	1937	*	*	*	42
+       0	*	*	*	*	*	0	1976	0	1242	
+
+Y 43   3177	*	*	*	*	*	*	*	*	2731	*	*	*	*	*	*	*	*	*	437	43
+       437	*	1937	*	*	*	0	1976	0	1242	
+
+S 44   *	*	*	*	*	*	*	2952	*	*	*	597	*	*	*	2255	*	*	*	*	44
+       0	*	*	*	*	*	0	1631	0	1397	
+
+D 45   *	*	2970	*	*	1103	*	*	*	*	*	1689	*	*	*	3370	*	*	*	*	45
+       0	*	*	*	*	*	0	1631	0	1397	
+
+A 46   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	46
+       0	*	*	*	*	*	0	1631	0	1397	
+
+N 47   *	*	*	*	*	*	3207	*	*	*	*	731	*	*	*	*	*	*	*	1790	47
+       0	*	*	*	*	*	0	1631	0	1397	
+
+V 48   *	*	*	*	*	*	*	3595	*	*	*	*	*	*	*	*	*	125	*	*	48
+       0	*	*	*	*	*	0	1631	0	1397	
+
+K 49   *	*	*	*	*	*	*	*	2970	*	778	*	*	*	*	*	*	1790	*	*	49
+       0	*	*	*	*	*	0	1631	0	1397	
+
+K 50   *	*	*	*	*	*	*	2205	2100	*	*	3755	*	*	3086	2666	2319	*	*	*	50
+       0	*	*	*	*	*	0	2087	0	1397	
+
+S 51   4203	*	*	*	*	*	*	*	*	*	*	*	*	*	*	218	3540	*	*	*	51
+       0	*	*	*	*	*	0	2087	0	1397	
+
+V 52   *	*	*	*	*	*	*	*	*	*	*	*	*	*	3322	*	343	3163	*	*	52
+       0	*	*	*	*	*	0	2087	0	1397	
+
+T 53   2049	*	*	*	*	*	*	*	*	3981	*	*	*	*	*	*	799	3054	*	*	53
+       0	*	*	*	*	1454	655	2087	0	1397	
+
+T 54   *	*	*	*	*	*	*	*	*	*	*	4023	*	*	*	*	92	*	*	*	54
+       0	*	*	*	*	*	0	2146	0	1242	
+
+D 55   *	*	2741	*	4758	*	*	*	*	*	*	367	*	*	*	*	4714	*	*	*	55
+       0	*	*	*	*	*	0	2146	0	1242	
+
+C 56   *	163	*	*	*	*	*	*	*	*	*	*	*	*	*	3229	*	*	*	*	56
+       0	*	*	*	*	*	0	2146	0	1242	
+
+N 57   *	*	*	*	*	*	*	4146	*	*	*	1321	*	*	*	3328	*	*	*	1172	57
+       0	*	*	*	*	*	0	2146	0	1242	
+
+I 58   *	*	*	*	*	*	*	80	*	*	*	*	*	*	*	*	*	4205	*	*	58
+       0	*	*	*	*	*	0	2146	0	1242	
+
+D 59   *	*	897	*	*	*	*	*	*	*	*	3397	*	*	1897	3328	*	*	*	*	59
+       0	*	*	*	*	*	0	2146	0	1242	
+
+K 60   *	*	4802	*	*	*	*	*	4320	*	*	285	*	*	*	*	4757	*	*	4146	60
+       0	*	*	*	*	*	0	2146	0	1242	
+
+S 61   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	61
+       0	*	*	*	*	0	*	2146	0	1242	
+
+Q 62   *	*	5487	3976	*	*	*	*	*	*	*	*	*	190	*	*	*	*	*	4740	62
+       0	*	*	*	*	*	*	2184	0	0	
+
+V 63   *	*	*	*	*	*	*	4670	*	1864	*	*	*	*	*	*	*	544	*	*	63
+       71	4374	*	0	*	*	*	2184	1026	0	
+
+Y 64   *	*	1583	3379	3824	5048	3972	*	*	3558	*	*	*	*	*	5487	*	*	*	1745	64
+       0	*	*	*	*	*	*	2184	0	0	
+
+L 65   4595	*	3921	*	*	3976	*	3558	*	4653	*	*	*	*	4843	2202	1145	*	*	*	65
+       71	4374	*	0	*	*	*	2184	1026	0	
+
+T 66   *	*	*	*	*	*	*	*	*	*	*	4566	*	*	*	3488	203	*	*	*	66
+       0	*	*	*	*	0	*	2124	0	1026	
+
+T 67   *	*	*	*	*	*	*	4374	*	*	*	*	4740	*	*	*	129	*	*	*	67
+       0	*	*	*	*	*	*	2184	0	0	
+
+C 68   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	68
+       0	*	*	*	*	*	*	2184	0	0	
+
+T 69   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	69
+       0	*	*	*	*	*	*	2184	0	0	
+
+G 70   *	*	*	*	*	2124	*	*	*	*	*	981	*	*	2663	3539	5633	*	*	*	70
+       0	*	*	*	*	*	*	2184	0	0	
+
+S 71   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	71
+       0	*	*	*	*	*	*	2184	0	0	
+
+Q 72   *	*	*	4812	*	*	4524	*	*	*	*	*	*	372	2751	*	*	*	*	*	72
+       0	*	*	*	*	*	*	2184	0	0	
+
+Y 73   *	*	*	*	3044	*	*	*	*	*	*	*	*	*	*	*	*	*	*	186	73
+       55	4730	*	0	*	*	*	2184	1019	0	
+
+N 74   *	*	1937	4730	*	*	*	4383	4812	*	*	1268	*	*	*	2578	4843	*	*	*	74
+       0	*	*	*	*	*	*	2184	0	0	
+
+G 75   *	*	3577	*	*	459	*	*	*	*	*	2833	*	*	*	4364	*	*	*	*	75
+       0	*	*	*	*	*	*	2184	0	0	
+
+I 76   1154	*	*	*	*	*	*	1949	*	*	*	*	*	*	*	*	*	1778	*	*	76
+       0	*	*	*	*	*	*	2184	0	0	
+
+Y 77   *	*	*	*	*	*	2322	*	*	*	*	2008	*	*	4880	*	4783	*	*	1055	77
+       0	*	*	*	*	*	*	2184	0	0	
+
+I 78   *	*	*	*	*	*	*	810	*	*	3558	*	*	*	*	*	*	1537	*	*	78
+       0	*	*	*	*	*	*	2184	0	0	
+
+R 79   *	*	*	*	*	*	*	*	4374	*	2048	*	*	*	4653	4812	887	3412	*	*	79
+       0	*	*	*	*	*	*	2184	0	0	
+
+S 80   *	*	*	*	*	*	*	3041	4374	*	*	*	*	*	*	1300	1237	*	*	*	80
+       0	*	*	*	*	*	*	2184	0	0	
+
+S 81   3837	*	*	*	*	*	*	*	*	*	*	*	*	*	*	268	3329	*	*	*	81
+       0	*	*	*	*	*	*	2184	0	0	
+
+T 82   *	*	*	*	*	*	*	*	*	*	*	*	*	*	4017	*	225	3598	*	*	82
+       0	*	*	*	*	*	*	2184	0	0	
+
+T 83   *	*	*	*	*	*	*	3558	*	*	*	*	*	*	*	4783	186	*	*	*	83
+       0	*	*	*	*	*	*	2184	0	0	
+
+T 84   *	*	*	*	*	*	*	*	*	*	*	*	*	*	3558	*	128	*	*	*	84
+       0	*	*	*	*	*	*	2184	0	0	
+
+G 85   *	*	2466	*	*	1734	*	*	*	*	*	1062	*	*	*	*	4670	*	*	*	85
+       0	*	*	*	*	*	*	2184	0	0	
+
+T 86   *	1507	*	*	*	*	*	*	*	*	*	*	*	*	*	1842	1437	*	*	*	86
+       0	*	*	*	*	*	*	2184	0	0	
+
+S 87   *	*	*	*	*	*	4843	4959	*	*	*	1719	*	*	959	3122	*	*	*	*	87
+       0	*	*	*	*	*	*	2184	0	0	
+
+I 88   5200	*	*	*	*	*	*	97	*	*	*	*	*	*	*	*	*	4730	*	*	88
+       0	*	*	*	*	*	*	2184	0	0	
+
+S 89   4747	*	3593	*	*	*	*	*	*	*	*	4550	*	*	2140	975	3300	*	*	*	89
+       0	*	*	*	*	*	*	2172	0	0	
+
+G 90   *	*	*	*	*	857	*	*	4096	*	*	1711	*	*	*	*	4545	*	*	4608	90
+       0	*	*	*	*	*	*	2183	0	0	
+
+P 91   *	*	*	*	*	*	*	4345	*	*	*	*	991	*	*	1159	*	*	*	*	91
+       0	*	*	*	*	*	*	2183	0	0	
+
+G 92   2862	*	*	*	*	1991	*	*	*	*	*	*	*	893	*	*	*	*	*	3789	92
+       0	*	*	*	*	*	*	2109	0	0	
+
+C 93   *	1362	*	*	*	*	*	*	*	2989	*	*	*	*	*	*	*	1044	*	*	93
+       0	*	*	*	*	*	*	2109	0	0	
+
+S 94   *	*	*	*	3746	*	3337	*	3682	3893	*	*	*	*	*	1964	4189	*	*	1434	94
+       0	*	*	*	*	*	*	2109	0	0	
+
+I 95   *	*	*	*	*	*	*	1398	*	3836	*	*	*	*	3746	3100	1824	3703	*	*	95
+       0	*	*	*	*	*	*	2109	0	0	
+
+S 96   *	*	*	*	*	*	*	*	*	*	*	4036	*	*	*	1132	1051	*	*	*	96
+       0	*	*	*	*	*	*	2109	0	0	
+
+T 97   *	*	*	*	*	*	4511	*	*	*	*	*	3789	*	4041	2926	532	*	*	*	97
+       0	*	*	*	*	*	*	2109	0	0	
+
+C 98   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	98
+       0	*	*	*	*	*	*	2109	0	0	
+
+T 99   *	*	*	*	*	*	*	3682	*	*	*	*	*	*	*	*	117	*	*	*	99
+       520	1724	*	3626	122	*	*	2109	1126	0	
+
+I 100  *	*	*	*	*	*	*	692	*	*	*	*	*	*	*	*	1393	*	*	*	100
+       0	*	*	*	*	*	*	1927	0	0	
+
+T 101  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	101
+       0	*	*	*	*	*	*	1927	0	0	
+
+R 102  *	*	*	*	*	2712	*	*	*	*	*	*	*	*	1100	*	1393	*	*	*	102
+       0	*	*	*	*	*	*	1927	0	0	
+
+G 103  *	*	*	*	*	390	*	*	*	*	*	2076	*	*	*	*	*	*	*	*	103
+       0	*	*	*	*	*	*	1927	0	0	
+
+V 104  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	3999	1393	845	*	*	104
+       0	*	*	*	*	*	*	1927	0	0	
+
+A 105  1597	*	*	*	*	*	*	*	*	*	*	*	2712	*	2076	2799	*	2879	*	*	105
+       0	*	*	*	*	*	*	1927	0	0	
+
+T 106  1587	*	*	*	*	*	*	1969	*	*	*	*	*	*	*	*	1804	2995	*	*	106
+       0	*	*	*	*	*	*	1927	0	0	
+
+P 107  *	*	*	*	*	*	*	*	*	*	*	*	692	*	*	1969	2995	*	*	*	107
+       0	*	*	*	*	*	*	1927	0	0	
+
+A 108  2231	*	*	*	*	1393	*	*	*	*	*	*	*	*	*	1300	*	*	*	*	108
+       0	*	*	*	*	*	*	1927	0	0	
+
+A 109  1249	*	*	*	*	*	*	2995	*	*	*	2879	1653	*	*	*	*	*	*	*	109
+       0	*	*	*	*	*	*	1927	0	0	
+
+A 110  343	*	*	*	*	2799	*	*	*	*	*	*	3881	*	*	*	*	*	*	*	110
+       0	*	*	*	*	*	*	1927	0	0	
+
+C 111  *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	111
+       0	*	*	*	*	*	*	1927	0	0	
+
+K 112  *	*	*	*	*	*	*	*	1748	*	*	*	*	*	1637	1393	*	*	*	*	112
+       0	*	*	*	*	*	*	1927	0	0	
+
+I 113  *	*	*	*	*	*	*	193	*	*	*	*	*	*	*	*	*	2995	*	*	113
+       0	*	*	*	*	*	*	1927	0	0	
+
+S 114  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	114
+       0	*	*	*	*	*	*	1927	0	0	
+
+G 115  *	*	*	*	*	692	*	*	*	*	*	*	*	*	3162	2995	2799	*	*	*	115
+       0	*	*	*	*	*	*	1927	0	0	
+
+C 116  *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	116
+       0	*	*	*	*	*	*	1927	0	0	
+
+S 117  *	*	*	*	*	*	*	2879	*	*	*	*	*	*	*	2733	487	*	*	*	117
+       0	*	*	*	*	*	*	1927	0	0	
+
+L 118  *	*	*	*	3561	*	*	1393	*	904	*	*	*	*	*	*	*	*	*	*	118
+       0	*	*	*	*	*	*	1927	0	0	
+
+S 119  *	*	*	*	*	*	*	*	*	*	*	*	*	*	950	1051	*	*	*	*	119
+       0	*	*	*	*	*	*	1443	0	0	
+
+A 120  0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	120
+       0	*	*	*	*	*	*	1443	0	0	
+
+M 121  *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	121
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  9ac9d2aa5d496091f1a6d71517f29360
+FAM   
+FILE  9ac9d2aa5d496091f1a6d71517f29360
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:13:50 2013
+LENG  92 match states, 92 columns in multiple alignment
+FILT  110 out of 170 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  3.9 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCEECCCCCCCCCCCEEEEEEECCCCCCCHHHHHHHHHCCCCCCCCCCCCCCCCCCCCCCEEEEEEECCCCCEEEECCCEEEEEEECC
+>ss_conf PSIPRED confidence values
+98786140428677897566999961687571015567787637806697387456768874417999997225801321561673788659
+>Consensus
+mkiPKxxxtyCpxCxkHtxHkVxxykkgKxsxxaxgxRryxRxkqxGygGqxkpixxxaKxTKKixLrxxCxxCxxxxxxxxxRxkkfElxe
+>9ac9d2aa5d496091f1a6d71517f29360
+MQMPRRFNTYCPHCNEHQEHEVEKVRSGRQTGMKWIDRQRERNSGIGNDGKFSKVPGGDKPTKKTDLKYRCGECGKAHLREGWRAGRLEFQE
+>gi|118353575|ref|XP_001010053.1| Ribosomal protein L44 containing protein [Tetrahymena thermophila]gi|89291820|gb|EAR89808.1| Ribosomal protein L44 containing protein [Tetrahymena thermophila SB210]
+VQVPKTRKTYCKKCNSHTNHKVSQYKKSKESTHAQGRRRYDM-KQSGFGGQTKPIFRKkAKTTKKVALKFDCTTCKTKRVIPIKRCKTIVFMD
+>gi|41614978|ref|NP_963476.1| hypothetical protein NEQ183 [Nanoarchaeum equitans Kin4-M]gi|40068702|gb|AAR39037.1| NEQ183 [Nanoarchaeum equitans Kin4-M]
+MKIPSMIKTYCPYCKRHTIHIVKQVRPStKKSVLSAGKRRMERNtVGKGNHGRYSRRPitqwkrVGvKGGSKRIDLRLVCEECGKAIIKTLPRTKKFEIV
+P
+>gi|167043979|gb|ABZ08666.1| putative ribosomal protein L44 [uncultured marine crenarchaeote HF4000_APKG3J11]
+VNIPKEINRFCPKCNKHTIQKVSIYKAGKRRGTAAGERRHAL-RKKGYGGQKFPKLAKpAKTTKKVVQIFTCPECKKKTDKRGIRIRKFELVA
+>gi|118431044|ref|NP_147229.2| 50S ribosomal protein L44e [Aeropyrum pernix K1]gi|150421648|sp|Q9YF00.2|RL44_AERPE RecName: Full=50S ribosomal protein L44Egi|116062370|dbj|BAA79396.2| 50S ribosomal protein L44e [Aeropyrum pernix K1]
+MKFPKRIRTYCPRCNTHTEHRVAQYRAGKRRAMALGERRYRR-KQEGYGSQRRPEQKRfAKVTKKQVLVITCTVCGRKRPFLGIRLKRLELVD
+>gi|150402908|ref|YP_001330202.1| 50S ribosomal protein L44e [Methanococcus maripaludis C7]gi|150033938|gb|ABR66051.1| Ribosomal protein L44E [Methanococcus maripaludis C7]
+MKMKKKMNRYCPYCKKHTAHTVERAKKRKASELKWGQRQFRR-VTAGYGGYPRPLPGGAKPIKKLDLRYKCSECGKMHTRSNggFRARMFELIE
+>gi|170291146|ref|YP_001737962.1| 50S ribosomal protein L44E [Candidatus Korarchaeum cryptofilum OPF8]gi|170175226|gb|ACB08279.1| Ribosomal protein L44E [Candidatus Korarchaeum cryptofilum OPF8]
+MQVPEKINTYCPRCKKHTSHKVSLYKAGRARKLSWGQRQLER-KRRGYGGEPRGMLRRkAKTTKKVLLVLTCEECGRKVMRNLGRLAKVEIQR
+>gi|339756369|gb|EGQ39952.1| ribosomal protein L44E [Candidatus Nanosalinarum sp. J07AB56]
+VKIPKEQNRYCSDCDTYTEHTVKETTNARASPFKKKDRKRERKINKGYGGFPYEDPAhrsrgRkNPISEKKDLCYTCKDCGTAYKPqNQIRTAKLEIE-
+>gi|290559500|gb|EFD92830.1| Ribosomal protein L44E [Candidatus Parvarchaeum acidophilus ARMAN-5]
+MKLPTQVKRYCKFCKEHTLQKVVQVKGGHRGTLTAGSRRKGWNLEHGYGSTPYPMFEhakrlGik--q-SKRIDLRYKCTKCGKMTTQkRGVKAKKLEI-
+-
+>gi|332222714|ref|XP_003260515.1| PREDICTED: 60S ribosomal protein L36a-like [Nomascus leucogenys]
+ANVPKTHRTFCNKYGKRQSHKMTQNEMGKDSLYAQGKKCYKR-KPSGYCGQTEPIFRKkAKTTKKIVLRLECIEpnCRSTKVLAVKRCKDFELG-
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    4055	*	*	*	*	*	*	*	*	5933	1007	*	*	*	*	*	*	1231	*	*	1
+       0	*	*	*	*	*	*	3937	0	0	
+
+Q 2    6268	*	*	5011	*	*	5146	*	1125	*	*	1462	*	4219	4814	*	6472	7437	*	*	2
+       0	*	*	*	*	*	*	3934	0	0	
+
+M 3    5679	*	*	*	4064	*	6171	1645	6503	5843	2113	*	*	*	*	*	*	2022	*	3621	3
+       0	*	*	*	*	*	*	3934	0	0	
+
+P 4    *	*	*	*	6268	*	*	*	5214	*	*	*	77	6393	*	*	*	*	*	*	4
+       0	*	*	*	*	*	*	3934	0	0	
+
+R 5    4962	*	*	6246	*	6695	*	*	416	*	*	*	*	*	3179	4395	5218	6503	*	*	5
+       0	*	*	*	*	*	*	3934	0	0	
+
+R 6    7359	*	*	2600	5939	*	*	6520	2207	5604	5672	4090	*	3854	3340	4907	2240	3770	*	*	6
+       0	*	*	*	*	*	*	3934	0	0	
+
+F 7    6268	*	*	6996	2832	*	3600	2326	3375	5073	4405	*	*	3897	2313	*	*	3241	*	6718	7
+       0	*	*	*	*	*	*	3934	0	0	
+
+N 8    6269	*	*	6754	*	*	*	7082	1787	*	4216	2101	*	4711	1683	*	5977	5151	*	*	8
+       0	*	*	*	*	*	*	3935	0	0	
+
+T 9    4007	*	*	*	6184	*	6073	6785	4712	*	4923	5755	*	*	2794	5194	646	*	*	*	9
+       0	*	*	*	*	*	*	3935	0	0	
+
+Y 10   *	*	*	*	1863	*	4059	*	*	5633	*	*	*	*	*	*	*	*	*	633	10
+       0	*	*	*	*	*	*	3935	0	0	
+
+C 11   *	63	*	*	*	*	*	*	*	*	*	*	*	*	5667	6370	*	*	6521	*	11
+       8	*	7591	*	*	*	*	3935	0	0	
+
+P 12   5911	*	6783	*	*	*	*	*	1930	*	*	5398	882	*	3935	4048	7115	7356	7298	*	12
+       148	3360	*	729	1335	0	*	3939	1286	1000	
+
+H 13   *	*	4984	7285	2747	*	3613	*	1400	*	*	5290	*	7326	2908	4315	7738	*	*	2917	13
+       0	*	*	*	*	0	*	3939	0	1005	
+
+C 14   6640	135	*	6485	*	*	*	*	*	6377	*	*	*	*	5995	*	*	*	*	4620	14
+       0	*	*	*	*	*	*	3942	0	0	
+
+N 15   5474	*	3111	*	*	2831	7005	*	1268	*	*	2588	*	7418	3271	6077	*	7060	*	*	15
+       0	*	*	*	*	*	*	3942	0	0	
+
+E 16   4816	*	*	3955	*	6973	7245	*	1092	*	6683	5696	*	*	4118	4484	2082	4349	*	*	16
+       0	*	*	*	*	*	*	3946	0	0	
+
+H 17   *	*	*	*	*	*	205	*	*	*	*	*	*	*	4939	*	*	*	*	3322	17
+       0	*	*	*	*	*	*	3946	0	0	
+
+Q 18   6395	*	*	5410	*	*	4232	*	4949	*	7295	7724	*	2319	7212	4542	733	5941	*	*	18
+       0	*	*	*	*	*	*	3943	0	0	
+
+E 19   4503	*	5543	1833	*	5441	*	3194	5816	3362	4877	6946	2787	5426	*	3498	4547	3947	*	*	19
+       0	*	*	*	*	*	*	3972	0	0	
+
+H 20   *	4784	*	*	4850	*	383	6627	*	5954	5513	*	*	3456	*	*	5441	*	*	*	20
+       0	*	*	*	*	*	*	3972	0	0	
+
+E 21   6606	*	*	2459	*	*	*	4524	1017	*	*	6466	*	*	5098	3793	2985	4993	*	*	21
+       0	*	*	*	*	*	*	3972	0	0	
+
+V 22   4798	*	*	*	*	*	*	5073	*	*	5521	*	*	*	*	5989	*	157	*	*	22
+       0	*	*	*	*	*	*	3972	0	0	
+
+E 23   5279	*	*	1923	5952	*	6448	*	3918	*	*	*	*	*	*	2038	1634	4826	*	5989	23
+       0	*	*	*	*	*	*	3972	0	0	
+
+K 24   *	*	*	3796	*	*	6009	3744	2857	3139	*	6466	*	1297	2742	*	6448	7132	*	*	24
+       0	*	*	*	*	*	*	3972	0	0	
+
+V 25   3792	*	*	*	*	*	*	*	*	*	*	5521	*	*	6009	5125	5383	1878	*	822	25
+       0	*	*	*	*	*	*	3972	0	0	
+
+R 26   *	*	*	4481	*	6795	5682	*	558	*	*	*	*	*	2629	5174	4101	*	*	*	26
+       0	*	*	*	*	*	*	3972	0	0	
+
+S 27   2631	*	*	*	*	4670	4634	*	1087	*	5521	4113	4898	5565	3883	5378	4007	*	*	*	27
+       21	*	6142	*	*	*	*	3972	0	0	
+
+G 28   5341	*	4596	*	*	455	*	*	6367	*	*	6968	*	*	3386	3495	*	*	*	*	28
+       52	4819	*	1328	733	*	0	3969	1097	1035	
+
+R 29   7374	*	*	6204	*	*	5877	*	579	*	*	*	6023	4738	2276	5319	*	6700	*	*	29
+       0	*	*	*	*	981	1019	3957	0	1099	
+
+Q 30   1598	*	2266	3009	*	5354	*	*	5801	*	*	*	6161	5376	2503	4658	4991	6688	*	*	30
+       0	*	*	*	*	*	0	3961	0	1033	
+
+T 31   *	*	*	*	*	5881	*	6711	*	6762	*	4462	*	*	1838	794	3996	*	*	*	31
+       0	*	*	*	*	*	0	3961	0	1033	
+
+G 32   4674	*	*	3422	*	3220	4723	5059	3839	2552	6925	5918	2603	*	7089	3424	3126	4393	*	*	32
+       0	*	*	2000	415	0	*	3961	1033	1033	
+
+M 33   6471	*	6148	*	2834	6301	3644	*	5192	1481	3258	5996	6734	*	6130	4513	6820	4849	5093	3387	33
+       0	*	*	*	*	*	*	3972	0	0	
+
+K 34   1019	*	*	*	*	5956	4759	*	2876	*	*	6696	5906	*	5560	3209	3076	4534	*	*	34
+       0	*	*	*	*	*	*	3972	0	0	
+
+W 35   3680	*	*	3362	*	*	5731	6381	3733	4719	*	*	*	1259	3811	*	*	*	2384	*	35
+       0	*	*	*	*	*	*	3972	0	0	
+
+I 36   *	*	5301	6012	*	449	*	2722	4375	*	*	6160	*	*	*	*	*	6275	*	*	36
+       0	*	*	*	*	*	*	3972	0	0	
+
+D 37   3516	*	3514	3624	*	*	*	*	1732	*	*	3952	*	2493	3010	4600	5246	6814	*	*	37
+       0	*	*	*	*	*	*	3972	0	0	
+
+R 38   *	*	*	*	*	6275	*	*	5523	5956	*	*	*	6149	132	*	*	*	5453	*	38
+       0	*	*	*	*	*	*	3972	0	0	
+
+Q 39   *	4591	*	*	*	*	3870	*	4375	6012	*	*	*	2069	766	*	*	*	*	*	39
+       0	*	*	*	*	*	*	3972	0	0	
+
+R 40   *	*	*	*	3505	*	4228	*	2639	6337	5815	*	*	6275	4156	*	4668	*	*	838	40
+       0	*	*	*	*	*	*	3972	0	0	
+
+E 41   2946	*	1382	3050	*	5261	*	*	3648	4889	*	5780	*	4898	2551	*	*	8075	*	*	41
+       0	*	*	*	*	*	*	3972	0	0	
+
+R 42   5782	*	*	4288	*	5453	6734	6139	7925	5445	4221	7100	*	7428	389	6633	*	*	5886	*	42
+       1803	*	487	*	*	*	*	3972	0	0	
+
+N 43   2886	*	*	*	*	4858	*	*	2550	*	*	2477	*	3960	1616	3481	*	*	*	*	43
+       373	2134	*	0	*	37	5295	2892	1207	3203	
+
+S 44   5952	*	5412	6393	5833	4909	*	4358	880	5881	*	5868	*	5145	4538	3432	*	3221	*	*	44
+       0	*	*	*	*	*	0	3961	0	1033	
+
+G 45   *	*	5354	5881	*	3054	*	*	3545	3773	*	3973	5497	1100	6332	5290	3491	*	*	*	45
+       0	*	*	*	*	*	0	3961	0	1033	
+
+I 46   3530	*	*	4981	*	*	5249	2740	2084	5306	6790	5354	*	4208	3769	2289	6772	3838	*	*	46
+       0	*	*	*	*	*	0	3961	0	1033	
+
+G 47   *	*	*	*	*	45	*	*	*	*	*	*	*	*	*	*	6141	*	5901	*	47
+       0	*	*	*	*	*	0	3961	0	1033	
+
+N 48   *	*	*	*	2705	*	*	*	*	6141	*	2165	*	*	*	*	*	5901	*	755	48
+       21	*	6141	*	*	*	0	3961	0	1033	
+
+D 49   6147	5489	5014	*	*	502	4578	*	*	5930	4775	*	*	5858	4363	4413	*	*	5708	*	49
+       0	*	*	*	*	1223	807	3956	0	1081	
+
+G 50   *	*	*	*	*	297	*	*	*	*	*	*	*	*	5369	2786	*	*	5901	*	50
+       0	*	*	*	*	*	0	3961	0	1033	
+
+K 51   *	*	*	6332	3431	*	*	5901	2179	*	*	*	*	1017	4138	5284	4815	*	*	4462	51
+       0	*	*	*	*	*	0	3961	0	1033	
+
+F 52   *	*	*	*	2354	*	*	*	4205	*	*	5901	2418	*	3440	5804	1338	6233	*	5191	52
+       0	*	*	*	*	*	0	3961	0	1033	
+
+S 53   *	*	*	5497	3904	6537	*	*	968	*	*	6688	*	*	3015	2304	*	*	*	4232	53
+       0	*	*	*	*	*	0	3961	0	1033	
+
+K 54   5901	*	*	4358	*	6332	*	*	2286	6455	*	*	679	*	4569	6874	5881	6199	*	*	54
+       0	*	*	*	*	*	0	3961	0	1033	
+
+V 55   *	*	5361	3538	*	*	*	1675	3357	4224	5089	4602	*	*	5801	*	6367	1623	*	*	55
+       0	*	*	*	*	*	0	3961	0	1033	
+
+P 56   *	*	*	*	1322	*	*	*	*	3016	*	*	1554	3015	*	*	*	*	*	6367	56
+       26	5801	*	2585	263	*	0	3961	1032	1033	
+
+G 57   3498	*	5881	4480	*	2396	3285	*	2631	*	*	*	*	3809	2067	5309	*	4523	5881	*	57
+       119	3927	6233	2322	322	*	0	3961	1190	1033	
+
+G 58   *	*	*	*	*	1551	*	*	1297	*	*	6812	*	6009	2203	*	6641	*	*	*	58
+       1771	500	*	63	4546	1224	806	3946	3100	1081	
+
+D 59   832	*	2494	4167	*	*	*	*	4375	*	*	3653	*	*	*	4526	*	5392	*	6619	59
+       0	*	*	3000	193	937	1066	3920	1033	1092	
+
+K 60   *	*	*	6002	*	5760	*	*	150	*	*	*	4305	*	*	*	6138	*	*	*	60
+       0	*	*	0	*	*	0	3930	1027	1027	
+
+P 61   5384	*	*	*	*	5760	*	5356	6138	*	7082	5054	1728	6073	6026	*	1350	2671	*	*	61
+       0	*	*	*	*	0	*	3930	0	1027	
+
+T 62   7436	*	*	*	*	*	*	5907	*	6027	*	5673	5391	6994	*	3355	347	5225	*	*	62
+       0	*	*	*	*	*	*	3957	0	0	
+
+K 63   *	*	6380	5380	*	*	*	*	169	*	*	5945	*	*	5727	5318	6139	*	*	*	63
+       0	*	*	*	*	*	*	3957	0	0	
+
+K 64   *	*	*	*	*	*	*	*	314	*	*	5580	*	*	2517	*	*	*	*	*	64
+       11	*	6994	*	*	*	*	3957	0	0	
+
+T 65   6922	*	*	*	*	*	*	1151	4031	3650	6447	*	5059	4358	*	7321	4038	2039	*	*	65
+       0	*	*	*	*	0	*	3954	0	1002	
+
+D 66   4946	*	2427	*	6799	*	6740	*	*	5605	*	2862	*	*	6684	4476	3427	1161	6615	*	66
+       0	*	*	*	*	*	*	3957	0	0	
+
+L 67   *	5922	*	*	6994	*	*	4058	*	299	6532	*	6741	5365	6372	*	*	4428	*	*	67
+       0	*	*	*	*	*	*	3957	0	0	
+
+K 68   *	5380	*	*	*	*	*	5774	1897	5760	6925	*	*	5318	841	*	5631	4080	*	*	68
+       0	*	*	*	*	*	*	3957	0	0	
+
+Y 69   *	*	*	*	2898	*	*	4873	*	1139	3863	*	*	*	5391	*	*	*	*	1810	69
+       0	*	*	*	*	*	*	3957	0	0	
+
+R 70   *	*	6927	1629	*	*	*	6143	2689	*	*	*	*	4148	2240	5296	2540	4890	*	*	70
+       0	*	*	*	*	*	*	3957	0	0	
+
+C 71   *	79	*	*	*	*	*	*	*	*	*	*	*	*	5391	6027	*	*	*	6139	71
+       38	6006	6568	1000	1000	*	*	3957	1021	0	
+
+G 72   6237	*	6879	4417	*	5571	*	5500	3200	5196	5091	7363	4759	4332	5242	2547	1564	3405	*	*	72
+       0	*	*	*	*	857	1159	3964	0	1004	
+
+E 73   5882	*	3404	1433	*	6834	*	5976	2113	5752	*	6595	*	5030	*	4359	3724	3668	*	*	73
+       178	3294	6176	1000	1000	0	*	3960	1344	1000	
+
+C 74   *	67	*	*	*	*	*	*	*	*	*	*	*	*	*	4813	6652	*	*	*	74
+       0	*	*	*	*	*	0	3936	0	1016	
+
+G 75   *	*	*	*	*	1199	6871	*	1407	*	*	5559	*	4657	3173	7135	*	*	*	*	75
+       0	*	*	1000	1000	0	*	3936	1016	1016	
+
+K 76   5496	6506	*	*	6213	*	5274	6161	1332	7173	7153	4766	*	5067	3524	3144	3805	7445	*	2657	76
+       0	*	*	*	*	*	*	3954	0	0	
+
+A 77   1665	*	*	4950	7515	*	*	4766	2095	6128	4289	5294	*	5757	3340	4081	4097	4388	*	8576	77
+       0	*	*	*	*	*	*	3954	0	0	
+
+H 78   7153	7344	*	*	5161	*	1678	4025	3209	4398	6734	6500	*	4219	2723	5820	3667	5319	4940	4331	78
+       0	*	*	*	*	*	*	3954	0	0	
+
+L 79   *	6771	6802	*	5099	*	3838	4115	4311	2991	2192	4374	6989	2223	*	5957	3514	4154	*	*	79
+       0	*	*	*	*	*	*	3954	0	0	
+
+R 80   7179	7290	*	*	6989	*	5611	5353	2324	2376	6656	*	4086	4440	1648	6361	4589	5080	*	5366	80
+       134	3878	5584	0	*	*	*	3954	1190	0	
+
+E 81   2294	5680	*	3053	*	5660	*	*	3917	5351	*	3721	2383	*	4059	3706	3812	4114	*	6330	81
+       20	*	6155	*	*	0	*	3945	0	1038	
+
+G 82   *	5170	*	*	6523	1673	5898	2222	5914	2116	6450	4853	5584	5329	*	6319	4546	5482	*	*	82
+       108	3795	*	487	1803	0	*	3932	1250	1016	
+
+W 83   *	*	*	*	2702	3726	*	3069	1272	4337	6024	*	5718	*	6500	*	*	4794	3536	5627	83
+       20	*	6168	*	*	*	*	3950	0	0	
+
+R 84   *	*	*	*	*	5876	*	*	3662	*	*	*	*	*	146	*	*	*	*	*	84
+       0	*	*	0	*	0	*	3932	1016	1016	
+
+A 85   1948	1640	*	*	*	*	*	4374	*	3075	5127	*	*	*	*	6940	3017	3431	*	*	85
+       27	*	5741	*	*	*	*	3950	0	0	
+
+G 86   3754	*	*	*	*	2675	6480	*	619	*	*	*	*	5805	4032	5158	*	*	*	*	86
+       0	*	*	0	*	2007	413	3935	1000	1033	
+
+R 87   *	*	5482	*	*	*	2062	*	1248	*	5506	*	*	6106	2171	*	4279	7191	*	*	87
+       0	*	*	*	*	*	0	3932	0	1016	
+
+L 88   7111	*	*	*	686	*	*	4466	*	2426	5584	*	6319	*	*	*	6106	3583	*	6830	88
+       0	*	*	*	*	*	0	3932	0	1016	
+
+E 89   *	*	4829	291	*	*	*	4807	*	*	*	*	*	4388	6130	*	*	4333	*	*	89
+       16	6483	*	1834	475	0	*	3932	1054	1016	
+
+F 90   *	*	*	*	2884	*	*	2120	*	777	6276	*	*	*	*	*	*	6343	5294	*	90
+       0	*	*	*	*	*	*	3950	0	0	
+
+Q 91   *	*	*	4253	*	1433	*	5201	5085	6216	6898	6798	*	3695	*	6081	3098	1831	*	*	91
+       0	*	*	*	*	*	*	3914	0	0	
+
+E 92   4509	*	3522	643	*	4084	*	4751	*	*	*	*	4771	*	4350	5542	5302	*	*	*	92
+       0	*	*	0	*	*	*	3550	0	0	
+
+//
+�HHsearch 1.5
+NAME  9b972e307eb0d9de3734ffdbf33ed781
+FAM   
+FILE  9b972e307eb0d9de3734ffdbf33ed781
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:09:45 2013
+LENG  245 match states, 245 columns in multiple alignment
+FILT  163 out of 1103 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  8.8 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEEEEEEEEEEECCCCCCHHHHHHHHHHHCCCCCCCHHHHHHHHHHHHHHCCCCHHHCCCCCCCCCCCEEEEEHHEEEHHHCCCCCCCCCCCCEEEECC
+CCEEEEHHEEECCCCEEEEECCCCCCCCEEEEECCCCCEEEEEEECCCCCCHHHHHHHHCHHHHHHHHHHCCCEEEEEECCCEEEEEEEEHHHHHHHCCC
+CCCCCCCCCCCCCCCCCCEEEEEEEEEEEEECCCCCCHHHEECCC
+>ss_conf PSIPRED confidence values
+9089998788880899608999999998717546799899999999999761485101265667997432305232762133476775563043377179
+9642330000025520267515546773899974679789999967988879999987179899999985663169998257899841005999975697
+411478667677789995813178999999889830413001039
+>Consensus
+xxxlxxanxlxvxxxxxlxxxfxxxxxxxxxxvdFxxxxxxxxINxwvxxxTxgxIxxxxxxxlxxxtxlxlxnaxxfxxxWxxxFxxxxtxxxxFxxxx
+gxxxxvxmMxxxxxxxxyxxxxxlxxxxxxveLpyxxxxsmxiilPxxxxxlxxlxxxlxxxxlxxxxxxxxxxxvxlxlPkFxixxxxdLxxxLxxlGi
+xxxFxxxadxsxisxxxxxvxxvxhxxxixvxExGtxaxaxtxxx
+>9b972e307eb0d9de3734ffdbf33ed781
+DISFKSMNKVYGRYSAVFKDSFLRKIGDNFQTVDFTDSRTVDAINKSVDIFTEGKINPLLDEPLSPDTSLLAISAVYFKAKWLMPFEKEFTSDYPFYVSP
+TEMVDVSMMSMYGEAFNHASVKESFGNFSIIELPYVGDTSMVVILPDNIDGLESIEQNLTDTNFKKWSDSMDAMFIDVHIPKFKVTGSYNLVDALVKLGL
+TEVFGSTGDYSNMSNSDVSVDAMIHKTYIDVNEEYTEAAAATSAL
+>gi|226342890|ref|NP_001139707.1| serine protease inhibitor 15 [Bombyx mori]gi|195972032|gb|ACG61178.1| serpin-15 [Bombyx mori]
+--------NVYADEDNKFCKAFTQSYYKTFGGktrlVDYSDPvGAAKEINNEVKEEGSGRFKSLIsSKMIKEGAGLNFVSTYEQTIIYDDKFIFKKNVTI
+KFKS--GRKVtNVPGIAG-EGIVKYADLKDF--DAKSYELVGERgLCSYLILVPNKPDGLLGLLDKLRSpTAFGEILERGEEVCAKISILYRDLIAKVDL
+GKSARESNyLEGAFQEGgLQLRGVSQNcnNTYISSVLHEVSLKS--------------
+>gi|226342920|ref|NP_001139722.1| serine protease inhibitor 31 [Bombyx mori]gi|195972064|gb|ACG61194.1| serpin-31 [Bombyx mori]
+--------RLYlVDESIKISDDWLNFAKNYCGLtiraVPMKrNPQlTAVII--------REAISSFLP-SLNFKGDSVLLDSLDYKGLWNEAFPETRIFR
+EPFHDNSGNVIgAVDMMRT-RKRIKMTYDHTL--KATIAEIPVGHnaQYRFIFAM---GDGITEALASADIDTLIELLTNLNDTrvPIEIAIPRFIIVSE
+LDVRTLLESIGVESLWTDPMATGNITSPPASPSTFIQRVTATIKNRG----------
+>gi|308493168|ref|XP_003108774.1| hypothetical protein CRE_10956 [Caenorhabditis remanei]gi|308248514|gb|EFO92466.1| hypothetical protein CRE_10956 [Caenorhabditis remanei]
+---------------------------------------------------------------------EMIVNSINYNPIFDEMIHTFFHSKRTFYSTE
+SSPQTMGFMEW-GAHqHHF---------WKMISFECtaeKKYVNVKTF-------------SIlNGTIF----------YFQIALPTFNINAETDLASFM
+KSIGIEK------ELYDIiSEKtYRNIPSFVHKSQFELTYQK----------
+>gi|320012766|gb|ADW07616.1| proteinase inhibitor I4 serpin [Streptomyces flavogriseus ATCC 33331]
+---LGAALGLWSRSTLPVEPAWLDQLPAEAHGhLT-GDPvRDQVHLDTWAANRTQGQIDTM-PITVNDETLLVLASALTLRTDWIRSFTPGGMEAGtgPW
+R-----DMNLAGLHR-TTRLlnrvGVVDTEAG--PLTELQIIGTHGIDVHLYLgtPEASagqvltAAVGALHNRRAMvpgDHlphgtpgpglsVTRVLSV
+DGESVLRVSTVPFTVTSHHDLLNHHDLFGLGTATDTsQGHFPGISAKPLAVQAAAQAMTATFGARGFRSAAATAF-
+>gi|18568304|gb|AAL76022.1|AF466599_1 putative serpin [Aedes aegypti]
+---ISVETRLYYDKSIG---NARSVLtAKSLKPigTSFSDKrAFCEKVNSWIRNAPIKGTDNLVrDYDLNNETQAFVAGALSI--YWNTQLKS-STDQKG
+FQ---G--ENVKFLEG-SISAGYAKLDNL--KVEVVELISDKvdGVKLWLIMPDRASSIKDFNDQLSVESIRQIENGLTaqKVDVSLALPMVTIEYNSQ-
+------------------------------------------------------
+>gi|2393891|gb|AAC58237.1| serpin [Fowlpox virus]
+--------VLLIKRCYNINEKFIKDSNTIYNTdvLEFYNVrQIPRIMNKWIRSRSNNKITDIG-CHIYDNTKSIIAEAMFFTMKHESIFGSTRKDTITFY
+KYDGTSLPVEAIHA--------------------------------------------------------------------------------------
+------------------------------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+D 1    *	*	561	*	*	1635	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	2166	0	0	
+
+I 2    4782	4757	*	*	*	4687	*	3337	4962	5044	3956	4882	*	4856	5056	3788	3819	1899	*	2717	2
+       50	4882	*	543	1673	*	*	6578	1118	0	
+
+S 3    5924	*	3601	3306	5965	4032	*	3932	3552	5138	5861	6321	5438	3111	3487	3395	2925	4466	*	6156	3
+       23	6004	*	612	1532	*	*	7554	1255	0	
+
+F 4    *	*	*	*	3427	*	*	2555	*	1201	4301	*	5654	*	*	*	4245	2870	6599	4994	4
+       12	6891	*	1593	581	*	*	8405	1233	0	
+
+K 5    4132	*	4875	4693	6693	5029	4023	5989	2393	4044	7002	4229	*	3961	3119	3287	3933	4108	6514	5361	5
+       0	*	*	*	*	0	*	8516	0	1013	
+
+S 6    4068	*	6946	7053	4328	*	5648	2634	*	2394	2860	5909	6831	6100	7075	3507	3043	3292	*	7158	6
+       14	6691	*	1000	1000	*	*	8604	1003	0	
+
+M 7    1127	5886	7125	6993	7032	3357	*	4642	4632	4401	7101	6029	7031	5918	4397	3927	4186	4004	*	*	7
+       0	*	*	*	*	*	*	8657	0	0	
+
+N 8    4893	5548	5253	*	6061	5583	*	*	*	5177	*	1229	6734	7168	*	2140	3242	4048	*	5710	8
+       0	*	*	*	*	*	*	8657	0	0	
+
+K 9    2810	*	6192	7029	4984	2657	6212	7209	3160	4631	6560	5249	*	5177	2395	2816	5642	4321	7184	*	9
+       22	7041	7116	1000	1000	*	*	8798	1009	0	
+
+V 10   4673	*	*	*	4241	*	*	1931	*	1318	4462	7141	*	*	7143	7119	*	2555	*	7062	10
+       0	*	*	*	*	979	1022	8797	0	1131	
+
+Y 11   4373	*	7235	6841	1471	*	6920	4825	*	3743	*	7162	*	6891	*	6125	*	5067	2743	2009	11
+       23	7055	6929	0	*	0	*	8824	1003	1009	
+
+G 12   3330	7287	*	*	5408	5577	5538	3271	7114	2748	5625	*	6333	7167	*	5168	3284	1542	*	4186	12
+       10	7206	*	2000	415	0	*	8819	1000	1020	
+
+R 13   3583	7096	2006	3444	*	4849	5364	6041	4451	5507	6431	4126	6000	3483	3156	3094	7168	*	*	5946	13
+       9	*	7273	*	*	*	*	8830	0	0	
+
+Y 14   4231	*	3923	3016	*	4756	*	6694	2454	6920	6523	3661	3707	3381	3151	3631	4313	*	*	6191	14
+       0	*	*	*	*	*	0	8831	0	1013	
+
+S 15   4392	6391	3124	4079	7222	2297	6096	*	3773	4821	*	3329	4946	5124	3752	3135	3831	7211	7069	*	15
+       64	5399	5656	1585	585	*	0	8831	1213	1013	
+
+A 16   4902	6922	6013	5179	2894	7074	6236	3142	7140	1866	6045	6433	6071	6261	4905	4273	4521	3662	*	3280	16
+       109	4308	5507	1286	762	0	*	8829	1568	1325	
+
+V 17   6908	6868	4540	3365	*	4099	6197	6908	2930	5357	7182	3999	2794	3891	3364	3714	3643	3940	*	7046	17
+       44	6061	6043	2224	347	0	*	8824	1082	1209	
+
+F 18   4589	*	*	*	3090	*	*	2285	*	1486	6906	*	4035	*	*	6864	5347	2683	7138	6215	18
+       11	*	7052	*	*	*	0	8764	0	1122	
+
+K 19   4031	6465	3812	4234	7148	7269	4610	7409	2437	3498	6067	3318	6673	4237	3549	2730	5366	5005	*	*	19
+       12	6906	*	3700	115	*	0	8734	1017	1236	
+
+D 20   4763	*	3052	2913	*	4572	5580	*	4383	*	7189	7114	1731	3523	7317	3914	3658	5317	*	5667	20
+       8	*	7516	*	*	1603	576	8734	0	1236	
+
+S 21   2963	5680	3318	2448	6845	3986	5157	*	3918	*	7306	4060	5048	3963	5497	3081	3697	6830	*	5977	21
+       10	7222	*	936	1067	613	1530	8763	1086	1228	
+
+F 22   5964	*	*	*	780	*	*	5686	*	4728	5565	*	6941	*	*	7498	4745	7327	4638	2146	22
+       21	*	6113	*	*	0	*	8840	0	1008	
+
+L 23   3794	*	*	4098	6990	5787	5243	3756	3373	2230	6137	6118	6912	3536	2944	4984	4679	3301	*	6919	23
+       22	6065	*	742	1315	968	1033	8763	1251	1122	
+
+R 24   4050	*	2729	2997	*	6215	5796	*	2857	4986	*	4358	6205	3157	3817	3133	3933	5519	6610	7490	24
+       0	*	*	*	*	947	1055	8763	0	1126	
+
+K 25   3778	7402	4150	5216	4508	4647	6964	4487	3832	2666	5435	4433	6927	3496	4396	4022	3234	3673	*	6192	25
+       32	7246	6048	0	*	*	0	8768	1013	1004	
+
+I 26   2197	6046	*	*	4144	5953	*	2985	*	1841	4110	6632	*	7109	*	3737	4815	3450	*	6444	26
+       43	6086	6083	0	*	959	1042	8785	1241	1361	
+
+G 27   2621	*	6189	3296	7188	5069	6124	5528	2762	6134	6967	3819	6438	2964	3146	3334	6827	5502	*	5264	27
+       11	*	7079	*	*	423	1977	8786	0	1332	
+
+D 28   3952	7406	3269	3555	*	4142	5560	6958	2881	5134	*	3334	*	3463	3235	3708	3636	5096	*	6908	28
+       11	7063	*	1585	585	1087	918	8804	1017	1105	
+
+N 29   4470	7352	3808	4693	3057	7158	5069	3721	5024	3424	4847	4279	*	6084	4794	4383	3918	4725	4472	2756	29
+       27	7321	6353	0	*	*	0	8806	1013	1004	
+
+F 30   4279	5430	5215	6906	1900	4787	5812	6248	*	3641	6643	7095	6226	7218	6026	7048	7125	7052	*	1323	30
+       39	*	5212	3000	193	1022	979	8796	1004	1332	
+
+Q 31   4803	*	3915	4816	5444	2361	3445	4710	3796	5998	5011	2517	4118	4584	5035	4743	5259	6150	*	6157	31
+       26	6922	6750	2287	331	1626	565	8841	1216	1515	
+
+T 32   2091	7071	*	4492	*	3348	*	4496	4633	4522	4755	6166	7086	*	6910	2226	2807	4128	*	7263	32
+       3797	131	6075	1794	491	351	2211	8826	7940	1447	
+
+V 33   3596	5203	7193	4693	4058	7053	6811	2377	5184	2484	5435	*	*	*	*	5173	7119	1804	*	5317	33
+       30	7139	6179	0	*	545	1668	8910	1000	1234	
+
+D 34   4449	7182	1178	5276	*	4975	6130	*	6346	6313	*	2734	4410	5775	4574	3869	4216	6084	*	6167	34
+       81	7288	4383	583	1588	1453	656	8891	1135	1225	
+
+F 35   6821	7079	6480	*	613	7261	*	5627	7078	2819	5711	6093	*	*	*	5398	*	5813	6208	4206	35
+       109	4725	4838	221	2818	981	1019	8845	1524	1950	
+
+T 36   3504	6692	4992	3952	*	3851	5463	4934	3956	5900	6047	4672	5568	4608	3999	2526	2357	4636	*	6345	36
+       505	1803	6856	645	1471	940	1062	8853	4284	1992	
+
+D 37   4514	*	1965	3927	*	4769	4785	7204	4659	4880	*	2296	5275	4350	5475	3783	3821	5044	*	7255	37
+       277	2772	5157	788	1249	268	2561	8899	2899	1552	
+
+S 38   4805	6721	4470	3051	7064	4915	5798	6003	3715	5608	7144	3841	1841	4659	4304	3398	5276	4286	*	*	38
+       978	1043	7147	331	2286	555	1648	8855	6069	1408	
+
+R 39   2888	*	3543	3048	*	3613	6237	4963	3583	3303	*	4089	5617	3571	4197	3856	4634	6297	*	7219	39
+       51	6102	5649	732	1329	1787	494	8921	1220	1296	
+
+T 40   1656	6488	4699	4323	5580	6178	6924	4147	6956	4548	5172	6091	6716	7410	*	3068	3205	2916	7140	7015	40
+       21	6837	7378	0	*	712	1360	8885	1024	1482	
+
+V 41   2022	7190	6917	5117	7351	7340	*	4596	4090	4018	4414	7298	4480	4096	2850	4579	4218	3259	6960	4946	41
+       33	6525	6388	647	1468	629	1502	8931	1151	1237	
+
+D 42   3629	*	4271	2640	*	5464	6363	5590	2739	5560	7181	3963	7212	3348	3176	4004	4163	4015	*	6179	42
+       29	*	5632	*	*	701	1378	8986	0	1209	
+
+A 43   3356	*	4380	3007	5543	6248	4438	4040	2989	4772	4969	4515	5078	3674	4405	3860	4239	4162	*	5849	43
+       9	7322	*	0	*	1902	449	8871	1000	1345	
+
+I 44   4533	*	*	*	5733	*	*	911	*	3396	3544	*	*	6809	*	7026	5927	2427	*	7260	44
+       29	7360	6165	0	*	*	0	8876	1013	1225	
+
+N 45   *	*	3122	*	*	6946	*	5933	6014	*	*	471	*	5606	5914	3530	*	*	*	*	45
+       32	5916	7524	2033	404	2497	281	8861	1160	1564	
+
+K 46   3429	*	3628	2509	*	4855	4914	6984	2749	5383	5602	3962	6586	4548	3464	3552	4404	5593	*	5608	46
+       9	*	7403	*	*	2416	299	8862	0	1549	
+
+S 47   5291	*	5162	6514	2853	*	7320	5002	7050	4639	6851	*	*	7470	7207	6094	7233	5634	780	3894	47
+       15	6555	*	2933	202	*	0	8938	1134	1546	
+
+V 48   2693	6081	*	6571	4439	7431	*	2193	*	3397	4202	*	*	*	*	6028	5646	1578	*	5065	48
+       37	6550	6108	3077	182	1606	574	8938	1156	1546	
+
+D 49   2990	6287	5796	3298	7166	*	5715	*	3205	4825	4755	3740	*	3844	3222	2155	4749	6129	*	7098	49
+       0	*	*	0	*	1613	571	8950	1013	1573	
+
+I 50   4422	6863	3666	2567	6274	5300	6110	4941	2878	6057	*	3505	6973	3705	3760	2809	5205	5014	7222	7175	50
+       19	*	6219	2000	415	1934	438	8956	1013	1355	
+
+F 51   2856	*	5257	4130	5292	6231	3864	5665	2814	5585	6210	3448	5568	3227	3538	4243	4003	4441	6965	*	51
+       18	6313	*	1391	693	1331	731	8952	1089	1457	
+
+T 52   4715	*	5739	*	*	5067	*	6980	7322	4961	4741	7040	7197	*	*	3174	534	6187	*	*	52
+       19	7324	7122	1000	1000	542	1675	8961	1000	1236	
+
+E 53   4303	*	3652	4183	7458	2710	4492	7198	3401	5374	5300	2009	7571	4391	3724	4232	7291	6579	*	6203	53
+       12	*	6971	*	*	1722	521	8964	0	1226	
+
+G 54   5725	*	5697	4589	4744	1106	4953	*	3903	*	*	3079	*	4733	3949	4225	6237	*	5688	6348	54
+       30	*	5623	*	*	1496	632	8951	0	1246	
+
+K 55   4495	*	5064	4147	*	5586	5742	5752	2125	2873	3921	3910	6530	4370	2797	4736	4874	5503	7108	6816	55
+       41	6971	5632	0	*	754	1297	8980	1124	1474	
+
+I 56   6100	5852	7141	7105	4433	6108	*	945	*	3566	4608	5864	*	7031	*	6703	5610	2475	7338	7162	56
+       20	7315	7011	0	*	*	0	8996	1008	1451	
+
+N 57   5864	*	4033	3719	*	4174	5487	7091	2486	5508	7408	4229	3214	3821	3505	4136	2717	5765	*	7118	57
+       0	*	*	1000	1000	612	1532	8986	1009	1574	
+
+P 58   4572	*	2313	3157	*	4618	6301	5516	3822	7212	*	2850	4969	3856	3770	3120	4160	6966	*	*	58
+       24	6380	7765	2364	312	*	0	8996	1087	1132	
+
+L 59   3637	*	7213	*	3042	6194	5771	2437	7155	2213	3301	6105	4692	*	7389	5791	4777	3101	*	5613	59
+       146	6583	3542	2322	322	*	0	8997	1028	1225	
+
+L 60   7330	*	*	*	4072	4963	*	2304	6987	1699	4956	6979	5318	6874	*	*	4998	1918	7331	6947	60
+       1934	709	2981	197	2973	201	2944	8846	6812	2407	
+
+D 61   4748	*	3109	2867	*	6248	5356	5199	3767	6080	7136	5504	1878	4087	5296	3551	3983	5994	7136	*	61
+       262	5487	2797	1022	978	499	1775	8891	1211	2812	
+
+E 62   3771	6298	2749	4022	5644	2613	6022	4305	3499	4547	*	4015	6458	5856	4659	3335	3798	7288	*	6001	62
+       64	5230	5883	2025	407	60	4626	8872	1384	3249	
+
+P 63   3363	7090	1958	3681	7099	3959	4478	7293	4383	6366	5380	4723	4986	4265	5095	3227	4408	5166	7367	6085	63
+       60	4620	*	642	1477	1666	546	8987	1491	1214	
+
+L 64   5761	7309	*	7523	3805	6472	*	2043	*	1595	4905	*	5707	7129	6991	7298	5256	2410	7105	5806	64
+       120	4998	4364	486	1806	967	1033	8987	1392	1113	
+
+S 65   4105	6521	2402	3713	7113	5105	5697	*	4087	7267	6991	3021	3713	5341	5010	2681	3355	7124	*	5590	65
+       104	4817	4879	512	1743	174	3135	8945	1419	1889	
+
+P 66   3362	*	3883	3372	7201	7367	7265	6817	3669	4447	7339	4269	2240	4836	4106	2981	4205	5509	*	5643	66
+       27	7314	6328	0	*	286	2474	8956	1000	1524	
+
+D 67   4647	5387	1841	3435	5621	4662	4714	*	4940	4949	5515	3018	5451	5891	5967	3197	3767	7426	*	6332	67
+       16	*	6490	*	*	1562	597	8968	0	1232	
+
+T 68   3595	*	4190	5393	7421	4812	6002	6590	5859	5047	5673	4667	*	5347	6373	3068	1254	3835	6335	7114	68
+       0	*	*	0	*	495	1783	8979	1000	1310	
+
+S 69   4275	7664	3788	4662	6761	4299	4722	5791	3141	3902	5772	3722	4655	3687	3078	3621	4135	4093	*	6847	69
+       29	*	5674	*	*	0	*	8971	0	1013	
+
+L 70   3614	6423	7465	*	3710	6503	*	3125	*	1446	2887	*	5791	*	7125	4217	6288	3360	7022	*	70
+       15	7415	7827	1000	1000	0	*	9015	1000	1264	
+
+L 71   3556	5844	*	7209	3790	7446	7145	2715	6414	2361	4412	4151	*	7186	7263	5134	4877	2003	*	5758	71
+       15	*	6590	*	*	*	0	9023	0	1000	
+
+A 72   4143	*	*	5790	3750	*	6487	3218	*	1088	4176	*	*	6470	6591	4594	5492	3446	7252	5443	72
+       0	*	*	0	*	1288	760	9029	1013	1190	
+
+I 73   2566	7072	*	*	4373	6474	6545	2156	*	2677	5423	5760	*	5885	5865	7600	4191	2077	*	*	73
+       0	*	*	*	*	*	0	9035	0	1068	
+
+S 74   5100	6482	3926	5864	*	4926	6542	*	*	7419	*	1069	*	4813	*	2004	4091	7133	*	*	74
+       40	5841	6654	1099	907	913	1093	9029	1246	1068	
+
+A 75   1316	6222	7558	7053	*	3403	*	6504	6809	7329	*	7493	*	*	7140	3720	2286	3578	*	3754	75
+       20	6918	7554	1000	1000	500	1772	9013	1026	1174	
+
+V 76   3377	7491	*	7096	4778	5316	*	2560	7296	2032	3560	5410	6858	*	*	5526	4834	2196	7203	6631	76
+       21	*	6126	3391	145	745	1310	9006	1115	1097	
+
+Y 77   5308	7110	5407	5966	3584	7486	3562	5995	7756	4328	*	4290	*	7222	6469	2652	3292	5575	*	1587	77
+       9	*	7338	*	*	1454	655	8999	0	1203	
+
+F 78   7243	6268	*	*	718	*	*	4210	*	2953	5682	*	*	6626	*	7502	*	3855	6836	3712	78
+       62	5933	5284	3911	99	1491	634	9014	1135	1199	
+
+K 79   4819	7186	5383	3596	7290	7089	7391	*	1583	4898	*	3377	6538	3287	3164	3580	4842	5886	7047	*	79
+       32	6355	6704	0	*	1344	723	9001	1232	1663	
+
+A 80   2029	4852	4520	*	6198	1327	7759	5846	7362	6369	5073	6343	4354	7473	*	3801	4372	7024	*	*	80
+       26	6250	7759	0	*	295	2436	8950	1105	1508	
+
+K 81   3648	7119	3515	4413	6292	5852	6510	5043	2791	3412	7207	4586	4052	4382	3777	3582	3527	4275	*	5851	81
+       37	*	5315	*	*	806	1224	9030	0	1094	
+
+W 82   *	5909	*	6572	3661	7492	6636	6865	*	6271	5755	6710	*	*	*	6809	*	*	321	5695	82
+       13	*	6809	*	*	1380	699	8978	0	1385	
+
+L 83   3193	*	4021	3081	7409	5295	5547	5441	2570	4033	5480	3687	6894	3723	3074	4156	5959	5880	7691	6861	83
+       42	5513	7219	394	2066	551	1656	8917	1245	1338	
+
+M 84   6465	*	3766	3356	4372	5220	4310	5126	3255	4745	5525	3685	8061	4388	3604	3805	3432	4757	7494	3618	84
+       32	7069	6127	0	*	857	1159	8987	1001	1150	
+
+P 85   3591	7171	4965	4321	5787	5121	6090	5987	2940	6666	5547	5443	1793	4030	3248	3965	6405	5387	7300	7604	85
+       71	5102	5700	662	1442	*	0	8963	1350	1235	
+
+F 86   6895	*	*	7108	274	*	6481	7374	7508	4671	7093	*	6845	7300	*	5218	*	*	*	4437	86
+       46	6855	5446	1577	589	1756	507	8942	1134	1570	
+
+E 87   4530	*	2354	3440	6447	5019	4357	5893	4905	4705	5708	3587	3592	4582	4207	3371	4073	4693	*	6210	87
+       57	*	4687	0	*	843	1176	8907	1058	1716	
+
+K 88   4147	6818	4928	3142	5913	5119	5670	6267	3450	3364	6499	6379	2461	5814	3333	3201	4270	4654	*	*	88
+       135	6080	3748	1061	941	1612	572	8980	1086	1857	
+
+E 89   3712	*	5053	2761	4874	4960	5050	4847	2830	4756	6224	3574	5666	4549	3726	3460	4163	5570	7320	5160	89
+       138	7522	3543	2807	222	259	2604	8903	1000	2689	
+
+F 90   3667	6139	2859	4275	4988	4702	4426	7221	3142	3557	6306	3399	5371	4849	4028	3368	4761	7246	*	5143	90
+       75	6870	4572	0	*	1664	547	8971	1103	2447	
+
+T 91   5600	*	*	6788	*	5583	7290	4283	5170	5234	5889	4176	5235	5126	5999	3809	811	4409	*	7427	91
+       56	6802	5101	1426	671	521	1722	8866	1106	2598	
+
+S 92   4440	7001	4538	3001	5267	4404	6018	4570	3291	5889	6484	5248	5224	3746	3463	3433	3602	3599	6060	5236	92
+       6	*	7831	*	*	1118	891	8928	0	1937	
+
+D 93   4603	*	3339	3799	*	7496	6020	4768	2691	3828	5078	4186	3288	3734	3831	4514	3672	4522	*	7109	93
+       44	5051	*	691	1393	286	2476	8954	1549	1559	
+
+Y 94   4181	7233	4729	3216	*	2593	5104	4431	3198	4163	4343	6403	5996	3757	2986	4390	4959	*	*	5052	94
+       80	5498	4962	884	1126	0	*	9014	1372	1013	
+
+P 95   5782	7529	2791	3113	7241	6436	7171	4906	4021	4039	7793	4471	2085	7133	4801	4986	3176	4302	*	6139	95
+       31	6065	7315	1236	797	405	2031	8958	1201	1483	
+
+F 96   *	6809	*	*	168	6536	6924	7063	*	6726	*	7129	*	*	*	5238	*	7535	6525	6058	96
+       0	*	*	0	*	0	*	8995	1013	1160	
+
+Y 97   5961	6115	7558	6473	3571	*	2847	5741	4207	6286	5499	4260	6549	4342	3824	5025	3104	5185	4221	2244	97
+       63	*	4557	*	*	*	*	9019	0	0	
+
+V 98   5566	5553	4976	5063	4979	4145	6222	4687	3690	2896	5717	4155	5341	7494	4210	3561	3275	2444	*	6316	98
+       23	*	5975	*	*	1772	500	8937	0	1634	
+
+S 99   3271	*	2927	4097	5187	4503	6524	5390	6161	3531	7212	3302	4647	5730	5127	2799	3694	4456	6968	5074	99
+       52	7383	5098	0	*	*	0	9006	1000	1651	
+
+P 100  3961	7274	2248	3019	*	3771	5782	5756	3755	5854	7346	2751	4618	4390	5413	3285	5325	*	*	*	100
+       79	5822	4807	361	2177	1003	997	8955	1252	2144	
+
+T 101  4897	*	3715	5441	7100	1142	6317	5228	4518	7677	*	4153	7185	4516	5460	4206	3401	7128	*	4904	101
+       131	4353	4717	1676	541	1007	993	8944	1760	2067	
+
+E 102  4710	*	4618	2971	*	4759	7123	5702	2890	5280	6675	5161	6259	4059	2956	2602	2958	5389	*	6299	102
+       123	4132	5323	3422	141	446	1911	9008	1725	2122	
+
+M 103  5386	6311	5830	5019	7166	6442	7262	4381	3288	4287	7577	5420	3870	3285	3941	3103	2598	3393	6077	4955	103
+       88	4375	6526	1247	789	196	2979	9048	1835	1755	
+
+V 104  5113	*	4932	4836	6400	5828	6343	3140	3150	3757	4898	*	*	3876	4005	4593	3709	1968	*	5371	104
+       71	4863	6227	847	1171	0	*	9004	1592	1195	
+
+D 105  4927	7041	4380	3800	6433	5441	5880	7334	3160	3338	4081	3954	3807	3240	4074	3360	3698	5838	*	5715	105
+       13	7806	7900	2585	263	*	0	9000	1000	1146	
+
+V 106  3559	4499	*	*	7517	7332	7502	3762	5500	5564	5116	7066	6272	5635	6461	5745	4216	805	*	6455	106
+       7	*	7635	0	*	624	1510	9001	1000	1239	
+
+S 107  4741	*	3100	3059	7299	5717	4916	*	3316	6310	5190	5387	1706	4460	5574	4246	4503	5563	6344	*	107
+       28	7071	6380	762	1285	0	*	9011	1242	1119	
+
+M 108  4008	6913	7139	*	2949	5574	6725	5114	*	5336	1239	*	6464	7523	*	5856	3019	5109	7235	3440	108
+       16	*	6544	0	*	0	*	9012	1013	1112	
+
+M 109  6444	*	*	6922	5978	*	*	3324	7393	3009	592	7343	*	*	*	*	6036	5180	6045	7173	109
+       15	6599	*	1704	529	*	0	8975	1107	1058	
+
+S 110  4536	5359	6918	4214	4026	6166	2576	4265	3549	7302	7120	4574	7622	4757	3351	3406	4211	4872	5112	3592	110
+       0	*	*	0	*	2027	406	8970	1000	1271	
+
+M 111  4026	6715	4839	5665	6474	3346	5532	4456	3559	3770	5194	4496	7907	2921	3321	3483	3706	4906	5720	6244	111
+       2073	*	391	*	*	*	0	8970	0	1179	
+
+Y 112  *	5165	5083	4033	5072	*	4165	5237	3078	3512	*	5527	3644	5073	4312	4207	2417	3835	5453	4397	112
+       189	3670	4504	1194	829	43	5093	7185	1208	8029	
+
+G 113  3809	*	3919	3336	5802	5031	*	5511	3467	5165	5756	3537	6873	4275	3697	3129	2943	4209	7154	5181	113
+       46	5218	7713	514	1739	2445	293	9050	1577	1489	
+
+E 114  3417	*	2969	3182	6398	2005	6518	4743	4915	4370	*	4363	7531	6317	3583	3959	4824	6261	7233	6869	114
+       60	5262	6106	1872	460	1242	793	9053	1352	1588	
+
+A 115  4495	7705	3866	3497	5185	4425	3657	4230	4192	4482	5566	3179	6048	7182	3602	3802	4278	4237	5540	4211	115
+       27	7464	6310	0	*	1095	911	8947	1008	1645	
+
+F 116  4180	5696	7175	7712	1729	6073	6436	3808	7279	2515	4510	6094	*	7013	4559	5422	6299	3400	7208	3525	116
+       112	4143	5800	1111	897	875	1136	9053	1968	1514	
+
+N 117  4865	*	5256	4417	5000	4165	5436	6011	3060	3990	6059	3114	3230	4257	2466	4792	6209	6336	*	4267	117
+       78	4981	5570	2339	318	2264	337	9051	1411	1467	
+
+H 118  4520	6487	*	7064	3081	7380	3614	5284	7139	3602	5134	6005	*	6288	5372	7440	4262	4114	*	1251	118
+       30	7683	6020	653	1458	839	1182	9041	1193	1760	
+
+A 119  2168	5146	5023	7557	4440	2357	6264	5336	5461	4689	4958	5983	*	7087	4738	3971	4090	5315	5743	3138	119
+       68	5058	5940	614	1528	1246	790	9042	1388	1522	
+
+S 120  5587	*	2921	2479	5238	4890	4159	*	3908	5906	*	5822	6397	3532	3774	3809	5675	4107	*	2942	120
+       258	7235	2668	0	*	2486	284	9090	1011	1564	
+
+V 121  5578	5713	3178	5088	2895	4917	5946	3230	*	3221	5441	3968	*	5521	5987	3191	4252	3706	*	4072	121
+       62	5735	5433	2856	215	2141	371	8822	1234	3741	
+
+K 122  4337	7026	2458	2464	*	*	4650	7046	3888	6967	6966	4357	2815	3721	4965	3584	4535	7040	*	5983	122
+       323	5099	2543	1589	583	468	1851	8840	1304	3415	
+
+E 123  4067	6729	2416	2669	*	3538	4445	6066	3543	4979	*	3168	7280	4191	5112	4977	3865	7306	*	6182	123
+       238	7009	2792	1585	585	*	0	8862	1000	3735	
+
+S 124  4510	6610	3960	4519	4744	4224	5777	4233	4777	1217	6883	4533	4846	7260	7099	5053	6708	5226	4841	7031	124
+       4343	5259	113	981	1019	3823	106	8684	1190	5008	
+
+F 125  *	*	*	*	1878	2638	*	*	*	3560	*	2348	*	*	*	3327	3487	*	3363	*	125
+       844	1880	2547	1750	509	4602	61	4547	1195	8560	
+
+G 126  3865	*	1826	*	*	2960	3048	*	2841	*	*	3910	2925	4009	*	*	*	*	*	*	126
+       0	*	*	*	*	89	4059	5288	0	8492	
+
+N 127  5659	*	2578	3038	6715	2807	4277	7236	2807	6406	6146	3520	5399	4269	4536	4299	5774	5340	*	6386	127
+       0	*	*	*	*	878	1133	9010	0	1821	
+
+F 128  2167	3830	*	*	2258	6394	*	4041	6304	4019	6500	*	6449	*	*	3163	4948	3924	4555	3716	128
+       28	6861	6515	0	*	1139	873	9113	1039	1327	
+
+S 129  5512	*	5719	3043	6665	6850	4569	5789	2547	6490	6387	6282	6407	2393	3563	3707	2715	6147	7233	6003	129
+       9	7292	*	576	1603	1981	421	9101	1132	1370	
+
+I 130  2246	*	*	6503	4608	4228	*	2984	*	4254	3407	*	6539	*	6192	4653	7236	1708	5183	7297	130
+       0	*	*	2322	322	1570	593	9105	1013	1251	
+
+I 131  4332	7363	*	*	4665	6588	*	2264	*	1857	5527	*	*	*	*	6166	5182	1629	*	5389	131
+       7	*	7643	5000	46	*	0	9018	1004	1131	
+
+E 132  4882	7273	4890	1387	5130	5082	7486	5786	3813	7136	6321	6595	*	2851	3442	4375	4594	5225	*	6203	132
+       6	*	7973	*	*	*	0	9106	0	1235	
+
+L 133  *	6815	*	*	5738	*	*	2120	5403	832	3991	*	7307	*	*	7205	5933	3948	*	*	133
+       0	*	*	*	*	*	0	9107	0	1327	
+
+P 134  4616	*	4663	5226	5744	5575	7479	5454	4340	4769	6407	4664	859	7383	5778	4028	7476	5878	6902	5643	134
+       23	5997	*	643	1476	*	0	9107	1145	1327	
+
+Y 135  6475	5414	7770	6427	2207	5196	*	6248	6902	2484	4283	7260	7307	7005	*	6241	*	6326	*	1296	135
+       54	5023	7316	1182	838	2053	398	9107	1532	1327	
+
+V 136  3270	*	3804	3235	7412	3819	5861	5719	2710	4546	5061	4791	6841	4592	4713	2999	3619	4469	*	7958	136
+       71	4966	5973	1592	581	1140	872	9005	1677	1326	
+
+G 137  5044	5979	2466	3402	*	2274	4404	6080	4188	6430	*	2811	*	5383	4674	4446	3893	6267	7472	7473	137
+       1914	460	6981	941	1061	2229	346	9064	7832	1414	
+
+D 138  5282	5959	3419	3536	7579	3084	6587	*	3443	5333	7344	2796	4917	4019	2927	3726	4491	5873	7218	6976	138
+       75	4458	7572	2698	241	920	1084	9031	1707	1745	
+
+T 139  3770	5406	*	7477	2794	4979	7475	3656	6558	2245	4771	6130	7383	7256	5681	4190	4426	3546	5779	2978	139
+       16	6464	*	642	1477	2227	347	9064	1064	1413	
+
+S 140  3042	5924	5833	4621	6017	5589	7270	5935	4284	*	*	4125	*	4816	4475	1303	3654	5462	6931	4638	140
+       16	7211	7971	1891	453	1316	741	9063	1184	1304	
+
+M 141  4054	7215	*	*	3270	6070	*	4863	*	1998	1335	*	6812	6964	*	6002	5014	4701	7004	5397	141
+       13	6812	*	0	*	1867	462	9105	1128	1232	
+
+V 142  4402	*	7298	7285	3494	7502	5582	3090	*	2184	4299	5996	*	6133	6443	6379	4056	2470	4588	3310	142
+       0	*	*	*	*	971	1030	9011	0	1139	
+
+V 143  5457	*	*	*	3329	7493	*	1638	*	2311	6259	*	*	*	*	*	6199	1732	*	5513	143
+       31	6575	6547	2122	376	*	0	9014	1149	1013	
+
+I 144  5437	*	*	*	2707	6042	5925	1657	*	2176	4588	*	*	*	*	7420	*	2785	5852	4511	144
+       38	5499	7905	1539	608	790	1245	8970	1397	1179	
+
+L 145  5679	7211	*	*	4674	*	6805	3961	5464	814	3194	*	*	4860	*	*	7001	3197	*	6713	145
+       25	6503	7356	713	1359	1767	502	9104	1151	1209	
+
+P 146  5331	*	*	6534	*	6174	*	*	*	*	*	6968	147	*	*	5217	7497	7133	*	*	146
+       37	7394	5705	616	1525	*	0	9100	1119	1227	
+
+D 147  4400	*	1951	4728	6024	6066	4076	5258	2532	7145	*	3327	5395	5306	3648	4625	4945	4971	*	5197	147
+       126	5423	4046	1387	695	2108	381	9101	1429	1713	
+
+N 148  4042	7172	2696	2883	*	4860	5606	6277	2914	*	*	4355	4914	3490	4060	3580	3830	4500	*	6282	148
+       310	3625	3155	860	1155	573	1609	8995	2436	2445	
+
+I 149  4327	6295	3825	4299	7154	2575	6187	4090	3702	5825	6689	3888	3974	4850	2904	4130	4494	4487	*	5717	149
+       143	3619	6271	1479	641	840	1180	8905	2034	3092	
+
+D 150  3805	7400	2605	4639	3554	3213	*	5318	3880	4974	6315	3946	*	4861	6885	3902	3622	3684	7310	4390	150
+       54	5819	5725	1274	770	422	1981	9063	1498	2115	
+
+G 151  4480	6808	3040	4839	7278	1922	6272	7025	5545	6313	7259	3320	4121	4789	7715	2825	3344	6221	*	7208	151
+       44	5072	*	1803	487	1007	993	8992	1377	1536	
+
+L 152  5891	7017	6998	7063	4742	7077	*	3134	7043	781	4076	7156	4793	*	*	5963	6296	4023	7135	6352	152
+       50	6067	5729	591	1573	1691	535	9001	1129	1220	
+
+E 153  3340	*	3196	3228	7065	4436	6699	5535	3438	5795	6388	4723	4263	3551	3579	3074	4068	7335	7042	5197	153
+       35	5364	*	1812	484	2292	329	8974	1386	1482	
+
+S 154  3483	*	2996	2770	6332	6017	4418	*	3075	5466	7152	3832	6090	3197	4714	3871	4368	5261	6208	5201	154
+       54	5062	7143	385	2095	2052	398	8979	1335	1364	
+
+I 155  3789	6750	7016	*	3640	6356	*	2274	*	1490	5099	6824	*	7158	*	5759	6757	2610	*	5722	155
+       36	6446	6278	2078	390	*	0	8978	1090	1365	
+
+E 156  4074	*	5251	1795	5583	5758	5889	3523	7031	2640	4573	5824	6380	4493	6560	4396	6458	3023	*	7327	156
+       0	*	*	1585	585	2257	339	8963	1000	1599	
+
+Q 157  3579	*	3476	3456	6259	4918	6612	*	2674	6226	6394	3212	4402	3064	3417	3530	4773	*	*	7484	157
+       94	5115	4881	3132	175	707	1369	8979	1475	1456	
+
+N 158  3633	6981	4496	4179	5167	5392	4599	6160	2672	4149	*	3593	6325	4090	3065	3528	3720	5028	7287	5744	158
+       18	7436	7280	2585	263	2887	210	9064	1000	1629	
+
+L 159  5723	*	*	*	3615	*	*	2757	7279	870	3859	7298	*	*	5823	*	5749	3648	*	7254	159
+       51	5475	6340	722	1344	1270	773	9061	1226	1633	
+
+T 160  3934	*	3676	4306	5049	5727	7197	7017	3673	4482	6468	3219	4857	4913	4386	3452	2000	4819	*	6982	160
+       61	6097	5218	0	*	953	1048	9074	1260	1547	
+
+D 161  3028	*	3856	3806	6262	3059	4701	5687	3718	5263	5338	4924	3287	4351	4005	3613	4878	5297	*	4994	161
+       207	3291	4985	1373	704	2752	232	9070	2429	1653	
+
+T 162  3674	*	3436	2246	5901	4581	6232	5343	4461	5361	7427	4134	4491	3761	3643	3606	4127	5151	*	5400	162
+       104	3979	7330	803	1228	763	1283	9089	2160	2087	
+
+N 163  4029	*	3286	4784	5945	5714	4031	4744	3750	6343	5874	3457	5411	4333	3156	3719	2774	4092	7557	*	163
+       111	4462	5139	1952	431	1520	619	9098	1561	1703	
+
+F 164  6633	*	7785	*	2317	*	*	2718	7594	1399	4741	6100	*	*	7268	4557	*	3924	5303	4154	164
+       78	6363	4633	0	*	1541	607	9069	1151	1875	
+
+K 165  4406	5811	3974	4077	5547	4832	4351	4820	3901	3373	7221	4251	4850	3165	3395	3762	3768	5092	*	5013	165
+       80	4667	6079	1362	711	892	1117	9047	1897	2166	
+
+K 166  3799	*	4107	2987	5321	6044	5877	6345	3555	3824	7511	3929	7466	3373	3614	3091	3164	6866	*	5244	166
+       67	5358	5579	2371	310	1565	595	9087	1431	1719	
+
+W 167  4274	5186	7278	7346	4274	6402	5439	2305	*	1910	5101	*	6257	*	5883	7241	5626	4371	2504	4557	167
+       61	5462	5729	699	1381	1478	641	9076	1440	1831	
+
+S 168  5168	4232	4425	5066	3579	7396	6270	2785	4527	2478	4609	5743	6754	4678	3593	4065	4163	4093	*	7169	168
+       125	4323	4907	937	1066	1569	593	9100	1742	1807	
+
+D 169  3571	*	3376	3076	6903	4490	5087	*	3214	6170	7127	3681	*	4193	4065	2536	3547	4881	7490	*	169
+       161	3604	5410	1470	646	746	1309	9038	2285	1996	
+
+S 170  4393	*	4063	3881	*	3991	5231	*	2991	4553	5721	2486	6702	3066	3615	3359	4533	5796	*	*	170
+       115	3863	7035	1083	922	798	1236	9011	2071	1925	
+
+M 171  3987	6509	4781	5901	3221	4823	*	4914	5277	1801	2748	5708	6310	6533	5002	4256	4867	4093	*	5913	171
+       31	5850	7961	1011	989	639	1483	9082	1185	1453	
+
+D 172  4848	7813	4248	3445	7158	4857	6132	4619	2624	6072	6209	4219	4433	2993	3825	3501	3283	5413	*	5740	172
+       88	4262	7158	1051	951	*	0	9111	1860	1188	
+
+A 173  4972	*	3625	3683	6211	*	6287	5010	3250	3924	4292	6322	3365	4188	3156	3292	4238	4722	*	4051	173
+       62	4787	7368	1214	814	842	1178	9106	1488	1285	
+
+M 174  4034	7191	4284	3447	6050	4182	6346	5844	2566	6464	4766	5417	6994	4221	2674	3939	3366	4007	*	7307	174
+       57	4910	7530	1296	755	2293	329	9096	1477	1286	
+
+F 175  4138	6558	3248	3645	4329	4704	5166	5796	2770	4810	4560	4810	3721	4862	3545	4939	5953	5934	5525	3829	175
+       19	7241	7279	977	1024	858	1158	8987	1302	1452	
+
+I 176  3995	7500	7412	*	6425	5591	5481	2678	7227	2949	4042	*	*	*	6739	6290	4915	1134	*	7122	176
+       74	4327	*	1729	518	740	1317	9090	1777	1266	
+
+D 177  4159	6459	2723	2834	5220	5551	3302	*	3668	5619	5791	3887	6594	4526	3766	3998	4142	5120	6753	5494	177
+       29	5636	*	1351	718	0	*	9100	1184	1042	
+
+V 178  5604	5108	*	*	4137	*	*	2572	*	1421	5868	*	*	*	*	*	6589	1678	*	6395	178
+       0	*	*	*	*	*	*	9041	0	0	
+
+H 179  4095	*	*	4168	3842	4447	4568	5735	2881	4404	6318	5086	*	4205	3609	2864	2954	5310	6095	4574	179
+       0	*	*	*	*	*	*	9041	0	0	
+
+I 180  *	*	*	*	3915	*	7461	1939	*	1257	3328	*	6483	*	*	*	5695	3189	*	6766	180
+       0	*	*	*	*	*	*	9041	0	0	
+
+P 181  6766	*	*	6483	*	*	*	*	*	6635	*	*	61	*	*	*	*	6525	*	*	181
+       7	*	7621	*	*	*	*	9041	0	0	
+
+K 182  5728	6984	7330	5472	*	*	*	4724	1053	5025	5749	*	6496	3848	2281	5359	6893	4887	*	5467	182
+       39	5812	6837	1392	692	*	0	9111	1185	1000	
+
+F 183  6426	*	*	*	579	7335	*	3808	*	3253	5021	*	*	*	6618	*	5950	4404	5379	6942	183
+       20	6216	*	0	*	575	1606	9118	1349	1212	
+
+K 184  5046	*	4557	3256	6318	7230	6338	7339	2152	*	*	5110	*	3607	3249	2579	2691	5544	*	*	184
+       23	7571	6572	0	*	*	0	9116	1000	1119	
+
+V 185  4581	7081	5550	6119	4491	*	6175	1775	*	1801	4254	*	*	7454	*	6028	5048	2734	*	5403	185
+       8	*	7561	1114	894	532	1696	9074	1163	1283	
+
+T 186  5050	7171	3511	2359	*	6192	5384	5924	3341	5169	*	4391	6747	3840	3743	2284	3527	7341	*	*	186
+       0	*	*	592	1571	0	*	9121	1131	1131	
+
+G 187  4315	7574	4633	5098	3410	3975	4587	5369	4987	5187	5933	4051	*	4489	7016	2075	3166	4746	*	3689	187
+       35	5380	*	348	2224	*	*	9093	1281	0	
+
+S 188  5175	7092	3873	2947	7477	4234	4551	5083	2694	5747	*	4050	6391	3659	4869	2903	3012	6329	7113	*	188
+       34	5819	7571	430	1955	*	0	9090	1239	1000	
+
+Y 189  5935	6436	5804	5431	3437	6146	4192	3331	4874	2777	4502	5938	*	5151	5991	4125	3116	3097	*	3370	189
+       60	6428	5111	741	1316	0	*	9091	1201	1111	
+
+N 190  5337	*	1303	3143	6334	5362	5674	*	5088	6962	*	2819	5075	4490	6731	3396	6345	6439	*	5720	190
+       9	7371	*	0	*	1662	548	8941	1154	1413	
+
+L 191  3839	*	*	*	4163	*	*	3379	*	744	3372	*	6287	*	*	*	*	4110	7531	6886	191
+       0	*	*	3459	138	*	0	8924	1004	1251	
+
+V 192  4372	6965	6454	3270	6399	4017	7607	4256	2217	4752	7078	3621	7085	4478	3980	3394	3541	4322	*	6643	192
+       11	7029	*	1585	585	541	1677	8924	1125	1251	
+
+D 193  7037	*	2814	2604	*	3870	6956	6317	2844	7593	5604	3982	3155	3853	4742	3243	5291	6443	7186	*	193
+       40	6534	5925	1585	585	*	0	8951	1048	1004	
+
+A 194  2734	6456	7308	4688	4026	*	5349	3003	6047	2428	5073	7299	4263	5988	7198	4277	4110	2631	*	*	194
+       0	*	*	0	*	972	1029	8843	1126	1348	
+
+L 195  5478	*	*	*	2918	*	6473	4845	6776	507	5433	*	7045	*	*	6282	*	5024	*	6393	195
+       37	7278	5726	0	*	*	0	8851	1000	1117	
+
+V 196  3926	6553	4589	3263	5019	5381	6761	5752	2090	6378	5044	5080	4676	3055	2876	5259	4858	5335	*	7101	196
+       11	6990	*	1257	782	767	1279	8824	1119	1457	
+
+K 197  3021	7442	3571	3504	5959	3994	7241	*	2415	5177	*	3580	7315	3213	3847	3371	5699	6776	*	7382	197
+       62	4561	*	857	1159	*	0	8835	1553	1128	
+
+L 198  5131	*	5483	7254	4334	*	7215	3128	6387	1379	2261	6776	*	*	*	4254	5759	4146	6133	5965	198
+       10	*	7163	*	*	*	0	8835	0	1128	
+
+G 199  *	*	5367	5818	*	297	7300	*	4490	*	*	4646	*	6988	6347	5535	7522	*	*	7391	199
+       42	5699	6690	0	*	*	0	8828	1182	1255	
+
+L 200  4735	5480	*	*	4633	7208	7336	1839	*	1721	3567	*	7509	*	*	6754	6960	2500	*	5642	200
+       28	7084	6401	4322	74	500	1772	8797	1000	1402	
+
+T 201  5243	6240	4303	3141	*	3991	4858	6965	3100	5429	*	4092	3910	4821	4235	3827	2289	4308	*	6375	201
+       9	*	7331	2000	415	1805	487	8822	1000	1243	
+
+E 202  3947	7365	2338	3515	*	4639	5319	7417	3700	4680	*	4405	5656	3873	4012	3100	3452	5401	*	5160	202
+       80	7519	4374	0	*	*	0	8821	1004	1245	
+
+V 203  2540	*	*	*	*	7000	*	2471	*	1821	4241	7047	3400	*	*	4932	6039	2701	*	*	203
+       33	7252	5964	0	*	1553	601	8752	1111	2075	
+
+F 204  *	*	*	*	255	*	*	5640	7011	3635	*	*	*	*	*	6372	5645	*	5522	*	204
+       43	5451	7280	0	*	1952	431	8787	1269	2015	
+
+G 205  4792	*	2583	3626	*	4075	4852	5887	4359	7268	*	3438	4833	4525	5557	2626	2573	6219	*	6114	205
+       80	5048	5402	0	*	3022	190	8773	1430	1851	
+
+S 206  3998	*	3165	3183	*	4027	5236	5157	3603	5730	7474	3454	3296	3608	4253	3375	4236	6715	7218	*	206
+       384	4161	2493	1177	842	843	1177	8691	1969	2073	
+
+T 207  3787	*	3463	3287	5900	3057	*	6840	3750	5534	*	3613	4769	3737	4193	2809	3581	6662	*	6846	207
+       690	1433	6657	243	2687	274	2533	8549	4709	3530	
+
+G 208  888	6373	5082	5258	6087	3527	*	7240	6187	5808	5340	6248	3795	*	5636	4279	4540	5586	*	7166	208
+       32	7068	6121	0	*	344	2239	8647	1000	1515	
+
+D 209  5119	*	1076	3541	*	4771	5679	6706	5491	7137	*	2614	7292	4127	5978	5262	5685	5561	*	7317	209
+       20	*	6172	*	*	1380	699	8677	0	1240	
+
+Y 210  6134	*	*	7212	1240	*	*	6520	5966	1231	4524	*	*	7002	7107	6596	6996	7190	*	5710	210
+       10	*	7200	0	*	484	1811	8698	1000	1322	
+
+S 211  5097	7260	4404	5192	*	4191	5113	*	3704	5881	*	4470	3781	6260	3624	1337	3688	6222	*	6215	211
+       31	*	5560	1000	1000	*	0	8696	1013	1136	
+
+N 212  4230	7268	4516	4721	6885	1751	5962	6198	2885	*	7104	4180	4837	3935	3554	4415	4507	4343	*	*	212
+       0	*	*	0	*	1380	700	8659	1176	1505	
+
+M 213  *	*	*	*	3331	6899	*	1740	*	2083	2217	7093	6640	6729	*	*	6285	3820	*	4987	213
+       663	1548	5237	559	1638	1204	821	8662	4875	1273	
+
+S 214  3150	5838	4679	4283	4460	4446	*	7165	5137	5041	6558	5097	5916	5998	5633	1698	2313	5587	*	*	214
+       212	2873	*	1064	938	506	1757	8672	2997	1635	
+
+N 215  4429	7435	2341	2747	6533	3749	7113	*	3897	6275	*	2942	4560	3529	7241	3685	4296	4848	*	*	215
+       335	2791	3994	2298	328	*	0	8691	2818	1116	
+
+S 216  4833	*	3102	3181	6035	3138	5753	6639	3125	5374	*	3403	3720	6202	3780	3251	4525	4768	*	*	216
+       258	3047	4557	1217	811	160	3256	8593	2700	2019	
+
+D 217  4771	6674	3526	4945	5218	2972	7076	*	3383	4904	7030	2949	2624	4629	4286	3353	4998	5941	*	7185	217
+       46	7418	5304	1490	635	242	2693	8589	1084	1659	
+
+V 218  3527	7024	*	5361	4585	5825	6187	4014	6040	1542	4896	7267	3392	5913	*	4246	4051	3134	6834	*	218
+       35	5895	7192	1239	795	771	1272	8561	1417	1378	
+
+S 219  4080	5065	6139	6937	3892	5661	3690	6093	3463	4700	5713	6711	5163	4947	2692	3765	5102	5358	5533	2412	219
+       23	5999	*	2332	319	0	*	8599	1110	1198	
+
+V 220  *	7141	6953	*	6036	*	*	2308	6637	1663	7294	*	5112	*	*	5675	7122	1397	*	*	220
+       0	*	*	*	*	*	*	8615	0	0	
+
+D 221  4045	*	2709	6170	5639	3212	*	*	5989	*	*	3717	7122	4364	5064	1587	3078	6913	*	7057	221
+       0	*	*	*	*	*	*	8615	0	0	
+
+A 222  3652	*	2940	2700	7289	3799	4425	7191	2652	5424	6731	5241	*	4234	4767	3128	4052	5516	*	*	222
+       12	*	6955	*	*	*	*	8615	0	0	
+
+M 223  2748	7062	*	7039	3227	7230	*	2019	*	3632	4094	*	*	*	*	6761	7083	1680	*	6949	223
+       37	5285	*	2958	199	0	*	8599	1274	1015	
+
+I 224  4083	*	7210	5198	3550	7225	*	2653	3779	2717	4907	5266	*	5206	4186	4987	3962	2847	*	4187	224
+       0	*	*	*	*	*	*	8615	0	0	
+
+H 225  6818	*	*	*	*	*	1167	*	7265	*	6955	4679	*	1282	7079	4277	6637	6393	*	*	225
+       9	*	7280	*	*	*	*	8615	0	0	
+
+K 226  3985	7168	4483	3556	*	6367	5779	*	1563	7120	5891	5558	*	3370	3185	3071	5488	5450	6999	7061	226
+       0	*	*	0	*	0	*	8596	1013	1013	
+
+T 227  1682	4651	7118	*	6630	5053	*	4455	*	5190	5497	4416	6981	*	7068	3599	2590	2357	*	*	227
+       0	*	*	*	*	*	*	8604	0	0	
+
+Y 228  4489	7243	7172	4805	3784	5199	*	3698	3908	3618	4403	5092	*	4157	4202	3161	3537	3283	*	3418	228
+       0	*	*	*	*	*	*	8593	0	0	
+
+I 229  5632	*	*	7198	2666	*	*	1552	*	1838	3984	*	*	*	*	*	*	2926	*	*	229
+       0	*	*	*	*	*	*	8593	0	0	
+
+D 230  5255	*	3686	1414	7016	6424	*	7031	2708	7231	*	4884	*	4609	3984	4225	3598	4281	*	6872	230
+       0	*	*	*	*	*	*	8584	0	0	
+
+V 231  5460	7180	*	*	3903	*	*	2479	*	2546	3864	7328	*	*	*	6458	6170	1180	6455	*	231
+       26	7000	6626	2322	322	*	*	8584	1012	0	
+
+N 232  5030	6699	1325	5830	6936	4792	5574	*	5081	*	*	2324	*	5046	*	3115	3394	*	*	7008	232
+       10	*	7205	*	*	0	*	8536	0	1026	
+
+E 233  4850	*	4870	361	*	7095	7002	6197	5830	*	*	6956	6980	6511	5303	5817	5868	6703	*	6690	233
+       0	*	*	*	*	*	0	8556	0	1013	
+
+E 234  5237	*	2678	2640	*	5018	7118	5429	2690	4912	7246	3371	*	3893	3649	4126	4700	4712	*	5428	234
+       20	6962	7496	629	1500	0	*	8533	1115	1013	
+
+Y 235  7217	*	*	4946	*	192	*	*	6641	*	*	6413	5775	*	7189	6760	6069	*	6961	7249	235
+       49	5985	5806	0	*	*	0	8483	1115	1000	
+
+T 236  3652	7149	6916	4449	5298	5396	5803	3932	5635	4102	6903	6074	6880	*	6976	3336	1351	3088	*	*	236
+       41	5609	7060	1651	553	0	*	8468	1354	1348	
+
+E 237  5263	*	4603	1759	5892	3802	6909	5423	3440	*	6888	4837	5843	5415	3397	4296	3380	3629	*	5796	237
+       37	5809	7085	0	*	*	0	8469	1110	1013	
+
+A 238  813	*	6116	4670	5884	4328	*	5852	*	*	6384	6531	3782	5933	7052	3604	4294	4625	*	*	238
+       10	*	7247	0	*	1109	898	8422	1000	1119	
+
+A 239  1469	*	4677	4709	7039	3057	5910	5857	4914	6663	6930	6957	4567	4834	6871	3117	3311	4984	*	7118	239
+       0	*	*	0	*	1205	820	8428	1000	1107	
+
+A 240  899	*	5685	5375	*	3839	6757	5717	5682	5909	*	5256	4979	4929	4969	2880	5674	7011	*	*	240
+       0	*	*	2000	415	0	*	8279	1013	1013	
+
+A 241  1812	5183	5682	5029	5769	4172	*	5088	4777	6435	*	6916	4662	5919	*	3210	4155	2063	*	5758	241
+       12	*	6899	*	*	*	*	8238	0	0	
+
+T 242  4098	*	*	*	*	*	*	6384	6871	5554	5333	4438	5838	5705	6648	2546	785	5035	*	*	242
+       58	6680	5084	1891	453	*	0	8195	1089	1013	
+
+S 243  2093	5770	*	4320	*	3018	6370	5246	4831	*	*	4749	6300	5013	4919	3074	4473	2633	*	4026	243
+       0	*	*	508	1753	0	*	7887	1179	1274	
+
+A 244  1978	*	5839	*	4103	4666	*	3729	*	5549	4632	*	5688	*	*	2743	5589	1810	5701	*	244
+       0	*	*	*	*	*	*	7290	0	0	
+
+L 245  *	*	*	*	2581	*	*	1591	*	998	*	*	*	*	*	*	*	*	*	*	245
+       0	*	*	0	*	*	*	3368	0	0	
+
+//
+�HHsearch 1.5
+NAME  9c68b86897cc76a533b3376c5680b606
+FAM   
+FILE  9c68b86897cc76a533b3376c5680b606
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:24:46 2013
+LENG  130 match states, 130 columns in multiple alignment
+FILT  63 out of 65 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  5.1 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCEEEEEECCCCEEEEEECCCCEEEEEEECCCCCCCCCCEEEEEEECCCCCCCCCCCCCEEEEEEEECCCCCCCCEEEEEEEEEEECCCCEEEEEEE
+EEEECCCCCCHHHEEECCCCCEECCCCCCC
+>ss_conf PSIPRED confidence values
+9445608999668999999978998899998877545788520022431376436558988739999995667777676989899876099234999899
+998225574557719678867885350469
+>Consensus
+xxcxlxGxWxNelGSxmxIxxxxxGxixGxYxTxvxxxxxxxxxxGxxxxxpxxgxxxxxxxtfxFsVxWxxxxxxxxStTxWtGqcxxxxxexlxTxWx
+lxxxxxxxdxWxatxvGxDxFtrxxxxxxx
+>9c68b86897cc76a533b3376c5680b606
+AEAGITGTWYNQLGSTFIVTAGADGALTGTYESAVGNAESRYVLTGRYDSAPGRGDSVGSGTALGWTVAWKNNYRNAHSATTWSGQYVGGAEARINTQWL
+LTSGTTEANAWKSTLVGHDTFTKVKPSAAS
+>gi|76809171|ref|YP_333887.1| putative exported avidin family protein [Burkholderia pseudomallei 1710b]gi|167719107|ref|ZP_02402343.1| putative exported avidin family protein [Burkholderia pseudomallei DM98]gi|167815293|ref|ZP_02446973.1| putative exported avidin family protein [Burkholderia pseudomallei 91]gi|167845243|ref|ZP_02470751.1| putative exported avidin family protein [Burkholderia pseudomallei B7210]gi|167902241|ref|ZP_02489446.1| putative exported avidin family protein [Burkholderia pseudomallei NCTC 13177]gi|76578624|gb|ABA48099.1| putative exported avidin family protein [Burkholderia pseudomallei 1710b]
+-----IGSWLNELGSTMtIASISGTGAITGTYVSPSGTTGQTFSLSGWFYAAPPANNGLDQVTLVTFSVNWNNTAARYNSITTWSGLCQitNN-VPTITA
+LYYYSNAF-AQYSWKHVNVGQDIFHPIAP----
+>gi|62909782|emb|CAI84979.1| single chain avidin precursor [synthetic construct]
+-KCSLTGKWTNDLGSNMTIGAvNSRGEFTGTYITAVTATSNE------IKESPLHGTqntinkrtqptfgftvnwkfseggsgsgsgsGSgRTQPTFGFT
+VNWK----FSESTTVFTGQCFIDrnGKEVLKTMWLLRSSVnDIGDDWKATRVGINIFTRLRTQ---
+>gi|163759983|ref|ZP_02167067.1| hypothetical conserved protein [Hoeflea phototrophica DFL-43]gi|162282941|gb|EDQ33228.1| hypothetical conserved protein [Hoeflea phototrophica DFL-43]
+------SNWVNQSGSVAQFvftpsptQPQTY-EVSGNYINnaqGTGCKGTPYPLSGAYYS---------GNQIISFSVVWSNASANCQSATGWTGYFdFS
+GSQAVLKTDWNLAFYSGST---PAIQQGQDDFMQSVAT---
+>gi|115893467|ref|XP_001199294.1| PREDICTED: similar to fibropellin Ia [Strongylocentrotus purpuratus]gi|115930644|ref|XP_001178415.1| PREDICTED: similar to fibropellin Ia [Strongylocentrotus purpuratus]
+--------------------------endvdecasfpclngaicsnQENQFVC-------------------tcVLG-----------------------
+----WTGiNCQi-DIDECASDPCQNGAL--CSDlINRYECQCLPGWTgvNYigeltrdsdm------
+>gi|115893457|ref|XP_781372.2| PREDICTED: similar to fibrosurfin [Strongylocentrotus purpuratus]gi|115930654|ref|XP_001178907.1| PREDICTED: similar to fibrosurfin [Strongylocentrotus purpuratus]
+-YCDLEGVWYNELNDRITITGTTTGMLLGDYKDSVELLTG------YSAATVVVGYaNrNCDFPSFGFVVTRDN----GLSTTSWSGQCHlCDGEEVLYT
+TWTNTQRVtTCAEVKRATLIGQDKWTRYQQST--
+>gi|90423149|ref|YP_531519.1| avidin/streptavidin [Rhodopseudomonas palustris BisB18]gi|90105163|gb|ABD87200.1| Avidin/streptavidin [Rhodopseudomonas palustris BisB18]
+-QAQVSWTWTNQYGSVLAITTynQSNGAITGTYTNKAAgscDDGKPQAAAGWLAA-------GNTGSAISFSVNFA----GCSSTTVWTGQLNSN--AGF
+QGLWLLSLAE--PVAWNGISAGADTFTFSS-----
+>gi|256395584|ref|YP_003117148.1| hypothetical protein Caci_6456 [Catenulispora acidiphila DSM 44928]gi|256361810|gb|ACU75307.1| conserved hypothetical protein [Catenulispora acidiphila DSM 44928]
+----WVGTWHNQYGSRLTITDESDHRIQGSFRTALGDSAFA----G--EEAEISGIHQGECITFNFSTS----SATGESICSFTGLLR---EGKLQTLWH
+VVSDSavKppapgeqaqlMKLPwAHAVLTNADTFTRD------
+>gi|73539298|ref|YP_299665.1| hypothetical protein Reut_B5476 [Ralstonia eutropha JMP134]gi|72122635|gb|AAZ64821.1| hypothetical protein Reut_B5476 [Ralstonia eutropha JMP134]
+---SIAGTWRNEYGSLMTLSVgDgvAPGALRGLYRSSTGSVGS-YLVAG-FAAAQAVS--LDHGQPVALSICWHSLGGeQadpsWQWTSGLSGQLSvVDG
+EEVLTLSHL------------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+A 1    860	*	*	*	*	*	*	*	1155	*	*	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1523	0	0	
+
+E 2    *	*	*	1897	*	*	*	*	3821	*	*	*	3753	2751	3517	3626	*	*	*	1890	2
+       0	*	*	*	*	*	*	3427	0	0	
+
+A 3    2729	483	*	*	*	*	*	*	*	*	*	*	*	*	*	2902	*	*	*	*	3
+       86	*	4117	*	*	*	*	3701	0	0	
+
+G 4    *	*	1749	5661	*	3900	*	5594	5358	4030	5680	2414	*	3853	5191	2282	*	*	*	*	4
+       0	*	*	*	*	0	*	4702	0	1007	
+
+I 5    *	*	*	*	4791	*	*	2708	*	828	5368	*	5261	*	*	*	*	3230	3462	*	5
+       0	*	*	4459	67	*	*	5185	1000	0	
+
+T 6    5089	*	4318	3269	*	*	5583	4000	5083	4775	*	4383	*	3634	*	2620	1928	3139	*	*	6
+       0	*	*	*	*	*	*	5276	0	0	
+
+G 7    *	*	*	*	*	165	*	*	*	*	*	*	*	*	*	3836	*	*	4716	*	7
+       0	*	*	*	*	*	*	5441	0	0	
+
+T 8    4702	*	*	4103	4594	*	*	*	3893	3647	6431	4774	*	5126	5258	3617	1462	2976	6236	5204	8
+       0	*	*	*	*	*	*	5534	0	0	
+
+W 9    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	9
+       0	*	*	*	*	*	*	5534	0	0	
+
+Y 10   *	*	6570	5310	4718	5842	5595	6590	2736	4029	*	*	*	4835	2589	*	3580	3429	*	1792	10
+       0	*	*	*	*	*	*	5534	0	0	
+
+N 11   *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	11
+       0	*	*	*	*	*	*	5534	0	0	
+
+Q 12   *	*	2960	1228	*	*	*	*	6117	*	*	4535	*	1544	*	4507	*	*	*	*	12
+       0	*	*	*	*	*	*	5534	0	0	
+
+L 13   *	3554	5466	*	*	*	5579	5945	5430	866	*	*	*	5892	5204	4495	*	5748	*	2504	13
+       0	*	*	*	*	*	*	5534	0	0	
+
+G 14   *	*	4516	*	*	345	5944	*	*	*	*	2713	*	*	*	*	*	*	*	*	14
+       0	*	*	*	*	*	*	5534	0	0	
+
+S 15   *	*	3124	*	*	*	*	*	*	*	*	*	*	*	*	220	5218	*	*	*	15
+       0	*	*	*	*	*	*	5534	0	0	
+
+T 16   *	*	*	3470	*	*	*	4426	3510	4545	*	2997	*	3373	3788	6310	1712	3053	*	*	16
+       0	*	*	*	*	*	*	5534	0	0	
+
+F 17   5410	*	*	*	5734	*	*	3440	*	1607	1088	*	*	*	*	*	*	3905	*	*	17
+       70	4398	*	402	2041	*	*	5534	1132	0	
+
+I 18   4248	*	5470	4048	5564	*	*	2467	4866	4382	*	5874	*	4279	4974	4666	1358	5211	*	5434	18
+       0	*	*	*	*	0	*	5523	0	1000	
+
+V 19   4998	*	*	*	4774	*	*	745	*	2151	*	*	*	*	*	5953	*	3409	*	*	19
+       115	5410	4229	2807	222	*	*	5534	1040	0	
+
+T 20   3900	*	5457	3106	6148	4347	4055	5822	5775	*	*	4162	*	3978	4913	2819	1954	4234	5100	*	20
+       48	4943	*	512	1743	0	*	5477	1249	1179	
+
+A 21   2166	*	3135	5972	*	6234	4594	4998	3183	6038	*	5514	4469	3354	*	3610	4555	3102	*	5042	21
+       590	2071	3354	221	2815	*	*	5534	2016	0	
+
+G 22   4349	*	2031	5431	5871	4797	*	*	*	*	*	2521	5739	4455	5416	2355	2701	5729	*	*	22
+       220	3297	4658	563	1631	0	*	5388	1341	1403	
+
+A 23   3040	*	4185	3983	*	3803	*	*	2723	*	*	3154	*	6087	*	2000	4189	3538	*	5704	23
+       0	*	*	*	*	0	*	5488	0	1067	
+
+D 24   4601	*	1976	4505	5588	3198	*	*	*	*	*	3019	5269	5468	4550	3581	2257	*	*	5413	24
+       77	*	4258	*	*	*	*	5533	0	0	
+
+G 25   *	*	*	*	*	310	5551	*	*	*	5471	5170	5585	*	*	4573	4822	5400	*	*	25
+       34	5438	*	0	*	0	*	5443	1024	1185	
+
+A 26   2436	*	*	2790	4934	5906	4800	3728	4785	4239	3119	5588	*	5086	4398	3244	3437	6639	*	*	26
+       0	*	*	4322	74	*	*	5533	1188	0	
+
+L 27   *	*	*	*	2640	*	*	1610	*	1680	4182	*	*	5234	*	*	*	3079	*	*	27
+       0	*	*	*	*	*	*	5610	0	0	
+
+T 28   4204	*	7049	4352	6411	*	*	*	*	2711	5562	6719	*	3996	3631	2272	1922	3648	*	*	28
+       0	*	*	*	*	*	*	5610	0	0	
+
+G 29   *	*	*	*	*	39	*	*	*	*	*	5234	*	*	*	*	*	*	*	*	29
+       0	*	*	*	*	*	*	5610	0	0	
+
+T 30   5987	*	3388	2883	4911	*	6078	*	3683	4641	*	4701	*	4428	*	2582	1871	4012	*	*	30
+       0	*	*	*	*	*	*	5610	0	0	
+
+Y 31   *	*	*	*	2650	*	4995	*	*	5655	*	*	*	*	*	*	*	*	*	341	31
+       38	5262	*	0	*	*	*	5610	1037	0	
+
+E 32   *	*	*	4221	6165	4474	3293	3311	4583	4005	3874	*	*	3250	2506	4174	3522	3494	*	*	32
+       0	*	*	*	*	*	*	5610	0	0	
+
+S 33   5262	5234	6311	*	*	*	*	*	*	*	*	2992	*	*	*	1729	979	*	*	*	33
+       187	3855	4248	1585	585	*	*	5610	1283	0	
+
+A 34   1327	*	*	*	4876	3382	6372	*	4365	5549	*	3308	3145	*	4607	3718	5087	*	*	5111	34
+       53	4804	*	1749	509	1691	535	5488	1084	1309	
+
+V 35   4793	*	*	6204	4334	*	*	6043	*	3777	*	5227	*	*	*	3169	2967	943	*	5221	35
+       0	*	*	*	*	*	0	5533	0	1188	
+
+G 36   2807	*	*	1830	*	1398	*	*	*	*	*	*	5219	5292	*	3833	3760	*	*	*	36
+       81	4195	*	1411	681	*	0	5533	1204	1188	
+
+N 37   3842	3414	2477	3854	*	*	*	6204	5756	4075	*	5741	5541	5953	3228	2536	2636	*	*	*	37
+       0	*	*	*	*	*	0	5533	0	1188	
+
+A 38   3489	*	4648	4849	*	*	*	*	5413	3771	6780	3516	*	3231	*	2686	1877	3605	*	5221	38
+       159	*	3265	*	*	*	0	5533	0	1188	
+
+E 39   3502	*	*	4689	*	1622	*	4620	6156	4364	*	3166	3329	3920	4557	4947	3741	*	*	5792	39
+       20	6170	*	0	*	1629	563	5214	1005	1754	
+
+S 40   5656	*	*	6056	3684	1341	*	5115	2940	*	*	5095	5018	3590	*	3005	4365	5856	*	*	40
+       237	*	2724	*	*	*	0	5422	0	1491	
+
+R 41   2670	5496	6356	4624	4245	5455	4991	5650	5260	*	*	4301	2061	4861	5402	4375	2595	4244	*	*	41
+       875	4206	1321	1585	585	3377	146	5271	1062	2160	
+
+Y 42   4268	*	*	*	2312	*	*	3694	*	*	*	*	*	4079	*	4567	3485	*	*	1063	42
+       49	*	4913	*	*	*	0	4785	0	3367	
+
+V 43   5001	*	*	*	*	3800	4984	*	*	2644	*	*	1458	4322	*	3351	*	2370	*	*	43
+       68	4437	*	1000	1000	2945	201	4778	1000	3412	
+
+L 44   3812	*	*	*	*	4740	*	2989	*	1458	3892	*	3650	*	*	*	*	1975	*	*	44
+       55	4740	*	1000	1000	2554	269	4815	1007	3131	
+
+T 45   2092	*	*	*	*	*	*	3644	*	3165	*	4903	5297	*	*	2274	2913	2510	*	*	45
+       0	*	*	*	*	2542	272	4980	0	2796	
+
+G 46   *	*	*	*	*	185	*	5104	5042	*	*	*	*	*	*	5085	*	*	*	5001	46
+       399	*	2049	*	*	4626	60	5189	0	2503	
+
+R 47   3901	*	4776	*	4618	3542	3561	4806	*	*	*	*	5016	*	2978	4581	*	*	1709	2797	47
+       141	5500	3816	0	*	940	1062	4851	1000	3146	
+
+Y 48   3289	5040	*	4432	3150	*	5519	2527	*	3861	5580	*	5039	*	*	4078	3630	3435	*	2640	48
+       28	5680	*	2807	222	768	1277	5087	1024	2229	
+
+D 49   2963	*	5674	5571	5297	4135	5255	*	3636	4967	4694	3076	5416	3708	3450	4554	3574	*	*	2889	49
+       225	5942	2964	0	*	1393	691	5452	1000	1480	
+
+S 50   2076	*	5142	3482	*	5418	5557	4817	4244	3489	5492	3250	5211	5717	6566	3230	3905	4488	*	5557	50
+       180	*	3092	*	*	*	0	5343	0	1845	
+
+A 51   2010	*	*	*	*	4421	6009	4050	*	4255	*	*	2342	4449	*	1806	4389	*	*	*	51
+       92	4020	*	0	*	4015	92	5069	1131	2294	
+
+P 52   5300	*	4996	5345	*	*	*	*	5372	5548	5140	4266	891	3626	5666	3884	*	3554	*	*	52
+       121	4996	4354	1208	818	2072	392	5117	1309	2276	
+
+G 53   2840	*	*	*	*	2536	*	3665	*	2310	5474	5186	3342	5646	*	4661	5877	2455	*	*	53
+       74	*	4314	*	*	3167	170	5105	0	2153	
+
+R 54   3924	*	5104	*	5199	5291	6694	5540	6196	2420	4367	5871	*	4765	3400	2886	3589	2369	*	6423	54
+       191	3649	4494	822	1203	1712	526	4997	1309	2271	
+
+G 55   *	*	6098	*	*	721	*	5244	4609	*	*	5404	4557	*	*	2404	4811	5592	*	*	55
+       240	*	2707	*	*	*	0	5169	0	2031	
+
+D 56   4368	*	4177	5600	*	4179	*	3150	*	*	5480	4312	3610	3858	4446	3598	3743	3299	*	2479	56
+       908	1205	4908	1638	559	3203	166	4915	2385	2651	
+
+S 57   4564	*	3849	*	*	2656	3938	*	2903	3971	*	2876	4467	3768	4751	3273	4832	*	4775	*	57
+       26	5807	*	0	*	1797	490	4891	1000	2597	
+
+V 58   6111	*	3566	4767	4992	3728	5822	4742	4492	2767	*	3086	*	3351	3831	3918	3527	3793	*	*	58
+       81	4202	*	2752	232	4135	85	5104	1170	2147	
+
+G 59   4741	4888	2694	4533	*	1375	*	*	4283	*	*	3408	5713	*	6100	4685	4415	5006	*	4335	59
+       54	4775	*	1000	1000	1290	759	5127	1060	2082	
+
+S 60   4541	5130	2351	3705	*	3661	5123	*	4575	4922	*	2921	*	2734	*	4317	3059	5606	*	*	60
+       105	5208	4525	639	1483	686	1402	5322	1040	1623	
+
+G 61   *	3732	*	*	2920	1939	5040	*	6082	4887	*	3582	3576	2472	5832	*	*	3820	5892	*	61
+       51	*	4853	0	*	835	1186	5291	1000	1527	
+
+T 62   *	6221	5085	*	*	5886	*	3734	3964	*	*	*	1283	4297	*	4059	2156	4187	*	*	62
+       63	*	4557	*	*	*	0	5499	0	1338	
+
+A 63   2663	*	*	*	5507	5149	*	5351	*	2874	*	5215	5168	*	*	2876	1243	5824	*	*	63
+       0	*	*	*	*	708	1366	5259	0	1606	
+
+L 64   *	*	*	*	938	*	4889	2429	*	3017	*	*	*	*	*	*	*	2886	*	*	64
+       0	*	*	*	*	*	0	5530	0	1188	
+
+G 65   2224	*	*	*	*	1274	*	*	*	*	*	5606	*	*	*	2746	2887	4620	*	5212	65
+       50	*	4889	*	*	*	0	5530	0	1188	
+
+W 66   *	*	*	*	351	5169	*	5838	*	3851	5578	*	*	*	*	*	*	*	3636	*	66
+       0	*	*	*	*	1482	639	5499	0	1338	
+
+T 67   4226	*	*	*	5758	4256	*	6127	*	6342	6209	5522	*	*	*	1209	1793	3430	*	*	67
+       0	*	*	*	*	*	0	5530	0	1188	
+
+V 68   *	*	*	*	4889	5220	*	3140	*	*	*	*	*	*	*	*	4536	353	*	*	68
+       0	*	*	*	*	*	0	5530	0	1188	
+
+A 69   3409	5271	*	*	6313	4426	3868	5223	3846	3608	6164	2402	*	4474	5334	3660	4176	3035	5921	5155	69
+       159	5002	3779	0	*	*	0	5530	1061	1188	
+
+W 70   *	*	5990	*	3222	*	5053	*	*	*	*	*	*	*	3819	*	5953	*	396	*	70
+       0	*	*	*	*	*	0	5292	0	1533	
+
+K 71   3967	*	2468	3516	*	4182	5168	4774	3524	4485	*	2259	*	4450	3996	3735	*	5360	*	*	71
+       597	*	1561	*	*	*	0	5292	0	1533	
+
+N 72   5244	*	*	*	4828	*	4765	*	2960	*	*	1231	5592	4553	*	3000	3217	4284	*	*	72
+       1181	*	839	*	*	*	0	4822	0	2966	
+
+N 73   3629	*	*	3554	*	*	*	3884	*	3525	*	2746	3062	*	*	2170	2408	*	*	*	73
+       344	4119	2692	1585	585	3141	174	3386	1000	4081	
+
+Y 74   3454	*	*	*	*	3833	*	*	*	*	*	3808	*	4305	*	2213	2850	3845	4105	2093	74
+       158	*	3266	*	*	4983	46	3782	0	3920	
+
+R 75   1099	*	3787	2923	*	2806	*	*	*	*	*	*	*	*	3806	3130	*	*	*	*	75
+       196	3847	4116	0	*	1333	730	3876	1041	3940	
+
+N 76   *	*	4583	*	1960	3096	*	*	5053	*	*	2202	*	3043	3283	4812	4841	4560	*	*	76
+       64	4518	*	2000	415	432	1951	4728	1041	2945	
+
+A 77   3404	2859	*	5328	4963	1505	*	5852	*	*	*	*	*	*	*	2926	5964	3822	5167	3396	77
+       0	*	*	*	*	917	1088	5248	0	1488	
+
+H 78   4034	*	3021	3155	*	2754	4196	*	5885	4589	*	2602	*	3206	3887	4668	4005	*	*	*	78
+       0	*	*	*	*	*	0	5288	0	1188	
+
+S 79   3756	*	*	5182	*	*	*	*	5507	*	*	*	*	*	*	371	4815	4609	5221	*	79
+       0	*	*	*	*	*	0	5288	0	1188	
+
+A 80   3057	4847	*	*	5182	*	*	2189	*	5477	5766	*	*	*	*	*	1146	3245	*	*	80
+       0	*	*	*	*	*	0	5288	0	1188	
+
+T 81   6257	4404	*	*	*	*	*	*	5182	*	*	*	*	*	*	2529	491	5193	*	*	81
+       32	5507	*	1000	1000	*	0	5288	1012	1188	
+
+T 82   2197	*	*	*	*	3425	*	*	*	*	*	*	*	*	5182	1779	2639	2257	*	*	82
+       0	*	*	*	*	0	*	5288	0	1188	
+
+W 83   *	*	*	*	2210	*	*	*	*	5278	*	*	*	*	*	*	*	*	451	5241	83
+       0	*	*	*	*	*	*	5388	0	0	
+
+S 84   4340	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1971	1109	2108	*	*	84
+       0	*	*	*	*	*	*	5388	0	0	
+
+G 85   3702	*	*	*	*	115	*	*	*	*	*	*	*	*	*	*	*	*	*	*	85
+       47	4950	*	0	*	*	*	5388	1188	0	
+
+Q 86   *	*	*	5592	5503	*	*	6222	*	3015	5327	4950	*	636	*	*	3711	*	*	4534	86
+       0	*	*	*	*	*	*	5388	0	0	
+
+Y 87   5643	615	*	*	4661	6114	*	5223	*	2788	*	*	*	*	*	*	*	*	*	3302	87
+       177	3111	*	962	1039	*	*	5388	1482	0	
+
+V 88   *	5884	*	6088	1727	6098	3026	4539	5203	6318	*	4830	*	2988	3047	4458	*	3077	*	*	88
+       843	1490	3531	110	3769	*	0	5372	2636	1000	
+
+G 89   *	1941	*	4502	*	3720	*	3306	5505	5954	*	2984	4930	4623	4629	3187	5914	3138	*	*	89
+       149	3348	*	0	*	1504	627	5079	1320	1673	
+
+G 90   4863	5532	1512	4713	*	1763	*	*	5336	5771	*	2595	*	*	*	5102	5441	*	*	*	90
+       335	3324	3220	586	1582	2679	245	5185	1378	1412	
+
+A 91   4594	*	3303	3970	*	1651	*	4816	4919	*	*	3837	5408	4498	3584	2884	*	4327	*	*	91
+       308	2379	*	1000	1000	838	1183	5029	1669	1786	
+
+E 92   4639	5509	4046	1826	*	*	4078	*	2812	*	*	4656	4710	3169	4278	4259	4457	4173	*	*	92
+       56	*	4705	*	*	832	1191	5251	0	1379	
+
+A 93   3059	*	5008	1197	*	2789	*	*	6207	*	*	*	2635	4821	5820	*	4630	*	*	*	93
+       92	4569	5687	0	*	314	2353	5295	1087	1271	
+
+R 94   4544	4926	*	3587	*	4820	*	4988	2631	5569	5139	*	*	4376	4346	*	3583	1387	*	*	94
+       0	*	*	0	*	919	1085	5375	1000	1063	
+
+I 95   4943	*	*	*	4836	*	*	1674	*	913	3503	*	*	*	*	*	*	*	*	*	95
+       0	*	*	*	*	*	0	5391	0	1000	
+
+N 96   5791	*	*	4090	*	*	4033	*	2693	2808	*	4369	5214	2750	5018	3808	3636	5628	*	2858	96
+       0	*	*	*	*	*	0	5391	0	1000	
+
+T 97   3190	*	4943	5820	*	4836	*	*	*	5269	6447	*	*	*	*	6071	409	*	*	*	97
+       0	*	*	*	*	*	0	5391	0	1000	
+
+Q 98   6447	*	5422	*	5778	*	*	5593	4775	2085	3047	*	4943	4207	*	2976	1857	4531	*	*	98
+       26	5820	*	0	*	*	0	5391	1000	1000	
+
+W 99   *	4943	*	*	*	*	5269	*	*	*	*	*	*	*	*	*	*	*	118	5658	99
+       0	*	*	3459	138	0	*	5391	1000	1000	
+
+L 100  *	*	*	*	5241	*	3655	3074	*	1489	4306	4534	*	3584	*	*	3587	3935	*	3418	100
+       0	*	*	*	*	*	*	5388	0	0	
+
+L 101  *	*	*	4926	5787	*	*	*	*	773	5083	3094	*	4756	*	5207	*	3749	*	3666	101
+       0	*	*	*	*	*	*	5336	0	0	
+
+T 102  3648	*	*	*	5201	4911	*	6060	5558	*	*	*	*	*	1525	2883	2330	2966	*	6199	102
+       0	*	*	*	*	*	*	5336	0	0	
+
+S 103  4911	*	5476	3287	5360	*	*	*	5578	3315	*	3736	*	3400	3636	1516	5274	5471	*	4383	103
+       0	*	*	*	*	*	*	5336	0	0	
+
+G 104  2731	*	4364	2829	*	4801	6619	6623	3384	4911	4485	4789	5578	3693	5059	2849	5764	4004	*	4432	104
+       138	4108	4911	0	*	*	*	5336	1161	0	
+
+T 105  4027	*	4297	4326	4300	3959	*	5499	*	5468	*	5752	5696	4575	*	2864	3950	1335	*	*	105
+       1575	913	2908	128	3558	*	0	5235	3146	1188	
+
+T 106  4331	*	3014	4121	5360	3734	*	5839	2859	*	*	4980	5295	*	4770	2568	1990	*	*	*	106
+       229	3314	4430	2768	229	353	2202	5043	1416	1766	
+
+E 107  3062	1739	*	2986	*	4370	*	3787	*	4405	5487	5427	4544	*	3841	3257	*	5402	*	*	107
+       34	5427	*	0	*	0	*	5240	1027	1260	
+
+A 108  3196	*	2928	3403	4568	3066	*	*	2593	*	5207	6623	4619	3007	*	3760	5360	4747	*	*	108
+       146	*	3380	*	*	*	*	5336	0	0	
+
+N 109  *	*	1112	2803	5576	5386	5851	*	4406	4189	*	5506	*	*	*	4310	*	4457	*	3162	109
+       52	4830	*	0	*	*	0	5127	1188	1388	
+
+A 110  3513	*	3284	4894	*	5041	4483	3100	5446	5574	*	2230	4672	*	3514	3379	4224	4296	*	*	110
+       128	3553	*	0	*	*	0	5127	1268	1388	
+
+W 111  3610	*	*	*	*	*	*	*	3185	*	*	4830	*	*	5965	*	*	*	402	*	111
+       0	*	*	*	*	0	*	5127	0	1388	
+
+K 112  4273	*	4837	3674	*	5739	4388	6896	1490	5872	3946	4793	3747	5726	3066	4085	6116	*	*	*	112
+       0	*	*	*	*	*	*	5336	0	0	
+
+S 113  1258	*	*	*	*	4308	3099	*	*	*	*	*	*	4704	*	1639	5485	*	*	4920	113
+       0	*	*	*	*	*	*	5336	0	0	
+
+T 114  5872	*	*	4920	*	*	*	2879	*	*	4428	3480	*	*	5192	*	941	2948	*	*	114
+       0	*	*	*	*	*	*	5336	0	0	
+
+L 115  *	4915	*	5560	*	*	5717	5364	3698	2306	4163	3407	*	3789	1648	3616	*	*	*	*	115
+       0	*	*	*	*	*	*	5318	0	0	
+
+V 116  3538	*	*	*	*	*	*	2733	4258	4404	5658	*	*	3572	*	*	2912	1307	*	5432	116
+       0	*	*	*	*	*	*	5306	0	0	
+
+G 117  *	4846	*	*	*	312	*	*	*	*	*	3216	*	*	*	4266	*	*	*	*	117
+       0	*	*	*	*	*	*	5306	0	0	
+
+H 118  2767	*	*	3055	5914	4513	4643	4799	5489	4846	*	3810	*	1591	5573	4380	4325	*	*	5856	118
+       0	*	*	*	*	*	*	5306	0	0	
+
+D 119  *	*	376	*	*	*	*	*	*	*	*	2360	4846	*	*	*	*	*	*	*	119
+       0	*	*	*	*	*	*	5306	0	0	
+
+T 120  *	*	3914	5691	*	4272	*	2809	3054	5389	*	5755	*	*	5837	4607	1676	2430	*	*	120
+       0	*	*	*	*	*	*	5306	0	0	
+
+F 121  *	*	*	*	273	*	*	*	*	*	*	*	*	*	*	*	*	*	2534	*	121
+       0	*	*	*	*	*	*	5306	0	0	
+
+T 122  *	*	*	5121	4510	*	4787	*	5399	*	5154	*	*	3521	5365	3939	751	4305	*	5809	122
+       91	4783	5347	1000	1000	*	*	5292	1188	0	
+
+K 123  *	*	*	*	4054	*	*	*	3292	*	*	4810	3438	3743	771	*	5330	*	*	5359	123
+       0	*	*	*	*	0	*	5213	0	1027	
+
+V 124  5233	*	5320	5163	*	4930	*	3962	*	3914	4918	*	*	4073	5263	3779	3090	2324	*	2008	124
+       60	4629	*	3322	152	*	*	5214	1188	0	
+
+K 125  3707	*	4981	2807	*	4055	5254	*	2243	*	*	*	2887	4891	3291	2796	*	4791	*	*	125
+       95	3970	*	0	*	*	*	4816	1000	0	
+
+P 126  3724	*	*	*	*	*	*	*	*	*	3769	*	1478	1613	*	3695	3508	*	*	*	126
+       0	*	*	*	*	*	*	3854	0	0	
+
+S 127  *	*	*	*	*	*	*	*	*	*	*	*	*	3104	*	1111	1582	*	*	3530	127
+       0	*	*	*	*	*	*	3482	0	0	
+
+A 128  1695	*	*	2981	2491	*	*	3727	2890	*	*	*	*	3480	*	*	3530	*	*	*	128
+       0	*	*	*	*	*	*	2651	0	0	
+
+A 129  0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	129
+       0	*	*	*	*	*	*	1723	0	0	
+
+S 130  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	130
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  9c7b8409c5da2a6bc10d796287eb4c1f
+FAM   
+FILE  9c7b8409c5da2a6bc10d796287eb4c1f
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:25:45 2013
+LENG  160 match states, 160 columns in multiple alignment
+FILT  139 out of 1041 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  7.5 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEEEEECCCCCCHHHHHHHHHHHCCCCEEEECCCCCCCCCHHHHHHHCCHHHCCEEEECCCHHHHHHHCCCCEEEEEECCCCCCCHHCCCCCCEEEEEC
+CCCCCCCHHHHHHCCCCEEEEECCCCCCCCCHHHHHHHHHHHHHHHHHCCCCCCCCCCCC
+>ss_conf PSIPRED confidence values
+9899996898866499999999984981999779977856799999836725540589829999999972598899997478853110056899999989
+997798999998657974999638999775369999999999999972555455676769
+>Consensus
+xxxvvldxvxxpxNvGxixRtaxxfGvxxvixxxxxxxxxxxxxxrxsxgaxxxxxixxxxxxxxxlxxlkxxxvxxxxxxxxxxlxxxxxxxxxxlvxG
+xExxGlsxxxlxxxxxdxxvxIPxxgxxxSLNvsxAxaIxlyexxrqxxxxxxxxxxxxx
+>9c7b8409c5da2a6bc10d796287eb4c1f
+MLDIVLYEPEIPQNTGNIIRLCANTGFRLHLIEPLGFTWDDKRLRRSGLDYHEFAEIKRHKTFEAFLESEKPKRLFALTTKGCPAHSQVKFKLGDYLMFG
+PETRGIPMSILNEMPMEQKIRIPMTANSRSMNLSNSVAVTVYEAWRQLGYKGAVNLPEVK
+>gi|335036871|ref|ZP_08530186.1| RNA methylase [Agrobacterium sp. ATCC 31749]gi|333791695|gb|EGL63077.1| RNA methylase [Agrobacterium sp. ATCC 31749]
+--VLVGCGISNHDNLGAMFRNAAAFYADAVLLDETCCDPLYRKALRVSVGSVLSVPYHRGGGAVEMLERLSeeGFAIWGLSPDGKTeI-RDI-Prs-ERM
+ALVIGTEGEGLPQSVLSRF--QT-ARIAQSPQLDSLNAGTASGLALYQMAG--------------
+>gi|242280259|ref|YP_002992388.1| tRNA guanosine-2'-O-methyltransferase [Desulfovibrio salexigens DSM 2638]gi|242123153|gb|ACS80849.1| tRNA guanosine-2'-O-methyltransferase [Desulfovibrio salexigens DSM 2638]
+-FTLIIDNVWDPHNVSAILRSCDAFGIyGIHLYYTVSqWPE---LAKKSSASGKKWVERTKHTDPVKMVGGLRdqGYQVLRTGFsETARPLMDFDLSKPS
+AVILSNEHSGTAPELAELV--PDEVYIPMQGMIQSFNVSVAAALILYHGFSQRFAKGMYDNPS--
+>gi|218282592|ref|ZP_03488830.1| hypothetical protein EUBIFOR_01412 [Eubacterium biforme DSM 3989]gi|218216463|gb|EEC90001.1| hypothetical protein EUBIFOR_01412 [Eubacterium biforme DSM 3989]
+-FLCYIDGVEDPYNLGSISRTLYASGCDAMILPKRDWSFAEQTILKASAGAYEKLPIYFVDADEELVNYCKKnnLPILCAHRKDAVGLYDYTFESDFCLC
+LGGALRGLSSTITAAS--KQNIVVEYGRDfRNALDSASAAAVFSFEILRQKKV----------
+>gi|254780904|ref|YP_003065317.1| tRNA/rRNA methyltransferase [Candidatus Liberibacter asiaticus str. psy62]gi|254040581|gb|ACT57377.1| tRNA/rRNA methyltransferase [Candidatus Liberibacter asiaticus str. psy62]
+--VIILVDPQLGENIGMVARAMWNFNLtQLRLVNPRDGWP-SEKARSSSANADCVIdSVRVFSNLKEAIADL--HFIYATTARNRNnfkSVLAPkeaaiV
+LnerifsGQNVGIIFGRERWGLTNEEIALS--NAIISFPVNPLFPSLNISQAVLLMVWECMENSI-----------
+>gi|198452347|ref|XP_001358733.2| GA15007 [Drosophila pseudoobscura pseudoobscura]gi|198131892|gb|EAL27876.2| GA15007 [Drosophila pseudoobscura pseudoobscura]
+---VVASLIDKLPNLGGLARTCEVLGVQTLALGNKAQA-GKSDFTNLSMTAEKTLNIIELkpSCIAAFLMekQMEGFRVVGAEQTAhSVSFANFKFPKKC
+VLLLGHEKHGIPADLIGFL--DYAVEIPQFGVVRSLNVHVTGSLFIWEYCKQHFF----------
+>gi|71405533|ref|XP_805376.1| hypothetical protein [Trypanosoma cruzi strain CL Brener]gi|70868764|gb|EAN83525.1| hypothetical protein, conserved [Trypanosoma cruzi]
+--ILVLDNVDDPGLLGTLLRTAAGFHYDAIITTNHCADIYDHRVVRSARGAHFQKAVPIYTlkeeDGDNVYGMLNhivqrnNmSTVCFTPIDDDTektnt
+gkapnvvlsssvahagtfereALSEYchrCFttegTKGQLLIAGPNHKR--NSLRRW---SKRITGPVTqlllDEVTQTDSLVALSVVIHAL-RPHG---
+--------
+>gi|294901665|ref|XP_002777464.1| hypothetical protein Pmar_PMAR024217 [Perkinsus marinus ATCC 50983]gi|239885101|gb|EER09280.1| hypothetical protein Pmar_PMAR024217 [Perkinsus marinus ATCC 50983]
+--LIMLDGVKYPGNAGNVLSNAGKLGCSAVLLGRSRrsSQPYQQDFALSALcsssTVRrGGIPLVLNVHCVDTIHLLREeyaYRVILIENKEvavdhGLP
+FIDLSceasaraeIsTPRVLFVGGGELEGVGPLIPKVA--DAILSIPTVFdHHHSYNVCTAMTLVMFERYRF-------------
+>gi|167630255|ref|YP_001680754.1| hypothetical protein HM1_2187 [Heliobacterium modesticaldum Ice1]gi|167592995|gb|ABZ84743.1| conserved hypothetical protein [Heliobacterium modesticaldum Ice1]
+----------------DISRSATTYDVAgYFVIHPHQAQQRlVGEIlryWMEGYGaeynpdrreALERL--KVTATLEEAMAVIEEkegrrPKIITTDAR
+TYdnsVGYRQMRerfvaEEGPWLLLFGT-GFGMEREMMLQA--DYIL-YPVWgrGSYNHLSVRAAAAIILDRLL---------------
+>gi|302348084|ref|YP_003815722.1| RecB-family nuclease-like protein [Acidilobus saccharovorans 345-15]gi|302328496|gb|ADL18691.1| RecB-family nuclease-like protein [Acidilobus saccharovorans 345-15]
+-VIPVIHNTSSVQRLVDMARIVLSMNIdLLVATKVYGAAaqSGIAEAFRLLLKA--GKGLVVLPELKDAVETYDGTQVFLVDKEHAAELVDPLsgdftag
+SNSPLMLVFNGSDAPFSPQELSLG---KPIYIKGlSYRAGST---AEASLLLYGILR--------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	2308	*	*	*	*	*	*	*	325	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	2992	0	0	
+
+L 2    6213	*	*	*	2423	*	*	2153	*	1883	3492	6195	*	6133	6349	*	6431	2712	*	6517	2
+       16	*	6517	*	*	*	*	7433	0	0	
+
+D 3    4745	5135	5588	*	4637	*	5850	2216	*	2954	4767	*	*	6687	4103	3706	3410	2808	5714	3746	3
+       0	*	*	1000	1000	0	*	7798	1061	1001	
+
+I 4    5012	5811	*	*	4944	7188	*	2189	*	1846	5757	*	5423	*	*	*	5167	1583	6521	*	4
+       17	6399	*	1585	585	*	*	7881	1032	0	
+
+V 5    2940	4291	*	*	4800	4233	*	2889	*	2774	4475	*	*	*	*	*	*	1579	7077	4029	5
+       0	*	*	*	*	*	*	7883	0	0	
+
+L 6    3544	3571	*	*	4379	*	*	3903	*	725	*	*	*	*	*	7008	7086	3710	*	5746	6
+       0	*	*	*	*	*	*	7883	0	0	
+
+Y 7    5745	5981	1360	2543	6027	6082	3752	*	*	7037	7254	5987	*	5450	*	4477	5340	3272	6956	3918	7
+       0	*	*	*	*	*	*	7883	0	0	
+
+E 8    5564	*	3434	3659	*	2258	4060	*	4895	5225	*	1934	6865	4408	3316	4438	6171	*	*	*	8
+       10	7191	*	0	*	*	*	7883	1000	0	
+
+P 9    5201	5452	*	*	6878	*	*	2078	6584	3037	5721	*	2544	*	*	5743	4900	1632	7117	*	9
+       0	*	*	*	*	*	*	7902	0	0	
+
+E 10   7052	*	4614	3085	5727	5222	5246	5170	2754	6153	7416	5442	*	3004	3021	2840	3092	6130	6898	6031	10
+       0	*	*	*	*	*	*	7902	0	0	
+
+I 11   7210	*	1435	6202	6399	5277	4020	5194	4103	6868	7150	3063	*	7382	6095	2652	4225	6550	*	4440	11
+       0	*	*	*	*	*	*	7902	0	0	
+
+P 12   3467	*	5902	5376	6836	6046	6200	4909	*	4763	7085	5418	1005	6567	5611	3433	4353	4070	*	*	12
+       0	*	*	*	*	*	*	7906	0	0	
+
+Q 13   4469	*	4680	3853	3940	2208	3620	6932	4815	*	4658	4732	4812	3010	5011	4507	4483	4800	6995	4659	13
+       0	*	*	*	*	*	*	7906	0	0	
+
+N 14   *	*	*	7158	*	*	*	6745	5379	6252	*	182	*	5489	4860	6932	*	*	*	*	14
+       0	*	*	*	*	*	*	7906	0	0	
+
+T 15   3966	7467	*	*	4210	*	*	2309	6703	1808	4575	*	6978	*	*	*	6533	1721	*	6023	15
+       0	*	*	*	*	*	*	7906	0	0	
+
+G 16   4135	*	*	5466	*	391	6978	6589	*	6019	6281	6836	*	6450	6630	4706	*	4811	7136	*	16
+       0	*	*	*	*	*	*	7906	0	0	
+
+N 17   1818	*	3688	4863	4823	4294	*	7016	5985	7271	5551	4542	*	7077	7130	2267	2419	7378	*	6862	17
+       0	*	*	*	*	*	*	7944	0	0	
+
+I 18   4867	4880	*	*	3896	*	*	1200	*	2354	4586	*	*	*	*	7083	*	2520	*	6605	18
+       11	7004	*	1585	585	*	*	7944	1000	0	
+
+I 19   2449	5117	*	*	3942	7157	*	2055	*	1893	3954	*	*	*	*	4868	7071	3587	6741	7118	19
+       0	*	*	*	*	*	*	7944	0	0	
+
+R 20   *	*	*	6660	*	*	*	*	4332	*	*	5574	*	*	156	6538	*	6463	*	*	20
+       0	*	*	*	*	*	*	7944	0	0	
+
+L 21   2865	5468	*	*	*	*	5723	4279	*	4006	6784	4634	*	*	*	2042	1458	4283	*	*	21
+       18	*	6350	*	*	*	*	7944	0	0	
+
+C 22   1051	2588	*	*	*	5600	6700	5745	*	4110	3659	*	*	*	*	3275	5686	4561	*	*	22
+       0	*	*	*	*	*	0	7907	0	1061	
+
+A 23   1750	6613	3324	2862	3708	4626	4567	*	5276	5220	*	4790	*	*	6743	4600	7290	5161	4971	3468	23
+       0	*	*	1000	1000	0	*	7907	1061	1061	
+
+N 24   1539	3356	6585	*	3931	3261	5233	5537	6538	5410	6847	3593	*	6741	*	3397	4907	5038	6175	5512	24
+       18	*	6350	*	*	*	*	7944	0	0	
+
+T 25   3904	5216	*	*	1199	*	*	7506	*	2404	3534	*	*	*	*	4543	4854	4597	*	3811	25
+       0	*	*	0	*	0	*	7907	1061	1061	
+
+G 26   5640	*	4383	5208	*	473	6317	*	5059	6865	*	3362	*	6275	*	5440	*	*	*	*	26
+       13	6811	*	0	*	*	*	7948	1005	0	
+
+F 27   2736	3538	*	*	3976	4545	*	3261	6839	3315	7055	*	*	*	*	6193	6617	1479	5840	4779	27
+       433	1947	*	0	*	*	*	7956	3536	0	
+
+R 28   5418	*	2062	3291	6924	4798	4643	*	3303	5830	*	4227	7186	3616	3162	3263	4421	6366	*	6034	28
+       45	5035	*	254	2632	*	*	7962	1271	0	
+
+L 29   2959	5202	6235	4525	4241	2793	6433	4024	3982	2660	*	5514	6366	4447	5235	3741	4802	4004	*	5935	29
+       0	*	*	*	*	*	*	7962	0	0	
+
+H 30   4817	6924	*	*	5105	*	3650	2166	*	3539	6667	*	*	*	4692	*	6984	1295	5462	4266	30
+       45	5555	6726	455	1885	*	*	7962	1138	0	
+
+L 31   4512	*	*	*	3048	*	6427	1811	*	1938	*	*	*	*	7096	*	7119	2293	5406	4812	31
+       7	7597	*	3178	169	*	0	7942	1072	1021	
+
+I 32   4963	5970	*	*	4360	*	*	2746	6920	1912	5656	*	*	*	*	5833	3124	1829	*	4417	32
+       107	5160	4520	425	1970	0	*	7942	1299	1021	
+
+E 33   3865	5198	4123	3940	*	2997	5574	5077	3898	4941	6742	3668	3760	6092	4530	3089	3218	4912	7203	5555	33
+       51	6300	5504	2286	331	0	*	7925	1042	1354	
+
+P 34   3210	6026	3548	4553	*	3456	6066	6062	4139	6223	*	3720	1976	6011	4025	3955	4848	4289	*	*	34
+       81	5518	4919	304	2394	0	*	7952	1310	1160	
+
+L 35   4859	5875	3898	4725	5785	3068	4079	5258	3817	4109	*	3480	4935	4610	3187	3650	4097	4275	*	5098	35
+       108	4617	5005	1983	421	927	1077	7943	1322	1285	
+
+G 36   4182	2915	4005	5938	*	2880	5648	*	4493	4700	*	3781	4740	5771	3566	2601	3611	5343	6520	*	36
+       191	3083	7335	1202	823	1909	447	7931	2141	1404	
+
+F 37   2272	5208	4447	*	3821	4887	5701	4169	6264	4596	6969	6215	5715	6399	7066	3589	3773	2606	4489	4023	37
+       24	*	5950	*	*	342	2245	7931	0	1335	
+
+T 38   2709	7094	2018	5334	7220	6017	5168	6159	3579	4526	6142	4974	5604	4421	5612	2899	4298	4472	7070	7384	38
+       193	3600	4542	1258	781	1984	421	7936	1768	1175	
+
+W 39   4671	5602	5190	4531	4850	4530	4694	3343	7306	3612	*	5367	1817	5274	5055	4258	5030	4166	5138	4825	39
+       110	*	3766	*	*	1755	507	7907	0	1661	
+
+D 40   3710	6990	3796	3534	3296	3844	7330	5183	5279	3190	7172	4427	4987	5092	5752	4028	4239	5223	4405	3383	40
+       238	4177	3366	2460	289	1428	671	7831	1434	2183	
+
+D 41   4050	*	2694	5046	7190	3746	4047	4407	7065	5570	*	2433	7019	4642	5449	3169	3359	4112	*	6051	41
+       66	6900	4794	0	*	785	1253	7870	1000	2593	
+
+K 42   3699	*	4920	3746	*	4334	4201	*	3324	4527	*	*	1791	4876	3844	3390	4423	5801	6003	*	42
+       48	6054	5818	3208	165	978	1023	7882	1055	2018	
+
+R 43   3075	*	3241	3552	*	5484	*	5817	2050	5032	7254	5143	6266	4689	3114	3794	4325	4474	*	6802	43
+       26	6904	6749	3000	193	1965	427	7899	1000	1629	
+
+L 44   2366	6308	*	7058	3739	7086	*	3370	*	3478	4488	5820	*	*	6189	4231	5004	1777	6346	4246	44
+       36	5854	7029	1585	585	1501	629	7913	1112	1538	
+
+R 45   3156	6963	*	4434	5074	5980	4823	3197	3747	3121	4330	*	6612	4081	3840	4024	5569	3141	6007	4214	45
+       59	5067	6581	416	1998	*	0	7921	1209	1401	
+
+R 46   5522	*	6695	4880	6832	6243	5751	5788	2099	5148	7381	5087	*	5898	1102	5963	4190	*	6684	6007	46
+       21	6119	*	2005	413	1902	449	7910	1057	1509	
+
+S 47   1632	*	4990	5392	*	5363	6118	3714	*	3621	6492	*	*	*	5668	2202	3260	3766	*	*	47
+       89	4622	5686	995	1005	341	2248	7933	1352	1354	
+
+G 48   1828	6487	*	4903	*	3168	7101	*	7203	5759	5551	6405	*	*	*	1412	3400	5247	*	*	48
+       24	5923	*	1000	1000	*	0	7921	1089	1206	
+
+L 49   2429	5749	5850	5910	5561	4985	4334	5437	4191	3494	2793	*	*	4349	2911	3869	6741	3671	*	6613	49
+       55	5476	6067	2000	415	726	1338	7921	1141	1206	
+
+D 50   5511	6422	4605	5655	*	660	*	*	3346	*	*	4226	*	6745	6583	3879	5444	6640	*	*	50
+       49	5484	6538	2302	327	1282	764	7937	1310	1242	
+
+Y 51   1403	4819	*	5866	6403	3811	7544	6105	6034	5167	6119	4818	*	6352	6886	2677	3696	4066	*	4072	51
+       132	7177	3640	2322	322	*	0	7932	1000	1221	
+
+H 52   3844	7165	4172	3314	6206	*	2925	3452	5502	2509	4220	5622	7026	4433	5480	4496	7218	4212	4973	4443	52
+       48	5388	6794	0	*	2556	269	7654	1141	2013	
+
+E 53   *	5684	3380	2388	2185	4630	4622	6928	2861	3616	*	6162	*	5050	4390	5926	6126	7319	6113	5525	53
+       44	6011	6129	2252	340	527	1707	7682	1070	1921	
+
+F 54   4629	*	5002	7316	3934	3639	3048	4325	3845	4035	7111	3783	*	4853	3444	4331	4960	4504	3355	4474	54
+       13	6843	*	1585	585	*	0	7906	1004	1385	
+
+A 55   4109	6408	*	4891	7513	6349	6188	2856	3940	1883	3528	6435	6647	6103	*	*	4634	2173	*	7396	55
+       120	4941	4409	0	*	393	2069	7906	1296	1385	
+
+E 56   4817	7128	3325	4315	7050	5296	5153	*	4637	*	*	2845	1430	4475	4117	4416	4435	*	*	*	56
+       11	6987	*	0	*	1777	498	7898	1004	1523	
+
+I 57   4133	5922	*	*	3407	*	7025	1989	*	2188	5798	*	7004	*	6937	*	5482	2208	4707	4565	57
+       57	*	4693	*	*	0	*	7910	0	1350	
+
+K 58   4527	5145	7479	3329	3756	7491	4447	3622	4727	3743	6075	6287	6326	6089	3175	4036	4928	2727	7084	3531	58
+       8	*	7491	*	*	328	2298	7948	0	1318	
+
+R 59   4773	6132	*	3394	3355	5132	4352	3458	4207	4191	6269	5746	4697	4660	2663	5599	5336	3162	*	4204	59
+       185	4786	3570	1175	844	1312	743	7965	1286	1055	
+
+H 60   4234	4532	5448	5627	2725	4985	3384	4880	*	3158	7005	4823	7145	6824	5989	4418	4712	2714	4963	3446	60
+       23	6012	*	732	1329	346	2231	7958	1142	1960	
+
+K 61   4980	4896	2540	3260	*	4001	6249	6484	3306	5022	6128	3503	3416	6451	5758	3834	3969	3989	*	5899	61
+       110	3935	6950	1547	604	1608	574	7965	1575	1149	
+
+T 62   5500	7076	1849	4015	6869	7313	5002	6167	4920	7513	*	2390	5100	7360	5802	2674	3100	*	*	6036	62
+       35	6203	6555	1828	477	2506	279	7946	1067	1379	
+
+F 63   4206	6520	5792	5015	3643	6316	*	2942	6621	1676	5054	6903	5097	7878	5285	4874	3786	3609	4377	7443	63
+       26	5822	*	3666	118	162	3231	7967	1094	1435	
+
+E 64   3476	7286	3470	2188	7440	5367	5071	4846	3505	3818	5633	4907	4623	4878	4854	4093	4852	3816	*	6189	64
+       9	7410	*	1000	1000	*	0	7976	1000	1000	
+
+A 65   3387	*	2343	1917	*	6067	7136	5805	3693	5109	6481	4207	6293	3734	4883	3783	5457	7119	*	7250	65
+       30	5623	*	898	1110	*	0	7976	1124	1000	
+
+F 66   1742	4130	6201	*	2522	6201	*	4193	*	3064	5236	6909	*	6251	*	4935	4261	3262	*	4992	66
+       12	6886	*	1000	1000	*	0	7976	1005	1000	
+
+L 67   5191	4259	6886	7250	5018	*	6288	2275	7278	1567	4308	6389	6083	5651	4413	6381	*	2894	*	5597	67
+       79	4919	5620	1526	616	0	*	7976	1256	1000	
+
+E 68   3200	*	3475	2441	*	3895	4411	7372	2886	6501	*	3560	5492	3550	4544	4346	4924	5274	*	7099	68
+       50	6247	5581	372	2138	721	1346	7949	1140	1153	
+
+S 69   3316	7516	3428	3143	4350	4839	4174	5560	4199	4471	4975	4616	7236	3601	5597	3425	4450	5594	5677	3910	69
+       72	5696	5076	3366	147	517	1731	7953	1112	1225	
+
+E 70   4282	3646	*	6625	3720	*	6882	4324	7369	1066	5017	6758	6130	*	6200	4380	5162	4297	5182	5767	70
+       198	5569	3219	3700	116	2552	270	7944	1169	1308	
+
+K 71   4552	*	5659	4816	6711	5091	5881	6177	1534	5492	*	4378	5306	4879	2170	3373	5325	6169	*	*	71
+       662	1580	4896	1182	838	1911	446	7792	3826	2290	
+
+P 72   5159	5466	4567	3084	*	1687	*	*	2923	5461	6249	3660	3717	3504	5392	5553	5477	*	*	*	72
+       716	1378	7303	1190	832	129	3550	7781	4044	2217	
+
+K 73   4243	3976	3601	5152	2706	4810	5211	4100	5955	4253	5669	5014	6777	*	4505	5530	4561	4352	4478	2567	73
+       67	4453	*	2263	337	0	*	7937	1408	1095	
+
+R 74   4928	5486	5421	4848	4880	*	4883	5179	3357	4008	5777	5851	3433	3538	2811	4305	3282	3564	5028	7304	74
+       13	6799	*	0	*	*	*	7972	1013	0	
+
+L 75   4522	7535	*	*	4928	6356	7398	1860	*	2427	5993	*	5527	*	7451	5347	5702	1624	5930	6514	75
+       16	*	6523	*	*	*	*	7972	0	0	
+
+F 76   3373	4715	*	*	3142	*	7147	2410	*	3446	6742	*	*	*	*	*	*	1872	5618	2623	76
+       20	6186	*	3753	111	0	*	7957	1117	1029	
+
+A 77   1461	4695	5474	*	5555	1964	6713	5225	*	4425	5532	6675	7154	*	6970	4508	4390	3938	*	6383	77
+       9	7291	*	1585	585	*	*	7972	1000	0	
+
+L 78   2460	7134	7294	*	4686	7189	6802	3407	7042	2145	5090	*	*	*	*	4541	2022	3272	*	*	78
+       29	7022	6383	3459	138	*	*	7972	1056	0	
+
+T 79   4582	5487	2549	2205	*	4710	5927	6015	6665	5699	5743	5379	6303	6906	*	2217	2747	5560	*	*	79
+       65	5686	5350	858	1158	*	0	7935	1125	1061	
+
+T 80   3088	6586	4439	4678	6067	4407	*	3530	4250	2866	5578	4124	3992	4303	4297	4044	3399	4502	*	7335	80
+       152	3690	5487	1294	756	0	*	7911	2007	1373	
+
+K 81   5048	6257	3239	3919	*	4010	3168	7151	2665	*	6913	4740	5371	5433	3845	3136	3045	5417	*	5282	81
+       168	3319	6718	1926	441	693	1391	7952	2050	1161	
+
+G 82   2940	7294	2955	4127	7121	1991	4497	*	4587	6585	6907	4298	4400	5433	4369	4091	3908	7183	*	6418	82
+       289	2787	4776	1206	820	973	1028	7938	2408	1107	
+
+C 83   2371	6628	3343	3449	6278	2921	6332	*	3758	5881	6911	5020	4676	5407	4392	3100	3692	*	*	6081	83
+       233	2905	5990	2030	405	1376	702	7896	2294	1499	
+
+P 84   5271	6403	4694	3596	6884	4378	6636	3798	2794	4386	*	4050	4431	4599	4053	3717	3209	3379	6795	6276	84
+       321	2491	5533	2026	407	533	1694	7861	2780	1541	
+
+A 85   3991	6191	2985	4768	6182	4693	6882	6379	6272	4964	7177	4241	2053	5380	5582	2495	3833	4344	*	*	85
+       141	3604	6540	2302	327	318	2339	7934	1731	1383	
+
+H 86   5535	5705	5747	*	3726	7267	4985	2685	5381	1384	5236	7190	5444	7092	5721	6392	*	3509	*	3606	86
+       114	3976	6363	2745	233	*	0	7949	1569	1123	
+
+S 87   4394	7108	3260	3462	3907	5689	4336	5415	5184	5011	5925	4561	4031	4716	4181	3449	3628	5746	4816	3430	87
+       86	4295	7153	2814	221	*	0	7912	1504	1265	
+
+Q 88   3510	*	2303	2520	6875	4702	5213	6003	4153	4986	*	4066	4552	3231	4622	4665	4009	7171	*	*	88
+       52	5137	7171	2407	301	*	0	7909	1261	1343	
+
+V 89   3222	7608	7101	4270	3001	7064	7387	3230	5586	2489	4702	5986	4377	6970	6240	6871	4818	2917	7166	3683	89
+       206	2907	*	2426	297	1728	518	7908	2212	1412	
+
+K 90   3938	4807	2456	3840	*	4377	7463	6770	2962	4582	*	3989	4074	4934	4354	3329	3965	4426	*	*	90
+       210	2885	*	2624	255	1633	562	7912	2418	1265	
+
+F 91   4819	*	5094	5867	2468	7195	4147	4144	5138	2212	7698	5622	4481	*	5479	4021	6002	4640	4340	3127	91
+       220	2824	*	2178	360	1350	719	7924	2372	1154	
+
+K 92   3517	*	3836	3457	7252	4878	6182	*	3706	5494	7166	4154	1927	4951	5166	3947	3182	6118	*	5460	92
+       256	2726	6435	2598	260	*	0	7935	2413	1061	
+
+L 93   4096	*	3857	3052	6427	2758	7275	6092	2710	4188	*	4391	3787	3593	3454	4365	7439	6045	*	*	93
+       106	4274	5717	1968	426	0	*	7916	1769	1176	
+
+G 94   5566	6412	4323	6414	*	3141	6270	7141	2013	*	*	4146	2359	4359	2509	6039	4905	*	*	*	94
+       0	*	*	*	*	1326	734	7943	0	1117	
+
+D 95   3164	4105	5779	*	4979	7507	5076	2975	7086	3113	4940	5684	7140	6340	4885	3900	3568	2180	7571	6307	95
+       22	6021	*	0	*	0	*	7945	1079	1037	
+
+Y 96   1662	2814	*	*	6333	5191	*	3523	*	3090	4068	*	*	*	*	7154	6204	2318	*	5887	96
+       10	7173	*	3322	152	*	*	7972	1000	0	
+
+L 97   *	7066	*	*	3034	*	*	2463	*	924	7257	*	*	*	*	*	*	3531	5737	4310	97
+       0	*	*	*	*	*	*	7972	0	0	
+
+M 98   4610	6684	*	*	6289	*	*	2107	*	2454	4572	*	*	*	*	*	*	1104	7112	7093	98
+       17	*	6383	*	*	*	*	7972	0	0	
+
+F 99   6303	7317	*	*	1464	6573	*	2686	*	1928	3919	*	6100	*	*	*	5774	3458	*	*	99
+       0	*	*	0	*	0	*	7935	1061	1061	
+
+G 100  *	6546	6628	*	*	142	*	*	*	*	*	6530	6650	*	6523	4595	*	*	*	*	100
+       0	*	*	*	*	*	*	7972	0	0	
+
+P 101  4372	*	6220	5727	*	2857	4849	*	*	*	6970	1657	4303	4978	3651	2240	4379	*	*	*	101
+       24	*	5945	*	*	*	*	7972	0	0	
+
+E 102  5563	*	*	195	*	6362	*	5738	*	*	*	5442	6509	*	7291	4870	*	*	*	*	102
+       0	*	*	*	*	0	*	7935	0	1112	
+
+T 103  3516	*	2980	3955	5842	2784	4070	*	3850	5630	6912	5582	6713	4708	3195	2996	3979	5560	*	6218	103
+       14	*	6713	*	*	*	*	7972	0	0	
+
+R 104  4240	7203	4179	3506	5088	4855	3499	6688	3339	4829	*	4698	4781	3905	3094	3412	3946	5140	5409	4988	104
+       0	*	*	*	*	*	0	7957	0	1019	
+
+G 105  *	*	*	6344	*	143	*	*	*	*	*	*	5437	*	5377	5213	7025	*	*	*	105
+       18	*	6331	*	*	*	0	7955	0	1019	
+
+I 106  5867	6307	7107	*	4341	*	*	2278	*	1180	4717	7071	5117	*	6337	7432	6225	2642	*	*	106
+       0	*	*	*	*	1179	840	7933	0	1148	
+
+P 107  4111	6059	5078	6125	*	5478	5105	*	6148	7236	*	4218	2835	6324	4278	1187	3256	*	*	6760	107
+       13	6760	*	2585	263	0	*	7948	1013	1046	
+
+M 108  4323	*	2847	2762	*	6794	6093	5957	3015	5458	5501	3618	3251	3746	3522	4920	4773	4940	*	7609	108
+       10	7185	*	1000	1000	*	*	7970	1000	0	
+
+S 109  3872	*	2987	1580	*	7532	4935	6967	3441	4016	*	4385	5211	3938	5362	4058	4666	*	*	7113	109
+       0	*	*	*	*	*	*	7970	0	0	
+
+I 110  3377	7102	5480	2677	4338	*	6085	2448	*	2561	5179	5869	6473	5381	*	5474	4449	2899	6406	7221	110
+       7	*	7650	*	*	*	*	7970	0	0	
+
+L 111  4746	*	*	6149	5782	5948	*	3184	3734	1358	4393	*	6565	4732	4028	5709	5034	3236	7204	5709	111
+       18	*	6352	*	*	0	*	7977	0	1001	
+
+N 112  2586	6409	3370	2385	*	5510	*	7323	3505	4877	*	3141	5225	4016	3964	3432	6084	*	*	6662	112
+       0	*	*	*	*	*	0	7927	0	1061	
+
+E 113  2738	7139	7150	5099	4547	6517	4263	4526	3783	2261	6041	5753	5649	3689	3446	4164	*	4887	5088	4863	113
+       124	6803	3774	1655	551	0	*	7927	1151	1061	
+
+M 114  1830	1537	*	5843	*	3771	7072	5067	*	3782	6562	6906	*	*	*	3394	5643	4663	*	*	114
+       3964	*	96	*	*	*	0	7906	0	1684	
+
+P 115  *	*	*	1592	*	*	*	*	*	*	*	*	1573	*	2585	*	*	2595	*	*	115
+       995	1592	2585	571	1614	3777	109	3539	1091	7224	
+
+M 116  2652	1499	*	3602	*	*	*	*	*	*	3790	3890	3032	3648	*	*	*	3991	*	*	116
+       124	3602	*	0	*	220	2824	5001	1032	7013	
+
+E 117  *	*	795	4297	*	5301	4851	*	5579	7041	*	5025	6687	5779	4684	3877	3365	*	*	5535	117
+       83	5537	4851	1428	671	92	4017	7655	1302	2236	
+
+Q 118  3338	6725	3759	3471	5196	4279	3514	4613	3690	4294	6093	4036	*	3384	4311	6266	5004	4058	*	3920	118
+       18	*	6349	0	*	554	1649	7904	1004	1284	
+
+K 119  4007	5028	*	4842	4228	6751	5077	3217	5166	2756	6678	4723	4684	5583	3039	4664	3084	3558	5695	7408	119
+       29	5651	*	668	1432	946	1056	7895	1121	1162	
+
+I 120  4596	4248	*	*	5295	7139	*	2188	5446	2511	6987	*	*	*	*	7290	5554	1356	*	5084	120
+       24	*	5914	*	*	0	*	7926	0	1035	
+
+R 121  3819	5875	7112	3938	5181	5032	3509	6311	3464	6314	*	4764	*	6680	3314	2851	3436	4719	5795	2798	121
+       0	*	*	*	*	0	*	7927	0	1112	
+
+I 122  6385	*	*	6792	6115	6335	*	567	6407	2449	*	*	*	*	*	7096	*	3971	*	6504	122
+       26	7093	6524	3000	193	*	*	7964	1000	0	
+
+P 123  5772	*	5690	4133	*	6177	*	*	4889	*	*	4968	449	6937	5292	5115	*	5823	*	6250	123
+       10	*	7156	*	*	*	0	7936	0	1037	
+
+M 124  4659	*	6362	6298	5630	3221	7132	4234	5992	3878	1638	7150	6199	3403	6379	4759	3305	4080	*	5751	124
+       121	3630	*	843	1176	709	1366	7936	1830	1113	
+
+T 125  3978	5645	6836	4572	3664	4254	4488	5950	3992	4556	*	4049	4327	5590	4149	3048	3478	3965	7085	3337	125
+       196	3651	4406	2782	227	*	0	7963	1726	1000	
+
+A 126  4921	*	4304	4877	5773	1086	6307	*	5129	7045	7103	4692	3398	5468	3676	4743	6118	4674	*	6436	126
+       158	3676	5289	950	1051	949	1053	7926	1818	1486	
+
+N 127  4042	*	3241	3908	4696	3232	5287	4788	3060	4343	3695	3809	5633	5634	4029	4145	6009	4142	7379	7360	127
+       53	4793	*	0	*	1769	501	7909	1356	1432	
+
+S 128  3876	7032	*	6120	4482	5046	5405	2778	4581	4071	6484	4784	7045	4669	5035	4862	3649	1863	*	4312	128
+       32	5505	*	1585	585	750	1302	7919	1142	1283	
+
+R 129  4885	*	2467	2228	4861	3677	5698	7508	5204	*	5788	3466	3475	5207	3755	4686	4234	6919	*	7079	129
+       17	6391	*	0	*	0	*	7951	1035	1067	
+
+S 130  5760	4635	*	5470	*	7046	5913	6881	*	*	*	*	5571	5796	7153	298	*	5234	*	*	130
+       47	4978	*	1455	655	*	*	7963	1248	0	
+
+M 131  6455	*	*	*	4288	*	7091	4477	*	647	3367	*	*	*	*	*	4805	4411	*	3899	131
+       101	*	3882	*	*	*	*	7963	0	0	
+
+N 132  *	*	4258	*	*	*	*	*	*	*	*	225	6841	*	*	3744	6848	*	*	*	132
+       0	*	*	*	*	*	0	7731	0	1625	
+
+L 133  3460	*	*	*	*	*	*	4715	*	2083	*	*	6500	*	*	4809	6467	794	*	*	133
+       0	*	*	*	*	*	0	7731	0	1625	
+
+S 134  1823	6498	*	*	*	3040	4644	*	*	5999	*	4796	*	6493	5723	1302	5605	5224	*	6598	134
+       0	*	*	*	*	0	*	7733	0	1625	
+
+N 135  2675	5806	*	*	*	4201	4692	3887	*	*	4087	4222	*	3288	*	4531	3955	1546	*	*	135
+       0	*	*	*	*	*	*	7966	0	0	
+
+S 136  620	5814	*	4701	*	*	*	*	*	5476	*	6685	6596	6333	*	2697	4647	4509	*	*	136
+       18	*	6348	*	*	*	*	7966	0	0	
+
+V 137  1434	5311	*	*	6163	3145	6682	*	*	3679	5570	*	*	*	*	4336	2896	2435	*	*	137
+       0	*	*	*	*	*	0	7929	0	1061	
+
+A 138  1409	7125	*	*	*	1991	*	*	*	5927	6704	4712	7163	6035	*	2182	4422	6477	*	*	138
+       0	*	*	1000	1000	0	*	7929	1061	1061	
+
+V 139  6320	*	*	*	*	*	*	960	*	2719	4059	*	*	*	*	*	*	1935	*	*	139
+       0	*	*	*	*	*	*	7966	0	0	
+
+T 140  2939	4690	*	*	4024	6332	*	3143	*	2070	4276	*	*	*	*	6124	3622	2051	*	5862	140
+       0	*	*	*	*	*	*	7968	0	0	
+
+V 141  3913	5102	*	*	5219	*	*	3119	*	868	3003	*	*	7156	*	5923	5877	4344	*	*	141
+       19	6272	*	1000	1000	*	*	7968	1109	0	
+
+Y 142  3703	6874	5901	5538	2983	7023	2900	*	*	*	7022	6669	*	5209	7070	3984	*	6580	3874	1271	142
+       14	*	6654	0	*	0	*	7961	1051	1051	
+
+E 143  4094	5992	3723	1288	*	6487	3327	*	4277	5349	6189	5339	*	4589	3755	4785	5177	7108	7214	5530	143
+       10	7166	*	2000	415	0	*	7948	1000	1017	
+
+A 144  3118	4672	*	*	3599	5854	*	3101	*	1822	4139	*	7195	*	3868	7040	5234	4408	3598	4310	144
+       90	5583	4661	1247	789	*	*	7910	1109	0	
+
+W 145  3935	5356	6154	*	3031	6853	4764	3464	3851	3073	5099	5411	*	5533	3767	3872	4050	3996	4143	4213	145
+       28	6490	6964	0	*	0	*	7843	1004	1272	
+
+R 146  4370	6722	*	3814	*	5722	5259	5811	2791	*	5000	5514	6747	4384	1115	4434	6687	6668	*	5272	146
+       90	4715	5468	401	2044	*	0	7738	1160	1000	
+
+Q 147  4442	6686	6467	4492	5320	4632	*	4741	4191	4494	6598	3742	5520	1110	4536	4913	5137	6401	*	*	147
+       31	5534	*	590	1576	623	1513	7376	1039	1152	
+
+L 148  5414	*	6243	6467	4721	4399	3130	5004	3332	3951	6195	3574	5275	3376	2247	6003	4749	5339	5385	5295	148
+       109	4147	5948	1260	780	0	*	7264	1291	1000	
+
+G 149  4440	*	4798	4003	5615	2324	4035	4102	3307	4572	*	3160	4960	4426	4168	3999	4810	6152	6069	*	149
+       278	2514	*	2011	411	0	*	7044	1261	1000	
+
+Y 150  3029	*	*	*	1740	4627	4930	*	3563	2812	*	4833	*	*	*	*	4745	2719	*	4220	150
+       0	*	*	*	*	*	*	5836	0	0	
+
+K 151  2643	*	*	2759	*	*	*	*	1460	4181	*	4337	*	*	4111	2590	*	*	*	*	151
+       0	*	*	*	*	*	*	5143	0	0	
+
+G 152  4095	*	3913	2913	*	1806	*	*	*	*	*	4018	2978	*	*	2284	4001	*	*	*	152
+       0	*	*	*	*	*	*	4881	0	0	
+
+A 153  3214	*	*	*	*	3681	*	*	2404	1951	2467	*	*	*	*	3265	3611	*	*	*	153
+       0	*	*	*	*	*	*	4329	0	0	
+
+V 154  *	*	2951	*	2952	*	*	*	*	*	*	*	*	*	*	*	*	1938	*	1058	154
+       0	*	*	*	*	*	*	3926	0	0	
+
+N 155  1781	*	2868	*	*	3007	*	*	*	2756	*	2684	*	*	2795	*	*	*	*	*	155
+       0	*	*	*	*	*	*	3735	0	0	
+
+L 156  *	*	*	*	*	*	*	*	3007	1734	*	2868	*	*	2795	*	*	1767	*	*	156
+       0	*	*	*	*	*	*	3735	0	0	
+
+P 157  *	*	*	*	*	*	1548	*	*	*	*	*	970	*	2762	*	*	*	*	*	157
+       0	*	*	*	*	*	*	3396	0	0	
+
+E 158  *	*	*	1000	*	*	*	*	*	*	*	*	*	2000	*	2000	*	*	*	*	158
+       0	*	*	*	*	*	*	2762	0	0	
+
+V 159  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	159
+       0	*	*	*	*	*	*	1000	0	0	
+
+K 160  *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	160
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  9f519c37964061e00a9e9906f774552e
+FAM   
+FILE  9f519c37964061e00a9e9906f774552e
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:27:18 2013
+LENG  79 match states, 79 columns in multiple alignment
+FILT  111 out of 161 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  3.6 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCEECCCCCCCCEEEEEEECCHHHHHHCCCCCCCCHHHHHHHCCCCCCCEEEEEECCCCCCEEEEECCCCCCCCC
+>ss_conf PSIPRED confidence values
+9857757567723886279999839999975786766499999660500068848988808997289870468989999
+>Consensus
+mxxxxixYSxkYxDdxyeYRhViLpkexxkxvpkxxLlsExEWRxLGIqqSxGWxHyxxhxpEphiLlFRRpxxxxxxx
+>9f519c37964061e00a9e9906f774552e
+MSHKQIYYSDKYDDEEFEYRHVMLPKDIAKLVPKTHLMSESEWRNLGVQQSQGWVHYMIHEPEPHILLFRRPLPKKPKK
+>gi|118375604|ref|XP_001020986.1| Cyclin-dependent kinase regulatory subunit family protein [Tetrahymena thermophila]gi|89302753|gb|EAS00741.1| Cyclin-dependent kinase regulatory subunit family protein [Tetrahymena thermophila SB210]
+MP-KFpkeIEYSDTYNDDAYFYRNVRLPQDLYKKIPKGKIMTEDVWRSLGIKSSKGWQHFYVYKPEPFIIMLRKPVNFQN--
+>gi|145478429|ref|XP_001425237.1| hypothetical protein [Paramecium tetraurelia strain d4-2]gi|124392306|emb|CAK57839.1| unnamed protein product [Paramecium tetraurelia]
+--------SQDFEDDTHIYRIIRLGRESVRLMQEFKwekkLLKEEEWRRLRVYQRRGWLHYAIFEKEPYVLLFKRKITKNK--
+>gi|326427105|gb|EGD72675.1| hypothetical protein PTSG_04406 [Salpingoeca sp. ATCC 50818]
+--SSGIVYVERHRDDQFQYRTVILPGEMGQGLPLHRALTEKECRRLGIRQSKGWTHCLIRKKDPNSLLFRRKLD-----
+>gi|71034137|ref|XP_766710.1| hypothetical protein [Theileria parva strain Muguga]gi|68353667|gb|EAN34427.1| hypothetical protein TP01_1189 [Theileria parva]
+---NNIQYSPKITHSNCQIRCVTLPREHPVLVGgldgyGTRLLSESEWRKLGIKMSKGWTHSGYSPYESHILIFQL--------
+>gi|221485644|gb|EEE23925.1| conserved hypothetical protein [Toxoplasma gondii GT1]
+---GDVYYSPRYSDERYTYRHVILSRGVRKeaeklasTMP-DGLLTEDMFiHCLGIALSPGWTHFMCFNRKLKELILRRPREDDN--
+>gi|294881882|ref|XP_002769521.1| hypothetical protein Pmar_PMAR003251 [Perkinsus marinus ATCC 50983]gi|239873027|gb|EER02239.1| hypothetical protein Pmar_PMAR003251 [Perkinsus marinus ATCC 50983]
+---DENEYSDKYMDDTYEYRHVILNKPTYRMLQrsvrgysASTILEENEWRV----------------------------------
+>gi|221054734|ref|XP_002258506.1| hypothetical protein, conserved in Plasmodium species [Plasmodium knowlesi strain H]gi|193808575|emb|CAQ39278.1| hypothetical protein, conserved in Plasmodium species [Plasmodium knowlesi strain H]
+---GPVCYSALYRDDKYVYRHIILSDNVRQyaesKVRKtNAFLTEHCIvNELQIDIGKGWKHFMIYDGKIRELILRKVLTA----
+>gi|237841603|ref|XP_002370099.1| hypothetical protein TGME49_023120 [Toxoplasma gondii ME49]gi|211967763|gb|EEB02959.1| hypothetical protein TGME49_023120 [Toxoplasma gondii ME49]
+-------HSLKYEDNEYEYKDVTLTKKydlyreQLKKNPR-KFIDEDYmYNVLQLQQTPGWEQYYIY-------------------
+>gi|288817839|ref|YP_003432186.1| hypothetical protein HTH_0521 [Hydrogenobacter thermophilus TK-6]gi|288787238|dbj|BAI68985.1| hypothetical protein HTH_0521 [Hydrogenobacter thermophilus TK-6]
+----------RCEFDLFYYRHLWLTPYL-----------------LAVQQVKGWVLYEVLKYEPNLLIVRE--------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	*	3885	101	*	*	*	*	*	*	*	*	*	1
+       344	3359	3126	1220	809	*	*	2691	1084	0	
+
+S 2    3705	6294	*	*	6110	*	5668	*	*	6172	6021	*	1950	4798	*	1503	4072	6016	*	3003	2
+       988	2392	1713	613	1531	260	2601	2795	1170	1133	
+
+H 3    2520	*	*	*	*	4186	3388	5881	6094	*	4711	*	2288	3721	4595	2253	5600	4237	*	*	3
+       131	3522	*	1080	924	124	3600	2669	1069	1347	
+
+K 4    6461	7712	2418	3323	*	2598	7953	*	2957	*	*	2640	4721	5265	3898	3422	6163	*	*	*	4
+       106	6143	4133	0	*	0	*	3513	1016	1004	
+
+Q 5    5579	*	2634	2910	5465	4161	4932	*	3561	7351	*	3188	4629	2310	4039	4645	5055	*	*	*	5
+       41	5165	*	2347	316	0	*	3439	1159	1107	
+
+I 6    *	*	*	*	4761	*	*	568	*	*	7494	4432	4681	*	*	*	4991	2695	6412	*	6
+       0	*	*	0	*	*	*	3569	1010	0	
+
+Y 7    7302	3758	6165	3242	4738	*	3016	4096	4078	4569	*	5514	*	3034	*	4839	*	4449	*	1975	7
+       0	*	*	*	*	*	*	3578	0	0	
+
+Y 8    *	*	*	5058	*	*	4907	*	*	*	*	*	*	4884	*	*	*	*	*	148	8
+       0	*	*	*	*	*	*	3641	0	0	
+
+S 9    4900	*	*	*	*	5395	*	*	*	5021	*	*	*	*	*	176	*	5225	*	*	9
+       0	*	*	*	*	*	*	3683	0	0	
+
+D 10   3660	*	1763	2076	*	4902	*	*	6148	4959	*	4774	2420	5376	6526	6117	5025	7411	*	*	10
+       0	*	*	*	*	*	*	3682	0	0	
+
+K 11   *	*	5466	*	*	*	*	*	694	5159	*	*	6171	5373	1953	*	5252	6861	*	*	11
+       0	*	*	*	*	*	*	3738	0	0	
+
+Y 12   *	5030	*	*	2979	*	5302	5018	*	*	*	*	5020	*	*	5149	*	*	*	459	12
+       0	*	*	*	*	*	*	3738	0	0	
+
+D 13   5686	*	4184	2667	3354	*	*	*	4772	5020	6811	3482	*	3745	3691	3125	4147	6070	*	2586	13
+       0	*	*	*	*	*	*	3738	0	0	
+
+D 14   7259	7349	264	*	5030	*	5018	*	*	*	5799	5083	5020	*	6058	*	*	*	*	*	14
+       0	*	*	*	*	*	*	3738	0	0	
+
+E 15   7372	6917	940	2449	*	4787	*	*	5247	*	*	4139	5020	*	*	2930	*	*	*	*	15
+       0	*	*	*	*	*	*	3738	0	0	
+
+E 16   4672	*	6567	2151	5956	*	5187	*	2598	3903	6539	4055	*	3944	4403	6405	3138	3697	*	3969	16
+       6	7865	*	0	*	*	*	3738	1000	0	
+
+F 17   5020	5018	*	*	2130	6810	3689	*	*	*	*	5588	*	*	*	*	*	*	4302	857	17
+       13	6810	*	0	*	*	*	3738	1000	0	
+
+E 18   5020	*	*	623	5925	*	*	4323	6058	*	4608	5373	*	4153	*	*	4955	4204	*	5030	18
+       0	*	*	*	*	*	*	3738	0	0	
+
+Y 19   *	4083	*	*	5629	*	*	5018	*	*	*	*	*	*	*	*	*	*	*	168	19
+       0	*	*	*	*	*	*	3738	0	0	
+
+R 20   *	*	*	*	*	6058	*	*	5001	*	5373	*	*	6165	127	*	*	*	*	*	20
+       0	*	*	*	*	*	*	3738	0	0	
+
+H 21   5457	5018	5001	*	3761	*	562	4419	*	*	*	5925	*	5019	5149	*	5302	*	*	5914	21
+       0	*	*	*	*	*	*	3738	0	0	
+
+V 22   *	*	*	*	*	*	*	4050	*	5030	5495	*	*	*	*	5149	*	220	*	*	22
+       0	*	*	*	*	*	*	3738	0	0	
+
+M 23   *	*	*	*	7419	*	4662	1239	5784	4567	2911	*	*	5206	3840	*	3152	3764	5018	5401	23
+       0	*	*	*	*	*	*	3777	0	0	
+
+L 24   *	*	*	*	5922	*	*	4435	*	192	5695	*	*	*	*	*	*	4544	*	*	24
+       16	*	6466	*	*	*	*	3773	0	0	
+
+P 25   *	*	5399	*	*	5487	*	*	6154	*	*	6794	531	*	*	3810	2577	*	*	*	25
+       26	5829	*	2807	222	*	0	3776	1018	1014	
+
+K 26   6126	*	5266	4439	*	5284	6176	*	1127	5492	*	*	3101	4136	2581	5119	6181	6527	*	*	26
+       0	*	*	*	*	*	0	3781	0	1014	
+
+D 27   4024	*	2293	1286	*	4366	7037	*	4213	*	*	4870	4051	4027	6846	6658	*	6802	*	5015	27
+       78	4248	*	2906	207	*	0	3781	1124	1014	
+
+I 28   4170	*	*	*	6434	*	4659	2280	*	1752	2569	*	*	5040	*	5494	6038	3247	5081	5706	28
+       45	*	5015	*	*	*	0	3781	0	1014	
+
+A 29   1945	5735	*	*	5561	4368	*	4869	*	2929	*	*	5088	4401	3690	2986	7357	2602	*	4830	29
+       8	*	7586	*	*	*	0	3713	0	1118	
+
+K 30   6775	*	5480	3796	*	5634	6956	*	1095	*	4774	4666	*	3041	2725	6406	6627	5083	*	*	30
+       148	3362	*	2331	320	*	0	3717	1214	1132	
+
+L 31   3777	*	*	6298	6529	4943	5160	7315	2355	1772	4456	4997	5179	3327	4175	5615	4316	7490	*	6294	31
+       0	*	*	*	*	*	0	3717	0	1132	
+
+V 32   7056	*	7502	*	7311	6472	5838	1748	*	2306	3871	5016	*	*	*	*	*	1545	*	6630	32
+       102	3870	*	2896	208	*	0	3717	1146	1132	
+
+P 33   6831	*	*	*	*	5063	*	*	*	6069	5896	5069	435	4638	4309	4016	7004	*	*	*	33
+       185	3347	5491	2237	344	2332	319	3710	1280	1181	
+
+K 34   5969	*	7389	3439	6598	3902	*	6823	1106	5187	*	4851	4704	4843	2854	5668	4578	*	*	*	34
+       250	3102	4558	2496	281	741	1316	3650	1254	1264	
+
+T 35   6550	7592	2499	6349	5435	2409	4949	6015	3895	*	*	3265	6840	6549	4118	3209	2521	7604	*	*	35
+       100	4178	6447	3170	170	869	1144	3669	1140	1202	
+
+H 36   4461	*	*	6180	4919	4113	2179	*	2696	*	*	*	6488	5551	1494	*	5304	5268	*	4789	36
+       103	3865	*	2573	265	1810	484	3723	1201	1118	
+
+L 37   5288	5918	*	*	3339	*	*	3887	*	463	*	*	*	*	5535	*	7212	6165	*	5406	37
+       15	*	6579	*	*	*	0	3723	0	1077	
+
+M 38   6958	*	6495	*	*	*	*	5053	*	848	1340	*	*	*	*	*	*	*	*	*	38
+       5	8041	*	1585	585	2277	333	3713	1000	1104	
+
+S 39   4581	*	4861	5061	*	*	6666	*	4607	7435	*	7035	5945	7277	4607	1366	1510	*	5227	*	39
+       0	*	*	*	*	*	0	3723	0	1077	
+
+E 40   *	*	5481	79	*	*	*	*	*	*	*	*	*	*	*	*	*	6873	*	5465	40
+       0	*	*	*	*	*	0	3723	0	1077	
+
+S 41   4184	*	2746	2375	5150	6884	3906	6648	3722	7867	5047	5362	5036	4240	5835	3175	3523	4908	*	5426	41
+       0	*	*	*	*	*	0	3723	0	1077	
+
+E 42   *	5219	6824	317	*	*	*	*	*	5535	5889	*	*	3919	*	*	*	5210	*	5053	42
+       121	3639	*	0	*	*	0	3723	1195	1077	
+
+W 43   *	4391	*	*	4901	*	*	3626	*	6287	*	*	*	*	*	*	*	5746	365	5053	43
+       99	3914	*	0	*	*	0	3723	1143	1077	
+
+R 44   *	*	*	6287	*	7540	4217	5913	5775	*	*	4134	*	*	258	*	*	*	*	*	44
+       24	5913	*	0	*	*	0	3723	1018	1077	
+
+N 45   4206	5889	5777	3732	*	2334	5775	*	3993	*	5979	2954	*	3509	3153	2790	5188	4683	*	*	45
+       27	5762	*	0	*	0	*	3723	1023	1077	
+
+L 46   6012	*	*	*	4629	*	*	2565	*	485	4747	*	*	*	*	*	*	*	*	5411	46
+       0	*	*	*	*	*	*	3769	0	0	
+
+G 47   5099	5950	*	*	*	189	*	*	*	*	*	*	*	4166	5505	*	*	*	*	*	47
+       0	*	*	*	*	*	*	3769	0	0	
+
+V 48   5266	*	*	*	*	*	*	965	*	4388	*	*	*	*	*	*	*	1306	*	6695	48
+       0	*	*	*	*	*	*	3769	0	0	
+
+Q 49   5911	*	3791	6374	6441	*	*	*	3223	*	*	*	*	787	3434	*	3534	*	*	5505	49
+       0	*	*	*	*	*	*	3769	0	0	
+
+Q 50   *	*	*	*	*	*	*	4494	*	3463	2279	*	*	659	6745	5959	*	*	*	*	50
+       0	*	*	*	*	*	*	3681	0	0	
+
+S 51   *	*	6386	5856	5332	4655	*	*	*	*	*	5190	*	*	5461	351	4574	5055	*	*	51
+       0	*	*	*	*	*	*	3684	0	0	
+
+Q 52   7952	5516	6075	7262	*	*	7131	*	2331	3023	6104	5737	2004	3210	2262	6526	6875	7537	*	*	52
+       0	*	*	*	*	*	*	3684	0	0	
+
+G 53   *	*	*	4438	*	119	*	5856	*	*	*	7100	*	*	*	*	*	*	*	6924	53
+       0	*	*	*	*	*	*	3684	0	0	
+
+W 54   *	*	*	*	*	*	*	5856	*	*	*	*	*	*	*	*	*	*	25	*	54
+       0	*	*	*	*	*	*	3684	0	0	
+
+V 55   *	*	5856	2256	*	*	5538	3125	4872	4395	5982	*	*	3404	5198	*	3832	1593	*	5949	55
+       0	*	*	*	*	*	*	3684	0	0	
+
+H 56   *	*	*	*	*	*	235	*	*	5055	5922	4993	*	4649	4945	*	*	*	*	*	56
+       0	*	*	*	*	*	*	3684	0	0	
+
+Y 57   *	5314	*	*	2197	*	*	5737	*	*	*	*	*	*	*	5154	*	*	5516	539	57
+       0	*	*	*	*	*	*	3684	0	0	
+
+M 58   3117	7362	4537	3154	*	3382	5470	*	*	3214	1218	*	*	*	*	5703	*	*	*	4382	58
+       0	*	*	*	*	*	*	3684	0	0	
+
+I 59   *	5045	5736	6091	7903	*	5900	1536	6538	4876	6453	5031	*	*	4028	5320	4551	2223	4988	3199	59
+       0	*	*	*	*	*	*	3668	0	0	
+
+H 60   *	*	*	*	2913	*	737	*	*	4553	*	*	*	*	5307	3632	*	*	5736	3322	60
+       7	7605	*	1000	1000	*	*	3668	1000	0	
+
+E 61   3701	6817	4187	2669	*	4946	5943	*	1795	*	5505	4221	3698	4786	3433	5002	6030	6455	*	5273	61
+       0	*	*	*	*	*	*	3685	0	0	
+
+P 62   *	*	*	5721	*	4423	*	*	3869	*	*	4221	545	*	5840	6467	*	*	*	3348	62
+       0	*	*	*	*	*	*	3685	0	0	
+
+E 63   *	*	3832	382	*	*	*	*	3690	5721	*	*	*	*	4878	6673	*	5503	*	*	63
+       16	*	6467	*	*	*	*	3685	0	0	
+
+P 64   *	*	*	6351	*	*	*	5077	7384	3859	5851	5680	432	5184	4858	4535	*	*	*	*	64
+       0	*	*	*	*	*	0	3685	0	1014	
+
+H 65   *	5980	5882	5329	5737	*	793	*	3801	*	*	2955	*	7380	4413	*	*	*	5603	3788	65
+       0	*	*	*	*	*	0	3685	0	1014	
+
+I 66   *	6351	*	2855	*	*	*	770	*	5077	*	*	*	*	*	5270	*	2268	*	*	66
+       0	*	*	*	*	*	0	3685	0	1014	
+
+L 67   *	*	*	*	6633	*	*	4653	*	140	6689	*	*	*	*	*	6351	5572	*	*	67
+       0	*	*	*	*	*	0	3685	0	1014	
+
+L 68   *	5603	*	*	4366	*	*	2349	*	772	3374	6351	5572	*	*	*	*	5680	*	*	68
+       0	*	*	*	*	*	0	3685	0	1014	
+
+F 69   *	*	*	*	409	*	*	*	*	2441	*	*	*	*	*	4914	*	5077	*	*	69
+       0	*	*	*	*	*	0	3685	0	1014	
+
+R 70   5468	*	*	*	*	*	*	*	3065	*	*	*	6353	4385	379	*	*	*	5118	*	70
+       0	*	*	*	*	*	0	3685	0	1014	
+
+R 71   *	*	*	5064	*	*	*	*	3056	5132	*	*	5981	6077	339	*	*	*	*	*	71
+       50	5811	5971	1963	428	*	0	3687	1024	1014	
+
+P 72   6025	*	*	3962	*	*	*	*	2993	5570	7434	*	620	7191	4875	5738	5916	4596	*	*	72
+       45	5412	7078	1704	529	968	1033	3579	1025	1058	
+
+L 73   6812	7261	*	*	6855	*	4687	3161	2701	1224	6008	6682	5545	5406	3484	*	7460	3680	*	*	73
+       0	*	*	3322	152	611	1535	3596	1014	1036	
+
+P 74   5714	*	2545	4818	*	2356	5945	*	4946	5144	*	3013	2863	6333	*	4589	2422	*	*	*	74
+       13	6827	*	0	*	*	0	3497	1000	1000	
+
+K 75   3012	*	3351	6368	4025	3203	*	*	2509	*	7172	4145	4279	6691	*	4979	2349	*	*	3888	75
+       206	3279	5062	2414	300	0	*	3425	1120	1000	
+
+K 76   4168	*	1945	*	*	4263	*	6367	3203	*	*	2028	4191	3223	4167	4783	6273	*	*	*	76
+       0	*	*	*	*	0	*	3268	0	1033	
+
+P 77   4042	5625	6190	5568	*	5427	*	3101	3717	4599	5635	2975	2147	4072	4207	4673	4026	4649	*	*	77
+       0	*	*	*	*	*	*	3128	0	0	
+
+K 78   *	*	*	*	*	*	*	*	1579	*	*	*	1318	2300	*	*	4027	*	*	*	78
+       0	*	*	*	*	*	*	2344	0	0	
+
+K 79   2446	*	*	2365	*	*	*	*	1206	*	*	2406	*	*	*	*	*	*	*	*	79
+       0	*	*	0	*	*	*	2165	0	0	
+
+//
+�HHsearch 1.5
+NAME  a0a16d5fe9c52ade8dbd14d530daeeb8
+FAM   
+FILE  a0a16d5fe9c52ade8dbd14d530daeeb8
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 11:57:43 2013
+LENG  72 match states, 72 columns in multiple alignment
+FILT  103 out of 199 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  4.5 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCCCCCEEEEEEEECCCCCCCCCCCCCCCCCHHHHHHHHHHHCCEEEEEECCCCCEEEEECC
+>ss_conf PSIPRED confidence values
+975568874755676268999983677567888675232999999999976098898897356513688519
+>Consensus
+xxxxxpxxxxxFEGxEKxLEIxfxxxxxxxxxxxxgLRxixrxxWxxxLxxvxCxIlSxxsnxxxDAYvLSE
+>a0a16d5fe9c52ade8dbd14d530daeeb8
+MEMDLPVSAIGFEGFEKRLEISFVEPGLFADPNGKGLRSLSKAQLDEILGPAECTIVDNLSNDYVDSYVLSE
+>gi|340054298|emb|CCC48594.1| putative S-adenosylmethionine decarboxylase [Trypanosoma vivax Y486]
+--ARFdPGPQPSFEGPEKRLEIIM---RFLEVTHVDGLHALDDKVWEEVVSAVNAKIVSKESNEHIRSYVLTE
+>gi|149618484|ref|XP_001514093.1| PREDICTED: hypothetical protein [Ornithorhynchus anatinus]
+--------------meKNHSYSVCLGtcnstvdRPF--ALQSV-ILGRGSSFEWDKLLENVHCLIISVTKTDKQEAYVLSE
+>gi|167623734|ref|YP_001674028.1| adenosylmethionine decarboxylase [Shewanella halifaxensis HAW-EB4]gi|167353756|gb|ABZ76369.1| Adenosylmethionine decarboxylase [Shewanella halifaxensis HAW-EB4]
+---------MFFEGSEKKIELQL-------NSSAVSLRSLPHSFWQQALSLAQAEILSSLSNSHCDAYVLSE
+>gi|196006337|ref|XP_002113035.1| hypothetical protein TRIADDRAFT_56768 [Trichoplax adhaerens]gi|190585076|gb|EDV25145.1| hypothetical protein TRIADDRAFT_56768 [Trichoplax adhaerens]
+------TQQAFFEGTEKLLEIWFASSDSTQstqDGRVHDLREISKDDWSELLTYANCSILSEVSSNDITAYLLSE
+>gi|331247566|ref|XP_003336411.1| S-adenosylmethionine decarboxylase [Puccinia graminis f. sp. tritici CRL 75-36-700-3]gi|309315401|gb|EFP91992.1| S-adenosylmethionine decarboxylase [Puccinia graminis f. sp. tritici CRL 75-36-700-3]
+-----PANGPPFEGPEKLLELWFAPSADqvpiAsnvgtragllrSGPKFTGLRTVNHPLWHAMLDQVKCKVLSVIESEHVDAFLLSE
+>gi|90408155|ref|ZP_01216324.1| S-adenosylmethionine decarboxylase proenzyme, putative [Psychromonas sp. CNPT3]gi|90310767|gb|EAS38883.1| S-adenosylmethionine decarboxylase proenzyme, putative [Psychromonas sp. CNPT3]
+---------MFYEGREKRLEIIT---------QGINLLDFPVDFWHAMVQQAGACILGEIKENNIKAFILSE
+>gi|119576475|gb|EAW56071.1| hCG17429, isoform CRA_a [Homo sapiens]
+-------AVHFSEGTEKRLEVWFSWQQPNANQGSGDLRTIPRSE----------------------------
+>gi|156081893|ref|XP_001608439.1| S-adenosylmethionine decarboxylase-ornithine decarboxylase [Plasmodium vivax SaI-1]gi|148801010|gb|EDL42415.1| S-adenosylmethionine decarboxylase-ornithine decarboxylase, putative [Plasmodium vivax]
+----------VFEGIEKRIVIKLRKECFEEKKNISSLFDISRELWEEKLKYIGCSIVSEIEEdvqapaeERCRVYLLSE
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	*	*	652	*	*	*	*	*	*	1460	*	*	1
+       0	*	*	*	*	*	*	1658	0	0	
+
+E 2    1636	*	*	1667	*	*	*	*	*	*	*	1460	*	*	*	*	*	*	*	*	2
+       0	*	*	*	*	*	*	1658	0	0	
+
+M 3    2756	*	*	3443	*	*	*	3897	2488	*	2030	*	*	*	*	2836	*	2947	*	*	3
+       0	*	*	*	*	*	*	3017	0	0	
+
+D 4    1780	*	2909	3076	*	3697	*	*	*	*	*	3443	*	*	2145	*	*	4012	*	*	4
+       154	*	3305	3459	138	*	*	3017	1001	0	
+
+L 5    4227	*	*	3108	2197	2336	*	*	*	3231	*	*	*	*	3037	3128	*	*	*	3800	5
+       714	1550	4357	0	*	0	*	3031	1328	1000	
+
+P 6    *	*	3847	*	*	*	*	*	*	*	*	3778	491	*	*	3550	*	4045	*	*	6
+       0	*	*	*	*	*	0	3576	0	1000	
+
+V 7    4295	*	2828	4525	*	3516	3533	*	4516	4673	2714	3533	5179	*	*	4246	3681	3171	*	*	7
+       0	*	*	4391	70	0	*	3942	1075	1000	
+
+S 8    2558	*	5010	5494	*	3361	4067	*	*	*	4316	4411	5317	3035	*	1740	4194	*	*	5534	8
+       0	*	*	*	*	*	*	4198	0	0	
+
+A 9    3078	*	4251	4065	*	3203	5623	*	5892	*	5491	5729	3758	3591	*	3011	2116	3820	*	*	9
+       62	5173	6138	2893	209	*	*	4342	1082	0	
+
+I 10   4187	5398	3853	4360	6451	4974	3207	3311	*	6702	2471	3871	3382	5189	5768	3868	5345	*	5240	4980	10
+       95	4260	6451	2585	263	0	*	4585	1127	1000	
+
+G 11   2277	6039	*	6279	1543	2699	5403	6811	*	*	*	5336	4261	*	*	3714	6251	4693	*	5011	11
+       46	4988	*	2909	206	0	*	4623	1068	1023	
+
+F 12   *	*	*	*	130	*	*	*	*	*	*	*	*	*	*	6583	*	*	*	3725	12
+       0	*	*	*	*	*	*	4631	0	0	
+
+E 13   *	*	*	74	*	*	*	*	*	*	*	*	*	*	*	4320	*	*	*	*	13
+       0	*	*	*	*	*	*	4631	0	0	
+
+G 14   *	*	*	*	*	74	*	*	*	*	*	4320	*	*	*	*	*	*	*	*	14
+       0	*	*	1000	1000	*	*	4631	1088	0	
+
+F 15   3341	4512	*	*	3801	*	*	5377	4940	*	*	*	1575	6366	5234	3298	3239	2950	*	5807	15
+       0	*	*	*	*	*	*	4730	0	0	
+
+E 16   *	*	*	115	*	*	*	*	*	*	*	4940	*	*	*	*	*	4512	*	*	16
+       0	*	*	*	*	*	*	4730	0	0	
+
+K 17   *	*	*	*	*	*	4940	*	115	*	*	*	*	*	4512	*	*	*	*	*	17
+       0	*	*	*	*	*	*	4730	0	0	
+
+R 18   *	*	*	*	*	*	*	5001	2689	1324	*	6331	*	*	1601	4940	4655	*	*	*	18
+       0	*	*	*	*	*	*	4730	0	0	
+
+L 19   6907	*	*	*	*	*	*	3012	*	430	5873	*	4512	*	*	*	*	4974	*	4940	19
+       0	*	*	*	*	*	*	4730	0	0	
+
+E 20   *	*	4911	280	*	*	*	*	*	*	*	*	*	5764	*	3313	*	5377	*	*	20
+       0	*	*	*	*	*	*	4730	0	0	
+
+I 21   6878	*	*	*	6010	*	*	950	*	2736	4512	*	*	*	*	*	*	1918	*	*	21
+       0	*	*	*	*	*	*	4730	0	0	
+
+S 22   4302	4006	3589	4049	*	6285	*	3307	4557	6864	*	*	*	7176	4518	6085	4722	3488	1372	*	22
+       0	*	*	*	*	*	*	4730	0	0	
+
+F 23   *	*	*	*	614	*	*	5764	*	3292	3826	*	*	*	*	*	5325	3056	6591	*	23
+       563	*	1630	*	*	*	*	4730	0	0	
+
+V 24   2386	6079	4614	3539	4120	3690	4113	*	4297	6021	*	*	4149	6643	3443	3171	4966	5014	5305	4313	24
+       194	3349	5169	3378	146	4230	79	4330	1255	2310	
+
+E 25   4247	*	4396	2586	*	4580	*	5488	3865	4848	*	6417	1845	*	3048	3129	*	*	5061	6559	25
+       157	6559	3435	0	*	*	0	4339	1000	2303	
+
+P 26   5869	*	5924	4103	*	4812	4569	4789	4101	*	*	4877	2022	4351	6678	1865	3986	4075	*	*	26
+       143	5168	3906	1000	1000	1640	558	4273	1024	2511	
+
+G 27   3212	4036	3399	6462	4606	4883	6309	*	5185	5294	6717	5227	2864	4742	3065	2458	6482	5071	*	5005	27
+       490	3541	2306	2274	334	*	0	4389	1169	2180	
+
+L 28   6037	*	4129	3440	2757	4427	5906	2878	5993	3182	*	*	3051	*	5403	3072	5708	4024	*	5749	28
+       605	3887	1862	1608	574	4649	59	4191	1093	2705	
+
+F 29   4325	*	4290	3791	2075	4290	5616	*	5419	2268	*	5773	3617	*	*	5403	3240	5065	*	5178	29
+       283	2795	4888	2183	359	1848	469	3976	1172	3061	
+
+A 30   2691	*	3439	2587	*	2774	*	5226	3332	*	*	4026	4055	5045	5962	2772	*	*	*	*	30
+       193	3471	4846	1600	578	346	2229	4291	1158	2568	
+
+D 31   4200	5669	2893	3008	*	4318	*	7096	3532	4847	*	3175	3964	6185	6609	2539	4315	3893	*	*	31
+       30	7124	6239	3585	126	2478	285	4638	1000	1394	
+
+P 32   3886	5316	5953	4118	5687	2844	6699	4084	3507	4332	7101	6813	2855	3905	6102	3798	3215	4536	*	6612	32
+       195	3261	5513	2058	396	161	3245	4651	1465	1370	
+
+N 33   3705	6603	4833	3487	*	3132	3353	*	3422	4214	*	3191	3805	5128	4574	3395	3592	*	*	*	33
+       179	3096	*	2534	273	1555	600	4716	1475	1087	
+
+G 34   3302	6113	4103	3644	5213	2569	5905	5034	4065	6798	6570	3454	4207	5752	4069	3351	6014	3795	6063	*	34
+       70	*	4397	*	*	*	0	4726	0	1043	
+
+K 35   4651	5450	4553	3804	5798	3804	6796	4896	3200	4283	3705	4713	4525	4224	2828	3616	4697	4669	*	5733	35
+       23	*	5980	1000	1000	174	3136	4631	1043	1229	
+
+G 36   *	*	2770	6655	*	1006	*	4943	5982	*	*	3794	*	*	*	2386	4879	*	*	*	36
+       69	4412	*	462	1869	1845	470	4716	1171	1069	
+
+L 37   5101	5513	*	*	*	*	*	*	*	76	*	*	*	*	*	*	*	*	*	*	37
+       0	*	*	*	*	*	0	4715	0	1038	
+
+R 38   *	*	*	*	5374	4946	5397	*	4741	3680	6429	5872	*	*	367	*	*	*	*	*	38
+       0	*	*	*	*	*	0	4715	0	1038	
+
+S 39   2294	6690	3815	3412	*	6679	7082	*	3911	4211	*	3900	*	4275	4025	2237	4058	4993	*	*	39
+       44	5068	*	0	*	0	*	4715	1067	1038	
+
+L 40   6188	*	*	*	5355	4949	4716	1303	*	1647	*	*	*	*	5996	*	*	2725	*	*	40
+       0	*	*	*	*	*	*	4731	0	0	
+
+S 41   6647	*	3487	4913	*	2915	*	*	5447	*	*	5392	1479	*	6295	2242	3246	*	*	*	41
+       0	*	*	*	*	*	*	4731	0	0	
+
+K 42   4662	*	3264	5575	5955	7124	5237	6872	3235	3972	5050	*	*	5231	1221	4576	7037	4744	*	4861	42
+       8	7484	*	0	*	*	*	4732	1000	0	
+
+A 43   2867	6795	2209	2118	4445	4791	6339	*	5671	*	*	5166	5378	4684	*	2675	5510	*	5387	*	43
+       0	*	*	*	*	*	*	4732	0	0	
+
+Q 44   5043	*	4135	3040	2770	6162	*	5912	3239	4951	5705	*	*	2714	5619	5142	3544	2685	*	6128	44
+       0	*	*	*	*	*	*	4732	0	0	
+
+L 45   *	*	*	*	*	*	*	4461	*	2081	*	*	*	*	*	*	*	6376	521	6747	45
+       0	*	*	*	*	*	*	4728	0	0	
+
+D 46   6078	7229	1488	2191	*	*	4341	5973	4733	*	*	*	*	2968	5313	4383	6176	3646	*	7463	46
+       0	*	*	*	*	*	*	4728	0	0	
+
+E 47   3234	*	3644	2035	*	4249	*	6726	3017	5254	7463	4473	*	3965	4282	3508	3793	4980	*	*	47
+       0	*	*	*	*	*	*	4728	0	0	
+
+I 48   4942	6571	*	*	5851	6672	*	1937	5375	2047	1961	*	*	*	*	*	*	2780	*	*	48
+       0	*	*	*	*	*	*	4727	0	0	
+
+L 49   6280	5511	*	*	*	*	*	6147	*	447	5040	*	*	*	*	*	*	2418	*	*	49
+       0	*	*	*	*	*	*	4727	0	0	
+
+G 50   2882	7017	2188	3203	*	4133	*	*	2178	*	*	4486	*	4817	4315	4409	3774	*	*	*	50
+       0	*	*	*	*	*	*	4727	0	0	
+
+P 51   3090	4814	6701	4157	7875	*	5038	3681	5116	2041	6107	4394	3385	3910	5511	3274	7069	7098	*	4945	51
+       0	*	*	*	*	*	*	4727	0	0	
+
+A 52   1217	5079	*	*	*	6334	*	4299	*	6242	*	*	*	*	*	5281	*	1190	*	*	52
+       0	*	*	*	*	*	*	4727	0	0	
+
+E 53   6978	4338	3367	2926	*	3996	3448	*	2493	*	*	2527	*	3524	3350	5397	*	*	*	*	53
+       0	*	*	*	*	*	*	4727	0	0	
+
+C 54   2338	389	*	*	*	5374	*	*	*	*	*	*	*	*	*	*	6116	*	*	*	54
+       0	*	*	*	*	*	*	4727	0	0	
+
+T 55   6519	4774	5866	1915	6504	*	4883	*	2341	4288	*	*	*	4515	5870	4046	2137	6013	6311	*	55
+       0	*	*	*	*	*	*	4727	0	0	
+
+I 56   *	*	*	*	*	*	*	311	*	*	*	*	*	*	*	*	*	2368	*	*	56
+       0	*	*	*	*	*	*	4727	0	0	
+
+V 57   *	6011	*	5143	*	*	*	2376	*	1110	*	*	*	*	*	*	*	1735	*	*	57
+       0	*	*	*	*	*	*	4727	0	0	
+
+D 58   5918	*	4002	6411	*	4994	4930	*	*	*	*	5758	*	*	6011	302	*	*	*	*	58
+       0	*	*	*	*	*	*	4727	0	0	
+
+N 59   4981	6280	*	3200	4824	*	4621	4935	2843	6286	4195	6983	*	3633	4152	2595	4523	2641	*	5871	59
+       0	*	*	*	*	*	*	4727	0	0	
+
+L 60   5641	6166	*	3645	5405	*	*	2106	3103	2411	4355	6685	*	6411	5240	4502	3286	3601	*	*	60
+       0	*	*	*	*	*	*	4727	0	0	
+
+S 61   4524	5245	*	3344	6147	5220	4794	*	2734	6311	*	5705	*	6706	3599	1160	4919	*	*	*	61
+       23	6011	*	0	*	*	*	4727	1021	0	
+
+N 62   6468	*	6666	4243	*	3934	5877	*	*	5008	*	928	*	*	*	2915	2694	*	*	*	62
+       35	5375	*	2807	222	*	*	4727	1047	0	
+
+D 63   3920	*	1663	1786	*	4812	5801	*	3996	*	*	4743	5190	4337	6848	4118	5578	6571	*	*	63
+       0	*	*	*	*	*	*	4727	0	0	
+
+Y 64   4510	6138	2562	3573	4377	*	2603	7027	3001	5689	*	5270	*	3899	4768	4537	5448	5409	*	3255	64
+       0	*	*	*	*	*	*	4727	0	0	
+
+V 65   5932	2687	*	*	3509	*	*	2580	*	2383	2862	*	*	3910	*	5758	6742	2897	*	6011	65
+       0	*	*	*	*	*	*	4727	0	0	
+
+D 66   *	*	466	4336	*	*	6925	6578	5216	*	*	6011	*	*	3382	*	4511	5296	*	*	66
+       0	*	*	*	*	*	*	4727	0	0	
+
+S 67   595	6439	*	*	*	*	*	*	*	*	*	*	*	*	*	1725	*	5375	*	*	67
+       0	*	*	*	*	*	*	4727	0	0	
+
+Y 68   *	*	*	*	3127	*	*	*	*	6177	*	*	*	*	*	*	*	*	*	198	68
+       0	*	*	*	*	*	*	4727	0	0	
+
+V 69   *	*	*	*	*	*	*	3498	*	1256	*	*	*	*	*	*	*	1021	*	*	69
+       0	*	*	*	*	*	*	4727	0	0	
+
+L 70   *	*	*	*	*	*	*	5374	*	35	*	*	*	*	*	*	*	*	*	*	70
+       0	*	*	*	*	*	*	4727	0	0	
+
+S 71   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	71	4382	*	*	*	71
+       0	*	*	*	*	*	*	4727	0	0	
+
+E 72   4608	*	*	60	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	72
+       0	*	*	0	*	*	*	4727	0	0	
+
+//
+�HHsearch 1.5
+NAME  a1369bdee466c1364c07095750be3efc
+FAM   
+FILE  a1369bdee466c1364c07095750be3efc
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:14:51 2013
+LENG  85 match states, 85 columns in multiple alignment
+FILT  148 out of 1020 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  6.5 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCCCCCCCCCCCCEEHHHHHHHHHHHHCCCCEEECCCCCCCCCCCCCCCCCCHHHHHHHHHCCCHHHHHHCCCCC
+>ss_conf PSIPRED confidence values
+9999976646897377624385100667999999854266600067874112126553015426899999279999975403688
+>Consensus
+xxxxxxxCxVCxxxxxgxxygvxsCxaCxxFFrRxvxxxxxxxCxxxxxCxixxxxrxxCxxCRxxKClxvGMxxxxvxxxrxxx
+>a1369bdee466c1364c07095750be3efc
+GSFTKHICAICGDRSSGKHYGVYSCEGCKGFFKRTVRKDLTYTCRDNKDCLIDKRQRNRCQYCRYQKCLAMGMKREAVQEERQRG
+>gi|148694040|gb|EDL25987.1| nuclear receptor subfamily 2, group E, member 3, isoform CRA_a [Mus musculus]gi|148694041|gb|EDL25988.1| nuclear receptor subfamily 2, group E, member 3, isoform CRA_a [Mus musculus]
+------------------------------------------------TKMVSGGHGEVGKAGEKMASLPRGRcvcvlslpAFQAVQNERQPR
+>gi|20663783|pdb|1H9U|A Chain A, The Structure Of The Human Retinoid-X-Receptor Beta Ligand Binding Domain In Complex With The Specific Synthetic Agonist Lg100268gi|20663784|pdb|1H9U|B Chain B, The Structure Of The Human Retinoid-X-Receptor Beta Ligand Binding Domain In Complex With The Specific Synthetic Agonist Lg100268gi|20663785|pdb|1H9U|C Chain C, The Structure Of The Human Retinoid-X-Receptor Beta Ligand Binding Domain In Complex With The Specific Synthetic Agonist Lg100268gi|20663786|pdb|1H9U|D Chain D, The Structure Of The Human Retinoid-X-Receptor Beta Ligand Binding Domain In Complex With The Specific Synthetic Agonist Lg100268
+-----------------------------MPVDRILEAELAVEQKSDQGV---------------EGPGGTGGSGSS--------
+>gi|268576120|ref|XP_002643040.1| Hypothetical protein CBG22952 [Caenorhabditis briggsae]gi|187021410|emb|CAP39479.1| hypothetical protein CBG_22952 [Caenorhabditis briggsae AF16]
+----PVVneCPVCRGqngKAVQFFYGGYACLACVSFFRRHYNVDP-KPCLTGGNCNPE---GRKCPSCRLKNIRSAGMIHT---------
+>gi|341888135|gb|EGT44070.1| hypothetical protein CAEBREN_05825 [Caenorhabditis brenneri]
+-------CIIC--LEDSN-iLTQGICSKCFMFFR-rVVNEKRMRRCVSPCEEK-RVGSPSFCRYCRLQKILDAGIIIeDHITW-----
+>gi|308496399|ref|XP_003110387.1| hypothetical protein CRE_05779 [Caenorhabditis remanei]gi|308243728|gb|EFO87680.1| hypothetical protein CRE_05779 [Caenorhabditis remanei]
+----IEKCQVCGFEGHGYHFGAFTCRACAAFFRRCHLAAttEHRKCRNKYsTCVPNRNGKWFCKKCRFDRCNKLGMSSANIQYDRD--
+>gi|309356070|emb|CAP37680.2| hypothetical protein CBG_20720 [Caenorhabditis briggsae AF16]
+-DNTVPLCTVCGDVANGKRYGTWACLGCIVFFRRTVLRKMKYKCQREERCEVTVaiQIRDVIGPRKPKSGSTVSQNRSSA-------
+>gi|341902990|gb|EGT58925.1| hypothetical protein CAEBREN_14389 [Caenorhabditis brenneri]
+--------MI-c-VDGHAFLY--------SLFIepK--raLLTKkFRK--HcqYDG--CCtdfSGEKSPPCKSCRMKKCIRMGMNSQS--------
+>gi|268560284|ref|XP_002638018.1| Hypothetical protein CBG04845 [Caenorhabditis briggsae]
+-------CVLCGNHTLLHRYGPVTCSMCNTFFRGAISGNVVlGKCLSGCFRRKVFDFKIMCRGCKLGRCLASGMDPKKI-------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+G 1    *	*	*	*	*	587	*	*	*	*	*	*	*	*	*	1580	*	*	*	*	1
+       0	*	*	*	*	*	*	2084	0	0	
+
+S 2    *	*	3598	3440	*	*	*	*	*	*	*	4267	4518	*	4406	659	*	4340	*	*	2
+       0	*	*	*	*	*	*	4410	0	0	
+
+F 3    2498	*	*	4865	2999	5372	4992	3763	*	3349	5066	3201	3996	*	4997	3205	4826	5035	5086	*	3
+       0	*	*	*	*	*	*	5230	0	0	
+
+T 4    3572	*	5629	3593	*	5442	5163	*	*	6155	*	4900	5003	3665	5712	1992	2539	2955	*	4925	4
+       0	*	*	*	*	*	*	5689	0	0	
+
+K 5    6265	6294	3275	6103	4812	4930	4423	5145	3337	3854	*	3334	3195	3240	3947	4579	5008	3840	5432	*	5
+       16	6517	*	3070	183	*	*	5971	1222	0	
+
+H 6    4568	*	5949	3274	*	3692	6456	4880	2388	5545	4091	5302	3031	4295	3870	3603	4015	5330	*	6892	6
+       87	4336	6804	2904	207	*	*	6199	1312	0	
+
+I 7    5437	*	5187	4558	5350	5797	5862	3063	3798	2693	4684	3637	2867	5042	5334	4511	4287	3514	*	7151	7
+       84	4964	5333	3079	182	0	*	6361	1134	1000	
+
+C 8    *	140	5700	*	*	*	*	*	*	6109	*	*	*	*	6200	*	*	*	*	4471	8
+       51	5700	5997	5672	29	*	0	6549	1047	1086	
+
+A 9    3334	7246	6883	3418	4491	6124	7295	5444	3453	3422	5314	6976	4132	3421	3460	3487	4220	3529	6674	7405	9
+       0	*	*	*	*	*	0	6568	0	1169	
+
+I 10   *	*	*	*	*	*	*	1951	*	5681	6404	*	*	5726	5676	*	5499	643	*	6739	10
+       8	*	7441	1585	585	576	1603	6568	1011	1169	
+
+C 11   *	133	*	*	6311	5533	*	*	*	5465	*	5810	*	*	*	6237	*	*	*	*	11
+       32	*	5513	0	*	*	0	6579	1000	1059	
+
+G 12   *	*	4269	3810	5981	1221	5829	*	5030	5290	6110	4422	7412	3514	3872	3963	6756	5613	*	4582	12
+       40	6101	6254	0	*	1209	818	6532	1044	1210	
+
+D 13   3699	7785	1854	4320	*	3669	6807	*	3622	6660	6678	3494	7214	4090	3173	3903	5872	4377	*	7321	13
+       67	5680	5285	943	1059	1790	493	6548	1070	1208	
+
+R 14   6095	6677	4687	3817	*	6445	4488	5349	3079	3802	6723	5337	2604	4178	3142	3465	4433	4021	*	5081	14
+       129	3549	*	1521	618	1137	875	6553	1680	1296	
+
+S 15   1677	6371	6954	4834	*	3834	7590	6242	3663	5398	5442	5392	4582	*	5402	2339	3867	4736	*	5324	15
+       22	6076	*	514	1738	2102	383	6601	1070	1137	
+
+S 16   4361	5992	4535	6091	6422	5477	3681	4196	5624	3946	4923	3107	5267	4844	4521	2395	3100	5028	6094	5601	16
+       32	5525	*	1000	1000	0	*	6664	1101	1092	
+
+G 17   3870	5483	5119	4237	*	1131	*	7037	4643	4103	6170	5520	5837	5690	4457	3451	5036	5941	*	6831	17
+       63	4775	7367	0	*	*	*	6771	1234	0	
+
+K 18   7714	4936	*	6159	3046	6339	4909	3496	3450	3972	5850	3698	5075	6052	4521	3974	4811	4410	7100	2310	18
+       95	6096	4339	0	*	*	0	6769	1046	1011	
+
+H 19   4776	6453	6947	6370	5280	6686	1251	5315	4356	4732	*	2789	*	*	3194	4520	4464	*	*	5524	19
+       46	6702	5522	247	2670	351	2212	6663	1308	1382	
+
+Y 20   5805	7187	6062	*	1782	*	5728	5680	*	5834	*	6367	*	6231	6421	4656	5898	5261	5229	1097	20
+       32	*	5498	*	*	658	1449	6723	0	1204	
+
+G 21   6195	5060	5037	5538	*	646	*	*	4598	*	*	4055	6784	4681	5200	4099	5611	6680	*	*	21
+       22	6024	*	2322	322	*	0	6716	1051	1208	
+
+V 22   2080	5580	5530	*	6550	4344	6019	4937	5472	*	5695	7051	5461	5380	6957	4861	4128	1261	*	*	22
+       28	*	5695	*	*	*	0	6716	0	1208	
+
+Y 23   4169	*	4586	5420	3653	5795	7270	3495	6239	2893	5662	4482	3651	5111	4005	3776	5022	3216	4418	4460	23
+       34	7309	5866	1000	1000	645	1473	6675	1000	1322	
+
+S 24   2682	3380	*	*	*	6529	6754	4700	*	4387	6674	*	5720	7042	6750	1684	2244	3956	*	6731	24
+       34	6318	6529	2449	292	259	2607	6720	1052	1196	
+
+C 25   5456	216	*	*	*	*	*	*	*	5748	*	6767	*	*	5522	5360	*	6000	5988	6546	25
+       0	*	*	*	*	*	0	6766	0	1059	
+
+E 26   5497	5734	4244	2580	6072	4261	6723	7401	3493	4023	7628	2539	5104	6533	2820	3353	6579	5769	7271	6099	26
+       41	5143	*	2425	297	642	1478	6766	1158	1059	
+
+G 27   1286	6205	5243	7468	6625	2162	*	*	4942	6781	6834	5139	4565	*	5976	2809	5010	*	*	*	27
+       9	*	7380	*	*	*	0	6779	0	1000	
+
+C 28   6683	196	*	5987	*	*	*	*	*	5699	*	*	6208	5848	*	6424	6593	5536	*	7020	28
+       0	*	*	*	*	1403	686	6776	0	1053	
+
+K 29   2440	6575	5895	*	6637	5026	*	5432	1514	6601	5740	5301	*	3891	3468	4328	4557	4095	*	6457	29
+       28	5708	*	2701	241	*	0	6793	1094	1011	
+
+G 30   2257	6727	7252	4703	6875	3208	6148	5235	4843	4820	2832	5375	6243	5580	6638	3237	3598	3333	*	6348	30
+       0	*	*	*	*	*	0	6859	0	1011	
+
+F 31   7333	*	*	*	202	*	6243	*	*	*	*	*	6091	*	6875	5241	*	4694	*	5442	31
+       0	*	*	*	*	*	0	6859	0	1011	
+
+F 32   *	*	*	*	295	*	6098	4917	*	5936	*	*	6700	*	*	6697	*	5661	6256	3861	32
+       7	7665	*	1000	1000	*	0	6859	1000	1011	
+
+K 33   5918	6462	5267	7470	7333	5721	7391	*	3567	5512	6381	5986	*	5046	723	3972	5254	4720	*	6443	33
+       65	*	4511	*	*	*	0	6859	0	1011	
+
+R 34   6511	7211	5168	5315	*	5670	7573	*	7272	*	*	6097	*	6734	292	4611	5948	*	*	*	34
+       68	4631	7382	1496	632	815	1212	6783	1449	1351	
+
+T 35   3000	4812	*	7003	7476	5673	4442	4184	4976	6234	5311	4518	*	7514	6522	2479	1819	3862	*	4523	35
+       11	*	7015	1000	1000	1075	929	6843	1000	1173	
+
+V 36   3670	5814	*	*	5289	7114	7341	2300	4397	2877	5498	*	*	5408	*	4015	5239	1657	*	5212	36
+       48	5179	7681	918	1087	1636	560	6926	1173	1121	
+
+R 37   3777	*	5244	4881	6262	6203	4522	4951	3599	2863	5913	3979	5894	2723	3325	4131	3963	3974	7647	7285	37
+       101	4630	5214	1277	768	*	0	6860	1350	1109	
+
+K 38   4189	*	6256	3635	5325	3252	7536	7250	2316	3831	4880	3796	4943	4790	3873	2937	4752	5642	*	6941	38
+       23	5991	*	595	1565	1966	426	6884	1088	1321	
+
+D 39   6672	*	3990	3493	6113	4346	6503	6814	2147	6142	*	2361	5044	3606	4299	3958	4922	4817	7036	5922	39
+       80	4398	7222	528	1705	2432	296	6819	1329	1225	
+
+L 40   4271	6880	5321	5492	5147	7300	5479	3963	2762	3188	4047	4319	4232	5559	3233	3890	4256	3859	5948	5803	40
+       89	5086	5054	2919	205	2564	267	6814	1168	1220	
+
+T 41   4205	*	4250	4003	5155	6022	4724	3759	2682	5276	4385	3998	3661	4275	3850	4411	3784	4131	*	7186	41
+       212	2944	7266	995	1005	2969	197	6777	2016	1395	
+
+Y 42   5943	6070	5615	5410	2715	5075	7181	4412	4007	3763	*	7379	4717	4440	4551	4693	5785	5085	7673	1603	42
+       17	*	6422	3953	96	2878	211	6783	1011	1440	
+
+T 43   5569	6408	4550	3497	7128	6043	6130	5054	2220	4998	5988	4819	4589	3958	3807	4739	3416	2722	*	6352	43
+       81	4954	5502	415	2000	1436	665	6774	1172	1458	
+
+C 44   5778	247	6831	6720	*	*	*	*	5143	*	*	7341	*	6061	6123	4900	*	*	7028	5991	44
+       91	6555	4316	0	*	2088	387	6758	1026	1430	
+
+R 45   4164	6191	4787	3826	6174	5626	5928	5174	2587	3586	6322	4582	4584	3860	2741	3331	4573	6587	7428	5386	45
+       48	5440	6708	970	1031	1167	850	6823	1361	1757	
+
+D 46   4077	4188	5469	4554	3904	4005	4649	6525	2709	7528	*	4911	5601	5180	2374	3591	3808	*	*	4215	46
+       144	4210	4618	597	1562	*	0	6786	1323	1464	
+
+N 47   6217	*	3574	3765	6722	2863	4677	5066	4104	5479	5859	2312	4804	4447	4735	4101	3062	8108	*	6246	47
+       32	5512	*	235	2732	1319	739	6720	1153	1797	
+
+K 48   7608	4441	5454	4342	*	2044	5037	7069	2708	*	*	2308	7206	3702	3791	4523	*	6236	5734	6632	48
+       56	5284	6332	0	*	808	1222	6787	1154	1465	
+
+D 49   5673	6227	3342	4346	5218	6116	5641	5638	2968	5171	5271	2094	7729	3994	3577	3392	4052	6782	7331	*	49
+       56	7384	4953	0	*	*	0	6838	1000	1259	
+
+C 50   5117	302	7045	4570	6558	*	*	*	6128	6508	*	*	6392	*	5316	6943	*	5653	6691	*	50
+       107	5564	4312	2837	218	941	1062	6785	1111	1510	
+
+L 51   5321	4248	3884	3341	3967	5728	7466	4151	3698	4406	6181	4673	4394	3920	4473	3480	5110	3276	*	4224	51
+       159	6487	3424	1000	1000	3787	108	6775	1015	1608	
+
+I 52   7578	6250	5347	4611	5372	7162	5261	1286	4406	4064	6699	5374	5506	6361	7465	4170	5892	2426	6662	*	52
+       63	5331	5831	451	1896	2211	351	6581	1170	2200	
+
+D 53   5122	*	2454	4192	5148	5006	5085	*	5829	3889	*	2704	3797	4901	4147	3063	3637	5021	*	6160	53
+       188	3265	5806	1337	727	2129	374	6686	1679	2046	
+
+K 54   4991	5182	4783	4705	4405	4006	4650	4984	2041	6249	7622	4650	5707	5909	3731	3536	4008	3263	*	5583	54
+       151	3905	4939	1547	604	2800	224	6687	1391	1951	
+
+R 55   4095	*	3051	4077	5913	3564	5215	3988	3371	3910	7348	3610	6848	4344	3752	3915	4075	4778	6707	6011	55
+       26	6785	6810	1793	491	2386	306	6681	1018	2009	
+
+Q 56   4624	5462	5339	3991	4442	5091	4551	3980	3587	4736	6373	3741	5446	4545	3196	3540	2608	5762	*	5884	56
+       111	5537	4247	860	1156	1244	791	6722	1107	1925	
+
+R 57   6562	6359	4670	6728	7597	5144	4972	4396	3212	5000	6392	6072	4553	4896	1113	4499	6086	7214	5600	5319	57
+       9	7394	*	698	1382	1045	957	6794	1053	1861	
+
+N 58   4394	5253	4162	4830	5337	6513	4569	4771	3124	3904	4828	2953	4100	4218	3608	4205	4711	5255	7303	4161	58
+       97	4370	5915	3705	115	766	1279	6808	1451	1428	
+
+R 59   4301	5870	5190	5063	4348	5589	6547	5686	2754	4558	5161	3567	4336	3353	3115	3128	4971	4721	7165	5800	59
+       20	6215	*	1910	446	1723	521	6825	1058	1265	
+
+C 60   *	187	6396	*	*	6276	*	5931	*	5548	6549	*	*	*	6943	6520	6166	6003	*	*	60
+       0	*	*	*	*	*	0	6832	0	1168	
+
+Q 61   4940	7749	7250	5031	*	4801	5579	5353	2282	4792	5096	6549	3903	2587	1764	5078	7501	*	*	*	61
+       8	*	7415	*	*	*	0	6832	0	1168	
+
+Y 62   2612	6018	5938	5599	3180	5092	4810	5547	4259	4548	*	6211	4009	6311	5997	2198	5824	6567	*	2812	62
+       0	*	*	*	*	*	0	6830	0	1236	
+
+C 63   *	182	*	6943	*	5536	*	*	*	6571	*	*	*	*	5938	4284	*	6525	*	*	63
+       33	5451	*	0	*	*	0	6902	1117	1236	
+
+R 64   *	*	*	6266	*	5087	5778	*	4599	7049	*	*	6571	6583	248	6380	*	*	5981	*	64
+       0	*	*	*	*	2119	377	6902	0	1236	
+
+Y 65   *	*	*	*	1501	*	*	4897	5237	1519	3719	*	5947	*	*	*	6029	*	7089	3025	65
+       0	*	*	*	*	520	1725	6912	0	1169	
+
+Q 66   4142	*	5128	3380	7137	5282	4659	*	2151	6245	5311	4681	*	2108	2908	5930	5038	6533	*	5573	66
+       0	*	*	*	*	*	0	6980	0	1011	
+
+K 67   4703	*	*	*	*	6103	6466	*	581	6310	*	7006	*	4335	2890	4391	*	*	6063	*	67
+       0	*	*	*	*	*	0	6975	0	1011	
+
+C 68   *	288	*	*	*	5981	*	5839	*	6822	5517	*	6103	*	*	4671	*	4366	*	6110	68
+       0	*	*	*	*	*	0	6975	0	1011	
+
+L 69   5728	7059	*	4753	4040	6038	7398	3111	5518	1154	5447	*	*	5322	5215	5217	7651	2982	*	4867	69
+       0	*	*	3000	193	0	*	7016	1011	1011	
+
+A 70   3691	*	2962	2246	*	6023	5629	*	3108	4748	6096	3716	6305	3540	3421	3899	4636	*	*	7748	70
+       15	*	6572	*	*	*	*	6979	0	0	
+
+M 71   2274	*	*	6464	6230	6934	*	3727	4853	3842	4520	*	*	5821	4315	3715	5099	1508	*	6378	71
+       28	5714	*	2378	308	*	0	6970	1092	1022	
+
+G 72   *	*	7009	6980	*	121	6881	6207	*	*	*	*	*	6546	*	5933	*	5972	*	*	72
+       19	*	6243	*	*	*	0	7156	0	1022	
+
+M 73   5943	*	*	*	*	5995	*	5793	*	4076	264	6330	*	5893	6097	6146	*	*	*	*	73
+       51	4838	*	2230	346	0	*	7129	1393	1116	
+
+K 74   5226	6178	3578	5159	7426	5214	6846	4262	2982	4526	6789	2794	*	4813	3149	2896	3165	4761	*	*	74
+       52	5255	6769	3175	169	*	*	6956	1123	0	
+
+R 75   3640	7153	5598	4964	4591	5628	5635	4953	2644	3790	5512	7143	2805	6186	3167	3830	4791	4709	5911	4178	75
+       33	6580	6370	0	*	*	0	6930	1020	1010	
+
+E 76   4253	7133	3663	2029	6246	6257	7195	4258	2624	6929	7306	3738	6294	4221	6060	3092	4628	4896	*	7196	76
+       79	4234	*	4003	93	1225	805	6870	1319	1101	
+
+A 77   1884	7210	4545	4368	5264	5088	6267	5454	3893	5575	6829	3836	5129	6081	5534	2750	4728	3895	6980	4432	77
+       12	*	6917	*	*	0	*	6727	0	1033	
+
+V 78   5575	*	*	5713	3279	*	*	2785	4238	3785	*	6315	*	*	5124	5263	4887	1069	*	6857	78
+       11	7097	*	1585	585	*	0	6615	1000	1000	
+
+Q 79   6666	*	6598	3785	6316	4632	5344	6595	3318	4592	7019	5697	*	1443	2518	5346	4626	5407	*	5679	79
+       0	*	*	*	*	*	0	6446	0	1000	
+
+E 80   3892	6052	4698	3891	3739	4971	5472	7025	4749	6655	4773	3053	3780	5871	3747	2898	3262	*	4657	5154	80
+       0	*	*	*	*	0	*	6324	0	1000	
+
+E 81   6527	*	2179	2732	5439	3760	6483	6002	2797	4096	*	3185	5208	*	3430	4845	*	*	*	5198	81
+       52	4829	*	1000	1000	*	*	5920	1058	0	
+
+R 82   4355	*	4934	5312	5990	*	*	5689	2947	5016	*	6178	*	5557	771	3708	*	*	*	*	82
+       0	*	*	*	*	*	*	5948	0	0	
+
+Q 83   5618	*	2596	3535	5365	*	*	3847	3852	3976	4675	3191	*	2344	4878	*	3951	4988	*	5291	83
+       0	*	*	*	*	*	*	5321	0	0	
+
+R 84   *	*	*	4391	*	4441	4391	*	3035	3165	*	*	3082	*	1370	3658	*	4609	*	*	84
+       221	2815	*	2322	322	*	*	4535	1069	0	
+
+G 85   *	*	*	*	*	1366	*	*	*	*	*	2268	*	*	1684	*	3426	*	*	*	85
+       0	*	*	0	*	*	*	3632	0	0	
+
+//
+�HHsearch 1.5
+NAME  a1cf9299e65402da85fa1134c4159419
+FAM   
+FILE  a1cf9299e65402da85fa1134c4159419
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:17:17 2013
+LENG  209 match states, 209 columns in multiple alignment
+FILT  135 out of 1311 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.9 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCEEEEECCCCHHHHHHHHHHHHCCCCCEEEEECCCCCCCHHHHHCCCCCCCCEEEECCEEEECHHHHHHHHHHHCCCCCCCHHHHHHHHHHHHHHHHHH
+HHHHHHHHCCCHHHHHHHHHHHHHHHHHHHHHHHHCCCCCCCCCCCCCCHHHHHHHHHHHHHHHCCCHHHHCCHHHHHHHHHHHCCHHHHHHHCCCCCCC
+CCCCCCCCC
+>ss_conf PSIPRED confidence values
+9769995699814999999999849987799845122476878721878888889889987655999999999844469999999999999999999999
+9999998535587899999999999999999998546899722789998999999999999997181021107899999999984899999870355455
+125787779
+>Consensus
+xxxxLyxxxxsxxxxxvxxxlxxxgixxxxxxvxxxxxxxxxxxxxxpxxxvPxLxxxxxxlxesxxIxxyLxxxxxlxpxxxxxxxxxxxxxxxxxxlx
+xxxxxxxxxxxxxxxxxxxxxxxxxlxxlexxLxxxxxxxxxlxGxxxtxaDxxxxxxlxxxxxxxxxxxxxxpxlxxwxxxixxxpxxxxxxxxxxxxx
+xxxxxxxxx
+>a1cf9299e65402da85fa1134c4159419
+PPYTVVYFPVRGRCAALRMLLADQGQSWKEEVVTVETWQEGSLKASCLYGQLPKFQDGDLTLYQSNTILRHLGRTLGLYGKDQQEAALVDMVNDGVEDLR
+CKYISLIYTNYEAGKDDYVKALPGQLKPFETLLSQNQGGKTFIVADQISFADYNLLDLLLIHEVLAPGCLDAFPLLSAYVGRLSARPKLKAFLASPEYVN
+LPINGNGKQ
+>gi|226288896|gb|EEH44408.1| glutathione S-transferase [Paracoccidioides brasiliensis Pb18]
+--LTIHHLH-SSQSERIPWLCEELNIPYELKTYKRDPiFAPPEYKALHPSGAAPVIQDTlptndggsdaepqTLILAESCACVEYISHK-yGngrLFLps
+THKDYATFLYWFHWANGTFQPLLGrlltVETimssiggggggnsnsrsetQNQtlgSNPLIALWSGRRQRALRMLDNRF-KKrdegGEEATWLAGEEFTA
+ADIIVVFSLTTFRNW-YrYSLQEYKGILGYLQRIGGREGYR-rAMAQVDPEMTLA------
+>gi|242006743|ref|XP_002424206.1| methionine-tRNA synthetase, putative [Pediculus humanus corporis]gi|212507555|gb|EEB11468.1| methionine-tRNA synthetase, putative [Pediculus humanus corporis]
+--MKVLTNENNINSLKIVISSKITKKSIHVLTNSIEK---LNLKS---PKTIPQLVlDSGVHIFSSNASSKFLFPP------SVEHnSCVNYYLDVEATV
+IQPLIATF--SG-KVSDKNKKSFE-EILNQCNNDLI----SKKFLCGNEITVSDVSIWcalyPIFTD-TK-FNDILLNKDSLKKWFEFIFKLPEVQESLK
+LCNI-----------
+>gi|340039913|gb|EGR00886.1| glutaredoxin, GrxB family [Vibrio cholerae HCUF01]
+-------------------MAGMLNIPLDVITLDYDDDQT--TNQIIGSKQVPLLIkESGEALAESLDIIQFLLESVNSS-ETAQPAQATLDWQRSAFLP
+LQKIgYPRWsnmnlpefktasaqqaWrVKKETtelhfesllkDTSQIALQVQACIDAVKPLLK----LHSYQHV--ALIDEAIIFSILRGFFSAPE--IQ
+WDSEVRDWMVSVSQKTQVRL------------------
+>gi|255079028|ref|XP_002503094.1| predicted protein [Micromonas sp. RCC299]gi|226518360|gb|ACO64352.1| predicted protein [Micromonas sp. RCC299]
+--PVAYIAPTCPFAHKAWLALVEKEVDFEMRAVDLND-KQPDMIAaygvASPdagsVAKVPILIHDGVAMIESALCATYVAEAFkssgaDLLPATPAEQY
+KVGLWCETFA-VGPPFFRALRATSQSDVDSALDDLRSVLRKCERCLEIaqtttgrdkGQSDGPFVLGAKYSMAEVLTSTMLPRLsvalghyRGFRLhAAV
+EemGLHRLARWMDASMDRPSMRQTLGEVGR-----------
+>gi|170579264|ref|XP_001894752.1| Metaxin 2 [Brugia malayi]gi|158598526|gb|EDP36401.1| Metaxin 2, putative [Brugia malayi]
+---ALLYEY--ADCVAVQTLLKMANLPVRLEER-----PNAEF--MSPTGKVPFLKLQSFLVSEFLPVVDFLAKRNVKLSAGLTDLERGDMhaHMALFDD
+ILKNVEMYVMWMDkrnysqvtkcrygsvylfplnlilprvkwrevnnyltavdwkSKSQECVMDLADRCFKSMSSKL----DHNEYFFGDSPTELDALAF
+GHFYTILTTELPNmelkncLRRYSNLTEFCQRIDK------------------------
+>gi|151967130|gb|ABS19445.1| multivalent antigen sj97-23 [synthetic construct]
+ATLGTGMRCLKSCVFILNIICllcslvligagAYVEVKFSQYEANLhKVWQAAPIAI--------------IVVGVVILIVSF-------LGCCGAIKEN
+VCMLYMyafflivlLIAELVAAIVAVVYkdkiDDeINTLMTGALENPNEEITATMDKIqtsfhcCGVkgpddykgnvpasckEGQEVYVQGCLSVFSAFL
+KRNLIIVACVAFGVCFFQLLSIViacCLGQRIHDYQNV--------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+P 1    2615	*	*	*	*	*	*	*	4246	*	4276	*	751	*	*	2852	*	*	*	*	1
+       0	*	*	*	*	*	*	6861	0	0	
+
+P 2    3520	*	3739	3009	*	*	5442	5369	2607	4573	4885	5539	3851	3423	*	3114	3307	5265	*	*	2
+       29	5639	*	2000	415	*	*	8750	1137	0	
+
+Y 3    5356	*	*	*	4353	6401	*	2298	*	2212	3124	5077	3309	*	6210	6290	5392	4569	*	2660	3
+       19	6290	*	0	*	*	*	9795	1005	0	
+
+T 4    4504	5568	*	4189	*	5771	4601	4215	2490	4265	5435	5777	*	5646	3968	6823	1652	3565	*	*	4
+       0	*	*	*	*	*	*	9906	0	0	
+
+V 5    *	*	*	6337	3685	*	*	3569	*	535	5486	*	*	*	*	*	5025	3798	*	6543	5
+       0	*	*	*	*	*	*	9947	0	0	
+
+V 6    *	*	*	*	3082	4619	3266	3907	5376	4025	*	*	*	*	5670	6690	5325	3636	5789	1210	6
+       0	*	*	*	*	*	*	9974	0	0	
+
+Y 7    6773	*	4841	6471	4641	2427	3356	6001	6291	5091	5829	5038	*	5009	6760	3368	3086	*	5010	2125	7
+       0	*	*	*	*	*	*	9994	0	0	
+
+F 8    4319	*	3883	5742	2745	5536	3962	5145	*	3384	5065	5140	6752	5055	4757	3891	3851	4709	3798	3023	8
+       31	5575	*	589	1576	*	*	10039	1174	0	
+
+P 9    4022	5142	3285	4404	5770	5530	4317	*	5259	5038	6504	3047	1872	5019	5555	4308	4428	*	4710	5562	9
+       303	4207	2889	1742	512	*	*	10057	1770	0	
+
+V 10   3266	6642	3655	*	3135	4488	4198	3161	*	3896	5649	5721	3718	4862	4082	4607	4496	4216	4524	5395	10
+       0	*	*	*	*	656	1453	9881	0	2870	
+
+R 11   4115	2937	4320	*	6704	4174	5720	*	5268	*	*	4740	5480	5153	3725	1290	4715	6559	*	5031	11
+       27	5736	*	1000	1000	0	*	10083	1165	1629	
+
+G 12   3515	*	6554	5906	5763	2278	6035	4957	6943	4523	*	4907	1348	5782	*	4093	5307	4907	*	*	12
+       13	*	6843	*	*	*	*	10215	0	0	
+
+R 13   4289	4436	4787	4472	3017	5160	6092	6503	5569	4851	6913	3257	5233	*	2752	4551	5884	5410	4400	2556	13
+       12	6962	*	0	*	0	*	10210	1000	1000	
+
+C 14   2537	2408	*	*	*	2903	6758	*	6632	*	*	6592	6106	*	*	1952	3643	3025	*	*	14
+       57	4681	*	0	*	*	*	10217	1510	0	
+
+A 15   3341	6118	6684	3016	4734	6654	3696	4738	5702	3450	4112	6558	6541	3125	2717	5342	5810	5059	4521	5732	15
+       56	4705	*	1654	551	*	*	10217	1651	0	
+
+A 16   2970	6016	*	*	5292	5480	6657	4123	2286	4120	5282	*	5798	6695	1902	3798	5042	4156	*	*	16
+       0	*	*	*	*	*	*	10248	0	0	
+
+L 17   2887	4191	*	*	7033	*	*	2289	*	2922	6726	*	4565	*	*	4239	4513	1655	*	*	17
+       0	*	*	*	*	*	*	10248	0	0	
+
+R 18   4433	6363	*	4685	5258	6731	4292	4158	4286	2901	5275	5458	6559	4396	1468	6752	5494	5975	5248	4915	18
+       15	6566	*	0	*	*	*	10260	1042	0	
+
+M 19   3133	5900	*	*	4428	6632	*	2604	*	2025	2960	*	*	*	6561	5583	3984	3789	3873	4696	19
+       0	*	*	*	*	*	*	10244	0	0	
+
+L 20   1770	4717	*	*	3736	7092	*	4636	*	2260	3647	*	*	6375	6582	6865	4606	2943	6167	4596	20
+       15	6572	*	1585	585	*	*	10267	1059	0	
+
+L 21   2875	4323	*	*	3907	6585	*	3727	*	780	4557	*	*	*	*	*	*	4779	*	*	21
+       33	6167	6795	3459	138	*	*	10291	1149	0	
+
+A 22   2624	6817	4453	2403	5035	4469	4243	5270	2900	4358	*	4142	*	4635	4152	5527	5268	6991	4960	5945	22
+       0	*	*	*	*	*	0	10284	0	1002	
+
+D 23   2958	5910	4890	2041	4700	6712	4438	5080	*	2451	3828	6538	*	6797	5402	*	6887	5098	4569	3685	23
+       12	6887	*	3585	126	*	0	10284	1000	1002	
+
+Q 24   2489	4981	*	*	5212	5317	5351	5883	2177	2428	5388	5808	6541	5370	5264	3796	4737	4739	6799	5007	24
+       12	6970	*	2000	415	0	*	10284	1000	1002	
+
+G 25   5408	6795	3631	3709	*	1073	*	*	4625	*	*	2600	*	4362	4263	5126	*	*	*	*	25
+       24	7199	6662	1585	585	*	*	10291	1269	0	
+
+Q 26   4216	*	5816	*	5474	*	*	2004	6742	1823	6834	*	5667	4639	6086	6106	5637	2018	*	*	26
+       43	5074	*	712	1360	*	0	10266	1705	1062	
+
+S 27   4104	*	2960	3090	*	5188	6008	6980	4104	*	6353	4299	1547	5823	4139	4282	4921	6074	*	6985	27
+       11	7037	*	1000	1000	*	0	10243	1000	1492	
+
+W 28   6989	6039	5952	6575	2030	*	3940	4765	6628	3768	6823	*	*	*	*	6549	5599	3225	4323	1631	28
+       0	*	*	*	*	607	1541	10243	0	1492	
+
+K 29   6361	7010	2797	1842	*	5850	5846	6655	3154	*	*	4377	*	4506	3126	4427	3229	4963	*	6881	29
+       12	*	6880	*	*	*	0	10266	0	1062	
+
+E 30   4801	*	2945	3417	3788	6652	5328	2816	6953	2688	*	5810	*	5424	5958	5117	3485	3121	6069	5439	30
+       29	5629	*	3595	125	1249	788	10256	1192	1228	
+
+E 31   7216	4950	4682	3201	4881	5894	4315	2867	3546	6053	*	5104	6140	6881	4201	4926	3480	2160	*	5494	31
+       0	*	*	*	*	*	0	10266	0	1062	
+
+V 32   4602	5957	5055	3196	3885	6794	5512	4337	5043	3456	5358	4572	3202	5364	3125	4609	3594	4225	7042	4833	32
+       0	*	*	*	*	*	0	10266	0	1062	
+
+V 33   3784	4725	*	5427	3596	6200	5789	2590	*	2948	4990	6900	*	6955	4938	6830	5015	1753	*	4665	33
+       202	4895	3361	2730	236	*	0	10266	1676	1062	
+
+T 34   4020	5782	1917	3859	5631	4290	4690	6900	4635	5682	*	3322	4129	5689	4072	4023	3425	5817	*	*	34
+       280	6740	2583	0	*	2935	202	10133	1076	2814	
+
+V 35   5494	6178	5483	5281	2890	4454	*	3570	5600	2322	3664	6363	3125	5580	3496	5526	6430	5506	6885	4274	35
+       352	2464	4816	1452	656	3206	166	9923	3432	4873	
+
+E 36   3475	6387	2938	3556	5609	2990	5255	4843	3422	6778	*	3852	3406	6664	4534	4463	3947	4444	*	*	36
+       301	2488	6625	1007	993	833	1189	9943	3279	4860	
+
+T 37   4202	*	2591	2345	5729	4532	7076	5110	4253	5769	6755	3607	4069	3871	4405	5281	4133	4247	*	6397	37
+       287	4533	2864	465	1859	4061	89	10126	1636	3081	
+
+W 38   5320	*	4388	6450	3532	5579	3745	3704	3988	3691	5579	3850	3758	3972	*	4467	4684	5781	2606	5494	38
+       194	6453	3131	0	*	766	1279	9949	1005	4714	
+
+Q 39   3529	*	4822	4255	5036	*	5051	6741	2412	4388	*	4317	2829	3515	3091	4246	4347	*	*	5484	39
+       319	3055	3677	456	1884	1047	955	10022	2617	4015	
+
+E 40   3867	*	3860	2834	5002	3471	*	6532	3512	5757	6781	3807	2861	7042	5171	2720	3867	*	*	6621	40
+       90	*	4050	*	*	2709	239	10056	0	3871	
+
+G 41   2681	6887	3348	2796	*	3544	*	6300	3837	6506	*	5315	1805	5263	*	5427	5513	4989	*	*	41
+       57	4690	*	1850	469	1725	520	9986	1681	4228	
+
+S 42   3040	*	2537	1992	6889	4409	6537	6801	4657	5787	*	6654	4494	5153	*	3727	3579	6742	3820	*	42
+       150	3478	6848	3325	152	695	1387	10092	2416	3342	
+
+L 43   7052	6674	7015	4812	2462	6708	5777	3874	*	2160	6757	6537	5072	5694	4964	4864	4441	3642	5960	2641	43
+       120	5279	4211	1577	589	1523	617	10197	1312	2071	
+
+K 44   3415	5884	4052	5042	5802	5802	6687	3275	2978	2296	6899	4784	*	4230	3426	3743	6684	4848	6794	*	44
+       43	5102	*	1349	719	790	1246	10208	1361	2559	
+
+A 45   3291	*	3437	3397	4885	4547	6800	6130	2750	4335	*	3829	4071	3775	3383	3827	5403	5670	*	*	45
+       99	4880	4946	1115	893	1344	723	10259	1530	1599	
+
+S 46   5621	7116	5189	4580	4509	3918	6740	2656	4116	2284	4377	4800	5096	5504	4744	4930	4320	3622	6575	6060	46
+       125	4378	4849	2806	223	2899	208	10163	1707	1960	
+
+C 47   4046	7040	4430	5740	4311	5410	4064	4050	5334	4162	*	1581	6581	5840	*	2788	4282	6963	7097	5774	47
+       67	4455	*	561	1635	1022	979	10127	1689	2404	
+
+L 48   3980	*	5691	4896	6880	3457	4916	*	5321	4651	6815	5900	951	7083	4746	5299	6839	4308	*	6164	48
+       67	5337	5599	1167	850	1154	861	10188	1379	1662	
+
+Y 49   4741	7161	5995	6137	3039	4907	4957	*	3613	2502	4669	4506	5998	4558	4121	3929	3339	4877	6555	3791	49
+       14	*	6711	*	*	*	0	10187	0	1699	
+
+G 50   3250	5252	*	4127	*	1316	5306	*	3786	4985	5845	7072	4619	5977	3870	4988	4585	5217	*	5026	50
+       13	*	6826	*	*	1377	701	10167	0	1890	
+
+Q 51   5182	*	5204	3862	*	5148	4390	5337	2447	4146	6896	3969	*	2539	3222	4105	3274	7234	*	5925	51
+       12	6942	*	1000	1000	2384	307	10210	1035	1647	
+
+L 52   4329	*	6351	*	5868	*	*	3458	*	2018	4730	*	4098	*	*	4936	3604	1489	*	5989	52
+       12	6940	*	2000	415	1709	527	10222	1000	1496	
+
+P 53   5022	*	*	*	6837	*	*	5925	*	7184	*	6747	163	*	*	5352	6614	*	*	*	53
+       39	5232	*	808	1221	1635	561	10242	1601	1297	
+
+K 54   2785	5087	*	*	3837	6869	*	3575	6016	3106	5992	*	*	5960	5301	4978	2796	1947	6834	5039	54
+       23	6803	7174	0	*	*	0	10280	1062	1149	
+
+F 55   5310	*	*	*	4285	6391	*	2698	*	716	4943	*	*	*	*	*	*	3478	*	5249	55
+       89	4533	5890	1779	497	*	0	10262	1685	1574	
+
+Q 56   5373	*	5770	2782	7110	*	6076	3160	3540	3611	*	7088	7166	3246	4581	5449	4283	1864	*	*	56
+       396	2059	*	0	*	2753	232	10241	4821	1883	
+
+D 57   4044	*	1814	3419	5077	5222	3602	3693	*	4946	*	4620	4682	*	7138	4113	3918	3842	7108	5311	57
+       151	3426	7249	1600	577	2449	292	10253	2580	1734	
+
+G 58   5388	6900	1883	4090	*	2334	5945	6841	4803	6533	*	2979	5490	4307	4479	4122	4148	*	*	6685	58
+       66	4988	6268	818	1208	2702	241	10279	1487	1704	
+
+D 59   5049	*	2199	3553	6859	1260	*	*	4770	*	*	3666	5810	5091	5038	5958	4980	*	*	*	59
+       160	3380	6803	1625	565	527	1709	10229	2805	2198	
+
+L 60   4988	*	4958	3315	4184	4219	6737	3928	3489	3416	5117	4578	6755	3578	3700	4495	3221	4059	*	5869	60
+       22	7142	6913	1000	1000	1813	483	10336	1000	1439	
+
+T 61   4204	4640	7043	4428	4724	6670	7017	3711	4278	4981	*	6884	3878	4486	4047	4226	3226	2101	4951	5095	61
+       38	5253	*	1161	855	1541	608	10342	1331	1492	
+
+L 62   7151	*	*	6677	5033	*	*	2079	5323	1474	4560	6405	*	5330	5750	6964	*	2712	6783	3975	62
+       11	7054	*	3807	107	*	0	10352	1047	1269	
+
+Y 63   4052	4958	5687	*	2786	3986	6889	5174	7101	4731	4810	5016	5462	4686	*	2840	2339	4567	5367	3895	63
+       0	*	*	*	*	*	0	10352	0	1269	
+
+Q 64   7197	7217	1983	1423	6923	2878	6943	*	7513	*	*	5299	5631	3558	*	4922	5913	5468	*	*	64
+       0	*	*	*	*	*	0	10352	0	1269	
+
+S 65   3479	5054	7629	4486	7071	*	5840	4941	5868	5172	5944	5350	6032	5626	5846	1111	3377	4578	6689	5399	65
+       8	*	7490	*	*	*	0	10352	0	1269	
+
+N 66   3281	6810	4777	5500	6309	4566	5351	4449	4908	2804	5003	3103	4800	4883	3980	3679	3717	4253	6239	5185	66
+       0	*	*	*	*	1895	452	10346	0	1426	
+
+T 67   1461	*	3446	4263	5600	4937	*	4671	4969	4202	*	4957	3792	6026	7130	4510	4381	3502	*	7140	67
+       8	7504	*	0	*	*	0	10354	1000	1269	
+
+I 68   4420	5294	*	5295	6730	*	*	577	*	3998	4323	*	*	*	*	6788	6954	3430	*	*	68
+       0	*	*	*	*	*	0	10354	0	1269	
+
+L 69   3172	3810	6850	5141	6878	*	*	3103	*	1824	3799	6155	6900	*	7161	5350	4437	2370	*	6956	69
+       11	7057	*	6129	21	*	0	10354	1000	1269	
+
+R 70   4183	6039	4119	2514	*	5555	7226	4058	5005	3544	5003	5478	6788	3183	2140	5516	6929	5288	6946	5114	70
+       14	6679	*	1000	1000	*	0	10354	1023	1269	
+
+H 71   5485	*	6233	4563	2544	*	2954	*	5972	4721	6967	*	*	4914	5994	6292	*	*	4079	1188	71
+       20	*	6196	*	*	*	0	10354	0	1269	
+
+L 72   5149	5955	*	*	4550	*	*	2545	5773	748	7112	*	*	*	*	6556	5769	3587	6883	*	72
+       13	*	6836	*	*	*	0	10282	0	1574	
+
+G 73   2117	4411	2604	2846	6733	3532	*	5080	7099	3676	6018	4351	*	5420	7497	4280	5787	4801	*	6764	73
+       12	*	6878	*	*	*	0	10265	0	1739	
+
+R 74   2807	*	3385	2551	6144	7165	4819	*	3205	4741	*	5138	6011	4344	2818	3660	4435	*	7062	5600	74
+       43	6188	5972	1989	419	2763	230	10288	1293	1888	
+
+T 75   4448	6939	5293	3313	5016	6926	5208	5621	2681	3520	5776	5788	7154	3210	2807	5412	3464	3748	7054	*	75
+       207	3959	3851	2220	348	2854	215	10280	2127	2048	
+
+L 76   3292	*	5441	*	2759	4543	3242	5953	6690	3592	*	5815	7074	5911	5836	4253	4555	4218	6964	1978	76
+       384	2145	7054	1904	448	2721	237	10135	4704	3140	
+
+G 77   3627	*	3783	4367	6078	2034	5881	*	5865	7161	*	3864	2235	4873	3933	3319	*	5883	*	*	77
+       941	1085	7014	1850	469	2357	313	10170	7016	2940	
+
+L 78   4965	6616	6961	4809	3588	7252	*	4498	5408	890	4864	*	6757	5903	6672	4828	6581	3701	5767	7411	78
+       119	3910	6286	738	1320	1609	573	10140	2001	2994	
+
+Y 79   4348	*	4124	6828	3930	4755	5628	3641	*	2079	4322	7410	6129	5497	5902	4752	3430	4888	5370	2755	79
+       51	5342	6643	642	1477	2498	281	10281	1305	2687	
+
+G 80   4998	*	4206	6670	6910	2160	6755	*	5898	4984	*	6489	1187	6020	4326	4206	5048	6065	*	*	80
+       123	4297	5006	300	2413	2384	307	10256	2005	2717	
+
+K 81   3303	6088	4129	2984	*	4229	6150	7208	3185	4232	5879	6865	4915	4678	3293	3278	3078	5472	6575	6826	81
+       319	2643	4698	1513	622	1447	659	10267	3520	2983	
+
+D 82   4605	6098	2091	4459	*	3104	6926	5690	4701	4943	*	3136	4914	5200	6803	3153	3018	5457	7048	*	82
+       23	7076	6846	4477	66	1252	786	10255	1188	2881	
+
+Q 83   2444	6876	3742	3221	8132	4640	4791	5458	6054	3782	6735	4230	2202	6033	6799	4132	5188	5072	*	5878	83
+       61	4795	7606	1226	804	1587	584	10288	1574	2225	
+
+Q 84   2947	7045	3347	2828	4665	6026	6036	3993	4652	3272	5620	4343	4931	4164	5364	5524	5383	3642	7077	4966	84
+       0	*	*	*	*	2777	228	10352	0	1940	
+
+E 85   3587	7022	3644	2151	*	3801	6949	4561	4498	3648	*	6924	4798	3190	5318	4252	4785	4398	*	4550	85
+       90	4046	*	1186	835	*	0	10323	2119	1786	
+
+A 86   3181	*	4259	4731	4698	4408	5545	7210	3711	4005	5337	*	4453	4739	1874	4619	5454	4865	4552	5253	86
+       10	7219	*	2000	415	*	0	10323	1000	1786	
+
+A 87   1584	8164	5091	3897	5257	4532	6620	5452	4966	3884	6782	6737	5551	3601	4572	3891	4111	4902	6714	4965	87
+       24	7252	6620	2287	331	1400	687	10323	1131	1786	
+
+L 88   3774	6965	5939	2889	4841	5299	5994	4472	4058	3131	5476	4820	6997	3574	2881	5922	3863	3545	6909	7013	88
+       19	6235	*	1585	585	345	2234	10339	1090	1618	
+
+V 89   3245	5409	4769	4430	4921	5515	7141	2468	6851	2697	4260	6877	*	5509	5429	4361	4045	2722	*	5996	89
+       22	6073	*	581	1593	*	0	10399	1135	1003	
+
+D 90   4136	6201	2232	3895	4992	5516	5363	*	4131	3325	4920	4516	6908	3954	2784	4677	5292	5002	5857	7127	90
+       0	*	*	*	*	*	0	10399	0	1003	
+
+M 91   2764	6972	4884	3994	4113	5209	6144	5891	4287	4059	3169	5063	*	3582	4084	4265	4593	*	3172	4915	91
+       46	4998	*	2257	339	*	0	10399	1480	1003	
+
+V 92   4042	*	*	*	3371	*	7067	3154	6851	1749	5046	6749	*	*	5546	6218	4941	4292	2275	4264	92
+       150	3340	*	2367	311	*	0	10399	2701	1003	
+
+N 93   3939	5102	4214	3046	4070	6970	5873	3741	6063	2934	4505	5056	*	4454	3726	3521	4573	3689	*	5401	93
+       30	5994	7627	1369	706	*	0	10399	1159	1003	
+
+D 94   2850	7131	2661	3717	3840	4497	*	5846	4344	4955	5112	5360	6747	4712	4409	3369	7114	6850	3621	3937	94
+       119	4170	5403	2608	258	*	0	10356	1970	1149	
+
+G 95   3475	4815	5849	4203	3798	3574	6226	3814	4507	2891	5576	5123	6953	4638	4424	4301	4073	4362	4368	4962	95
+       84	4140	*	2470	287	1520	618	10341	1905	1701	
+
+V 96   2654	5285	4483	4453	3485	5134	4984	3417	6053	3506	5934	5031	6754	5888	7392	3790	4397	2815	*	4713	96
+       94	3982	*	1457	653	*	0	10337	2112	1406	
+
+E 97   3185	*	3045	3224	4851	3444	5508	5146	5337	4320	5375	3632	*	4976	3936	3488	3713	6159	*	5102	97
+       174	3136	*	1023	978	1767	502	10337	3309	1406	
+
+D 98   4115	7168	2009	3241	*	4156	5733	6828	4017	5879	*	3790	4022	4538	4959	3102	3536	7164	*	*	98
+       81	4435	6907	1003	997	*	0	10353	2049	1240	
+
+L 99   4141	5299	5555	*	3992	6942	5496	3696	5936	1442	4528	5917	6750	7508	6721	6148	5446	3058	4994	3853	99
+       62	4882	6981	1008	992	*	0	10339	1543	1431	
+
+R 100  3871	6894	7252	5930	3024	4405	3649	4732	6811	2453	4129	5583	6102	4547	3556	4999	4449	4730	5596	3933	100
+       80	4424	7136	1674	542	*	0	10336	1841	1573	
+
+C 101  4185	5999	2892	5004	4934	4069	5271	5065	3137	4847	*	4610	2961	4244	4155	3576	4681	5217	6002	5418	101
+       100	4115	6807	2091	386	2623	256	10333	2074	1722	
+
+K 102  2461	*	3954	4565	5291	4631	5386	4585	3486	3936	6956	4656	3326	4079	4435	3504	5523	6165	6079	4879	102
+       71	4714	6631	2179	360	2114	379	10315	1579	1798	
+
+Y 103  3134	6879	7443	5372	2959	5921	4832	3340	7113	2610	3940	6239	*	5699	6947	4325	5442	3241	4553	3824	103
+       102	3876	*	2317	323	1550	603	10316	2092	1776	
+
+I 104  3857	5657	*	5129	3390	4066	*	3218	7004	3819	4129	4871	5915	5414	4571	4203	3581	2737	6226	3907	104
+       143	3545	6811	3344	150	*	0	10337	2511	1463	
+
+S 105  2593	*	4102	4498	4764	4784	4713	6908	3682	4338	4062	5379	3896	4193	3360	4138	3855	4627	*	6026	105
+       68	5128	5819	2368	311	2642	252	10343	1389	1809	
+
+L 106  3504	5920	7026	4568	4686	5941	5791	3705	5088	3339	4918	4938	3045	5893	4563	3451	5560	3759	4595	3416	106
+       127	5705	3941	3620	122	*	0	10294	1193	2098	
+
+I 107  4254	*	5185	6840	4286	5436	5984	3225	4688	2323	3629	*	*	5277	3093	6130	4481	3106	5299	4288	107
+       198	3338	5097	2014	410	1704	529	10183	2604	3217	
+
+Y 108  5599	*	*	5062	2742	5258	7098	4063	4308	2726	3770	*	6926	4435	3830	4295	6952	4757	4524	2578	108
+       292	2595	5837	3116	177	1193	830	10186	3777	3000	
+
+T 109  2898	6991	4139	3110	*	3445	6858	5121	3421	4242	6859	4979	3955	5541	3354	3767	5420	4435	5382	5728	109
+       168	3746	4827	1105	902	3022	190	10253	2394	2404	
+
+N 110  3606	5300	4580	3815	6609	2662	5402	6073	2544	5891	6916	3582	3677	4702	4343	4404	4174	6631	*	6140	110
+       649	1763	3888	2306	326	2139	372	10222	5449	2780	
+
+Y 111  4801	*	2012	4527	4974	4455	5442	4733	3983	4234	*	3471	4231	6970	4768	4068	4055	4577	5309	4527	111
+       281	2572	6877	4365	72	368	2151	10126	3560	3838	
+
+E 112  3547	6882	3685	2271	*	5079	5328	4865	3625	4251	5792	5060	3218	3412	4703	3975	5292	6174	6988	*	112
+       78	5021	5497	1664	547	1528	615	10320	1601	1769	
+
+A 113  3242	*	2867	2426	6587	5327	6707	5019	3095	5025	6745	5138	4341	3975	4146	5211	4096	5394	*	4995	113
+       178	3310	6011	3862	103	1200	825	10360	2818	1908	
+
+G 114  2892	6750	3704	3924	5231	4051	6710	4838	3423	3293	6942	4107	5380	4430	5146	3493	4566	4393	4840	6916	114
+       75	4553	6942	1359	713	1453	656	10356	1754	1770	
+
+K 115  4768	6883	3805	4064	4984	4848	5890	4355	3643	3439	5106	4868	4434	5219	2805	4548	3259	3873	6835	6000	115
+       46	5454	6830	2538	273	473	1838	10346	1626	1793	
+
+D 116  2881	*	3009	1892	*	4280	7064	5166	3695	5044	6404	5376	3833	5382	4611	4420	5295	5163	*	7613	116
+       24	5948	*	1054	948	*	0	10349	1156	1281	
+
+D 117  3274	7062	3328	2958	5477	3851	4850	6291	3772	5110	5284	4272	*	3631	3735	3945	4934	5384	5002	4902	117
+       76	4290	*	1482	639	*	0	10349	1869	1281	
+
+Y 118  1991	5861	7197	5147	4474	3864	5559	4049	4874	3088	5171	5042	*	5409	4891	3833	5797	4013	7004	3717	118
+       23	7090	6842	1000	1000	*	0	10399	1000	1281	
+
+V 119  4340	*	5984	3543	5283	4650	5068	3723	3179	2928	4749	4339	5947	4067	3059	4430	4812	4465	5242	*	119
+       49	4916	*	908	1098	1675	542	10381	1555	1481	
+
+K 120  2837	*	3386	2924	*	4280	5898	6749	3165	4610	5928	3986	3992	3970	4291	3889	4351	5116	*	*	120
+       23	5987	*	1541	607	0	*	10399	1165	1281	
+
+A 121  3387	7188	3953	2873	6368	7122	6243	4353	3941	4090	5599	3319	5517	3843	3295	3510	4559	4988	6038	*	121
+       19	6680	8183	2322	322	*	*	10430	1023	0	
+
+L 122  3129	4838	*	*	4485	4360	6873	2813	*	1788	4056	*	5151	6909	5786	6026	6109	2655	6206	*	122
+       21	6956	7244	0	*	*	0	10420	1062	1000	
+
+P 123  3829	5782	4053	3200	*	5638	5557	5075	4089	3313	5366	3042	3963	4716	2946	4227	4680	4886	6926	*	123
+       0	*	*	*	*	0	*	10412	0	1112	
+
+G 124  3133	*	4202	2986	6766	6322	5443	*	2739	4658	6172	5012	4563	4269	2633	4273	4070	4555	6976	6743	124
+       13	6766	*	3585	126	*	*	10430	1033	0	
+
+Q 125  3133	4722	4019	4541	6149	4001	4034	3994	4717	3059	5512	5365	6907	5092	4064	5024	4479	3178	5965	4666	125
+       10	7182	*	2000	415	*	*	10430	1000	0	
+
+L 126  5500	5595	*	5399	3004	*	6267	4000	*	965	4059	*	*	6893	6309	5849	7390	4137	6990	4264	126
+       11	7073	*	0	*	*	*	10430	1000	0	
+
+K 127  3193	5903	3286	2803	6766	4213	6085	*	3196	5845	7150	4066	5193	3264	3600	3766	4029	6907	*	*	127
+       18	*	6366	*	*	*	*	10430	0	0	
+
+P 128  2746	7613	5325	3470	4254	7256	4845	3482	3206	3911	5269	5679	5513	4428	5401	3851	5036	4376	4714	4353	128
+       36	5359	*	401	2042	*	0	10402	1322	1163	
+
+F 129  4416	*	*	*	2829	7115	6851	2808	*	1462	4148	6878	6768	*	6050	6408	5560	2932	5982	5518	129
+       0	*	*	*	*	*	0	10402	0	1163	
+
+E 130  3854	*	2712	1173	5891	4530	*	6846	6810	5950	5754	3414	6858	4701	6270	4752	5818	7229	*	7179	130
+       10	7198	*	0	*	*	0	10402	1000	1163	
+
+T 131  2863	7029	3353	2914	*	5362	7128	7017	2934	6858	7009	3354	4697	3976	4028	3641	3920	5035	*	*	131
+       36	5328	*	3929	98	*	0	10402	1338	1163	
+
+L 132  5416	6687	6932	4219	3985	6059	3821	3737	4047	2437	4483	*	7046	3224	3544	6015	4556	4557	6157	3711	132
+       0	*	*	*	*	*	0	10402	0	1163	
+
+L 133  4250	5040	*	*	3838	6878	*	3576	*	656	4646	*	*	*	*	*	7029	4300	7344	5986	133
+       192	5500	3287	2244	342	*	0	10402	1374	1163	
+
+S 134  3030	4977	3915	3247	*	3438	*	6735	2906	3716	*	4074	6978	4604	4918	3310	4054	4477	*	6006	134
+       794	*	1241	*	*	4262	77	10243	0	3478	
+
+Q 135  2789	*	5124	2749	*	3587	5119	*	2872	5130	4453	6165	6446	4475	3708	3054	3891	5614	*	*	135
+       271	4877	2864	0	*	*	0	9522	1201	7779	
+
+N 136  3904	5915	4808	4930	4783	6570	3875	4731	4360	4631	*	3430	4910	3136	3478	3343	5907	4080	5997	3526	136
+       447	3824	2353	3174	169	*	0	9255	1628	8219	
+
+Q 137  *	*	4463	5017	4520	2956	*	*	3929	2423	5469	3380	4565	4473	4105	3230	4068	4503	*	5328	137
+       172	3435	5635	1493	633	2423	298	8861	1473	8682	
+
+G 138  2531	*	2933	4784	*	1974	5872	*	4974	4859	*	3449	5723	3889	5011	4792	4356	5157	*	*	138
+       180	4311	3898	744	1312	153	3316	9473	1354	8016	
+
+G 139  4050	7000	2780	3796	6270	1825	6969	*	3160	6714	7383	3963	5503	3938	6092	4823	3979	*	6615	6871	139
+       151	6054	3573	1961	428	1294	756	10345	1247	2585	
+
+K 140  4978	6785	6907	5005	*	2192	5150	5711	2763	6714	6970	4173	7249	3958	2347	3011	4958	6665	*	*	140
+       20	6171	*	580	1595	741	1315	10282	1088	3312	
+
+T 141  5978	*	3821	3676	*	3944	5573	*	3218	4695	5903	5047	1803	3700	4810	3784	3956	6173	7367	*	141
+       26	5828	*	2482	285	891	1118	10377	1201	2029	
+
+F 142  *	5932	*	*	1446	*	*	6958	*	4761	*	5450	5118	*	*	*	*	6658	2621	1525	142
+       10	7144	*	0	*	1579	588	10401	1000	1401	
+
+I 143  5091	*	5788	6650	2492	7065	*	2680	*	1393	4400	*	*	6050	*	5912	6742	3621	5969	4834	143
+       10	7227	*	1000	1000	573	1610	10417	1000	1213	
+
+V 144  3001	4558	5127	7447	3291	3681	3991	4221	6374	2666	4291	6872	5355	6249	5987	5744	4999	2639	*	6868	144
+       15	6566	*	1000	1000	*	0	10420	1037	1000	
+
+A 145  5940	5556	4622	5311	*	523	*	*	*	6221	6710	4223	5367	*	5942	3974	6495	6816	*	*	145
+       171	3543	5276	410	2016	*	0	10420	2478	1000	
+
+D 146  3574	5606	1738	2547	6205	4819	*	*	4311	*	*	3086	5133	5437	4759	4211	4660	6019	*	6641	146
+       68	6108	5001	932	1071	865	1149	10366	1172	1509	
+
+Q 147  3482	7491	4232	3443	*	5001	4481	6849	2247	5466	*	3984	*	3363	3339	3615	3572	*	*	5894	147
+       12	6958	*	1000	1000	207	2904	10369	1000	1745	
+
+I 148  5791	7174	*	6566	2823	*	*	2921	6281	2061	4097	*	1849	*	5784	6249	*	5458	6036	4909	148
+       0	*	*	*	*	*	0	10420	0	1000	
+
+S 149  6739	4984	5852	*	*	3436	*	*	7427	6816	6806	5622	*	*	*	1421	1255	6249	*	*	149
+       0	*	*	*	*	*	0	10420	0	1000	
+
+F 150  3040	5925	*	5070	3984	*	*	2738	5541	2007	4048	7354	6749	5201	6207	6693	5541	3554	4759	3663	150
+       0	*	*	*	*	*	0	10420	0	1000	
+
+A 151  801	5291	5844	6375	7028	5016	*	4215	*	4805	*	*	5422	*	*	4796	5582	2619	*	*	151
+       0	*	*	*	*	*	0	10420	0	1000	
+
+D 152  5555	*	152	4199	*	*	6661	*	*	*	*	6862	*	*	*	7427	*	*	*	*	152
+       14	6739	*	0	*	*	0	10420	1009	1000	
+
+Y 153  3280	3429	*	*	2685	*	*	1852	*	2605	4829	*	6934	*	*	*	5170	3648	6566	4449	153
+       12	*	6956	*	*	*	0	10420	0	1000	
+
+N 154  2024	4210	6025	6040	3977	6028	5523	5002	7147	3058	4295	4955	7604	6955	4836	4018	4821	3275	7137	3802	154
+       0	*	*	*	*	627	1504	10410	0	1187	
+
+L 155  3034	4784	*	*	3803	*	6055	2652	6249	1762	4849	*	*	*	*	6700	5113	2673	4550	6045	155
+       0	*	*	*	*	*	0	10420	0	1000	
+
+L 156  2189	6981	*	*	2347	3661	6949	5309	7041	3190	5461	7193	*	*	6249	5350	4725	4184	3824	3106	156
+       22	6040	*	2138	372	*	0	10420	1216	1000	
+
+D 157  3173	3887	7159	5347	5441	3068	6853	4521	7427	6127	5407	6249	2040	5910	*	3521	3903	3853	4960	5414	157
+       11	*	7051	*	*	*	0	10420	0	1000	
+
+L 158  3501	5986	5401	5907	3191	5057	4835	3400	5533	3009	5363	5136	4751	5878	5993	4118	3705	3074	7022	4129	158
+       0	*	*	*	*	846	1173	10416	0	1115	
+
+L 159  4043	*	*	6966	3319	*	*	3179	7427	1120	4525	*	7065	*	*	5880	4012	3558	5340	6019	159
+       61	5839	5367	3070	183	*	0	10420	1182	1000	
+
+L 160  3312	5465	3799	4020	4449	5945	3486	4828	5083	3407	5016	4401	7113	3593	3114	4660	5448	5360	5511	4632	160
+       32	6103	7112	1000	1000	1109	899	10382	1120	1754	
+
+I 161  3814	5453	6341	*	3275	4260	5845	4691	6826	3607	5857	3972	5366	3955	3037	5616	3899	4222	3061	4682	161
+       142	3881	5287	790	1246	782	1257	10393	2183	1481	
+
+H 162  2842	5889	6249	7364	4022	5395	5095	3112	*	2258	4089	5242	4554	6619	*	3515	4168	3746	7580	5360	162
+       79	4228	*	1833	475	0	*	10362	1918	1697	
+
+E 163  4061	6251	2695	3221	4805	3983	5055	5133	4221	3433	5870	5385	5405	5900	2965	5601	3969	4921	*	4855	163
+       51	5514	6295	848	1170	*	*	10430	1319	0	
+
+V 164  3793	6972	5332	4259	4347	3710	4733	4042	3862	3734	4919	5569	5795	5090	4409	3527	4257	3177	5690	4117	164
+       166	4493	3960	2163	365	1535	611	10404	1978	1232	
+
+L 165  2616	5785	6982	5686	3602	7013	4831	3836	5764	2759	4331	6132	5835	6686	4243	4939	4394	3224	4958	3906	165
+       124	4381	4871	1660	549	956	1046	10310	1884	2399	
+
+A 166  4668	6080	3611	3470	4066	2111	4476	6801	4063	4686	5975	4219	3690	3866	4363	4893	5784	7437	*	6915	166
+       327	2458	5566	1573	591	436	1939	10337	3949	2238	
+
+P 167  4768	*	3867	2855	4742	3760	6650	3924	4764	3269	*	5344	2683	6788	4558	4921	4448	3863	6949	4591	167
+       242	3841	3563	1580	588	1627	564	10386	2146	1766	
+
+G 168  4393	6717	2944	2922	5270	4347	6858	3883	3723	4176	*	5190	3446	4678	5797	3380	*	2986	*	*	168
+       134	4812	4241	752	1300	1074	930	10303	1486	3012	
+
+C 169  4290	4987	3001	4494	5266	5175	6860	3225	5442	2960	4839	4478	4321	5318	6723	3417	4218	3852	4433	*	169
+       145	3550	6634	1969	425	186	3048	10264	2573	3096	
+
+L 170  3814	4990	6177	4151	3126	5555	5868	3563	5496	2103	5335	7422	4024	5351	4631	4614	5131	3717	6039	5856	170
+       136	3732	6083	1152	863	1291	758	10394	2614	1341	
+
+D 171  3250	6101	3137	3026	6231	3722	5876	*	3691	7115	5970	4687	4082	4676	3852	3171	3560	5350	*	6553	171
+       226	3506	4136	2400	303	1956	430	10406	2531	1433	
+
+A 172  3644	7235	3592	2697	7177	3894	5299	6792	2994	5733	5713	3435	4621	3491	3498	4525	5442	6393	6025	*	172
+       54	6025	5539	749	1305	1273	771	10352	1268	2342	
+
+F 173  4649	4496	4925	6763	2705	6064	4702	5123	6811	3664	6051	5990	4009	6907	3903	7182	4913	5972	4949	1766	173
+       40	5207	*	771	1272	0	*	10369	1542	2146	
+
+P 174  4411	*	4299	4110	*	7360	6861	5938	4185	5277	*	6921	969	4794	5655	4027	3692	5745	*	*	174
+       0	*	*	*	*	*	*	10430	0	0	
+
+L 175  3232	7032	4963	5051	*	3767	4097	*	2653	4639	6875	2580	4945	4393	3512	3569	7188	4616	7194	6577	175
+       0	*	*	*	*	*	*	10430	0	0	
+
+L 176  6976	6754	*	*	4299	*	*	2569	*	963	5256	6674	*	*	*	7151	5039	2729	*	5250	176
+       0	*	*	*	*	*	*	10422	0	0	
+
+S 177  4040	5567	6851	4570	5635	6995	4545	7073	2946	3891	4680	4244	*	3553	2666	4496	3577	3766	5928	4666	177
+       19	6240	*	1585	585	*	*	10422	1149	0	
+
+A 178  2172	5019	3373	3413	*	5345	5923	*	3238	6851	6773	4777	5996	5109	2368	3870	5298	7171	*	5928	178
+       0	*	*	*	*	*	*	10422	0	0	
+
+Y 179  5905	*	*	*	4253	*	4406	4735	*	3057	5473	*	*	*	6679	*	*	4997	1248	2051	179
+       0	*	*	*	*	*	*	10400	0	0	
+
+V 180  3874	4790	6931	5808	3238	4913	5117	3215	*	2822	4578	6859	*	5631	4924	6818	7219	3561	5850	2112	180
+       10	7147	*	0	*	*	*	10400	1000	0	
+
+G 181  3739	*	2560	2185	6958	5387	5915	6240	3996	4156	*	3467	*	3688	3303	4220	5450	6757	*	*	181
+       0	*	*	*	*	*	*	10400	0	0	
+
+R 182  2701	*	4824	3992	5458	4922	5785	5784	4197	6194	7000	4264	*	4986	1477	4556	4045	5403	*	6575	182
+       0	*	*	*	*	*	*	10400	0	0	
+
+L 183  5497	4338	*	*	3458	7297	*	2323	*	2420	2749	*	*	6000	6699	6984	5760	2210	5823	6618	183
+       0	*	*	*	*	*	*	10400	0	0	
+
+S 184  3754	5904	5040	2945	4492	4486	5112	5974	3364	3253	4278	5275	*	3962	3186	3678	6196	4957	6029	5481	184
+       0	*	*	*	*	*	*	10381	0	0	
+
+A 185  2312	*	3721	2757	*	5363	*	*	3516	*	*	3438	*	2800	3993	4014	3655	6746	*	6161	185
+       82	4185	*	1054	948	*	*	10318	1854	0	
+
+R 186  5944	7197	4517	4547	*	*	3473	3835	5111	2542	5294	5997	*	4340	1825	4861	4252	4179	*	6064	186
+       36	5327	*	1000	1000	*	*	10262	1454	0	
+
+P 187  3439	*	3630	3152	6902	4626	*	6794	4534	*	*	*	922	5417	7066	5217	5893	6500	*	*	187
+       0	*	*	*	*	*	*	10236	0	0	
+
+K 188  2049	5804	4769	4024	*	3292	5092	6016	3649	3623	6691	5364	6780	4837	6519	2347	*	5320	6107	6713	188
+       0	*	*	*	*	*	*	10236	0	0	
+
+L 189  4955	7127	*	6491	2156	5313	6502	2854	*	4708	4349	*	*	6569	*	*	5820	1812	3715	3755	189
+       12	6886	*	1585	585	*	*	10216	1000	0	
+
+K 190  3124	*	5239	4264	*	5576	*	5211	2164	5153	6787	4698	4616	2730	3232	4348	4226	4070	*	*	190
+       0	*	*	*	*	*	*	10099	0	0	
+
+A 191  2829	*	3382	2638	5084	6647	*	6192	2221	4399	6877	5789	6800	3728	3701	4245	5123	6576	*	7006	191
+       0	*	*	*	*	*	*	10069	0	0	
+
+F 192  2404	5525	*	*	3830	5614	5571	4982	6709	4840	*	6513	6539	*	*	3416	3579	2214	4190	2921	192
+       0	*	*	*	*	*	*	9946	0	0	
+
+L 193  5185	3791	6373	6362	4346	*	5266	2677	6547	2341	3434	*	6356	5465	4918	5490	4739	2853	5272	4264	193
+       29	7012	6331	1585	585	*	*	9919	1000	0	
+
+A 194  2964	*	3227	3400	*	2858	5270	6217	3161	*	6811	4825	3384	3473	4772	4017	4618	6377	*	*	194
+       21	6081	*	518	1729	0	*	9802	1235	1062	
+
+S 195  3088	*	3567	2760	*	5338	5314	4874	3389	5229	5042	6099	4857	3582	4009	2999	4270	4561	*	*	195
+       38	5282	*	0	*	*	*	9694	1062	0	
+
+P 196  3677	*	3504	2786	5634	*	*	4484	5501	5619	5468	3127	3357	4795	2342	4656	5517	*	*	4265	196
+       41	5162	*	0	*	*	*	8960	1005	0	
+
+E 197  *	4783	4144	2529	*	5218	*	*	3003	*	*	5020	2249	3045	3065	3861	*	4988	*	*	197
+       0	*	*	*	*	*	*	8325	0	0	
+
+Y 198  3171	*	*	3205	2819	*	*	*	*	2694	*	5225	*	*	3525	3798	3127	3751	*	3184	198
+       430	1955	*	2222	348	*	*	7841	1996	0	
+
+V 199  3279	*	*	*	2901	4262	4357	2838	*	*	*	*	4402	3313	3797	*	2326	3280	*	*	199
+       0	*	*	*	*	*	*	7108	0	0	
+
+N 200  3260	*	4023	3269	4368	*	3740	2715	4222	3284	*	3524	*	*	*	4163	3297	*	*	4210	200
+       0	*	*	*	*	*	*	6977	0	0	
+
+L 201  4434	*	*	*	1889	3365	*	4747	2761	3349	*	*	*	*	*	*	*	4733	2695	3161	201
+       111	*	3760	*	*	*	*	6977	0	0	
+
+P 202  3258	*	*	3675	*	*	*	*	*	*	*	*	764	*	*	2619	*	*	*	3934	202
+       0	*	*	*	*	*	0	5860	0	1062	
+
+I 203  *	*	*	*	3455	*	*	3488	*	1866	*	*	*	*	1787	*	*	3554	*	2552	203
+       0	*	*	*	*	*	0	5311	0	1062	
+
+N 204  *	*	*	*	*	1835	*	3315	2633	*	*	1447	*	*	*	*	*	*	*	3455	204
+       0	*	*	*	*	*	0	5311	0	1062	
+
+G 205  2368	*	*	*	*	764	*	*	*	*	*	*	2201	*	*	*	*	*	*	*	205
+       0	*	*	*	*	*	0	4897	0	1062	
+
+N 206  *	*	*	*	*	*	*	*	2736	3115	*	1681	1820	*	*	2843	*	*	*	*	206
+       0	*	*	*	*	*	0	4241	0	1062	
+
+G 207  *	*	*	*	2676	246	*	*	*	*	*	*	*	*	*	*	*	*	*	*	207
+       0	*	*	*	*	*	0	3361	0	1062	
+
+K 208  *	*	*	*	*	1975	*	*	861	*	*	*	*	*	*	*	*	2358	*	*	208
+       0	*	*	*	*	0	*	2277	0	1062	
+
+Q 209  1887	*	*	*	*	*	*	*	*	*	*	*	*	1356	*	*	*	*	*	1560	209
+       0	*	*	0	*	*	*	2194	0	0	
+
+//
+�HHsearch 1.5
+NAME  a251ab96460cc372677a195a346bdc79
+FAM   
+FILE  a251ab96460cc372677a195a346bdc79
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:15:00 2013
+LENG  96 match states, 96 columns in multiple alignment
+FILT  101 out of 175 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  5.6 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCHHHHHHHCCCEEEEEEEECHHHCCCCCCEEEECCEEEEEECCCCCCCCCEEEECCEEEEEEEEEEEEEECCCCEEEEEEEEECCEEEEEECC
+>ss_conf PSIPRED confidence values
+941469963514874656999841217998763998884999853276699987996416799999999997258988999999773356517688
+>Consensus
+xxxxxxxvxxxaxCxPrxxxVxixxexpxxxxxxyxPxCvxvxRCxGCCxxexlxCxPtxtxxvxxxvxxxxxxxxxxxxxvxxxxHxxCxCxxkx
+>a251ab96460cc372677a195a346bdc79
+MVVKFMDVYQRSYCHPIETLVDIFQEYPDEIEYIFKPSCVPLMRAGGCCNDEGLECVPTEESNITMQIMRIKPHQGQHIGEMSFLQHNKAECRPKK
+>gi|41057195|ref|NP_957909.1| ORF132 vascular endothelial growth factor-like protein [Orf virus]gi|41018752|gb|AAR98357.1| ORF132 vascular endothelial growth factor-like protein [Orf virus]
+-TNDWVRTLDKSGCRPRDTVVYLGDEYPENTNLQYNPRCVTVKRCSGCCNGEGQICTAVETRNTTVVVSVTSVSSSSgansgvsnNLQRISLTEHTKCDC
+IGRT
+>gi|62421239|gb|AAX82359.1| vascular endothelial growth factor-like protein [Orange-spotted grouper iridovirus]
+------ESILESSCQPRPTKVQLSG------YDMYIPACAYVPRCGGCCSgDEATTCRPTATSTVNVTAYKLVFHETH-QVVVSVVTHTACACKFK-
+>gi|340710875|ref|XP_003394009.1| PREDICTED: hypothetical protein LOC100647889 [Bombus terrestris]
+---------KQANCEPSPTVVPTYQR--NDPSIIYFPRCTRVKRCTGCCGSELLSCQPKEIETRNFEIMLAKLTAQGrfeyqGKQIVPIDEHIRCGCD--
+-
+>gi|340719499|ref|XP_003398190.1| PREDICTED: vascular endothelial growth factor A-A-like [Bombus terrestris]
+--------FRCSMPQPRAIPVAELLTVGPSPDEVFYPASTVLTRCKgaGCCPDPKQICAPIETRNVSLVFMVkhtIDRQRDRHHEVIHALEHTKCGCVHK
+-
+>gi|47218000|emb|CAG11405.1| unnamed protein product [Tetraodon nigroviridis]
+------EEAVPALCKTRTVIYEIPrsQVDPTSANFLIWPPCVEVKRCTGCCNTSNMRCHPSRKHYRTVKVAKVEYVkRKPKlkEVFVRLEDHLECMCTS-
+-
+>gi|221110330|ref|XP_002160342.1| PREDICTED: similar to vascular endothelial growth factor [Hydra magnipapillata]
+---------DSPSCQLMQKFEQIPKSKT--DSFIFFPSCIKVNRCSGCCNTDVMECVALTNSSHFIDVYKVPTNGRPYLYRVSYFNDESCGCQ---
+>gi|198416765|ref|XP_002128012.1| PREDICTED: hypothetical protein [Ciona intestinalis]
+--------LRSTKCAVREEIVDIRDIHPHLPpDVLLLPSCILIRKCSGCCQNSRHVCKPTAIYVTRVEVSQQHVvRRRLDYITLNFTHHDECECMS--
+>gi|91081701|ref|XP_970909.1| PREDICTED: similar to Pvf3 CG34378-PD [Tribolium castaneum]gi|270006461|gb|EFA02909.1| PDGF- and VEGF-related factor 3 [Tribolium castaneum]
+-----AKVRQEGQCRkPLPKVISVQSEHPDPS-KTYTPHCTILHRCAddtGCCANHTTRCGPKTQVLVHLYFYAKTLGvPGTKVEKLTFYNHTECACIEK
+-
+>gi|335293493|ref|XP_003129048.2| PREDICTED: platelet-derived growth factor C-like [Sus scrofa]
+------EEVRLYSCTPRNFSVSIREELK-RTDTIFWPGCLLVKRCGGncaCCMHTCneCQCVPSKVTKKYHEVLQLRPKTGVrglhkSLTDVALEHHEEC
+DCV---
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1000	0	0	
+
+V 2    2924	*	*	*	*	4360	*	*	*	3207	4788	*	*	*	*	*	4282	681	*	*	2
+       0	*	*	*	*	*	*	3471	0	0	
+
+V 3    4088	*	*	*	*	*	*	2933	4337	3664	3061	4282	*	*	4912	*	4780	1181	*	*	3
+       0	*	*	*	*	*	*	3471	0	0	
+
+K 4    *	*	2996	*	*	*	*	*	3397	5437	5251	*	1440	*	4614	2083	3557	*	*	*	4
+       0	*	*	*	*	*	*	3567	0	0	
+
+F 5    *	*	*	*	991	*	*	4640	*	3880	*	*	*	*	*	*	*	*	1363	*	5
+       0	*	*	*	*	*	*	3635	0	0	
+
+M 6    4700	*	4585	4388	5702	*	4087	4538	*	2653	2222	2427	5578	4752	5724	5475	4711	4209	*	*	6
+       0	*	*	*	*	*	*	4412	0	0	
+
+D 7    *	*	1618	1367	*	*	*	*	3997	*	*	*	*	2671	4264	*	*	6076	*	*	7
+       0	*	*	*	*	*	*	4885	0	0	
+
+V 8    *	*	5354	2474	*	*	*	4030	*	4961	*	*	5393	*	*	5273	3829	780	*	*	8
+       0	*	*	*	*	*	*	5048	0	0	
+
+Y 9    3053	*	*	*	2671	*	*	4246	*	3512	*	5807	5138	*	5614	3857	5798	4479	2786	2067	9
+       0	*	*	*	*	*	*	5308	0	0	
+
+Q 10   3994	*	3595	3528	*	4172	*	*	2923	5537	5658	3134	*	2531	2798	4252	4932	5425	*	*	10
+       0	*	*	*	*	*	*	5515	0	0	
+
+R 11   6292	4548	*	3319	*	4302	*	6138	2904	3630	*	6703	3195	3375	2070	3164	*	*	*	*	11
+       0	*	*	*	*	*	*	5726	0	0	
+
+S 12   1365	*	*	*	*	4073	*	*	*	5636	*	*	4190	5582	*	1750	3879	6409	*	3653	12
+       0	*	*	*	*	*	*	5807	0	0	
+
+Y 13   5985	*	5019	3972	3954	4287	5936	5912	3781	3530	4178	4733	4658	3791	4580	2103	5016	5897	*	4194	13
+       0	*	*	0	*	*	*	5811	1000	0	
+
+C 14   5619	83	*	*	*	*	*	*	*	*	*	*	4800	*	*	*	*	*	*	*	14
+       20	6184	*	0	*	*	*	5864	1006	0	
+
+H 15   5872	*	*	4261	*	5583	5930	4881	2158	*	3869	6529	*	2181	2692	3574	3869	5136	*	*	15
+       139	3447	*	0	*	*	*	5874	1429	0	
+
+P 16   4768	*	*	*	*	*	*	*	*	4967	*	*	408	*	*	5714	3195	4335	*	*	16
+       0	*	*	*	*	*	*	5874	0	0	
+
+I 17   6318	*	6626	3945	*	4597	*	4133	5202	4551	4211	*	*	4068	833	4099	6509	*	*	*	17
+       0	*	*	*	*	*	*	5874	0	0	
+
+E 18   3983	*	3797	1661	*	*	*	6714	5207	3588	6022	3869	3033	4511	5624	4129	3652	6641	6382	*	18
+       0	*	*	*	*	*	*	5874	0	0	
+
+T 19   4606	*	*	3071	6288	*	5583	3968	3549	5827	4799	*	*	3413	4032	5624	1750	3568	*	4429	19
+       0	*	*	*	*	*	*	5874	0	0	
+
+L 20   4561	4915	*	*	4536	*	*	3166	6087	1983	4451	*	3701	*	*	4077	4015	1951	*	*	20
+       0	*	*	*	*	*	*	5874	0	0	
+
+V 21   *	*	*	5453	4509	*	*	3044	*	5347	5686	*	*	*	*	*	5624	442	*	6419	21
+       32	6510	6505	1000	1000	*	*	5874	1000	0	
+
+D 22   4311	*	2304	2145	*	*	*	*	5210	*	*	3685	3033	4054	4378	3134	*	*	*	3798	22
+       0	*	*	*	*	*	0	5864	0	1000	
+
+I 23   5387	*	5707	5900	6508	*	*	1671	*	1936	5857	*	*	*	*	6487	5423	1828	*	5619	23
+       81	6303	4577	1585	585	0	*	5864	1007	1000	
+
+F 24   4375	*	*	4535	3705	4478	5934	4550	4166	2953	6672	*	3194	4914	2907	3054	3605	5352	6939	5476	24
+       62	6370	5060	1000	1000	*	0	5833	1009	1158	
+
+Q 25   6452	*	2928	3371	*	4020	5395	*	3297	4060	6616	5351	3349	2682	3486	3425	5725	5409	*	*	25
+       183	5065	3483	1000	1000	2914	205	5795	1099	1310	
+
+E 26   4718	*	4527	882	*	*	*	4136	4284	5259	*	5037	5458	6113	6264	4186	4602	4545	5500	*	26
+       107	6242	4102	1000	1000	2760	230	5711	1000	1690	
+
+Y 27   5164	*	3948	*	3494	5200	3406	*	5277	2305	4778	5237	*	5402	5730	*	4403	4557	*	1869	27
+       61	5127	6266	1000	1000	1072	931	5666	1095	1829	
+
+P 28   5712	*	5051	4362	*	3740	*	5739	4334	4894	6567	5470	938	6279	4408	5297	4276	4913	*	*	28
+       176	*	3123	*	*	1915	445	5758	0	1463	
+
+D 29   3680	*	2025	3323	*	3690	4884	*	5009	5692	*	3410	5080	4209	4763	4018	3207	5811	*	6360	29
+       100	4283	6005	1643	557	1375	703	5543	1189	1881	
+
+E 30   3931	*	2554	1766	*	4694	5450	*	*	4875	6446	3814	4051	6109	4986	2802	6006	6053	*	6434	30
+       14	*	6688	*	*	381	2107	5688	0	1596	
+
+I 31   3736	*	5484	*	*	*	*	3873	*	6935	5193	*	2210	7041	5788	2801	2120	2525	*	6696	31
+       114	4931	4524	569	1618	0	*	5825	1113	1143	
+
+E 32   4570	*	3300	2469	*	5072	7038	*	*	6293	*	1606	*	*	5657	2388	4018	6736	*	6046	32
+       19	6277	*	0	*	0	*	5840	1007	1190	
+
+Y 33   3642	*	5011	4134	2886	4392	3191	5344	3009	4333	7340	*	*	5206	*	5765	4188	2841	*	3398	33
+       0	*	*	*	*	*	*	5863	0	0	
+
+I 34   4975	*	*	5920	3314	*	4959	1969	5203	2733	4664	4755	*	4719	3948	5230	4039	3842	*	4340	34
+       0	*	*	*	*	*	*	5863	0	0	
+
+F 35   *	*	*	*	1581	*	*	5045	*	3093	5604	*	*	*	*	*	*	4195	6033	1225	35
+       34	5413	*	1000	1000	*	*	5863	1074	0	
+
+K 36   6763	*	*	6204	3279	*	*	3684	3534	3754	4840	4478	*	6794	4381	3548	4100	4167	2448	3102	36
+       0	*	*	*	*	*	*	5863	0	0	
+
+P 37   *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	37
+       0	*	*	*	*	*	*	5863	0	0	
+
+S 38   2880	*	*	5669	*	4948	4135	*	*	*	*	*	2250	3987	3167	1729	3858	*	*	*	38
+       0	*	*	*	*	*	*	5863	0	0	
+
+C 39   5105	158	*	*	*	*	5599	*	*	*	*	*	*	*	5604	4899	*	*	*	*	39
+       0	*	*	*	*	*	*	5863	0	0	
+
+V 40   4115	*	*	*	*	*	*	4066	*	4152	*	*	*	*	*	*	1543	1050	*	*	40
+       0	*	*	*	*	*	*	5863	0	0	
+
+P 41   5875	*	*	3103	*	*	*	3281	5525	3263	6204	6498	3427	*	2405	3208	3548	3165	6414	6106	41
+       0	*	*	*	*	*	*	5863	0	0	
+
+L 42   *	*	*	*	*	*	*	3675	*	1276	6107	*	*	*	*	*	*	1017	*	*	42
+       0	*	*	*	*	*	*	5863	0	0	
+
+M 43   6386	*	7128	4052	4906	*	2395	*	2582	4986	3717	3541	5365	2672	4072	5934	4402	7286	6955	5809	43
+       0	*	*	*	*	*	*	5863	0	0	
+
+R 44   *	*	*	*	*	*	*	*	5197	*	*	*	*	4841	112	*	*	6351	*	*	44
+       0	*	*	*	*	*	*	5863	0	0	
+
+A 45   5935	24	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	45
+       13	6747	*	1000	1000	*	*	5863	1025	0	
+
+G 46   2842	*	6012	6640	*	1204	*	*	5947	*	*	4220	*	*	*	1969	3720	*	*	*	46
+       305	2393	*	1504	627	*	*	5863	2079	0	
+
+G 47   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	47
+       46	4995	*	1585	585	*	*	5863	1114	0	
+
+C 48   5599	99	*	*	*	*	*	*	*	*	*	5329	*	*	5604	*	*	*	*	*	48
+       0	*	*	*	*	*	*	5863	0	0	
+
+C 49   *	28	*	*	*	5678	*	*	*	*	*	*	*	*	*	*	*	*	*	*	49
+       47	*	4963	*	*	*	*	5863	0	0	
+
+N 50   4789	*	6543	*	*	2908	*	6012	6013	5758	5630	1541	3317	5297	5634	2630	3862	5578	*	6721	50
+       59	4635	*	1147	867	342	2246	5822	1190	1147	
+
+D 51   4990	*	1353	6493	*	4461	3471	*	6436	*	*	3610	7139	6652	6003	2567	3008	6474	*	*	51
+       47	5323	7139	836	1185	0	*	5864	1135	1000	
+
+E 52   5656	*	3149	1303	6781	6194	5228	*	3868	4854	*	4594	4250	*	3891	3312	4390	*	*	*	52
+       52	4826	*	655	1454	0	*	5863	1136	1000	
+
+G 53   2805	6401	6763	7229	6107	3321	7002	5507	4096	2625	5347	3705	*	5716	3837	2926	3635	4562	5678	*	53
+       47	6401	5608	1000	1000	*	*	5863	1006	0	
+
+L 54   *	4740	*	4556	6146	*	5876	4714	3727	1187	3764	5655	*	3387	*	5581	5288	3901	*	4898	54
+       29	5655	*	1000	1000	0	*	5956	1045	1087	
+
+E 55   4278	*	*	1826	*	5809	4470	2960	4381	*	*	*	*	3065	4540	3258	3492	3815	*	*	55
+       0	*	*	*	*	*	*	5863	0	0	
+
+C 56   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	56
+       0	*	*	*	*	*	*	5863	0	0	
+
+V 57   2996	*	*	4477	*	5483	5808	5700	5168	5016	5283	*	*	2290	4097	4419	3584	1772	*	*	57
+       0	*	*	*	*	*	*	5863	0	0	
+
+P 58   2398	*	*	*	*	*	*	*	*	*	*	4535	503	*	*	5043	*	5007	*	*	58
+       0	*	*	*	*	*	*	5863	0	0	
+
+T 59   5730	*	*	6770	*	4916	*	3987	2762	3939	*	6351	*	*	6646	3207	1164	3532	*	*	59
+       0	*	*	4248	78	*	*	5863	1000	0	
+
+E 60   3296	*	*	2071	*	4299	6409	6529	2910	4482	*	5393	6026	4481	3548	3334	3409	4437	*	*	60
+       0	*	*	*	*	*	*	5974	0	0	
+
+E 61   5728	*	*	3749	*	5989	*	3775	3729	4873	6018	4220	*	4416	*	3691	1230	3496	*	*	61
+       0	*	*	*	*	*	*	5974	0	0	
+
+S 62   3525	8169	6026	2539	*	5953	2880	*	4338	*	*	4819	*	4263	2845	2615	4385	4079	*	5386	62
+       0	*	*	*	*	*	*	5974	0	0	
+
+N 63   5955	*	5982	4648	*	*	5522	3825	4409	4654	4816	1752	4917	5768	5179	3685	2355	5283	*	4691	63
+       0	*	*	*	*	*	*	5974	0	0	
+
+I 64   5982	*	*	*	6662	*	5510	2536	4138	4045	*	*	*	6375	2927	*	3705	1177	*	*	64
+       13	6779	*	1000	1000	*	*	5974	1000	0	
+
+T 65   *	*	4990	2877	5510	7149	4172	6301	4928	4680	6025	3828	4753	4769	4229	3432	1807	5511	*	4317	65
+       0	*	*	*	*	*	*	5974	0	0	
+
+M 66   5892	*	*	*	3229	5922	4062	4284	4916	1867	1815	*	*	*	5118	*	*	2958	*	*	66
+       14	6696	*	1000	1000	*	*	5802	1000	0	
+
+Q 67   4643	6427	5689	2208	*	*	4939	*	3892	5680	*	6849	4337	1968	4142	4710	3250	4982	*	4391	67
+       0	*	*	*	*	*	*	5802	0	0	
+
+I 68   6031	*	*	*	2301	5461	*	2872	5868	3351	*	*	*	*	*	*	5403	1048	*	*	68
+       17	*	6427	*	*	*	*	5802	0	0	
+
+M 69   5683	5401	*	5908	3338	*	*	4264	4524	2134	2290	4390	5525	5456	4837	5372	6565	4691	5451	3472	69
+       0	*	*	*	*	*	0	5795	0	1015	
+
+R 70   6548	*	*	3927	*	5069	*	6904	1771	4405	4896	6276	7284	4285	2425	5219	5725	2258	*	*	70
+       109	3777	*	1010	990	*	0	5795	1436	1015	
+
+I 71   4498	5385	*	*	4304	4517	6809	1812	5720	3291	6338	6006	*	4784	*	4571	2888	2972	*	4214	71
+       26	*	5784	*	*	1850	469	5797	0	1142	
+
+K 72   4972	*	3847	3516	5421	4461	5830	6990	2887	*	*	3590	4476	3328	3971	2664	3225	5956	*	6687	72
+       86	6755	4364	1000	1000	918	1087	5783	1000	1186	
+
+P 73   5178	5360	*	*	4472	*	4864	3966	*	3300	5587	*	2465	4635	3915	4420	4461	2977	5581	2693	73
+       175	3563	5081	1267	775	1733	516	5732	1379	1340	
+
+H 74   5806	*	3565	3933	5915	3185	3669	6373	3848	4710	6708	3334	5634	4812	3996	3413	3553	3447	*	6744	74
+       284	2552	6956	238	2717	305	2390	5702	1862	1441	
+
+Q 75   4184	*	4462	5165	*	2877	5167	6681	3445	6245	5919	3901	5365	2690	2976	3100	4567	4494	*	*	75
+       137	3469	*	845	1173	340	2250	5809	1476	1127	
+
+G 76   *	*	4919	4526	*	1858	5824	5880	2890	*	*	4813	4974	4746	3102	2483	4415	5514	*	6731	76
+       158	3798	4971	687	1401	*	0	5804	1345	1000	
+
+Q 77   4933	*	4876	6495	*	2916	5407	*	4250	5789	6760	4496	2406	2835	3758	2737	4315	4682	*	*	77
+       729	1470	4809	2714	239	504	1763	5759	2928	1146	
+
+H 78   6084	*	5224	3326	*	3125	3027	5273	2625	*	5984	3287	4970	*	4363	3397	3934	4211	*	5614	78
+       157	3275	*	1338	727	0	*	5762	1589	1276	
+
+I 79   *	6400	6099	5658	4540	*	4606	2895	3535	2322	4790	6559	4375	4702	3863	5635	5904	3010	*	3542	79
+       56	4709	*	2071	392	*	*	5798	1179	0	
+
+G 80   3838	5398	5476	2521	7134	4247	5870	3176	3440	6604	*	5885	6012	3980	4794	7189	3538	2515	*	5646	80
+       93	4417	6012	1776	498	*	*	5798	1223	0	
+
+E 81   *	*	4105	2443	5292	*	5296	3112	3227	4211	*	5859	6219	4366	4058	4958	2669	3294	*	*	81
+       0	*	*	*	*	*	0	5774	0	1044	
+
+M 82   4342	*	*	*	4806	*	*	2420	6471	2092	2966	*	*	*	5933	*	*	1565	*	*	82
+       15	6549	*	0	*	*	0	5774	1000	1044	
+
+S 83   4367	*	6854	5677	*	*	5285	6933	5579	4120	*	5256	2993	4542	4115	1764	2458	4356	*	4909	83
+       38	5250	*	1364	710	0	*	5774	1074	1044	
+
+F 84   5310	*	*	*	1304	*	*	3471	*	2124	5663	*	*	5398	*	*	*	2420	*	5646	84
+       0	*	*	*	*	*	*	5798	0	0	
+
+L 85   5043	*	4884	1578	5646	*	*	5065	*	3609	*	*	*	4593	6434	4806	2566	2476	*	4976	85
+       0	*	*	*	*	*	*	5798	0	0	
+
+Q 86   *	*	3779	1532	*	*	3680	*	4466	*	*	1950	*	2709	5024	*	5999	*	*	*	86
+       0	*	*	*	*	*	*	5798	0	0	
+
+H 87   *	*	4293	6184	*	*	134	*	*	5398	*	*	*	*	*	*	*	*	*	*	87
+       0	*	*	*	*	*	*	5798	0	0	
+
+N 88   *	*	4660	3442	*	*	*	5071	3524	3089	*	3811	*	5854	5960	4124	1413	3369	*	*	88
+       0	*	*	*	*	*	*	5798	0	0	
+
+K 89   3150	*	*	1815	*	4768	5082	*	2459	5980	*	7131	*	3722	2921	3532	5144	6718	*	*	89
+       17	6430	*	1000	1000	*	*	5803	1007	0	
+
+A 90   5808	61	*	*	*	*	*	*	*	*	*	*	*	*	5395	*	*	*	*	*	90
+       0	*	*	*	*	*	*	5803	0	0	
+
+E 91   3345	*	3807	1550	*	3842	3968	6819	2549	*	6541	*	*	4542	4544	5057	4990	5858	*	*	91
+       0	*	*	*	*	*	*	5803	0	0	
+
+C 92   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	92
+       29	5632	*	1585	585	*	*	5803	1064	0	
+
+R 93   6457	*	3949	4082	6579	5524	*	4704	4552	5982	4488	*	*	2530	1638	5265	6276	2663	*	*	93
+       0	*	*	0	*	0	*	5725	1064	1064	
+
+P 94   5754	3162	5582	3285	4304	4947	4744	5550	4855	4794	6220	5628	1580	6223	*	2824	*	*	6467	*	94
+       0	*	*	*	*	*	*	5198	0	0	
+
+K 95   *	*	*	*	*	*	*	4621	648	5818	*	*	*	5719	1814	*	*	*	*	*	95
+       0	*	*	*	*	*	*	4804	0	0	
+
+K 96   *	*	3185	*	4111	*	*	*	1413	4715	*	4281	2992	*	3574	4685	4389	*	*	3817	96
+       0	*	*	0	*	*	*	3576	0	0	
+
+//
+�HHsearch 1.5
+NAME  a44d747376cfd87bd0f30749697bc63b
+FAM   
+FILE  a44d747376cfd87bd0f30749697bc63b
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:20:24 2013
+LENG  202 match states, 202 columns in multiple alignment
+FILT  138 out of 1781 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.9 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCEEECCCEEEEECCCCEEEEEEECCCCCCEEEEEEECCCCCCEEEEEECCCCCCCCCCCCEEEEEECCCCEEEEEECCCCHHHCCCEEEEECCCCCCCC
+CCCEEEECCCCCCCCCCCCEEEECCCCCCEEEEEEECCCCCCCEEEEECCCCCCCCCCCEEEEECCCCEEEEEEEECCCCEEEEEEEECCCCCCCCCCCC
+CC
+>ss_conf PSIPRED confidence values
+9089479718997999799999974789946999992799984499995254345677882799984489747888756887567659999806887530
+0010000122454200000145315544207899972669886799978985302443066550367679967973489849999995998715778788
+89
+>Consensus
+xxvxqxpxxxxxxxGxxvxLxCxxsxxxxxxixWxxxxxxxxxxxxxxxxxxxxxxxxxxrxxxxxxxxxxxxxLxIxxxxxxDxgxYxCxvxxxxxxxx
+xxxxxxlxvxxxxxxxxpxvxxxxxxxxxxxlxCxxxxxxPxxxvxWxxxxxxxxxxxxxxxxxxxxxlxlxxxxxxxxxxytCxvxhxxxxxxxxxxxx
+xx
+>a44d747376cfd87bd0f30749697bc63b
+QSVTQPDARVTVSEGASLQLRCKYSYSATPYLFWYVQYPRQGLQLLLKYYSGDPVVQGVNGFEAEFSKSNSSFHLRKASVHWSDSAVYFCAVSGFASALT
+FGSGTKVIVLPYIQNPEPAVYALKDPRSQDSTLCLFTDFDSQINVPKTMESGTFITDATVLDMKAMDSKSNGAIAWSNQTSFTCQDIFKETNATYPSSDV
+PC
+>gi|54779581|gb|AAV39959.1| immunoglobulin mu heavy chain [Homo sapiens]
+------SDPGLVKPSETLSLTCTVSGGSIssYYWSWIRQPPGKvtGVDWVYLLQWE-hQlqPLPQ-ESSHHISRHVQEPVlpEAELCDRCGHGRVLLC--
+eRcrlDivvvvAAGfDWFdPWGQGTLVTVSS---------------------------------------------------------------------
+----------------------
+>gi|293353800|ref|XP_002728296.1| PREDICTED: rCG64189-like [Rattus norvegicus]
+-FLDDTKDGLFSRIRGFntsptRKPQCKSQTRPCTTVLWVTQWQ-----------------KP-QGELSTNREATGGLAAEKLPLRSSD---FTTAF---
+----------------------------------------------------------------------------------------------------
+-------
+>gi|115497936|ref|NP_001068678.1| poliovirus receptor-related 2 [Bos taurus]gi|109658349|gb|AAI18435.1| Poliovirus receptor-related 2 (herpesvirus entry mediator B) [Bos taurus]gi|296477435|gb|DAA19550.1| poliovirus receptor-related 2 [Bos taurus]
+DVRVQVAAEVRGNLGDTVELPCHLlpSAPEirVSQVTWLRLDAPEGKQNVAIFHPQYGrsfpSPKpgK-ERLSFVN-TapssgagqgselEVRDATLSLR
+GLTVEDEGNYTCE------FATFPKGtsrgvTWLRVIAQPQNHAEKQEVTFNLDPVPVARCVSAGGRPPARVSWlspLDGEAKETQGSGPLPGTVTVTsr
+YTVTPLSEADGVKVICKVEHESFqePKLLP------
+>gi|53987930|gb|AAV28078.1| immunoglobulin delta heavy chain [Salmo trutta]
+-KIVR-PSDSDLWGSNNATLLCLVSGFFPSDVIVNWEKAGSRLPFSRYSSIPSVlYAGS-STYSMN-------SRLIVPRSEWDQNSNYSCAVRHESSER
+PI-THTIENVFGSVTPSASTATLL---QGPSELVCLVLGFSPsDINITWlLDNVTELWNNNTSTTYRAPGGKfgirshlSLAHQDWTPGAVYTCRVTHTT
+Q-----------
+>gi|30268720|gb|AAP29471.1|AF387763_1 costimulatory molecule B7.1 [Meriones unguiculatus]gi|37903876|gb|AAO38852.1| costimulatory molecule B7.1 [Meriones unguiculatus]
+--------QVFKSVNEKVSLSCGYNFSFdeLAIHRIYWQKDDRKMVLSISSGDKKVwPEYQ-NRTLCDISNN---FSLMILGLLPSDRGTYECVVqkkER
+GVYLLRHLNSVELSIRAD--FPVPNITQFGNQSADmKTIICETSGGFPEPRSLWLESGRELRGINTTVSQDPESELYavSSKLDFNatYNRSIVCSVAYG
+K------------
+>gi|341890725|gb|EGT46660.1| CBN-ZIG-2 protein [Caenorhabditis brenneri]
+-RIAQGLEDMKAAPGEHITLHCMVLSTPSSVFHW--EHNGIRVQEDSNVNIHERMMNI-GKEVVG--DGTISSFYTIPCVNANSTGIYKCIAF--NGHGT
+VESSAKVTVegkptecVSN-DKTAPKIITITGIRlqengRVATLNCRAD---KPAKFEWTFKGKPIDMNDGRFSVLSYGDLVISNISWSDMGDFTCYARN
+K-------------
+>gi|301791774|ref|XP_002930855.1| PREDICTED: signal-regulatory protein beta-1 isoform 3-like [Ailuropoda melanoleuca]
+-----SGPAARASPEQTVSFTCESHGFSprNITLRWFK----NGNELAASQTTVDAEGHG-TSYNIS---SMTRLVLAPGDVRSQV--------------
+PLHPqpnprSGPQLLLCAVSVPPTLEVSQQPVAGDQVNVTCQVTKFYPrHLQLTWLENGNVSRTEmasMASNLIENKDGTFnwtswllVKSSTHREDVVL
+TCQVQHDRQ-----------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+Q 1    *	*	3282	3467	*	*	*	3550	*	*	*	*	3462	858	*	*	*	3663	*	*	1
+       0	*	*	*	*	*	*	4956	0	0	
+
+S 2    4471	*	*	3356	5622	*	4098	5537	3812	5470	*	*	*	2764	3759	3850	2665	2470	*	4850	2
+       0	*	*	*	*	*	*	8957	0	0	
+
+V 3    *	*	*	*	3458	*	*	2317	*	2166	3716	*	5964	*	5843	*	5930	1476	*	*	3
+       0	*	*	2585	263	*	*	9375	1036	0	
+
+T 4    6040	*	3832	5320	*	5981	6101	3953	4558	*	4726	6216	5908	3278	5397	3933	1634	2699	*	6004	4
+       29	6538	6803	0	*	*	*	9482	1000	0	
+
+Q 5    4960	*	4928	3977	6114	6181	5190	5413	4691	4560	*	*	4180	1190	4338	4436	6090	3394	*	6317	5
+       226	*	2784	*	*	*	0	9702	0	1000	
+
+P 6    3996	*	*	5148	5208	4578	4451	5063	5033	4082	*	4843	2057	4073	5159	3289	2701	4149	*	*	6
+       34	*	5407	*	*	129	3543	9692	0	2499	
+
+D 7    4083	*	5363	4404	*	4501	5628	*	4733	4769	*	6342	900	3791	6369	4091	5409	5969	*	*	7
+       37	*	5305	0	*	604	1549	10032	1015	1280	
+
+A 8    3279	*	4278	3785	*	4028	5498	*	3910	3574	*	5334	3165	4258	4099	2465	3720	4837	*	*	8
+       44	*	5042	*	*	611	1535	10091	0	1276	
+
+R 9    5371	6989	3024	3606	5351	5020	4763	5799	5578	5531	6823	4285	3723	4201	4630	2475	3200	4238	*	4722	9
+       27	*	5775	*	*	509	1750	10153	0	1345	
+
+V 10   3839	*	6540	4396	5212	4845	*	3496	4678	2585	4184	5042	6712	3600	*	4416	4977	1945	*	*	10
+       0	*	*	*	*	1926	440	10372	0	1312	
+
+T 11   5409	*	3314	4167	4711	*	6876	3671	5425	3996	*	6819	4872	5110	4451	2712	2338	3356	5816	5289	11
+       21	6117	*	2431	296	0	*	10312	1479	1188	
+
+V 12   2218	5647	*	*	6849	4569	*	3999	3771	4921	4983	6810	6705	*	6661	4500	3387	1677	*	4918	12
+       9	7395	*	0	*	*	*	10371	1000	0	
+
+S 13   4301	*	5807	3367	4709	*	*	4926	3395	4598	4705	4819	4009	3532	3399	2754	4167	3787	6355	5555	13
+       20	6870	7581	4644	59	*	*	10382	1000	0	
+
+E 14   4789	*	4824	2237	*	5544	*	4169	4338	2682	7202	6743	3045	5110	4774	3822	4838	2992	*	*	14
+       0	*	*	0	*	*	0	10407	1000	1000	
+
+G 15   *	*	4497	6860	*	464	6642	*	5718	6552	*	4267	*	4916	4720	5164	5653	6399	*	*	15
+       13	*	6850	*	*	*	0	10528	0	1000	
+
+A 16   4734	*	2968	2241	*	3060	7085	6822	3702	5325	6438	4559	6355	3264	5902	2747	4343	*	*	*	16
+       0	*	*	*	*	919	1086	10550	0	1159	
+
+S 17   6788	5889	3265	5327	6875	5143	5583	*	4241	6880	*	3197	3178	4802	4633	2001	2819	4687	*	*	17
+       46	5639	6444	2322	322	*	0	10525	1225	1000	
+
+L 18   1702	*	*	5932	6214	5051	7087	3741	*	4352	6865	*	*	7339	6893	5261	4251	1365	*	6425	18
+       13	*	6853	*	*	879	1133	10537	0	1170	
+
+Q 19   5308	*	5824	4166	6138	*	5675	3734	4127	5001	6032	3822	6133	4453	4305	2868	1743	3965	*	7008	19
+       0	*	*	*	*	846	1172	10509	0	1179	
+
+L 20   6345	*	*	*	3083	*	*	2448	*	908	4606	*	6003	*	*	6139	*	3597	*	*	20
+       0	*	*	*	*	*	0	10553	0	1000	
+
+R 21   4972	7037	5929	5107	5532	4496	4893	5738	5335	4112	6938	3127	2701	5404	3621	2891	2851	4512	*	6008	21
+       0	*	*	2807	222	0	*	10553	1000	1000	
+
+C 22   5648	151	*	*	5450	*	*	*	*	*	*	*	6816	*	6442	5956	7037	6352	*	*	22
+       30	6857	6366	0	*	*	*	10554	1003	0	
+
+K 23   6287	*	3876	3579	6979	4144	4003	4943	3814	4568	6012	3937	7065	4141	3157	3155	3191	4033	7041	6033	23
+       39	5669	7141	1029	972	0	*	10577	1477	1152	
+
+Y 24   2985	5432	*	6419	3172	4871	6857	3242	6850	2998	*	6859	*	6644	*	3957	4181	2181	*	3525	24
+       48	7027	5307	1000	1000	0	*	10592	1040	1000	
+
+S 25   5091	*	5134	3266	5327	5853	5140	5801	4013	4774	7006	4698	4129	5391	4267	1661	2786	*	*	6548	25
+       56	4726	*	1523	617	0	*	10519	1686	1314	
+
+Y 26   5460	7145	3126	4032	6032	2258	5092	5379	5323	5328	5255	3644	3637	4241	5323	3544	4366	5243	*	4579	26
+       37	6321	6292	1000	1000	*	*	10554	1039	0	
+
+S 27   4338	5843	4480	4346	3864	4136	5029	3937	3872	4167	6724	4897	3404	5929	4476	3022	4357	3543	*	4751	27
+       49	6928	5302	1797	489	1086	919	10578	1127	1159	
+
+A 28   4947	6859	4811	4897	5267	3410	4957	6766	4478	4210	*	3836	2387	3654	5831	3450	3733	3838	6351	5480	28
+       1083	1052	4448	1484	638	451	1898	10538	6895	1466	
+
+T 29   4001	4840	3621	3463	4672	3294	6537	6012	5169	3594	7035	3785	4421	4762	4562	3129	4288	3794	*	6801	29
+       126	3894	5907	1337	727	585	1585	10448	1868	2091	
+
+P 30   4091	*	4207	5326	4881	4444	4175	3530	5030	3728	6520	4010	2823	4646	4848	3793	4058	4441	6939	4080	30
+       73	4584	7064	775	1267	588	1579	10464	1489	1803	
+
+Y 31   4586	*	4318	4325	5321	5551	4706	4056	7035	3914	6699	3443	5930	4199	4512	3403	2794	4196	5935	3136	31
+       18	6362	*	749	1305	610	1537	10551	1314	1329	
+
+L 32   5940	6365	*	*	3751	4997	7001	1848	5990	2602	4292	*	*	6843	6333	*	6327	1810	5936	6179	32
+       34	5424	*	735	1324	*	0	10525	1307	1007	
+
+F 33   4229	6327	6746	4397	3355	5983	3799	4832	5088	3700	*	4842	*	4287	3045	3193	3130	4990	*	3500	33
+       17	*	6448	*	*	0	*	10525	0	1007	
+
+W 34   *	*	*	*	5244	*	*	5443	*	4520	*	*	*	*	*	6077	*	4632	260	5892	34
+       86	4557	6045	748	1305	*	0	10492	1526	1008	
+
+Y 35   *	5962	*	5094	2232	*	5279	4001	3785	3429	*	6552	*	5168	4531	4806	4611	3974	5829	2008	35
+       74	5973	4887	2169	363	*	0	10470	1153	1322	
+
+V 36   5964	*	5808	*	4504	*	4201	5859	2484	4688	5598	6173	6068	2891	1693	5385	5937	5448	4033	6054	36
+       168	5842	3438	1155	860	1857	466	10401	1129	2014	
+
+Q 37   4174	6112	3492	3800	5840	4856	6007	*	3345	5330	*	5034	4846	1532	5072	4328	4711	4645	*	6643	37
+       163	*	3229	1000	1000	1900	450	10383	1000	3310	
+
+Y 38   4860	*	3604	5084	5625	3664	4603	5124	2532	4387	6580	4017	5303	4354	3608	3339	3543	5734	6687	5470	38
+       92	6718	4265	0	*	3553	128	10234	1000	4241	
+
+P 39   4526	6711	3427	3486	4587	3580	6676	6354	4931	4231	*	3669	2087	4315	6694	3842	4068	5713	*	6756	39
+       79	*	4225	*	*	1259	780	10236	0	4671	
+
+R 40   5533	*	3566	3734	6400	1563	5409	*	3852	6609	*	3475	5267	6713	3866	3713	4722	5075	5772	6749	40
+       0	*	*	1585	585	1990	418	10319	1000	3992	
+
+Q 41   5234	*	4271	3343	6864	3940	6653	6089	3142	6093	*	4242	3853	2682	4352	2601	3863	4778	*	*	41
+       42	7182	5497	1585	585	3244	161	10356	1000	3305	
+
+G 42   3424	*	7100	3618	*	2578	5589	4930	3790	4133	6520	3578	3493	5886	5008	3019	3554	5166	*	*	42
+       132	4888	4216	1092	913	4083	88	10378	1338	3408	
+
+L 43   5438	5771	6693	6314	4551	6800	*	3445	5271	2983	5745	4414	1738	4333	5415	5166	4428	2966	*	*	43
+       71	6813	4677	1585	585	2976	196	10266	1000	3920	
+
+Q 44   5035	*	4197	3010	*	4042	6773	3696	3183	*	*	5898	6401	2771	4369	3301	3467	3592	6078	5607	44
+       22	*	6069	1312	744	1316	741	10205	1152	4124	
+
+L 45   4808	6722	5809	4383	2877	5315	7261	4085	5234	2344	6570	5904	5400	5454	3524	4406	4611	3470	4805	3961	45
+       42	*	5138	*	*	2487	283	10301	0	3199	
+
+L 46   5800	5637	7175	4686	5426	6762	6581	2742	*	1653	4467	4713	5289	5115	6936	4476	5287	2917	5522	4830	46
+       42	*	5117	*	*	2455	290	10358	0	3186	
+
+L 47   3090	5834	4326	4199	4979	5188	*	2218	5085	2696	*	6355	*	5717	5755	3927	4853	3559	*	3879	47
+       51	6150	5610	0	*	*	0	10302	1014	3215	
+
+K 48   4423	6835	4497	6656	3342	5281	4531	3632	4351	4770	7039	5854	5492	5401	3928	3613	3046	5015	5804	2570	48
+       38	6883	5812	1000	1000	4342	73	10330	1001	3589	
+
+Y 49   5119	5420	5574	4574	3475	3433	4405	3765	4388	3631	5834	4848	4168	6724	4255	3525	3216	4354	*	4641	49
+       35	6946	5971	0	*	3242	161	10336	1000	3677	
+
+Y 50   4165	*	3325	5313	3792	3677	3610	5046	4210	4132	6375	3153	*	5274	*	3209	3374	5217	*	3967	50
+       44	*	5071	*	*	3587	125	10350	0	3699	
+
+S 51   4301	*	3378	4426	4999	3270	4327	6396	3625	4677	7025	3150	4928	6629	4568	2941	3634	5225	4811	6478	51
+       85	5713	4709	615	1527	2819	220	10332	1131	3964	
+
+G 52   3239	6315	4198	3731	6332	3706	5273	5818	3505	4511	*	3228	4745	4373	4492	3159	4265	3722	*	6544	52
+       64	*	4529	0	*	3550	129	10383	1000	4026	
+
+D 53   4077	*	3913	5485	5435	3174	4669	5723	3656	4645	7232	3815	4121	3754	4096	3076	3510	5230	*	4649	53
+       119	7294	3781	521	1722	3248	160	10253	1125	4265	
+
+P 54   4632	*	4486	2498	*	3127	*	4008	3216	4353	*	4152	4773	4681	4083	4695	3071	4518	*	6285	54
+       1158	915	5530	1672	543	2258	338	10081	6632	4738	
+
+V 55   4424	6816	3208	3117	4455	3193	6664	5066	5018	4698	6667	4707	3182	3572	4973	5166	4057	4210	*	4613	55
+       37	5287	*	0	*	2814	221	10269	1245	4277	
+
+V 56   3670	*	4156	3097	4893	4417	5641	4806	3750	3504	5549	5868	4856	3993	5249	3752	4775	2805	*	4886	56
+       106	4258	5762	2649	251	2584	263	10270	1868	3870	
+
+Q 57   4876	*	3752	3751	4539	3477	5680	*	3554	4822	*	4146	3168	4652	5159	3185	4223	4405	*	3344	57
+       311	4776	2668	415	2000	*	0	10314	1442	3665	
+
+G 58   4011	6427	3488	4130	6436	2932	4570	*	2945	6367	4878	2999	5534	3833	4129	3256	5213	*	*	6180	58
+       2395	6021	332	0	*	*	0	10101	1018	5422	
+
+V 59   *	*	*	*	2495	3804	*	4060	*	2788	*	*	*	*	4010	*	4046	2515	*	2008	59
+       2105	382	*	219	2826	63	4543	6298	2719	9223	
+
+N 60   3057	*	2903	3324	6780	2215	4919	*	4217	6697	*	3818	4335	5136	5532	3119	5008	6864	*	*	60
+       57	5353	6102	1976	423	2407	301	10490	1380	1573	
+
+G 61   6073	5566	4938	5707	*	4408	6751	5832	3103	6827	6539	4980	5720	3802	1189	4340	4361	5791	*	5308	61
+       33	6079	7041	459	1877	*	0	10437	1156	1657	
+
+F 62   4755	*	7000	6812	1557	5072	6612	3735	*	3392	5759	*	6625	5827	7333	5328	4067	3592	*	2504	62
+       0	*	*	0	*	1345	722	10440	1000	1810	
+
+E 63   4418	*	6107	4480	4584	*	5448	5700	3675	4073	6145	6060	5350	3349	3974	1893	3022	4485	6745	6558	63
+       45	5840	6253	1297	754	*	0	10493	1125	1437	
+
+A 64   3463	5212	5856	6332	4371	3542	5417	2922	6909	2554	4161	5420	5445	5508	5693	4345	4580	2808	*	7117	64
+       41	6976	5626	1585	585	2783	227	10529	1027	1762	
+
+E 65   5370	5817	3389	4152	4339	4901	5897	4815	4854	3654	4820	4065	*	3993	4315	2834	3022	3689	6942	*	65
+       536	5984	1765	1468	647	1807	485	10524	1111	1992	
+
+F 66   4592	*	3894	3916	4140	2822	4850	4499	3944	3590	6415	5431	5529	4700	2997	4443	4235	4050	5627	*	66
+       148	*	3355	*	*	4869	50	10001	0	5842	
+
+S 67   *	*	2117	4602	6791	5544	4637	5760	3984	3924	*	2945	4550	4485	3707	3551	3825	4687	*	5526	67
+       294	4509	2832	0	*	630	1499	9868	1287	6327	
+
+K 68   4362	*	4147	4040	5695	3510	4833	5124	3253	3429	*	3548	3231	5854	4119	3461	3878	4644	*	*	68
+       117	3858	6803	1559	598	1291	758	10196	1949	4414	
+
+S 69   3783	*	3085	4183	5365	3776	5489	*	3693	3775	*	3585	6621	4350	4666	2379	3916	4880	*	6628	69
+       138	5314	3913	611	1534	3010	191	10250	1449	3265	
+
+N 70   4248	*	5484	3473	*	2583	5560	6425	3585	4582	5866	3325	4760	3435	3891	3545	3571	5817	6796	*	70
+       243	6545	2795	1000	1000	3745	112	10208	1005	3936	
+
+S 71   5612	5811	3773	6515	*	2462	4731	6322	3804	6426	4882	3150	6562	4056	3229	3679	3433	4047	*	7012	71
+       60	4624	*	822	1203	3704	115	10189	1453	5479	
+
+S 72   4541	*	3497	4386	4526	4535	*	4372	4362	3958	*	3324	6642	4265	3947	2431	3481	4065	*	6440	72
+       90	5053	5056	1019	981	646	1471	10250	1447	5215	
+
+F 73   2836	4175	*	6612	2934	4375	5619	5570	5135	3974	6021	5578	6838	7109	5067	2748	6919	3534	5114	2972	73
+       42	5598	6904	0	*	229	2771	10677	1307	3080	
+
+H 74   4129	*	5968	4754	5711	6722	4510	3994	5100	7776	5319	3955	5786	4383	4368	2024	2423	4113	*	5230	74
+       51	5681	6037	1281	765	523	1717	10645	1149	1354	
+
+L 75   4854	6562	*	*	5014	*	*	4034	*	422	5117	*	7151	6609	6741	*	*	4242	*	6916	75
+       11	7004	*	0	*	504	1762	10713	1159	1370	
+
+R 76   5037	*	6132	3289	7486	5420	4271	4307	3616	4393	5511	5133	6350	3798	3147	3563	2432	4665	5685	5935	76
+       21	*	6103	*	*	0	*	10661	0	1000	
+
+K 77   *	*	7217	*	6284	6986	*	912	5045	2252	5148	6346	6950	*	*	*	*	2974	6017	6689	77
+       0	*	*	*	*	892	1117	10791	0	1166	
+
+A 78   4684	4875	5829	5422	6718	5844	4382	5973	3125	3795	7224	4015	3240	3305	3947	2587	3509	6162	*	*	78
+       0	*	*	*	*	*	0	10778	0	1000	
+
+S 79   2974	6716	3066	4470	*	3164	6494	*	3571	5244	7070	2445	4949	4258	4089	3204	6205	*	*	6821	79
+       0	*	*	*	*	*	0	10778	0	1000	
+
+V 80   2484	*	6823	6964	5084	5674	5850	3947	6757	2069	6235	*	5144	7201	*	4377	5730	1736	6628	*	80
+       0	*	*	*	*	*	0	10778	0	1000	
+
+H 81   4554	*	5017	2839	6114	4040	4663	6621	3789	5965	*	5886	7009	2591	2874	3686	2845	6953	6351	6750	81
+       0	*	*	*	*	*	0	10778	0	1000	
+
+W 82   3761	*	6770	3566	5952	6061	*	5199	4207	2544	5887	6970	3119	4787	3937	3777	4213	3555	3502	7182	82
+       23	6883	7037	0	*	*	0	10675	1000	1000	
+
+S 83   4101	7021	3636	2049	6563	4934	6933	6998	3878	5188	*	4460	*	4298	3924	2393	3925	4688	*	*	83
+       0	*	*	*	*	*	0	10770	0	1148	
+
+D 84   5156	*	542	4158	*	5765	4067	*	5897	6693	6609	5753	*	5557	5282	4997	*	6943	*	6694	84
+       41	6488	5897	2000	415	*	0	10770	1064	1148	
+
+S 85   2393	5508	5468	2783	*	3679	5861	6883	5048	5793	5365	4339	*	5049	4556	2292	3402	5465	*	*	85
+       29	6346	7039	0	*	2090	386	10770	1037	1508	
+
+A 86   2548	6218	5312	6963	*	806	6783	*	4693	6573	*	5794	6613	6717	6346	4062	5255	5976	*	*	86
+       8	*	7445	*	*	*	0	10754	0	1507	
+
+V 87   7244	6976	4949	4485	4902	5248	5145	4073	4879	2707	4579	4271	*	5049	5035	4595	2193	2947	6001	6143	87
+       40	5193	*	1316	741	1113	895	10753	1681	1677	
+
+Y 88   *	6395	*	*	3087	6688	5938	5732	*	5476	*	*	*	*	*	6590	*	*	6492	355	88
+       19	6975	7589	0	*	1614	571	10662	1001	1296	
+
+F 89   5890	*	5667	3675	3148	*	5794	4014	5283	3915	6648	6955	*	6347	3524	3516	2563	4947	4937	2631	89
+       0	*	*	3700	115	639	1482	10671	1000	1318	
+
+C 90   6622	198	*	*	5948	*	*	*	6713	4551	*	*	*	*	6580	6718	5582	6839	*	*	90
+       41	5428	7736	771	1272	*	0	10778	1371	1009	
+
+A 91   2734	6315	7114	3399	4808	4313	6707	4301	4211	3972	4525	4971	*	3385	4331	3819	3676	3608	*	5708	91
+       24	*	5949	*	*	*	0	10777	0	1162	
+
+V 92   2583	4883	*	6860	4034	7311	6065	3184	5394	3822	*	6357	6689	6189	5351	3733	7392	1505	*	6601	92
+       369	3042	3265	886	1124	2212	351	10776	3314	1531	
+
+S 93   5286	6433	3112	3689	5481	4281	6213	3638	3807	4743	4550	3979	*	4516	4309	2879	4326	4929	4994	4540	93
+       1018	3887	1189	1369	706	*	0	10610	2253	3155	
+
+G 94   5276	*	5016	4409	4519	3589	4108	5978	5952	3412	*	2704	4488	5870	3195	2805	3657	*	5210	6402	94
+       280	3736	3302	1198	826	1043	958	9656	1873	7480	
+
+F 95   3655	*	4787	4485	4605	1998	4966	5988	4917	5364	5359	2944	5547	4494	4051	4769	3906	4863	*	5320	95
+       220	2820	*	1543	607	1607	574	10114	2804	5727	
+
+A 96   3203	5738	5596	4470	5579	2974	5082	5326	4554	5344	*	3011	5630	5705	5266	2813	4021	3667	5877	4384	96
+       208	3203	5276	823	1202	2381	307	10395	2292	4666	
+
+S 97   5676	*	3730	4081	4728	2668	4599	4951	6704	5429	6711	4761	4045	4160	4387	3110	4118	4288	5901	3435	97
+       97	4286	6153	1357	714	828	1195	10307	2396	4599	
+
+A 98   3672	*	5325	3657	6091	4448	7520	4194	3567	4528	5203	4411	2811	3886	3760	4250	3938	3870	*	5340	98
+       99	5261	4645	804	1227	4110	86	10481	1315	2842	
+
+L 99   3483	*	3442	3542	5623	4178	4607	4471	4528	3100	4855	*	3964	4455	5602	4140	3521	4087	5830	5268	99
+       61	4962	6720	762	1285	1346	721	10415	1344	3363	
+
+T 100  5194	6163	4631	5112	4530	5711	3601	3479	4072	3481	*	4917	5936	4441	5932	3943	3591	2940	4828	3636	100
+       63	5149	6120	453	1893	1018	982	10651	1375	2574	
+
+F 101  4313	5321	6517	5382	1906	4461	4614	4443	5399	5938	5987	5955	4859	4445	4248	3394	5428	3629	4269	4844	101
+       119	4803	4530	1024	977	2146	370	10663	1412	2240	
+
+G 102  5217	6692	4990	3406	*	1556	5823	6446	4389	5819	*	4492	6808	3900	5026	2974	4117	4839	7455	5248	102
+       44	6052	6085	1975	423	1809	485	10627	1257	2607	
+
+S 103  3920	7013	5027	4575	*	3407	6682	6966	3669	4346	8635	4050	4189	3046	3988	2615	3490	4859	*	5308	103
+       11	*	7054	0	*	2002	414	10671	1000	2587	
+
+G 104  3417	*	5148	4058	5686	1604	5202	5525	5058	5744	*	4621	4087	5512	3674	3688	4407	5125	6550	6898	104
+       12	6858	*	2322	322	1333	730	10682	1040	2324	
+
+T 105  3407	*	5314	5736	4551	5625	5068	3865	5276	4390	5329	7014	5568	*	8930	3532	1739	2657	*	5231	105
+       8	7425	*	1585	585	1217	811	10724	1015	1761	
+
+K 106  5405	5844	5174	4099	5097	5110	5023	5328	2371	4388	5140	4935	6387	3261	3432	4318	3474	4568	5939	4338	106
+       0	*	*	*	*	558	1641	10761	0	1373	
+
+V 107  4364	*	6011	5687	5595	6679	6690	3957	4958	984	5903	6885	6890	*	6096	4477	6867	2620	6650	*	107
+       31	6384	6715	1000	1000	0	*	10806	1014	1009	
+
+I 108  5639	6850	4975	3614	6071	6284	4607	3293	3830	3657	5370	4461	6839	5346	4239	3790	2481	3645	6380	4712	108
+       52	6041	5641	1479	641	*	0	10779	1263	1000	
+
+V 109  4458	5150	6757	*	*	6697	*	2393	5875	4204	6727	5598	5011	5333	6676	4741	5209	1068	*	6871	109
+       18	6312	*	2585	263	2233	345	10692	1014	1567	
+
+L 110  5229	6846	5064	3303	4886	5447	5110	3538	3348	2742	*	4968	5800	4083	4039	4187	3561	3983	6342	5104	110
+       126	5827	3923	2183	359	709	1365	10729	1357	1416	
+
+P 111  3054	*	4054	3772	*	4101	*	4967	5543	5427	*	5647	3199	4144	3982	3071	3766	2815	6453	5924	111
+       178	5874	3333	1646	555	1353	717	10710	1145	2341	
+
+Y 112  3037	*	3304	3988	6877	4129	6649	4251	4106	3708	6763	5086	3920	4682	3926	3641	3788	3820	*	5768	112
+       821	4289	1386	1685	538	*	0	10487	1859	3485	
+
+I 113  4882	*	4072	3978	5961	3153	*	3528	4911	2977	*	*	2769	4787	4072	3425	4074	3780	*	*	113
+       94	4448	5855	1653	552	502	1766	9691	1304	7098	
+
+Q 114  4139	*	5226	3691	6346	4515	5489	4765	3598	5066	6259	4876	2160	3574	5052	3294	5084	3391	*	*	114
+       15	6628	*	1000	1000	844	1174	10154	1001	3469	
+
+N 115  4050	5751	4878	3753	3881	4412	6757	4784	3352	4198	6864	3915	2356	5171	5145	4212	4104	4225	*	6910	115
+       86	4276	7308	1901	450	1433	667	10570	1987	2100	
+
+P 116  3476	6700	5298	5422	4861	*	4820	5950	4852	4623	*	5662	1614	5026	3719	2852	4407	4270	*	*	116
+       240	3083	4827	429	1960	1436	666	10332	2801	2098	
+
+E 117  3410	*	3479	3843	6760	4321	5770	5772	2860	4340	*	5207	3314	4090	4164	3101	3831	4854	*	*	117
+       24	5928	*	0	*	589	1576	10728	1122	2285	
+
+P 118  4192	7056	6278	5160	6533	5999	*	4362	*	4099	6694	6979	965	6798	5628	3782	5234	3246	*	*	118
+       14	6732	*	1000	1000	*	0	10437	1000	1345	
+
+A 119  4258	*	4352	4041	6946	6672	5455	4660	3704	4900	5889	4274	4150	5450	4728	2532	2485	3411	*	5931	119
+       31	5541	*	1611	572	585	1585	10437	1239	1345	
+
+V 120  4498	6096	6544	4500	4557	6679	*	2004	*	2850	5087	*	6847	4754	6871	5010	5421	1786	*	5805	120
+       0	*	*	*	*	*	0	10464	0	1007	
+
+Y 121  4980	*	4997	4245	2720	6723	5846	4112	6942	2862	4920	5315	5935	5774	5093	3025	3251	4213	*	3348	121
+       142	3532	7149	2065	394	*	0	10347	2281	1007	
+
+A 122  4818	*	5890	3130	6644	6794	5569	3569	4780	2499	5377	4956	4077	3034	4415	4115	6516	3424	6754	4634	122
+       28	5706	*	2322	322	*	0	10342	1158	1486	
+
+L 123  4600	5963	6850	5186	4420	7477	7353	3615	4783	2096	4571	5962	3272	4603	4906	4491	3739	3682	5882	4443	123
+       235	4550	3213	1697	532	2112	380	10342	1718	1486	
+
+K 124  4359	5299	6522	5629	4972	3821	4214	*	3423	3568	6687	4259	3313	4954	4222	3047	3325	3631	6532	*	124
+       0	*	*	2807	222	2312	325	10446	1171	3085	
+
+D 125  4800	*	5051	3331	5955	5781	6544	4424	5159	3741	*	4409	2339	4445	*	2723	4032	3403	6474	5002	125
+       165	*	3207	*	*	*	0	10448	0	2676	
+
+P 126  3198	4967	5560	3996	*	5409	5709	6664	3571	3547	5430	5035	2667	4627	5383	2372	4222	5642	*	6560	126
+       276	2521	*	2087	387	196	2978	9924	3114	4004	
+
+R 127  6790	*	3540	2725	*	2122	4587	*	3866	*	6782	4576	4613	5254	5556	2658	4223	4521	*	5719	127
+       204	3001	7176	2055	397	*	0	10280	2890	1305	
+
+S 128  4361	*	3325	2976	*	2817	5719	6367	4830	6147	6673	3247	5128	4539	4725	2447	4135	4745	*	*	128
+       71	4707	6727	2265	337	2033	404	10256	1622	1452	
+
+Q 129  4930	*	4215	3339	*	3669	5307	7072	4082	4399	*	5054	3638	2701	5175	2719	3547	5207	5311	6044	129
+       285	2550	6845	1554	601	*	0	10235	3766	1465	
+
+D 130  1802	5399	4573	4423	*	3730	5834	4066	5168	5909	5119	4865	4515	7054	5770	4076	4657	2626	*	6608	130
+       292	2450	*	2240	343	779	1262	10178	3832	1619	
+
+S 131  4565	*	7009	3902	*	*	5764	4173	4456	3747	5994	3640	7096	3781	4299	3916	1742	3505	*	6752	131
+       0	*	*	*	*	*	0	10270	0	1318	
+
+T 132  4761	*	*	6437	3588	6655	*	3448	*	937	6944	5700	5434	*	7568	*	6666	3006	*	4195	132
+       16	6526	*	0	*	*	0	10270	1005	1318	
+
+L 133  4581	*	*	4175	*	4790	4604	3969	5683	3278	4154	*	7065	3463	4668	3322	2656	2421	*	*	133
+       24	6516	7564	0	*	983	1017	10253	1322	1482	
+
+C 134  5082	118	*	*	6561	*	*	7045	*	*	*	*	*	*	*	6593	6594	6626	*	*	134
+       56	5934	5506	3219	164	558	1641	10209	1327	1365	
+
+L 135  5766	*	6571	3425	5093	6503	4791	4595	5081	1773	6761	5664	6681	5015	4273	3242	3897	3062	6128	6673	135
+       16	6503	*	0	*	1463	650	10234	1005	1353	
+
+F 136  1928	*	*	6684	3984	6725	*	3344	*	4318	5444	7570	6521	6824	6359	2906	4232	2096	*	5287	136
+       11	*	7024	*	*	*	0	10262	0	1167	
+
+T 137  4055	*	5418	3501	5296	*	5259	5830	3164	5034	7520	4938	5687	5156	3379	2611	2557	4026	*	4633	137
+       35	6044	6775	2299	328	1652	552	10256	1210	1338	
+
+D 138  4414	*	2562	5845	*	1389	*	*	3934	5787	6536	3121	6848	5837	4478	4296	6981	*	4806	6688	138
+       37	5315	*	0	*	*	0	10252	1442	1356	
+
+F 139  5786	*	6981	6756	1565	2961	*	4760	5458	3915	6552	4631	5570	5785	5928	4812	5408	4031	4583	3268	139
+       37	6021	6688	1585	585	1545	605	10252	1146	1356	
+
+D 140  4722	*	4839	4906	2707	6225	5820	7508	3882	5415	*	4023	2395	7115	5759	3502	6871	6905	7531	2152	140
+       251	4119	3288	304	2397	1561	597	10256	1991	1353	
+
+S 141  5906	*	*	5308	*	6557	*	5919	5184	6676	6280	6516	522	5864	5293	4116	4507	5108	*	*	141
+       1241	1127	3070	93	3996	568	1619	10101	6420	2768	
+
+Q 142  3574	*	3272	3406	*	4996	3893	6695	4076	4291	5600	4185	3189	3518	4656	3743	3996	4324	*	*	142
+       32	6572	6472	0	*	94	3991	9889	1000	3268	
+
+I 143  3097	*	6786	7107	6664	*	5084	2515	*	3477	4982	5833	1839	6615	*	4172	5636	3040	*	5232	143
+       23	*	6004	*	*	1027	974	10235	0	1171	
+
+N 144  5099	*	4018	3316	4703	5620	4464	*	4588	5659	6700	2794	*	4229	3218	2960	2635	4671	*	*	144
+       41	6947	5645	1585	585	642	1477	10242	1015	1309	
+
+V 145  *	*	*	*	3343	*	5444	2228	5822	2317	4319	*	*	7039	*	6647	*	1487	6328	6689	145
+       29	*	5629	*	*	*	0	10219	0	1360	
+
+P 146  7148	*	*	4649	5759	*	4584	4000	3168	5149	*	4802	5938	3236	4284	2406	2318	4657	*	4250	146
+       12	*	6928	*	*	1277	768	10271	0	1683	
+
+K 147  *	7409	*	6449	6548	*	*	7353	5693	5475	*	*	*	*	6702	5368	*	6751	183	*	147
+       1404	685	*	1442	662	1013	987	10218	7838	1514	
+
+T 148  5663	*	6775	4682	5983	5070	5086	3855	2586	3085	5281	5216	6673	3642	3405	3454	4066	4172	*	4050	148
+       13	*	6769	*	*	*	0	10172	0	1183	
+
+M 149  6543	*	2564	3091	6264	4324	6929	5770	3218	3623	5787	2279	4598	*	3818	6177	5577	5879	*	4769	149
+       22	*	6025	*	*	*	0	10272	0	1379	
+
+E 150  4841	*	2522	4401	6683	1616	*	6930	3714	4877	*	3542	*	6003	6070	3337	4565	6512	5597	*	150
+       24	5895	*	2322	322	399	2049	10265	1120	1648	
+
+S 151  3910	*	5836	3303	6713	2534	6923	3316	3155	5661	6786	3771	5581	3705	4747	3356	4863	5016	*	6427	151
+       56	*	4703	1000	1000	1940	435	10312	1000	1318	
+
+G 152  4397	*	3692	2801	*	3249	6502	*	4328	3578	5630	5033	3111	3765	4138	3653	4056	4737	*	6975	152
+       30	6608	6639	0	*	*	0	10206	1001	1773	
+
+T 153  4886	5870	4955	3165	*	5380	*	2604	5612	2601	6560	6818	2986	5714	7133	4659	4649	2472	*	*	153
+       13	6830	*	1080	925	535	1690	10198	1120	1903	
+
+F 154  5093	*	4996	4445	3356	7292	5092	3932	6280	2583	*	4773	4189	3670	4947	2864	3411	4452	*	4821	154
+       44	5855	6264	498	1777	1271	772	10176	1141	1178	
+
+I 155  5570	6929	3619	3635	6800	4451	*	3975	3822	4806	5824	4465	3866	3724	4028	2772	3685	3823	6589	6567	155
+       230	3281	4490	88	4080	495	1783	10217	3037	1516	
+
+T 156  4063	*	3545	3443	7706	2425	4455	*	5042	5109	6269	3619	4277	4947	5570	2981	3275	5209	6616	*	156
+       126	3908	5866	1198	826	946	1056	10179	1958	1929	
+
+D 157  5683	*	3479	4157	3843	2782	5186	4666	5171	4953	6593	4463	3604	5374	4799	3302	3969	3634	6899	4619	157
+       91	4874	5198	2029	406	2355	314	10197	1431	1670	
+
+A 158  3486	*	3844	4008	4374	3705	*	5494	3589	6323	*	3393	3177	6755	4591	2888	3443	4536	*	6698	158
+       18	6302	*	1585	585	2817	221	10164	1006	1975	
+
+T 159  3901	*	5768	4969	5581	4327	5844	4232	4459	4418	*	4916	4476	4455	5897	2646	1892	4134	*	5473	159
+       15	6559	*	2000	415	2504	280	10112	1027	1821	
+
+V 160  5559	*	5779	3605	5761	5421	*	4217	4495	4168	5645	4400	4923	4557	3800	2676	2987	2474	*	7459	160
+       121	*	3634	*	*	*	0	10124	0	1654	
+
+L 161  5061	*	4810	5066	4473	4911	6187	3866	3959	2930	5510	3672	3939	5419	4293	3895	3227	3026	*	6418	161
+       132	3982	5389	1691	535	2858	214	10139	1904	3004	
+
+D 162  4744	*	3284	3021	5547	4543	6383	4195	5031	4020	*	3556	3241	3792	4004	3411	4200	5187	*	6310	162
+       102	*	3869	*	*	2788	226	10036	0	3152	
+
+M 163  4306	*	3864	5246	*	2971	6434	3451	4166	4064	5522	4776	5946	2964	5039	3300	3811	3560	*	5811	163
+       23	5996	*	1585	585	1153	861	10063	1207	3829	
+
+K 164  4957	*	2761	3044	5886	3772	*	6518	3506	3761	6722	4781	4426	3891	3322	3869	3940	4542	*	*	164
+       28	*	5694	*	*	3517	132	10092	0	2611	
+
+A 165  3712	6452	3713	3459	4807	3456	5070	5439	4343	4580	6360	3670	4432	4614	5472	4111	4139	5011	*	2963	165
+       140	3566	6991	1259	780	1451	657	10159	2643	2753	
+
+M 166  6469	4995	4931	3977	5087	3752	6526	6607	3765	4517	4212	3535	5003	5869	5106	2133	3053	5060	6112	6846	166
+       0	*	*	*	*	1644	556	10102	0	2210	
+
+D 167  6832	*	2372	3678	5140	2319	6630	4889	4824	4645	4867	3547	5309	6130	5579	3998	4061	5339	6664	4844	167
+       31	5559	*	0	*	*	0	10086	1158	1791	
+
+S 168  5209	*	3941	6603	4844	2247	6632	6503	4334	6573	5369	3269	*	5114	6615	1947	3997	3848	6328	*	168
+       324	2438	5930	1732	517	1616	570	10086	3792	1791	
+
+K 169  7257	6630	6357	*	4791	4826	*	6538	3459	1163	*	5270	6455	*	7437	3358	3193	3889	6532	5429	169
+       107	3811	*	2783	227	1068	935	10087	2070	1777	
+
+S 170  *	*	*	5192	3151	*	4165	5099	3925	3458	*	4670	*	6355	3665	2289	3385	5811	5185	2812	170
+       455	1886	*	2352	315	727	1337	10106	4628	1339	
+
+N 171  *	*	6643	4717	4018	*	*	1879	*	1596	6518	6527	*	7412	5552	4496	*	3249	*	3488	171
+       0	*	*	*	*	*	0	10126	0	1036	
+
+G 172  4656	*	5088	6374	7058	5508	5467	5911	4749	4490	6399	3618	2899	5961	4598	1761	2754	4628	*	*	172
+       0	*	*	*	*	*	0	10126	0	1036	
+
+A 173  2335	*	5835	4014	*	4775	5920	4683	3923	3627	*	4076	3336	5008	4280	2731	7469	3534	*	*	173
+       49	4898	*	1458	653	0	*	10126	1407	1036	
+
+I 174  3583	6789	4880	4522	6093	5991	5723	3843	4964	3114	*	5121	6250	4238	6755	2931	3356	2190	*	6441	174
+       24	*	5899	*	*	*	*	10149	0	0	
+
+A 175  3924	*	3182	2970	5631	*	5937	4531	3698	4420	7287	5765	4178	3722	4008	3404	3118	5081	6162	5527	175
+       0	*	*	*	*	*	0	10119	0	1178	
+
+W 176  6055	6304	5576	3413	3473	6722	5162	4811	5166	3042	6514	*	4446	5741	3702	4716	4358	4253	2341	4153	176
+       46	5380	7144	2063	395	*	0	10119	1291	1178	
+
+S 177  4215	*	2975	3040	*	3949	5566	5074	4979	4496	*	2881	4470	4029	4569	3020	3862	6502	*	5760	177
+       89	4267	7023	1317	740	0	*	10112	1889	1327	
+
+N 178  4431	6925	1596	3409	*	5033	4219	6593	3762	*	6301	3916	4642	4502	4288	3615	5067	5970	*	6594	178
+       18	7465	7171	2322	322	0	*	10081	1002	1000	
+
+Q 179  4472	*	3500	4808	5630	1877	5009	4985	6448	6447	4879	3372	4575	4552	5049	2755	4284	*	*	6976	179
+       18	6332	*	0	*	0	*	10064	1163	1000	
+
+T 180  3869	*	3559	4701	*	1575	6630	6527	4017	6110	7128	3655	6818	5254	3951	3696	4091	4591	*	6398	180
+       256	2901	5116	548	1662	*	*	10072	2777	0	
+
+S 181  5656	*	4015	4908	6601	*	4596	4522	5006	4195	6498	3671	4570	6095	5124	2746	2131	2719	*	*	181
+       32	5532	*	1709	527	483	1814	10039	1250	1458	
+
+F 182  *	6491	*	*	2458	*	6288	4785	*	3641	6433	*	*	*	*	*	*	2993	4815	986	182
+       0	*	*	*	*	*	0	10054	0	1015	
+
+T 183  5280	*	7481	5193	4962	6769	6302	5432	3974	5591	6634	4760	*	4241	3525	2902	1420	3956	*	5561	183
+       0	*	*	*	*	*	0	10054	0	1015	
+
+C 184  *	78	*	*	*	*	*	6635	*	6229	*	*	*	*	*	*	*	5572	*	6907	184
+       0	*	*	*	*	*	0	10054	0	1015	
+
+Q 185  4725	*	6728	3326	7464	6409	5558	3140	4388	4723	6602	4374	*	2778	3121	3584	3527	2988	*	*	185
+       0	*	*	*	*	*	0	10022	0	1015	
+
+D 186  1806	*	5660	*	4804	*	*	3164	*	5117	*	*	*	*	6008	5068	*	1123	*	6193	186
+       0	*	*	*	*	0	*	9997	0	1015	
+
+I 187  5331	*	4099	3970	6636	4630	5466	5787	3641	6046	*	5134	*	2268	3478	2859	2568	4869	*	*	187
+       0	*	*	*	*	*	*	9935	0	0	
+
+F 188  *	*	6445	5258	3792	6154	949	*	*	*	*	2394	*	4824	5498	4867	*	*	*	3710	188
+       0	*	*	*	*	*	*	9452	0	0	
+
+K 189  4280	*	3933	2246	4788	3085	5913	5923	3335	*	*	3827	3753	5130	5084	3207	5063	*	*	4468	189
+       0	*	*	*	*	*	*	9258	0	0	
+
+E 190  3681	*	5813	5465	*	2309	*	5586	3968	5737	*	3368	6049	4537	3762	2091	3146	*	*	*	190
+       69	*	4424	*	*	*	*	8851	0	0	
+
+T 191  *	*	*	3493	4765	3295	*	*	3117	4044	*	2306	5119	3320	5212	3361	2823	*	*	*	191
+       3105	1045	1325	1762	504	0	*	7631	3025	1197	
+
+N 192  *	*	3275	*	*	3251	*	*	3027	*	*	3344	1078	3367	*	*	*	*	*	*	192
+       849	1593	3142	1138	874	2791	225	4900	1726	2143	
+
+A 193  2218	*	*	1993	*	*	*	3201	2262	*	*	*	*	*	*	*	2206	*	*	*	193
+       0	*	*	*	*	0	*	4724	0	2252	
+
+T 194  *	*	*	*	2291	*	*	2870	*	2315	3914	*	3742	4419	*	*	2248	4068	*	*	194
+       0	*	*	*	*	*	*	6209	0	0	
+
+Y 195  *	*	*	*	1988	*	4180	*	*	3655	*	3632	*	3637	3375	3756	*	3443	*	2396	195
+       0	*	*	*	*	*	*	5574	0	0	
+
+P 196  3395	*	*	*	*	*	*	*	*	2385	*	*	1043	3188	*	3077	*	*	*	*	196
+       0	*	*	*	*	*	*	5069	0	0	
+
+S 197  3162	*	*	3057	*	*	*	*	*	*	*	*	3297	*	*	1216	2083	*	*	*	197
+       0	*	*	*	*	*	*	4817	0	0	
+
+S 198  *	*	3297	*	*	*	*	3144	*	3057	*	*	2184	*	*	1169	*	*	*	*	198
+       0	*	*	*	*	*	*	4817	0	0	
+
+D 199  3162	*	2158	1539	*	*	*	*	3144	*	*	*	3297	*	3248	*	*	*	*	*	199
+       0	*	*	*	*	*	*	4817	0	0	
+
+V 200  3021	*	*	3037	*	*	*	2777	3030	*	*	*	*	*	3142	*	*	1421	*	*	200
+       0	*	*	*	*	*	*	4500	0	0	
+
+P 201  *	*	*	*	*	*	*	*	*	*	*	945	2030	*	*	2085	*	*	*	*	201
+       0	*	*	*	*	*	*	2906	0	0	
+
+C 202  *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	202
+       0	*	*	0	*	*	*	2906	0	0	
+
+//
+�HHsearch 1.5
+NAME  a4ffb81039c95ec205e15ab0095774e5
+FAM   
+FILE  a4ffb81039c95ec205e15ab0095774e5
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:42:11 2013
+LENG  103 match states, 103 columns in multiple alignment
+FILT  4 out of 6 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  1.3 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCHHHHHHHHHCCEEEEHHHHHHHHHHHHCCCEEEEEEEECCCCEEEEECCCCCHHHHHHHHHHHHHHHHHHHHHHCCCHHHEEEECCCCCCCEEEEE
+ECC
+>ss_conf PSIPRED confidence values
+9844889998751433254557898888863676069999942896799966872002433507999888899999842434241353489976121555
+059
+>Consensus
+xpqnitxlcxeyxntqiyxlnxxixsyteslagkremviisfxngatfqvevpgsqhxxsqkxxxermkdtlrxayxtxxkixklcvwnnktpnsiaaix
+xxn
+>a4ffb81039c95ec205e15ab0095774e5
+TPQNITDLCAEYHNTQIHTLNDKIFSYTESLAGKREMAIITFKNGATFQVEVPGSQHIDSQKKAIERMKDTLRIAYLTEAKVEKLCVWNNKTPHAIAAIS
+MAN
+>gi|23263340|dbj|BAC16524.1| ECXB [Escherichia coli]
+TPQNITDLCNEYQNTMIYSLNKEIATYTESLAGKREMVIISFSNGATFQVEVPGSQHLESQKRPLERMKDTLRAAYFTGIKISKLCAWTNKSPNSIAAIE
+LSN
+>gi|23263337|dbj|BAC16522.1| CFXB [Citrobacter freundii]
+APQNITELCSEYHNTQIYELNKEIKTYTESLAGYREMVIISFANGATFQVEVPGSQHLESQKRPLERMKDTLRAAYFTGIKVSKLCVWNNKTPNSIAAIE
+LSN
+>gi|224796281|gb|ACN62546.1| CFaB/LTB fusion protein [synthetic construct]
+APQSITELCSEYRNTQIYTINDKILSYTESMAGKREMVIITFKSGATFQVEVPGSQHIDSQKKAIERMKDTLRIAYLTETKIDKLCVWNNKTPNSIAAIS
+MEN
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+T 1    1019	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	981	*	*	*	1
+       0	*	*	*	*	*	*	1310	0	0	
+
+P 2    *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	2
+       0	*	*	*	*	*	*	1310	0	0	
+
+Q 3    *	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	3
+       0	*	*	*	*	*	*	1310	0	0	
+
+N 4    *	*	*	*	*	*	*	*	*	*	*	421	*	*	*	1981	*	*	*	*	4
+       0	*	*	*	*	*	*	1310	0	0	
+
+I 5    *	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	5
+       0	*	*	*	*	*	*	1310	0	0	
+
+T 6    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	6
+       0	*	*	*	*	*	*	1310	0	0	
+
+D 7    *	*	981	1019	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	7
+       0	*	*	*	*	*	*	1310	0	0	
+
+L 8    *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	8
+       0	*	*	*	*	*	*	1310	0	0	
+
+C 9    *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	9
+       0	*	*	*	*	*	*	1310	0	0	
+
+A 10   1981	*	*	*	*	*	*	*	*	*	*	1981	*	*	*	1019	*	*	*	*	10
+       0	*	*	*	*	*	*	1310	0	0	
+
+E 11   *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	11
+       0	*	*	*	*	*	*	1310	0	0	
+
+Y 12   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	12
+       0	*	*	*	*	*	*	1310	0	0	
+
+H 13   *	*	*	*	*	*	1019	*	*	*	*	*	*	1981	1981	*	*	*	*	*	13
+       0	*	*	*	*	*	*	1310	0	0	
+
+N 14   *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	14
+       0	*	*	*	*	*	*	1310	0	0	
+
+T 15   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	15
+       0	*	*	*	*	*	*	1310	0	0	
+
+Q 16   *	*	*	*	*	*	*	*	*	*	1981	*	*	421	*	*	*	*	*	*	16
+       0	*	*	*	*	*	*	1310	0	0	
+
+I 17   *	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	17
+       0	*	*	*	*	*	*	1310	0	0	
+
+H 18   *	*	*	*	*	*	1981	*	*	*	*	*	*	*	*	*	*	*	*	421	18
+       0	*	*	*	*	*	*	1310	0	0	
+
+T 19   *	*	*	2057	*	*	*	*	*	*	*	*	*	*	*	1981	981	*	*	*	19
+       0	*	*	*	*	*	*	1310	0	0	
+
+L 20   *	*	*	*	*	*	*	1981	*	421	*	*	*	*	*	*	*	*	*	*	20
+       0	*	*	*	*	*	*	1310	0	0	
+
+N 21   *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	21
+       0	*	*	*	*	*	*	1310	0	0	
+
+D 22   *	*	981	*	*	*	*	*	1019	*	*	*	*	*	*	*	*	*	*	*	22
+       0	*	*	*	*	*	*	1310	0	0	
+
+K 23   *	*	*	1019	*	*	*	*	981	*	*	*	*	*	*	*	*	*	*	*	23
+       0	*	*	*	*	*	*	1310	0	0	
+
+I 24   *	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	24
+       0	*	*	*	*	*	*	1310	0	0	
+
+F 25   1981	*	*	*	1981	*	*	*	2057	1981	*	*	*	*	*	*	*	*	*	*	25
+       0	*	*	*	*	*	*	1310	0	0	
+
+S 26   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	981	1019	*	*	*	26
+       0	*	*	*	*	*	*	1310	0	0	
+
+Y 27   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	27
+       0	*	*	*	*	*	*	1310	0	0	
+
+T 28   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	28
+       0	*	*	*	*	*	*	1310	0	0	
+
+E 29   *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	29
+       0	*	*	*	*	*	*	1310	0	0	
+
+S 30   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	30
+       0	*	*	*	*	*	*	1310	0	0	
+
+L 31   *	*	*	*	*	*	*	*	*	421	1981	*	*	*	*	*	*	*	*	*	31
+       0	*	*	*	*	*	*	1310	0	0	
+
+A 32   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	32
+       0	*	*	*	*	*	*	1310	0	0	
+
+G 33   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	33
+       0	*	*	*	*	*	*	1310	0	0	
+
+K 34   *	*	*	*	*	*	*	*	396	*	*	*	*	*	*	*	*	*	*	2057	34
+       0	*	*	*	*	*	*	1310	0	0	
+
+R 35   *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	35
+       0	*	*	*	*	*	*	1310	0	0	
+
+E 36   *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	36
+       0	*	*	*	*	*	*	1310	0	0	
+
+M 37   *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	37
+       0	*	*	*	*	*	*	1310	0	0	
+
+A 38   1981	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	421	*	*	38
+       0	*	*	*	*	*	*	1310	0	0	
+
+I 39   *	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	39
+       0	*	*	*	*	*	*	1310	0	0	
+
+I 40   *	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	40
+       0	*	*	*	*	*	*	1310	0	0	
+
+T 41   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1019	981	*	*	*	41
+       0	*	*	*	*	*	*	1310	0	0	
+
+F 42   *	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	42
+       0	*	*	*	*	*	*	1310	0	0	
+
+K 43   2057	*	*	*	*	*	*	*	981	*	*	*	*	*	*	1981	*	*	*	*	43
+       0	*	*	*	*	*	*	1310	0	0	
+
+N 44   *	*	*	*	*	*	*	*	*	*	*	421	*	*	*	1981	*	*	*	*	44
+       0	*	*	*	*	*	*	1310	0	0	
+
+G 45   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	45
+       0	*	*	*	*	*	*	1310	0	0	
+
+A 46   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	46
+       0	*	*	*	*	*	*	1310	0	0	
+
+T 47   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	47
+       0	*	*	*	*	*	*	1310	0	0	
+
+F 48   *	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	48
+       0	*	*	*	*	*	*	1310	0	0	
+
+Q 49   *	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	49
+       0	*	*	*	*	*	*	1310	0	0	
+
+V 50   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	50
+       0	*	*	*	*	*	*	1310	0	0	
+
+E 51   *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	51
+       0	*	*	*	*	*	*	1310	0	0	
+
+V 52   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	52
+       0	*	*	*	*	*	*	1310	0	0	
+
+P 53   *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	53
+       0	*	*	*	*	*	*	1310	0	0	
+
+G 54   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	54
+       0	*	*	*	*	*	*	1310	0	0	
+
+S 55   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	55
+       0	*	*	*	*	*	*	1310	0	0	
+
+Q 56   *	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	56
+       0	*	*	*	*	*	*	1310	0	0	
+
+H 57   *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	57
+       0	*	*	*	*	*	*	1310	0	0	
+
+I 58   *	*	*	*	*	*	*	981	*	1019	*	*	*	*	*	*	*	*	*	*	58
+       0	*	*	*	*	*	*	1310	0	0	
+
+D 59   *	*	981	1019	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	59
+       0	*	*	*	*	*	*	1310	0	0	
+
+S 60   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	60
+       0	*	*	*	*	*	*	1310	0	0	
+
+Q 61   *	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	61
+       0	*	*	*	*	*	*	1310	0	0	
+
+K 62   *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	62
+       0	*	*	*	*	*	*	1310	0	0	
+
+K 63   *	*	*	*	*	*	*	*	981	*	*	*	*	*	1019	*	*	*	*	*	63
+       0	*	*	*	*	*	*	1310	0	0	
+
+A 64   981	*	*	*	*	*	*	*	*	*	*	*	1019	*	*	*	*	*	*	*	64
+       0	*	*	*	*	*	*	1310	0	0	
+
+I 65   *	*	*	*	*	*	*	981	*	1019	*	*	*	*	*	*	*	*	*	*	65
+       0	*	*	*	*	*	*	1310	0	0	
+
+E 66   *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	66
+       0	*	*	*	*	*	*	1310	0	0	
+
+R 67   *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	67
+       0	*	*	*	*	*	*	1310	0	0	
+
+M 68   *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	68
+       0	*	*	*	*	*	*	1310	0	0	
+
+K 69   *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	69
+       0	*	*	*	*	*	*	1310	0	0	
+
+D 70   *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	70
+       0	*	*	*	*	*	*	1310	0	0	
+
+T 71   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	71
+       0	*	*	*	*	*	*	1310	0	0	
+
+L 72   *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	72
+       0	*	*	*	*	*	*	1310	0	0	
+
+R 73   *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	73
+       0	*	*	*	*	*	*	1310	0	0	
+
+I 74   1019	*	*	*	*	*	*	981	*	*	*	*	*	*	*	*	*	*	*	*	74
+       0	*	*	*	*	*	*	1310	0	0	
+
+A 75   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	75
+       0	*	*	*	*	*	*	1310	0	0	
+
+Y 76   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	76
+       0	*	*	*	*	*	*	1310	0	0	
+
+L 77   *	*	*	*	1019	*	*	*	*	981	*	*	*	*	*	*	*	*	*	*	77
+       0	*	*	*	*	*	*	1310	0	0	
+
+T 78   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	78
+       0	*	*	*	*	*	*	1310	0	0	
+
+E 79   *	*	*	981	*	1019	*	*	*	*	*	*	*	*	*	*	*	*	*	*	79
+       0	*	*	*	*	*	*	1310	0	0	
+
+A 80   1981	*	*	*	*	*	*	1019	*	*	*	*	*	*	*	*	1981	*	*	*	80
+       0	*	*	*	*	*	*	1310	0	0	
+
+K 81   *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	81
+       0	*	*	*	*	*	*	1310	0	0	
+
+V 82   *	*	*	*	*	*	*	981	*	*	*	*	*	*	*	*	*	1019	*	*	82
+       0	*	*	*	*	*	*	1310	0	0	
+
+E 83   *	*	1981	1981	*	*	*	*	*	*	*	*	*	*	*	1019	*	*	*	*	83
+       0	*	*	*	*	*	*	1310	0	0	
+
+K 84   *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	84
+       0	*	*	*	*	*	*	1310	0	0	
+
+L 85   *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	85
+       0	*	*	*	*	*	*	1310	0	0	
+
+C 86   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	86
+       0	*	*	*	*	*	*	1310	0	0	
+
+V 87   1981	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	421	*	*	87
+       0	*	*	*	*	*	*	1310	0	0	
+
+W 88   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	88
+       0	*	*	*	*	*	*	1310	0	0	
+
+N 89   *	*	*	*	*	*	*	*	*	*	*	421	*	*	*	*	1981	*	*	*	89
+       0	*	*	*	*	*	*	1310	0	0	
+
+N 90   *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	90
+       0	*	*	*	*	*	*	1310	0	0	
+
+K 91   *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	91
+       0	*	*	*	*	*	*	1310	0	0	
+
+T 92   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1981	421	*	*	*	92
+       0	*	*	*	*	*	*	1310	0	0	
+
+P 93   *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	93
+       0	*	*	*	*	*	*	1310	0	0	
+
+H 94   *	*	*	*	*	*	1981	*	*	*	*	421	*	*	*	*	*	*	*	*	94
+       0	*	*	*	*	*	*	1310	0	0	
+
+A 95   1981	*	*	*	*	*	*	*	*	*	*	*	*	*	*	421	*	*	*	*	95
+       0	*	*	*	*	*	*	1310	0	0	
+
+I 96   *	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	96
+       0	*	*	*	*	*	*	1310	0	0	
+
+A 97   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	97
+       0	*	*	*	*	*	*	1310	0	0	
+
+A 98   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	98
+       0	*	*	*	*	*	*	1310	0	0	
+
+I 99   *	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	99
+       0	*	*	*	*	*	*	1310	0	0	
+
+S 100  *	*	*	1019	*	*	*	*	*	*	*	*	*	*	*	981	*	*	*	*	100
+       0	*	*	*	*	*	*	1310	0	0	
+
+M 101  *	*	*	*	*	*	*	*	*	1019	981	*	*	*	*	*	*	*	*	*	101
+       0	*	*	*	*	*	*	1310	0	0	
+
+A 102  1981	*	*	1981	*	*	*	*	*	*	*	*	*	*	*	1019	*	*	*	*	102
+       0	*	*	*	*	*	*	1310	0	0	
+
+N 103  *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	103
+       0	*	*	0	*	*	*	1310	0	0	
+
+//
+�HHsearch 1.5
+NAME  a58e5f77fe5c98ba022ce3bec19b5c22
+FAM   
+FILE  a58e5f77fe5c98ba022ce3bec19b5c22
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:13:32 2013
+LENG  105 match states, 105 columns in multiple alignment
+FILT  130 out of 1048 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  10.6
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEEECCHHHHHHHHHHCCCCEEEEEEECCCCHHHHHHHHHHHHHHHHCCCCEEEEEECCCCHHHHHHCCCCCCCEEEEEECCEEEEEECCCCHHHHHHH
+HHHHC
+>ss_conf PSIPRED confidence values
+9799528889999998518981999998899857999999999999987897899997787899999849985228999989979999758997999999
+99759
+>Consensus
+xxxxxxxxxxxxxxlxxxxxxxxvvxfxxxxcxxCxxxxxxxxxxxxxxxxixxxxvxxdxxxxxxxxxxvxxxPxxxxxxxgxxxxxxxgxxxxxlxxx
+lxxxl
+>a58e5f77fe5c98ba022ce3bec19b5c22
+MVKQIESKTAFQEALDAAGDKLVVVDFSATWCGPAKMIKPFFHSLSEKYSNVIFLEVDVDDAQDVASEAEVKATPTFQFFKKGQKVGEFSGANKEKLEAT
+INELV
+>gi|304384645|ref|ZP_07366991.1| thioredoxin-disulfide reductase [Pediococcus acidilactici DSM 20284]gi|304328839|gb|EFL96059.1| thioredoxin-disulfide reductase [Pediococcus acidilactici DSM 20284]
+----LTEEKQLAQILNDF-DAKVAFIFFNPYESQDIDQATKFEN---ALVEkYKVYRQDVSHQTVLFNQLKLNHTVVAALYEHGQL-------tkIINSi
+EELEK----
+>gi|118386291|ref|XP_001026265.1| hypothetical protein TTHERM_01367670 [Tetrahymena thermophila]gi|89308032|gb|EAS06020.1| hypothetical protein TTHERM_01367670 [Tetrahymena thermophila SB210]
+--VAVVSSLNFIKLVQKtKETTktVQVLHFYKMNDGHSTRIAKEVDSLANQYRGiFQFGAVNCGEEPTICEKEKITQFPTVRVYpPLPLPSIDIEVPads
+LVsNDILKLASRYI
+>gi|32491289|ref|NP_871543.1| hypothetical protein WGLp540 [Wigglesworthia glossinidia endosymbiont of Glossina brevipalpis]gi|25166496|dbj|BAC24686.1| grxC [Wigglesworthia glossinidia endosymbiont of Glossina brevipalpis]
+-----------------------VEIYIKSTCSFCVKAKNLLKQNNIKFKEIFVEN-STANLSKMIKRSKKTTVPQIFI--NKVHIG---GYEDLIIFLK
+KN---
+>gi|152967281|ref|YP_001363065.1| alkyl hydroperoxide reductase/ Thiol specific antioxidant/ Mal allergen [Kineococcus radiotolerans SRS30216]gi|151361798|gb|ABS04801.1| alkyl hydroperoxide reductase/ Thiol specific antioxidant/ Mal allergen [Kineococcus radiotolerans SRS30216]
+---PgavVPDQHGERLPLRELWAqGPALLVLVpAAFSTHCTAELGALAFEIERFDAagVQLAALSCDPvtslrawgedrvypfpllsdfwpHGAVSRALG
+AFdedlgvAQRLSLLVVDGTVRWSLRGDLGapRSLKRHLAAL-
+>gi|116694462|ref|YP_728673.1| hypothetical protein H16_B0511 [Ralstonia eutropha H16]gi|113528961|emb|CAJ95308.1| conserved hypothetical protein [Ralstonia eutropha H16]
+--------ASAAQLAASQQGKPFVLVVWSLDCVYCKRNFDTIGKLRAQHPNLRVVTLATDNpdaLPQVQQLLQRVRLT--------RNAWVFGHEPQERL
+RYAVD---
+>gi|325281368|ref|YP_004253910.1| Thioredoxin domain-containing protein [Odoribacter splanchnicus DSM 20712]gi|324313177|gb|ADY33730.1| Thioredoxin domain-containing protein [Odoribacter splanchnicus DSM 20712]
+-MKYIYSFEEALKKARE-VNKPIFVNCFADWAVPCHGMNQLVfsdQQFADWMDRhFVNLFIDIttNEGRPLATKYNTLQMAHYIVLdQDGNLIYRIVGGH
+QlPEFQELLAKSL
+>gi|195052497|ref|XP_001993310.1| GH13139 [Drosophila grimshawi]gi|193900369|gb|EDV99235.1| GH13139 [Drosophila grimshawi]
+-VKELSD-DNFEHLTQASTGattGDWFIFFYSAECVLCQRLYAVWEAVGGTLRRkINVARMNSLTAGmGTAQRLKIAEAPEFVFLRLGKLYRYPLKDyTP
+KAFIEFVED--
+>gi|269119723|ref|YP_003307900.1| NADH dehydrogenase [Sebaldella termitidis ATCC 33386]gi|268613601|gb|ACZ07969.1| NADH dehydrogenase [Sebaldella termitidis ATCC 33386]
+-----NIVKQLKGFFDKITEDIKIISF--lSESDKSKELDSFLNEVADISDSIKYESYMFGSNNKLEELYGIKReTAFTIVK-NNEkTGINFFGIPGgHE
+FNSFVLAIL
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    3634	*	*	*	*	*	*	*	3675	3596	585	3444	*	*	*	*	*	*	*	*	1
+       122	3629	*	2807	222	*	*	5913	1069	0	
+
+V 2    4434	*	*	4524	4033	*	5380	2828	*	2621	2130	*	*	5401	*	5414	*	2145	*	5629	2
+       30	5595	*	1000	1000	*	*	9128	1015	0	
+
+K 3    *	*	5732	3972	*	*	4966	1883	3477	4261	*	*	*	2987	4251	4883	3696	2582	*	5983	3
+       0	*	*	*	*	*	*	9559	0	0	
+
+Q 4    3865	*	3445	1829	6137	5225	6173	*	3610	*	6322	4015	5265	4250	4035	4690	3589	3823	*	6071	4
+       25	5873	*	3398	144	*	*	9932	1227	0	
+
+I 5    4577	*	*	4282	4034	*	*	2217	*	1687	4240	*	*	5219	*	*	5409	2206	*	*	5
+       19	6254	*	0	*	*	*	10110	1015	0	
+
+E 6    5376	*	6306	4106	6447	6106	5247	3821	3978	4022	*	3020	5266	3792	5485	3207	2241	3624	*	6338	6
+       18	*	6372	*	*	*	*	10166	0	0	
+
+S 7    4837	5602	2241	3658	*	4257	*	5536	5620	6452	*	2585	5599	5693	*	2644	2629	*	5655	*	7
+       44	*	5071	*	*	0	*	10452	0	1017	
+
+K 8    4697	*	3444	3146	4364	4052	5559	4076	3571	3255	6781	5898	3242	4962	5013	4101	4299	4587	4917	*	8
+       16	6544	*	0	*	0	*	10452	1002	1355	
+
+T 9    3156	*	2711	2567	*	4470	5706	6745	2741	3900	*	3868	4792	4746	4726	4226	4927	6608	*	*	9
+       0	*	*	*	*	*	*	10586	0	0	
+
+A 10   3891	*	2665	2608	5165	3010	5983	*	6452	5130	5774	3458	*	3378	5199	4269	3294	6860	*	6960	10
+       23	5998	*	0	*	*	*	10676	1196	0	
+
+F 11   4075	*	6732	5134	1958	*	6486	3629	4213	2511	6708	*	5791	4893	7009	6538	5296	4058	4750	3040	11
+       16	*	6528	*	*	*	*	10676	0	0	
+
+Q 12   3295	*	2915	2563	5697	6054	4380	4790	4064	4714	6552	3548	5244	3498	4040	4614	4701	5117	*	*	12
+       13	6804	*	2000	415	0	*	10624	1002	1030	
+
+E 13   3849	*	3041	2985	6563	5798	4638	4704	2582	4805	6614	4565	*	3165	4730	4080	4327	5406	*	4686	13
+       13	*	6821	*	*	*	*	10681	0	0	
+
+A 14   3130	*	5124	5284	3722	4905	4740	3549	3909	3042	5720	5823	7017	4241	4036	3806	4045	3172	*	6618	14
+       0	*	*	*	*	*	0	10705	0	1010	
+
+L 15   4477	*	6917	6969	5993	*	*	2491	5799	1356	3603	6533	*	5760	6033	5249	5219	2769	*	6630	15
+       38	5255	*	715	1356	*	0	10710	1466	1010	
+
+D 16   2387	*	3793	3748	5693	4547	6857	5825	2872	3389	5837	4268	*	3855	4208	3397	4532	*	*	6489	16
+       448	5216	2060	490	1797	*	0	10710	1399	1010	
+
+A 17   3028	*	3069	2528	*	5726	5505	6405	3453	6605	*	3385	5079	2928	4784	3398	5071	*	*	6275	17
+       214	3378	4591	592	1571	2141	371	10448	2414	5282	
+
+A 18   3482	5700	4957	6219	3718	4820	5766	3779	3674	3469	6382	4028	3940	5597	6811	2695	4416	5060	6736	3925	18
+       239	6583	2814	0	*	337	2263	10526	1000	4947	
+
+G 19   3583	*	4158	3344	6619	3899	6684	*	2435	5535	*	3282	4432	3899	3662	3261	4331	5689	*	*	19
+       13	6753	*	4248	78	0	*	10677	1000	4013	
+
+D 20   4687	*	3708	3646	*	2208	*	*	3097	5904	*	2712	3678	4210	5252	3666	4376	5887	*	*	20
+       34	5986	7105	961	1040	*	*	10761	1158	0	
+
+K 21   5347	*	3630	3263	6863	5120	*	*	1659	*	*	4282	4327	3868	3193	4073	5441	5004	*	4511	21
+       62	5981	5270	1000	1000	0	*	10751	1166	1000	
+
+L 22   4892	5869	4902	6924	5194	5745	4512	3961	3591	2888	5826	4976	2526	5185	5897	7034	3966	3023	6030	4101	22
+       0	*	*	0	*	549	1660	10739	1092	1481	
+
+V 23   3527	6690	5914	5730	6070	6003	6578	3145	3863	3398	*	4410	*	6951	*	4769	3081	1733	6070	5329	23
+       39	5211	*	0	*	0	*	10737	1415	1024	
+
+V 24   4545	5334	*	*	3335	*	6628	2427	*	1868	5057	*	*	*	*	6978	5850	1859	6878	5400	24
+       0	*	*	*	*	*	*	10797	0	0	
+
+V 25   4359	*	*	6007	5298	*	*	2216	5912	1796	5922	*	*	*	*	5981	6998	1648	*	5002	25
+       0	*	*	*	*	*	*	10788	0	0	
+
+D 26   3985	6876	4269	5002	2976	5322	4262	3934	7049	2682	4479	4084	*	4682	6080	5336	6068	4006	*	2710	26
+       0	*	*	*	*	*	*	10801	0	0	
+
+F 27   5445	4980	*	*	974	5967	*	3234	6707	3663	6816	6752	*	*	6967	*	6654	4174	5251	3213	27
+       23	*	5999	*	*	*	*	10801	0	0	
+
+S 28   4474	*	6739	*	2887	3667	4402	6028	5787	4902	*	6655	*	*	6750	3650	3205	4397	2948	2100	28
+       125	3587	*	1174	844	*	0	10774	2782	1198	
+
+A 29   2513	6874	3828	4198	5399	3733	6715	5300	4419	4625	5254	4982	*	4245	4040	2357	3945	5967	7169	5973	29
+       26	5808	*	1586	585	0	*	10774	1582	1198	
+
+T 30   3491	*	3025	3030	6596	6029	5351	7276	4866	5018	7007	4385	2529	4840	5953	3313	3535	4237	7089	5888	30
+       23	6760	7264	1000	1000	*	*	10801	1069	0	
+
+W 31   5781	7092	3356	4386	4669	3346	5415	5408	7041	*	6937	3334	6963	7052	4720	3416	3900	5916	1943	4699	31
+       24	6739	7105	0	*	0	*	10797	1069	1000	
+
+C 32   5568	653	4447	5809	6722	7261	6660	*	5395	5472	*	5411	*	6937	6694	3142	4838	6978	*	6721	32
+       0	*	*	*	*	*	0	10788	0	1000	
+
+G 33   3300	7087	4585	3758	5440	2867	4730	4939	3785	4041	*	7040	2283	5609	4947	3887	5513	4402	*	6788	33
+       0	*	*	*	*	*	0	10788	0	1000	
+
+P 34   4483	*	4107	3794	4215	4287	3847	5213	4207	4662	4911	5246	3058	4575	6722	4076	4923	4536	7077	2679	34
+       11	7064	*	4248	78	0	*	10788	1000	1000	
+
+A 35   5581	532	5807	7097	6956	5458	7264	7089	7108	*	6813	*	*	*	*	2573	6997	7077	*	5778	35
+       0	*	*	*	*	*	*	10801	0	0	
+
+K 36   3790	*	4459	3984	6752	7049	4042	4119	2770	4401	5126	5059	4737	3256	2852	4934	4646	4160	7009	6115	36
+       0	*	*	*	*	*	*	10801	0	0	
+
+M 37   3140	6791	3821	3585	7108	4374	5459	3928	3194	5010	4468	4430	5948	3559	3287	4965	4785	4349	6300	6148	37
+       0	*	*	*	*	*	*	10801	0	0	
+
+I 38   2670	6813	5938	3709	2734	*	*	3486	6816	2392	3645	4683	*	4117	5899	7001	5184	4117	*	5949	38
+       0	*	*	*	*	*	*	10801	0	0	
+
+K 39   3300	5364	4355	3930	5957	4980	4893	4941	3748	3187	3497	4962	*	4638	3474	3543	5183	4500	*	4232	39
+       24	*	5944	*	*	*	*	10801	0	0	
+
+P 40   4727	*	4270	3538	*	6958	5961	5779	2946	4671	6033	5145	1868	3613	3449	3977	4738	5566	*	*	40
+       23	6958	7053	0	*	0	*	10786	1000	1199	
+
+F 41   3165	7200	5384	3241	4450	5207	4851	4486	4165	3669	5784	5171	*	3760	5292	4611	3271	2930	*	4487	41
+       21	6105	*	966	1035	*	0	10779	1196	1015	
+
+F 42   4743	*	*	*	2504	*	*	2940	*	1540	4523	*	*	*	*	6979	5097	3113	4232	3993	42
+       107	3968	7100	1737	514	*	0	10779	2405	1015	
+
+H 43   4747	*	3512	2529	*	4676	5676	5185	3220	4934	5018	3393	4571	3534	3964	3542	5039	4878	7189	*	43
+       10	7149	*	634	1492	0	*	10775	1182	1183	
+
+S 44   3369	*	3547	2530	*	5422	6146	*	2973	4959	4969	3738	5501	3294	3988	3724	4738	4945	6960	*	44
+       37	7036	5797	1585	585	*	*	10801	1000	0	
+
+L 45   3284	*	6690	5448	3682	*	*	2902	6791	1556	4509	5471	6913	5403	6966	*	5964	2831	4918	6976	45
+       25	6736	7048	1000	1000	*	0	10759	1023	1263	
+
+S 46   1669	*	6957	4303	5537	4644	7170	3877	4791	3832	4748	7189	4184	4485	5491	3063	*	5044	*	3880	46
+       11	*	7045	*	*	*	0	10745	0	1461	
+
+E 47   3075	6938	3157	3140	*	4676	5868	5402	3089	5171	6823	3359	4914	3636	3725	3696	4870	7080	*	6912	47
+       0	*	*	0	*	409	2018	10739	1000	1618	
+
+K 48   3571	*	3203	2944	*	5453	5003	4609	2612	3583	5027	4402	5557	3773	5337	3729	4399	*	6952	7059	48
+       51	5196	7077	1727	519	*	0	10788	1431	1012	
+
+Y 49   5246	6033	*	7033	2866	6957	3797	4371	7156	2646	4984	4183	*	5790	6800	4165	4469	3489	5340	2395	49
+       53	6063	5553	1574	591	991	1009	10784	1205	1217	
+
+S 50   3835	*	3483	3351	*	4033	5326	*	3047	*	*	4665	2672	4098	3549	3571	3944	4735	*	6863	50
+       78	4240	*	1498	630	0	*	10787	2092	1496	
+
+N 51   3964	*	2703	3427	5962	3067	4611	6980	3028	7097	*	2767	4467	4615	4505	3936	6028	7000	6679	*	51
+       1448	658	*	783	1255	*	*	10801	9166	0	
+
+V 52   3694	5517	*	5422	3618	6767	*	1898	5866	2463	7072	7077	*	*	*	5933	3865	2460	6046	5412	52
+       12	*	6925	*	*	*	*	10801	0	0	
+
+I 53   4391	6288	3645	3540	5036	5361	4511	6363	2940	4257	5815	4564	6969	4737	3839	4759	3150	3050	*	4860	53
+       0	*	*	*	*	0	*	10785	0	1012	
+
+F 54   5116	5270	*	*	1656	*	5290	2855	*	3228	5495	6102	7216	*	5842	5300	*	2478	4800	4169	54
+       104	4534	5238	5765	27	*	*	10801	1854	0	
+
+L 55   3437	5323	*	4721	4745	4870	5792	2948	4660	2850	4961	5869	*	6729	5029	*	4904	2899	*	2392	55
+       23	6944	7026	2000	415	*	0	10768	1000	1500	
+
+E 56   3826	6954	6199	4097	4629	3681	6748	4594	3564	4025	4151	5018	4549	4439	3540	3718	4233	3660	5302	4689	56
+       11	*	7082	*	*	385	2095	10764	0	1676	
+
+V 57   3932	5867	*	*	6196	7091	*	2037	*	2430	4031	*	*	5695	5943	6979	5996	1697	*	4697	57
+       10	*	7192	*	*	1090	915	10791	0	1198	
+
+D 58   5964	6078	1584	3577	5852	5408	5419	7042	7377	*	6956	2328	5000	5580	6883	2974	4695	5683	*	5578	58
+       77	5068	5492	5107	42	*	0	10775	1593	1207	
+
+V 59   3164	4106	5277	6609	4493	4594	7165	2997	5184	3121	6875	6667	6764	5869	4888	3442	3980	2519	*	5291	59
+       101	4273	5997	3186	168	2319	323	10767	2191	1765	
+
+D 60   6070	*	1356	2732	6893	4202	6809	*	5320	4584	*	3499	5284	5895	6726	3094	5430	*	*	5324	60
+       116	4003	6076	3096	179	620	1518	10757	2302	1925	
+
+D 61   4792	*	2832	2985	*	5332	4462	4917	3182	4460	5998	3716	5985	3834	4263	3792	3635	4973	6779	6073	61
+       225	2794	*	4098	87	1981	421	10751	3936	1568	
+
+A 62   3735	6870	3370	3656	4730	3803	3079	5429	5026	4029	*	2753	5418	4982	5962	4178	4941	4274	7032	5014	62
+       50	5232	7083	2261	337	1683	538	10760	1610	1380	
+
+Q 63   4266	6763	3893	3860	4785	3482	5490	6802	4109	4232	5337	3783	2379	4034	3760	4285	4628	6826	*	6724	63
+       119	4015	5848	3176	169	0	*	10776	2195	1384	
+
+D 64   3482	*	3372	2277	6693	4151	5358	4917	3514	5022	6948	4826	3905	4766	4107	3742	4325	5709	*	5871	64
+       23	6004	*	3993	94	*	0	10779	1163	1387	
+
+V 65   4437	6003	5254	4401	3333	7188	*	2656	5452	2002	4699	6074	6903	*	5449	7057	3833	2908	5915	6026	65
+       12	*	6970	*	*	1444	661	10779	0	1387	
+
+A 66   2137	3629	6974	4995	3343	4464	*	3405	6669	3742	4387	5893	5539	6038	4949	4354	7060	3392	5155	5955	66
+       19	6262	*	2150	368	594	1567	10791	1148	1362	
+
+S 67   3704	*	3403	3108	*	5363	*	5444	2302	5559	5786	4164	5974	3760	3390	3623	3830	7184	6939	5967	67
+       36	6629	6094	1000	1000	*	0	10797	1049	1000	
+
+E 68   3547	*	4702	3339	5800	6910	*	4673	2752	4452	5870	4116	5725	3135	2900	4974	3237	6863	*	5075	68
+       42	5597	6930	3580	126	1594	581	10774	1324	1376	
+
+A 69   4035	*	5346	4706	2172	*	5454	5137	4972	2653	4874	7053	6879	4996	6765	*	5628	6068	6018	1884	69
+       47	4959	*	2144	370	569	1617	10773	1593	1381	
+
+E 70   4437	*	3366	4009	*	1900	6629	5781	3124	5961	6906	3127	4903	4287	4919	3977	4616	*	6103	6900	70
+       42	5603	6886	0	*	*	0	10797	1297	1000	
+
+V 71   4142	5798	7192	5498	5983	6099	*	1864	*	3354	7139	4657	4223	5915	6044	6868	4652	1751	7091	6846	71
+       51	5222	6945	2884	210	950	1052	10779	1443	1198	
+
+K 72   3977	6899	5029	3098	3762	4542	4164	*	3530	4437	4929	4523	4703	4080	4138	3706	2994	4546	*	*	72
+       123	3921	5982	3418	142	1007	993	10782	2413	1182	
+
+A 73   3198	6964	5012	4662	4909	2735	4640	4859	4460	4959	5963	5272	5897	5407	4331	2212	4000	4656	*	5211	73
+       81	4741	5848	2243	342	1540	608	10769	1741	1406	
+
+T 74   4446	6017	*	5854	3847	7042	6051	3340	5931	2372	5901	7020	5189	6563	*	6682	2919	2153	6652	3614	74
+       0	*	*	*	*	958	1043	10738	0	1609	
+
+P 75   5319	*	*	6703	*	6591	6897	*	7189	5251	*	*	228	*	5407	6791	5881	6646	*	*	75
+       52	4827	*	825	1199	932	1071	10775	1625	1203	
+
+T 76   3457	5000	5802	5404	4532	6041	4683	7039	5966	4728	4920	6852	*	4688	6190	2982	1605	3622	6922	4699	76
+       11	*	7068	*	*	0	*	10797	0	1000	
+
+F 77   4047	*	*	6732	2703	6695	*	3050	*	1856	4826	6895	6984	*	6765	5809	3553	2660	5931	4988	77
+       23	*	5989	*	*	0	*	10788	0	1012	
+
+Q 78   4267	7037	*	6056	3355	6382	5651	2747	5093	2481	4629	*	*	4802	5405	*	5655	2250	5915	3445	78
+       0	*	*	*	*	755	1295	10785	0	1286	
+
+F 79   4150	5849	*	*	2452	6967	5449	2415	7034	2407	5371	*	*	7028	6620	4722	*	2413	6101	4418	79
+       93	6954	4205	2585	263	*	0	10783	1010	1004	
+
+F 80   5587	6557	6652	5315	2544	5279	6920	2634	6776	2569	6865	5381	*	*	6835	5439	5906	3584	6600	2220	80
+       580	1720	5184	169	3178	2994	194	10753	6226	2289	
+
+K 81   3441	*	4638	2820	6903	3958	4838	5026	2485	5906	*	3884	4643	4101	3337	5075	5859	4343	*	5003	81
+       36	5902	6984	1000	1000	322	2320	10718	1192	2672	
+
+K 82   5581	*	1943	3302	7006	3739	4932	*	3139	4918	7057	2333	5463	5867	4227	4960	5943	6966	*	*	82
+       25	6799	6932	1461	651	603	1549	10786	1211	1372	
+
+G 83   4338	6523	4376	5557	6216	1005	7004	*	5007	6842	6693	3597	4805	4727	4489	4213	5016	*	*	5994	83
+       16	6523	*	3000	193	976	1024	10779	1037	1189	
+
+Q 84   6068	*	3674	3359	7000	4988	5562	7255	2862	5937	6981	2852	5878	2977	3115	3857	3661	4861	*	*	84
+       56	4705	*	789	1247	*	0	10784	1684	1000	
+
+K 85   5066	6691	*	2915	4537	5578	6931	3104	3769	3011	4521	5935	3828	*	3920	5707	5323	2535	7139	5519	85
+       50	7073	5248	2000	415	*	0	10784	1000	1000	
+
+V 86   4932	*	5054	5734	5158	4572	*	2787	5017	3112	4172	5964	4985	5281	4343	4650	3975	2093	*	4607	86
+       63	5237	5954	445	1915	2242	343	10733	1400	1678	
+
+G 87   3245	5771	3225	3523	4624	4102	4145	4019	3225	4071	6880	4919	4730	4851	6123	7070	4942	4373	5865	3939	87
+       34	5444	*	2819	221	2034	404	10742	1350	1845	
+
+E 88   3968	*	4983	3866	6950	4206	*	4028	3927	5286	5974	4185	6682	3660	2123	4144	4709	3138	*	5420	88
+       36	6961	5910	0	*	501	1770	10757	1030	1601	
+
+F 89   4748	5892	4233	4385	2824	5163	3393	3414	4402	3638	5391	7268	6128	7060	5015	4600	6968	3954	5406	2849	89
+       22	6051	*	1886	455	*	0	10736	1229	1453	
+
+S 90   4297	6874	4727	3849	3995	4633	5084	3326	4961	4453	6873	4768	5416	4842	4732	3459	3374	2707	6860	4917	90
+       54	5138	6876	1000	1000	650	1463	10736	1413	1453	
+
+G 91   3691	*	3644	4000	5337	1079	5985	*	4353	5396	*	4430	7129	5017	6086	5246	5909	5282	*	5281	91
+       23	5984	*	940	1063	*	0	10737	1191	1234	
+
+A 92   3883	6872	5911	3942	4171	5883	*	3789	5380	3336	5963	4310	3076	4923	4412	3530	4241	3536	6815	3744	92
+       195	3080	6902	595	1565	0	*	10703	3460	1234	
+
+N 93   4369	*	3356	4821	6020	4886	5268	5244	3858	3697	4709	3149	3724	6997	4097	2903	3818	4583	*	4982	93
+       50	4886	*	1233	799	0	*	10729	1623	1000	
+
+K 94   3685	6868	4362	3506	5774	4461	5855	4562	4242	7015	7131	5024	2193	5943	4418	3127	3599	4278	*	5314	94
+       1158	857	*	198	2965	*	0	10725	8419	1032	
+
+E 95   3883	*	3044	1995	7144	4889	5205	6065	3594	5924	5393	3666	4356	4600	4919	3515	4182	6682	*	*	95
+       0	*	*	*	*	*	0	10713	0	1032	
+
+K 96   3919	*	2882	2468	5206	6051	5283	6959	3558	4799	5946	3857	6682	3081	5487	3706	3763	5255	*	6825	96
+       28	5698	*	1024	976	0	*	10713	1452	1032	
+
+L 97   4559	*	*	6547	3286	6758	*	1896	*	1528	4595	*	5784	*	*	7123	5664	3462	5271	5899	97
+       12	6906	*	0	*	*	*	10711	1000	0	
+
+E 98   4861	6946	4565	2780	5507	6849	4758	4149	3071	2993	5080	5045	*	3637	4196	4078	4606	3743	7043	5399	98
+       0	*	*	*	*	*	*	10698	0	0	
+
+A 99   3229	*	3697	2660	*	5763	5957	5195	3350	4620	6598	3104	5923	3628	4392	3925	3511	6661	*	5474	99
+       0	*	*	*	*	*	*	10698	0	0	
+
+T 100  2976	6619	*	4481	2633	*	5977	4031	4056	2514	4735	6991	*	5066	5578	5860	5137	3874	3617	4241	100
+       0	*	*	*	*	*	*	10694	0	0	
+
+I 101  4038	*	*	*	5022	*	*	1888	5773	1456	6156	*	*	*	6704	6867	5871	2450	*	5431	101
+       39	5214	*	642	1478	*	*	10692	1376	0	
+
+N 102  3505	*	2611	2485	*	5869	4866	*	3499	4466	*	4082	*	4274	3420	3363	4171	5713	*	6862	102
+       0	*	*	*	*	*	*	10554	0	0	
+
+E 103  3020	*	3856	3299	4834	5624	5502	5673	2467	5024	*	4029	*	3239	3037	3963	5446	6526	*	6578	103
+       0	*	*	*	*	*	*	10508	0	0	
+
+L 104  2893	6076	*	6395	3855	*	4047	2862	5294	2139	*	4678	*	5450	4720	4787	5209	3606	*	3763	104
+       0	*	*	*	*	*	*	10312	0	0	
+
+V 105  4723	*	*	*	4610	*	*	2662	5690	925	4036	*	*	*	*	5551	*	4745	5600	3697	105
+       0	*	*	0	*	*	*	9481	0	0	
+
+//
+�HHsearch 1.5
+NAME  a7297e082b04c39b5ed5edf7a5889375
+FAM   
+FILE  a7297e082b04c39b5ed5edf7a5889375
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:31:46 2013
+LENG  228 match states, 228 columns in multiple alignment
+FILT  130 out of 1369 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.7 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEEECCCCEEEECCCCEEEEEEECCCCCCCCEEEEEEECCCCCCEEEEEEECCCCCCEECCCCCCCEEEEECCCCCEEEEEECCCCCCCCEEEEEEEEC
+CCCCCCCCCEEEEEEEECCCCCCCEEECCCCCCCCCCCEEEEEEEECCCCCCCEEEEECCCCCCCCCCCEEEEECCCCEEEEEEEEEECCCCCCCEEEEE
+EEECCCCEEEEEEEEECCCCCCCCCCCC
+>ss_conf PSIPRED confidence values
+9289586858997899899999964888888679999928999828999995368850215666873899853778713799825740026679999970
+6874412212677786112125413414874200379858999994465799769998898435763110358629978999999995145579779999
+9948898679999920679899898999
+>Consensus
+xxxxxxpxxxxvxxGxxvtLxCxxxxxxxxxxxvxWxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxrxxxxxxxxxxxxsLxIxxvxxxDxGxYxCxvxx
+xxxxxxxxxxxxlxVxxxxxxxpxvxxxxxxxxxxxgxxxxlxCxxxxxxPxxxxvxWxxxxxxxxxxxxxxxxxxgxxxxxsxlxixxxxxdxgxyxCx
+vxxxxxxxxxxxxxxxxxxxxxxxxxxx
+>a7297e082b04c39b5ed5edf7a5889375
+QVQLQQPGAELVKPGASVKLSCKASGYTFTSSWINWVKQRPGQGLEWIGNVYPGSSSTNYNEKFKNKATLTVDTSSSTAYMQLSSLTSDDSAFYYCVRKD
+YSWFPYWGQGTLVTVSAAKTTAPSVYPLAPVCGDTSGSSVTLGCLVKGYFPEPVTLTWNSGSLSSGVHTFPAVLQSDLYTLSSSVTVTSSTWPSQSITCN
+VAHPASSTKVDKKIEPRGPTIKPCPPCK
+>gi|2707433|gb|AAB92274.1| T-cell receptor gamma chain Vg2-Jg1 [Gallus gallus]
+---------ITMSRVNT-DLKCHFKdfSGNFDNTVIHWYQQKENKAPVRMIYFTSG--RTKVNESFQRhRYRIQTIPTQRLCTLTIRNVIPDDAATYYCA
+YWDprRILLQSFRLWYKAHCIRQRKFSTREL---------------------------------------------------------------------
+---------------------------------
+>gi|149632037|ref|XP_001512632.1| PREDICTED: similar to T cell receptor gamma chain [Ornithorhynchus anatinus]
+---------------------------------------------------------------------------STVSGVKYFGTGTKLVVTGFKHCaL
+QsGAYIKVFGSGTKLIVENTtpqln-----DPIQFYPTSLERKqQNTETYVCLFKDFFPDVIRMHWKEEgsdKILESQ-QSDPLPVNGKYWQMSWLTVKK
+SPP-GKIYRLIYKHEK-t-GPAGKEE--------------
+>gi|334323375|ref|XP_001366403.2| PREDICTED: butyrophilin subfamily 2 member A2-like [Monodelphis domestica]
+QFTVVAPAKPLlVMVGEDAILHCHLFPKKNAEQmEVRWFRSQFSPAIY--VYKDGKNRDEEQMEEYRSRTTFMRDNiKDGSVALKIHNVTAFENGRYHCY
+FQEG---RSYDEAFIDLKVASMGSDPLIEI-----TGYEYGWIQLECTSAGWYPQP-RVEWrnLSEETIPSLEENLVPSEDGLFIVKLSVNITDHT--VV
+SVFCSIQNSLLSQELLAMMSIPE----------
+>gi|326703679|gb|AEA06491.1| MHC class I antigen [Macaca mulatta]
+----------------------------------------------------------------------------------------------------
+--------------------------------------htiqtmygcdlgpdgrllrgyeqyaydgrdyfalne--DLRSWTAADMAAQN----------
+----tqrkweaagvaeqw----RAYlEGECLEWLRRYLEKGK-----------------et--LQ--raEPs-SQSTIP-----
+>gi|190340181|gb|AAI62589.1| Mcam protein [Danio rerio]
+--------------KGQAKISCTYT-LTEEAKMIIWFtkLPGKDQNRKRFYYSENQT--eiIDQNHEYAERIKVSHS-----YDteeergsvvLILDDVQ
+LTDEREFICMVHSvLN--DVGEGRTHLKIY--NSPSLPVIERE-----htgisvsETEPSKVAQCKVDDGYPRP-NITWyKGSfpldPSDGEVKILESVT
+VkpSGLFRVESELHIKVKKEDeGAHFYCEVKYLMLGKARMTESSR------------
+>gi|189235128|ref|XP_972469.2| PREDICTED: similar to sticks and stones CG33141-PA [Tribolium castaneum]
+---VATSENVVVNPNEDATLSCTADGNPLSDDTITWKR---DDFPDFD-----------------ARtSVMYDK--NGTSYLRITDVTRDDLGNFQCIVN
+NG-----VGNVTTKEVMLIVKHKPEIDQHPalLKFASDAGDTGRVVCRSQAS--PLAKYKWarSGAPITANTTGkyYTTYRQiDALTSESVLFITHVTSS
+DYGNYECVARNELGFATASPRLEVTSAPDTP-----
+>gi|317419334|emb|CBN81371.1| MAM domain-containing glycosylphosphatidylinositol anchor protein 1 [Dicentrarchus labrax]
+------PSEIVASPNTNATLPCNVT------FPLSVTGDKIDKSLIKVSWISNGSDIASFSEaatQIKEGFSWDTSDFvNGDFSLTVLRAGLDLQGLYKC
+TVGYNFTMLQYRNVTLSILASPTLSIPQLWVVLETESHLK-------CHADGFYPPPVYFSWtRDGQVIQPPYDVEGEQSpDGYYMAVGNLTFYPSREDq
+NVTFGCKVSHNGSYQELDFQLN-------------
+>gi|301618640|ref|XP_002938728.1| PREDICTED: tapasin-like [Xenopus (Silurana) tropicalis]
+------SATLYARLGHPLAVPCGFWRGQQSRFAVEWRHRALGDGSVLYAYDGRLDRIEEIFQGCEMNFSTL--HSHGNASLLVDKVAVSDHGTFLCTIYL
+P--YIRAQRDMQLEVT----ALPVVTFLPDPLFARPGEEITLSCEVSRFHPLEISVDLlvrfpgDSQfSVLPGVSLSTHTLNkDGTFSLTASLSITASPE
+RhGARYFCKVRHVSAPEGITRS---------------
+>gi|297303273|ref|XP_001086428.2| PREDICTED: matrix-remodeling-associated protein 5 [Macaca mulatta]
+---------ITAMAGHTISLNCSAA----------------GSPTPSLVWVLPNG------TDLQSGQQLQRFYHKADGMLHISGLSSVDAGAYRCVARN
+A-----AGHTERLVSLKVGLKPEANKQYHNLVSIINGETLKLPCTPPGA-GQG-RFSW---TLPNSMRLEGPQA-LGRISLLdnGTLEVREASVfDRGTY
+VCRm-ET-------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+Q 1    4197	*	2731	2488	*	3196	*	*	*	*	*	*	4116	1563	*	4138	4197	*	*	*	1
+       0	*	*	*	*	*	*	6919	0	0	
+
+V 2    *	*	*	5263	3572	5117	*	4282	5376	1908	5169	4976	*	5023	*	3730	*	1619	*	5177	2
+       0	*	*	*	*	*	*	8451	0	0	
+
+Q 3    5203	*	5408	5648	5386	4623	5329	5529	2736	3670	*	*	*	3198	4664	3604	3828	2062	*	4347	3
+       0	*	*	*	*	*	*	8853	0	0	
+
+L 4    4892	*	*	*	4681	*	*	3205	5839	1588	4962	*	5972	5907	5887	4335	3421	2034	*	*	4
+       50	4864	*	2613	258	*	*	9200	1172	0	
+
+Q 5    4970	*	5181	3557	*	6840	5922	5181	5286	3872	*	4268	*	2876	4878	3023	2215	2754	*	*	5
+       0	*	*	*	*	*	*	9398	0	0	
+
+Q 6    3180	*	5806	4636	*	4926	6292	5065	3213	4171	*	5144	4453	2347	4366	3592	3535	3259	*	*	6
+       93	3999	*	0	*	*	*	9486	1497	0	
+
+P 7    5034	*	6103	4522	6383	6089	5141	*	5848	5367	*	4403	828	5902	5939	3438	3666	*	*	*	7
+       82	4176	*	0	*	*	*	9782	1481	0	
+
+G 8    2981	*	4280	3313	*	3455	*	6347	3730	4668	*	5258	2836	4832	5366	2820	3373	5294	*	6167	8
+       51	4842	*	425	1969	*	*	9816	1245	0	
+
+A 9    3699	*	3606	3656	5236	6324	6393	6220	4330	3932	*	3657	5377	3367	5493	2255	3517	3996	*	*	9
+       33	6646	6321	0	*	*	*	9797	1000	0	
+
+E 10   5437	*	*	3671	*	6326	6742	2791	4953	2164	4897	*	5371	4374	6308	4688	4198	1969	*	6763	10
+       0	*	*	*	*	*	0	9968	0	1001	
+
+L 11   5031	6140	3991	3413	5439	*	*	4242	4415	4840	5557	6148	5631	6762	3794	2576	2727	2741	*	4810	11
+       47	4951	*	0	*	0	*	10029	1306	1001	
+
+V 12   2443	*	*	*	6622	3455	*	3833	5011	3709	4484	*	6472	5567	5335	4493	5731	1514	*	5508	12
+       0	*	*	*	*	*	*	10124	0	0	
+
+K 13   4346	*	6913	4184	5114	6194	6523	6658	3088	3746	4112	5829	5715	2887	3376	3184	3854	3492	5042	7025	13
+       0	*	*	*	*	*	*	10111	0	0	
+
+P 14   3923	*	5489	1932	*	6743	*	5145	4201	3134	6810	*	3092	5341	3790	4488	4085	3531	*	5022	14
+       0	*	*	*	*	*	*	10227	0	0	
+
+G 15   *	*	5915	5536	6859	365	*	*	4381	*	*	4422	*	4655	*	4895	*	6820	*	*	15
+       0	*	*	*	*	*	*	10144	0	0	
+
+A 16   4610	6743	3057	2421	*	3030	5806	*	3352	5694	*	4549	*	2916	5281	3127	4042	6779	*	*	16
+       0	*	*	*	*	*	*	10119	0	0	
+
+S 17   4818	5709	3361	4542	*	*	5671	*	4799	5707	*	3777	3036	4059	5158	2323	2245	4765	*	*	17
+       13	*	6848	*	*	*	*	10145	0	0	
+
+V 18   2039	*	*	*	4518	6031	*	4353	*	3189	4216	*	*	*	*	6148	5260	1200	*	6682	18
+       0	*	*	*	*	0	*	10144	0	1000	
+
+K 19   5244	*	6873	4859	5877	6705	*	3439	4386	4523	*	5028	5524	4553	4255	3267	1478	3571	*	5260	19
+       0	*	*	*	*	*	*	10159	0	0	
+
+L 20   6820	*	*	*	3509	*	*	2950	6753	617	4161	*	*	*	*	*	*	4138	*	*	20
+       0	*	*	*	*	*	*	10159	0	0	
+
+S 21   7139	*	3689	5402	5777	5464	5158	5890	5204	4009	5274	3576	2373	4935	3485	3020	2955	4656	*	*	21
+       0	*	*	*	*	*	*	10159	0	0	
+
+C 22   5935	85	*	*	6926	6416	*	*	6753	*	*	*	*	*	*	6415	*	*	*	*	22
+       12	6924	*	0	*	*	*	10159	1000	0	
+
+K 23   4723	*	4432	4524	5383	4090	3972	5993	3147	4724	*	3966	4215	4849	3279	2754	3399	4761	*	5386	23
+       21	6933	7248	1000	1000	*	*	10159	1000	0	
+
+A 24   3140	*	*	*	2985	6661	6546	3269	6687	2657	*	6911	4602	5811	*	4829	4985	2375	*	2827	24
+       91	4881	5208	1350	719	*	0	10160	1435	1000	
+
+S 25   6841	*	3225	3270	5709	4373	6694	6776	4166	5045	*	3549	3647	4135	5735	2910	2386	6283	6637	5627	25
+       181	3890	4303	1356	714	572	1610	10126	2085	1456	
+
+G 26   3870	6689	4378	4110	*	1635	5489	6562	5856	5214	5756	3513	3695	5710	3767	4030	4653	5738	*	5550	26
+       159	6664	3405	0	*	814	1213	10206	1000	1899	
+
+Y 27   5139	*	5564	4117	3246	3615	3734	6451	4358	3964	5697	5225	3405	4270	6420	3291	3610	4288	*	3896	27
+       87	*	4089	*	*	122	3623	9982	0	2721	
+
+T 28   4530	6496	3626	3928	5956	4788	*	*	3329	4073	*	5142	2424	5016	3717	2927	3548	5096	*	5652	28
+       195	6581	3107	1000	1000	1869	462	10207	1001	1865	
+
+F 29   4050	5566	4181	3277	5079	4252	4864	5661	6363	3527	*	4776	2840	5637	4756	3704	4606	3966	*	3182	29
+       389	5157	2262	1424	673	2568	266	10010	1233	3522	
+
+T 30   4504	*	2913	4603	6456	3163	6463	6353	4627	4520	*	4380	3477	4454	3589	3299	2918	5257	*	5341	30
+       114	4323	5263	850	1168	3140	174	9854	1489	5661	
+
+S 31   *	*	2230	3904	*	3971	3848	4758	4690	3553	*	4094	3947	4024	4007	3688	5082	3803	*	*	31
+       234	2983	5444	616	1524	277	2517	9713	2352	5456	
+
+S 32   4935	*	4586	5120	3834	4313	5793	4202	5858	3005	5295	4979	2961	4389	*	3777	3666	3381	*	3621	32
+       85	4671	5814	715	1356	2181	359	10105	1502	2150	
+
+W 33   4280	*	6742	4242	5225	5192	6853	3636	5651	5164	4333	5767	5249	3614	4287	2551	3428	3514	5663	3361	33
+       37	5305	*	716	1354	3143	173	10094	1277	2179	
+
+I 34   *	*	*	6675	4384	5912	*	1905	5102	2255	5541	*	*	*	*	5915	6442	1569	6835	5333	34
+       0	*	*	*	*	2822	220	10100	0	2036	
+
+N 35   6705	*	*	3113	3254	5852	4458	4588	4736	4061	5531	4471	*	3827	3964	2861	3560	4712	6362	3410	35
+       14	6712	*	0	*	*	0	10245	1000	1875	
+
+W 36   *	*	*	*	4436	*	*	5766	*	6565	*	*	*	*	*	*	6615	5081	176	*	36
+       92	*	4009	*	*	*	0	10245	0	1875	
+
+V 37   6733	5080	6263	7139	2600	*	6590	4181	3463	3567	*	*	*	5636	3884	4885	4003	4671	4582	1887	37
+       38	*	5276	*	*	3681	117	10180	0	2859	
+
+K 38   *	*	*	6545	3648	6468	4166	4935	1742	3781	5616	5327	*	3553	2360	6552	*	4044	5400	5808	38
+       89	*	4062	*	*	1836	474	10127	0	3082	
+
+Q 39   6011	*	3194	3556	6714	4303	4991	*	4742	4577	6568	3828	5733	1921	4173	4047	3981	3941	*	6486	39
+       112	6695	3941	0	*	4114	86	10126	1000	3278	
+
+R 40   4082	*	3183	4383	6393	4125	5009	5325	2756	4822	5566	3445	3477	4842	3503	4519	4183	5356	*	5301	40
+       302	6736	2480	0	*	1944	434	10008	1000	4017	
+
+P 41   4032	*	5153	3438	4116	4916	6289	5137	3640	3293	6271	4645	2388	5039	4268	3362	4150	5359	*	*	41
+       141	3638	6271	1631	562	885	1125	9604	1802	5296	
+
+G 42   5142	*	2621	5526	*	1746	6554	6585	4313	*	*	3508	5751	4499	3980	2872	4221	6187	*	*	42
+       30	5620	*	1318	740	2685	244	9956	1163	3442	
+
+Q 43   3223	6888	3821	4200	6723	3307	5717	6430	2547	3915	6659	3675	4489	3136	4387	4739	4676	6664	*	*	43
+       109	6745	3981	1585	585	*	0	9987	1000	3086	
+
+G 44   2750	*	3911	3289	6500	3759	6550	6653	4729	6576	5294	3994	3167	4087	4968	3062	3198	6679	*	*	44
+       45	5036	*	0	*	2000	415	9924	1274	4014	
+
+L 45   5658	6866	5485	4244	5126	6864	5699	3122	5027	2915	5646	5673	2150	4425	3962	4343	5097	3536	6522	6517	45
+       0	*	*	*	*	2686	244	10007	0	3330	
+
+E 46   4805	*	3788	2441	6896	5030	5850	5094	4385	4741	*	4002	4313	3086	4079	3335	4191	3842	*	5413	46
+       100	7873	3989	2585	263	1740	513	10023	1000	2988	
+
+W 47   5171	*	5630	5506	2889	4179	5557	3773	4225	2531	*	5608	4838	5088	3748	5409	3653	4351	4012	4454	47
+       15	*	6629	*	*	*	0	10091	0	3261	
+
+I 48   6630	5011	5647	4569	4575	*	6790	2166	6537	1923	4617	6607	6557	6416	5963	3845	6643	2673	*	5464	48
+       726	5515	1421	981	1019	1597	579	9943	1179	3390	
+
+G 49   2357	5317	5890	5817	3558	3738	6000	2834	*	2990	*	6400	*	4618	6080	3997	4079	3490	*	5301	49
+       63	6407	5007	0	*	*	0	9586	1000	6419	
+
+N 50   4813	*	5214	4228	4129	6023	5726	4103	4027	4603	4944	6011	5982	4024	4116	3388	3355	5017	5747	2278	50
+       18	*	6317	*	*	862	1153	9543	0	6560	
+
+V 51   5385	*	5381	6158	4294	*	6610	2348	4586	3023	4802	6496	*	4179	4701	4541	4254	2704	5468	3270	51
+       25	6637	7074	1000	1000	4857	51	9798	1000	4116	
+
+Y 52   3694	*	3363	4834	4030	4941	5433	5263	4283	3610	*	4498	6821	4144	5271	2658	4142	4543	*	3050	52
+       382	5551	2244	557	1642	*	0	10040	1168	4136	
+
+P 53   3512	*	6546	4781	4666	3515	5033	*	3180	*	4591	4193	3672	4114	4064	2831	3815	4153	*	4736	53
+       187	*	3040	*	*	2268	336	9669	0	5978	
+
+G 54   4641	5209	3217	6002	*	2178	6138	*	4011	4511	*	4209	4444	6096	4121	2957	3636	5801	6244	4153	54
+       77	6084	4752	1585	585	4014	92	9523	1000	5940	
+
+S 55   5979	*	2640	4976	4589	3533	6409	5190	3214	4471	7563	3134	5988	5286	4575	2950	3179	5076	*	*	55
+       190	4652	3584	1654	552	1491	635	9791	1449	6039	
+
+S 56   *	*	2935	6327	5280	2481	6237	*	4042	5246	6549	3218	4259	4054	3166	3090	4771	5577	*	4850	56
+       90	4717	5468	2925	204	4228	79	9733	1346	5300	
+
+S 57   4147	*	3466	3511	*	3847	4557	4270	5204	4284	*	3454	5403	4817	5009	3152	3744	3215	*	4418	57
+       0	*	*	*	*	4120	85	9749	0	5316	
+
+T 58   4321	*	*	3747	4942	4511	4399	3945	3979	6148	6122	4473	2997	5033	5234	2694	3265	3397	6168	*	58
+       30	5590	*	1000	1000	3555	128	9769	1110	5125	
+
+N 59   *	6350	4528	2701	4768	5411	6315	4127	6067	3282	*	3589	5573	3410	3579	2948	4244	4443	*	4936	59
+       30	6171	7266	1000	1000	3853	103	9785	1100	4847	
+
+Y 60   5463	6197	4134	4953	3706	3794	4709	4187	4609	3752	6265	4671	5366	4478	3511	4369	6449	3215	6218	2974	60
+       0	*	*	*	*	1699	531	9813	0	4716	
+
+N 61   4001	6495	3562	3783	4150	3551	5620	5656	4910	5707	6263	3535	3444	4921	5090	3532	3727	3735	6383	4949	61
+       7	*	7751	*	*	2854	215	9951	0	3719	
+
+E 62   3574	6404	3207	2796	*	2993	5612	5451	3672	6522	7103	4079	3105	4827	5748	3984	4276	5497	*	5626	62
+       43	5572	6948	1951	432	3823	106	9960	1126	3491	
+
+K 63   4659	*	3084	2890	5450	3304	6523	*	4350	4737	*	4493	3501	4894	5760	2721	3705	4544	*	5054	63
+       67	5205	5779	1359	713	3182	168	9981	1579	3530	
+
+F 64   4584	5516	6573	4836	2904	5076	4966	3824	6495	3469	5496	5644	5147	4693	4670	4636	4039	3217	*	2585	64
+       72	4367	*	409	2018	*	0	10224	1687	3507	
+
+K 65   6202	6937	3410	3556	5522	4487	4519	5049	2598	5467	6773	3512	3979	3747	3985	3900	3896	5137	*	6538	65
+       117	3816	7209	395	2061	769	1275	10224	1848	3507	
+
+N 66   4802	*	3042	3947	*	2008	5716	6265	3673	4901	6632	3485	4093	4753	5717	3273	4356	6480	*	6994	66
+       13	6829	*	0	*	3121	176	10082	1000	2185	
+
+K 67   *	*	5665	5485	*	5059	5492	*	3734	*	4513	4528	5761	5041	789	4423	4814	4895	*	*	67
+       0	*	*	*	*	*	0	10088	0	2039	
+
+A 68   2894	*	5096	*	2077	4901	6668	3858	*	3252	6840	*	6619	*	5280	5826	4605	2760	*	2933	68
+       13	*	6840	*	*	*	0	10088	0	2039	
+
+T 69   5441	*	5076	3943	5127	5201	5123	4652	4276	5463	*	4366	6607	3588	3129	2036	2841	5330	5695	*	69
+       26	6878	6780	0	*	*	0	10082	1000	2182	
+
+L 70   4082	*	6377	*	3202	4141	5700	3261	6322	2464	4121	5781	5679	6521	*	4530	5040	2264	5148	5052	70
+       27	*	5742	*	*	2289	330	10116	0	2319	
+
+T 71   4869	6591	4715	3777	4879	5081	5620	3976	4440	3876	6386	4243	4427	3681	4223	2742	3101	3924	*	6933	71
+       335	5671	2414	624	1510	*	0	10265	1145	2332	
+
+V 72   4022	*	4588	3919	4148	2764	4853	6284	3600	4338	*	4103	3390	4430	3415	5354	4805	4121	6477	5313	72
+       64	6419	4991	0	*	4953	47	10021	1010	4726	
+
+D 73   6291	6378	2212	3678	5061	3576	5468	5242	4145	5350	4946	3591	4736	4067	4144	4778	3587	5430	*	5300	73
+       396	5326	2218	1360	712	1180	840	10009	1138	4904	
+
+T 74   3501	*	3684	4169	5979	3680	5261	6489	3551	5883	6273	4634	2750	3563	4292	4484	3430	4347	*	5582	74
+       175	3919	4373	592	1570	5277	38	9885	1629	5552	
+
+S 75   3290	*	4173	3959	3842	3800	4699	6246	4562	3732	*	3449	4451	6169	4595	2961	4693	6141	3422	*	75
+       158	5996	3508	0	*	1325	735	9830	1000	5875	
+
+S 76   4040	*	3768	3576	*	3183	3986	6676	4213	3407	*	3158	4909	3621	5047	2667	4781	*	*	*	76
+       53	*	4799	0	*	1496	632	9792	1020	4967	
+
+S 77   3722	5458	5071	4845	6127	2533	5492	6842	4180	4409	*	2748	*	4556	4207	2609	3772	6559	6428	6404	77
+       107	6535	4045	0	*	4656	58	10042	1000	4085	
+
+T 78   3817	*	2761	4207	6506	3908	6656	6470	4192	4348	6104	2984	5501	4059	4710	3478	3274	4431	*	5380	78
+       52	6722	5270	0	*	1155	860	9957	1000	4723	
+
+A 79   2892	4212	*	*	2502	3145	*	3751	*	3614	*	5651	4479	*	*	3371	*	4294	5160	2995	79
+       43	5080	*	305	2392	801	1231	10070	1468	3489	
+
+Y 80   4754	*	5161	4595	5568	5772	5823	5397	5209	5231	*	4281	*	3936	3755	1714	2310	4509	*	5799	80
+       27	5741	*	1410	681	2020	409	10034	1133	2065	
+
+M 81   *	5618	*	*	4383	*	*	2426	*	537	5851	*	*	*	*	*	*	5077	*	6726	81
+       0	*	*	*	*	*	0	10123	0	1776	
+
+Q 82   4357	*	5666	4441	5603	5227	3915	4136	3546	4143	5495	6047	6716	3529	3975	3455	2446	4147	6897	4786	82
+       0	*	*	*	*	*	0	10123	0	1776	
+
+L 83   *	*	*	*	4882	*	*	868	6716	2026	5066	*	*	*	*	*	*	3029	*	6514	83
+       11	*	7077	*	*	2341	317	10123	0	1776	
+
+S 84   3674	6311	3640	4272	6861	6760	4806	*	3229	4684	*	4178	3842	4165	3280	2937	2914	6984	5964	7129	84
+       18	*	6311	*	*	*	0	10150	0	1741	
+
+S 85   5131	6483	3113	4095	6629	4870	4088	*	4462	6617	*	1715	4416	4890	3599	3382	5457	7290	*	4845	85
+       0	*	*	*	*	*	0	10112	0	1931	
+
+L 86   2591	7077	*	*	5642	*	*	3864	6235	2358	6656	6618	5629	*	*	7006	3485	1350	*	*	86
+       0	*	*	*	*	*	0	10112	0	1931	
+
+T 87   4494	*	*	2959	6749	5059	5713	5365	3185	6235	*	5278	6727	2457	3032	3571	2559	5592	7151	*	87
+       0	*	*	*	*	2461	289	10112	0	1931	
+
+S 88   4046	*	6157	3763	5000	*	6388	3925	3561	2595	5802	6311	3107	4472	4809	3622	4386	3301	5821	5877	88
+       0	*	*	3700	115	2601	260	10150	1037	1741	
+
+D 89   3678	*	3274	2045	6460	4134	*	7509	4369	5665	*	5258	5615	3852	4580	2398	3864	5782	*	*	89
+       12	6886	*	0	*	*	0	10159	1000	1596	
+
+D 90   *	6266	362	5023	*	5658	4148	*	*	6642	*	*	*	5110	6316	5309	*	6765	*	5970	90
+       28	*	5714	*	*	*	0	10159	0	1596	
+
+S 91   2777	*	4444	2012	6612	4160	4696	5978	6672	*	*	4210	*	4308	6067	2375	3976	4471	*	6786	91
+       0	*	*	*	*	1612	572	10127	0	1898	
+
+A 92   2805	*	4629	*	*	656	7128	*	5299	6533	*	*	*	6119	4351	4240	*	5478	*	*	92
+       44	5048	*	1029	972	*	0	10159	1436	1562	
+
+F 93   6664	5412	4068	3581	6929	6091	5267	4141	3738	3887	4206	4935	*	5855	3610	3991	2713	2851	5757	5896	93
+       30	5589	*	1436	666	1357	714	10161	1183	1694	
+
+Y 94   *	7608	*	*	3436	*	6352	7587	*	6585	*	*	*	*	*	6540	*	6661	*	228	94
+       0	*	*	*	*	1735	516	10180	0	1366	
+
+Y 95   5176	5615	*	3840	4209	*	5155	4279	3835	4647	6590	6093	*	3744	3418	4327	3058	3548	4395	2813	95
+       8	7496	*	0	*	*	0	10485	1000	1208	
+
+C 96   *	116	*	*	5726	*	*	6490	*	5598	*	*	*	*	5750	*	*	*	*	6928	96
+       0	*	*	*	*	*	0	10485	0	1208	
+
+V 97   3387	6087	5397	2955	7163	4593	7074	4488	5412	3763	4271	6163	*	3833	2879	3884	4001	2980	*	6555	97
+       53	*	4802	*	*	*	0	10485	0	1208	
+
+R 98   2192	6655	*	5936	6431	5375	5909	3503	5235	3551	5282	*	*	6006	6906	4251	4766	1493	*	6927	98
+       141	4035	4966	2330	320	*	0	10257	1935	1832	
+
+K 99   4184	5505	4569	3586	4523	3876	7099	5050	3769	5300	5050	4488	6685	4239	3434	3178	3655	4758	4153	4764	99
+       103	5834	4292	0	*	3456	138	10250	1120	2460	
+
+D 100  4010	*	4777	3470	5489	4769	3302	4230	4639	4961	6446	2427	7278	4551	4987	4069	3256	5561	*	4017	100
+       234	4346	3310	1502	628	*	0	10163	1660	2993	
+
+Y 101  4079	6446	3091	4098	*	2536	5039	*	3568	4474	6559	4087	3077	6656	4282	3726	4457	6995	5521	5546	101
+       485	3377	2401	555	1646	2435	295	10049	2404	4248	
+
+S 102  2834	6205	4411	4174	4756	2899	6147	5463	4366	4025	*	3610	6392	*	3739	2958	4386	4653	5457	5766	102
+       552	*	1652	*	*	5196	40	9705	0	5674	
+
+W 103  3576	*	3855	5834	5532	3857	*	5070	*	3668	5919	4439	4280	5503	3441	2763	3478	4163	4227	4159	103
+       104	3844	*	1434	667	880	1131	9201	1447	7528	
+
+F 104  4762	*	4815	3708	3595	3188	4159	5253	3577	4340	4891	4264	4037	4093	3837	4984	4611	4440	*	4342	104
+       29	5672	*	0	*	678	1415	10085	1144	4825	
+
+P 105  3135	*	3964	3547	4686	3885	6915	4209	4575	3414	6865	3717	3880	4591	4099	4763	3768	4979	6576	5207	105
+       0	*	*	*	*	3461	137	10216	0	2575	
+
+Y 106  4713	5350	5766	4426	4824	*	5810	4164	4558	3873	5696	6365	4367	4432	5661	3469	2778	2466	4737	4261	106
+       23	6718	7339	1000	1000	193	2994	10238	1001	2430	
+
+W 107  4955	*	6631	5128	2313	4429	4839	3643	4716	3255	7358	6677	6685	7142	4258	3431	4797	3353	4275	4044	107
+       28	*	5690	*	*	1740	513	10479	0	1373	
+
+G 108  4769	5834	4494	3623	5618	1939	5347	7675	5913	4512	*	4897	4340	4468	4204	2654	3752	6908	7332	5697	108
+       11	7024	*	2807	222	2280	333	10554	1000	1634	
+
+Q 109  3733	6790	4905	4101	*	5272	5182	4716	2960	4627	*	3430	3768	3639	3680	2966	3542	5305	*	*	109
+       82	*	4177	*	*	*	0	10290	0	1474	
+
+G 110  3916	6831	3666	4287	4996	1810	6713	5162	3134	*	7041	4125	4276	5244	4921	4502	4632	4314	7092	6770	110
+       53	5257	6706	3166	170	822	1203	10511	1273	2286	
+
+T 111  2629	7072	6590	5197	3912	5993	4860	3220	5175	4121	5225	6744	5051	6166	6720	5370	1895	3725	*	5269	111
+       22	6039	*	1585	585	1522	618	10273	1117	1652	
+
+L 112  4529	*	5741	3107	4556	6528	*	4068	2679	4311	5932	4425	5851	3101	4104	3777	3386	5786	5203	4898	112
+       12	*	6929	*	*	1748	510	10291	0	1373	
+
+V 113  4434	6375	5628	6834	6892	6735	5976	3453	4504	1214	*	7121	6805	5746	5538	4609	6954	2321	*	7176	113
+       0	*	*	*	*	*	0	10299	0	1364	
+
+T 114  5827	*	6695	3650	4260	5891	4553	4243	3975	4438	6884	3231	5183	5974	3996	2948	2377	3919	*	6712	114
+       13	*	6836	*	*	*	0	10299	0	1364	
+
+V 115  5784	5455	6352	7195	5162	5750	7059	2742	6522	3997	6735	5758	*	6817	*	5872	6532	807	*	5227	115
+       70	5653	5187	2062	395	878	1134	10555	1169	1526	
+
+S 116  5317	6545	5946	5243	4550	4926	5874	3701	3481	2290	6372	4682	4754	4192	4460	3537	3084	4148	*	6742	116
+       677	*	1417	*	*	2238	344	10576	0	1612	
+
+A 117  3101	*	3500	4772	6239	3358	*	4442	3354	3426	4996	6119	4290	5114	4247	3158	4302	4636	6146	6024	117
+       464	2025	5094	1352	717	1798	489	9753	3833	6182	
+
+A 118  2675	*	3466	5024	6465	4091	*	3966	3299	4159	*	3971	5630	4880	3854	4097	4501	2828	*	*	118
+       129	3693	6911	368	2150	1293	756	10022	1930	5218	
+
+K 119  3663	*	3619	5194	*	3436	5306	4935	3229	4598	5408	5300	3768	4569	4570	4073	3261	3046	*	5464	119
+       13	6818	*	1000	1000	2168	363	10082	1000	3842	
+
+T 120  4598	*	3842	3629	6350	5066	5264	4665	4133	3526	6997	4133	2914	3774	5440	4132	3599	3247	*	5772	120
+       13	*	6854	*	*	656	1453	10133	0	3263	
+
+T 121  2906	*	*	3571	4031	4414	5607	5277	4298	5998	7111	4794	3507	5808	3921	2885	3648	3149	5759	*	121
+       22	6038	*	2942	201	333	2277	10255	1144	2036	
+
+A 122  2802	5916	5165	4085	4972	4340	*	5009	2979	5883	5332	4167	2300	4756	5130	3737	4848	4704	*	*	122
+       0	*	*	*	*	*	0	10915	0	1091	
+
+P 123  4991	*	5843	7548	5861	6971	*	5047	4546	4190	6505	7007	841	5147	4460	4514	4620	4659	6880	6703	123
+       13	6776	*	0	*	*	0	10915	1007	1091	
+
+S 124  3816	*	4720	4196	*	6002	*	6880	3188	4630	5442	5092	4540	4454	3780	2590	2877	3140	*	4922	124
+       0	*	*	*	*	*	0	10915	0	1091	
+
+V 125  4254	5764	8132	4266	4651	6900	*	2884	*	2738	5125	6793	3666	4691	5861	7187	4014	1790	*	6680	125
+       12	*	6941	*	*	*	0	10915	0	1091	
+
+Y 126  6880	7158	7275	4080	4021	5302	5175	4431	4217	4821	6639	6904	4140	3899	5263	2850	2783	3195	5309	3607	126
+       13	*	6838	*	*	*	0	10916	0	1243	
+
+P 127  5352	6733	6973	3947	5071	5934	*	2681	5476	2925	5020	5605	3394	3798	4769	5772	4204	2543	6504	5218	127
+       68	7006	4716	0	*	*	0	10556	1000	1389	
+
+L 128  5579	5430	5790	*	3739	5206	6258	3620	3828	2216	5863	4189	4676	4217	6932	3715	4067	3292	6671	4840	128
+       31	6485	6619	1585	585	1737	515	10136	1124	2140	
+
+A 129  5775	6509	5277	3708	6784	4584	7050	5462	3986	3589	7526	5116	2412	3819	4141	3002	2963	5453	*	5999	129
+       94	4537	5666	865	1149	*	0	10127	1627	1954	
+
+P 130  3993	6873	5226	5019	*	3808	7189	4489	4456	4294	*	5178	2031	3738	4630	3712	3540	3947	5647	5867	130
+       12	6874	*	1792	492	1765	503	10247	1229	2399	
+
+V 131  5198	6187	3923	3932	*	5384	6238	5933	4960	4103	6687	3765	3491	3963	4100	1961	3601	4694	6477	*	131
+       38	6964	5793	0	*	*	0	10491	1000	1965	
+
+C 132  4949	5785	4728	3794	5207	3510	4818	4295	5074	3040	6848	5829	3759	3884	5655	3269	3599	3534	*	5216	132
+       7	*	7766	*	*	1086	918	10457	0	2240	
+
+G 133  4327	*	5334	3062	5242	4263	5747	6106	4447	3449	7428	5312	5072	3720	5252	2371	3645	3185	*	6575	133
+       12	*	6916	*	*	351	2211	10205	0	1712	
+
+D 134  3236	*	3985	2820	*	5073	5838	3776	7017	3530	6881	5209	4506	5262	4873	4302	4516	2133	*	6312	134
+       107	5095	4574	823	1202	*	0	10234	1442	1181	
+
+T 135  4874	6280	4557	4364	4726	6801	6598	3230	3543	2971	4795	4549	4520	3892	4351	3883	3558	3981	6750	5572	135
+       164	3221	*	1674	542	1179	841	10175	2589	1902	
+
+S 136  4168	*	5598	2263	6890	4714	7164	6867	3801	3407	6746	4754	3386	7559	4920	3116	4215	3103	6494	6600	136
+       99	4993	4831	0	*	945	1057	10035	1543	1444	
+
+G 137  4340	6610	3775	4578	*	948	5196	7831	4987	7018	7036	4083	6820	5767	6021	5107	4115	5580	*	5705	137
+       116	4532	4879	1179	841	*	0	10025	1625	1809	
+
+S 138  4621	6732	2736	2316	*	3527	5786	6855	4165	4761	*	3522	5052	3301	4873	3127	5287	*	*	*	138
+       24	*	5948	5170	41	2993	194	10443	1156	2332	
+
+S 139  3666	*	4007	3123	*	6162	4218	*	3456	5124	*	4154	3979	4336	4624	2685	2948	4681	6474	6413	139
+       0	*	*	*	*	1284	763	10159	0	2434	
+
+V 140  2707	6571	7320	*	4447	6816	7003	2881	5939	2446	4356	6192	5670	4806	5477	5813	4636	2142	*	7139	140
+       14	6732	*	3170	170	553	1652	10032	1000	1809	
+
+T 141  6932	*	5417	3278	5565	6886	6965	4415	3737	5122	4961	4323	*	3910	4599	3510	1903	3238	*	5256	141
+       0	*	*	*	*	1056	946	10067	0	1152	
+
+L 142  4210	*	7101	*	3667	6031	*	2728	*	959	4712	*	*	*	*	6701	7228	3215	*	5860	142
+       61	4983	6638	0	*	*	0	10073	1468	1000	
+
+G 143  5090	7063	5314	4155	6828	5220	4947	4255	4733	3281	5317	4679	5035	4375	5030	2828	2415	3444	*	5198	143
+       0	*	*	*	*	1156	859	10052	0	1202	
+
+C 144  *	44	*	*	*	6618	*	*	*	*	*	*	*	*	*	7388	*	*	*	6203	144
+       0	*	*	1000	1000	0	*	10061	1037	1037	
+
+L 145  4695	*	5984	3931	4943	5809	4031	3946	3689	2777	4989	7257	4846	4198	4283	3329	3500	3501	6092	6563	145
+       23	7232	6817	2000	415	*	*	9972	1001	0	
+
+V 146  2307	5763	*	6877	4722	5830	*	3269	*	4901	*	6285	5700	*	*	2613	4841	1722	*	4482	146
+       0	*	*	0	*	1041	960	9948	1001	1179	
+
+K 147  4245	*	4201	3186	4752	4865	4742	7073	3942	5091	*	5414	4620	4086	3465	2469	3213	4529	6606	5888	147
+       53	5322	6500	1698	532	*	0	9958	1354	1011	
+
+G 148  3691	6747	3177	3572	*	1530	4961	*	4050	*	*	3048	6197	5366	4374	4445	5214	*	*	*	148
+       29	6494	6790	587	1581	*	0	10027	1238	1212	
+
+Y 149  4770	6506	4762	6781	2295	2495	5234	4539	6491	6677	6589	4856	6184	5146	4081	3125	4459	3860	6509	4355	149
+       421	4721	2216	602	1552	2343	317	9910	1563	1715	
+
+F 150  4465	4894	6426	*	3033	5409	4659	6331	3515	6355	5754	4755	3156	*	3891	3094	5983	5258	*	2199	150
+       58	*	4672	*	*	403	2035	9798	0	4634	
+
+P 151  4755	*	4489	6578	*	*	7008	6565	*	5358	*	5651	519	4762	5875	4856	4742	5533	*	*	151
+       238	4377	3268	743	1313	0	*	9855	1664	2395	
+
+E 152  3543	*	3399	3627	6624	3305	6404	5854	4685	4452	5620	4359	2920	3670	4044	3437	4500	4769	*	*	152
+       139	4081	4923	1307	747	281	2497	9890	1780	2549	
+
+P 153  3585	6642	3344	3737	*	3909	6553	4730	5228	5135	*	3922	1779	4394	5661	3371	5512	6844	*	6484	153
+       262	6663	2679	0	*	1501	629	9937	1000	1733	
+
+V 154  3154	*	*	4243	4839	*	4307	2634	6289	2767	6052	5946	4554	5785	*	4493	3470	2577	6694	5337	154
+       393	*	2068	*	*	168	3187	9763	0	3838	
+
+T 155  6587	*	4248	3494	*	*	4674	5358	3441	4556	6462	3196	6695	3535	4537	2899	2499	4732	6485	5020	155
+       0	*	*	*	*	245	2680	9761	0	4436	
+
+L 156  *	*	6493	6632	3041	*	*	2431	6545	2459	5275	6520	5627	7173	*	5733	*	1606	6796	4080	156
+       16	6510	*	0	*	927	1077	9921	1007	1506	
+
+T 157  *	*	4534	4182	5730	*	6829	4940	3847	4443	5750	4810	7146	4214	3356	2491	1856	5411	*	4815	157
+       0	*	*	*	*	*	0	9936	0	1156	
+
+W 158  *	*	*	*	6723	*	6205	*	7146	4374	*	*	*	6689	5911	6802	*	*	192	6528	158
+       1699	665	4028	1151	863	*	0	9936	7970	1156	
+
+N 159  5620	*	4159	4077	5006	3904	*	5108	2200	4393	*	2630	5153	4397	3502	3753	5233	*	*	4437	159
+       51	5326	6710	428	1963	3352	149	9894	1273	2278	
+
+S 160  5931	7019	2882	3915	4924	2101	5635	7043	3787	5844	*	2695	5204	6738	3553	3905	5726	5778	*	6593	160
+       33	6009	7088	1092	913	1359	713	9893	1100	2281	
+
+G 161  5188	*	3889	3607	*	1538	5934	4514	3683	5146	6663	3503	5148	4296	4655	4031	4862	*	*	*	161
+       59	4633	*	1584	586	832	1190	9897	1545	1871	
+
+S 162  4698	*	4331	3225	7084	4010	*	6672	3108	3846	7068	4182	3157	3713	3887	4065	3099	4820	*	6694	162
+       178	4805	3634	621	1516	*	0	9916	1453	1300	
+
+L 163  4253	*	4826	5711	4659	6433	5582	3860	4917	1970	4812	4996	4134	4997	4325	4770	4084	2822	6384	6658	163
+       55	5701	5790	2807	222	*	0	9792	1124	2866	
+
+S 164  6761	*	3679	3540	6591	4778	4843	3336	5041	2909	7251	5597	3408	5008	3486	3424	3626	4144	6622	*	164
+       16	6526	*	2322	322	3655	119	9766	1000	3099	
+
+S 165  4237	*	3763	3749	6379	5923	*	4144	3675	3303	6814	2986	3326	3865	6777	3259	3657	*	*	4716	165
+       33	5482	*	863	1151	4009	92	9817	1175	2939	
+
+G 166  3990	6365	2943	3583	*	2773	*	5213	6021	5004	*	3231	4079	5386	4431	2674	4291	4811	*	6349	166
+       58	6138	5309	1000	1000	2267	336	9801	1032	2987	
+
+V 167  4608	*	5030	3298	4904	6864	5666	4329	3972	3595	*	3880	5168	4214	5033	3048	3630	2674	*	5048	167
+       52	5772	5850	0	*	2897	208	10005	1269	2976	
+
+H 168  5217	6949	6577	3742	4791	4774	5199	5065	4609	5616	4380	4703	3557	3428	4147	3115	3221	3834	*	3734	168
+       43	6564	5721	3189	168	2831	219	9807	1347	2990	
+
+T 169  5692	*	5102	3624	5599	5341	5662	4011	5651	4224	5645	2975	5148	3439	4144	2755	2574	5075	*	*	169
+       106	3815	*	956	1045	2998	193	9806	1978	3067	
+
+F 170  6818	*	5446	4415	3410	4012	4416	4088	4455	3653	5048	3936	5031	4730	4108	3315	3420	4073	*	4074	170
+       33	6365	6613	0	*	1498	631	9825	1007	2817	
+
+P 171  3879	*	6056	3684	4971	4194	*	5051	4562	3457	*	4147	3430	4806	3676	3043	3071	4431	6603	5111	171
+       45	5683	6440	1585	585	1590	583	9856	1141	2320	
+
+A 172  5940	*	4159	3931	4676	3848	4354	4307	5114	4401	5881	5787	3787	3793	4872	3380	2832	3464	*	4752	172
+       40	6703	5797	2000	415	2073	391	10029	1000	2133	
+
+V 173  4705	6768	4815	4434	5171	4551	4438	4062	4050	3968	5884	4552	4145	3682	4006	3557	3758	2866	*	5828	173
+       28	6768	6623	1585	585	*	0	9850	1000	2081	
+
+L 174  5250	*	4964	4849	4542	3905	3871	3923	3896	2414	4769	4492	4969	4249	3966	3764	3921	5879	6702	6327	174
+       241	5897	2865	0	*	3384	145	9840	1143	2224	
+
+Q 175  4943	6345	2765	3403	6439	5562	6262	6525	4851	4167	5563	3508	4044	2958	6525	3165	3751	4218	*	5802	175
+       990	1066	5742	632	1495	449	1904	9654	6390	3842	
+
+S 176  4437	5528	1778	4791	*	2703	6616	*	5779	5057	*	3076	4297	6602	4819	3024	4527	6505	*	*	176
+       26	6744	6912	0	*	1015	985	9848	1012	2065	
+
+D 177  6452	*	3018	3739	6602	1184	5304	*	4925	6751	5697	3728	*	6749	5243	3313	5115	7403	7280	*	177
+       135	3867	5588	2714	238	1494	633	9902	2043	1621	
+
+L 178  5110	*	5630	4855	*	6530	6917	5882	3459	2654	5173	4006	*	6443	3937	2623	1934	5666	*	5648	178
+       93	*	4006	*	*	*	0	9910	0	1819	
+
+Y 179  6858	5883	*	5045	2080	5706	7177	6452	5490	4376	6599	5745	4621	5767	6615	4375	4542	4879	6423	1454	179
+       10	*	7177	*	*	1354	716	9827	0	2765	
+
+T 180  4153	4979	5149	3705	5267	5627	5754	5715	6358	4625	4017	3950	6615	4033	3868	2417	2396	5201	*	*	180
+       50	5518	6351	4385	71	*	0	9832	1170	2197	
+
+L 181  3880	5720	5037	5354	*	4062	6631	3904	3880	3157	3764	6546	6383	6758	3897	3702	3597	2564	6587	5068	181
+       71	6692	4693	1000	1000	*	0	9814	1011	2374	
+
+S 182  5437	*	*	6555	3858	5317	6648	5770	4841	3943	6947	3784	6322	5059	5650	2380	2189	3310	4306	4717	182
+       0	*	*	*	*	3878	102	9774	0	2920	
+
+S 183  4853	5652	6562	4342	*	3717	6773	6356	5200	3783	6602	5357	5834	5053	5750	954	4428	5328	*	*	183
+       0	*	*	*	*	2750	232	9787	0	2793	
+
+S 184  4471	*	4592	5663	*	7066	4429	4175	5652	2912	6626	3999	*	4911	3910	3055	2488	3249	5358	5008	184
+       111	4004	6404	2075	391	309	2373	9843	1887	2528	
+
+V 185  4404	*	6774	6806	3828	5415	7131	3823	*	820	*	*	6683	5233	6028	*	4754	3755	*	4884	185
+       0	*	*	*	*	666	1436	9893	0	1384	
+
+T 186  5236	*	5249	4274	*	6570	5219	3242	6985	3295	4588	3722	5863	5135	3455	3013	2570	3946	7044	5404	186
+       0	*	*	*	*	*	0	9905	0	1038	
+
+V 187  5925	*	*	*	3238	*	6840	1732	*	2145	5776	*	6965	6101	6505	7144	7088	2228	6619	4270	187
+       0	*	*	*	*	*	0	9905	0	1038	
+
+T 188  4217	6701	4686	4644	*	6652	5075	5895	3683	4871	7067	3569	2995	4746	3206	2761	2905	4777	*	6783	188
+       12	*	6889	*	*	*	0	9905	0	1038	
+
+S 189  3502	*	3715	3624	6565	6787	5287	3883	3655	3842	5884	4977	3288	4749	3975	3389	3984	3765	6920	*	189
+       14	6737	*	2807	222	*	0	9902	1000	1184	
+
+S 190  4356	6389	5103	3193	*	4554	4623	5465	4206	4660	5630	4524	6882	4856	4047	2326	2991	3333	*	6698	190
+       0	*	*	*	*	774	1268	9902	0	1184	
+
+T 191  4128	7147	2704	2933	*	4799	5718	6744	2777	3592	6912	6861	5050	3834	3602	3649	4331	5728	*	6574	191
+       285	*	2480	*	*	0	*	9916	0	1000	
+
+W 192  3890	6173	4896	2691	3853	*	5461	4836	4359	3034	4297	*	5025	3995	3580	4889	6719	4475	3223	6728	192
+       945	1132	5381	413	2006	3603	124	10047	6145	3981	
+
+P 193  *	*	833	3744	*	*	4693	*	4598	6681	*	3682	4128	4527	4932	3987	*	*	*	*	193
+       500	1832	6382	153	3312	353	2203	10062	4208	3993	
+
+S 194  2520	*	3366	4530	*	2357	4872	5530	6566	*	6733	3722	6097	3834	5244	3149	3907	5668	*	5134	194
+       0	*	*	*	*	1657	550	9899	0	1766	
+
+Q 195  3114	*	5297	3703	*	1113	6802	*	3621	5321	6796	4907	*	5778	5478	4765	5689	4185	*	6590	195
+       13	*	6833	*	*	1883	456	9917	0	1479	
+
+S 196  6052	*	4275	4314	6819	*	6917	4462	3668	4445	5243	3009	4558	4741	3789	3489	2523	3203	5544	*	196
+       22	6022	*	0	*	1059	943	10083	1127	1448	
+
+I 197  *	*	*	*	2512	*	5826	4070	*	3908	*	*	*	*	*	*	6610	3185	7067	854	197
+       0	*	*	*	*	*	0	9904	0	1156	
+
+T 198  *	*	*	4494	4806	6787	5767	5222	4443	5411	4222	5855	*	3944	4509	2729	1694	4916	4986	3443	198
+       0	*	*	*	*	*	0	9904	0	1156	
+
+C 199  *	53	*	*	*	6177	*	6549	*	*	*	*	*	*	*	*	*	6398	*	*	199
+       14	6669	*	0	*	*	0	9904	1000	1156	
+
+N 200  3892	5811	*	3376	5793	*	5515	3575	3873	4371	5523	4892	*	3738	3724	3852	2983	2761	6682	5714	200
+       0	*	*	*	*	*	0	9918	0	1156	
+
+V 201  1618	*	*	6397	5929	*	*	3556	6572	5523	*	*	*	*	6703	6818	6582	1016	*	7522	201
+       45	5618	6619	1025	975	*	0	9850	1148	1156	
+
+A 202  4524	*	3980	4494	6494	6008	4307	5720	3740	6692	6295	3733	*	3300	3502	2507	2647	5018	6755	6081	202
+       0	*	*	*	*	*	0	9746	0	1317	
+
+H 203  6400	*	6581	*	5543	6405	1457	*	6454	*	6380	1547	*	5985	5511	3903	4703	6408	*	4063	203
+       0	*	*	*	*	*	0	9742	0	1317	
+
+P 204  4878	5402	4066	2220	*	3561	*	5052	3883	5664	*	5352	3611	3994	3453	3487	4235	4911	6719	5636	204
+       52	4812	*	1481	640	*	0	9628	1406	1317	
+
+A 205  2775	*	4900	5481	4781	2170	6444	5504	6438	3623	6285	3887	*	4368	4541	2427	4936	6458	*	6442	205
+       18	*	6372	*	*	*	0	9519	0	1317	
+
+S 206  4807	*	4518	6712	6317	1996	6508	6137	5805	2079	6356	3370	4935	4295	6465	3297	5391	5266	*	6308	206
+       73	5395	5284	2000	415	1982	421	9525	1150	1470	
+
+S 207  *	*	5162	2790	*	5416	6370	*	3674	*	*	5336	2448	3271	4606	2790	2552	4953	*	6211	207
+       82	4529	6409	0	*	2607	259	9483	1362	1770	
+
+T 208  2964	*	4531	3346	*	3558	4473	4526	5355	4099	5487	4519	4615	3510	4542	3363	3369	5127	*	6157	208
+       19	6220	*	758	1291	980	1020	9383	1298	1758	
+
+K 209  4572	*	4993	2934	6161	4247	3727	*	4636	4866	6178	3974	2448	4082	4248	3327	5163	3658	*	*	209
+       0	*	*	*	*	1695	533	9428	0	1299	
+
+V 210  3537	5377	4153	4724	6684	*	6601	2777	3474	2094	6361	4748	*	*	5088	5848	3712	2909	*	*	210
+       0	*	*	*	*	0	*	9372	0	1156	
+
+D 211  5288	*	3292	3523	*	*	5961	4821	3734	4659	*	3853	*	3984	4255	3250	2025	3803	*	6386	211
+       0	*	*	*	*	*	*	9380	0	0	
+
+K 212  3783	6006	*	*	5117	6141	5013	2846	3933	3503	4488	6108	5982	3130	3316	6507	4114	2538	*	6088	212
+       36	6042	6758	1000	1000	*	*	9330	1000	0	
+
+K 213  *	*	4530	3396	4951	6311	3862	*	3500	*	5822	4592	3925	5174	3929	2339	2565	4019	*	6270	213
+       0	*	*	*	*	*	0	9304	0	1156	
+
+I 214  4327	*	*	*	3317	*	*	2327	*	1751	4792	*	5958	4768	*	4557	5081	2595	6477	5983	214
+       0	*	*	1000	1000	0	*	9012	1156	1156	
+
+E 215  *	*	3809	2355	*	*	5672	4896	4311	4517	*	2686	5825	3460	2782	3075	4668	5744	*	*	215
+       41	5143	*	0	*	*	*	8773	1000	0	
+
+P 216  *	4854	5153	*	*	5321	*	3367	3456	3418	*	*	2170	4218	3012	*	4951	2586	4972	*	216
+       30	5607	*	0	*	*	*	8108	1156	0	
+
+R 217  4514	*	3850	4630	*	*	*	2439	4141	3801	*	4639	4497	4906	2701	3123	3199	*	*	4700	217
+       0	*	*	*	*	0	*	7607	0	1156	
+
+G 218  3613	*	4897	1955	4363	4502	*	*	*	*	*	*	4195	2823	4341	2314	3510	*	*	*	218
+       0	*	*	*	*	*	*	7157	0	0	
+
+P 219  *	1531	*	4152	*	*	*	*	*	*	*	*	2177	5168	4262	3105	3032	4100	*	*	219
+       0	*	*	*	*	*	*	6422	0	0	
+
+T 220  *	*	*	*	3618	*	*	3895	*	*	*	*	1756	*	3827	2398	2730	2793	*	*	220
+       0	*	*	*	*	*	*	5649	0	0	
+
+I 221  *	*	2506	*	*	*	*	3398	3583	*	*	3516	2505	*	*	2444	4689	2649	*	*	221
+       0	*	*	*	*	*	*	5192	0	0	
+
+K 222  3773	*	*	*	*	*	3583	4689	2487	*	*	3550	1470	*	*	3435	*	3516	*	*	222
+       156	*	3285	*	*	*	*	5192	0	0	
+
+P 223  *	*	*	*	*	*	*	3318	*	*	*	*	391	*	*	2864	*	*	*	*	223
+       287	2473	*	3459	138	0	*	4210	1091	1124	
+
+C 224  *	1039	*	*	*	*	*	*	*	*	*	*	*	*	*	2783	2387	2499	*	*	224
+       0	*	*	*	*	*	*	3464	0	0	
+
+P 225  *	*	*	*	*	*	2499	*	2801	*	*	*	557	*	*	*	*	*	*	*	225
+       240	2708	*	0	*	*	*	3464	1099	0	
+
+P 226  2708	2499	2801	*	*	*	*	*	*	*	*	*	1391	*	*	*	2783	*	*	*	226
+       0	*	*	*	*	*	*	3464	0	0	
+
+C 227  *	592	*	*	*	*	*	*	*	*	*	*	1572	*	*	*	*	*	*	*	227
+       0	*	*	*	*	*	*	3464	0	0	
+
+K 228  *	*	*	*	*	*	*	*	791	*	1244	*	*	*	*	*	*	*	*	*	228
+       0	*	*	0	*	*	*	1589	0	0	
+
+//
+�HHsearch 1.5
+NAME  a7d85b5797fc7c87d5f26fc1eaa87af7
+FAM   
+FILE  a7d85b5797fc7c87d5f26fc1eaa87af7
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:10:44 2013
+LENG  151 match states, 151 columns in multiple alignment
+FILT  104 out of 109 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  5.6 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCEEEECCCCCHHHHHHHHHHHHHHHHHCCCCCCCCCCCHHHHHHCCCCCCCHHHHHHHHHHHHHHCCCCCCCCCCCHHHHHHHHHHHHHH
+HHHCCCCCCCCCHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHC
+>ss_conf PSIPRED confidence values
+9976431478716743512248999999999999873266755313688789646775404799999999998725444354452333066479999999
+985871588845629999999999998760789999889999999999709
+>Consensus
+xxxxxxxxxxxCxlxxxxxqxxxixxxxxxixxxxqxxDxxxxvrLLxxxllxxxkxxxxCxxxxxlLxFYLexVxxpxaxxxxpxixxxvssLaxlxxx
+LxxCxxxxxcexxxxxvxxikxxfxkLxxxgxxKAiGELDiLlxwiexxcx
+>a7d85b5797fc7c87d5f26fc1eaa87af7
+QGGAAAPISSHCRLDKSNFQQPYITNRTFMLAKEASLADNNTDVRLIGEKLFHGVSMSERCYLMKQVLNFTLEEVLFPQSDRFQPYMQEVVPFLARLSNR
+LSTCHIEGDDLHIQRNVQKLKDTVKKLGESGEIKAIGELDLLFMSLRNACI
+>gi|78127838|gb|ABB22222.1| Ov2.5 [Ovine herpesvirus 2]
+--ERVLPLRGNCKLLL---QDTVIPNLLYSMrsifqdIKPYFQGKDSLNNLLLSGQLLEDLQSPIGCDALSEMIQFYLEEVM-PQAEIHHPKHKNSVMQL
+GEtlhtLISQLQECTALFPCKHKSLGAQKIKEEVSKLGQYGIIKAVAEFDIFINYMES---
+>gi|335295319|ref|XP_003357467.1| PREDICTED: interleukin-24-like [Sus scrofa]
+----------PCRVEGIVLQELW--EAFWDMKDVVQAQDNITNVRLLRKEVLQNVSEAESCYLIHSLLKFYLNTIFKNYREKAvKFRILRSFSTLANnfv
+vIMSKLQPSqenEMFPISENARRRFLLFQREFKQLDrEVALTKAFGEMDILLTWMETF--
+>gi|194354137|gb|ACF54622.1| interleukin 10 [Larimichthys crocea]
+------------------------------------------------------FKTPFACHAINSILDFYLATVL-PGAlagvTEDTKSMKPHMESIQq
+ifdQLKNDVTACRHYFHCKNQFD-ITNLNSTYTQMQSKGLFKAVGELE-----------
+>gi|293341320|ref|XP_001058779.2| PREDICTED: rCG46376-like [Rattus norvegicus]gi|293352718|ref|XP_001060482.2| PREDICTED: interleukin 19 [Rattus norvegicus]gi|149058680|gb|EDM09837.1| rCG46376 [Rattus norvegicus]
+------------------------------IRRTLQTKDTFKNVTILStLENLRSIKPVDVCCVTNNLLTFYRDRVFKDHQE-TSLEVVRRISRIANsfl
+hMQKTLEQCvHRQCHCsQEATNATRTIHDNYNQLEvSSAALKSLGELNIFLAWIDR---
+>gi|7542405|gb|AAF63435.1|AF202534_1 interleukin-10-like protein [Cercopithecine herpesvirus 5]
+-------------------------------RETLQTKDTVYYVSLFHEQLLQEMLSPVGCRVTNELMQHYLDGVL-PRAfhcgyDNTtLNALHFLSSSL
+STLYQHMLKCP-ALACTGQTPAWTQFLDTEHKLDpWKGTVKATAEMDLLLNYLETF--
+>gi|282174062|ref|YP_003358164.1| ORF25 [Anguillid herpesvirus 1]gi|281308905|gb|ADA57788.1| ORF25 [Anguillid herpesvirus 1]
+----------------------------------------------------EHLHGPESCSVIDELITHHTKCVI-PAANEEeGADL-LSLDTLQvale
+NVKGLLANCQEEFGCKPPFS-MRDYKKQYRQLNkekNAGMIKAMGELGMLFNGIEE---
+>gi|212549595|ref|NP_001131083.1| interleukin 22 [Xenopus (Silurana) tropicalis]gi|156148266|gb|ABU54058.1| interleukin-26 [Xenopus (Silurana) tropicalis]
+--------------------------------KELFPKDNITDIQFLTEELKQDFMAQKNCNLRNNFLSFYIKTFLekPPVQEKA-KKL-KIIQDLMVIQ
+DMLLHCKKS-HCDHKETGIKsltELKIKIRQINgNKVLWKAISEMDTLLEWIYE---
+>gi|40555956|ref|NP_955041.1| CNPV018 IL-10-like protein [Canarypox virus]gi|40233781|gb|AAR83364.1| CNPV018 IL-10-like protein [Canarypox virus]
+------------------------------------GRDNDLSYMLLQ-GVRETHKKPCGCYVLYLLLSFYRKTIRDTIQSNKHASINAELTNLAvsvlS
+LEDLLDACGITCN-PKKDSLLKRIEEYMKEHGDDAIYKLIGEIEFLFQAIER---
+>gi|66472836|ref|NP_001018628.1| interleukin 22 [Danio rerio]gi|56044561|dbj|BAD72867.1| interleukin 22 [Danio rerio]gi|169154277|emb|CAQ13398.1| novel protein similar to interleukin 22 (il22) [Danio rerio]
+--------------------------------DTARNEDD-HETRLLPYFSHDMLQEEGSCCINARILKYYVNHVL-ESDEHtdmKYPMIRNVREGLHRV
+EQELQnHCKHDYS-SH--PLVKQFKRNYHAsaiMDlAAARNKAIGETNTLYHYLFESCT
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+Q 1    *	*	2679	*	*	*	3917	*	*	*	*	*	3080	934	*	2880	*	*	*	*	1
+       0	*	*	*	*	*	*	2501	0	0	
+
+G 2    *	*	*	3705	*	1367	*	*	2036	*	*	*	2679	2880	*	*	*	*	*	*	2
+       0	*	*	*	*	*	*	2501	0	0	
+
+G 3    4003	*	*	1870	*	919	*	*	*	*	*	*	*	2887	*	*	*	*	*	*	3
+       0	*	*	*	*	*	*	2918	0	0	
+
+A 4    1637	*	*	2887	*	*	*	*	*	*	*	4003	*	*	2568	*	2301	3191	*	*	4
+       0	*	*	*	*	*	*	2918	0	0	
+
+A 5    1387	*	3252	*	*	3352	*	*	*	*	*	2887	*	*	*	*	*	1839	*	*	5
+       0	*	*	*	*	*	*	2918	0	0	
+
+A 6    2871	*	*	*	*	*	3144	*	*	2060	*	*	*	*	*	*	*	970	*	*	6
+       0	*	*	*	*	*	*	3301	0	0	
+
+P 7    *	*	*	*	*	*	*	*	*	*	*	*	563	*	3443	*	2783	3543	*	*	7
+       0	*	*	*	*	*	*	3301	0	0	
+
+I 8    *	*	*	*	*	*	*	1374	*	1629	*	*	*	*	*	3543	3443	3144	*	*	8
+       0	*	*	*	*	*	*	3301	0	0	
+
+S 9    *	*	*	*	*	3508	*	*	*	*	*	2112	*	*	2086	1536	3316	*	*	*	9
+       129	3543	*	1000	1000	*	*	3301	1058	0	
+
+S 10   *	*	3422	*	*	2891	2399	*	3234	2799	*	*	*	3871	*	2221	4339	*	*	*	10
+       0	*	*	*	*	*	*	3304	0	0	
+
+H 11   2623	*	*	*	*	*	2666	*	*	*	*	2443	2683	3731	3316	2602	*	*	*	*	11
+       113	3731	*	1000	1000	*	*	4035	1152	0	
+
+C 12   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	12
+       0	*	*	*	*	*	*	4083	0	0	
+
+R 13   *	*	*	*	*	3657	*	*	2715	*	5134	*	*	*	1140	*	3887	2194	*	*	13
+       0	*	*	*	*	*	*	4083	0	0	
+
+L 14   *	*	*	*	*	*	*	1910	*	927	*	*	*	*	*	*	*	2266	*	*	14
+       0	*	*	*	*	*	*	4083	0	0	
+
+D 15   5168	*	3167	2182	*	*	*	*	4056	3480	*	4060	*	*	2307	3280	2990	*	*	*	15
+       310	*	2371	*	*	*	*	4083	0	0	
+
+K 16   *	*	*	3945	*	2756	3347	3457	2005	3236	*	3804	*	4762	*	4965	3963	4724	*	*	16
+       162	*	3236	*	*	0	*	3892	0	1276	
+
+S 17   *	*	*	*	*	*	*	2744	*	*	4540	3476	*	*	*	1481	2053	3075	*	*	17
+       354	*	2201	*	*	*	0	3818	0	1083	
+
+N 18   *	*	1892	*	3450	*	*	*	*	*	*	1042	*	*	*	*	*	2704	*	*	18
+       0	*	*	*	*	*	0	3322	0	1478	
+
+F 19   *	*	*	*	785	*	*	*	*	1455	*	*	*	*	*	*	*	*	*	4190	19
+       52	*	4813	*	*	285	2482	3322	0	1478	
+
+Q 20   *	*	*	2740	*	*	*	*	*	2935	*	*	*	475	*	*	*	*	*	*	20
+       95	*	3971	*	*	0	*	3948	0	1111	
+
+Q 21   *	*	3443	1862	*	*	*	*	4142	3618	3908	*	4209	1795	*	*	5263	4064	*	*	21
+       260	*	2600	*	*	*	0	4088	0	1041	
+
+P 22   *	*	*	*	*	*	*	*	*	3412	*	3554	1434	4503	*	2746	1957	*	*	*	22
+       0	*	*	*	*	1732	517	4018	0	1276	
+
+Y 23   *	*	*	2399	2965	4414	*	*	4657	*	*	3702	*	*	*	*	*	3452	3594	1536	23
+       125	*	3594	*	*	0	*	4153	0	1176	
+
+I 24   *	*	*	*	*	*	*	437	*	2847	3033	*	*	*	*	*	*	*	*	*	24
+       0	*	*	*	*	*	0	4347	0	1091	
+
+T 25   *	*	*	3470	5341	*	*	4534	2597	*	*	4269	3580	4358	1872	*	3508	5323	3234	*	25
+       0	*	*	*	*	0	*	4347	0	1091	
+
+N 26   4544	*	5042	2679	*	*	*	*	3051	*	*	933	*	3594	*	4528	*	*	*	*	26
+       0	*	*	*	*	*	*	4375	0	0	
+
+R 27   2762	4492	*	3680	*	2848	5387	4058	*	3331	*	4227	*	*	2146	3549	*	5459	*	5619	27
+       0	*	*	*	*	*	*	4375	0	0	
+
+T 28   4728	*	*	*	945	*	*	3318	*	3913	*	*	*	*	*	*	1855	*	*	*	28
+       0	*	*	*	*	*	*	4430	0	0	
+
+F 29   *	*	*	*	1667	*	*	*	*	3140	*	*	*	3584	*	2593	4590	*	2735	2934	29
+       0	*	*	*	*	*	*	4421	0	0	
+
+M 30   2814	*	5556	2160	*	4004	*	*	3795	*	3784	4600	*	4277	*	3360	2213	*	*	*	30
+       0	*	*	*	*	*	*	4673	0	0	
+
+L 31   *	*	*	*	*	*	*	1487	*	1817	2898	*	*	*	*	*	*	2150	*	*	31
+       85	4132	*	2585	263	*	*	4731	1083	0	
+
+A 32   1581	*	*	*	*	*	*	4335	1576	*	*	*	*	5609	2353	4872	*	5042	*	*	32
+       0	*	*	*	*	*	*	4945	0	0	
+
+K 33   4497	*	2424	2925	*	5260	4003	*	1992	*	*	2889	*	3565	3929	*	6303	*	*	*	33
+       0	*	*	*	*	*	*	5203	0	0	
+
+E 34   2341	*	*	2521	*	*	4851	5652	5158	5955	5547	5459	4649	3467	6150	3906	2238	4333	*	6269	34
+       0	*	*	*	*	*	*	5453	0	0	
+
+A 35   1641	*	*	*	4590	*	*	3026	*	3456	4361	*	*	*	*	4963	3661	2092	*	5073	35
+       0	*	*	*	*	*	*	5559	0	0	
+
+S 36   *	*	*	*	3712	*	*	2827	6318	6471	*	6589	*	1052	3322	3037	*	4487	*	*	36
+       0	*	*	*	*	*	*	5559	0	0	
+
+L 37   1656	*	5437	*	*	4755	*	5324	5444	2775	*	4992	2877	4476	*	3218	3203	*	*	*	37
+       0	*	*	*	*	*	*	5687	0	0	
+
+A 38   2983	*	5242	2390	*	4247	*	*	2140	5919	4003	6287	*	3511	3849	3225	5563	*	*	*	38
+       0	*	*	*	*	*	*	5780	0	0	
+
+D 39   *	*	264	*	*	*	*	*	3558	*	*	4779	*	5323	5563	*	*	*	*	*	39
+       0	*	*	*	*	*	*	5780	0	0	
+
+N 40   *	5932	1934	3436	*	5157	6363	*	4584	*	*	2329	4822	5986	4466	4646	2549	4593	*	*	40
+       41	*	5161	*	*	*	*	5810	0	0	
+
+N 41   6401	*	1969	3385	3759	*	6077	1861	5776	6705	7144	3855	*	3247	*	5324	*	4691	*	*	41
+       17	6381	*	1000	1000	0	*	6051	1000	1065	
+
+T 42   *	*	*	6092	*	*	4551	3903	3061	1932	4246	*	5025	4238	5294	*	1767	*	*	4709	42
+       0	*	*	*	*	0	*	6103	0	1000	
+
+D 43   5262	*	1525	3268	*	3932	6484	*	*	*	*	2017	*	*	*	2878	5300	*	*	4738	43
+       46	*	5003	*	*	*	*	6111	0	0	
+
+V 44   5077	*	6377	*	*	*	*	2132	5712	3749	6062	3067	*	*	*	4802	3044	1652	*	5197	44
+       0	*	*	*	*	0	*	6105	0	1111	
+
+R 45   6556	*	*	*	*	6594	*	5264	3367	4603	3549	*	4628	4488	1173	3694	3646	4812	6913	*	45
+       0	*	*	*	*	*	*	6111	0	0	
+
+L 46   *	*	*	*	4212	*	*	2228	*	449	*	*	*	*	*	*	*	*	*	*	46
+       0	*	*	*	*	*	*	6111	0	0	
+
+I 47   *	*	*	*	4136	*	*	2552	*	455	4527	*	*	*	*	*	*	*	*	*	47
+       0	*	*	*	*	*	*	6111	0	0	
+
+G 48   *	*	3311	*	*	2975	4738	*	2757	*	*	3707	3939	4291	2896	2428	3764	*	*	*	48
+       178	4433	3837	0	*	*	*	6111	1179	0	
+
+E 49   5322	*	5227	2704	*	4670	5232	*	2025	5073	*	5321	4555	2644	3635	3284	5846	*	*	5289	49
+       189	3026	*	0	*	0	*	5908	1675	1277	
+
+K 50   5595	*	3184	2250	5518	4505	3933	*	3267	*	*	3630	*	3276	6527	2681	5117	5333	*	5688	50
+       0	*	*	*	*	*	*	6111	0	0	
+
+L 51   6897	*	*	*	4978	*	*	3543	*	1379	6107	5709	5484	*	*	2837	2946	2609	*	*	51
+       0	*	*	*	*	*	*	6111	0	0	
+
+F 52   6594	*	5571	6556	3389	*	5518	6267	3138	971	4739	*	4115	5287	5232	*	*	5334	*	4978	52
+       0	*	*	*	*	*	*	6111	0	0	
+
+H 53   4671	*	3686	2200	5708	*	3236	*	4284	*	*	3725	*	1921	3810	6145	5599	5173	*	6024	53
+       0	*	*	*	*	*	*	6163	0	0	
+
+G 54   *	*	2049	3688	*	2997	4559	6938	4397	4339	5534	2352	*	4289	5682	3913	4492	6769	*	*	54
+       0	*	*	*	*	*	*	6163	0	0	
+
+V 55   6252	*	*	*	2136	*	5327	2141	5635	2939	4832	*	5550	*	*	*	3599	2197	*	*	55
+       149	5921	3612	1000	1000	*	*	6216	1029	0	
+
+S 56   *	*	5496	5851	*	*	5739	*	1208	4709	5191	3308	*	2827	4652	3192	4254	*	*	*	56
+       45	5889	6189	0	*	*	0	6041	1068	1354	
+
+M 57   4279	*	4035	2904	*	2440	5520	*	5233	6954	5377	4618	2755	7801	*	2605	4268	3932	6151	*	57
+       0	*	*	*	*	303	2400	6025	0	1449	
+
+S 58   2953	4915	*	5301	*	3875	*	*	4116	3731	4003	4425	2456	5512	4417	3789	4113	6774	*	3157	58
+       0	*	*	*	*	*	0	6202	0	1037	
+
+E 59   *	5323	2113	2273	4260	4808	*	5132	3199	2892	*	4777	*	5045	*	*	6643	4287	5712	5073	59
+       6	*	7859	*	*	*	0	6202	0	1037	
+
+R 60   4606	*	*	*	*	1703	4327	3797	6007	*	*	3450	*	4794	2755	2882	5626	3815	*	6397	60
+       0	*	*	*	*	*	0	6203	0	1075	
+
+C 61   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	61
+       0	*	*	*	*	*	0	6203	0	1075	
+
+Y 62   *	1766	6111	*	5626	*	3127	*	6151	*	*	5509	*	2400	3808	4757	*	*	*	2166	62
+       0	*	*	*	*	*	0	6203	0	1075	
+
+L 63   2751	*	*	*	2453	*	*	4757	*	1746	3784	*	*	*	*	4226	6067	2376	*	*	63
+       102	*	3868	*	*	*	0	6203	0	1075	
+
+M 64   5735	*	*	*	6977	*	4024	3435	6018	1702	2599	5481	*	4779	4164	6874	2921	3713	*	*	64
+       0	*	*	*	*	*	0	6163	0	1427	
+
+K 65   3576	*	3998	4083	*	6765	3630	*	2445	6834	*	2925	*	6874	2888	2402	*	*	*	4395	65
+       0	*	*	*	*	3723	114	6163	0	1427	
+
+Q 66   4791	*	4473	2076	*	*	3776	*	5944	3986	6019	2511	*	2668	3721	3692	6862	*	5687	*	66
+       0	*	*	1585	585	0	*	6162	1296	1391	
+
+V 67   *	*	*	*	5520	*	*	2250	*	1280	2393	*	*	*	*	*	6486	2694	*	*	67
+       6	*	7888	*	*	*	*	6217	0	0	
+
+L 68   *	*	*	*	3875	*	*	2426	*	679	4444	*	*	*	*	*	5066	4459	*	*	68
+       101	*	3888	*	*	*	0	6218	0	1000	
+
+N 69   4440	*	3232	4101	6272	6364	6124	*	3003	*	*	3164	*	2652	2453	3188	4013	*	*	*	69
+       0	*	*	0	*	143	3405	6176	1296	1333	
+
+F 70   *	*	*	*	378	*	4257	5066	*	3476	*	*	*	*	5744	5773	*	*	*	5554	70
+       0	*	*	*	*	*	0	6218	0	1000	
+
+T 71   *	*	*	*	3748	*	5823	4729	*	*	*	*	*	*	*	*	3894	6197	*	341	71
+       0	*	*	*	*	*	0	6218	0	1000	
+
+L 72   *	*	*	*	*	*	*	4402	*	749	3139	*	*	*	4529	*	5274	2514	*	*	72
+       0	*	*	*	*	*	0	6218	0	1000	
+
+E 73   6776	*	1793	1473	*	*	6866	*	2797	4749	*	3237	*	*	*	5082	*	5888	*	*	73
+       22	6055	*	0	*	*	0	6218	1013	1000	
+
+E 74   *	5823	2639	2390	*	4852	5554	*	4149	*	7385	3254	*	*	2685	6051	2177	5946	*	*	74
+       0	*	*	*	*	*	0	6218	0	1000	
+
+V 75   *	*	*	*	5517	*	*	3398	*	6055	*	*	*	*	*	6133	*	228	*	*	75
+       0	*	*	*	*	0	*	6218	0	1000	
+
+L 76   *	*	*	*	1347	*	*	4885	*	1241	2997	*	*	*	5332	*	*	*	*	*	76
+       1116	3661	1122	1000	1000	*	*	6217	1393	0	
+
+F 77   *	*	4320	*	4052	*	3736	5293	1313	2928	*	5117	3294	6000	4376	*	*	4045	*	*	77
+       0	*	*	*	*	226	2783	4988	0	3198	
+
+P 78   6138	*	3932	3973	*	5646	4818	*	4696	*	*	2731	1109	5857	*	3712	4633	6107	*	*	78
+       6	*	7855	*	*	*	0	6097	0	1308	
+
+Q 79   4695	5251	*	4806	*	6716	3424	5263	4531	*	*	4987	*	2447	3658	3329	3639	5295	*	2133	79
+       13	*	6820	*	*	*	0	6099	0	1345	
+
+S 80   1447	*	4483	6031	*	4944	4360	*	5444	4401	*	*	7010	2255	5508	3306	4357	6123	*	5793	80
+       182	3079	*	2733	235	126	3581	6103	1511	1383	
+
+D 81   7031	*	2493	1951	*	3901	7077	6364	3983	*	4349	3590	5300	5732	*	3579	2958	5826	*	*	81
+       97	6880	4137	0	*	*	0	6176	1000	1333	
+
+R 82   7369	*	7292	3226	*	5818	3941	6053	2317	6595	*	2563	3685	3537	3818	2864	5042	*	*	*	82
+       280	5448	2704	1585	585	1251	786	6156	1065	1607	
+
+F 83   3079	*	3616	4753	3496	*	2726	4691	4193	2954	7280	4851	6484	4126	5170	5639	3524	5494	*	4861	83
+       495	2463	3196	133	3509	633	1493	6046	1760	2005	
+
+Q 84   *	6491	3317	4789	*	3569	2194	*	4695	4610	5697	3782	*	2903	*	3530	4604	*	*	3101	84
+       86	*	4119	*	*	1048	954	6022	0	2028	
+
+P 85   4086	*	5691	5435	4361	*	5102	*	4016	3097	*	4517	1201	*	5436	3748	5425	4547	*	*	85
+       34	*	5436	*	*	145	3382	6213	0	1867	
+
+Y 86   5446	*	3080	3857	5081	4089	3097	*	2862	5272	5455	3857	5455	3129	5976	4497	4854	*	*	3357	86
+       0	*	*	*	*	*	0	6168	0	1144	
+
+M 87   5372	*	6354	*	4533	6795	4026	1437	*	2531	3469	6517	7242	*	*	4318	5657	3060	*	6649	87
+       199	*	2958	*	*	1896	451	6148	0	1144	
+
+Q 88   *	5122	5568	4455	5578	5238	4669	*	1858	2597	7119	3357	4400	3155	3286	*	*	6664	*	*	88
+       226	2784	*	1008	992	300	2415	6008	2031	1715	
+
+E 89   3931	*	4643	2694	5820	*	5128	*	3190	5809	6447	3840	4115	4189	1838	4507	4365	*	*	*	89
+       0	*	*	*	*	*	0	6169	0	1089	
+
+V 90   5720	*	5915	4484	3794	6121	2945	4111	2846	3698	*	6447	3827	*	5207	2720	6163	2801	*	6470	90
+       0	*	*	*	*	415	2000	6169	0	1089	
+
+V 91   4291	*	*	5946	3628	*	*	2004	4786	2908	4713	*	*	*	4566	5162	4433	1844	*	*	91
+       0	*	*	*	*	*	0	6218	0	1000	
+
+P 92   5773	*	4325	2593	*	4285	5744	*	*	*	5205	3235	4745	4358	*	1245	4187	*	*	*	92
+       0	*	*	*	*	*	0	6218	0	1000	
+
+F 93   6434	6055	2753	5958	2628	5554	*	*	*	*	*	5323	*	6126	5032	1206	3201	6177	*	*	93
+       0	*	*	*	*	*	0	6218	0	1000	
+
+L 94   *	*	*	*	3338	*	*	2386	*	639	4925	*	*	*	*	*	*	5667	6055	*	94
+       27	5744	*	2000	415	*	0	6218	1040	1000	
+
+A 95   1197	*	5339	4891	*	2236	3946	*	6474	*	5517	6320	*	3818	5944	3853	6961	5773	*	*	95
+       217	2837	*	2000	415	*	0	6218	1653	1000	
+
+R 96   4715	6676	4539	2832	*	7075	*	5481	4287	6685	*	1586	*	4890	3381	2671	5104	5109	*	*	96
+       954	1047	*	2000	415	0	*	6218	3505	1000	
+
+L 97   *	*	*	*	5489	*	*	1564	*	1054	4257	*	*	*	5918	*	6341	3707	*	*	97
+       0	*	*	*	*	*	*	6217	0	0	
+
+S 98   7023	*	*	3967	5361	6321	5414	6129	2136	6301	4670	5156	*	3573	2261	2951	4845	4781	*	4233	98
+       107	*	3809	*	*	*	*	6217	0	0	
+
+N 99   6412	*	4352	5313	*	4754	4570	*	1867	3473	5975	3493	*	2743	3426	3116	6888	*	*	*	99
+       0	*	*	0	*	143	3405	6176	1296	1333	
+
+R 100  5144	*	2062	3400	*	6055	4854	*	2238	4300	4845	5782	*	3851	2988	6727	4118	6674	*	*	100
+       15	6584	*	1000	1000	*	0	6218	1004	1000	
+
+L 101  *	*	*	*	6287	*	*	4617	*	393	3023	*	*	*	*	*	*	4019	*	*	101
+       0	*	*	*	*	*	0	6218	0	1000	
+
+S 102  4300	*	5326	3936	*	6344	5142	5432	3310	4002	*	4680	*	2836	1999	2740	5289	5190	*	*	102
+       117	3682	*	771	1272	*	0	6222	1362	1000	
+
+T 103  4474	*	*	6130	*	3252	3774	*	3179	3982	*	4940	4138	2557	2071	5269	7020	5223	*	5004	103
+       62	6502	5017	1000	1000	*	0	6222	1023	1000	
+
+C 104  *	105	*	6475	*	*	*	*	*	*	*	*	*	*	*	4083	*	*	*	*	104
+       205	2919	*	1798	489	229	2768	6173	1638	1194	
+
+H 105  5625	*	6197	5744	6298	5300	1530	4070	2513	*	*	3887	4199	3329	3677	*	6064	6193	*	*	105
+       303	3131	3735	1835	475	*	0	6216	1632	1115	
+
+I 106  4975	2524	*	5593	6098	6793	3782	2931	5014	*	3963	3977	4491	7070	2289	3826	5135	5822	*	6116	106
+       0	*	*	*	*	99	3912	6049	0	1493	
+
+E 107  4492	3804	5556	3435	2336	*	3578	*	4974	3009	*	*	5274	4956	6898	3618	4011	4787	*	3535	107
+       81	6280	4582	1000	1000	*	0	6223	1041	1000	
+
+G 108  3732	2011	*	5730	2700	3567	4739	5951	7746	2372	7233	6950	5208	*	5554	3718	*	*	*	5112	108
+       0	*	*	*	*	1541	607	6108	0	1245	
+
+D 109  3874	*	4073	5209	*	2580	3385	4258	4618	*	*	3995	2573	6672	5460	2838	5560	*	7099	4113	109
+       371	*	2141	*	*	*	0	6165	0	1141	
+
+D 110  *	845	3655	5523	*	5540	5145	*	*	*	*	3956	*	5556	4014	2947	*	*	*	6054	110
+       216	3102	5454	235	2736	214	2860	5849	1362	2337	
+
+L 111  4032	*	2986	1286	*	5678	*	*	3058	6967	*	*	5205	2775	*	4931	4348	*	*	*	111
+       0	*	*	*	*	720	1348	6118	0	1353	
+
+H 112  7103	*	4222	2515	*	4397	2073	*	3798	*	*	2518	5070	5762	3481	3470	7774	*	*	*	112
+       133	7885	3581	2585	263	0	*	6164	1000	1104	
+
+I 113  2102	*	*	3372	*	*	6521	2981	2182	*	*	5425	3502	4139	4697	*	3961	4591	*	*	113
+       20	*	6211	*	*	448	1904	5967	0	1403	
+
+Q 114  *	*	4640	3576	3349	*	4349	*	4774	7099	2933	*	*	2772	3513	2429	2895	*	*	*	114
+       0	*	*	*	*	0	*	6151	0	1163	
+
+R 115  *	*	4328	2930	*	6833	4477	*	1828	5174	*	3356	4172	6915	2356	4091	5526	5741	*	*	115
+       209	*	2887	*	*	*	*	6222	0	0	
+
+N 116  1887	*	*	*	*	4595	5664	*	2620	4214	*	2964	5237	6121	3189	3576	4542	4424	*	*	116
+       0	*	*	*	*	0	*	5979	0	1645	
+
+V 117  6119	*	*	*	2941	*	*	1990	*	3616	4375	*	*	*	*	6147	4024	1743	4853	3942	117
+       0	*	*	*	*	*	*	6222	0	0	
+
+Q 118  4645	*	4895	2401	*	7245	*	*	2363	3815	*	3299	*	3487	3669	4233	2812	*	*	*	118
+       32	5526	*	1585	585	*	*	6222	1045	0	
+
+K 119  6412	*	5236	4136	4145	*	6516	4484	4727	3287	*	4210	*	1734	2777	4204	3993	4840	*	*	119
+       0	*	*	*	*	*	*	6222	0	0	
+
+L 120  *	*	*	*	2697	*	5668	1714	*	2194	3052	*	*	*	4761	*	*	2970	*	5823	120
+       29	*	5644	*	*	*	*	6222	0	0	
+
+K 121  *	*	*	4545	*	*	3579	4846	1050	2842	7226	4792	*	3455	5091	5712	6931	6103	*	6490	121
+       0	*	*	*	*	*	0	6164	0	1104	
+
+D 122  4688	*	2678	3165	*	*	*	5489	3814	*	*	3174	*	3909	2246	2463	5792	6319	*	*	122
+       0	*	*	*	*	0	*	6164	0	1104	
+
+T 123  2918	*	7318	3616	*	*	4010	4085	3586	4442	*	2925	*	4777	*	4820	1968	5326	*	4457	123
+       0	*	*	*	*	*	*	6222	0	0	
+
+V 124  5740	*	*	4851	1330	*	*	3715	*	5913	4274	*	*	*	*	5668	*	3490	*	1758	124
+       0	*	*	*	*	*	*	6222	0	0	
+
+K 125  *	*	3988	2142	*	6956	4170	7260	2107	*	*	3191	*	*	4662	3966	3136	*	*	3618	125
+       0	*	*	*	*	*	*	6222	0	0	
+
+K 126  5580	*	*	3229	*	4054	5595	*	1382	*	3887	*	*	1800	4237	*	*	*	*	*	126
+       42	5112	*	1326	734	*	*	6222	1106	0	
+
+L 127  *	*	*	5668	*	5595	5328	3543	5740	659	2562	*	*	5949	*	*	*	6475	*	*	127
+       0	*	*	*	*	*	*	6222	0	0	
+
+G 128  *	*	2508	2431	*	1873	6481	*	4378	5644	*	3587	7010	2648	*	5061	7425	*	*	*	128
+       838	1252	5595	190	3018	*	*	6222	3208	0	
+
+E 129  4808	*	3189	1648	*	3792	6890	*	4412	*	*	3154	5286	3286	4794	4070	5321	*	4835	6418	129
+       0	*	*	*	*	*	0	6174	0	1052	
+
+S 130  2364	*	4488	6339	*	*	*	*	1490	*	*	3184	*	4469	5003	3024	5522	4402	*	6112	130
+       0	*	*	1000	1000	0	*	6174	1052	1052	
+
+G 131  1659	*	*	*	*	769	*	*	*	*	*	5644	*	*	4410	*	*	5079	*	*	131
+       30	*	5584	*	*	*	*	6222	0	0	
+
+E 132  2841	4871	7057	4267	6688	6450	*	2230	3979	3096	4847	*	6631	6063	5483	*	3880	2306	*	*	132
+       0	*	*	*	*	0	*	6172	0	1052	
+
+I 133  6767	*	*	*	5407	*	*	2623	4653	4158	5343	3549	*	*	4578	7079	3271	2881	5514	1793	133
+       0	*	*	*	*	*	*	6220	0	0	
+
+K 134  *	*	*	*	*	*	*	*	36	*	*	*	*	6197	*	*	*	6473	*	*	134
+       0	*	*	*	*	*	*	6220	0	0	
+
+A 135  381	*	*	*	*	4516	*	*	*	4471	*	*	*	*	*	3250	*	4712	*	*	135
+       0	*	*	*	*	*	*	6220	0	0	
+
+I 136  *	*	*	*	3659	*	6197	1554	*	1996	2195	*	*	*	*	*	4833	3998	*	*	136
+       0	*	*	*	*	*	*	6220	0	0	
+
+G 137  4336	*	*	*	*	361	*	*	*	*	*	5750	*	*	6086	2852	*	*	*	*	137
+       0	*	*	*	*	*	*	6220	0	0	
+
+E 138  6197	*	5974	43	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	138
+       136	3472	*	4083	88	*	*	6220	1351	0	
+
+L 139  *	*	*	*	3379	*	*	3551	*	726	3635	*	*	*	*	5703	5301	3493	*	*	139
+       0	*	*	*	*	*	*	6018	0	0	
+
+D 140  *	*	340	4719	*	4411	*	*	*	*	*	3121	*	*	*	*	*	*	*	6627	140
+       0	*	*	*	*	*	*	6008	0	0	
+
+L 141  *	*	*	*	5109	*	*	962	*	2003	4726	5957	*	*	*	5175	3561	4576	*	*	141
+       0	*	*	*	*	*	*	6001	0	0	
+
+L 142  *	*	*	*	2461	*	*	6031	*	342	*	*	*	*	*	*	*	6169	*	*	142
+       0	*	*	*	*	*	*	6006	0	0	
+
+F 143  *	*	*	*	1391	*	*	3420	*	1061	*	*	*	*	*	*	*	5647	*	5274	143
+       0	*	*	*	*	*	*	6006	0	0	
+
+M 144  3342	6486	3920	4164	*	6031	5274	5753	5337	*	3846	2267	5384	3681	4687	2920	3160	*	*	5506	144
+       0	*	*	*	*	*	*	6006	0	0	
+
+S 145  3635	*	*	*	4957	5528	5673	*	*	*	*	*	*	*	5036	5786	6675	*	1087	1658	145
+       0	*	*	*	*	*	*	6006	0	0	
+
+L 146  *	*	*	*	*	*	*	1272	*	1614	2190	*	*	*	*	*	*	4644	*	*	146
+       0	*	*	*	*	*	*	6006	0	0	
+
+R 147  *	*	4175	972	5241	*	*	*	2525	*	*	5368	*	3279	4217	6504	*	5759	*	5361	147
+       0	*	*	*	*	*	*	5949	0	0	
+
+N 148  5412	*	3297	2369	*	*	5612	*	1785	5866	*	3210	*	4972	3732	4020	3708	*	*	*	148
+       0	*	*	*	*	*	*	5836	0	0	
+
+A 149  2158	4942	*	4402	1676	*	*	*	*	4644	6003	*	*	*	*	3670	4291	*	*	2336	149
+       0	*	*	*	*	*	*	5182	0	0	
+
+C 150  *	121	*	*	*	*	*	*	*	*	*	*	*	*	*	*	3636	*	*	*	150
+       48	4946	*	2322	322	*	*	3377	1000	0	
+
+I 151  4430	*	*	*	*	*	*	3187	*	3605	*	*	*	*	*	*	1534	1265	*	*	151
+       0	*	*	0	*	*	*	3390	0	0	
+
+//
+�HHsearch 1.5
+NAME  a9670fd5e42b822d83bb9b8a9eda5dc0
+FAM   
+FILE  a9670fd5e42b822d83bb9b8a9eda5dc0
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:21:05 2013
+LENG  143 match states, 143 columns in multiple alignment
+FILT  106 out of 692 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  4.9 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCCCCCCCCCCEEEEECCCCCEEEEEEEEECCCCEEEEEECCCCEEEEEEECCCEEEEEECCCCEEEEEEECCCCCEEEEEEECCHHHHH
+HHHHCCCCCCCCEECCCCCCCCCCCCCEEECCCCCCCCCCCCC
+>ss_conf PSIPRED confidence values
+9886657632101325676743467759898899999996899769999799999999950221137996599999998603779889799977999999
+9998599942218144523677877517864788640142339
+>Consensus
+pxxxxxgxknxxxxxxxxxxxxxexxxpxexexxgxVxxxlGnxxfxVxxxdGxxxlaxIpGKmRKrIwIxxGDxVlVexxxxdxxKgxIvxRyxxxqvk
+xLxkxgxxpxxfxxxexxxxxxxxxxxxxxxxxxxxxxxxxxx
+>a9670fd5e42b822d83bb9b8a9eda5dc0
+PKNKGKGGKNRRRGKNENESEKRELVFKEDGQEYAQVIKMLGNGRLEAMCFDGVKRLCHIRGKLRKKVWINTSDIILVGLRDYQDNKADVILKYNADEAR
+SLKAYGELPEHAKINETDTFGPGDDDEIQFDDIGDDDEDIDDI
+>gi|170291061|ref|YP_001737877.1| S1 IF1 family protein [Candidatus Korarchaeum cryptofilum OPF8]gi|170175141|gb|ACB08194.1| S1 IF1 family protein [Candidatus Korarchaeum cryptofilum OPF8]
+-----KRKEDREEVERSLDAEMEELLPADELEIFGRVLEPLGKGHFRVECIDNLIRICRVRGKLRgRRAWIKRGDIVLISLWPFQRTKGDIVVRYDRQQV
+EWLIEKGYIPR-dWATleeg-----------------------------
+>gi|20138737|sp|Q9HP87.2|IF1A2_HALSA RecName: Full=Translation initiation factor 1A 2; Short=aIF-1A 2
+---------------MSDESGRRNLRMPNDDEVFAVVKRHDGGNHVTLQCEDGKERMGRIPGRMKYRTWINEGDVVLAEPWDWQDEKANVEWRYSDQDAD
+QLREEGHIE----------------------------------
+>gi|198427951|ref|XP_002130036.1| PREDICTED: similar to eukaryotic translation initiation factor 1A domain containing [Ciona intestinalis]
+----ATKRKHVIKEVLEN------FSMPAPDQTIVKVLGNSGSNLHEVITPSGERFLASLPVKFRKNIWIKRGDYVITEP---iIeGDrvKGEIVRILYA
+QHIKEIKICKMWPKEFE------------------------------
+>gi|115450283|ref|NP_001048742.1| Os03g0114200 [Oryza sativa Japonica Group]gi|27476090|gb|AAO17021.1| Hypothetical protein [Oryza sativa Japonica Group]gi|108705834|gb|ABF93629.1| LOC496359 protein, putative, expressed [Oryza sativa Japonica Group]gi|113547213|dbj|BAF10656.1| Os03g0114200 [Oryza sativa Japonica Group]gi|125542126|gb|EAY88265.1| hypothetical protein OsI_09718 [Oryza sativa Indica Group]gi|215765975|dbj|BAG98203.1| unnamed protein product [Oryza sativa Japonica Group]gi|222624072|gb|EEE58204.1| hypothetical protein OsJ_09157 [Oryza sativa Japonica Group]
+----KAGRKNLRRACSEG------AVTLGEGESIMQVLALRGSNVIEVMDAKGVKSLALFPAKFQKSFWIKNGNFVVVDAsgRDQalEsGSkiACVVSQV
+LFHDQVRAMEKSEEWPAIFKS-----------------------------
+>gi|303285654|ref|XP_003062117.1| predicted protein [Micromonas pusilla CCMP1545]gi|226456528|gb|EEH53829.1| predicted protein [Micromonas pusilla CCMP1545]
+----------------------ELCPELNDGDAVCRVVELRGGNQVQVEKPDASTTLIRIPSKFSKVLWVRKGSHVLAHFEEDATSdaanggargskvTG
+ELLRVLYAEQIKELRRARpeAWPERFG------------------------------
+>gi|332250254|ref|XP_003274267.1| PREDICTED: probable RNA-binding protein EIF1AD-like [Nomascus leucogenys]
+---------------------LGEHIVPSDQQQIVRVKRQP--SLGDRTTSYGFGF------PYCKQaclpfLFLPTGDFLIVDPIEEGeKVKAEISFVL
+CKDHVRSLQKEGFWPEGFS------------------------------
+>gi|322511287|gb|ADX06597.1| putative eukaryotic translation initiation factor eIF-1A [Organic Lake phycodnavirus]gi|322511357|gb|ADX06665.1| putative eukaryotic translation initiation factor eIF-1A [Organic Lake phycodnavirus]
+--------------------TTNKLRLSnDEDELYAVVTKMLGNSQCHVVTLHGQTLLCIIRkkftGKHKHQHFLKSGSWVLVGLRNWEtiqsDkmAKCD
+LLECYSENDKQTICKQSDLNVETLIQE---------------------------
+>gi|310831445|ref|YP_003970088.1| hypothetical protein crov455 [Cafeteria roenbergensis virus BV-PW1]gi|309386629|gb|ADO67489.1| hypothetical protein crov455 [Cafeteria roenbergensis virus BV-PW1]
+PGQKQKGKKNVRRTKT-----RFELIEPSKGQLIAEVEDTHGGYPPRFSCktVDGDIIIAPIQGSIMkgpKRVLVKKDNLVLLVPIDFTTGKEgttsyYI
+HHVYTSEDRHQLEKKGFLEKKDKISDA--------------------------
+>gi|330819201|ref|YP_004348063.1| Translation initiation factor IF-1 [Burkholderia gladioli BSR3]gi|327371196|gb|AEA62551.1| Translation initiation factor IF-1 [Burkholderia gladioli BSR3]
+------------------------------LELDGVVDEVLPDSRYRVTLENGAVVGAYASGRLKKnHIRILAGDRVRLEMSMYDLTKGRINYRHKDERA
+--------------------------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+P 1    *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	2762	0	0	
+
+K 2    2794	*	*	*	*	2313	*	*	612	*	*	*	*	*	*	*	*	*	*	*	2
+       0	*	*	*	*	*	*	2762	0	0	
+
+N 3    *	*	*	*	*	*	*	*	2794	*	*	612	*	2313	*	*	*	*	*	*	3
+       0	*	*	*	*	*	*	2762	0	0	
+
+K 4    *	*	*	*	*	*	*	*	572	*	2258	*	3079	*	*	*	*	*	*	*	4
+       0	*	*	*	*	*	*	3023	0	0	
+
+G 5    3602	*	*	*	*	1288	*	*	2230	*	*	*	*	3223	*	2411	*	*	*	*	5
+       0	*	*	*	*	*	*	4038	0	0	
+
+K 6    3097	*	3856	*	*	*	3831	*	1183	*	*	*	*	*	3294	*	2961	3778	*	*	6
+       0	*	*	*	*	*	*	4495	0	0	
+
+G 7    *	*	*	*	*	791	3760	*	3856	*	*	*	*	*	2277	*	*	*	*	3778	7
+       0	*	*	*	*	*	*	4495	0	0	
+
+G 8    3760	*	*	*	*	1640	*	*	2720	3778	*	3856	*	*	1682	*	*	*	*	*	8
+       0	*	*	*	*	*	*	4495	0	0	
+
+K 9    *	*	*	3898	*	*	*	*	480	*	*	3856	*	*	*	3778	3760	*	*	*	9
+       0	*	*	*	*	*	*	4495	0	0	
+
+N 10   *	*	3898	*	*	*	2844	*	*	3760	*	1039	*	*	3778	2640	*	*	*	*	10
+       0	*	*	*	*	*	*	4495	0	0	
+
+R 11   *	*	*	*	3308	3778	*	*	*	3097	*	*	*	*	1999	4174	3760	2159	*	3239	11
+       0	*	*	*	*	*	*	4495	0	0	
+
+R 12   *	*	*	3898	*	*	3831	3856	1543	*	*	*	*	3760	1409	*	*	*	*	*	12
+       0	*	*	*	*	*	*	4495	0	0	
+
+R 13   2546	*	3778	3898	*	*	*	*	2443	*	*	*	*	3856	1198	*	*	*	*	*	13
+       88	*	4073	*	*	*	*	4495	0	0	
+
+G 14   4030	*	4042	2268	*	1805	*	*	3680	3747	*	*	*	*	*	3794	3495	3816	*	*	14
+       169	3177	*	1000	1000	0	*	4423	1092	1099	
+
+K 15   2531	4382	*	4759	*	4812	*	*	1248	*	*	*	5201	3993	4537	*	4893	3075	*	*	15
+       98	3932	*	1736	515	*	*	4740	1027	0	
+
+N 16   3574	*	5185	3763	*	3897	*	*	*	2951	3420	2026	*	5435	3577	4511	3599	4436	*	*	16
+       136	*	3479	2807	222	*	*	4813	1000	0	
+
+E 17   3475	*	*	1524	*	4333	*	4260	5150	3871	*	3314	5060	4499	5053	2652	*	*	*	*	17
+       60	*	4613	*	*	*	0	4634	0	1122	
+
+N 18   4604	*	3401	2944	*	3407	*	*	5113	3660	3515	2249	3928	4653	5520	5465	4732	4419	*	*	18
+       506	5473	1872	245	2676	704	1373	4598	1132	1266	
+
+E 19   5133	*	2390	1507	*	3302	*	*	*	5018	*	3990	4112	2989	4328	*	*	*	*	*	19
+       45	*	5018	*	*	*	0	3961	0	1485	
+
+S 20   3945	*	3291	2835	*	3465	4980	*	5104	*	3511	2761	*	3854	*	2485	5066	5132	*	*	20
+       0	*	*	*	*	1815	483	3994	0	1688	
+
+E 21   3490	*	*	2304	*	3690	*	*	4919	3446	*	4520	3801	2908	*	3253	2909	5678	*	*	21
+       42	*	5133	*	*	2157	366	4268	0	1485	
+
+K 22   5260	*	3881	4225	*	*	*	4189	2666	2418	4059	5296	6157	*	3022	4035	4123	3503	*	5393	22
+       46	*	5002	3170	170	2580	264	5073	1002	1402	
+
+R 23   5687	*	3618	3229	4902	3018	*	4090	4010	*	*	3110	*	*	1921	*	3450	4530	*	*	23
+       0	*	*	*	*	2716	238	5381	0	1394	
+
+E 24   5428	*	2822	1268	*	5982	*	*	4164	5239	*	4271	5847	4527	2602	5387	5571	*	*	*	24
+       72	4359	*	0	*	0	*	5384	1053	1328	
+
+L 25   4033	4647	6183	*	4593	5862	5442	5587	*	1474	4195	*	*	*	*	5535	5083	2511	*	2819	25
+       25	5862	*	0	*	*	*	5546	1014	0	
+
+V 26   *	*	5471	4161	5711	*	*	3310	6144	4836	*	*	2177	4940	2050	5109	4784	2515	*	5866	26
+       0	*	*	*	*	*	*	5546	0	0	
+
+F 27   *	*	*	2358	4900	*	*	5161	3691	1944	3417	5908	4877	*	4183	6183	3548	3775	*	4856	27
+       41	5151	*	2807	222	*	*	5546	1120	0	
+
+K 28   2891	*	*	*	*	*	*	5711	3540	2857	*	5151	829	*	*	5007	*	*	*	*	28
+       243	2690	*	800	1233	*	*	5546	1446	0	
+
+E 29   3880	*	2778	1974	*	3474	*	5496	3446	*	*	3991	5755	6450	4961	3369	3424	*	6281	*	29
+       42	5111	*	570	1615	*	*	5607	1021	0	
+
+D 30   4973	*	2445	1110	6045	5752	*	*	3700	6472	*	3777	3479	*	*	5559	*	6007	*	*	30
+       85	4129	*	1000	1000	*	*	5607	1051	0	
+
+G 31   *	*	3232	5020	4907	1724	*	2429	*	4099	5282	3849	*	5175	4941	4162	*	4305	5577	*	31
+       19	6258	*	0	*	*	*	6167	1000	0	
+
+Q 32   5933	*	4008	1482	6976	*	6486	5031	3854	5672	6145	5625	*	1894	5839	4874	4051	6704	*	*	32
+       13	6835	*	2585	263	*	*	6203	1000	0	
+
+E 33   4237	6719	5979	3789	4592	*	5420	3490	*	3023	2840	5538	*	4293	*	3726	4401	2075	*	*	33
+       0	*	*	*	*	*	*	6203	0	0	
+
+Y 34   *	*	4228	2835	3600	5336	*	2212	5884	3284	*	*	7267	4108	*	4826	4807	3713	*	2717	34
+       32	*	5500	*	*	*	*	6203	0	0	
+
+A 35   2270	3708	*	*	*	971	*	*	*	*	4785	*	*	6042	*	6089	*	2837	*	*	35
+       0	*	*	*	*	*	0	6189	0	1029	
+
+Q 36   *	5558	*	5484	*	6654	*	3001	2460	4744	*	*	*	3107	2646	5377	3650	2230	*	6669	36
+       0	*	*	1000	1000	0	*	6189	1029	1029	
+
+V 37   5178	6167	*	*	*	*	*	2365	*	*	*	*	*	*	*	*	6408	410	*	*	37
+       0	*	*	*	*	*	*	6203	0	0	
+
+I 38   5927	*	5920	3249	*	*	*	2697	3921	2556	6080	*	*	6960	5557	4305	2410	2405	*	*	38
+       0	*	*	*	*	*	*	6203	0	0	
+
+K 39   3648	6291	3853	2068	*	4722	5686	5540	2231	6045	6853	7619	*	3598	3243	3926	5933	6835	*	*	39
+       0	*	*	*	*	*	*	6203	0	0	
+
+M 40   2703	*	*	6010	*	5497	5277	4254	6281	3002	2743	5787	4084	5710	*	2639	3944	3039	*	*	40
+       0	*	*	*	*	*	*	6203	0	0	
+
+L 41   7229	5418	7323	5660	5541	6543	5037	5834	4303	1180	6045	5619	4871	5258	2487	5909	*	4846	*	4441	41
+       28	*	5710	*	*	*	*	6203	0	0	
+
+G 42   *	*	*	*	*	586	5826	*	6532	*	*	5124	2478	6579	5804	4958	4761	*	*	*	42
+       0	*	*	*	*	*	0	6134	0	1017	
+
+N 43   3060	6149	4287	6656	6688	2084	6265	*	7039	*	*	1530	*	5482	*	3017	5137	*	6755	6821	43
+       15	*	6579	*	*	0	*	6134	0	1017	
+
+G 44   3041	6728	3390	5346	*	2225	*	*	5097	4983	*	1906	*	5183	6870	3962	4160	*	*	4281	44
+       11	7086	*	1000	1000	*	0	6188	1000	1000	
+
+R 45   *	*	5647	5033	4274	*	3672	4711	3773	2513	3524	5039	5501	4207	2802	4694	4784	3359	6729	6163	45
+       0	*	*	*	*	*	0	6188	0	1000	
+
+L 46   6231	5679	*	*	1490	5708	3596	4259	*	3346	5283	*	5501	*	*	*	*	2613	*	2760	46
+       9	7261	*	1000	1000	*	0	6188	1000	1000	
+
+E 47   6760	*	4047	1904	7002	5705	5679	5801	2807	3797	5396	6316	*	4114	2309	6355	4773	6058	6097	6706	47
+       0	*	*	*	*	*	0	6188	0	1000	
+
+A 48   4410	5897	*	*	5501	5622	*	3140	*	4544	*	*	*	*	5708	*	*	477	*	*	48
+       0	*	*	*	*	*	0	6188	0	1000	
+
+M 49   6099	6097	5516	1979	*	*	5996	4107	3915	3520	4083	*	6139	4019	3250	4840	3794	3615	*	4659	49
+       0	*	*	2585	263	0	*	6188	1000	1000	
+
+C 50   *	1564	4485	6277	5070	*	6303	5829	6083	1498	*	4807	6887	*	6002	*	3629	6582	6534	6200	50
+       32	5505	*	1000	1000	*	*	6203	1075	0	
+
+F 51   2943	*	3190	2268	4891	6002	*	6096	5180	4041	4932	4644	3388	5446	6619	3163	4595	5273	*	5625	51
+       45	5036	*	454	1890	*	*	6203	1254	0	
+
+D 52   4812	*	1290	5397	6051	5029	5677	5622	5556	*	*	1572	*	6608	*	4655	5690	*	*	5704	52
+       48	4922	*	1294	756	0	*	6205	1076	1000	
+
+G 53   5188	*	4545	3946	*	540	5047	*	4870	*	*	3995	*	5515	*	5147	*	*	*	*	53
+       30	5625	*	4459	67	*	*	6203	1120	0	
+
+V 54   *	5661	3843	2968	5041	4754	3006	4019	2736	4883	6844	4935	5747	4285	5464	4349	4518	3163	*	7174	54
+       8	7422	*	1000	1000	*	*	6203	1000	0	
+
+K 55   6556	*	5249	2665	*	5710	*	3541	3428	5724	6619	4744	6111	3275	3695	5689	2249	3271	*	6291	55
+       12	6956	*	0	*	*	*	6203	1000	0	
+
+R 56   6385	6010	*	*	3998	6534	*	2528	*	4214	5480	*	*	6316	1724	5146	3938	2374	*	4386	56
+       28	*	5710	*	*	*	*	6203	0	0	
+
+L 57   6535	*	4743	*	*	6889	5596	3076	4693	1102	3452	5960	*	*	4151	*	3483	4421	*	*	57
+       0	*	*	*	*	*	0	6134	0	1017	
+
+C 58   1259	2173	*	*	*	2564	*	5341	*	5596	*	*	*	*	*	6776	5511	3120	*	*	58
+       0	*	*	*	*	*	0	6134	0	1017	
+
+H 59   6565	6936	*	6260	6439	*	2524	4863	4862	4006	4869	*	5466	4752	1967	2908	6823	4299	*	3193	59
+       0	*	*	*	*	*	0	6134	0	1017	
+
+I 60   4183	*	*	*	4603	*	*	1127	*	2559	3166	*	*	*	*	*	5926	2754	*	*	60
+       0	*	*	*	*	*	0	6134	0	1017	
+
+R 61   3303	6999	*	*	*	6274	*	*	4438	*	*	*	1361	5466	2454	2129	6848	*	*	*	61
+       44	5597	6755	2000	415	*	0	6134	1033	1017	
+
+G 62   4324	6669	*	6279	*	488	*	*	6168	*	*	4534	5367	5121	5981	4719	4593	6768	*	*	62
+       0	*	*	*	*	602	1551	6132	0	1050	
+
+K 63   4780	*	*	6316	*	*	*	*	545	*	*	6284	5693	6856	2536	4250	*	*	*	*	63
+       0	*	*	*	*	*	0	6203	0	1000	
+
+L 64   5996	*	6281	*	2172	*	5668	2818	7016	2429	1679	*	*	*	6275	*	*	*	*	3844	64
+       0	*	*	*	*	0	*	6203	0	1000	
+
+R 65   6466	5710	*	*	*	*	5385	*	1851	*	4732	5320	*	4877	1034	4935	6010	5491	*	6291	65
+       43	5080	*	1180	840	*	*	6203	1145	0	
+
+K 66   5316	*	*	*	6466	6645	4428	5467	988	5229	4525	4588	6795	6865	2366	6145	*	6844	*	4866	66
+       700	1379	*	0	*	*	*	6203	2193	0	
+
+K 67   5413	*	*	6002	3936	*	4453	6200	2671	4615	6719	3836	*	4696	1648	3923	4508	5413	*	3880	67
+       28	5710	*	2322	322	*	*	6203	1017	0	
+
+V 68   5055	*	*	*	5656	*	5682	1194	*	3253	4656	*	*	5625	6795	6190	4502	1933	*	*	68
+       0	*	*	*	*	*	*	6203	0	0	
+
+W 69   *	*	*	*	4363	*	5316	*	3134	5031	6167	*	*	*	2254	*	6322	*	999	4463	69
+       13	6795	*	3000	193	*	*	6203	1000	0	
+
+I 70   *	*	*	*	6002	*	*	899	*	3460	3478	*	*	*	*	6661	*	1956	*	*	70
+       0	*	*	*	*	*	*	6203	0	0	
+
+N 71   6127	*	*	6281	7236	5491	5282	4054	2029	2329	5224	4253	4911	4658	2393	6698	7465	4151	*	*	71
+       0	*	*	*	*	*	*	6203	0	0	
+
+T 72   3468	*	6281	2338	*	*	*	5230	4311	4890	6492	5123	2517	4956	2405	5682	4080	3756	*	*	72
+       21	*	6111	*	*	*	*	6203	0	0	
+
+S 73   *	*	4042	*	*	256	6477	*	5663	*	*	4360	*	*	6081	7028	*	*	*	*	73
+       0	*	*	*	*	*	0	6174	0	1000	
+
+D 74   *	*	375	*	*	4407	*	*	*	*	6522	3839	*	6540	*	4853	4165	*	*	*	74
+       0	*	*	*	*	*	0	6174	0	1000	
+
+I 75   *	*	*	5496	3105	*	4687	2939	3542	3145	6787	*	6156	5542	3022	6592	4549	3049	5659	2920	75
+       0	*	*	*	*	*	0	6174	0	1000	
+
+I 76   6186	*	*	*	*	*	*	4027	*	3674	*	*	*	*	*	5542	*	277	*	*	76
+       21	6081	*	0	*	0	*	6174	1000	1000	
+
+L 77   *	*	4051	5834	*	*	*	1929	3596	1409	5405	*	*	6108	4931	*	3904	3999	*	*	77
+       0	*	*	*	*	*	*	6203	0	0	
+
+V 78   3971	4351	*	*	5658	*	*	3279	*	3543	5269	*	*	*	*	6145	5763	689	*	*	78
+       0	*	*	*	*	*	*	6203	0	0	
+
+G 79   3480	*	3188	1431	*	4085	6083	6582	4798	5186	*	*	*	4396	4053	3804	4802	3898	*	*	79
+       0	*	*	*	*	*	*	6203	0	0	
+
+L 80   4861	*	6324	4838	4147	*	*	3513	4169	2170	4195	*	1718	*	6385	*	*	2990	*	*	80
+       89	4288	6808	1190	832	*	*	6203	1227	0	
+
+R 81   6712	*	4831	5125	*	6282	6863	2915	*	6732	*	*	6804	*	2505	1731	4391	*	2125	*	81
+       0	*	*	*	*	*	0	6203	0	1022	
+
+D 82   3876	6110	2528	2121	6033	5157	*	5372	5418	6051	*	5171	1697	5751	*	4966	6254	6909	*	*	82
+       47	*	4960	*	*	*	0	6203	0	1022	
+
+Y 83   6252	*	5151	2869	2292	4365	6767	5131	6431	5960	*	5061	*	5207	6411	6793	5625	4530	4424	1662	83
+       115	3709	*	577	1601	272	2539	6180	1502	1128	
+
+Q 84   4818	*	1600	2716	*	3120	*	6799	7201	6272	*	5131	6406	2543	4753	4031	5502	*	*	7246	84
+       347	2387	5480	508	1752	*	0	6196	1889	1000	
+
+D 85   6246	*	1809	3691	5636	4144	*	*	4738	2296	4570	4984	3458	*	4912	4110	4312	*	*	*	85
+       248	2662	*	849	1169	1812	483	6181	1671	1059	
+
+N 86   4701	*	3181	2898	5663	4184	5606	*	3554	*	*	3110	*	*	6638	2815	2894	2897	*	*	86
+       178	3105	*	1946	433	605	1546	6171	1474	1174	
+
+K 87   5421	*	6144	7107	*	*	6484	6269	833	5310	6373	6784	*	4436	2535	6298	3613	6593	*	*	87
+       16	*	6540	*	*	*	0	6189	0	1029	
+
+A 88   2087	3083	*	5480	*	932	6038	6251	*	*	*	*	*	*	5542	6292	6075	5468	*	*	88
+       33	5480	*	2040	402	1671	544	6173	1109	1064	
+
+D 89   5364	5986	1719	2416	*	*	*	*	6144	5388	*	5922	5548	*	1741	4873	5391	6216	*	5484	89
+       40	5176	*	1000	1000	*	0	6189	1055	1029	
+
+V 90   *	*	*	*	*	*	5548	456	*	3849	*	*	*	*	*	*	*	2471	*	*	90
+       19	6293	*	2000	415	*	0	6189	1000	1029	
+
+I 91   *	5066	6279	4243	*	*	5484	2019	*	3467	*	5813	*	*	5992	4345	3423	1472	6843	*	91
+       0	*	*	2807	222	0	*	6189	1029	1029	
+
+L 92   *	5555	*	3915	3338	6704	2872	*	4497	4301	*	*	*	4949	3675	4951	*	7051	3207	1674	92
+       0	*	*	*	*	*	*	6203	0	0	
+
+K 93   *	5682	*	*	*	*	*	3441	2886	*	*	6002	5557	*	924	6281	*	2504	*	*	93
+       9	*	7265	*	*	*	*	6203	0	0	
+
+Y 94   5787	*	*	7016	3604	*	4232	6097	4813	1743	6946	*	6691	5941	6441	*	*	5604	*	1239	94
+       0	*	*	*	*	0	*	6160	0	1000	
+
+N 95   *	5663	5107	4630	4888	5998	6695	6439	2707	4684	5228	4717	4636	4169	3100	3503	2291	*	*	3670	95
+       16	6510	*	0	*	*	*	6109	1006	0	
+
+A 96   3849	*	4160	3199	*	5463	4474	*	2533	4658	*	3858	2719	4735	3783	3333	6123	4604	*	*	96
+       0	*	*	*	*	*	*	5828	0	0	
+
+D 97   3897	*	1722	2032	*	5759	*	*	4967	*	*	3817	3373	3550	5527	5385	5117	7058	*	*	97
+       0	*	*	*	*	*	*	5775	0	0	
+
+E 98   *	*	2990	1796	*	5175	3734	*	*	5493	*	4149	*	1458	5182	6235	*	*	*	*	98
+       0	*	*	*	*	*	*	5689	0	0	
+
+A 99   2403	*	*	*	*	*	*	1869	4309	5272	*	*	5182	*	4751	5978	4530	1637	6028	*	99
+       0	*	*	*	*	*	*	5689	0	0	
+
+R 100  *	*	2572	4098	*	5367	3931	*	1546	5003	*	3915	*	5104	2313	6227	*	*	*	*	100
+       0	*	*	*	*	*	*	5531	0	0	
+
+S 101  4277	*	*	2452	6106	5587	4830	4602	4198	5912	*	*	*	2792	4494	3395	3981	*	2524	4014	101
+       0	*	*	*	*	*	*	5531	0	0	
+
+L 102  *	*	*	*	*	*	*	3035	5416	399	4592	*	*	*	*	*	*	*	*	4194	102
+       34	*	5416	*	*	*	*	5531	0	0	
+
+K 103  6081	5025	6315	4274	5887	*	*	4228	1827	5751	*	6723	*	4524	1771	6201	4195	3477	5989	*	103
+       0	*	*	*	*	0	*	5489	0	1009	
+
+A 104  4045	*	4246	2477	*	5765	*	6057	1273	*	*	5577	*	4196	2751	*	5373	6409	*	*	104
+       31	5569	*	1000	1000	*	*	5531	1030	0	
+
+Y 105  4459	6057	4272	2690	*	5696	*	5927	2273	4132	3337	3728	*	3303	5376	3265	*	*	*	5091	105
+       0	*	*	*	*	*	*	5531	0	0	
+
+G 106  5959	*	5137	3808	*	965	4637	5416	3323	*	*	3493	*	*	4206	4376	*	5877	*	*	106
+       60	4626	*	629	1500	*	*	5531	1045	0	
+
+E 107  4747	6017	3884	2796	3968	*	3645	3611	4469	3236	5111	*	*	4704	5701	5855	5543	3740	*	2658	107
+       25	5855	*	0	*	*	*	5543	1014	0	
+
+L 108  *	*	*	*	4904	*	*	1942	*	1820	*	*	*	*	*	*	*	4306	1425	*	108
+       27	*	5762	*	*	*	*	5543	0	0	
+
+P 109  *	*	4884	3714	*	*	*	*	4437	*	*	3552	682	5701	*	3251	6523	*	*	*	109
+       60	4607	*	391	2074	*	0	5554	1047	1099	
+
+E 110  4592	*	3626	2143	6320	*	*	*	1867	5394	*	4850	*	3904	3681	3378	5797	4408	*	*	110
+       75	6383	4699	0	*	0	*	5556	1000	1099	
+
+H 111  3981	5534	3351	2040	5661	3587	5953	4465	4711	5423	5930	4914	*	4560	3356	5612	4360	4170	*	4891	111
+       43	*	5096	0	*	0	*	5563	1183	1110	
+
+A 112  5662	*	3375	*	758	*	*	4514	*	4765	*	*	*	*	5600	*	3640	3965	4407	*	112
+       94	4955	5027	1000	1000	0	*	5455	1000	1002	
+
+K 113  3434	*	3587	2299	5066	4256	*	3539	2742	3656	*	5340	*	*	3092	5058	*	5700	*	4937	113
+       135	3481	*	3239	162	*	0	5373	1244	1099	
+
+I 114  *	*	2584	*	*	*	*	1722	*	2435	*	4077	*	*	*	2843	3369	4329	*	*	114
+       194	2991	*	2351	315	*	0	4791	1110	1099	
+
+N 115  3016	*	*	*	3773	4131	*	*	3868	3898	*	2181	*	3311	*	2222	3736	*	*	*	115
+       0	*	*	*	*	*	0	4093	0	1099	
+
+E 116  *	*	2505	772	*	*	*	*	3665	*	*	*	*	3613	*	*	3688	*	*	*	116
+       0	*	*	*	*	*	0	3991	0	1099	
+
+T 117  2402	*	*	2048	*	*	*	*	*	*	*	3010	*	*	*	*	1169	*	*	*	117
+       0	*	*	*	*	*	0	2870	0	1099	
+
+D 118  *	*	1054	1815	*	*	*	*	*	*	*	*	*	*	*	*	*	2094	*	*	118
+       0	*	*	*	*	*	0	2151	0	1099	
+
+T 119  *	*	*	1815	*	*	*	*	*	*	*	*	*	*	*	*	2230	992	*	*	119
+       0	*	*	*	*	*	0	2151	0	1099	
+
+F 120  *	*	*	*	1160	1897	*	*	*	*	*	*	*	*	*	1815	*	*	*	*	120
+       385	2094	*	1585	585	*	0	2151	1168	1099	
+
+G 121  1815	*	*	2094	*	1054	*	*	*	*	*	*	*	*	*	*	*	*	*	*	121
+       0	*	*	*	*	*	0	2151	0	1099	
+
+P 122  *	*	*	992	*	*	*	*	*	*	*	*	2230	1815	*	*	*	*	*	*	122
+       1008	1897	2094	1000	1000	*	0	2151	1120	1099	
+
+G 123  *	*	1561	*	*	597	*	*	*	*	*	*	*	*	*	*	*	*	*	*	123
+       0	*	*	2807	222	0	*	1928	1099	1311	
+
+D 124  *	*	1351	*	*	2102	*	*	*	*	*	*	*	*	2403	2426	*	*	*	*	124
+       0	*	*	*	*	*	*	2386	0	0	
+
+D 125  *	*	678	2403	*	*	*	*	*	*	*	*	*	*	*	2426	*	*	*	*	125
+       0	*	*	*	*	*	*	2386	0	0	
+
+D 126  *	*	973	*	*	*	*	*	*	*	*	*	*	*	*	2015	*	2041	*	*	126
+       0	*	*	*	*	*	*	2054	0	0	
+
+E 127  *	*	*	1075	*	1847	*	*	*	*	*	*	*	*	*	2015	*	*	*	*	127
+       410	2015	*	0	*	*	*	2054	1168	0	
+
+I 128  *	*	*	*	1847	*	*	2111	*	*	*	*	*	*	*	2015	*	2041	*	*	128
+       402	*	2041	*	*	*	*	2054	0	0	
+
+Q 129  *	*	1596	1484	*	*	*	*	*	*	*	*	*	1682	*	*	*	*	*	*	129
+       0	*	*	*	*	0	*	1753	0	1099	
+
+F 130  *	*	*	*	410	*	*	*	*	2015	*	*	*	*	*	*	*	*	*	*	130
+       0	*	*	*	*	*	*	2054	0	0	
+
+D 131  1847	*	2111	*	*	*	*	*	*	*	*	*	*	*	2041	2015	*	*	*	*	131
+       0	*	*	*	*	*	*	2054	0	0	
+
+D 132  *	*	979	*	*	*	*	*	*	*	*	*	*	*	*	1022	*	*	*	*	132
+       979	1022	*	1585	585	*	*	1382	1168	0	
+
+I 133  *	*	1022	*	*	*	*	979	*	*	*	*	*	*	*	*	*	*	*	*	133
+       0	*	*	*	*	*	*	1382	0	0	
+
+G 134  *	*	1022	*	*	979	*	*	*	*	*	*	*	*	*	*	*	*	*	*	134
+       0	*	*	*	*	*	*	1382	0	0	
+
+D 135  *	*	979	*	*	*	*	*	*	*	*	*	*	*	*	1022	*	*	*	*	135
+       979	1022	*	3170	170	*	*	1382	1168	0	
+
+D 136  *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	136
+       0	*	*	*	*	*	*	1000	0	0	
+
+D 137  *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	137
+       0	*	*	*	*	*	*	1000	0	0	
+
+E 138  *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	138
+       0	*	*	*	*	*	*	1000	0	0	
+
+D 139  *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	139
+       0	*	*	*	*	*	*	1000	0	0	
+
+I 140  *	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	140
+       0	*	*	*	*	*	*	1000	0	0	
+
+D 141  *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	141
+       0	*	*	*	*	*	*	1000	0	0	
+
+D 142  *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	142
+       0	*	*	*	*	*	*	1000	0	0	
+
+I 143  *	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	143
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  aa7797cb86715b5f00dd396459cdd380
+FAM   
+FILE  aa7797cb86715b5f00dd396459cdd380
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 14:26:11 2013
+LENG  191 match states, 191 columns in multiple alignment
+FILT  154 out of 304 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  6.7 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CHHHHHHHHHHHHCCCCCCCCCCCCCCCCCCCEEEEEECCCCCCCCCCCCCCCCCCCCCCEEEEEECCCCCCCCCCCEEECCEEEECCCEEEEEEEEEEE
+EECCCCCCCCCCCEEEEEEEEECCCCCCCHHHHHCCCCCCCCCCCCCCEEEEEECCEEEECCCCEEEEEECCCCCEECCCCCEEEEEEEEC
+>ss_conf PSIPRED confidence values
+9467777765552033146898755467898379998068756654476554333378735786547887522158589899999753709999999999
+6325886555687028999997789886236762567775079887351677660238925999999997895507118997199999929
+>Consensus
+xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxkpaaHLxgxxxxxxxxxxxxxxxxxxxxxxxlxWxxxxxgxaxxxgxxxxxgxLxVxxxGlYyVYSQVxF
+xxxxxxxxxxxxxxxlxhxvxxxxxxxxxxxLlxxxxtxcxsxxxxxxxxsxyxGgvfxLxxGDxLxVxvsxxxxvxxxxxxTfFGxfxlx
+>aa7797cb86715b5f00dd396459cdd380
+MILRTSEETISTVQEKQQNISPLVRERGPQRVAAHITGTRGRSNTLSSPNSKNEKALGRKINSWESSRSGHSFLSNLHLRNGELVIHEKGFYYIYSQTYF
+RFQEEIKENTKNDKQMVQYIYKYTSYPAPILLMKSARNSCWSKDAEYGLYSIYQGGIFELKENDRIFVSVTNEHLIDMDHEASFFGAFLVG
+>gi|47225327|emb|CAG09827.1| unnamed protein product [Tetraodon nigroviridis]
+-------------------------ENPTCKKFCHLEICNLKECKTKPPKS--FNVSAANYLQWDIQ---HSFLRDIGYyHNVWLTVQQSGDYYVYSRVT
+FSKGD-------PRVPLASMIKMrKNeTDKEEKTVMQAYCSLTdQSGTQIPQLCTATQGEVVTLESGNQLSVWVQDLSLVDYEEGATTFGMYKL-
+>gi|310788577|gb|ADP24261.1| tumor necrosis factor alpha [Haliotis diversicolor]
+---------------------------NLLKPVAYLTGLDFDGRIE---SE-----NDTFVRNWVPFVahGGRQLMsNGMRYDHGSIIVPTPGVYAVESH
+VKFYTENNR--RRETEIDFHHSIMRYNAiKQTSQPALADIMSENKNdvIEGGCLEYSSNIHGLLELNAGDQLIVKVSHLKPLQHDRDWHYFGLYMV-
+>gi|197210937|gb|ACH48393.1| Eda [Maylandia zebra]
+-----------------------------QPAVVHLQGQETT---IQVR-EDLS---QGILKNWKMVS-IHHRVFKMHSRTGQLEVLLDGVYFIYSQVev
+YYLNFTD----------IASY--D--VMVDSSPFLRCTCSIET---GQRKFNTCYTAGVSPLRAGQKIYIRIAHEYtLINMTNHTTFLGSVRLG
+>gi|115719327|ref|XP_001204312.1| PREDICTED: hypothetical protein [Strongylocentrotus purpuratus]gi|115801769|ref|XP_799917.2| PREDICTED: hypothetical protein [Strongylocentrotus purpuratus]
+-------------------------MRQEGEPSAHVVPLISPNAQQNNNFY--P---TSAWFVWTDQV--NRISHaTIPLSNtgKFLLAPHSGYYFIYSQ
+VTLES--CNND--SDTDGRGHSLYVKTTcgRDTEQELTYTVTTPY-NRNLGCTYDTGYIGGVYYLEQHDHVGVKPYvppgsMRSRIFLKLSNSYFGMILI
+S
+>gi|198413177|ref|XP_002126703.1| PREDICTED: similar to tumor necrosis factor [Ciona intestinalis]
+------------------------------------------------------------VVVWEHAN-GAGTTsrKGFDVSGGNITVNSEGVYYMYLHT
+TFRTN---GNPRTRSRRISHKvLVNNS----PIELLGEKRDLGEDDT----IQTLDSLMTYVLEKENRLTIELEKPDYMSVstNPSETYFGIFKL-
+>gi|68534978|ref|NP_001020390.1| tumor necrosis factor receptor superfamily member 8 [Sus scrofa]gi|61338439|gb|AAX43996.1| tumor necrosis factor ligand superfamily member 8 [Sus scrofa]
+------------------------------------------------------------KLSWNKDG----IIHGVRYHDGNLVIQFPGWYFIICQLQF
+LVKCPEH-SV--DLKLELLINENVKK-------QTLVTVCESGVQTkSIYQNLSQFLLEHLQVNTTISVNVDKFQYVNTNTfpLENVLSIFL--
+>gi|83921653|ref|NP_001033075.1| tumor necrosis factor beta [Takifugu rubripes]gi|66391027|dbj|BAD98729.1| tumor necrosis factor beta [Takifugu rubripes]
+------------------------------------------------------------NRSWQEFH-S----g-gscSFVHHEGSIHCRKNSLYFLYA
+QVAFTKHASQT--RSKS----VILVRNPaDdKS-l-RKLAEGTF----PPTTE---GSVWVANVVRLKEDDTISINITGEVlS-----DITLWGAFEL-
+>gi|115496536|ref|NP_001070075.1| tumor necrosis factor ligand superfamily member 12 [Danio rerio]gi|115313437|gb|AAI24496.1| Zgc:153941 [Danio rerio]gi|158253868|gb|AAI54256.1| Zgc:153941 [Danio rerio]gi|305678684|gb|ADM64322.1| tumor necrosis factor superfamily member 12 [Danio rerio]
+---------------------------NGRKVASHFEITSDS--F--QKVGN-----EGVIKGWTEEQ--LNMSRAVNYnsETGTFRVERSGVYFVYCQV
+HFNEN------------QSQYVKLEVSIPKGPLLqcIEGYGTTPASGSHRFHFlKPCQVSGLLRLNKGTELK-AVTGASFSLQTSGKHYFGLFKVN
+>gi|157822647|ref|NP_001100348.1| CD70 antigen [Rattus norvegicus]gi|149028135|gb|EDL83573.1| similar to Tumor necrosis factor ligand superfamily member 7 (CD27 ligand) (CD27-L) (CD70 antigen) [Rattus norvegicus]
+-----------------------------------------------------------LTLRWGAGPaLGRSFTHGPGLEKGNLRIHQDGIYRLHIQVT
+LAN--CSSSGSAlqHRASLVVGICS--PAVHIISLLRRrFGQDCTVSLQ----------RLTPLARGDVLCSNLTQPLLPSRNADETFFGVQ---
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    3538	*	*	2544	*	*	*	2639	*	*	3107	*	*	*	*	2947	*	1573	*	*	1
+       0	*	*	*	*	*	*	3196	0	0	
+
+I 2    *	*	*	*	*	*	*	3079	*	2458	2301	*	*	*	*	*	1573	2639	*	*	2
+       0	*	*	*	*	*	*	3196	0	0	
+
+L 3    2681	*	3746	2641	3777	*	*	*	*	1687	*	*	*	3197	*	3098	*	*	*	*	3
+       167	3197	*	4248	78	*	*	3196	1013	0	
+
+R 4    *	*	3408	*	*	*	*	*	2018	*	*	2452	*	3615	2025	2747	*	*	*	*	4
+       0	*	*	*	*	*	0	2969	0	1013	
+
+T 5    *	*	*	*	*	*	2764	1902	*	*	*	3293	*	*	2059	3897	2506	*	*	*	5
+       0	*	*	*	*	*	0	2969	0	1013	
+
+S 6    *	*	*	*	2018	*	*	2697	*	2381	*	*	*	*	3810	4167	*	*	*	1837	6
+       0	*	*	*	*	*	0	3187	0	1013	
+
+E 7    *	*	*	1558	*	*	*	*	3468	3810	*	*	*	1538	*	2697	*	*	*	*	7
+       0	*	*	*	*	*	0	3187	0	1013	
+
+E 8    *	*	3161	2414	3468	*	*	*	1129	*	*	*	*	*	2708	*	*	*	*	*	8
+       0	*	*	*	*	*	0	3187	0	1013	
+
+T 9    *	*	3810	1270	*	*	3655	*	*	*	*	4042	*	3740	*	4014	2075	*	*	*	9
+       0	*	*	*	*	*	0	3187	0	1013	
+
+I 10   2714	*	*	*	*	*	*	1217	*	*	*	3468	*	*	*	4014	2697	3173	*	*	10
+       1360	712	*	787	1251	*	0	3187	1773	1013	
+
+S 11   *	*	3173	3655	*	3468	3740	*	3623	*	*	3565	*	*	*	1062	*	*	*	*	11
+       119	*	3655	*	*	*	0	3187	0	1013	
+
+T 12   1411	*	*	2267	*	*	*	*	*	*	3410	*	*	*	3916	*	2597	3464	*	*	12
+       0	*	*	*	*	*	0	3104	0	1118	
+
+V 13   2385	*	*	*	*	*	*	3948	*	1858	3464	*	*	*	*	*	3738	1726	*	*	13
+       151	3334	*	1000	1000	755	1295	3104	1048	1118	
+
+Q 14   *	*	*	2824	*	3810	*	*	4133	*	*	4042	3314	4167	1241	3468	*	*	*	*	14
+       0	*	*	*	*	*	0	3187	0	1013	
+
+E 15   *	*	2175	1496	*	4140	*	*	*	*	*	*	*	4242	2904	3796	4051	4369	*	*	15
+       0	*	*	*	*	*	0	3432	0	1013	
+
+K 16   *	*	*	2693	*	*	4051	*	1242	*	*	*	*	4399	*	3060	2958	3912	*	*	16
+       78	4245	*	1000	1000	*	0	3432	1036	1013	
+
+Q 17   *	*	*	*	*	*	*	3896	4369	2413	4071	*	3003	2090	4399	2446	*	4421	*	*	17
+       0	*	*	*	*	*	0	3432	0	1013	
+
+Q 18   *	*	*	4245	3912	*	*	1768	*	2689	*	*	*	2744	*	3235	3104	*	*	4051	18
+       99	*	3912	*	*	*	0	3432	0	1013	
+
+N 19   *	*	*	*	*	1701	4192	*	*	4276	*	1991	3740	*	3149	3511	*	4077	*	*	19
+       0	*	*	*	*	755	1295	3356	0	1118	
+
+I 20   *	*	*	*	*	*	4220	1814	*	2424	*	*	3912	4203	*	4140	2382	3235	*	*	20
+       0	*	*	2895	208	*	0	3432	1073	1013	
+
+S 21   *	*	*	4526	*	*	*	*	*	2044	*	3095	2172	4538	*	3323	2599	*	*	3896	21
+       0	*	*	*	*	*	0	3703	0	1013	
+
+P 22   4279	*	4059	4086	*	4223	4538	*	4207	*	*	4517	1107	*	4050	4526	*	*	3896	*	22
+       0	*	*	*	*	*	0	3703	0	1013	
+
+L 23   2599	*	*	*	*	*	3347	*	4526	2650	*	3075	2777	*	*	2743	4050	4068	*	*	23
+       396	3896	2533	1000	1000	*	0	3703	1095	1013	
+
+V 24   3242	3650	*	2836	*	*	*	*	*	2379	*	3823	1961	*	*	4321	4227	4285	*	*	24
+       598	1559	*	1832	476	0	*	3297	1344	1317	
+
+R 25   *	*	*	3249	*	4770	*	3936	2507	*	*	*	*	2840	1664	4162	3690	5136	*	*	25
+       129	4124	5136	1526	615	*	0	4443	1142	1073	
+
+E 26   3354	*	3748	2428	5369	2291	*	4801	4894	5140	4271	3585	5251	4077	*	3825	5362	*	*	*	26
+       275	2525	*	1048	953	1563	596	5152	1611	1140	
+
+R 27   3503	*	5560	4624	4504	4702	4298	5897	2931	4989	5666	5100	6170	5623	2253	2511	3856	*	*	*	27
+       22	6024	*	0	*	*	0	6109	1000	1073	
+
+G 28   *	*	5592	3203	*	3529	*	5469	4095	*	5564	2442	3177	3511	5668	2444	5140	4612	5218	*	28
+       0	*	*	*	*	*	0	6457	0	1073	
+
+P 29   4514	5501	5125	3465	*	4158	5547	4396	4913	3719	6585	2885	3253	*	4422	3270	2794	6686	*	5270	29
+       48	4945	*	647	1468	0	*	6664	1400	1073	
+
+Q 30   2704	5658	4310	5050	6073	3829	4932	5366	5981	3499	5252	4427	3309	3179	3586	3517	5352	7009	*	6296	30
+       0	*	*	*	*	*	*	6823	0	0	
+
+R 31   *	*	*	4934	6204	6125	6915	5940	1161	4969	*	4649	3305	4478	2637	4729	6191	5170	6680	*	31
+       37	5321	*	4144	84	*	*	6844	1083	0	
+
+V 32   2968	*	*	*	5162	6552	*	3099	4673	5530	*	*	1140	*	7032	3706	*	3328	*	5772	32
+       0	*	*	*	*	*	*	6844	0	0	
+
+A 33   969	*	*	*	4027	4376	5932	*	*	6268	5616	*	*	*	5767	3075	5717	2524	*	*	33
+       0	*	*	*	*	*	*	6844	0	0	
+
+A 34   627	4726	*	*	*	*	*	2707	*	6071	*	*	*	*	*	5967	5341	3235	*	*	34
+       0	*	*	*	*	*	*	6844	0	0	
+
+H 35   5932	*	*	*	*	*	91	*	*	*	*	*	*	6006	*	*	*	*	*	5107	35
+       0	*	*	*	*	*	*	6844	0	0	
+
+I 36   6695	*	*	*	3853	*	*	4058	*	655	5932	*	*	*	*	*	*	2253	*	*	36
+       0	*	*	*	*	*	*	6844	0	0	
+
+T 37   4969	*	*	2946	*	*	6623	2501	*	*	*	*	6194	4165	*	4056	1390	2831	*	*	37
+       119	3654	*	1386	696	*	*	6844	1569	0	
+
+G 38   3248	*	4598	*	6798	587	*	3991	*	4977	*	*	5070	5919	*	5703	5744	*	*	*	38
+       79	4543	6604	610	1537	*	0	6851	1207	1108	
+
+T 39   3183	4891	3442	4406	6299	5881	5883	3854	3569	4010	*	3148	6696	4322	4078	2830	4862	5713	*	5097	39
+       292	4338	2900	0	*	*	0	6842	1222	1159	
+
+R 40   4110	7173	4460	4272	7016	4152	6899	4458	4293	5152	*	3144	2903	4829	4486	3506	3678	5906	5587	3176	40
+       58	*	4677	*	*	3424	141	6825	0	1913	
+
+G 41   5659	*	4111	3747	4511	3319	5288	5505	4982	3808	5567	2671	6563	6576	4260	2109	3956	7486	*	*	41
+       71	6595	4738	0	*	*	0	6783	1048	1968	
+
+R 42   3844	*	4959	3407	*	6174	6301	*	3365	4526	*	5854	2684	3222	3160	2400	5746	4758	*	*	42
+       470	3614	2349	631	1498	2792	225	6750	1293	2105	
+
+S 43   4315	*	3894	3246	*	2947	*	5542	4030	5011	*	3459	6387	3105	3926	2943	3942	6857	*	4470	43
+       648	5037	1594	943	1059	2268	336	6234	1063	2754	
+
+N 44   4064	4731	4284	5090	5732	3357	5730	4955	4285	4389	5677	3236	4682	*	4990	3575	2912	3358	*	4480	44
+       183	*	3072	*	*	2757	231	5832	0	3275	
+
+T 45   3829	*	4352	*	3078	3325	5947	3121	3946	2978	4577	*	5796	4109	*	3822	3303	*	*	4330	45
+       226	5395	3043	2240	343	2120	377	5828	1167	3172	
+
+L 46   3492	*	*	4556	5558	5256	*	3812	*	4628	4122	4317	2438	4371	*	2608	2524	5005	*	*	46
+       263	*	2585	*	*	3139	174	6069	0	2932	
+
+S 47   5379	*	4214	4079	5233	5358	4929	*	3846	2163	5138	3907	3441	3270	5827	2817	4796	*	*	*	47
+       189	*	3027	*	*	3116	177	5977	0	3157	
+
+S 48   2926	*	5671	5685	*	6080	3890	2766	*	3605	4450	3178	3996	3773	4419	4066	4613	3672	*	*	48
+       47	*	4957	*	*	3851	104	5963	0	3201	
+
+P 49   5095	*	4642	2972	*	5596	5871	6167	2356	5918	*	3200	1553	5026	4554	*	5898	*	*	*	49
+       276	5662	2695	1000	1000	1500	629	6082	1024	3134	
+
+N 50   4672	6830	4526	4904	4206	6237	5555	5549	4221	6085	*	3291	5983	3993	3408	2034	4347	2961	*	*	50
+       318	3346	3330	1843	471	3811	107	6250	1421	2755	
+
+S 51   *	*	*	3226	4749	2330	*	5515	*	4437	4679	5458	4389	4650	3388	2112	5741	5470	*	3807	51
+       544	*	1670	*	*	5052	44	6193	0	2923	
+
+K 52   3121	*	2555	4689	4524	5366	4769	*	2733	*	*	3432	2405	*	*	3839	5358	*	4457	*	52
+       475	*	1833	*	*	5354	36	5609	0	3564	
+
+N 53   *	*	4665	3360	*	2468	*	*	*	1172	*	4553	3926	*	4685	*	*	*	*	3453	53
+       209	5248	3200	2322	322	3280	157	4960	1036	3930	
+
+E 54   *	*	5164	5703	3251	3598	3071	*	4022	*	*	4566	3374	3192	2316	2880	*	*	*	*	54
+       261	*	2593	*	*	*	0	5270	0	3761	
+
+K 55   *	*	*	*	*	2842	*	*	2259	*	*	2976	*	1327	2991	*	*	*	*	*	55
+       77	*	4263	*	*	*	0	4743	0	3956	
+
+A 56   4341	*	*	4875	4654	5423	4250	*	5660	*	*	5118	4637	*	4384	1947	4609	1779	*	3786	56
+       86	*	4107	*	*	2900	207	4605	0	3997	
+
+L 57   *	2698	4695	*	*	4261	4991	5814	5126	2586	4836	2540	3602	5519	4390	4334	5263	4086	*	5858	57
+       183	*	3070	*	*	1002	998	5363	0	3718	
+
+G 58   5122	*	4299	4623	*	1469	5319	5581	3665	*	5479	5462	*	4810	3033	4341	3294	6338	*	5199	58
+       194	*	2988	*	*	2365	311	6522	0	2605	
+
+R 59   3999	*	3991	4196	5468	2685	3191	*	4301	5879	*	3570	6056	3310	4138	4044	3603	5282	*	4672	59
+       41	*	5154	*	*	1610	573	6488	0	2661	
+
+K 60   4615	6172	6830	5181	5811	3656	7077	5897	2139	6151	*	3422	2874	5321	4505	3238	3659	3999	*	*	60
+       270	5130	2816	1953	431	932	1071	6796	1069	2214	
+
+I 61   4655	*	*	6257	6419	6550	5348	2707	3805	2762	5514	5780	*	4109	5479	4191	3495	2223	6100	4815	61
+       38	6518	6029	0	*	206	2913	7403	1000	2121	
+
+N 62   *	*	6772	6810	4265	5166	7522	4674	4821	1147	6293	4386	*	4983	3585	5797	4307	3226	6243	7267	62
+       0	*	*	*	*	494	1785	7512	0	1186	
+
+S 63   4850	7359	4161	3190	5914	5067	3888	6103	5046	4450	6637	3433	4792	3279	3398	2846	4204	4744	7436	5947	63
+       0	*	*	*	*	0	*	7539	0	1012	
+
+W 64   *	*	*	*	*	*	*	*	*	6060	*	*	*	*	*	*	*	*	22	*	64
+       0	*	*	*	*	*	*	7549	0	0	
+
+E 65   4133	*	3806	1946	5198	5415	6080	5762	3610	5733	5494	4017	*	4086	3627	5709	3853	3529	*	5125	65
+       0	*	*	*	*	*	*	7549	0	0	
+
+S 66   4193	6882	3622	3220	*	4042	3953	5749	3616	6173	5963	3586	3296	4096	5165	3263	3732	4927	7152	8792	66
+       47	6887	5403	1000	1000	*	*	7549	1000	0	
+
+S 67   4473	*	2517	4656	4298	3485	5609	6616	3367	7573	4693	3440	6091	3544	4595	3395	3846	5957	*	6124	67
+       25	*	5859	*	*	653	1457	7519	0	1085	
+
+R 68   5195	*	3726	4806	6930	3298	3806	7030	4767	4004	7110	4533	4319	2965	3502	3507	3752	3901	7465	5522	68
+       2448	3945	412	738	1320	*	0	7521	1393	1126	
+
+S 69   2424	*	5699	*	3244	3518	*	*	3477	3960	*	*	3144	4678	4027	3177	*	4558	*	3627	69
+       478	4511	2071	1000	1000	427	1965	5734	1016	5247	
+
+G 70   5021	*	2595	3852	*	821	*	5616	*	5607	6187	5986	*	*	6670	4809	4591	6505	*	*	70
+       172	6394	3311	1585	585	495	1784	7059	1006	2735	
+
+H 71   4198	*	5161	4315	*	5254	3304	7464	4662	2675	7189	3437	4539	3060	3180	5943	5486	6375	4021	4225	71
+       0	*	*	*	*	830	1193	7309	0	2135	
+
+S 72   1338	6189	4801	5110	6946	4053	6577	6544	6662	7080	*	6540	4408	5168	6639	1856	5884	5889	*	6226	72
+       23	6801	7124	2000	415	667	1433	7431	1000	1484	
+
+F 73   *	*	*	6392	1394	5739	3104	4604	6001	3053	5596	4328	4917	7148	5139	4276	3787	7194	6246	6338	73
+       39	5717	6967	692	1393	1176	843	7559	1059	1188	
+
+L 74   4831	4440	5905	6968	5934	5795	*	4014	6123	1702	3575	7009	6210	5667	*	4019	2498	3240	*	7196	74
+       342	2243	*	293	2444	*	0	7579	2433	1150	
+
+S 75   5649	5705	4470	4750	5760	4688	3114	*	3487	*	6824	3178	5783	2653	3212	2612	5661	6014	*	6215	75
+       372	2137	*	632	1495	0	*	7593	2515	1150	
+
+N 76   4599	*	3852	5139	7057	1248	4031	*	4429	5343	*	2765	6488	6247	5260	4175	5273	*	*	5544	76
+       148	3363	*	370	2145	*	*	7679	1653	0	
+
+L 77   6259	*	*	*	1980	*	*	3108	6906	2567	2168	*	5891	*	*	*	6317	2534	*	5999	77
+       12	6878	*	1585	585	*	*	7652	1004	0	
+
+H 78   4876	*	5258	3273	*	4351	4081	6296	2738	6550	6921	4335	5887	3801	2997	3246	2918	4454	*	*	78
+       0	*	*	*	*	*	*	7681	0	0	
+
+L 79   5042	6635	*	6892	3129	6945	5161	4848	*	1580	5668	7348	7065	*	*	5377	6879	4083	*	1705	79
+       185	3054	*	281	2497	*	*	7681	1816	0	
+
+R 80   7012	*	3073	3487	7038	6272	3306	5915	3204	5013	5591	4286	5833	4293	2971	2905	4133	4386	*	*	80
+       62	4860	6991	557	1642	*	*	7693	1257	0	
+
+N 81   4926	*	1843	3360	*	3321	5989	*	4663	*	*	1738	*	6513	5694	4350	4657	6514	7365	*	81
+       22	6071	*	704	1373	0	*	7688	1062	1006	
+
+G 82   7465	*	5664	5357	*	861	4679	*	4589	*	*	2580	*	5025	4417	6954	4705	6605	*	5835	82
+       138	3580	7033	321	2327	*	*	7693	1521	0	
+
+E 83   5379	*	7091	2541	5516	3816	4601	7442	3065	5650	*	3879	*	3509	3566	2725	4830	4635	6591	4632	83
+       9	7275	*	0	*	0	*	7681	1000	1000	
+
+L 84   7061	*	*	*	5818	*	*	1747	*	687	*	*	*	*	*	*	*	4171	*	*	84
+       0	*	*	*	*	*	*	7693	0	0	
+
+V 85   4931	*	*	3494	*	*	5009	2802	3906	3644	6521	*	*	4358	3416	7111	2654	2134	*	6626	85
+       11	7061	*	1000	1000	*	*	7693	1024	0	
+
+I 86   5575	5832	*	*	*	*	*	1369	*	5022	*	*	*	*	7061	*	7419	915	*	*	86
+       0	*	*	*	*	*	*	7693	0	0	
+
+H 87   6593	*	6442	4138	7073	6244	3811	7041	4388	3817	*	3462	1502	3320	3913	6780	4740	5304	7020	6233	87
+       0	*	*	*	*	*	*	7693	0	0	
+
+E 88   5333	7755	4993	2308	5795	6399	4742	*	3300	4794	7453	7591	*	2342	3019	3614	3716	4532	*	*	88
+       0	*	*	*	*	*	*	7693	0	0	
+
+K 89   3552	*	2838	3325	*	4781	*	*	4912	*	7338	5032	2611	5956	*	2317	2409	*	*	*	89
+       0	*	*	*	*	*	*	7693	0	0	
+
+G 90   7031	*	*	*	*	29	*	*	*	*	*	*	*	*	*	6363	*	*	*	*	90
+       0	*	*	*	*	*	*	7693	0	0	
+
+F 91   *	*	4830	*	3240	*	*	3306	5670	1450	*	*	*	5709	5090	*	3818	3027	5795	3157	91
+       0	*	*	*	*	*	*	7693	0	0	
+
+Y 92   *	*	*	*	5517	*	*	*	*	*	*	*	*	*	*	*	*	*	*	32	92
+       0	*	*	*	*	*	*	7693	0	0	
+
+Y 93   5847	*	*	*	1409	*	5765	6953	6289	3144	*	5910	*	*	5938	6188	6644	*	6031	1390	93
+       0	*	*	*	*	*	*	7693	0	0	
+
+I 94   *	*	*	*	6626	*	*	1543	*	2904	6634	*	*	*	*	*	*	991	*	*	94
+       0	*	*	*	*	*	*	7693	0	0	
+
+Y 95   *	*	*	6723	4537	*	5938	5293	*	*	*	*	*	*	*	6289	*	*	*	164	95
+       0	*	*	*	*	*	*	7693	0	0	
+
+S 96   2418	3535	*	*	*	5166	*	4896	*	4515	6399	6991	7061	*	*	866	4818	6626	*	*	96
+       0	*	*	*	*	*	*	7693	0	0	
+
+Q 97   *	*	*	*	5778	*	3149	*	3715	*	*	5205	*	447	5295	7191	*	*	*	*	97
+       6	*	7964	*	*	*	*	7693	0	0	
+
+T 98   3757	*	*	*	*	*	*	2663	*	2606	5341	*	*	*	*	6668	3509	1054	*	*	98
+       33	5453	*	1000	1000	*	0	7698	1166	1000	
+
+Y 99   5129	4083	6447	6036	6462	4383	4518	6893	5139	3530	6974	5047	*	4250	*	2932	2267	4444	*	2442	99
+       0	*	*	*	*	*	0	7698	0	1000	
+
+F 100  *	*	*	*	680	*	*	6754	*	3360	*	*	6893	*	*	*	6864	5815	*	2094	100
+       32	6634	6407	0	*	*	0	7698	1037	1000	
+
+R 101  4571	4563	6035	5088	5682	*	4311	5279	3853	3813	6474	4458	*	5277	1629	3662	4412	5873	*	3539	101
+       58	6628	5098	0	*	*	0	7706	1037	1065	
+
+F 102  4887	6507	2667	4372	5034	2676	4504	5686	5060	5930	7413	3715	6714	6256	4287	3853	4316	3453	*	3539	102
+       82	6171	4597	0	*	767	1278	7644	1046	1407	
+
+Q 103  *	*	4356	3683	5984	5119	3728	6535	3697	4356	7386	3304	3817	3959	3622	2955	3240	4506	*	6167	103
+       217	*	2837	*	*	*	0	7634	0	1434	
+
+E 104  3814	2891	4165	3396	7546	4114	3220	7079	4210	5835	6144	5111	5396	5957	4309	3140	3280	5072	*	6115	104
+       116	5301	4271	4091	87	2576	265	7449	1109	2384	
+
+E 105  5468	2428	2983	6023	*	4142	5979	5730	4278	4501	*	3967	3376	5346	*	3182	3804	5314	6601	4042	105
+       171	*	3164	*	*	2517	277	7481	0	2532	
+
+I 106  4568	6606	3977	3691	*	3136	4550	5424	4115	5628	*	3902	3499	4839	4216	2160	4339	6039	*	5921	106
+       320	5696	2475	436	1938	5034	45	7401	1043	2941	
+
+K 107  4227	5917	4310	3141	6155	2317	5309	4666	4662	6492	*	2643	3359	*	5791	3424	4586	5266	*	*	107
+       658	2950	2079	2504	280	3711	115	7191	2171	3744	
+
+E 108  3798	4593	2509	3169	*	2092	5700	*	4633	*	4748	3743	6247	*	5596	2966	6699	6223	*	6797	108
+       360	3473	2938	1479	641	1991	418	6741	1350	4356	
+
+N 109  3529	6057	3216	2376	5489	5352	4947	6544	3873	4201	*	5081	3650	7403	2930	4173	5902	6376	6094	4628	109
+       42	7199	5525	0	*	2354	314	6915	1000	3981	
+
+T 110  4189	*	4904	2854	*	4890	5205	3261	3616	4620	4065	*	4421	4373	2811	3785	3973	4248	*	*	110
+       366	3161	3157	1738	514	3196	167	7111	1442	3533	
+
+K 111  3628	6851	4198	4997	*	2366	5553	5194	4283	6399	*	4207	4489	4995	3694	2584	3603	4506	5763	*	111
+       328	2509	5164	939	1064	1180	840	7006	2018	3674	
+
+N 112  4281	*	2836	3759	5796	4782	5277	*	3153	6148	5248	2699	4418	5294	3602	3175	4010	5631	*	*	112
+       13	6849	*	1567	594	1042	960	7245	1253	2694	
+
+D 113  4768	*	4112	3782	5849	2427	5332	5120	5189	5324	*	3145	3296	5667	4806	3206	3216	4991	*	7422	113
+       173	4966	3631	1494	632	2582	264	7504	1159	1889	
+
+K 114  3395	5336	3602	4325	4723	7169	4352	4261	3420	2770	*	5334	4341	4188	3775	5905	3750	3859	*	*	114
+       189	3277	5657	1398	688	1187	834	7415	1630	2215	
+
+Q 115  4521	*	5738	4645	5908	5253	3374	4286	4691	4043	6228	*	2479	2898	4640	3718	3409	4775	*	4877	115
+       21	*	6128	0	*	479	1823	7479	1000	1883	
+
+M 116  6469	*	*	*	2719	*	*	3291	6594	1313	3159	*	6578	6739	5380	6637	5090	3412	*	4937	116
+       7	7604	*	1000	1000	2868	213	7591	1000	1356	
+
+V 117  3986	*	6899	5616	*	3383	5341	3993	6126	3313	4818	6962	6107	5047	6358	2028	2900	2940	*	*	117
+       20	*	6194	*	*	1143	870	7569	0	1300	
+
+Q 118  5273	*	*	*	6489	*	1307	7028	*	3747	5434	4825	7864	2210	6358	3656	7000	3462	*	6988	118
+       6	7864	*	1585	585	2425	297	7615	1000	1240	
+
+Y 119  4674	3624	5543	4786	7281	4336	7016	5125	4316	5172	5480	5482	*	5057	3503	3558	3324	3493	6941	2272	119
+       77	4788	5998	0	*	779	1261	7623	1199	1185	
+
+I 120  *	*	*	*	6423	*	*	1699	7196	2333	5113	*	*	*	*	*	3541	1473	*	*	120
+       41	6150	6151	1556	599	*	0	7605	1070	1185	
+
+Y 121  7792	4521	*	6881	4092	7077	5100	4946	4042	4445	4417	3755	*	4924	4922	3710	3655	3477	4123	2188	121
+       49	*	4902	*	*	887	1122	7595	0	1285	
+
+K 122  *	*	5218	5824	*	6976	4228	5806	1786	3451	5114	5573	*	6987	1912	4208	5008	4237	6637	5431	122
+       524	2258	3385	637	1487	1757	506	7599	2560	1355	
+
+Y 123  4517	*	4613	5199	5379	6703	4885	6495	2969	4925	5969	3385	5555	7554	2811	3362	4628	3759	5735	2858	123
+       64	4870	6786	0	*	1966	427	7471	1177	1976	
+
+T 124  4063	*	4476	5280	*	3383	5244	4743	6341	5418	*	3206	5259	5615	4529	2279	2286	3945	*	*	124
+       536	1780	5716	492	1791	1683	539	7445	2769	1775	
+
+S 125  3893	*	3291	*	7507	4888	*	*	3443	5124	*	3840	2849	4322	5604	1692	5140	4844	*	5744	125
+       482	1898	6015	229	2768	1913	445	7570	2957	1644	
+
+Y 126  5194	6268	4636	5233	3857	5834	6912	4704	3524	4076	4955	4091	5868	4717	4344	3969	6530	4971	*	1682	126
+       159	3892	4751	568	1621	3424	141	7549	1447	1560	
+
+P 127  4336	*	4096	3795	7024	2345	*	*	5432	5056	5575	5102	2170	4287	3946	3964	4502	3929	*	*	127
+       43	*	5095	*	*	*	0	7476	0	1776	
+
+A 128  4117	6644	3712	2726	5245	4446	5207	5624	3524	6470	*	4850	4895	3369	4345	3195	3017	4854	*	7506	128
+       57	6269	5285	1440	663	3113	177	7421	1128	1970	
+
+P 129  6007	5961	3468	2192	*	6435	4832	5446	3141	*	*	4762	2109	5346	5760	3571	5633	5339	7265	5108	129
+       21	*	6097	*	*	2473	287	7449	0	2064	
+
+I 130  3906	*	5698	3402	*	*	6370	2288	3703	3797	5307	6890	6441	3758	3846	5056	3536	2932	*	5805	130
+       75	6413	4675	1585	585	2554	269	7463	1014	1955	
+
+L 131  6287	*	4987	3224	5484	*	*	3765	5292	2413	6946	4800	3163	5027	4866	3384	2827	3607	*	*	131
+       22	7150	6917	2322	322	2766	229	7417	1000	2028	
+
+L 132  5755	*	*	*	4783	*	*	3722	6762	321	7048	*	7112	*	*	6850	*	4784	*	*	132
+       40	6472	5978	1000	1000	4164	83	7446	1017	1928	
+
+M 133  4871	*	*	6348	5090	*	*	4474	*	1217	1519	*	*	6008	*	5719	4947	4915	*	*	133
+       26	*	5822	*	*	1861	464	7438	0	1966	
+
+K 134  5066	6912	*	2810	*	4866	7495	5669	1917	6457	*	4713	*	3385	3233	2939	4174	4613	*	5904	134
+       11	*	7064	*	*	2919	205	7530	0	1801	
+
+S 135  2345	4302	4321	6572	*	2225	6538	*	6583	5815	*	3728	*	*	5293	1900	3835	*	*	*	135
+       51	5736	5982	0	*	3675	118	7543	1068	1740	
+
+A 136  2828	*	*	*	3938	3569	5611	3449	3900	3491	5407	5326	*	3928	5444	4736	3632	2603	*	5526	136
+       22	6045	*	0	*	3971	95	7541	1043	1810	
+
+R 137  5642	5192	7501	3830	6304	3777	5051	6831	2503	*	4526	4931	6428	5031	1968	3346	4859	4555	*	5234	137
+       71	5357	5404	479	1824	1459	652	7550	1109	1757	
+
+N 138  6105	6885	6545	4892	*	6564	6467	7483	6872	4886	6674	4467	5068	5850	*	1773	1190	*	*	5080	138
+       16	6464	*	0	*	1695	533	7557	1014	1624	
+
+S 139  3679	*	5839	5139	6187	4964	4216	4555	3388	3765	4761	5678	3584	4373	4504	3743	3465	2745	*	5769	139
+       121	6339	3875	0	*	*	0	7603	1016	1419	
+
+C 140  *	1054	*	4150	5207	4537	7167	5078	6270	*	*	4166	5124	5726	4768	4248	4037	5237	*	4008	140
+       283	4563	2883	1435	666	2507	279	7484	1372	1916	
+
+W 141  4935	4478	6730	3216	6003	4513	4655	*	4465	*	6949	*	4558	3106	4343	3324	3479	4469	2321	6606	141
+       250	3465	3861	2336	318	1479	641	7319	1474	2601	
+
+S 142  2909	*	4698	6261	*	3957	4683	6258	4809	7058	6550	3587	3840	5169	*	1518	3798	4735	*	7484	142
+       125	5078	4226	831	1192	2110	380	7360	1190	2453	
+
+K 143  4045	*	4189	4892	*	2816	5198	4478	3358	5224	5406	4951	3706	5166	3359	3582	2960	4958	*	6595	143
+       97	4916	4978	1353	717	1942	435	7338	1190	2452	
+
+D 144  4714	*	2894	2997	*	3291	4994	6462	4437	5085	6642	2828	4277	5953	4459	3312	3466	5248	*	*	144
+       294	4945	2721	1449	658	1367	708	7409	1177	2266	
+
+A 145  3369	6205	5489	4758	*	3280	4613	6529	3846	5301	*	3957	3512	2974	4271	2548	4425	4958	*	*	145
+       168	4310	4066	1839	473	2051	398	7299	1216	2666	
+
+E 146  4866	*	5465	2128	6629	3251	5677	4780	3438	5704	5331	4331	5985	3647	4516	3580	3583	4302	*	*	146
+       313	2966	3894	734	1327	1436	666	7347	1757	2581	
+
+Y 147  4456	3588	5693	4832	3452	6061	7687	6840	4491	4536	5684	4753	3050	5541	5151	4315	5277	4268	3973	2390	147
+       162	3752	4979	1801	488	3319	152	7397	1616	2364	
+
+G 148  3979	*	4809	5127	*	1915	4204	5603	4193	5558	6124	4108	4233	5592	5181	6378	4487	5442	2300	*	148
+       180	4369	3864	1317	740	778	1263	7367	1292	2430	
+
+L 149  4987	7632	*	5669	2675	6544	6161	4436	5204	2501	5182	6689	5151	5106	5214	3931	4964	5237	3443	2514	149
+       56	4713	*	0	*	967	1033	7434	1233	2063	
+
+Y 150  6045	4497	4570	3831	5694	5586	3761	7420	4193	6603	*	3044	*	2779	3441	5729	5097	5670	*	2206	150
+       131	3529	*	0	*	*	0	7536	1547	1507	
+
+S 151  3775	5257	6875	*	*	5902	7142	6755	7475	*	*	4409	4225	6364	*	1256	1634	*	*	*	151
+       0	*	*	*	*	2611	258	7536	0	1507	
+
+I 152  4714	2402	*	*	*	4745	*	2162	6596	3020	5543	5198	*	7213	6336	2394	7670	3117	*	*	152
+       0	*	*	*	*	806	1224	7532	0	1417	
+
+Y 153  6919	*	5132	6410	2182	5251	3462	*	*	6575	*	4904	6864	4748	5921	5286	6564	*	6324	1123	153
+       0	*	*	*	*	1371	705	7590	0	1148	
+
+Q 154  6955	*	*	6187	5255	*	4238	4328	7328	2006	4984	6970	*	2106	*	3204	2852	3736	*	*	154
+       0	*	*	*	*	*	0	7652	0	1068	
+
+G 155  2322	*	*	6243	5200	708	5156	*	*	5606	*	5940	*	*	*	3827	6355	*	*	*	155
+       0	*	*	*	*	0	*	7652	0	1068	
+
+G 156  2297	*	*	6604	*	795	6621	*	*	5228	6627	6347	*	6099	4281	4303	5381	6636	*	*	156
+       0	*	*	*	*	*	*	7687	0	0	
+
+I 157  3850	*	6441	*	5977	5769	*	3405	*	1848	5344	6756	6579	7055	*	*	4114	1310	*	*	157
+       0	*	*	*	*	*	*	7687	0	0	
+
+F 158  4568	7092	*	6676	1020	6945	5916	4869	*	3580	*	*	*	5080	4731	6157	4405	2745	*	5188	158
+       0	*	*	*	*	*	*	7687	0	0	
+
+E 159  6306	*	4920	3029	5604	*	3519	*	3157	3654	*	4365	4352	2626	2995	4331	6604	5320	*	4001	159
+       0	*	*	*	*	*	*	7687	0	0	
+
+L 160  *	*	*	*	5745	*	*	6032	*	97	5007	*	*	*	*	*	*	*	*	*	160
+       0	*	*	*	*	*	*	7687	0	0	
+
+K 161  4903	*	4449	2440	5504	5825	4185	*	2715	7110	6372	3341	*	3033	2677	4812	4869	*	6413	6438	161
+       0	*	*	*	*	*	*	7687	0	0	
+
+E 162  1928	*	7348	2783	*	5200	*	*	2489	*	6078	6268	4682	3491	3582	3879	4624	4931	*	*	162
+       11	7035	*	0	*	*	*	7692	1000	0	
+
+N 163  6218	*	3769	4270	*	688	5061	*	5729	5937	6574	3212	*	5573	5643	*	*	7064	*	6864	163
+       0	*	*	*	*	*	*	7692	0	0	
+
+D 164  4741	*	578	3193	*	*	6037	*	*	*	*	4246	*	4529	*	4723	5221	7055	*	*	164
+       0	*	*	*	*	*	*	7692	0	0	
+
+R 165  5122	*	*	2934	*	6827	4440	6060	2701	6619	5993	4857	*	3862	2012	3735	3527	3998	6037	*	165
+       0	*	*	*	*	*	*	7692	0	0	
+
+I 166  *	*	*	*	*	*	*	1552	*	1034	*	*	*	*	*	*	*	2551	*	*	166
+       0	*	*	*	*	*	*	7692	0	0	
+
+F 167  5452	5225	*	4557	2559	5568	5219	4972	6105	5793	6471	*	*	4961	4565	1964	6626	4762	4620	2348	167
+       36	*	5344	*	*	*	*	7692	0	0	
+
+V 168  5998	*	*	*	7059	*	*	2881	*	2821	5861	*	6363	*	*	5358	2830	985	*	*	168
+       40	5187	*	162	3235	0	*	7622	1295	1149	
+
+S 169  5409	*	4308	2624	6388	7284	4054	6985	2876	7564	7101	2582	*	4637	3048	3629	4189	4854	6603	5645	169
+       0	*	*	*	*	*	*	7692	0	0	
+
+V 170  5188	7054	4988	6519	5820	7032	*	3023	*	3243	4653	6146	5162	*	*	6286	2758	1272	*	6388	170
+       0	*	*	*	*	*	*	7692	0	0	
+
+T 171  5977	*	4377	4263	7035	7109	5518	5065	4745	5298	6265	3103	3697	5050	5304	1719	2665	7091	7022	5957	171
+       146	3378	*	1162	854	*	*	7692	1686	0	
+
+N 172  4709	*	2411	4677	6150	3615	3262	*	4425	5456	5075	2693	6804	4631	3858	3897	4540	6078	*	4723	172
+       57	5402	6036	924	1081	0	*	7666	1282	1122	
+
+E 173  3698	7075	*	3876	4841	5413	5290	3651	4520	2724	6563	*	1808	5887	4731	3763	5617	4495	*	*	173
+       12	6934	*	1000	1000	807	1224	7681	1000	1072	
+
+H 174  4374	5559	3133	3948	*	5086	3924	*	4318	5493	6513	3870	3988	3807	4075	2244	3917	6340	6234	6949	174
+       217	2839	*	274	2530	0	*	7681	2004	1000	
+
+L 175  4196	*	7293	4730	4164	7022	4283	4447	4397	2073	4001	5832	5838	4297	4084	4296	5383	4485	6570	3081	175
+       110	4040	6340	696	1386	*	*	7692	1410	0	
+
+I 176  6247	*	6261	6564	5331	*	7020	2535	*	1850	4881	*	5364	6749	*	5090	6106	1634	6478	4801	176
+       11	*	7080	*	*	*	0	7623	0	1036	
+
+D 177  5497	8472	2032	3505	4587	6137	4625	6031	4440	3760	*	3362	*	4575	3986	2846	*	6189	7039	4379	177
+       54	6693	5220	1585	585	1000	1000	7611	1016	1131	
+
+M 178  5031	6631	5025	*	3340	5627	4734	5670	6871	2712	2881	4525	3933	6068	4271	5386	3252	4175	*	3384	178
+       134	3628	6971	461	1870	1766	502	7617	1484	1236	
+
+D 179  3327	*	2068	3052	5004	4150	5981	*	5859	6345	*	3145	7181	4119	4983	3350	4161	5985	*	5082	179
+       0	*	*	*	*	1141	871	7645	0	1197	
+
+H 180  3848	*	4923	2653	6922	3819	3577	*	3948	6787	5846	4529	2376	3963	4121	3854	5296	5282	*	7270	180
+       110	3764	*	556	1644	563	1631	7622	1528	1082	
+
+E 181  3970	*	2461	2784	*	2422	4018	7061	7890	5714	*	4318	5053	5512	5805	2976	3729	7013	*	*	181
+       14	6661	*	421	1982	0	*	7659	1075	1000	
+
+A 182  2841	*	4312	3026	6443	4016	*	5643	2266	5565	6981	4249	*	5535	4111	3217	3976	6861	5834	5170	182
+       54	4766	*	0	*	*	*	7693	1213	0	
+
+S 183  7103	7334	*	*	*	*	5214	7421	6914	7485	*	2791	*	*	*	2240	891	4493	*	*	183
+       17	6422	*	2322	322	*	*	7693	1023	0	
+
+F 184  *	*	*	*	1034	*	6750	5696	*	5661	*	*	*	*	*	6350	6599	4215	5807	1439	184
+       0	*	*	*	*	*	*	7693	0	0	
+
+F 185  *	*	*	*	267	*	*	6967	*	3311	5873	*	*	*	*	*	6420	*	4991	*	185
+       0	*	*	*	*	*	*	7653	0	0	
+
+G 186  *	*	*	7045	*	76	*	*	*	*	*	*	*	*	*	5724	*	6238	6420	*	186
+       0	*	*	*	*	*	*	7653	0	0	
+
+A 187  1579	*	*	*	6992	*	*	3490	*	2058	3411	7045	*	*	*	6965	5045	2408	*	*	187
+       6	7846	*	1000	1000	*	*	7653	1000	0	
+
+F 188  *	*	*	*	985	*	4574	2626	*	4922	5269	*	*	5888	*	*	6966	3504	*	3072	188
+       0	*	*	*	*	0	*	7660	0	1000	
+
+L 189  3153	*	*	4909	5151	7574	*	*	1648	2556	2376	*	*	5644	3148	7295	*	*	*	*	189
+       0	*	*	*	*	*	*	7592	0	0	
+
+V 190  *	*	*	*	5897	*	*	2229	*	1118	5208	*	*	5886	*	*	*	1987	*	6255	190
+       0	*	*	*	*	*	*	7454	0	0	
+
+G 191  3172	*	3643	*	*	1666	*	*	*	5251	*	3667	*	*	*	1429	*	5848	*	*	191
+       0	*	*	0	*	*	*	6019	0	0	
+
+//
+�HHsearch 1.5
+NAME  abf7361a887c4e53ac97adc19e64234b
+FAM   
+FILE  abf7361a887c4e53ac97adc19e64234b
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:15:45 2013
+LENG  220 match states, 220 columns in multiple alignment
+FILT  120 out of 1461 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.9 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCEEECCCCEEEECCCCEEEEEEECCCCCCCCEEEEEECCCCCCCEEEEEEEECCCCCCEEECCCCCCCEEEEECCCCCEEEEEECCCCHHHCEEEEEEE
+ECCCCCCCCCCCEEEEEEEEEEEEEEEEEECCCCCEECCCCEEEEEEEECCCCCCCEEEEECCCCCCCCCEEEEEEECCCCEEEEEEEEEEECCCCCCEE
+EEEEEECCCCEEEEEECCCC
+>ss_conf PSIPRED confidence values
+9089787878996899899998963888888579999947999847999997315788604356667517998527897579998347764674999998
+5598861101412677787500001312642875211059769999996676899759998998315772000127629968999999996234689769
+99999089729999953799
+>Consensus
+xvxlxxxxxxxxxxGxxvtLxCxxxxxxxxxxxvxWxkxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxrxxxxxxxxxxxxsLxIxxvxxxDxGxYxCxv
+xxxxxxxxxxxxxxxlxvxxxxxxxpxvxxxxxxxxxxxgxxxxlxCxxxxxxPxxxxvxWxxxxxxxxxxxxxxxxxxxxxxxxSxLxixxxxxdxxxy
+tCxvxxxxxxxxxxxxxxxp
+>abf7361a887c4e53ac97adc19e64234b
+EVKVEESGGGLVQPGGSMKLSCVASGFTFSNYWMEWVRQSPEKGLEWVAEIRLKSNNYATHYAESVKGRFTISRDDSKSSVYLQMNNLRAEDTGIYYCTR
+GGAVGAMDYWGQGTSVTVSSATTTAPSVYPLVPGCSDTSGSSVTLGCLVKGYFPEPVTVKWNYGALSSGVRTVSSVLQSGFYSLSSLVTVPSSTWPSQTV
+ICNVAHPASKVDLIKEPSGP
+>gi|62464905|gb|AAX83161.1| immunoglobulin heavy chain variable region [Aotus nancymaae]
+--------------GDPVPHLRCLWLLHRQ-------willeldpPAPKGRG--WSGldisivwWVHQ-L-QRLPQES-----sh---YFSRHVQEPVLV
+E---------AE-LCDRR----------------------------------------------------------------------------------
+-------------------------------------
+>gi|50428758|gb|AAT77091.1| anti-HCC scFv antibody [synthetic construct]
+EIVMTQTPLsSPVTLGQPASISFRSSQS-LVHsdgNtYLSWLQQRPGQPPRLL--IY-----KVSNRFSGGPRQIQ--WQwGQGQIFTLKNQQGWKLRMS
+GFITARKLHN--FRvgTFGPRDQAGNRRAAA---------------------------------------------------------------------
+----------------------------
+>gi|207200|gb|AAA42213.1| T-cell receptor beta chain precursor [Rattus norvegicus]
+---VIQSPRHLVKgKEQKARMQCTPI---KEHSYVYWYYKKLGEDLKFLVyFQN----TDIIDKTDMIKKIISAEC-FT-NKTCTIeIKSSKLTDSAVYY
+CASSQGGQgsqNTLFFGXGTRLSVLE--------------------------------------------------------------------------
+--------------------------
+>gi|326703679|gb|AEA06491.1| MHC class I antigen [Macaca mulatta]
+----------------------------------------------------------------------------------------------------
+-----------------------------------------htiqtmygcdlgpdgrllrgyeqyaydgrdyfalne--DLRSWTAADMAAQN-------
+-----tqrkweaagvaeqw---RAYL--EGECLEWLRRYLEKG--K-------------et--LQ--raEPs-SQ
+>gi|221330930|ref|NP_001137898.1| CG42256, isoform F [Drosophila melanogaster]gi|220902492|gb|ACL83253.1| CG42256, isoform F [Drosophila melanogaster]
+--------------------vaknpaaeikytallqvKGSVLAYPS--QKLN-TEHK-KRKPHKYRshllskl---------------------------
+-kLSQCSLTLAA----slkp----FI--------------------------------------------------------------------------
+-------------------------------------------------
+>gi|38382894|gb|AAH62459.1| BTNL9 protein [Homo sapiens]gi|119574109|gb|EAW53724.1| butyrophilin-like 9, isoform CRA_a [Homo sapiens]
+--VLGPEYPILALVGEEVEFPCHLWPQLDAqQMEIRWFRSQTFNVVHLY--QE--QQELPGRQMPAFRNRTKLVKDDiAYGSVVLQLHSIIPSDKGTYGC
+RFHSD----NFSGEALWELEVAGLGSDPHLSLEGF-----KEGGIQLRLRSSGWYPKP-KVQWrDHQGQCLPPEFEAIVWDaQDLFSLETSVVVRAGAL-
+-SNVSVSIQNLLLSQKKELVVQIA
+>gi|312373456|gb|EFR21197.1| hypothetical protein AND_17411 [Anopheles darlingi]
+------KPVMDAVEGQSFSVMCNATGKPV--PEFQWIKQGTQQNAADL-------------------DRFSVN----AITGQLDISKVEQQDHDSYACIA
+RNPAG---QSESVMKPNVL----IRPKIIELINITVS-EDTEAVFVCKAFGRPEPEITFRRygtleeysIGLQVSDDRIQLEQSVDVDKGESVGTLRISK
+VTTtDDGLYECIARNRGDvafkagHITVEYSPI--
+>gi|260841781|ref|XP_002614089.1| hypothetical protein BRAFLDRAFT_67325 [Branchiostoma floridae]gi|229299479|gb|EEN70098.1| hypothetical protein BRAFLDRAFT_67325 [Branchiostoma floridae]
+SISLTLPKSVNTIVGDPITLPATYQT-QRRVISVVWNKLNPQDSEKRIPVFSYFPLLGSTESFGTYSGRAELAGK-----ASIKIDATTVQDEGKYVLTV
+-------TVDGLPPEEgFVTVNMMVPPVVDVGPANPYVTAsGRSASLTCAVKDARPNITSLYWEKDGVRVDNLRFDTKYSGGNIQSPNLLIRHVTRGDAG
+RYKCVADH--------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+E 1    4274	*	2751	2674	*	4487	3310	*	4256	4428	*	4538	4666	1868	*	4554	*	*	*	*	1
+       0	*	*	*	*	*	*	6959	0	0	
+
+V 2    *	*	*	*	3437	4874	*	3332	*	3170	*	4720	*	5222	*	4955	4933	999	*	4923	2
+       0	*	*	*	*	*	*	7971	0	0	
+
+K 3    4577	*	3666	4213	4472	4484	*	5398	3840	*	*	5395	*	3385	4075	3345	3339	2078	*	5100	3
+       0	*	*	*	*	*	*	8567	0	0	
+
+V 4    4495	*	*	*	4494	*	*	5370	5619	1234	4381	*	5365	*	*	*	3913	1722	*	*	4
+       0	*	*	*	*	*	*	8876	0	0	
+
+E 5    5427	*	*	3311	*	5757	5615	4608	5600	5355	4468	*	*	2252	*	3291	1690	3575	*	*	5
+       32	*	5494	*	*	*	*	8974	0	0	
+
+E 6    3460	*	5342	4016	*	5502	4591	5503	4663	4596	*	*	2989	2245	3625	4126	4079	3038	*	*	6
+       113	3736	*	336	2267	0	*	8935	1502	1015	
+
+S 7    4156	*	4849	3591	5784	4077	*	5740	5716	4525	*	6046	1267	4626	5854	3847	3437	5854	*	*	7
+       27	*	5740	*	*	*	*	8967	0	0	
+
+G 8    *	*	4824	3451	*	2327	*	5669	4162	5761	*	5804	1961	4399	3836	2898	4827	5754	*	*	8
+       0	*	*	0	*	0	*	9051	1011	1011	
+
+G 9    3924	*	3987	3946	4780	5854	4440	4875	5133	4233	5790	2966	3260	4820	*	2412	3938	4275	*	*	9
+       26	5808	*	0	*	*	*	9164	1055	0	
+
+G 10   5082	*	*	5121	*	6079	5052	3646	4551	2607	4513	5901	5076	3956	6081	4441	5244	1538	*	5391	10
+       22	6074	*	1585	585	*	*	9433	1022	0	
+
+L 11   4011	*	4560	4058	5147	*	6184	3253	6084	4236	*	4322	4693	4725	3655	3001	2635	3311	*	5144	11
+       40	5179	*	0	*	*	*	9624	1232	0	
+
+V 12   2417	*	*	5161	5362	4285	*	4059	4705	4359	5125	*	*	6401	4751	4253	4102	1527	*	5221	12
+       0	*	*	*	*	*	*	9743	0	0	
+
+Q 13   3316	*	6770	3823	*	4375	4861	4351	3154	3111	5211	4502	3738	3694	5147	4658	3996	3234	*	*	13
+       15	6597	*	0	*	*	*	9770	1000	0	
+
+P 14   3265	*	*	1667	6301	*	*	6727	3949	2981	6364	*	3807	*	4182	3970	4341	3668	*	4752	14
+       0	*	*	*	*	0	*	9967	0	1000	
+
+G 15   6557	*	5191	3898	*	562	*	*	6676	6541	*	3696	*	5046	6429	4423	5483	6808	*	*	15
+       15	*	6557	*	*	*	*	10142	0	0	
+
+G 16   5837	*	2695	2269	*	2593	5758	*	3972	5594	*	4470	*	3004	4939	3364	5084	5443	*	*	16
+       17	6401	*	0	*	0	*	10265	1010	1007	
+
+S 17   4352	5602	3083	4238	*	*	6445	*	4804	*	6726	3828	3350	6656	5145	2117	2096	5589	*	6520	17
+       13	*	6782	*	*	*	*	10291	0	0	
+
+M 18   2120	6570	*	6896	5500	*	*	3477	*	3916	4010	*	6579	*	*	*	4905	1099	*	*	18
+       0	*	*	*	*	0	*	10178	0	1000	
+
+K 19   5660	*	6878	3413	*	6557	6545	3945	4769	4533	5892	4838	5160	4360	4033	3071	1413	5180	*	*	19
+       0	*	*	*	*	*	*	10193	0	0	
+
+L 20   *	*	*	*	3708	*	6578	3147	*	588	4037	*	*	*	*	*	*	3756	*	*	20
+       0	*	*	*	*	*	*	10193	0	0	
+
+S 21   7180	*	4220	4174	6843	4684	4838	7048	4542	4760	5647	3512	2343	5236	3909	3024	2752	5280	5706	*	21
+       0	*	*	*	*	*	*	10193	0	0	
+
+C 22   5164	148	*	*	6614	*	*	6551	*	*	*	*	6578	*	*	6634	6641	6728	6804	*	22
+       42	5806	6523	568	1620	*	*	10193	1189	0	
+
+V 23   4195	*	4432	4047	*	5564	3957	6712	3544	3785	6563	3387	4080	5270	3512	3395	2888	3890	*	6831	23
+       46	4989	*	738	1320	*	0	10296	1371	1015	
+
+A 24   2973	6838	*	*	3119	*	6031	3494	6508	3185	*	5875	3879	6771	*	4781	4069	2472	*	2704	24
+       163	3838	4761	484	1811	*	0	10296	2044	1015	
+
+S 25   4321	*	3319	4463	6762	4378	4344	6502	4119	6452	*	3748	3138	4291	4778	2498	2693	6552	*	*	25
+       118	4454	4917	1146	868	1239	795	10140	1755	1715	
+
+G 26   4551	*	4129	4064	6424	1735	*	5693	5056	4512	*	3554	3266	4310	5518	3539	3889	6509	*	6765	26
+       90	*	4051	*	*	1584	585	10112	0	1917	
+
+F 27   4626	*	4252	4656	3111	4685	4041	6431	3473	4809	*	5720	3476	4449	4754	2890	3967	6394	*	3154	27
+       81	5678	4826	1585	585	201	2940	10065	1153	2609	
+
+T 28   *	6608	3307	4308	4337	4017	5601	5196	3710	6452	6664	5028	2597	4699	4395	2930	3871	4370	*	4283	28
+       182	6440	3227	0	*	984	1017	10121	1003	1676	
+
+F 29   4601	4306	5004	4494	4012	5586	5406	4204	4032	3201	6572	*	2537	4210	4015	3508	5246	4295	6515	5195	29
+       421	4309	2303	651	1462	4092	87	10250	1624	3136	
+
+S 30   3911	*	2862	3859	*	3625	5112	*	3483	5225	6395	3881	4161	4606	4310	3176	3048	5214	*	6037	30
+       113	6459	3966	0	*	3158	171	9955	1000	5615	
+
+N 31   4584	*	2314	4736	*	6406	4133	4610	6264	3795	*	3025	3312	3732	*	3463	5107	3890	*	4686	31
+       211	3040	6099	1455	655	220	2821	9858	2449	5767	
+
+Y 32   3771	*	4828	4782	4642	4824	4479	3322	6388	3447	5093	4289	3315	4336	4934	4808	4215	3660	*	3329	32
+       47	6517	5571	0	*	1001	999	10111	1055	1925	
+
+W 33   3721	*	5607	4672	6594	7076	6858	4069	6769	3689	4867	3797	6555	5251	4752	2951	2557	3027	5648	3844	33
+       32	5512	*	966	1034	2285	331	10144	1440	1769	
+
+M 34   5582	*	*	*	3656	5018	6438	2369	5750	2148	4455	*	*	*	*	5900	*	1678	4827	6718	34
+       0	*	*	*	*	1932	438	10157	0	1580	
+
+E 35   6725	*	6754	3494	2886	*	5220	6633	3658	3359	6612	5721	6861	3143	5061	4091	2767	4454	*	3166	35
+       13	6811	*	1000	1000	*	0	10286	1000	1384	
+
+W 36   *	6861	*	*	4636	*	*	5697	*	6481	*	*	*	*	6748	*	*	5613	194	5871	36
+       37	6599	6056	0	*	*	0	10286	1000	1384	
+
+V 37   *	5822	5613	5328	2481	*	5722	5103	3251	3271	*	5230	*	5599	4241	4375	4558	4100	6519	2051	37
+       64	6596	4921	5585	30	*	0	10278	1000	1685	
+
+R 38   5670	*	6468	6598	4275	*	4630	4871	1607	4487	6800	5801	*	4383	1941	4328	6463	6741	4888	5629	38
+       174	5915	3369	1010	990	1732	517	10231	1165	2316	
+
+Q 39   6336	*	3389	3575	6610	4080	5747	6361	4054	3291	*	3778	5378	2129	5126	3991	4395	4136	*	5366	39
+       81	*	4191	*	*	1304	749	10236	0	3605	
+
+S 40   5102	*	2899	4053	*	3491	6927	5420	2703	4324	5528	3716	4609	5017	3182	3629	4276	5526	*	5747	40
+       114	6378	3962	0	*	3685	117	10214	1020	3320	
+
+P 41   4444	*	4208	3898	4866	3739	5320	*	3318	3795	*	3941	1940	5714	4330	4116	4961	5041	*	6412	41
+       151	4184	4489	1756	506	907	1100	10161	1631	3950	
+
+E 42   *	*	2859	4647	*	1940	6479	5839	5359	6414	*	3308	6321	3346	3585	2916	4370	6651	6519	*	42
+       110	3763	*	997	1003	2146	369	10240	2023	3093	
+
+K 43   4109	*	3311	3532	6760	3154	5507	4573	2834	6724	5096	3985	5641	3763	4192	3752	4637	4226	*	6526	43
+       0	*	*	*	*	*	0	10271	0	2627	
+
+G 44   3142	*	4249	2911	4649	3316	*	4553	4640	5236	4980	4214	4197	4118	5688	2783	4301	5173	*	6522	44
+       66	4858	6638	586	1582	*	0	10271	1416	2627	
+
+L 45   5006	*	5688	4519	4987	5670	6336	3676	5886	2637	4565	5492	2269	4618	4891	4505	3092	3817	6996	*	45
+       17	6418	*	1000	1000	1441	663	10261	1000	2774	
+
+E 46   4446	*	3897	2554	6623	5692	5867	3995	3092	4826	6624	6424	5440	2960	4969	3293	4030	3712	*	6639	46
+       15	*	6585	*	*	*	0	10317	0	2100	
+
+W 47   5033	*	4422	5029	2992	5163	6506	5069	5124	2177	*	4666	6791	5522	3192	5010	3842	4673	4284	3698	47
+       0	*	*	*	*	3143	173	10308	0	2256	
+
+V 48   6621	5247	4461	5752	3622	4602	*	2403	*	2125	5826	5694	5978	5716	5686	4166	4715	3018	*	4312	48
+       389	*	2081	*	*	*	0	10315	0	2103	
+
+A 49   3025	6099	6209	5187	3538	2927	5216	3067	6333	3696	6663	6350	3318	5396	5340	3383	4739	4243	*	6471	49
+       21	*	6079	*	*	*	0	9867	0	5586	
+
+E 50   3491	*	5264	3883	3482	6341	5183	5250	3853	6115	*	6261	4665	6244	4435	2915	3308	5255	4638	2590	50
+       18	*	6325	*	*	611	1534	9834	0	5690	
+
+I 51   5481	5889	5378	*	3380	6604	5800	2412	4735	3051	5080	4896	*	4721	4304	3421	3868	2811	*	6599	51
+       85	5849	4659	2807	222	*	0	10262	1102	3039	
+
+R 52   4219	6753	3435	4798	5765	3955	4769	5115	3807	3528	6275	4500	*	3621	3930	3189	5745	4076	*	3178	52
+       2533	*	274	*	*	*	0	10218	0	3610	
+
+L 53   3727	*	*	*	*	2457	2743	*	3845	3806	*	2967	*	*	*	2753	*	*	*	2509	53
+       601	3947	1857	0	*	5466	33	5746	1010	9235	
+
+K 54   3422	*	*	3936	3950	3885	*	3881	2645	*	*	*	*	3624	*	2787	2420	*	*	3871	54
+       122	*	3624	*	*	1338	726	5384	0	9298	
+
+S 55   4670	*	5789	4205	*	3083	4054	5753	5562	5827	5628	4621	2810	5429	5492	2473	2805	4543	*	4723	55
+       127	*	3568	*	*	2420	299	9022	0	7664	
+
+N 56   5913	*	3360	3830	5902	3029	5705	6032	3508	6026	*	2897	4985	4040	4208	3307	3889	4220	*	4803	56
+       0	*	*	*	*	3452	138	9153	0	7232	
+
+N 57   3988	*	3570	3871	5706	3629	5736	4800	3590	3683	5857	3168	5943	6177	6112	2965	3191	4561	*	5975	57
+       89	5054	5078	2236	344	1314	742	9326	1344	6878	
+
+Y 58   5408	*	3132	*	6146	1925	5387	5229	2924	6159	*	3457	4746	4050	4150	4666	5286	6227	*	3938	58
+       98	4647	5290	1237	797	*	0	9903	1346	5307	
+
+A 59   3804	*	3065	4633	*	3648	5321	6315	5122	5160	*	4852	4152	3998	3913	3927	2805	3007	*	4588	59
+       37	6132	6457	0	*	1872	460	9911	1015	5621	
+
+T 60   5485	6213	4303	4884	6250	4814	3941	4534	3357	4652	*	4883	3055	4914	4152	3205	3039	3886	6511	4919	60
+       143	5437	3807	0	*	2402	303	10071	1374	4725	
+
+H 61   4972	*	3321	3033	4701	4504	4871	5421	3323	3604	5379	4162	5514	3809	4133	4085	5358	3352	*	6350	61
+       15	*	6644	*	*	2865	213	9925	0	4878	
+
+Y 62   5412	5198	3627	3798	4697	5565	5370	4856	3988	3860	*	6242	4861	4677	3389	4184	5537	3049	6376	2694	62
+       44	6497	5706	3170	170	*	0	9956	1000	4562	
+
+A 63   3495	*	4136	2928	3664	3354	4590	6517	4750	5043	6345	4507	4423	4527	4653	2942	4864	4747	6190	5326	63
+       0	*	*	*	*	2715	238	9935	0	4776	
+
+E 64   4018	*	3224	2651	5461	3833	5254	5510	4937	5703	6495	5221	2766	6322	5386	2823	4577	5807	4843	5503	64
+       30	5620	*	536	1688	*	0	10024	1167	4292	
+
+S 65   3647	*	3189	3033	6429	2560	6444	5447	4290	5496	*	4566	4070	4294	3467	3933	4141	4870	*	*	65
+       46	5509	6702	2764	230	*	0	10024	1155	4292	
+
+V 66   4524	6197	6293	*	3172	4841	5707	4465	4306	2704	4465	4979	5299	5346	6135	3651	4916	3235	*	2682	66
+       51	4852	*	0	*	2935	202	10010	1396	4414	
+
+K 67   4668	*	3073	2971	4965	4032	6500	*	3072	6234	6463	5614	3666	3542	3442	3822	3789	5451	*	5407	67
+       99	3914	*	0	*	1741	513	10072	1881	4029	
+
+G 68   3562	*	2881	3303	*	2083	5437	*	3846	6360	6526	3501	4347	4541	4472	4671	4812	5257	*	*	68
+       31	6572	6583	0	*	2957	199	10130	1000	3192	
+
+R 69   *	*	6409	5906	*	4586	5679	5014	3672	*	6486	5351	6411	3470	732	5271	5488	*	6268	*	69
+       28	5699	*	561	1634	3745	112	10144	1194	3070	
+
+F 70   3148	*	6273	4831	1944	5431	6526	4518	5396	3116	6362	*	*	*	6760	5186	5493	2266	*	3581	70
+       0	*	*	*	*	*	0	10156	0	2920	
+
+T 71   5456	*	4604	5679	5610	6435	4217	4636	4271	5177	*	4960	6273	2910	3752	2234	2827	3804	6559	5437	71
+       18	*	6315	*	*	*	0	10156	0	2920	
+
+I 72   3781	6439	5399	5051	3779	3713	6896	3846	5701	2220	4125	5481	4867	4705	*	3614	6398	3071	*	4791	72
+       36	*	5339	*	*	*	0	10163	0	3114	
+
+S 73   5097	*	3838	4017	5066	6296	5640	4218	4569	3437	*	3486	5904	3833	3728	3710	2765	3553	5658	6947	73
+       156	4341	4235	941	1062	2772	228	10140	1653	3530	
+
+R 74   4655	6686	4364	4159	4972	2705	5316	4485	3361	3515	6453	6288	4236	4889	2796	4231	4604	4494	6328	*	74
+       47	6510	5588	0	*	*	0	10031	1018	3936	
+
+D 75   5383	*	2784	3576	6689	3172	4688	4829	3767	4590	*	3490	4943	3910	4843	3165	3788	6448	5702	*	75
+       478	4880	2012	1832	476	2496	281	9891	1389	4180	
+
+D 76   4002	*	3630	3961	5091	3025	5312	4622	3456	3592	6012	3646	3042	5155	4656	3989	4541	*	*	6632	76
+       201	4484	3554	0	*	5282	38	9694	1404	6232	
+
+S 77   3177	*	3706	4089	5903	4428	5046	5898	5758	3926	*	3240	5217	3657	5172	2450	3383	4610	*	*	77
+       177	5179	3508	1550	603	505	1760	9761	1237	6635	
+
+K 78   3875	*	3699	4254	4982	2364	5022	6750	4208	4012	*	3858	5889	4538	3537	3082	4645	4785	6515	*	78
+       0	*	*	*	*	2633	254	10016	0	3907	
+
+S 79   4079	5493	3533	3973	5517	3135	5066	5040	3779	6958	*	3614	*	3522	4030	2259	4989	5544	*	*	79
+       97	*	3937	*	*	*	0	10211	0	3482	
+
+S 80   4127	6845	3967	4869	5619	3769	4298	5449	4814	4033	*	3236	4929	3042	4370	3075	3692	3897	*	*	80
+       89	5290	4875	0	*	410	2017	10096	1224	4311	
+
+V 81   2696	3698	*	5884	2974	3347	6512	4307	6867	3834	5632	*	5466	*	*	3688	6772	3091	6545	2961	81
+       0	*	*	*	*	675	1420	10248	0	2298	
+
+Y 82   4362	*	5607	6023	*	7083	5933	5147	7013	4727	6896	4777	4846	4673	4196	1620	2292	3864	*	4432	82
+       55	4739	*	1052	950	578	1599	10309	1624	1394	
+
+L 83   6609	5274	*	*	4251	*	*	3061	*	480	*	*	*	*	*	5930	*	4410	*	6514	83
+       0	*	*	*	*	*	0	10268	0	1007	
+
+Q 84   4436	*	5735	4651	5185	6882	4818	3707	3185	4537	4831	4014	*	4470	3013	3537	2703	4357	6690	5063	84
+       0	*	*	*	*	*	0	10268	0	1007	
+
+M 85   *	*	*	6622	5046	5645	*	908	6609	2344	4545	6660	6594	6591	6730	*	6776	3355	*	6667	85
+       0	*	*	*	*	*	0	10268	0	1007	
+
+N 86   4622	*	5827	4308	6741	5294	4077	7138	2810	5288	*	5333	3462	3634	3378	2870	2679	6594	5961	6600	86
+       29	*	5645	*	*	*	0	10268	0	1007	
+
+N 87   4768	6569	3048	5080	6601	3644	4289	*	3260	6784	*	2064	4097	4967	3530	3538	5053	6058	*	*	87
+       0	*	*	*	*	1572	591	10217	0	1392	
+
+L 88   2473	*	*	*	4687	6655	*	3460	7001	2399	5200	*	6580	*	7124	*	3723	1510	6492	*	88
+       0	*	*	3585	126	0	*	10249	1007	1200	
+
+R 89   5256	*	4573	3039	6767	4872	5836	5794	3372	6607	*	4886	*	2488	2878	3541	2618	6682	5826	*	89
+       11	*	6997	*	*	*	*	10393	0	0	
+
+A 90   4100	*	5853	3969	6123	6226	*	3816	3038	2200	5354	6507	2997	4586	3973	5080	4463	3998	6590	6886	90
+       15	6594	*	0	*	0	*	10375	1000	1038	
+
+E 91   4134	*	3285	1961	*	4518	6608	*	3570	5145	6793	5737	5966	3470	4222	2472	4341	*	*	*	91
+       9	7252	*	0	*	*	*	10393	1000	0	
+
+D 92   6595	*	495	4144	*	5271	4340	*	5076	*	*	5064	6579	6067	5411	5698	*	*	*	5612	92
+       70	*	4393	*	*	*	*	10393	0	0	
+
+T 93   3068	*	4149	2086	6477	4322	5624	6835	*	7238	5224	7005	6452	4049	5527	2082	3485	6506	*	5191	93
+       33	6501	6452	2585	263	*	0	10267	1000	1701	
+
+G 94   2616	*	5310	6682	*	601	*	*	5008	6621	6850	*	*	7697	5964	4315	6624	6430	*	*	94
+       38	5950	6624	1082	922	*	0	10382	1225	1887	
+
+I 95   5911	5306	3538	4754	5676	5353	5673	3782	4023	3241	6524	5789	*	5078	4213	4625	2438	2741	4499	*	95
+       15	6610	*	2000	415	424	1973	10364	1013	2067	
+
+Y 96   *	*	*	*	3770	*	7138	5771	*	6087	*	*	*	*	*	5913	6915	5875	*	244	96
+       0	*	*	*	*	*	0	10362	0	1146	
+
+Y 97   6874	6683	6213	4184	3458	*	6090	4191	3533	3841	6984	7215	*	4456	3952	3967	3022	3079	4594	3000	97
+       0	*	*	*	*	*	0	10362	0	1146	
+
+C 98   *	144	*	*	5643	*	*	6755	*	4841	6553	*	*	*	6680	*	6585	*	*	*	98
+       0	*	*	*	*	*	0	10362	0	1146	
+
+T 99   3078	6025	5721	2895	5880	5762	5093	3926	5620	3671	4365	*	*	3227	3303	4326	4067	3092	*	*	99
+       57	*	4681	*	*	*	0	10314	0	1146	
+
+R 100  2289	*	*	5754	5044	6989	6180	3673	5603	3602	5127	*	*	5384	5695	4748	4509	1389	*	6854	100
+       311	3757	3058	1785	494	*	0	10204	2115	1893	
+
+G 101  5569	5458	3750	3906	6402	4208	6287	5525	3867	4572	4903	4475	*	4955	4222	2914	3229	3906	3897	3904	101
+       113	3726	*	1128	882	3289	156	10030	2017	3918	
+
+G 102  3684	*	4304	4423	5463	4284	2825	5528	6571	5446	*	2970	4167	4297	5579	3534	3438	3493	*	4957	102
+       334	5599	2426	575	1605	*	0	10070	1184	3650	
+
+A 103  4167	6149	3685	3435	*	3131	6065	*	4760	4200	*	3377	2531	6613	5185	3037	4522	6166	*	4226	103
+       192	3837	4201	1463	650	4195	81	9825	1959	5737	
+
+V 104  3135	*	4135	3627	*	2614	5341	*	5072	4173	*	4147	3804	6222	4645	3139	3330	3852	6430	*	104
+       367	4084	2595	2618	256	5061	44	9829	1557	5927	
+
+G 105  5045	*	3682	4735	4431	2638	5534	4563	4883	5034	5953	5139	5895	6142	3408	3295	4340	2623	5816	5802	105
+       450	4225	2222	377	2119	3087	181	9348	1395	7012	
+
+A 106  5910	5725	3387	5759	*	4268	5797	4040	5727	3885	*	3301	5579	4235	5771	4054	3408	*	3080	2585	106
+       199	3775	4169	1297	754	347	2225	9082	1547	7541	
+
+M 107  4875	*	4015	3554	3878	6148	4973	4969	2862	4232	5601	4146	4334	3692	5070	3964	4259	3584	*	4356	107
+       49	5336	6807	3624	122	611	1534	10051	1521	3379	
+
+D 108  3633	*	3630	3775	6521	4302	6657	5823	4312	3370	5620	3021	4757	3964	4757	3527	4547	4086	*	4075	108
+       208	6577	3012	1000	1000	1849	469	10115	1055	2172	
+
+Y 109  4140	6310	5669	4635	4309	4838	5494	3122	7085	2971	*	5438	5048	4936	5036	3770	3174	2661	5502	4938	109
+       42	5109	*	1196	827	*	0	10031	1259	3870	
+
+W 110  4788	*	4900	6550	2172	4795	4505	4274	5082	3849	5168	6515	6672	4328	3896	3879	4305	3718	4602	3923	110
+       63	5505	5575	2169	363	*	0	10031	1205	3870	
+
+G 111  4268	6513	6809	3441	*	1870	5652	5413	5297	5251	*	6452	3965	6579	3990	2216	3457	6341	*	*	111
+       51	6499	5396	1585	585	3664	119	9921	1011	4118	
+
+Q 112  3193	*	4449	3511	6554	4180	5584	*	3426	5569	7141	3376	3571	3747	4287	2820	4799	4121	*	6918	112
+       0	*	*	*	*	*	0	9988	0	4161	
+
+G 113  3601	*	5595	4037	6904	1731	6442	*	4239	5549	*	*	3858	5408	3391	3239	3763	3981	6675	*	113
+       0	*	*	*	*	262	2590	9988	0	4161	
+
+T 114  3450	*	4830	5554	6007	6580	6994	3661	4254	3568	5660	7209	4411	5177	5609	3684	2103	2828	*	5088	114
+       40	5819	6681	3110	178	0	*	10165	1199	1465	
+
+S 115  5912	*	4644	3452	4812	5792	5020	5262	2997	4863	6937	4493	6608	2880	3874	3401	3396	4319	5513	4228	115
+       13	*	6801	*	*	*	0	10286	0	1000	
+
+V 116  4782	6035	6754	4476	6818	7139	5034	3544	3600	1347	5022	6777	6780	6142	6572	5812	5419	2544	*	*	116
+       69	4708	6935	1321	738	*	0	10290	1549	1165	
+
+T 117  4811	*	5666	3775	5147	5171	5415	3831	3498	4052	6041	3634	4995	4856	4142	3523	2652	3804	6553	5235	117
+       32	6201	6941	853	1163	1634	561	10285	1149	1322	
+
+V 118  5090	5737	6695	5630	6758	6153	6832	3119	4806	3959	4658	5714	5745	6563	*	5611	5672	922	*	5722	118
+       36	*	5361	*	*	*	0	10252	0	1445	
+
+S 119  5567	5583	6649	3561	5009	6893	5223	3760	4457	2808	7195	5387	3611	4303	3798	4207	3494	3224	*	4328	119
+       533	5781	1783	549	1660	2669	247	10253	1158	1958	
+
+S 120  2890	*	3866	4525	6206	4234	*	5525	4003	3327	5115	6196	3052	5283	3818	3797	5862	3701	5141	4364	120
+       300	2746	4701	1915	445	1005	996	9830	2866	5803	
+
+A 121  2498	*	3260	5518	6510	3272	6846	4517	3899	4499	6374	3840	4337	3600	4474	4770	5663	3273	*	*	121
+       99	4469	5568	1136	876	4149	84	10017	1551	4116	
+
+T 122  3772	*	4361	6513	5220	4138	6446	4213	3713	3448	6504	6511	2896	4657	4346	4493	3610	2968	*	4290	122
+       52	5447	6307	5199	40	1607	574	9993	1177	4228	
+
+T 123  4231	*	3507	3632	4803	5551	6357	4008	3798	3578	5074	4507	3541	4607	5525	4011	3862	3094	*	5591	123
+       50	5402	6549	2715	238	2291	330	10057	1188	3419	
+
+T 124  2979	*	*	3517	4263	4101	5103	6644	5041	*	6529	6592	2736	4485	4227	3544	3361	3087	6820	5209	124
+       41	5626	6985	3199	166	645	1473	10048	1198	3105	
+
+A 125  2984	5687	5278	3016	5647	4335	7493	6502	3013	6510	5395	5337	2093	5879	5097	3904	5435	4170	*	6750	125
+       29	5627	*	0	*	*	0	10195	1196	1876	
+
+P 126  4074	*	5571	5222	7074	6787	*	5691	5085	4338	*	*	702	4829	*	4663	4238	4807	*	*	126
+       14	6691	*	4170	82	1275	769	10185	1000	2056	
+
+S 127  4951	*	5001	3472	*	6841	4750	4579	3074	5133	6283	6517	4807	4016	5147	2605	2367	3932	*	4716	127
+       0	*	*	*	*	988	1012	10225	0	1561	
+
+V 128  4484	6601	*	5275	6736	*	*	2351	7243	2271	5688	5152	4485	5845	6692	6487	4737	1666	*	5872	128
+       16	*	6487	*	*	*	0	10260	0	1189	
+
+Y 129  5769	6840	4572	4027	3910	5120	5312	4498	4483	4542	5754	5114	6808	4692	4325	3057	2551	3956	5577	3380	129
+       29	*	5639	*	*	589	1577	10383	0	1375	
+
+P 130  4225	6845	*	4847	6871	6801	5683	2917	4558	2768	6074	6415	3483	3477	5146	4273	4191	2383	*	6344	130
+       89	5717	4617	1322	737	*	0	10370	1185	1339	
+
+L 131  4758	6682	5929	5447	3498	4304	5935	3548	4899	2316	5179	3587	4736	4512	*	3577	3560	4120	*	5618	131
+       44	5757	6449	1007	993	1172	846	10303	1173	2048	
+
+V 132  4364	6611	5168	4192	5861	4952	4417	6608	3495	3547	*	3607	2625	3380	8159	3278	4112	3772	*	*	132
+       71	4683	6749	514	1738	*	0	10307	1736	1728	
+
+P 133  3714	*	4223	4053	6804	4030	5341	5305	3775	4709	6699	4039	2222	3646	5318	3144	4404	5806	6561	*	133
+       13	*	6826	*	*	1264	777	10152	0	2095	
+
+G 134  4817	5626	3922	4865	5868	4572	6226	5353	4290	4375	5098	3434	3569	3748	4818	2260	3601	5065	*	6538	134
+       71	6459	4767	1000	1000	2088	387	10331	1022	1726	
+
+C 135  6919	4664	4596	3473	5707	4092	*	4003	4149	3292	5607	*	3406	5654	4317	3146	3414	3281	*	5172	135
+       31	*	5565	*	*	*	0	10306	0	2109	
+
+S 136  3561	*	4909	3241	6376	4891	5741	5179	4106	3678	5049	5480	5611	3701	5884	3095	3413	2863	*	4937	136
+       14	*	6723	*	*	490	1797	10124	0	2456	
+
+D 137  3539	6884	3320	3499	5011	4782	6681	3304	4850	3417	5240	5935	4988	5751	5885	3858	4858	2344	*	*	137
+       137	5039	4049	728	1335	2014	410	10208	1425	1474	
+
+T 138  4352	6724	4771	3596	6973	7159	6649	3961	3904	3076	4534	3892	3675	3870	3916	4003	3539	3949	*	6482	138
+       96	3953	*	628	1503	1236	797	10120	1902	2636	
+
+S 139  3089	*	5548	2019	6334	4714	6727	6925	4125	4027	6925	4907	4742	4208	5734	3295	5737	2763	*	7008	139
+       352	2411	5149	1317	740	2602	260	10176	3814	1905	
+
+G 140  6507	6513	3936	4195	*	902	4938	*	4863	*	*	3517	6603	5094	6807	3830	5687	5472	*	6978	140
+       28	6750	6667	2322	322	1845	471	10150	1000	2306	
+
+S 141  5026	6502	2772	2582	*	3781	7469	6990	3792	5072	6823	3444	5065	3732	3726	3248	3837	*	*	*	141
+       0	*	*	*	*	2741	234	10144	0	2095	
+
+S 142  5437	*	3763	2606	5943	5992	5093	*	3856	6828	*	3916	3633	4417	5115	2733	2780	4183	7067	5731	142
+       0	*	*	*	*	1895	452	10184	0	1913	
+
+V 143  2757	6585	*	*	7101	4169	6673	3131	5187	3205	4653	5865	5203	4957	6269	5366	3826	1809	*	6711	143
+       43	5587	6818	2478	285	0	*	10378	1222	1629	
+
+T 144  5199	*	6797	3753	5416	*	5580	4434	3799	5067	5544	3762	*	4342	4569	3268	1723	3915	6741	5135	144
+       0	*	*	*	*	*	0	10393	0	1000	
+
+L 145  4078	*	5969	*	3537	6486	*	3610	*	855	4918	*	*	*	7494	*	5862	3079	*	5744	145
+       42	5113	*	0	*	0	*	10393	1424	1000	
+
+G 146  5335	*	4677	4020	6974	5206	6814	3726	4848	3435	4228	3658	5257	3953	4707	3220	2808	3726	*	4624	146
+       8	*	7518	*	*	*	*	10394	0	0	
+
+C 147  6479	74	*	*	*	6425	*	6757	*	*	*	*	*	*	*	*	6657	7020	*	*	147
+       0	*	*	*	*	0	*	10220	0	1080	
+
+L 148  4222	*	6650	3418	5585	5209	5045	3973	4657	2670	4323	6735	6743	4033	4096	3429	3176	3284	7604	7709	148
+       0	*	*	*	*	*	*	10208	0	0	
+
+V 149  1919	6032	*	*	4667	6632	*	2639	*	5173	*	7604	6411	*	*	3124	5181	1810	*	4709	149
+       42	5833	6484	3000	193	*	*	10208	1151	0	
+
+K 150  4796	*	4764	3013	5097	6357	4680	6435	4193	4204	6555	4512	5207	3743	4372	2327	3288	3925	5626	6624	150
+       40	5185	*	2511	278	*	0	10191	1468	1048	
+
+G 151  4093	6992	3499	4396	6594	1581	6939	6907	3573	5807	*	3351	*	4693	4218	3266	5610	6642	6677	*	151
+       11	*	7007	*	*	*	0	10191	0	1048	
+
+Y 152  3594	7005	5720	6422	2382	2642	6606	5758	5449	5126	6105	5215	*	4657	5179	2747	5715	3987	6524	3383	152
+       339	*	2257	*	*	*	0	10178	0	1230	
+
+F 153  4698	5215	6441	*	3748	5116	4646	6390	2803	5351	*	5391	3372	*	2855	3461	4825	*	7308	2258	153
+       81	5959	4705	433	1947	178	3106	9883	1222	4690	
+
+P 154  6369	*	4800	6536	*	*	5785	*	5514	5120	*	6753	547	5088	5457	4541	4514	5680	6569	6688	154
+       92	6593	4279	0	*	280	2503	10126	1013	1880	
+
+E 155  3583	*	3358	2701	*	4009	5167	5664	3660	4387	5020	4537	3499	4189	3817	3566	5510	5287	*	6868	155
+       110	3950	6796	1353	716	233	2747	10064	1884	1846	
+
+P 156  3276	*	3369	3865	*	3461	5091	4595	5121	4731	*	4361	1845	5255	5023	4919	4500	5555	6545	6605	156
+       368	*	2152	*	*	1169	849	10185	0	1169	
+
+V 157  3258	*	6194	6348	4867	*	5264	2147	*	2764	5315	*	5458	6210	5187	5219	4337	2359	6403	3957	157
+       181	*	3084	*	*	0	*	9774	0	4490	
+
+T 158  4754	*	4251	3283	6409	5043	5398	6480	4056	6246	*	2802	5656	3176	4476	2651	2828	5724	6396	7011	158
+       41	5812	6640	1000	1000	178	3110	10060	1119	2457	
+
+V 159  *	*	6365	*	3347	*	5911	2199	5654	2450	5571	6994	6321	*	*	5262	*	1701	5043	4415	159
+       13	*	6816	*	*	0	*	10166	0	1226	
+
+K 160  5006	*	4224	4390	6068	5688	4977	5415	4089	5025	5783	4350	7577	4241	3253	2749	2370	4805	*	3635	160
+       11	*	6982	*	*	0	*	10194	0	1000	
+
+W 161  *	7577	*	*	6766	*	*	*	*	5411	*	*	*	*	5776	5927	*	*	128	6344	161
+       1890	550	4408	1125	885	*	0	10158	8232	1105	
+
+N 162  5617	*	2907	3985	6750	3981	5591	6509	2306	5012	6502	2898	6457	5177	3409	3709	5637	6626	*	4045	162
+       32	5515	*	1535	611	*	0	10020	1181	1902	
+
+Y 163  5350	*	3379	3755	6362	1687	5731	*	3740	5593	*	2622	6587	6642	4505	3453	5722	6638	6581	6574	163
+       66	4863	6601	395	2061	*	0	10020	1393	1902	
+
+G 164  3858	*	3034	3220	*	1783	5661	6574	4502	6502	7823	4008	6415	4409	3546	4212	4270	6833	*	*	164
+       36	5337	*	1327	734	2837	217	10005	1184	2071	
+
+A 165  3048	*	3976	2810	6834	3539	*	4601	3271	4030	5702	4299	4209	4489	3873	3963	5492	4353	*	*	165
+       91	*	4027	*	*	1340	725	10012	0	1905	
+
+L 166  6260	6793	4701	3625	5175	7460	*	2400	6325	2362	4442	6587	5742	*	4209	4274	4472	2549	5503	6671	166
+       112	6195	4036	2807	222	*	0	9924	1018	2509	
+
+S 167  5680	*	4075	4184	5425	5285	*	3798	4643	3084	4962	4854	3473	4977	3818	3154	3059	3585	6330	*	167
+       33	5477	*	1302	750	3831	105	9834	1203	3350	
+
+S 168  4742	6277	3812	3429	*	4303	4853	3743	4191	3345	5383	3830	4176	3953	4887	3168	4445	5006	6184	5476	168
+       13	6753	*	1000	1000	*	0	9793	1000	3195	
+
+G 169  3799	5467	2692	3949	6384	2457	4556	4678	*	*	*	4920	4607	5301	5514	3264	2970	4883	*	5423	169
+       75	4309	*	1052	949	1915	444	9793	1580	3195	
+
+V 170  4673	*	4049	4153	3934	4719	6306	3687	5714	3248	6275	4418	4684	4252	6412	3619	3716	2471	*	5292	170
+       57	*	4681	*	*	1178	842	9936	0	2624	
+
+R 171  4610	*	5639	4227	4922	4865	3583	3799	3994	3920	4784	4301	4566	4661	4299	3500	3070	3696	*	5065	171
+       96	5581	4528	2198	355	2145	370	9929	1187	2414	
+
+T 172  4933	*	4055	4413	*	5467	5766	6314	3968	4562	5070	2997	4391	3309	3902	3376	2314	6373	*	5620	172
+       16	6495	*	0	*	3684	117	9912	1000	2699	
+
+V 173  4592	*	3934	5105	2904	4382	5774	4390	3954	3632	*	5627	5621	5599	6802	2456	3135	4089	6475	4831	173
+       37	6036	6599	3000	193	284	2485	9919	1109	2566	
+
+S 174  4766	*	4966	3147	5530	4043	5546	5174	5619	4123	6581	5541	2649	5509	4555	2676	2863	5700	7076	4926	174
+       46	6645	5563	1000	1000	*	0	10034	1000	1343	
+
+S 175  4162	*	4743	4184	5846	3663	4261	4217	5550	4688	4617	4889	3955	3373	5146	2882	3204	4300	*	5024	175
+       35	6479	6312	1585	585	1382	699	10003	1014	1708	
+
+V 176  4874	*	4507	3348	4734	4438	4369	3549	3949	4522	5496	4008	4209	5011	4200	3932	4561	2684	*	6553	176
+       49	6079	5744	0	*	1251	786	9987	1109	1762	
+
+L 177  *	6433	3915	3633	5561	5088	5597	5578	3296	3115	5560	3762	4540	3820	2956	3626	4704	4497	*	5016	177
+       184	6604	3195	1000	1000	*	0	10014	1000	1721	
+
+Q 178  3827	5209	3971	2864	*	4285	6330	4161	3989	4125	5369	3147	4258	3494	4580	4844	4330	4437	*	6540	178
+       770	1273	*	965	1036	575	1606	9764	5829	3502	
+
+S 179  4094	*	1924	3160	*	2996	*	6163	6433	6135	5727	3030	5020	5431	5594	2958	4897	5465	*	*	179
+       50	5464	6472	0	*	*	0	10004	1241	1788	
+
+G 180  5194	*	3066	3913	7028	1310	6397	*	4383	6126	*	3804	5060	5812	5597	3268	5296	5475	6657	*	180
+       34	5413	*	0	*	*	0	9982	1224	1967	
+
+F 181  *	*	3932	5109	5599	5529	*	5115	3164	2624	5704	4618	*	4577	3711	3443	2157	4195	*	6420	181
+       189	3470	4953	828	1195	*	0	9982	2363	1967	
+
+Y 182  4812	5818	5677	5736	2223	5454	4420	4908	6765	3656	*	*	5623	5464	6761	4837	4915	4204	6769	1648	182
+       31	6337	6761	3907	100	1752	508	9918	1000	2492	
+
+S 183  4605	*	4391	3688	6588	6649	4777	*	4598	4054	6412	3781	5738	4002	5223	1820	2610	5043	*	7487	183
+       15	*	6552	*	*	*	0	9948	0	2184	
+
+L 184  3756	5550	6551	6640	6431	3958	5407	3047	4561	3200	3858	*	5525	*	4074	3991	3092	2718	5057	*	184
+       77	*	4258	*	*	3184	168	9935	0	2343	
+
+S 185  5119	6437	5485	6695	4468	5566	4618	5555	5553	5996	5554	6436	4806	4628	4365	2307	1992	3538	6330	4241	185
+       22	6019	*	1000	1000	2641	252	9868	1044	2934	
+
+S 186  3403	5300	6495	*	6450	4419	*	6732	5662	4553	6732	4024	*	*	*	718	4983	6565	*	5805	186
+       33	5472	*	1311	745	*	0	9900	1156	2626	
+
+L 187  6332	6534	5500	4575	5430	*	6513	4015	4470	3736	*	4871	*	3937	3073	3049	2372	3474	4505	5049	187
+       101	3880	*	2325	321	234	2740	9900	1882	2626	
+
+V 188  4984	*	*	6646	4022	6655	6542	3753	*	695	7508	*	6891	5849	*	*	5261	3400	*	4962	188
+       0	*	*	*	*	*	0	10044	0	1105	
+
+T 189  5897	*	5253	3809	*	5020	5482	3190	3932	3234	6683	3716	6534	5617	3945	4113	2149	4014	*	5375	189
+       13	6814	*	2322	322	*	0	10044	1038	1105	
+
+V 190  6872	*	*	*	3645	6542	*	1803	*	1638	*	*	*	*	4985	*	6734	2481	5614	4247	190
+       27	5749	*	0	*	*	0	10044	1178	1105	
+
+P 191  6382	*	4315	4979	*	6639	4144	*	4419	4130	5471	3656	3475	3749	3544	2957	2360	4056	*	*	191
+       0	*	*	*	*	*	0	10030	0	1105	
+
+S 192  3121	*	4273	4535	5546	6428	5865	4059	4454	3902	6654	3847	2552	5036	4098	4036	3501	3838	6720	*	192
+       0	*	*	*	*	*	0	10003	0	1105	
+
+S 193  3831	5726	4763	4250	6479	4223	6244	6724	4239	4316	6880	4631	6436	3873	5013	2746	2421	3369	6553	5159	193
+       38	*	5273	*	*	*	0	10003	0	1105	
+
+T 194  3779	*	3586	3248	*	3807	6384	5350	3329	3155	*	*	4946	3777	3050	3103	4937	4940	*	6475	194
+       125	*	3596	*	*	2078	390	9980	0	1654	
+
+W 195  4082	6517	5048	3226	5768	5402	4418	5359	5696	2082	*	6481	4905	4788	3595	4241	4920	4430	3078	6631	195
+       369	2148	*	1023	977	1413	679	9850	3971	2848	
+
+P 196  5612	*	1228	3551	*	*	3979	*	4254	6389	6483	3469	3956	*	3627	4903	4630	*	*	5732	196
+       385	2232	5545	370	2143	342	2245	9925	3833	2136	
+
+S 197  3495	*	2525	6646	*	2828	3784	6542	4666	*	*	2967	5553	6389	6449	2358	4161	5024	*	6681	197
+       414	2005	*	57	4682	1926	441	9973	4511	1504	
+
+Q 198  2813	*	4208	4279	*	1457	*	*	3036	*	4777	5003	*	4930	4993	4658	4191	5471	*	5861	198
+       15	*	6552	*	*	*	0	9987	0	1326	
+
+T 199  5771	*	4394	3906	6475	6553	6911	5066	4644	4410	5732	3593	4890	5788	4594	3303	2018	2681	5548	*	199
+       110	3770	*	0	*	1975	423	9973	2028	1496	
+
+V 200  *	*	*	*	2722	*	6419	4489	*	3057	*	*	*	*	*	*	*	2866	5666	957	200
+       14	*	6742	*	*	822	1203	9987	0	1326	
+
+I 201  5900	*	6908	4945	5525	*	6252	5110	2971	5269	7007	6809	*	4534	3692	3010	1482	5386	5549	4048	201
+       0	*	*	*	*	926	1078	10019	0	1238	
+
+C 202  *	17	*	*	*	*	*	6398	*	*	*	*	*	*	*	*	*	*	*	*	202
+       0	*	*	*	*	*	0	10036	0	1015	
+
+N 203  3630	6598	*	2803	*	6420	6478	3275	3919	5027	4967	5270	*	2785	3548	3999	4343	3146	*	5086	203
+       0	*	*	*	*	0	*	9973	0	1015	
+
+V 204  1543	*	*	6134	4878	*	*	3947	*	4675	*	*	6303	*	*	5595	6662	1116	*	*	204
+       0	*	*	*	*	*	*	9930	0	0	
+
+A 205  3844	*	3490	4163	6533	5423	6413	6418	4366	5329	*	4016	6587	3897	3607	2145	2356	6389	*	*	205
+       0	*	*	*	*	*	*	9867	0	0	
+
+H 206  *	6699	*	*	4937	*	1327	*	6777	6394	*	1729	*	3452	6402	4379	5315	6409	*	4375	206
+       33	6317	6645	1000	1000	*	*	9851	1000	0	
+
+P 207  5306	5939	3766	3098	6380	3436	*	6435	3133	6112	*	4665	3236	3783	3781	2868	4398	6786	*	4669	207
+       0	*	*	*	*	*	0	9678	0	1105	
+
+A 208  2880	*	6090	4707	5412	2264	*	6199	6032	4588	6490	3943	5017	4690	4814	2084	*	4496	5992	4969	208
+       26	5783	*	1000	1000	*	0	9566	1015	1105	
+
+S 209  5782	*	5955	4906	4779	1871	*	4680	4341	2898	6027	4379	5882	3804	5086	3137	3947	4644	*	*	209
+       1294	756	*	1878	458	*	0	9245	5642	1105	
+
+K 210  3891	*	5700	4620	5605	4141	4281	6219	4269	6591	*	5737	2437	4601	4247	2607	2741	4126	*	*	210
+       0	*	*	*	*	0	*	9056	0	1105	
+
+V 211  2999	*	*	*	4305	4688	*	2560	4227	2562	*	6126	5844	*	6020	4760	5132	1833	*	*	211
+       0	*	*	*	*	*	*	9008	0	0	
+
+D 212  5913	*	2911	2135	6054	*	4829	4966	4714	*	5659	3768	6060	3730	4250	2902	3349	5713	*	6015	212
+       46	6126	5894	3000	193	*	*	9008	1000	0	
+
+L 213  4714	*	*	6009	6024	5799	3969	4361	2275	3588	5984	5602	*	4842	3851	4826	3700	2158	*	4881	213
+       0	*	*	*	*	*	0	8984	0	1015	
+
+I 214  4816	*	*	3739	5594	5696	*	5868	5619	4304	*	3224	4469	4277	4040	2240	2082	4918	5968	*	214
+       0	*	*	*	*	*	0	8984	0	1015	
+
+K 215  *	*	*	*	3763	*	*	1822	5828	2620	4250	*	*	4594	*	4292	4754	2154	6021	4604	215
+       0	*	*	*	*	*	0	8887	0	1015	
+
+E 216  4523	*	5233	3091	5286	*	*	*	2760	*	*	3330	2842	*	2970	3002	3068	*	*	5125	216
+       56	4727	*	0	*	0	*	8502	1016	1015	
+
+P 217  4947	*	*	4691	4705	4638	*	3624	3145	3576	*	*	1413	4875	4854	4847	*	3419	*	*	217
+       0	*	*	*	*	*	*	7397	0	0	
+
+S 218  3669	*	4831	3023	*	*	4503	3704	4718	*	*	*	3696	*	3950	1577	2974	*	*	*	218
+       0	*	*	*	*	*	*	7238	0	0	
+
+G 219  3294	*	3404	*	*	2672	4255	4474	4196	*	*	*	4474	*	3084	2403	4513	4464	*	4222	219
+       0	*	*	*	*	*	*	6742	0	0	
+
+P 220  3922	*	*	3930	*	*	*	*	3840	*	*	*	324	*	*	*	*	*	*	*	220
+       0	*	*	0	*	*	*	5814	0	0	
+
+//
+�HHsearch 1.5
+NAME  ae209f299335d3708222d92bc2697502
+FAM   
+FILE  ae209f299335d3708222d92bc2697502
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:22:48 2013
+LENG  116 match states, 116 columns in multiple alignment
+FILT  101 out of 375 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  5.8 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCEEECCCCEEEEECCCCEEEEEEECCCCCEEEEEEECCCCCEEEECCCEEEECCCCEEEEEEEECCCCCCCCEEEEEEEECCCCCCCHHHHH
+HCCCCCCEEEEEEECC
+>ss_conf PSIPRED confidence values
+9855454315603998579988899799999979998599999927998789738636988999799999978999888889999999999986999996
+2589786099999729
+>Consensus
+xxxxxxxxxxxxxxpxxxxfxxxggxxxlxLxNxsxxrvaFKVKtTxnxxyrVrPxxGxIePgxsxxIxIxxxxgxxkxDKflixxxxxxxxxxdxxxxw
+kxxxpxgxxxixlxax
+>ae209f299335d3708222d92bc2697502
+MGHHHHHHSMINVDPPTGNYPATGGNSTHNITSESDSRLAFKVKSSNNEHYRVRPVYGFVDAKGKSKLDINRLPGPPKEDKIVIQYAEVPAEETDPMAPF
+KAGAQQGEIIVKLIAA
+>gi|115533618|ref|NP_491051.3| hypothetical protein W03D8.5 [Caenorhabditis elegans]gi|90568079|gb|ABD94094.1| Hypothetical protein W03D8.5 [Caenorhabditis elegans]
+-------------PPGQLLFTPDECQEKLTITNTHDKKIMYKLKLSDNIAFQLNPVFGVLEPGKSVDVAVTHRKSEPMEGKLIIVNSLLTGDEDKVKELF
+KQITkPTGdSVHVKLI--
+>gi|193207282|ref|NP_506565.2| hypothetical protein C15H11.1 [Caenorhabditis elegans]gi|169402782|emb|CAB02735.2| C. elegans protein C15H11.1, partially confirmed by transcript evidence [Caenorhabditis elegans]
+------------------------QKTILKITNQSEMKQAFKVKCTRNDLFRIKPSTGILDYNQTLTVILVYRGGQETvpiDRQHFGVYHIpAPENCTC-
+EGAWAEhyGPPQGEHKLRVV--
+>gi|17534907|ref|NP_495146.1| hypothetical protein K05F1.9 [Caenorhabditis elegans]gi|868179|gb|AAA68716.1| Hypothetical protein K05F1.9 [Caenorhabditis elegans]
+---------------TTVTFTNPKlGdevtIASLNLTNPTKDRYAFKIKCTSNQLFKIKSPVGYINPEESLTIPVYHYPATVIpenNKHyFVVYYIKAAn
+tvKEKIPVRDLWKAAaSSEGTRRVFI---
+>gi|313240732|emb|CBY33049.1| unnamed protein product [Oikopleura dioica]
+------------------------SasKSKQLHPKGNFENARF-FTKNAKKRYCVRPNTGVIEPYQSKEIKIALQPGDINqRHKFMIQSIVYPKNytdfn
+te--ELQRIWSSKSNnk-----------
+>gi|70994708|ref|XP_752131.1| integral ER membrane protein Scs2 [Aspergillus fumigatus Af293]gi|66849765|gb|EAL90093.1| integral ER membrane protein Scs2, putative [Aspergillus fumigatus Af293]
+--------------------------EILHLSNTNSEPVVFKVfSKCAPRKvayhdrtltsLCVLGQNNRSEAllrsaqlrtdrtrqecgcprlihilkl
+vlqplmGVLISRTVLLQAMkeePapdAKcKDKFLVQTVAVTGDMefSNVSSIF----------------
+>gi|145499313|ref|XP_001435642.1| hypothetical protein [Paramecium tetraurelia strain d4-2]gi|74830029|emb|CAI38987.1| VAMP-associated protein 3-1 [Paramecium tetraurelia]gi|124402776|emb|CAK68245.1| unnamed protein product [Paramecium tetraurelia]
+----------------ILEFMAEEnrfAHAQLTLQNLQSQPVAFKIKTTVPQMFQVKPSVGFIEADRSTIVEISTTQ-AIGqdqklDAKFQINACFRDSN
+EQDLNQFWRSRD------------
+>gi|145545552|ref|XP_001458460.1| hypothetical protein [Paramecium tetraurelia strain d4-2]gi|124426280|emb|CAK91063.1| unnamed protein product [Paramecium tetraurelia]
+----------------SLQFQEGQlNQLKFKITNVSDVPITFRIRCNNNTNYKLDHYMGLIHSHQDFENNIQNFEAAdLKlpGDQLEIQYAEFLDPLQDL
+KDFWKSTQSQDHVMIPI---
+>gi|340716611|ref|XP_003396790.1| PREDICTED: motile sperm domain-containing protein 2-like [Bombus terrestris]
+---------------DAFIFNKVGNeiSGTITIKNITlDKPLSYKVKTTSPGKFKVRLSSGVLLPQEQRTISVVVQQEHnmrspFHVDKFLVMCLPLKDp
+naSAQELAVLWKSEKPAEEHK------
+>gi|268568010|ref|XP_002640135.1| Hypothetical protein CBG12634 [Caenorhabditis briggsae]
+-----------------------MTCNELTLKNHSKFAVLFKVKCTSNKRIKIEDCSEILRPGNQTSVPI-KLVDNIDGDSLYVIYTLVGKQWhderMSA
+FRCWErakkQDVPTKCVSIRIK--
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1000	0	0	
+
+G 2    *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2
+       0	*	*	*	*	*	*	1000	0	0	
+
+H 3    *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	3
+       0	*	*	*	*	*	*	1000	0	0	
+
+H 4    *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	4
+       0	*	*	*	*	*	*	1000	0	0	
+
+H 5    *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	5
+       0	*	*	*	*	*	*	1000	0	0	
+
+H 6    *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	6
+       0	*	*	*	*	*	*	1000	0	0	
+
+H 7    *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	7
+       0	*	*	*	*	*	*	1000	0	0	
+
+H 8    *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	8
+       0	*	*	*	*	*	*	1000	0	0	
+
+S 9    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	9
+       0	*	*	*	*	*	*	1000	0	0	
+
+M 10   *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	10
+       0	*	*	*	*	*	*	1000	0	0	
+
+I 11   *	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	11
+       0	*	*	*	*	*	*	1000	0	0	
+
+N 12   1589	*	*	*	*	*	*	*	*	*	*	1545	*	*	*	1623	*	*	*	*	12
+       0	*	*	*	*	*	*	1771	0	0	
+
+V 13   2435	*	2668	*	*	*	*	2153	*	3161	*	*	*	*	*	*	*	1639	*	*	13
+       0	*	*	*	*	*	*	3178	0	0	
+
+D 14   *	*	1697	3341	*	*	*	3847	*	*	*	*	1416	3460	*	*	*	4116	*	*	14
+       0	*	*	*	*	*	*	4398	0	0	
+
+P 15   *	*	*	*	4400	4370	*	*	4121	*	*	4201	573	4060	4049	*	*	*	*	*	15
+       0	*	*	*	*	*	*	4671	0	0	
+
+P 16   5342	*	3474	2975	*	3544	4681	*	3384	*	*	3466	2326	5150	3528	5220	3834	4796	*	*	16
+       0	*	*	*	*	*	*	5349	0	0	
+
+T 17   2802	*	5453	2950	4376	*	*	3785	2863	*	*	*	5585	5460	*	3283	2691	3373	*	4366	17
+       31	5550	*	4524	64	*	*	5873	1000	0	
+
+G 18   2899	3060	*	*	*	5780	*	2446	*	1476	*	*	*	*	*	*	*	2434	*	*	18
+       0	*	*	*	*	*	*	5883	0	0	
+
+N 19   5430	*	5415	2521	*	*	5731	4760	4422	4707	*	3998	3134	2800	3807	4375	2471	5763	*	*	19
+       0	*	*	*	*	*	*	5971	0	0	
+
+Y 20   *	*	*	*	625	*	*	2845	*	4570	*	*	*	*	*	*	*	4160	4135	4124	20
+       30	*	5602	*	*	*	*	6010	0	0	
+
+P 21   4061	5590	5437	*	*	*	*	4623	3470	4513	5390	3621	2496	3284	4331	3702	2757	4809	5248	*	21
+       63	4549	*	1585	585	*	0	6034	1041	1000	
+
+A 22   2143	3506	4445	4403	3991	*	*	5924	4156	3495	*	4363	4192	4387	4591	4472	4233	4157	*	5549	22
+       70	4409	*	549	1660	0	*	6034	1065	1000	
+
+T 23   3654	*	4311	3056	5779	4326	*	3773	4708	4113	*	4907	4028	4576	*	2445	2568	5391	*	*	23
+       56	4713	*	0	*	*	*	6055	1107	0	
+
+G 24   *	*	4521	2746	*	901	*	4907	4405	5433	*	5580	*	4685	*	3519	5563	*	*	*	24
+       421	2124	5392	953	1048	*	*	6131	1647	0	
+
+G 25   3794	5202	*	*	*	1115	*	4522	5294	4361	5624	3407	*	5698	*	2835	4921	6126	*	*	25
+       121	3635	*	1280	765	*	0	6350	1256	1027	
+
+N 26   5268	5707	6805	4494	4758	*	5090	4831	3090	4171	5300	6787	*	2967	6502	2604	2240	4256	*	5302	26
+       31	5554	*	1674	542	*	0	6486	1067	1027	
+
+S 27   2707	3623	*	4163	*	4552	*	4927	3695	5013	*	5881	*	4021	4020	2346	3577	3244	*	*	27
+       0	*	*	*	*	*	0	6568	0	1107	
+
+T 28   *	6882	5142	3927	5506	*	4545	3909	2761	4319	6224	4392	5914	5535	4126	3229	2041	4715	*	5361	28
+       0	*	*	1000	1000	1123	887	6589	1013	1107	
+
+H 29   5450	*	*	*	3723	*	2714	2973	*	1413	4906	*	*	5581	*	*	*	2382	*	*	29
+       0	*	*	*	*	*	0	6614	0	1027	
+
+N 30   6782	*	6287	4634	6687	5741	4032	4893	2110	4435	4332	4615	*	5306	4717	5072	1992	3501	*	6211	30
+       0	*	*	*	*	0	*	6628	0	1027	
+
+I 31   *	*	*	*	4913	*	5604	1769	*	990	6276	*	*	*	5481	*	6696	3262	*	*	31
+       0	*	*	*	*	*	*	6646	0	0	
+
+T 32   5398	*	*	3903	5154	*	4553	3359	2358	6921	6522	5052	5604	5180	3982	3470	2379	3913	*	4769	32
+       0	*	*	*	*	*	*	6646	0	0	
+
+S 33   4722	*	*	*	*	*	*	*	5604	*	5789	169	*	*	*	4875	*	*	*	*	33
+       0	*	*	*	*	*	*	6646	0	0	
+
+E 34   5263	*	3947	4855	6140	5049	4635	3170	6220	4294	*	4372	2417	5418	5986	4425	2218	3677	*	*	34
+       45	*	5037	*	*	*	*	6646	0	0	
+
+S 35   4876	5579	5328	*	*	3380	5807	*	6187	6476	*	3630	*	5047	*	1539	1734	*	6271	6293	35
+       23	6003	*	0	*	1834	475	6585	1085	1102	
+
+D 36   3806	*	2445	3777	5538	4564	*	5147	2951	6502	5489	3272	4744	4576	5948	3470	3104	6395	*	*	36
+       37	5294	*	0	*	*	0	6588	1066	1055	
+
+S 37   4273	5457	4039	2528	4902	6974	4982	*	2803	4403	6315	3416	*	3981	3676	3816	4939	3992	*	6217	37
+       10	7182	*	0	*	*	0	6588	1000	1055	
+
+R 38   4054	*	6063	*	6601	*	4828	5761	3259	*	6668	4435	2465	*	1288	5805	4076	5714	*	6199	38
+       0	*	*	*	*	*	0	6588	0	1055	
+
+L 39   5538	*	*	*	5109	*	*	2080	5887	2446	4712	*	*	3217	6694	*	*	1720	*	4219	39
+       0	*	*	*	*	0	*	6588	0	1055	
+
+A 40   919	4373	*	*	*	*	*	3676	*	4505	3643	*	*	*	5605	4096	3460	4549	*	6953	40
+       0	*	*	*	*	*	*	6659	0	0	
+
+F 41   *	6263	*	*	710	*	*	3895	*	4269	6363	*	*	*	5791	6008	*	5107	*	2461	41
+       57	5791	5605	1585	585	*	*	6659	1031	0	
+
+K 42   *	*	*	*	*	*	*	*	135	*	6249	*	*	*	3919	*	6599	*	*	*	42
+       51	5358	6599	2563	267	0	*	6610	1067	1037	
+
+V 43   *	*	*	*	4902	*	*	1489	*	4060	4391	*	*	5468	*	*	*	1059	*	*	43
+       54	4768	*	2109	381	*	0	6649	1132	1004	
+
+K 44   *	*	*	5781	*	*	*	*	456	*	*	5468	*	5790	2646	5583	4988	*	*	*	44
+       31	5552	*	0	*	*	0	6649	1038	1004	
+
+S 45   6281	1664	*	*	*	*	5468	6559	4592	4932	*	*	*	5552	*	3349	1306	4636	*	*	45
+       0	*	*	*	*	*	0	6649	0	1004	
+
+S 46   *	4568	*	*	*	6126	*	5781	6008	*	*	3821	*	*	5980	1942	829	*	*	*	46
+       48	5781	6126	1000	1000	*	0	6649	1031	1004	
+
+N 47   2253	6305	2442	*	*	5534	5942	5756	6296	*	*	2025	*	5980	6326	2374	4431	6486	*	*	47
+       54	5265	6542	1590	582	912	1094	6627	1105	1085	
+
+N 48   4320	*	*	*	*	*	*	6320	5596	5273	*	1226	1457	*	*	5053	4943	5583	*	6003	48
+       0	*	*	*	*	865	1149	6637	0	1091	
+
+E 49   6126	*	2701	2752	5672	6933	5720	4432	2386	4708	6141	3665	*	4448	3907	4414	3511	6882	*	6359	49
+       33	*	5468	*	*	*	0	6649	0	1004	
+
+H 50   5038	6436	6835	4517	4667	5572	6032	4244	2478	2309	3108	3906	*	5425	3359	5046	6542	4281	*	*	50
+       32	5505	*	3322	152	*	0	6591	1038	1126	
+
+Y 51   *	*	*	*	1313	*	5513	5640	*	5505	*	*	*	*	*	5933	*	*	*	951	51
+       0	*	*	*	*	*	0	6591	0	1126	
+
+R 52   *	2830	4578	*	5238	*	*	*	2862	3878	*	6514	*	4676	1257	4169	4903	6656	6661	6966	52
+       0	*	*	*	*	664	1439	6591	0	1126	
+
+V 53   6681	*	*	*	5761	*	*	2374	*	4491	5424	*	*	*	*	6190	5587	564	*	*	53
+       23	*	5980	*	*	0	*	6649	0	1004	
+
+R 54   *	6790	4625	4378	*	*	6786	*	2662	5537	*	2937	*	4752	1280	4279	4038	5511	*	*	54
+       0	*	*	*	*	*	0	6640	0	1027	
+
+P 55   *	*	*	5624	6480	5537	5152	*	*	6829	5462	*	262	*	*	6517	4564	*	*	*	55
+       15	*	6630	*	*	0	*	6640	0	1027	
+
+V 56   4917	5675	5552	*	6323	*	5468	5157	*	5980	*	2314	2955	5583	5790	2434	6126	1992	*	5189	56
+       0	*	*	*	*	*	0	6649	0	1004	
+
+Y 57   4684	5212	*	*	2799	5555	5311	5769	6551	3709	4734	4784	*	*	*	2975	2751	3115	*	2526	57
+       33	*	5480	*	*	0	*	6652	0	1004	
+
+G 58   3969	*	3793	*	6252	483	*	*	*	*	5431	5029	*	*	6845	4533	5545	6898	*	*	58
+       0	*	*	*	*	0	*	6605	0	1055	
+
+F 59   5574	7124	5564	*	1677	*	*	2189	6700	3121	6478	*	7019	5501	4914	6018	4073	3044	*	5384	59
+       0	*	*	*	*	*	*	6662	0	0	
+
+V 60   6871	5069	*	*	*	*	*	1206	*	2071	*	*	*	*	*	5588	*	1892	*	*	60
+       0	*	*	*	*	*	*	6662	0	0	
+
+D 61   3919	6288	2608	1614	*	7318	6197	5497	3027	6112	5909	4038	4801	4148	4771	5022	6162	*	*	*	61
+       0	*	*	*	*	*	*	6662	0	0	
+
+A 62   2803	*	*	*	*	6250	*	5644	*	6329	*	6266	631	7303	6635	4156	4842	4921	*	6358	62
+       30	5588	*	5044	44	*	*	6662	1038	0	
+
+K 63   5576	*	4312	4434	*	1159	5651	*	4672	6821	6250	2998	6642	5025	3679	3951	6843	*	6862	5187	63
+       31	5564	*	4858	51	*	*	6662	1038	0	
+
+G 64   3357	4990	3832	2318	5624	3403	*	*	3914	*	6118	5084	*	2867	4696	3149	5220	5133	5501	6724	64
+       0	*	*	*	*	*	*	6662	0	0	
+
+K 65   5564	4882	4367	3547	6895	*	*	5867	3303	5588	5347	6697	*	5235	4776	1678	2193	4840	*	*	65
+       0	*	*	*	*	*	*	6662	0	0	
+
+S 66   3082	5032	*	5606	4475	*	*	3073	2638	3442	6215	5306	*	5197	5512	4509	4426	2198	*	5781	66
+       0	*	*	*	*	*	*	6662	0	0	
+
+K 67   5764	*	2855	2377	*	*	6215	5650	4294	4464	*	3752	4209	3508	*	2804	2831	5554	*	*	67
+       0	*	*	*	*	*	*	6662	0	0	
+
+L 68   5688	*	*	*	6037	*	*	1311	*	2568	6700	5231	*	5501	5588	*	6450	1721	*	*	68
+       17	6450	*	2585	263	*	*	6662	1000	0	
+
+D 69   4893	6265	3793	3349	6118	*	5155	3269	3477	*	*	3430	6533	3640	5385	4035	2459	3375	*	*	69
+       31	5564	*	2322	322	*	*	6662	1038	0	
+
+I 70   *	*	*	*	6319	6478	*	1152	*	3721	*	*	*	*	*	*	*	1151	*	*	70
+       16	6478	*	1585	585	*	*	6662	1004	0	
+
+N 71   4301	5779	*	7248	4490	6503	6288	3446	5688	2800	5134	4664	*	4791	5436	5245	1890	3526	4197	4763	71
+       14	6700	*	2322	322	*	*	6662	1000	0	
+
+R 72   *	6503	*	6450	4229	*	3693	6288	4734	1686	4233	4732	*	6329	1794	*	5571	5862	*	4160	72
+       11	6981	*	2807	222	*	*	6662	1000	0	
+
+L 73   4466	6623	*	6260	4903	6610	3986	4398	3707	2704	6150	3661	6472	1821	4197	6597	4165	5145	*	6512	73
+       0	*	*	*	*	*	0	6659	0	1000	
+
+P 74   2710	7200	5685	4890	*	3690	*	*	3925	5792	*	3187	1690	4720	*	3288	6526	4941	6517	6437	74
+       158	3599	5549	3117	177	*	0	6659	1404	1000	
+
+G 75   3757	*	4258	5592	*	1249	*	4715	3885	4240	3679	6386	6163	4411	6563	3633	4986	*	*	*	75
+       378	2118	*	1511	623	0	*	6594	2160	1172	
+
+P 76   2873	6973	4205	3772	5392	5089	5300	5270	3862	5200	6941	6722	1869	4060	5793	4403	4393	4472	*	5769	76
+       501	1768	*	1686	537	*	*	6662	2557	0	
+
+P 77   2915	5534	4852	4620	*	5906	6268	2827	4027	4581	4683	5019	1901	4048	*	4868	5397	4616	*	*	77
+       117	3681	*	1341	724	0	*	6585	1510	1208	
+
+K 78   6329	5144	4689	6507	*	3550	5389	5794	1277	5174	5562	3793	5417	4191	3570	5022	5078	5278	*	*	78
+       496	1782	*	1287	761	*	*	6662	2445	0	
+
+E 79   4563	*	4473	2653	*	4441	5493	5818	2349	6365	*	3384	*	6018	2425	4516	4332	4422	*	5517	79
+       19	6269	*	1000	1000	*	*	6662	1001	0	
+
+D 80   4411	6890	705	4540	*	5876	2986	*	4983	*	*	6844	*	*	4283	6631	4530	*	*	*	80
+       28	5694	*	591	1573	*	*	6662	1037	0	
+
+K 81   *	*	*	5306	5969	*	3225	6720	654	6522	*	*	*	4157	3472	5146	6846	*	*	6269	81
+       32	5515	*	0	*	*	*	6662	1064	0	
+
+I 82   6148	*	*	*	1064	*	4841	4824	*	1592	5062	*	*	*	*	*	*	5588	*	4182	82
+       0	*	*	*	*	*	*	6649	0	0	
+
+V 83   4903	6524	*	5205	3448	*	*	3598	*	1578	3816	*	*	4086	*	6526	6308	2023	*	5638	83
+       0	*	*	*	*	*	*	6649	0	0	
+
+I 84   3622	6446	*	*	4448	6351	*	1557	*	3553	5223	*	*	*	*	4612	6634	1529	*	*	84
+       0	*	*	*	*	*	*	6649	0	0	
+
+Q 85   *	4755	*	5066	4177	*	4908	3326	*	3551	3204	4563	*	1613	*	*	*	2957	*	4238	85
+       14	6727	*	1585	585	*	*	6649	1000	0	
+
+Y 86   2886	4501	*	*	3606	6727	5423	6524	*	6827	6308	4227	*	*	*	2774	2648	6312	*	1729	86
+       0	*	*	*	*	*	*	6649	0	0	
+
+A 87   2287	4056	*	6573	*	*	3286	2719	4720	3995	5278	*	*	*	*	3850	2560	3255	*	*	87
+       0	*	*	*	*	*	*	6649	0	0	
+
+E 88   3429	*	5492	2468	5492	5708	*	3700	3443	3928	5395	4195	3529	*	6851	5843	4092	2486	*	*	88
+       18	6351	*	0	*	*	*	6649	1005	0	
+
+V 89   1725	3881	*	*	5085	6262	5503	3241	5412	3790	4726	6838	*	*	5512	5149	5059	2405	*	4374	89
+       152	6463	3497	0	*	*	*	6649	1000	0	
+
+P 90   3995	6948	3839	3448	7067	5000	*	*	3850	4866	*	6567	1950	6921	*	2748	2601	4872	*	*	90
+       56	6365	5275	831	1192	406	2027	6564	1112	1496	
+
+A 91   3012	*	2462	4614	*	2925	6562	*	3250	*	6518	4480	4185	3902	6790	3063	3991	5193	*	6674	91
+       115	4885	4547	1589	583	1018	983	6600	1262	1221	
+
+E 92   5242	*	1602	2759	*	2900	6810	6741	4033	6235	*	3277	3792	*	6666	5044	4203	*	*	*	92
+       159	3264	*	1452	656	518	1730	6583	1444	1411	
+
+E 93   3095	3809	2683	2625	*	4597	*	4870	3573	5259	5466	3526	6803	5420	*	4781	4665	3856	5533	*	93
+       330	2291	*	1463	650	1347	721	6594	1994	1276	
+
+T 94   6584	*	4723	5308	6721	5866	6615	3426	2618	6150	4381	5122	5628	2638	4643	3650	2398	5041	*	5482	94
+       12	6952	*	1585	585	547	1664	6616	1000	1142	
+
+D 95   6225	5550	1018	3279	*	7292	6288	*	5817	5036	*	3123	6408	5446	5746	4350	3731	6832	*	*	95
+       59	6862	4975	1000	1000	*	0	6667	1000	1000	
+
+P 96   1970	*	6791	*	5584	*	*	3876	*	2088	4196	*	2505	*	*	6348	6829	2914	*	5201	96
+       30	5586	*	0	*	1715	524	6606	1037	1169	
+
+M 97   2402	*	6793	4151	*	6223	4357	6856	2344	*	5606	6380	5125	3754	2381	4576	3511	*	5599	*	97
+       0	*	*	*	*	*	0	6630	0	1097	
+
+A 98   2806	*	3665	1798	*	5529	*	5708	3547	*	7169	6543	5324	3551	4318	2590	6542	6743	*	*	98
+       13	6782	*	0	*	745	1310	6630	1000	1097	
+
+P 99   3083	4467	*	6699	3015	*	*	2402	*	2187	4846	*	4108	*	*	4733	4398	3518	6914	5562	99
+       0	*	*	*	*	*	0	6667	0	1000	
+
+F 100  *	*	*	*	1074	*	*	*	*	5521	*	*	*	*	*	*	*	*	990	*	100
+       0	*	*	*	*	*	0	6651	0	1000	
+
+K 101  2977	*	7016	3447	*	*	*	*	1103	6128	6237	4420	*	5014	3596	4993	4166	4920	*	*	101
+       66	4475	*	1410	681	*	0	6536	1170	1000	
+
+A 102  4118	*	3310	4597	*	5331	6495	6093	3137	5681	6617	3252	4342	3448	6359	2078	3785	4686	*	*	102
+       36	5359	*	1000	1000	*	0	6481	1058	1000	
+
+G 103  2966	*	4934	5180	*	2682	5103	3931	2839	6459	*	4849	6157	4133	3808	4554	4395	2962	*	6097	103
+       64	4517	*	473	1840	*	0	6464	1109	1053	
+
+A 104  2335	*	3119	*	*	*	*	6081	2387	4611	*	4203	3954	4902	6304	3235	3036	5141	5759	*	104
+       75	4307	*	0	*	1164	853	6447	1165	1053	
+
+Q 105  4518	*	5463	4524	*	4705	*	*	3361	5142	*	4567	1058	4361	*	3237	4853	6122	*	*	105
+       68	4432	*	2682	244	0	*	6214	1142	1000	
+
+Q 106  3408	*	3232	3182	*	*	5910	6050	4121	4130	*	3924	4727	3473	6043	3576	2831	3818	*	4693	106
+       94	3986	*	338	2259	*	*	6082	1165	0	
+
+G 107  6060	*	3354	3725	*	901	*	*	5465	4573	*	4489	5655	3548	5790	5573	5475	*	*	*	107
+       122	3626	*	0	*	*	*	6046	1240	0	
+
+E 108  4396	4800	*	2511	*	*	4229	4329	*	3290	4506	4635	4615	4406	6132	4840	3311	2344	5897	*	108
+       0	*	*	*	*	*	*	5999	0	0	
+
+I 109  5286	*	*	*	3870	*	3728	2348	3721	3734	3267	*	*	*	3225	*	4635	2108	*	*	109
+       32	5524	*	0	*	*	*	5945	1004	0	
+
+I 110  5595	*	3996	*	*	*	5565	2628	3946	*	4082	*	*	*	1814	4606	2298	4034	*	5652	110
+       0	*	*	*	*	*	*	5853	0	0	
+
+V 111  *	4820	*	*	*	*	*	1238	*	2043	5515	*	*	*	*	*	*	1858	*	*	111
+       0	*	*	*	*	*	*	5727	0	0	
+
+K 112  4973	*	*	*	5095	*	5351	*	2264	5005	*	4401	1264	3809	3677	*	5484	*	*	4657	112
+       0	*	*	*	*	*	*	5713	0	0	
+
+L 113  3180	*	*	*	*	*	*	2492	*	1448	2984	*	*	*	*	*	*	2343	5517	*	113
+       0	*	*	*	*	*	*	5652	0	0	
+
+I 114  *	*	4909	*	4434	*	4063	2603	2679	3759	*	4393	*	*	3835	3343	4817	2222	*	*	114
+       0	*	*	*	*	*	*	5006	0	0	
+
+A 115  356	*	*	*	*	*	*	*	*	*	*	*	*	*	*	3348	3053	*	*	*	115
+       0	*	*	*	*	*	*	4085	0	0	
+
+A 116  822	*	*	*	*	*	*	*	*	*	*	2184	*	*	*	*	2223	*	*	*	116
+       0	*	*	0	*	*	*	2184	0	0	
+
+//
+�HHsearch 1.5
+NAME  af5e37f6170ad6dd671732b9beb56903
+FAM   
+FILE  af5e37f6170ad6dd671732b9beb56903
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:30:34 2013
+LENG  215 match states, 215 columns in multiple alignment
+FILT  130 out of 1360 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  10.3
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEEECCCCEEEECCCCEEEEEEEECCCCCCCEEEEEEECCCCCCEEEEEEECCCCCEEECCCCCCCEEEEECCCCCCEEEEEECCCCCCCCEEEEEEEC
+CCCCEEEEEEEEEEEEEECCCCCEEECCCCCEECCCCEEEEEEEEECCCCCCEEEEECCCCCCCCCCEEEEEECCCCEEEEEEEEEECCCCCCCEEEEEE
+EECCCCEEEEEEECC
+>ss_conf PSIPRED confidence values
+9299488858996899799999965788888789999927999827999995278840325766772588404788806898823300356208998864
+9853366667777864101465123058741112799699999984656998599988996857731024571799699999999953346898799999
+938987589999539
+>Consensus
+xxxxxxpxxxxxxxGxxvxLxCxxxxxxxxxxxvxWxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxrxxxxxxxxxxxxxLxixxvxxxDxgxYxCxvxx
+xxxxxxxxxxxlxvxxxxxxxpxxxxxxxxxxxxxgxxxxlxCxxxxxxPxxxxvxWxxxxxxxxxxxxxxxxxxxxxxxxsxlxixxxxxxxxxytCxv
+xxxxxxxxxxxxlxx
+>af5e37f6170ad6dd671732b9beb56903
+QVQLQQSGAELVKPGASVKLSCKASGYTFTSYWMQWVKQRPGQGLEWIGEIDPSDSYTNYNQKFKGKATLTVDTSSSTAYMQLSSLTSEDSAVYYCANLR
+GYFDYWGQGTTLTVSSAKTTPPSVYPLAPGCGDTTGSSVTLGCLVKGYFPESVTVTWNSGSLSSSVHTFPALLQSGLYTMSSSVTVPSSTWPSQTVTCSV
+AHPASSTTVDKKLEP
+>gi|326674722|ref|XP_689309.4| PREDICTED: poliovirus receptor-related protein 2-like [Danio rerio]
+-QHVRVEPEVVSFPGQTVTLRCQFPNPGDTqLTQVSWIFERTDTERTNIAVFHPNFGVNYPTTSPvSGRVTFVSNPpTLDNPSIQIKDVKMTDEGRYICE
+-----YATYPSGNEqgvssLVMLAKPKNTATTVTVSAGKTPVI----VARCESSNGRP-AATITWSTALNGNVTTPKKTDNPDNTVSIQSVYMLaPQPED
+NGKDISCIVSHRTMAQPETFPMK-
+>gi|145408204|gb|ABP65664.1| MHC class I antigen [Sus scrofa]
+----------------------------------------------------------------------------------------------------
+-------------------------------------htyqwmygcylgpdglflrgysqfgydgadyvalne--DLRSWTAADMAAQI-----------
+--skrkweaadeaerm--RSYL--QGRCVEWLQKYLEMGK-----------------dt--------
+>gi|2114481|gb|AAC02653.1| butyrophilin [Homo sapiens]
+-IVVGPTDPILATVGENTTLRCHLSPEKNAEDmEVRWFRSQFSPAVFVY--KGGRERTEEQMEEYRGRTTFVSKDiSRGSVALVIHNITAQGNGTYRCYF
+QEG-RSYDEAILHLVVAERLGSKPLISMRGHEDGG-----IRLECISRGWYPKPL-TVWrdPYGGVAPALKEVSMPDADGLFMVTTAVIIRDKS--VRNM
+SCSINNTLLGQKKESVI--
+>gi|17542472|ref|NP_499896.1| hypothetical protein T21D12.9 [Caenorhabditis elegans]gi|14670183|gb|AAK72063.1|AF016687_10 Small protein 10, isoform a, confirmed by transcript evidence [Caenorhabditis elegans]
+---VRQPVEVSTLIGEKARFTCNVYGASP--LSIEWRVMENGQPRVLVqdsATFLSINRTAVVNGTFDERELAAAE-------LLLDNVAMTDNSEYQCV
+ARNR----FGSDFSTHVKLQVYQAPKFTYTPEDMPLLVGQTAKFLCAATGT-PRPE-IKWafEQIPFPAAEARRLYVTPndDHIYIM----NVTKED--Q
+GAYTCHATNVAG----------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+Q 1    *	*	4307	1972	*	*	*	*	*	*	*	*	3584	1147	*	3748	3556	*	*	*	1
+       0	*	*	*	*	*	*	5998	0	0	
+
+V 2    4699	*	*	*	3869	*	*	2689	*	2431	*	4655	*	*	*	3960	3573	1628	*	4609	2
+       0	*	*	*	*	*	*	8319	0	0	
+
+Q 3    5115	*	5454	4400	5175	4292	5143	5554	3926	5157	*	*	*	4395	4648	3063	3880	1673	*	3468	3
+       0	*	*	*	*	*	*	9025	0	0	
+
+L 4    5847	*	*	5848	4654	4620	*	3745	*	1481	4097	*	4268	5937	5704	4776	3918	2296	*	*	4
+       0	*	*	*	*	*	*	9572	0	0	
+
+Q 5    4627	*	5295	2787	*	5745	*	5248	5283	4722	*	*	*	2703	5863	2486	2512	2680	*	*	5
+       0	*	*	*	*	*	*	9879	0	0	
+
+Q 6    3479	*	5744	3810	*	5513	4761	4803	3349	4457	*	5465	2767	2241	4466	4450	4365	4024	*	*	6
+       94	3979	*	0	*	*	*	9909	1729	0	
+
+S 7    5031	*	4646	4543	*	4704	6099	5559	5891	6268	*	4654	985	5001	5227	3620	3532	6402	*	*	7
+       0	*	*	*	*	*	*	10065	0	0	
+
+G 8    3373	*	4511	3863	*	3559	5117	*	3645	5326	6467	5030	2617	3605	4477	2558	3827	*	*	*	8
+       0	*	*	*	*	*	*	10166	0	0	
+
+A 9    4890	*	3490	4125	6907	*	6285	4488	6400	3809	*	4112	2944	3508	5269	2551	3288	3375	*	*	9
+       27	5776	*	0	*	*	*	10264	1055	0	
+
+E 10   4683	*	*	3897	5385	5844	5074	2645	5075	2568	4945	*	*	4718	*	3978	4658	1834	*	6555	10
+       18	6322	*	0	*	*	*	10438	1001	0	
+
+L 11   4686	*	4787	3621	6655	6492	5341	3888	4888	4122	6130	4117	5994	*	3828	3075	2432	2910	*	4501	11
+       0	*	*	*	*	*	*	10493	0	0	
+
+V 12   2194	5806	*	5841	5810	4777	*	4637	5219	3693	5383	*	6490	4942	4551	5042	5108	1539	*	4891	12
+       0	*	*	*	*	*	*	10622	0	0	
+
+K 13   3905	*	*	5336	5635	6372	5702	4286	3118	4769	5637	4624	4530	2956	3465	3393	3067	3559	6463	5651	13
+       0	*	*	*	*	*	*	10639	0	0	
+
+P 14   3227	*	5629	2190	6602	*	*	5149	4191	3364	5995	6216	3480	5869	3506	4046	4462	3151	6699	6435	14
+       0	*	*	*	*	*	*	10733	0	0	
+
+G 15   6342	*	4871	5256	7014	588	5930	*	4564	*	*	3681	*	5179	4365	5400	6803	6792	*	*	15
+       0	*	*	*	*	*	*	10681	0	0	
+
+A 16   4137	*	3077	2289	*	2864	5746	*	3734	5418	*	4308	*	3129	5883	3130	3844	*	*	*	16
+       0	*	*	*	*	*	*	10681	0	0	
+
+S 17   4784	5418	3815	4405	6512	6969	5588	*	4366	4855	6803	3571	2791	5617	5148	2507	2522	4206	*	6818	17
+       31	6342	6792	1000	1000	*	*	10681	1078	0	
+
+V 18   2002	*	*	*	5274	4589	*	3548	*	3643	6650	*	6573	*	*	5618	5594	1133	*	*	18
+       17	6412	*	0	*	0	*	10588	1078	1000	
+
+K 19   4828	*	5068	3424	6993	6487	6178	3553	4990	5386	5310	4515	5576	4645	4661	3054	2081	3021	*	5714	19
+       0	*	*	*	*	*	*	10698	0	0	
+
+L 20   *	*	*	*	3264	*	*	2559	*	770	4786	*	*	*	*	*	*	3420	*	6644	20
+       0	*	*	*	*	*	*	10698	0	0	
+
+S 21   *	*	3924	5461	6928	4940	4920	*	5349	4534	6487	3510	2520	3845	3130	3061	2927	4270	6698	*	21
+       0	*	*	*	*	*	*	10698	0	0	
+
+C 22   4954	132	*	*	6521	*	6530	6340	*	*	*	*	*	*	*	6517	6607	*	*	*	22
+       14	6689	*	0	*	*	*	10698	1012	0	
+
+K 23   4844	*	4044	4129	5384	3944	5148	6816	3168	3605	6144	3294	4542	4644	3704	2983	3739	4792	*	6083	23
+       41	5162	*	1000	1000	*	*	10698	1337	0	
+
+A 24   2644	*	6810	6340	3201	5861	*	2855	*	3162	*	5299	4639	*	*	4922	4934	2436	*	2980	24
+       137	4182	4807	1022	979	*	*	10698	1842	0	
+
+S 25   4526	*	3858	3584	*	4997	5222	4948	3695	4715	*	3756	4194	4540	3944	2553	2965	4489	6644	6829	25
+       108	5285	4426	1890	454	1817	481	10535	1352	1649	
+
+G 26   4060	*	3252	5750	*	1784	4660	6526	5243	5671	*	3576	4232	4373	4435	3344	5225	3981	6710	*	26
+       189	*	3028	2807	222	1072	932	10487	1034	2293	
+
+Y 27   4101	5722	5287	4070	3140	3875	5495	4345	4308	4245	6759	4247	3950	4417	5547	3136	4938	5739	*	3040	27
+       77	*	4274	*	*	283	2490	10763	0	3553	
+
+T 28   5135	6624	6714	4185	5045	4826	6362	5411	3504	4911	*	4078	2778	3803	4524	2766	3682	3934	*	3969	28
+       196	5455	3259	2453	291	1879	458	10814	1328	2253	
+
+F 29   4411	4852	4966	4167	4052	4995	*	6088	3984	3251	5709	5557	2485	4258	4796	3422	3931	4881	*	4154	29
+       505	4965	1925	1750	509	1777	498	10688	1307	3631	
+
+T 30   3753	*	3032	3112	*	3254	6046	*	3837	6098	*	5093	4345	4012	3801	2790	3377	5046	*	*	30
+       21	*	6107	*	*	2858	214	10349	0	6228	
+
+S 31   4349	*	2480	3670	6459	4750	4069	5397	4080	3522	*	3733	3767	6218	4826	4019	3612	4115	*	5915	31
+       111	3968	6646	1338	726	193	3000	10437	1747	5800	
+
+Y 32   6575	*	3794	4322	3791	4947	*	3463	5064	2897	5070	4281	2745	6787	6575	3922	3968	3580	*	4489	32
+       199	3171	5803	302	2402	1069	934	10869	2875	1784	
+
+W 33   3612	*	6798	4785	5277	6609	6867	4015	4527	4758	5223	4587	5178	4363	4481	2727	2623	3521	5750	3684	33
+       27	5763	*	1358	713	1335	728	10664	1166	1660	
+
+M 34   5159	*	*	*	3459	*	*	2011	5404	2564	4606	*	*	*	*	*	5168	1470	*	6598	34
+       22	6015	*	0	*	*	0	10866	1112	1333	
+
+Q 35   7113	*	*	3881	3562	6901	4285	5167	3672	3995	*	5942	*	3709	4011	2752	2331	5029	6561	3871	35
+       0	*	*	*	*	*	0	10866	0	1333	
+
+W 36   *	*	*	*	4235	*	*	6523	6442	5891	*	*	*	6598	*	*	*	5500	192	*	36
+       36	6605	6096	0	*	*	0	10866	1004	1333	
+
+V 37   *	5394	6442	4515	2742	*	5390	5357	3689	2776	5533	5258	*	5314	4856	4284	4722	4891	4469	2157	37
+       28	*	5706	*	*	*	0	10852	0	1663	
+
+K 38   6930	6397	*	6475	3887	6454	4702	4623	1737	3813	*	6262	*	3691	1978	*	5900	4891	6495	4892	38
+       147	*	3364	*	*	1794	491	10837	0	1980	
+
+Q 39   4788	*	2962	5659	*	3878	4441	6658	3418	4714	*	3870	*	1939	4103	4240	6166	3864	*	4752	39
+       138	*	3457	*	*	*	0	10735	0	3421	
+
+R 40   4767	6225	3628	5081	6716	3306	5396	5250	3039	4189	6171	3502	5331	3821	3061	4136	3569	6516	*	4935	40
+       263	*	2583	*	*	2401	303	10593	0	4652	
+
+P 41   5153	*	3646	3276	4618	4269	6247	5967	3031	4899	6639	3529	2011	6632	4227	3691	5297	*	*	*	41
+       48	5476	6639	2334	319	665	1437	10419	1162	5859	
+
+G 42   4385	*	3555	3756	*	1537	5248	6681	4156	*	*	3494	6011	4932	5108	2840	4756	6197	*	*	42
+       115	3710	*	1354	716	1960	429	10733	2186	3227	
+
+Q 43   3584	*	3767	3266	5698	3129	4777	5551	2691	4939	*	4400	5245	3061	4952	4810	3791	5232	*	*	43
+       13	6850	*	0	*	3687	117	10733	1034	2666	
+
+G 44   3068	*	3741	3589	5984	2612	6361	4325	4421	5223	4922	4807	3830	4583	5745	3145	3899	5133	*	*	44
+       149	3544	6361	385	2095	*	0	10737	2308	2534	
+
+L 45   6998	*	5545	4585	4314	5717	*	4040	5640	2559	5665	5372	1862	4834	5205	3947	4492	3332	6590	6784	45
+       42	5778	6584	942	1060	2430	296	10743	1212	2786	
+
+E 46   6007	*	4276	2799	4731	3735	5653	4465	3951	4742	*	4337	4499	2641	4091	4138	3911	4383	*	5304	46
+       0	*	*	*	*	3309	153	10742	0	2618	
+
+W 47   4714	5575	5830	5207	4022	4630	6666	3659	4819	2664	5741	4084	5840	6698	3625	4808	4383	3421	4026	3508	47
+       0	*	*	*	*	*	0	10756	0	2451	
+
+I 48   6014	4947	4832	4839	4727	6742	5727	2199	5870	2708	5209	5606	6055	5787	6053	3609	6012	2510	*	4073	48
+       651	7096	1491	0	*	1495	632	10756	1009	2451	
+
+G 49   2345	5377	*	6187	3632	4819	6173	4204	6052	2555	5011	*	4583	4529	6323	3158	4513	3641	5745	6298	49
+       27	*	5745	*	*	*	0	9990	0	6667	
+
+E 50   4205	6064	5232	3494	4200	6087	5405	5232	4511	6035	4115	6190	5144	6116	3811	2900	2603	5129	5905	3213	50
+       0	*	*	*	*	1300	752	9937	0	6775	
+
+I 51   5042	*	6268	5008	4456	*	5704	2499	3940	3115	4496	6374	6127	4986	*	3440	4295	2248	6337	4830	51
+       0	*	*	*	*	5003	46	10412	0	4936	
+
+D 52   4090	*	3373	4488	3927	4777	5398	4883	4238	3337	*	4047	6821	3395	3699	4022	4156	5362	6671	3391	52
+       477	5813	1922	2795	224	4362	72	10419	1188	4837	
+
+P 53   4050	*	6263	4351	6117	3476	5035	6396	3378	5039	4664	4098	3449	4944	4019	3036	3109	3864	*	6135	53
+       99	*	3916	*	*	2424	298	9620	0	7034	
+
+S 54   4723	6067	3812	4601	5295	2279	*	*	5088	4181	5966	3542	5004	4577	4078	2183	5016	4901	*	*	54
+       79	5972	4751	0	*	4599	61	9728	1000	6656	
+
+D 55   5229	5875	2894	3426	5043	2818	5276	*	4062	4638	*	3400	*	6369	5270	2669	3342	*	*	4567	55
+       141	4586	4285	2000	415	1159	857	9692	1350	6750	
+
+S 56   5495	*	3783	4684	6402	2146	6380	*	3672	*	*	3583	4780	3241	4122	2709	4069	5020	*	6411	56
+       48	6411	5562	3807	107	1840	473	10384	1042	5132	
+
+Y 57   3907	*	4316	4987	4986	4946	4191	4668	3807	5207	*	4037	5375	4159	4241	3278	3102	3553	*	3376	57
+       103	*	3859	*	*	3599	124	10652	0	4389	
+
+T 58   3890	*	5144	3408	*	4942	4786	3666	4343	4395	*	4027	3376	5727	4407	2982	3154	3904	6388	5359	58
+       44	5047	*	1000	1000	2659	249	10535	1314	4944	
+
+N 59   5229	*	5132	2916	4856	5414	5623	4324	3898	3907	*	3475	5720	2984	4551	3120	4717	3846	*	4325	59
+       68	4901	6346	1108	899	*	0	10599	1338	4420	
+
+Y 60   5092	4743	4185	3504	3338	5350	5445	4441	4280	4674	*	4041	5628	4590	4931	4180	*	3211	6714	2481	60
+       28	*	5709	*	*	2277	333	10594	0	4564	
+
+N 61   4779	6466	3733	3374	3816	4366	5726	6512	4146	4965	4967	4218	3790	4299	4481	2911	3559	5157	6420	4982	61
+       0	*	*	*	*	4301	75	10632	0	4163	
+
+Q 62   3895	*	3377	3022	*	3118	5623	5654	4005	4828	*	3132	3501	4214	4799	3389	4368	6129	*	6611	62
+       0	*	*	*	*	*	0	10642	0	4022	
+
+K 63   4625	*	3281	2909	5710	3061	5041	5230	4459	5177	5442	4592	3816	4628	4310	3864	3184	5029	*	5737	63
+       89	4617	5692	636	1487	3391	145	10642	1538	4022	
+
+F 64   4361	6437	5201	4964	2717	4390	5430	4030	6847	3207	5731	4605	4331	5726	5452	4966	3636	3396	*	3052	64
+       64	4813	7002	4506	65	4418	69	10630	1377	4029	
+
+K 65   4173	6779	3708	3069	5522	4836	4925	6264	2834	5434	*	3617	4519	3018	4009	3344	4495	6632	*	6607	65
+       125	3771	6679	0	*	1446	660	10642	1987	4022	
+
+G 66   4178	6121	3134	3754	*	2039	5540	6141	4322	5126	6507	3128	4462	4716	4629	3623	4466	6789	*	*	66
+       48	5644	6314	1360	712	3643	120	10722	1355	3144	
+
+K 67   6255	*	5021	5301	*	4414	4415	6790	2709	*	4785	4867	6540	4440	1077	4927	5123	6385	*	*	67
+       0	*	*	*	*	3160	171	10732	0	3217	
+
+A 68   3203	*	7059	5641	1784	5085	5280	3238	5479	3457	7211	5847	6501	5861	5056	6375	4614	3499	*	3735	68
+       0	*	*	*	*	*	0	10715	0	2978	
+
+T 69   5478	*	5285	3711	6483	5506	4183	4258	4730	4735	*	4855	5789	3174	3696	2438	2717	3972	6546	6945	69
+       19	*	6227	*	*	*	0	10715	0	2978	
+
+L 70   3560	5340	5419	*	3537	4581	5518	2937	6375	2718	5692	6532	4842	5029	6785	3412	4943	2749	6440	4998	70
+       26	*	5812	*	*	*	0	10745	0	3169	
+
+T 71   4417	*	3567	3678	6812	5788	6503	3577	4215	3924	*	3529	5720	3605	4553	3264	2667	4622	5912	*	71
+       209	*	2891	*	*	2898	208	10559	0	3471	
+
+V 72   4347	*	4686	5523	4777	2695	4203	6277	3769	3924	6503	4045	3891	3903	3685	4382	3837	4256	5206	6387	72
+       54	*	4764	*	*	*	0	10461	0	4893	
+
+D 73   5551	*	2952	3667	6013	3317	4318	5202	3246	5587	5458	2906	4573	3750	4794	5319	3819	6454	*	4814	73
+       412	3798	2502	597	1561	800	1232	10407	1884	5233	
+
+T 74   4299	*	3325	4295	*	3361	4911	5611	3295	4088	5612	3837	2999	5446	5600	3852	3932	3819	*	5502	74
+       143	6057	3652	0	*	3909	99	10576	1033	4976	
+
+S 75   3018	6657	3564	3348	4741	3873	4738	6583	5394	4745	*	3359	5363	4677	6193	2887	4078	4900	4555	5359	75
+       148	4699	4085	0	*	909	1097	10031	1472	5615	
+
+S 76   4014	6522	4102	3572	*	2746	4230	4860	4397	4435	5406	4223	4743	3926	4781	3040	3518	5635	*	6831	76
+       29	6514	6787	1000	1000	1586	584	10633	1000	4101	
+
+S 77   4223	6580	3944	5177	6394	2253	6937	*	4070	6482	*	2966	5690	5233	5474	2399	3144	4846	*	6820	77
+       109	5451	4317	0	*	*	0	10747	1207	3267	
+
+T 78   3545	6053	2999	5058	4243	5850	5330	4893	3524	5536	*	3454	5041	3920	4247	2879	3458	4651	*	*	78
+       47	6907	5391	0	*	884	1126	10635	1000	4017	
+
+A 79   3084	4011	*	*	2839	3566	6861	4784	*	3081	*	6828	5619	*	5931	2778	6006	3201	5797	3333	79
+       16	6527	*	1000	1000	1017	983	10763	1000	2766	
+
+Y 80   4421	*	6487	4131	5887	*	5648	4756	6692	3953	*	4213	4678	4850	4550	1983	2296	3772	6866	5143	80
+       15	6563	*	2000	415	675	1419	10640	1000	1852	
+
+M 81   *	6889	*	6835	4566	*	*	3196	*	475	7140	*	*	*	*	6439	*	4065	6648	5401	81
+       0	*	*	*	*	*	0	10612	0	1215	
+
+Q 82   4467	*	5098	3872	5066	5764	3908	4276	3210	3295	6078	4590	5783	4760	3901	3969	2736	4381	*	4623	82
+       11	7018	*	1538	609	*	0	10612	1174	1215	
+
+L 83   6837	*	*	*	4674	*	*	1055	6648	2398	4973	6668	5639	*	*	4755	5849	2873	6933	6634	83
+       0	*	*	*	*	*	0	10612	0	1215	
+
+S 84   4310	6496	4985	4907	*	5436	4513	6851	2662	3846	*	5655	4071	3870	3036	3084	2820	5301	6956	6981	84
+       17	6439	*	0	*	*	0	10612	1078	1215	
+
+S 85   4274	5797	2754	4290	6598	4312	4573	6899	3891	*	*	1907	3844	4330	4135	3539	6018	*	6978	*	85
+       98	4548	5467	0	*	869	1144	10612	1597	1215	
+
+L 86   2675	*	*	*	6379	4941	*	3252	5629	2291	6692	6844	*	*	*	4742	3837	1660	5211	*	86
+       0	*	*	*	*	*	0	10579	0	1491	
+
+T 87   4852	*	4723	3517	6635	4787	5958	5766	3076	5597	*	4321	5726	2369	3334	3651	2829	5603	5832	*	87
+       0	*	*	0	*	*	0	10579	1000	1491	
+
+S 88   3966	*	5922	3478	4836	6815	4760	4800	3119	2737	4770	*	3100	4734	5938	3722	4270	3679	5712	5958	88
+       9	7285	*	0	*	443	1920	10584	1000	1491	
+
+E 89   4385	*	3737	2228	*	3783	6081	7613	4190	5783	6195	4329	6517	3592	4151	2299	3794	6739	*	*	89
+       23	*	5977	*	*	*	0	10648	0	1000	
+
+D 90   6645	6410	535	4048	7832	5451	3662	*	6979	6627	*	5758	*	6068	5088	4811	*	*	*	7745	90
+       0	*	*	*	*	*	0	10631	0	1348	
+
+S 91   2651	*	3631	2225	6610	3999	6605	*	*	*	5265	4932	6431	4311	6959	2443	3342	4582	*	6645	91
+       27	*	5763	*	*	1567	594	10631	0	1348	
+
+A 92   2652	*	4667	*	*	818	6515	*	5420	5811	*	5948	*	5878	5767	4089	5528	4912	*	5882	92
+       48	5959	5882	1585	585	*	0	10686	1161	1546	
+
+V 93   5954	5601	3990	3711	4972	6571	5995	3818	3336	3690	4162	6630	*	5088	4470	4338	2755	2741	7033	5431	93
+       0	*	*	*	*	290	2458	10649	0	1850	
+
+Y 94   *	6661	*	*	3394	*	6449	6138	*	5776	*	*	6903	*	*	*	*	5256	7192	304	94
+       0	*	*	*	*	*	0	10646	0	1011	
+
+Y 95   6711	*	*	4027	4499	7200	5227	3370	4009	3908	5723	*	*	3140	3974	4653	2725	3651	4637	3069	95
+       0	*	*	*	*	*	0	10646	0	1011	
+
+C 96   *	166	*	*	5451	*	*	5992	*	5303	*	*	*	*	7089	5919	6692	6450	*	*	96
+       17	6404	*	4087	87	*	0	10649	1160	1011	
+
+A 97   2789	6851	5604	3769	7140	5130	4727	3757	4272	4329	4596	7008	*	3674	2793	4636	3532	3473	*	6025	97
+       23	*	5998	*	*	*	0	10649	0	1011	
+
+N 98   2139	6756	*	6263	5843	6149	6951	3631	5760	4476	6689	5919	*	*	6633	4864	3701	1283	*	6893	98
+       76	6888	4552	3322	152	*	0	10599	1000	1358	
+
+L 99   5012	*	3824	3253	4880	5233	5861	5623	4084	4773	4781	3970	4816	4602	4342	2867	3770	4800	3495	4692	99
+       182	4682	3651	1128	883	2116	378	10548	1582	2194	
+
+R 100  5377	*	4495	4297	4347	4589	2826	4785	6602	3471	5818	2466	5547	5188	4229	3666	4418	5155	*	4116	100
+       304	2646	5038	1928	440	2328	320	10547	3695	3251	
+
+G 101  4306	5341	3561	5240	6707	2634	4728	5697	4361	6404	6772	3548	3543	4816	4199	3008	3940	5261	*	4663	101
+       215	4224	3557	1909	447	2869	212	10537	1842	3253	
+
+Y 102  4194	6857	4097	5001	4357	2285	4341	5401	5232	4027	*	2995	5566	7554	4963	3811	3979	5756	6624	3559	102
+       525	2736	2689	1198	826	776	1266	10394	3159	4221	
+
+F 103  3635	6564	5590	2950	3461	3477	5400	5024	4468	4736	6424	4801	4162	3842	4266	3556	4156	3980	*	6447	103
+       15	*	6557	0	*	876	1136	10370	1013	4413	
+
+D 104  4046	*	4167	4365	4397	3961	*	4492	4124	3102	*	3974	4361	4356	3562	3484	3632	3636	*	6788	104
+       26	5798	*	575	1605	*	0	10499	1178	2822	
+
+Y 105  6470	6548	6985	3557	4401	6658	5662	4290	4016	4089	5675	5538	4131	4615	5400	4129	3095	2403	5363	3535	105
+       15	6561	*	1000	1000	112	3737	10499	1055	2822	
+
+W 106  5367	6975	6756	4037	2243	5350	5187	3586	4024	3558	5822	5408	*	5630	3571	4867	4007	3686	4806	4342	106
+       15	*	6599	*	*	*	0	10622	0	1000	
+
+G 107  4319	*	4942	3126	6875	1777	6832	6717	7100	4642	5759	5448	5337	3971	3869	2873	3855	5911	*	5935	107
+       85	4583	6012	1296	755	*	0	10606	1669	1167	
+
+Q 108  3645	*	5784	3583	6800	4123	6427	4452	3353	5160	7607	3836	3897	4062	3186	3134	3757	5342	6375	4956	108
+       12	*	6908	*	*	2149	369	10582	0	1530	
+
+G 109  3697	*	4307	4076	5788	1862	5970	5572	3556	5885	6622	4372	4526	5539	4321	3574	3926	4858	6895	6073	109
+       39	7294	5630	4000	93	*	0	10575	1000	1569	
+
+T 110  3637	*	5076	5117	5579	*	5383	3582	4738	3372	4495	5673	6925	5361	5766	3979	1921	3084	*	4706	110
+       0	*	*	*	*	1737	515	10555	0	2069	
+
+T 111  5228	*	5702	3139	5817	6859	4788	5065	2381	4602	6601	5599	4763	2899	3723	3634	3388	5368	7586	4966	111
+       20	6729	7809	2322	322	*	0	10582	1012	1709	
+
+L 112  5131	5584	*	5459	*	*	6622	2747	4877	1332	7655	6733	6115	5434	7007	5636	4530	2293	*	6601	112
+       76	5835	4879	2807	222	2479	285	10580	1123	1865	
+
+T 113  5457	*	7062	3928	5079	5009	4838	3982	3170	4715	6875	3556	5219	5802	3382	3785	2649	3299	*	5148	113
+       13	6807	*	0	*	1883	456	10553	1000	2511	
+
+V 114  6538	4186	6383	5845	6996	5925	*	2671	5663	3577	5808	4754	5027	5529	*	4731	*	1110	*	6391	114
+       73	*	4333	*	*	2832	218	10563	0	2080	
+
+S 115  4243	6509	*	3979	4112	7092	5149	3803	3339	3099	5642	5179	3611	5375	3738	3393	3087	4296	*	*	115
+       467	5976	1940	3919	99	2698	241	10534	1314	2839	
+
+S 116  3241	*	3729	3887	*	3487	*	5871	4341	3868	6164	5305	3359	5199	4203	3393	4072	3120	*	4672	116
+       212	3341	4731	1579	588	2219	349	10173	2217	5947	
+
+A 117  2421	*	3008	4798	*	3818	6747	4827	4663	4097	6179	3926	4144	3896	4408	4159	4386	3820	*	6099	117
+       310	2673	4769	2501	280	1099	907	10217	3374	5452	
+
+K 118  3967	6251	3279	4715	*	4536	4927	3443	3444	4596	6294	6275	2872	6077	4819	4064	3870	3187	*	5049	118
+       79	4231	*	4287	76	2080	389	10299	2021	4168	
+
+T 119  3913	*	4209	3690	4628	5564	5499	4992	3421	3624	6858	4921	2969	4189	3953	4362	4272	3110	*	7050	119
+       25	5835	*	4313	74	1110	898	10650	1167	3621	
+
+T 120  3135	6611	*	4859	5708	4813	5737	6442	4835	4937	6816	5570	2362	5063	3916	2825	3254	3181	6382	*	120
+       11	7102	*	1585	585	847	1171	10376	1000	2429	
+
+P 121  3054	6948	4680	3381	5457	5068	*	5772	3349	4120	6025	5301	1992	5230	4864	3779	5456	4223	*	7028	121
+       0	*	*	*	*	1896	451	10428	0	1565	
+
+P 122  4156	*	5383	6673	5964	5386	6487	4270	6591	4453	7911	*	746	5153	5933	4298	4861	5580	*	*	122
+       44	5062	*	2514	278	*	0	10445	1358	1368	
+
+S 123  4003	*	3979	3715	5758	6995	*	5482	3298	5170	4022	4707	4884	4374	5053	2956	2950	2852	6487	*	123
+       0	*	*	*	*	*	0	10445	0	1368	
+
+V 124  5283	6591	5883	4564	4188	*	*	2287	5958	2839	6834	7028	3725	5281	6635	6915	3582	1949	*	6580	124
+       36	*	5340	*	*	1651	553	10445	0	1368	
+
+Y 125  5240	7089	5594	4149	4303	5715	4941	4086	5278	3618	6867	5847	4449	4426	4214	2956	2660	4107	5594	3595	125
+       6	*	7860	*	*	*	0	10457	0	1642	
+
+P 126  4137	6959	5653	4405	4585	5961	6614	2689	4698	2916	4272	6944	3640	4821	6416	5974	3772	2697	6042	5141	126
+       13	6844	*	1317	740	2636	253	10469	1138	1793	
+
+L 127  7241	5941	5305	6020	3224	5227	*	3824	5236	2251	3740	4763	5884	4783	4806	3492	3773	3719	6642	4418	127
+       40	6632	5874	1585	585	336	2268	10744	1004	1642	
+
+A 128  4359	6675	4759	4959	6957	4439	4744	7151	3762	3659	*	4797	2708	3784	3922	2874	3385	4027	*	*	128
+       63	4810	7182	1354	716	*	0	10742	1551	1345	
+
+P 129  3918	*	4789	3622	7003	4484	6460	5207	3533	5331	6268	5329	1873	3627	5316	3153	4391	5212	6600	*	129
+       0	*	*	*	*	420	1986	10665	0	1500	
+
+G 130  4389	5929	4052	4252	6027	4872	5027	5817	4007	4699	*	3738	3264	4031	5224	2084	4069	4854	6518	5920	130
+       43	*	5076	*	*	*	0	10741	0	1000	
+
+C 131  6803	4338	4239	3614	5374	3594	*	3618	3954	3864	4836	5011	4065	5258	4221	3388	3774	3513	*	5404	131
+       36	6091	6600	1025	976	1203	822	10361	1170	1758	
+
+G 132  5041	*	4330	2995	5609	5168	5215	4124	5646	3212	6800	4963	6268	3903	4144	2621	3847	3845	6598	4485	132
+       0	*	*	*	*	2082	389	10352	0	1546	
+
+D 133  3901	6220	3408	3094	*	4228	5669	3423	5309	3412	*	5226	4320	5595	4705	3869	5041	2501	6431	*	133
+       153	4685	4010	488	1801	520	1724	10358	1721	1378	
+
+T 134  5021	*	5114	4079	4392	5726	4317	3060	3882	2799	5703	3917	5791	4519	4465	4115	4177	3780	6465	4521	134
+       78	4256	*	291	2453	2202	353	10338	1835	2259	
+
+T 135  3508	*	3610	2511	*	4716	7423	7233	3639	3311	6678	6839	3544	5286	5151	2997	4134	4056	6413	6493	135
+       358	2413	4967	1437	665	2944	201	10307	3884	1963	
+
+G 136  5631	6624	3984	3667	*	1067	5259	*	4803	*	*	3584	5200	6874	5221	3502	5408	5560	*	6706	136
+       29	*	5660	*	*	2558	268	10590	0	2351	
+
+S 137  6887	*	2691	2902	6756	3292	4887	*	3928	5731	*	3136	4815	3294	4279	3864	4430	5696	*	4787	137
+       42	*	5112	5170	41	*	0	10056	1040	2439	
+
+S 138  3904	*	3846	3218	*	5842	5191	6929	3849	6318	7264	4043	3996	5241	4041	2658	2405	4437	*	6538	138
+       0	*	*	*	*	1867	462	10001	0	2954	
+
+V 139  2355	5556	*	*	4418	5850	*	3538	6268	3162	4755	5933	6044	4686	4582	4104	3893	2153	*	6802	139
+       27	5768	*	2448	292	184	3063	10060	1203	2415	
+
+T 140  4737	*	6488	5369	4990	5560	6029	6029	3795	4025	5791	3687	6381	3879	3677	3873	1771	3874	7007	5687	140
+       0	*	*	*	*	*	0	10150	0	1020	
+
+L 141  4497	*	6841	*	3222	5812	*	3198	*	826	4705	*	*	*	*	*	*	3404	*	5937	141
+       12	6862	*	0	*	*	0	10150	1000	1020	
+
+G 142  5281	6887	5707	4008	*	6250	5235	3852	4911	3325	5276	3656	4895	5074	4432	3091	2299	4301	*	4148	142
+       0	*	*	*	*	0	*	10150	0	1020	
+
+C 143  5940	91	*	*	*	*	*	*	*	6416	*	*	*	*	7142	7536	6676	*	*	6537	143
+       26	*	5796	*	*	*	*	10163	0	0	
+
+L 144  4525	*	6851	3366	5355	5900	4460	3629	5196	2844	4708	6095	5544	3810	4514	3242	3420	3239	7545	5867	144
+       0	*	*	*	*	*	0	10044	0	1191	
+
+V 145  1798	5581	*	*	5387	5746	*	3521	*	4682	*	6539	*	*	*	3157	4498	1673	*	4566	145
+       14	6711	*	0	*	*	0	10044	1013	1191	
+
+K 146  4617	*	5114	3216	4812	5240	4773	7038	4602	6147	*	4853	4145	4024	3463	2277	2995	4132	5102	*	146
+       57	5551	5846	735	1325	*	0	10044	1309	1191	
+
+G 147  4278	*	3923	4470	7009	1560	5629	6301	3906	6947	*	2676	5790	5413	4385	3364	4650	*	*	*	147
+       26	*	5806	0	*	0	*	10588	1000	1542	
+
+Y 148  4611	6388	4599	5840	2091	2875	5181	4438	5664	4448	6564	4317	5526	6362	4950	3947	4558	3837	5681	4197	148
+       399	5120	2231	326	2308	*	0	10056	1378	1231	
+
+F 149  3856	4543	6458	*	2970	6319	4316	*	3419	6674	5000	4147	4567	5020	4076	3319	4468	5074	*	2412	149
+       28	*	5678	*	*	199	2957	10032	0	4659	
+
+P 150  4661	*	5780	5368	*	6695	6277	*	*	6101	*	4586	480	4773	6326	5133	5248	5766	*	*	150
+       130	4733	4373	804	1227	0	*	10040	1544	1700	
+
+E 151  3407	*	4229	2873	*	4270	5112	5695	3600	4764	4796	4372	3295	3782	3809	3891	4747	4017	*	*	151
+       137	4315	4626	775	1267	692	1392	10001	1829	1729	
+
+S 152  3436	6434	2940	4964	*	4699	4989	4750	4616	5067	*	5289	1646	4589	5084	3963	5312	4943	*	5798	152
+       374	6410	2207	0	*	1553	601	9986	1034	1920	
+
+V 153  4004	*	6453	5347	4197	*	4031	2010	6532	2696	5310	*	5030	*	*	4821	3880	2589	*	4404	153
+       249	*	2656	*	*	141	3421	9768	0	4859	
+
+T 154  4425	*	4670	3720	*	5572	4828	6347	3387	4959	6747	4013	6638	3465	4496	2631	2512	4403	*	4579	154
+       25	*	5887	*	*	235	2734	9851	0	3547	
+
+V 155  *	*	*	*	3016	*	*	2108	5913	2317	5158	6434	5754	*	*	*	6430	1780	4750	5102	155
+       17	6434	*	0	*	1018	983	10607	1042	1605	
+
+T 156  5048	*	3951	4559	5767	*	5197	4333	3899	6741	5670	4363	*	3944	3885	2195	2559	4467	*	4134	156
+       29	*	5666	*	*	*	0	10631	0	1222	
+
+W 157  *	*	*	*	5838	*	6999	*	*	4446	*	*	*	*	6595	*	*	*	152	5758	157
+       1652	665	4296	1443	661	1403	685	10319	8014	1707	
+
+N 158  5601	*	3865	3365	4952	4111	4898	5864	2160	5578	5780	3760	6290	4796	4006	3316	3989	5808	*	4512	158
+       24	6845	7020	0	*	2936	202	9953	1013	2236	
+
+S 159  5532	*	2697	3330	6467	2497	5042	5894	2889	5292	*	2862	5595	5793	4305	3881	*	6616	*	5403	159
+       0	*	*	*	*	*	0	10419	0	2206	
+
+G 160  *	*	3295	4433	6628	1462	6460	6762	3464	*	*	3251	4054	4123	4874	3987	5929	5001	*	*	160
+       56	4715	*	1832	476	1472	645	10419	1489	2206	
+
+S 161  5220	*	3407	3263	5499	2772	*	4622	3320	4079	*	4267	4254	4521	3797	4204	3661	4235	*	*	161
+       114	4732	4707	540	1680	767	1278	10456	1516	1727	
+
+L 162  5841	*	3614	3164	5698	6732	6795	4341	4011	2455	5055	5211	5878	4023	4241	3676	4581	2743	*	*	162
+       117	5435	4193	1902	449	2800	224	10459	1195	1980	
+
+S 163  4032	6945	4419	4426	*	5609	5097	3656	3702	3601	6022	4961	3658	5108	3670	3476	3289	3164	*	6487	163
+       12	6975	*	1802	488	3731	113	10445	1149	2796	
+
+S 164  4391	*	3455	3093	5606	5625	*	3851	4372	3367	*	4598	3484	4492	6583	2919	3474	5177	5576	4956	164
+       41	*	5165	*	*	*	0	9935	0	2660	
+
+S 165  3729	*	3862	3205	*	2171	*	4716	6859	4472	*	3367	3989	4867	5759	3291	3336	5671	*	*	165
+       54	5746	5811	0	*	3900	100	9884	1150	3085	
+
+V 166  5541	*	4536	4890	4549	5118	4850	3960	*	3739	6669	2996	4443	4613	4485	3268	3273	2655	*	5397	166
+       115	5337	4265	2496	281	2119	377	10106	1612	3239	
+
+H 167  4532	6175	4819	3802	5653	4126	4773	3959	4383	4332	4812	5044	5365	4108	4926	2424	2869	6383	*	4505	167
+       0	*	*	1585	585	*	0	9752	1000	3441	
+
+T 168  3992	*	4226	4295	*	5491	5619	4787	5605	3816	*	3796	4244	3808	3934	2578	2668	3957	*	6432	168
+       30	6680	6509	0	*	1600	578	9752	1000	3441	
+
+F 169  5621	*	4979	3570	3247	4262	4688	4221	6448	3603	*	3733	5611	4233	7317	2952	3572	3584	*	3871	169
+       100	4451	5546	2850	215	1285	762	9819	1537	2797	
+
+P 170  3838	*	4804	3701	6835	3583	5670	5002	5464	4567	5667	4986	2931	3986	5509	3073	2599	4103	*	*	170
+       66	4822	6774	1073	930	*	0	9920	1390	2343	
+
+A 171  4200	*	4297	3546	4683	3808	5746	4297	3897	4169	5357	6788	3278	3841	5741	2985	3525	4286	*	5867	171
+       12	*	6909	*	*	1342	724	9888	0	2500	
+
+L 172  4761	*	4092	4060	5076	3762	4986	4145	3828	3906	5769	4647	3644	3891	4812	3520	4088	3190	*	5699	172
+       124	4610	4589	1330	731	2950	200	9951	1674	2017	
+
+L 173  *	*	3731	3816	4615	4709	3624	5389	3554	2690	5560	4707	5115	4115	2857	3890	5697	5145	*	5033	173
+       185	5684	3310	633	1493	3317	153	9874	1207	2780	
+
+Q 174  6168	6284	3856	2866	*	3666	*	4656	3476	4067	*	2784	3602	3335	6411	4122	3784	5558	*	6711	174
+       839	1203	7265	1107	901	258	2612	10245	5926	3949	
+
+S 175  5061	6456	1799	5090	6625	3005	6780	5061	3889	4588	6780	3026	4707	5356	5834	3509	4320	*	*	6774	175
+       59	5604	5669	527	1709	1231	801	9929	1182	1805	
+
+G 176  4074	6257	3619	4176	*	1238	5797	6678	5680	6714	4963	3759	5881	5046	4453	4581	4048	6771	*	*	176
+       118	4314	5149	728	1336	806	1224	9952	1755	1808	
+
+L 177  5573	6917	4292	5517	5732	6397	6829	6910	4109	3281	6234	3683	*	4772	3014	3147	1870	5042	*	5580	177
+       55	6709	5167	1000	1000	1367	707	9975	1000	1794	
+
+Y 178  5031	5950	6746	4995	2094	*	4372	4515	5468	4458	*	*	5510	6679	6465	3682	5270	4557	*	1604	178
+       93	5082	4923	686	1402	1129	881	9977	1352	1954	
+
+T 179  4759	6788	4362	5541	4275	6352	4752	6465	4930	5087	3919	3129	*	4012	5091	2239	2594	4212	*	7354	179
+       18	6303	*	4170	82	*	0	10493	1042	2113	
+
+M 180  3489	6502	6510	5356	5658	4954	*	3737	4159	2753	3958	6441	*	6504	4063	3688	4402	2233	5614	5142	180
+       86	*	4119	*	*	3067	183	10493	0	2113	
+
+S 181  5321	*	6348	*	4587	6610	5021	5007	6547	3555	5605	4468	4189	*	4742	2241	2204	3885	4112	4604	181
+       33	5485	*	1000	1000	2363	312	9909	1161	2935	
+
+S 182  3825	6549	*	4771	*	5021	5688	3944	4337	4672	4678	5565	*	4667	6259	1017	4564	5750	*	6537	182
+       59	4648	*	570	1615	*	0	9902	1533	2559	
+
+S 183  4063	*	4691	4630	5833	5800	5080	4123	5333	3629	6492	4314	6518	3638	3246	3346	2779	4398	5067	4218	183
+       119	4489	4840	1116	892	456	1884	9902	1599	2559	
+
+V 184  5202	6259	*	*	6293	5277	*	3790	6018	673	5644	6537	*	6727	5158	*	5153	3632	*	5089	184
+       0	*	*	2322	322	238	2718	9881	1000	1848	
+
+T 185  6562	*	4282	4139	6625	*	5003	3094	5144	3214	5716	4021	5587	3855	4180	3958	2441	3655	6730	5397	185
+       0	*	*	*	*	0	*	10021	0	1000	
+
+V 186  *	6342	5829	*	3505	5678	6676	1875	*	2051	5612	*	6799	5697	5907	5571	6908	2335	6740	4772	186
+       26	5818	*	0	*	*	*	10028	1173	0	
+
+P 187  6441	*	4413	4600	6933	*	4470	*	3658	4155	6750	4250	2907	4329	3183	3022	2439	4659	*	6688	187
+       23	7071	6909	0	*	*	*	10028	1000	0	
+
+S 188  3125	*	3537	3795	*	5819	5154	4550	3877	4469	5367	3984	3033	5148	4123	3343	3632	4600	*	6678	188
+       0	*	*	*	*	*	0	10027	0	1000	
+
+S 189  4069	6670	4119	3712	6864	4875	6625	4684	4461	4429	*	4744	5254	5902	4686	2258	2710	3277	*	5106	189
+       39	*	5240	*	*	*	0	10027	0	1000	
+
+T 190  4533	6778	2726	2819	*	3771	6797	*	2849	4377	6928	4724	4313	4026	3865	3693	4276	5626	*	6625	190
+       218	*	2832	*	*	2059	396	10008	0	1455	
+
+W 191  4033	*	5485	2676	5111	5498	4877	4876	6634	3192	5047	4856	5365	4528	3212	5342	6747	4381	2402	6644	191
+       161	5017	3737	992	1009	4267	77	9982	1320	3624	
+
+P 192  5731	*	1786	3120	*	5490	*	*	4800	5489	*	3261	5341	3819	3099	3118	3966	*	*	*	192
+       746	1309	*	153	3315	297	2426	10176	5402	4308	
+
+S 193  3720	*	1943	5495	*	2461	4816	*	4305	4626	5423	2878	7170	*	*	3077	5139	5613	*	*	193
+       473	1892	6630	51	4843	2525	275	9936	4895	1576	
+
+Q 194  3950	*	5008	3651	*	1329	4981	*	3571	4967	5670	4686	*	4795	4350	4361	5203	4372	*	6475	194
+       25	6707	7082	0	*	2159	366	9920	1000	1615	
+
+T 195  6734	*	3766	3621	6602	*	6728	4390	3918	6759	5052	3145	4965	5544	3691	3757	2422	2742	6818	*	195
+       54	4766	*	2565	267	329	2296	10481	1496	1596	
+
+V 196  *	*	*	*	2334	*	5041	3720	*	3587	6407	*	*	*	*	*	*	3695	6804	959	196
+       0	*	*	*	*	*	0	10505	0	1000	
+
+T 197  5980	*	*	6813	4758	6535	6619	4025	4391	6623	7181	4806	6759	5641	3552	2574	1537	4285	6374	3944	197
+       0	*	*	1585	585	0	*	10505	1000	1000	
+
+C 198  *	92	6685	*	*	6406	*	6743	*	*	*	*	*	*	*	*	*	5014	*	*	198
+       35	5380	*	0	*	*	*	9949	1245	0	
+
+S 199  3957	5954	6747	3110	*	*	5488	4491	4468	4438	4892	4222	*	3608	3305	3386	3187	2899	5866	6792	199
+       0	*	*	*	*	*	*	9949	0	0	
+
+V 200  1516	*	*	6604	5857	6732	*	3298	*	4428	*	*	6563	*	*	5739	6344	1239	*	*	200
+       11	7065	*	0	*	*	*	9923	1000	0	
+
+A 201  3985	*	3367	2924	5724	5085	5534	5318	3383	5690	6457	4516	*	4057	3833	2952	2894	5800	6738	5542	201
+       11	6989	*	0	*	*	*	9909	1000	0	
+
+H 202  6536	*	5612	6256	*	*	1235	*	*	6717	6097	1477	6557	5155	*	4660	5271	*	*	4529	202
+       0	*	*	*	*	0	*	9822	0	1000	
+
+P 203  3436	*	4831	2074	*	3645	5497	6375	3329	4846	*	5554	3294	4543	4053	3729	4536	4921	6841	*	203
+       33	6584	6394	1000	1000	*	*	9710	1000	0	
+
+A 204  2227	*	3692	6244	5311	2785	4888	*	4157	4343	*	4938	*	5256	4030	2775	4847	4395	6145	5388	204
+       0	*	*	*	*	*	0	9625	0	1033	
+
+S 205  4324	*	*	4972	*	1648	*	4706	*	1915	*	4908	6348	4566	6354	2918	5239	5349	*	6340	205
+       151	6433	3506	0	*	*	0	9556	1000	1033	
+
+S 206  *	*	4934	2691	*	4369	5116	*	3563	5016	*	5013	2709	3477	5879	2473	3811	4057	*	5834	206
+       0	*	*	*	*	3305	154	9418	0	2328	
+
+T 207  2583	*	5966	3258	5916	4577	4981	5144	3769	5721	*	3995	6009	3971	5123	3058	2699	4535	*	6157	207
+       0	*	*	1000	1000	0	*	9418	1040	2185	
+
+T 208  5427	*	4543	3203	5336	3495	6372	*	3971	*	6203	5280	2242	4571	3975	3614	3060	3680	*	*	208
+       17	6449	*	0	*	*	*	9551	1000	0	
+
+V 209  2880	5187	6244	5332	*	5144	6245	3185	3868	2405	6332	6113	*	*	6053	4568	3850	2079	*	*	209
+       0	*	*	*	*	*	*	9516	0	0	
+
+D 210  6139	5905	3832	2636	*	6090	5772	4457	4573	6177	6214	4773	*	4256	3620	3002	2467	3130	*	*	210
+       0	*	*	*	*	*	*	9449	0	0	
+
+K 211  3353	4482	6167	5097	6025	5013	4034	3741	3017	4222	4989	5927	*	3608	3819	4399	4093	2881	*	6322	211
+       0	*	*	*	*	*	*	9399	0	0	
+
+K 212  5117	*	4451	3974	5124	5111	5733	6316	3809	*	*	3563	3851	5090	4405	2530	2363	3707	*	5214	212
+       22	6046	*	0	*	*	*	9399	1013	0	
+
+L 213  5955	*	*	*	2716	*	*	1877	6175	1389	6051	*	*	5964	*	*	5878	3112	*	*	213
+       31	5550	*	3322	152	*	*	9244	1000	0	
+
+E 214  3546	*	4660	2541	*	5347	5469	*	4525	*	*	2974	3895	4486	2891	3481	3235	*	*	4551	214
+       0	*	*	*	*	*	*	8626	0	0	
+
+P 215  *	*	*	*	*	*	*	*	3030	2328	*	*	996	*	4095	4119	4034	*	*	*	215
+       0	*	*	0	*	*	*	6369	0	0	
+
+//
+�HHsearch 1.5
+NAME  af828e69a5f2d0fd42a2a213e09eb64f
+FAM   
+FILE  af828e69a5f2d0fd42a2a213e09eb64f
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:17:01 2013
+LENG  141 match states, 141 columns in multiple alignment
+FILT  122 out of 1049 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.1 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHCHHHHHHCCCCCCCCCCHHHHHHHHHHHHHHHHHHHHHCCHHHHHHHHHHHHHHHCCCCHHHHHH
+HHHHHHHHHHHHCCCCCCHHHHHHHHHHHHHHHHHHHHHCC
+>ss_conf PSIPRED confidence values
+9699999999999999986088899999999999895699876344677567988999999999999999832147889999999888852999899999
+99999999998836249999999999999999999987639
+>Consensus
+xLtxxxxxxixxsWxxixxxxxxxgxxxxxxlfxxxPxxxxxFxxxxxxxxxxxxxxhxxxxxxxlxxxixxldxxxxxxxxlxxxHxxxxgvxxxxfxx
+xxxxlxxxlxxxlgxxxxxxxxxAWxxxxxxixxxxxxxyx
+>af828e69a5f2d0fd42a2a213e09eb64f
+VLSPADKTNVKAAWGKVGAHAGEYGAEALERMFLSFPTTKTYFPHFDLSHGSAQVKGHGKKVADALTNAVAHVDDMPNALSALSDLHAHKLRVDPVNFKL
+LSHCLLVTLAAHLPAEFTPAVHASLDKFLASVSTVLTSKYR
+>gi|83699633|gb|ABC40722.1| leghemoglobin 6 [Sesbania rostrata]
+-FTESQEALVTSSYETFKQNASDLSVLFYTFILEKAPGAKNLFSFLKDSdgvpKDNPNLKAHAAKVFELVVDSAVQLRTKGAVviaDANLGPVHV-QKGV
+TDAHFVVVKEALLKTVKEATGAKWSDELSNAWEVAYDELAAAIKKAM-
+>gi|291238614|ref|XP_002739227.1| PREDICTED: Globin D, coelomic, putative-like [Saccoglossus kowalevskii]
+-LTKEQKDTLIQTWQNLHADLERIGMLMFMGLFEHNPEIKEFFVGADsrdMKteelRYNEKLQEHGIRVMGLVEKIISSMGfedeKIDQMVVDLGKRHL-
+GYDVHIPFIDLFGRQFVFAIKPTLHTHWTANVEEAWTQLFKYIGYLMRYGYH
+>gi|50897135|dbj|BAD34601.1| hemoglobin chain I [Calyptogena kaikoi]
+-VSASDIKNVQDTWTKLYDQWeAVHASKFYNKLFKDNEDISEAFVKAGT-GSGIAMKRQALVFGAILQEFVENLSDPTALSLKIKGLcatHK-TRGItNM
+ELFAFALADLVAYMGTT--ISFTAAQKTSWTAVNDVILHQMSSY--
+>gi|255724342|ref|XP_002547100.1| predicted protein [Candida tropicalis MYA-3404]gi|240134991|gb|EER34545.1| predicted protein [Candida tropicalis MYA-3404]
+-LSPFEIDQIQSSWNRIS-NKNNFYNELYLNLIEKNPNLGEIFNHDE-----SVITHHAKTFGDCFNFVVSNIENVEIIeefiYSFVQENQR-FSQMSTK
+YLEPMGNSLILTLKQFLRSYSTSVLELTWVKVYVYFANSI-----
+>gi|311279880|ref|YP_003942111.1| hypothetical protein Entcl_2577 [Enterobacter cloacae SCF1]gi|308749075|gb|ADO48827.1| hypothetical protein Entcl_2577 [Enterobacter cloacae SCF1]
+-------ELFNNSYARILPgdKGDRFFTHFYTLFTKSTDDETSAH------------svarrLEKQKIiyktf-FYmlsvanth-------IVA---DYL
+VKITRESNpQNLNLPPSAYALWRRAVLQTVRDLD-PECDEEIITAWAIVLAPGLEFMRR---
+>gi|159461074|gb|ABW96608.1| hemoglobin F2 [Fasciola hepatica]
+-LTQTQIDSiLADLAHHTDttEHITEMGVSIYKTLFAAHPEYISYFSKLqGLTKdnvgQSEGIRYYGRTLGEELIRLLKAASNPsvlEERIVQGAKDHK-
+ARPVTKDQFTGAAPIFIKFFQGLL---KKQEDKDAIEKFLLHVMQAIAAK--
+>gi|237756266|ref|ZP_04584824.1| conserved hypothetical protein [Sulfurihydrogenibium yellowstonense SS-5]gi|237691567|gb|EEP60617.1| conserved hypothetical protein [Sulfurihydrogenibium yellowstonense SS-5]
+-FTQEDVERIKKLKPILEKYLDEFISKFYFFIS-RFPDYNQFLKN-------EDlFKRHKSELKNWFLDLFsGNYDENYfSRLYKIGEVHV-NIGLPTHY
+VNAafnfVRRFIIEKIDAEIQDRNErNLYVTSIGKLIDINLDVLTLAYR
+>gi|324521693|gb|ADY47909.1| Unknown [Ascaris suum]
+--------RIQQCFKAA---RPPIGQQILKRACILRSEMRLFLAHLP----DDMVDELAIDLYTFISNCVENIDDPDRVNALARAFgeqHAalCSLGFRP
+DYFAPIADAAIAECVRLDGgAHKRCETLLAWSQLIAAMFTGVRDGY-
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+V 1    *	4317	4489	*	*	4524	3412	*	*	*	*	*	1330	*	*	2340	4659	2910	*	*	1
+       54	4766	*	3702	115	*	*	6177	1162	0	
+
+L 2    *	*	*	*	4095	6278	*	3378	*	669	3672	*	*	*	*	*	6481	3838	4512	*	2
+       0	*	*	*	*	*	*	8702	0	0	
+
+S 3    5928	*	3965	6628	*	*	6750	*	5653	*	*	3721	6515	*	5273	1444	1322	*	*	*	3
+       0	*	*	*	*	*	*	8769	0	0	
+
+P 4    2603	6496	3224	2675	*	4046	5589	5594	4994	5835	5357	5208	3326	4268	4426	3438	5096	5991	*	5444	4
+       0	*	*	*	*	*	*	8878	0	0	
+
+A 5    2667	*	3799	2445	6535	4683	6922	4089	3025	*	*	4983	5813	4464	3954	2861	*	6337	6411	5235	5
+       0	*	*	*	*	*	*	8902	0	0	
+
+D 6    5926	*	1860	2102	*	*	5661	6612	6672	6649	5931	5123	*	1605	*	5823	4879	*	*	*	6
+       0	*	*	*	*	*	*	8951	0	0	
+
+K 7    4971	6730	*	4213	6361	*	5232	2445	2133	3449	5887	*	*	4488	2594	*	6624	3207	5855	*	7
+       0	*	*	*	*	*	*	9059	0	0	
+
+T 8    2896	*	3360	2879	4960	6171	5604	4737	2711	5651	*	5734	*	3073	3980	4062	4984	5695	*	4510	8
+       15	*	6614	*	*	*	*	9168	0	0	
+
+N 9    2612	*	4861	4696	*	6859	6259	3047	4803	1818	6902	3669	*	5643	6306	6660	3622	3626	*	6717	9
+       33	5480	*	358	2185	0	*	9276	1385	1017	
+
+V 10   5612	*	*	*	4686	*	*	1578	*	1784	4778	*	*	*	*	*	6701	1892	*	*	10
+       0	*	*	*	*	*	*	9292	0	0	
+
+K 11   4881	*	5552	4985	5697	5379	5404	5912	2476	3720	6973	4074	*	2724	1974	6701	4556	4570	*	7238	11
+       12	*	6961	*	*	*	*	9292	0	0	
+
+A 12   4034	*	3081	3287	6338	4467	5907	*	3419	*	*	3109	*	3643	3455	2311	4391	7100	*	7139	12
+       0	*	*	*	*	*	0	9283	0	1000	
+
+A 13   3478	5422	5776	*	6892	*	6570	4585	*	4431	6485	5187	*	6806	*	1080	2293	5307	6403	*	13
+       0	*	*	*	*	*	0	9283	0	1000	
+
+W 14   5299	*	*	6286	3028	5706	*	5240	*	5076	*	*	*	*	*	6148	*	5011	569	4480	14
+       0	*	*	*	*	*	0	9283	0	1000	
+
+G 15   2562	7141	3714	2586	6570	4066	5060	*	3145	6045	*	3809	4004	4577	5057	3366	4576	6979	*	*	15
+       0	*	*	*	*	*	0	9283	0	1000	
+
+K 16   3358	*	6046	5515	5744	5226	5170	3505	2844	3352	6733	4491	4552	4490	3088	4500	3816	3535	*	7158	16
+       27	6635	6859	1000	1000	*	0	9283	1022	1000	
+
+V 17   3444	5181	*	6069	4552	7030	*	2260	*	1995	3942	6560	6930	6234	6562	6660	5743	2189	*	*	17
+       171	4817	3717	1464	650	967	1034	9281	1482	1169	
+
+G 18   3268	6613	4827	3656	4009	4774	5276	5866	2489	4598	4732	6660	6103	5106	3595	3134	4181	5611	5233	5611	18
+       161	3932	4649	659	1447	2337	318	9183	1962	2418	
+
+A 19   2300	6409	3323	4664	*	3935	6647	*	2774	5401	6090	*	3124	3318	4085	3552	5882	*	*	6671	19
+       63	4861	6965	796	1238	177	3116	9126	1382	2764	
+
+H 20   4378	6568	2524	3915	6575	4312	3801	5299	3489	5187	*	2256	5758	4907	3952	4979	6907	5714	6145	5171	20
+       51	5746	5972	1412	680	818	1209	9253	1162	1263	
+
+A 21   4101	6819	4991	4572	5807	3017	5624	4869	2861	3016	4877	4392	4304	4894	4651	3654	*	4334	5066	4729	21
+       180	3195	6956	2346	316	700	1379	9280	2704	1315	
+
+G 22   3634	*	2936	2631	6735	4642	5576	5313	4202	5045	6056	4147	3453	3510	4897	4444	4603	3880	*	6957	22
+       51	4845	*	1573	591	700	1379	9292	1464	1316	
+
+E 23   2744	*	3680	2180	*	3840	4395	*	4801	5357	6868	4536	5223	3532	3947	3940	4493	4832	*	*	23
+       20	6158	*	2695	242	0	*	9292	1116	1022	
+
+Y 24   3430	5366	7198	*	1892	*	3721	3181	7083	3282	5495	3940	5914	6746	*	6942	4296	3423	6588	4854	24
+       0	*	*	*	*	*	*	9292	0	0	
+
+G 25   2553	5232	*	7083	4664	1038	6588	5699	*	4688	*	*	7198	*	*	4814	4044	3355	*	*	25
+       14	6746	*	3700	115	*	*	9292	1014	0	
+
+A 26   4129	6580	3305	3927	6615	5106	7109	4563	4564	4189	5295	5035	4376	3817	3533	3081	3149	3642	*	7151	26
+       0	*	*	*	*	*	*	9292	0	0	
+
+E 27   3058	6602	3410	3410	5877	4985	4941	3987	2839	4024	6941	4026	*	4685	3994	4731	3782	4542	*	6436	27
+       20	*	6151	*	*	*	*	9292	0	0	
+
+A 28   4419	7074	*	*	1603	*	*	2272	*	2651	3544	*	*	*	*	6628	5871	2863	*	*	28
+       0	*	*	*	*	*	0	9239	0	1154	
+
+L 29   6562	*	*	*	1399	*	5631	*	*	2714	4267	*	*	*	*	5979	6050	6605	*	1537	29
+       0	*	*	*	*	*	0	9239	0	1154	
+
+E 30   3561	7007	3668	3450	6565	4696	5514	3161	3572	3373	5385	5269	6703	4649	4017	3714	3646	4624	*	5942	30
+       10	7216	*	5426	34	*	0	9239	1000	1154	
+
+R 31   4086	5477	6055	4885	5979	5159	4533	5966	2451	4245	7131	3332	*	5750	1760	6007	5022	6792	5696	4784	31
+       0	*	*	*	*	*	0	9239	0	1154	
+
+M 32   6317	6473	*	*	2456	*	*	3484	*	1103	3761	*	*	*	*	*	*	4949	4558	3469	32
+       0	*	*	*	*	*	0	9248	0	1154	
+
+F 33   4996	*	*	*	739	*	*	4392	*	2376	4688	*	*	5193	*	*	6559	4558	6651	*	33
+       61	*	4604	*	*	*	0	9248	0	1154	
+
+L 34   3599	*	4547	2332	*	*	6668	6423	2415	4973	5919	3899	*	3530	4368	3460	3313	5308	*	*	34
+       0	*	*	*	*	473	1838	9067	0	1930	
+
+S 35   2762	6943	3977	3260	*	6947	4184	7185	2884	3622	4791	5027	*	4160	3355	3664	3809	6476	*	6991	35
+       10	*	7222	*	*	*	0	9250	0	1154	
+
+F 36   3707	5620	3187	4923	3052	*	2941	6608	3797	6114	7263	2828	*	6876	3745	4410	5391	5937	*	3392	36
+       0	*	*	*	*	1680	540	9254	0	1296	
+
+P 37   5043	*	4685	4570	5986	6017	7091	6526	*	6808	*	*	460	5650	5792	4618	5811	7185	*	*	37
+       0	*	*	*	*	*	0	9250	0	1154	
+
+T 38   3838	*	2287	1800	*	4654	4856	*	5238	5685	6821	5176	*	3730	4184	3625	5483	5339	6476	6431	38
+       0	*	*	*	*	*	0	9250	0	1154	
+
+T 39   3172	7040	6564	6564	3982	6931	5960	3171	*	2560	4071	5176	*	*	*	3722	2942	3319	6733	3481	39
+       0	*	*	*	*	*	0	9250	0	1154	
+
+K 40   4114	*	*	4391	*	6052	5261	4455	1987	3316	*	6526	5986	2547	2353	5831	5790	5775	*	6987	40
+       0	*	*	*	*	*	0	9250	0	1154	
+
+T 41   3016	6274	3279	3271	*	6431	5980	6244	3375	5545	*	3028	3630	4623	4124	3649	3461	5986	*	6526	41
+       0	*	*	*	*	*	0	9250	0	1154	
+
+Y 42   3938	*	*	*	3446	*	4962	3618	3135	2319	2790	*	5179	7244	5894	6943	5986	4209	*	2820	42
+       16	*	6526	*	*	0	*	9250	0	1154	
+
+F 43   *	*	*	*	226	*	6509	5252	*	4391	*	*	*	*	*	*	*	*	5720	4595	43
+       16	*	6510	*	*	*	0	9315	0	1046	
+
+P 44   4789	*	3921	4855	*	3389	4152	*	2952	*	*	3917	2139	6893	4947	3126	3830	4499	*	5708	44
+       128	*	3559	*	*	*	0	9253	0	1269	
+
+H 45   4598	*	3667	3655	4289	3455	4890	5914	2665	5216	5295	5130	5990	4405	2922	3873	4252	4925	6732	6446	45
+       453	4867	2087	794	1240	1135	876	9229	1386	2742	
+
+F 46   4045	*	5331	6037	1313	*	6823	4481	6323	3011	4391	*	*	6574	4956	4329	4215	3999	6217	4761	46
+       1080	1231	3305	182	3077	*	0	8802	5415	5058	
+
+D 47   4694	*	1723	4743	*	2971	4742	*	3055	5329	*	2797	*	*	4561	4080	3930	*	*	*	47
+       355	3238	3160	314	2353	*	0	8524	2184	5784	
+
+L 48   4477	*	4177	6470	4508	3627	6172	3565	4087	1945	5321	6171	*	*	*	6362	4716	2114	*	5229	48
+       298	2560	5899	1132	879	4154	83	8234	2783	6402	
+
+S 49   4573	*	3174	4396	*	5131	5044	*	3096	5035	*	3518	2220	5077	6109	2892	3604	6070	*	6009	49
+       1426	671	*	2018	409	4006	93	8227	6059	6284	
+
+H 50   3186	5771	3920	4110	6232	5983	5308	4640	2819	4116	4840	*	2632	6005	3448	3493	4372	6216	*	*	50
+       385	2093	*	2245	342	3840	104	8352	3328	6067	
+
+G 51   3032	*	3215	4367	*	3910	5265	*	3533	*	*	3306	*	3999	5216	2680	2922	5374	5934	5399	51
+       0	*	*	*	*	4843	51	8435	0	5826	
+
+S 52   5256	6694	3158	5782	*	4721	4643	5228	*	6477	*	1570	6159	*	*	1696	4088	*	*	*	52
+       22	6034	*	0	*	1078	926	8488	1028	5709	
+
+A 53   2849	*	4264	3109	6342	4143	5834	6408	4044	4566	6530	4283	1783	6773	5239	4327	4534	6544	*	*	53
+       50	*	4871	*	*	150	3342	9002	0	3844	
+
+Q 54   3587	*	2275	3006	7150	3872	6877	5234	3202	6096	*	4160	5948	4187	3574	4242	4249	5283	*	6651	54
+       38	5269	*	0	*	*	0	9244	1371	1692	
+
+V 55   5411	*	6125	6626	1691	6867	*	3644	6906	2108	2801	*	*	7112	6645	6550	6006	3375	*	5043	55
+       0	*	*	2322	322	728	1336	9244	1062	1692	
+
+K 56   3420	6600	4336	3122	*	5678	4281	5444	2420	3836	*	4682	*	3577	2701	3700	5787	*	*	6717	56
+       0	*	*	*	*	797	1237	9290	0	1184	
+
+G 57   2475	6332	5066	3346	5921	3707	4419	6614	3296	4233	*	4093	*	4601	2888	4203	5186	6037	6979	4852	57
+       22	*	6048	*	*	*	0	9303	0	1000	
+
+H 58   6959	6143	*	*	*	*	1155	5779	5529	3738	6495	*	*	1627	5525	5949	*	6283	*	5140	58
+       24	*	5893	*	*	*	0	9294	0	1276	
+
+G 59   1878	4622	*	5939	6125	2629	7078	5379	3976	5359	6558	6038	5200	5344	4714	3132	4248	3423	*	*	59
+       15	6595	*	2322	322	1366	709	9273	1017	1579	
+
+K 60   3726	5692	5097	3239	6517	4534	7247	3574	3355	3194	4902	5797	*	4730	3235	4930	3530	3641	*	5412	60
+       0	*	*	*	*	553	1650	9283	0	1297	
+
+K 61   4202	*	*	*	6785	7000	4943	4055	2827	3934	3817	4797	*	3673	2344	4203	3142	3831	*	6685	61
+       60	4615	*	2085	388	*	0	9303	1683	1000	
+
+V 62   *	5300	*	*	2061	*	*	2184	*	2336	5574	*	*	*	*	6607	*	1917	*	5581	62
+       0	*	*	*	*	727	1337	9278	0	1208	
+
+A 63   3147	6993	*	5835	3153	4061	6821	3927	6842	2611	2921	*	*	5134	5412	4570	4341	2810	6048	6753	63
+       0	*	*	*	*	*	0	9303	0	1000	
+
+D 64   3866	6532	3320	3063	*	3990	5201	*	3504	5902	4461	3151	*	3798	4103	3258	3557	*	6675	5760	64
+       15	6588	*	3000	193	0	*	9303	1062	1000	
+
+A 65   2330	4795	*	6757	4715	3352	*	3994	5940	3174	4733	*	*	6007	4348	2961	3518	3975	4724	6574	65
+       0	*	*	*	*	*	0	9280	0	1062	
+
+L 66   *	*	*	*	3539	*	*	2499	*	1122	4726	*	*	*	*	*	6919	2296	*	5173	66
+       15	6621	*	4087	87	*	0	9280	1034	1062	
+
+T 67   4220	5829	2061	3091	*	3242	5406	5482	5765	5083	6637	3177	*	4258	5585	4016	3845	5012	*	5958	67
+       0	*	*	*	*	*	0	9280	0	1062	
+
+N 68   3707	5885	3375	3084	3779	6916	5466	5113	3292	4581	7147	3902	6300	5899	4491	4066	3631	4892	5504	3803	68
+       0	*	*	*	*	*	0	9280	0	1062	
+
+A 69   2454	4601	*	*	3653	4389	*	2148	*	2811	4386	*	*	*	*	5415	4407	2781	6757	7013	69
+       0	*	*	*	*	*	0	9280	0	1062	
+
+V 70   4111	5757	*	6828	4576	*	*	1626	*	3032	3866	*	*	*	6637	*	*	1581	*	6190	70
+       79	4237	*	0	*	*	0	9280	1930	1062	
+
+A 71   4288	6906	2975	3174	*	3061	6890	6971	3049	4289	6638	3703	5307	4052	4152	3491	4482	4970	*	*	71
+       63	4543	*	1362	711	0	*	9280	1643	1062	
+
+H 72   2996	5510	*	5075	5309	4273	3407	5009	3992	4455	5214	2411	5496	4814	4637	3140	6664	4552	*	4897	72
+       13	6849	*	0	*	*	*	9305	1017	0	
+
+V 73   4216	5920	4999	6135	4593	*	6167	3725	5530	1087	3686	6849	5919	*	6624	*	6902	3352	*	4589	73
+       89	4229	7274	1000	1000	*	*	9305	1886	0	
+
+D 74   3916	5903	1335	3693	6215	2840	4922	*	4587	*	7223	4156	6670	4402	5146	4460	6719	7593	*	7063	74
+       142	3947	5115	1423	673	*	0	9330	2059	1000	
+
+D 75   5882	*	1617	3201	5364	4874	4188	*	3530	*	6731	2400	6855	4948	4626	4722	5462	7076	*	*	75
+       245	2678	*	1558	598	*	0	9227	3459	1591	
+
+M 76   3443	6867	4710	3896	5786	4437	4981	4331	4287	2272	5059	5733	2585	5418	4846	4499	5839	4500	*	6565	76
+       31	6291	6833	1585	585	*	0	9227	1075	1591	
+
+P 77   4447	6496	2517	2484	7172	3772	5811	6844	3558	4671	5641	6159	4600	4340	4392	3338	5347	5626	*	4547	77
+       162	3237	*	940	1062	276	2522	9222	2759	1752	
+
+N 78   3640	*	4791	2836	6883	4105	6778	5175	3266	3565	6186	4348	6840	4263	4848	3278	3329	3778	*	5806	78
+       100	4013	7593	1031	970	0	*	9330	2062	1000	
+
+A 79   4517	*	*	5750	3398	4906	5908	3326	4250	1879	4047	6966	5086	5335	6005	5339	4658	3064	*	4423	79
+       326	2305	*	1970	425	0	*	9304	4065	1000	
+
+L 80   4257	4044	5502	5399	4131	*	6902	3534	4573	1710	4610	5843	*	6864	4891	5145	*	2560	5961	5187	80
+       56	4727	*	1296	754	*	*	9305	1530	0	
+
+S 81   2843	6111	4033	4397	*	*	4998	4349	2768	4164	5305	5260	3356	3896	3881	3871	3939	4755	*	*	81
+       12	6895	*	1585	585	*	*	9305	1000	0	
+
+A 82   2990	6557	4449	3229	3503	7208	4598	5278	2672	5333	*	4525	4165	4549	3944	4889	4359	5532	*	4149	82
+       0	*	*	*	*	*	*	9305	0	0	
+
+L 83   5039	*	*	6304	4080	*	*	2755	6580	1117	3451	*	*	4720	*	6914	7006	3246	5815	6716	83
+       22	6047	*	1024	976	*	*	9305	1141	0	
+
+S 84   2541	*	6631	4528	6654	1821	6985	5965	4232	4009	6842	5235	*	5579	4069	3283	4342	4084	*	5979	84
+       16	*	6490	*	*	*	*	9305	0	0	
+
+D 85   4234	6821	4067	3041	7029	5776	4032	5140	2685	6189	*	4620	5815	2632	3064	4168	5247	5463	*	5144	85
+       0	*	*	*	*	*	0	9311	0	1096	
+
+L 86   6767	*	6954	4750	4321	*	6537	3854	3811	1578	5742	4371	6860	6772	3096	3902	4100	3794	*	6598	86
+       494	1786	*	1529	614	0	*	9311	5150	1096	
+
+H 87   5874	*	*	6490	*	4271	302	*	5316	*	*	6060	6969	6724	6557	6591	*	*	*	5044	87
+       50	6788	5316	1000	1000	*	*	9305	1014	0	
+
+A 88   2517	6027	5196	5342	*	5378	4623	4874	3187	3629	*	5749	*	4730	2865	4024	4231	2927	6693	5692	88
+       2384	2859	576	708	1367	0	*	9272	3209	1306	
+
+H 89   4359	5056	4105	3058	4063	*	5376	*	3335	*	4469	4413	5359	2938	2843	*	2730	5444	*	*	89
+       165	3208	*	1260	780	0	*	7838	1450	7934	
+
+K 90   3028	6922	4197	4876	5820	3250	4133	6985	2217	7017	7199	3576	4344	4790	3776	4570	4452	5312	*	6940	90
+       65	4504	*	450	1901	*	*	9305	1678	0	
+
+L 91   4254	*	7176	6347	3548	*	5323	4468	4984	2951	4226	7017	5797	6063	2134	5551	*	4798	6676	2166	91
+       59	4634	*	2401	303	*	*	9305	1643	0	
+
+R 92   7236	6902	4927	*	*	1006	6042	6557	3718	6624	*	3070	4409	5539	3713	3865	*	6673	*	*	92
+       0	*	*	*	*	*	*	9305	0	0	
+
+V 93   4030	6167	*	6490	3826	6702	*	1976	*	3229	4332	*	5628	5390	*	*	*	1399	*	*	93
+       77	4786	6010	0	*	*	*	9305	1526	0	
+
+D 94   4673	6607	3722	4187	*	3347	4404	*	3086	5999	7170	3581	3517	5077	4056	4281	2344	6014	*	6715	94
+       18	6368	*	0	*	*	0	9294	1013	1133	
+
+P 95   3132	*	4327	5309	6607	4481	4781	4148	4159	4421	6066	7227	1768	3987	3833	3918	6715	4784	*	*	95
+       18	*	6368	*	*	0	*	9294	0	1133	
+
+V 96   3403	*	2896	1975	7179	4381	4077	6097	3311	5419	*	*	5403	3796	4452	4215	4850	5368	*	6670	96
+       0	*	*	*	*	*	0	9294	0	1013	
+
+N 97   4708	*	3226	5427	5944	*	2000	6295	*	3847	4493	6169	*	3234	5813	5311	7222	5903	5903	2087	97
+       0	*	*	0	*	0	*	9294	1013	1013	
+
+F 98   6622	*	*	*	1294	*	*	3755	*	2646	5618	*	6490	*	*	*	6770	4110	3387	2699	98
+       0	*	*	*	*	*	*	9305	0	0	
+
+K 99   3221	*	2391	2731	*	4310	*	5632	3321	5187	6961	3512	4650	3780	5179	5356	4800	5880	5229	6200	99
+       15	6642	*	2322	322	*	*	9330	1017	0	
+
+L 100  3031	*	3357	4153	5857	5468	5337	3907	4417	2873	5343	3936	3803	4730	5978	4579	3995	3568	*	7585	100
+       77	4263	*	2000	415	*	*	9330	1930	0	
+
+L 101  4244	*	*	*	2029	6974	*	3231	*	1949	2951	*	*	*	*	6298	*	2842	4406	*	101
+       15	*	6583	*	*	*	*	9330	0	0	
+
+S 102  3584	5556	*	4058	5891	1925	*	5359	3524	3858	*	*	6183	4420	2868	3073	7024	4928	6654	6951	102
+       0	*	*	*	*	*	0	9315	0	1028	
+
+H 103  3641	*	3105	2059	*	4535	6128	6682	5283	6759	*	4194	4064	4389	3229	3133	4588	5535	6910	7099	103
+       0	*	*	*	*	*	0	9315	0	1028	
+
+C 104  1715	3904	6670	*	5247	6668	*	3053	*	4730	6280	7144	4525	5169	*	2935	6261	2707	6060	5551	104
+       0	*	*	*	*	*	0	9315	0	1028	
+
+L 105  5629	6336	*	*	2144	*	*	2949	*	1171	4659	*	*	*	*	*	6487	3741	5295	5907	105
+       0	*	*	*	*	0	*	9315	0	1028	
+
+L 106  4875	7010	5720	5505	6678	7160	4954	2707	5521	1667	4144	*	5525	4778	5110	*	4398	2660	6670	5696	106
+       0	*	*	*	*	*	*	9330	0	0	
+
+V 107  2825	5656	3085	2840	4529	4457	4998	6773	3764	5056	6949	6716	5599	4048	4245	4131	3660	5152	5990	5874	107
+       0	*	*	*	*	*	*	9302	0	0	
+
+T 108  2195	6842	*	5589	4229	5863	5792	5564	5102	4629	4423	*	*	*	6331	5219	1878	2634	*	4214	108
+       0	*	*	*	*	*	*	9302	0	0	
+
+L 109  4563	6302	*	*	2845	*	*	2533	*	1412	3211	*	*	*	*	*	*	2744	*	*	109
+       43	6331	5865	1585	585	*	*	9302	1104	0	
+
+A 110  3615	5283	5384	2771	5160	4395	5805	6156	2954	*	*	5374	5100	3093	2606	3443	4738	5525	*	*	110
+       12	*	6916	*	*	1039	962	9278	0	1157	
+
+A 111  3318	6597	3206	1880	*	5735	4554	*	3453	*	*	4548	5770	2874	6025	3853	4391	5962	*	6510	111
+       38	5271	*	1405	684	0	*	9284	1315	1147	
+
+H 112  3092	4414	*	3950	6891	5170	3527	4619	3924	3455	5961	5052	*	4961	4063	5110	4156	2804	4800	4377	112
+       100	*	3900	*	*	*	*	9302	0	0	
+
+L 113  5416	4418	3958	*	4173	5696	5799	4218	6267	1146	4120	5154	*	5321	*	5563	5781	3680	6842	5846	113
+       265	*	2573	*	*	1951	432	9256	0	2053	
+
+P 114  5156	*	6361	4246	*	766	6656	*	3743	*	*	6354	3010	4318	*	4739	*	6576	*	*	114
+       124	5012	4275	722	1344	918	1087	8974	1315	4183	
+
+A 115  3415	*	2610	4004	*	3837	*	6458	3506	6647	*	3642	3318	5408	3971	3367	3938	4700	5841	6062	115
+       17	6430	*	0	*	567	1622	9157	1013	3218	
+
+E 116  3275	5246	2832	3087	*	3360	4023	*	3097	*	*	4876	6328	3878	3439	3391	5759	7114	*	6834	116
+       184	3321	5675	896	1113	538	1685	9227	2691	1850	
+
+F 117  4404	5229	*	*	1865	*	6146	3960	4835	3251	4859	6843	5466	*	5733	5750	*	4981	2353	3286	117
+       19	6279	*	4907	49	*	0	9253	1104	1497	
+
+T 118  5470	*	2324	6788	6801	5489	4860	*	5813	*	*	2901	7246	5069	4936	2734	1627	6925	*	*	118
+       146	3778	5436	750	1302	961	1040	9253	2220	1497	
+
+P 119  2619	6228	2432	3314	6463	4709	5662	5692	4042	6741	6521	4942	3390	3814	4573	4050	4078	7008	*	*	119
+       47	*	4952	*	*	2408	301	9279	0	1587	
+
+A 120  3491	*	2716	1703	*	4363	6609	5452	3843	*	*	5202	6927	3684	5139	3243	5108	5367	*	*	120
+       0	*	*	*	*	*	0	9247	0	1993	
+
+V 121  3007	6493	5137	4215	5899	*	6756	2988	*	2794	4948	6187	*	3826	*	4713	2653	2702	*	5744	121
+       0	*	*	*	*	1533	612	9247	0	1993	
+
+H 122  3569	*	4083	2130	6138	5250	5986	4651	3001	3767	5149	*	5773	4147	3471	5940	4634	3571	*	*	122
+       0	*	*	*	*	0	*	9255	0	1609	
+
+A 123  2765	*	2944	2519	*	4045	6910	6828	3894	5590	4899	3988	*	5008	3933	3433	4201	4547	*	*	123
+       11	7083	*	1585	585	*	*	9295	1000	0	
+
+S 124  685	*	*	5879	*	5736	*	4878	*	4541	6040	*	7091	6908	6841	3641	4122	3648	6897	*	124
+       12	6936	*	3000	193	*	*	9295	1007	0	
+
+L 125  5103	*	6902	*	4079	*	*	*	*	4359	5594	*	*	*	*	*	*	5482	405	4154	125
+       0	*	*	*	*	*	*	9295	0	0	
+
+D 126  3776	*	3152	3644	*	4972	4587	4863	2983	4901	5598	3793	*	5395	2668	3864	3474	5344	6711	*	126
+       0	*	*	*	*	*	*	9295	0	0	
+
+K 127  4100	*	4145	4040	6889	4588	5617	4013	1719	5573	5833	5822	*	3705	3551	4191	4434	3857	*	*	127
+       0	*	*	*	*	*	*	9281	0	0	
+
+F 128  2149	4304	*	*	3469	5294	*	3955	*	1921	4142	*	*	*	*	6161	3749	2999	*	6720	128
+       0	*	*	*	*	*	*	9281	0	0	
+
+L 129  6539	*	*	*	2008	6636	*	3206	*	1932	3733	6674	*	*	*	6655	5390	3979	4947	2781	129
+       0	*	*	*	*	*	*	9281	0	0	
+
+A 130  3625	*	2501	4444	*	3350	*	*	3303	5782	6985	4268	6520	4162	3371	2798	3845	4887	6886	*	130
+       13	*	6834	*	*	*	*	9281	0	0	
+
+S 131  3894	*	5996	4327	2395	6137	5128	3523	6839	3128	5998	5332	5058	6887	4302	4904	5648	2918	*	3197	131
+       0	*	*	*	*	*	0	9238	0	1021	
+
+V 132  5189	5875	*	*	3525	5029	*	1600	*	2489	4488	6287	*	*	*	4771	5104	2324	7109	*	132
+       0	*	*	1585	585	0	*	9221	1021	1021	
+
+S 133  2265	3966	6814	5075	4820	3953	*	2946	6619	2930	6093	5305	*	5237	6907	4195	4063	3494	*	4635	133
+       0	*	*	*	*	*	*	9189	0	0	
+
+T 134  2909	6481	2146	3716	*	3915	5617	5816	3404	7009	*	3195	6814	4607	5944	3753	3854	6212	*	6076	134
+       13	6809	*	1000	1000	*	*	9189	1000	0	
+
+V 135  3353	5467	5852	6776	5535	4029	5098	3198	4910	3302	4875	5868	6375	4317	3710	4690	3620	2845	*	4370	135
+       0	*	*	*	*	*	*	9098	0	0	
+
+L 136  6436	*	*	*	4350	*	6711	1781	*	1611	1853	*	*	*	*	*	*	4845	*	*	136
+       0	*	*	*	*	*	*	9009	0	0	
+
+T 137  3327	6309	4852	5333	5432	3753	*	3088	2642	3805	6276	6566	6296	4919	3313	3208	4713	3931	*	*	137
+       0	*	*	*	*	*	*	8801	0	0	
+
+S 138  3418	*	4805	2988	5191	4581	3873	4664	4311	4580	*	6331	5725	3621	4107	2135	5152	5003	*	5803	138
+       0	*	*	*	*	*	*	8512	0	0	
+
+K 139  2789	*	*	4151	*	1669	*	*	3121	4246	5170	*	*	4125	5359	3173	4648	*	*	4144	139
+       0	*	*	*	*	*	*	8000	0	0	
+
+Y 140  *	4668	*	*	4735	*	*	*	*	4848	3901	*	*	4618	*	*	*	5331	4551	488	140
+       0	*	*	*	*	*	*	7277	0	0	
+
+R 141  *	*	*	*	*	*	3200	*	1309	*	*	*	*	*	1863	*	*	3435	*	3058	141
+       0	*	*	0	*	*	*	4773	0	0	
+
+//
+�HHsearch 1.5
+NAME  b056b4c4d9017a19c3095e4c72f67a47
+FAM   
+FILE  b056b4c4d9017a19c3095e4c72f67a47
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:52:42 2013
+LENG  194 match states, 194 columns in multiple alignment
+FILT  116 out of 1318 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  10.0
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCEEEEEEEECCCCCCCHHHHHHHHHHHHHHHHCCCCCCEEEEEEECCCEEEEECCCCCCCHHHHHHHHHHCCCCCCCCCHHHHHHHHHHHHHHHHC
+CCCCCCCEEEEEECCCCCCCCCHHHHHHHHHHHHCCCEEEEEEECCCCCCCCCHHHHHHHHHCCCCCEEEECCCHHHHHHHHHHHHHHHCCCCC
+>ss_conf PSIPRED confidence values
+9988557999997988887179999999999999852668978999998892279876777668999999998450579997399999999999875540
+4778996299998379988980559999999987899899999588433435899999997288986499749999999999999998513388
+>Consensus
+CxxxxxdivxllDxSxSmxxxxxxxxkxxxxxxxxxxxxxxxxvxlvxfxxxxxxxxxlxxxxxxxxxxxxixxxxxxxgxtxxxxalxxaxxxxxxxxx
+xxrxxxxxxiiliTDGxxxxxxxxxxxxxxxxxxxxixvxxigxgxxxxxxxxxxxlxxiaxxxxxxxxxxxxxxxxlxxxxxxixxxicxxxx
+>b056b4c4d9017a19c3095e4c72f67a47
+CPQEDSDIAFLIDGSGSIIPHDFRRMKEFVSTVMEQLKKSKTLFSLMQYSEEFRIHFTFKEFQNNPNPRSLVKPITQLLGRTHTATGIRKVVRELFNITN
+GARKNAFKILVVITDGEKFGDPLGYEDVIPEADREGVIRYVIGVGDAFRSEKSRQELNTIASKPPRDHVFQVNNFEALKTIQNQLREKIFCIGS
+>gi|260837234|ref|XP_002613610.1| hypothetical protein BRAFLDRAFT_127098 [Branchiostoma floridae]gi|229298996|gb|EEN69619.1| hypothetical protein BRAFLDRAFT_127098 [Branchiostoma floridae]
+--------LYPYGSySGGYPPSNMEKTMG-PGNYRVPLVagGETITIGSIKKTEETSPseslsaekQAVVAAQDTRECTMSSITiySEERLRGTKKTYSG
+NGWLPRDPSWV-----VDSAGPAWVDSNGVTWEDV--------------VTVDNVQSGDQ------RQVFGGFQGKARYWKLVITQTYTGWQPYVRE---
+-------
+>gi|317505805|ref|ZP_07963650.1| von Willebrand factor type A domain-containing protein [Segniliparus rugosus ATCC BAA-974]gi|316255887|gb|EFV15112.1| von Willebrand factor type A domain-containing protein [Segniliparus rugosus ATCC BAA-974]
+-AKNQATVILLLDISESMRAtdvkpSRVEAARAAAIKFVDGM-APTVQLGVVTFAGNAQPLVRPSTD--HETAKKVIDQMIrpdKLEKQTATGEGIYTAL
+QQIEtiAGalGGKNHA-PPARIVLVSDGKETVpdDLNAPrgaYAAARTAKEKHVPVCTVAFGTKAGKitldnqvdevPVDLESLKKISDLSNSPgnscRF
+FPAESQGELAQIYQSLNEDI-----
+>gi|82913384|ref|XP_728622.1| micronemal protein WARP [Plasmodium yoelii yoelii str. 17XNL]gi|23485067|gb|EAA20187.1| micronemal protein WARP [Plasmodium yoelii yoelii]
+C-DNYYDITLIVENSSFIQKDYWMKgTIPFLESMVRNARvsKDKAHMAIILFAGRQDLIVPFTDELSQdkEKLIDKIRTLNDAATDsnTLYVYALEYAFE
+KVIFGE-GTRSDAPKVAVLFYYGFDYgSNTSLIPDVVEDYKQNNIKLIIVGIALG-----NKQNAFILADCKSDGDCPNLilEPWDYVIRAAEQVKGKIC
+N---
+>gi|149173297|ref|ZP_01851928.1| hypothetical protein PM8797T_28944 [Planctomyces maris DSM 8797]gi|148848103|gb|EDL62435.1| hypothetical protein PM8797T_28944 [Planctomyces maris DSM 8797]
+-------LAIILHTCEFPEGNTWGKRIT-----KQAIKvlGAQDEVGVLVYdfMDGEKWLFKLMPAGDYEKMVPKINGAQ-IGDMPSFANTMQLGLNGLI
+KSDA-----STKHMIIISDGDPQ-PPT--PQLIGQFLKNKVSVSMVAIfphGGE-----DISKMRDIAGVTGGR-YYFPSDPNQLPSIF-----------
+-
+>gi|171684709|ref|XP_001907296.1| hypothetical protein [Podospora anserina S mat+]gi|170942315|emb|CAP67967.1| unnamed protein product [Podospora anserina S mat+]
+-PSSKPEIVFVCDRSGSMGdGKRIPNLQTALHLFLKSL-PLGVKFNICSFGSHWDFMFpEGSRTYDASSLAHATQYVNSISanyGGTEMRMPLQDTFKR-
+------RYKDMDLEVFMLTDGEIWDQQQVFGMINTHVAESegAIRVFSLGIGNDV----SHALIEGIAQAGNGFSQSVADDESMNSKVIRMLKASL----
+-
+>gi|212634224|ref|YP_002310749.1| TPR domain-containing protein [Shewanella piezotolerans WP3]gi|212555708|gb|ACJ28162.1| TPR repeat protein [Shewanella piezotolerans WP3]
+-------LVIALDLSPSMQERQhgiehLTRAKLAITTLLQQ--GSARPISLVAFSGSSHQVLPASEQLALlTLYLGYLSPDIMPVEGDDIDSLVSVISAM
+P------ETEEFGVDLLIFSDGFtGGSELSSLVDRLKA----QVVFAALTt--EAE----EVARKFGYAVISSGSLIETP--DRLLAKVASLEKR-----
+--
+>gi|119486146|ref|ZP_01620206.1| von Willebrand factor, type A [Lyngbya sp. PCC 8106]gi|119456637|gb|EAW37766.1| von Willebrand factor, type A [Lyngbya sp. PCC 8106]
+------SYTIVIARSGVSRD-qHhpwfneWIDAQASLIDLAKKCQeFDPEGLTIYEASSY------LKKYPKAtVSRFADLLQ-ENNrscvtnIIDINVV
+EAVADILNHYFERKENHQtkp-KG-EIIVVVLDKHGI-D-giGDLQQLIIKSshqmdyaEELGITFIQVG------------------------------
+---------------------
+>gi|227498725|ref|ZP_03928867.1| conserved hypothetical protein [Acidaminococcus sp. D21]gi|226904179|gb|EEH90097.1| conserved hypothetical protein [Acidaminococcus sp. D21]
+---------IMLDASASRG-EYQRVIAAQAYVIAEALRACGIPYQIYSFCTlrGYTVMTLYQSYEEKKKSTSVFS--YCATGWNRDGLALRGARVLM---
+---GDlTDAKKILVMLTDASPNDDHPlytgkgalsqheyrderavdDTAAEAASLRRDGVRIVGLINDEIA----GSmEDAQKIFG----KDLVRVKTLD
+KMAESVGKALCHQ-----
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+C 1    *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1
+       639	4263	1710	0	*	*	*	6636	1009	0	
+
+P 2    4708	*	*	4795	4856	*	*	3785	4920	*	*	4903	1731	3273	3520	3371	2947	4879	*	*	2
+       44	*	5047	*	*	0	*	7806	0	1988	
+
+Q 3    *	*	2844	3107	5430	4374	4585	*	3469	5424	*	4006	5533	3456	3848	3054	3264	4351	*	*	3
+       40	*	5195	*	*	0	*	8697	0	1000	
+
+E 4    3240	5840	6033	3154	*	2206	*	*	3363	4827	5809	4288	5735	2909	3850	5388	4263	5908	*	5881	4
+       0	*	*	*	*	*	0	9090	0	1055	
+
+D 5    3653	*	4595	4088	*	3632	4264	5897	3198	4576	6376	4977	2364	3630	5394	3876	4532	6267	6227	4659	5
+       19	6224	*	1000	1000	0	*	9446	1000	1055	
+
+S 6    2983	*	*	*	3995	6153	6571	2764	5349	2397	3791	*	6156	5340	4330	6462	3799	2573	*	6301	6
+       0	*	*	*	*	*	*	9583	0	0	
+
+D 7    4896	*	643	3845	*	5335	4848	*	6559	*	*	4533	6407	6540	4683	4874	5343	6463	*	6434	7
+       0	*	*	*	*	*	*	9704	0	0	
+
+I 8    5473	6667	*	*	5145	*	*	1652	*	2073	4406	*	*	*	*	*	4534	1879	*	5547	8
+       0	*	*	*	*	*	*	10083	0	0	
+
+A 9    3029	6820	*	*	5076	5664	6766	2869	*	3161	5225	*	*	*	*	5711	3930	1429	6842	3838	9
+       0	*	*	*	*	*	*	10185	0	0	
+
+F 10   5926	*	*	*	1449	6882	*	2381	*	1879	6979	*	*	*	*	6223	5697	3693	6441	6011	10
+       0	*	*	*	*	*	*	10236	0	0	
+
+L 11   2866	5040	*	*	*	*	*	2758	*	1442	6622	6767	6011	*	*	6223	6772	1949	*	*	11
+       0	*	*	*	*	*	*	10236	0	0	
+
+I 12   5804	6803	*	*	4120	6640	*	1972	*	1616	4550	*	*	*	6628	6608	6924	2214	6223	5375	12
+       0	*	*	*	*	*	*	10236	0	0	
+
+D 13   6750	*	352	4000	*	5417	5320	*	*	*	6643	5092	*	5282	*	5814	6226	*	*	*	13
+       0	*	*	*	*	*	*	10245	0	0	
+
+G 14   3145	5864	4185	4446	6711	3902	6713	3796	5118	5865	5151	4889	6916	4873	4519	2892	2815	3105	*	5375	14
+       36	6022	6734	0	*	*	*	10245	1149	0	
+
+S 15   5440	6630	5883	*	*	5273	*	*	*	5627	*	5131	*	*	6893	384	3312	*	*	*	15
+       0	*	*	*	*	0	*	10231	0	1018	
+
+G 16   3315	*	4504	3404	6724	1611	6903	6701	5263	4827	*	5178	5162	4975	4630	3028	4866	4931	6824	5746	16
+       14	*	6713	*	*	*	*	10245	0	0	
+
+S 17   4085	*	5298	6888	5224	3727	6809	5755	4780	6722	*	5656	5503	6879	5947	752	4508	5721	*	6897	17
+       27	*	5768	*	*	0	*	10226	0	1004	
+
+I 18   4841	6204	6761	*	*	6840	*	3052	*	4414	1035	6059	6613	5222	*	4735	4663	2904	*	6013	18
+       52	5122	7188	3241	161	*	0	10237	1390	1206	
+
+I 19   3089	*	3720	4645	*	2710	*	5826	4608	4433	6707	6709	4934	4033	3286	2663	4309	5033	*	4198	19
+       278	*	2511	*	*	1754	507	10289	0	1373	
+
+P 20   3509	*	3938	2801	4930	2410	6499	6812	5557	4517	5485	4317	3698	3573	6642	4742	4748	4862	6449	4896	20
+       32	*	5504	*	*	219	2828	9994	0	4274	
+
+H 21   3552	*	3300	3155	5770	4558	4941	6702	4287	6785	6536	3636	4719	3453	4169	3120	4709	4352	6533	4363	21
+       97	3937	*	2442	293	1402	686	10177	2311	1765	
+
+D 22   5158	*	2550	3293	5777	3606	4896	5800	3820	5184	4810	3147	5867	4377	5086	3423	3563	5753	*	6750	22
+       237	2926	5651	2815	221	1353	717	10203	3406	1411	
+
+F 23   6634	*	*	5683	1999	6336	5193	3508	5670	2957	3964	5746	5820	5156	6435	4685	*	5217	2682	3597	23
+       42	5106	*	1031	970	917	1088	10203	1412	1584	
+
+R 24   4415	*	2517	3030	*	4856	5887	5246	4005	4369	5851	4188	5756	3487	3736	4468	3145	5752	*	4801	24
+       42	5129	*	889	1120	*	0	10236	1430	1176	
+
+R 25   2651	*	4201	4754	5166	7001	6728	3765	3237	3788	5270	5918	5210	3950	3349	4579	4554	4619	6784	3542	25
+       36	5353	*	1775	498	1023	977	10236	1528	1176	
+
+M 26   2221	*	*	5146	4605	5810	*	3415	5152	3397	2933	5671	*	4487	5527	5850	3910	2538	*	6844	26
+       25	*	5843	*	*	*	0	10245	0	1000	
+
+K 27   4533	*	5183	6876	*	*	5530	3426	1436	3822	6004	5714	6712	3574	2853	4660	6930	5295	6825	5870	27
+       14	*	6732	*	*	636	1488	10229	0	1332	
+
+E 28   2851	*	2951	3167	*	3408	5359	*	3419	5309	6806	3648	5863	4431	3442	4670	3628	6705	6734	*	28
+       70	*	4395	*	*	1059	943	10244	0	1198	
+
+F 29   2160	*	6771	5799	2264	5059	*	3908	4744	3618	*	6713	6595	*	5678	3837	3787	3463	5308	5161	29
+       0	*	*	*	*	275	2527	10108	0	1961	
+
+V 30   2609	6600	*	*	4205	*	*	2205	5780	2277	3874	6882	6065	*	6550	5694	4958	2822	6225	5535	30
+       12	6914	*	1585	585	*	0	10279	1000	1012	
+
+S 31   3269	*	4253	3384	5144	4125	6951	4269	2901	3706	5724	4873	5508	4412	4467	3411	4638	3789	*	5780	31
+       0	*	*	*	*	*	0	10279	0	1012	
+
+T 32   3295	*	3830	3268	5878	4360	*	5870	3637	3974	5849	3205	*	3814	3795	3014	4091	6770	*	4774	32
+       0	*	*	*	*	*	0	10279	0	1012	
+
+V 33   3996	*	6927	5728	3275	*	*	2178	*	1951	3527	*	6914	5769	6225	7142	4321	2960	*	6065	33
+       0	*	*	*	*	0	*	10279	0	1012	
+
+M 34   2295	6649	*	6681	4202	5312	5892	3573	6666	2536	4610	6603	*	6731	5000	3839	4245	2478	*	5643	34
+       30	6419	6827	0	*	*	*	10302	1090	0	
+
+E 35   3828	*	3510	2815	*	4873	6737	6890	2849	4490	7009	4000	5782	3453	3257	3411	4730	4663	*	6795	35
+       12	*	6903	0	*	0	*	10297	1000	1000	
+
+Q 36   3408	*	3570	3914	6628	3912	6093	5204	3504	3458	6648	4820	4308	3669	3238	3341	4796	4775	*	7345	36
+       33	*	5466	*	*	*	0	10294	0	1000	
+
+L 37   4164	5741	*	*	2203	*	6718	2933	*	1576	4239	6864	6878	5808	6851	5261	6594	3954	*	4839	37
+       25	*	5856	*	*	*	0	10332	0	1553	
+
+K 38   4400	5639	3421	4233	5002	3815	*	6563	4037	4130	6766	3893	4193	5126	3650	3105	3605	4080	5201	5011	38
+       2530	370	4227	1889	454	523	1718	10317	9108	1896	
+
+K 39   4972	6642	3476	3500	5087	3757	6778	5145	3315	4089	*	4708	2880	3812	3872	3311	4486	6552	*	6613	39
+       0	*	*	*	*	0	*	10299	0	2482	
+
+S 40   3978	*	2383	3506	*	5102	4616	5424	4112	4929	*	3368	3437	4894	4222	3385	4556	4579	*	5917	40
+       47	*	4958	*	*	*	*	10361	0	0	
+
+K 41   4056	*	3495	4424	*	2803	4805	6276	2592	5209	5764	3301	4649	3774	4451	4529	4875	5170	*	4797	41
+       14	*	6698	*	*	*	0	10340	0	1540	
+
+T 42   3272	6746	2324	6694	4779	4758	5882	3146	*	4697	5333	7046	*	6881	5734	3412	3239	2576	*	6820	42
+       0	*	*	*	*	0	*	10245	0	1729	
+
+L 43   5258	*	4460	4524	5890	5161	3580	*	3739	4026	5810	5072	5780	3029	1813	4603	4387	5832	6785	4974	43
+       0	*	*	*	*	*	*	10361	0	0	
+
+F 44   4307	*	*	*	3043	*	5762	2751	*	2642	4633	*	*	*	*	5544	4438	1376	7001	*	44
+       0	*	*	*	*	*	*	10361	0	0	
+
+S 45   1930	6597	5590	6748	6598	1655	*	6969	5876	6890	6638	5325	6738	6941	5955	2730	3632	6907	*	5177	45
+       0	*	*	*	*	*	*	10361	0	0	
+
+L 46   3623	6755	*	*	4281	*	*	2178	*	1743	4873	5778	*	*	*	5335	5299	2143	*	6741	46
+       15	6638	*	0	*	*	*	10361	1007	0	
+
+M 47   5276	5863	*	6755	4841	5929	6749	2249	6950	3305	4286	6984	*	5694	5065	4811	4889	1681	4986	4428	47
+       23	7064	6930	0	*	*	*	10361	1000	0	
+
+Q 48   4029	*	5844	4611	3540	3205	7131	5207	3508	4323	6977	5252	6553	3931	5304	3489	2288	3565	*	*	48
+       0	*	*	*	*	*	0	10361	0	1000	
+
+Y 49   5804	*	*	*	995	6917	5857	6924	6066	5511	6883	5866	*	*	*	*	6618	5334	5594	1606	49
+       67	4772	6821	2973	197	0	*	10361	1567	1000	
+
+S 50   3132	*	3513	6730	*	2176	5071	*	*	6888	6656	2987	5780	5753	5195	1839	5006	*	6733	6732	50
+       35	5990	6921	4067	89	*	0	10356	1157	1000	
+
+E 51   3637	*	2571	3831	5674	3221	4524	6610	5340	6589	5733	3890	5812	4932	3491	2634	3670	*	*	*	51
+       138	3458	*	2846	216	992	1008	10354	2774	1181	
+
+E 52   5319	*	3437	3096	5726	3685	5953	6882	3184	*	6669	4022	4340	4351	3803	3211	3689	4883	5779	4178	52
+       92	4551	5690	2746	233	0	*	10359	1727	1000	
+
+F 53   2217	6879	5269	4935	5349	3972	6934	5179	6764	5843	6640	4868	3482	6878	6649	3522	3399	2465	6915	4518	53
+       29	5650	*	2546	271	1019	981	10299	1268	1227	
+
+R 54   4994	6828	6593	3275	5260	6741	3680	3752	3566	5367	6876	3859	6619	3732	3031	4118	3067	4514	*	4510	54
+       14	6720	*	2585	263	*	0	10312	1019	1019	
+
+I 55   4392	*	4257	3272	5925	5173	5124	3089	4477	3252	5696	5764	3784	4517	4843	5110	3292	3298	5789	5903	55
+       34	6011	7034	2410	301	*	0	10290	1361	1233	
+
+H 56   4800	*	4396	3763	4747	5286	4825	3753	5831	2426	5100	6967	4178	3415	5270	4542	5260	2734	6628	5301	56
+       186	3899	4209	1613	571	1895	452	10241	2170	1387	
+
+F 57   3893	*	6258	6557	2118	5231	*	3560	6863	3132	4270	5079	5740	6469	*	3933	4147	2979	5021	4221	57
+       0	*	*	*	*	2879	211	10192	0	2425	
+
+T 58   3999	*	3438	4659	*	3988	4463	4167	3145	6502	*	4014	2011	6901	3700	3647	5231	5983	*	*	58
+       37	5878	6932	2582	264	2790	225	10205	1163	2220	
+
+F 59   5238	6723	*	6913	2479	6733	6898	4388	6419	1261	5217	*	3351	*	*	5784	5149	3764	*	4760	59
+       66	5220	5828	2433	295	1352	717	10217	1364	2244	
+
+K 60   4571	*	3761	5751	6753	3666	5274	*	3744	4950	5155	3387	4444	4551	5103	3070	2005	4833	*	*	60
+       92	4021	*	1204	821	2603	260	10257	2017	2059	
+
+E 61   4089	*	2612	3445	*	4184	5573	6363	3899	4932	6884	4499	3848	3506	4492	3145	3415	5770	6844	6711	61
+       81	5658	4839	652	1460	*	0	10307	1256	1863	
+
+F 62   4681	6817	2722	4854	3196	4715	4418	4131	6558	3358	6907	3968	4891	5363	4824	4297	5082	4785	6999	3098	62
+       13	6801	*	2807	222	2963	198	10277	1000	2565	
+
+Q 63   5783	*	3287	3899	5802	4616	7249	3901	3335	5152	6867	3679	3391	4524	4030	3660	3326	4477	*	4557	63
+       28	5715	*	1561	597	3005	192	10277	1198	2357	
+
+N 64   3956	*	2791	4201	4925	5148	5782	*	4211	5614	*	3165	6767	5228	3652	2159	3028	6690	*	*	64
+       150	6725	3484	3170	170	1337	727	10289	1000	2177	
+
+N 65   4383	6565	3589	4157	4682	5570	5220	3639	3850	3714	*	3909	4167	4372	3221	3796	4025	4098	*	5630	65
+       455	2689	3116	499	1773	*	0	10218	3596	3258	
+
+P 66   4524	*	2921	2707	*	5270	6254	5509	3682	4583	5488	4152	5627	3951	3902	3714	3121	4158	*	6234	66
+       14	*	6711	*	*	61	4588	9962	0	4835	
+
+N 67   2944	6072	3507	2603	6446	4081	*	6854	3203	4803	4481	5228	6554	3505	4282	3896	4597	4931	*	5956	67
+       11	7008	*	0	*	*	0	10298	1000	1222	
+
+P 68   3894	*	5863	5701	3151	5877	*	2916	5005	2080	4529	6606	7030	5851	4497	5662	4943	2646	*	4982	68
+       12	*	6892	*	*	*	0	10298	0	1222	
+
+R 69   4162	*	4527	4466	5824	6872	6133	3877	2837	2425	4220	4080	6910	4523	3871	4218	4518	4232	6882	5114	69
+       42	5873	6436	2687	244	*	0	10291	1178	1392	
+
+S 70   3579	*	3435	2917	*	4174	*	6883	4532	5725	5867	3371	5661	2964	3667	3017	3920	6871	5796	6808	70
+       12	6893	*	2585	263	1796	490	10261	1000	1622	
+
+L 71   2130	*	5500	3793	5231	6676	6700	4082	3137	3246	6597	5867	*	6705	3291	3151	4031	6975	6968	5362	71
+       12	6870	*	1585	585	0	*	10291	1000	1392	
+
+V 72   4129	6823	*	5758	4073	6971	*	1767	5745	1659	4135	*	*	7029	6989	*	4924	3139	*	*	72
+       0	*	*	*	*	*	*	10361	0	0	
+
+K 73   3524	*	2782	2946	5276	5875	6932	6763	3891	5062	5992	3144	6935	3718	4062	2833	4596	6749	6989	6857	73
+       34	6069	6854	1000	1000	*	*	10361	1149	0	
+
+P 74   3478	*	4055	4216	5794	4325	4773	6844	3253	4731	6605	3266	4829	3646	3940	3158	3599	5936	*	4828	74
+       55	6884	5110	0	*	*	0	10301	1000	1000	
+
+I 75   3488	*	5769	4615	4480	6578	*	2233	6832	2115	3536	5843	5155	6947	6116	5816	4379	3379	6632	5814	75
+       128	3883	5875	1837	474	0	*	10212	2161	1646	
+
+T 76   4872	6751	3325	3545	4830	5734	4940	5022	3535	4614	5970	4158	3869	4475	3323	3630	3517	4859	*	4686	76
+       198	7103	3049	1585	585	957	1044	10356	1000	1192	
+
+Q 77   4332	6517	3652	4955	3996	6602	5108	5694	3902	4150	5522	4975	3092	4700	3219	4377	4753	4802	5157	3091	77
+       242	2896	5651	2991	194	99	3917	10116	3199	3347	
+
+L 78   4065	5743	4788	5366	4842	4224	6931	3962	4451	2629	5057	3824	2950	5315	4770	3536	3933	5444	5781	6919	78
+       66	4808	6814	1750	509	524	1714	10297	1567	1417	
+
+L 79   4284	*	3985	3784	*	1679	5859	5889	4451	5223	5846	4887	6755	4418	3605	3417	4093	*	*	4256	79
+       62	4562	*	2811	222	0	*	10353	1846	1169	
+
+G 80   4593	*	4772	4547	*	1162	6882	5833	4077	6869	6770	6844	5669	4311	5652	3496	3770	5270	6763	4891	80
+       102	3878	*	184	3063	*	*	10361	2236	0	
+
+R 81   3897	6026	3662	4661	4679	1845	6751	*	5311	5224	6666	3183	5782	4334	4901	3564	4105	5920	6239	5221	81
+       138	3458	*	731	1330	*	*	10361	2740	0	
+
+T 82   3673	5661	5313	5802	5964	5315	*	5849	4983	*	*	4071	4035	5899	4913	2647	1312	4807	*	*	82
+       40	5185	*	1580	587	*	*	10361	1473	0	
+
+H 83   3295	6935	2478	5330	4913	4781	4674	5362	4129	5849	*	2261	3569	*	4142	3909	*	*	*	4014	83
+       0	*	*	*	*	*	*	10361	0	0	
+
+T 84   3960	*	5797	6985	4244	*	*	2567	*	1635	4510	5929	6828	*	*	5061	2875	3417	*	4743	84
+       0	*	*	*	*	*	*	10361	0	0	
+
+A 85   2938	5954	4048	4872	4385	1913	4493	5709	5713	4859	*	5337	5310	6808	5683	3338	4864	4916	6050	3865	85
+       15	*	6638	*	*	*	*	10361	0	0	
+
+T 86   4395	*	3156	3569	6895	3856	4014	7051	3372	3854	*	4761	4572	4004	4636	3376	4166	4261	*	4114	86
+       0	*	*	*	*	*	0	10339	0	1007	
+
+G 87   1071	7000	*	*	6997	2260	*	6717	*	5746	6883	5308	4473	*	5659	4071	5128	3561	*	*	87
+       0	*	*	*	*	0	*	10339	0	1007	
+
+I 88   5250	6989	6608	*	4308	*	*	2620	*	928	3768	6069	*	6760	*	*	*	3163	7009	*	88
+       0	*	*	*	*	*	*	10361	0	0	
+
+R 89   4240	6885	4598	3079	5942	4972	5175	4382	3334	4313	5717	3654	6584	3847	3450	3790	3912	6043	5062	4265	89
+       0	*	*	*	*	*	*	10361	0	0	
+
+K 90   3466	5779	4044	3870	5263	5927	4516	4876	3252	3629	5929	7090	*	3650	4888	4105	4055	4176	4651	3242	90
+       13	*	6770	*	*	*	*	10361	0	0	
+
+V 91   1278	5766	6603	6794	6751	3906	*	3325	*	3265	*	6951	*	*	*	6313	3921	2515	*	6844	91
+       194	*	2987	*	*	*	0	10344	0	1004	
+
+V 92   3014	4994	*	6648	4555	5183	4775	3333	4007	2505	4701	3977	5938	*	3551	4450	5711	3663	*	4528	92
+       88	*	4083	*	*	204	2920	10197	0	3500	
+
+R 93   4437	6849	2743	2962	4440	6314	*	7067	3278	*	*	3566	*	4044	2817	3944	3184	5782	*	5780	93
+       66	5786	5244	1530	613	1537	610	10215	1173	2369	
+
+E 94   4026	*	3491	3778	5178	5729	4804	5749	4019	3379	4994	3711	6527	3263	3809	3577	4703	4731	5660	4491	94
+       55	5126	6851	1638	559	1964	427	10206	1449	2359	
+
+L 95   3995	*	6940	6718	3554	5630	4879	2882	*	2293	3539	5674	3995	5146	6512	5589	4878	3120	*	3981	95
+       188	*	3033	*	*	*	0	10239	0	2140	
+
+F 96   4160	*	4499	5530	2249	*	6748	2978	4116	2325	5029	5780	*	4409	6731	4708	5562	3806	*	4719	96
+       85	6293	4498	2322	322	*	0	9979	1007	4247	
+
+N 97   4360	*	3911	3973	5267	4117	5019	4624	3391	4232	6577	3614	4791	3844	3993	3389	3311	5732	5740	5436	97
+       66	6354	4937	3000	193	4612	60	9957	1000	4772	
+
+I 98   3332	*	4124	3108	4788	5230	6579	5041	3323	5583	6499	4714	3823	4240	3364	3644	3669	5110	6773	4783	98
+       290	3715	3241	1221	808	2248	341	9948	2118	4990	
+
+T 99   3698	*	4889	3093	4825	4813	*	4178	3657	4842	5810	4971	3737	4026	4507	3036	3044	5579	6252	5351	99
+       196	5429	3267	1993	418	5034	45	9803	1237	5481	
+
+N 100  2752	*	4418	3014	4478	4418	4746	*	3718	*	6267	3093	*	3883	3750	2709	4830	5991	*	*	100
+       239	6132	2851	1000	1000	3529	131	9678	1004	6362	
+
+G 101  4661	*	4014	5196	6156	1392	4506	5903	5127	5051	*	3332	*	5182	4290	3183	5235	*	6046	5219	101
+       144	4002	4932	2991	194	667	1433	9494	1660	6937	
+
+A 102  2590	6789	4720	3630	5675	2465	5064	5589	4466	4236	5020	4576	4628	4250	5133	4050	4052	*	6576	5005	102
+       57	5726	5640	705	1372	1242	793	10037	1357	4114	
+
+R 103  6752	6638	4106	5767	5786	4828	5700	6735	4656	4369	*	5767	5210	5403	1021	3815	3702	*	6070	6720	103
+       261	3096	4358	1670	544	1799	489	10088	2993	3171	
+
+K 104  3158	6150	4319	4113	*	5380	*	4748	3691	4626	*	4318	2014	3911	4353	3428	6573	4660	*	5027	104
+       185	4928	3519	2123	376	1938	436	10056	1406	3649	
+
+N 105  4043	*	2571	3585	*	2596	5249	*	3589	5643	6511	2349	5256	5048	*	3976	4948	4906	*	*	105
+       212	3267	4942	1586	585	815	1212	10073	2592	4320	
+
+A 106  2838	*	5137	5542	5833	3764	5706	3913	3488	4983	5518	4067	5242	5151	3642	3330	5008	2854	*	5168	106
+       43	6672	5699	1000	1000	1188	833	10162	1004	3018	
+
+F 107  3974	*	4722	4248	5239	6817	6928	5600	3134	5806	*	3577	2655	5021	2292	4359	4199	4083	*	6622	107
+       0	*	*	*	*	175	3127	10266	0	2464	
+
+K 108  4605	7032	6933	5733	6734	3576	3739	6710	1793	4630	5966	4634	4888	4354	3158	3888	4827	4436	*	5816	108
+       50	5321	6746	2707	240	*	0	10358	1327	1006	
+
+I 109  4322	*	6806	4823	3751	5912	6625	2307	*	2969	5248	*	5350	5837	4710	4435	3427	2457	*	4405	109
+       14	6676	*	1000	1000	1046	956	10311	1017	1220	
+
+L 110  3885	6826	6800	*	5043	6720	*	1568	*	2210	3754	5768	*	*	*	*	5811	2245	*	*	110
+       0	*	*	*	*	*	0	10314	0	1019	
+
+V 111  6901	*	*	*	4067	*	*	1536	*	2437	4736	6329	*	*	*	*	*	1648	6015	5800	111
+       0	*	*	*	*	*	0	10314	0	1019	
+
+V 112  6928	6595	*	*	3503	*	*	2225	*	1327	5214	5893	*	*	*	*	6800	2244	*	5892	112
+       0	*	*	*	*	*	0	10314	0	1019	
+
+I 113  5192	*	6015	*	2744	*	*	1591	*	2238	4395	*	*	*	*	6329	*	2352	*	6930	113
+       0	*	*	*	*	*	0	10314	0	1019	
+
+T 114  5342	*	*	*	6494	5008	*	*	*	4863	6755	5592	*	*	*	1670	988	4574	*	6888	114
+       24	5929	*	3322	152	*	0	10314	1155	1019	
+
+D 115  3912	6916	589	4918	*	4881	5821	*	*	*	*	4239	*	5868	6720	4912	5054	6767	*	5394	115
+       0	*	*	*	*	*	0	10314	0	1019	
+
+G 116  3614	*	5653	5682	5819	562	*	*	5849	5866	*	5833	6884	*	6799	3759	4620	*	*	*	116
+       0	*	*	*	*	*	0	10314	0	1019	
+
+E 117  3795	6684	4217	3200	3835	4874	4577	4055	3597	4535	4794	3987	4301	4093	4902	5313	4874	3892	6979	4404	117
+       40	*	5198	*	*	0	*	10288	0	1019	
+
+K 118  3329	6811	2560	3962	5340	4790	6863	4697	7039	5238	*	4503	2479	4876	6667	3046	4036	4143	*	6667	118
+       49	5985	5818	3170	170	1639	559	10259	1152	1479	
+
+F 119  6896	6653	4172	5193	4395	3985	4004	5780	5933	5167	*	2173	4796	4848	4667	3229	2515	5890	5362	6814	119
+       1088	2242	1652	1628	564	*	0	10278	4523	1661	
+
+G 120  3640	5693	2998	4104	5254	2632	*	4537	5147	5136	*	4303	4384	5144	6438	2742	3302	5178	6252	*	120
+       37	5296	*	1809	485	296	2430	9688	1162	6413	
+
+D 121  4588	5730	1598	3467	6804	4262	5703	6729	4213	5775	*	3776	5751	4918	5871	2943	3721	*	*	6756	121
+       75	5266	5324	0	*	*	0	10226	1354	2206	
+
+P 122  5430	*	4356	3676	4843	3560	5519	3877	4370	4285	5110	3932	2411	4681	4455	4778	4736	3770	7255	5654	122
+       89	4828	5330	2219	349	1710	526	10164	1850	2691	
+
+L 123  4003	*	3339	3480	5698	4376	6699	4351	4107	3078	6833	4140	3914	4192	5098	3738	3594	4483	*	5133	123
+       140	4777	4153	3542	130	2517	277	10122	1586	2614	
+
+G 124  4337	*	2171	2925	5773	4644	5790	*	3907	4166	*	5054	4311	5095	4138	3324	4072	5697	6613	4549	124
+       11	*	7047	*	*	2708	240	10069	0	3264	
+
+Y 125  3829	6704	*	5168	5539	5171	*	3666	5521	1971	4640	5073	2991	5712	6730	5780	3814	3507	6829	3698	125
+       115	4067	5873	2639	253	1070	933	10105	1929	3042	
+
+E 126  3413	5426	4751	3158	*	5841	5713	3874	3700	3990	5129	4812	5157	3811	3106	3655	4840	4085	*	4785	126
+       13	6808	*	1000	1000	2276	334	10217	1000	2358	
+
+D 127  3817	*	2773	2337	*	5240	5647	5620	3858	4894	6748	3453	6823	3544	3848	4893	3669	5691	*	5696	127
+       69	6543	4784	0	*	3217	164	10221	1043	2057	
+
+V 128  2683	6753	6458	3233	5567	5689	5509	3247	6864	2938	*	5633	5694	5196	6019	4112	3876	2815	5783	4569	128
+       40	6661	5812	0	*	1584	586	10100	1009	2833	
+
+I 129  2138	6751	*	*	3916	6878	6956	2649	5885	2797	6471	6549	*	5727	5467	3610	5669	2422	*	6809	129
+       31	6473	6636	629	1501	1090	915	10102	1221	2534	
+
+P 130  5290	*	3388	3620	*	5782	5934	4741	2374	3933	*	5308	5193	3617	2621	3778	4304	4689	*	6916	130
+       0	*	*	*	*	*	0	10116	0	1957	
+
+E 131  3385	*	4310	3065	5607	4801	5126	3935	3051	4078	6431	3570	5710	3764	3546	3614	6750	*	6580	5133	131
+       51	5868	5852	3779	109	*	0	10116	1183	1957	
+
+A 132  2026	5455	*	*	4688	*	*	3171	*	1535	5229	5238	*	5844	*	4565	4336	4775	6701	5142	132
+       107	4033	6564	2483	284	917	1088	10138	2040	2361	
+
+D 133  4136	*	4840	4714	*	5214	5132	5808	1962	4221	6883	4186	6510	4056	2246	4724	5141	4745	*	4731	133
+       100	3896	*	2214	350	2094	385	10118	2406	1799	
+
+R 134  3289	5181	3753	2858	6708	5011	4814	7048	2393	5769	*	3440	*	3239	4381	3741	5327	*	*	5661	134
+       51	4837	*	802	1229	1660	549	10139	1607	1574	
+
+E 135  2827	*	5010	3392	5282	5694	6559	5839	3300	3839	3722	3364	5978	4223	4213	4297	4143	5134	6462	4480	135
+       27	6707	6835	0	*	*	0	10158	1008	1336	
+
+G 136  5140	*	3914	5688	*	1404	4606	6722	2950	6759	*	2904	4130	5865	5366	4381	6913	5941	*	6148	136
+       27	5752	*	750	1303	0	*	10152	1393	1522	
+
+V 137  4527	*	5977	6700	6595	6694	4825	1565	6966	3653	5062	5934	6909	*	*	5824	3659	1911	*	4920	137
+       23	*	5960	*	*	*	*	10293	0	0	
+
+I 138  4834	6555	3717	3693	5517	5422	4116	4323	3486	5817	*	5210	4210	3602	4040	3390	2655	4209	*	6854	138
+       39	6684	5891	0	*	*	0	10289	1051	1180	
+
+R 139  5342	6686	*	*	3762	*	*	1983	*	2710	4824	*	5302	6651	5876	6539	3962	1729	5504	*	139
+       13	6776	*	4000	93	0	*	10232	1000	1619	
+
+Y 140  5934	5929	4922	*	2140	6020	4761	2483	*	4257	6728	5445	*	6413	*	4194	4741	3501	5439	2504	140
+       0	*	*	*	*	*	*	10293	0	0	
+
+V 141  2363	6652	*	*	4182	4129	*	3323	7157	5673	5164	6018	4988	5150	*	3813	2565	2227	*	*	141
+       0	*	*	*	*	*	*	10293	0	0	
+
+I 142  *	5949	6211	*	4285	*	*	1358	*	2888	6413	*	7027	*	*	6571	*	1606	*	4820	142
+       37	5851	6925	1783	495	*	*	10293	1157	0	
+
+G 143  2555	6593	4534	*	5231	1125	6528	6769	*	5074	6677	5845	4733	5230	*	3960	4342	6914	*	5152	143
+       25	5874	*	3267	158	0	*	10315	1176	1000	
+
+V 144  5298	6750	*	6436	3998	*	6759	2228	5621	2433	5239	6732	5732	*	5630	4441	4395	2037	*	4299	144
+       41	5151	*	1948	433	*	0	10259	1412	1176	
+
+G 145  5664	*	4443	4315	6789	962	*	*	4116	*	6667	3801	4200	4754	5121	3999	5594	6815	*	6628	145
+       28	5677	*	3166	170	*	0	10259	1193	1176	
+
+D 146  4331	*	3351	3316	5918	3635	6525	*	3924	4504	*	2914	3082	6615	4723	3677	3297	6930	*	4412	146
+       70	6823	4692	1000	1000	*	0	10255	1000	1335	
+
+A 147  3006	*	3550	3429	6614	3652	4803	6861	3817	4798	*	4146	4031	3827	4330	3648	3860	4620	*	5102	147
+       1074	*	929	1000	1000	2782	227	10197	1000	2055	
+
+F 148  2874	*	4481	4550	3048	4310	5647	3802	*	3581	5571	5516	5549	5442	5315	3699	5605	2480	*	4629	148
+       1648	3642	735	2532	274	2780	227	8941	1535	7841	
+
+R 149  4585	*	2771	1838	*	2753	4632	*	*	4737	*	4673	4511	*	3197	4539	4902	4742	*	*	149
+       105	*	3839	*	*	4264	77	7806	0	8934	
+
+S 150  3250	*	3685	*	4129	3220	3826	*	*	*	*	3684	*	3890	*	2915	3211	3884	*	2959	150
+       108	4646	4949	4322	74	4074	88	8075	1044	8850	
+
+E 151  2926	*	4468	3044	4783	4146	*	4871	5063	3367	*	5109	4008	3419	4121	4179	3008	5237	*	*	151
+       310	4825	2659	2585	263	3223	163	8217	1032	8686	
+
+K 152  2864	5328	5304	5146	5146	3469	*	3136	4077	*	*	3543	*	3585	5188	4354	3395	3043	*	5020	152
+       49	4903	*	2585	263	274	2529	8391	1032	8539	
+
+S 153  3230	5448	2114	3580	5211	4629	5767	6721	5502	5069	6446	2402	5490	5794	6515	4111	3652	6626	*	6744	153
+       0	*	*	0	*	882	1128	10020	1000	3027	
+
+R 154  3734	*	5110	2902	5675	5802	5554	5575	3639	3015	4422	5675	4500	4564	2810	4946	4066	4211	5144	6848	154
+       0	*	*	*	*	1565	595	10217	0	1887	
+
+Q 155  3208	*	3086	2748	5193	5669	5790	*	3113	4432	5591	4408	6703	3801	3491	3776	3944	6769	*	6272	155
+       0	*	*	*	*	905	1101	10248	0	1533	
+
+E 156  4649	*	4799	1934	5764	5575	6290	4780	3596	3912	5774	4177	*	2909	4553	*	4723	3338	5723	5652	156
+       13	*	6851	4322	74	1092	914	10271	1000	1148	
+
+L 157  4469	5178	6261	6624	4168	*	6522	3123	*	990	3044	6219	6783	6909	*	*	*	4649	6765	5791	157
+       0	*	*	*	*	965	1036	10235	0	1161	
+
+N 158  4135	6774	3868	3603	*	4535	5640	5774	2401	4399	6742	4027	5722	3922	2573	4030	4241	5804	*	6756	158
+       0	*	*	*	*	0	*	10249	0	1000	
+
+T 159  3090	6200	4153	3100	5758	4013	5140	6898	3480	3732	*	3393	5769	4187	3393	4094	4244	*	5727	5628	159
+       14	6695	*	3459	138	*	*	10261	1000	0	
+
+I 160  5028	5674	6879	*	3450	*	*	1767	*	1725	3829	*	*	6904	*	6471	6775	3257	6680	4648	160
+       28	6566	6799	1000	1000	*	*	10249	1004	0	
+
+A 161  1405	*	4901	5719	4716	4021	*	6602	*	5073	*	*	*	5887	*	2913	2851	3038	*	5637	161
+       16	6475	*	2160	366	0	*	10195	1251	1000	
+
+S 162  4698	6574	2846	4053	*	2521	*	5713	3354	5906	*	4315	*	4639	4909	2330	3803	5762	*	4999	162
+       533	*	1695	*	*	*	*	10191	0	0	
+
+K 163  2948	3602	3760	3593	*	4663	6258	5275	3133	3362	5091	4149	5088	4072	4424	4517	5039	5015	6002	*	163
+       56	*	4711	*	*	5289	37	9578	0	5541	
+
+P 164  3581	*	*	*	*	2743	6105	*	4783	4141	*	5044	2349	4902	6140	3924	2008	4275	*	5700	164
+       112	*	3740	*	*	796	1238	9552	0	5745	
+
+P 165  3457	*	3725	6269	4672	1699	*	5162	5206	5082	*	3461	4507	5382	4975	2744	5319	6421	*	6372	165
+       0	*	*	*	*	2249	341	9851	0	4021	
+
+R 166  4111	*	5163	3333	*	1728	*	5571	3563	6474	6467	4431	4736	5504	3919	3629	4808	4632	*	4157	166
+       0	*	*	*	*	565	1626	9916	0	3441	
+
+D 167  4075	*	3306	3382	5570	3306	6092	4948	3290	5454	5582	3518	6719	4588	3168	4285	3917	5509	5844	5507	167
+       318	3094	3632	361	2174	0	*	10071	2770	1744	
+
+H 168  4022	4630	3778	5576	4085	5455	2737	6203	4358	5060	4960	3207	4405	4903	4729	4944	4115	4946	6788	3476	168
+       18	6321	*	2000	415	0	*	10106	1017	2191	
+
+V 169  3552	4385	*	5624	2370	6756	*	3496	6667	3123	6430	6624	*	*	*	5180	4015	2303	*	3098	169
+       62	*	4567	*	*	*	*	10139	0	0	
+
+F 170  5595	*	4915	6521	2029	*	6455	3531	5492	3035	5610	*	*	5669	5401	6646	4076	3716	*	2066	170
+       50	6279	5582	4170	82	377	2120	10085	1018	1628	
+
+Q 171  5938	*	4329	4022	3982	6646	3859	3743	3562	3830	4091	4098	3963	4663	4650	3513	3807	5631	*	4041	171
+       26	7053	6578	0	*	0	*	10148	1000	1378	
+
+V 172  2493	*	5587	7003	5561	*	6576	2837	*	2438	4600	6722	5042	5070	*	4056	3428	2525	*	*	172
+       27	5780	*	1000	1000	0	*	10166	1180	1008	
+
+N 173  5087	*	3037	2721	6587	5515	5083	6435	3835	5521	6750	3357	3665	3287	3947	3504	4129	6398	6607	6432	173
+       32	5522	*	0	*	*	*	10134	1202	0	
+
+N 174  5038	*	1714	4065	6611	3783	4900	*	5532	*	*	3019	4992	6798	5009	2412	3789	6383	*	*	174
+       0	*	*	*	*	*	*	10164	0	0	
+
+F 175  3530	*	3782	4007	3045	5149	*	3862	5393	3778	4566	6815	4024	5004	6684	3645	4030	4591	3925	4019	175
+       15	6607	*	1000	1000	*	*	10152	1000	0	
+
+E 176  3553	*	2370	3251	*	3785	4452	6681	4056	5106	*	4358	5605	6577	4325	2432	3748	6675	*	*	176
+       43	5682	6668	593	1568	*	*	10152	1219	0	
+
+A 177  2989	*	2431	2752	5604	4087	4966	6471	6695	4295	5010	3501	6556	4253	5378	3624	4700	6726	6433	6667	177
+       21	6136	*	0	*	*	0	10153	1055	1000	
+
+L 178  *	*	*	*	3349	6138	*	3380	*	934	4200	6451	6411	5525	6634	6607	6638	3187	5129	*	178
+       0	*	*	*	*	*	0	10094	0	1000	
+
+K 179  3655	*	3767	3404	6638	6668	4920	5536	3611	4304	4212	4309	3537	3987	3655	3048	5631	4505	*	5179	179
+       50	4885	*	311	2367	0	*	10094	1456	1000	
+
+T 180  3700	*	2765	3107	*	4400	*	4935	3283	4497	6599	3232	4653	4488	4114	3558	4333	5058	*	6715	180
+       67	4469	*	1000	1000	*	*	10103	1605	0	
+
+I 181  3781	6726	*	5416	3206	*	6281	2112	5485	2684	3926	6392	*	5120	4405	4609	4982	3493	6704	4672	181
+       35	5380	*	0	*	*	*	10081	1200	0	
+
+Q 182  3513	*	5397	5422	2812	*	6479	2558	5524	2306	6400	*	6603	5118	5619	*	6442	2390	*	4494	182
+       16	6512	*	0	*	*	*	10062	1000	0	
+
+N 183  4880	*	3484	2951	5603	3644	*	*	2356	5573	*	3339	5359	4248	3679	2935	4897	*	*	6356	183
+       0	*	*	*	*	*	*	10014	0	0	
+
+Q 184  3794	*	3414	3084	4897	3967	5197	*	3092	4318	*	4883	4789	2820	3536	3642	4807	*	6620	*	184
+       0	*	*	*	*	*	*	9995	0	0	
+
+L 185  6340	6567	*	*	3357	6563	*	1683	*	1854	3641	*	*	6373	*	6118	6508	2614	*	*	185
+       0	*	*	*	*	*	*	9850	0	0	
+
+R 186  2794	6299	6191	6225	4622	*	*	2611	5212	2656	3967	5279	6179	3652	4696	4294	4668	3325	*	6121	186
+       21	6130	*	1585	585	*	*	9740	1023	0	
+
+E 187  5128	*	2640	2917	6130	3846	5256	*	3270	6047	6265	3708	*	3066	3331	4356	4258	5198	*	6236	187
+       51	4837	*	2484	284	*	*	9711	1290	0	
+
+K 188  3898	6035	5177	3139	6430	4170	*	6010	2971	5314	6206	4122	*	3818	2611	5133	3340	4157	6446	4615	188
+       0	*	*	*	*	*	*	9606	0	0	
+
+I 189  5896	*	5784	5074	5892	*	*	1305	*	2083	3495	4893	*	5898	*	3905	*	3797	*	*	189
+       0	*	*	*	*	*	*	9389	0	0	
+
+F 190  5373	507	*	*	4046	*	*	3685	5756	4475	*	*	*	*	5403	5470	5363	*	*	*	190
+       0	*	*	*	*	*	*	8618	0	0	
+
+C 191  3366	5160	3445	*	*	3794	*	*	4348	4162	*	3017	3411	4162	4221	2017	4967	*	*	*	191
+       0	*	*	*	*	*	*	8005	0	0	
+
+I 192  4711	*	4377	*	*	*	4545	1929	4306	2875	4446	4388	*	*	*	4536	4466	2062	*	*	192
+       143	3410	*	0	*	*	*	7069	1073	0	
+
+G 193  2687	*	2482	2604	*	1608	*	*	*	3587	*	*	*	*	*	3475	*	*	*	*	193
+       0	*	*	*	*	*	*	5768	0	0	
+
+S 194  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	194
+       0	*	*	0	*	*	*	3455	0	0	
+
+//
+�HHsearch 1.5
+NAME  b3693168b9f04cd2db237b30b4be5176
+FAM   
+FILE  b3693168b9f04cd2db237b30b4be5176
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:48:59 2013
+LENG  176 match states, 176 columns in multiple alignment
+FILT  130 out of 1041 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  8.9 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCHHHHHCCHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHCCCCCHHHHHHHHHHHHHHHHHHHHHHHHHHHCCCCCCCCCCCCCCCCCCCCHHHHHHHH
+HHHHHHHHHHHHHHHHHHHHCCCHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHCCCCCCCHHHHHHHHHCCCCC
+>ss_conf PSIPRED confidence values
+9725554254999999999999999999999999999850387807899999999999999999999999986997747667777667769999999999
+9999999999999999998859999999999999999999999999999999984799976118997487506899
+>Consensus
+xxxxxrxxxxxxvxxxLnxxlxxexxaxxxYxxxaxxxxxxxxxxxxlxxxfxxxaxeexxhaxxlaexixxlGgxpxxxxixxxxxxxxxxxxexlxxx
+lxxExxxxxxxxxlxxxaxxxxDxxtxxxlxxxxixeqxxxxxxlxxxlxxlxxxxxxxxxxxxxxxDxxlxxxxx
+>b3693168b9f04cd2db237b30b4be5176
+MVSQVRQNYHSDCEAAVNRMLNLELYASYTYSSMYAFFDRDDVALHNVAEFFKEHSHEEREHAEKFMKYQNKRGGRVVLQDIKKPERDEWGNTLEAMQAA
+LQLEKTVNQALLDLHKLATDKVDPHLCDFLESEYLEEQVKDIKRIGDFITNLKRLGLPENGMGEYLFDKHSVKESS
+>gi|156933508|ref|YP_001437424.1| hypothetical protein ESA_01328 [Cronobacter sakazakii ATCC BAA-894]gi|156531762|gb|ABU76588.1| hypothetical protein ESA_01328 [Cronobacter sakazakii ATCC BAA-894]gi|333956802|gb|EGL74437.1| hypothetical protein CSE899_00345 [Cronobacter sakazakii E899]
+------------VVQKLNAQMNQEFYASNLCLYYSDWCAQQ--SLNGSATVLRQQAQHNVTQMMRLFDYLKQTGANPVVGALKSV-KPDCSSLEAIFHQM
+QDELGGRHAALARLMSEAQAARDDAMLAMLGE-FEQELRQDEALLATILNELTQARQ--AGLC-------------
+>gi|319789636|ref|YP_004151269.1| Ferritin Dps family protein [Thermovibrio ammonificans HB-1]gi|317114138|gb|ADU96628.1| Ferritin Dps family protein [Thermovibrio ammonificans HB-1]
+----------DKIVELLNRALADEWLAYYQYWIGSKVVK--GPMKSAVEAELVQHAADELRHADMLVMRILELGGTPILTPKrwfeltncgyDAP-EDP-
+-FVRRILEQNIKGEQCAIEVYNQIISFTK-DIDPVTYNLAVQ-IMTDEMEHEEDLQSLLEDLEnlKFLR-------------------
+>gi|110004363|emb|CAK98701.1| hypothetical ferritin protein [Spiroplasma citri]
+---------TKDIEKDLQHYIDEHIKMQFFCYNLSSAA--DKLGFPGFSHYFQVQAQDEVLHQRRIMNFVLDRDGHYQIKNIAEE-YKDIKNIIELMETY
+QTKRAYFAELTNKLAQHANTVGDLVTYKFYDW-FIIDFYEELAEVKDIIEWIKMSNN-----NYYEIDRKMG----
+>gi|260590733|ref|ZP_05856191.1| rubrerythrin [Prevotella veroralis F0319]gi|260537335|gb|EEX19952.1| rubrerythrin [Prevotella veroralis F0319]
+----------TGLEKFIEAVAMSKAMGVMNYYSLALMAEEQ--GLPEeLAKCFRELADRESVHAGFYATLNA------------K--LPS--DVFQMMEN
+MQKGELGAGKFLQPLADKLRELGREDVALQIEE-YIRQELHHGEILGELLAKYKK----------------------
+>gi|340755444|ref|ZP_08692131.1| ferritin [Fusobacterium sp. D12]gi|313687436|gb|EFS24271.1| ferritin [Fusobacterium sp. D12]
+------------------------------------------QQFMSIHSFTESQYDTYFGYYDDVAEALKMQGQRPLvrMkdylavTSIQEL-EDKNFS
+PCEVLSIVKADLEEMNQLAKEIRELAGEEDDFAVSNMMED-HIAANKKQLWFIDSMTK--------------------------
+>gi|116627595|ref|YP_820214.1| peroxide resistance protein,non-heme iron-containing ferritin [Streptococcus thermophilus LMD-9]gi|116100872|gb|ABJ66018.1| DNA-binding ferritin-like protein (oxidative damage protectant) [Streptococcus thermophilus LMD-9]
+------------TKAVLNQAVADLSV-AASIVHQVHWYM-RGPGFLYLHPKMDELMDSLNSHLDKISERLITIGGEPYstLVefssnsGLTET-TGTF-D
+QpmSDRIQLLVDIYKYLSVLFQVGLDITDEEGDVPSNDIFTD-AKSEIDKTIWMLTAELG--------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	2382	0	0	
+
+V 2    *	*	*	*	*	1173	*	*	*	*	*	*	*	*	*	1829	*	1862	*	*	2
+       0	*	*	*	*	*	*	2382	0	0	
+
+S 3    2525	*	*	*	*	*	*	*	*	*	*	*	1798	*	*	892	*	*	*	*	3
+       0	*	*	*	*	*	*	3301	0	0	
+
+Q 4    *	*	*	*	*	*	*	2548	2029	*	*	*	2675	2978	2704	*	*	*	2767	*	4
+       0	*	*	*	*	*	*	3672	0	0	
+
+V 5    3101	*	*	*	2942	*	*	*	3378	*	*	*	*	*	3371	2099	3121	2237	*	*	5
+       0	*	*	*	*	*	*	4258	0	0	
+
+R 6    *	3674	*	*	*	3981	3795	*	3922	*	*	*	*	*	473	*	*	*	*	*	6
+       0	*	*	*	*	*	*	5341	0	0	
+
+Q 7    *	*	*	4006	*	*	2748	2285	2444	*	*	4047	*	2370	*	3839	*	3715	*	*	7
+       0	*	*	*	*	*	*	5490	0	0	
+
+N 8    *	*	4516	4666	*	*	*	3604	*	*	2003	1448	2973	*	*	4428	4482	*	*	*	8
+       0	*	*	*	*	*	*	6526	0	0	
+
+Y 9    3530	*	4751	*	2401	*	*	2645	4978	3775	3231	5209	*	*	4237	4754	3628	*	*	3086	9
+       0	*	*	*	*	*	*	7246	0	0	
+
+H 10   4626	*	3039	*	*	6024	4266	*	2887	5404	*	2917	3308	5262	4370	2617	3202	6162	*	5766	10
+       0	*	*	2000	415	*	*	7946	1012	0	
+
+S 11   3939	*	5349	1996	*	4466	*	*	3277	*	*	4129	3493	3630	6041	3870	2674	5062	6124	*	11
+       37	*	5307	*	*	*	*	8661	0	0	
+
+D 12   3195	*	4551	2391	*	4631	*	6319	2288	*	6381	3796	3321	3575	4141	4856	6491	5078	*	*	12
+       0	*	*	*	*	0	*	8831	0	1121	
+
+C 13   4455	4175	*	6481	6956	*	*	2332	*	2272	4840	*	*	6342	5835	5430	3746	1682	*	*	13
+       0	*	*	*	*	*	*	9285	0	0	
+
+E 14   3848	6772	7015	2211	5703	6552	6106	2134	5546	3119	5571	6706	5553	5373	5505	5256	4494	3504	*	4947	14
+       0	*	*	*	*	*	*	9327	0	0	
+
+A 15   3145	6480	3059	2249	*	4626	5652	*	2672	6686	6837	3836	5420	4033	4210	4548	4414	6440	*	*	15
+       0	*	*	*	*	*	*	9354	0	0	
+
+A 16   2541	7128	5410	5505	5437	3496	5237	4135	3537	2297	4781	4210	*	6651	6419	4891	5652	4194	5533	4356	16
+       0	*	*	*	*	*	*	9371	0	0	
+
+V 17   *	*	*	*	4762	*	*	3093	*	493	5126	*	*	*	*	6639	*	3372	*	*	17
+       13	6851	*	1000	1000	*	*	9387	1000	0	
+
+N 18   *	5697	4655	5613	6945	5031	5020	5612	4016	*	*	958	*	3308	5123	4009	5673	4552	*	*	18
+       0	*	*	*	*	*	*	9387	0	0	
+
+R 19   3710	*	3384	2806	*	4306	4594	6791	2711	5275	6811	4411	*	3703	2923	4505	5278	4616	5410	7243	19
+       0	*	*	*	*	*	*	9434	0	0	
+
+M 20   2525	*	4579	5795	5427	6509	3838	4307	*	2193	5250	4454	*	2558	6598	5675	*	3878	6706	4509	20
+       0	*	*	*	*	*	*	9458	0	0	
+
+L 21   4052	6615	*	*	4213	6881	6807	2101	*	1676	3664	*	*	5699	6117	7055	5107	3404	*	3863	21
+       0	*	*	*	*	*	*	9543	0	0	
+
+N 22   2076	5544	5411	5510	*	4452	4608	6631	4066	6933	6654	2418	*	4801	4903	3058	3535	4093	*	*	22
+       0	*	*	*	*	*	*	9543	0	0	
+
+L 23   3244	*	3385	4377	5874	4153	5441	5266	5211	2915	4057	3104	*	4242	4913	3087	5300	4748	5967	6621	23
+       0	*	*	*	*	*	*	9543	0	0	
+
+E 24   5163	*	6914	819	5878	6853	3338	*	5001	3382	*	6688	*	4960	*	5864	5728	6064	6649	4550	24
+       0	*	*	*	*	*	*	9543	0	0	
+
+L 25   5037	7170	*	*	2795	*	4798	2907	*	1784	4026	5725	*	4098	7018	4423	4596	5570	5402	3648	25
+       0	*	*	*	*	*	*	9543	0	0	
+
+Y 26   2765	6739	4801	3776	6881	4323	5781	5141	4248	5248	6654	4141	*	3866	6716	3238	3063	3323	5715	4025	26
+       295	*	2435	*	*	*	*	9543	0	0	
+
+A 27   1255	5620	*	4847	*	3363	6227	*	6275	3382	6053	6400	*	3858	*	3185	3654	5564	*	*	27
+       0	*	*	*	*	314	2353	9103	0	3036	
+
+S 28   3152	*	*	5667	4500	5052	5887	3459	*	3286	5246	5055	*	5106	*	2009	4421	2964	5531	4246	28
+       0	*	*	*	*	*	0	9487	0	1331	
+
+Y 29   4583	*	4207	5506	3908	4625	3621	5105	*	3403	5260	3810	*	3772	*	3841	3838	4660	*	2183	29
+       0	*	*	*	*	0	*	9487	0	1331	
+
+T 30   4741	*	5761	5023	4054	*	4405	3730	5943	2361	4768	5854	*	2234	4642	4742	3828	4031	5904	5182	30
+       0	*	*	*	*	*	*	9557	0	0	
+
+Y 31   5145	5569	*	*	4650	*	5240	6480	4126	5140	6577	5764	*	5219	*	*	6555	5281	*	524	31
+       0	*	*	*	*	*	*	9557	0	0	
+
+S 32   5066	*	5599	6858	4223	5266	*	4575	5595	1747	3270	6923	*	4876	3812	4397	3102	4491	5211	4375	32
+       51	*	4845	4322	74	*	*	9557	1000	0	
+
+S 33   2772	*	5708	6548	4773	7085	3594	4268	2928	4030	*	4096	*	3763	4733	3597	3867	5232	6973	3365	33
+       0	*	*	*	*	0	*	9491	0	1331	
+
+M 34   4908	6967	6707	*	5371	4918	3084	5583	5315	2065	2811	3726	*	2792	*	6563	5744	5943	*	3626	34
+       0	*	*	*	*	*	*	9563	0	0	
+
+Y 35   1258	*	7124	*	5700	3553	3937	5673	*	4906	6563	*	*	5736	5663	2652	5742	6494	6453	3285	35
+       0	*	*	*	*	*	*	9563	0	0	
+
+A 36   2658	5688	6757	5242	4295	5743	2366	5201	3602	4356	5874	5938	*	6557	4438	3337	4737	4362	5328	3956	36
+       11	*	6982	*	*	*	*	9563	0	0	
+
+F 37   6443	*	5489	5270	5251	5252	3691	4330	5305	3112	3970	4068	*	5056	5597	6640	5274	3528	2007	3754	37
+       0	*	*	*	*	*	0	9559	0	1000	
+
+F 38   2809	3093	*	*	1956	*	5246	4462	*	3583	6226	3315	*	*	*	5041	6655	3620	*	3447	38
+       332	*	2282	*	*	*	0	9559	0	1000	
+
+D 39   3115	6448	2699	2785	6416	4776	*	4415	3798	5529	5347	4519	*	4855	4957	4073	4504	3396	*	4265	39
+       1129	*	881	*	*	2791	225	9280	0	3735	
+
+R 40   *	5579	3939	4344	4409	3905	*	*	5205	*	*	5600	*	3200	2224	2221	3068	4425	*	*	40
+       239	5235	2987	0	*	987	1014	7795	1005	6907	
+
+D 41   3568	*	2386	2171	*	6120	6428	*	3917	*	6013	6195	6383	3667	4217	3775	4129	3966	*	4558	41
+       238	*	2718	*	*	325	2311	9099	0	5054	
+
+D 42   4683	6176	2392	4428	6285	1623	3762	6450	4167	6178	*	4170	*	5398	4804	4293	5549	*	*	5022	42
+       81	*	4191	*	*	1220	809	9244	0	3268	
+
+V 43   4550	6232	5562	3256	5910	*	4479	3899	3098	3657	6889	4986	3305	6907	4181	4713	4804	3571	3383	4837	43
+       0	*	*	*	*	495	1783	9602	0	2853	
+
+A 44   4845	5860	3509	4355	6788	1910	4116	*	4840	6890	5966	2662	*	3775	6051	3299	4682	7139	*	5303	44
+       0	*	*	*	*	982	1018	9671	0	1488	
+
+L 45   5139	*	*	5358	1803	7033	5279	6655	6886	2185	3976	6721	*	*	3093	7136	*	4777	5390	2929	45
+       0	*	*	*	*	0	*	9673	0	1173	
+
+H 46   4648	*	4313	3774	3682	4774	4416	4430	3802	3533	6182	4422	2310	6801	3879	4696	4345	5164	*	5945	46
+       13	6788	*	0	*	*	*	9767	1026	0	
+
+N 47   3896	*	4426	3138	7066	1523	5369	5355	4905	6875	*	3778	4566	4572	5489	4172	6149	4626	*	4744	47
+       59	4645	*	2014	410	*	*	9767	1475	0	
+
+V 48   5901	6229	6706	*	2699	*	*	2827	*	1507	3733	*	6661	*	7059	6047	4825	2836	*	5034	48
+       0	*	*	*	*	*	*	9749	0	0	
+
+A 49   1549	5421	*	4478	*	3769	1913	5225	5683	*	*	*	*	5026	6353	3503	5270	4684	*	6831	49
+       0	*	*	*	*	*	*	9749	0	0	
+
+E 50   3308	*	3814	2608	*	5222	4417	*	2152	4324	*	4040	5414	4934	4217	3634	4335	6097	*	*	50
+       27	*	5759	*	*	*	*	9749	0	0	
+
+F 51   5429	5919	7190	4276	2075	6997	5569	*	3077	2960	4586	5811	*	7105	5078	7112	4917	4012	3945	3000	51
+       0	*	*	*	*	*	0	9712	0	1140	
+
+F 52   *	5359	*	*	1312	*	*	5248	*	1683	3615	*	*	6923	*	5786	4949	5832	6364	3939	52
+       0	*	*	*	*	*	0	9712	0	1140	
+
+K 53   5389	*	2774	2311	7162	7128	6781	6538	3279	3859	7025	4594	*	3100	2546	5835	*	5191	*	4617	53
+       0	*	*	*	*	0	*	9712	0	1140	
+
+E 54   4045	*	3003	2155	*	4344	5323	5346	2655	4761	7077	4813	6700	4395	5238	3979	3854	5258	6606	*	54
+       0	*	*	*	*	*	*	9749	0	0	
+
+H 55   4516	5174	5268	3263	5441	*	3468	3317	5263	2730	4809	5607	*	2452	4680	4882	*	3983	6753	5404	55
+       12	6934	*	0	*	*	*	9749	1009	0	
+
+S 56   1176	*	*	*	6970	4924	5531	4245	*	6840	4895	*	*	*	5759	2190	*	5418	*	2848	56
+       0	*	*	*	*	*	*	9749	0	0	
+
+H 57   3401	*	2458	2707	*	7090	5379	4230	4160	3607	5674	3846	7183	3374	4712	4261	4557	6449	6522	*	57
+       0	*	*	*	*	*	*	9749	0	0	
+
+E 58   5414	*	2835	1225	*	4763	4974	4796	4157	5782	*	5494	*	5362	3501	5924	5345	4460	*	6886	58
+       0	*	*	*	*	*	*	9749	0	0	
+
+E 59   3894	5677	5759	1182	6053	*	4853	4663	4500	3864	5071	4590	*	5858	5903	4371	4606	4357	*	6892	59
+       10	*	7153	*	*	*	*	9749	0	0	
+
+R 60   4098	*	5973	5272	3601	6872	5579	7077	5726	2739	2887	4598	7000	4963	2153	5343	5943	5241	3509	6008	60
+       0	*	*	0	*	0	*	9748	1000	1000	
+
+E 61   3770	6850	3814	2307	5796	3393	5754	6014	3508	5675	7060	4192	7026	3600	4580	3829	3472	5452	7264	7345	61
+       10	7129	*	0	*	*	*	9749	1009	0	
+
+H 62   4588	*	4523	5314	5353	5372	951	5956	4990	5271	4707	6122	*	3946	5737	6056	4987	*	5279	4578	62
+       0	*	*	*	*	*	*	9749	0	0	
+
+A 63   1246	6029	*	*	4504	4576	*	3631	7129	3738	4277	7044	*	5065	6838	4390	5001	3147	*	5335	63
+       16	*	6490	*	*	*	*	9749	0	0	
+
+E 64   4689	*	1574	2691	*	5210	5251	4688	4326	4467	3599	5039	*	3910	4734	6929	6821	4992	*	5810	64
+       0	*	*	*	*	0	*	9716	0	1223	
+
+K 65   4468	*	2728	3479	5509	5861	6643	4032	2949	4594	4184	6663	7057	4189	2432	4845	4981	6860	5618	5322	65
+       0	*	*	*	*	*	*	9749	0	0	
+
+F 66   5121	6688	*	*	2737	*	*	2224	*	1784	3744	6863	*	7026	*	7304	6700	2451	6643	7107	66
+       0	*	*	*	*	*	*	9749	0	0	
+
+M 67   1270	*	*	5584	3973	4098	*	3066	*	3280	3525	6961	*	*	6906	4574	6668	4319	*	6080	67
+       0	*	*	*	*	*	*	9749	0	0	
+
+K 68   4769	*	2975	1409	*	6856	5163	6062	2861	6490	6903	3711	6834	4436	4154	5281	5139	*	6753	*	68
+       0	*	*	*	*	*	*	9749	0	0	
+
+Y 69   6892	*	*	6860	3683	*	4146	5340	4092	3504	4959	*	*	6813	1428	*	*	*	5931	2010	69
+       12	6863	*	2322	322	*	*	9749	1010	0	
+
+Q 70   3587	*	*	7442	6786	*	*	1569	*	1870	3659	5343	*	3873	*	5378	6122	3779	*	6957	70
+       0	*	*	*	*	*	*	9749	0	0	
+
+N 71   5008	5780	7090	*	6149	4405	*	4297	4036	2038	5861	4134	*	4888	3046	6086	3122	2906	6944	5237	71
+       60	*	4612	*	*	*	*	9749	0	0	
+
+K 72   2791	*	3807	3222	4509	4649	5796	6039	3514	4926	3350	6824	*	3578	4487	4017	3189	6806	*	5386	72
+       0	*	*	*	*	*	0	9684	0	1601	
+
+R 73   6994	7118	6682	*	5165	*	*	4610	5876	1113	5124	4877	*	5053	1864	6839	5954	4851	*	*	73
+       23	*	5996	*	*	*	0	9684	0	1601	
+
+G 74   *	6595	3534	4391	*	517	7078	*	6784	*	*	4013	*	4258	*	5256	*	*	*	*	74
+       0	*	*	*	*	2833	218	9675	0	1878	
+
+G 75   3225	*	6448	3963	5839	1016	5982	5814	5254	5604	6315	5244	*	4665	*	4863	6061	3788	*	5329	75
+       10	*	7212	*	*	*	0	9683	0	1742	
+
+R 76   5080	5072	4116	3623	6834	6916	3604	3473	3086	4964	*	3965	4123	5308	3938	4660	3135	3901	6688	5596	76
+       12	*	6887	*	*	*	0	9680	0	1862	
+
+V 77   3023	*	*	*	5400	5651	*	3650	*	4645	6852	*	1123	*	*	5095	5412	2524	*	5700	77
+       107	3801	*	2280	333	2984	195	9672	1960	1996	
+
+V 78   3924	4216	3202	3341	7031	*	5644	4939	3729	3406	*	4313	4600	4760	3325	4129	3921	3740	*	5903	78
+       431	1996	7075	1424	673	*	0	9674	3965	1860	
+
+L 79   3614	6996	6683	*	2714	6620	*	2808	*	2330	4290	5877	4512	6058	6651	4707	3816	3748	5557	4195	79
+       167	3335	6620	2570	266	*	0	9665	2210	1980	
+
+Q 80   3816	*	4262	3743	7048	3690	*	5534	3186	6845	6778	3448	3605	4173	4954	2481	3643	5342	5472	*	80
+       266	2806	5313	2686	244	1641	558	9645	2993	2106	
+
+D 81   3684	*	3560	3228	5953	4427	*	5537	4435	4167	5872	5010	3799	4481	4939	3167	2651	4081	6636	7051	81
+       40	6762	5810	0	*	1605	575	9659	1010	2120	
+
+I 82   4567	6260	7053	*	5064	4598	5906	1857	5903	2403	4488	*	5538	5203	4918	4373	5395	2738	6607	6773	82
+       24	5903	*	2933	202	2444	293	9642	1351	2075	
+
+K 83   3504	*	4128	3097	5078	5988	6736	6988	2478	4504	*	4574	2859	3250	4788	4300	4044	6565	*	6871	83
+       94	3981	*	2598	261	458	1878	9665	1951	1864	
+
+K 84   2720	*	4611	2217	6042	5228	7021	6270	3102	4760	7425	3860	3601	7049	4030	4361	4220	4379	*	*	84
+       167	4813	3764	1311	744	1804	487	9718	1465	1316	
+
+P 85   4525	*	4674	4579	4421	5119	5783	3837	5941	3602	*	4882	1676	7186	5287	4895	4205	3174	*	4823	85
+       1103	3993	1084	1925	441	3819	106	9633	1755	2343	
+
+E 86   4751	*	3550	2432	*	*	6147	5888	4043	3300	*	3835	3687	3375	4258	3426	3990	4425	*	*	86
+       169	3178	*	2055	397	71	4377	8888	1901	6654	
+
+R 87   4996	5591	3389	3492	5337	5995	4894	3361	3068	4005	5414	5001	4079	4452	5695	3939	3967	3437	*	6609	87
+       23	*	5955	*	*	1803	487	9739	0	1288	
+
+D 88   3068	6371	3181	4693	6409	3014	4923	4787	4573	5376	6604	3914	4561	4224	5341	3124	3788	4510	6814	6400	88
+       41	5165	*	1348	720	*	0	9732	1377	1444	
+
+E 89   4806	*	3138	2481	6830	4306	4620	7060	3566	5974	*	4053	4260	3874	5672	3455	3437	5363	*	4168	89
+       427	4910	2167	592	1571	1057	946	9732	1539	1444	
+
+W 90   4122	4776	6802	*	3019	5578	5001	3569	4890	4078	6782	5657	4023	4318	6561	5000	4614	4076	2701	3209	90
+       362	3808	2730	2351	315	*	0	9436	1895	4100	
+
+G 91   4325	*	3227	4799	4423	3709	5072	4592	5301	*	6402	3996	4022	5337	4583	4059	2160	4723	6009	4381	91
+       132	4264	4833	448	1905	298	2421	9267	1427	5206	
+
+N 92   5387	5706	1861	4784	6792	4535	6965	*	4639	7226	*	3652	6657	6310	5055	2110	2656	5968	*	*	92
+       81	4457	6759	1384	697	273	2536	9700	2075	2273	
+
+T 93   3784	5589	4323	4630	5288	5138	6846	2506	*	2620	5740	5989	3131	6890	6682	4324	4797	2717	*	6635	93
+       106	3820	*	1000	1000	0	*	9734	2149	1267	
+
+L 94   7049	6895	4401	3053	5794	4728	6008	4417	2931	3031	5058	5993	6101	4477	2634	4844	5252	3092	*	*	94
+       0	*	*	*	*	*	*	9762	0	0	
+
+E 95   3724	5260	2667	1568	*	4313	6825	*	4097	5948	6989	4405	5987	5033	5007	3655	4293	7204	*	*	95
+       22	6886	7243	0	*	*	*	9762	1000	0	
+
+A 96   2369	6156	*	5932	*	5915	6219	3197	*	2946	2461	5269	5628	4928	6905	3961	5028	3096	*	5251	96
+       26	*	5793	*	*	*	0	9754	0	1000	
+
+M 97   6109	6416	*	*	2490	*	*	3248	*	1217	3626	*	*	*	*	*	*	2759	6009	5942	97
+       0	*	*	*	*	360	2178	9719	0	1448	
+
+Q 98   3998	*	4236	2216	*	5433	6846	5062	2431	5895	5633	5827	7370	3233	3285	3544	6055	4618	*	6531	98
+       0	*	*	*	*	*	0	9754	0	1000	
+
+A 99   2954	6966	5955	3210	6221	4981	4635	3895	3710	3021	4571	3134	*	4043	5396	4049	4702	4888	*	6199	99
+       0	*	*	*	*	*	0	9754	0	1000	
+
+A 100  1943	5076	3019	6996	*	*	*	3730	*	2692	4055	4057	*	*	*	3859	5206	3244	*	5197	100
+       0	*	*	*	*	*	0	9757	0	1000	
+
+L 101  4942	*	*	5772	4604	*	7155	3315	4523	1178	4547	*	*	4099	5256	5327	*	3013	*	4683	101
+       0	*	*	*	*	*	0	9757	0	1000	
+
+Q 102  2536	6876	3072	1707	6433	4685	6722	*	3242	*	6531	4223	*	4314	7330	4959	4497	5011	*	*	102
+       0	*	*	*	*	*	0	9757	0	1000	
+
+L 103  2896	*	3006	4662	5922	4007	3231	5120	5805	3117	3521	4670	*	4763	4420	4136	4828	4896	*	5723	103
+       0	*	*	*	*	*	0	9757	0	1000	
+
+E 104  6870	*	*	697	5086	6967	4479	5334	6616	3388	5974	5582	*	5257	6653	5330	*	*	6894	4169	104
+       0	*	*	*	*	*	0	9757	0	1000	
+
+K 105  4469	*	4693	3320	6689	6846	5840	5340	2072	4189	4987	5148	*	2987	3260	5043	3604	4664	*	5607	105
+       0	*	*	*	*	*	0	9757	0	1000	
+
+T 106  3271	5872	3864	2680	6464	4658	5979	4945	3003	4433	5570	5638	*	4373	4162	4369	2983	5590	7034	4804	106
+       14	6651	*	0	*	0	*	9757	1060	1000	
+
+V 107  2423	*	*	*	5680	5984	7159	3222	*	2164	3871	5092	*	6883	5308	5929	3744	2395	6157	6118	107
+       12	6871	*	0	*	*	*	9765	1010	0	
+
+N 108  3240	*	*	5339	*	5592	5302	2028	4887	3210	5221	4265	*	*	5044	3552	2622	3820	*	6846	108
+       12	6871	*	0	*	*	*	9765	1010	0	
+
+Q 109  3306	6715	3507	2565	7026	5963	7314	7330	2795	6978	*	4603	7029	3409	3403	3715	4044	4024	*	6884	109
+       0	*	*	*	*	0	*	9744	0	1010	
+
+A 110  3796	6847	4009	3867	5040	4011	5390	4825	3817	2711	4633	4186	*	4492	4739	3591	3664	4381	6919	5775	110
+       23	7035	6981	1000	1000	*	*	9765	1010	0	
+
+L 111  3983	6723	6691	7160	4389	*	*	3084	5848	1860	4428	*	*	7055	7022	7019	6567	3381	5263	1999	111
+       0	*	*	*	*	*	0	9753	0	1150	
+
+L 112  4955	6068	4987	5224	5360	4865	4397	*	3167	3708	*	2785	6814	3805	2296	3707	3995	6865	*	5408	112
+       0	*	*	*	*	945	1057	9753	0	1150	
+
+D 113  3967	6648	2962	1995	7359	4843	5328	6951	3104	5405	7073	4588	7117	3424	3648	4802	4636	5986	*	6378	113
+       71	6970	4635	0	*	0	*	9759	1000	1000	
+
+L 114  2689	6731	6074	*	5726	4914	6031	2752	6802	1429	3992	*	*	5825	5494	7233	6646	3249	*	*	114
+       10	*	7217	*	*	*	0	9657	0	1444	
+
+H 115  2853	5011	6618	*	5056	5760	3486	2371	4108	3189	5293	5596	*	4839	4060	4614	5024	4289	*	4110	115
+       0	*	*	*	*	*	0	9650	0	1570	
+
+K 116  2592	*	3114	2418	*	7227	5265	4874	2891	7154	*	5037	5320	3642	4355	3603	4621	6969	*	7032	116
+       75	6936	4554	0	*	290	2459	9650	1016	1570	
+
+L 117  3339	6571	5114	3758	5506	*	4395	3072	4489	2390	3885	7109	*	3832	6983	6899	4072	3131	*	5103	117
+       74	5194	5455	2776	228	617	1522	9709	1310	1605	
+
+A 118  945	2954	5273	6660	5926	5653	6861	4314	7135	4889	7011	*	*	*	*	4043	4280	4280	*	6901	118
+       23	6921	7008	2154	367	2782	227	9710	1147	1611	
+
+T 119  3472	*	2940	2598	5368	3375	6860	5743	5096	3469	*	4325	*	3947	3393	4499	4802	4375	*	6821	119
+       110	*	3773	*	*	2587	263	9702	0	1642	
+
+D 120  3427	6584	2607	2024	*	6932	6626	4822	3438	6764	*	4115	6398	4115	4451	3577	4176	6646	6735	*	120
+       151	4542	4139	2130	374	871	1142	9580	1616	2606	
+
+K 121  2653	6751	4115	2376	5687	4127	6242	3859	5326	3037	6441	3764	7002	5150	5872	4233	5966	4154	*	6348	121
+       72	5137	5631	1683	538	560	1637	9604	1403	2467	
+
+V 122  5133	6767	3253	3707	*	1869	4857	5708	2974	5841	6810	3159	6523	6005	4128	4230	6821	4933	*	6725	122
+       12	6963	*	0	*	700	1379	9631	1010	1660	
+
+D 123  *	*	318	4959	6909	5666	*	*	*	5136	*	4546	6592	*	5279	6025	*	6039	*	*	123
+       24	6930	6891	4585	61	*	0	9699	1016	1174	
+
+P 124  3326	5806	5030	4122	3121	5816	4760	4497	5251	4688	5827	4642	2569	7027	7225	4710	4765	4056	*	2839	124
+       12	6932	*	3585	126	*	0	9719	1016	1338	
+
+H 125  2770	6844	3358	3164	6208	3237	4966	5340	6246	3932	6593	6662	4437	4307	4316	4746	3832	3373	*	6712	125
+       0	*	*	*	*	0	*	9719	0	1338	
+
+L 126  4075	6617	*	*	5842	5782	*	3863	6178	2768	5733	5989	*	*	*	3118	1234	3461	*	*	126
+       0	*	*	*	*	*	*	9723	0	0	
+
+C 127  2475	5253	*	3838	4253	5004	4667	5136	6055	3570	5893	5099	*	4672	2925	3306	5215	4293	*	3693	127
+       0	*	*	*	*	*	*	9723	0	0	
+
+D 128  4376	7155	2147	3116	*	7019	3778	5532	4346	5408	6820	2914	4609	3952	5074	3738	4670	5005	*	7235	128
+       0	*	*	*	*	*	*	9723	0	0	
+
+F 129  5649	*	6271	7068	1703	*	6744	3129	6900	2216	2854	*	*	5033	5763	*	5844	5256	6851	3927	129
+       9	*	7411	*	*	*	*	9723	0	0	
+
+L 130  4125	6782	*	*	2863	7166	*	2659	*	1135	4050	*	*	*	*	6740	5280	4188	*	5305	130
+       0	*	*	0	*	*	0	9732	1000	1000	
+
+E 131  5725	*	2973	1913	*	4801	5422	4779	3702	5880	7297	3447	*	2871	5060	5440	3900	4857	*	6709	131
+       56	*	4715	*	*	0	*	9732	0	1000	
+
+S 132  4299	*	2446	2287	6060	3527	6013	*	3797	*	*	4983	5476	5098	3473	4328	4248	*	3484	7243	132
+       2114	4036	498	3192	167	319	2335	9716	1711	1558	
+
+E 133  *	*	2313	4430	*	4743	4055	2930	2730	*	*	4113	*	3199	4904	3950	*	*	3608	5253	133
+       0	*	*	*	*	18	6310	7598	0	7395	
+
+Y 134  5362	*	*	*	1675	*	5142	2391	5801	2734	4797	6666	*	6989	5971	6465	5814	6738	4029	3241	134
+       0	*	*	*	*	0	*	9650	0	1000	
+
+L 135  3203	6617	*	4710	6853	5330	6787	1842	5832	2094	3449	*	*	*	*	6247	6924	2909	*	5409	135
+       0	*	*	*	*	*	*	9674	0	0	
+
+E 136  2937	*	2982	2633	6671	3979	5662	5711	3459	4164	6787	6141	6640	3686	3468	4602	4185	5942	*	6788	136
+       0	*	*	*	*	*	*	9674	0	0	
+
+E 137  4569	*	2617	1365	5828	5965	5758	6764	3261	5896	*	4601	5568	4946	5937	5762	4270	6091	*	5145	137
+       0	*	*	*	*	*	*	9658	0	0	
+
+Q 138  6805	6713	6560	1990	5197	6869	4268	5192	5083	3464	5916	5908	*	1553	6685	6811	*	4457	*	4449	138
+       0	*	*	*	*	*	*	9658	0	0	
+
+V 139  4375	5745	4076	2908	*	6727	4852	2995	4962	2919	4163	*	*	3407	4817	3784	4325	3656	*	5684	139
+       50	*	4884	*	*	*	*	9645	0	0	
+
+K 140  4394	*	4256	1866	*	4428	5528	6727	2150	6797	5227	4930	*	3507	3666	5056	5705	5949	*	5488	140
+       0	*	*	*	*	0	*	9503	0	1304	
+
+D 141  4546	*	3398	2788	6527	5868	2102	5709	5886	3614	5155	4128	*	3785	5199	4155	4754	5563	5038	6765	141
+       25	5859	*	1585	585	*	*	9552	1146	0	
+
+I 142  3076	*	*	2493	5234	5166	*	2320	5872	2518	4390	6405	*	5674	4923	6765	4805	3466	*	6660	142
+       0	*	*	*	*	*	*	9552	0	0	
+
+K 143  3092	6899	3771	3559	*	*	6586	*	2575	6724	*	4957	*	4802	3018	4934	4907	5864	2041	6526	143
+       17	6451	*	1585	585	*	*	9524	1000	0	
+
+R 144  5486	*	4228	2824	3147	6886	6828	5728	3118	3553	2511	4529	*	4943	4424	5020	4394	*	4380	6715	144
+       0	*	*	*	*	*	*	9524	0	0	
+
+I 145  4180	5726	*	*	2914	*	6583	2804	*	1264	3545	*	*	*	*	*	5839	3636	*	4654	145
+       0	*	*	*	*	*	*	9524	0	0	
+
+G 146  2848	*	4326	3124	*	2798	6475	6600	3096	6505	*	4983	*	4240	2913	3335	4004	6366	*	6326	146
+       0	*	*	*	*	*	*	9524	0	0	
+
+D 147  2960	*	2460	3211	*	3251	*	6015	3760	4437	6465	3958	*	4713	4119	3412	3717	*	*	*	147
+       0	*	*	*	*	*	*	9497	0	0	
+
+F 148  4595	6293	6573	4203	5382	*	2697	2667	5752	2067	4948	5867	*	5311	*	4109	5571	6524	4755	3530	148
+       12	6873	*	2000	415	*	*	9468	1000	0	
+
+I 149  5083	*	*	5996	6364	*	6540	2402	6249	1041	5545	5555	*	5520	6695	6492	6550	3527	6513	4326	149
+       30	5596	*	0	*	*	*	9442	1111	0	
+
+T 150  3012	*	3328	3216	*	3997	5490	*	3262	6685	5742	3188	6469	6852	4580	3347	3125	4531	*	5403	150
+       0	*	*	*	*	*	*	9406	0	0	
+
+N 151  6106	*	4074	3159	5846	5806	*	5212	2414	4049	5725	2846	*	5754	3833	4427	3054	4455	5101	6004	151
+       18	6371	*	1585	585	*	*	8568	1008	0	
+
+L 152  3545	6110	*	*	4386	*	*	2972	*	944	6178	*	*	*	*	6074	6336	3332	6117	4318	152
+       0	*	*	*	*	*	*	8562	0	0	
+
+K 153  4447	*	4617	2284	6143	5138	4181	6279	2452	*	6229	4252	*	4402	2688	5458	4281	3788	*	*	153
+       27	5747	*	1000	1000	*	*	8413	1000	0	
+
+R 154  5013	5437	5626	4061	5118	5253	*	6225	2877	3487	3684	5999	4440	3374	2132	4643	5093	5507	*	5916	154
+       0	*	*	*	*	*	*	8298	0	0	
+
+L 155  2824	4639	*	*	3956	*	*	2175	4478	3381	3056	*	*	5371	5717	3766	4806	3354	*	5537	155
+       26	*	5818	*	*	*	*	7796	0	0	
+
+G 156  4527	5548	4062	2617	*	1805	5328	5458	3929	5404	4558	4657	*	5942	4026	3620	5178	5598	*	*	156
+       110	4445	5167	538	1683	0	*	7793	1179	1031	
+
+L 157  3593	5242	2969	4739	*	3680	*	*	2855	5917	*	2978	*	3236	3335	3137	5726	5159	*	*	157
+       623	5168	1631	0	*	*	0	7545	1036	1060	
+
+P 158  4509	*	2822	2403	4679	3898	4294	4893	*	*	*	3944	3907	4242	4932	3185	3821	4758	*	*	158
+       1458	2586	1090	1551	602	3313	153	6462	1541	2844	
+
+E 159  *	*	3980	2923	*	*	3970	*	*	3651	*	2892	*	2834	*	2871	2001	*	*	*	159
+       312	3134	3632	1000	1000	1209	818	5265	1167	4199	
+
+N 160  3557	*	3106	4453	*	3699	4296	*	3852	*	*	5076	2241	3528	4648	2408	*	*	*	*	160
+       64	4527	*	1585	585	370	2144	6419	1073	3054	
+
+G 161  4327	*	3715	*	5311	1113	*	*	5411	4810	*	5314	2863	5027	*	3034	6378	*	*	*	161
+       39	*	5244	*	*	*	0	6913	0	1407	
+
+M 162  3783	*	*	5299	*	4375	4514	4032	5236	1181	3132	4742	*	5420	*	4251	5169	5260	*	*	162
+       46	*	5007	*	*	386	2092	6871	0	1540	
+
+G 163  1914	4199	*	*	*	1018	*	*	*	*	*	3984	*	5483	*	3727	*	*	*	5304	163
+       0	*	*	*	*	0	*	7002	0	1225	
+
+E 164  5523	*	4153	2550	3719	*	*	3290	5316	1460	5060	*	4886	*	5018	5215	*	4959	*	5027	164
+       0	*	*	*	*	*	*	7092	0	0	
+
+Y 165  4208	4909	*	*	2195	5352	3765	*	5027	3044	*	*	*	*	*	*	*	*	4886	1285	165
+       0	*	*	*	*	*	*	7092	0	0	
+
+L 166  *	*	*	5027	5082	*	5152	2439	5416	1212	3546	*	*	4182	5596	*	4959	4886	*	4479	166
+       0	*	*	*	*	*	*	7092	0	0	
+
+F 167  *	*	*	*	1100	*	*	3227	*	2131	3740	*	*	*	*	*	5060	5215	*	3906	167
+       0	*	*	*	*	*	*	7092	0	0	
+
+D 168  *	*	85	*	*	*	*	*	4909	*	*	5377	*	*	*	*	*	*	*	*	168
+       0	*	*	*	*	*	*	7092	0	0	
+
+K 169  4357	*	5416	4104	*	*	4282	*	1769	5686	*	4325	*	3173	1919	3641	*	*	*	*	169
+       0	*	*	*	*	*	*	7092	0	0	
+
+H 170  *	*	4042	2076	*	*	3186	4931	3214	3962	*	4072	*	5131	*	2946	3578	*	4863	4272	170
+       0	*	*	*	*	*	*	7055	0	0	
+
+S 171  *	*	*	*	5253	*	*	2914	*	834	3535	*	*	4858	*	5471	3746	4741	*	5327	171
+       0	*	*	1000	1000	*	*	6779	1010	0	
+
+V 172  3415	*	*	3345	5566	2394	*	4520	3386	2149	4025	*	*	3993	4000	*	*	4473	*	*	172
+       0	*	*	*	*	*	*	5768	0	0	
+
+K 173  *	*	2714	2823	*	*	2875	*	1244	*	*	2758	*	*	*	*	*	*	*	*	173
+       0	*	*	*	*	*	*	3798	0	0	
+
+E 174  *	*	*	2497	*	1288	*	*	*	*	*	*	*	*	*	1275	*	*	*	*	174
+       0	*	*	*	*	*	*	3150	0	0	
+
+S 175  *	*	*	1564	*	*	*	*	*	*	*	*	*	*	*	596	*	*	*	*	175
+       0	*	*	*	*	*	*	2221	0	0	
+
+S 176  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	176
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  b49b9cb98eb527401c12984cc1a2e18d
+FAM   
+FILE  b49b9cb98eb527401c12984cc1a2e18d
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:04:07 2013
+LENG  181 match states, 181 columns in multiple alignment
+FILT  157 out of 1390 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  10.3
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCEEEEECCHHHHHHHHHHHHHHHHHHHHCCCCCHHHHHHHHCCCEEEEEECCEEEEEEEEEECCCCCCCCCCCEEEEEEEEECHHHCCCCHHHHHH
+HHHHHHHCCCEEEEEECCCHHHHHHHHHCCCEEEEEEEEEEECCCEECCCCEEEEEEECCCCCCCCCCCCCCCCCCCCCCC
+>ss_conf PSIPRED confidence values
+9787379998998898788899999999987367889999998604887999999999999999963555566788779999999988883798999999
+999998647869999459989999999889999515702560088043233199999857776789887536686877779
+>Consensus
+xxxxxxxirxxxxxdxxxxxxxxixxlxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxivGxxxxxxxxxxxxxxxxxxxxixxxxVxxxxrgxGigxxLl
+xxxxxxxxxxxxlxxxxxnxxaxxxyxkxGfxxxxxxxxxxxxxxxxxxxxxxxmxxxlxxxxxxxxxxxxxxxxxxxxxx
+>b49b9cb98eb527401c12984cc1a2e18d
+MHTQVHTARLVHTADLDSETRQDIRQMVTGAFAGDFTETDWEHTLGGMHALIWHHGAIIAHAAVIQRRLIYRGNALRCGYVEGVAVRADWRGQRLVSALL
+DAVEQVMRGAYQLGALSSSARARRLYASRGWLPWHGPTSVLAPTGPVRTPDDDGTVFVLPIDISLDTSAELMCDWRAGDVW
+>gi|301059854|ref|ZP_07200746.1| acetyltransferase, GNAT family [delta proteobacterium NaphS2]gi|300446066|gb|EFK09939.1| acetyltransferase, GNAT family [delta proteobacterium NaphS2]
+-----------------------M-EIWEKKgDYLDpkrsneierAYIAKLEIEMKNGnCiaWVIEDKESVVASGAVtFISLVpNPSDLSSKVAYLHSMY
+TEKSYRNKKCAQQIIQKAIGLCAsQGVKRIMLNASDAGQPVYQKIGFRSAPDTM-------------------------------------------
+>gi|188501574|gb|ACD54701.1| GCN5-related N-acetyltransferase-like protein [Adineta vaga]
+-----FVLRNATDSDNVS-----LAKLNqqtffetyVNDYSTRytksdiknyfnssVSPESFAKTISDPkqAtwiIEDRTNGKFAAFAnagpckMTLPEI
+EK----GK-DGEIYRLYVLRHYQDDKLGETLMNVSLSwLEKqyPgrPIWLGVWKENLKAQEFHKQYNFKKVGERFY--QIGEYK--RPSFIMKKESS---
+------------------
+>gi|218677147|ref|YP_002395966.1| putative acetyltransferase [Vibrio splendidus LGP32]gi|218325415|emb|CAV27533.1| putative acetyltransferase [Vibrio splendidus LGP32]
+---mtieeENIQFQLVSNLEFEELFACVKQGLFihvDSVFgwDDDFQRQRLLNEYNPSwFHWVYLGKQRVGLVCF--------KPYDNAYHVHLLIISHQ
+YQDQSIGKKVMSriHEKAHQEqrnQVTLSSFRSN-TRAISFYQSLSYRVVD----------------------------------------------
+>gi|171915043|ref|ZP_02930513.1| putative acetyltransferase [Verrucomicrobium spinosum DSM 4136]
+LTSARLLLRPLHPGDAEA-----LCAYRslPEVAryqswesfGPDDAARLIEAQRTAQPdvpgtwfqlaFVETATGRVIGDCGLHCLQE-----DGRQME
+MG-ITLSPQYQGRGYATEAVECVLHYLFGtlhkhRVLASTDALNHRAAALFRRLGFRQEAHLVESLWFKGQW--GSEYLFALLKREWEASHSQKNLD---
+------
+>gi|120436347|ref|YP_862033.1| hypothetical protein GFO_2001 [Gramella forsetii KT0803]gi|117578497|emb|CAL66966.1| hypothetical protein GFO_2001 [Gramella forsetii KT0803]
+-----MEIKEADLNDIPE-----IVEVLKASLGEEqleLSEKVWRYKhIDNPFgssviLIAKEDNKIVGVRAFMRWQWQHGDKKYHALRAVDTATHPNHQ
+GKGIFKKLTLRAVDFSRsNDDNFIFNTPNEQSRPGYLKMGWEQVGNIQVGLRPSLSFLKFKKKQKFYKINKNISNSEIKELCTKW------
+>gi|256825653|ref|YP_003149613.1| acetyltransferase (GNAT) family protein [Kytococcus sedentarius DSM 20547]gi|256689046|gb|ACV06848.1| acetyltransferase (GNAT) family protein [Kytococcus sedentarius DSM 20547]
+------HLRKPVaae---TPA-----MTRLLaahQERVLGKasAAWADVDDRVLGR-gaefrfhRIAQDAdgq--ARGWVNVNDRAV---HR----vmid
+vyldpal-------Vagevd-----gadAAAVWDALFAWGRAAAIRmawrrgvsetVLDSSPYEADEFTRERLAAAGFHK--------------------
+----------------------------
+>gi|268610629|ref|ZP_06144356.1| hypothetical protein RflaF_14177 [Ruminococcus flavefaciens FD-1]
+-----FNCRILTRDEIASVYNAFMKQDFPSD--ELKPLSMITRSLDKGEyfcYGIFSGDKLCGYAYFVSI----IMDEKQYCLLDYFAILSDLRGQGTGS
+EFLHLLREELKnaEMVICESEDPVGTSgdeldirqrrIAFYLRNHFIDTGVKAEI---------FGVNYVLLELDSGRKHSEA-------------
+>gi|83945228|ref|ZP_00957577.1| hypothetical protein OA2633_00635 [Oceanicaulis alexandrii HTCC2633]gi|83851398|gb|EAP89254.1| hypothetical protein OA2633_00635 [Oceanicaulis alexandrii HTCC2633]
+-----------NLEDMQRIAVVRALVYMAEQDCP-YDEEFDGNDLAgATHFLGEAGGEPLGCLRIRW------FADF--AKIERVCVRKGHRSGRVARQM
+MTEAMEIIRrKGYRKFVGHVQEHLIPYWKRYGFIHREHRGVFVF-SDRA--YAE--MEGRPAPHPQalHIDTDPLILDRPEGD--
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	2075	*	2618	1417	4203	*	*	*	4185	*	3105	*	*	1
+       0	*	*	*	*	*	*	7082	0	0	
+
+H 2    *	*	3660	2770	4557	*	4251	4260	4404	4318	*	4523	*	*	4628	2172	2527	4310	*	*	2
+       286	2881	4501	1204	821	*	*	7600	1303	0	
+
+T 3    *	*	4873	*	*	3635	4693	*	4699	*	*	2796	4852	4816	4931	3370	1361	3732	*	*	3
+       49	*	4910	2322	322	0	*	8170	1000	1014	
+
+Q 4    4659	*	4412	4430	*	3893	4339	*	3848	4433	1917	5450	3259	2833	5771	5583	5486	*	*	4618	4
+       64	*	4521	0	*	*	0	9328	1000	1000	
+
+V 5    5619	*	3055	3521	5218	4612	3611	*	4387	3483	*	3854	4552	*	2764	3971	4046	3634	*	5529	5
+       98	3932	*	888	1122	0	*	9414	1603	1251	
+
+H 6    5410	6766	*	*	3304	*	6954	2124	*	2692	2201	5348	5929	*	6891	5867	5123	3428	6515	4128	6
+       26	6858	6710	590	1575	*	*	10906	1107	0	
+
+T 7    4969	5451	6872	3105	*	5414	4777	4028	3693	3930	4829	4217	*	3550	3501	3513	3105	3941	7042	5864	7
+       30	5617	*	2058	396	0	*	11024	1298	1000	
+
+A 8    7312	5355	*	*	3047	*	*	1616	*	1870	6831	6015	6244	7334	*	*	5075	2892	7080	4915	8
+       9	7334	*	1585	585	*	*	11080	1000	0	
+
+R 9    6830	*	6120	3367	7126	*	5553	4269	3375	5466	6072	5527	*	4696	1074	4546	5464	4119	*	7089	9
+       9	7370	*	1000	1000	*	*	11102	1000	0	
+
+L 10   4280	6147	5057	3878	4469	6162	4675	4090	3377	3432	5930	4393	2688	4459	3946	4674	3695	4722	*	7233	10
+       32	7145	6080	1000	1000	*	*	11109	1000	0	
+
+V 11   2166	*	*	6356	3587	5957	6614	3456	5685	2251	3500	7043	4529	*	7082	5534	5126	3594	6980	4406	11
+       11	7023	*	609	1538	0	*	11102	1118	1145	
+
+H 12   3981	4995	3820	3542	*	4633	5383	6039	3688	5274	7422	4169	6027	3772	3218	3642	2407	4918	*	7240	12
+       10	7184	*	3766	110	*	*	11143	1149	0	
+
+T 13   3743	*	3940	3133	5497	5415	5104	4800	4123	3368	6124	4711	2370	4954	4124	5001	4044	4975	7163	6055	13
+       10	7172	*	1000	1000	*	0	11137	1000	1000	
+
+A 14   3066	*	2731	2411	*	4163	5640	*	3554	6273	*	3974	6077	4872	4430	3049	4693	6069	6192	5573	14
+       30	7181	6213	0	*	*	0	11137	1000	1000	
+
+D 15   5966	*	952	2433	5492	6915	4695	*	4805	*	6980	4671	5799	5408	6170	5219	6990	*	*	4652	15
+       38	5259	*	958	1043	534	1694	11094	1349	1261	
+
+L 16   3042	5651	4532	5241	3312	6441	5863	2607	4738	2364	5230	6108	7431	7131	5192	5551	5733	4010	5498	4105	16
+       21	6085	*	1442	662	0	*	11144	1277	1000	
+
+D 17   3776	*	2520	3410	*	5377	6278	5897	3443	3779	7249	5239	2681	4552	4979	3402	4901	4859	7033	7259	17
+       11	*	7056	*	*	*	*	11153	0	0	
+
+S 18   2529	*	4443	2867	*	4649	5241	5553	3928	3752	7015	6385	4576	3141	4339	3647	4631	4750	*	4859	18
+       1292	*	757	*	*	0	*	11138	0	1000	
+
+E 19   3334	*	*	3863	3590	4831	4917	3071	6051	2751	6060	5868	5722	*	5843	6012	3716	3000	*	3145	19
+       25	*	5854	*	*	*	0	10103	0	8609	
+
+T 20   3297	5803	4721	4742	4774	5255	4771	3953	*	2640	5960	*	*	3234	4232	3892	4315	4922	4304	3266	20
+       50	*	4869	*	*	6983	11	10067	0	8640	
+
+R 21   2702	*	4328	2839	6039	4937	4385	*	3312	3410	*	4742	*	3890	3020	5822	4950	4881	4842	5690	21
+       24	*	5914	*	*	5878	25	10018	0	8677	
+
+Q 22   5798	4294	4790	4232	4988	5836	4804	2789	*	2335	5948	4294	4317	4920	*	*	4157	3948	3772	3846	22
+       28	*	5722	*	*	*	0	10034	0	8651	
+
+D 23   2794	*	3296	4225	4335	5901	4810	5890	6242	3974	5561	6055	*	3793	2357	4735	4818	4156	*	3792	23
+       85	4134	*	1624	566	33	5483	10002	1316	8686	
+
+I 24   4173	4909	*	7031	4408	*	*	1864	5516	2184	4155	6217	7163	5733	7117	7379	5514	2735	5802	4590	24
+       194	5670	3237	2100	383	*	0	11136	1341	1306	
+
+R 25   3249	5092	4183	4047	4357	7191	5567	6031	3829	2704	5201	4764	*	4217	3976	4170	4408	3578	5450	4522	25
+       34	7082	5982	1000	1000	420	1985	11063	1000	3388	
+
+Q 26   2864	*	2991	2509	6932	4841	5124	6058	3794	5241	*	5290	5194	3610	3347	3583	5334	4854	*	*	26
+       14	6743	*	0	*	788	1249	11094	1019	1814	
+
+M 27   4228	7084	5572	*	3492	7362	5268	2950	7377	1461	4220	7049	5994	7173	*	7399	4824	3458	4639	4560	27
+       0	*	*	*	*	*	0	11124	0	1265	
+
+V 28   4511	5176	6121	4457	3218	5632	4415	4537	5176	2432	4194	5601	7095	4895	4247	5658	7291	4336	3550	3209	28
+       436	2012	6270	1496	631	1802	488	11124	5466	1265	
+
+T 29   3200	*	4913	3349	*	6442	4923	4303	4147	4751	5569	3303	3524	3740	3262	4178	4264	5157	6250	4870	29
+       45	5738	6415	1589	583	965	1036	11108	1232	1410	
+
+G 30   3281	*	2559	2547	*	5197	7316	7420	3596	5029	7226	4290	7144	3591	3796	3556	4290	6270	7215	5169	30
+       21	6118	*	2098	384	367	2154	11117	1159	1387	
+
+A 31   2633	4213	6115	4680	5217	4206	6363	4053	5617	3755	7256	4657	5689	6237	5417	3261	3635	3076	4946	4457	31
+       186	4140	3966	1281	765	*	0	11168	1987	1000	
+
+F 32   4406	6288	5742	5167	1382	5674	5618	6122	7172	4014	4850	5482	7254	*	5604	5161	4474	3982	4732	2958	32
+       400	2093	7051	2063	395	3714	114	11096	5070	2280	
+
+A 33   2824	5501	3392	3716	5568	3540	5259	6084	4626	4163	6179	4291	3864	4574	4447	3475	4508	5295	5224	6202	33
+       104	4320	5688	2659	249	351	2213	11080	1787	2559	
+
+G 34   4367	6145	3268	4144	7212	3009	5701	5364	3782	4418	6205	4546	2410	4882	4601	4066	4282	4257	*	*	34
+       259	2789	5671	2535	273	714	1356	11125	3609	1612	
+
+D 35   4275	6167	2160	2653	*	3829	5467	5742	4685	4210	6227	4066	3780	5613	7506	3405	4622	6172	6078	6413	35
+       667	1504	5841	2471	287	638	1484	11144	6688	1824	
+
+F 36   4089	6917	5171	3917	3329	6501	4233	3870	5526	3436	6136	5532	4406	5119	4637	4476	4160	4016	4563	2880	36
+       61	4602	*	1876	459	1638	559	11160	1673	1536	
+
+T 37   3647	5308	3248	3914	6212	6428	6971	5663	6133	5315	7377	3973	2654	5216	6061	2489	2867	4927	*	6303	37
+       68	4990	6082	1651	553	522	1721	11163	1685	1319	
+
+E 38   4651	*	3043	2740	6183	5650	6312	4121	3503	3323	6147	5653	4103	4218	3412	4967	4290	4870	7190	4910	38
+       68	4450	*	1280	766	553	1651	11154	1887	1298	
+
+T 39   3065	6162	3161	2191	6523	4445	4465	7356	3854	7110	6948	4134	4358	4421	5315	3617	5026	5168	*	5298	39
+       41	5608	7120	2060	395	0	*	11186	1433	1000	
+
+D 40   4200	*	3403	2572	3886	4978	5252	7203	3854	4996	6246	5027	6090	3759	4044	4423	4463	3888	4333	4384	40
+       148	3361	*	3335	151	0	*	11182	2729	1000	
+
+W 41   4956	*	7355	*	2610	*	5255	2946	6257	2161	4998	6031	6118	7252	6027	7318	7156	3719	3269	2950	41
+       19	6226	*	2170	362	*	*	11192	1132	0	
+
+E 42   3477	*	3533	2956	6082	5360	5755	4270	3288	3575	5470	4091	5302	4072	3444	4664	4089	5854	*	5273	42
+       12	*	6976	*	*	*	*	11192	0	0	
+
+H 43   3444	7153	3967	3406	6236	4457	4688	5776	3654	7453	5614	4195	7116	3698	2779	3280	5322	6453	7109	3471	43
+       8	*	7480	*	*	*	0	11181	0	1017	
+
+T 44   4073	4627	4680	3949	4026	5383	4737	3548	4923	3005	4401	4929	6054	3984	3001	4296	6244	4962	6433	4670	44
+       138	3454	*	416	1997	0	*	11185	2751	1278	
+
+L 45   4995	5689	5810	4728	3713	5242	*	2607	5508	1844	4029	6312	5099	5613	5285	5322	4767	4009	7153	4428	45
+       67	4653	7470	1810	484	*	*	11192	1633	0	
+
+G 46   3639	7122	3368	4307	7073	4213	5323	6150	2946	3889	7543	3054	4290	4168	3296	3594	5079	7145	*	6193	46
+       360	2315	5667	2165	364	0	*	11193	4699	1000	
+
+G 47   4260	6950	3172	3912	7043	2577	4538	5304	4638	5007	7370	3017	4390	3897	3502	3878	4626	7300	*	*	47
+       68	4914	6260	1094	912	1069	934	11166	1774	1375	
+
+M 48   3949	5634	3833	3716	3810	4084	4645	5020	5235	4404	5182	4515	4143	4324	4556	3637	4034	4624	5997	3717	48
+       664	1465	7184	1032	968	0	*	11162	6539	1408	
+
+H 49   3649	5012	4669	4951	3696	4235	3262	3884	5654	4163	4411	3962	6530	4259	4938	3949	4556	4351	6520	3928	49
+       730	1353	7497	2281	332	0	*	11174	7208	1000	
+
+A 50   4302	*	*	*	2186	*	5606	3717	6044	2160	5898	*	*	7077	4717	5717	5491	3472	4221	2767	50
+       75	4312	*	821	1205	0	*	11179	1947	1091	
+
+L 51   3549	6230	7152	*	5382	3225	*	2553	5297	2430	4631	*	*	*	*	6175	4772	1978	5714	5777	51
+       150	3448	7196	790	1245	*	*	11192	2675	0	
+
+I 52   1450	4975	6892	5689	4905	4295	7395	2921	7106	2997	7322	*	*	*	7248	7546	6923	2583	6255	6264	52
+       43	5387	7443	2137	372	0	*	11185	1532	1000	
+
+W 53   5221	4716	4461	2804	3192	*	7169	4529	4309	3185	5696	7103	*	5789	3985	5754	4301	3043	4818	3433	53
+       102	3999	7370	2005	413	926	1078	11185	2402	1091	
+
+H 54   3651	6567	2337	3064	5197	5601	4780	4623	5382	3490	7482	4362	6976	4901	3719	3749	5337	3980	*	5608	54
+       212	2939	7373	755	1295	0	*	11264	3525	1077	
+
+H 55   3731	*	2017	3217	*	2772	4635	6923	4303	6003	*	3191	5642	4616	5484	4697	3945	*	7243	7348	55
+       70	4391	*	1438	664	0	*	11250	2068	1395	
+
+G 56   *	*	2365	2887	*	1678	5791	6999	4435	*	6249	3447	6364	4076	4780	4026	6368	*	*	*	56
+       48	4944	*	720	1348	*	0	11251	1547	1000	
+
+A 57   4982	6355	3789	2112	7454	6398	5731	5176	2471	5060	7405	4647	*	3119	3404	4854	4152	4971	*	*	57
+       49	4890	*	2311	325	0	*	11251	1516	1000	
+
+I 58   4172	6221	*	*	4445	6018	*	2098	6321	2343	6226	5474	2912	*	5639	6138	6175	2366	*	5987	58
+       13	6828	*	1000	1000	*	*	11270	1019	0	
+
+I 59   2586	4928	*	7219	7299	*	*	1922	6271	4082	6375	*	*	7044	7215	7013	5292	1374	*	7276	59
+       16	7479	7541	0	*	*	*	11270	1000	0	
+
+A 60   2588	6315	*	7184	*	494	6983	*	*	7355	*	7009	*	*	7277	4338	5675	7214	*	*	60
+       55	7184	5033	0	*	*	0	11265	1004	1000	
+
+H 61   4048	3582	7438	6952	2348	6376	4495	4032	*	4008	4981	6058	*	5866	6288	4346	3859	3128	4689	3080	61
+       11	7056	*	0	*	*	0	11253	1000	1976	
+
+A 62   2141	3603	*	*	4949	3370	7070	3951	*	2558	4084	*	*	*	7327	5069	4350	2557	7374	*	62
+       0	*	*	*	*	1460	652	11253	0	1976	
+
+A 63   3030	4402	7491	5254	4878	2982	5307	3825	6371	3491	4951	4676	*	5256	4323	3573	3396	4172	7035	4281	63
+       10	*	7129	*	*	*	0	11249	0	1580	
+
+V 64   3512	4967	6958	*	2935	3816	*	3572	*	1919	5226	6241	*	*	6382	5131	5507	2638	5897	4573	64
+       200	3945	3950	766	1279	245	2677	11237	2294	1710	
+
+I 65   4089	5610	5567	4410	3352	4564	4804	3949	3970	3678	4816	5667	*	7438	4443	3523	3802	3729	4967	3366	65
+       50	5186	7237	0	*	*	0	11164	1435	2318	
+
+Q 66   4905	6192	4257	3799	3664	6142	5288	3349	3756	4139	4290	4809	3712	4950	3824	4397	4372	3960	5247	5112	66
+       296	4027	3007	2739	234	3731	113	11155	2217	2446	
+
+R 67   4223	6865	3353	3183	5765	4841	5382	3895	3811	4682	5936	4640	3481	5012	3071	5018	4361	4801	7146	4138	67
+       242	5926	2858	2256	339	*	0	11007	1118	4504	
+
+R 68   3874	*	3522	3675	6375	4120	5819	6945	4779	3655	5734	3736	4193	3879	3357	3467	4080	5316	5285	4615	68
+       226	3543	4084	1078	926	3667	118	10767	2145	5978	
+
+L 69   5014	6655	4456	3489	3925	4505	6722	4004	4112	2969	5607	6532	3214	5710	4281	3828	5253	3545	5190	4719	69
+       1305	2233	1386	907	1100	5738	27	10708	3733	6160	
+
+I 70   4080	6351	4042	4511	*	5873	5080	4190	3677	6197	5946	3297	4504	4352	4940	2845	3121	4812	*	3358	70
+       115	4417	5063	3902	100	5236	39	10067	1278	8418	
+
+Y 71   6272	4425	4279	3342	4934	3946	4521	4525	5265	3506	5107	*	2805	5177	4481	4670	3664	5142	4201	4432	71
+       108	5205	4477	654	1456	2806	223	10085	1116	8398	
+
+R 72   5402	*	3160	3784	4585	3015	3933	4161	5072	3328	6255	6301	6297	*	2817	6503	4273	5188	6156	3454	72
+       116	4252	5329	783	1255	1057	945	10241	1374	7980	
+
+G 73   4561	6548	3032	4119	5239	2762	4908	4693	4867	4223	6586	4223	3795	4302	3997	3998	5468	5207	5720	4240	73
+       72	5529	5225	3736	113	3684	117	10853	1417	5672	
+
+N 74   3027	*	3583	4061	6359	3905	5724	5755	3492	4119	6725	4330	3509	4620	3319	3217	5389	5377	6888	5691	74
+       89	4784	5418	3446	139	483	1814	10891	1384	5615	
+
+A 75   3731	6877	3390	3997	*	3284	6139	3645	4489	5283	6969	3878	3728	4831	5418	3593	3573	4344	7170	4106	75
+       99	4498	5522	2876	211	654	1456	11150	1714	2817	
+
+L 76   4471	*	3295	4719	3552	3161	4985	4227	3879	3938	7273	4891	4076	5749	3980	3718	5252	4071	6024	4602	76
+       132	5720	3874	1849	469	1544	606	11187	1204	2019	
+
+R 77   4735	*	3589	3683	6192	3797	3625	5279	3630	4724	7149	3167	3837	4733	3287	3537	4406	6028	*	6219	77
+       17	*	6398	*	*	3239	161	11064	0	3229	
+
+C 78   3654	4821	4134	4585	4989	4605	4537	3584	4775	4196	5061	5810	6100	4832	4535	3569	3231	3739	4725	4255	78
+       21	6094	*	2195	356	431	1953	11075	1263	3246	
+
+G 79   2566	3659	5245	7265	5203	2531	6710	4358	7244	3634	4427	5737	5645	4621	5691	5099	5215	3735	4932	3959	79
+       39	5228	*	3841	104	300	2414	11234	1451	1627	
+
+Y 80   4727	6788	5647	2749	3647	4072	4513	6241	5362	4280	4283	6247	6411	6242	4007	4841	4968	3840	4274	2537	80
+       38	6227	6283	2741	234	*	0	11251	1203	1000	
+
+V 81   5726	7031	7220	4952	4578	6076	*	1674	*	1677	4786	7462	6724	7219	*	*	7062	2538	7041	7328	81
+       28	7324	6245	1000	1000	1356	714	11236	1000	1279	
+
+E 82   4258	6444	3527	2815	5265	2578	4311	4633	5600	5267	5627	5498	5552	5786	4128	3648	4659	4643	4413	4998	82
+       167	4804	3761	3131	175	949	1052	11236	1499	1391	
+
+G 83   3505	*	2825	4774	3805	3413	5164	5965	5592	3436	5091	4675	4611	4869	3862	3569	5045	7165	5179	4316	83
+       36	5323	*	3893	101	201	2941	11192	1368	2727	
+
+V 84   4633	6244	*	*	2966	5494	*	2317	*	1979	4125	*	*	*	7357	7566	5265	2486	6726	4072	84
+       10	7225	*	1000	1000	1200	825	11247	1000	1112	
+
+A 85   2086	4084	6232	*	3337	3465	5232	3891	*	4662	4554	7288	*	5715	5051	4114	5544	3446	5815	3603	85
+       0	*	*	*	*	0	*	11251	0	1000	
+
+V 86   6120	6329	7215	*	6313	6217	*	2079	*	4088	6208	6967	*	*	*	7402	2925	1103	*	5623	86
+       31	5542	*	1408	682	*	*	11270	1310	0	
+
+R 87   3493	*	2502	4507	7357	5812	3171	5705	3540	3076	6231	7578	*	6028	3008	3564	5187	4757	*	5329	87
+       0	*	*	*	*	*	0	11251	0	1000	
+
+A 88   3970	7126	5206	3151	7063	4872	5502	6403	3319	6253	*	5718	1427	5474	4104	3924	5271	5012	*	7319	88
+       0	*	*	*	*	*	0	11251	0	1000	
+
+D 89   3247	7475	2589	2556	7393	5692	6343	*	3673	7020	*	4052	5597	4312	3727	2751	4169	6409	*	7272	89
+       49	5662	6212	0	*	*	0	11251	1297	1000	
+
+W 90   3019	5566	7339	5834	2695	7253	3623	7441	4710	5540	6111	5302	7174	5625	5597	4381	6955	4525	4382	1791	90
+       25	*	5883	0	*	2165	364	11169	1000	1417	
+
+R 91   4324	7161	7224	6330	6947	6248	4064	7429	4727	*	*	*	*	2322	952	6155	5237	6146	5176	*	91
+       9	7334	*	1992	418	0	*	11133	1140	1607	
+
+G 92   6331	*	4702	5171	*	1080	4701	7093	4079	5465	*	3923	6331	5156	2735	4245	*	*	7260	7606	92
+       18	7346	7393	1000	1000	*	*	11270	1000	0	
+
+Q 93   5044	6467	6821	5593	7306	4297	4627	*	2130	4207	5035	5375	7141	2203	2454	6213	4463	7117	7193	6131	93
+       0	*	*	*	*	*	0	11260	0	1000	
+
+R 94   5612	*	5294	7085	6195	525	4708	*	5230	6253	*	5180	*	6249	3812	4375	*	*	*	*	94
+       30	6227	7130	3804	107	0	*	11260	1248	1000	
+
+L 95   4566	5848	*	*	4434	6979	5162	2057	*	2059	6135	*	7252	7056	*	*	6210	2415	6265	2881	95
+       9	7252	*	0	*	*	0	11256	1000	1000	
+
+V 96   1771	*	7141	5747	5269	1051	*	6237	*	6223	5106	5472	*	6255	*	4923	6250	5119	7211	*	96
+       22	6822	7252	0	*	0	*	11256	1019	1000	
+
+S 97   3841	*	5276	7057	7322	3899	5720	7086	2784	4420	6189	6234	5096	4070	2908	2388	2658	*	7157	*	97
+       0	*	*	*	*	0	*	11192	0	1000	
+
+A 98   2789	7293	6131	3134	5771	5680	5741	4262	3196	3153	5724	5503	5737	2801	3749	4296	5178	6227	7147	6160	98
+       0	*	*	*	*	*	*	11270	0	0	
+
+L 99   3130	5616	*	*	4354	6735	*	3386	*	858	3519	*	*	*	*	5585	7267	4464	*	*	99
+       0	*	*	*	*	*	*	11270	0	0	
+
+L 100  5320	6893	*	*	3355	6190	6254	2593	5625	1569	2921	*	*	7319	*	6336	5280	3349	6348	4963	100
+       9	*	7393	*	*	*	*	11270	0	0	
+
+D 101  3453	6372	3304	2919	*	5693	4820	7392	3204	5289	6252	3929	7092	3086	3209	3921	3862	*	*	5532	101
+       10	7177	*	598	1559	0	*	11260	1112	1000	
+
+A 102  2141	6302	5704	3055	3813	6398	3863	6295	4136	3525	6295	5805	*	4122	4294	4480	4481	4652	4972	6302	102
+       0	*	*	*	*	*	*	11270	0	0	
+
+V 103  2133	4637	*	7183	4617	4226	7117	3329	*	1996	3931	7478	*	*	5795	5410	7100	2841	6178	*	103
+       9	7396	*	0	*	*	*	11270	1000	0	
+
+E 104  4351	5242	5862	2288	4916	7343	4797	2858	4142	2303	5687	*	6253	4677	5535	4553	7280	3707	*	6447	104
+       0	*	*	*	*	0	*	11207	0	1000	
+
+Q 105  3596	*	2937	2580	*	4310	5406	*	3011	4737	6289	4417	7260	3437	3598	3620	4521	5797	*	*	105
+       9	*	7393	*	*	*	*	11270	0	0	
+
+V 106  3811	*	4237	3595	3996	5555	4124	4022	3955	3306	4585	7252	*	4284	3962	5327	4881	4771	4157	3193	106
+       0	*	*	0	*	0	*	11260	1000	1000	
+
+M 107  1549	3872	*	5583	4839	4269	7479	3562	7644	3117	4265	5727	7134	7183	7163	4281	5652	3677	*	5044	107
+       110	3915	7134	153	3311	*	*	11270	2252	0	
+
+R 108  3895	*	4170	3914	4303	5199	*	5216	2700	3853	6241	5248	5023	3555	2425	4525	4494	4637	6215	*	108
+       2857	214	*	1153	861	0	*	11242	9857	1227	
+
+G 109  4399	6240	4404	3913	*	1607	4678	7260	3445	5188	*	3349	5327	4331	4517	4674	4726	6178	*	5296	109
+       230	2764	*	2458	290	0	*	11265	3805	1000	
+
+A 110  3200	4075	4949	4887	4511	2978	5282	3801	3685	3967	7046	4890	5326	4207	4119	4916	5317	4291	6366	4147	110
+       41	6166	6174	1645	556	*	*	11269	1202	0	
+
+Y 111  4112	5691	4755	5027	4326	4929	4585	2884	4053	3319	6125	6319	4473	5677	5632	4689	4617	3146	5242	3261	111
+       177	3115	*	1326	734	898	1109	11251	3197	1190	
+
+Q 112  4646	7086	3854	3240	4462	4406	4434	4538	3502	4106	5654	5913	6937	4224	3126	3909	4372	4281	5593	4329	112
+       0	*	*	*	*	*	0	11258	0	1007	
+
+L 113  4137	4919	6766	*	3959	7019	*	3271	5733	1419	3811	*	6158	*	4550	4492	4285	3478	6277	7332	113
+       9	*	7345	*	*	0	*	11258	0	1007	
+
+G 114  3933	6375	4638	3678	4378	4027	4783	3863	5313	3941	7111	5420	6137	5172	4358	3361	3356	3872	5033	3568	114
+       456	1922	7160	1391	693	0	*	11266	5586	1000	
+
+A 115  3205	4351	7367	6965	4768	6438	7210	3113	*	3442	6604	7076	4898	5533	6958	4806	3147	1752	7256	4927	115
+       46	5229	7667	1145	868	0	*	11264	1411	1004	
+
+L 116  3231	5657	4099	5468	4314	4208	4785	3480	7031	2407	7621	4658	5663	7209	3660	4553	4221	3675	6218	5158	116
+       10	7183	*	0	*	0	*	11267	1000	1000	
+
+S 117  3360	5659	3795	2783	6086	4101	4623	4471	5559	4870	*	5309	3475	5136	7245	3244	3094	3972	*	6077	117
+       47	7136	5306	1000	1000	*	*	11260	1000	0	
+
+S 118  2960	5692	3127	3882	4856	2952	5094	5671	5279	5347	6100	4543	4160	5667	5334	3175	3330	6273	7448	5629	118
+       81	*	4201	*	*	*	0	11172	0	1417	
+
+S 119  5578	*	3632	5239	6856	6364	4732	6902	6268	5605	6324	1092	*	4779	4261	3186	5227	6058	6176	4800	119
+       38	6364	6201	530	1703	253	2634	11115	1114	2518	
+
+A 120  4100	7376	3863	3027	7219	4483	5340	5250	4295	4149	5628	5307	3310	3591	4645	3548	3016	4804	*	5617	120
+       40	5633	7117	984	1016	2087	387	11232	1382	1428	
+
+R 121  2599	7032	4822	4835	5975	3973	5806	5246	4010	5187	7116	3964	3422	4513	2456	4279	4187	6231	7400	5197	121
+       27	7468	6287	0	*	1018	982	11234	1000	1433	
+
+A 122  1766	*	7339	6297	*	4040	6031	6221	5429	3947	4582	6225	6081	6264	5270	1963	3824	3767	*	*	122
+       169	5120	3616	2731	236	881	1130	11236	1461	1620	
+
+R 123  4841	6238	*	3573	5632	7036	4259	2924	4958	3222	5548	4544	*	2894	2965	5429	5187	3609	5117	5136	123
+       22	6953	7112	2322	322	3273	158	11119	1000	3006	
+
+R 124  3429	*	4533	4025	6131	4006	3620	7121	2735	6840	*	3680	3638	5172	2581	4020	4693	6310	*	6323	124
+       0	*	*	*	*	241	2703	11116	0	2927	
+
+L 125  5281	*	7344	*	1578	6244	6910	3704	*	1988	5121	6319	*	5980	6165	5545	5887	3299	5751	4230	125
+       0	*	*	*	*	0	*	11180	0	1196	
+
+Y 126  4326	7236	*	*	3034	*	4637	5229	*	3232	7005	6201	*	7013	*	*	6274	6112	3812	942	126
+       28	5678	*	0	*	*	*	11260	1338	0	
+
+A 127  4213	*	5286	2025	*	5309	6037	7206	2719	3265	7295	5667	7304	3327	3768	3789	3924	5718	*	6805	127
+       0	*	*	*	*	*	*	11250	0	0	
+
+S 128  3663	*	5722	5534	*	7110	3939	*	1655	*	*	4481	7453	4279	2009	3216	5635	*	7420	7261	128
+       16	7420	7524	2000	415	*	*	11250	1000	0	
+
+R 129  3750	3834	*	7022	3001	7134	5016	4474	5435	1967	4046	3725	7079	5070	4469	5689	6242	5002	5140	4313	129
+       11	*	7056	*	*	*	0	11250	0	1000	
+
+G 130  4842	6029	4219	7121	*	399	5351	*	7427	*	*	4268	*	*	5502	5254	*	*	*	*	130
+       0	*	*	0	*	934	1069	11237	1000	1108	
+
+W 131  5184	7097	*	*	837	7384	*	7131	*	4763	4514	*	*	*	6989	*	*	*	4657	1921	131
+       0	*	*	*	*	*	0	11201	0	1000	
+
+L 132  5411	7086	6375	3081	*	5795	4863	3739	2672	4402	*	6892	*	3461	2855	4121	3605	3168	*	5716	132
+       23	*	6011	*	*	0	*	11202	0	1000	
+
+P 133  4540	5252	5311	2663	6554	6930	5647	4700	3338	4174	5083	7263	3547	3892	3766	3996	4113	3362	*	4793	133
+       0	*	*	*	*	0	*	11070	0	1121	
+
+W 134  4445	6129	4423	3327	4250	4733	6007	3165	4687	4247	4769	6046	*	5085	5401	5016	3413	2423	5036	4712	134
+       32	5513	*	461	1871	*	*	11025	1286	0	
+
+H 135  3473	7059	3661	3340	*	1453	4721	6147	4560	6498	6771	5751	4421	6095	4762	4013	6166	5043	6096	7129	135
+       187	3258	5856	273	2538	*	0	10992	2810	1000	
+
+G 136  *	5975	4815	2873	6587	3922	4435	3879	4235	3391	4919	4767	5070	4334	3430	4124	3796	3296	*	*	136
+       118	5813	4047	1115	893	898	1110	10910	1158	1373	
+
+P 137  4094	*	4713	3400	4688	*	4364	3371	4333	2691	*	6906	3423	4431	3632	4935	4274	3899	6416	5139	137
+       74	*	4313	1585	585	923	1081	10698	1000	2276	
+
+T 138  4600	*	3813	4052	4674	5144	5658	4505	4075	3450	5671	5081	3597	3517	2797	5139	3646	3959	*	6728	138
+       46	6370	5694	3000	193	3055	185	10662	1000	2322	
+
+S 139  3763	6876	4250	3388	5674	3378	3873	6573	4279	5703	*	3871	4010	5439	4770	3774	5366	3526	5061	3317	139
+       116	5544	4164	0	*	1800	488	10644	1275	2583	
+
+V 140  3513	*	6281	5387	3857	3346	4720	3181	5467	3294	4936	4859	6264	6518	5520	4370	4823	2901	6312	3434	140
+       103	6391	4128	1585	585	1507	626	10512	1000	2739	
+
+L 141  3716	4886	5433	4353	3626	5367	4791	4062	4949	2590	6463	*	4418	5386	4107	5567	4189	3504	4878	3640	141
+       34	*	5425	*	*	1865	463	10486	0	2808	
+
+A 142  4542	*	3756	4515	2962	4145	*	6402	3303	3625	4979	5541	4855	4949	2798	5489	4851	4116	6692	3792	142
+       181	5253	3443	1865	463	1311	744	10551	1128	2641	
+
+P 143  4591	*	3463	3856	3968	5951	*	3677	4546	3346	5376	4727	2361	5440	4721	5373	5261	3897	5356	4636	143
+       151	4252	4406	1040	961	561	1633	10329	1458	3236	
+
+T 144  3173	6270	3034	3349	5508	2879	6358	4445	3786	6346	4773	4333	4787	4640	4728	3659	4232	*	6398	6558	144
+       146	4389	4358	0	*	1224	806	10421	1426	2291	
+
+G 145  5191	6135	3300	3544	*	1257	6276	*	6142	4621	*	4027	4326	3736	5298	4823	5293	6336	*	*	145
+       38	5266	*	511	1746	980	1021	10392	1195	2183	
+
+P 146  4109	*	4114	3419	*	4447	4423	6137	4091	4848	6196	4698	3599	3180	2740	4226	4457	4075	6304	5323	146
+       17	*	6444	1000	1000	2516	277	10461	1000	1527	
+
+V 147  5409	*	4382	4425	3140	*	5418	4100	6515	4152	5585	*	3395	3978	4354	4875	5465	3367	3828	2579	147
+       2272	*	335	*	*	*	0	10441	0	1545	
+
+R 148  4068	*	3114	3022	*	2991	2898	*	3983	4038	*	*	3040	*	2351	*	*	*	*	*	148
+       186	3050	*	1307	747	6241	19	6374	1148	7949	
+
+T 149  4159	3118	4149	*	*	4020	4180	3174	4133	4116	*	*	4220	*	2408	*	2410	*	*	*	149
+       88	*	4074	*	*	432	1951	6581	0	7898	
+
+P 150  6144	4982	4106	4161	3487	6271	4150	3470	3556	4169	*	4976	3711	4486	4494	5068	5171	3458	5062	3731	150
+       0	*	*	*	*	2846	216	10073	0	3588	
+
+D 151  3349	*	1319	3806	*	4458	6301	*	5114	4929	6186	3863	4119	5171	4059	4261	5066	*	*	*	151
+       22	6030	*	2000	415	504	1762	10121	1000	3255	
+
+D 152  3742	6424	4019	2531	4788	5356	4262	5406	4372	3244	4904	3735	*	5431	6224	4279	3613	3755	*	4782	152
+       70	5297	5522	1000	1000	*	0	10434	1206	1622	
+
+D 153  3929	*	3948	5222	3595	5522	4285	4042	5265	3964	4636	4227	6157	5444	4678	3972	4677	2397	6188	4056	153
+       0	*	*	*	*	430	1957	10375	0	2102	
+
+G 154  5366	6165	6261	6364	3816	4424	3393	2695	6222	2655	6274	*	6064	4005	4817	4755	5189	3202	4801	3997	154
+       17	6437	*	1585	585	0	*	10445	1000	1185	
+
+T 155  6468	*	*	*	3591	*	*	4865	4829	2617	1290	*	6115	6390	4749	*	6218	4380	5420	3111	155
+       0	*	*	*	*	*	*	10414	0	0	
+
+V 156  4763	*	*	4038	3844	6130	5302	3207	4601	3008	6141	*	*	3411	3600	3648	4591	2824	6167	4263	156
+       0	*	*	*	*	*	*	10236	0	0	
+
+F 157  5974	5372	*	*	4525	5331	*	4129	1771	3405	5343	6167	*	6022	2994	5255	6191	4693	4288	2858	157
+       23	6008	*	2807	222	*	*	10206	1000	0	
+
+V 158  4122	*	3719	3175	4652	*	6041	3888	3851	4655	5948	5295	3546	5096	2979	3407	4074	3782	6077	*	158
+       21	*	6135	*	*	*	*	10059	0	0	
+
+L 159  *	*	*	5980	4056	6129	*	2818	4466	1112	3694	*	4477	6177	5976	*	4956	4026	*	6117	159
+       58	4662	*	1632	562	*	0	9828	1164	1017	
+
+P 160  4251	5782	3391	5747	5565	3173	*	5705	4215	5668	5582	3355	3134	4646	4301	2419	4625	4643	*	*	160
+       34	5434	*	1000	1000	0	*	9451	1000	1017	
+
+I 161  4483	*	3433	3141	*	3566	5523	5280	3721	2667	*	*	4580	4526	5541	3016	3215	4435	*	*	161
+       0	*	*	*	*	*	*	9014	0	0	
+
+D 162  4253	4995	3159	2288	*	2769	4109	5121	4121	4129	*	4098	5106	5247	*	3579	*	5207	5210	*	162
+       133	3505	*	1763	504	*	*	8589	1498	0	
+
+I 163  5136	*	3410	4140	*	3481	*	3361	3952	3038	5062	*	3493	4007	3921	3501	4162	5025	*	5293	163
+       50	4874	*	2000	415	*	*	8451	1111	0	
+
+S 164  2899	4987	*	3337	3878	4704	*	4793	3861	4928	*	*	3289	4707	2821	3192	4967	3880	*	*	164
+       343	2787	3907	1970	425	*	*	8294	1715	0	
+
+L 165  4936	*	3904	*	4767	*	3632	4735	*	3768	*	4570	3169	3783	3663	2425	*	3869	3151	*	165
+       0	*	*	*	*	821	1205	8128	0	1204	
+
+D 166  2701	*	1656	3779	*	3774	4764	4635	4768	3158	*	*	4737	*	*	3062	*	*	*	*	166
+       56	4719	*	1585	585	*	0	8116	1013	1003	
+
+T 167  *	*	2407	2278	*	4625	*	3752	*	3779	*	*	3115	*	4626	4714	3127	3811	4719	*	167
+       67	4454	*	3000	193	*	0	8039	1015	1003	
+
+S 168  3449	4458	2492	4584	*	*	*	3357	2441	4617	*	*	*	4428	4589	2870	3378	*	*	*	168
+       76	4275	*	1000	1000	*	0	7579	1044	1003	
+
+A 169  2737	4197	2736	4469	*	2301	4411	*	3235	4326	*	4294	*	*	*	*	3354	4453	*	*	169
+       0	*	*	*	*	0	*	7198	0	1003	
+
+E 170  3395	*	*	2359	*	4344	*	4548	2393	4527	*	3385	2388	*	*	3358	*	*	*	*	170
+       80	4214	*	0	*	*	*	7301	1048	0	
+
+L 171  *	*	*	*	*	4170	*	4365	*	1072	4151	*	*	4169	*	*	*	1964	4260	*	171
+       0	*	*	*	*	*	*	7081	0	0	
+
+M 172  *	2534	4150	*	*	*	*	4058	4134	2621	4067	4177	3185	4159	4288	3305	*	*	*	4103	172
+       0	*	*	*	*	*	*	6927	0	0	
+
+C 173  3883	2294	*	*	3840	*	4052	*	3898	2876	*	4019	4037	3872	3903	*	3754	3988	*	*	173
+       0	*	*	*	*	*	*	6392	0	0	
+
+D 174  *	*	1236	3682	*	*	*	*	3453	*	*	*	3552	3597	2647	*	*	*	*	3669	174
+       0	*	*	*	*	*	*	5696	0	0	
+
+W 175  *	*	*	*	3349	*	3446	*	*	*	3361	*	*	*	3224	*	*	*	723	*	175
+       0	*	*	*	*	*	*	5158	0	0	
+
+R 176  *	*	3103	*	*	*	3003	*	*	*	*	*	2928	*	954	3165	*	*	*	*	176
+       0	*	*	*	*	*	*	4479	0	0	
+
+A 177  1748	*	*	2749	*	*	*	*	*	*	*	1879	*	2862	*	2794	*	*	*	*	177
+       0	*	*	*	*	*	*	4211	0	0	
+
+G 178  *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	178
+       525	1713	*	0	*	*	*	2890	1272	0	
+
+D 179  *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	179
+       0	*	*	*	*	*	*	2353	0	0	
+
+V 180  *	*	*	*	*	*	*	*	*	1163	*	*	*	*	*	*	*	854	*	*	180
+       0	*	*	*	*	*	*	1665	0	0	
+
+W 181  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	181
+       0	*	*	0	*	*	*	1665	0	0	
+
+//
+�HHsearch 1.5
+NAME  b5e4c6287793467d8b047e64ec6f935b
+FAM   
+FILE  b5e4c6287793467d8b047e64ec6f935b
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:24:59 2013
+LENG  57 match states, 57 columns in multiple alignment
+FILT  167 out of 1145 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.9 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEEEEECCCCCCCCCCCCCCCCEEEEEEECCCCEEEEEECCCCEEEEEHHHEEECC
+>ss_conf PSIPRED confidence values
+999995354899988325669999999884489959999579978987875689987
+>Consensus
+xxxxaxxxxxxxxxxxlxxxxgdxixvxxxxxxxwxxxxxxxgxxgxxPxxxvxxxx
+>b5e4c6287793467d8b047e64ec6f935b
+CYVRALFDFNGNDEEDLPFKKGDILRIRDKPEEQWWNAEDSEGKRGMIPVPYVEKYG
+>gi|149638364|ref|XP_001515583.1| PREDICTED: similar to BMX non-receptor tyrosine kinase [Ornithorhynchus anatinus]
+--AVEEWDSESKRNSEVQPNISNLYALKHE-SPDEWPVKTKQSNENFllesqpnrifkcqraskiswfVRRKGEEE--
+>gi|302414846|ref|XP_003005255.1| AbpA [Verticillium albo-atrum VaMs.102]gi|261356324|gb|EEY18752.1| AbpA [Verticillium albo-atrum VaMs.102]
+--QELREANIPAAQPPAGAQAGGQRALIHSARANtsptlkWstrtggWAPTRrARAASSLATTSSSSRT-
+>gi|32565949|ref|NP_502695.2| Lateral Signaling Target family member (lst-4) [Caenorhabditis elegans]gi|24817571|emb|CAA19487.2| C. elegans protein Y37A1B.2b, confirmed by transcript evidence [Caenorhabditis elegans]
+--LRKAVENYPtPPGGSSEDAHRQLLerrrkQMLRrHTCSTLIKQDTSASPHKMKPpilmeeedEQHSTGK-
+>gi|55648067|ref|XP_512320.1| PREDICTED: cdc42-interacting protein 4 isoform 6 [Pan troglodytes]
+--CVAIYHFEDlGPPPPPSQGPARALSLWPrVKTSVlWKKTKGTAGP-GSGGKREAR---
+>gi|47226831|emb|CAG06673.1| unnamed protein product [Tetraodon nigroviridis]
+-LPPVSANPLGSGEvhGDSGLREGRSPGGVRQERR-----RGPaDPRRR-----------
+>gi|50309763|ref|XP_454894.1| hypothetical protein [Kluyveromyces lactis NRRL Y-1140]gi|49644029|emb|CAG99981.1| KLLA0E20879p [Kluyveromyces lactis]
+-LFICITEYSKRMDDELDMRPGDKIQVVTDDgsyNDGWYFGKNLrTQEEGLYPKVFTQVI-
+>gi|328776214|ref|XP_393399.3| PREDICTED: tyrosine-protein kinase CSK [Apis mellifera]
+------------MTTHSNVTTPNITSHMNtGSTPVILTSNVTNPSNPAALS--VNP--
+>gi|47205035|emb|CAG14497.1| unnamed protein product [Tetraodon nigroviridis]
+-----------------------------lTgGvttfvalydyesrtasdlsfrkgerlqivnntegDWWLARSLTTGESGYIPSNYVAPS--
+>gi|125805800|ref|XP_694393.2| PREDICTED: myosin-VIIa [Danio rerio]
+-YAVAIQD-lsRqgASSALAIFWQGSHIAELQTrrcAVYHkGWRIFSRRrVDKSKeredksnwgsflRCNSDSA----
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+C 1    4843	2231	4543	*	2855	5214	*	3839	*	4592	5620	*	*	*	2083	*	*	2675	*	5650	1
+       64	6018	5147	0	*	*	*	7500	1000	0	
+
+Y 2    6502	*	*	6792	3800	*	3757	4218	4297	3042	4826	*	5927	4115	2204	6167	4710	4733	6060	2499	2
+       30	6963	6281	3492	134	0	*	8669	1161	1059	
+
+V 3    2195	2831	7015	6698	3693	4540	*	5480	7223	3604	6105	5670	6729	6490	6527	4695	6974	2528	7213	3324	3
+       33	5954	7222	0	*	*	0	9900	1217	1053	
+
+R 4    4957	*	*	3760	7547	5073	7480	3700	2841	4236	6848	7542	6800	4571	1828	5834	4006	2743	7010	*	4
+       8	7565	*	6426	17	*	0	9953	1000	1204	
+
+A 5    1059	5228	6733	5367	*	4511	*	6065	4521	4755	6338	*	5096	*	5219	4819	4449	2638	*	6616	5
+       33	7072	6023	3585	126	*	0	10021	1006	1204	
+
+L 6    5260	*	6678	5055	5886	*	*	2628	4306	1564	3907	5793	5790	4479	4126	4686	4016	4187	*	7358	6
+       0	*	*	*	*	*	0	10002	0	1504	
+
+F 7    4582	4527	4867	4938	3438	6215	3879	*	4776	4935	5499	6830	*	4051	4442	5717	4107	4613	5096	1641	7
+       40	5776	6824	1401	686	2261	338	9996	1227	1504	
+
+D 8    4159	*	1713	3353	*	5336	4771	*	5491	*	*	3237	3368	4982	4337	2827	4935	*	*	*	8
+       35	6850	6047	592	1571	*	0	9957	1031	1572	
+
+F 9    *	5682	5342	6371	1889	6458	3782	*	*	5813	*	4663	5027	6319	5584	4311	6299	*	5930	1362	9
+       39	5641	7217	3605	124	628	1502	9860	1699	1800	
+
+N 10   4759	6540	3482	2744	*	4456	4856	4384	3625	5238	7352	5536	5801	3964	3629	3401	3270	4199	*	4849	10
+       49	4907	*	607	1542	1371	705	10051	1483	1346	
+
+G 11   1939	7045	4981	5826	*	2626	*	7145	4228	*	*	5898	2363	5928	6276	2775	4288	5947	*	7364	11
+       80	4404	7268	307	2383	529	1703	10089	1816	1359	
+
+N 12   3736	7581	3910	3375	6507	4706	5595	5820	3766	5592	6611	3807	3988	3734	3544	3211	3299	4065	*	*	12
+       55	5447	6078	349	2220	1266	776	10094	1329	1127	
+
+D 13   4099	7109	3206	4044	5607	3401	4438	6858	3736	7477	5345	3297	3827	4966	4517	3029	4384	6639	6087	4405	13
+       79	4678	6122	1974	424	*	0	10178	1665	1440	
+
+E 14   3352	7153	3322	3257	*	3707	6593	7043	5460	6580	6047	3944	2371	4080	4199	3856	3564	5501	*	*	14
+       21	6108	*	1787	494	2958	199	10146	1200	1737	
+
+E 15   5173	6002	2204	3869	*	2425	4556	7034	3690	5058	7389	4683	4096	5314	4277	3793	4117	6392	7510	*	15
+       99	4192	6402	2019	409	863	1152	10156	1960	1629	
+
+D 16   4717	*	3041	1576	5776	4069	5010	*	7236	4633	5840	5631	3626	4445	4602	3956	4525	5367	*	6449	16
+       21	*	6118	*	*	1558	599	10093	0	1442	
+
+L 17   5392	*	*	6701	5180	5820	7289	2497	*	1055	5446	6501	5568	5916	5271	4542	7012	3542	6380	6605	17
+       43	6063	6107	2161	365	*	0	10112	1213	1586	
+
+P 18   3261	7091	4503	3944	5730	4006	5507	7042	4548	7124	6549	4080	4311	4802	5096	1690	3453	5421	6832	*	18
+       29	6667	6634	0	*	2425	297	10074	1072	1870	
+
+F 19   5202	*	6356	*	1922	*	5530	3717	6021	1885	3863	6682	4893	6192	6407	5453	*	3070	5558	6370	19
+       11	7003	*	3585	126	842	1177	10054	1012	1872	
+
+K 20   4284	6361	4397	3162	*	5346	4656	5542	3076	5240	6301	4008	4289	3355	2967	3319	4260	4855	*	6976	20
+       22	7619	6665	1000	1000	*	0	10176	1000	1322	
+
+K 21   3039	6560	5724	2991	5528	6254	5944	4428	2333	5209	6129	5894	3390	4742	3610	3885	4712	4369	*	*	21
+       38	5923	6698	2553	270	2022	408	10150	1224	1514	
+
+G 22   5681	5752	3940	5425	*	819	6259	*	4915	5149	*	3396	5558	5536	4444	4573	7261	*	*	*	22
+       26	6348	7517	3013	191	579	1597	10166	1156	1559	
+
+D 23   4237	7243	1421	2400	*	3896	5681	6141	6891	7487	7325	4984	5591	3486	4742	4769	5262	7159	*	7035	23
+       19	6254	*	1283	764	*	0	10205	1141	1221	
+
+I 24   4162	5521	6693	4345	4685	7154	5194	2763	4318	3000	5430	6761	6269	4562	3547	3922	4690	2642	*	5076	24
+       24	*	5951	3144	173	1535	610	10205	1106	1221	
+
+L 25   4936	7521	*	*	3860	5710	6663	2080	*	2078	5856	*	5286	7406	4958	*	6529	2038	6584	4475	25
+       29	5666	*	2769	229	*	0	10148	1307	1471	
+
+R 26   4598	*	4568	3163	5403	5173	4905	3815	4175	3559	6507	5041	5731	3961	3888	3521	3475	3655	7560	4180	26
+       23	6724	7342	0	*	2323	322	10148	1084	1471	
+
+I 27   5840	7157	5453	7135	7110	6415	5376	2587	*	2237	4867	5991	5017	4775	6662	6661	7089	1417	*	7619	27
+       31	6146	7135	0	*	*	0	10135	1176	1497	
+
+R 28   4320	5724	5667	5345	4853	5292	4513	3314	5055	2008	6019	5996	5122	4886	4690	4798	3887	3014	5820	5261	28
+       11	*	7076	*	*	1790	492	10114	0	1698	
+
+D 29   5064	6972	4226	2711	6644	3857	3934	5810	3309	5744	*	3986	4361	3545	3326	3250	5389	4799	*	6373	29
+       351	2211	*	743	1313	1673	543	10138	4903	1629	
+
+K 30   4584	6692	3725	2884	*	3851	5673	4850	2519	4981	5219	5302	5433	4113	3401	4508	3619	4854	6248	7165	30
+       152	4804	3964	2487	283	*	0	10197	1669	1395	
+
+P 31   4721	5775	3005	3529	7466	3318	5024	4543	4655	3984	6551	4562	4779	5294	4979	2891	3401	3979	*	6556	31
+       123	4856	4413	4236	79	532	1698	10055	1614	2634	
+
+E 32   5920	4655	2384	2904	5613	3710	4921	*	4421	6068	7197	3239	5353	5191	3663	3771	3687	7278	6253	6236	32
+       28	5692	*	2445	293	620	1517	10146	1253	2442	
+
+E 33   3807	6690	2795	3095	6575	3343	5159	5035	3809	5922	*	4002	3936	5606	4185	2812	4915	7347	7276	6507	33
+       207	3291	4995	1192	830	1539	609	10163	2983	1446	
+
+Q 34   5031	7504	3014	3411	*	1398	5090	6099	5324	5083	6916	3706	6163	7667	5228	4512	4954	4690	7292	5916	34
+       67	4736	7045	2749	232	1508	625	10144	1663	1907	
+
+W 35   7547	*	*	6643	4125	4532	7024	6466	6016	4435	6182	*	*	5375	6433	4706	6446	4967	669	4529	35
+       21	6870	7395	2585	263	*	0	10140	1049	1683	
+
+W 36   4876	6190	5548	*	4114	5481	7617	4174	5694	3189	5171	6833	5996	7269	5713	5984	5947	4048	1395	3173	36
+       42	5671	6738	2529	275	1823	479	10046	1278	1823	
+
+N 37   4468	*	5553	4301	4226	5696	6352	4351	2933	2751	5489	5774	4236	4403	3076	4431	5231	5938	4272	3860	37
+       21	6924	7282	5392	35	1504	627	10031	1050	1755	
+
+A 38   3368	3650	6399	7290	6324	1503	*	5070	5572	*	6754	*	5654	5407	5623	4587	4616	2097	*	*	38
+       55	5904	5603	1850	469	1259	780	10162	1219	1572	
+
+E 39   4990	7592	4676	3247	5184	6138	5114	6679	2956	5109	7517	5866	6665	4337	2132	3931	3163	3947	7177	5526	39
+       509	3738	2169	2116	378	1324	736	10152	2344	1863	
+
+D 40   4365	6804	3647	4376	6808	4234	4364	5161	4043	3941	*	2221	*	*	3138	3204	4174	4366	*	6679	40
+       58	4656	*	1448	659	253	2634	9817	1510	5036	
+
+S 41   3589	4759	4845	4077	7347	4971	5131	4412	3516	2405	6023	6559	4393	4866	4809	3872	3998	3481	*	4959	41
+       456	1884	*	375	2126	2958	199	10103	5316	1695	
+
+E 42   4048	6933	3107	3550	5760	2816	4989	*	3953	6241	7163	3423	4702	5961	3615	3990	3076	4565	*	*	42
+       88	4210	7541	1444	661	*	0	10076	1960	1592	
+
+G 43   5734	5474	4369	4373	*	1163	5382	*	3840	6410	6899	4173	5324	4468	4871	3371	6047	6431	*	5769	43
+       9	7397	*	2322	322	2024	407	10043	1000	1708	
+
+K 44   4393	5610	4928	3043	6185	4805	4760	4660	2423	5084	6004	5013	5338	3509	3242	3262	4672	5182	*	*	44
+       31	6987	6258	1000	1000	2036	403	9997	1051	1507	
+
+R 45   4188	7487	6391	2555	5583	5853	5747	4721	3420	3765	7350	5320	4113	4911	3657	3195	3682	3744	6361	5618	45
+       50	4870	*	3026	189	703	1374	9941	1519	1593	
+
+G 46   4332	7199	6189	5187	5953	642	*	7193	4083	*	*	5658	4739	*	4626	4167	*	7255	*	5673	46
+       95	4542	5584	2665	248	*	0	10026	1670	1151	
+
+M 47   4354	7421	6212	6597	3133	6459	5002	3640	5875	2457	5385	7248	5108	*	5046	3648	5848	4718	2774	3129	47
+       51	5143	7258	4167	83	2056	397	9946	1408	1572	
+
+I 48   4003	5518	6440	*	1879	6224	*	2872	5642	3183	7131	*	4903	*	*	5123	6391	1984	*	5779	48
+       26	5829	*	2100	383	1332	731	9986	1339	1528	
+
+P 49   5682	*	5640	5844	5944	5708	5456	*	6306	5096	*	5644	487	5973	5763	4465	5991	7561	*	6778	49
+       34	5444	*	2080	389	481	1818	9977	1424	1270	
+
+V 50   2332	7102	7612	4104	5872	3967	6500	5547	3275	4011	7449	5075	6408	4382	5154	2459	3734	3917	*	7444	50
+       36	7080	5857	1000	1000	*	0	10005	1000	1000	
+
+P 51   3782	*	4073	4569	*	4377	*	7199	4217	7044	*	2312	4201	3794	4349	2234	3436	7300	*	5565	51
+       10	7191	*	2585	263	*	0	9829	1009	1342	
+
+Y 52   5717	4344	7262	6206	2461	5627	3814	4587	6339	4505	6162	4416	5890	5552	5670	3668	*	5301	5497	1757	52
+       42	5133	*	2462	289	395	2062	9791	1491	1342	
+
+V 53   4350	5816	*	6284	5624	5952	*	2923	*	2181	6391	*	7211	6710	7020	3960	4999	1388	6806	6797	53
+       32	5493	*	537	1687	*	0	9778	1229	1000	
+
+E 54   4130	5992	4731	1846	*	7335	4812	7082	2843	4715	7379	5418	5979	3655	3556	4169	3973	5113	6637	5892	54
+       39	5230	*	0	*	655	1454	9610	1377	1180	
+
+K 55   4717	5660	4318	2359	5496	5311	7194	3583	4327	3791	7044	5000	2519	5621	4373	5021	6082	3412	*	5963	55
+       43	5085	*	3791	108	1202	823	9403	1248	1130	
+
+Y 56   5205	6676	6733	4956	4129	*	6787	2379	5519	1904	5898	*	*	5899	6626	6722	4526	2184	*	4121	56
+       159	3260	*	1488	636	0	*	8854	1391	1015	
+
+G 57   3355	*	3883	*	*	1363	5333	5416	*	*	*	3828	5211	5416	5467	2295	4316	*	*	*	57
+       0	*	*	0	*	*	*	7155	0	0	
+
+//
+�HHsearch 1.5
+NAME  b6a8572284504b5d762ee82f90b16d91
+FAM   
+FILE  b6a8572284504b5d762ee82f90b16d91
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:04:18 2013
+LENG  109 match states, 109 columns in multiple alignment
+FILT  151 out of 1109 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  8.3 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCEECCCCEECCCCEEEECCEEEEEECCCCEEEEECCEEEEECCCCCCCCCCEEEECCCCCEEEECCCCCEEEECCCCCCCCCEEEEEECCCCEEEECCC
+EEECCCCCC
+>ss_conf PSIPRED confidence values
+9890699783899989989999999669989998099899977873588752699958986999979997898567779997689999089859995898
+043798488
+>Consensus
+xxxlxxgxxLxxgxxLxsgxxxlxxxxdgnlvlxxxxxxvWxsxxxxxxxxxxlxlxxxGnLvlxdxxxxxiWxSxtxxxxxxxxlxlxxdGnlvlyxxx
+xWxSxxxxx
+>b6a8572284504b5d762ee82f90b16d91
+DNILYSGETLSTGEFLNYGSFVFIMQEDCNLVLYDVDKPIWATNTGGLSRSCFLSMQTDGNLVVYNPSNKPIWASNTGGQNGNYVCILQKDRNVVIYGTD
+RWATGTHTG
+>gi|224099309|ref|XP_002334494.1| predicted protein [Populus trichocarpa]gi|222872794|gb|EEF09925.1| predicted protein [Populus trichocarpa]
+------------------TGSKAVLTANRGISLTDPqGRELWRSETIIGVV-AYGAMTDKGNFVLQDRVSDKLWESfknpadtllpsqvldrgmtlssrq
+sENNFSMGRFQLKLTDDGNLELATinlpsDytnePYYKSGTDG-
+>gi|302760705|ref|XP_002963775.1| hypothetical protein SELMODRAFT_405198 [Selaginella moellendorffii]gi|300169043|gb|EFJ35646.1| hypothetical protein SELMODRAFT_405198 [Selaginella moellendorffii]
+-----QGSTLPKGNSLISpsTEFRLSMEAGCDLVVRSshSgeiMRRIF----HGRDQACVLSLWTNGVLMVTGLQ-GSAGRRKRAMDaSFCSMHGEKEQH
+EARNECEhekaNYllyWRRSN---
+>gi|302765240|ref|XP_002966041.1| S-receptor kinase 1 [Selaginella moellendorffii]gi|300166855|gb|EFJ33461.1| S-receptor kinase 1 [Selaginella moellendorffii]
+------------------ANARLQLTAQGLF----VsDGAQLITIANVPSVAS-AELQDNGNFVVISSSGS--WQSFdvptdtlltgqliqgnkdilrsg
+sfSLylnqNSIGLKSYAVPE--------SnsqSYWDvqrspTSSN--
+>gi|224057535|ref|XP_002299255.1| predicted protein [Populus trichocarpa]gi|222846513|gb|EEE84060.1| predicted protein [Populus trichocarpa]
+-DTLLPTQIMEKGGILSsrlsetnfsQGRFQFRLIPDGNAVLNTInlptgfpYEAYFWSKTVD-snssNAGYQVVFNESGYLYVLRANNTreaLTL-GRV
+VPaTENYHRATLHFDGVFVLY------------
+>gi|125551438|gb|EAY97147.1| hypothetical protein OsI_19069 [Oryza sativa Indica Group]
+-NQLKSGNTLTph--SYITSpsGDFAFGFLAiESelsySsqFILalwFNlkvaessQQKVVWFAAEESSgsavtvQQQAVLSISANQLSLSnAGNGVVWK
+NQ---NPNQrFGSLVEITDNGNVKFLGDDgktIWES-----
+>gi|302789784|ref|XP_002976660.1| hypothetical protein SELMODRAFT_72392 [Selaginella moellendorffii]gi|300155698|gb|EFJ22329.1| hypothetical protein SELMODRAFT_72392 [Selaginella moellendorffii]
+-----------------------------------------------VGENATLQFTTDGELKVEED-GDVVWSTKTANR-GVRWLCMSNRATIMLLDES
+gsnvIWQSS----
+>gi|255550026|ref|XP_002516064.1| Serine/threonine-protein kinase PBS1, putative [Ricinus communis]gi|223544969|gb|EEF46484.1| Serine/threonine-protein kinase PBS1, putative [Ricinus communis]
+-RTILQGGELKYDQELVSadGMFKLKFGtvgESGESsdsYLgiwYNyieEKFPVWVANRDTPifGNSGILTVDSQGNLKILRDKGRSIVLYSVQKAIYNA
+IATLEDTGNFILRELNsngsikqvLWQSF----
+>gi|225461213|ref|XP_002280379.1| PREDICTED: hypothetical protein [Vitis vinifera]
+--------------------GVLRVTHQGILVVVNGInRILWNSNSSRSAQNPNAQLLESGNLVMKNGNDsdpeNFLWQSfdypcdtllpgmklgrntvt
+gldwylsswksADDPSKGNFTYGIDPSGlpQLVLRNGLavKFRAGPW--
+>gi|15227459|ref|NP_181720.1| curculin-like mannose-binding lectin fand PAN domain-containing protein [Arabidopsis thaliana]gi|75319139|sp|P93756.1|SD31_ARATH RecName: Full=G-type lectin S-receptor-like serine/threonine-protein kinase SD3-1; AltName: Full=S-domain-3 (SD3) receptor kinase 1; Short=SD3-1; Flags: Precursorgi|1871193|gb|AAB63553.1| putative receptor-like protein kinase [Arabidopsis thaliana]gi|20196890|gb|AAM14823.1| putative receptor-like protein kinase [Arabidopsis thaliana]gi|330254951|gb|AEC10045.1| curculin-like mannose-binding lectin fand PAN domain-containing protein [Arabidopsis thaliana]
+--TLLPNQKFPAFEMLRAasensrsSYYSLHLEDSGRLELRwESNITFWSSGNEvvkkkkK-KKNIGAVLTSEGALFLEDQDLmRPVWSVFGEDHndTVK
+FrFLRLDRDGNLRMYS-----------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+D 1    *	*	861	*	*	*	*	*	*	*	*	*	*	1647	2942	*	*	*	*	*	1
+       0	*	*	*	*	*	*	3581	0	0	
+
+N 2    4578	*	1789	4639	5437	5495	5456	5468	*	*	*	1550	4612	*	5341	3160	5720	*	*	*	2
+       0	*	*	*	*	*	*	7251	0	0	
+
+I 3    4769	*	*	*	5474	5773	*	3837	6223	3221	5754	5855	*	4658	4327	3887	1324	3446	5974	4967	3
+       0	*	*	*	*	*	*	7488	0	0	
+
+L 4    *	*	*	5782	4217	*	*	2000	5843	757	*	*	*	*	*	*	*	4337	5697	*	4
+       46	4996	*	0	*	*	*	7500	1118	0	
+
+Y 5    4480	4990	5838	4408	4490	6187	5795	5760	4288	1891	5780	*	3859	4842	4829	2997	5032	4897	5711	3683	5
+       0	*	*	*	*	*	*	7503	0	0	
+
+S 6    5142	5581	*	*	*	5219	*	5955	5136	3231	5841	4292	1893	3491	4037	2156	5845	4522	*	*	6
+       67	5115	5897	0	*	*	*	7627	1203	0	
+
+G 7    *	*	6061	*	*	697	*	6169	5840	*	*	2718	5029	4511	5940	4048	4903	*	*	*	7
+       48	6094	5786	1585	585	1058	945	7751	1007	1204	
+
+E 8    4308	*	3820	2845	*	4558	*	*	3528	*	4954	4836	*	1760	6242	2605	5104	5141	*	6295	8
+       0	*	*	*	*	771	1272	7749	0	1170	
+
+T 9    4629	*	*	4193	6095	*	6363	5911	4195	3550	*	5049	5187	5310	2903	2878	2145	3112	6388	6027	9
+       45	*	5036	*	*	0	*	7781	0	1012	
+
+L 10   *	*	*	*	4703	*	*	2771	*	547	3762	*	5330	*	*	*	*	4968	*	*	10
+       44	5068	*	749	1304	779	1261	7707	1282	1216	
+
+S 11   3043	*	6309	5185	5432	5950	4195	*	4441	3522	5178	6130	4223	3904	3603	3134	2883	4156	*	4025	11
+       142	3674	6031	1405	684	0	*	7766	1541	1032	
+
+T 12   2595	*	5092	3783	6230	2959	6142	*	3800	5135	*	4386	3139	4677	5194	3351	3677	4682	5851	5970	12
+       54	4777	*	0	*	728	1335	7755	1360	1205	
+
+G 13   6231	*	2910	6496	*	1060	5181	6144	6655	6423	*	2661	5330	5250	4446	4939	6385	*	*	*	13
+       0	*	*	*	*	0	*	7855	0	1021	
+
+E 14   6142	5537	2867	3237	5233	2999	4102	*	4370	*	6471	3549	5441	2604	4829	3383	4784	6449	*	*	14
+       76	4668	6378	1433	668	*	*	7902	1179	0	
+
+F 15   4195	*	6174	3978	4309	*	5163	*	3891	5281	4412	*	6130	5249	3307	2222	3113	3950	5284	3512	15
+       34	*	5434	*	*	*	0	7894	0	1000	
+
+L 16   6252	*	*	*	6373	*	5892	2299	*	585	*	*	*	6266	*	*	5156	*	4412	*	16
+       20	6160	*	1000	1000	*	0	7833	1000	1170	
+
+N 17   5135	*	*	3896	3757	6312	5892	3189	4325	4598	6515	5384	5317	3964	4758	3374	2998	2503	*	4604	17
+       459	1874	*	2119	378	588	1580	7833	2950	1170	
+
+Y 18   4369	6090	4430	6261	*	*	*	5598	5268	6397	*	2335	*	5971	*	972	3733	6466	*	6873	18
+       858	1158	*	1477	642	1459	652	7959	4302	1149	
+
+G 19   3992	*	6583	5091	*	948	*	*	4462	6685	6745	3853	5610	3934	4496	4635	4049	6098	*	*	19
+       39	5215	*	1000	1000	*	0	8308	1183	1059	
+
+S 20   4319	*	3406	4167	5682	3542	5301	4671	3530	5235	4655	3239	5813	3621	3452	3521	4879	5444	6663	5221	20
+       92	4259	6718	621	1515	*	0	8607	1497	1059	
+
+F 21   3574	4203	7369	6528	1439	4357	5617	6774	*	7119	*	*	7222	6747	*	3631	4618	6232	6799	2115	21
+       0	*	*	*	*	1302	750	8797	0	1166	
+
+V 22   2840	*	7566	3706	4525	6847	6069	5549	2828	7055	5794	7358	*	5168	2878	3278	2779	4375	*	4140	22
+       0	*	*	*	*	*	0	8732	0	1059	
+
+F 23   3200	*	*	*	2743	*	*	4435	6911	804	5077	*	*	*	*	6607	5226	4383	*	*	23
+       14	*	6664	*	*	*	0	8731	0	1059	
+
+I 24   4523	6888	6625	3612	4645	2616	5438	4168	4485	4099	6404	5507	*	4111	3903	3653	3651	2812	*	6461	24
+       13	*	6800	*	*	1199	825	8710	0	1180	
+
+M 25   *	6440	*	5681	1950	*	6432	2987	*	2037	2515	6636	*	*	*	6267	6975	3147	*	6663	25
+       57	4698	*	1203	822	*	0	8729	1315	1241	
+
+Q 26   6374	*	3623	3682	4289	4119	5415	5915	7012	3840	*	5700	*	1886	3686	4007	3116	5546	*	4788	26
+       148	4052	4752	1106	902	894	1114	8729	1728	1241	
+
+E 27   2924	5693	3185	3996	6872	3860	4907	6319	4123	6234	*	3439	3974	4983	6188	2991	3591	4383	*	5351	27
+       136	3554	7661	1244	791	465	1861	8631	2099	1466	
+
+D 28   4489	*	1170	5095	6218	3447	*	*	6132	7069	*	2964	5103	5150	7368	3552	4140	6630	*	6433	28
+       0	*	*	*	*	*	0	8736	0	1316	
+
+C 29   6970	2410	5451	*	*	763	*	6332	*	6630	*	5093	*	5907	5854	3913	6283	5706	*	7076	29
+       72	5641	5113	1459	652	1183	838	8736	1108	1316	
+
+N 30   5170	*	3864	3818	*	4556	5567	5188	5153	4857	*	1098	*	4479	5135	3470	6230	5641	*	6052	30
+       90	4042	*	1290	758	403	2037	8722	1832	1537	
+
+L 31   7738	6130	*	*	2879	*	6647	4903	*	875	3902	*	5535	6984	*	4895	7332	3476	7149	5414	31
+       64	4738	7329	1585	585	*	0	8765	1419	1059	
+
+V 32   3645	4663	7199	5063	5077	4322	*	3822	5554	4143	7142	6826	*	4522	7310	3748	4893	1384	*	4090	32
+       24	7037	6785	0	*	*	0	8769	1008	1149	
+
+L 33   6221	*	*	*	4545	7097	*	2523	*	1206	6525	*	5832	6142	5843	6571	5658	2171	5913	*	33
+       311	2411	7435	1281	765	*	0	8734	3113	1330	
+
+Y 34   4596	*	6623	5136	3043	*	*	5134	4398	3188	5481	5532	7026	6502	3503	4538	4130	4301	7026	1719	34
+       196	3127	6305	1364	709	1122	888	8735	2516	1403	
+
+D 35   4116	*	2446	2971	6877	3819	4921	4855	3698	7041	5954	3289	4658	4946	4279	3912	4070	4979	*	*	35
+       538	1901	4516	1541	608	1060	942	8747	3972	1488	
+
+V 36   3537	*	4261	4896	4824	2625	5646	*	4053	5224	6980	3526	4577	4174	4384	3200	4075	3538	*	5083	36
+       814	1232	7556	1350	719	325	2311	8728	5317	1973	
+
+D 37   4749	6453	3615	5594	*	2362	5965	5613	3651	7380	6676	2908	6217	3522	3735	3427	4693	4594	5785	5458	37
+       117	3680	*	1404	685	2079	390	8744	1861	1695	
+
+K 38   4240	*	4691	4675	5826	4190	4785	5265	3161	5838	*	3771	*	4894	2774	3476	2619	4191	*	4486	38
+       49	4903	*	1647	555	605	1546	8752	1376	1638	
+
+P 39   3200	5282	6880	4074	5847	4877	7175	3591	5317	4920	*	5126	2768	4218	4702	5019	3777	2261	6592	6996	39
+       91	4173	7459	1588	584	1029	971	8807	1738	1159	
+
+I 40   5133	*	6722	6397	5249	6277	6631	2554	4786	2763	5425	5636	6693	5886	5236	5737	4564	1720	*	3540	40
+       47	5387	6888	1077	927	1076	928	8812	1222	1178	
+
+W 41   *	*	7013	*	4620	*	*	6686	5781	7342	*	6616	*	6604	*	7209	*	6364	260	4529	41
+       22	*	6029	*	*	*	0	8809	0	1154	
+
+A 42   2777	4948	7011	5561	6462	5328	7451	5117	5330	*	5737	4860	6026	3512	4019	2111	3021	3697	5283	5517	42
+       79	5862	4794	787	1250	*	0	8777	1261	1422	
+
+T 43   2273	*	*	*	7090	4758	*	6071	5682	6091	*	4750	4262	6699	*	1486	2328	5276	6970	6496	43
+       42	5117	*	1724	520	2402	303	8770	1389	1969	
+
+N 44   4341	*	3261	4294	6857	2975	4884	5966	3643	5076	6418	1886	4008	5737	7394	4935	4435	4678	6994	7620	44
+       37	7187	5744	1660	549	3265	159	8721	1085	1893	
+
+T 45   3370	*	4881	5178	*	4416	5352	5091	7013	5217	6137	4764	5097	6756	2948	3460	1689	3865	6991	6676	45
+       150	4379	4311	1614	571	278	2513	8747	1592	2072	
+
+G 46   3086	5299	2959	4118	4432	3488	6010	4551	5064	4638	*	3767	5176	5766	4995	3273	4099	6168	4815	4476	46
+       199	3304	5167	1016	984	1658	550	8743	2175	1727	
+
+G 47   4514	7436	4350	4814	5794	2176	4989	5718	4902	7157	6909	2761	4027	4280	4821	3284	4139	4101	*	6164	47
+       117	4621	4746	562	1631	1577	589	8742	1421	1749	
+
+L 48   4610	6432	4618	4561	6972	4490	5896	4357	3048	4573	5985	4846	2733	4219	3714	3322	3934	4199	7211	5269	48
+       478	2098	4371	1486	637	1460	652	8724	3621	2100	
+
+S 49   3879	*	3808	5141	5407	1702	5461	6161	5344	4873	7103	5557	4147	3796	6285	2885	4444	4802	*	5721	49
+       181	4860	3580	1003	997	341	2249	8776	1382	2519	
+
+R 50   2892	*	4643	5639	4020	4630	5109	6261	6031	6470	6759	3858	3259	3985	4073	2772	4082	3281	6368	6807	50
+       216	4281	3517	456	1883	1039	962	8764	1485	2396	
+
+S 51   3058	*	3855	*	*	2376	6236	*	4998	7045	*	2455	3858	5120	5789	2714	5204	4313	*	4719	51
+       209	2960	7286	333	2279	433	1948	8736	2373	2613	
+
+C 52   2788	2277	7295	6743	4455	3631	6262	6250	6353	6149	*	5593	5263	7420	7051	3200	3828	3375	7255	3158	52
+       69	4876	6300	1601	577	288	2467	8771	1526	1466	
+
+F 53   4079	*	6391	4670	4476	5443	5316	5752	3952	4820	5212	6235	6798	6263	2863	3208	3077	3017	5974	3157	53
+       26	5812	*	2882	210	623	1513	8821	1201	1196	
+
+L 54   2265	4890	*	*	4114	6863	*	4662	*	1087	5196	*	*	*	*	*	4942	3141	*	6854	54
+       17	7531	7385	0	*	*	0	8884	1000	1004	
+
+S 55   3482	5672	5924	3362	5941	*	5482	3079	3927	4940	5638	5099	*	4505	2987	3501	3108	3349	*	*	55
+       30	6241	7046	1787	493	1343	723	8882	1129	1072	
+
+M 56   6063	*	*	*	2827	*	*	2902	*	974	3969	6596	*	5558	*	*	*	3609	*	5393	56
+       33	5688	8221	0	*	*	0	8873	1134	1115	
+
+Q 57   6316	*	3181	3120	5758	4900	5780	*	5903	3402	7213	4123	*	2227	3888	3785	2965	*	5398	6494	57
+       57	6019	5427	2617	257	661	1444	8870	1187	1182	
+
+T 58   4556	*	2192	3483	6641	4274	6003	7132	4990	5175	6786	3097	3600	4259	6093	3172	3348	5560	*	*	58
+       14	6662	*	0	*	330	2289	8753	1004	1402	
+
+D 59   4744	*	1590	5908	*	4925	6394	*	5948	*	6670	2354	*	5097	4633	3051	2855	6981	*	6493	59
+       11	7045	*	2000	415	*	0	8883	1000	1004	
+
+G 60   5273	5672	6380	7120	*	276	*	*	*	*	*	*	6912	5539	5016	5274	5930	*	7267	*	60
+       0	*	*	*	*	*	0	8883	0	1004	
+
+N 61   4615	*	4571	4814	*	6496	4666	7304	5171	4689	*	883	*	6085	5120	3673	4789	4525	*	6125	61
+       21	6082	*	1000	1000	*	0	8883	1092	1004	
+
+L 62   4952	*	*	*	2626	6815	*	4299	*	733	3979	*	*	*	*	6570	*	3830	*	*	62
+       43	5487	7152	2585	263	*	0	8883	1166	1004	
+
+V 63   4277	5280	6648	4779	4773	6295	6044	4072	4668	4322	4661	5615	*	5600	5598	4782	5404	1225	5408	4304	63
+       13	*	6853	*	*	*	0	8870	0	1095	
+
+V 64   5920	6199	*	*	4377	7152	*	2349	*	1305	4057	*	7038	6923	6948	5859	6658	2555	6602	5492	64
+       57	5448	6006	0	*	*	0	8837	1238	1277	
+
+Y 65   4815	*	7135	4968	5198	6429	7595	4069	4145	2948	5528	5590	*	4873	3567	3878	3568	4356	6586	1926	65
+       162	3706	5072	720	1348	2540	272	8813	1871	1523	
+
+N 66   4848	*	1383	4160	*	3092	7554	6486	5577	5377	6786	2813	7075	6091	5925	3284	4735	*	*	5861	66
+       36	5782	7255	1759	505	1949	432	8870	1224	1823	
+
+P 67   3328	*	3350	4534	*	3096	4974	*	3512	4309	6596	3694	4605	4744	3705	2737	4735	5978	*	5253	67
+       154	4927	3875	0	*	3197	167	8895	1336	1660	
+
+S 68   4370	6390	2956	7050	6937	2839	6251	*	4001	4546	6902	2592	*	5802	4052	2999	3411	4792	6852	5591	68
+       251	3269	4153	1506	626	539	1680	8764	2004	2412	
+
+N 69   6021	*	3550	4794	*	1462	6113	7065	4625	6222	6679	2456	6772	3963	5215	3619	5383	5232	*	*	69
+       121	3635	*	956	1046	459	1876	8783	2018	2152	
+
+K 70   4344	*	4524	4602	6256	3233	*	5669	3103	4846	4951	3581	6357	3917	3724	2737	4033	3675	*	5911	70
+       116	3814	7366	1506	626	*	0	8883	1925	1259	
+
+P 71   3217	5494	7568	5054	5563	6804	7289	3081	6325	3743	5574	5057	3095	6132	5392	4221	3646	2221	5431	5992	71
+       23	5969	*	585	1585	*	0	8888	1074	1347	
+
+I 72   4275	*	*	5671	5686	7120	*	2109	5164	1933	6515	6895	5935	5910	6072	5390	4528	2288	7266	4835	72
+       57	5975	5456	1585	585	1472	645	8888	1158	1347	
+
+W 73   *	*	*	*	3814	6700	*	5608	6114	5642	6884	5369	*	*	*	6094	6758	6699	379	5099	73
+       13	*	6791	*	*	1110	898	8765	0	1430	
+
+A 74   3275	5575	5488	3798	*	5350	6687	5076	5050	5909	*	4768	*	2461	3568	2086	3489	5268	6307	7636	74
+       139	4591	4321	179	3100	1852	468	8865	1660	1296	
+
+S 75   4421	*	*	*	*	5793	*	5141	5550	5126	*	4933	6357	7431	6643	805	2261	7620	*	6654	75
+       122	3630	*	4703	56	1800	488	8702	1951	2111	
+
+N 76   4534	*	3740	4507	2936	2476	6118	5257	4266	*	6535	2871	3539	5520	4627	3500	5284	5935	6812	*	76
+       164	3217	*	4614	60	*	0	8508	2216	1780	
+
+T 77   4059	5826	3976	6245	7086	4570	6179	5183	5049	6035	7972	4900	4989	6925	3906	3061	1448	3818	*	6936	77
+       111	3925	6975	3433	140	841	1178	8501	1677	1897	
+
+G 78   3387	7227	2479	*	4442	3764	4736	6986	5605	4030	5919	3021	5990	4428	6540	3066	4115	4675	*	4549	78
+       135	3714	6248	1950	432	1298	753	8576	1892	1449	
+
+G 79   3912	4169	4214	6122	4517	2503	5234	6062	5607	6716	5422	3609	2883	*	4196	3228	4267	5267	*	4715	79
+       113	3926	6666	958	1043	1678	540	8514	1799	1584	
+
+Q 80   3833	5457	4642	5075	4829	3013	5487	6933	3435	5714	7310	5319	4150	3733	4408	1919	4806	6449	*	6094	80
+       246	3208	4358	405	2031	1202	823	8504	2325	1476	
+
+N 81   3622	*	5390	3742	*	2793	6712	4804	4056	6816	5271	4492	3250	4490	4465	2671	3637	4243	*	7364	81
+       330	2900	3826	1533	612	506	1758	8481	2826	1971	
+
+G 82   4296	6819	6025	4845	4755	1273	5825	5440	5486	5419	*	3969	3949	5928	6240	3774	5902	3965	*	4613	82
+       143	4946	4007	1387	695	565	1626	8375	1592	1991	
+
+N 83   4299	4959	3288	5256	7052	3705	*	6803	4691	4063	7105	3073	2662	4729	4472	3300	6068	4370	*	3942	83
+       115	4665	4739	427	1965	600	1556	8474	1488	2064	
+
+Y 84   3650	3857	*	6453	2893	5076	5101	*	4623	5692	6985	5663	4746	*	6165	3062	4310	3992	5940	1952	84
+       107	4196	5870	939	1064	446	1912	8526	1702	1784	
+
+V 85   3810	*	5988	7084	4632	4455	5179	4129	4364	4390	4968	6961	7251	5713	2798	2607	3393	3078	6275	4701	85
+       16	6471	*	3000	193	0	*	8565	1015	1328	
+
+C 86   2173	6461	6723	*	4373	7027	6012	4453	*	1052	5120	*	*	*	*	*	4815	4205	6578	5099	86
+       16	*	6507	*	*	*	*	8599	0	0	
+
+I 87   4237	6516	6897	4097	5179	4285	5150	3410	3889	6159	6562	6017	*	4311	3632	3863	2695	2319	*	7379	87
+       0	*	*	*	*	0	*	8566	0	1048	
+
+L 88   6485	*	*	6012	4912	*	*	2837	*	1189	2726	5737	6913	7565	*	6650	5931	2720	*	*	88
+       10	7226	*	0	*	*	*	8599	1000	0	
+
+Q 89   5816	*	2953	3343	*	5981	5122	*	4867	2891	*	4146	7119	1796	4213	4459	3853	5590	*	*	89
+       26	5828	*	2088	387	*	*	8595	1131	0	
+
+K 90   4764	*	1410	3591	6747	5382	5392	7072	5584	6693	6872	2977	3167	5552	4613	4659	4958	5852	*	6544	90
+       32	7085	6113	0	*	*	0	8586	1000	1007	
+
+D 91   5259	*	1225	5658	*	6872	6805	6732	5824	5572	6677	3193	*	5970	5329	2604	3175	*	*	5292	91
+       12	*	6894	*	*	1581	587	8600	0	1197	
+
+R 92   6039	7337	*	*	*	270	5968	*	*	*	*	7537	4787	*	4837	5024	5805	6935	*	*	92
+       20	6194	*	1000	1000	1825	479	8599	1058	1176	
+
+N 93   5836	*	3916	4787	7070	7248	5476	5627	4755	4887	5803	982	*	4242	5009	4555	5292	4635	5624	5977	93
+       85	4131	*	1449	658	882	1128	8601	1726	1098	
+
+V 94   4756	6909	*	*	2452	6636	*	3354	*	1052	4710	*	5556	*	*	*	5996	3355	*	6805	94
+       32	5533	*	1000	1000	*	0	8610	1232	1000	
+
+V 95   5630	5540	5617	5226	4462	5324	*	3965	5268	5422	5438	5524	*	4313	3510	5024	5011	1155	*	4887	95
+       0	*	*	*	*	*	0	8610	0	1000	
+
+I 96   6140	*	6703	*	4844	5896	6073	2588	*	1131	4675	5975	*	5026	*	*	5979	2606	*	5570	96
+       0	*	*	*	*	*	0	8610	0	1000	
+
+Y 97   5084	*	*	5117	3721	5534	6214	4451	5189	3518	5918	5828	*	5901	3745	6203	5120	5031	5086	1176	97
+       175	3228	7044	1250	787	*	0	8599	2176	1000	
+
+G 98   4060	5861	2184	5577	5595	2596	5864	6879	4804	6843	5506	2802	5479	5486	5226	3209	4815	6745	5210	6838	98
+       178	3309	6041	1721	522	0	*	8357	1965	1227	
+
+T 99   3364	*	4529	3383	*	3687	5312	6709	4190	5465	6152	3487	3453	4343	4158	2461	3939	5529	*	7495	99
+       572	1649	6905	1953	431	*	0	8302	3553	1057	
+
+D 100  3298	*	3239	4145	*	4302	*	5468	3451	4994	*	3547	3058	4584	4181	3486	4615	3219	*	*	100
+       840	1180	*	1894	452	1053	949	7986	4422	1203	
+
+R 101  *	6420	*	*	3780	*	*	2162	5374	2626	*	*	*	*	4560	6853	4169	2474	*	2189	101
+       44	5066	*	1155	860	0	*	7941	1190	1148	
+
+W 102  *	*	*	*	4983	*	6178	*	*	6431	*	*	*	*	*	6352	*	*	176	4457	102
+       13	*	6820	*	*	*	*	7989	0	0	
+
+A 103  3012	6328	4637	3784	*	*	5682	6821	4886	*	*	4226	5217	2210	3184	2179	5450	*	5367	6136	103
+       35	5393	*	1938	436	0	*	7991	1118	1000	
+
+T 104  4357	6574	6326	*	6153	*	*	4851	*	*	*	5740	6401	*	4878	758	2240	*	6392	*	104
+       24	5946	*	3907	100	*	*	7954	1032	0	
+
+G 105  4027	*	3640	4099	3529	1757	6079	*	4976	*	*	2940	4375	*	6060	3006	6191	*	5794	5552	105
+       0	*	*	0	*	*	*	7466	1000	0	
+
+T 106  5582	*	4350	5830	5912	*	4785	*	*	*	*	3827	2860	5512	5817	2505	1495	5483	*	4095	106
+       0	*	*	*	*	*	*	7066	0	0	
+
+H 107  3527	*	4346	5585	3848	5480	4912	*	5391	*	*	2893	5507	5498	*	2790	4430	4434	1971	5423	107
+       0	*	*	*	*	*	*	6723	0	0	
+
+T 108  3987	*	3056	*	*	3967	*	4196	1826	4436	*	3278	*	3139	4194	*	3338	*	*	*	108
+       240	2706	*	1585	585	*	*	5232	1073	0	
+
+G 109  *	*	*	*	*	236	*	*	*	*	*	*	2730	*	*	*	*	*	*	*	109
+       0	*	*	0	*	*	*	3200	0	0	
+
+//
+�HHsearch 1.5
+NAME  b903b162c87715ee7384e2af499c16cd
+FAM   
+FILE  b903b162c87715ee7384e2af499c16cd
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:31:15 2013
+LENG  99 match states, 99 columns in multiple alignment
+FILT  137 out of 1099 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.0 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCEEEEECCCCCCCCCEEEEEEEECCCCCCCCEEEEEECCEECCCEEECCEEECCCCCEEEEEEEEECCCCCCEEEEEEECCCCCCCEEEECCCCC
+>ss_conf PSIPRED confidence values
+941999999736853479818999996575089889999889959677580656888999799999999745469989999998878976899726899
+>Consensus
+xxxxPxvxvxxxxxxxxxxxxxLxCxaxgfxPxxixvxWxxxgxxxxxxxxxxxxxxxxgtyxxxsxlxvxxxxxxxyxCxvxhxxxxxxxxxxxxxxx
+>b903b162c87715ee7384e2af499c16cd
+IQRTPKIQVYSRHPAENGKSNFLNCYVSGFHPSDIEVDLLKNGERIEKVEHSDLSFSKDWSFYLLYYTEFTPTEKDEYACRVNHVTLSQPKIVKWDRDM
+>gi|326703679|gb|AEA06491.1| MHC class I antigen [Macaca mulatta]
+-S----------------htiqtmygcdlgpdgrllrgyeqyaydgrdyfalne---DLRSWTAADMAAQN---------------tqrkweaagvaeqw
+----RAYLEGECLEWLRRYLEKGK---------------et--LQ--raE---
+>gi|82407640|pdb|1ZVO|C Chain C, Semi-Extended Solution Structure Of Human Myeloma Immunoglobulin D Determined By Constrained X-Ray Scatteringgi|82407641|pdb|1ZVO|D Chain D, Semi-Extended Solution Structure Of Human Myeloma Immunoglobulin D Determined By Constrained X-Ray Scattering
+--I--------------------------FR-------WPESPKAQAsSVPTAQPQAEGSLAKATTAPATTRNTGrggEEKKKEKEKE------------
+---
+>gi|145559665|gb|ABP73658.1| MHC class I antigen [Sus scrofa]
+----LKTLR-GYYNQSEAG-SHTYQWMYGCYlgPDGLFLcgysQFGYDGADYvALNEDLRSWTAADMAAQISKRKWEAADEAERMRSYLQGrcvEWLQKY
+LemgkdTLQHAD--
+>gi|291165399|gb|ADD81220.1| immunoglobulin light chain [Larimichthys crocea]
+--TAPTLTVLPPSSEQLqQGKATLMCLANKGFPSDWSLSWKVDSSSSIs-weESRSPVVLEKDGLYSWSSTLRLDADQwrkVDSVTCEATQGSQ-TSLSQ
+TLR---
+>gi|16555266|gb|AAL23601.1| MHC class I antigen [Papio anubis]
+-EPSSQSTI-PIVGIIAGL-VLLGTVVTGAAVAAVM--------------WRRKSSDR-----------------------------------------
+>gi|66864114|dbj|BAD99230.1| immunoglobulin mu heavy chain [Takifugu rubripes]
+-------SLFPLIQCGsgtG-TMVTLGCLAADFTPSDLTYTWRkDGVD-LKDFIQYP-PTMNGNFYTkisqiqVkRQDWDGSPNftCAATHSTGNLWTPF
+TRPKE-------
+>gi|194376438|dbj|BAG62978.1| unnamed protein product [Homo sapiens]
+----PSVFLFPPKPKDtlmISRTPEVTCVVVDVshEDPEVQFKWYVDGVEVHNAKTKLREEQYNSTFRVVSVLTVLHQDwlnGKEYKCKVSNKALPAPIE
+KT-----
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+I 1    *	*	*	*	*	*	*	971	1629	*	*	*	*	*	*	*	*	2587	*	*	1
+       0	*	*	*	*	*	*	3320	0	0	
+
+Q 2    4664	*	4649	3451	*	*	3493	4334	*	3423	*	4537	*	2093	4717	4821	2637	4516	*	4561	2
+       52	*	4821	*	*	*	*	6330	0	0	
+
+R 3    2970	*	3931	3131	*	4664	*	5623	5875	*	*	*	4355	5598	3823	3313	2806	2216	*	5892	3
+       98	*	3932	2585	263	*	0	7758	1000	1113	
+
+T 4    2684	*	*	4619	6439	5117	5004	4137	3431	4483	*	6273	1732	4193	4873	3640	5553	4895	*	*	4
+       21	6091	*	2322	322	*	0	8581	1022	1768	
+
+P 5    5497	*	*	*	*	6571	*	6457	6866	4184	*	*	315	6359	*	6551	4895	4967	*	*	5
+       12	6960	*	0	*	*	0	9013	1000	1768	
+
+K 6    4289	*	4369	3204	6277	*	5785	4711	2844	6165	*	4987	6054	4743	4640	2290	2395	4296	*	*	6
+       71	4678	6836	1585	585	*	0	9017	1513	1768	
+
+I 7    4798	*	*	*	6258	5925	*	3451	6616	3184	4457	*	4393	6445	*	5823	3530	987	6725	*	7
+       0	*	*	*	*	3717	114	8982	0	2171	
+
+Q 8    5301	*	5162	3984	4475	*	3755	5453	3848	3872	*	5453	6228	4759	3643	2317	2866	4181	6919	4338	8
+       10	7155	*	0	*	*	0	9134	1000	2078	
+
+V 9    5898	*	*	*	*	4335	*	2378	*	1881	4437	6389	*	6407	5541	5419	7002	1572	*	6518	9
+       144	7171	3502	0	*	1905	448	9129	1000	2078	
+
+Y 10   5255	7272	*	5152	2094	5109	6731	4927	5571	2591	5291	*	*	4590	5201	3113	3271	6702	*	3014	10
+       696	5038	1504	1000	1000	635	1489	9040	1301	3195	
+
+S 11   4753	5023	*	*	5135	4241	6032	4992	6360	3455	*	4816	1495	5567	6624	2427	4210	6300	6352	6136	11
+       130	4080	5197	1706	528	410	2017	8996	1757	5469	
+
+R 12   4579	5976	5127	5463	6991	5672	3669	6854	3583	3074	5146	5834	2655	3848	3479	3429	5201	4355	*	4593	12
+       35	7026	5945	0	*	1291	758	9349	1000	2533	
+
+H 13   4268	5275	4127	4769	5798	5274	3444	5008	4311	4464	*	4686	2926	5174	4819	2652	4355	3745	6119	4820	13
+       66	5859	5180	0	*	2230	346	9315	1173	2147	
+
+P 14   4969	*	5237	4220	*	5457	*	4727	7619	4674	6548	4720	1626	3715	4692	2654	3905	4550	*	5192	14
+       139	4514	4377	231	2759	3542	129	9266	1497	2287	
+
+A 15   3571	3708	4244	3587	5125	*	*	3748	4656	4034	6964	*	5534	4560	3694	2709	4021	3210	*	5174	15
+       226	3207	4773	660	1445	1803	487	9248	2472	2813	
+
+E 16   5392	*	3321	2513	5301	4258	4595	5989	3441	5034	6706	5722	4233	3944	4316	2461	4694	5243	*	*	16
+       243	2760	7031	1427	671	1791	492	9276	2896	2936	
+
+N 17   4466	*	2632	2926	6631	4086	5469	4203	5081	2769	7141	3797	4191	6876	5908	3980	4175	4787	5876	6810	17
+       296	2988	4072	1412	680	2134	373	9426	2848	2493	
+
+G 18   4525	6794	3851	3293	6816	1628	4905	*	3708	5932	*	3619	4614	4190	5895	3853	4790	*	6787	6765	18
+       193	3332	5267	2756	231	2117	378	9380	2638	2948	
+
+K 19   4273	*	4063	3063	*	2755	4870	5587	3433	5285	5058	4013	6875	3410	3819	3327	3734	*	*	7099	19
+       208	7003	2980	1000	1000	1421	674	9483	1000	2850	
+
+S 20   3586	*	4594	3346	*	5300	5688	5913	3034	5328	5644	3782	3474	4365	4573	3155	2777	5584	5924	*	20
+       134	4399	4597	1238	796	587	1580	9080	1649	4030	
+
+N 21   2649	*	*	*	6796	5284	*	3409	5981	3717	5445	4936	4272	5201	5682	3410	4488	1687	*	5919	21
+       10	7238	*	0	*	1023	977	9313	1000	2637	
+
+F 22   5141	*	6644	4435	4277	5840	4361	4675	4586	4307	6126	4017	6328	5242	5036	3434	1544	4032	7159	5851	22
+       13	*	6847	*	*	2624	255	9499	0	1808	
+
+L 23   4901	*	*	*	4076	*	*	3192	*	801	5251	*	*	*	6518	*	5694	2824	*	5245	23
+       18	*	6302	1585	585	1693	534	9489	1000	1814	
+
+N 24   3601	*	7062	4988	5881	3509	7208	4674	6891	3408	4620	6204	*	5350	3735	4894	2358	2264	6751	5309	24
+       58	5686	5651	604	1548	1583	586	9490	1530	1847	
+
+C 25   5603	152	*	*	*	6880	*	*	*	*	*	*	*	5684	*	4946	7144	*	*	6397	25
+       9	*	7367	0	*	1484	638	9496	1008	1882	
+
+Y 26   5087	*	4698	4405	4217	*	3056	5597	4952	1798	5608	7299	7048	4569	5272	4548	4212	3517	3863	6045	26
+       0	*	*	*	*	*	0	9543	0	1645	
+
+V 27   1370	*	*	*	*	*	*	2870	*	4133	5226	6539	*	*	*	4750	4515	1732	*	*	27
+       0	*	*	*	*	*	0	9543	0	1645	
+
+S 28   4170	*	4510	3759	6016	5531	7160	*	3554	4456	6239	4898	*	4335	3612	2461	2540	4942	5879	3822	28
+       16	6539	*	2642	252	2705	240	9543	1208	1645	
+
+G 29   5164	6128	2179	5114	*	1075	*	*	5111	8437	*	3200	7179	4969	5390	5049	*	*	*	*	29
+       17	7632	7204	0	*	0	*	9508	1000	1528	
+
+F 30   4560	5757	5686	6004	944	5279	6247	5410	*	3646	6188	5911	4619	*	7091	5171	4854	5540	*	3648	30
+       81	4926	5505	661	1443	0	*	9678	1483	1000	
+
+H 31   4479	*	5011	7260	2725	*	5297	6301	3499	5071	6702	6113	3941	4993	4514	3414	4517	5014	6635	1903	31
+       137	4496	4428	487	1804	378	2116	9769	1738	1376	
+
+P 32   6602	*	5976	5951	*	6028	*	6682	6953	5160	6061	*	360	6338	5798	5193	5379	5581	*	*	32
+       23	6785	7283	1000	1000	3098	179	9569	1008	1857	
+
+S 33   2850	7078	3363	4068	6934	4112	6710	*	2839	4723	5542	4810	2978	4861	3685	3214	6453	5894	*	6399	33
+       107	6190	4106	0	*	970	1031	9503	1243	1860	
+
+D 34   3984	*	2321	2766	7302	3461	6232	5381	*	4587	*	3435	4307	4316	5082	3346	4554	4581	*	6937	34
+       126	7425	3686	0	*	1413	680	9517	1000	2363	
+
+I 35   3627	*	5967	*	*	6703	5845	1679	*	2359	6371	6571	4577	*	*	*	4904	2111	6160	5286	35
+       15	*	6571	*	*	1199	825	9550	0	2947	
+
+E 36   3943	*	4968	3408	5227	6937	5602	4851	3602	4922	6016	3215	*	4066	4108	3058	2636	4546	*	4690	36
+       30	*	5581	*	*	1389	694	9507	0	2325	
+
+V 37   *	*	*	*	3384	*	*	1966	*	2595	4400	*	*	7057	*	*	5881	1345	*	5860	37
+       29	5654	*	2000	415	*	0	9482	1219	2302	
+
+D 38   5916	*	5468	3972	6361	5767	4890	4779	3016	7205	4608	5427	6584	4209	3929	2505	2166	5005	*	4589	38
+       25	5881	*	359	2182	1642	557	9482	1292	2302	
+
+L 39   *	5237	*	*	4317	*	*	6853	*	5150	5901	*	*	*	*	*	6412	5716	253	*	39
+       8	*	7527	*	*	*	0	9515	0	1864	
+
+L 40   5520	*	5764	4723	3169	4683	7095	5306	2983	2305	4229	6771	5270	4327	3856	4074	4137	5753	6152	4201	40
+       93	4173	7200	1547	604	3434	140	9524	1769	1961	
+
+K 41   3967	6179	5512	3401	6722	*	4706	5166	2153	5086	7293	5559	6402	4148	2568	5035	5168	3298	5674	4974	41
+       9	7293	*	2744	233	1346	721	9516	1316	1967	
+
+N 42   6168	5973	1977	4315	*	3057	*	5952	3617	6790	7145	1871	6174	5436	5031	4096	5441	*	*	6699	42
+       31	6083	7229	2220	348	*	0	9533	1099	1546	
+
+G 43   6237	6857	4052	3508	*	1231	6982	*	5368	6955	*	3029	4438	4536	5765	3959	5057	5975	5996	7029	43
+       64	4749	7344	1835	475	1893	453	9508	1598	1788	
+
+E 44   3436	*	4925	2650	*	4824	6895	5029	2820	5546	6235	3958	4553	3268	4165	3406	3794	4972	*	*	44
+       162	3866	4730	738	1321	3049	186	9499	2226	1846	
+
+R 45   4158	6712	3751	2701	6820	4753	6713	3882	4037	3701	*	5154	2840	4689	3981	4560	3892	4122	*	6923	45
+       127	3985	5562	910	1096	1479	641	9402	2102	2376	
+
+I 46   5168	6690	5466	5308	6942	6079	7140	2506	4958	1969	5168	7022	6099	3607	5649	4460	4272	2786	*	5228	46
+       358	2284	6106	337	2263	2541	272	9472	4125	2206	
+
+E 47   4159	*	3836	2735	6611	5399	7415	5431	4184	4674	6380	4498	3351	4270	4904	2825	2738	5388	*	6357	47
+       280	2564	7039	288	2465	3507	133	9448	3572	2250	
+
+K 48   3458	*	3288	2803	7138	2356	4858	6700	3523	4134	*	3989	6141	5864	5770	3482	3973	*	*	7134	48
+       282	2879	4589	605	1545	2052	398	9472	3299	2348	
+
+V 49   3352	*	4647	4528	3946	4443	6090	3581	5726	4665	6452	4390	4488	5817	5234	3237	3720	2512	*	4437	49
+       75	5727	4979	395	2063	1047	954	9486	1196	2813	
+
+E 50   4237	7021	4568	2938	6154	4892	7472	4468	4390	6960	5067	4713	3918	3359	3536	3424	2846	4263	*	6594	50
+       115	3895	6750	2478	285	1240	794	9470	2123	2412	
+
+H 51   4766	6609	4322	5878	5008	4664	3903	5114	3933	4829	6373	4120	3809	3138	5396	3461	2557	5206	7096	4452	51
+       47	6253	5726	584	1588	1399	688	9460	1067	2020	
+
+S 52   4917	7117	4500	4374	4887	3066	5532	5311	4935	3521	*	4657	4072	5548	6933	3162	2532	3945	5942	4237	52
+       100	4295	5970	1561	597	1293	757	9586	1748	1870	
+
+D 53   4707	5843	3323	3157	*	3884	*	5187	3449	5302	*	4387	2829	4411	4226	4092	3194	4714	*	5316	53
+       74	5630	5059	1000	1000	1122	888	9462	1345	1846	
+
+L 54   4860	*	5704	4500	5778	*	4432	3471	4498	4682	5685	4754	2513	5588	6160	3241	3381	2853	*	4118	54
+       58	5393	6009	0	*	880	1131	9390	1221	2183	
+
+S 55   4431	6788	4814	3299	5991	*	6930	4958	4690	3260	4685	5808	4111	3923	2885	3854	4765	2860	5192	5555	55
+       132	4411	4635	1967	426	2454	291	9500	1582	1747	
+
+F 56   3735	5433	7409	3872	4903	4655	5811	4399	3842	3359	6636	6192	2126	4503	3357	4266	4573	5949	*	5843	56
+       97	4267	6281	565	1625	460	1874	9467	2072	2189	
+
+S 57   3389	6946	3866	3827	*	4582	5143	5170	4702	5324	5400	2373	4432	3737	4274	3443	4114	5365	6193	5736	57
+       74	4785	6195	1464	649	721	1347	9612	1475	1449	
+
+K 58   3414	7066	4515	2985	7087	2536	5570	6686	3625	5152	6828	3657	4498	4301	6210	2947	4240	5488	*	7038	58
+       98	5092	4792	462	1869	1298	753	9573	1477	1473	
+
+D 59   5534	6562	1619	3682	*	3311	4968	*	3520	6838	*	3109	5896	4373	*	3684	4328	5969	*	6467	59
+       58	*	4657	1000	1000	841	1178	9494	1000	1747	
+
+W 60   5942	*	4675	5154	8165	1229	6417	6571	3349	4957	5610	4065	6594	*	4275	3672	5486	7885	4189	4970	60
+       140	4497	4366	678	1416	654	1456	9541	1770	1956	
+
+S 61   4332	6826	5248	5693	5956	4260	7299	6677	4196	3366	5242	4617	6698	6324	5336	2362	1595	6163	*	7295	61
+       31	7017	6195	0	*	1375	702	9480	1000	2218	
+
+F 62   4562	4272	*	5654	2008	*	5997	5901	4683	4929	*	5322	*	6758	6590	*	4587	5624	6026	1281	62
+       122	7322	3743	2585	263	1607	574	9485	1000	2030	
+
+Y 63   5453	6483	5247	5456	4633	5076	3935	6646	5593	4785	4926	4887	*	2739	3910	2019	3184	5237	7023	4621	63
+       61	4587	*	1900	450	2255	339	9362	1471	2821	
+
+L 64   3175	6114	*	6451	6576	6926	*	2788	3967	3312	3736	*	6667	4553	5759	3604	2667	3070	5444	7035	64
+       37	5285	*	769	1276	1273	771	9395	1226	2668	
+
+L 65   6220	*	*	5330	4031	6618	4245	5008	7019	3548	7197	7323	4560	4801	3530	2627	3011	3103	3654	4218	65
+       14	*	6709	1585	585	768	1276	9463	1000	1965	
+
+Y 66   4250	6665	6036	6267	*	6098	4947	4516	4574	4619	*	4901	5891	5368	5018	1065	4079	3638	*	6265	66
+       70	5440	5355	1000	1000	2323	322	9504	1255	1521	
+
+Y 67   4553	6190	4512	5712	4659	*	5135	2973	5509	3583	4327	*	4786	3935	3783	3319	3482	4056	5264	3644	67
+       14	6739	*	0	*	1462	651	9459	1036	1808	
+
+T 68   4581	5247	7355	6897	6088	6366	6177	3875	5669	1115	6328	6759	5489	6893	4662	4858	4890	3178	5334	4979	68
+       10	7153	*	2322	322	1142	871	9500	1000	1473	
+
+E 69   4637	*	4147	3130	7154	6963	6963	4904	3464	3946	5625	3830	4083	6631	3427	3363	2720	5316	5283	5334	69
+       46	7650	5248	1585	585	*	0	9517	1081	1325	
+
+F 70   5467	*	*	5649	4029	5184	6947	2145	7080	2511	5336	*	*	6807	6671	4492	4466	1709	*	6304	70
+       17	6398	*	1585	585	2473	287	9443	1029	1786	
+
+T 71   4546	5913	3292	5549	5360	5267	6771	5431	5668	4422	*	3589	3061	4466	5759	2731	2346	4207	*	*	71
+       45	5580	6625	1028	972	*	0	9460	1239	1626	
+
+P 72   3178	*	5463	4202	7081	5407	5093	*	2968	4595	*	6563	2463	4587	3924	2859	3890	5673	4558	5940	72
+       278	2513	*	1553	601	*	0	9440	3422	1773	
+
+T 73   3702	*	3237	2822	*	3350	6562	5354	3511	7211	5785	3616	6138	3803	4603	2940	3872	6520	6383	*	73
+       268	2559	*	1901	449	583	1588	9433	3644	1773	
+
+E 74   5062	4860	2110	2344	*	5021	5524	6719	4009	4914	*	4590	4790	3659	5037	3164	5661	6961	6693	6221	74
+       407	2088	6560	1557	599	*	0	9490	4267	1170	
+
+K 75   3300	7120	4130	3093	6680	1774	6336	6951	3758	*	6798	3754	5255	4552	4899	4204	4635	7209	4895	*	75
+       49	5150	7598	1333	730	2977	196	9407	1345	1677	
+
+D 76   3474	*	3329	4123	*	2760	5242	5918	2807	5244	5260	3535	*	4065	4854	4129	3565	4816	*	6737	76
+       22	6043	*	1673	543	2644	251	9402	1278	1708	
+
+E 77   4599	*	5225	2773	*	5423	7451	5363	3220	3686	5991	3849	5284	4805	4249	3706	2546	3543	6115	*	77
+       50	5548	6288	1481	640	*	0	9404	1218	1577	
+
+Y 78   *	6607	*	*	2156	*	4116	3493	6435	5038	4632	*	*	*	7110	6163	6236	3902	6787	1231	78
+       22	6037	*	1175	844	3215	164	9356	1263	2011	
+
+A 79   5189	*	5325	6239	*	6857	5461	4468	3310	6150	5409	7202	*	4188	4771	2403	1710	4142	5419	4430	79
+       43	5082	*	1467	648	1349	719	9371	1324	2022	
+
+C 80   6254	221	*	6671	*	*	*	5989	*	5779	*	*	*	6816	5915	4870	5919	6803	*	*	80
+       0	*	*	*	*	2744	233	9504	0	1704	
+
+R 81   5207	5916	6196	2773	5377	5933	4573	3422	3721	4437	4787	4766	6198	3794	3123	4725	4193	3155	*	5611	81
+       8	*	7558	*	*	*	0	9523	0	1583	
+
+V 82   2508	*	*	5814	3986	4969	*	4708	*	5107	6770	5931	5925	*	6600	5237	5912	866	*	*	82
+       39	6735	5843	1585	585	*	0	9536	1000	1714	
+
+N 83   4845	*	4238	2804	6012	5077	5475	4788	2793	5365	*	5180	*	3026	4243	2890	2913	*	6787	5887	83
+       0	*	*	603	1550	2134	373	9563	1126	1991	
+
+H 84   *	*	*	5788	*	4240	838	6401	*	4513	6899	2845	4663	5648	5133	5844	5903	6904	5865	5719	84
+       75	4573	6863	2613	258	2684	244	9488	1506	1745	
+
+V 85   3397	*	4300	2279	6652	3848	6354	4592	3382	6557	6070	5639	3406	5158	3929	3269	4776	5416	6212	6855	85
+       38	6053	6522	2544	271	1456	654	9244	1414	1767	
+
+T 86   2650	*	4314	4145	6556	2125	*	*	4912	5817	*	3635	4142	*	5780	2550	4168	5106	4959	*	86
+       42	5109	*	564	1627	2266	336	9115	1187	1594	
+
+L 87   5522	*	5661	5384	4850	3826	6548	5633	4882	1457	5083	4268	*	5137	5451	2725	4007	5033	*	5403	87
+       102	4077	6780	2359	313	810	1219	8942	1512	1445	
+
+S 88   4533	*	5026	3196	*	4475	3681	6465	2964	5203	*	3829	3507	3416	5363	2838	3773	4710	*	*	88
+       139	3662	6313	455	1886	1698	532	8843	1768	1226	
+
+Q 89   3492	*	3753	3102	6424	5282	*	4519	3033	4553	6437	5596	*	3013	4277	3353	2801	5281	*	*	89
+       49	4891	*	766	1280	1503	628	8660	1449	1251	
+
+P 90   5733	*	3474	4477	5085	*	6093	*	3671	4614	*	6350	1369	6190	6325	3191	3547	5946	*	4443	90
+       19	6259	*	0	*	*	0	8578	1000	1113	
+
+K 91   5005	*	*	5926	4424	*	4827	2161	3171	2160	4587	5896	6004	4654	6072	*	4289	3119	*	5853	91
+       55	4743	*	2322	322	0	*	8483	1219	1113	
+
+I 92   4680	*	6352	3843	5930	5884	*	3064	3373	3513	6368	6249	*	5892	3403	2990	2491	3298	*	*	92
+       52	4823	*	1801	488	*	*	8567	1139	0	
+
+V 93   3659	5779	*	3304	5596	*	5955	3770	3517	2563	*	*	*	3698	3312	5949	3961	2953	*	4398	93
+       35	*	5367	*	*	*	*	8410	0	0	
+
+K 94   *	*	4444	5348	*	5457	3695	5227	3153	*	4442	3988	4283	4443	2861	3200	2674	*	*	3630	94
+       0	*	*	*	*	*	0	7771	0	1113	
+
+W 95   4903	*	*	*	3143	*	4309	4444	*	2570	*	*	4136	*	4324	*	*	3217	1418	*	95
+       46	4997	*	1262	778	0	*	7404	1280	1113	
+
+D 96   4110	*	2059	2398	*	4950	5224	*	2637	*	*	5046	*	*	4163	3665	3859	4092	*	*	96
+       0	*	*	*	*	*	*	7193	0	0	
+
+R 97   4234	*	3514	*	*	3511	*	*	4520	*	*	*	1075	*	2738	*	*	3276	*	*	97
+       0	*	*	*	*	*	*	5977	0	0	
+
+D 98   3309	*	3276	3407	*	*	3076	*	3132	*	*	3332	*	*	*	1436	*	*	*	*	98
+       0	*	*	*	*	*	*	4078	0	0	
+
+M 99   *	*	*	*	*	*	*	*	*	1146	1805	*	*	*	*	*	*	1932	*	*	99
+       0	*	*	0	*	*	*	2405	0	0	
+
+//
+�HHsearch 1.5
+NAME  b94e58bdb4361ef7c1237e2f79e9939a
+FAM   
+FILE  b94e58bdb4361ef7c1237e2f79e9939a
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:39:46 2013
+LENG  131 match states, 131 columns in multiple alignment
+FILT  70 out of 72 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  3.9 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCEEECCCEECCCEECCCCCCCCCCCCCHHHHHHHCCCCCCCHHHHHHHHHHHHHCCHHHHHHHCHHHHHHHHCCCCCCCCHHHHHCCCCEEEEEE
+EEHHHCCCCEEEECCEEECCCCCCCHHCCCC
+>ss_conf PSIPRED confidence values
+9999945744473877745265788789978689999866984788899999999998319999998489889999779999898899718831699885
+2222048825761047882854112001488
+>Consensus
+pRxxPGvvtGxGxxvxxxWlxxaxxxxGapIPxqIAdkLrGrxFxsFdxFRxafWxeVsxDpeLxxQFxxxNxxxmkxGxAPxaxxxexvGxrxkxelHH
+xxxIxxGGxVYdlDNLxixTPkxHixihxxx
+>b94e58bdb4361ef7c1237e2f79e9939a
+MRNKPGKATGKGKPVNNKWLNNAGKDLGSPVPDRIANKLRDKEFKSFDDFRKKFWEEVSKDPELSKQFSRNNNDRMKVGKAPKTRTQDVSGKRTSFELHH
+EKPISQNGGVYDMDNISVVTPKRHIDIHRGK
+>gi|339489891|ref|YP_004704419.1| HNH endonuclease:S-type Pyocin [Pseudomonas putida S16]gi|338840734|gb|AEJ15539.1| HNH endonuclease:S-type Pyocin [Pseudomonas putida S16]
+PRNLPGVASGNGVITPDRVLDAATTAAGAPIPAKIAERLRGRRFARFDRLKEAIWMEIATDEVFSRHIMPAILDDMRRGLAPFAKRDQRVGKRVKLEIHH
+KHEIAKGGAVYDFDNLVFMTPQVHINHHRG-
+>gi|300938507|ref|ZP_07153246.1| type VI secretion system effector, Hcp1 family [Escherichia coli MS 21-1]gi|300456530|gb|EFK20023.1| type VI secretion system effector, Hcp1 family [Escherichia coli MS 21-1]
+PRKLPGVVTGRGVPLspGTRWLGmsVSNNGNGAPIPAHIADKLRGREFKTFDEFREALWLEVSQDPELIAQFSSGNQTRIKQGLTQKHHLKvGIMALKks
+lKNSRYIIVLQLNMAAAYTILIIYELLPPdytmRFTTGDKY--
+>gi|311033214|ref|ZP_07711304.1| YeeF [Bacillus sp. m3-13]
+-RHTPGVATTNKVSNAKVIMRGTDGNAGV-VPKEVADRLKGKSFKNFDAFRSEFWKTVSTS-SYAGEFSSANIKRMEKGFAPIAPKSQHYGKQKSYVLHH
+LTPINHGGGVYDIDNLLIVSPRLHQDIL---
+>gi|167035534|ref|YP_001670765.1| S-type pyocin [Pseudomonas putida GB-1]gi|166862022|gb|ABZ00430.1| S-type pyocin [Pseudomonas putida GB-1]
+---------------------------ASHLPEFIIQKLAGRTFHSFDHFSQSFWLAIAEDPIYSQQFIPAQLNRLKKGWPPRAPFHETAKGLRSYQLCH
+LNPPEWGGLMYDAENLRIMSA----------
+>gi|167036364|ref|YP_001671595.1| S-type pyocin domain-containing protein [Pseudomonas putida GB-1]gi|166862852|gb|ABZ01260.1| S-type Pyocin domain protein [Pseudomonas putida GB-1]
+----TGVVSGNGQVAGADWWPANGAAAGVAMPVQVGNQLRGRLFTGMPAFESAVWRAIAAEQGLLGQFDEVNQRRIIRGFPPVAPRASWSGARHEFELRH
+VGAVDVGSGLYNLDQLRIHTPAD--------
+>gi|300724110|ref|YP_003713427.1| hypothetical protein XNC1_3257 [Xenorhabdus nematophila ATCC 19061]gi|297630644|emb|CBJ91309.1| hypothetical protein XNC1_3257 [Xenorhabdus nematophila ATCC 19061]
+--------------------------------------------TPLDKFREDIWRAVEKDPTLKQNLKtKANKKAIEKGKAPFVRKKDQVGGRKKLELH
+HIAAIL--------------------------
+>gi|238786554|ref|ZP_04630416.1| klebicin D activity protein [Yersinia bercovieri ATCC 43970]gi|238712540|gb|EEQ04690.1| klebicin D activity protein [Yersinia bercovieri ATCC 43970]
+-----------------------------------------------------------------GQFNIVNKVEMINYRAPYPPAIEKVGGRKKYEIHH
+IKFIKMGVK----------------------
+>gi|108806970|ref|YP_650886.1| hypothetical protein YPA_0973 [Yersinia pestis Antiqua]gi|108778883|gb|ABG12941.1| conserved hypothetical protein [Yersinia pestis Antiqua]
+---------------------------------------------QFRGMRSKFLKSISDNPEVKKRFDSATLADLANGKAPK-----------GWDVHH
+KLPLDDSGT-NDVGNLVLI------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	2533	4428	5476	*	452	*	5191	*	*	*	*	*	1
+       0	*	*	*	*	*	*	3313	0	0	
+
+R 2    *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	2
+       0	*	*	*	*	*	*	3440	0	0	
+
+N 3    *	*	1976	4737	*	*	4280	*	2626	4697	*	2054	*	5661	*	3129	*	*	*	3621	3
+       0	*	*	*	*	*	*	3440	0	0	
+
+K 4    *	*	4126	2489	*	*	*	3129	2980	2342	3786	5590	*	4193	*	4522	3258	5041	*	*	4
+       0	*	*	*	*	*	*	3440	0	0	
+
+P 5    4378	*	*	*	*	*	*	*	*	*	*	*	209	*	*	4884	4234	*	*	*	5
+       0	*	*	*	*	*	*	3562	0	0	
+
+G 6    *	5879	*	*	*	25	*	*	*	*	*	*	*	*	*	*	*	*	*	*	6
+       0	*	*	*	*	*	*	3562	0	0	
+
+K 7    4774	*	*	6275	*	*	*	4141	3092	*	*	*	*	5642	*	*	1978	992	*	*	7
+       0	*	*	*	*	*	*	3562	0	0	
+
+A 8    1309	*	*	*	*	*	*	4992	*	*	*	*	*	*	*	5086	*	901	*	*	8
+       0	*	*	*	*	*	*	3562	0	0	
+
+T 9    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1378	701	*	*	*	9
+       0	*	*	*	*	*	*	3562	0	0	
+
+G 10   *	*	*	*	*	224	*	*	*	*	*	*	*	*	*	3127	5093	*	*	*	10
+       0	*	*	*	*	*	*	3562	0	0	
+
+K 11   *	*	*	*	5421	*	3711	4908	2177	*	*	2407	*	3937	3261	3208	5886	4095	*	3264	11
+       0	*	*	*	*	*	*	3562	0	0	
+
+G 12   *	*	*	*	3590	224	*	4992	5093	*	*	*	*	*	*	*	*	*	*	*	12
+       125	3590	*	1820	480	*	*	3562	1147	0	
+
+K 13   5086	*	*	1710	*	*	*	*	3251	4604	*	4142	*	1890	*	*	5886	2511	*	*	13
+       46	4992	*	2322	322	*	*	3562	1018	0	
+
+P 14   3533	*	3572	5974	*	4604	*	4256	3826	*	*	4381	2154	3804	2986	4197	4242	3800	*	*	14
+       62	4577	*	1585	585	*	*	3562	1048	0	
+
+V 15   4234	*	*	4992	*	*	*	2790	*	2750	*	5093	*	*	*	*	3092	1072	*	*	15
+       200	2948	*	1000	1000	*	*	3562	1247	0	
+
+N 16   4566	*	*	4947	5034	1629	*	*	*	*	*	4403	4868	3590	*	2165	2443	*	*	*	16
+       0	*	*	*	*	*	*	3562	0	0	
+
+N 17   3203	*	2469	*	*	1362	*	*	2862	*	*	3768	*	*	*	5789	3429	*	*	*	17
+       28	5711	*	1000	1000	*	*	3562	1000	0	
+
+K 18   *	*	4234	*	*	4573	*	2513	2585	4884	*	2988	5711	*	2610	4828	3475	3394	*	*	18
+       0	*	*	*	*	*	*	3562	0	0	
+
+W 19   *	*	*	*	*	*	*	5093	*	3590	*	*	*	*	*	*	*	4868	229	*	19
+       0	*	*	*	*	*	*	3562	0	0	
+
+L 20   *	*	*	*	4897	*	*	*	*	466	2634	*	*	*	5100	*	*	*	4258	*	20
+       0	*	*	*	*	*	*	3563	0	0	
+
+N 21   2403	*	2397	5809	*	2372	*	*	3552	*	*	5197	4258	*	3587	3638	*	*	*	3613	21
+       164	3217	*	1000	1000	*	*	3563	1206	0	
+
+N 22   2636	*	2998	4204	*	1709	5495	*	4589	6035	*	3375	*	5770	*	5760	5738	3024	*	*	22
+       0	*	*	*	*	*	*	3563	0	0	
+
+A 23   943	*	4599	*	*	*	*	*	4195	*	*	4258	4764	*	4250	3034	3054	*	*	*	23
+       26	*	5809	*	*	*	*	3563	0	0	
+
+G 24   3604	*	5079	*	*	1289	5299	*	*	*	*	2497	*	*	5482	3187	2794	*	*	*	24
+       0	*	*	2322	322	*	0	3556	1000	1000	
+
+K 25   2777	*	*	4867	*	3732	*	*	2434	*	*	3240	*	3150	3283	3109	3030	*	*	*	25
+       194	*	2991	1000	1000	0	*	3566	1000	1000	
+
+D 26   2699	*	2726	3973	*	1257	*	*	*	4863	*	3748	*	5648	*	3575	*	*	*	*	26
+       0	*	*	*	*	0	*	3427	0	1258	
+
+L 27   2876	*	4242	2989	*	*	*	3287	*	2398	3898	2432	*	3661	*	4025	*	*	*	*	27
+       0	*	*	*	*	*	*	3578	0	0	
+
+G 28   3891	*	*	*	*	217	*	*	*	*	*	*	4320	*	*	5480	*	*	*	*	28
+       0	*	*	*	*	*	*	3706	0	0	
+
+S 29   721	*	*	*	*	*	*	4874	*	5965	*	*	*	*	*	3119	4949	2355	*	*	29
+       183	*	3072	*	*	*	*	3645	0	0	
+
+P 30   3545	*	*	*	*	*	4117	*	5501	*	*	*	332	*	*	4626	*	*	*	*	30
+       0	*	*	*	*	0	*	3479	0	1327	
+
+V 31   *	*	*	*	5497	*	*	447	*	4348	4410	*	*	*	*	*	*	2753	*	*	31
+       0	*	*	*	*	*	*	3645	0	0	
+
+P 32   *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	32
+       0	*	*	*	*	*	*	3645	0	0	
+
+D 33   2105	*	4385	4348	*	*	*	*	3631	*	*	*	*	3701	*	1557	3104	4140	*	*	33
+       0	*	*	*	*	*	*	3645	0	0	
+
+R 34   5132	*	*	3369	4348	*	2717	*	4952	*	*	*	*	1071	3753	3455	*	*	*	*	34
+       0	*	*	*	*	*	*	3645	0	0	
+
+I 35   *	*	*	*	*	*	*	335	*	*	*	*	*	*	*	*	*	2271	*	*	35
+       0	*	*	*	*	*	*	3645	0	0	
+
+A 36   307	*	*	*	*	4410	*	4348	*	*	*	*	*	*	3655	*	*	5963	*	*	36
+       0	*	*	*	*	*	*	3645	0	0	
+
+N 37   *	*	584	2694	*	*	*	*	*	*	*	2954	*	4348	*	*	*	*	*	*	37
+       0	*	*	*	*	*	*	3645	0	0	
+
+K 38   *	*	*	*	*	*	*	*	565	5452	*	*	*	2407	3438	5615	*	*	*	*	38
+       0	*	*	*	*	*	*	3645	0	0	
+
+L 39   *	*	*	*	*	*	*	*	*	25	5845	*	*	*	*	*	*	*	*	*	39
+       0	*	*	*	*	*	*	3623	0	0	
+
+R 40   4330	*	*	*	*	*	*	5022	4720	*	*	5676	*	*	368	4681	*	4377	*	*	40
+       0	*	*	*	*	*	*	3623	0	0	
+
+D 41   *	*	4061	*	*	146	*	*	*	*	*	*	*	*	*	4771	*	*	*	*	41
+       0	*	*	*	*	*	*	3623	0	0	
+
+K 42   *	*	*	*	*	5439	*	*	1794	*	*	*	*	4974	652	*	*	5624	*	*	42
+       0	*	*	*	*	*	*	3637	0	0	
+
+E 43   6089	*	*	1419	*	*	*	*	3975	4439	*	6000	4422	*	2416	2943	3217	*	6123	*	43
+       0	*	*	*	*	*	*	3637	0	0	
+
+F 44   *	*	*	*	52	*	*	*	*	*	*	*	*	*	*	*	*	*	*	4828	44
+       0	*	*	*	*	*	*	3637	0	0	
+
+K 45   3639	*	5591	*	*	3799	4360	*	2063	*	*	2929	*	*	3911	2108	3479	*	*	5662	45
+       0	*	*	*	*	*	*	3650	0	0	
+
+S 46   *	*	4509	*	*	4503	5122	*	*	*	*	2137	6030	4316	5043	1203	2993	*	*	*	46
+       0	*	*	*	*	*	*	3711	0	0	
+
+F 47   *	*	*	*	136	*	*	*	*	6030	4503	*	*	*	*	*	*	*	5023	*	47
+       0	*	*	*	*	*	*	3711	0	0	
+
+D 48   5167	*	460	*	*	4181	*	*	*	5712	*	6224	4186	*	3288	*	*	*	*	*	48
+       0	*	*	*	*	*	*	3686	0	0	
+
+D 49   2553	*	2124	2408	*	4997	3693	*	3350	*	*	*	*	6195	3539	3414	*	*	6425	*	49
+       0	*	*	*	*	*	*	3686	0	0	
+
+F 50   *	*	*	*	282	*	*	*	*	3140	4997	*	*	5778	*	6077	*	*	*	*	50
+       0	*	*	*	*	*	*	3686	0	0	
+
+R 51   *	6179	*	4529	*	*	*	*	5054	*	*	*	*	*	290	3724	5712	*	*	*	51
+       0	*	*	*	*	*	*	3686	0	0	
+
+K 52   3715	*	5712	1495	*	*	*	*	2281	*	*	*	*	4371	2736	2779	*	*	*	*	52
+       0	*	*	0	*	*	*	3686	1000	0	
+
+K 53   675	*	5051	3301	*	5077	*	*	3953	*	*	*	*	4306	*	4071	5225	6523	*	*	53
+       0	*	*	*	*	*	*	3712	0	0	
+
+F 54   *	*	*	*	614	*	*	3249	*	2614	*	*	*	*	*	*	5341	4222	*	*	54
+       0	*	*	*	*	*	*	3712	0	0	
+
+W 55   *	*	*	*	*	*	*	*	*	4983	*	*	*	*	*	*	*	*	46	*	55
+       0	*	*	*	*	*	*	3712	0	0	
+
+E 56   4531	*	*	3865	*	*	*	4797	1467	1956	3711	*	*	4772	3646	*	5303	*	*	6116	56
+       0	*	*	*	*	*	*	3876	0	0	
+
+E 57   1676	6001	5763	1013	*	*	*	*	*	*	*	*	*	*	*	4865	3612	4593	*	*	57
+       0	*	*	*	*	*	*	3876	0	0	
+
+V 58   5797	*	*	*	*	*	*	2496	*	6302	5126	*	*	*	*	*	*	389	*	*	58
+       0	*	*	*	*	*	*	4021	0	0	
+
+S 59   1322	*	*	5772	*	2612	*	*	*	*	*	*	6285	*	*	1303	*	*	*	*	59
+       98	*	3930	*	*	*	*	4021	0	0	
+
+K 60   3500	*	3098	3235	*	*	5292	*	2188	*	*	2328	*	2719	6132	5308	4234	*	*	*	60
+       0	*	*	*	*	0	*	4033	0	1193	
+
+D 61   *	5419	340	3964	*	*	*	*	*	*	*	4269	*	*	*	6201	6148	*	*	4545	61
+       41	*	5146	*	*	*	*	4021	0	0	
+
+P 62   *	*	*	4912	*	*	*	*	*	5128	*	*	536	3823	*	2769	5000	*	*	*	62
+       0	*	*	0	*	0	*	4014	1000	1072	
+
+E 63   3709	*	3774	991	*	4549	*	4609	4880	*	*	5933	*	*	5797	3587	4608	3816	*	*	63
+       0	*	*	*	*	*	*	4021	0	0	
+
+L 64   5801	*	*	*	4951	*	*	5702	*	402	*	*	*	*	*	*	*	4220	*	3057	64
+       0	*	*	*	*	*	*	4021	0	0	
+
+S 65   2962	*	*	*	6269	4951	*	2627	3841	3169	5295	*	*	*	*	1374	*	3791	*	*	65
+       0	*	*	*	*	*	*	4073	0	0	
+
+K 66   2660	*	*	3250	*	2767	*	*	1732	*	*	4631	*	3334	3433	4498	6350	*	*	*	66
+       0	*	*	*	*	*	*	4147	0	0	
+
+Q 67   *	*	6359	3741	*	5867	4158	*	*	*	*	3993	*	476	4608	*	*	*	*	5858	67
+       0	*	*	*	*	*	*	4147	0	0	
+
+F 68   *	*	*	*	205	*	*	4987	*	3311	*	*	*	*	*	*	*	*	*	*	68
+       0	*	*	*	*	*	*	4147	0	0	
+
+S 69   *	*	2877	*	*	4323	*	3441	2556	*	4987	2632	*	*	6144	1826	4367	*	*	6115	69
+       29	5669	*	0	*	*	*	4147	1010	0	
+
+R 70   5507	*	*	2593	6925	5270	*	5277	3655	*	*	4505	2302	3677	3346	2164	5237	*	*	*	70
+       0	*	*	*	*	*	*	4147	0	0	
+
+N 71   1983	*	4514	*	6234	2369	4413	6252	*	4787	4344	3787	*	4186	4168	3275	*	3952	*	*	71
+       0	*	*	*	*	*	*	4199	0	0	
+
+N 72   *	*	5014	*	*	*	*	5027	*	*	*	406	*	4784	*	3224	4627	*	*	*	72
+       0	*	*	*	*	*	*	4199	0	0	
+
+N 73   4779	*	*	*	*	*	*	2819	2923	1750	6032	5229	*	1972	3753	*	*	5532	*	*	73
+       0	*	*	*	*	*	*	4199	0	0	
+
+D 74   3423	*	4570	3310	5232	3853	*	5437	3535	6252	5454	3681	*	5062	3963	3588	2241	4696	*	5832	74
+       0	*	*	*	*	*	*	4199	0	0	
+
+R 75   6063	*	3384	3978	5087	*	*	5423	*	2542	*	3398	*	5927	1248	4802	6232	6414	6979	*	75
+       0	*	*	*	*	*	*	4199	0	0	
+
+M 76   *	*	*	*	*	*	*	1518	*	3345	1128	*	*	*	*	*	6862	3532	*	*	76
+       0	*	*	*	*	*	*	4388	0	0	
+
+K 77   4043	*	*	5125	*	6551	*	4407	982	5155	5634	*	6567	6628	2878	2944	6418	*	*	*	77
+       20	6218	*	0	*	*	*	4352	1025	0	
+
+V 78   5137	*	3994	3945	*	5263	6774	*	2259	4837	6416	2383	*	2169	3326	5924	*	5450	*	*	78
+       0	*	*	*	*	*	*	4352	0	0	
+
+G 79   *	*	*	*	*	129	*	*	4853	*	*	*	*	*	5359	6353	*	*	*	6145	79
+       0	*	*	*	*	*	*	4352	0	0	
+
+K 80   *	*	*	*	3369	5043	*	*	1765	1963	*	4155	*	*	2745	*	5992	*	4862	3906	80
+       0	*	*	*	*	*	*	4352	0	0	
+
+A 81   744	*	*	*	*	*	*	4629	*	*	*	*	3892	*	*	2463	3364	5898	*	*	81
+       0	*	*	*	*	*	*	4352	0	0	
+
+P 82   4315	*	*	*	*	*	*	*	*	*	*	*	259	3759	*	4635	*	*	*	*	82
+       0	*	*	*	*	*	*	4352	0	0	
+
+K 83   6453	*	*	*	2291	*	4839	4534	2040	6379	*	*	*	*	3353	4966	4656	4482	6302	2159	83
+       78	*	4244	*	*	*	*	4352	0	0	
+
+T 84   1243	*	*	*	*	*	3635	*	*	*	*	*	3429	*	*	3633	3033	2312	*	*	84
+       0	*	*	*	*	2741	234	4273	0	1142	
+
+R 85   5698	*	5111	*	6554	*	3636	3873	3524	5111	*	6766	1369	*	1932	*	*	5795	*	*	85
+       0	*	*	*	*	*	0	4272	0	1114	
+
+T 86   3978	*	6168	3195	3368	6295	*	5308	2507	2346	*	6839	3706	*	3105	4091	5420	5482	*	*	86
+       0	*	*	*	*	*	0	4272	0	1114	
+
+Q 87   3254	5695	4216	3003	*	*	4518	4319	3021	4772	*	4909	5284	4845	3872	2187	4495	5821	*	*	87
+       270	2647	6511	0	*	*	0	4183	1328	1114	
+
+D 88   *	*	1966	1345	*	3417	5240	*	*	*	*	*	*	2945	*	4873	*	*	4247	6177	88
+       0	*	*	*	*	*	0	4183	0	1142	
+
+V 89   5817	*	*	*	*	*	2646	3651	3758	*	*	*	*	1827	2841	3916	3812	6385	4151	4578	89
+       0	*	*	*	*	*	0	4183	0	1142	
+
+S 90   2848	*	5684	*	*	6406	6132	3958	*	5139	3651	*	*	*	6388	4439	*	1244	*	2617	90
+       20	6158	*	0	*	*	0	4183	1000	1142	
+
+G 91   3651	*	*	*	*	272	*	*	4513	6132	*	5328	*	*	*	6741	*	*	*	*	91
+       0	*	*	*	*	*	0	4183	0	1142	
+
+K 92   4414	*	6614	4577	*	1692	*	*	1756	3651	*	5207	3658	6202	5012	3948	*	*	*	*	92
+       26	*	5800	*	*	*	0	4183	0	1142	
+
+R 93   *	*	*	*	*	*	4229	*	2404	4066	*	5155	*	4434	726	*	*	5712	*	*	93
+       230	2765	*	1928	440	1362	711	4145	1328	1191	
+
+T 94   *	*	5333	3307	*	5247	4477	4572	1756	5325	*	5192	*	4402	3599	5716	3596	2590	6075	*	94
+       15	6607	*	2296	329	0	*	4190	1026	1098	
+
+S 95   6461	*	*	4354	*	4418	*	*	1318	*	*	3713	6454	5086	3793	2567	3740	4087	*	*	95
+       20	6177	*	1585	585	*	*	4333	1000	0	
+
+F 96   *	*	*	*	1351	*	4766	4381	*	4107	*	*	*	*	*	3713	6598	6317	5070	1572	96
+       0	*	*	*	*	*	*	4333	0	0	
+
+E 97   *	*	4488	650	*	*	5042	4158	*	*	*	*	*	3063	3773	*	*	4673	*	*	97
+       0	*	*	*	*	*	*	4259	0	0	
+
+L 98   *	5365	*	*	*	*	*	1427	*	1046	5999	*	*	*	*	*	*	5019	*	3773	98
+       0	*	*	*	*	*	*	4259	0	0	
+
+H 99   *	4574	5216	*	*	*	382	3773	*	*	*	*	6151	*	4934	*	*	*	*	4508	99
+       0	*	*	*	*	*	*	4259	0	0	
+
+H 100  *	*	*	*	*	*	110	3773	*	*	*	*	*	*	*	*	*	*	*	*	100
+       0	*	*	*	*	*	*	4259	0	0	
+
+E 101  *	5999	4613	5291	6207	*	*	3250	1939	3560	*	4681	*	*	5648	5124	*	1449	*	*	101
+       0	*	*	*	*	*	*	4259	0	0	
+
+K 102  6032	*	3899	3633	*	4418	3969	3841	2357	3265	*	3513	*	3251	*	*	4957	2915	*	*	102
+       0	*	*	*	*	*	*	4259	0	0	
+
+P 103  2624	*	*	2641	4715	*	5708	*	6151	4732	*	*	1572	3281	4863	5528	5365	*	5349	5356	103
+       0	*	*	*	*	*	*	4259	0	0	
+
+I 104  *	*	*	*	*	*	*	555	*	3042	5365	*	4574	*	*	*	*	2926	*	*	104
+       0	*	*	*	*	*	*	4259	0	0	
+
+S 105  3681	*	3696	2600	*	*	4209	*	3023	6032	*	3106	*	3492	*	1974	6399	5940	*	*	105
+       0	*	*	*	*	*	*	4259	0	0	
+
+Q 106  *	6098	2931	3002	*	*	4169	*	3137	*	3533	3548	5983	2937	4396	5125	*	4835	4588	3488	106
+       0	*	*	*	*	*	*	4221	0	0	
+
+N 107  3501	*	5166	6186	*	462	*	*	*	*	*	3908	*	*	5942	4033	*	*	*	*	107
+       0	*	*	*	*	*	*	4221	0	0	
+
+G 108  3786	*	*	*	*	187	*	*	*	*	*	*	*	*	*	4835	*	6171	*	*	108
+       0	*	*	*	*	*	*	4221	0	0	
+
+G 109  1670	*	2979	2557	*	2583	*	*	4779	4588	6157	5385	*	*	*	4051	4447	*	*	*	109
+       46	*	4998	*	*	*	*	4221	0	0	
+
+V 110  *	*	*	*	*	*	*	3916	*	4203	4681	*	*	*	*	*	*	392	*	3677	110
+       0	*	*	*	*	0	*	4056	0	1070	
+
+Y 111  *	*	*	*	4235	*	*	*	*	*	5181	4770	*	*	*	*	3812	*	*	301	111
+       0	*	*	*	*	*	*	4153	0	0	
+
+D 112  *	*	732	*	*	*	4521	3812	*	*	*	1820	*	*	*	*	*	*	*	*	112
+       0	*	*	*	*	*	*	4153	0	0	
+
+M 113  4635	*	*	*	4645	*	*	2052	*	1691	2721	*	*	*	*	*	*	2201	*	*	113
+       0	*	*	*	*	*	*	4153	0	0	
+
+D 114  *	*	352	3800	*	4370	*	3812	*	*	*	5320	*	*	*	*	*	*	*	*	114
+       0	*	*	*	*	*	*	4153	0	0	
+
+N 115  *	*	*	*	*	*	*	3812	*	*	*	165	*	4763	*	*	*	*	*	*	115
+       0	*	*	*	*	*	*	4153	0	0	
+
+I 116  *	*	*	*	6273	*	*	2446	*	637	4039	*	6171	*	*	*	*	6017	*	3830	116
+       0	*	*	*	*	*	*	4073	0	0	
+
+S 117  *	6046	*	3830	*	4951	6498	3004	5250	4951	6403	4085	*	*	1163	5743	*	2717	*	*	117
+       0	*	*	*	*	*	*	4073	0	0	
+
+V 118  3978	*	*	*	4965	*	*	950	*	3214	*	*	*	*	*	*	*	1841	*	*	118
+       0	*	*	*	*	*	*	4027	0	0	
+
+V 119  4727	*	*	*	*	*	4111	4275	*	2434	2407	4367	*	*	5043	*	3150	1798	*	*	119
+       0	*	*	*	*	*	*	4027	0	0	
+
+T 120  *	*	*	*	*	*	*	*	*	*	*	*	3824	*	*	3006	313	*	*	*	120
+       0	*	*	*	*	*	*	3902	0	0	
+
+P 121  4391	*	*	*	*	*	*	*	*	*	*	*	70	*	*	*	*	*	*	*	121
+       99	3918	*	2000	415	*	*	3626	1096	0	
+
+K 122  4380	*	*	*	*	*	*	*	642	5505	*	*	*	4958	2067	*	*	*	*	5751	122
+       0	*	*	*	*	*	*	3515	0	0	
+
+R 123  *	*	3057	*	3539	*	4612	*	4751	2850	4270	3348	*	3425	1998	5514	5071	4966	*	*	123
+       0	*	*	*	*	*	*	3508	0	0	
+
+H 124  *	*	*	*	*	*	155	*	*	*	*	*	*	*	*	*	3842	*	*	4964	124
+       0	*	*	*	*	*	*	3385	0	0	
+
+I 125  *	*	3583	*	*	5092	*	783	5417	*	*	5452	*	3267	*	5505	3561	4344	*	*	125
+       0	*	*	*	*	*	*	3385	0	0	
+
+D 126  5915	*	2883	1364	*	3238	*	5653	3443	*	*	3460	*	3975	5959	4668	4974	*	*	*	126
+       0	*	*	*	*	*	*	3385	0	0	
+
+I 127  5952	*	3842	*	*	*	3596	809	4558	4116	*	6210	*	*	*	*	3363	4333	*	*	127
+       0	*	*	*	*	*	*	3385	0	0	
+
+H 128  *	*	*	*	*	5021	315	*	3802	4104	*	*	*	4810	*	*	*	*	*	*	128
+       58	4660	*	952	1049	*	*	3290	1030	0	
+
+R 129  5943	*	*	*	*	*	*	*	1703	*	*	*	*	5257	1807	2680	5582	*	*	2412	129
+       0	*	*	*	*	*	*	3185	0	0	
+
+G 130  *	*	3835	3806	*	1195	*	*	3165	*	*	2872	*	*	3810	3290	*	*	*	*	130
+       0	*	*	*	*	*	*	2900	0	0	
+
+K 131  3752	*	*	3758	*	2694	*	*	786	*	*	4134	*	4054	*	*	*	*	*	*	131
+       0	*	*	0	*	*	*	2436	0	0	
+
+//
+�HHsearch 1.5
+NAME  ba17a05f924bfd8ff94a6c5d73635b4a
+FAM   
+FILE  ba17a05f924bfd8ff94a6c5d73635b4a
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:21:28 2013
+LENG  207 match states, 207 columns in multiple alignment
+FILT  121 out of 1261 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  8.4 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCEEEEEEEEEECCEEEEEEEEEECCCCCEEEEEEECCCCEEEEEEEECCCEEEEEEEECCCCCCCEEECCCCCCCCCCCCHHHHHHHHHHHHHCC
+CCEEEEEEEEEEECCCCCEEEEEEEEEEECCCCCCCCCCCCCCEEEEEEEEHHHHHHHHHCCCCCCHHHHHHHHHHHHHHHCCCCCCCCCCCCCCCCHHH
+HHHHCCC
+>ss_conf PSIPRED confidence values
+9988737954699997888999999999799979878998249999999993799899999743788898198657552889989999999999998799
+6503489899994489750799999999747765556788540479999889998878767884547999999999998737566888899987775145
+4543159
+>Consensus
+xxxxxxxxxxxxxvxxxxxxxxxxxxxxxxxgxxxxxxxxxxxxxvxvvvxxxxgxvlLxrxxrxxxxxxxwxxPgGxvxexxEsxxxaAxRElxEEtGl
+xxxxxxxxxxxxxxxxxxxxxxxxfxxxxxxxxxxxxxxxexExxxxxwvxxxelxxxxxxgxxxxxxxxxaxxxxxxxxxxxxxxxxxxxxxxxxxxxx
+xxxxxxx
+>ba17a05f924bfd8ff94a6c5d73635b4a
+MAEHDFETISSETLHTGAIFALRRDQVRMPGGGIVTREVVEHFGAVAIVAMDDNGNIPMVYQYRHTYGRRLWELPAGLLDVAGEPPHLTAARELREEVGL
+QASTWQVLVDLDTAPGFSDESVRVYLATGLREVGRPEAHHEEADMTMGWYPIAEAARRVLRGEIVNSIAIAGVLAVHAVTTGFAQPRPLDTEWIDRPTAF
+AARRAER
+>gi|110639472|ref|YP_679681.1| oxidative damage repair protein [Cytophaga hutchinsonii ATCC 33406]gi|110282153|gb|ABG60339.1| mutator protein; oxidative damage repair protein [Cytophaga hutchinsonii ATCC 33406]
+-------------------------------------------AVVCAVIKQ-QDSYFIAQRSAKMKMPLKWEFPGGKV-EKGETNAQAIMREMKEEFDV
+NVEVIQEHPFYLHQYPNFILQLSPMEVEITSGKLTL---KEH--ANYRWVAVKDLFTYD-----------------------------------------
+-------
+>gi|156371508|ref|XP_001628805.1| predicted protein [Nematostella vectensis]gi|156215791|gb|EDO36742.1| predicted protein [Nematostella vectensis]
+---------KVVPCENSRFIQPSRVVFN-QNGRQRAWDYITEHDDVACLMFNTTrQAFVLVKQFRPAIYmhnnralhntkhgidgtlvksedpktealad
+ptsGITYELCAGIID-QNISLVKLMKQEMLEECGYDVpeNKIERVTSFRAGVGSTGAVQTIFYAEVTDEmivTgAGGGNLQEGERIEVYYLPLDKSKEFV
+FNESLAKPaALLFAFLWYF------------------------------
+>gi|304311751|ref|YP_003811349.1| predicted NUDIX hydrolase [gamma proteobacterium HdN1]gi|301797484|emb|CBL45704.1| predicted NUDIX hydrolase [gamma proteobacterium HdN1]
+------------------------------------------PSSTVVLLRDTRRgiKVLLLRRNSKIAYGGSWVFPGGRI-DPDEiaktdhnalqAAKL
+AAVRETHEEAGITLEQEKLVyFSHWTTPVIRPKRFsTWFFMAPVS-EKKVEI-DGGEIHDFEWHTPESALQAQNQGSIElpppTFVTLTQLSRFGSTTQA
+LEHFAAQPPLE--------------
+>gi|262200404|ref|YP_003271612.1| NUDIX hydrolase [Gordonia bronchialis DSM 43247]gi|262083751|gb|ACY19719.1| NUDIX hydrolase [Gordonia bronchialis DSM 43247]
+---------------------------------------------IAVLTVQS-g---GLQVVVQ-----hdasGRAALPGRFV-RERRTVEETVREVLE
+LKLGLSPDHIRPhlLAVFSDpdrDPRGWT-ISIAHAVAIPAGDLTD---VV-gE--LVPVTPDGRLASgerLLYD-------------------------
+---------------------
+>gi|339018605|ref|ZP_08644736.1| DNA glycosylase A/G-specific MutY [Acetobacter tropicalis NBRC 101654]gi|338752283|dbj|GAA08040.1| DNA glycosylase A/G-specific MutY [Acetobacter tropicalis NBRC 101654]
+--------------------------------------------GAHFLVIDAAGQVLLRKRPEKGLLAAMTELPGTPW-RTEPW-----STEeALTHAP
+VQTEWQD-CGMVKHVFTHFTLQVTVYAAHIsrfSNQAVQE----------GFLAPATGVDAL--------------------------------------
+-----------
+>gi|260655139|ref|ZP_05860627.1| conserved hypothetical protein [Jonquetella anthropi E3_33 E1]gi|260630061|gb|EEX48255.1| conserved hypothetical protein [Jonquetella anthropi E3_33 E1]
+---------------------------------------------ITTVIIYYNGQVLV--NTTNTTESRQYELITCDA-DVEEIGQVALKIVLGKVIDD
+TINDIKKFKIEEETRDDSQVTVQYFIYEPQNETILK---DNSD---VKWLACDNLDQ-------------------------------------------
+-------
+>gi|288923038|ref|ZP_06417192.1| NUDIX hydrolase [Frankia sp. EUN1f]gi|288345621|gb|EFC79996.1| NUDIX hydrolase [Frankia sp. EUN1f]
+------------------------------------------------VFLTLGNRVVVANHR----GQPWFFLLGERV-APGEGVEQVLHRVLRRTAGF
+EVRALDFVGGMerhETGRGTgheaAHEIDVLFAGAVPRYAEFG---SRVDEVDLVTVERSDLHRV-----------------------------------
+--------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	*	2383	714	*	*	*	*	*	*	2333	*	*	1
+       0	*	*	*	*	*	*	3269	0	0	
+
+A 2    501	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2797	2741	*	*	*	2
+       0	*	*	*	*	*	*	4087	0	0	
+
+E 3    *	*	*	1939	*	*	3556	*	*	*	*	3305	3531	*	1801	3605	3359	*	*	*	3
+       115	3703	*	0	*	*	*	5107	1035	0	
+
+H 4    *	*	*	2005	*	*	2453	*	2624	*	4091	*	*	3791	3013	3340	*	4250	*	*	4
+       82	*	4180	5044	44	*	*	5985	1023	0	
+
+D 5    4681	*	1980	*	*	4421	*	4313	2690	*	*	*	2667	*	2975	4532	3525	4611	*	*	5
+       44	5048	*	1585	585	0	*	6635	1035	1000	
+
+F 6    4781	*	*	4303	3086	4437	*	3562	*	4686	*	*	3905	4438	*	*	*	3751	1620	3146	6
+       0	*	*	*	*	*	*	6824	0	0	
+
+E 7    *	*	4833	2320	*	4926	*	3973	1959	3226	*	*	*	4102	4838	4647	2832	5042	*	*	7
+       0	*	*	*	*	*	*	7099	0	0	
+
+T 8    *	3601	4972	5021	*	*	*	2188	*	2618	*	*	*	*	3876	4583	2104	2940	*	*	8
+       0	*	*	*	*	*	*	7294	0	0	
+
+I 9    4583	*	*	4913	4888	4705	5135	2654	3983	2464	4770	5103	*	*	3889	*	3510	2321	*	*	9
+       0	*	*	*	*	*	*	7294	0	0	
+
+S 10   3240	*	*	2145	*	3043	5120	*	3494	4857	5005	3130	*	*	5144	2649	4021	*	*	*	10
+       0	*	*	*	*	*	*	7485	0	0	
+
+S 11   3834	5218	3502	2785	*	*	3471	5163	*	5025	5120	*	5144	3857	2506	2772	3789	*	*	*	11
+       0	*	*	*	*	*	*	7485	0	0	
+
+E 12   *	*	5115	1935	5255	5446	4030	5597	2685	*	*	*	*	4174	2278	3343	4920	*	*	5062	12
+       0	*	*	*	*	*	*	7610	0	0	
+
+T 13   5255	*	3085	3941	5219	*	3397	3943	4109	3979	*	*	4065	4920	5313	4121	2501	3263	*	5237	13
+       0	*	*	3459	138	*	*	7610	1000	0	
+
+L 14   3366	*	5197	5272	*	5230	*	1856	5002	2499	*	*	*	*	5309	*	*	1673	*	*	14
+       0	*	*	*	*	*	*	7693	0	0	
+
+H 15   3186	*	5358	*	2509	*	3694	3684	*	3568	*	*	*	*	5271	5263	*	2939	*	1898	15
+       0	*	*	*	*	*	*	7773	0	0	
+
+T 16   3509	*	5263	2597	*	*	5282	*	2491	*	*	5233	4061	3755	3094	2807	3752	5478	*	*	16
+       0	*	*	*	*	*	*	7773	0	0	
+
+G 17   3649	5130	3850	*	5101	1362	*	*	*	*	*	2578	*	*	5352	2961	3577	*	*	*	17
+       71	5356	5419	0	*	*	*	7895	1000	0	
+
+A 18   5353	*	5349	2814	4320	*	*	*	2076	*	*	*	2374	5127	3052	5377	5184	*	3823	4125	18
+       34	*	5434	*	*	0	*	7899	0	1043	
+
+I 19   *	*	*	5365	3814	4935	4961	5364	4251	3891	5294	*	4928	5206	3049	5199	*	4235	1714	3260	19
+       266	5456	2781	1585	585	*	0	7928	1000	1000	
+
+F 20   4171	*	*	*	2461	4106	*	2811	*	1931	3953	*	*	*	*	5166	*	2781	*	4009	20
+       0	*	*	*	*	0	*	7642	0	1818	
+
+A 21   4527	5440	3046	4133	*	5290	4323	*	2823	4970	*	4444	5137	4372	2853	2975	3385	5453	*	*	21
+       0	*	*	*	*	*	*	7957	0	0	
+
+L 22   5793	5261	5042	*	3816	*	*	3114	*	1767	4162	5328	5398	*	5199	5158	*	2067	*	4413	22
+       0	*	*	*	*	*	*	8000	0	0	
+
+R 23   4330	*	4600	3429	3883	5535	5645	3873	2857	4534	5284	5152	*	5617	2602	*	5617	3985	*	2889	23
+       0	*	*	*	*	*	*	8199	0	0	
+
+R 24   3714	*	3901	4151	*	4411	5294	5513	2846	3979	*	3751	5152	3941	2521	3879	5336	5319	*	4500	24
+       0	*	*	*	*	*	*	8199	0	0	
+
+D 25   5581	4436	2421	3228	*	5720	3461	4641	5595	3149	5852	5264	*	5553	2926	4452	4402	5625	*	4422	25
+       0	*	*	*	*	*	*	8223	0	0	
+
+Q 26   3234	5745	2537	3587	*	5643	4086	*	2614	5659	5434	4547	*	5633	3629	4566	3164	5761	5758	*	26
+       101	5351	4528	1000	1000	*	*	8257	1033	0	
+
+V 27   4026	4024	*	*	3482	*	*	2976	*	2392	5408	*	*	*	*	5387	*	1874	4253	3361	27
+       31	*	5534	*	*	*	0	8218	0	1125	
+
+R 28   4631	4597	*	2123	*	*	*	3877	3168	5639	*	5240	5459	3471	2398	4458	5402	3837	*	5557	28
+       110	5371	4344	0	*	905	1102	8188	1018	1411	
+
+M 29   4542	*	3957	*	2430	5582	*	3782	5357	2252	4379	4020	5731	*	4024	3396	5265	4390	*	5612	29
+       0	*	*	*	*	2004	414	8190	0	1381	
+
+P 30   4437	*	3845	3950	5373	4707	5940	*	3527	5603	*	5609	1586	4084	4951	3158	4109	*	*	5741	30
+       139	3806	5609	2233	345	0	*	8372	1460	1256	
+
+G 31   3759	6059	1945	5714	*	3735	6264	*	4142	5912	*	2493	4748	3749	4682	3873	3742	*	*	*	31
+       28	5685	*	0	*	0	*	8527	1010	1000	
+
+G 32   5705	*	6111	3842	6049	938	4881	*	4054	*	*	4248	*	5933	5881	3210	4258	5713	*	*	32
+       105	4254	5828	1388	694	*	*	8607	1304	0	
+
+G 33   4628	*	5860	3325	5732	3872	4853	5903	2259	5675	*	*	5710	3472	2459	3300	4944	5066	*	5598	33
+       213	3259	4933	1209	818	0	*	8580	1694	1000	
+
+I 34   3842	6085	*	2361	5957	*	5773	3813	3632	5473	*	*	5994	3999	3411	3524	2872	3674	*	4720	34
+       108	4241	5702	0	*	704	1373	8574	1260	1179	
+
+V 35   3366	*	5998	3369	4304	5882	*	3892	4192	3125	4822	5516	4713	4217	3315	3465	*	3167	5903	5784	35
+       51	4854	*	749	1304	0	*	8693	1224	1099	
+
+T 36   5920	*	3505	3630	*	4606	5819	4622	6213	3839	5712	3458	3034	3805	4081	3400	4038	3963	4948	5872	36
+       20	6208	*	0	*	*	*	8740	1008	0	
+
+R 37   5681	*	4398	*	3119	5910	*	*	4199	5016	*	4996	4406	5024	1876	5559	5872	4966	4100	2282	37
+       50	4868	*	618	1521	*	*	8740	1147	0	
+
+E 38   4769	*	2664	2172	4600	3412	5177	5342	5978	5762	5793	5013	6223	*	4545	3721	4450	*	4554	3435	38
+       23	*	6005	*	*	*	*	8879	0	0	
+
+V 39   4244	5212	*	5801	4991	6135	6132	4341	4242	3925	5923	5988	*	3908	4246	4315	4203	1932	4398	3202	39
+       0	*	*	*	*	*	0	8942	0	1010	
+
+V 40   3625	4427	*	6135	4481	*	*	2942	5963	2937	6091	5198	3801	5811	*	5502	5026	1921	5904	3803	40
+       55	4734	*	2326	321	0	*	8942	1280	1010	
+
+E 41   6107	*	2957	2577	6000	2568	5172	6174	5242	3880	*	5216	3876	4996	3009	3987	4176	*	*	*	41
+       54	5308	6432	2178	360	*	*	9000	1143	0	
+
+H 42   5079	*	*	4149	4645	4567	3043	*	4538	4637	*	4040	5101	4258	2011	3940	4205	4423	*	3818	42
+       122	3625	*	2232	345	*	0	9045	1604	1040	
+
+F 43   5340	4950	3983	*	5361	3885	3832	6294	4200	5092	*	3118	2196	6166	3435	6409	4685	3233	*	5365	43
+       244	2682	*	1610	572	0	*	9058	2213	1040	
+
+G 44   3706	4996	3034	6304	5206	2599	4698	6128	4364	4666	*	4482	3278	5444	3593	3456	4718	4585	*	*	44
+       62	4579	*	2396	304	*	*	9122	1289	0	
+
+A 45   1714	5142	6744	5735	4984	2855	6215	5003	6449	6793	*	6705	5788	*	5597	2869	3602	3387	6797	4979	45
+       0	*	*	*	*	*	*	9524	0	0	
+
+V 46   2959	4511	*	5790	4725	5300	*	4552	6566	4618	5873	*	*	*	6554	4425	4299	1062	6538	4734	46
+       0	*	*	*	*	*	*	9807	0	0	
+
+A 47   2650	4205	4484	5683	*	3145	5484	4380	*	3803	3329	5861	6331	*	4641	4199	3472	3028	6520	5653	47
+       0	*	*	*	*	*	*	9810	0	0	
+
+I 48   3031	4437	*	6883	5003	4243	*	2108	6747	3278	4212	*	*	*	6468	5115	5145	1924	6839	*	48
+       0	*	*	*	*	*	*	9810	0	0	
+
+V 49   3550	4941	6664	*	3192	6889	*	2376	*	2529	4043	*	5875	6553	*	6702	*	2096	5840	4677	49
+       0	*	*	*	*	*	*	9853	0	0	
+
+A 50   3360	5331	*	*	5264	5606	6438	2288	*	2705	6593	*	2814	6663	5570	6585	5718	2131	6991	6326	50
+       71	5527	5232	1252	786	*	*	9853	1083	0	
+
+M 51   5465	*	5120	4305	2946	6316	6558	2654	4699	2894	4872	7063	*	5278	3341	5957	4431	3274	5575	4055	51
+       134	4085	5060	2128	375	*	0	9827	1625	1178	
+
+D 52   5667	6659	1911	4321	5591	*	5131	4746	4282	5830	6199	2660	6822	4853	3328	4110	3985	4934	7227	5397	52
+       184	4984	3507	1866	462	823	1202	9729	1216	1607	
+
+D 53   4100	*	4181	2219	*	3737	5252	4885	3500	5100	*	4691	3262	5467	3786	3547	4597	4973	*	5481	53
+       84	4632	5966	1533	612	92	4019	9680	1253	2248	
+
+N 54   4108	6912	2465	2772	6952	3642	4219	6770	3730	5818	6543	2915	5223	4069	4041	*	4680	5303	*	7066	54
+       230	3092	5067	189	3026	0	*	9853	2689	1275	
+
+G 55   5611	5727	2886	4047	*	1334	6471	6905	3980	6814	*	3465	6023	7062	4500	4792	4265	*	6554	5648	55
+       209	2892	*	1456	654	0	*	9813	2535	1238	
+
+N 56   4354	*	4750	2501	*	4914	4766	*	2402	5647	*	4607	*	2836	2656	5985	4039	*	6924	4895	56
+       53	4796	*	2006	413	*	*	9881	1297	0	
+
+I 57   5466	5710	6836	5938	3667	*	*	2610	5288	2680	5679	*	*	5901	7155	*	5391	1424	6915	4034	57
+       0	*	*	*	*	*	*	9953	0	0	
+
+P 58   4636	5935	*	*	3978	7200	*	4559	*	959	4822	7021	7073	*	6711	*	4464	2863	5133	4476	58
+       0	*	*	*	*	*	*	9973	0	0	
+
+M 59   4638	5418	*	6679	4049	*	6901	2919	*	1044	3818	*	*	*	*	*	6070	2786	*	6630	59
+       161	6219	3444	0	*	*	*	9975	1186	0	
+
+V 60   3898	5274	6693	5125	*	4201	6130	2570	6767	2724	5672	*	6379	4653	4414	5715	3766	2048	*	5750	60
+       26	6883	6779	0	*	*	0	9833	1000	2038	
+
+Y 61   5830	6645	6765	3925	*	5785	4749	6427	2098	4704	*	5442	6109	3718	1680	4579	5809	4719	5737	5919	61
+       79	*	4226	*	*	589	1576	9800	0	2219	
+
+Q 62   5161	6852	*	3734	6760	5754	4454	5818	4596	6642	5941	4738	*	2027	1637	3801	5207	5917	*	6673	62
+       45	*	5029	*	*	2265	337	9897	0	1903	
+
+Y 63   3385	*	4782	5018	3325	6671	6011	5614	3473	3783	*	5082	3485	4772	3841	3751	4004	5698	6970	2839	63
+       81	6727	4465	0	*	2033	404	9850	1000	1993	
+
+R 64   3063	*	4816	4983	5771	5668	5502	6961	3149	5424	5602	3921	4918	5625	1457	5093	5587	6512	6849	4833	64
+       77	6607	4578	1585	585	2775	228	9793	1000	2168	
+
+H 65   3696	*	4201	4330	6836	4315	3639	5641	3401	4199	6811	4863	2810	5152	4537	3384	4531	4842	6909	3816	65
+       26	5784	*	1614	571	1902	449	9788	1163	2419	
+
+T 66   3262	*	4348	3766	*	2219	5709	6397	3396	6069	5141	4805	2317	6918	5172	3649	5098	*	7023	*	66
+       538	3173	2320	1552	602	2750	232	9815	2055	2032	
+
+Y 67   4311	6279	5507	4638	4830	4733	5462	3049	4947	2846	4708	4148	4004	*	4601	3547	3301	4633	5336	4775	67
+       148	4585	4163	2090	386	1137	875	9585	1396	4201	
+
+G 68   5205	5564	4195	3734	4754	2680	4333	5852	3896	4466	6671	3677	4834	3997	4825	3645	5925	*	3929	3911	68
+       96	5296	4689	3577	126	1504	627	9828	1501	3368	
+
+R 69   3040	*	3883	3375	*	3008	5704	*	3571	5684	*	5333	2454	4838	3385	3729	5581	4926	*	*	69
+       28	*	5691	*	*	2654	250	9887	0	2909	
+
+R 70   4619	6449	4143	5032	4219	1770	6728	5895	5213	4091	4672	3365	4680	*	3681	6371	*	4374	4717	4311	70
+       61	4979	6688	305	2390	319	2334	9840	1353	2787	
+
+L 71   4666	4766	4011	4284	4637	4317	5481	*	4508	2563	3834	*	*	3854	4311	3879	3878	3908	5767	3756	71
+       58	4982	6990	1513	622	301	2407	9962	1328	1380	
+
+W 72   *	*	5633	*	3834	6614	*	4114	*	2687	5013	*	*	*	6859	*	5231	5409	1068	3062	72
+       40	5176	*	709	1365	937	1066	9958	1200	1056	
+
+E 73   3249	5665	3537	2158	4594	3654	*	7193	5078	4944	5688	4851	*	4576	4858	3486	3784	4320	*	4929	73
+       0	*	*	*	*	0	*	9963	0	1000	
+
+L 74   5802	5039	*	*	1831	5394	*	3544	*	1564	4871	7188	4528	7015	*	5676	4669	4170	5947	*	74
+       12	6956	*	0	*	*	*	10031	1000	0	
+
+P 75   4257	5331	*	6681	5821	*	*	4342	*	4473	5775	*	614	*	*	5311	5577	3585	*	*	75
+       26	6801	6839	4755	54	*	*	10031	1000	0	
+
+A 76   2274	5953	*	7057	*	1137	*	*	3357	5858	*	5622	*	5248	4506	4107	4962	6673	6721	*	76
+       54	4778	*	1640	558	*	0	10018	1419	1000	
+
+G 77   5589	6569	*	5281	5475	260	*	*	5828	6721	*	*	*	*	*	5239	6388	6834	*	6466	77
+       0	*	*	*	*	*	0	10018	0	1000	
+
+L 78   3677	5908	5695	*	3625	3147	2834	5511	2907	4170	5299	6732	6388	4862	3132	4472	5746	4779	6855	4764	78
+       14	6653	*	3459	138	*	0	10018	1018	1000	
+
+L 79   3987	6153	*	*	5807	5037	*	2657	6853	2810	3872	*	6882	5134	4321	5902	5249	1661	4611	6732	79
+       2483	*	284	*	*	*	0	10018	0	1000	
+
+D 80   *	*	1181	1507	*	*	4307	*	*	*	*	*	4244	4144	*	*	*	4399	*	*	80
+       705	2719	2091	0	*	50	4870	6702	1319	7758	
+
+V 81   5122	6613	2608	1472	6381	4718	4930	*	5760	4741	*	4801	4668	4795	3568	5018	4451	6007	*	6600	81
+       51	5209	7086	3383	145	404	2035	9936	1228	2068	
+
+A 82   3047	6792	4494	3733	5358	4344	4441	4821	3665	4269	*	4178	1975	6838	6580	4653	4805	4249	7012	*	82
+       0	*	*	*	*	0	*	10043	0	1300	
+
+G 83   4440	*	2243	3198	*	1457	5879	*	5142	7074	*	3308	*	6479	5046	4207	6514	6741	*	*	83
+       26	6781	6795	1000	1000	*	*	10031	1061	0	
+
+E 84   4575	*	3676	474	*	5911	*	*	5102	6530	6949	6679	5613	6685	*	6687	5175	5815	*	*	84
+       198	2965	*	1469	647	0	*	10021	2921	1000	
+
+P 85   4958	*	2626	4575	*	6010	6514	5768	5849	5797	*	4347	4829	5436	7057	1519	2322	6897	6439	*	85
+       33	*	5486	*	*	*	*	10031	0	0	
+
+P 86   3021	6610	5388	*	4608	5738	6780	3643	6621	2079	5724	5232	2401	7028	5196	4315	4733	3944	*	5358	86
+       0	*	*	*	*	*	0	9954	0	1128	
+
+H 87   3902	7055	4428	1860	4502	4669	4028	4878	5233	3017	6589	*	5821	5155	3629	5392	5280	4362	7109	4947	87
+       11	*	7051	*	*	*	0	9954	0	1128	
+
+L 88   3330	*	2633	1990	6056	4894	6617	6980	4340	4746	*	5328	*	2705	*	5092	4240	3763	*	*	88
+       0	*	*	*	*	1839	473	9954	0	1226	
+
+T 89   994	3505	5859	*	*	4680	6415	6911	*	6342	*	5823	6691	6846	7028	3777	2821	3988	*	*	89
+       41	5156	*	1870	461	*	0	9954	1167	1128	
+
+A 90   784	6621	*	*	6860	4902	*	3842	*	2514	5432	*	*	*	*	*	*	3336	*	*	90
+       13	*	6756	*	*	0	*	9954	0	1128	
+
+A 91   2812	5703	6462	3965	7114	*	5123	3669	3279	3069	4760	7160	6115	5248	2799	4243	7193	2947	*	6859	91
+       0	*	*	*	*	0	*	10021	0	1000	
+
+R 92   5906	6734	5892	4907	6615	6712	*	6576	5305	6469	*	5726	7411	5870	410	*	4281	*	*	6535	92
+       14	*	6681	*	*	*	*	10031	0	0	
+
+E 93   5616	*	6715	491	*	6459	5676	4835	6707	4370	*	*	*	5751	4471	5992	*	4433	*	6788	93
+       31	5575	*	0	*	*	0	9975	1109	1002	
+
+L 94   2805	5200	*	*	4739	6658	*	3762	*	1441	4999	*	*	*	*	5966	3303	2383	*	*	94
+       0	*	*	*	*	*	0	9975	0	1002	
+
+R 95   3066	*	6978	3380	4156	5799	4370	5272	2873	2904	4859	5705	6697	4739	3086	*	5694	6112	4429	4071	95
+       0	*	*	*	*	*	0	9975	0	1002	
+
+E 96   5975	*	5667	366	*	6860	6702	*	4709	5676	6839	*	6697	5762	4968	5464	6436	6707	*	*	96
+       0	*	*	*	*	0	*	9975	0	1002	
+
+E 97   7112	6624	6878	391	*	6535	6439	5462	4840	6658	*	*	*	4971	5185	5868	6854	5173	*	6821	97
+       0	*	*	*	*	*	*	10031	0	0	
+
+V 98   2705	4680	*	*	5222	6455	*	3929	*	2482	4902	*	*	*	*	4274	1401	4033	*	*	98
+       0	*	*	*	*	*	*	10031	0	0	
+
+G 99   5902	*	4205	7074	*	452	5674	*	*	*	5924	4340	6439	5939	5923	4877	5210	*	*	*	99
+       12	6897	*	1000	1000	*	*	10031	1000	0	
+
+L 100  4572	*	5642	*	4379	*	*	2353	6455	1730	7022	6897	*	6040	6861	6795	*	2478	5495	2935	100
+       21	6112	*	2000	415	*	*	10031	1125	0	
+
+Q 101  3830	*	3179	2945	6535	5103	4756	5217	3127	5237	*	4283	4315	3779	3448	4342	3698	4261	*	*	101
+       32	5524	*	1000	1000	*	*	10031	1203	0	
+
+A 102  3059	4475	5766	4358	*	3450	6469	3230	5073	3424	6897	5825	3933	*	4879	4292	4459	2227	*	*	102
+       77	5182	5375	962	1039	*	*	10031	1205	0	
+
+S 103  3866	6728	3395	2852	*	3184	5978	4979	3797	4860	*	4667	6617	3988	3435	3503	4093	4239	*	5667	103
+       100	4618	5247	540	1680	*	0	10003	1503	1200	
+
+T 104  3312	*	3557	3368	6929	7001	4183	3925	5238	4282	6714	4186	3863	3936	5907	3516	4229	3261	6407	5030	104
+       46	5423	6933	2531	274	605	1546	9948	1217	1541	
+
+W 105  5343	*	4947	4168	4132	4316	5645	3139	4136	2519	5392	7135	5328	4410	6948	5238	4987	2713	3729	5765	105
+       12	6968	*	1585	585	0	*	9958	1000	1246	
+
+Q 106  3725	7029	3215	3664	6615	7129	4618	3894	3764	6039	5838	6455	4933	3349	4115	3118	3817	3558	*	5184	106
+       66	6799	4816	0	*	*	*	10031	1098	0	
+
+V 107  5090	*	*	3920	4009	5333	4285	4386	4331	2534	5323	4207	3640	4369	4817	5171	4333	3460	6016	3852	107
+       39	5223	*	1528	614	0	*	9981	1290	1420	
+
+L 108  3997	5476	5415	5233	3784	4150	5396	2992	5397	1718	5831	*	5579	5104	6863	4692	6085	3450	5973	5525	108
+       178	3207	7029	1455	655	*	*	10031	2369	0	
+
+V 109  3560	4875	6722	4642	4095	1826	5900	4405	5284	3398	5161	5357	4307	7094	4124	4707	5004	4497	*	5309	109
+       172	3912	4441	1131	880	*	0	10030	1645	1000	
+
+D 110  4519	6631	3733	3314	5965	3664	5672	4189	4286	4176	6399	4319	3953	4889	4548	3442	2989	4468	*	5135	110
+       108	4008	6603	2668	247	256	2621	9952	1822	1667	
+
+L 111  5150	*	*	4713	3041	5861	4497	2944	5685	3119	4886	6822	5809	4926	7013	4318	4531	2996	4482	3039	111
+       152	3326	*	1656	551	764	1282	10003	2049	1193	
+
+D 112  4068	*	4497	3492	3487	4134	4499	4207	5766	4818	6000	7012	6275	5424	3126	4876	3620	4626	4806	2805	112
+       55	5263	6449	1225	806	0	*	10024	1176	1003	
+
+T 113  3860	6738	3711	3736	4804	4307	3705	4414	5816	4689	6056	5150	3126	5548	4528	3308	3793	4477	6025	4379	113
+       118	4160	5482	1754	507	0	*	9955	1594	1015	
+
+A 114  4085	*	3453	4104	4887	4486	5336	4312	4516	6834	6613	3395	4873	4260	4378	2885	3142	4351	5975	4949	114
+       66	4907	6428	2068	393	*	0	9990	1279	1168	
+
+P 115  3789	*	5090	3633	3947	4249	4795	5968	6013	4575	*	3822	1931	6647	3452	4752	5218	4562	*	4314	115
+       62	5210	6037	3668	118	1165	852	9945	1184	1310	
+
+G 116  3783	6872	4146	4075	5241	2076	5099	6666	3978	4934	*	3856	5028	5321	4968	2983	3848	6398	5790	5532	116
+       61	4602	*	3202	166	2243	342	9954	1323	1343	
+
+F 117  3473	5911	4938	5080	3553	3987	3538	3766	4596	4816	5734	4614	5480	4867	3772	4498	4038	4066	5655	3792	117
+       312	3132	3633	1952	431	1905	448	9954	2565	1245	
+
+S 118  4023	4637	4798	4514	3870	3787	5199	3926	4826	5235	4738	4604	4924	5306	3941	2738	4000	4087	5029	5701	118
+       70	4391	*	2495	282	3628	122	9910	1471	2239	
+
+D 119  5803	6821	3076	3988	5534	3432	3311	5631	4788	5894	*	3688	4351	4036	3588	4471	3459	3844	*	5204	119
+       88	5080	5064	3222	163	2885	210	9914	1193	2136	
+
+E 120  4845	5728	6943	2321	5950	4428	4490	5107	4206	3857	5511	3394	5531	3895	4840	4176	4781	3320	5103	5876	120
+       26	5781	*	2162	365	271	2545	9876	1225	2232	
+
+S 121  4921	6728	5002	4851	4664	5877	4233	3865	3453	3206	4614	5797	5001	4329	3055	4956	3769	3476	6693	4365	121
+       0	*	*	*	*	0	*	10018	0	1118	
+
+V 122  4446	5273	4433	4523	4165	4584	*	2379	6731	3419	4232	5398	6716	4888	6619	4687	3534	2512	6895	7218	122
+       33	5473	*	0	*	*	*	10031	1324	0	
+
+R 123  3927	*	5103	4808	3892	5170	2474	4473	5216	4903	4965	4700	6890	4817	4356	5280	3310	4392	6800	2810	123
+       62	4580	*	1984	420	*	*	10031	1434	0	
+
+V 124  4157	4168	*	6681	3358	5637	7057	3277	*	2916	6014	*	3533	6860	*	5960	4809	2647	4405	2750	124
+       44	5057	*	1874	460	*	*	10031	1327	0	
+
+Y 125  4349	*	*	*	1500	6803	5892	4082	*	4800	5317	6888	6479	*	6919	6479	*	4213	4186	1720	125
+       21	7108	7077	1000	1000	*	*	10031	1000	0	
+
+L 126  3092	6783	6511	5340	4412	*	5597	2907	5206	2108	5515	*	7215	6713	4158	5105	4792	3093	7069	3410	126
+       0	*	*	*	*	0	*	10038	0	1014	
+
+A 127  2058	3250	*	6479	4128	3229	5887	4560	*	3874	4507	5935	5884	*	5965	5780	5331	2465	*	4851	127
+       36	5978	6818	568	1620	*	*	10031	1081	0	
+
+T 128  3084	*	4382	3261	5707	5873	4150	4306	3921	4066	7117	4250	5715	4589	3289	4285	3924	3764	6105	4921	128
+       24	5915	*	2535	273	0	*	10022	1095	1000	
+
+G 129  3330	4713	3053	4317	5158	7074	7001	3225	4324	3670	6741	4776	3692	*	4630	5867	4685	2702	6657	5067	129
+       125	3593	*	945	1057	*	*	10031	2244	0	
+
+L 130  4448	4654	3602	4235	4734	4981	6699	4869	4719	2349	5280	4678	3993	5300	5530	3815	4048	3486	5704	5863	130
+       23	7017	6902	1000	1000	*	*	10003	1000	0	
+
+R 131  3559	*	2594	2817	6103	3424	5841	5419	4365	6755	*	5043	4352	3647	4398	3313	4291	5210	*	5959	131
+       51	6109	5616	0	*	0	*	9989	1075	1155	
+
+E 132  4617	*	3022	3207	5316	2880	5270	6556	3573	4042	5172	4259	3151	3820	5272	5934	4486	5267	*	6723	132
+       90	4245	6962	1214	813	*	0	9956	1462	1088	
+
+V 133  3052	6723	3763	3009	4250	4967	*	5084	3654	3699	6424	4161	6052	4224	*	3676	4009	2998	*	*	133
+       123	4379	4893	2010	412	1012	988	9921	1478	1300	
+
+G 134  3879	*	3218	3477	4486	4248	4995	4129	4587	2895	*	4225	3273	4354	5265	3686	5267	4741	*	*	134
+       41	6740	5754	1585	585	0	*	9923	1000	1475	
+
+R 135  4206	6696	3844	2858	6021	5478	5160	4315	3463	3803	*	5835	3951	3955	4082	3875	3221	4045	*	6867	135
+       47	5360	6967	940	1062	917	1088	9974	1321	1075	
+
+P 136  4356	6739	5190	5142	5226	3546	6620	4620	4291	3354	*	4854	2629	3280	6107	4018	3734	3301	6135	7004	136
+       943	*	1059	*	*	*	0	9994	0	1105	
+
+E 137  5237	4793	3436	3434	*	4591	3949	5078	3513	4311	5177	3290	4329	*	2856	4802	4247	3787	*	*	137
+       202	3137	5894	1710	526	2052	398	8758	1942	5803	
+
+A 138  5302	5848	3488	5081	4415	3951	*	4877	5293	1847	*	6387	3648	5315	4487	6079	3815	4198	5212	4038	138
+       723	*	1342	*	*	2478	285	9041	0	4995	
+
+H 139  3328	*	2565	2964	*	3883	4244	4755	4174	4666	*	5558	3120	5919	4059	4096	4081	*	*	5608	139
+       0	*	*	*	*	115	3708	8594	0	6268	
+
+H 140  3854	6923	2031	3826	*	3701	4947	5334	4836	4280	5935	3416	4466	4082	5830	3630	4753	4751	*	*	140
+       12	*	6887	*	*	1310	745	9888	0	1473	
+
+E 141  4921	5725	2403	1650	6551	3872	5090	6838	4599	6349	*	5246	4384	5370	4802	3968	4887	5690	*	5757	141
+       189	6087	3208	692	1392	*	0	9899	1084	1322	
+
+E 142  3684	6632	3163	2698	*	2895	3950	4818	6100	4359	6536	4404	4338	5305	6631	4513	3402	4473	6572	6417	142
+       87	*	4092	0	*	1838	473	9660	1015	2508	
+
+A 143  4369	*	3747	865	5453	4377	4873	5796	5794	6919	6560	*	*	4308	5039	*	4992	5062	6534	6045	143
+       262	5695	2770	561	1633	588	1578	9722	1082	2725	
+
+D 144  4638	5818	3517	4394	3813	4744	4298	2641	5537	4715	*	4625	4634	5066	*	3591	4237	2658	6568	6345	144
+       92	*	4012	*	*	2264	337	9615	0	2877	
+
+M 145  4312	6526	4314	3527	5493	4272	4368	2817	4588	3591	4210	5161	6583	3801	3915	3987	4320	4144	*	6280	145
+       13	*	6780	*	*	357	2189	9672	0	3010	
+
+T 146  4237	*	2871	1786	6558	3840	5087	6736	4102	6954	*	4367	6431	4239	3661	4174	3855	7036	*	6551	146
+       45	6636	5579	0	*	0	*	9916	1004	1470	
+
+M 147  3524	5970	*	*	3068	4569	5230	3323	*	3083	4908	6808	5731	7037	5373	4593	3823	2186	4954	4868	147
+       12	*	6906	*	*	930	1074	9964	0	1097	
+
+G 148  4056	4826	6735	3500	4694	4996	6017	4543	2685	3886	5752	6446	*	3423	2565	7033	6729	3044	*	5327	148
+       0	*	*	*	*	*	0	9972	0	1079	
+
+W 149  6661	*	*	4896	4063	6686	5716	5581	4994	3158	*	*	7135	6493	4469	*	4921	4989	844	5741	149
+       15	6569	*	0	*	0	*	9972	1017	1079	
+
+Y 150  4481	6767	*	6824	2395	*	6675	2735	*	2377	4693	*	*	6832	5927	*	6635	2012	7049	3940	150
+       11	7067	*	0	*	*	*	10003	1000	0	
+
+P 151  4457	*	2937	4589	*	*	5820	*	4587	5797	*	4624	2117	7036	4910	2294	2402	*	*	*	151
+       0	*	*	*	*	*	*	10003	0	0	
+
+I 152  3581	5129	*	4376	4588	*	*	2823	4230	2775	3960	*	2784	7067	3948	6931	*	3295	5965	4334	152
+       0	*	*	*	*	*	*	10003	0	0	
+
+A 153  3703	*	1893	1954	*	5778	6794	*	3890	*	7163	3749	4737	4819	5173	3802	4789	6465	*	*	153
+       0	*	*	*	*	*	*	9997	0	0	
+
+E 154  3479	*	2853	1655	5621	5438	4816	*	4249	6051	5971	5142	*	3188	4169	4435	4576	6644	*	*	154
+       28	5716	*	0	*	*	*	9997	1092	0	
+
+A 155  2519	*	*	5960	4055	*	*	2714	*	1492	4436	*	5651	*	7182	*	5743	2825	*	6836	155
+       0	*	*	*	*	*	*	9997	0	0	
+
+A 156  4290	5773	3908	4181	5162	4387	6695	4623	3862	2963	4326	6995	2797	6956	3383	4350	4734	3923	6948	5659	156
+       0	*	*	*	*	*	*	10005	0	0	
+
+R 157  2980	*	3131	2707	*	5110	6011	*	2895	*	*	4375	4753	3006	3516	3647	4666	6542	*	*	157
+       26	6809	6805	2000	415	*	*	9985	1000	0	
+
+R 158  3893	5388	5155	4803	4558	5763	5586	4745	4672	1804	2785	5566	6623	*	3598	6563	5561	4299	*	4089	158
+       0	*	*	*	*	*	0	9848	0	1005	
+
+V 159  3210	4353	5417	5499	6344	4580	5837	2473	5477	2196	3933	6602	6327	4943	6594	4788	5678	3382	5486	*	159
+       62	4562	*	1038	963	*	0	9612	1536	1005	
+
+L 160  3357	*	3865	3795	3491	6431	5391	6300	3177	2757	4410	4826	4803	5011	4133	4142	3895	6450	6303	6360	160
+       101	6313	4183	2000	415	*	0	9605	1000	1005	
+
+R 161  3282	*	2943	3594	6520	5255	4003	*	4882	6446	*	3212	4090	4682	3157	2821	4692	6140	*	5186	161
+       23	*	5978	*	*	1301	751	9337	0	1440	
+
+G 162  6133	*	4838	3919	4937	1212	5751	5909	5127	6007	*	5113	3476	4445	4111	5042	4305	*	5773	5696	162
+       0	*	*	*	*	1135	877	8886	0	1398	
+
+E 163  4149	*	2947	2481	4874	4454	5746	5185	3411	5900	6322	4856	6009	4026	3839	3718	4402	5012	4856	5999	163
+       25	*	5867	*	*	1531	613	8982	0	1160	
+
+I 164  6186	5641	5913	*	3369	5898	4923	1806	*	2730	2769	5908	4393	*	6137	*	5908	3671	*	4443	164
+       0	*	*	*	*	*	0	8984	0	1285	
+
+V 165  4441	6208	4296	4176	*	5838	*	5042	3410	3444	4817	4386	3945	3386	3037	3835	3107	4367	*	*	165
+       71	5058	5822	2000	415	876	1136	8863	1218	1285	
+
+N 166  *	4082	2226	2924	*	4233	5722	6023	4076	3510	5722	3543	4715	3592	*	4894	4434	5766	*	4764	166
+       56	5661	5746	1000	1000	*	0	8767	1000	1185	
+
+S 167  2251	*	5501	5773	5508	2823	*	5922	5463	3412	4889	4686	3797	4639	5924	4788	4343	2889	5982	5983	167
+       52	4831	*	740	1317	2111	380	8719	1303	1407	
+
+I 168  5611	5537	4608	*	5870	5786	5987	3888	3362	1837	5026	*	6125	4766	3155	2642	4294	5955	*	*	168
+       0	*	*	*	*	876	1136	8696	0	1285	
+
+A 169  3074	4847	*	5709	4723	5719	3913	5472	*	6115	4562	4858	5683	4293	3450	3389	2366	3661	4614	5710	169
+       0	*	*	*	*	*	0	8635	0	1060	
+
+I 170  4105	5873	*	4566	4677	*	*	2014	*	1689	*	*	4316	*	*	*	4676	3142	5514	4030	170
+       0	*	*	*	*	*	0	8472	0	1060	
+
+A 171  1441	4491	*	*	*	3494	*	4678	5703	3892	5742	5287	*	5320	5183	3733	3233	3408	*	*	171
+       33	*	5473	*	*	*	0	8218	0	1060	
+
+G 172  1085	*	*	4409	*	4469	5392	5262	*	2558	*	*	*	*	3703	4461	3869	5256	*	*	172
+       0	*	*	*	*	912	1094	8161	0	1226	
+
+V 173  3913	*	*	*	3752	*	5268	2884	*	1466	4344	*	*	5374	5556	5201	*	3447	3029	*	173
+       0	*	*	*	*	0	*	8058	0	1038	
+
+L 174  3631	5499	4544	*	4030	5509	*	*	*	1915	4336	4072	5173	4395	*	4256	3328	5435	5037	3106	174
+       0	*	*	*	*	*	*	8025	0	0	
+
+A 175  2184	5259	5094	*	4937	*	*	4133	4994	1973	5635	*	*	5370	3317	*	*	3937	3831	3864	175
+       0	*	*	*	*	*	*	7818	0	0	
+
+V 176  2120	*	*	*	3092	4025	*	3025	*	2849	5135	*	*	*	*	*	*	3588	3359	3052	176
+       49	4905	*	0	*	*	*	7663	1009	0	
+
+H 177  5032	*	3234	2852	*	3791	2752	4741	*	3687	4954	4602	4884	4999	2845	*	*	4931	4650	4697	177
+       114	4826	4619	0	*	*	*	7270	1043	0	
+
+A 178  2947	*	*	4914	*	4521	4768	*	2237	2486	4688	4558	*	*	3045	3582	3636	*	*	*	178
+       0	*	*	*	*	0	*	6854	0	1000	
+
+V 179  2594	*	*	*	*	4620	2845	*	*	2205	*	*	*	*	4439	*	4325	2537	4841	2895	179
+       0	*	*	*	*	*	*	6790	0	0	
+
+T 180  *	*	*	3340	*	*	*	*	2393	1931	4437	*	*	*	1675	4449	4522	*	*	*	180
+       155	*	3299	*	*	*	*	6681	0	0	
+
+T 181  4629	*	4354	1548	*	4172	*	4394	3363	4105	*	*	*	*	3182	*	2733	4326	*	*	181
+       449	1902	*	0	*	0	*	6417	1595	1458	
+
+G 182  2220	*	3737	*	*	762	*	*	*	*	*	4124	*	*	*	*	*	3981	*	*	182
+       118	*	3670	*	*	*	*	6067	0	0	
+
+F 183  *	*	*	*	1718	*	3532	3872	*	3915	*	3773	3782	*	3700	*	*	2555	3608	*	183
+       0	*	*	*	*	*	0	5508	0	1067	
+
+A 184  2740	*	2166	2847	3592	*	*	*	*	2049	*	*	3848	*	3404	*	*	*	*	*	184
+       0	*	*	*	*	*	0	5508	0	1067	
+
+Q 185  2541	*	3757	*	*	2602	*	*	3317	3554	*	3416	*	3616	*	2733	*	*	3671	*	185
+       0	*	*	*	*	*	0	5281	0	1067	
+
+P 186  2541	*	*	3754	*	*	*	*	3317	1335	*	*	2539	*	*	*	*	3554	*	*	186
+       0	*	*	*	*	*	0	5281	0	1067	
+
+R 187  3305	*	*	*	*	*	*	*	*	3187	*	*	3466	*	1013	3403	*	*	*	3205	187
+       0	*	*	*	*	0	*	4837	0	1067	
+
+P 188  *	3376	*	*	*	*	*	*	*	*	*	3654	860	3700	*	3508	*	3207	*	*	188
+       0	*	*	*	*	*	*	5104	0	0	
+
+L 189  3207	3426	*	1886	3700	3458	3376	*	*	3435	*	*	3444	*	*	*	3654	*	*	*	189
+       0	*	*	*	*	*	*	5104	0	0	
+
+D 190  *	3376	1156	3444	*	*	*	*	*	*	*	3207	2536	*	*	3603	*	*	*	*	190
+       0	*	*	*	*	*	*	5104	0	0	
+
+T 191  1804	*	*	*	*	*	3235	*	*	*	*	*	3475	*	*	2133	2319	3490	*	*	191
+       0	*	*	*	*	*	*	4838	0	0	
+
+E 192  3172	*	3095	3124	*	*	*	*	2935	*	*	*	1636	3198	*	*	*	*	*	3385	192
+       0	*	*	*	*	*	*	4578	0	0	
+
+W 193  *	*	*	*	*	2805	*	*	*	*	*	*	*	2986	2630	*	*	*	1277	2677	193
+       337	*	2264	*	*	*	*	3953	0	0	
+
+I 194  *	*	*	*	*	*	*	1953	*	*	*	*	1057	*	*	*	*	1937	*	*	194
+       0	*	*	*	*	0	*	2838	0	1162	
+
+D 195  *	*	2034	*	*	2012	*	*	*	*	*	*	*	*	1985	*	*	1970	*	*	195
+       0	*	*	*	*	*	*	2936	0	0	
+
+R 196  2012	*	*	*	*	*	*	*	1970	*	*	*	*	*	2034	*	1985	*	*	*	196
+       0	*	*	*	*	*	*	2936	0	0	
+
+P 197  *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	197
+       0	*	*	*	*	*	*	2936	0	0	
+
+T 198  1985	*	*	*	1970	2012	*	*	*	*	*	*	*	*	*	*	2034	*	*	*	198
+       0	*	*	*	*	*	*	2936	0	0	
+
+A 199  2034	*	*	*	*	*	*	*	1985	*	*	*	*	*	991	*	*	*	*	*	199
+       0	*	*	*	*	*	*	2936	0	0	
+
+F 200  *	*	*	*	1585	*	*	*	*	585	*	*	*	*	*	*	*	*	*	*	200
+       0	*	*	*	*	*	*	2369	0	0	
+
+A 201  0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	201
+       0	*	*	*	*	*	*	1711	0	0	
+
+A 202  948	*	1053	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	202
+       0	*	*	*	*	*	*	1711	0	0	
+
+R 203  *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	203
+       0	*	*	*	*	*	*	1000	0	0	
+
+R 204  *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	204
+       0	*	*	*	*	*	*	1000	0	0	
+
+A 205  0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	205
+       0	*	*	*	*	*	*	1000	0	0	
+
+E 206  *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	206
+       0	*	*	*	*	*	*	1000	0	0	
+
+R 207  *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	207
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  ba48b3cd7ebd29a9e2e367a37ac501cf
+FAM   
+FILE  ba48b3cd7ebd29a9e2e367a37ac501cf
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:45:49 2013
+LENG  110 match states, 110 columns in multiple alignment
+FILT  149 out of 1021 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  7.6 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCEEEEEECCCCCCCCCCCCHHHCCHHHHHHHHHHHHHHHCCCCCEEEEEEECCCCCCCCCCEEEEECCCEEEEECCHHHHHHHHHHHHHCCCCCHHEE
+ECCCCCCCCC
+>ss_conf PSIPRED confidence values
+9976999908989788667644553899999999999877559997399999345765267988999529979960799999999999986699554405
+1377878779
+>Consensus
+xxxxxIxVCxxxrxxgxxxxxCxxxGxxxlxxxlxxxlxxxxglxxxvxvxxxxClgxCxxgPxVxIxpxxxxyxxvtxxxvxxilxxxlxxgxxvxxxx
+xxxxxxxxxx
+>ba48b3cd7ebd29a9e2e367a37ac501cf
+AEFKHVFVCVQDRPPGHPQGSCAQRGSREVFQAFMEKIQTDPQLFMTTVITPTGSMNACMMGPVVVVYPDGVWYGQVKPEDVDEIVEKHLKGGEPVERLV
+ISKGKPPGMF
+>gi|51244535|ref|YP_064419.1| NADP-reducing hydrogenase, 51 kDa subunit [Desulfotalea psychrophila LSv54]gi|50875572|emb|CAG35412.1| probable NADP-reducing hydrogenase, 51 kDa subunit [Desulfotalea psychrophila LSv54]
+---TVIYIGAA-----T---CGRSAGALKTKKAFETELAKQ-NVK--AEIVEVGCFGPCYTEPLICIArPgkTKLFFQNVDGERAEELVTGYLqTGEIPR
+DYLFAAV-------
+>gi|335048061|ref|ZP_08541081.1| protein HymB [Parvimonas sp. oral taxon 110 str. F0139]gi|333757861|gb|EGL35419.1| protein HymB [Parvimonas sp. oral taxon 110 str. F0139]
+---------------------------------------------------------------------------MGYIENLDKIKNKKypeMLE-IKSQ
+DEKYi-V-------
+>gi|338811198|ref|ZP_08623428.1| NADH dehydrogenase (ubiquinone) 24 kDa subunit [Acetonema longum DSM 6540]gi|337276809|gb|EGO65216.1| NADH dehydrogenase (ubiquinone) 24 kDa subunit [Acetonema longum DSM 6540]
+--------------------ACHIKGSYNVLNSLQQLREEY-GLADQVEINAIFCLNHCTEAVSVQID--DGAVHSVSGSTARDFFIKNILP--------
+----------
+>gi|325281878|ref|YP_004254420.1| hypothetical protein Odosp_3281 [Odoribacter splanchnicus DSM 20712]gi|324313687|gb|ADY34240.1| hypothetical protein Odosp_3281 [Odoribacter splanchnicus DSM 20712]
+--------------------SCYSRGNNVHLEVIKKYIAEN-HLEAEISFSGHLCEELCSSGPILRID--EKVYKEVNLSGLYKILQEEFPI--------
+----------
+>gi|38637753|ref|NP_942727.1| NAD-reducing hydrogenase diaphorase moiety large subunit [Ralstonia eutropha H16]gi|123467|sp|P22317.1|HOXF_RALEH RecName: Full=NAD-reducing hydrogenase hoxS subunit alphagi|141947|gb|AAC06140.1| NAD-reducing hydrogenase [Ralstonia eutropha H16]gi|32527091|gb|AAP85841.1| NAD-reducing hydrogenase diaphorase moiety large subunit [Ralstonia eutropha H16]
+-GKYRIYLCNS-----V---IAKINGYQAVREALERETGIRFGEtdpNGMFGLFDTPCIGLSDQEPAMLID--KVVFTRLRPGKITDIIAQ-LKQGRSPA
+EI-----------
+>gi|114771712|ref|ZP_01449116.1| formate dehydrogenase, beta subunit [alpha proteobacterium HTCC2255]gi|114547784|gb|EAU50674.1| formate dehydrogenase, beta subunit [alpha proteobacterium HTCC2255]
+-DEeippsLTIRVCDS-----L---SCELAGAQDLLFKLGEKYNGggK------VRVVRAPCMGRCDTAPTLEIG--HNHIDNANEEKVEKAIIT-KDFH
+PKIPNY-----------
+>gi|85857988|ref|YP_460190.1| NADH-quinone oxidoreductase chain F [Syntrophus aciditrophicus SB]gi|85721079|gb|ABC76022.1| NADH-quinone oxidoreductase chain F [Syntrophus aciditrophicus SB]
+----RyhLQVDTN-----I---PATLMgageILDHLEKTLNIRAGET-TPDGLFTLSEVECLASCGTCPVIQVN--DVYYENMTREKVDSLLDS-LRKG-
+----------------
+>gi|17230086|ref|NP_486634.1| hypothetical protein alr2594 [Nostoc sp. PCC 7120]gi|17131687|dbj|BAB74293.1| alr2594 [Nostoc sp. PCC 7120]
+-TKHTLFVCKSCHRSSEELAENQPCDGSILLDKITSLYSEK-FATEELEIQSVGCLWACSRGCVVALSsPEKptYLLVDLPPdaENASALLE--------
+---------------
+>gi|163749625|ref|ZP_02156872.1| precorrin methylase [Shewanella benthica KT99]gi|161330735|gb|EDQ01672.1| precorrin methylase [Shewanella benthica KT99]
+--LYQLIVCEGG--------RCEIPGQAGLAHRIRGLLKES-GFskgVNRIKVTRSHCLGCCRKLVPMVIYQgksqtrisenHALWLQkvdRLTDEQWQQ
+VFH-SLVEDSSVKACLRA--------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+A 1    1840	*	*	*	*	*	*	*	2679	*	*	*	2471	3541	*	*	*	1745	*	*	1
+       0	*	*	*	*	*	*	3600	0	0	
+
+E 2    2663	*	4177	2993	*	1331	*	*	*	*	*	*	3676	*	*	2683	*	5068	*	*	2
+       0	*	*	*	*	*	*	5414	0	0	
+
+F 3    3794	*	3678	3283	5616	4392	4871	*	2043	5660	*	5828	*	5232	1886	*	3885	*	*	*	3
+       51	4852	*	2303	327	*	*	7113	1483	0	
+
+K 4    3576	*	6191	4903	4171	5666	2329	4005	3057	3940	*	5155	4795	5648	4129	4628	5316	4881	*	3231	4
+       139	3449	*	0	*	*	*	7560	1576	0	
+
+H 5    5507	5485	7288	4138	6902	*	2710	4640	3252	4155	5548	*	*	3482	2876	6138	2857	3442	*	4688	5
+       75	4297	*	1318	740	*	*	7983	1478	0	
+
+V 6    6381	7045	*	*	5452	*	*	1416	*	2171	*	*	*	6358	*	*	*	1520	*	*	6
+       0	*	*	*	*	*	*	8048	0	0	
+
+F 7    5381	5759	*	6095	2525	5657	4788	4356	4198	2134	5925	*	*	4122	3567	4070	4441	4284	5806	4353	7
+       0	*	*	*	*	*	*	8048	0	0	
+
+V 8    5577	5636	*	*	5960	*	*	2250	6278	3700	*	*	7177	7019	*	*	*	707	6994	6994	8
+       0	*	*	*	*	*	*	8048	0	0	
+
+C 9    *	190	*	*	*	4285	6968	*	*	*	*	*	*	*	*	4708	6202	*	*	6358	9
+       18	6358	*	2322	322	*	*	8048	1037	0	
+
+V 10   4002	5470	4249	4009	6242	4946	6193	4458	7118	4513	3736	3531	*	4058	3939	4122	2348	3267	*	*	10
+       58	*	4674	*	*	*	*	8048	0	0	
+
+Q 11   4204	5220	4484	*	*	1500	4328	*	5233	5289	*	3428	*	4839	*	2349	3527	7005	*	*	11
+       958	*	1043	*	*	*	0	8025	0	1309	
+
+D 12   4055	2292	4857	*	4753	2918	*	*	4870	4089	5920	4206	2617	5710	4381	3476	5636	*	5154	*	12
+       518	*	1728	*	*	*	0	7279	0	4859	
+
+R 13   4818	5092	*	*	*	*	5419	*	4276	4114	*	*	*	*	676	3448	3557	*	*	*	13
+       1227	*	804	*	*	*	0	6701	0	5575	
+
+P 14   2276	*	3072	4214	3822	*	*	*	4043	3911	*	*	2697	4038	2834	*	3887	*	*	*	14
+       0	*	*	0	*	4342	73	4909	1004	6435	
+
+P 15   3447	*	4353	4070	*	3440	*	*	*	*	*	4523	2234	4332	3184	2424	4137	4356	*	*	15
+       72	*	4353	*	*	4127	85	5537	0	6267	
+
+G 16   *	*	3406	3998	*	747	4510	*	*	4630	*	*	4655	*	4581	4441	4823	*	*	*	16
+       307	*	2384	*	*	689	1397	5973	0	6110	
+
+H 17   4509	*	4965	3079	*	6646	5144	4994	4082	5206	4709	6683	*	5485	5342	3230	1633	3280	*	5440	17
+       1701	*	530	*	*	3056	185	7642	0	3684	
+
+P 18   3725	*	3407	*	*	4731	4491	*	*	*	*	4547	1922	2809	2479	*	4784	3593	*	*	18
+       414	*	2004	*	*	5566	31	5906	0	6128	
+
+Q 19   4373	*	2642	*	*	4512	*	*	1615	4404	*	*	4276	3290	3198	4108	*	*	4232	*	19
+       175	*	3128	*	*	3942	97	5526	0	6274	
+
+G 20   2146	*	4413	4492	*	1903	*	*	4824	*	*	*	2449	*	4565	3874	*	3533	*	*	20
+       193	2996	*	0	*	197	2971	5878	1243	6137	
+
+S 21   2767	2941	4365	5490	*	3745	*	5933	4111	5944	6196	4079	4076	*	4048	2712	3431	6022	7160	5229	21
+       39	*	5242	*	*	0	*	8435	0	2147	
+
+C 22   5770	373	5324	6791	6859	3760	*	6685	7046	6597	6863	*	*	6597	*	4830	6433	*	*	*	22
+       50	5357	6685	403	2035	437	1936	8503	1243	1240	
+
+A 23   3316	6632	5203	4036	4970	3225	3590	3649	3906	3652	4895	6864	*	5408	3604	4726	4255	5296	*	3476	23
+       70	4912	6147	0	*	*	0	8536	1374	1109	
+
+Q 24   2321	*	4774	5337	5968	4844	*	3962	2966	3298	4813	6005	6626	4798	4456	3129	5738	3204	*	6679	24
+       9	7258	*	634	1492	458	1879	8527	1223	1261	
+
+R 25   2938	4536	5576	5880	*	4923	4588	*	2823	4065	3438	4468	5719	4828	2614	3155	6311	4921	*	*	25
+       74	5960	4891	390	2079	0	*	8552	1199	1014	
+
+G 26   *	*	4446	4377	*	350	6678	*	5196	*	*	6261	4962	*	6155	6698	7006	*	*	7033	26
+       74	6036	4853	0	*	527	1709	8531	1081	1383	
+
+S 27   1890	6213	*	6902	*	1822	7339	6840	6854	*	*	4159	*	5896	7053	1926	5258	7223	7314	5692	27
+       23	5973	*	0	*	196	2974	8529	1073	1457	
+
+R 28   3209	*	3559	3010	6760	5142	*	6084	3005	4658	4672	5047	4068	2655	3609	4885	5600	5705	*	5440	28
+       12	6969	*	2322	322	*	0	8565	1000	1000	
+
+E 29   2674	*	3302	2598	*	5486	5344	4796	3986	3797	6153	5181	4693	3680	3829	3616	5636	7076	7053	6216	29
+       0	*	*	*	*	*	0	8565	0	1000	
+
+V 30   4734	*	*	*	4468	6892	6057	2366	*	1306	7165	5176	*	*	*	6854	4085	2423	*	7199	30
+       0	*	*	*	*	*	0	8565	0	1000	
+
+F 31   3447	6038	*	7194	3622	*	5000	3688	4317	1817	4459	*	*	6099	5283	4404	5795	4070	4431	3246	31
+       0	*	*	*	*	*	0	8565	0	1000	
+
+Q 32   2894	*	2458	2667	7161	4452	4712	7165	3444	5842	*	3953	6220	3528	4112	4511	4996	6088	*	7268	32
+       0	*	*	*	*	*	0	8565	0	1000	
+
+A 33   1747	6908	4520	3446	5679	7220	4063	4546	4233	3816	*	6225	*	4963	4300	3680	4401	5181	*	4155	33
+       13	6852	*	0	*	*	0	8565	1000	1000	
+
+F 34   4285	7198	*	5923	2895	6935	*	2614	*	1034	4815	6618	*	*	6989	6852	*	3860	*	*	34
+       52	*	4828	*	*	*	0	8565	0	1000	
+
+M 35   3621	6868	4912	2684	*	5645	7805	4922	2412	5089	6375	5756	*	3120	2485	6277	4505	4136	*	6870	35
+       20	*	6176	0	*	271	2548	8489	1004	1323	
+
+E 36   3400	*	3494	2313	6612	4228	6826	*	2926	5854	*	4041	*	3122	3478	3953	4125	7200	*	*	36
+       8	7540	*	1585	585	*	0	8553	1000	1111	
+
+K 37   3160	5496	*	2335	4303	7445	4800	4499	4137	2380	7026	*	*	7339	3269	6369	4365	3907	6534	5229	37
+       157	*	3277	1000	1000	1622	567	8553	1000	1111	
+
+I 38   3398	5285	6478	6795	6306	*	*	2593	*	1431	6099	*	5229	5526	6870	5139	5191	2570	*	6118	38
+       68	4722	6992	0	*	3447	139	8478	1245	2092	
+
+Q 39   2463	6767	4007	3010	*	3514	5499	5836	2343	6144	6667	4968	5012	5611	3222	4696	5535	6058	6771	*	39
+       63	6711	4907	0	*	2241	343	8376	1037	2358	
+
+T 40   3194	6074	4298	1950	6643	5058	*	4233	3465	4301	7152	4991	6001	3886	4260	4027	4711	4097	*	*	40
+       147	4905	3974	1220	809	1692	534	8442	1318	2323	
+
+D 41   3671	6953	3402	4363	5660	3929	3935	*	3352	3398	5373	3746	5863	4469	3189	3839	4691	6858	5445	5988	41
+       2068	7200	406	0	*	3282	157	8339	1000	2438	
+
+P 42   3216	*	5383	2927	3321	*	*	3715	*	*	5407	*	1296	*	*	4353	*	4189	5256	*	42
+       82	5108	5256	0	*	225	2791	5344	1000	6691	
+
+Q 43   4611	*	3488	3720	*	1133	5631	6841	5542	5134	*	3130	4944	4081	5720	6574	6713	6114	*	*	43
+       58	5363	6045	1000	1000	2343	317	8397	1112	2215	
+
+L 44   3926	5269	5029	3473	5691	5536	5496	3153	4620	1439	4814	6996	5876	5619	6105	7397	*	3862	6086	5790	44
+       605	1845	3964	1682	539	1722	521	8458	3400	2097	
+
+F 45   3225	*	1986	2953	6097	3938	6975	6576	3275	5640	*	4727	4894	4228	7092	3490	5719	5195	6324	6636	45
+       129	6035	3837	3316	153	1550	603	8454	1114	2444	
+
+M 46   3320	5837	2640	3880	7078	2031	6045	5820	4295	6929	5471	3348	5289	5001	5460	3810	5791	6268	*	7104	46
+       145	4595	4202	1764	503	2170	363	8459	1463	2540	
+
+T 47   3936	*	3869	2741	*	3977	3976	7038	2947	4669	4861	4742	5409	3745	2973	4325	4522	5977	*	7290	47
+       22	6812	7279	0	*	298	2423	8432	1000	2650	
+
+T 48   4257	5941	*	*	3097	*	*	2089	*	2932	*	*	*	6805	*	*	5198	1385	6862	5590	48
+       70	7370	4589	1000	1000	1340	725	8540	1003	1316	
+
+V 49   4292	*	4119	2494	*	5060	4919	5706	3251	4055	7347	4502	*	4104	3381	3463	3073	5174	6826	5976	49
+       0	*	*	0	*	237	2720	8453	1245	1540	
+
+I 50   5052	6121	*	*	5540	*	*	1923	*	2387	6100	*	5972	*	4994	7348	4650	1579	5544	6047	50
+       18	*	6360	*	*	*	0	8546	0	1017	
+
+T 51   5732	*	5013	2681	5961	5114	5151	4059	3272	4805	*	5178	*	3873	3549	3554	3591	2681	5918	*	51
+       0	*	*	*	*	1176	843	8531	0	1137	
+
+P 52   3879	*	5789	3020	6038	2987	5130	6212	3203	5580	6796	7306	3547	4815	2700	4575	3236	5712	*	5624	52
+       9	7307	*	0	*	0	*	8554	1006	1042	
+
+T 53   3933	3559	7312	*	*	7082	5954	3944	4908	5237	5049	5655	*	7309	5272	3591	1697	2217	7302	*	53
+       19	*	6277	*	*	*	*	8569	0	0	
+
+G 54   4793	*	5143	3399	4331	1721	5402	*	4349	5538	7207	4312	3812	5576	4203	3097	4213	7379	*	6254	54
+       13	*	6836	*	*	*	0	8553	0	1056	
+
+S 55   6694	163	*	*	*	*	4964	*	*	*	*	*	*	*	*	4266	*	6248	*	*	55
+       0	*	*	*	*	*	0	8523	0	1177	
+
+M 56   4913	*	*	5935	3681	*	7201	3741	*	1462	2666	4498	*	3791	5153	5612	5662	3682	*	7047	56
+       0	*	*	1585	585	922	1082	8523	1056	1177	
+
+N 57   4771	7043	3865	4507	6076	827	6307	*	4936	*	6085	3743	*	5421	4847	4348	7301	*	6668	7233	57
+       19	*	6273	*	*	*	0	8539	0	1042	
+
+A 58   3166	4409	*	4939	4095	3777	5148	5055	4458	2762	4656	4108	4486	4066	3700	4714	4898	4170	7343	6157	58
+       87	4848	5401	1872	461	*	0	8523	1245	1177	
+
+C 59   *	167	6913	6563	*	*	5213	*	*	6684	*	*	*	*	*	6634	6686	6229	*	5591	59
+       9	*	7297	373	2134	981	1019	8358	1374	1795	
+
+M 60   3150	6180	2588	4262	5173	4008	4766	*	3050	*	6270	4159	6858	4374	3775	3543	4195	5684	4764	6349	60
+       60	4614	*	1574	591	*	0	8414	1331	1422	
+
+M 61   4350	6028	3739	4595	5020	7497	5194	4838	3523	3477	4794	3710	*	3188	3075	3493	4297	5869	6812	4742	61
+       0	*	*	1676	541	*	0	8414	1245	1422	
+
+G 62   1939	*	6065	2884	6557	1246	*	*	6159	6675	*	*	4284	*	6933	4295	6877	6178	*	*	62
+       0	*	*	1253	785	761	1287	8414	1149	1422	
+
+P 63   4854	3835	*	*	*	5341	*	7247	*	5819	*	*	424	*	*	6097	5335	4016	*	*	63
+       15	6619	*	0	*	783	1255	8512	1035	1129	
+
+V 64   3396	6205	*	*	5022	6839	*	3257	7161	3220	4449	2647	5380	*	*	4347	3221	2115	*	5937	64
+       8	7460	*	0	*	*	0	8542	1000	1008	
+
+V 65   3502	6877	*	*	5027	*	*	2764	*	2904	3453	*	*	*	*	*	*	999	*	*	65
+       30	5587	*	0	*	0	*	8542	1211	1008	
+
+V 66   3424	6528	5147	3563	6095	6441	4798	3891	3852	2966	3662	6761	*	4615	3921	4368	3992	2931	6353	7233	66
+       12	6896	*	0	*	*	*	8569	1037	0	
+
+V 67   5028	*	6364	5838	4434	7213	*	1458	*	3430	5988	*	*	*	*	5895	7054	1474	*	5065	67
+       274	7328	2586	2807	222	*	*	8569	1000	0	
+
+Y 68   4366	*	3644	4262	5289	4548	4342	5471	4940	4549	4385	2988	*	3528	3684	4126	4732	4616	6678	3059	68
+       973	2194	1877	154	3304	1987	419	8325	2975	2375	
+
+P 69   4586	*	3323	4408	*	4551	6537	*	*	5118	6808	5510	766	4964	*	4645	4712	*	*	*	69
+       487	2425	3316	1937	437	1460	652	8057	2420	3850	
+
+D 70   4403	*	1655	3295	*	2370	4287	*	3981	*	*	4369	4943	4269	4007	5897	6198	*	*	*	70
+       192	3269	5595	2393	305	0	*	7829	1840	3371	
+
+G 71   4572	*	3143	3574	7070	1551	4821	*	3302	*	7451	3506	5247	5206	3925	4584	*	*	6077	7425	71
+       221	3435	4329	1512	623	*	0	8526	2030	1184	
+
+V 72   5016	7298	4192	3166	*	5425	4380	3696	3496	3640	*	4140	6681	4634	4448	7231	3994	2711	5217	3684	72
+       7	7603	*	585	1584	223	2806	8518	1559	1741	
+
+W 73   5747	6727	7168	6358	3909	*	7158	3058	7075	2795	4094	5740	4518	5900	7446	6363	3957	2794	2443	4068	73
+       65	4999	6273	1118	891	*	0	8539	1299	1042	
+
+Y 74   *	6067	*	7217	2659	*	4511	3482	*	3331	5129	*	*	*	6920	*	*	4041	*	1030	74
+       19	6251	*	0	*	*	0	8523	1083	1177	
+
+G 75   4114	7047	4502	3573	6304	1859	4058	*	3874	5454	7202	6247	4474	4513	4509	3584	3728	5386	7538	5254	75
+       39	5214	*	1294	756	0	*	8523	1299	1177	
+
+Q 76   6350	5509	3950	4142	6044	3097	4273	*	3150	*	6230	2582	4951	4116	2919	4287	6732	4672	*	4452	76
+       47	6268	5716	1642	557	*	*	8579	1135	0	
+
+V 77   3178	5129	*	*	4964	5840	*	3348	7246	2604	3629	6293	6207	6193	5591	*	*	1320	*	*	77
+       38	5660	7369	0	*	527	1709	8550	1282	1143	
+
+K 78   4804	*	2718	4769	6826	5858	7239	*	3729	6140	6511	3522	6679	5009	4429	2898	1670	5984	*	8064	78
+       28	7264	6269	1585	585	859	1156	8563	1000	1073	
+
+P 79   2998	6445	5151	3141	6609	5091	*	4749	4144	3423	6268	7051	1683	5878	5801	4622	4717	4333	*	*	79
+       89	4067	*	1028	972	1578	588	8553	1703	1124	
+
+E 80   2730	*	2649	1723	*	4502	6896	*	4345	6806	*	4668	5935	3702	4771	3860	5014	7110	*	*	80
+       0	*	*	*	*	*	0	8562	0	1056	
+
+D 81   3830	6836	2299	3662	7500	5081	*	6789	2576	6703	6155	3635	*	3668	3361	4069	4515	4524	*	*	81
+       53	5068	7350	0	*	*	0	8562	1252	1056	
+
+V 82   2077	*	*	*	6058	*	*	2658	*	2244	5512	*	5808	*	*	6961	4856	1846	5802	*	82
+       13	*	6836	*	*	*	0	8553	0	1118	
+
+D 83   3655	6618	3161	3254	*	4574	*	3989	2919	4605	5075	5618	3177	5012	3474	4609	5963	4149	*	5598	83
+       0	*	*	*	*	1394	691	8523	0	1238	
+
+E 84   2993	*	3407	1944	7225	4463	*	*	3453	4593	6047	5262	7051	3843	3388	4587	4547	5254	*	6513	84
+       17	*	6445	*	*	*	0	8553	0	1118	
+
+I 85   4077	*	*	6970	4988	*	*	1387	5612	1684	5869	*	*	6846	6208	*	5181	3171	*	6761	85
+       0	*	*	2235	345	299	2419	8551	1140	1249	
+
+V 86   4274	*	*	*	3408	*	*	2212	8010	1560	5051	*	*	*	8290	*	5463	2100	*	7418	86
+       19	*	6251	2322	322	0	*	8570	1000	1000	
+
+E 87   3448	*	2541	2350	*	5020	5784	7144	4047	5152	7102	5338	*	3427	3349	3889	3998	5922	*	5262	87
+       29	*	5671	*	*	*	0	8544	0	1056	
+
+K 88   2951	*	3828	2378	5841	3963	5476	5919	3189	6133	*	5594	7052	4318	3443	3091	3978	7388	*	7297	88
+       283	*	2488	*	*	0	*	8358	0	1227	
+
+H 89   3752	*	*	3745	6333	5240	1637	5141	4489	2912	6622	5189	*	5732	6375	5449	4170	4524	*	3401	89
+       132	4481	4556	1052	950	328	2298	8192	1461	2481	
+
+L 90   5061	*	*	6831	2931	6772	*	2433	4730	1626	4000	5776	6402	6736	4870	*	5010	3338	*	6956	90
+       41	6873	5695	0	*	251	2645	8270	1004	1737	
+
+K 91   3064	*	4548	4257	6210	4494	5453	3732	3406	2829	4604	5728	6314	5118	2895	4587	5586	3378	*	*	91
+       61	5943	5309	2853	215	*	0	8157	1198	1216	
+
+G 92   3210	5300	3626	3398	5380	2964	5864	5515	3228	*	*	3353	5465	4140	3505	3443	6062	5603	*	*	92
+       50	6740	5343	0	*	463	1866	8066	1000	1405	
+
+G 93   3752	6311	3683	4899	*	844	4199	*	6022	*	*	4029	*	4707	5481	*	4764	5966	*	*	93
+       159	3258	*	1932	438	564	1629	7138	1584	1333	
+
+E 94   3866	6293	6612	2243	*	6155	5497	5892	3562	6597	*	6020	3401	4158	2242	3416	6743	3864	*	*	94
+       186	5487	3345	607	1541	887	1123	7094	1066	1056	
+
+P 95   5026	*	5259	3780	6087	4219	6070	4099	4289	3326	5977	*	2027	5174	3747	3516	5811	3194	*	*	95
+       0	*	*	*	*	*	0	7541	0	1564	
+
+V 96   3841	5014	4363	5554	*	*	5714	2732	5960	3174	*	5984	4363	7060	5159	5591	6460	1318	*	*	96
+       31	*	5533	*	*	361	2176	7541	0	1564	
+
+E 97   2388	*	3681	2171	6059	5247	*	6164	3981	6004	*	*	3568	3723	3571	3238	6242	6465	*	*	97
+       66	4486	*	2242	343	*	0	6978	1167	1187	
+
+R 98   3538	*	2497	2118	*	4284	6561	5961	4022	5793	*	4016	4647	5229	2999	5617	4013	*	*	6253	98
+       22	*	6016	*	*	*	0	7348	0	1187	
+
+L 99   6509	4188	*	5318	4209	5264	3895	4147	4910	1724	5255	6124	5923	6106	*	4739	5911	3928	3961	3136	99
+       76	4288	*	261	2594	1455	655	7334	1190	1251	
+
+V 100  3254	*	5951	3958	5877	5006	4532	2775	5731	1825	5753	5611	*	5923	4247	*	6134	3356	5617	4805	100
+       19	6219	*	1944	434	500	1771	7066	1068	1132	
+
+I 101  5881	6080	4807	4081	5665	5426	4555	2792	5032	3123	5758	*	4737	*	3283	4895	*	2967	5806	2643	101
+       381	2108	*	684	1405	*	0	6977	1797	1000	
+
+S 102  3610	5477	3707	*	5441	*	5552	5066	4593	4059	5368	5465	1886	5473	3935	4433	2606	5178	*	*	102
+       0	*	*	2000	415	0	*	6309	1000	1184	
+
+K 103  4111	*	3045	2550	*	*	*	4735	4841	*	*	3662	*	3148	4036	3594	3263	3634	4119	*	103
+       66	4482	*	1585	585	*	*	6054	1000	0	
+
+G 104  4159	*	4046	2637	*	3069	*	*	3915	*	3775	*	2326	*	3793	2376	*	*	*	*	104
+       0	*	*	*	*	*	*	4784	0	0	
+
+K 105  *	*	*	*	*	*	2461	*	1578	*	*	*	2700	2574	*	2630	*	*	*	*	105
+       0	*	*	*	*	*	*	3143	0	0	
+
+P 106  *	*	*	*	*	2006	*	*	*	*	*	*	413	*	*	*	*	*	*	*	106
+       0	*	*	*	*	*	*	2504	0	0	
+
+P 107  *	2006	*	*	*	*	*	*	1940	*	*	*	1028	*	*	*	*	*	*	*	107
+       0	*	*	*	*	*	*	2504	0	0	
+
+G 108  *	*	*	*	*	552	*	*	*	*	*	*	*	*	1652	*	*	*	*	*	108
+       0	*	*	*	*	*	*	1989	0	0	
+
+M 109  *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	109
+       0	*	*	*	*	*	*	1000	0	0	
+
+F 110  *	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	110
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  bbd36c9292c799cc4a4733df8189699f
+FAM   
+FILE  bbd36c9292c799cc4a4733df8189699f
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:48:50 2013
+LENG  184 match states, 184 columns in multiple alignment
+FILT  113 out of 1318 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  10.6
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCEEEEEEECCCEEEEEEECCCCCEEEEEEEEEECCCCCCEEEEEECCCCCEEEECCCCCCCEEEEEEEEEECCCCCCCEEEEEEECCCCCCCEEE
+EECCCCEEEEEEECCCCCCCEEEEEEEECCCCCCEEEEEECCCCCEEEECCCCCCCEEEEEEEEEECCCCCCCCCCCEEEEEEC
+>ss_conf PSIPRED confidence values
+9898840499980499799999799998139999999899998269999379836899838889988999999993898788515477606899953199
+963799699999489987457999999689997218999668846999908899988999999996997267878848999889
+>Consensus
+xlxxPxxlxxxxxxxxxixlxWxxxxxxxxxyxvxxxxxxxxxxxxxxxxxxxxxxxxixxLxpxtxYxxxvxaxxxxxxxxxxxxxxxxxxxxPxxlxx
+xxxxxxxixlxWxxxxxxxxxYxvxxxxxxxxxxxxxxxxxxxxxxxxxxxLxpxxxYxxxVxaxxxxgxxxxxxxxxxxxxxT
+>bbd36c9292c799cc4a4733df8189699f
+GLDSPTGFDSSDITANSFTVHWVAPRAPITGYIIRHHAEHSVGRPRQDRVPPSRNSITLTNLNPGTEYVVSIIAVNGREESPPLIGQQATVSDIPRDLEV
+IASTPTSLLISWEPPAVSVRYYRITYGETGGNSPVQEFTVPGSKSTATINNIKPGADYTITLYAVTGRGDSPASSKPVSINYKT
+>gi|242004913|ref|XP_002423320.1| conserved hypothetical protein [Pediculus humanus corporis]gi|212506339|gb|EEB10582.1| conserved hypothetical protein [Pediculus humanus corporis]
+-IPSPPEIILQALNSSEIEVRWNLPSkeIKVIGYKIFYRKQNSS-QVGPIIVPADTKKYIVAGLEPETWYEITVLGFTSEDDGETGVSfmhtlsnvgssn
+kmmsEFPSIPEPPVSLEAEPISSRAINLTWSISQQatpgliNIKHFTICFNPVQNSLDKNAVvrCVKSLENKILISGLNPHTLYEFKVRSHNSNEKYSAF
+SQTI------
+>gi|14861868|ref|NP_149090.1| receptor-type tyrosine-protein phosphatase V precursor [Rattus norvegicus]gi|2499757|sp|Q64612.1|PTPRV_RAT RecName: Full=Receptor-type tyrosine-protein phosphatase V; Short=R-PTP-V; AltName: Full=Embryonic stem cell protein-tyrosine phosphatase; Short=ES cell phosphatase; AltName: Full=Osteotesticular protein-tyrosine phosphatase; Short=OST-PTP; Flags: Precursorgi|725329|gb|AAA63911.1| protein tyrosine phosphatase [Rattus norvegicus]
+--GPLLSVNVSSHGkSTSLFLSWVAAELGGFDYALSLRSVNSSGSPEGQQlqAHTNESGFEFHGLVPGSRYQLKLTVLRPCWQNVTITLTARTAPTVVRG
+LQLHSAGSpARLEASWSDAPGDQDSYQLLLYHLESQTLACNVSVSPDTLSYSFGDLLPGTQYVLEVITWAGSLH--------------
+>gi|317048328|ref|YP_004115976.1| hypothetical protein Pat9b_2108 [Pantoea sp. At-9b]gi|316949945|gb|ADU69420.1| Protein of unknown function DUF1983 [Pantoea sp. At-9b]
+-----------venltiintNSETVQVTAKWETATtTKKLTFELTVYTEAGTVVKSYET---EAFTYDFYGLDAG-SYTLGVRGRNSNGMKgAETQVSLV
+iGAPSAPTFIQWT-PGIFSADIVPVMNVTatTDTSFEFWYTgEVQASSVASVEDEAQflgRASQWTLHGLKADTTYYMYVRTKNAFGVSAFVE-------
+--
+>gi|326203258|ref|ZP_08193123.1| S-layer domain-containing protein [Clostridium papyrosolvens DSM 2782]gi|325986516|gb|EGD47347.1| S-layer domain-containing protein [Clostridium papyrosolvens DSM 2782]
+-LSPPANLSFNIISKTEVELTWDDTSSMEAGFIVEKKIGLLSQWYQISQLEPNVTKYNDKWISSTEPTFYRIKAFDRSTAVSYSNEVQLSLdaPEVPSNL
+QTSVLSTNDVKLSWKDNSSTEEGFIIEAKQLY---LFREIgRVDSNVTTFIYHDAIPGRTMTYRIRAVKGLVQSNPSNEVATVTLV-
+>gi|297570154|ref|YP_003691498.1| hypothetical protein DaAHT2_2214 [Desulfurivibrio alkaliphilus AHT2]gi|296926069|gb|ADH86879.1| conserved hypothetical protein [Desulfurivibrio alkaliphilus AHT2]
+---APRALAAEA-GDRVVELRWQPPREIPAlPaevsaelrYQLYRSRDGKDF--TALATT-AELHHLDREVVGGRTYYYRVRAMAVLGetrvAGPVGATV
+SVtardlTPPTAPLLEAAVP-VREGVRLLWEMPDDrRIAEFIVLRRLPGEDEGREIGRQRAPALSHLDRHPPAEADvWYYRLVAVDVEGNRSE-PGNELR
+FRR-
+>gi|301627360|ref|XP_002942842.1| PREDICTED: interferon alpha/beta receptor 1-like [Xenopus (Silurana) tropicalis]
+GRPYPENVTM-EALNTNYMLKWDWdysQHPNVTfsve----NNSEIWPGKWNQVQGcENISRRNCDVSgI-YIYGKYNFRVAASLDNNNRTLSRAlrfnp
+EKDTVIGPPSNVStel---YGT-KLHVNVLKVEAFhnddlknycDWEYNLIYWKDSa-S---DReeKTLNEKVGRFTI-EVEASTTYCLTVRVV------
+-------------
+>gi|194207920|ref|XP_001501538.2| PREDICTED: ephrin type-B receptor 2 [Equus caballus]
+---GTFKANQGDEACAHCPIN-SRTTsegATNCVCRNGYYRADLD--PldmpcttipsapQAVISSVNETSLMLEWTPPRDSggredLVYNIICKSCgSG
+RG--------------------------------------------------------------------------------------------------
+-----
+>gi|338710274|ref|XP_001917456.2| PREDICTED: myosin-binding protein C, fast-type-like [Equus caballus]
+--DPPEAVRVTSVGEDWAVLVWEPPKydggqplteqpkirlprhlretyvrkvGEHLNLVIPFQGKPRPQVVWTKGgAPVDTSRVHVRTSDFDTVFFVRE
+AARSDSGEYELSVQienmkdtatiriRVVEKAGPPEHVMVKEVWGTNALVEWQPPKDdgnsEITGYLVQKADKKTMEW-FTVYEHNRHTCCTVSDLIMGN
+EYYFRVYSENFCGLS-------------
+>gi|89891172|ref|ZP_01202679.1| extracellular ribonuclease [Flavobacteria bacterium BBFL7]gi|89516484|gb|EAS19144.1| extracellular ribonuclease [Flavobacteria bacterium BBFL7]
+----------------------------------------------------------------------------------------SGTlfPTLSgty
+VDINGNTIVDAGDEIQYTYDIANigTTTlYNLR--------ATAPLGTFNPGNQVAslAAGQSlnnPFGTFTYVLTAADATNSCGCITNQLLLA---
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+G 1    2192	*	*	3213	*	836	*	*	3143	*	*	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	4840	0	0	
+
+L 2    *	*	*	*	*	*	*	2296	*	937	2956	*	*	*	*	*	4698	3228	*	*	2
+       0	*	*	*	*	*	*	8214	0	0	
+
+D 3    4574	*	2488	3511	*	3885	5714	6546	4507	4563	*	*	2734	3893	4567	3222	4507	4593	*	4160	3
+       0	*	*	*	*	*	*	9405	0	0	
+
+S 4    2498	5873	5839	5668	*	3844	4930	5891	3833	*	4760	*	1673	4181	5046	3366	5021	5988	*	*	4
+       23	*	5988	*	*	*	*	9875	0	0	
+
+P 5    *	*	*	*	*	*	*	5985	6090	5903	*	*	299	*	4988	*	5147	3644	*	*	5
+       0	*	*	*	*	*	0	10034	0	1009	
+
+T 6    4587	*	*	3085	6610	6467	6118	3860	3535	4569	*	6208	4517	3655	2897	3083	2776	4070	*	6272	6
+       0	*	*	*	*	0	*	10340	0	1009	
+
+G 7    3614	*	2949	4124	*	4471	5514	5181	3445	*	6031	1734	6234	4430	5577	3594	6199	6452	6199	5213	7
+       20	6180	*	3322	152	*	*	10379	1009	0	
+
+F 8    5501	6253	6094	*	2756	*	*	3123	6119	1416	*	*	3282	*	*	*	*	2502	*	5730	8
+       0	*	*	*	*	*	*	10470	0	0	
+
+D 9    3446	*	5113	4553	*	*	4393	4901	3023	5757	4763	4523	6665	2840	2990	3189	3460	4411	6513	*	9
+       0	*	*	*	*	*	*	10528	0	0	
+
+S 10   2970	4082	*	*	3760	6383	*	2516	6231	3017	6363	*	5277	4551	*	4539	*	2018	6214	4967	10
+       49	6685	5417	2000	415	*	*	10528	1000	0	
+
+S 11   4793	*	4519	3236	6524	4604	4757	4340	5867	3684	5255	4184	*	3967	3576	3258	2539	3730	*	*	11
+       17	6438	*	2702	241	0	*	10527	1166	1275	
+
+D 12   3136	*	3276	3415	*	4320	*	6650	3695	3851	*	3591	3704	4226	4039	3294	5706	4169	5657	6359	12
+       126	4270	4971	1203	822	*	*	10618	1866	0	
+
+I 13   4166	5442	6446	5005	5508	4139	6618	3017	4083	5060	4508	4599	4058	5396	6355	3642	3298	2301	*	6476	13
+       0	*	*	*	*	459	1876	10530	0	1685	
+
+T 14   3231	6514	3778	3750	5463	4157	6532	6406	5540	5497	6437	3133	5434	*	4583	2545	2511	4666	*	6167	14
+       80	4211	*	1617	569	*	0	10665	1866	1031	
+
+A 15   2731	7076	3840	3363	*	3553	6643	6451	4229	6568	6854	3996	3563	4936	6381	2369	3587	5875	*	6651	15
+       10	7249	*	0	*	*	0	10694	1000	1031	
+
+N 16   5065	*	4050	4265	6298	3253	4281	*	5527	*	6456	3519	5507	5556	3242	3121	1810	*	6848	6563	16
+       14	6726	*	2150	368	0	*	10738	1227	1031	
+
+S 17   3986	6555	4072	4285	5150	4196	7177	6514	3758	6494	6603	6321	6513	3873	5179	1693	2813	5098	6688	6667	17
+       0	*	*	*	*	*	*	10816	0	0	
+
+F 18   2702	5213	*	*	3888	6607	6515	2018	*	2659	4393	*	4985	*	*	*	5685	2212	*	6509	18
+       14	*	6735	*	*	*	*	10790	0	0	
+
+T 19   6613	6544	6693	3686	*	5088	5178	4433	3003	4379	5645	5670	5995	3802	2980	3658	2728	3155	6884	6501	19
+       31	5554	*	4055	90	0	*	10780	1290	1000	
+
+V 20   6714	4182	*	*	4921	*	*	1819	*	1421	5628	*	*	*	*	6671	*	2431	*	5049	20
+       0	*	*	*	*	*	*	10790	0	0	
+
+H 21   3668	6724	4939	3769	6552	6780	6150	5569	3869	4587	5712	6106	*	3795	3807	1944	2683	5251	6496	6511	21
+       34	*	5407	*	*	*	*	10790	0	0	
+
+W 22   6318	*	*	*	4336	6458	*	*	*	4811	*	*	*	*	*	*	*	5728	216	6502	22
+       62	5001	6567	952	1050	483	1814	10759	1640	1504	
+
+V 23   4265	*	2849	3011	*	6601	6466	*	2917	4556	6590	5805	6633	3869	3506	2649	3414	4622	*	*	23
+       171	6808	3279	594	1567	0	*	10772	1188	1208	
+
+A 24   3257	*	4990	4122	6445	4431	5544	5622	3578	5449	6347	3720	1659	*	3828	4825	5893	5136	6601	4872	24
+       176	3624	4878	347	2224	313	2358	10646	2323	3039	
+
+P 25   3959	*	4600	6564	6667	3276	5423	6777	5047	4065	6421	6475	1360	6723	5654	3488	4720	3866	*	6503	25
+       135	4032	5152	1600	578	1316	741	10715	2210	1916	
+
+R 26   2975	*	3827	4170	6399	4058	6459	5639	4208	4308	*	3512	3262	5727	3486	4037	3539	3852	*	5463	26
+       1167	929	5080	1939	436	842	1178	10721	7985	2247	
+
+A 27   3737	4924	4325	3513	*	2425	5550	4612	4917	5832	5953	4046	4353	5508	4596	2973	5083	4014	*	4388	27
+       32	5531	*	601	1554	*	0	10705	1233	2056	
+
+P 28   3788	*	2934	3947	6530	3553	6412	6368	4629	4429	6630	3562	3001	3551	3753	4060	4912	5619	*	4943	28
+       57	5148	6585	2058	396	0	*	10705	1611	2056	
+
+I 29   3053	*	*	6493	4129	5136	5676	2397	4750	3828	*	4735	4057	5536	6498	4998	5097	1863	*	*	29
+       71	6830	4670	2322	322	0	*	10779	1000	1003	
+
+T 30   5000	4423	3082	3036	*	6787	5560	4682	4311	4020	6442	4054	*	4597	4413	3457	3103	3226	*	5233	30
+       59	4647	*	2134	373	0	*	10744	1611	1649	
+
+G 31   4397	5661	4697	3942	5762	2175	5030	6339	3905	5003	*	4039	*	6626	2891	3623	5011	4427	6598	3765	31
+       39	*	5230	*	*	*	*	10790	0	0	
+
+Y 32   *	5112	*	6506	2579	*	5671	4576	*	6664	*	6488	*	*	6516	4575	5721	5541	6565	722	32
+       0	*	*	*	*	1745	511	10760	0	1443	
+
+I 33   5312	*	4353	3443	5638	5692	6606	3963	3079	3235	5527	4749	*	4321	3715	4628	3603	2860	5427	5218	33
+       30	*	5613	1000	1000	902	1106	10760	1031	1248	
+
+I 34   4592	*	*	*	4357	6877	*	2199	6459	2125	4954	7136	*	6751	*	*	5647	1551	6423	5561	34
+       15	*	6565	*	*	1475	643	10764	0	1435	
+
+R 35   6080	4008	5859	2611	4154	7157	5819	4593	4204	4554	*	4702	*	3569	3107	3525	3844	4998	*	3374	35
+       43	5624	6815	2442	293	1664	547	10762	1439	1465	
+
+H 36   5153	5686	*	6461	4385	6565	5180	3844	6795	3755	*	5407	6499	5130	3670	5059	5681	3063	2983	1916	36
+       182	4057	4099	2935	202	1743	512	10761	2026	1459	
+
+H 37   4552	6556	*	4026	5555	4573	4562	4295	2956	5612	5552	5405	6409	4728	2390	2694	5617	5646	4978	3887	37
+       60	5554	5676	1601	577	1037	964	10725	1407	2505	
+
+A 38   4279	3708	4262	3262	*	6456	5906	4489	5066	4181	*	4601	3795	3444	3174	4177	3649	4889	4517	5074	38
+       368	2647	3937	2428	296	*	0	10732	3673	2113	
+
+E 39   2848	*	4212	2865	5456	3741	6380	4515	3917	4271	6280	4158	5427	5377	5432	3223	3549	4172	*	6482	39
+       35	5388	*	2585	263	1987	419	10626	1250	3257	
+
+H 40   3970	6557	3000	3038	6776	2413	5812	6648	4871	4064	*	3367	4850	4625	4847	3210	5409	*	6460	6588	40
+       30	6564	6689	0	*	885	1125	10689	1000	2691	
+
+S 41   3578	6771	2778	3548	6433	2484	5630	6552	4271	7148	*	3931	4651	5012	5572	2611	5036	6542	*	4898	41
+       138	4083	4961	2378	308	2093	385	10740	2159	1894	
+
+V 42   5549	*	2992	2935	4515	3253	6372	3965	4137	4942	5371	4255	4549	6506	5042	3856	2987	4676	6238	*	42
+       65	6325	4979	0	*	1118	891	10687	1054	2686	
+
+G 43   4474	*	3755	3547	4052	2749	6478	*	4221	4960	5631	3779	5060	4188	3755	3563	5573	3867	4597	5504	43
+       48	4920	*	3277	157	1797	490	10688	1878	2681	
+
+R 44   5506	*	5614	3022	4604	4411	*	*	4752	4472	4901	4638	4872	5520	3675	3598	2897	4033	2703	5327	44
+       0	*	*	1000	1000	1365	709	10715	1031	2170	
+
+P 45   5956	*	4187	3427	5177	6472	4340	4350	4006	3706	6650	4982	2857	4014	4330	4696	3817	2973	*	4980	45
+       58	5797	5558	2973	197	*	0	10783	1310	1651	
+
+R 46   4701	6453	4408	3091	5552	4496	6393	3934	3421	4235	5512	3795	5532	3722	3652	6552	3249	3980	4856	6420	46
+       76	5062	5548	1585	585	604	1547	10726	1399	2037	
+
+Q 47   3689	4238	5096	3417	6513	5064	4883	4039	4394	4289	*	5076	3700	4222	4069	3511	3964	3607	5087	5095	47
+       14	6711	*	0	*	*	0	10778	1000	1654	
+
+D 48   3610	6439	4467	4060	3750	6591	4779	3004	4430	4111	4955	4685	4203	4534	4498	4110	3108	4210	*	6549	48
+       49	5535	6429	1359	713	*	0	10778	1240	1654	
+
+R 49   4528	5509	3980	3511	5029	5527	6803	3361	4308	4529	6743	4512	5017	3960	4394	3191	2719	4512	*	5048	49
+       170	3998	4366	2156	367	277	2519	10722	2115	2093	
+
+V 50   3840	6712	5513	3731	4108	6377	*	3396	6634	2741	5633	4915	4638	4603	4173	5850	4887	2198	*	4658	50
+       64	*	4528	*	*	1763	504	10703	0	2228	
+
+P 51   3756	*	3811	3952	*	3436	5018	5578	4280	5569	*	3873	2787	4473	6487	2841	3403	3836	*	*	51
+       89	5233	4906	1798	489	3269	158	10694	1424	2633	
+
+P 52   4613	5732	5666	3892	6493	3087	7642	3898	4053	4123	5402	5029	3257	6484	4931	3229	2959	3720	6569	6602	52
+       53	5416	6320	2240	343	1983	421	10648	1291	3018	
+
+S 53   3820	*	3950	4808	5707	4627	4661	*	3746	6672	6367	3015	4896	4296	3286	2440	3530	6403	6676	5062	53
+       32	*	5489	*	*	876	1135	10670	0	2723	
+
+R 54   3902	*	4060	3715	5583	3697	6516	5160	5036	4267	5868	3361	5405	3586	4467	3547	2907	3439	*	*	54
+       30	5625	*	1710	526	654	1455	10704	1258	2092	
+
+N 55   4742	5027	4319	4640	4983	4674	4771	5012	5071	5705	*	3170	5603	4252	3370	3490	2068	5226	*	5692	55
+       13	*	6792	*	*	*	0	10762	0	1275	
+
+S 56   4323	*	4405	3690	4747	4584	4113	5675	4044	6554	5550	4632	4995	4664	3171	2283	4355	3480	6587	*	56
+       168	3343	6484	2197	355	602	1552	10745	2806	1471	
+
+I 57   4187	3848	5611	*	2886	*	4384	4159	5634	2876	6753	*	*	*	5589	5719	4776	3039	7045	2029	57
+       12	*	6876	*	*	*	0	10766	0	1270	
+
+T 58   5009	*	4055	4295	6769	5662	5081	3743	4379	3830	4834	4242	6685	4526	4713	4318	1990	3354	*	5180	58
+       0	*	*	*	*	*	0	10746	0	1514	
+
+L 59   *	6539	3870	*	3858	5603	6630	1602	6491	2168	*	7041	*	6659	6588	6590	*	2184	*	*	59
+       71	4689	6780	879	1132	1563	596	10767	1841	1514	
+
+T 60   5468	*	3703	3033	*	4715	6581	6626	3671	4063	6592	5064	3687	3918	3912	2783	2689	5592	*	6664	60
+       28	6498	6919	970	1030	665	1437	10788	1274	1459	
+
+N 61   6722	*	2955	4751	6558	1883	4886	*	4861	6649	*	2236	5929	4559	4725	3361	6820	5607	7207	5500	61
+       16	6504	*	1000	1000	1226	805	10806	1042	1222	
+
+L 62   5575	*	*	*	5856	*	*	5307	*	500	5678	5593	6684	5650	5731	*	4541	3355	*	*	62
+       14	*	6745	*	*	*	0	10805	0	1033	
+
+N 63   4668	*	4059	3355	5098	6576	4836	4848	3349	4678	6441	4638	4124	3602	3658	3759	2897	5183	6547	4668	63
+       29	6854	6492	1000	1000	*	0	10805	1000	1237	
+
+P 64   2957	6939	4710	4114	5749	4567	5801	*	5156	6643	6449	5191	1209	6566	4944	3857	5100	5870	*	5607	64
+       15	*	6598	*	*	1459	652	10794	0	1493	
+
+G 65   4380	5659	4179	4311	3807	1708	5046	*	4605	6549	6584	3080	*	4805	5956	4674	5058	5694	6469	3529	65
+       44	*	5053	*	*	608	1540	10790	0	1472	
+
+T 66   3269	*	4707	4731	6685	5498	5116	*	3916	6591	5001	4395	7112	5062	3819	3373	1517	4312	*	*	66
+       54	7042	5113	0	*	1211	816	10781	1000	1659	
+
+E 67   4259	5053	3980	3241	6639	6672	6584	4905	4168	3414	5534	3787	4100	3663	3520	4163	3573	4394	*	5082	67
+       10	7168	*	2322	322	807	1222	10767	1091	1931	
+
+Y 68   6470	6689	7015	*	4753	5688	5611	5586	*	7222	*	6600	*	5617	*	6856	6675	5739	5488	365	68
+       12	*	6880	*	*	923	1082	10806	0	1287	
+
+V 69   4704	*	5495	2632	4206	6693	5043	4279	4836	4149	*	3734	*	3862	3377	3404	3616	4209	*	3820	69
+       0	*	*	*	*	*	0	10801	0	1270	
+
+V 70   4609	4969	7133	7034	1998	5136	6572	2703	*	3770	4886	*	*	*	*	*	6586	2031	*	3221	70
+       0	*	*	*	*	*	0	10801	0	1270	
+
+S 71   4370	5617	*	3622	6843	5644	5673	4676	4084	5697	5055	5807	*	3269	2411	3204	2669	4336	6513	5769	71
+       0	*	*	0	*	0	*	10801	1031	1270	
+
+I 72   3596	5690	*	6687	6642	*	6872	2060	7082	3155	6718	*	*	6546	*	6600	5899	1111	*	*	72
+       0	*	*	*	*	*	*	10843	0	0	
+
+I 73   4233	5797	*	5590	5744	*	5010	4341	3865	4241	5775	5568	*	4066	2208	3426	2888	3755	5966	4219	73
+       41	6705	5737	0	*	*	*	10843	1000	0	
+
+A 74   1175	4128	5840	7034	5064	5957	5626	5706	*	5045	6821	5004	4080	6857	6660	3243	3994	3975	*	6704	74
+       28	6685	6674	0	*	955	1046	10842	1000	1223	
+
+V 75   4141	4796	*	4995	4097	5650	5137	2912	3609	4502	5589	5536	6543	*	3098	4255	4671	2606	5127	4163	75
+       0	*	*	0	*	972	1028	10832	1003	1218	
+
+N 76   4731	6494	3332	*	5859	5137	5109	5712	6353	5053	*	2201	6704	6988	5756	2664	2608	4094	5848	3947	76
+       84	4408	6685	864	1150	*	0	10843	1782	1000	
+
+G 77   3326	5436	3406	3531	5839	2918	6568	6576	4738	4603	*	5009	4980	3471	4058	2824	4723	4469	*	6699	77
+       38	5933	6661	0	*	1028	972	10832	1327	1218	
+
+R 78   3810	*	3776	4197	5622	3442	5628	6044	3820	3499	5537	3216	4081	5933	4005	3897	4755	3278	6685	6596	78
+       14	6695	*	0	*	*	0	10841	1000	1208	
+
+E 79   3958	6564	4698	4650	*	1244	4605	5895	5892	5737	*	4107	6887	*	4373	3417	4353	4397	*	5243	79
+       236	2912	5813	987	1013	1065	938	10841	3586	1208	
+
+E 80   3844	5635	5748	2502	4750	6796	5051	5984	4379	4016	*	4050	4754	3721	4759	2670	3690	5163	5573	5697	80
+       24	5906	*	1284	763	2028	406	10800	1235	1697	
+
+S 81   4182	*	5032	5979	4999	2430	6615	4957	5197	4823	5773	4137	*	5080	6002	1556	3583	6516	5520	*	81
+       124	3793	6588	1631	562	1657	550	10802	2585	1478	
+
+P 82   4275	6933	3688	3899	5013	4812	*	5785	3568	5615	5863	4570	2765	3919	4662	2783	3856	4055	6660	6667	82
+       17	6448	*	1585	585	1523	617	10786	1041	1494	
+
+P 83   3646	6707	3876	5566	4684	7105	6734	5101	4669	3491	6674	4166	2378	6572	3907	2772	4478	5655	4762	5302	83
+       92	5692	4548	2076	391	971	1030	10802	1465	1250	
+
+L 84   3640	*	6440	5789	5612	4892	6699	3858	5040	4113	*	5049	4859	4387	5497	2037	3004	3392	4056	6503	84
+       136	3478	*	1993	417	1687	536	10775	2786	2056	
+
+I 85   5574	6624	4679	3345	4759	5636	5601	3302	4098	4971	*	5016	3652	5545	4949	2693	2985	4172	5050	5001	85
+       29	6671	6649	1000	1000	1040	961	10797	1000	1675	
+
+G 86   4705	6639	4949	3355	5809	3848	5104	3049	4617	3849	5776	4206	4395	6606	5104	3345	3146	3756	6607	5702	86
+       326	2307	*	2171	362	1542	607	10801	4708	1465	
+
+Q 87   5316	5349	4013	3007	5851	5244	5183	3849	4302	5055	*	4014	4971	3250	5944	4378	2529	3518	6732	6727	87
+       13	6833	*	2585	263	1022	978	10815	1000	1233	
+
+Q 88   3955	6552	5164	3610	2725	4800	6824	3111	4642	5517	5622	6594	5919	3910	4083	3696	4168	3232	6774	5613	88
+       0	*	*	*	*	*	0	10825	0	1010	
+
+A 89   3447	6623	3479	4784	5815	5064	5533	4211	3860	3920	6700	5346	4775	4381	3474	3446	3436	4081	5712	4541	89
+       258	2696	6691	2547	271	*	0	10853	3963	1010	
+
+T 90   3753	7031	4393	4581	4902	3317	5934	4652	5349	4637	5834	5788	4942	4886	4834	4592	1702	3698	*	6475	90
+       92	4300	6508	4279	76	*	0	10857	1894	1208	
+
+V 91   3550	6560	4166	3566	5745	5859	*	3671	5219	3019	4756	6655	2305	6509	5592	5572	3689	3176	*	6806	91
+       168	3311	6806	2197	355	596	1564	10852	3072	1455	
+
+S 92   4250	*	7102	3275	*	*	6678	4549	5653	4175	*	6581	1255	5085	5233	3851	4109	3883	*	5117	92
+       126	3757	6680	2501	280	*	0	10882	2431	1200	
+
+D 93   2759	*	3821	3354	*	2766	3922	6576	4399	4771	6800	6543	3817	5153	4798	2928	4560	4388	*	*	93
+       67	4465	*	2128	375	588	1579	10871	1855	1462	
+
+I 94   2623	*	5476	4075	5746	4776	*	4798	3550	4266	6669	*	1922	4924	5210	3808	4648	3603	*	*	94
+       32	5864	7744	6035	22	*	0	10897	1191	1010	
+
+P 95   6857	*	*	5695	*	*	*	4847	6558	4456	6699	6565	585	6507	*	5236	5237	2943	*	*	95
+       276	2765	5200	1750	509	1562	597	10878	3857	1435	
+
+R 96   5109	*	*	3937	5840	4663	4771	4803	3016	3597	*	4361	4162	4340	3902	3073	2587	4174	*	6845	96
+       28	*	5718	*	*	1359	713	10836	0	1877	
+
+D 97   3862	*	3676	4673	*	3503	5593	3900	4204	4221	6817	2325	4345	4337	5567	2983	6585	4407	*	5814	97
+       40	5915	6507	1249	788	1299	752	10840	1420	1906	
+
+L 98   5252	*	6847	5214	3377	*	*	3130	6555	1407	4723	*	4690	*	5913	4479	6818	2374	*	*	98
+       0	*	*	2322	322	1038	963	10843	1031	1702	
+
+E 99   4091	*	5706	3205	6754	5692	3503	5052	3872	6661	5655	4735	4860	3850	3150	3016	2910	4383	*	6624	99
+       10	*	7247	*	*	939	1064	10872	0	1261	
+
+V 100  2326	5121	5738	6515	5057	5377	6603	3422	6759	3475	*	6765	6092	4010	*	4401	4442	1848	6573	5809	100
+       30	5615	*	2021	408	1023	978	10891	1221	1247	
+
+I 101  5710	*	4347	3377	4956	4176	6896	4494	3468	3424	5748	6535	4970	5737	4470	3272	2655	3856	4682	5953	101
+       13	*	6796	*	*	*	0	10910	0	1017	
+
+A 102  2842	5668	4287	4184	6072	5259	*	5163	4343	5104	6688	3193	3921	4073	4629	2766	3845	4107	5605	7111	102
+       298	2840	4411	581	1592	0	*	10894	3683	1207	
+
+S 103  3809	5719	4135	3975	6816	5110	5257	2223	4382	3580	6666	4623	3692	*	4323	4507	4791	3151	*	6795	103
+       15	6590	*	2807	222	0	*	10860	1000	1889	
+
+T 104  4036	*	4122	4210	*	2935	5702	*	4768	5159	6436	3251	5403	4234	4673	2764	2337	4829	*	*	104
+       35	6788	6076	2000	415	*	*	10916	1000	0	
+
+P 105  3459	7030	3351	3864	5647	3703	5754	5867	3920	*	6603	4058	3062	4099	4351	3015	4061	5719	*	4785	105
+       14	6726	*	2807	222	*	0	10900	1000	1198	
+
+T 106  5492	*	3154	4258	5670	3360	4649	6612	4292	4709	*	2999	5069	4327	6633	2882	2679	4648	*	6606	106
+       73	4607	6883	1975	424	0	*	10900	2083	1198	
+
+S 107  3370	*	*	4755	5023	3711	7029	4732	3766	5786	6537	4156	6996	4423	5665	1684	3055	5086	*	5630	107
+       29	5634	*	3439	140	*	0	10896	1224	1031	
+
+L 108  2754	5774	7347	*	4182	*	*	1894	*	2518	5776	*	*	*	6598	5806	5822	2099	6562	5613	108
+       25	6638	7096	2322	322	*	0	10896	1017	1031	
+
+L 109  4740	5596	5818	3625	4171	6741	5022	5115	3716	4890	5654	3504	7029	5016	3364	5099	2268	3656	5562	5166	109
+       16	6523	*	3170	170	*	0	10885	1033	1232	
+
+I 110  5464	6542	*	*	5109	*	*	2138	*	1292	5592	*	*	*	*	*	5867	1982	*	6475	110
+       0	*	*	*	*	*	0	10885	0	1232	
+
+S 111  4378	5256	5170	4056	5152	4976	5694	5537	5068	4705	*	3548	*	5000	3726	1959	2630	5612	5808	5680	111
+       11	*	7029	2322	322	0	*	10885	1031	1232	
+
+W 112  *	5717	*	*	4189	*	*	6548	*	5539	6594	*	6612	*	*	*	*	*	243	5135	112
+       55	5094	6905	2600	260	0	*	10884	1435	1065	
+
+E 113  3584	6770	3554	2927	*	6058	*	5388	2963	6839	6802	3550	6836	3988	5221	2659	3259	4337	*	6677	113
+       22	6602	7755	0	*	*	0	10896	1011	1031	
+
+P 114  2770	6843	4744	4005	5681	5250	5739	4735	3659	4470	*	5542	2003	5101	4178	4341	6707	4273	*	4247	114
+       77	7101	4493	622	1513	864	1150	10887	1245	1236	
+
+P 115  3695	6765	4528	5323	*	4537	6861	4294	*	5176	*	5235	1302	6743	5802	3342	4619	3199	*	7069	115
+       56	5706	5718	1566	595	258	2612	10864	1222	1999	
+
+A 116  4805	6482	4036	2831	5047	4491	5905	5870	3598	5202	5164	4504	2573	4461	5019	3245	4460	5178	*	4698	116
+       26	6709	6858	0	*	1580	587	10882	1000	1398	
+
+V 117  5408	6659	2724	4125	7066	2947	5756	4385	5627	4180	5542	4421	3266	4118	5126	3193	4131	5303	*	5113	117
+       1017	1265	3476	1673	543	1605	575	10881	7300	1403	
+
+S 118  3547	*	2897	2988	6426	5040	6698	5495	4657	4360	6681	3764	2720	4549	4293	3487	4259	5529	*	*	118
+       400	2122	6369	2208	352	576	1604	10749	5069	3120	
+
+V 119  2973	*	*	5176	4306	5500	6831	2213	4859	2890	*	5837	4295	6515	6588	4454	3696	2592	*	*	119
+       0	*	*	1585	585	2364	312	10846	1000	1847	
+
+R 120  4376	4747	3343	3598	5693	6560	4996	4795	3977	3150	*	4018	6791	4122	3754	3995	3063	4352	5980	6579	120
+       30	5581	*	2857	214	484	1812	10859	1410	1647	
+
+Y 121  3952	*	6699	5044	5662	1778	4122	6734	4142	5166	*	3945	*	5075	3598	3717	3613	6072	*	3589	121
+       43	5647	6745	2870	212	*	0	10889	1488	1031	
+
+Y 122  6770	5039	*	6497	3334	*	4898	5005	*	4996	*	5171	6604	*	*	4671	5128	7745	*	636	122
+       13	*	6757	*	*	1142	870	10874	0	1238	
+
+R 123  4396	*	6969	2729	4846	6981	4727	4364	4060	3622	*	3623	*	3855	2846	4714	3892	3685	*	4295	123
+       30	*	5581	*	*	902	1106	10869	0	1248	
+
+I 124  5420	*	*	*	5623	6571	*	1856	6521	2086	5590	7004	*	*	*	6728	5723	1610	*	4697	124
+       25	7070	6658	658	1448	1762	504	10843	1157	1512	
+
+T 125  4699	5597	5839	2469	5510	5194	4627	4085	5148	4340	5616	5168	*	3639	4177	4588	3313	3943	5316	3314	125
+       144	5556	3765	4803	53	1744	511	10846	1279	1515	
+
+Y 126  5874	6465	7115	*	3425	*	6492	3387	5203	2842	6609	*	*	5586	4502	5412	6575	3403	3714	1652	126
+       59	4643	*	2198	355	2401	303	10795	1693	3024	
+
+G 127  3835	4410	5614	4208	4271	4394	6402	5569	2721	*	5547	4388	*	3870	2821	4238	3776	4648	5033	4352	127
+       74	4323	*	727	1337	2509	279	10807	1808	2637	
+
+E 128  4267	*	4153	2470	6605	4109	*	5088	4271	4881	*	3673	3716	5696	3665	3353	3696	3873	5497	6655	128
+       57	5014	7025	4108	86	3033	188	10799	1428	2335	
+
+T 129  3880	*	4236	3147	4275	4148	5472	4924	3472	4677	5943	3459	4347	4049	4616	4439	3619	3937	6601	6289	129
+       45	5595	6631	532	1698	1974	424	10804	1251	2317	
+
+G 130  4118	6686	2450	3487	6530	2861	5012	6436	4529	6585	5752	3756	5747	4592	5159	3107	3731	4848	*	6789	130
+       233	3313	4371	2523	276	1040	961	10802	2848	2133	
+
+G 131  3447	6463	4650	3344	5420	2776	5501	5046	4088	5258	6594	4151	5279	4677	4399	2622	3748	5213	*	6750	131
+       65	5375	5665	1843	471	1349	719	10775	1684	2490	
+
+N 132  3741	6537	3230	3901	5032	4108	6636	5561	4063	5117	*	3064	4981	4740	4217	2700	3474	4804	*	6605	132
+       326	3807	2937	1618	569	3060	184	10798	2385	2421	
+
+S 133  5119	6435	3016	2734	5543	3104	6417	4960	3290	6351	6485	4842	4550	6439	4586	2709	4783	5237	5578	6491	133
+       89	5330	4825	2192	356	770	1274	10636	1240	4503	
+
+P 134  3487	5497	3479	4497	4638	4312	6555	4337	4263	3871	5561	5083	4024	*	4346	3786	3970	4989	3308	4224	134
+       39	6892	5769	3322	152	3578	126	10773	1065	3089	
+
+V 135  3757	*	4132	4217	6597	4947	6322	4265	3935	3315	*	4976	3904	4546	4643	2898	3143	4130	4778	5658	135
+       32	6494	6504	0	*	547	1664	10756	1000	3283	
+
+Q 136  4320	6439	4696	3927	5638	4704	5913	4351	3360	3979	*	5002	4380	3038	3560	3574	3890	4027	4558	6917	136
+       14	*	6713	*	*	*	0	10847	0	1841	
+
+E 137  4450	4431	4647	3158	6816	5643	*	3458	3678	3381	6632	3532	5153	5415	5526	4239	5135	3171	5647	3648	137
+       13	6823	*	1585	585	1568	593	10843	1000	2052	
+
+F 138  4728	6894	5741	4993	3989	4728	6611	3207	4214	3462	5584	5160	6501	5519	3822	4124	4185	2645	5757	3369	138
+       107	4608	5034	321	2324	2026	407	10859	1672	1639	
+
+T 139  5095	*	4724	3364	4617	5921	5547	4490	3651	4460	*	3089	3788	5813	3862	3319	3411	3557	*	4975	139
+       29	6506	6821	1982	421	994	1007	10818	1226	2071	
+
+V 140  3436	5689	4620	4292	4448	5204	6686	2703	6575	2712	5238	4611	6812	6555	5742	4444	3401	2841	*	6457	140
+       72	5086	5695	1394	691	1955	430	10852	1433	1633	
+
+P 141  4634	*	2979	4291	7281	4965	5721	4256	4165	5591	5698	3311	2573	5635	6622	2865	3465	4341	*	*	141
+       94	3982	*	1529	614	775	1266	10842	2184	1810	
+
+G 142  3383	*	5049	4088	5093	2811	6773	5823	5084	3990	*	6164	3636	4649	4040	3801	3360	2913	*	5196	142
+       24	5903	*	0	*	*	0	10878	1223	1218	
+
+S 143  4117	*	3391	3809	6688	3766	5106	6578	3794	6915	*	3332	3609	4334	4408	2819	2803	*	*	6705	143
+       104	3847	*	1323	736	*	0	10878	2358	1218	
+
+K 144  3530	7439	4432	3262	6787	3416	5800	4364	3743	5661	*	4539	5031	3179	4246	3154	3502	4684	6671	7106	144
+       68	5221	5702	1064	939	*	0	10878	1445	1218	
+
+S 145  4168	5547	6736	*	4993	4551	4673	*	4797	5280	5882	2740	5687	4348	2909	3634	1898	6458	*	6624	145
+       30	5618	*	1398	689	377	2121	10858	1282	1638	
+
+T 146  5138	6570	5031	3293	6849	4626	4147	6700	4205	6827	*	4896	6807	3852	3400	2110	3066	4953	5617	4642	146
+       42	5124	*	986	1014	*	0	10884	1465	1000	
+
+A 147  3604	4040	*	5551	2502	5588	5101	4711	*	4063	*	6883	*	6634	6554	5723	4650	3021	4420	1981	147
+       27	5747	*	3990	94	*	0	10884	1242	1000	
+
+T 148  4588	6518	5032	4332	5531	*	6578	5754	4395	2721	5913	5572	6189	4529	3726	3273	2029	3502	*	6567	148
+       25	5841	*	1000	1000	*	0	10884	1293	1000	
+
+I 149  5955	*	4202	*	3427	*	6831	2094	6540	1747	5218	6585	*	6599	*	7120	5830	2615	5637	5095	149
+       27	6807	6716	0	*	*	0	10884	1003	1000	
+
+N 150  4480	*	3664	3237	5634	5649	6864	5092	4170	4119	5070	4457	3832	3903	4592	3380	2385	5837	*	5617	150
+       98	4782	5079	563	1629	*	0	10873	1624	1195	
+
+N 151  6193	*	2496	4288	*	1702	5119	5722	4054	6608	*	2791	6931	4928	5668	4136	4542	5689	6992	*	151
+       27	5737	*	4145	84	718	1351	10831	1262	1828	
+
+I 152  6722	6898	6701	*	4619	*	*	3895	*	504	*	5484	5023	7334	*	*	5754	3802	*	6678	152
+       0	*	*	*	*	*	0	10864	0	1201	
+
+K 153  4672	*	3690	2831	6610	*	5560	4754	2807	3804	5173	4186	4497	3546	4288	4174	3797	4773	6386	5631	153
+       39	5219	*	770	1274	*	0	10856	1519	1201	
+
+P 154  3321	6772	5329	4530	5680	5649	6551	7216	6762	6545	*	5799	1163	5075	4209	3729	5384	4109	6783	5004	154
+       27	6544	6973	2000	415	933	1070	10856	1041	1201	
+
+G 155  5591	*	3626	4576	4392	1708	5607	*	5908	3639	6391	2481	7733	*	4705	3887	4816	7108	6526	5064	155
+       12	*	6947	*	*	1100	907	10878	0	1156	
+
+A 156  3750	5016	5325	4109	*	4399	5030	*	4445	5094	6628	5749	*	3893	4299	3749	1524	4091	5656	6463	156
+       0	*	*	*	*	942	1060	10861	0	1198	
+
+D 157  5582	*	4489	2839	5717	5272	5032	4978	3815	4231	6641	5354	4106	4013	4085	3472	2646	3770	*	5227	157
+       24	7019	6866	2322	322	*	0	10875	1065	1000	
+
+Y 158  *	6597	*	*	4613	*	4667	*	*	5124	*	6004	*	*	6808	6612	*	6975	*	255	158
+       0	*	*	0	*	847	1171	10854	1031	1231	
+
+T 159  5071	5634	3825	4269	5101	6654	6647	4493	3511	3836	6550	4542	*	3377	3720	3558	2779	4011	6098	4520	159
+       0	*	*	*	*	*	0	10875	0	1000	
+
+I 160  3894	5519	*	*	2165	6719	*	2638	*	3306	*	*	*	*	*	*	5713	1834	*	3094	160
+       0	*	*	*	*	0	*	10875	0	1000	
+
+T 161  4714	5078	*	5573	*	*	5025	6861	3460	4427	6588	4681	6520	3257	2464	3022	2816	5515	4530	4100	161
+       13	*	6845	*	*	*	*	10890	0	0	
+
+L 162  3959	*	*	*	7109	*	*	2243	*	2623	4792	*	*	*	*	*	5723	1028	*	6698	162
+       31	6639	6504	0	*	0	*	10810	1000	1031	
+
+Y 163  4028	*	*	5204	4649	*	6530	3995	4181	5460	4656	6464	*	4104	1813	3836	3207	3646	6697	4089	163
+       10	7156	*	0	*	0	*	10806	1017	1014	
+
+A 164  1138	4515	*	6952	*	4186	*	5117	*	4986	4968	6472	5209	*	5718	3305	3544	3606	*	5626	164
+       0	*	*	*	*	*	0	10815	0	1017	
+
+V 165  5217	4391	*	4320	3375	*	5508	3662	3513	3269	4962	4377	*	5114	5464	4359	5643	2200	6795	4069	165
+       12	6895	*	1000	1000	0	*	10785	1000	1017	
+
+T 166  6448	6222	3788	*	5508	4313	5497	6584	5386	6494	5443	1767	6315	*	4315	2918	2711	4403	*	4294	166
+       102	3873	*	417	1993	*	*	10698	2139	0	
+
+G 167  3235	6818	3219	3593	6592	3691	5446	*	3209	6762	*	3870	4509	6612	4096	2819	4276	6481	5401	4122	167
+       47	5665	6344	0	*	*	*	10665	1277	0	
+
+R 168  3443	6225	3416	4274	5481	3554	6211	4985	3838	4223	4409	4981	*	4502	4195	3325	4614	3397	6101	4454	168
+       25	7423	6481	3459	138	0	*	10584	1000	1020	
+
+G 169  4876	6351	4012	5461	5766	884	6329	5524	6487	5748	*	4334	5489	5345	5356	4434	5464	4469	*	6683	169
+       44	5041	*	1833	475	0	*	10562	1412	1031	
+
+D 170  3702	6803	5681	2967	6473	4877	*	6122	3281	6550	4897	2888	5564	4096	3771	3488	4645	4098	5207	4118	170
+       126	5300	4097	1405	684	*	*	10578	1246	0	
+
+S 171  *	6917	6256	5305	*	1493	*	5341	5266	4987	*	4611	6235	*	4750	1690	5507	3894	6264	6318	171
+       54	4757	*	1575	590	*	0	10495	1415	1827	
+
+P 172  3518	6168	4609	2394	6283	4387	*	*	4749	4312	5293	5418	2099	6203	4669	2967	6673	4956	*	6123	172
+       35	*	5383	*	*	*	0	10454	0	1827	
+
+A 173  3729	5342	6261	3852	3727	5279	5222	6479	6370	3668	*	5928	2341	6083	4275	4253	6306	4353	3729	3083	173
+       24	5932	*	3459	138	441	1924	10340	1048	2248	
+
+S 174  3841	5150	4566	4709	5269	4617	6200	4270	5048	5406	6357	6283	4310	5149	6064	1417	4236	3939	6185	6558	174
+       158	6372	3450	1000	1000	0	*	10313	1000	1184	
+
+S 175  4527	5963	4360	3137	5090	3524	4976	5005	5048	*	6077	6180	2939	6053	6060	1949	3417	6018	*	6424	175
+       0	*	*	*	*	0	*	10190	0	2262	
+
+K 176  4253	6437	3607	3285	*	4708	5069	4908	3832	4148	*	4286	4541	4657	4200	2910	3488	3548	5867	6604	176
+       0	*	*	*	*	*	*	10239	0	0	
+
+P 177  3074	*	5095	4017	5075	5827	*	4436	4402	5123	*	*	2796	4007	5851	2702	3309	3974	*	3661	177
+       0	*	*	*	*	*	*	10106	0	0	
+
+V 178  3427	5103	*	4858	4509	4936	5905	2783	3715	2442	5209	5859	6058	5115	5853	5997	*	2254	6175	*	178
+       0	*	*	*	*	*	*	10081	0	0	
+
+S 179  3628	4334	5750	3728	4359	6289	5810	*	5720	4547	*	6096	4694	5885	4909	2535	2015	3613	*	5099	179
+       0	*	*	*	*	*	*	10001	0	0	
+
+I 180  3041	4811	*	*	4892	*	*	2349	*	3868	4316	*	4699	*	5822	4823	3512	1758	*	5696	180
+       0	*	*	*	*	*	*	9860	0	0	
+
+N 181  4011	*	3809	5316	4546	*	*	5511	2757	*	*	2260	5526	5335	4584	2525	2660	*	*	*	181
+       0	*	*	*	*	*	*	9387	0	0	
+
+Y 182  2518	*	*	*	1236	4044	5279	3114	*	*	*	*	*	*	*	4983	4313	5114	*	3505	182
+       0	*	*	*	*	*	*	8703	0	0	
+
+K 183  *	*	*	3739	*	*	*	3760	2875	4797	*	*	4683	*	2583	2283	2103	4834	*	*	183
+       0	*	*	*	*	*	*	8287	0	0	
+
+T 184  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	184
+       0	*	*	0	*	*	*	7166	0	0	
+
+//
+�HHsearch 1.5
+NAME  bc4ef49e84c894acd9a656db73d52eeb
+FAM   
+FILE  bc4ef49e84c894acd9a656db73d52eeb
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:58:09 2013
+LENG  108 match states, 108 columns in multiple alignment
+FILT  129 out of 629 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  6.6 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCHHHCCCHHHCCCCCCCCCCCCCCCCCCCCCCCHHHHHHHHHCCCCCCCCCCCCHHHHHHHHHHHHHHHHH
+CCCCCCCC
+>ss_conf PSIPRED confidence values
+9788887652687755788886657789716424575332675563332455455888698989999999604555666786478999999999972202
+26886779
+>Consensus
+xxCxxxxxyRtxDGsCNNlxxpxxGxaxxxxxRllpxxYxDGixxprxxxxxxxxxgxxlPxpRxVSxxlxxxxxxxxxxxxxxtxxxxxwgQfixHDix
+xtxxxxxx
+>bc4ef49e84c894acd9a656db73d52eeb
+VTCPEQDKYRTITGMCNNRRSPTLGASNRAFVRWLPAEYEDGFSLPYGWTPGVKRNGFPVALARAVSNEIVRFPTDQLTPDQERSLMFMQWGQLLDHDLD
+FTPEPAAR
+>gi|241709425|ref|XP_002412033.1| peroxinectin, putative [Ixodes scapularis]gi|215505064|gb|EEC14558.1| peroxinectin, putative [Ixodes scapularis]
+-GCDFSYPFRYPDGSCNNQNHTDWGNAGSCMRKLLRPDYGDMVGEPR-----VASDGGPLPPPRVVSYTVHP--P-LEASSPKMTQLGVLFGQFITHDVS
+qiLRSGT---
+>gi|322798709|gb|EFZ20307.1| hypothetical protein SINV_07073 [Solenopsis invicta]
+-------------------------------------MSALGISRPRQSV-----GTHSLPAPSDIVSHVLQSSPKI-RSHEGLTSLSGVWSELVLQDIA
+ATVR----
+>gi|328875443|gb|EGG23807.1| peroxinectin [Dictyostelium fasciculatum]
+-PFTNgeSTEWRSYDGSNNNLINPNQGEIYEPFIRVA---------QQQFFNPDDYP-TLSIPLSREVSNIVCDQQ-SPVPSKELLSDMFNMWGQFLIHN
+MAHAL-----
+>gi|332028340|gb|EGI68387.1| Dual oxidase [Acromyrmex echinatior]
+------RPPARSIAPLCAIAWAFWAVLpvetDSRLIRKVPAAYSDGVYTMA---------GQDRPSPRKLSDLFMQGDD-GLPSVKNRTALFAFFGQLVT
+SEIIMA------
+>gi|313230135|emb|CBY07839.1| unnamed protein product [Oikopleura dioica]
+-KCD--PRLHTFDGTCNHPQN--KGSVLTPYIRWAPANYCNDRDTDRC-----SEHKRPLKNPRHISLF--GQRMNTMETNRFHTRFMIDWGQFLTHNIM
+QTPDL---
+>gi|195451388|ref|XP_002072896.1| GK13444 [Drosophila willistoni]gi|194168981|gb|EDW83882.1| GK13444 [Drosophila willistoni]
+-----------LKGQCENLLQsRRDG--HYAFRRLLDRHYKNGFHKMY--------DDDDLPGAWPISMALYEhvP-GSVppEDQNESPNLCLVQWAQFI
+EHDLSKPVSQS--
+>gi|296411466|ref|XP_002835452.1| hypothetical protein [Tuber melanosporum Mel28]gi|295629235|emb|CAZ79609.1| unnamed protein product [Tuber melanosporum]
+-----EFSYRQADGGYNNIMYPQLGRAGSAYARSVKPM---------------TKMPGAPPDAYTLFDRIFSRGpnDEHFREHDnNVSSMLFYTATIIIH
+DLFRT------
+>gi|302658402|ref|XP_003020905.1| hypothetical protein TRV_04981 [Trichophyton verrucosum HKI 0517]gi|291184775|gb|EFE40287.1| hypothetical protein TRV_04981 [Trichophyton verrucosum HKI 0517]
+-----------------------LGLLGRGMQRLFSQN------LY---------NRSTFQTRGFFlirswperdLNHTLAR-SLVCYSISLQSSFMIFL
+--IPSKDLFKT------
+>gi|30249221|ref|NP_841291.1| oxygenase [Nitrosomonas europaea ATCC 19718]gi|30180540|emb|CAD85149.1| putative oxygenase [Nitrosomonas europaea ATCC 19718]
+------IRFRTVTGICNDIYNPLMGSTHQIFARNVQfdTTFPDlGLDEMAR-NRHGDRLGLLKPDPQVISRKLFTRtqsqPDKcrnddElsgdlekfacd
+YKKAPALNVLAAFWIQFMTHDW---------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+V 1    *	*	*	*	*	*	*	2856	*	*	*	*	1909	*	3568	*	*	968	*	*	1
+       0	*	*	*	*	*	*	3432	0	0	
+
+T 2    6170	*	4539	3721	*	5747	5823	3741	3595	5199	*	*	2762	4220	4293	2695	2478	4055	*	*	2
+       19	6225	*	1000	1000	*	*	5623	1000	0	
+
+C 3    *	104	*	*	4969	*	*	*	*	*	*	*	*	6187	*	5381	*	*	*	*	3
+       98	4363	5848	1066	936	*	*	5670	1104	0	
+
+P 4    4874	6190	1328	5317	5969	5148	5768	5271	6099	*	*	3954	2161	4686	4680	*	4501	6008	*	*	4
+       448	5768	2009	1585	585	0	*	5668	1000	1000	
+
+E 5    3063	*	3385	3116	3243	*	4277	*	5428	*	*	3543	1843	5793	5395	3957	*	5786	*	*	5
+       351	2746	3905	1324	736	251	2645	5179	1370	1769	
+
+Q 6    3469	*	4712	4847	6310	*	4099	4986	4619	6148	*	3143	2985	4978	3290	2786	3046	*	*	4641	6
+       15	6643	*	0	*	0	*	5922	1000	1278	
+
+D 7    3234	*	4861	5749	4352	4403	5029	5485	5265	3218	6539	4074	6042	4018	5893	2420	3919	4977	5840	3441	7
+       86	4298	7109	1101	905	*	*	6589	1261	0	
+
+K 8    *	6609	5654	3289	*	4286	5687	*	2012	6896	5543	5366	2945	4909	2473	4571	4278	4502	6180	*	8
+       0	*	*	*	*	0	*	6758	0	1000	
+
+Y 9    4985	6577	*	6293	2830	*	*	5211	*	5319	*	5736	5023	*	6661	6600	7119	4764	6175	678	9
+       0	*	*	*	*	*	*	6733	0	0	
+
+R 10   5528	*	*	6684	*	*	5650	5895	*	6710	*	*	4331	4577	286	*	*	*	*	6577	10
+       0	*	*	*	*	*	*	6733	0	0	
+
+T 11   5245	*	4614	5633	*	6684	6638	*	7062	5538	*	6345	5522	4253	3244	1789	1457	6661	*	6903	11
+       10	*	7117	*	*	*	*	6733	0	0	
+
+I 12   3508	*	*	5752	2878	*	4449	2617	*	2870	5093	*	3953	5919	*	4551	5396	4218	*	2462	12
+       0	*	*	*	*	0	*	6853	0	1000	
+
+T 13   *	*	570	6879	*	6784	*	6176	5743	5485	*	3848	5920	*	5523	3955	3612	*	*	*	13
+       0	*	*	*	*	*	*	6849	0	0	
+
+G 14   4305	*	*	*	*	159	*	*	6681	*	*	*	*	*	5867	5220	*	*	*	*	14
+       0	*	*	*	*	*	*	6849	0	0	
+
+M 15   5012	*	*	5215	5728	6709	5451	4768	4112	6302	5426	*	6176	5248	4356	1477	2726	4345	3827	4602	15
+       0	*	*	*	*	*	*	6849	0	0	
+
+C 16   *	553	6083	*	4883	3560	*	*	*	6176	*	4897	*	*	5720	5118	*	*	*	3478	16
+       0	*	*	*	*	*	*	6849	0	0	
+
+N 17   6688	6176	*	4651	*	*	5945	*	*	*	*	204	*	*	*	5920	6327	6615	*	6242	17
+       0	*	*	*	*	*	*	6849	0	0	
+
+N 18   5132	*	4568	6684	*	6589	3932	5819	*	*	*	378	*	*	6489	4909	*	*	6366	*	18
+       27	6885	6589	1585	585	*	*	6859	1028	0	
+
+R 19   6644	*	*	4628	5245	*	6842	3238	4675	1222	5343	*	3163	6952	4322	*	6004	2936	*	*	19
+       10	7193	*	1000	1000	0	*	6843	1001	1018	
+
+R 20   3355	*	4339	3494	5503	4944	4976	5159	3123	4089	5896	4189	*	2814	3496	4638	5193	4025	7207	4718	20
+       38	5273	*	1000	1000	*	*	6859	1148	0	
+
+S 21   *	*	4052	6271	4234	*	2155	5830	3878	7073	6407	1964	*	4191	3433	4846	7341	5867	6265	3845	21
+       91	5006	5052	0	*	*	*	6859	1187	0	
+
+P 22   4368	*	4742	5260	*	5860	5465	7135	5997	6277	*	6733	627	6517	5641	4163	5035	4704	*	*	22
+       12	6930	*	0	*	*	0	6801	1000	1161	
+
+T 23   5183	*	4063	3303	5448	5931	4824	7212	6700	2805	6084	3585	*	4903	3821	2553	2934	5967	6333	4464	23
+       32	5493	*	1273	770	0	*	6801	1098	1161	
+
+L 24   3969	6722	6624	4269	4350	*	*	5267	6519	2892	3992	7327	*	4253	4853	4980	7259	5980	1267	5762	24
+       14	*	6701	*	*	*	*	6935	0	0	
+
+G 25   4859	*	6014	*	*	92	*	*	*	*	*	*	6375	*	*	*	*	*	*	*	25
+       32	*	5496	*	*	0	*	6922	0	1016	
+
+A 26   2128	6396	*	5345	*	6682	*	5036	3015	5913	4882	4347	*	4230	3641	1987	4624	5090	*	6007	26
+       16	*	6542	*	*	*	0	6876	0	1104	
+
+S 27   1205	*	*	*	*	*	*	4861	5389	4571	*	*	4011	5419	5092	2479	3913	3246	*	*	27
+       19	6235	*	2000	415	0	*	6856	1035	1187	
+
+N 28   *	*	3209	*	4568	1537	4471	6361	6463	3627	4295	2560	*	7164	6939	5167	6018	5870	*	4067	28
+       37	*	5319	*	*	*	*	6935	0	0	
+
+R 29   4108	*	6714	3479	*	*	5596	6266	*	5605	4001	5305	*	3516	3759	2373	1677	5899	*	5875	29
+       29	6943	6416	0	*	0	*	6870	1000	1154	
+
+A 30   2636	5950	5842	6081	4964	5933	5660	4687	7418	5696	*	5852	1380	3847	3012	5278	5276	6358	*	*	30
+       17	6380	*	0	*	*	0	6927	1036	1075	
+
+F 31   *	*	*	7115	1423	*	7018	6887	6393	2193	3224	7312	*	7455	*	*	*	6730	*	2031	31
+       0	*	*	1000	1000	0	*	6927	1075	1075	
+
+V 32   3216	*	5493	4318	*	3121	6998	3664	3156	3416	7265	5235	5034	3482	2838	4410	4970	4939	*	6971	32
+       0	*	*	*	*	*	*	6936	0	0	
+
+R 33   *	*	*	*	*	*	6766	6251	5192	*	*	6385	*	5268	162	5750	*	*	*	*	33
+       0	*	*	*	*	*	*	6936	0	0	
+
+W 34   6587	*	5676	5407	4690	*	7050	3504	6299	1292	4098	3367	6777	6452	4704	4645	7079	4582	4279	4795	34
+       44	5740	6450	0	*	*	*	6950	1085	0	
+
+L 35   3533	*	*	*	3570	5432	*	3672	7045	1276	4036	*	*	6786	*	5789	4324	2727	6758	6775	35
+       18	*	6348	*	*	*	0	6941	0	1075	
+
+P 36   3755	*	4052	5752	5104	4480	*	*	4336	5595	*	5335	1061	4579	4482	4406	4133	6938	*	*	36
+       54	5267	6567	863	1151	*	0	6918	1148	1191	
+
+A 37   1757	*	*	7157	*	*	6346	5628	*	4975	*	4556	1278	5908	4645	3789	4575	7170	*	*	37
+       35	*	5396	*	*	*	0	6899	0	1275	
+
+E 38   2844	4873	3171	3477	6284	6022	4050	6212	5035	5993	5077	3345	*	4760	4414	3068	5421	3392	*	5165	38
+       115	5750	4105	0	*	3018	190	6825	1077	1474	
+
+Y 39   6554	6674	*	*	3810	*	*	7231	6519	7273	6191	*	*	*	*	4880	*	5412	*	299	39
+       30	*	5624	2322	322	2764	230	6677	1075	1860	
+
+E 40   2009	4422	3115	2640	7279	3906	6628	6630	4415	7259	7314	5380	5547	5286	5451	2887	4747	*	*	6703	40
+       0	*	*	*	*	*	0	6638	0	1854	
+
+D 41   6630	*	386	5658	6003	4859	6694	*	*	6846	*	3377	*	*	6285	*	7370	7004	*	6178	41
+       107	4564	5113	417	1995	*	0	6638	1240	1854	
+
+G 42   5249	*	4548	5236	6115	499	*	*	6268	*	6824	4257	5354	6980	5345	5978	*	6649	*	5285	42
+       0	*	*	1326	734	*	0	6620	1211	2093	
+
+F 43   5438	*	4748	5768	2980	*	*	1734	7305	3859	6102	6324	5373	*	4284	4864	*	1971	6830	5795	43
+       95	*	3969	*	*	*	0	6618	0	2093	
+
+S 44   4116	*	3456	4616	4795	3621	4965	6643	5338	*	7252	3705	*	3991	5606	1730	4424	6585	6044	3539	44
+       11	7051	*	2458	290	1443	661	6717	1191	2507	
+
+L 45   3180	*	4186	2105	*	6599	6679	6447	3600	3789	6744	*	6595	3487	5749	3019	3051	4489	*	*	45
+       54	6381	5338	2000	415	1947	433	6886	1020	1962	
+
+P 46   4627	*	5445	4840	5280	*	*	3952	*	4572	4176	6096	830	6241	6102	4686	7274	5161	*	4808	46
+       119	7369	3773	1000	1000	3555	128	6970	1000	1878	
+
+Y 47   2911	*	*	4356	5008	5478	7058	4220	4491	5925	6555	*	4110	6123	1084	5283	6796	4875	*	5698	47
+       886	*	1124	*	*	3951	96	6852	0	2274	
+
+G 48   4366	3775	6101	3723	4387	1836	*	5926	5466	4254	*	3630	5674	4749	3419	3254	5701	6201	*	*	48
+       628	*	1502	*	*	3500	134	6063	0	4646	
+
+W 49   2842	*	5343	*	3365	5477	5789	3871	5705	5470	*	*	*	4334	5364	2180	*	*	2148	3876	49
+       266	*	2571	0	*	3845	104	5622	1108	5135	
+
+T 50   3623	4836	4506	4783	*	4458	4424	4431	4722	5552	5185	2297	*	5514	4496	3855	2644	3651	*	*	50
+       500	4836	1955	1585	585	4462	67	5429	1022	5226	
+
+P 51   5267	*	4316	*	4802	*	5246	3513	5609	3470	*	3107	2021	4023	3188	4244	3705	*	*	*	51
+       261	*	2597	*	*	4881	50	5141	0	5475	
+
+G 52   *	*	3598	3545	*	2928	4292	*	5151	*	*	2651	5006	5202	1755	4162	5072	5517	*	*	52
+       196	2980	*	2252	340	1676	542	4982	1258	5569	
+
+V 53   4370	*	4371	*	5446	4640	4623	4281	2569	4648	6461	6171	5755	4033	2328	5359	4153	2686	*	*	53
+       254	3797	3479	1165	852	2450	292	5673	1225	4455	
+
+K 54   2472	*	4758	*	*	3113	5819	*	3682	4660	4609	6556	6100	5605	4616	1782	3751	5716	*	5611	54
+       98	5069	4794	3724	114	2941	201	5876	1052	4231	
+
+R 55   4724	*	*	4992	6051	4198	6642	5669	3374	4704	*	6714	4515	4765	3392	2453	3850	2416	*	3796	55
+       67	6165	4979	1585	585	1392	692	6003	1004	4015	
+
+N 56   5275	*	2460	6147	5514	3550	4473	6588	4935	3838	6303	2324	6209	4986	4097	3222	3475	*	*	*	56
+       20	6209	*	697	1385	1198	826	6552	1161	3124	
+
+G 57   *	*	4325	5161	*	790	*	*	5111	*	*	3125	4773	5566	5289	5421	3999	6340	5731	*	57
+       94	4432	5887	3177	169	1086	919	6764	1250	2243	
+
+F 58   3545	*	4733	4633	4343	3197	4457	5661	5136	3232	6236	5313	4623	4432	3291	2800	5036	5205	7091	4580	58
+       55	7407	4993	4700	57	1413	679	6974	1000	1764	
+
+P 59   2830	*	3316	3018	*	4786	5712	6653	5229	3821	5624	4838	2267	6952	5977	4325	3912	4737	6399	5634	59
+       12	*	6946	0	*	506	1756	6905	1211	1724	
+
+V 60   6919	*	6185	5845	5278	5086	7156	6398	4862	745	5536	5339	5585	6461	3091	6840	5080	6332	*	6780	60
+       20	6216	*	0	*	2310	325	7020	1102	1234	
+
+A 61   6211	*	*	*	7055	*	*	*	5978	5504	*	*	152	5896	*	7125	*	6813	*	6949	61
+       55	5625	5893	2968	197	600	1556	7028	1117	1174	
+
+L 62   4919	*	3435	6567	*	4219	4994	7424	*	3973	*	1959	4763	5292	*	1594	4094	*	*	*	62
+       28	*	5712	*	*	1358	714	6900	0	1155	
+
+A 63   1720	6795	*	5883	*	6559	*	*	*	*	*	4910	1195	*	5959	4738	4712	3347	*	*	63
+       0	*	*	*	*	1449	658	6892	0	1300	
+
+R 64   *	*	*	4915	*	4473	7013	*	*	5851	*	6768	*	6696	346	5084	6823	5497	5539	6743	64
+       44	*	5056	1000	1000	725	1340	7030	1075	1167	
+
+A 65   3974	*	4137	2243	5382	*	4579	4857	3425	2606	*	6845	5066	4519	4739	4833	4029	3643	*	6097	65
+       0	*	*	0	*	413	2006	6958	1211	1302	
+
+V 66   5572	*	*	6669	5945	*	*	1474	*	2753	6759	*	6969	*	*	*	6587	1262	*	*	66
+       24	5945	*	3170	170	*	0	7043	1086	1025	
+
+S 67   3702	*	*	6374	4586	*	*	4918	*	5945	4603	6308	*	5830	5670	587	4842	5503	*	7276	67
+       26	*	5800	*	*	*	0	7043	0	1025	
+
+N 68   4084	*	3929	4578	7272	*	*	5085	5770	3175	4900	1909	*	5920	3158	3809	3057	4851	*	6148	68
+       11	*	7005	0	*	553	1651	7029	1075	1222	
+
+E 69   3127	6534	4724	4082	6018	6447	5392	3963	3336	3420	5435	4932	*	4035	4025	4358	2999	3308	*	5847	69
+       15	*	6595	*	*	1375	703	7040	0	1083	
+
+I 70   *	*	*	*	3417	*	7332	2349	*	1505	3824	*	*	*	*	*	4592	2120	6741	*	70
+       66	*	4477	*	*	*	0	7022	0	1114	
+
+V 71   3810	5539	*	*	2326	5697	2966	3987	5423	2955	3484	7381	*	3995	6607	4545	7605	3232	*	5483	71
+       44	5051	*	960	1041	744	1311	6937	1444	1537	
+
+R 72   3235	*	3527	4999	6974	3522	4604	6988	3047	5225	*	3698	4853	4482	3172	3034	3935	5793	6480	*	72
+       858	6544	1192	1000	1000	1091	914	6902	1017	1263	
+
+F 73   3568	*	3762	4348	3861	3296	4430	5594	5846	5866	*	*	4171	2653	2917	4501	3768	4155	*	*	73
+       339	4808	2525	2638	253	4676	58	7009	1090	4121	
+
+P 74   5469	*	2963	3581	5534	4705	*	5408	4299	3787	*	4547	2600	4667	3396	2949	4480	4558	*	*	74
+       317	4140	2834	414	2004	592	1571	6259	1165	4573	
+
+T 75   3537	*	2382	3496	*	3657	*	6482	4392	*	5940	3013	4258	5802	3234	3796	3632	6884	*	5830	75
+       460	6714	1923	0	*	610	1537	6919	1000	2863	
+
+D 76   3783	*	2374	3563	*	3540	5730	6829	4203	3962	*	4397	4521	5606	4551	2853	3466	5953	*	5752	76
+       195	4015	3954	1067	936	350	2213	6839	1309	3130	
+
+Q 77   3649	*	3979	3442	5317	2927	5700	4709	4223	4242	5278	3774	4341	4356	5117	3542	4372	3764	*	6531	77
+       139	4578	4324	2544	271	1516	621	6886	1220	1880	
+
+L 78   4844	5796	3100	3740	3100	5255	4708	4007	4837	3297	5523	4212	4100	5577	5072	4130	5266	3517	*	5611	78
+       90	4584	5723	0	*	661	1444	6906	1216	1951	
+
+T 79   4689	*	3777	4192	4939	7534	*	4179	3241	4252	*	5980	3032	5694	3536	3919	3138	3360	6839	4248	79
+       100	4569	5323	0	*	570	1615	7005	1296	1467	
+
+P 80   4600	5943	5280	3821	4759	6048	4985	5370	5221	5136	7322	3302	2295	5463	4361	2360	4253	5523	*	4998	80
+       44	5042	*	0	*	1018	983	7037	1211	1289	
+
+D 81   3347	*	2193	4373	6702	5414	2631	5870	3904	6013	*	4080	3826	6573	5580	3513	4927	4421	*	6306	81
+       81	6492	4519	1585	585	723	1344	6956	1011	1388	
+
+Q 82   3961	*	3767	3972	*	3855	4297	6286	4264	5847	*	3608	2582	5420	4003	2793	3496	*	*	5123	82
+       85	4838	5503	0	*	0	*	7002	1204	1453	
+
+E 83   4001	*	4480	3848	4853	2887	5854	6426	2912	4242	7357	3340	5154	4505	4473	3278	3715	5732	*	5729	83
+       8	*	7467	*	*	1569	593	7014	0	1146	
+
+R 84   4677	6143	6695	7146	3206	6423	4130	3659	4453	2023	6025	4974	6604	5934	3944	7375	5444	2986	7388	3606	84
+       12	*	6890	1000	1000	0	*	7036	1075	1126	
+
+S 85   5678	*	*	*	8027	*	*	6750	*	*	7027	1887	*	*	*	1618	1460	*	*	*	85
+       0	*	*	*	*	*	0	7038	0	1000	
+
+L 86   3178	*	4633	6140	5234	5875	3147	5011	6336	2326	3495	6560	5511	5955	4920	3380	4642	3391	*	4882	86
+       6	*	8027	*	*	*	0	7038	0	1000	
+
+M 87   3868	6602	*	*	2621	*	6478	3186	*	1685	1912	*	*	*	*	*	*	5531	4919	7373	87
+       0	*	*	*	*	*	0	7040	0	1044	
+
+F 88   3257	*	*	*	2539	4233	5971	3955	*	1927	3547	5850	*	*	*	4898	4255	2857	*	*	88
+       0	*	*	*	*	1323	737	7040	0	1044	
+
+M 89   2371	5984	*	*	4373	4607	*	3591	*	5270	1889	4850	5579	*	*	6174	3842	2964	4574	6231	89
+       27	5738	*	1162	854	0	*	7038	1078	1000	
+
+Q 90   3042	*	6589	4721	3024	5684	3808	*	*	4408	5512	*	4577	1895	*	4001	4845	3819	6582	4104	90
+       0	*	*	*	*	*	*	7043	0	0	
+
+W 91   *	*	*	6907	1462	*	6751	5632	*	4128	7024	*	*	*	*	*	6735	6352	1082	4631	91
+       52	7024	5161	0	*	*	*	7043	1000	0	
+
+G 92   3282	5328	*	*	*	732	*	3564	*	4537	5981	6392	*	*	*	3797	4543	*	*	*	92
+       0	*	*	*	*	*	0	6953	0	1226	
+
+Q 93   *	*	*	3185	*	*	6515	5420	6392	*	7068	5405	*	457	7141	5394	5434	7043	6740	6248	93
+       0	*	*	*	*	948	1054	6953	0	1226	
+
+L 94   4789	*	*	*	801	*	5167	3527	*	3037	5938	*	*	5870	*	*	5513	4940	4976	4890	94
+       0	*	*	*	*	*	0	7031	0	1075	
+
+L 95   6430	*	*	*	6356	*	*	1485	*	2104	3351	6097	5941	5379	*	6897	6681	2215	*	*	95
+       0	*	*	*	*	*	0	7031	0	1075	
+
+D 96   2986	*	1678	4606	7120	4753	*	3313	6556	5078	5695	4031	*	6913	*	4625	3072	4297	*	4802	96
+       11	7051	*	0	*	*	0	7008	1000	1075	
+
+H 97   *	*	6096	5343	6949	6538	418	*	5930	*	*	4246	*	5402	5770	4223	6187	*	*	6069	97
+       0	*	*	*	*	*	0	7008	0	1075	
+
+D 98   *	*	199	4079	*	5263	*	*	*	*	*	5481	*	*	*	*	5560	*	*	*	98
+       110	3767	*	1090	915	0	*	7011	1666	1075	
+
+L 99   6200	5527	*	*	3873	*	*	1891	*	1693	2479	6939	*	*	*	*	4774	3890	5261	*	99
+       24	5934	*	0	*	*	*	7023	1063	0	
+
+D 100  2745	*	2841	6784	3994	6191	*	3867	*	4822	5770	6175	*	5437	*	2208	2560	3820	*	6679	100
+       11	7049	*	1000	1000	*	*	7004	1005	0	
+
+F 101  5574	*	4876	5079	3399	7365	1948	6833	4006	2669	4631	5362	*	3336	4104	3671	*	7351	*	5612	101
+       0	*	*	*	*	*	*	6919	0	0	
+
+T 102  3136	*	*	*	*	4712	*	4263	*	4734	5012	6452	5534	*	6636	3169	989	4062	*	6714	102
+       0	*	*	*	*	*	*	6646	0	0	
+
+P 103  2918	*	*	6795	6639	3941	*	*	5414	4602	5204	*	1226	5752	7141	4350	4477	2788	*	*	103
+       0	*	*	*	*	*	*	6296	0	0	
+
+E 104  3786	6386	2850	3367	5340	3748	5784	4673	5350	6449	4574	4785	5580	3502	6082	3033	4951	2934	*	*	104
+       0	*	*	*	*	*	*	6125	0	0	
+
+P 105  5128	*	3406	5746	3976	6072	5381	6354	5224	5541	5959	3803	4476	4030	4230	1709	3962	4107	*	5624	105
+       0	*	*	*	*	*	*	5836	0	0	
+
+A 106  4034	*	*	4684	*	*	*	4932	3268	3944	*	*	2083	*	4989	1895	3088	4487	*	*	106
+       0	*	*	*	*	*	*	5543	0	0	
+
+A 107  1671	*	*	*	*	*	*	*	*	3672	2214	*	*	*	*	1351	*	*	*	*	107
+       0	*	*	*	*	*	*	4165	0	0	
+
+R 108  *	*	*	*	*	*	*	1093	2347	*	2746	*	*	*	2431	*	*	*	*	*	108
+       0	*	*	0	*	*	*	2897	0	0	
+
+//
+�HHsearch 1.5
+NAME  bdf48b24c3f0fdeaa0d9654593ea6f0d
+FAM   
+FILE  bdf48b24c3f0fdeaa0d9654593ea6f0d
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:06:10 2013
+LENG  164 match states, 164 columns in multiple alignment
+FILT  116 out of 1158 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  8.0 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCEEEEEEEECCEECCEEEEEEECCCCHHHHHHHHHHHCCCCCCEECCCEEEEEECCCEEECCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCEEEEE
+EECCCCCCCCEEEEEECCCCCCCCCCEEEEEEEECHHHHHHHHHCCCCCCCCCCCEEEEEEEEC
+>ss_conf PSIPRED confidence values
+9987899999999995552999997776937999999985137784136988899777926881763578888887546753255443104688749998
+2269998456699991687224898358999870799999998568889989455799981609
+>Consensus
+xxxxxvxxdixixxtxxGxixixLxxxxaPxxxxxFxxlxxxxxgxxYxgxxfxrvxxxxxiqxGxxxxxxxxxxxsxxxxxxxxexxxxxxxxxGxlsx
+xxxxxxxxxsxFfIxlxxxxxldxxxxvfGxVxxGxxvlxxIxxxxxxxgxPxxxixIxxcgxl
+>bdf48b24c3f0fdeaa0d9654593ea6f0d
+MVNPTVFFDIAVDGEPLGRVSFELFADKVPKTAENFRALSTGEKGFGYKGSCFHRIIPGFMCQGGDFTRHNGTGGKSIYGEKFEDENFILKHTGPGILSM
+ANAGPNTNGSQFFICTAKTEWLDGKHVVFGKVKEGMNIVEAMERFGSRNGKTSKKITIADCGQL
+>gi|254584676|ref|XP_002497906.1| ZYRO0F16214p [Zygosaccharomyces rouxii]gi|238940799|emb|CAR28973.1| ZYRO0F16214p [Zygosaccharomyces rouxii]
+---------------TAGDIIVDLKYKQYEIESYNFLKLCKCN---FYQNQCFYNLHKDQSVQFGNPLLG-YEDRKELrlKNTSVEgiTsepvksrllka
+teSPDRSGKALKGSLGnvvvqKQESGQELIGSQVIISlAEhGLDATNA--IYFGDViQTSWSTLDKIERfAVDDTQRPIEDIRI------
+>gi|85374706|ref|YP_458768.1| peptidyl-prolyl cis-trans isomerase [Erythrobacter litoralis HTCC2594]gi|84787789|gb|ABC63971.1| peptidyl-prolyl cis-trans isomerase [Erythrobacter litoralis HTCC2594]
+-----LVMTLAPpdrgpgqaSaEGNTREVVIQLMPApFSQGWVSNIRTLAR--AGW-YDGISVNRVQDNYVVQWGDPnydnpeaegeakplpeglkvmge
+eeysangrilsqltvsnlvakerlePGADwIAPDVSEVGDEYSDLVGFQRgwpvasglsnnsaqtwpiHC-YGMVGVGRGySPDTGsGAELYTVIGHAPr
+HLDRNIALVGRIIAGMEHLSSLPRGKGALGfyaadeidkrTPIVSIRVAS----
+>gi|328865705|gb|EGG14091.1| phosphoglycerate/bisphosphoglycerate mutase [Dictyostelium fasciculatum]
+--------------TSKGGIIVELYRDKARLSCERFTNQI--EVGR-YQDTIIHRIVKNLFIQCGRYSINSSSLDNSLMNNNDSSsnsnnddsitsftst
+stttsiydnnnnnnntqptslnssstilnqlyvdssdddeleqeqqqddivyisdnkesnltnskkesssskqqelldkdqfkrlikenNDNGLSFNERG
+LVAMGSYN------QIIFTLDACGALNRKYPIIGRVHpSTMQMLCILESTPTnESNCPIDPIFLTN----
+>gi|156839035|ref|XP_001643213.1| hypothetical protein Kpol_457p6 [Vanderwaltozyma polyspora DSM 70294]gi|156113813|gb|EDO15355.1| hypothetical protein Kpol_457p6 [Vanderwaltozyma polyspora DSM 70294]
+--------------TSKGNLNVELWAKECPIASKLFIETC--LSKF-WVGSSLGEFgedGSKLYIDFDGDTKF---------KDSIAMEsNSRLLFNREG
+LLGW-----DIDAGLWFVTTSEKC-DGKRKILIGKIV-------------------------------
+>gi|309366416|emb|CAR98339.1| hypothetical protein CBG_27914 [Caenorhabditis briggsae AF16]
+----RIIFDVVSGNLMMGRIIIMLSN-FEPELRKHFYKMADGNRtNRSFSGTIFHRKTNKFIEGGVLTSSNDTSTVESLYTTKPVNNPKFYSKY--VMIA
+NRNIHDDYRGTRFLITTSPLLHCDQDHIPLGTIVCGREIFDQIAELPcDQDGKFLSTLSI------
+>gi|321456758|gb|EFX67858.1| hypothetical protein DAPPUDRAFT_330682 [Daphnia pulex]
+----KCYFRMNINGVMSERIIVQLEKAKAPIMCAKFIEMCTKKDG--YKGSKIYKTIKGesVFCSSGWFHTYDLDQRCDVFTADKSDVAEQRGSM-RFQI
+KKSENGIAQVSTEFNVILANRPRHHRSTSVFAQIIEGLTVFDQISGMDMKQNR----VIFAECGV-
+>gi|159482122|ref|XP_001699122.1| hypothetical protein CHLREDRAFT_193502 [Chlamydomonas reinhardtii]gi|158273185|gb|EDO98977.1| predicted protein [Chlamydomonas reinhardtii]
+---------------EMGDVVVKLLPDLAPASVRELRRMAALLAleGTGCDGCKLYRSEVNFLVQGVIRHPGAYVATPRRPNPP------QKKMMERGLA
+CWAGGM---GGPDWFVNLIDQSGFGDDHLCWGKI-DDMSLLDAIVKLPTK----------------
+>gi|308813275|ref|XP_003083944.1| peptidyl-prolyl cis-trans isomerase TLP38, chloroplast / thylakoid lumen PPIase of 38 kDa / cyclophilin / rotamase (ISS) [Ostreococcus tauri]gi|116055826|emb|CAL57911.1| peptidyl-prolyl cis-trans isomerase TLP38, chloroplast / thylakoid lumen PPIase of 38 kDa / cyclophilin / rotamase (ISS) [Ostreococcus tauri]
+--------------LNEATLEITVDGYNAPLTAGNFVDNVR--RGV-YRNAPMRRSET--AILGGASN--pDAPSVPleikasdafdPSYRFPLDvqnGE
+aIPSIPLSINGSVAMARS-sdGQSDKDQFFVYLFDkrsaglggLSFEEGEFSVFGYVTKGEEYLGSI----------------------
+>gi|342181197|emb|CCC90675.1| putative RNA-binding protein [Trypanosoma congolense IL3000]
+-PRPIVTAAVLIE-TSVGTFVVDLYGADCPAATGELVNLCRCK---YFNGCIATEVIPDSvlifshpveALQQQTFASLLDMgGMRHLPLRDGTLdatst
+rqavyaewkrmrrhvarpqdgakgavgaenvefvirpplEAPGTIRY-SGLLLLevpqvesgATTVCHPLKMRLLITLSNrhLDYLEGQFIVVGEVREGC
+DVVEKMRAAPhrrltTSSGittRPSRLVRIKHTTVL
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	2120	0	0	
+
+V 2    *	*	*	*	*	3092	*	2696	3075	*	*	*	2380	*	*	2833	*	1851	*	*	2
+       0	*	*	*	*	*	*	3322	0	0	
+
+N 3    *	*	*	*	4693	*	*	*	3754	*	*	1296	*	*	2222	3264	3027	*	*	4681	3
+       178	3106	*	0	*	*	*	5803	1348	0	
+
+P 4    4773	*	4927	*	*	*	4567	*	3350	4945	*	*	1126	3175	3345	3464	*	*	*	*	4
+       0	*	*	*	*	*	*	6353	0	0	
+
+T 5    *	5133	*	5349	*	*	4364	2892	2714	4185	5131	5315	*	5118	2348	5366	4021	3792	*	3065	5
+       0	*	*	*	*	*	*	6936	0	0	
+
+V 6    3223	3777	*	*	5146	*	*	2633	*	4194	*	*	5586	*	*	*	5243	1194	*	3448	6
+       0	*	*	*	*	*	*	7153	0	0	
+
+F 7    *	*	*	5556	1798	*	*	5268	*	5458	*	5664	*	*	5367	3889	4158	4026	*	1274	7
+       0	*	*	*	*	*	*	7160	0	0	
+
+F 8    5099	*	*	*	1689	*	*	3697	*	1712	2458	*	5081	5480	*	*	5482	5508	*	*	8
+       0	*	*	*	*	*	*	7196	0	0	
+
+D 9    5099	*	869	3657	5236	*	4326	*	5544	*	*	*	5590	4814	5001	*	3398	3974	*	*	9
+       67	*	4468	*	*	*	*	7196	0	0	
+
+I 10   *	5549	*	*	3596	*	*	1256	5667	3198	4195	*	5639	*	*	*	*	1869	*	*	10
+       66	5328	5654	0	*	*	0	7353	1045	1116	
+
+A 11   1914	*	*	2583	*	3666	*	5548	3423	5228	*	5110	*	5173	*	3187	3774	3211	*	*	11
+       0	*	*	*	*	*	0	7335	0	1235	
+
+V 12   *	*	*	5013	5430	*	*	1516	4498	4305	5839	*	5285	*	4750	3635	4556	1746	*	*	12
+       75	4312	*	2336	318	*	0	7432	1179	1235	
+
+D 13   4452	*	2534	2807	4650	3204	*	4913	5967	3478	*	2455	5771	*	5553	4141	5795	4818	*	5690	13
+       195	3274	5427	563	1630	*	0	7463	1557	1235	
+
+G 14   6167	*	3476	2795	*	2003	5272	*	4895	5323	*	2951	6295	5882	3391	4269	3564	5185	*	*	14
+       40	5182	*	949	1053	371	2141	7624	1116	1410	
+
+E 15   4594	6352	6466	4103	*	4310	*	4856	3712	4877	*	4832	*	4424	4234	5227	1087	4348	*	*	15
+       36	5326	*	1958	429	0	*	8021	1158	1004	
+
+P 16   5204	*	4277	4155	4640	5684	*	5595	5108	4670	5313	2799	3143	5084	5863	2313	2727	5793	*	5826	16
+       0	*	*	*	*	*	*	8346	0	0	
+
+L 17   3207	6810	6675	4094	4793	5484	5956	3696	2788	2401	4556	*	6696	4649	5745	4732	5540	3280	*	4160	17
+       0	*	*	*	*	*	*	8361	0	0	
+
+G 18   5777	*	*	5739	*	160	6375	*	6709	*	*	*	*	5929	5594	*	*	6710	*	*	18
+       26	6386	7464	0	*	*	*	8318	1042	0	
+
+R 19   6333	6471	2410	4362	6774	6601	*	7151	4215	5295	*	3925	4601	6119	1822	3842	3269	4159	*	*	19
+       0	*	*	*	*	0	*	8333	0	1000	
+
+V 20   *	*	*	*	2743	*	*	1424	*	2310	3950	*	*	*	*	*	*	2241	*	*	20
+       0	*	*	*	*	*	*	8337	0	0	
+
+S 21   6749	*	4304	3907	*	5250	*	2866	4201	4061	*	4601	6588	5016	4647	3920	3055	1887	*	5913	21
+       0	*	*	*	*	*	*	8337	0	0	
+
+F 22   4032	7079	*	*	3060	*	*	1071	*	3498	5075	*	*	*	*	*	*	2203	*	*	22
+       0	*	*	*	*	*	*	8337	0	0	
+
+E 23   6690	*	2868	1587	*	3312	6352	4247	5002	5272	5732	*	*	2855	4520	6860	4797	4251	*	*	23
+       16	*	6464	*	*	*	*	8337	0	0	
+
+L 24   6610	*	*	*	5774	*	*	4137	*	377	5379	*	*	*	*	6666	*	3174	*	*	24
+       31	6417	6672	2807	222	*	0	8307	1040	1023	
+
+F 25   4382	*	3160	5554	2137	*	5238	*	5575	3685	6480	5366	*	*	4471	4837	*	*	3924	1811	25
+       0	*	*	*	*	879	1132	8286	0	1140	
+
+A 26   3507	5258	3758	4929	*	2569	7044	*	4593	5787	*	3456	2779	*	3258	4276	3588	4762	*	5031	26
+       72	5890	4974	636	1487	*	0	8319	1095	1000	
+
+D 27   4518	*	1536	2557	*	*	5195	*	3066	*	*	4393	*	5209	4652	3902	4245	*	6674	4292	27
+       85	5595	4768	0	*	300	2413	8308	1137	1398	
+
+K 28   3174	6305	4251	2699	4373	5068	5009	4150	3425	3142	6789	6006	*	4482	6927	4700	5195	3375	4685	5667	28
+       14	6745	*	0	*	0	*	8316	1000	1449	
+
+V 29   1258	3038	*	4732	4869	*	6918	6011	6470	4785	6753	*	*	6798	6514	2994	4121	3431	*	6370	29
+       36	5961	6837	0	*	*	*	8340	1194	0	
+
+P 30   4602	6796	6458	5638	6779	*	6745	*	5954	*	*	7027	323	6501	5669	*	5104	6442	7473	*	30
+       0	*	*	*	*	*	0	8330	0	1000	
+
+K 31   3568	4229	4967	4384	*	5326	5786	3917	2725	2603	4596	3291	*	4187	3779	5794	5808	4629	*	6674	31
+       0	*	*	*	*	*	0	8330	0	1000	
+
+T 32   2727	*	*	4995	6395	3370	4295	5026	*	4472	4415	6833	6734	5862	*	2953	1851	4427	6501	4791	32
+       0	*	*	*	*	0	*	8330	0	1000	
+
+A 33   2217	2958	*	*	*	4858	6746	*	*	6455	*	*	*	6989	4229	3442	3598	1453	*	*	33
+       0	*	*	*	*	*	*	8340	0	0	
+
+E 34   3113	*	2943	2882	5969	4503	5881	6912	3775	4228	5791	3700	*	3506	3050	4291	5502	*	*	5055	34
+       16	6460	*	0	*	*	*	8340	1040	0	
+
+N 35   4976	7515	*	3629	5640	6687	4096	5682	5053	4807	*	1340	*	5660	3177	4294	4962	4936	6954	4075	35
+       0	*	*	*	*	*	*	8340	0	0	
+
+F 36   *	*	*	*	255	*	*	4524	*	3846	5803	*	*	*	*	*	*	5526	*	6740	36
+       0	*	*	*	*	*	*	8340	0	0	
+
+R 37   4311	5635	6365	4630	6514	5917	4929	2737	4096	1832	5462	*	*	5351	4247	7258	4757	2888	6837	4637	37
+       0	*	*	*	*	*	*	8340	0	0	
+
+A 38   3829	*	3357	3257	5635	5898	4155	*	3047	6945	7489	3777	*	3132	2821	3453	4294	6980	*	5574	38
+       56	5007	7122	475	1834	*	*	8340	1296	0	
+
+L 39   4166	*	7200	7075	4894	*	5818	5061	*	866	3667	4210	6453	6655	3775	6603	5871	*	6440	4874	39
+       14	6733	*	687	1400	*	0	8341	1126	1000	
+
+S 40   1953	1549	*	6362	6685	*	*	3408	*	4925	*	6467	*	*	*	5405	5444	2475	*	6218	40
+       373	5981	2238	1586	585	*	0	8341	1092	1000	
+
+T 41   4393	5239	4486	4546	*	6463	6135	*	3259	3060	6280	4157	5464	3559	2646	4272	2655	4579	*	*	41
+       519	6234	1791	2000	415	*	0	8164	1028	3384	
+
+G 42   3726	4629	5169	5989	*	1311	5165	5011	4798	4770	5781	4384	5878	4926	3861	3222	6152	*	*	*	42
+       253	4338	3169	2215	350	1095	911	7855	1317	5172	
+
+E 43   *	*	3072	2438	*	3742	*	4448	2132	4617	*	3061	*	3465	6261	4071	6280	*	*	6480	43
+       365	4392	2509	1812	483	409	2018	8111	1456	4054	
+
+K 44   3348	*	3433	4557	6531	5101	4774	*	2222	4352	6074	3970	5020	3956	2864	3579	6586	5529	*	*	44
+       113	4472	5051	1923	442	2198	355	8009	1334	3163	
+
+G 45   4512	6360	3802	5222	*	776	5921	6691	4418	6137	*	4516	6264	6436	4880	4254	6682	*	*	6650	45
+       192	3859	4161	2940	201	2961	198	7992	1822	2955	
+
+F 46   4889	*	6465	6585	2160	5489	5540	3925	6276	3140	6152	4908	5542	5720	4666	4455	3842	4357	5456	2550	46
+       1285	4509	874	3121	176	695	1387	7960	1352	3204	
+
+G 47   4388	4730	5947	5563	4075	3196	4477	*	4177	5525	*	*	*	5715	4684	2030	3304	5944	*	2586	47
+       84	4716	5752	4986	46	35	5365	7481	1160	5682	
+
+Y 48   5956	4973	*	*	2405	6754	5444	*	*	4793	*	*	*	*	*	6501	*	5646	5912	628	48
+       29	6481	6841	2585	263	*	0	8308	1042	1177	
+
+K 49   3846	6914	1734	4893	5781	*	6628	5999	3320	6627	*	2683	6779	5024	3218	4352	4254	5570	*	6948	49
+       0	*	*	0	*	1695	533	8291	1016	1311	
+
+G 50   5578	*	3672	4633	5179	1079	6230	*	4927	5837	*	2639	*	5669	4796	4919	5745	*	*	5171	50
+       0	*	*	*	*	*	0	8305	0	1180	
+
+S 51   3280	3057	*	*	*	6097	6603	5473	5292	4022	4654	4846	6815	4772	4994	2837	1787	4031	*	*	51
+       12	*	6917	*	*	0	*	8305	0	1180	
+
+C 52   3455	5303	5431	4539	7083	5779	6695	3636	2678	3995	*	6374	3416	5232	3884	3566	3087	4374	*	4953	52
+       0	*	*	*	*	*	0	8361	0	1000	
+
+F 53   6440	3960	*	*	1148	*	*	2506	*	2862	5229	*	*	*	*	*	*	3001	6993	*	53
+       12	*	6879	*	*	*	0	8361	0	1000	
+
+H 54   4873	6988	4660	5969	3165	5849	2171	7159	4761	5147	6741	4376	*	6141	4208	4836	3887	4665	6742	2305	54
+       0	*	*	*	*	988	1012	8345	0	1108	
+
+R 55   4815	6745	6907	4774	*	6698	5994	6680	2765	*	5706	3850	6746	4273	947	4829	7260	*	*	5795	55
+       0	*	*	*	*	0	*	8341	0	1000	
+
+I 56   3662	*	*	*	4961	5683	*	1936	5883	3120	6029	6130	*	6774	6478	3684	5028	1743	*	5715	56
+       43	5995	6181	1585	585	*	*	8357	1093	0	
+
+I 57   4428	*	4699	2795	5663	6698	6374	2668	4239	3156	5883	4840	7164	4463	6667	5079	3804	2511	5923	*	57
+       59	5139	6389	1884	456	0	*	8361	1208	1086	
+
+P 58   4791	*	3715	6835	*	5408	6007	*	2103	6843	*	4723	1721	4888	5100	3844	3503	5199	*	6753	58
+       61	5407	5826	554	1649	*	0	8351	1177	1064	
+
+G 59   *	*	2501	5250	6808	1709	5538	6502	4640	5986	*	2080	5582	6135	4881	4300	5119	*	*	6843	59
+       151	3489	6599	1690	535	*	0	8332	1958	1265	
+
+F 60   5626	*	6446	5314	1749	4866	5067	5221	3455	3944	4749	4679	6804	4107	6001	4282	5237	3764	*	3503	60
+       116	3870	6858	2365	311	603	1549	8315	1747	1406	
+
+M 61   3596	4958	*	*	3600	5079	*	3400	6840	3001	3632	6920	*	6747	5161	4609	5703	2264	4288	3338	61
+       12	*	6899	*	*	1425	672	8352	0	1171	
+
+C 62   3784	5281	6357	5539	5276	*	*	1515	7005	2321	5677	*	*	5895	*	6510	6596	2142	*	*	62
+       28	6729	6715	1000	1000	*	0	8340	1025	1164	
+
+Q 63   5012	6583	4747	3226	5111	5540	6875	4166	4774	4660	5421	5335	*	1182	5201	4385	*	4065	*	*	63
+       66	*	4481	*	*	2022	408	8334	0	1290	
+
+G 64   3140	3389	7021	5414	3396	1628	*	4647	*	*	7153	5711	*	5566	*	3431	3451	4706	4977	*	64
+       52	7061	5177	1585	585	*	0	8342	1000	1776	
+
+G 65   5573	*	5625	*	*	331	6660	*	6374	5618	*	*	5901	6340	5599	5302	*	4927	*	6223	65
+       74	4984	5754	1585	585	3339	150	8305	1381	2112	
+
+D 66   3600	*	1683	4187	*	4661	*	4285	4899	3732	*	3238	*	7112	3896	3857	5536	4328	6239	5829	66
+       43	6820	5628	1000	1000	3308	154	8306	1000	2207	
+
+F 67   4118	6578	6639	6614	3230	4856	*	3096	4920	3934	6866	*	1940	6904	4305	4336	4411	3583	*	4407	67
+       59	5031	6673	3989	94	2150	368	8291	1361	2309	
+
+T 68   3658	6553	4105	3575	6845	4335	4509	5206	5232	3378	6534	4665	3898	5921	4788	2861	2866	4307	*	5593	68
+       270	6835	2628	0	*	1957	430	8317	1000	2096	
+
+R 69   3715	5755	4357	3580	4016	2941	*	6310	4545	4808	6540	3563	3864	4988	6043	3185	3547	4780	6730	4729	69
+       541	4078	1979	3751	111	1322	737	8220	1506	3461	
+
+H 70   3970	*	4524	6412	6103	2241	3202	*	3109	4448	6233	2964	3312	6236	4908	4289	6203	6059	*	5958	70
+       395	4808	2293	1341	725	1075	929	8008	1285	4451	
+
+N 71   4444	*	1858	6475	5839	4014	5213	6365	4187	4857	*	2980	*	6234	4207	3084	2884	6441	*	*	71
+       162	3857	4741	3080	182	1662	548	7799	1690	4266	
+
+G 72   3494	*	4354	5026	5761	1514	*	4226	6398	5071	*	3875	4425	5652	5650	3611	4669	4236	*	4669	72
+       122	4348	4954	1502	628	2804	223	8049	1546	3619	
+
+T 73   3482	6159	5280	4309	*	6514	*	4504	3411	4773	4566	6705	3406	5391	3125	2931	2820	3923	*	6431	73
+       91	4395	6233	3972	95	2282	332	8064	1699	3627	
+
+G 74   3991	6581	4140	3594	*	1477	5267	7045	5953	4507	*	6764	5142	4417	4833	3381	3955	4559	*	6385	74
+       71	5653	5166	2637	253	2831	218	8044	1126	3236	
+
+G 75   4621	*	3011	4635	5733	1933	5634	6407	7346	4991	6111	5177	4200	*	3101	3124	4315	3903	*	*	75
+       87	5692	4667	2848	216	1658	550	8061	1400	3200	
+
+K 76   4110	4785	4488	2994	6669	5119	4916	5759	3910	4443	5571	4701	3121	5484	4340	3397	3636	3633	5624	6560	76
+       251	3646	3647	1768	502	2081	389	8152	1667	2883	
+
+S 77   3949	5117	3868	3674	6624	6511	5155	6727	5595	*	*	5892	2992	5613	4412	1500	3245	*	*	6461	77
+       140	4266	4629	1847	470	2374	309	8151	1408	3163	
+
+I 78   3778	5502	5131	4858	*	6664	5754	2006	4630	2598	5190	5480	5764	5316	5067	3430	5362	3072	*	*	78
+       211	3549	4307	1723	521	2097	384	8205	1771	3095	
+
+Y 79   3818	6493	4057	6723	2966	6639	6219	*	4378	4389	4815	4564	3499	6985	*	6197	6686	4706	3710	1791	79
+       173	4048	4249	1778	497	778	1262	8211	1566	3130	
+
+G 80   3592	5562	4863	4959	*	1597	6781	6730	3889	5360	6729	3324	4923	3955	3839	4591	4035	6736	*	*	80
+       115	4052	5917	1525	616	1084	921	8263	1550	2360	
+
+E 81   3473	6260	2993	2796	3856	4659	*	4661	3927	4718	5947	4745	3580	5350	3903	6543	4158	5871	6871	4197	81
+       61	4901	6969	2205	353	989	1011	8323	1341	1874	
+
+K 82   3766	5954	3842	3778	5121	6705	5392	7079	3665	4632	6630	4147	3196	4245	3131	3991	3308	6445	*	4030	82
+       170	4391	3975	2557	269	935	1068	8339	1512	1479	
+
+F 83   *	*	6555	*	2196	5459	5646	2580	5426	2483	4611	6737	5076	6717	*	5580	5160	2877	6701	3738	83
+       61	5846	5369	2495	282	2450	292	8264	1088	1908	
+
+E 84   3747	*	3850	2204	*	5785	6556	6625	4021	5075	6492	4221	2375	4393	4570	3615	4363	4986	*	*	84
+       156	3962	4715	1560	597	1470	646	8259	1608	2041	
+
+D 85   3541	*	1898	3099	5438	4107	5505	6335	4681	6239	4981	3536	3689	6648	4355	4310	4674	7004	*	6670	85
+       189	3130	6843	4137	84	1484	638	8246	2387	2162	
+
+E 86   6643	*	3746	1163	6715	5132	*	5265	4790	4559	6820	4144	4647	5821	5213	3421	5777	4379	*	5922	86
+       208	2895	*	669	1431	957	1044	8365	2422	1850	
+
+N 87   3534	6936	3972	5340	4490	4487	4274	4925	4828	4297	6721	2503	3380	*	4542	3169	4747	4996	7081	4465	87
+       112	4141	5818	900	1108	916	1090	8306	1558	1365	
+
+F 88   4467	*	4916	4641	3193	4480	4786	5713	3577	3346	*	3779	3497	6963	5065	3109	3427	5073	*	4262	88
+       106	4019	6720	670	1429	0	*	8309	1659	1344	
+
+I 89   5726	6915	4283	4048	4039	2835	5195	5991	3611	4916	6825	4117	4185	4046	3008	3669	5294	3599	6785	*	89
+       139	3676	6222	3024	189	0	*	8355	1887	1025	
+
+L 90   4480	*	5564	6494	4964	4770	5997	3508	5153	1564	5155	5449	4551	4519	4007	5624	5086	3302	6804	5330	90
+       45	6955	5449	1000	1000	*	0	8358	1000	1073	
+
+K 91   5223	*	4268	5225	6922	4226	5329	5036	2199	3891	*	4226	3417	5606	3142	3754	4091	5749	4999	5118	91
+       87	4582	5909	2994	193	304	2397	8336	1400	1369	
+
+H 92   5753	6860	6831	6656	2947	5363	1391	5775	5059	5432	5015	4406	4628	5121	4387	4739	4362	4857	6396	5651	92
+       118	5262	4255	2560	268	*	0	8350	1222	1187	
+
+T 93   3882	4941	2876	3881	4352	3972	5858	5495	4613	5037	4922	3740	6300	5084	4673	3742	3929	3555	*	4123	93
+       370	6457	2220	0	*	507	1756	8314	1045	1819	
+
+G 94   5680	5559	5175	3499	6111	2821	5294	5548	2961	5140	5441	5620	4857	4335	2204	5303	3830	5416	5645	*	94
+       71	6229	4861	0	*	195	2986	8103	1009	3442	
+
+P 95   2664	*	5342	5157	7182	6463	6777	4708	3061	4778	*	5846	3376	5506	1736	4818	5157	*	*	3873	95
+       67	4716	7053	2016	410	398	2052	8306	1634	1615	
+
+G 96   4920	*	6645	*	4420	345	*	6347	*	5168	*	6486	*	6438	*	*	*	5518	6663	5123	96
+       30	5621	*	0	*	1643	557	8349	1160	1149	
+
+I 97   3191	5920	5972	7017	6830	*	*	4649	5559	2264	4322	*	*	4399	4497	4182	2265	3061	6620	4739	97
+       26	*	5790	*	*	*	0	8347	0	1064	
+
+L 98   5093	6488	*	*	*	*	6731	2370	*	1363	6766	*	*	*	*	*	*	1478	*	*	98
+       59	6852	4986	0	*	*	0	8316	1000	1297	
+
+S 99   2147	4516	*	*	6833	2317	*	5511	6184	4455	*	*	*	*	*	1561	4170	5222	*	5756	99
+       33	6174	6831	1792	492	359	2183	8231	1500	1682	
+
+M 100  3789	5069	*	6765	3703	*	*	4169	4831	3038	1942	4440	6421	*	5925	4503	4191	4204	4132	4187	100
+       86	5406	4861	4294	75	*	0	8333	1198	1177	
+
+A 101  1776	5277	4981	5224	7080	3894	6552	3865	5548	6705	6943	5693	5231	5567	3875	3253	4438	2890	6704	*	101
+       164	4438	4031	2353	314	484	1811	8281	1705	1605	
+
+N 102  3986	7292	5316	3868	*	3492	4803	5375	3840	5279	*	2442	6713	4898	2055	3791	5000	5559	*	*	102
+       112	4805	4687	2795	224	1479	641	8258	1509	1829	
+
+A 103  4377	6409	2842	4262	5837	3214	6625	4429	5893	5240	*	4291	5564	4823	5720	2247	3977	4122	5712	4436	103
+       292	2599	5796	1320	738	2786	226	8253	2734	1937	
+
+G 104  4151	*	2758	5239	5421	1557	5461	*	5704	6261	6549	3228	5037	6809	4620	3770	6721	4972	*	4670	104
+       310	3059	3774	933	1071	1408	682	8227	2277	2180	
+
+P 105  4458	5462	3800	3992	*	4573	5462	5598	3387	6675	*	4500	1661	4241	3913	4344	4833	5036	*	6396	105
+       101	4100	6785	1847	470	1160	856	8120	1645	2479	
+
+N 106  5159	6586	2003	4779	*	2832	4214	*	4360	4844	*	2348	4064	6753	5925	4514	4617	*	*	4995	106
+       197	3396	4926	1248	788	3283	156	8203	1990	1924	
+
+T 107  4972	5011	4343	4225	5745	4307	5715	5202	5002	5048	6528	5323	4382	4237	4209	2417	2667	5020	*	3456	107
+       0	*	*	*	*	1565	595	8191	0	2188	
+
+N 108  3208	6093	4330	4663	4265	3299	*	4165	6677	4281	*	2430	*	5252	3601	3724	5164	3723	6881	4819	108
+       55	4740	*	2197	355	2769	229	8263	1330	1769	
+
+G 109  4095	*	3673	6767	7034	1536	*	5598	4227	5607	7245	4762	5707	*	6985	2394	3188	5272	*	6566	109
+       12	6876	*	1000	1000	2365	311	8270	1000	1644	
+
+S 110  3989	6124	5308	5127	4607	3787	6113	4879	*	5939	6373	6055	3664	7194	*	1367	2844	4298	*	*	110
+       18	*	6321	*	*	866	1148	8282	0	1501	
+
+Q 111  4505	6600	4409	2261	*	6749	5902	6880	6754	4938	*	4402	*	1702	3023	3784	5069	4906	*	*	111
+       0	*	*	*	*	544	1671	8293	0	1344	
+
+F 112  6408	5765	*	*	526	*	*	4170	*	3031	6720	*	6449	*	*	*	*	5485	5163	5239	112
+       47	6458	5606	4807	52	*	0	8322	1008	1029	
+
+F 113  4607	4829	*	*	1175	5278	*	4314	5943	3389	4927	6384	*	*	5896	4264	4518	5923	*	3068	113
+       40	6818	5744	1000	1000	*	0	8279	1019	1274	
+
+I 114  *	*	*	*	2954	*	*	779	6348	4155	7076	*	6662	*	*	*	6464	2388	*	*	114
+       18	*	6336	0	*	1414	679	8243	1119	1502	
+
+C 115  4565	3805	7421	5574	6815	6663	5975	4927	*	4317	4605	3542	*	6729	6812	3043	1626	2910	*	5792	115
+       51	5354	6621	0	*	*	0	8272	1158	1449	
+
+T 116  6272	*	*	6057	3715	6912	5994	4417	4903	1145	5511	*	*	5991	6607	6848	2361	4246	*	4810	116
+       37	5986	6740	3218	164	1214	814	8248	1249	1561	
+
+A 117  3471	5856	4429	4059	5900	2033	5158	5112	3936	6931	*	3808	6818	4389	3746	3070	4451	6814	*	5769	117
+       166	3319	6898	2100	383	1009	991	8265	2175	1403	
+
+K 118  3839	*	1864	3532	*	4038	4958	*	3894	6473	*	3579	2405	5881	5702	4260	4774	*	*	*	118
+       229	2935	5976	2753	232	*	0	8324	2421	1259	
+
+T 119  2602	4782	*	5313	6870	5219	6316	4032	5742	2857	5336	3415	*	3483	4699	4134	3465	3491	5864	6970	119
+       99	4074	7183	1818	481	1255	783	8297	1582	1459	
+
+E 120  5153	5844	3802	4517	*	4642	4940	5622	4275	5656	*	5331	1469	6876	4298	2738	4051	5710	*	*	120
+       149	5399	3749	971	1030	1689	536	8325	1320	1309	
+
+W 121  4875	*	4463	3258	3716	3887	3031	4112	5144	5087	6651	4731	5112	4234	4069	3579	5619	4185	4303	4813	121
+       43	6815	5600	1585	585	979	1022	8246	1000	2127	
+
+L 122  5781	6563	5021	4967	3248	4927	5418	4590	*	1096	5545	5316	6564	6577	*	5443	4632	4486	6301	4341	122
+       47	5540	6577	1000	1000	2091	386	8294	1145	1732	
+
+D 123  5182	*	1018	4106	*	4738	4646	*	6484	*	*	2753	4317	5261	*	4490	4713	6389	*	6271	123
+       13	6780	*	0	*	1089	916	8279	1000	1650	
+
+G 124  3840	*	3761	4144	6977	1640	4625	*	5102	*	6585	3494	3922	3683	4059	4147	*	*	6460	5025	124
+       112	5012	4523	2074	391	1828	477	8312	1368	1297	
+
+K 125  5695	5428	3412	3735	5246	3581	6588	4548	2451	*	*	4633	5935	3065	2761	4325	4068	*	*	6758	125
+       119	3908	6334	2923	204	965	1036	8218	1878	1665	
+
+H 126  5200	6861	5322	*	2928	6611	2461	6452	5708	5645	5583	3406	5361	5874	4221	5210	4779	*	*	1777	126
+       39	5245	*	2659	249	1125	885	8228	1175	1424	
+
+V 127  2897	6198	6864	7060	5942	*	5733	2566	*	4804	*	5808	5259	4214	6421	3301	2020	2850	*	*	127
+       24	5924	*	1346	721	920	1084	8292	1114	1179	
+
+V 128  3068	5100	*	*	*	6340	*	2489	*	4512	6753	*	3104	*	*	6850	5688	1148	*	6345	128
+       0	*	*	*	*	0	*	8318	0	1023	
+
+F 129  *	*	*	*	702	*	*	2209	*	4729	*	*	*	*	*	*	*	3164	5672	*	129
+       28	6701	6710	4322	74	*	*	8350	1000	0	
+
+G 130  3502	*	*	*	*	133	*	*	*	*	*	*	*	*	*	*	*	*	*	*	130
+       27	*	5743	*	*	*	0	8338	0	1035	
+
+K 131  6764	5561	5341	3650	6574	*	7014	5294	2984	*	4784	6306	*	2583	1871	5373	3428	*	*	3490	131
+       0	*	*	0	*	715	1356	8304	1119	1269	
+
+V 132  6825	5724	*	*	*	*	*	2473	*	3556	5813	*	*	*	*	*	5620	580	*	*	132
+       101	6349	4176	0	*	*	0	8338	1019	1035	
+
+K 133  5579	4388	5288	6808	*	6558	6605	2053	6132	3573	7088	6805	*	6176	5431	5054	2813	1976	*	4140	133
+       196	3306	5283	0	*	297	2427	8258	2234	1676	
+
+E 134  3906	6587	2485	1817	5355	4519	6882	*	3253	*	6421	6868	*	4496	4680	2828	6300	*	6473	6532	134
+       29	5642	*	2774	228	600	1555	8285	1114	1324	
+
+G 135  6757	6401	4289	6563	*	301	*	*	*	*	*	4612	*	6793	*	4764	5726	*	*	*	135
+       13	6757	*	0	*	*	0	8320	1000	1035	
+
+M 136  6900	6392	4192	4042	2992	6782	5931	4172	6887	2218	2029	6410	6884	7178	5037	6847	6317	4787	4997	4543	136
+       14	6730	*	0	*	*	0	8320	1000	1035	
+
+N 137  4553	6752	1746	2022	6871	5665	4836	*	3818	*	*	4596	5458	5041	4939	3424	4650	*	*	6705	137
+       34	5428	*	625	1508	*	0	8307	1160	1035	
+
+I 138  4070	7184	*	*	5200	*	5026	2966	*	2855	6619	5697	*	*	*	6924	3175	1204	*	5197	138
+       0	*	*	*	*	*	0	8307	0	1035	
+
+V 139  6694	5182	6735	*	4582	*	*	2427	*	1256	5095	6543	*	*	6990	*	*	2173	*	4745	139
+       0	*	*	*	*	0	*	8307	0	1035	
+
+E 140  4857	5554	2023	2162	6539	6841	6307	5663	3619	6686	5291	5034	5789	3494	3281	4645	5263	*	*	*	140
+       0	*	*	*	*	*	*	8322	0	0	
+
+A 141  2365	6307	*	3626	6550	6863	*	5735	2158	5636	5000	5424	*	3460	2915	4656	3720	5983	6610	6599	141
+       0	*	*	*	*	*	*	8322	0	0	
+
+M 142  6479	6407	*	*	5612	*	*	822	6529	2282	3426	*	*	*	*	*	*	3863	6321	*	142
+       139	3672	6207	994	1006	*	*	8309	1787	0	
+
+E 143  2495	*	6638	2442	6775	5640	4556	6544	4728	5513	*	3220	6233	4870	3657	2570	4557	5046	*	6477	143
+       93	4531	5719	675	1419	0	*	8251	1649	1064	
+
+R 144  2335	6614	3654	3457	*	4778	4674	5555	3001	5245	6487	4099	5115	5225	3433	3314	5712	5286	6632	*	144
+       245	2882	5599	1684	538	*	0	8260	2125	1080	
+
+F 145  2775	*	5216	*	4162	3579	5984	4270	5173	2380	3662	6242	*	4801	6180	5451	4207	2829	*	4632	145
+       85	4532	6171	2139	371	*	0	8187	1263	1419	
+
+G 146  4275	5357	3616	3347	*	2073	*	*	3921	5021	*	5957	2211	4571	*	4648	4767	4086	*	*	146
+       84	4139	*	1913	445	*	0	8129	1377	1560	
+
+S 147  5117	6110	2351	6103	*	4868	6065	6276	6128	6387	5770	3952	4243	*	4911	3522	1687	3455	*	*	147
+       278	2513	*	812	1216	2222	348	8123	2321	1560	
+
+R 148  5079	*	2433	2862	6255	4113	5813	*	2259	6268	*	4311	4055	5949	4260	3553	5918	6006	*	4612	148
+       227	2944	5987	846	1172	1131	880	8133	1860	1508	
+
+N 149  4655	*	2630	6410	4719	4729	4833	5154	3853	4276	*	2581	*	3849	6120	3577	3484	5877	5341	4020	149
+       91	5421	4719	0	*	1104	903	8052	1090	1365	
+
+G 150  4862	*	4168	4108	5145	1062	4812	*	4578	4849	5033	2971	6053	5100	*	*	*	*	6203	5903	150
+       155	3299	*	1921	442	637	1486	8003	1689	1596	
+
+K 151  3112	6120	4697	3729	5738	4577	5327	5936	2841	5449	5935	6303	*	4482	1850	6281	4338	4437	6111	5840	151
+       28	*	5690	*	*	*	0	8019	0	1143	
+
+T 152  5886	*	5997	*	5805	*	5841	5857	4899	3997	*	6010	505	*	6308	4950	5275	5174	*	*	152
+       48	6031	5840	1585	585	*	0	7882	1000	1315	
+
+S 153  4023	*	*	4468	5830	5792	*	3131	2460	2486	5178	5058	*	5699	*	3622	5396	3291	*	3334	153
+       0	*	*	*	*	517	1732	7814	0	1457	
+
+K 154  5168	*	4977	2697	*	5729	*	4249	2474	5038	*	4857	4351	4022	3324	3291	4602	3542	*	5048	154
+       52	4825	*	517	1731	*	0	7864	1172	1058	
+
+K 155  4551	6280	2073	4134	*	*	4581	*	3812	4312	*	4981	2841	5653	3725	3670	3037	5684	*	*	155
+       0	*	*	*	*	0	*	7826	0	1058	
+
+I 156  5997	5094	*	*	6145	*	*	1383	*	3633	*	5697	*	5809	*	6233	4450	1492	*	5319	156
+       0	*	*	*	*	*	*	7884	0	0	
+
+T 157  5796	*	*	5003	5916	6241	*	2530	3175	4337	6117	5964	5891	5196	2439	4922	2965	3406	*	3769	157
+       0	*	*	*	*	*	*	7876	0	0	
+
+I 158  *	*	*	*	5569	*	*	366	*	5053	*	*	*	*	*	*	*	2534	*	*	158
+       0	*	*	*	*	*	*	7880	0	0	
+
+A 159  4066	*	5887	3663	5758	4147	5518	3677	4046	3780	5805	6143	*	4374	4447	3237	2390	3743	5645	5749	159
+       0	*	*	*	*	*	*	7599	0	0	
+
+D 160  5470	*	2596	4217	*	3409	3156	*	3069	*	*	2843	*	5781	3960	2694	4846	5533	*	*	160
+       0	*	*	*	*	*	*	7489	0	0	
+
+C 161  4384	741	*	4898	*	5422	*	*	*	5310	*	*	*	*	*	3571	4254	2887	*	*	161
+       0	*	*	0	*	*	*	7054	1000	0	
+
+G 162  *	*	4718	4728	*	331	*	*	*	*	*	4212	*	*	*	5046	4464	*	*	*	162
+       0	*	*	*	*	*	*	6641	0	0	
+
+Q 163  3829	*	*	2200	*	*	4626	2808	*	2622	*	*	*	3957	*	4526	*	1952	*	*	163
+       0	*	*	*	*	*	*	6361	0	0	
+
+L 164  *	*	*	*	4551	*	*	3262	*	670	4323	*	*	*	*	*	*	2953	*	4462	164
+       0	*	*	0	*	*	*	5796	0	0	
+
+//
+�HHsearch 1.5
+NAME  be74be0e66ca7b4603630a5a17fef2a4
+FAM   
+FILE  be74be0e66ca7b4603630a5a17fef2a4
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:00:02 2013
+LENG  61 match states, 61 columns in multiple alignment
+FILT  101 out of 263 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  5.6 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEECCCCCCCCCCEECCCCCEEEEEEECCCCCEEEECCCCCCCCCCCEEEEECCCCCCCC
+>ss_conf PSIPRED confidence values
+9746388878980249778317889986689888846467989889868997498676788
+>Consensus
+xxCxxxxxxxxxxxxtCgxxxCykxxxxxxxgxxixrGCtCPxxxxxxxvxCCxTxDxCNx
+>be74be0e66ca7b4603630a5a17fef2a4
+TMCYSHTTTSRAILTNCGENSCYRKSRRHPPKMVLGRGCGCPPGDDNLEVKCCTSPDKCNY
+>gi|82134454|sp|Q8JFX7.1|NX14_BUNMU RecName: Full=Muscarinic toxin BM14; Flags: Precursorgi|21388237|emb|CAD18848.1| muscarinic toxin-like protein [Bungarus multicinctus]
+-MCNMCVRPYPFMSSCCpeGQDRCYKSYWVNENGKQKkyhgkypvilERGCvtACTGPGSGSiynLYTCCPT-NRCGS
+>gi|162145668|gb|ABX82866.1| three finger toxin V [Walterinnesia aegyptia]
+-TCLICPKKYCNQVHTCrnGENLCIKTFYEGNlLGKQFKRGCaaTCPEARPREIVECCSR-DKCNH
+>gi|25452897|sp|P79688.1|CXH_BUNMU RecName: Full=Cardiotoxin homolog TA-ctx-like; Flags: Precursorgi|1813889|emb|CAA71820.1| cardiotoxin-like protein [Bungarus multicinctus]
+-TCFNDDLTNPKTTELCrhSVYFCFKNSRIAGGVERMQRGCslTCPDIKYnGKYIYCCTR-DNCNA
+>gi|331691435|gb|AED89560.1| putative three finger toxin precursor [Micrurus altirostris]
+-IC---DDSNIPSERTpkrCqgGYNICYKINFPTPgYELLQIKGCaaRCPTNPRFPKAECCAT-DNCI-
+>gi|82199672|sp|Q69CJ8.1|TXW1H_OPHHA RecName: Full=Weak toxin DE-1 homolog 1; Short=WTX DE-1 homolog 1; Flags: Precursorgi|38049479|gb|AAR10442.1| weak toxin DE-1-like protein [Ophiophagus hannah]
+-ICLKQEPFQPETTTTCpeGEDACYNLFWSDHSEIKIEMGCGCPKTEPYTNLYCCKI-DSCNK
+>gi|156485220|gb|ABU68471.1| 3FTx-Tel1 [Telescopus dhara]
+-KCHSCTGRLCITFQNCpdA-QACSQMWKdSDMLKLNVVKGCatNCTLPGPGQQILYCTK-DYCN-
+>gi|166215732|sp|A7X3S2.1|NXAC3_TRIBI RecName: Full=Toxin 3FTx-Tri3; Flags: Precursorgi|156485234|gb|ABU68478.1| 3FTx-Tri3 [Trimorphodon biscutatus]
+--------PPFPLGLYTvsHVKSCGGHLSSIGQCgeDWVVKGCakTCPTAGPGERVKCCYS-PRCNK
+>gi|41017457|sp|P60236.1|NXM14_DENAN RecName: Full=Muscarinic m1-toxin4
+-TCVKSNSIWFITSENCpaGQNLCFKRWQyISPRMYDF--------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+T 1    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	1
+       0	*	*	*	*	*	*	1000	0	0	
+
+M 2    *	*	5626	5011	6174	*	*	1804	2362	5380	4345	4912	*	5606	6954	6116	1876	4961	*	*	2
+       0	*	*	*	*	*	*	5724	0	0	
+
+C 3    *	31	*	*	*	*	*	*	*	*	*	5563	*	*	*	*	*	*	*	*	3
+       446	2166	4546	539	1682	*	*	5721	2196	0	
+
+Y 4    *	5952	5409	*	3158	*	2977	*	4392	2878	5101	4632	*	*	4401	5664	*	4121	*	1541	4
+       0	*	*	*	*	*	0	5379	0	1990	
+
+S 5    *	*	*	5892	*	*	*	4756	2767	5132	5372	2104	*	3982	*	2298	2310	5449	*	5450	5
+       0	*	*	*	*	3730	113	5379	0	1990	
+
+H 6    6516	1799	3511	6461	5956	4604	2810	*	5204	4468	*	*	*	3400	4783	4264	3427	5731	5414	6378	6
+       34	*	5414	*	*	3384	145	5394	0	1915	
+
+T 7    *	*	2896	3927	6222	6329	4863	5962	3364	5689	4805	4483	2617	4355	4188	4756	3062	5398	*	3654	7
+       145	*	3385	*	*	*	0	5413	0	1949	
+
+T 8    5234	*	4749	4439	4957	2607	*	*	5827	3884	6057	5640	5007	*	5269	1802	2638	6444	*	4120	8
+       252	4996	2956	0	*	711	1361	5390	1077	2347	
+
+T 9    5023	6013	6381	5532	6362	6672	6218	3552	4782	3211	5190	3735	3241	5438	5266	3308	2654	3890	6311	4109	9
+       243	2789	6590	1503	628	3289	156	5762	1680	1987	
+
+S 10   *	*	4293	5836	3557	4626	*	5078	4700	3014	7131	3424	4734	3426	3753	3823	3388	3935	6088	3994	10
+       0	*	*	*	*	979	1021	5835	0	1976	
+
+R 11   4869	2008	4268	*	4229	4032	*	5114	*	6569	5809	5346	1819	*	3599	4081	6160	6470	6657	6835	11
+       18	*	6372	*	*	641	1479	5852	0	1464	
+
+A 12   4247	*	4455	3447	3120	4850	5540	3859	3246	4188	5848	4444	3034	5107	4226	4275	6524	3856	*	6597	12
+       22	6049	*	2314	324	1022	979	5826	1078	1202	
+
+I 13   5209	*	4848	5021	5635	4274	5673	3369	3271	4393	5626	4491	*	4678	5293	3755	1554	6102	*	6707	13
+       19	*	6237	*	*	*	0	5852	0	1072	
+
+L 14   6551	*	6585	4768	3844	5089	5326	5234	5853	3496	*	*	3717	*	*	2129	1747	4844	6403	4776	14
+       0	*	*	*	*	*	0	5837	0	1156	
+
+T 15   6050	*	5878	1682	6408	7109	5144	5742	2541	5554	6329	6585	*	3318	4484	5608	3310	3389	6320	*	15
+       51	*	4850	*	*	1374	703	5837	0	1156	
+
+N 16   6481	5172	5204	5665	4998	*	7100	4907	4994	4441	6423	3507	4984	5083	4395	4907	1135	4432	*	5528	16
+       42	5114	*	1109	899	711	1362	5806	1106	1282	
+
+C 17   *	67	*	*	*	*	*	*	*	*	*	*	*	*	*	*	5556	5356	*	*	17
+       4343	73	*	928	1075	0	*	5852	5401	1072	
+
+G 18   3930	*	4492	3890	*	699	4868	*	6692	*	*	5488	*	5477	*	3745	*	6503	5504	6605	18
+       64	*	4532	*	*	0	*	5872	0	1189	
+
+E 19   *	*	6748	1713	6471	5333	5034	6548	3596	5434	4694	5717	*	1789	4494	5190	6703	4455	*	5127	19
+       17	*	6407	*	*	0	*	5794	0	1199	
+
+N 20   *	*	2676	4570	6816	5678	*	5481	2896	*	*	1670	6875	5103	4377	4614	2902	*	*	4588	20
+       38	*	5253	*	*	0	*	5873	0	1008	
+
+S 21   4238	*	*	*	3833	*	6869	2381	4739	2080	5325	5988	*	5539	5655	3522	2739	3826	*	6257	21
+       0	*	*	*	*	0	*	5830	0	1113	
+
+C 22   5409	34	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	22
+       0	*	*	*	*	*	*	5886	0	0	
+
+Y 23   6674	6756	*	4976	1976	5581	*	6450	*	5658	*	*	*	6696	*	5110	*	5134	*	796	23
+       0	*	*	*	*	*	*	5886	0	0	
+
+R 24   6562	5658	*	4282	*	5581	*	3978	1050	5481	5572	5044	*	3953	4316	5882	2923	6203	*	*	24
+       40	7403	5544	0	*	*	*	5886	1000	0	
+
+K 25   *	*	*	3607	6356	*	5531	5954	2043	3655	3182	3828	5650	5489	3046	4761	4161	4727	6738	4009	25
+       15	*	6603	*	*	1903	449	5879	0	1086	
+
+S 26   3574	*	6794	*	3524	*	*	4295	4244	4986	7240	5955	6619	*	4949	2565	2436	5017	2926	3275	26
+       199	5449	3238	2032	405	530	1702	5887	1143	1107	
+
+R 27   *	7043	*	5523	3692	*	4800	3629	4440	4716	5536	4965	6737	5004	4357	4623	5457	3462	1384	6344	27
+       249	2771	6390	1402	686	2959	199	5722	1779	1633	
+
+R 28   4953	3682	5785	5393	*	4598	6639	3890	4315	5907	5370	5977	3212	6612	2651	3232	3031	3933	6156	4773	28
+       0	*	*	*	*	650	1462	5722	0	1606	
+
+H 29   3536	*	2823	3452	5805	3736	4772	4678	4340	6716	6648	3387	3913	5509	5181	4428	2956	4406	*	6707	29
+       86	4465	6282	1786	494	2110	380	5822	1221	1185	
+
+P 30   3606	*	4756	5283	3816	2696	3368	3972	4356	3623	4895	6368	3990	5857	4718	3696	4048	5673	*	5783	30
+       585	2724	2456	187	3043	225	2793	5835	1833	1208	
+
+P 31   *	*	5519	*	4831	3426	5455	6404	4065	4150	6082	3372	3748	4801	1505	3685	5110	*	*	5740	31
+       22	*	6075	0	*	3738	112	5621	1000	2100	
+
+K 32   6317	5295	5900	3777	5087	856	6504	*	3796	4881	6158	*	*	6323	5202	4692	6541	4298	*	5680	32
+       202	3099	6137	1777	498	185	3054	5790	2321	2081	
+
+M 33   6859	*	4493	4012	4395	5601	*	4088	2996	3460	3815	5787	4232	6654	3608	6028	2859	4099	6045	3629	33
+       72	4361	*	1940	435	1634	561	5863	1308	1166	
+
+V 34   *	*	4102	4535	6026	6578	*	3023	3307	4508	*	4838	5533	4172	1772	*	5940	3427	3774	5835	34
+       0	*	*	*	*	1921	442	5843	0	1205	
+
+L 35   4874	*	*	*	3816	*	5451	1457	5636	3711	6558	*	5689	5726	*	5092	3984	2224	6587	4465	35
+       73	4660	6700	2473	287	808	1221	5835	1174	1134	
+
+G 36   4568	*	4310	1741	6835	4931	6408	3997	3561	4106	5124	7403	*	6558	3976	3866	4165	3102	*	*	36
+       15	6590	*	1000	1000	1323	736	5853	1000	1078	
+
+R 37   *	*	*	*	6766	6539	*	*	2627	3858	4290	*	*	4734	700	*	*	*	5167	5868	37
+       7	*	7627	*	*	*	0	5874	0	1021	
+
+G 38   5777	*	*	6575	*	168	6071	*	*	*	*	*	*	5869	5235	*	6487	*	*	6464	38
+       0	*	*	*	*	557	1642	5868	0	1062	
+
+C 39   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	39
+       1988	419	*	1000	1000	0	*	5883	4683	1000	
+
+G 40   3319	*	*	5872	*	2469	*	5093	5136	*	6505	4151	*	*	5118	2781	1377	5806	*	*	40
+       112	3745	*	1000	1000	*	*	5885	1386	0	
+
+C 41   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	41
+       0	*	*	*	*	*	0	5857	0	1085	
+
+P 42   5033	*	*	*	6195	6767	4935	5833	*	5856	*	*	350	*	*	5746	3891	*	*	6844	42
+       0	*	*	*	*	0	*	5863	0	1085	
+
+P 43   *	*	5022	3152	*	4670	*	3834	2106	4361	*	5040	3660	4602	4648	3851	2430	6356	6816	*	43
+       11	7096	*	0	*	*	*	5885	1000	0	
+
+G 44   2576	*	*	5196	5394	2843	*	6585	5030	5294	5409	4911	2381	4874	4693	3953	4296	2950	*	6814	44
+       50	*	4874	*	*	*	*	5889	0	0	
+
+D 45   3871	*	4788	3085	*	3183	*	5162	2032	5719	5157	4392	4522	4620	3876	3490	5246	5530	6506	*	45
+       151	*	3330	*	*	*	0	5844	0	1169	
+
+D 46   4479	*	4849	4540	*	4755	6739	4567	4612	4823	*	4710	1492	6116	3493	3591	5406	4639	5692	4328	46
+       333	2637	4470	426	1967	*	0	5620	1773	1763	
+
+N 47   *	*	3895	5482	4812	1246	4933	*	5373	4002	5919	3373	4980	*	3322	*	6047	6040	*	4088	47
+       12	6908	*	0	*	2151	368	5600	1000	1988	
+
+L 48   *	*	3882	1851	7036	6527	*	3344	3254	3587	6892	6066	4608	5181	4948	5489	5800	2889	6715	4612	48
+       165	3891	4609	815	1212	108	3791	5620	1302	1763	
+
+E 49   *	6539	4721	3551	5502	5675	6214	4004	2839	5538	6660	3912	*	3827	3957	3768	3518	4765	*	2485	49
+       10	*	7231	*	*	*	0	5819	0	1213	
+
+V 50   5836	*	5751	*	6718	*	6590	1871	*	3568	5317	6024	6143	*	5644	6014	5258	1271	*	4163	50
+       14	*	6706	*	*	1635	560	5816	0	1253	
+
+K 51   5631	6772	6777	3307	4992	*	4389	5157	2322	3442	5584	3688	*	4945	5381	6915	3116	3380	*	3526	51
+       8	7563	*	0	*	0	*	5821	1000	1207	
+
+C 52   *	90	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	4045	52
+       0	*	*	*	*	*	*	5889	0	0	
+
+C 53   *	35	*	*	*	*	*	*	*	*	*	*	*	*	5365	*	*	*	*	*	53
+       0	*	*	*	*	*	*	5889	0	0	
+
+T 54   3330	*	6017	5053	5779	6000	*	*	3185	6639	5867	4376	5610	5443	4687	1834	2170	6564	*	4628	54
+       0	*	*	*	*	*	*	5889	0	0	
+
+S 55   *	*	*	5870	*	5158	*	4978	3921	*	*	*	*	*	3352	3094	681	*	*	5779	55
+       5268	*	38	*	*	*	*	5889	0	0	
+
+P 56   *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	56
+       0	*	*	*	*	0	*	1000	0	5433	
+
+D 57   *	*	268	6633	*	6355	*	*	*	*	*	4052	4312	5776	*	5779	*	*	*	*	57
+       0	*	*	*	*	*	*	5889	0	0	
+
+K 58   6488	*	4922	4419	6070	5777	*	*	1608	3545	6655	1996	*	*	2753	5753	6576	*	*	5360	58
+       7	*	7626	*	*	*	*	5895	0	0	
+
+C 59   *	36	*	*	*	*	*	*	*	*	*	*	*	*	5352	*	*	*	*	*	59
+       0	*	*	0	*	0	*	5892	1000	1000	
+
+N 60   *	*	6532	*	*	4663	*	5116	*	*	*	139	*	*	*	*	6278	*	*	*	60
+       13	6754	*	0	*	*	*	5895	1000	0	
+
+Y 61   3867	*	4891	5795	*	4907	3907	4140	1978	3486	5039	3248	*	5336	4015	3644	*	6187	*	3966	61
+       0	*	*	0	*	*	*	5443	0	0	
+
+//
+�HHsearch 1.5
+NAME  c12ad1255bc3ed843ae21de938ab5f62
+FAM   
+FILE  c12ad1255bc3ed843ae21de938ab5f62
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:17:02 2013
+LENG  157 match states, 157 columns in multiple alignment
+FILT  206 out of 1461 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  11.4
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCEEEECCHHHHHHHHHHHHHHCCCCCHHHHHHHHHHCCCCCEEEEEEECCEEEEEEEEEECCCCCCEEEEEEEEECHHHCCCCHHHHHHHHHHHHHHHC
+CCCEEEEEECCCCHHHHHHHHHCCCEEECCCCCCCCCEEEECCCCCCCCEEEEEEEC
+>ss_conf PSIPRED confidence values
+9199999999999999999975266108999999986178965999999998999999996158997799999999788857979999999999999987
+998999998369989999999879999742234444304410136998589999969
+>Consensus
+xixirxxxxxdxxxixxlxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxvGxxxxxxxxxxxxxxxixxxxvxxxxrxxGigxxllxxxxxxxxxx
+xxxxxxxxxxxxnxxxxxxyxxxGfxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxl
+>c12ad1255bc3ed843ae21de938ab5f62
+HMDIRTITSSDYEMVTSVLNEWWGGRQLKEKLPRLFFEHFQDTSFITSEHNSMTGFLIGFQSQSDPETAYIHFSGVHPDFRKMQIGKQLYDVFIETVKQR
+GCTRVKCVTSPVNKVSIAYHTKLGFDIEKGTKTVNGISVFANYDGPGQDRVLFVKNI
+>gi|288940219|ref|YP_003442459.1| acetyltransferase [Allochromatium vinosum DSM 180]gi|288895591|gb|ADC61427.1| acetyltransferase [Allochromatium vinosum DSM 180]
+-IQLKIAGSSEIDEVLKLHYRYQIDSIAKEDKSDGFVTTsftkdqmvdliNk-ENGLFIAK-kgGAVVAYVMAASWEFwsawpmfafminelpnleyKGQ
+MLSVENsyqygpICIDKSVRGTGVLEAIFEFAKNKMSER-YPILVTFVNKANERSYQAHKRKlGLDVIH-------------QFEfNSNSYYEMACK-
+>gi|256825653|ref|YP_003149613.1| acetyltransferase (GNAT) family protein [Kytococcus sedentarius DSM 20547]gi|256689046|gb|ACV06848.1| acetyltransferase (GNAT) family protein [Kytococcus sedentarius DSM 20547]
+-WHLRKPVaae---TPAMTRLLAAHQervlgkasaAWADVDDRVLGR--gAEFRFHRIAQDAdgq---ARGWVNVNDRAVHR----vmidvyldpal---
+--Vagevd-----gadAAAVWDALFAWGRAAAIRMAWRRgvsetvLDSSPYEADEFTRERLAAAGFHKE-----------------------------
+>gi|328866934|gb|EGG15317.1| hypothetical protein DFA_10151 [Dictyostelium fasciculatum]
+-LLLEPFtfdatkalnqeEDEEWETIEELAGDakvamttqFIPHPyPTGASKSWIASqqkawSTGTDMTLAIKLIeqgptkSKIIGVISiMSDIY--NGT
+NILKlGYWIGSPYWNNGYATEASLVIVDFVFNTlNISCLWASCMSHNIGSERVFQKIGMKYQY---------SQPLVIRgQPIDCKFYNITK
+>gi|324502796|gb|ADY41227.1| Protein NCOAT [Ascaris suum]
+---mkcaiplslncytI-----------------rpykdedekelrtfydasedr-f---avegsilndtkeERFFDRTIGPFVSLss-PRTAFVAVDNi
+gttskr--IAA--ivSAAlnaksfaekfrrqyipkvrskyamyaeiekeqgisgedverlWQCQREE--isdweppNLSDyfydqfpsqvdIRYRSVTQD
+AVAVRRLIYVTAVALSFNGSNG----ffvvLQSSETEKIDF-------------------------------------ycklglvtlkevglpeeillmg
+hsL
+>gi|284030371|ref|YP_003380302.1| GCN5-related N-acetyltransferase [Kribbella flavida DSM 17836]gi|283809664|gb|ADB31503.1| GCN5-related N-acetyltransferase [Kribbella flavida DSM 17836]
+TASINDAPKDDLD----IEDDEFTPERLRAYEHAQLMHDRSLYRVIARHrgTGELAGHSTITVERERPHIGEQADTAVSRNHRGHRLGALVKTGMLLWMR
+EAepALSQLDTWNAESNDHMIGINEQLGYRVVA---------RAMAY--------------
+>gi|333030862|ref|ZP_08458923.1| hypothetical protein Bcop_1750 [Bacteroides coprosuis DSM 18011]gi|332741459|gb|EGJ71941.1| hypothetical protein Bcop_1750 [Bacteroides coprosuis DSM 18011]
+--------------------------------------------FELKINDTTAIVEYILTP---QGVVFMTHTEIPNSLESDEVIPVLMEESLQEIKRK
+EHVVFPMC-------------------------------------------------
+>gi|221114075|ref|XP_002160156.1| PREDICTED: hypothetical protein [Hydra magnipapillata]
+-VQTAIATLNDVDDILECINDAFMEyaffkkpeyhQKFTRENVTSMLLQKDSVFILAYNneicehfKNKVVGTIFLHWitttetyvlendsIAKVTLIGK
+FSSLSVPPKYANQGFGKALVSSAEKYLCQEVFNTIQhttlsasdsnkkkqfgvlmeLKAINFRKDLLSWYEKQGYQFISEIRQLDAAFTRRLLEDKDVYF
+ILMRKIL
+>gi|163849368|ref|YP_001637412.1| hypothetical protein Caur_3846 [Chloroflexus aurantiacus J-10-fl]gi|222527365|ref|YP_002571836.1| hypothetical protein Chy400_4155 [Chloroflexus sp. Y-400-fl]gi|163670657|gb|ABY37023.1| hypothetical protein Caur_3846 [Chloroflexus aurantiacus J-10-fl]gi|222451244|gb|ACM55510.1| conserved hypothetical protein [Chloroflexus sp. Y-400-fl]
+--AAQRLSADMRADLAALhSAtagwQSWHPDG--------------GPAFGVVAtTGQLQAIAA--TCFATRDVIEIGWAMQPAAVPA---LQGCIGALT
+QLCFGL-ASRVYLFVEAGDDEIVTGCRHLGF--------------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+H 1    *	*	2798	4450	*	*	2841	*	2393	*	4264	1589	3380	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	7761	0	0	
+
+M 2    6263	6752	*	*	3173	*	6854	2029	*	2095	2429	*	6164	*	*	*	6220	3110	6918	4573	2
+       10	7113	*	2825	219	*	*	11503	1103	0	
+
+D 3    4646	*	4141	3132	7473	7426	4815	3168	3105	4678	5179	4465	7331	3937	3735	4415	2792	4587	7283	5878	3
+       41	5166	*	1197	827	*	*	11632	1693	0	
+
+I 4    6542	6408	*	7444	3538	*	*	1596	5658	1989	5378	*	7550	*	*	7210	5484	2623	7369	4153	4
+       0	*	*	*	*	*	*	11669	0	0	
+
+R 5    4316	6512	5616	4235	*	7324	5205	4676	2966	5145	7506	6276	*	4768	1209	4710	4807	4017	*	6242	5
+       15	7793	7467	0	*	*	*	11715	1000	0	
+
+T 6    4807	7514	4624	3776	5533	7717	6608	4584	3416	3638	7491	4475	2037	4115	3809	4434	4251	4637	7646	5284	6
+       26	6298	7617	535	1690	*	0	11695	1151	1025	
+
+I 7    2045	5525	7699	5991	3368	6200	7069	2844	*	2216	4783	*	4587	7579	*	6436	6482	3583	5958	4735	7
+       39	5219	*	451	1896	935	1068	11709	1513	1197	
+
+T 8    4688	7212	3896	3010	7594	5027	6773	7493	3766	4481	*	4009	5468	3894	4169	2993	2260	4256	*	*	8
+       17	6453	*	1051	951	*	0	11718	1171	1025	
+
+S 9    3466	*	3715	2654	*	6753	5167	4148	3477	3801	*	4274	2995	5123	4541	4329	4792	3889	*	5857	9
+       61	4785	7585	1862	464	1025	975	11700	1709	1188	
+
+S 10   3413	7566	2888	2538	*	5070	6033	5881	3746	5658	6507	3772	5663	3769	4632	3182	3578	6792	5914	*	10
+       29	5653	*	0	*	1166	851	11700	1349	1161	
+
+D 11   5703	*	928	2854	6103	5684	4235	*	7774	5481	*	5237	7558	4090	5493	6318	5529	6582	6373	4901	11
+       21	6818	7400	1000	1000	0	*	11742	1120	1030	
+
+Y 12   2834	5298	6127	4505	3323	6302	6756	3381	4527	2379	5884	7598	6563	7456	4624	5099	6494	3254	4907	3940	12
+       20	6160	*	2141	371	0	*	11747	1256	1022	
+
+E 13   3322	*	2766	2892	5956	4617	6566	6447	3661	4151	6884	5451	2783	3733	4521	4174	5505	5273	*	7493	13
+       9	*	7278	*	*	*	*	11758	0	0	
+
+M 14   2887	7649	3180	2877	5791	4831	6456	4722	4167	3902	5629	5781	5329	3300	3982	3755	5025	4783	6714	6699	14
+       8	7522	*	1585	585	*	0	11749	1000	1058	
+
+V 15   4316	5663	7533	6043	4201	7437	*	2038	*	1834	4265	7481	*	*	*	*	7581	2455	4970	4377	15
+       15	6609	*	0	*	*	0	11759	1218	1058	
+
+T 16   3300	5043	7530	4207	4294	5334	4779	3743	4626	2794	4072	4550	6573	4884	4316	4675	4640	3778	4999	4135	16
+       8	7550	*	3000	193	*	0	11768	1003	1058	
+
+S 17   3152	7454	3000	2436	*	5394	5142	7814	3342	5438	7618	4669	5807	3965	2983	4042	4650	5098	*	6468	17
+       0	*	*	*	*	0	*	11768	0	1058	
+
+V 18   5314	5872	6540	6670	3291	6638	6666	2711	7544	1437	4498	*	6617	6626	7683	5279	6518	3610	3874	4983	18
+       0	*	*	*	*	*	*	11781	0	0	
+
+L 19   3851	6174	5337	4173	3267	5216	4872	3934	5571	2607	4769	5409	7618	4708	4248	6786	5859	3595	3821	3553	19
+       7	*	7676	*	*	*	*	11781	0	0	
+
+N 20   4256	7573	4283	4358	5524	4528	4417	4897	3335	4646	6427	2639	5329	3725	3613	3832	4729	4165	6682	5061	20
+       39	5934	6644	2082	389	*	0	11778	1301	1000	
+
+E 21   3804	*	3045	2550	6848	6257	5245	6732	3596	4335	6041	3998	6648	3037	4121	3393	4838	6197	7269	5088	21
+       51	5328	6625	2912	206	539	1682	11766	1514	1235	
+
+W 22   3051	4230	5938	3595	5640	4483	5317	4028	*	3701	6089	4221	4722	5307	4853	3750	4007	3187	4393	4683	22
+       284	2484	*	2558	268	1327	734	11767	4975	1253	
+
+W 23   4182	6061	5232	5079	2268	4822	5044	4328	6085	3725	4300	5827	6547	5069	5327	4921	5338	4892	2656	3709	23
+       283	2642	5805	2934	202	0	*	11769	4445	1100	
+
+G 24   3853	6443	3678	3786	7085	2898	6584	6580	5226	5307	6369	4867	2654	3861	4242	3268	4020	4554	*	5688	24
+       64	5305	5781	769	1275	876	1136	11781	1476	1377	
+
+G 25   5139	*	3382	2640	5331	4127	3791	5092	4182	4811	6016	4775	3287	4040	3901	4182	4715	4720	6445	5946	25
+       663	1440	*	3111	177	664	1438	11772	7408	1574	
+
+R 26   3410	*	3267	3094	6064	3402	4168	6626	4643	4771	4944	5592	3339	4322	3951	4054	5093	4539	6818	5329	26
+       37	5611	7769	2147	369	919	1086	11771	1377	1132	
+
+Q 27   3629	7547	3587	3498	5691	4106	7357	4729	5664	4509	5770	4232	3237	3607	4279	3900	3355	5253	7747	4309	27
+       55	4737	*	2226	347	1000	1000	11784	1970	1117	
+
+L 28   3944	7445	4213	4326	3054	6269	5618	3703	4641	3787	4538	4339	4227	5705	4570	4808	4633	3955	3891	3890	28
+       51	5052	7864	1992	418	0	*	11794	1620	1000	
+
+K 29   3157	7624	3320	2590	6732	4137	5210	4615	3833	4112	*	5638	4739	4243	3789	3747	4343	4929	*	6030	29
+       63	5091	6207	1939	436	1005	995	11771	1722	1117	
+
+E 30   3768	7499	2666	2457	5302	5832	6104	5965	3994	4880	5922	4788	4308	3343	4223	3714	5119	5259	*	5324	30
+       37	5583	7804	1153	862	*	0	11754	1357	1363	
+
+K 31   3424	5672	4499	3336	3682	5740	4987	4751	4229	3689	5722	5316	5579	4475	3946	4682	4323	4411	4922	3264	31
+       37	5579	7844	792	1243	*	0	11748	1438	1527	
+
+L 32   3795	6542	5348	3958	3242	6226	5646	3024	4923	2467	6215	5548	7602	4735	4342	5149	4454	3870	5164	4168	32
+       71	4537	7635	1158	858	1062	941	11738	2072	1646	
+
+P 33   3622	*	4175	2950	5382	7042	4672	4983	3574	3580	5076	4683	4384	3779	3221	4568	4289	4418	*	5196	33
+       47	6380	5653	1535	611	*	0	11751	1163	1399	
+
+R 34   3890	7629	3165	3027	7436	4424	5527	6040	3462	4371	5540	4400	5955	4093	3062	4147	4051	5965	4684	5056	34
+       31	*	5570	1585	585	2119	378	11758	1000	1865	
+
+L 35   3583	7401	4636	4426	3721	4410	5021	3770	5287	2783	4832	4372	6051	5069	4118	4643	4974	4277	4276	3941	35
+       79	4945	5586	1079	925	2532	274	11757	1621	2141	
+
+F 36   5167	6364	5345	4678	2660	7339	5281	3592	4730	2226	4449	6598	5728	4487	4389	5369	5878	4281	4189	4129	36
+       9	7375	*	1585	585	3721	114	11753	1014	2457	
+
+F 37   3229	6055	3993	3743	5572	4351	5621	4188	3879	3002	4524	4076	4868	4962	4448	3136	4408	5932	*	6542	37
+       25	5870	*	2436	295	2370	310	11753	1477	2344	
+
+E 38   3302	5819	3502	2611	6114	4496	4368	4794	3966	4307	7721	4204	5770	5180	3426	3532	4697	5868	6712	5526	38
+       72	5215	5500	1791	492	*	0	11758	1486	2074	
+
+H 39   3748	6017	3658	4011	5260	4344	5294	4734	4476	3902	6061	3853	3849	3813	3620	3493	4744	5299	5838	4519	39
+       379	3629	2733	2113	379	2216	350	11757	2736	2522	
+
+F 40   4670	*	3521	3555	3640	4476	6462	3774	4395	3135	6328	3938	3480	5048	4329	4055	4668	5314	5760	5204	40
+       52	4812	*	1418	676	626	1507	11617	1791	5175	
+
+Q 41   3893	5944	3277	4240	6424	4033	5381	6273	3954	4666	6469	3735	2903	3986	3838	3654	3540	5431	*	7646	41
+       207	2904	*	816	1210	1194	829	11725	3879	2615	
+
+D 42   4183	6617	3201	3330	4924	3188	4113	6058	4214	6053	7375	3985	4638	3758	4137	4148	4782	6221	5556	3744	42
+       224	2895	6693	1811	484	1179	841	11757	3880	1885	
+
+T 43   5331	5279	4993	4090	3840	4293	3976	3810	5077	3711	5421	4317	3995	6129	4033	4239	3864	3631	4794	4392	43
+       90	4042	*	1157	858	0	*	11798	2356	1761	
+
+S 44   4011	3764	7661	5838	2765	5035	4510	3296	5988	3430	5174	6220	4876	5746	4974	4365	4282	3182	6635	3959	44
+       30	5621	*	0	*	*	*	11806	1389	0	
+
+F 45   4808	6615	7231	*	2387	6100	5737	3239	5261	2672	5345	7742	*	6038	5475	5240	5696	3294	3932	2701	45
+       22	6069	*	1916	444	*	*	11819	1234	0	
+
+I 46   3138	5975	*	6220	4810	3627	7599	2674	5576	2404	5548	*	*	8155	7137	6059	5366	1907	5617	6568	46
+       15	6553	*	621	1515	*	*	11819	1125	0	
+
+T 47   1757	5716	7697	6460	4236	4181	6386	2640	7718	2975	5112	*	7524	7512	*	5802	5037	2931	6129	5455	47
+       61	4851	7199	1668	545	*	*	11819	1799	0	
+
+S 48   6024	5455	4507	2514	3423	7469	7748	5135	4311	2834	5258	5421	*	6071	3342	5009	4278	3550	5392	3935	48
+       76	4422	7758	1261	779	0	*	11797	2091	1046	
+
+E 49   4092	6157	2436	2778	6122	5952	5480	5183	4503	3909	6769	4069	5581	4566	3823	4422	5533	3825	6801	4176	49
+       248	2663	*	1186	835	*	0	11809	4613	1005	
+
+H 50   4294	6072	2080	2980	*	3143	5414	7554	3696	6138	7739	2890	7599	4874	4848	4191	3851	*	*	*	50
+       74	4464	7829	2126	375	*	0	11792	2013	1168	
+
+N 51   5528	*	2550	3501	*	1454	5363	*	4975	*	*	2792	6102	5092	7698	3953	5717	7359	*	6005	51
+       36	5601	7885	2037	403	748	1306	11795	1619	1270	
+
+S 52   4613	*	3614	2276	*	4690	4790	5607	3329	4711	*	4839	*	2921	4010	4648	3582	4014	7450	5801	52
+       45	5256	7754	1624	566	819	1207	11792	1513	1155	
+
+M 53   4766	5563	5996	6266	6570	7370	7449	2227	6138	2087	4904	7559	2664	6673	5734	5164	5696	2802	7604	7125	53
+       28	6161	7604	789	1247	930	1074	11799	1362	1130	
+
+T 54   3000	5110	7278	*	5849	7458	7372	1931	6612	3559	6113	*	*	5674	4844	7750	5271	1499	*	*	54
+       9	*	7319	*	*	922	1082	11805	0	1131	
+
+G 55   2279	6524	*	7612	*	570	7527	6796	7499	*	7159	*	*	*	*	3790	7644	*	*	*	55
+       19	7393	7124	0	*	846	1173	11797	1005	1148	
+
+F 56   3849	4163	6569	6571	2621	5505	5312	4177	6504	4073	3942	*	*	6811	6722	4084	4161	3136	3839	2875	56
+       0	*	*	2322	322	1245	791	11792	1000	1163	
+
+L 57   2507	4004	*	6153	4985	3267	*	2815	7483	2885	4337	*	*	6538	*	4933	4284	2550	7677	6758	57
+       68	5185	5756	0	*	0	*	11802	1607	1038	
+
+I 58   3726	4527	5277	4675	5012	3188	4783	3212	5059	3232	5897	5009	7632	5101	4714	3281	4890	3472	5394	5371	58
+       167	4190	4191	2173	362	*	0	11837	2217	1402	
+
+G 59   3011	5485	*	*	4075	3329	7663	3574	5715	2135	4610	7586	*	*	6118	4855	4629	2548	6459	4599	59
+       65	5118	6035	380	2111	1930	439	11815	1611	2756	
+
+F 60   4211	5982	5597	4001	4221	4182	4813	4581	4725	3606	5636	4132	6235	5309	3281	3791	3740	4551	5028	3291	60
+       59	5517	5792	3477	136	749	1304	11802	1450	2670	
+
+Q 61   4057	7741	4213	5054	3913	5029	4586	3711	3897	3610	6168	5207	3083	5119	3345	4842	4490	3651	5516	5634	61
+       128	3557	*	3386	145	1614	571	11809	2870	2073	
+
+S 62   4342	5510	3423	4824	4259	4112	5263	3708	4067	3741	5161	4271	4390	5618	4627	3272	4234	4466	6851	4204	62
+       173	7852	3206	1000	1000	2366	311	11798	1000	1693	
+
+Q 63   3511	6486	2946	4177	4229	3773	5785	4647	4026	4716	6089	4022	3624	4087	3811	4328	4325	7620	*	4644	63
+       147	4714	4086	1010	990	3869	102	11677	1737	4223	
+
+S 64   3667	*	3420	3411	3760	4386	4036	5854	4107	4400	5900	4327	4220	5441	3908	3759	5435	4430	5068	4458	64
+       480	2152	4104	4048	90	2767	229	11638	4949	5080	
+
+D 65   4582	*	3180	4209	5806	3529	4348	4114	4102	4105	7321	3575	4129	7247	3695	3567	4123	3986	7135	5438	65
+       16	6496	*	2969	197	233	2747	11624	1157	5434	
+
+P 66   3989	*	3542	3357	6576	3116	5059	6632	4363	5468	7607	3893	3210	4064	3739	3471	4748	4372	6091	6523	66
+       79	5017	5493	1159	857	1782	496	11775	1633	1700	
+
+E 67   4311	6683	3407	3800	*	3815	4094	7099	3563	4822	7385	3701	3669	4362	2713	4278	4308	4923	*	5697	67
+       39	5235	*	695	1388	981	1019	11762	1498	2042	
+
+T 68   3954	5693	5307	4050	4616	4439	5648	3949	4150	4254	7579	3852	5146	3978	3805	3990	3394	3117	6027	5389	68
+       8	7560	*	3170	170	1025	976	11767	1023	1461	
+
+A 69   2450	3983	6151	5313	4101	2707	6302	3814	*	3296	5724	5096	4933	6632	6778	5645	5130	3693	4710	4227	69
+       31	6424	6724	2692	242	*	0	11791	1157	1172	
+
+Y 70   4689	5948	5331	2325	4333	4466	3753	4235	6181	4330	5373	5225	5623	5075	4258	4151	4571	6183	4518	2987	70
+       24	5901	*	3065	184	489	1799	11783	1462	1430	
+
+I 71   5732	6183	7552	5455	4156	6770	6490	1745	*	1762	5461	7768	*	7284	5976	4598	4928	3046	5666	7604	71
+       198	*	2963	*	*	*	0	11802	0	1030	
+
+H 72   3994	5640	4122	3698	5376	2669	3666	5087	4524	4025	4888	4641	6543	6292	4427	4267	4060	4120	5250	4359	72
+       23	7349	6682	3000	193	119	3657	11643	1003	4046	
+
+F 73   4222	5796	4005	4121	4440	2535	4701	4260	5611	3405	4848	4935	7605	5456	3781	3650	4965	5667	6192	3809	73
+       67	4456	*	1927	440	2072	392	11787	2121	1392	
+
+S 74   4822	6770	7512	*	2893	5082	*	2845	*	1799	5119	*	*	*	*	5518	4263	2436	5566	4300	74
+       7	*	7774	*	*	*	0	11789	0	1269	
+
+G 75   2630	5084	5987	4969	3264	3336	5449	3843	*	3909	4327	*	*	6040	5401	4246	6048	3063	4453	3694	75
+       15	6633	*	3229	163	876	1135	11788	1146	1389	
+
+V 76   5721	7490	*	*	4992	5996	*	2333	7254	3455	5566	*	*	7313	*	6539	2814	1200	*	5907	76
+       26	5788	*	1442	662	*	0	11806	1350	1107	
+
+H 77   3419	7668	2738	4924	6034	3946	3318	6681	3989	2977	5358	4166	5372	6049	3357	4142	5231	5799	*	5618	77
+       10	*	7180	*	*	*	0	11789	0	1269	
+
+P 78   3857	6436	5910	2879	6599	7727	6073	6796	4115	5595	*	4930	1399	3870	4116	4248	4336	7854	*	7611	78
+       0	*	*	*	*	*	0	11767	0	1443	
+
+D 79   3521	*	2628	2146	7486	4480	5023	7599	3516	5368	*	4341	3980	4843	4750	3293	5405	7472	*	6467	79
+       39	5541	7638	1583	586	1280	766	11767	1390	1443	
+
+F 80   3718	6588	6033	4911	2902	*	3262	6709	5593	3392	6130	5449	6515	6101	4974	4564	6679	4597	4166	1955	80
+       27	6512	7100	1585	585	*	0	11781	1145	1340	
+
+R 81   5677	7548	7477	4954	7550	6503	4297	6707	4155	4922	5620	*	*	2368	1238	5261	6106	5510	3950	7360	81
+       21	6651	7873	781	1258	458	1878	11751	1319	1516	
+
+K 82   5999	*	5395	5099	7389	1393	4521	*	3847	5957	7305	3361	7491	4965	2404	4047	6105	7666	7538	*	82
+       15	6642	*	390	2077	1282	764	11788	1246	1170	
+
+M 83   4644	6979	5845	5127	7367	4408	5226	6695	2309	4030	5282	4424	7490	2569	2366	4378	4295	*	*	6136	83
+       30	6522	6653	1664	547	0	*	11797	1155	1046	
+
+Q 84   4849	7643	6562	4817	*	406	6579	*	5001	7374	*	6205	*	6719	4459	4949	*	7345	*	7768	84
+       20	6171	*	3064	184	0	*	11803	1357	1142	
+
+I 85   4879	*	*	7271	4305	5438	6151	2176	7726	2167	5711	6417	7559	6960	5727	*	6819	2274	6689	2892	85
+       0	*	*	*	*	*	0	11818	0	1006	
+
+G 86   2080	6787	*	6147	5677	1003	7539	6780	*	6709	4696	5872	6236	6694	*	3937	5591	6548	5801	7800	86
+       30	6374	6821	1716	524	0	*	11818	1184	1006	
+
+K 87   3282	*	5805	4445	5679	5110	5167	5540	2728	4179	6624	5419	6761	3966	2984	2842	3087	5886	*	5490	87
+       0	*	*	0	*	1074	930	11799	1000	1130	
+
+Q 88   2665	7660	4275	2949	4822	6144	5063	4448	3146	3963	7535	6196	6138	4075	3304	5659	4313	4521	5949	5046	88
+       6	*	7894	*	*	*	0	11809	0	1005	
+
+L 89   2980	6530	*	*	4685	7708	7186	3346	*	1142	2789	*	*	*	*	5872	6812	3584	7331	*	89
+       0	*	*	*	*	*	0	11799	0	1130	
+
+Y 90   5089	7440	*	5939	4067	*	6226	3301	4944	1530	3060	6916	7583	6003	5427	*	4972	2926	5691	4637	90
+       0	*	*	1000	1000	1074	930	11799	1000	1130	
+
+D 91   3243	5938	3871	3039	7137	4565	4816	6661	3357	4272	7377	3556	6558	3591	3051	3859	4754	7493	7190	5628	91
+       15	6614	*	1636	560	*	0	11809	1150	1005	
+
+V 92   2465	5666	5425	3231	3992	4993	4193	5333	4092	4009	4478	4937	*	4168	4278	4690	4835	4740	5311	4217	92
+       0	*	*	*	*	*	0	11809	0	1005	
+
+F 93   2588	4651	*	7686	4268	4731	*	3522	*	1845	3573	7580	*	5583	4816	5083	5157	3177	6599	6639	93
+       30	8024	5916	0	*	*	0	11809	1000	1005	
+
+I 94   4501	4829	6364	2667	4380	7419	5672	2971	4682	2109	4037	7404	*	4732	5001	5627	5495	3628	7556	6041	94
+       16	6516	*	575	1606	1238	796	11764	1131	1541	
+
+E 95   3490	*	2911	2327	*	5667	4737	5915	3550	5545	7572	4728	6602	3237	3379	3518	4651	7727	*	6516	95
+       0	*	*	*	*	1588	583	11787	0	1259	
+
+T 96   4367	7560	4664	3483	3935	6672	3795	3867	4551	3525	5620	*	*	4059	4192	4764	4379	4359	3597	3050	96
+       16	7838	7203	2494	282	0	*	11799	1233	1130	
+
+V 97   1555	5085	*	6516	4387	4967	7602	3560	6076	2498	4350	*	7435	7677	*	4473	5122	3849	7451	4348	97
+       201	3292	5164	365	2161	0	*	11803	3299	1041	
+
+K 98   3878	5633	4274	3566	4590	6132	4792	4712	2603	3991	*	4758	4701	4148	2769	4259	5210	4906	7450	5544	98
+       35	6669	6119	0	*	1448	659	11797	1260	1614	
+
+Q 99   3485	*	3490	2780	6732	5097	4773	5255	3260	5339	4761	3370	4922	3257	4211	4014	4686	5663	*	*	99
+       96	4611	5396	156	3287	2798	224	11832	1949	1692	
+
+R 100  3631	5571	4538	3567	6191	5412	5325	4534	3669	2718	4804	3930	5500	3159	3382	4844	4624	6177	7801	6659	100
+       240	3549	3882	536	1689	1254	784	11832	2985	2166	
+
+G 101  4450	7191	3899	4133	5456	1346	5965	7605	3547	5981	*	3536	6575	3646	5654	4474	5984	5871	*	6603	101
+       47	7897	5152	3170	170	541	1677	11806	1022	3204	
+
+C 102  2644	4138	5504	5741	3119	4898	5519	3363	6535	3032	5941	7153	4900	5168	5469	5323	6647	3076	6625	3819	102
+       34	5422	*	2472	287	3152	172	11806	1416	2296	
+
+T 103  4339	*	3540	3016	6100	5357	4330	7518	3153	5252	7414	3551	4549	4510	3342	3680	3537	5671	5187	5602	103
+       22	*	6074	*	*	490	1795	11812	0	2144	
+
+R 104  3965	6656	4319	3694	4929	4914	5065	5238	3222	3958	5746	5734	5444	4257	2963	4068	3635	4276	6390	4055	104
+       27	6128	7881	1333	729	0	*	11800	1400	1613	
+
+V 105  3642	5098	*	7509	3581	5010	*	2495	*	2296	4082	*	6137	7766	6824	4896	6584	2206	5576	5563	105
+       28	6839	6580	3013	191	*	0	11809	1091	1000	
+
+K 106  4063	6086	5001	3821	3644	5004	5520	3128	6866	4103	4984	7575	6197	4732	3869	4537	3459	4151	5691	2804	106
+       22	6033	*	2893	209	1627	564	11792	1438	1291	
+
+C 107  2800	4280	*	*	4982	4771	7543	3567	*	1689	5102	*	7469	7762	*	4599	3542	2989	5681	5336	107
+       83	5318	5027	0	*	*	0	11802	1473	1155	
+
+V 108  5281	5748	3669	3675	4279	4114	4391	4195	4872	3494	5741	4988	6478	5247	4303	3327	3406	4555	5378	3936	108
+       16	6530	*	2963	198	902	1105	11751	1252	1916	
+
+T 109  2928	4225	6024	7264	5650	4626	6826	3811	5963	4166	6439	7253	5638	6752	6532	3468	2638	1985	*	5698	109
+       166	4245	4155	2407	301	2372	310	11798	2296	1366	
+
+S 110  3424	*	3357	4767	3628	3935	5158	4588	4997	3848	4725	3716	4560	6124	3638	5284	3970	4008	5983	4736	110
+       36	7497	5696	3000	193	*	0	11791	1000	2689	
+
+P 111  3128	7328	4195	2552	5655	5348	6349	4549	4764	5579	6184	4412	3036	5069	5146	3160	3814	3991	*	6556	111
+       56	6395	5266	612	1532	2581	264	11785	1135	3105	
+
+V 112  4605	6625	2948	2968	4959	3776	4811	5958	4711	5110	6599	3649	3843	4676	4951	3035	4116	4899	7328	5889	112
+       33	5849	7496	3427	141	674	1423	11740	1273	3415	
+
+N 113  4924	7584	3851	5281	5049	5654	4718	7330	5345	5156	*	1204	6496	4201	4848	4005	4526	5251	6556	4532	113
+       154	6604	3463	3646	120	796	1238	11792	1156	2000	
+
+K 114  3571	*	4725	2752	6706	5113	5229	3510	4133	3712	7510	5515	3037	4785	4714	4377	3467	4437	*	4831	114
+       33	7473	5862	0	*	2044	401	11744	1000	3522	
+
+V 115  3225	*	4416	4333	5381	3731	6512	5508	4230	6651	6123	4257	2732	3696	2929	3562	5221	5494	6068	5214	115
+       7	*	7688	*	*	3286	156	11740	0	3265	
+
+S 116  1771	*	7148	5900	6609	4426	7389	5838	6428	3598	3383	5450	5486	7559	6602	2050	4114	4450	7120	*	116
+       15	7495	7661	3000	193	496	1782	11750	1000	3130	
+
+I 117  3870	6769	5721	4784	6755	5948	5007	2642	4010	2679	5721	4381	6799	3319	3069	6785	5478	3580	7779	5864	117
+       7	7791	*	3000	193	2771	229	11796	1000	1693	
+
+A 118  2859	*	4508	3626	*	3877	4187	5474	2822	5394	*	4929	3949	4246	2615	3815	6723	5955	7709	6432	118
+       0	*	*	*	*	595	1566	11797	0	1575	
+
+Y 119  3880	6749	7237	*	1596	5639	*	3353	7764	2288	4005	6143	*	7685	7445	6603	6430	3749	5138	4434	119
+       16	7438	7494	0	*	0	*	11816	1004	1110	
+
+H 120  4175	5578	7508	7572	3129	5175	4724	4777	7368	2840	5627	6416	*	7609	*	5865	*	5121	4296	1262	120
+       0	*	*	*	*	0	*	11810	0	1000	
+
+T 121  4219	*	4853	2068	*	5464	5328	5611	2899	3355	6153	6519	7617	3935	2810	4817	4132	4909	*	6709	121
+       8	7590	*	0	*	*	*	11810	1000	0	
+
+K 122  3687	*	4406	5168	6619	5689	4341	7745	1767	7122	*	4113	6716	3876	2444	3370	5336	7226	*	6027	122
+       14	*	6745	*	*	*	*	11810	0	0	
+
+L 123  3191	3948	5928	7273	3505	7299	5035	4870	5372	1993	3720	4139	*	4549	3970	5361	5863	5118	6179	4475	123
+       28	6714	6667	0	*	*	0	11784	1082	1120	
+
+G 124  6804	*	4443	6467	6423	271	7714	*	6567	*	*	4482	7239	*	5948	6607	*	*	*	*	124
+       0	*	*	628	1502	421	1981	11750	1120	1357	
+
+F 125  4151	5713	*	*	808	4766	*	*	*	4907	4695	*	*	*	7245	7159	*	6610	4258	2567	125
+       15	7617	7640	1585	585	*	0	11763	1000	1000	
+
+D 126  5891	6552	4932	2917	6352	6641	5281	4436	2735	5586	*	5091	*	3374	3148	3623	2949	3593	*	6654	126
+       7	*	7702	*	*	884	1126	11761	0	1139	
+
+I 127  4881	6034	4700	2949	6020	*	5607	4229	3432	3161	6333	5027	3142	4655	3685	5277	4258	3502	7746	4493	127
+       8	*	7494	2000	415	1074	930	11718	1000	1130	
+
+E 128  4182	4941	4036	3259	5603	5896	5682	2920	6600	3508	4719	5784	7570	5980	5133	4736	3511	2814	5030	4160	128
+       7	7622	*	1000	1000	0	*	11681	1120	1120	
+
+K 129  3292	7209	3629	3594	5925	1783	4585	*	3314	5850	*	7078	4799	5931	4071	3911	5064	7428	5840	5495	129
+       1599	*	578	*	*	*	*	11545	0	0	
+
+G 130  4547	*	4631	2770	5671	4522	5417	3613	3655	4643	*	*	3488	4718	2975	4507	3071	4489	*	5586	130
+       1132	4514	1000	1333	730	5398	35	9532	1201	8757	
+
+T 131  2291	*	4890	2300	*	4548	*	4528	*	3700	4658	4652	4705	4572	*	4693	2691	4559	*	*	131
+       262	*	2592	*	*	6624	15	7690	0	9612	
+
+K 132  *	*	4294	3377	*	*	4418	3274	2054	*	*	4388	4405	2440	4322	4576	4517	*	*	4414	132
+       212	*	2873	*	*	4657	58	7191	0	9691	
+
+T 133  *	4395	*	3416	*	4386	*	*	2902	2200	4624	*	4404	4448	4495	*	2407	3427	*	*	133
+       0	*	*	*	*	6737	14	7398	0	9643	
+
+V 134  3454	*	*	4551	4601	*	4589	4472	4495	3436	*	4450	3088	*	3548	3511	4598	3506	2881	*	134
+       0	*	*	*	*	*	0	7531	0	9606	
+
+N 135  4543	*	2865	2215	*	4411	*	4495	*	*	4404	2415	2933	*	*	4394	*	4327	4320	*	135
+       0	*	*	*	*	5731	27	7416	0	9606	
+
+G 136  3541	*	3492	3668	*	1768	*	*	3678	4633	4495	*	4712	*	3561	3052	4421	*	*	*	136
+       60	*	4625	*	*	*	0	7691	0	9530	
+
+I 137  2935	*	*	4473	4478	*	*	1949	*	1976	*	4501	*	*	4604	4468	*	3496	*	4410	137
+       199	4643	3496	1585	585	6969	12	7611	1051	9573	
+
+S 138  *	*	4398	*	4415	4263	*	*	3531	3558	*	*	1128	4485	4452	4422	4449	4575	*	*	138
+       85	*	4125	*	*	480	1821	7499	0	9622	
+
+V 139  4986	*	6685	4100	4910	4398	4751	2858	3803	2885	5804	5089	5766	5159	3803	6519	2970	3216	*	5252	139
+       11	*	6999	*	*	2173	362	10952	0	4820	
+
+F 140  5184	5262	3738	3124	4689	5895	4362	4766	4798	2872	5318	6595	5788	5259	2678	4845	4633	3112	*	5906	140
+       0	*	*	0	*	4797	53	10999	1005	4181	
+
+A 141  3315	5841	5840	3834	5531	4051	5727	5190	3465	3946	6917	4450	3456	4060	3257	3739	3815	5405	6036	5943	141
+       33	6491	6438	0	*	353	2205	11017	1041	4081	
+
+N 142  4109	6715	3364	3828	6754	3730	3900	4817	4207	5224	7000	3091	4249	4127	3835	3619	4273	4502	*	6096	142
+       12	6903	*	0	*	559	1638	11087	1014	1815	
+
+Y 143  4378	6848	5314	5622	2746	5640	4050	4456	6734	3938	6753	6670	4850	5970	3812	4809	5006	4450	5422	1882	143
+       65	4889	6595	1028	973	0	*	11129	1410	1179	
+
+D 144  3760	*	3948	5167	2868	3955	4724	4836	5379	4033	5834	6896	6128	5550	5208	5176	4600	6944	4784	1877	144
+       0	*	*	*	*	*	0	11107	0	1040	
+
+G 145  4472	6663	3879	4043	4835	2543	5043	5188	4032	3990	6898	4257	3817	4771	3854	3595	4499	4452	6926	6684	145
+       861	1262	4941	419	1988	*	0	11035	5863	1040	
+
+P 146  4247	*	3169	3963	6657	3824	4451	4694	3752	5734	*	3600	2800	3888	4811	3369	5032	5045	*	5195	146
+       56	6821	5102	1000	1000	1346	721	10947	1000	1525	
+
+G 147  3900	*	3430	4074	*	1664	6799	5469	4382	5628	*	3868	4111	4476	4651	3465	6603	4487	*	6810	147
+       395	2063	*	953	1049	528	1706	10936	3917	1678	
+
+Q 148  6884	5462	3219	2948	5866	4745	4277	4081	3498	4779	5102	6783	5191	4169	3451	4168	5314	4185	4732	4163	148
+       16	6476	*	1000	1000	*	0	10978	1041	1120	
+
+D 149  4750	*	1364	3192	6617	5309	4336	*	4743	6660	*	3841	3986	5515	4092	5032	4614	5946	6495	5602	149
+       0	*	*	*	*	0	*	10917	0	1120	
+
+R 150  3238	4231	5101	3435	3856	5098	4452	4384	4427	3779	*	5808	6431	5654	3470	3864	5154	3432	4939	4428	150
+       0	*	*	*	*	*	*	10862	0	0	
+
+V 151  4130	4973	6796	6529	4615	*	5769	2579	5594	2397	4060	5652	5823	5019	5057	6726	4505	2626	4819	4480	151
+       0	*	*	*	*	*	*	10787	0	0	
+
+L 152  4447	4766	*	5309	4671	*	6518	2263	5560	2196	6391	*	5855	6898	5555	6759	4324	2366	6612	3794	152
+       0	*	*	*	*	*	*	10706	0	0	
+
+F 153  *	*	*	*	2700	*	6390	4601	*	2293	1435	6320	*	6610	6786	6469	*	6608	4608	3003	153
+       0	*	*	*	*	*	*	10728	0	0	
+
+V 154  4227	6663	6559	2543	5580	4072	5508	5551	3397	5583	*	6438	6404	5438	3020	2562	5781	3052	*	4746	154
+       0	*	*	*	*	*	*	10688	0	0	
+
+K 155  6566	5364	6269	*	6344	*	6549	2983	1296	2636	6545	*	*	6584	3027	6458	5531	6618	5837	5046	155
+       0	*	*	*	*	*	*	10475	0	0	
+
+N 156  5182	*	3760	3574	4487	*	*	4011	4629	3755	5741	3646	2641	4420	3489	3559	3829	*	6261	5030	156
+       0	*	*	*	*	*	*	10045	0	0	
+
+I 157  *	5984	*	*	5012	4690	*	2564	5884	761	5831	5947	5875	*	*	*	5890	4299	*	5656	157
+       0	*	*	0	*	*	*	9753	0	0	
+
+//
+�HHsearch 1.5
+NAME  c2c32c13af9575e387657a5ea9736806
+FAM   
+FILE  c2c32c13af9575e387657a5ea9736806
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:19:22 2013
+LENG  135 match states, 135 columns in multiple alignment
+FILT  130 out of 509 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  5.2 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCHHHHHHHHHCCCCCCCCCCCHHHHHHHHHHHHHCCCCCCHHHHHHHHHHCCCEE
+EEEECCHHHHHHHCCCEECCCCHHHHHHHHHCCCC
+>ss_conf PSIPRED confidence values
+9865557565798999855564457678888898878856588652157788774476654567458999999999873021142999999986355678
+62347648888751820146320999998647689
+>Consensus
+aRtkxtaxkxxxxkaprkxxxxkxxxxxxxxxxxxxkxxrxrpgtxalrEIrxyQkstxlLIxKlpFxrLVrEIxxxxxxxxrxqxxAlxaLQeAaExxL
+vxlfexaxxxaxHakRvTlxxkDxxlxxxirxxxx
+>c2c32c13af9575e387657a5ea9736806
+ARTKQTARKSTGGKAPRKQLVTKAAKKCAPATGGVKKPHRYRPGTVALREIRRYQKSTELLIRKLPFQRLVREIAQDFKTDLRFQSSAVMALQEASEAYL
+VALFEDTNLCAIHAKRVTIMPKDIQLARRIRGERA
+>gi|290998115|ref|XP_002681626.1| histone H3 [Naegleria gruberi]gi|284095251|gb|EFC48882.1| histone H3 [Naegleria gruberi]
+--------------------------------------EKRKRKQRWLQEIRKYQKSTRNLIPRASLIRLIKQVTAELSEKIpyirqlagegaiRWRKDA
+LAALHSAAEDFLHEFLTLSNYATLHAKRVTLMGRDLKLVQNINREH-
+>gi|309354883|emb|CAP39585.2| hypothetical protein CBG_23442 [Caenorhabditis briggsae AF16]
+ARTKQTARKSTGGKAQESSWPPRLPANRP------QLPEESRSHIVTAQEPSLFVRSD---VTRSPLSSLSAS-CHS--SVLFVRSPRISRLTFASNLPL
+SWLFK------------------------------
+>gi|119175703|ref|XP_001240035.1| predicted protein [Coccidioides immitis RS]
+--------------------------------------QNWKASTCTIKEICHFQSSIKLILLVALFQQLVQEITLSChqEHEYYWQHTAIESLQKAAEV
+ILCALFECKSLLAmaptiilsnigfviamVHHKCVTVNTNNMKLIL-------
+>gi|115388761|ref|XP_001211886.1| predicted protein [Aspergillus terreus NIH2624]gi|114195970|gb|EAU37670.1| predicted protein [Aspergillus terreus NIH2624]
+ARTSQTARKRTGPPRPRNT------TH-------DFTDHSNKTYTVVDPFQRRCP--NPHVITKLSIHLY-------SLGPLQPspeaigqellKSNDII
+DWANARNWWprvdVYSPLDSIEACIEHHRREKTFRK-------------
+>gi|195124333|ref|XP_002006648.1| GI21176 [Drosophila mojavensis]gi|193911716|gb|EDW10583.1| GI21176 [Drosophila mojavensis]
+---------------------------------------PFRRAQKFKREVRLLQRTPNFMIPRISFGRVVREIMLErcdCEPHFRITMGALEALQTATE
+MFLTQRFQDSYMMTMHRQRVTLELRDMALMAFICK---
+>gi|239613301|gb|EEQ90288.1| predicted protein [Ajellomyces dermatitidis ER-3]
+--------------------------------------------CKSLHEICFYQKSENFIFLKIIFTHLVCEIDEK---NHQFQYSILNTIQVTAEFTL
+ITLFKYNIKIITYYSHITLTVRDIQLMINIA----
+>gi|327409929|ref|YP_004347349.1| histone H3-like protein [Lausannevirus]gi|326785103|gb|AEA07237.1| histone H3-like protein [Lausannevirus]
+----------------------------------------------NMQEIRKQQRQTCMIIPKARFRDIAKEIVDRELEGVRLSEKALDLLQLIVESLT
+VRLLEKAVALTLEAQKDRVTGRSIEAIFKI-----
+>gi|308503172|ref|XP_003113770.1| hypothetical protein CRE_26460 [Caenorhabditis remanei]gi|308263729|gb|EFP07682.1| hypothetical protein CRE_26460 [Caenorhabditis remanei]
+--------------------------------------RKQKRQSKIYREIVYEKMSTKFAIPPEDFRDVVDEIMEEEFPDHQIETGAIMALQHESEMML
+TKMMCLASHLADYADRETLRKKDIDFLKF------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+A 1    818	*	*	*	*	4904	*	*	5404	*	*	*	3775	*	*	3068	3172	3787	*	*	1
+       55	4731	*	1812	484	*	*	4637	1044	0	
+
+R 2    *	*	*	5262	*	4250	5459	*	4485	5702	5842	*	5864	*	353	5880	*	*	*	*	2
+       80	*	4215	1585	585	*	*	4795	1095	0	
+
+T 3    *	4878	*	4431	*	5113	*	3537	5561	5955	4140	*	4344	*	4892	3417	905	*	*	*	3
+       0	*	*	*	*	*	0	5156	0	1067	
+
+K 4    4599	*	6015	4123	*	*	*	*	674	5811	*	*	*	4642	*	4745	3436	4303	*	5577	4
+       157	5021	3791	1971	425	550	1658	5152	1019	1067	
+
+Q 5    4185	*	*	3908	*	*	3269	4563	4710	*	3581	*	2875	1555	4355	5105	4640	5966	*	*	5
+       72	6103	4865	0	*	543	1673	5083	1000	1152	
+
+T 6    3274	*	6125	4684	6224	5005	*	4179	5147	4924	*	*	6283	6050	4024	3701	1073	4605	*	*	6
+       138	*	3450	*	*	1390	694	5087	0	1118	
+
+A 7    1033	*	5808	5702	*	*	*	5938	3817	*	5775	*	4026	5644	*	3349	3165	4186	*	5468	7
+       36	5361	*	1585	585	0	*	5215	1000	1278	
+
+R 8    4642	4530	*	*	*	5118	6057	5804	3096	*	*	4142	4324	5045	1300	3762	5854	3608	5514	*	8
+       66	4982	6246	0	*	*	*	5247	1047	0	
+
+K 9    5099	*	*	*	5842	6245	5680	*	1191	5005	5202	*	5753	6116	2533	4660	2872	4559	*	*	9
+       72	4366	*	1865	463	476	1831	5355	1071	1083	
+
+S 10   2748	5912	*	4150	4974	5117	*	6403	4781	*	5965	*	3537	6058	2592	2144	3234	4217	*	*	10
+       26	*	5804	*	*	*	0	5363	0	1000	
+
+T 11   3653	*	*	4727	*	6103	5011	4873	2827	6122	*	*	*	4216	2991	4353	1515	4233	*	5950	11
+       13	*	6755	*	*	*	0	5327	0	1047	
+
+G 12   3958	*	5757	4761	*	1183	*	4805	3692	*	*	6255	4009	4496	4809	3392	4463	5014	*	*	12
+       108	4809	4785	1532	612	*	0	5207	1042	1076	
+
+G 13   4357	5768	*	5626	*	1282	*	*	4002	*	*	4093	3604	6037	5399	3738	3108	5753	4843	6074	13
+       71	5070	5768	1338	727	1989	419	5154	1029	1173	
+
+K 14   4159	*	6195	3900	*	*	4994	*	1258	5304	*	5147	3708	4046	3248	4839	4217	5089	*	*	14
+       51	4859	*	2974	196	1788	493	5208	1072	1184	
+
+A 15   1198	5996	*	*	*	4748	6668	*	4468	4613	6261	5343	3231	5219	4364	3085	4617	4756	*	*	15
+       0	*	*	*	*	*	0	5214	0	1119	
+
+P 16   3975	*	6163	*	6118	6149	6192	5724	4322	*	*	4626	937	3553	4974	3155	6621	6747	*	*	16
+       27	*	5743	3768	110	*	0	5336	1039	1119	
+
+R 17   5629	4029	*	4810	*	6248	*	*	2813	5492	*	*	4702	3956	993	6771	3904	6597	*	6216	17
+       0	*	*	0	*	2300	328	5223	1003	1185	
+
+K 18   6858	*	*	*	*	5635	5803	4413	892	*	*	4177	4606	5993	3167	3975	*	4211	6171	6274	18
+       204	3061	6353	1899	450	*	0	5225	1357	1139	
+
+Q 19   4479	*	*	5300	5997	6364	6278	5863	3420	5330	*	6250	4221	2162	3657	2978	2500	4325	5035	*	19
+       89	*	4066	*	*	3101	179	5273	0	1210	
+
+L 20   4209	*	*	*	6211	6081	6549	3267	4728	1912	4577	*	3713	4339	4721	3075	4687	4674	4208	4527	20
+       19	6238	*	1585	585	1348	720	5258	1000	1360	
+
+V 21   1423	*	*	6540	*	3731	*	3440	4335	5076	*	*	3204	5481	5016	3566	4871	4141	6109	5786	21
+       167	3191	*	1697	532	2847	216	5284	1320	1203	
+
+T 22   3052	6173	*	6266	*	3721	6301	6710	3299	5092	*	*	3183	6361	4773	1798	2867	5322	*	6040	22
+       20	*	6172	*	*	*	0	5344	0	1169	
+
+K 23   4549	*	5649	6340	6349	5068	6784	6398	1113	5462	*	4351	4070	5741	3514	5590	3494	4784	5944	*	23
+       93	4001	*	2772	228	*	0	5285	1190	1207	
+
+A 24   1882	5537	4207	4865	*	4407	*	*	3382	4551	5933	6338	5322	5563	4096	2291	5019	3955	*	*	24
+       222	4348	3417	2172	362	3675	118	5280	1104	1286	
+
+A 25   2627	*	5826	5129	4217	5642	5363	4517	4364	3347	*	4897	2844	6393	3228	3095	4291	4518	*	*	25
+       118	4356	5062	1048	954	1806	486	5263	1074	1551	
+
+K 26   4707	*	6465	5129	*	3047	4661	*	2857	4711	*	6281	4723	5679	1688	3252	3779	5227	*	*	26
+       139	5802	3763	3219	164	3875	102	5368	1054	1469	
+
+K 27   4345	*	5278	*	*	3150	3451	6114	1609	*	*	4137	3998	4722	3487	4392	4180	5089	*	*	27
+       194	6356	3140	1585	585	1513	622	5388	1000	1676	
+
+C 28   3880	5452	*	*	6092	3604	5547	*	4407	6628	5829	4901	4643	4619	2538	1811	3425	4273	*	*	28
+       18	*	6320	*	*	*	0	5030	0	1776	
+
+A 29   2206	*	4440	5317	*	3514	4964	6132	4461	6492	5112	*	2305	5358	4303	3301	6488	3283	*	*	29
+       362	2935	3457	0	*	*	0	5027	1314	1809	
+
+P 30   5220	*	6002	4451	*	2672	*	5281	3795	4080	*	4730	1626	4103	4696	4365	3943	6189	*	6350	30
+       59	5165	6350	2611	258	4037	91	4606	1075	1983	
+
+A 31   2703	5271	6681	5561	*	4070	6256	5300	4568	4432	6337	4566	3454	6029	4680	2067	2980	5270	*	6431	31
+       228	3343	4384	1149	865	3282	157	4545	1315	1956	
+
+T 32   3303	5644	*	5400	5353	*	6125	4721	3595	5447	*	5269	3597	4107	3929	3137	1887	5045	*	5271	32
+       28	*	5706	*	*	3201	166	4633	0	2003	
+
+G 33   4060	*	4204	4827	*	1712	5502	6450	3393	*	*	6443	3904	3874	3811	3146	4571	4514	*	*	33
+       62	6033	5233	3322	152	2307	326	4646	1016	1959	
+
+G 34   3756	*	6578	5626	*	2246	5981	5397	3031	5478	*	4238	3619	2833	4310	3310	4483	6528	*	5744	34
+       34	5420	*	4356	72	1363	710	4632	1060	1859	
+
+V 35   5246	*	3642	6028	3901	*	4979	3881	3421	4968	6513	6699	2975	3340	6724	4505	3324	2423	*	*	35
+       78	4254	*	2724	237	1243	792	5099	1148	1519	
+
+K 36   4861	*	6794	5045	3362	5839	6882	4847	1912	6747	*	5564	3691	3783	2110	4882	5110	5177	*	*	36
+       110	5061	4517	1150	864	2431	296	5274	1121	1286	
+
+K 37   4978	*	5672	6994	*	6080	4691	*	1074	3602	*	6420	4765	4614	2737	*	4094	5762	*	6182	37
+       28	6519	6881	3724	113	769	1275	5201	1107	1381	
+
+P 38   6346	*	3619	*	*	5160	5183	6273	2228	6674	5972	5634	1674	4545	3098	4044	4752	*	*	6992	38
+       85	4436	6524	512	1743	802	1229	5172	1073	1178	
+
+H 39   *	*	*	4624	4926	6407	1755	*	3361	7173	*	5689	5528	4388	1769	5424	4267	*	*	4139	39
+       158	5127	3737	1538	609	707	1368	5365	1067	1087	
+
+R 40   3967	*	*	4318	6293	*	7066	*	2986	*	*	4888	4605	*	824	4445	4990	5493	*	*	40
+       33	5998	7104	0	*	623	1512	5286	1000	1297	
+
+Y 41   4110	6762	*	6832	2067	5021	4492	5475	5654	*	*	3826	5824	4339	3894	4955	5722	4728	3716	2337	41
+       45	*	5019	*	*	563	1630	5246	0	1113	
+
+R 42   6253	5244	4994	*	6164	*	4947	5531	1615	*	*	5452	5560	*	1133	6782	5296	*	*	*	42
+       34	*	5444	2807	222	1394	691	5187	1000	1120	
+
+P 43   4061	*	*	*	*	*	5492	6748	4792	5883	*	6336	818	6942	3562	3265	4459	6252	5604	*	43
+       76	4897	5834	588	1580	1536	610	5384	1179	1159	
+
+G 44   4884	*	*	5729	6802	809	4815	*	4330	6556	6243	6656	*	5010	3734	4460	*	5840	*	3652	44
+       88	4074	*	1605	575	*	0	5406	1178	1140	
+
+T 45   3899	5650	4586	5577	7573	6316	7240	4632	4932	4898	4969	4964	4537	3758	*	3286	1282	6050	6685	*	45
+       14	*	6737	*	*	660	1446	5258	0	1231	
+
+V 46   5275	5620	*	6280	*	6378	7366	*	2671	2807	4824	4553	*	4768	3387	*	5158	1441	5922	*	46
+       25	5857	*	1219	810	1291	758	5562	1055	1091	
+
+A 47   1005	7092	*	6758	6585	*	5930	4982	*	4689	5943	5012	*	*	6028	4615	4181	2245	5759	*	47
+       13	*	6758	*	*	1460	652	5558	0	1036	
+
+L 48   4623	*	4898	5069	6031	5647	6624	3743	6683	682	5587	7161	6744	6810	5718	6022	*	5184	6202	5540	48
+       28	*	5711	5170	41	0	*	5562	1007	1048	
+
+R 49   6036	4785	6772	6234	*	5458	4046	7071	2249	5722	5645	7546	4283	3302	1351	6040	*	*	5933	7878	49
+       22	*	6036	*	*	*	0	5547	0	1056	
+
+E 50   *	*	5232	365	5127	*	*	*	4230	*	7324	*	4789	5294	*	4696	*	6836	*	*	50
+       18	*	6307	1000	1000	809	1220	5452	1056	1131	
+
+I 51   5723	*	*	*	6204	*	*	349	6604	6575	5447	*	5515	5326	*	5604	6031	4151	*	*	51
+       0	*	*	*	*	*	0	5472	0	1091	
+
+R 52   5170	5242	*	6651	*	4802	4381	6824	3380	6757	6673	5948	*	4867	763	5515	6528	5571	5604	6150	52
+       28	*	5723	*	*	*	0	5472	0	1091	
+
+R 53   5171	6645	*	5825	4581	*	3581	*	1952	4333	6979	4638	5819	4117	2216	3927	7679	5972	*	3540	53
+       45	*	5039	*	*	*	0	5431	0	1190	
+
+Y 54   *	5037	6502	5533	2979	*	4719	5525	*	2384	4774	*	*	4290	*	*	*	*	*	1086	54
+       68	5596	5306	900	1108	*	0	5374	1073	1310	
+
+Q 55   *	*	*	5739	*	*	*	*	5453	*	5823	6411	4669	286	4474	*	*	5333	*	*	55
+       58	*	4669	*	*	*	0	5266	0	1432	
+
+K 56   4151	*	*	5135	*	6607	6649	*	1322	6352	4734	5052	*	4273	1980	3551	5349	*	*	*	56
+       0	*	*	*	*	2266	336	5124	0	1529	
+
+S 57   6012	*	5528	*	*	4261	4854	6842	5725	*	6726	4411	*	5946	6322	681	2843	*	*	*	57
+       15	6638	*	3000	193	255	2627	5193	1000	1413	
+
+T 58   6056	7665	4839	4353	6885	6349	*	5199	*	*	6313	4202	4131	6644	*	5167	779	3408	6737	*	58
+       30	*	5583	*	*	*	0	5552	0	1031	
+
+E 59   7907	4979	2653	2171	7036	3827	4818	*	3632	*	6122	2599	5301	3407	6192	5497	5785	5470	*	6228	59
+       0	*	*	*	*	1183	838	5436	0	1127	
+
+L 60   5047	5924	5681	*	3093	6068	4877	6349	6712	812	5089	5981	5393	*	4727	5772	4859	5905	*	*	60
+       0	*	*	*	*	*	0	5531	0	1052	
+
+L 61   4375	5296	*	6186	4558	*	*	2662	*	698	5846	*	*	*	*	5571	*	4127	*	*	61
+       0	*	*	*	*	0	*	5531	0	1052	
+
+I 62   *	6499	*	*	4122	*	6008	561	*	2859	4514	*	6172	7259	*	*	*	4791	*	*	62
+       0	*	*	*	*	*	*	5704	0	0	
+
+R 63   5470	4621	6437	5462	*	*	5626	*	5582	4329	*	*	1305	4780	1948	4856	4478	4975	*	*	63
+       11	*	7053	*	*	*	*	5704	0	0	
+
+K 64   6516	8547	*	*	6720	*	6081	6551	674	6794	*	6172	5609	5132	2166	6306	*	5866	*	*	64
+       0	*	*	*	*	*	0	5694	0	1004	
+
+L 65   2286	*	*	4414	6172	5309	*	4012	6201	1153	5213	6639	*	5969	4689	3877	5798	7376	*	*	65
+       17	6410	*	1000	1000	*	0	5694	1010	1004	
+
+P 66   4954	4740	5609	6037	*	6498	*	4849	*	4825	*	7715	849	6308	4476	2674	6102	5336	*	*	66
+       0	*	*	*	*	*	0	5694	0	1004	
+
+F 67   6410	*	*	*	200	*	*	4577	*	3984	6308	*	*	*	*	*	*	*	*	*	67
+       0	*	*	*	*	*	0	5694	0	1004	
+
+Q 68   3144	5643	6846	5082	6229	4685	3869	4502	4958	7321	5476	6306	6410	1797	3730	2682	4903	5778	6975	*	68
+       9	7376	*	1585	585	*	0	5694	1000	1004	
+
+R 69   4937	6442	4120	*	*	5195	4544	*	4626	3720	*	*	*	6599	681	4298	6084	*	*	6366	69
+       0	*	*	*	*	*	0	5694	0	1004	
+
+L 70   *	5357	7376	7331	4792	5324	7113	4447	*	664	5580	*	*	*	*	*	7729	3078	*	3752	70
+       91	*	4033	*	*	*	0	5694	0	1004	
+
+V 71   3408	6026	*	*	*	*	*	3335	*	5015	7759	*	5249	*	*	4399	*	552	*	*	71
+       38	5249	*	2000	415	*	0	5391	1049	1278	
+
+R 72   5259	4707	5537	*	*	*	7271	*	2339	6125	*	*	*	3803	815	6980	*	5553	5249	*	72
+       18	*	6312	*	*	2779	227	5391	0	1278	
+
+E 73   6249	*	4794	459	*	5685	*	*	3890	*	*	7261	*	4878	4588	4204	*	*	*	*	73
+       37	*	5290	*	*	2625	255	5323	0	1284	
+
+I 74   *	6764	*	*	5976	*	*	554	*	3261	*	*	*	*	*	4773	4665	3141	*	*	74
+       23	7562	6615	1585	585	1966	426	5162	1000	1325	
+
+A 75   2419	4052	4455	6152	*	6053	8671	5188	*	3246	3640	7592	4594	5653	*	3445	2724	2867	5989	*	75
+       51	7276	5136	0	*	*	0	5323	1000	1274	
+
+Q 76   4312	5508	4321	3484	*	4476	3929	5258	5096	3730	4877	4216	5733	1850	4056	5049	5022	5296	*	5930	76
+       57	6462	5180	2000	415	*	0	5232	1001	1383	
+
+D 77   4373	*	2831	1964	6086	5814	7522	5213	2957	5243	7527	5384	6546	4073	4515	3012	4421	6223	*	7059	77
+       159	4692	3932	1177	842	388	2083	5209	1117	1511	
+
+F 78   6052	3787	*	3770	2082	7381	4890	3168	5788	2944	5825	4381	*	7328	*	4066	7425	4558	5381	3319	78
+       321	2325	*	1046	956	3506	133	5319	1883	1328	
+
+K 79   4868	6703	5635	4263	5570	3152	5169	4880	2394	3247	6616	4294	*	4909	3693	3010	4080	6849	6713	5656	79
+       232	2753	*	1016	984	1303	750	5340	1648	1331	
+
+T 80   4345	7581	4092	3489	*	2964	3545	5367	5249	4639	*	4878	3231	5636	4881	3032	2645	5904	*	*	80
+       14	6673	*	1144	869	1236	797	5453	1029	1223	
+
+D 81   4955	*	2069	2811	*	4310	5170	6466	3755	*	5865	3008	3615	4935	6040	4355	3941	4697	*	*	81
+       168	3561	5322	1115	893	969	1032	5513	1658	1111	
+
+L 82   *	4810	6738	*	2643	*	4345	3314	*	1820	3871	*	4730	*	*	7165	6452	3279	7716	2946	82
+       64	4532	*	1228	803	678	1415	5507	1303	1157	
+
+R 83   7150	6916	5730	5649	5615	6047	4264	6940	4037	*	*	7862	*	3601	717	5169	*	5026	5863	5757	83
+       0	*	*	*	*	*	0	5499	0	1032	
+
+F 84   *	*	*	*	1265	*	*	2344	*	6008	5717	*	4528	*	*	5430	*	4449	2293	4803	84
+       94	3982	*	3361	148	0	*	5499	1232	1032	
+
+Q 85   4672	*	6365	4318	*	6912	*	*	4326	*	*	6113	*	1367	2592	4127	2354	*	*	5673	85
+       0	*	*	*	*	*	*	5543	0	0	
+
+S 86   2441	6924	5571	4521	*	4612	4851	5964	3469	5491	6918	5859	3648	7597	4283	2092	4026	4725	*	4527	86
+       0	*	*	*	*	*	*	5543	0	0	
+
+S 87   3339	*	2802	2758	*	3634	5731	6031	5077	6078	5939	4576	4637	3603	4689	2476	4600	7256	*	8024	87
+       0	*	*	*	*	*	*	5543	0	0	
+
+A 88   587	4865	4642	*	*	7201	*	6252	*	*	7005	*	*	*	4583	3288	4921	4185	*	*	88
+       13	6773	*	3907	100	*	*	5543	1000	0	
+
+V 89   *	*	*	*	5336	*	5963	1506	*	1066	4740	6366	*	*	*	5459	*	4129	*	*	89
+       0	*	*	*	*	*	*	5543	0	0	
+
+M 90   4123	5758	3283	2418	5661	3799	*	3657	5197	2584	4648	4457	6178	4711	*	5275	5591	4597	4689	7597	90
+       0	*	*	*	*	*	*	5543	0	0	
+
+A 91   898	4243	4933	*	*	4523	5963	4680	*	4042	4454	*	4774	*	5720	4311	5201	4654	*	*	91
+       0	*	*	*	*	*	*	5543	0	0	
+
+L 92   5260	5459	*	*	5632	*	*	3222	*	518	4909	*	*	*	*	5963	*	6132	4009	*	92
+       0	*	*	*	*	*	*	5543	0	0	
+
+Q 93   5395	*	*	6158	*	4705	4102	*	4905	6383	*	*	*	420	4920	5607	5707	*	*	*	93
+       0	*	*	*	*	*	*	5569	0	0	
+
+E 94   6966	6516	6408	1103	4889	5037	5664	*	3890	5289	*	4009	*	5719	5926	4748	3686	3507	*	5240	94
+       0	*	*	*	*	*	*	5569	0	0	
+
+A 95   640	6341	*	5663	*	*	*	3743	*	5004	7124	*	5615	*	5459	4548	3754	4231	*	*	95
+       0	*	*	*	*	*	*	5567	0	0	
+
+S 96   1448	6247	*	*	5088	*	*	*	*	5597	*	*	*	*	3651	2193	2590	3241	*	*	96
+       0	*	*	*	*	*	*	5567	0	0	
+
+E 97   *	*	*	243	*	*	*	*	6058	*	*	3719	5703	*	4481	*	*	*	*	*	97
+       0	*	*	*	*	*	*	5450	0	0	
+
+A 98   1623	5968	3340	5036	5268	6178	5422	7111	*	5809	3650	5711	4251	5655	*	3306	4486	3979	5493	4667	98
+       66	5566	5401	0	*	*	*	5450	1049	0	
+
+Y 99   *	6050	*	5726	2147	*	4510	4261	*	4342	3746	*	5806	6390	*	*	4905	4749	4077	1471	99
+       88	4077	*	2000	415	*	0	5427	1232	1069	
+
+L 100  5768	*	*	*	*	*	*	3084	*	621	4284	*	6238	*	*	6658	4841	3633	5420	*	100
+       0	*	*	*	*	*	0	5427	0	1069	
+
+V 101  5472	4557	*	*	5670	*	6891	3388	*	6114	*	*	*	7612	*	5095	2432	952	*	4048	101
+       29	5670	*	0	*	0	*	5367	1032	1069	
+
+A 102  4136	4584	4106	4251	*	3233	4062	7207	4149	5105	7315	4261	*	2898	3910	2813	3146	*	5788	*	102
+       0	*	*	*	*	*	*	5415	0	0	
+
+L 103  *	*	*	4631	3879	5720	6512	4326	*	847	4100	*	4618	5893	4917	6292	7838	4256	5346	6259	103
+       32	*	5511	*	*	*	*	5411	0	0	
+
+F 104  *	*	*	*	709	*	*	*	*	2178	3076	*	*	*	*	5549	*	*	*	5201	104
+       0	*	*	*	*	*	0	5327	0	1049	
+
+E 105  4340	5619	4335	887	*	3991	*	*	3648	*	7301	6959	8356	4277	4631	4203	5156	7452	*	*	105
+       0	*	*	*	*	0	*	5315	0	1049	
+
+D 106  5044	4415	1219	4945	*	7356	5058	6880	4017	3636	5187	4659	*	5604	5173	3966	5130	6449	*	4194	106
+       0	*	*	*	*	*	*	5314	0	0	
+
+T 107  1414	4181	6236	*	*	4880	*	4532	5201	5056	*	6187	*	*	*	2181	2766	4621	*	*	107
+       0	*	*	*	*	*	*	5314	0	0	
+
+N 108  *	*	6330	3977	*	5468	7192	4851	5589	3653	5849	1662	5449	3644	6636	3590	5496	3994	*	2782	108
+       0	*	*	*	*	*	*	5314	0	0	
+
+L 109  3588	*	*	4197	*	*	5611	3804	3854	1283	4145	6911	5279	5776	3789	4858	4762	5553	7095	6790	109
+       57	5511	5914	0	*	*	*	5318	1032	0	
+
+C 110  3652	1103	*	*	6146	5969	*	3893	*	2449	4967	7023	*	*	*	4873	4988	4021	*	7048	110
+       0	*	*	*	*	*	0	5288	0	1023	
+
+A 111  905	5029	*	*	*	*	*	3495	*	*	4269	*	*	*	*	3433	2495	5339	*	*	111
+       51	4859	*	3008	192	*	0	5288	1080	1023	
+
+I 112  4238	*	5597	3837	5497	*	5186	2094	4916	2406	4916	4760	5382	4743	4878	5226	3703	4750	*	4483	112
+       0	*	*	*	*	*	0	5288	0	1023	
+
+H 113  6525	*	*	5666	4910	*	406	*	6778	*	6021	7087	*	*	4524	4710	*	6299	*	4182	113
+       0	*	*	*	*	*	0	5288	0	1023	
+
+A 114  1011	4313	6299	*	*	2982	3705	*	*	*	*	*	*	6565	3513	3879	4370	*	*	5433	114
+       0	*	*	*	*	*	0	5288	0	1023	
+
+K 115  6504	*	5208	*	*	3762	4688	6517	1134	*	*	3544	5482	4192	2578	4248	*	*	*	*	115
+       0	*	*	*	*	*	0	5174	0	1023	
+
+R 116  *	5223	*	*	*	*	5420	6517	5639	6740	*	*	*	5798	231	4652	*	*	*	*	116
+       33	5482	*	1585	585	*	0	5174	1032	1023	
+
+V 117  5030	6661	4949	3009	*	*	*	3081	4610	4215	5607	*	*	*	*	*	5198	883	*	*	117
+       0	*	*	*	*	*	0	5174	0	1023	
+
+T 118  *	*	*	*	*	*	*	5148	3612	5103	6779	*	5734	*	4303	*	354	*	*	*	118
+       0	*	*	*	*	*	0	5123	0	1023	
+
+I 119  5580	*	*	*	*	*	*	1490	*	1247	*	*	*	*	*	*	4882	2573	*	*	119
+       0	*	*	*	*	*	0	5123	0	1023	
+
+M 120  6475	*	6335	4083	3208	*	7450	6823	3850	5367	1608	4066	*	3926	4470	6018	2578	*	*	5686	120
+       0	*	*	*	*	0	*	5123	0	1023	
+
+P 121  3389	*	5189	4944	*	5126	*	6075	3747	4303	*	7514	1794	5261	3468	3920	4205	2781	*	*	121
+       22	6075	*	4322	74	*	*	5164	1014	0	
+
+K 122  6466	*	4162	4344	*	6969	*	*	1162	*	*	6259	6366	6064	1806	5368	3958	6156	*	*	122
+       0	*	*	*	*	*	*	5125	0	0	
+
+D 123  *	*	135	*	*	*	5495	*	*	*	*	4402	*	*	*	5637	*	*	*	*	123
+       0	*	*	*	*	*	*	4826	0	0	
+
+I 124  6576	*	*	*	5216	*	*	1509	*	2939	1623	*	*	*	*	6713	5063	3180	7271	*	124
+       0	*	*	*	*	*	*	4826	0	0	
+
+Q 125  3966	6096	5101	3623	*	*	5455	5350	2479	4242	*	4887	5495	1512	3285	*	*	*	7169	6011	125
+       0	*	*	*	*	*	*	4826	0	0	
+
+L 126  3835	*	6008	*	4097	*	*	5107	*	407	6539	*	*	*	*	5495	5134	6495	*	*	126
+       10	7186	*	1000	1000	*	*	4826	1000	0	
+
+A 127  1352	5979	*	*	*	*	6435	3904	*	5006	3650	*	*	*	*	5926	5247	1756	4757	5178	127
+       0	*	*	*	*	*	*	4826	0	0	
+
+R 128  3839	*	7759	6495	4473	*	*	4901	3562	2547	3724	6809	5495	4266	1691	4780	5395	4755	*	6096	128
+       0	*	*	*	*	*	*	4826	0	0	
+
+R 129  6507	6998	6488	5165	3887	4197	5122	6254	3207	4174	5270	4525	*	5307	1060	6295	*	*	*	5177	129
+       0	*	*	*	*	*	*	4758	0	0	
+
+I 130  5941	6419	*	*	4320	*	*	963	*	1515	5143	*	*	*	*	*	*	5597	*	6608	130
+       0	*	*	*	*	*	*	4679	0	0	
+
+R 131  4623	5996	5519	*	5562	4170	5328	*	3934	4710	5981	6114	*	5566	716	4144	*	*	*	*	131
+       34	7164	5918	2000	415	*	*	4374	1000	0	
+
+G 132  5989	*	4532	4783	*	762	6418	*	3982	5449	*	4176	*	4386	3687	5997	*	*	*	5582	132
+       31	6416	6683	1000	1000	0	*	4010	1000	1002	
+
+E 133  5034	*	2844	1650	*	6084	5241	3230	5101	3779	5890	4628	7255	4583	3172	*	6604	6085	*	5623	133
+       0	*	*	0	*	*	0	3957	1000	1000	
+
+R 134  *	*	4455	3690	5261	3608	4195	4948	4936	4223	6030	3997	4786	3356	2283	4001	6319	3672	6775	5996	134
+       0	*	*	*	*	0	*	3609	0	1000	
+
+A 135  2376	*	3808	4547	3985	3656	5433	2627	*	4869	4986	4912	5308	4164	5265	4754	3845	*	*	4240	135
+       0	*	*	0	*	*	*	3656	0	0	
+
+//
+�HHsearch 1.5
+NAME  c5753ae3727f4c7fc5433d2395780f60
+FAM   
+FILE  c5753ae3727f4c7fc5433d2395780f60
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:38:21 2013
+LENG  115 match states, 115 columns in multiple alignment
+FILT  131 out of 1126 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  8.7 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCEEEEEECCCCCHHHHHHHHHHHHHHHHHHCCCCCEEEEEEECCCCEEECCCCCCEEEEEEEEEECCCHHHHHHHHHHHHHHHHHHHCCCCCCEEEEEE
+ECCHHHEEECCEECC
+>ss_conf PSIPRED confidence values
+9889999758888789999999999999997939165999998787889689899659999999708999999999999999999986939210999999
+989899478889886
+>Consensus
+MPxixixtnxxxxxxxxxlxxxxxxxxxxxlxkpxxxixvxxxxxxxxxxxgxxxpxxxvxixxxxxxxxexxxxxxxxixxxlxxxlgixxxxixixxx
+exxxxxwgxxGxtxx
+>c5753ae3727f4c7fc5433d2395780f60
+MPMFIVNTNVPRASVPDGFLSELTQQLAQATGKPPQYIAVHVVPDQLMAFGGSSEPCALCSLHSIGKIGGAQNRSYSKLLCGLLAERLRISPDRVYINYY
+DMNAASVGWNNSTFA
+>gi|224543411|ref|ZP_03683950.1| hypothetical protein CATMIT_02614 [Catenibacterium mitsuokai DSM 15897]gi|224523666|gb|EEF92771.1| hypothetical protein CATMIT_02614 [Catenibacterium mitsuokai DSM 15897]
+MPYLALRTNKTLTLSQEvELKTTVGKLITMFPGESVDTFMIHIEDNQLIYFKGQEANCMMITLYLKGHYTDEQKEQFVAELTKALVKITKIPASNQYVTI
+SEFE--KWGHGGVYE-
+>gi|291545105|emb|CBL18214.1| hypothetical protein RUM_22010 [Ruminococcus sp. 18P13]
+MPICQLKTNYPMDAAArEALLLDTATTAAELLNKPLAAVMAMLD-PCDMRMNGTDDTVFFAEFRYV--LPPEfsKekqafLDRFADRMLALFRQHTGVDP
+HRIYMQFTEMAREsAWKY------
+>gi|55380103|ref|YP_137952.1| tautomerase [Haloarcula marismortui ATCC 43049]gi|55232828|gb|AAV48246.1| tautomerase [Haloarcula marismortui ATCC 43049]
+MPLLQFDIARTLSdAAKTSLAERVTEFYTTEMATTAGHVAVTIRErdPTEMHLGRaVDGPLLFLDAEIRRGRSIDRKRAFALATMEYAAEELDIPDENMK
+VVFTEHPGSAM--------
+>gi|194290744|ref|YP_002006651.1| hypothetical protein RALTA_A2657 [Cupriavidus taiwanensis LMG 19424]gi|193224579|emb|CAQ70590.1| Conserved hypothetical protein; Putative 4-oxalocrotonate tautomerase COG1942 [Cupriavidus taiwanensis LMG 19424]
+MPHIVLHLAGQPDADlTRRSARAIADLTERVLGKQRDVIAVTVQYIphDSWIIADAPlseqgRNAFHLDISVTDETNTKaEKAQFIAAVFEAMSGLLGNL
+HPVSYVHVIDARAAAYGYGGRT--
+>gi|226953011|ref|ZP_03823475.1| transglutaminase-like protein [Acinetobacter sp. ATCC 27244]gi|226836240|gb|EEH68623.1| transglutaminase-like protein [Acinetobacter sp. ATCC 27244]
+MSQIKIYALNQtISQFRPRLSEAIHQALVTSLAYPIEKKFQRFIpmEPENFVYPdDRSDHYVIIEISMFEGRSIEAKQKLIQTIFSNIQNLCDISPQDIE
+ITIFETPKNHWGIRGKN--
+>gi|284042957|ref|YP_003393297.1| 4-oxalocrotonate tautomerase [Conexibacter woesei DSM 14684]gi|283947178|gb|ADB49922.1| 4-oxalocrotonate tautomerase [Conexibacter woesei DSM 14684]
+MPVMDVTYPVGaLTDAArATLVEELTTVLLRAERAPDteffrnvTWVYLHELPGEAVLSAGRpvTAPTFRVDVTVpAGALSDRRKQELVGEATRRVLDAA
+GLTQEhalRVMVLIRDVPEGNWGAAGTVI-
+>gi|322437161|ref|YP_004219373.1| 4-oxalocrotonate tautomerase [Acidobacterium sp. MP5ACTX9]gi|321164888|gb|ADW70593.1| 4-oxalocrotonate tautomerase [Acidobacterium sp. MP5ACTX9]
+MPFARIDLAKGKTPEyRATVADVVYDGIVNVLKAPEGdrFMIIGEHAPDNFVFDPnflniKrTPDLIILQVTStVG-NTKEQKLAFFRHMADELNRRLNV
+RREDVFISLVFVDRDDWSFGN----
+>gi|71282624|ref|YP_270060.1| hypothetical protein CPS_3384 [Colwellia psychrerythraea 34H]gi|71148364|gb|AAZ28837.1| hypothetical protein CPS_3384 [Colwellia psychrerythraea 34H]
+-----------------EAVEKITHSMLKHHGLLGNTVMtpnitahVSVLPKNSTFSGGEEFSGVWMEWKvpSFAFASRDIQLAHFADATEIIRALSggK
+QPIEHIYSNVIHTVDGSWNFNGIAM-
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	8472	0	0	
+
+P 2    5766	*	*	*	*	*	*	*	*	*	*	*	140	5490	*	4738	*	6141	*	*	2
+       19	*	6287	*	*	*	*	8463	0	0	
+
+M 3    *	4383	*	6533	2498	*	4796	2654	6189	2554	4291	5274	*	5932	6414	5878	3940	3082	*	3643	3
+       0	*	*	*	*	0	*	8483	0	1025	
+
+F 4    3250	4349	*	*	5692	*	*	1655	*	2145	6302	*	*	*	*	*	5319	2105	*	6310	4
+       0	*	*	*	*	*	*	8506	0	0	
+
+I 5    5041	*	4888	3317	*	*	4089	4100	3566	4369	4959	3103	*	3272	2961	4196	3330	4606	*	6625	5
+       0	*	*	*	*	*	*	8506	0	0	
+
+V 6    5027	5575	*	*	3422	*	*	1419	*	2365	4974	*	*	*	*	6551	4819	2259	*	*	6
+       0	*	*	*	*	*	*	8506	0	0	
+
+N 7    5148	*	3033	3265	4335	*	3536	4934	3197	6209	*	5716	*	3575	5639	3344	3398	4006	*	3719	7
+       0	*	*	*	*	*	*	8506	0	0	
+
+T 8    4428	6221	*	6262	*	4642	6062	4027	*	2577	6399	*	*	*	*	4389	1278	2657	*	6302	8
+       54	4778	*	0	*	*	*	8506	1316	0	
+
+N 9    4688	*	6456	5070	*	5697	*	5371	5655	4028	*	1147	3356	4831	4228	3836	4414	5014	*	6652	9
+       0	*	*	*	*	*	*	8506	0	0	
+
+V 10   4512	*	*	3678	6435	4421	4221	4883	3483	3036	6583	6016	6399	3795	4756	4473	4186	1924	*	6551	10
+       140	6823	3584	0	*	*	*	8506	1017	0	
+
+P 11   4480	*	3808	5133	6524	2738	*	4753	2799	*	*	4071	2880	3471	4433	2836	4999	6555	*	*	11
+       383	2268	5309	352	2207	0	*	8604	3619	1797	
+
+R 12   2920	*	5146	5559	4452	6442	4793	3290	3902	2754	4637	6712	4243	*	3547	4065	4071	4002	6180	5370	12
+       71	6506	4762	0	*	925	1079	8443	1030	1225	
+
+A 13   3439	6412	2927	4246	*	4314	*	*	6655	5602	*	4921	3583	5507	5547	2125	2229	5692	*	6742	13
+       45	5018	*	0	*	1276	768	8463	1286	1570	
+
+S 14   3166	*	2357	3394	*	*	*	*	3469	5077	*	*	3615	3317	3201	3765	5386	3471	*	*	14
+       31	*	5568	*	*	0	*	8467	0	1287	
+
+V 15   3280	6448	2816	1947	4261	*	*	3838	5028	4772	*	6508	6063	4768	4750	4427	5092	3067	*	*	15
+       379	2195	6282	0	*	0	*	8489	3323	1187	
+
+P 16   3941	*	4623	3618	*	5473	*	5546	2608	4997	5322	5024	2605	3001	4111	4665	3476	4596	*	*	16
+       228	2773	*	0	*	0	*	8496	2560	1000	
+
+D 17   3128	*	2968	3073	6592	*	6265	6639	2255	5011	*	4510	5472	3402	3768	4035	4821	4863	*	*	17
+       212	2871	*	0	*	*	*	8518	2615	0	
+
+G 18   3080	*	3427	2577	*	3534	6489	5084	3236	*	*	4006	6652	3872	4053	3539	3303	*	*	*	18
+       0	*	*	*	*	*	*	8548	0	0	
+
+F 19   5022	*	*	*	1866	*	*	2888	*	1256	5580	*	*	*	*	6201	*	3401	6392	*	19
+       0	*	*	*	*	*	*	8548	0	0	
+
+L 20   2607	6648	6488	4260	4710	5054	5570	3385	4359	2146	4062	5020	*	5568	5238	4065	*	3254	*	*	20
+       0	*	*	*	*	*	*	8551	0	0	
+
+S 21   4000	*	2965	2940	*	6488	5881	6663	2562	6541	6460	6141	6525	4056	2963	3575	3607	3830	*	*	21
+       0	*	*	*	*	*	*	8551	0	0	
+
+E 22   2858	7064	3599	2153	*	3476	*	5495	3357	4923	*	4871	*	5174	3328	3834	4868	5577	5807	*	22
+       0	*	*	*	*	*	*	8551	0	0	
+
+L 23   3221	6484	*	*	3675	*	*	2268	*	1580	*	*	*	*	*	5129	4036	2646	*	6384	23
+       0	*	*	*	*	*	*	8551	0	0	
+
+T 24   3334	5464	*	5350	6326	4104	3311	6636	6141	6668	6602	6511	*	*	*	1905	1876	5618	*	3895	24
+       13	*	6753	*	*	*	*	8551	0	0	
+
+Q 25   3850	6415	3024	2188	6699	6347	4638	7274	3285	5859	6378	3804	*	3537	3255	4140	5635	5979	*	5572	25
+       0	*	*	*	*	0	*	8547	0	1022	
+
+Q 26   1627	4385	*	5740	4390	5582	5492	3529	6082	2368	5778	*	*	6827	5690	6619	5798	2846	*	6619	26
+       0	*	*	*	*	*	*	8551	0	0	
+
+L 27   3546	5460	*	*	5041	*	*	2679	*	1627	3267	*	*	*	*	6757	4298	2408	*	5108	27
+       17	6384	*	0	*	*	*	8551	1026	0	
+
+A 28   1850	4206	*	4947	*	4755	5764	4307	6136	4088	*	6385	6705	*	4190	2191	5137	3138	*	5664	28
+       0	*	*	*	*	0	*	8541	0	1026	
+
+Q 29   3993	*	3223	1705	6691	6497	6489	4717	3077	4791	6727	5654	*	3951	3895	4595	3549	6524	*	*	29
+       0	*	*	*	*	*	*	8551	0	0	
+
+A 30   2686	6110	5728	3713	6521	6248	6597	2884	6081	3461	5776	4725	*	*	5031	3937	3474	2352	5522	*	30
+       0	*	*	*	*	*	*	8551	0	0	
+
+T 31   5709	6848	*	4700	3037	*	6717	3871	*	1284	2892	*	4402	*	*	6525	3940	6141	*	4289	31
+       0	*	*	*	*	*	*	8551	0	0	
+
+G 32   4125	6373	3429	4087	*	1426	4982	*	3255	*	*	3263	5828	3689	5578	5559	5781	6559	*	*	32
+       0	*	*	*	*	*	*	8551	0	0	
+
+K 33   3749	6413	5828	*	6511	*	*	3932	1195	5060	4381	6539	*	*	3714	5516	4959	2747	*	6035	33
+       10	*	7227	*	*	*	*	8551	0	0	
+
+P 34   6501	*	3943	4538	*	4976	*	*	5759	*	*	5030	714	6238	4702	3250	4898	*	*	*	34
+       0	*	*	*	*	*	0	8653	0	1000	
+
+P 35   3728	*	4291	1649	*	5032	*	4087	3418	4749	4310	5924	3313	4018	5289	4632	5149	6475	*	*	35
+       54	4774	*	2807	222	0	*	8653	1350	1000	
+
+Q 36   3972	6164	2501	2393	*	4305	5916	5438	3601	6869	6539	3713	5806	5719	4269	3010	3911	*	7035	*	36
+       120	3773	7300	1000	1000	*	*	8551	1811	0	
+
+Y 37   4359	6613	3718	4973	3428	4918	4304	5695	3503	4040	*	5124	*	5978	3295	3880	6691	4174	3932	2803	37
+       0	*	*	*	*	*	0	8559	0	1043	
+
+I 38   5482	5536	*	*	4028	*	5550	1753	6034	3617	4499	6246	*	3679	5489	6110	4504	1923	*	*	38
+       0	*	*	*	*	*	0	8559	0	1043	
+
+A 39   3679	4684	6407	6394	3050	*	5417	4131	*	3829	2145	5119	*	6324	4556	4483	3413	3349	6513	5053	39
+       30	5615	*	2807	222	*	0	8559	1305	1043	
+
+V 40   5030	6738	*	*	*	6363	*	2622	*	3628	4744	5823	*	4187	*	5467	3972	976	*	*	40
+       0	*	*	*	*	*	0	8559	0	1043	
+
+H 41   4051	6964	5066	4334	5623	5449	3251	3728	7280	3250	4378	4621	*	3779	3626	4138	2906	4048	6394	6395	41
+       34	5407	*	1585	585	0	*	8559	1199	1043	
+
+V 42   5310	*	*	4253	3229	6753	*	2200	*	2191	6792	*	6248	*	6532	6239	*	1981	6110	4161	42
+       117	3679	*	1000	1000	*	*	8551	1844	0	
+
+V 43   *	*	3312	3163	*	*	3252	4168	4125	3252	5935	3972	*	3472	3792	3702	4013	4073	*	5367	43
+       99	4174	6558	1000	1000	*	*	8551	1559	0	
+
+P 44   4074	5301	2483	2858	*	4311	4346	*	5789	6622	*	*	2189	5380	6420	4817	3184	5418	*	4416	44
+       76	4829	5966	1000	1000	0	*	8804	1307	1036	
+
+D 45   2848	*	3021	3742	*	2716	6461	5726	5405	5931	*	2869	3043	4304	4735	3906	6563	6467	*	7449	45
+       129	3862	5921	1397	689	0	*	8810	1746	1076	
+
+Q 46   3409	5011	4323	3392	*	3612	4696	4864	4405	4378	6744	4866	4473	2828	5554	4177	3876	3608	*	5421	46
+       75	*	4300	*	*	0	*	8716	0	1115	
+
+L 47   4043	4409	3421	4532	5563	3689	3763	4891	5457	6741	6229	3917	3665	3610	2996	3833	4372	7079	6290	6229	47
+       0	*	*	*	*	0	*	8687	0	1523	
+
+M 48   4813	6241	*	*	2790	6442	*	2389	*	2459	1835	6168	*	*	*	*	7622	4069	3979	*	48
+       134	3897	5524	2051	398	*	*	8780	1718	0	
+
+A 49   3791	4307	6490	*	4145	4460	4296	3402	*	3517	6654	*	*	6491	4525	3325	3032	3294	6225	2949	49
+       18	*	6304	*	*	*	0	8923	0	1368	
+
+F 50   4530	*	*	*	1679	*	4832	3344	6497	3076	4739	*	6247	*	2813	4333	*	4074	5568	4101	50
+       21	6086	*	1000	1000	480	1822	8900	1049	1531	
+
+G 51   3042	5210	5573	6824	7118	1197	6125	*	6667	5845	5766	4817	3166	3996	5003	4204	6350	*	*	6503	51
+       38	5253	*	0	*	*	0	8736	1194	1060	
+
+G 52   3690	6296	3576	6338	5456	833	*	*	5582	4319	*	5499	6301	*	3662	5605	5385	*	*	*	52
+       325	2404	6315	1649	554	*	0	8736	3040	1060	
+
+S 53   4853	*	4254	3146	*	6345	6349	*	4093	4568	*	3733	*	4949	2979	2013	2735	4562	*	*	53
+       192	3002	*	311	2367	1094	912	8719	2519	1227	
+
+S 54   4799	6383	2708	3534	4892	4807	5524	6432	5269	5404	*	3755	2967	6645	6125	2713	2660	6360	*	6476	54
+       151	3468	6812	2385	306	*	0	8736	1903	1060	
+
+E 55   3288	*	2132	2263	*	4488	*	6541	4219	4209	*	4859	5310	4450	3698	5358	5018	4051	*	*	55
+       127	3567	*	684	1405	1269	773	8731	1924	1194	
+
+P 56   4143	*	3258	4006	6406	4924	5378	*	5450	5003	*	3363	1116	6618	6358	5384	4352	*	*	*	56
+       0	*	*	0	*	0	*	8737	1060	1060	
+
+C 57   2352	2718	*	*	4484	4241	5734	5749	6272	3277	4320	*	6950	6338	6626	4133	3993	3220	5401	3844	57
+       0	*	*	*	*	*	*	8910	0	0	
+
+A 58   1588	4076	*	*	4860	4066	*	3732	*	4518	4724	*	4206	*	*	6375	3723	2452	*	4947	58
+       19	*	6290	*	*	*	*	8897	0	0	
+
+L 59   6388	6388	6384	*	2284	6887	4822	3064	*	2990	3733	6931	*	4794	4636	5887	5195	3494	5528	2687	59
+       0	*	*	*	*	0	*	8886	0	1060	
+
+C 60   4085	5053	*	*	4410	5643	*	2152	*	2802	3728	*	6106	*	*	*	6784	1519	*	5179	60
+       0	*	*	*	*	*	*	8917	0	0	
+
+S 61   6878	*	3878	1920	5647	*	4035	6538	4941	6159	5642	3117	*	3548	3789	3203	3534	4922	*	*	61
+       0	*	*	*	*	*	*	8917	0	0	
+
+L 62   4682	4698	*	*	5125	*	*	1525	*	2518	5300	*	*	6202	*	*	6545	1634	*	*	62
+       29	*	5661	*	*	*	*	8917	0	0	
+
+H 63   4375	5029	4183	3355	5076	*	5329	4890	2513	5859	*	4543	*	4000	3529	3992	2675	3936	*	6518	63
+       88	4292	6939	915	1090	0	*	8914	1587	1234	
+
+S 64   3405	4734	*	*	5938	5739	*	3395	*	2609	4040	4750	*	*	5269	2060	4091	3221	5264	5762	64
+       145	3686	5808	0	*	0	*	8913	2245	1000	
+
+I 65   3678	*	*	*	3576	6902	*	2073	7130	3291	4378	6327	6458	7198	4214	3864	3200	3607	5201	3979	65
+       31	*	5572	*	*	902	1106	8909	0	1160	
+
+G 66   3375	6617	4555	3453	6056	1446	7117	*	5117	6481	*	3824	3590	6462	4178	4309	5333	5437	6414	*	66
+       207	3733	4095	388	2086	1600	577	8871	1928	1317	
+
+K 67   4527	*	5423	4245	*	1248	*	5983	4069	4469	5750	4035	5129	4712	5893	4451	5008	3677	6681	6501	67
+       58	5161	6450	283	2488	0	*	8902	1230	2335	
+
+I 68   5909	*	6637	5982	3348	5374	6611	3310	6095	2436	4556	6863	5054	*	1823	4658	3878	4553	*	6560	68
+       0	*	*	*	*	*	0	8906	0	1029	
+
+G 69   4036	*	2923	6935	*	3032	6041	*	4715	7101	*	3387	4123	4984	6917	2176	2370	6862	*	*	69
+       18	6334	*	0	*	*	0	8906	1115	1029	
+
+G 70   3348	*	3725	3876	6915	5489	5567	4070	4183	3991	*	5176	2483	4433	3414	5233	3545	4218	*	5946	70
+       19	6259	*	0	*	0	*	8933	1053	1029	
+
+A 71   3293	*	2862	1402	5577	5232	*	5724	3845	5833	*	5716	5626	5718	5433	3486	4347	6856	*	*	71
+       148	3357	*	162	3238	*	*	8949	2201	0	
+
+Q 72   3324	*	5246	3004	6947	6046	5911	5514	4185	3428	5774	4756	*	1940	4368	5289	3489	4299	*	6678	72
+       28	6586	6879	2322	322	*	*	8949	1036	0	
+
+N 73   6445	6400	6791	6564	5455	*	*	4880	1509	4564	*	2091	4917	5601	3200	6637	3883	5930	*	6042	73
+       38	5250	*	1534	611	0	*	8949	1278	1030	
+
+R 74   3866	5750	4417	2899	*	5125	6670	6833	2586	4481	*	6802	5957	3440	2033	4859	5005	4438	*	*	74
+       0	*	*	*	*	*	*	8949	0	0	
+
+S 75   2523	*	4286	2581	*	4359	5977	6718	2562	4725	6571	4012	*	3687	3238	4633	5692	6551	*	*	75
+       0	*	*	*	*	*	*	8949	0	0	
+
+Y 76   5556	6534	*	*	2676	6211	4237	3431	6628	1616	4268	5737	*	*	5283	6621	5911	4762	5481	2906	76
+       0	*	*	*	*	*	*	8949	0	0	
+
+S 77   2135	4987	5950	*	4574	4686	*	2726	*	6534	5791	6046	*	*	*	2433	3419	3242	*	3960	77
+       20	*	6211	*	*	*	*	8949	0	0	
+
+K 78   2235	*	4767	3649	*	4580	6069	5593	1941	4868	*	6792	6538	4161	3655	3709	4821	4963	*	*	78
+       0	*	*	*	*	*	0	8891	0	1043	
+
+L 79   2101	*	4625	2408	6633	4310	6397	6833	2865	3646	5680	5604	6756	5825	3469	6836	4710	4816	*	*	79
+       0	*	*	*	*	*	0	8891	0	1043	
+
+L 80   3841	*	*	*	3237	*	*	1438	*	1883	4821	*	*	*	*	*	5702	3049	*	6872	80
+       0	*	*	*	*	0	*	8891	0	1043	
+
+C 81   3402	3862	*	5992	3100	6751	4754	5663	6545	5165	4640	5922	*	5112	*	3339	1675	3836	*	4962	81
+       11	*	7056	*	*	*	*	8949	0	0	
+
+G 82   3138	5517	2108	2128	*	6135	5925	*	3623	*	*	5347	5594	4993	3066	4223	4564	*	*	*	82
+       15	6584	*	0	*	0	*	8949	1021	1023	
+
+L 83   2778	*	7233	4045	2707	*	5952	3343	6769	2374	5720	5049	6417	7004	4758	4479	4508	4256	*	3829	83
+       11	*	7037	*	*	*	*	8949	0	0	
+
+L 84   4011	5819	*	*	3637	*	*	2475	*	1422	3664	*	*	*	*	5026	4489	3100	*	5947	84
+       28	5704	*	1036	965	0	*	8952	1199	1018	
+
+A 85   2316	5782	6832	3002	*	6155	3802	*	3749	5075	5629	5812	*	3368	4915	3309	3831	3499	*	5062	85
+       0	*	*	*	*	*	*	8949	0	0	
+
+E 86   3211	*	4037	1938	*	5264	*	*	2613	*	*	3844	5922	3292	3425	4996	3879	*	*	*	86
+       11	*	7052	*	*	*	*	8949	0	0	
+
+R 87   3128	6826	4943	2391	6988	6997	4446	3893	3674	4441	*	4725	7027	4194	5017	5189	3594	2990	6559	5460	87
+       0	*	*	*	*	0	*	8948	0	1000	
+
+L 88   3455	4729	*	*	3717	6850	*	5305	*	699	5844	*	5487	*	6945	5751	4095	6875	*	6432	88
+       54	4772	*	820	1206	*	*	8949	1435	0	
+
+R 89   4666	*	3394	4739	*	1124	4698	*	3420	6871	*	3540	5751	5987	5082	4415	6763	6211	*	6779	89
+       0	*	*	*	*	*	*	8949	0	0	
+
+I 90   4341	4644	*	*	6856	5708	5911	1685	4737	2689	*	5112	*	*	*	5439	5349	1916	*	5564	90
+       0	*	*	*	*	*	*	8949	0	0	
+
+S 91   4401	*	3086	3311	*	4459	6046	*	4609	4887	*	4596	1499	4572	4702	3380	5205	*	*	*	91
+       34	6628	6211	0	*	*	*	8949	1028	0	
+
+P 92   3457	*	5191	4847	*	4092	5168	4719	3306	4131	*	6691	1516	3932	3882	4245	6682	*	*	6777	92
+       12	6898	*	0	*	*	0	8891	1000	1043	
+
+D 93   4317	*	2214	1949	*	4603	5743	6499	6990	6487	*	3112	5714	3358	6591	3683	4804	6633	*	5712	93
+       36	5343	*	1585	585	*	0	8891	1350	1043	
+
+R 94   3756	*	2953	6811	*	6108	4918	*	5223	5125	7107	3423	6712	4342	1408	3490	5080	5865	*	6260	94
+       0	*	*	*	*	0	*	8891	0	1043	
+
+V 95   6633	4366	*	*	4108	4633	*	1516	*	4386	5331	6545	*	*	*	5191	3517	1827	6192	*	95
+       0	*	*	*	*	*	*	8949	0	0	
+
+Y 96   *	6587	5922	5840	3238	6850	5415	4571	5094	3973	4360	5594	*	*	3595	5259	3669	3167	5022	1818	96
+       15	6569	*	0	*	*	*	8949	1021	0	
+
+I 97   *	6660	*	*	4569	6430	*	1244	*	3441	4424	*	*	*	*	5303	4628	1691	*	*	97
+       0	*	*	*	*	*	*	8917	0	0	
+
+N 98   4915	6809	6034	4490	4620	5617	4648	3697	3855	2988	5058	2875	*	4246	4851	3854	4301	3097	*	4853	98
+       0	*	*	*	*	*	*	8917	0	0	
+
+Y 99   6554	5987	*	*	1346	*	*	2236	*	2924	5312	*	*	6607	*	*	*	3595	*	3081	99
+       0	*	*	*	*	*	*	8917	0	0	
+
+Y 100  4962	*	3861	3069	4700	6174	3456	4500	4416	4516	*	4189	*	3940	3701	5575	3047	3304	7038	4212	100
+       0	*	*	*	*	*	*	8917	0	0	
+
+D 101  5544	7045	2431	1413	5811	5931	5560	6570	*	*	*	3631	3260	5087	4819	4894	4861	5263	*	*	101
+       0	*	*	*	*	*	*	8917	0	0	
+
+M 102  4073	7158	*	5455	6511	6172	4757	2512	6031	2464	4032	3702	5592	4995	5404	7011	4248	2361	*	6881	102
+       0	*	*	*	*	*	*	8716	0	0	
+
+N 103  5020	*	2752	2963	*	4470	5819	6763	4283	6041	*	4864	1976	5626	4616	3306	4127	5051	*	5975	103
+       118	6151	3948	2000	415	*	*	8683	1023	0	
+
+A 104  2321	*	3594	4673	*	4511	5714	*	3328	4033	5642	6951	2399	6664	3408	4074	4398	5881	*	6834	104
+       0	*	*	*	*	*	0	8546	0	1793	
+
+A 105  3601	5300	3416	1964	*	3022	3732	6851	4780	5959	*	5867	5454	5000	6062	3762	3939	6789	4558	7343	105
+       17	6416	*	0	*	0	*	8546	1036	1793	
+
+S 106  3644	5414	2638	3922	6006	4282	3621	6288	*	4950	4553	1977	*	4360	5407	4585	4643	6179	*	6370	106
+       0	*	*	*	*	*	*	8656	0	0	
+
+V 107  5485	6002	*	6152	3627	*	*	2990	*	5511	4703	5761	*	*	5863	*	5106	3426	1124	3957	107
+       27	6995	6529	0	*	*	*	8642	1000	0	
+
+G 108  2119	*	6417	*	*	922	*	*	6537	6679	7075	5415	*	5965	6080	3136	*	6264	*	5562	108
+       0	*	*	*	*	*	0	8593	0	1026	
+
+W 109  4430	5771	*	5872	2507	5889	6694	2796	3838	4240	5657	4907	*	*	5176	5097	3574	3625	3819	3279	109
+       0	*	*	*	*	0	*	8579	0	1026	
+
+N 110  3546	*	3207	*	*	1629	6673	6057	3567	5845	*	2461	6459	4583	4498	3996	*	*	6108	*	110
+       0	*	*	*	*	*	*	8579	0	0	
+
+N 111  7024	6082	3866	5811	*	436	5675	*	6430	6921	*	4407	*	6370	5498	6287	7002	*	*	6542	111
+       46	6138	5842	1000	1000	*	*	8544	1017	0	
+
+S 112  5195	*	5399	4582	*	3318	4822	5800	2774	*	4546	6212	5191	5718	3030	3443	2430	3532	*	5754	112
+       19	6277	*	0	*	0	*	8461	1037	1083	
+
+T 113  4490	*	*	*	5561	*	5506	4339	5915	2073	*	4473	5401	6205	*	4806	1123	4982	*	*	113
+       0	*	*	*	*	*	*	8123	0	0	
+
+F 114  5010	*	*	*	1838	*	4998	2558	5601	2571	3666	5670	*	*	*	5343	*	3518	5321	3964	114
+       175	3130	*	2193	356	*	*	7664	1269	0	
+
+A 115  1203	*	4883	4922	*	3071	4400	*	2902	*	*	*	4798	4613	*	3039	*	*	*	*	115
+       0	*	*	0	*	*	*	6264	0	0	
+
+//
+�HHsearch 1.5
+NAME  c582c9c4daca574c1be2935ee4ecc45f
+FAM   
+FILE  c582c9c4daca574c1be2935ee4ecc45f
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:25:17 2013
+LENG  53 match states, 53 columns in multiple alignment
+FILT  117 out of 808 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  6.5 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCEEEECCHHHHHHHHHHHHHHCCCHHHHHHHHHHHHHHHCCCCCC
+>ss_conf PSIPRED confidence values
+99867688467768999999999999990999999999999999873367899
+>Consensus
+xxxmxkxxxxxlRipxelxxxlxxxAxxxgxSlnxxIxxxlxxxlxxxxxxxx
+>c582c9c4daca574c1be2935ee4ecc45f
+MKGMSKMPQFNLRWPREVLDLVRKVAEENGMSVNSYIYQLVMESFKKEGRIGA
+>gi|303241486|ref|ZP_07327988.1| conserved hypothetical protein [Acetivibrio cellulolyticus CD2]gi|302590995|gb|EFL60741.1| conserved hypothetical protein [Acetivibrio cellulolyticus CD2]
+---MAEKKTVLLRLNPKTWEELSCWAEDEFRSINGQIEYILHDAIQKRKKA--
+>gi|159028551|emb|CAO87359.1| unnamed protein product [Microcystis aeruginosa PCC 7806]
+------MK-LSTNIPDVLYQQIETLANKQNIPVEQLVTMALSAQI--------
+>gi|260662424|ref|ZP_05863319.1| conserved hypothetical protein [Lactobacillus fermentum 28-3-CHN]gi|260553115|gb|EEX26058.1| conserved hypothetical protein [Lactobacillus fermentum 28-3-CHN]
+---------mvshqLTISLDEDAFRALEKRAQSERRPLEEVAASLLTTASKVP-----
+>gi|331698714|ref|YP_004334953.1| hypothetical protein Psed_4962 [Pseudonocardia dioxanivorans CB1190]gi|326953403|gb|AEA27100.1| hypothetical protein Psed_4962 [Pseudonocardia dioxanivorans CB1190]
+-------SRINFRPPESLKARIEEAAGREGLSVNAWLVRAATTALEA------
+>gi|291619469|ref|YP_003522211.1| hypothetical Protein PANA_3916 [Pantoea ananatis LMG 20103]gi|291154499|gb|ADD79083.1| Hypothetical Protein PANA_3916 [Pantoea ananatis LMG 20103]
+----GKSPTFQIRINPELREQLDQEAAKDQTTLANWFKELARDELKRRG----
+>gi|153869106|ref|ZP_01998794.1| HicB family protein [Beggiatoa sp. PS]gi|152074343|gb|EDN71207.1| HicB family protein [Beggiatoa sp. PS]
+-------DQIMVPVSPEIHRNLVIQAIKSGVSLNKLAMAKLSQ----------
+>gi|163868137|ref|YP_001609341.1| hypothetical protein Btr_0949 [Bartonella tribocorum CIP 105476]gi|161017788|emb|CAK01346.1| hypothetical protein BT_0949 [Bartonella tribocorum CIP 105476]
+-----KEASMNIRLPQALMKALKEKAKNQAIPYTRYVRHLIEQDLRKSH----
+>gi|197262440|ref|ZP_03162514.1| putative ABC-type transporter [Salmonella enterica subsp. enterica serovar Saintpaul str. SARA23]gi|200388356|ref|ZP_03214968.1| putative ABC-type transporter [Salmonella enterica subsp. enterica serovar Virchow str. SL491]gi|205357922|ref|ZP_02574237.2| putative ABC-type transporter [Salmonella enterica subsp. enterica serovar 4,[5],12:i:- str. CVM23701]gi|197240695|gb|EDY23315.1| putative ABC-type transporter [Salmonella enterica subsp. enterica serovar Saintpaul str. SARA23]gi|199605454|gb|EDZ03999.1| putative ABC-type transporter [Salmonella enterica subsp. enterica serovar Virchow str. SL491]gi|205328748|gb|EDZ15512.1| putative ABC-type transporter [Salmonella enterica subsp. enterica serovar 4,[5],12:i:- str. CVM23701]
+----ESNERLSLRVSTDAKKLIVRAAAIQQTNLTDFVVSNILP----------
+>gi|342899959|ref|ZP_08721781.1| hypothetical protein SmacN1_00909 [Streptococcus macacae NCTC 11558]
+-------VPTSVRLSDELNEKLTLWTNSHNISKSEFIAQVLAEKLEDLSDI--
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	2715	0	0	
+
+K 2    2849	*	*	*	*	*	*	*	1474	2449	*	*	*	2572	*	*	2738	*	*	*	2
+       0	*	*	*	*	*	*	3026	0	0	
+
+G 3    2681	*	*	*	*	1740	*	*	2070	*	*	*	*	2683	2728	*	*	*	*	*	3
+       0	*	*	*	*	*	*	3293	0	0	
+
+M 4    4022	*	*	*	*	4505	*	*	*	*	251	*	*	*	*	*	*	4205	*	*	4
+       0	*	*	*	*	*	*	4586	0	0	
+
+S 5    3726	*	3488	3027	*	3264	*	*	2713	5105	*	5031	3515	5499	5486	2515	3804	5802	*	*	5
+       0	*	*	*	*	*	*	6512	0	0	
+
+K 6    *	*	4597	3290	*	4826	*	5414	1297	*	*	3472	4459	3568	4669	3582	4378	*	*	*	6
+       81	*	4196	*	*	*	*	6646	0	0	
+
+M 7    5985	*	2996	4219	*	*	5608	3918	3876	4407	2501	3302	4768	4323	5253	3974	2912	5985	*	*	7
+       0	*	*	*	*	*	0	6825	0	1398	
+
+P 8    3094	*	4073	3188	*	4015	6473	4907	2628	*	*	5271	3793	5315	3886	3151	3780	4223	*	5988	8
+       28	*	5689	*	*	0	*	7140	0	1398	
+
+Q 9    5427	*	5791	5242	*	6407	5388	7185	3045	*	6154	5110	4061	2517	2458	3226	2513	6838	*	5787	9
+       12	6914	*	2037	403	0	*	7167	1074	1011	
+
+F 10   6190	*	*	*	2297	*	*	2303	4680	2007	3962	*	*	*	*	6858	3833	3540	*	3980	10
+       0	*	*	*	*	*	*	7239	0	0	
+
+N 11   4925	*	5080	6801	*	5895	4344	5398	6088	4768	4756	2755	5175	3423	5407	3080	1727	5056	*	7083	11
+       0	*	*	*	*	*	*	7239	0	0	
+
+L 12   4817	*	*	*	4014	*	*	1961	*	1293	6151	*	*	*	*	*	6211	2251	*	*	12
+       0	*	*	*	*	*	*	7239	0	0	
+
+R 13   *	*	*	5505	*	*	5248	*	3788	*	*	5008	6205	5510	401	6579	4475	*	*	*	13
+       80	4220	*	0	*	*	*	7239	1311	0	
+
+W 14   *	5830	*	*	4612	*	*	1449	*	1741	3743	*	5904	*	*	*	4640	3018	6706	6445	14
+       0	*	*	*	*	*	*	7239	0	0	
+
+P 15   6137	*	2921	5901	*	4667	5932	*	7095	6806	*	4433	1145	5828	5817	2695	3706	*	*	*	15
+       0	*	*	*	*	*	*	7239	0	0	
+
+R 16   3660	5719	2772	2716	*	6813	4976	*	3977	5181	6836	5061	1849	5170	4476	4213	5127	*	*	*	16
+       0	*	*	*	*	*	*	7239	0	0	
+
+E 17   4185	*	2456	1312	7421	4172	5606	6872	4231	6269	*	*	6764	5814	5811	3319	5989	5571	6230	6940	17
+       0	*	*	*	*	*	*	7239	0	0	
+
+V 18   4952	*	6619	5213	*	*	*	3481	4463	919	3842	6762	*	4974	6771	5311	4531	3675	*	*	18
+       0	*	*	*	*	*	*	7239	0	0	
+
+L 19   6248	*	4107	6167	4503	7271	2092	5779	1775	3816	5359	6285	*	5781	3721	6894	*	5058	6430	3896	19
+       0	*	*	*	*	*	*	7239	0	0	
+
+D 20   2986	*	4006	1940	*	6890	*	*	2789	5687	*	4608	6122	3663	2705	4228	4739	*	*	*	20
+       0	*	*	*	*	*	*	7239	0	0	
+
+L 21   3080	*	4470	3307	*	*	5830	5043	2355	3252	4423	6205	*	3636	3003	4589	4876	6098	4984	*	21
+       21	6122	*	0	*	*	*	7239	1018	0	
+
+V 22   3630	*	*	*	4857	*	*	2075	*	1092	4200	*	*	*	*	*	*	3163	*	6354	22
+       0	*	*	*	*	*	*	7239	0	0	
+
+R 23   3148	*	5030	2200	6725	*	*	6051	2515	5276	5280	4737	*	4579	3402	4221	3758	3532	*	*	23
+       0	*	*	*	*	*	*	7239	0	0	
+
+K 24   3594	6430	5947	2276	5986	6821	5836	3880	2802	5790	4255	5200	*	3450	3015	5968	5511	4698	*	4637	24
+       0	*	*	*	*	*	*	7239	0	0	
+
+V 25   1804	6794	*	4516	6354	*	5896	3758	3892	2827	5567	5812	*	4766	3406	6176	*	3557	4461	4813	25
+       0	*	*	*	*	*	*	7239	0	0	
+
+A 26   155	*	*	*	*	*	*	*	6122	*	5625	*	*	6445	*	4545	6285	*	*	*	26
+       0	*	*	*	*	*	*	7239	0	0	
+
+E 27   2531	*	4804	2397	6616	5845	*	6205	2084	4801	6794	4491	*	3324	4046	4377	6142	6362	*	*	27
+       0	*	*	*	*	*	*	7239	0	0	
+
+E 28   3739	*	4686	2980	4982	*	5830	4306	2587	3594	5329	4034	*	3642	3340	3839	6936	5707	*	4364	28
+       21	6122	*	2000	415	*	*	7239	1018	0	
+
+N 29   3755	6339	2960	2157	4979	*	3819	6750	4280	5937	7112	2659	*	3654	5460	3420	5639	*	*	*	29
+       0	*	*	*	*	*	0	7204	0	1018	
+
+G 30   6612	6186	4266	5523	5339	1110	3787	*	4581	7168	6274	2691	*	4619	4048	5361	*	*	*	*	30
+       33	5482	*	0	*	*	0	7204	1087	1018	
+
+M 31   6644	6227	*	5636	*	*	*	2557	3666	4355	4095	6634	6700	4746	1840	6270	3254	2772	*	*	31
+       0	*	*	*	*	*	0	7204	0	1018	
+
+S 32   5177	*	6122	*	*	*	*	*	5013	*	*	5766	3999	*	*	498	2855	*	*	*	32
+       0	*	*	*	*	0	*	7204	0	1018	
+
+V 33   6030	*	*	6445	4091	*	*	2748	4108	1571	3203	*	*	5895	5828	6133	5168	2600	*	5567	33
+       0	*	*	*	*	*	*	7239	0	0	
+
+N 34   3696	*	4435	4610	*	*	6133	*	*	*	*	891	*	5846	*	2628	3282	*	*	*	34
+       0	*	*	*	*	*	*	7239	0	0	
+
+S 35   2576	*	3738	3496	*	4509	*	*	3053	6230	*	3301	*	2450	5083	3187	4674	6725	6803	6717	35
+       0	*	*	*	*	*	*	7239	0	0	
+
+Y 36   4339	*	*	3001	2221	*	*	5298	*	2241	5739	*	*	4334	*	*	4725	5075	2893	3268	36
+       0	*	*	*	*	*	*	7239	0	0	
+
+I 37   4460	4909	*	*	5684	*	*	1098	*	3025	4493	*	*	*	*	*	*	1974	*	6275	37
+       0	*	*	*	*	*	*	7239	0	0	
+
+Y 38   4181	5070	5231	2727	5828	*	*	3366	3594	2641	5595	4489	*	4771	4104	5373	4830	2729	*	6706	38
+       0	*	*	*	*	*	*	7239	0	0	
+
+Q 39   3655	*	5123	2631	4690	5338	4362	7031	4514	4620	4874	4421	*	3027	3684	3252	4161	5003	*	4237	39
+       22	6057	*	2585	263	*	*	7237	1021	0	
+
+L 40   1566	6570	*	*	*	*	6481	2989	4754	2007	6074	6281	*	6284	3704	5902	6043	3926	*	6183	40
+       0	*	*	*	*	*	*	7264	0	0	
+
+V 41   3610	5550	*	*	5936	6116	*	2080	*	1381	6884	*	*	*	*	4933	5261	2487	*	*	41
+       86	4103	*	1319	739	*	*	7264	1474	0	
+
+M 42   3307	*	4149	2584	7124	*	6418	4235	4196	3652	4550	7067	*	4240	3269	3399	3573	3995	*	5545	42
+       0	*	*	*	*	*	*	7210	0	0	
+
+E 43   3397	6385	3185	1745	*	*	5792	*	3016	6010	*	4776	5078	3281	3571	5103	4739	6976	*	*	43
+       0	*	*	*	*	*	*	7125	0	0	
+
+S 44   2468	*	3947	3109	5342	6615	6618	*	2771	5457	*	5683	*	3525	5470	2826	4560	*	6637	3297	44
+       22	6044	*	0	*	*	*	6828	1002	0	
+
+F 45   3760	5997	*	*	3288	*	*	2877	*	1388	4346	*	*	*	6302	4972	6005	2869	6256	5032	45
+       17	*	6413	*	*	*	*	6840	0	0	
+
+K 46   *	4903	3753	1569	*	3066	*	*	2676	*	*	4793	6306	3927	3129	4304	*	*	*	*	46
+       0	*	*	*	*	0	*	6613	0	1000	
+
+K 47   3429	*	3714	3643	*	4133	4791	6311	2658	4697	*	4832	5102	3507	2511	3995	5987	4573	*	*	47
+       0	*	*	*	*	*	*	6609	0	0	
+
+E 48   4320	*	4691	1500	5659	*	5938	*	3398	4550	*	5845	3281	3832	3467	3964	4682	*	*	*	48
+       0	*	*	*	*	*	*	6282	0	0	
+
+G 49   5500	*	4193	5179	*	1928	3564	4978	3378	*	*	3331	*	5300	4327	2993	5175	4188	*	4737	49
+       0	*	*	*	*	*	*	6031	0	0	
+
+R 50   *	*	2200	3957	4270	*	*	*	3125	*	*	*	4292	*	2178	3331	*	*	*	2473	50
+       0	*	*	*	*	*	*	4949	0	0	
+
+I 51   4006	*	*	*	*	*	*	1473	3005	2083	*	*	*	*	*	*	*	2205	*	*	51
+       0	*	*	*	*	*	*	4949	0	0	
+
+G 52   *	*	*	*	*	1556	*	*	*	*	*	*	1556	1645	*	*	*	*	*	*	52
+       0	*	*	*	*	*	*	2163	0	0	
+
+A 53   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	53
+       0	*	*	0	*	*	*	1624	0	0	
+
+//
+�HHsearch 1.5
+NAME  c5863f5030b5a39b990f9179f7f8cfae
+FAM   
+FILE  c5863f5030b5a39b990f9179f7f8cfae
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:56:09 2013
+LENG  134 match states, 134 columns in multiple alignment
+FILT  107 out of 511 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  7.7 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCEEEEEEECCCHHHHHHHCCCCHHHHHHHHCCCCEEEEEECCCEEEEEEEECCCCEEEEEECCCEEEEECCCCCCCEEEEEEEEECCEEEEEEECC
+CCCEEEEEEEECCEEEEEEEECCEEEEEEEEECC
+>ss_conf PSIPRED confidence values
+9742189999974598999988399899999886289889999929989999960785389999879648876148999799999999599999999699
+8868999999999999999999999999999749
+>Consensus
+xxxxxGxwklxxseNxdexLxxxGvxxxxrkxxxxxxpxxeixxxgdxxxixxxxxxxtxxxxfxlGxefeexxxxxxgxxxkxxxxxegxklvxxxxxx
+xxxxxxxrxixxxxlxxtxxxxxvxxxrxyxrxx
+>c5863f5030b5a39b990f9179f7f8cfae
+PVDFNGYWKMLSNENFEEYLRALDVNVALRKIANLLKPDKEIVQDGDHMIIRTLSTFRNYIMDFQVGKEFEEDLTGIDDRKCMTTVSWDGDKLQCVQKGE
+KEGRGWTQWIEGDELHLEMRAEGVTCKQVFKKVH
+>gi|399472|sp|P31417.3|FABP2_MANSE RecName: Full=Fatty acid-binding protein 2; Short=FABP 2gi|159512|gb|AAA29314.1| fatty acid binding protein 2 [Manduca sexta]
+-SYLGKVYSLVKQENFDGFLKSAGLSDDKIQALVSDKPTQKMEANGDSYSITSTGIGGERTVSFKSGVEFDDVI--GAGESVKSMYTVDGNVVTHVVKGD
+AGVATFKKEYNGDDLVVTITSSNWDGVARrYYKA-
+>gi|307178371|gb|EFN67116.1| hypothetical protein EAG_12099 [Camponotus floridanus]
+---VVGKYQYITSENLDEFLKDINKSEFSGILKSALTVEVQV-NDDQSFTVTITNPERSVTNTFKLGEVYDEWFPSQK-VPFKSVATKHDLGFQSETSLS
+pdlKLIRIYEFTGTQLIAVSAVFNTEECNNSYLI---
+>gi|310693845|gb|ADP05225.1| fatty acid-binding protein 1 [Eriocheir sinensis]
+-MSIAGKYVLSGNEKYADWLSAVGIPADLAAKLEAAKPSLDVTQSGNDIVIKTTAGDKNFTNTITLGKESQA--TLPGGIEYTVKLTLSGTTLNGTWDFg
+GKTG-TATVEFTADGVTQTMIYNNIASKRIYSRQ-
+>gi|107051720|gb|ABF83552.1| fatty acid binding protein [Branchiostoma belcheri tsingtauense]
+--VDKfcGTWKHgSHSDNYLQMMEKFGMSAEMLKKIQESTFPMNASLVGDKLTFKVEFEGKTYENNFTLGVEGEEE--DATsGKKRKVTYTIEGDHLVSV
+YPDpdgKVTSRVCRHFDDDDTIHTDIKAGDVEAWTKSKRC-
+>gi|242020766|ref|XP_002430822.1| fatty acid-binding protein, putative [Pediculus humanus corporis]gi|212516025|gb|EEB18084.1| fatty acid-binding protein, putative [Pediculus humanus corporis]
+---YTKTYRLIKSDNYDAFLREVGAGPLKRKQEVRERPTIQLRQYGNDYVLTMASEHQTKNVKFRPSEKFVQE--GYDGNYVQTIMSFENgNILVEMQMG
+AKPVTILREFFVNGVMEM-MMCEKTVCCRVYSS--
+>gi|308493489|ref|XP_003108934.1| hypothetical protein CRE_11771 [Caenorhabditis remanei]gi|308247491|gb|EFO91443.1| hypothetical protein CRE_11771 [Caenorhabditis remanei]
+--AIIGKWKPISSENLEDYFKVSNLSEICELAWEHGIVC--YEMKDGDLHAHTQLYNKKlNATVLEVGQKNQNK----N-G--TMDCHVENNSLNSIYF-
+seEKELWKVERFIESGQLVIINKREQLQwCKRTYERVE
+>gi|221091788|ref|XP_002161777.1| PREDICTED: hypothetical protein [Hydra magnipapillata]gi|221107985|ref|XP_002167566.1| PREDICTED: hypothetical protein [Hydra magnipapillata]
+--DMVGTWRLESRDpTFNDFLVCRQTRYLLRTIMTTFSADFEYSLSEDKslLTKKTISSFNTNMYPMSTAHDFVPE-KTLSGKPEiGRIFETSGRKVIQE
+MryKSDdSIAAIMEHQVIDGKLHVKLKCENVVCNEIYRRI-
+>gi|325188594|emb|CCA23127.1| conserved hypothetical protein [Albugo laibachii Nc14]
+--NLSGRWSLDRndSDSTNDYLEAMGLPLIARQAADKLDLMVIINQTPGDFVITRRTRIFSETKHLKLGQEVILK---------NNIISIAGDAsqIKTt
+TQlTAYRGLLMDIRSLDeKGRMKVELTLvlpdkPPVTIQRYFKK--
+>gi|313230106|emb|CBY07810.1| unnamed protein product [Oikopleura dioica]
+--EMIGRWQEKSKSNVPEYIDAEEGPYFYQIFAKKMKADIEYEMvAKNVFRSTFyVSWMPPLKYPLRLDMPYEHEN--PTGDAVVSEARfrVEfNDIFVV
+T-KGGHEGTtTTRIQIVNEDLILTSTMleKNVLCERVYTRK-
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+P 1    *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	3352	0	0	
+
+V 2    2952	*	5657	2590	*	*	*	4182	6074	*	1959	*	5193	*	*	3339	4105	2528	*	*	2
+       30	5616	*	1000	1000	*	*	6630	1000	0	
+
+D 3    2556	*	2504	3143	6511	*	*	*	3446	5121	*	2972	*	4285	4943	3398	5352	4104	*	5630	3
+       0	*	*	2542	272	*	*	7663	1070	0	
+
+F 4    5420	*	6357	*	1434	*	6344	2962	*	2073	3466	*	*	*	*	6613	5805	3974	*	4886	4
+       0	*	*	*	*	*	*	7867	0	0	
+
+N 5    3098	6469	6317	4722	4463	6685	5822	3247	4370	4567	6443	3432	*	*	*	2886	2851	2817	*	4921	5
+       80	4436	7019	1756	506	*	*	7885	1513	0	
+
+G 6    6333	*	6661	*	*	147	*	6339	4913	*	*	6389	*	*	*	*	5880	*	*	*	6
+       49	4914	*	0	*	0	*	7901	1343	1000	
+
+Y 7    *	*	*	4952	6475	*	5351	6687	1465	6500	*	4921	*	*	3469	3454	1935	4249	*	5620	7
+       0	*	*	*	*	*	*	7900	0	0	
+
+W 8    *	*	*	*	3816	*	*	*	*	*	*	*	*	*	*	*	5890	*	625	1923	8
+       0	*	*	*	*	*	*	7900	0	0	
+
+K 9    5503	*	5600	4810	*	*	*	*	1074	5900	6479	4465	*	2913	3636	4977	3498	4639	*	*	9
+       0	*	*	*	*	*	*	7900	0	0	
+
+M 10   *	*	*	6089	4046	*	3612	5741	6474	1236	3926	*	6292	3447	4168	*	4519	4488	6543	3975	10
+       61	4885	7082	0	*	*	*	7899	1284	0	
+
+L 11   4428	*	3118	2467	*	4707	5251	3064	4327	5385	*	4329	*	6678	*	3859	3192	2701	*	6960	11
+       156	3288	*	804	1227	0	*	7900	2214	1000	
+
+S 12   6963	*	4977	3762	*	4581	3367	*	2323	5067	*	5787	*	7256	3033	1731	4052	6674	*	*	12
+       26	6622	7082	1000	1000	*	*	7899	1011	0	
+
+N 13   5116	5642	4704	5199	*	5475	4109	6689	6085	6469	*	3613	*	3287	5320	1054	4105	5614	*	*	13
+       19	6229	*	1000	1000	0	*	7900	1026	1000	
+
+E 14   *	*	2200	844	*	6446	6742	6126	6840	*	*	4345	*	5361	*	4310	5365	4909	*	*	14
+       56	4710	*	357	2188	*	*	7899	1297	0	
+
+N 15   *	*	4422	*	*	3378	5895	*	5260	*	*	452	6938	*	6354	4398	6000	*	*	*	15
+       29	5669	*	1263	778	*	*	7899	1112	0	
+
+F 16   *	*	*	*	1301	5701	6411	4669	*	2865	3853	*	*	*	*	6474	4578	4297	6564	2301	16
+       0	*	*	*	*	*	*	7899	0	0	
+
+E 17   5787	*	1066	1747	*	7043	*	*	5799	4218	*	5277	5398	5495	*	5677	6468	5338	*	*	17
+       0	*	*	*	*	*	*	7899	0	0	
+
+E 18   2554	6289	2866	1362	*	5159	*	*	3865	*	*	4727	3974	4853	6723	5143	*	5608	*	*	18
+       0	*	*	*	*	*	*	7899	0	0	
+
+Y 19   6935	6564	*	*	1422	7043	*	4917	*	3133	5208	*	*	6352	*	*	6848	4193	6608	1555	19
+       0	*	*	*	*	*	*	7899	0	0	
+
+L 20   6399	5855	*	*	3954	*	*	5343	*	761	2060	6601	*	*	*	6667	*	6553	*	5561	20
+       0	*	*	*	*	*	*	7899	0	0	
+
+R 21   3741	6804	4063	2876	5895	*	*	*	1581	6407	6991	*	*	4121	3650	4052	3625	4281	*	5672	21
+       0	*	*	*	*	*	*	7899	0	0	
+
+A 22   1375	6000	5349	3108	5895	5804	6517	*	2856	3566	6935	*	*	4677	5064	4621	5717	4233	*	*	22
+       0	*	*	*	*	*	*	7899	0	0	
+
+L 23   3834	6008	*	4663	6414	*	6237	2879	6447	1647	3838	6288	*	3899	5061	3826	5478	3180	*	*	23
+       0	*	*	*	*	*	*	7899	0	0	
+
+D 24   5210	6839	5893	5476	*	346	*	*	4224	*	*	4790	*	4676	*	*	6690	*	*	*	24
+       31	5567	*	545	1667	*	*	7907	1147	0	
+
+V 25   4108	*	6471	*	4235	5319	*	2498	6027	3100	5492	5433	*	6453	*	*	4540	1258	*	5287	25
+       0	*	*	*	*	*	*	7907	0	0	
+
+N 26   6518	7014	5215	6969	*	2528	*	6684	6135	*	*	2738	1451	5414	4864	2509	*	*	*	*	26
+       28	6566	6853	1000	1000	*	*	7907	1018	0	
+
+V 27   3595	*	3814	2830	3025	*	6350	5207	4355	4078	5786	5569	4664	4596	5472	4332	5804	5086	3320	3386	27
+       0	*	*	*	*	0	*	7906	0	1000	
+
+A 28   3352	*	2942	2937	3343	*	5925	2944	6359	2626	4800	*	5151	6494	6413	5843	*	3187	6939	*	28
+       0	*	*	*	*	*	*	7907	0	0	
+
+L 29   3662	6332	*	*	6454	6461	4768	4446	2102	2694	3834	6258	5966	7019	5870	5227	3300	3153	*	4288	29
+       16	*	6480	*	*	*	*	7921	0	0	
+
+R 30   4101	*	6612	5377	6609	6006	6412	2721	5612	5667	*	*	*	5256	728	6679	*	5116	6728	*	30
+       59	*	4632	*	*	0	*	7911	0	1003	
+
+K 31   3719	*	5809	4227	6262	6399	6276	5012	1382	4910	5548	4509	6657	3200	4091	5549	3420	6704	*	*	31
+       0	*	*	*	*	1987	419	7868	0	1358	
+
+I 32   2339	*	*	4907	4740	*	6716	3275	3185	2329	2814	*	*	5632	4339	*	6388	3749	6431	*	32
+       0	*	*	*	*	0	*	7878	0	1241	
+
+A 33   1444	*	*	5484	4962	3047	*	2966	6035	3774	4510	*	5073	*	6467	5633	5201	3560	5402	*	33
+       0	*	*	*	*	*	*	7920	0	0	
+
+N 34   3492	5348	5832	4471	*	5218	6584	6693	2294	3710	5370	3613	6543	3551	3746	3675	3751	3887	*	*	34
+       14	*	6659	*	*	*	*	7920	0	0	
+
+L 35   3354	6851	4458	4306	4932	5938	3931	5320	2491	3752	4075	4092	*	4952	5865	3208	3468	4654	*	*	35
+       12	*	6935	*	*	0	*	7912	0	1000	
+
+L 36   2173	6761	4929	5499	3844	4905	*	5198	5467	3186	3407	4975	5664	5170	5656	3454	4383	3415	*	5319	36
+       68	4783	6694	1350	718	*	0	7973	1287	1029	
+
+K 37   7020	*	4074	4984	6759	4644	4613	4502	2084	*	*	3680	6510	7035	3635	2354	2992	4930	*	*	37
+       15	6578	*	0	*	869	1145	7960	1037	1148	
+
+P 38   4092	*	5653	*	4888	6579	*	6316	*	4000	4993	*	1139	5686	*	3524	4156	2798	*	6581	38
+       0	*	*	*	*	0	*	7909	0	1004	
+
+D 39   5518	4548	3863	4299	6584	*	4665	3839	3888	*	6661	4661	6465	4556	4944	3784	1920	2923	*	5363	39
+       35	*	5402	*	*	*	*	7920	0	0	
+
+K 40   *	6088	6747	5264	3975	*	4670	2393	4635	2359	4028	*	*	4122	*	4457	4603	2348	*	5673	40
+       0	*	*	*	*	*	0	7844	0	1188	
+
+E 41   *	*	3550	1270	*	6474	5862	3921	4124	*	*	5639	*	3691	6707	6580	2818	3668	*	6630	41
+       16	6529	*	0	*	0	*	7844	1037	1188	
+
+I 42   6465	5092	*	*	3426	*	*	1156	*	3306	6797	*	*	5908	*	*	6485	2417	*	3434	42
+       47	5898	6035	537	1685	*	*	7920	1103	0	
+
+V 43   6549	*	5537	2741	*	*	*	6331	3274	6564	*	5191	*	3843	3416	2172	2368	3914	*	5712	43
+       42	5138	*	1221	808	0	*	7867	1245	1080	
+
+Q 44   5827	4914	5103	3998	6377	5882	4616	4091	2983	4072	4342	4537	*	1926	4456	5416	6461	3697	*	5042	44
+       212	3054	5935	2030	405	*	*	7915	2344	0	
+
+D 45   5164	*	1757	3276	*	*	*	6698	4319	6473	*	2425	5271	5171	6741	2941	4060	4285	*	6461	45
+       55	5187	6631	654	1457	2011	411	7957	1308	1234	
+
+G 46   4866	6903	2743	4264	*	769	*	5834	4465	6289	*	4976	4312	*	*	6446	*	*	*	*	46
+       11	*	7045	*	*	479	1825	7935	0	1391	
+
+D 47   *	6756	1229	3821	*	3390	7033	*	4922	*	*	2192	5382	4232	*	4862	5697	7061	*	*	47
+       154	3456	6673	1959	429	0	*	7970	2215	1116	
+
+H 48   7093	6498	3585	3989	*	5116	3848	*	2328	5654	6969	4245	*	3547	4608	3536	2690	4122	6672	5486	48
+       80	4564	6384	926	1078	*	0	7902	1355	1005	
+
+M 49   *	6567	*	*	1830	*	5669	3230	*	2799	4596	*	*	6921	*	6253	6320	3736	2991	2625	49
+       0	*	*	*	*	*	0	7875	0	1163	
+
+I 50   5295	5362	4340	5333	6320	*	4055	5080	3538	7105	6253	4919	*	6691	3845	4107	1398	3157	*	7552	50
+       16	*	6466	*	*	1205	820	7875	0	1163	
+
+I 51   6295	6298	*	6502	3056	*	*	1620	5995	3461	4185	*	*	6251	6420	5473	*	2195	4748	4225	51
+       39	6917	5777	2000	415	*	0	7871	1029	1167	
+
+R 52   5569	6461	6835	4575	*	*	5052	5682	1595	*	6165	4920	*	5100	3285	3714	2121	4280	*	*	52
+       83	4167	*	0	*	1562	597	7899	1544	1518	
+
+T 53   *	6670	*	5298	3827	*	*	3185	*	6583	4073	5183	*	3916	4697	2795	1595	3221	*	*	53
+       59	4935	7072	786	1251	1774	499	7927	1287	1308	
+
+L 54   4094	6664	4074	4118	*	*	5423	3036	3693	4016	5677	5003	*	3725	5715	4639	2490	3836	4928	3971	54
+       48	4929	*	847	1171	2160	365	7944	1358	1272	
+
+S 55   4681	*	5678	5079	5489	3547	*	5771	*	4460	6978	3665	6892	*	6775	1966	1769	4368	6445	5224	55
+       47	5747	6217	0	*	1064	939	7943	1119	1186	
+
+T 56   4235	*	6711	4991	5731	2475	*	4785	4451	4312	4814	5111	2560	6672	5073	3664	2630	6540	5163	5490	56
+       152	3559	6024	1243	792	1035	966	7909	2039	1192	
+
+F 57   4236	*	4955	4806	2652	2849	6397	3457	4009	2769	4319	5261	5496	5041	6684	5783	6770	3417	*	6645	57
+       30	5586	*	0	*	2429	296	7929	1121	1349	
+
+R 58   5553	*	7406	4639	5518	3634	5309	5575	1584	6255	5519	4800	5347	4179	2390	4188	5090	6439	*	6232	58
+       55	5443	6115	1483	639	768	1276	7945	1369	1264	
+
+N 59   5684	*	3960	4333	*	5925	*	5108	4466	*	*	3143	5204	5442	6692	2030	1564	5661	*	*	59
+       118	3675	*	725	1340	735	1325	7935	1941	1277	
+
+Y 60   4165	*	5652	5185	4351	5699	5006	4161	3423	3233	4982	3402	*	5518	4343	3654	3057	3584	5497	4659	60
+       16	*	6516	*	*	1384	697	7888	0	1140	
+
+I 61   4748	*	3232	2203	6510	*	6827	5424	3906	6458	5985	5033	6436	5187	7424	3103	2237	3746	*	5391	61
+       14	6714	*	1585	585	*	0	7867	1004	1172	
+
+M 62   4018	*	5019	4794	4184	*	5920	3315	4016	4314	3759	2202	*	5077	5536	4716	4084	3385	6250	4677	62
+       0	*	*	*	*	1147	866	7867	0	1172	
+
+D 63   6259	*	4316	2707	*	6872	5094	6457	3322	6937	5929	3556	5058	*	5766	2857	1820	4178	*	*	63
+       0	*	*	*	*	0	*	7888	0	1043	
+
+F 64   *	*	*	*	655	5202	*	4643	*	3464	4779	6575	*	*	6012	*	*	5771	5086	3365	64
+       28	6731	6706	1000	1000	*	*	7915	1004	0	
+
+Q 65   5971	5315	5688	3566	5674	*	7160	5529	2173	*	*	4214	4710	5229	3279	4022	2027	4448	*	6567	65
+       14	6729	*	2585	263	0	*	7902	1032	1005	
+
+V 66   *	*	*	5459	3534	*	*	2455	*	1243	6492	*	4593	*	6735	4771	6033	2728	6490	6630	66
+       0	*	*	*	*	*	*	7915	0	0	
+
+G 67   6033	*	2942	5511	*	467	*	*	*	*	6577	4145	*	6749	*	5447	6630	*	*	*	67
+       0	*	*	*	*	*	*	7915	0	0	
+
+K 68   6594	*	5467	1708	7072	4302	5283	4952	3044	*	6117	5279	6861	2775	5174	6531	4777	2775	7020	*	68
+       33	6265	6731	1585	585	*	*	7915	1032	0	
+
+E 69   4462	*	4246	852	*	*	*	6719	4646	*	*	*	2780	7182	6937	3810	5787	4369	*	*	69
+       50	*	4870	*	*	*	0	7904	0	1004	
+
+F 70   4889	5044	6786	6294	1149	5473	*	4962	*	4439	6625	4988	5638	5256	6892	3618	5195	4105	5932	3594	70
+       13	*	6854	*	*	*	0	7837	0	1374	
+
+E 71   5590	*	2437	1334	*	*	*	6615	3500	5409	*	5764	*	4929	4014	6290	4511	3379	*	6631	71
+       157	6689	3419	2585	263	653	1458	7835	1032	1466	
+
+E 72   5017	6622	3363	1121	4477	5549	5899	*	5455	6405	6804	5147	5883	4370	5459	4989	3708	4894	*	5853	72
+       314	*	2354	*	*	3725	113	7822	0	2087	
+
+D 73   6008	5362	3246	2078	*	*	5399	5207	2773	6152	6343	3809	3715	5082	5051	6430	3157	5212	5589	5984	73
+       573	6405	1663	0	*	1606	575	7612	1000	3626	
+
+L 74   4804	*	4265	*	4333	5794	4494	3002	*	3108	2929	3972	5999	*	4336	6270	2052	5060	6061	*	74
+       789	*	1247	*	*	1354	716	7025	0	4743	
+
+T 75   4886	5740	5911	3583	5397	*	*	5661	2623	4002	4983	5026	2911	4353	5857	4223	2461	4157	*	5240	75
+       168	*	3185	*	*	1369	706	6873	0	5234	
+
+G 76   6104	*	5206	*	5680	2093	5614	6161	*	3116	5552	3954	6153	*	6096	2658	1827	*	*	*	76
+       94	*	3980	*	*	539	1682	7547	0	4293	
+
+I 77   3498	*	*	6321	3689	3527	*	3097	*	2314	4242	6307	2292	5054	*	4857	6150	4492	*	5391	77
+       15	*	6555	*	*	783	1255	7754	0	2494	
+
+D 78   6589	*	1335	4858	6128	3175	*	6706	4614	4499	4158	4582	4855	6974	6208	4328	3651	4833	6678	6490	78
+       204	5524	3182	995	1005	2470	287	7853	1141	1694	
+
+D 79   4619	6848	2754	4868	*	673	*	*	5014	*	*	5550	*	6293	6281	4513	*	5711	*	*	79
+       19	6281	*	0	*	909	1097	7569	1001	2704	
+
+R 80   5700	*	5231	2914	6630	3259	6537	5510	2905	6746	6793	4629	5564	3832	1995	5319	4339	4195	*	6551	80
+       58	*	4658	*	*	1091	915	7812	0	1785	
+
+K 81   5876	*	6241	3761	*	6526	5042	4976	1559	6171	4644	5234	4196	4406	3918	4423	2890	4583	*	6386	81
+       27	7020	6526	0	*	2845	216	7723	1000	1770	
+
+C 82   4387	4910	6699	5315	3648	*	4500	3610	6206	3453	4708	6686	7778	6803	3861	6342	4493	1471	*	5287	82
+       24	5934	*	0	*	205	2918	7727	1049	1758	
+
+M 83   4971	*	5026	4063	*	6053	5236	6540	1254	6752	4201	3381	6560	3945	3667	4431	5054	6004	*	*	83
+       0	*	*	*	*	*	0	7876	0	1004	
+
+T 84   3111	5090	6693	6825	6666	4921	*	4981	*	6961	6243	5115	*	*	4666	1945	2510	2212	*	5544	84
+       47	5411	6825	3554	128	0	*	7876	1162	1004	
+
+T 85   *	*	5322	4751	*	*	6355	2640	5094	3979	5220	*	*	*	6594	3651	1609	2133	*	*	85
+       0	*	*	*	*	*	0	7885	0	1012	
+
+V 86   2694	4681	*	5631	3147	6594	5523	3120	*	5016	4252	*	4823	*	*	4916	4582	2381	5238	3130	86
+       0	*	*	1585	585	0	*	7885	1012	1012	
+
+S 87   5478	*	4826	4183	4970	6913	4809	*	3439	*	*	3791	6436	6842	3788	2976	1631	3795	6622	5501	87
+       61	6019	5274	1000	1000	*	*	7888	1048	0	
+
+W 88   5087	*	6155	*	4011	6921	*	2941	3788	2164	3856	*	6411	5836	4781	*	5103	3371	2669	4545	88
+       82	4180	*	1598	578	0	*	7911	1566	1181	
+
+D 89   4496	*	2526	1071	*	*	5867	5940	3642	*	*	4909	*	4984	5036	4417	7244	4889	*	6613	89
+       67	4725	7058	767	1278	*	*	7888	1292	0	
+
+G 90   *	*	2136	4494	*	737	*	*	5583	*	6967	3818	*	*	*	5386	7819	*	*	*	90
+       147	3370	*	423	1977	0	*	7872	2088	1000	
+
+D 91   5021	*	1583	4466	*	2331	*	*	6186	5863	*	1945	*	6308	4763	5556	5057	*	*	*	91
+       58	5042	6786	0	*	*	*	7871	1217	0	
+
+K 92   3589	6536	4553	6250	*	5859	4849	4733	1283	*	5598	5289	*	4934	3736	4020	3477	4491	*	*	92
+       85	4366	6889	1001	999	*	0	7867	1434	1000	
+
+L 93   *	*	*	6336	3754	6720	*	3449	6944	939	2882	6702	*	*	*	6240	*	3510	4779	*	93
+       27	*	5756	*	*	*	0	7867	0	1081	
+
+Q 94   *	*	*	5359	5337	*	6118	2274	4579	4644	6671	5385	*	4737	5116	5709	2769	1411	*	7411	94
+       46	*	4986	1000	1000	511	1746	7864	1000	1309	
+
+C 95   4617	4314	*	3619	4877	4327	3739	3246	5836	3673	3984	*	*	3494	6818	2991	2799	4746	*	*	95
+       70	4390	*	703	1374	1929	439	7818	1397	1365	
+
+V 96   *	*	5596	3132	5746	*	3807	3335	3488	5531	6436	4870	*	5667	3655	6262	2160	2445	*	*	96
+       120	4185	5332	953	1048	0	*	7821	1479	1241	
+
+Q 97   4747	5270	*	4826	4214	5597	5596	4329	6871	5593	4489	5458	*	1549	*	3405	3576	4819	6550	3413	97
+       150	3590	5975	1565	595	1254	784	7839	1761	1270	
+
+K 98   4353	6596	5651	3211	5291	*	5699	5573	1777	*	5244	4092	3337	*	5283	4830	2536	4717	*	*	98
+       241	2832	6245	925	1080	2055	397	7832	2388	1418	
+
+G 99   4132	6018	3476	4623	5532	1721	5040	6442	5014	4966	*	2666	4759	5542	5063	4322	5075	*	4578	*	99
+       223	2917	6553	1512	623	1177	842	7811	2491	1438	
+
+E 100  4226	*	2670	3646	6771	2214	*	4000	4190	*	5463	5342	3317	5100	*	3743	5196	4721	*	4297	100
+       281	2542	7518	1005	995	1904	449	7822	2569	1308	
+
+K 101  4813	6606	3923	3627	6406	3403	4350	*	1763	4752	*	4333	5666	5701	4446	2783	5673	5578	*	*	101
+       246	4686	3087	849	1169	571	1612	7761	1319	1272	
+
+E 102  *	5428	4642	2910	6107	3253	6316	4639	2957	4541	5680	5407	3468	5463	6565	4611	3524	2825	*	5374	102
+       134	5578	3877	2489	283	1299	753	7679	1224	2207	
+
+G 103  5824	6893	7112	3071	6438	2457	5226	4022	3758	3783	6222	4378	5317	6109	*	4442	3507	2556	*	6150	103
+       222	3767	3857	1404	685	1189	833	7657	1750	2294	
+
+R 104  3333	6691	*	3412	5076	*	*	5381	4668	3981	5423	5244	5342	5054	3290	2987	2306	3896	5109	6694	104
+       107	4065	6404	337	2262	715	1355	7658	1416	2320	
+
+G 105  6182	*	4914	6224	5358	5052	4545	2599	3195	4785	4747	7176	*	5352	3526	5454	2154	3141	*	6026	105
+       0	*	*	*	*	0	*	7759	0	1566	
+
+W 106  4203	6434	4772	5403	3442	*	4574	2659	5436	4259	4836	5262	*	*	5134	4910	3206	2810	5880	3115	106
+       29	6553	6753	1000	1000	*	*	7772	1000	0	
+
+T 107  6211	6457	4349	2486	6145	*	5467	3639	4109	5595	*	*	*	6135	2285	*	2314	3014	*	7035	107
+       17	6411	*	0	*	0	*	7774	1010	1000	
+
+Q 108  6400	*	*	3600	4212	6235	4140	5991	5032	5443	*	6861	*	5156	982	5956	4480	4751	5896	4194	108
+       33	6530	6400	1000	1000	*	*	7772	1000	0	
+
+W 109  6924	6615	5647	1576	2700	*	*	4889	4085	4927	*	*	*	4173	5448	4189	4292	4299	4708	3764	109
+       122	6641	3809	0	*	0	*	7757	1000	1025	
+
+I 110  *	*	5435	5126	3037	5759	*	1855	*	2458	5600	6068	6256	*	5282	6667	5401	2230	*	5128	110
+       54	4757	*	814	1213	0	*	7722	1262	1630	
+
+E 111  5793	*	2087	2940	*	4614	*	4715	4139	*	*	4116	*	6548	5050	3028	3931	2367	*	*	111
+       85	4335	7041	0	*	*	*	7772	1406	0	
+
+G 112  5080	*	1937	3771	*	1193	*	*	5329	*	*	3292	5547	5206	*	5428	*	*	*	*	112
+       21	6084	*	0	*	0	*	7775	1183	1000	
+
+D 113  7024	*	1725	3279	*	1747	6733	5700	4478	5810	5821	3360	*	*	6379	4320	5610	*	*	*	113
+       9	7266	*	0	*	*	*	7772	1000	0	
+
+E 114  5260	*	3695	2425	*	4103	6048	4754	2499	5056	*	4349	*	2939	4886	6400	3493	4972	6564	4764	114
+       18	6366	*	2000	415	*	*	7772	1029	0	
+
+L 115  5803	*	*	*	6385	*	6340	3736	*	1092	1884	*	5372	6739	*	*	5379	4091	5237	*	115
+       17	6385	*	1000	1000	*	*	7766	1014	0	
+
+H 116  *	6266	4599	5655	5615	*	2835	2671	3620	4370	6739	6681	6539	*	4825	5741	3535	1827	*	5224	116
+       16	6539	*	2000	415	*	*	7766	1002	0	
+
+L 117  4607	6377	5679	3566	6349	*	4864	3154	*	2820	3189	6648	*	3723	*	5150	3672	2056	*	*	117
+       51	6371	5444	1000	1000	*	*	7766	1037	0	
+
+E 118  4698	*	4311	3648	6353	*	6455	3417	3330	*	*	6542	6345	5487	5423	4350	1193	4070	*	*	118
+       20	6184	*	0	*	0	*	7733	1026	1143	
+
+M 119  5313	4621	*	6335	4046	*	5063	2769	*	2517	2598	5304	*	4103	5971	4269	4018	4041	5148	4544	119
+       0	*	*	*	*	*	*	7767	0	0	
+
+R 120  *	5727	4995	4228	5795	7505	5641	4687	2807	5272	6400	5005	*	4468	5250	2934	1507	5148	6345	7026	120
+       0	*	*	*	*	*	*	7767	0	0	
+
+A 121  2922	2954	*	*	4272	*	6376	3738	3612	4204	4718	5795	5448	6758	4099	4829	4185	2684	4817	4780	121
+       129	3549	*	1487	637	*	*	7767	1735	0	
+
+E 122  5318	6415	3470	3002	6327	1764	*	*	2754	*	*	2975	5527	6360	6174	3532	4980	*	*	*	122
+       54	4774	*	1643	557	*	*	7675	1267	0	
+
+G 123  5618	*	2088	3936	6134	1699	5366	6317	4134	6324	6185	2635	5601	5308	6272	5862	*	*	*	*	123
+       22	6026	*	0	*	*	*	7677	1035	0	
+
+V 124  *	*	*	5787	5415	*	5441	2874	4836	3272	*	6687	6705	6750	*	6758	4323	851	5767	*	124
+       0	*	*	1000	1000	*	*	7677	1000	0	
+
+T 125  4630	5229	5009	3300	7723	*	*	3376	4015	5960	*	6548	5368	5367	5230	4113	1910	2336	*	6185	125
+       38	6259	6292	0	*	*	*	7677	1035	0	
+
+C 126  2103	1738	*	*	4358	2832	*	6361	*	4538	*	4948	*	*	*	3718	4748	4729	*	4654	126
+       0	*	*	*	*	0	*	7651	0	1006	
+
+K 127  6300	5247	*	4390	*	*	5467	5449	1533	*	*	3778	*	5213	4574	4295	2549	3077	4640	*	127
+       0	*	*	*	*	*	*	7619	0	0	
+
+Q 128  4498	*	*	5879	6299	6025	4653	6249	6510	5222	*	6873	*	4781	575	5054	5536	4723	*	6110	128
+       0	*	*	*	*	*	*	7582	0	0	
+
+V 129  *	*	*	4778	3287	*	4658	2476	4207	6535	5389	5439	*	6108	4910	*	3132	2313	4774	2941	129
+       48	4941	*	0	*	*	*	7582	1207	0	
+
+F 130  5179	*	*	*	1428	*	4588	*	*	4217	*	*	*	*	*	3956	*	*	*	1181	130
+       0	*	*	*	*	*	*	7582	0	0	
+
+K 131  4370	*	4991	3480	*	6572	6873	4962	1339	5487	*	4403	6108	4739	3681	4506	4365	4023	*	5030	131
+       0	*	*	*	*	*	*	7582	0	0	
+
+K 132  *	*	*	*	*	*	*	*	1244	6009	*	*	5801	*	958	5079	*	*	*	*	132
+       0	*	*	*	*	*	*	7503	0	0	
+
+V 133  2923	4477	*	3930	*	6230	*	2693	4653	4091	5145	*	*	3726	5763	*	*	1438	*	*	133
+       0	*	*	*	*	*	*	7056	0	0	
+
+H 134  *	*	*	1201	*	*	1729	*	*	*	*	2827	*	*	*	*	3031	*	*	*	134
+       0	*	*	0	*	*	*	3341	0	0	
+
+//
+�HHsearch 1.5
+NAME  c5af58a62688d809a1a0747990141890
+FAM   
+FILE  c5af58a62688d809a1a0747990141890
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:08:47 2013
+LENG  62 match states, 62 columns in multiple alignment
+FILT  102 out of 698 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  5.7 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCHHHHHHHHHHHHHHHHHHHHHHHHHHHHCCCCCCCCCCHHHHHHHHHHHHHHHHHHHCC
+>ss_conf PSIPRED confidence values
+96178999988999999999999999999767999888778999999999999999998738
+>Consensus
+xxxxxrRxxxnxrERxRxxxiNxafxxLrxxiPxxxxxklsKxxiLrxAixYIxxLxxxLxx
+>c5af58a62688d809a1a0747990141890
+TTNADRRKAATMRERRRLSKVNEAFETLKRSTSSNPNQRLPKVEILRNAIRYIEGLQALLRD
+>gi|308487455|ref|XP_003105923.1| CRE-HLH-10 protein [Caenorhabditis remanei]gi|308254979|gb|EFO98931.1| CRE-HLH-10 protein [Caenorhabditis remanei]
+---TSRRVEANARERNRVQQLSRMFDELRVILPVEAEMKISKLSTLKVASAYIGYLGAIMKD
+>gi|194216475|ref|XP_001917290.1| PREDICTED: LOW QUALITY PROTEIN: oligodendrocyte transcription factor 3-like [Equus caballus]
+----QLRLKnIGEGSETSMKQLELATgKDIARSVIYphGXxXXXXXXXXXXXXARNYILMLTSSLE-
+>gi|71020467|ref|XP_760464.1| hypothetical protein UM04317.1 [Ustilago maydis 521]gi|46100369|gb|EAK85602.1| hypothetical protein UM04317.1 [Ustilago maydis 521]
+-VNANRRVAHLLSEQKRRESINTGFEDLRQAIPACRDGQDSKATILKRALEYIRELEEVVE-
+>gi|213972574|ref|NP_001135435.1| extra macrochaetae [Nasonia vitripennis]
+--------------------VAAYLGKLRDLVPDMPrSRKLSKLEVIQHVIRYICELETTLEK
+>gi|74214926|dbj|BAE33463.1| unnamed protein product [Mus musculus]
+---GERRTTHNIIEKRYRSSINDKIIELKDLVMG-TDAKMHKSGVLRKAIDYIKYLQQV---
+>gi|111119871|gb|AAN76139.2| c-myc [Todirostrum cinereum]
+SEENDKRRTHNVLERQRRNELKLSFFALRDQIPeVANNEKAPKVVILKKATEYVLSIQS----
+>gi|156555495|ref|XP_001604081.1| PREDICTED: similar to daughterless [Nasonia vitripennis]
+--EKERRQANNARERIRIRDINEALKELgRMCMAhMKSEKPQTKLGILNMAVEVIMALEQQVRE
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+T 1    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1554	601	*	*	*	1
+       0	*	*	*	*	*	*	2111	0	0	
+
+T 2    *	*	*	3139	*	*	*	*	*	*	*	*	*	*	*	2673	1478	1432	*	*	2
+       0	*	*	*	*	*	*	3637	0	0	
+
+N 3    3692	*	2928	2847	*	5161	*	*	3734	5302	*	3354	5245	4936	*	1965	3662	4976	*	*	3
+       0	*	*	*	*	*	*	4941	0	0	
+
+A 4    3454	*	5362	5252	5686	4853	*	4504	2581	*	3945	3909	3477	4804	3776	3362	4751	3285	*	5275	4
+       0	*	*	*	*	*	*	5188	0	0	
+
+D 5    2976	*	3150	2496	*	5854	5201	5226	2523	*	5999	5853	*	2733	4199	4210	6135	5458	*	6806	5
+       0	*	*	*	*	*	*	5519	0	0	
+
+R 6    *	*	6550	6601	*	*	6442	4806	2255	3463	*	5482	6209	3198	1356	5020	5512	*	*	4529	6
+       15	6624	*	0	*	*	*	5666	1000	0	
+
+R 7    *	*	*	*	*	*	6097	*	3442	*	*	*	6268	5391	223	*	*	*	*	*	7
+       0	*	*	*	*	*	*	5739	0	0	
+
+K 8    3964	*	*	3735	5857	*	*	4188	3544	2402	5765	4747	6656	3670	3582	2776	4072	3632	*	*	8
+       37	*	5294	*	*	*	*	5747	0	0	
+
+A 9    1717	*	*	3923	4975	6432	6446	*	2723	3776	*	4078	6324	4632	3914	5394	2970	5597	*	*	9
+       54	4765	*	0	*	0	*	5728	1197	1073	
+
+A 10   1314	*	*	*	*	*	1788	4049	5000	*	*	4362	*	*	3631	4879	4576	*	*	6433	10
+       0	*	*	*	*	*	*	5745	0	0	
+
+T 11   3656	5607	*	*	*	4837	*	5071	5777	6610	*	609	*	*	6095	3633	4154	*	*	*	11
+       0	*	*	*	*	*	*	5751	0	0	
+
+M 12   1983	*	4068	2805	6206	5615	*	3812	3791	3920	5005	6357	*	4228	5347	4841	5050	3125	*	*	12
+       0	*	*	*	*	*	*	5756	0	0	
+
+R 13   5288	6515	*	*	6564	5031	5705	3546	3496	4420	5172	5369	*	6898	935	4209	5195	*	6686	6980	13
+       17	6416	*	3170	170	*	*	5845	1000	0	
+
+E 14   *	*	*	82	*	*	*	*	5323	*	*	*	*	*	*	5044	*	*	*	*	14
+       0	*	*	*	*	*	*	5807	0	0	
+
+R 15   *	6545	5995	5044	*	*	5355	*	3140	*	*	*	*	3767	479	*	6126	*	*	*	15
+       23	5995	*	3000	193	*	*	5807	1029	0	
+
+R 16   *	*	3997	3441	*	6625	6168	3843	2996	4475	7026	3289	*	3130	2060	5148	3995	6944	5785	*	16
+       0	*	*	*	*	*	*	5807	0	0	
+
+R 17   *	*	*	*	*	*	5781	*	6126	*	*	*	*	*	210	4154	*	*	*	4422	17
+       0	*	*	*	*	*	*	5807	0	0	
+
+L 18   5080	5592	*	*	*	*	*	3905	6486	3997	2206	5269	*	5319	1678	6655	5539	2548	*	5242	18
+       0	*	*	*	*	*	*	5821	0	0	
+
+S 19   4696	7026	4135	3998	*	5976	3287	*	2718	4671	*	4935	*	2388	2995	3312	5115	5388	*	5506	19
+       0	*	*	*	*	*	*	5821	0	0	
+
+K 20   4045	6503	3569	3021	6533	4738	4260	6444	3006	5894	6737	2986	*	3825	4126	3381	4202	4211	*	*	20
+       0	*	*	*	*	*	*	5887	0	0	
+
+V 21   *	*	*	*	4593	*	6277	1288	*	1723	3046	*	*	*	*	6759	*	3596	*	5620	21
+       0	*	*	*	*	*	*	5905	0	0	
+
+N 22   5639	*	5639	5143	*	7266	6632	7061	3326	*	*	603	*	*	3951	4194	5044	*	*	*	22
+       0	*	*	*	*	*	*	5905	0	0	
+
+E 23   3952	*	2867	2771	*	4931	5944	*	2798	3061	5554	4678	*	3623	5182	3544	3842	6099	*	*	23
+       0	*	*	*	*	*	*	5905	0	0	
+
+A 24   1171	4933	*	4569	*	3056	6741	*	4084	6073	4232	6473	*	6653	3743	4028	4510	*	*	5424	24
+       0	*	*	*	*	*	*	5905	0	0	
+
+F 25   *	*	*	*	787	*	*	3593	*	2670	5563	*	*	*	*	*	5143	6303	*	3079	25
+       41	5143	*	0	*	*	*	5902	1123	0	
+
+E 26   3129	*	2255	2315	5326	4900	6639	4778	3617	5063	5015	4505	*	3983	6737	4169	*	4441	*	6685	26
+       0	*	*	*	*	*	*	5902	0	0	
+
+T 27   2977	5214	3610	2638	5981	4853	*	4727	3849	4604	5581	5436	6494	*	3416	3839	3462	3713	*	5706	27
+       0	*	*	*	*	*	*	5902	0	0	
+
+L 28   *	*	*	*	*	*	*	4661	*	79	*	*	*	*	*	*	*	6172	*	*	28
+       48	4935	*	0	*	*	*	5902	1125	0	
+
+K 29   4424	*	*	5820	*	5842	*	6260	2005	*	*	*	*	3508	888	*	6583	*	*	5855	29
+       0	*	*	*	*	*	*	5902	0	0	
+
+R 30   4159	6633	2866	3281	*	4619	5428	7069	3011	5664	4880	4166	*	3530	2905	2694	6112	*	*	*	30
+       11	6983	*	1585	585	*	*	5902	1000	0	
+
+S 31   3253	4132	*	5193	*	6983	3161	5281	3888	1955	4295	6579	*	5113	4305	4213	5523	3482	*	4890	31
+       0	*	*	*	*	*	*	5902	0	0	
+
+T 32   *	*	*	*	*	*	*	1605	*	1495	4143	*	6240	*	*	*	5369	2169	*	*	32
+       73	4345	*	673	1424	*	*	5902	1289	0	
+
+S 33   5132	5599	*	*	*	*	*	5143	6595	5506	6767	6108	390	*	6653	4068	5466	6469	*	*	33
+       152	3495	6469	0	*	*	*	5902	1583	0	
+
+S 34   4182	6866	4164	5562	4064	4443	4548	4169	3813	4968	5590	3275	4997	5388	5134	3555	3249	3712	6189	3963	34
+       398	2332	4554	1966	427	0	*	5908	2171	1010	
+
+N 35   5311	4257	4450	4645	4330	3354	4968	5035	5760	2481	6620	4266	2726	6739	5697	3995	5838	3852	*	4718	35
+       287	2806	4736	663	1441	1229	802	5872	1773	1189	
+
+P 36   3477	*	6490	4780	4933	3587	5415	*	4413	*	*	5245	1614	3115	4165	4119	4166	6171	*	5331	36
+       394	2125	6640	1766	502	0	*	5734	2410	1292	
+
+N 37   6693	*	2168	2886	*	2672	5456	6020	5825	5987	*	2997	5549	5244	4317	3875	4030	4278	*	*	37
+       98	4315	6028	0	*	0	*	5714	1211	1059	
+
+Q 38   5168	*	4006	3489	*	5282	*	5315	1626	6229	*	6548	*	3011	3028	4136	3592	6638	*	5291	38
+       55	4743	*	420	1985	0	*	5789	1187	1000	
+
+R 39   5685	*	5371	3889	*	*	*	*	878	*	*	5669	5053	4176	2228	6472	6069	*	*	*	39
+       50	4863	*	2346	316	*	*	5788	1122	0	
+
+L 40   3717	*	6961	*	5603	*	6432	4142	6092	1119	3722	*	3791	5155	5814	4423	6559	3430	6917	*	40
+       0	*	*	*	*	*	*	5788	0	0	
+
+P 41   3658	*	4311	*	*	*	4935	*	5809	*	*	5609	3734	*	6073	771	3019	*	*	*	41
+       40	5488	7584	0	*	*	*	5788	1061	0	
+
+K 42   *	*	*	*	*	*	*	6067	410	*	*	5195	6492	5110	3278	*	4757	6605	*	6071	42
+       0	*	*	*	*	*	0	5789	0	1000	
+
+V 43   2581	5918	*	6211	6492	5253	6830	1955	5311	2558	6227	6902	6067	*	*	4142	5335	2548	6957	7210	43
+       0	*	*	*	*	*	0	5789	0	1000	
+
+E 44   3112	*	3550	1869	*	3933	6071	5166	3903	5281	5633	5952	*	3748	7029	3258	4472	4593	*	6067	44
+       0	*	*	*	*	*	0	5789	0	1000	
+
+I 45   6241	*	5918	*	5283	*	6016	1216	6466	4852	6963	*	*	*	*	6941	1697	2965	*	*	45
+       0	*	*	*	*	*	0	5789	0	1000	
+
+L 46   6016	*	*	*	*	*	*	3655	*	226	*	6466	*	*	*	*	*	4690	*	*	46
+       0	*	*	*	*	*	0	5789	0	1000	
+
+R 47   *	*	5719	5106	*	6662	6248	*	2319	4422	*	4281	*	2905	1342	4209	4760	*	6439	*	47
+       0	*	*	*	*	*	0	5700	0	1000	
+
+N 48   4657	6430	5304	3598	5709	4541	5759	4565	2869	2004	3957	4840	*	5732	3630	3684	*	5991	*	4660	48
+       0	*	*	*	*	*	0	5700	0	1000	
+
+A 49   283	*	*	*	*	*	*	*	*	*	*	*	*	*	5807	4094	4659	4010	*	*	49
+       0	*	*	*	*	0	*	5824	0	1000	
+
+I 50   3603	6363	*	*	*	*	6481	1076	5109	3872	4620	5830	*	*	4564	5375	3102	3612	*	*	50
+       0	*	*	*	*	*	*	5888	0	0	
+
+R 51   3980	5983	3432	2064	*	4682	5692	*	3112	4645	6512	3000	*	4511	4516	3804	4549	5129	6854	*	51
+       0	*	*	*	*	*	*	5888	0	0	
+
+Y 52   *	6127	*	*	5951	*	4668	*	*	4423	*	*	*	*	5613	*	*	5673	6772	261	52
+       25	5835	*	0	*	*	*	5888	1027	0	
+
+I 53   *	5951	*	*	*	*	*	177	*	5242	5812	*	*	*	*	*	*	4188	*	*	53
+       0	*	*	*	*	*	*	5888	0	0	
+
+E 54   3888	6642	5078	3912	*	3618	4640	6357	2871	3597	4929	3653	5270	2853	3113	4825	5245	6919	6481	*	54
+       0	*	*	*	*	*	*	5888	0	0	
+
+G 55   4454	*	4962	3920	3757	4982	3003	5455	4153	4341	4302	6522	*	3920	5956	3922	3252	5371	*	2655	55
+       0	*	*	*	*	*	*	5888	0	0	
+
+L 56   *	*	*	*	*	*	*	5407	*	170	3840	*	*	*	*	5829	*	*	*	*	56
+       0	*	*	*	*	*	*	5796	0	0	
+
+Q 57   6931	*	4971	2786	*	4589	6053	5544	4652	4620	6206	4725	*	1539	4696	3661	2802	*	*	*	57
+       0	*	*	*	*	*	*	5781	0	0	
+
+A 58   3756	6878	2731	2693	*	4568	5194	*	2948	4761	5582	4161	*	3026	4558	3867	4677	6856	5794	*	58
+       0	*	*	*	*	*	*	5770	0	0	
+
+L 59   5130	4979	5853	6435	5116	*	5121	3412	3685	2446	3491	*	*	3902	4766	4305	3744	2556	*	6608	59
+       0	*	*	*	*	*	*	5509	0	0	
+
+L 60   *	*	*	*	*	*	*	3586	*	487	5835	*	*	*	*	*	*	2429	*	*	60
+       0	*	*	*	*	*	*	5462	0	0	
+
+R 61   4237	*	3549	2076	*	5759	4649	*	4911	*	5196	3277	*	2360	2552	5477	*	6101	*	*	61
+       0	*	*	*	*	*	*	5410	0	0	
+
+D 62   *	*	1626	2802	*	1790	4990	*	4538	*	*	*	*	*	*	4261	3098	*	*	*	62
+       0	*	*	0	*	*	*	4908	0	0	
+
+//
+�HHsearch 1.5
+NAME  c5d10a25f4692ab6cc7c072c5ac3efcd
+FAM   
+FILE  c5d10a25f4692ab6cc7c072c5ac3efcd
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:31:27 2013
+LENG  235 match states, 235 columns in multiple alignment
+FILT  183 out of 1906 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  7.5 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCEECCCCCCCCCCCCHHHHHHHHHHEEECCCCCCCCCCEEEEHHHHCCCHHHHHHHHHHHHHHHHHHCCCCCEEEEEECCCHHHHHHHHHHHCCCEEE
+EEEECCCCCCCCCHHHHHHHHCCCCCCEEEEECCCCCCCCEEEEEEEEHHHHHHHHHHHHHHHHCCCEEEEEEEEEECCCCCHHHHHHHHHHCCCCCCCE
+EEEEEECCCCCCCCCHHHCCCCEEEEECHHHHCCC
+>ss_conf PSIPRED confidence values
+9700217661413674759999998522758999999981599747864899999999999999988615698799998047769999999984999899
+9950578764101244444405553433998357678999999996471030999999999998699399999999866765899997542012479868
+99999464461108610337970999856853269
+>Consensus
+xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxgxpxyxdxxxlxxdpxxxxxlxxxlaxxxxxxxxxxdxIvxvxxxGxxlAxxlAxxlxxpxxx
+irkxxxxxxxxxxxxxxrxxxxxxxxxxxxxxxxxxxxgxxVlLVDDvitTGxTlxxaxxxLxxxGaxxvxvxvlxxxxxxxgxxxlxxxxxxxxxgvxx
+xslxxxxxxxxxxxxxcxxxxxxxxxxxxxxxxxx
+>c5d10a25f4692ab6cc7c072c5ac3efcd
+MSLKEIGPNSLLLEDSHSLSQLLKKNYRWYSPIFSPRNVPRFADVSSITESPETLKAIRDFLVERYRTMSPAPTHILGFDARGFLFGPMIAVELGIPFVL
+MRKADKNAGLLIRSEPYEKEYKEAAPEVMTIRHGSIGKNSRVVLIDDVLATGGTALSGLQLVEASGAEVVEMVSILTIPFLKAAERIHSTAGGRYKNVRF
+IGLLSEDVLTEANCGDLNDYTGPRVLSCSDLLVNQ
+>gi|335437281|ref|ZP_08560063.1| adenine phosphoribosyltransferase [Halorhabdus tiamatea SARL4B]gi|334896411|gb|EGM34562.1| adenine phosphoribosyltransferase [Halorhabdus tiamatea SARL4B]
+--------------RET-LAAEIESRIDRD-EE-------GYVDNTAVVFDQSLLDLVAGVAAETFEL--ERPDVVLTAATDGITIAGAMARHFDVPVAY
+AKKS-RETGV----SEFVEARqrltpG--IEITYSLPASALEDGDDVLLVDDFVRSGNTQALLLELADRAGATVSGVFTLIAVGEDG-LASVRQS-----
+TDAPVVAFTTLS----------------------------
+>gi|319891753|ref|YP_004148628.1| ComF operon protein C [Staphylococcus pseudintermedius HKU10-03]gi|317161449|gb|ADV04992.1| ComF operon protein C [Staphylococcus pseudintermedius HKU10-03]gi|323465078|gb|ADX77231.1| competence protein F, putative [Staphylococcus pseudintermedius ED99]
+----------------------------------------------KFLNDVALAKVFAYYIRVkLVK---D--ELIVPMPssqdhdlQRTFNPVQTILH
+HLKLPYVAClKMRPRSKQFALS-RSERYAV----DNPIYFDSDISLENKSILLIDDIYTTGHTAHCAGNVLLQQKVRKLSMLTFAR--------------
+--------------------------------------------
+>gi|315924848|ref|ZP_07921065.1| orotate phosphoribosyltransferase [Pseudoramibacter alactolyticus ATCC 23263]gi|315621747|gb|EFV01711.1| orotate phosphoribosyltransferase [Pseudoramibacter alactolyticus ATCC 23263]
+------------------------SKVLTF-GDFITkSGrkTPYFVN-TGNYKTSEQIAKLGQYYAACIKNHLDGIDFLYGPAYKGIPLVITAAASLyrd
+hhvTIPYCFNRKEAK-------------DHG--EGGHI-I-GYRPQNGDTAMIVEDVITAGTSVKETVPLLKSlaEDVKVARLIISVDRMEKGdGgKTAI
+EEI--ADRFGIATTPIVTVKEIVA--CLHNREVDGRVVI---------
+>gi|217033895|ref|ZP_03439319.1| hypothetical protein HP9810_870g27 [Helicobacter pylori 98-10]gi|216943658|gb|EEC23103.1| hypothetical protein HP9810_870g27 [Helicobacter pylori 98-10]
+----------------------------------------AYSEIEELIKSKYvligsrILPLLSQkagaEFVKILQE--KgltTPLYGIAIDdkiKSFY
+SHSAALLKGFCQGNLkptYgrLRANNTISYAGKS-LEFRANNP----RDFTFKG---DENLDYFLLDDIITTGTTLKEALKYLKNLNIKAHFAIALCSAD
+--------------------------------------------------------
+>gi|309357838|emb|CAP35094.2| hypothetical protein CBG_17449 [Caenorhabditis briggsae AF16]
+-------------------------------------------------------------------------AIIVAKSPGVMNKATSYADRLRLGVAV
+IHGEQKdeeesgledgrqsPPpnvTS---------------YDflpaqeskqkpPLTVV-GDV-GGRIAIMVDDIIDDAQSFVAAAEVLKARGAYKIYVI
+ATHGVLSSMPPLFSKPPRSQsfspetiRKRKPTLFQVIVTNTVPHDlQKmR-CHK---IKTVDVSLMIC--
+>gi|333374604|ref|ZP_08466444.1| purine/pyrimidine phosphoribosyltransferase [Kingella kingae ATCC 23330]gi|332975242|gb|EGK12142.1| purine/pyrimidine phosphoribosyltransferase [Kingella kingae ATCC 23330]
+------------------------------------------------------IHHTVKKIAEQIQASGIQYDAMIAIGGGGFIPARMLRSFVDVPIYA
+VTTAYYLDESG---SGETADEI-QKVQWIDPIPEK-IVGKNILVVDEVDDSRVTAEFVLRELQKENFTEVGFAVIHNKIKE-KRGVIPE-------GVHY
+YAGLEVQ----------------------------
+>gi|339249839|ref|XP_003373907.1| hypoxanthine-guanine phosphoribosyltransferase [Trichinella spiralis]gi|316969883|gb|EFV53918.1| hypoxanthine-guanine phosphoribosyltransferase [Trichinella spiralis]
+----------------------------------------FKPFLDRVLIPFNLIDERISALADMLHQKYlDEDLVLVCVLKGAFRFFSSLYDKLVRirn
+nctgNLyyDFVRLQ-----------SYVDTKS---TGvvQVCMFKpS--FRRKHIVIVEDIVESGKTLEKLNSLVESYEPLSVRYVTLLTKR--------
+------------------------------------------------
+>gi|313905981|ref|ZP_07839335.1| conserved hypothetical protein [Eubacterium cellulosolvens 6]gi|313469165|gb|EFR64513.1| conserved hypothetical protein [Eubacterium cellulosolvens 6]
+-----------------------------------------------------MFHALGKKVGEACDG----VGLVIGFAETATAVGMAVAEEMSDDCIY
+IHTTReLVPEENDW-VEFCEEHSHAVEQKLSGSHldQWIKSCKSIVFVDDEISTGKTLINIVSRLKEQypEieEKRLVAASIINRVSEVNEQKMRD----
+--YGLECVSLLKLEE---------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1565	0	0	
+
+S 2    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	2
+       0	*	*	*	*	*	*	1565	0	0	
+
+L 3    *	*	*	*	*	*	*	*	*	925	*	*	*	*	1079	*	*	*	*	*	3
+       0	*	*	*	*	*	*	1565	0	0	
+
+K 4    *	*	*	*	*	*	*	*	925	*	*	*	*	*	*	*	*	*	*	1079	4
+       0	*	*	*	*	*	*	1565	0	0	
+
+E 5    *	*	1079	925	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	5
+       0	*	*	*	*	*	*	1565	0	0	
+
+I 6    1079	*	*	*	*	*	*	925	*	*	*	*	*	*	*	*	*	*	*	*	6
+       925	1079	*	2322	322	*	*	1565	1266	0	
+
+G 7    *	*	*	*	*	925	1079	*	*	*	*	*	*	*	*	*	*	*	*	*	7
+       0	*	*	*	*	*	*	1565	0	0	
+
+P 8    *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	8
+       0	*	*	*	*	*	*	1565	0	0	
+
+N 9    *	*	*	*	*	*	1671	*	1523	*	*	1565	*	*	*	*	*	*	*	*	9
+       0	*	*	*	*	*	*	2152	0	0	
+
+S 10   *	*	*	*	*	*	1671	*	1523	*	*	*	*	*	*	1565	*	*	*	*	10
+       0	*	*	*	*	*	*	2152	0	0	
+
+L 11   *	*	*	*	1671	*	*	*	*	1565	*	*	*	*	*	*	*	*	*	1523	11
+       0	*	*	*	*	*	*	2152	0	0	
+
+L 12   *	*	*	*	1924	*	*	2073	*	1945	*	*	*	*	*	*	2065	*	*	*	12
+       0	*	*	*	*	*	*	2603	0	0	
+
+L 13   *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	13
+       0	*	*	*	*	*	*	2603	0	0	
+
+E 14   1069	*	*	1945	*	*	*	*	*	*	*	*	1924	*	*	*	*	*	*	*	14
+       0	*	*	*	*	*	*	2603	0	0	
+
+D 15   3447	*	2034	*	*	*	*	*	*	1366	*	3489	3469	*	3370	*	*	*	*	*	15
+       0	*	*	*	*	*	*	3920	0	0	
+
+S 16   *	*	3489	3499	*	*	*	*	2486	3083	3574	*	*	*	*	1568	3256	*	*	*	16
+       0	*	*	*	*	*	*	4083	0	0	
+
+H 17   *	*	*	2656	*	*	1692	3998	*	3698	*	3461	*	3590	*	*	2694	3966	*	*	17
+       123	*	3614	*	*	*	*	4231	0	0	
+
+S 18   *	*	1658	1775	3584	*	*	*	*	*	*	*	3265	*	*	2297	*	*	*	*	18
+       0	*	*	*	*	0	*	4077	0	1022	
+
+L 19   *	*	3348	*	*	*	*	2775	*	719	3774	*	*	*	*	*	*	*	*	3732	19
+       109	3774	*	2000	415	*	*	4360	1003	0	
+
+S 20   2060	*	4055	*	3362	3956	*	*	*	3553	*	*	*	*	*	2641	3801	3779	3682	3831	20
+       0	*	*	*	*	*	0	4337	0	1003	
+
+Q 21   3719	*	2813	3801	*	*	*	*	2005	*	*	3831	*	3298	*	*	3362	3779	*	3074	21
+       0	*	*	*	*	*	0	4337	0	1003	
+
+L 22   *	*	*	2060	2685	*	*	*	3779	1745	*	*	*	*	3362	*	*	2877	*	*	22
+       96	3956	*	2276	334	0	*	4337	1079	1003	
+
+L 23   *	*	*	*	4078	*	*	2380	*	684	4040	*	*	*	*	*	*	3934	*	*	23
+       0	*	*	*	*	*	*	4661	0	0	
+
+K 24   2910	*	*	4160	*	3922	3816	3092	2368	2562	*	*	*	*	2368	*	*	*	*	*	24
+       0	*	*	*	*	*	*	4863	0	0	
+
+K 25   3051	*	3324	1983	*	*	*	*	2959	*	*	3057	*	*	4284	3084	3203	*	*	*	25
+       0	*	*	*	*	*	*	5034	0	0	
+
+N 26   4241	*	*	*	*	4298	*	*	3243	2844	3928	2538	4144	3917	2049	4349	*	*	*	*	26
+       0	*	*	*	*	*	*	5185	0	0	
+
+Y 27   4137	*	*	*	2894	*	*	1558	*	4358	*	*	*	*	*	*	*	1689	*	3183	27
+       78	*	4246	*	*	*	*	5384	0	0	
+
+R 28   4399	*	3427	3661	4196	*	*	4460	4412	4209	*	*	*	3873	1345	*	4121	4054	*	*	28
+       0	*	*	*	*	*	0	5368	0	1266	
+
+W 29   4087	*	*	*	*	*	*	4409	3420	4196	*	4412	*	4333	2857	*	3518	3494	1575	*	29
+       70	4409	*	2000	415	0	*	5368	1031	1266	
+
+Y 30   4988	*	3385	3899	2033	*	*	3630	4716	*	*	*	*	*	*	*	*	2217	*	2136	30
+       3388	*	145	*	*	*	*	5742	0	0	
+
+S 31   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	31
+       0	*	*	1000	1000	105	3834	1629	1266	2853	
+
+P 32   4775	*	4864	3135	*	2272	*	*	4040	*	*	*	1398	*	4491	4521	3645	*	*	*	32
+       50	*	4864	*	*	0	*	5987	0	1087	
+
+I 33   *	*	1403	2446	*	3704	4410	4610	5227	*	*	3223	4527	*	*	3373	*	*	*	*	33
+       356	4888	2437	2000	415	*	0	6158	1003	1038	
+
+F 34   *	*	*	*	1297	*	2990	*	4721	3644	*	4474	*	3331	*	*	*	3416	4974	3656	34
+       0	*	*	*	*	*	0	6115	0	1519	
+
+S 35   *	*	*	*	*	3284	*	5068	3691	*	*	*	1399	3579	*	4501	2549	3158	*	*	35
+       188	3030	*	3742	112	*	0	6115	1132	1519	
+
+P 36   *	*	*	4212	4721	2407	2804	4651	3188	2772	*	*	4501	3960	2540	*	*	*	*	*	36
+       438	1934	*	945	1057	*	0	6115	1565	1519	
+
+R 37   3653	*	4440	3147	*	*	3005	*	4631	5285	4373	*	4058	2891	4737	1992	*	4682	*	*	37
+       52	*	4834	*	*	1993	417	6458	0	1519	
+
+N 38   *	*	4694	5452	*	612	3652	*	*	*	*	3828	*	*	4790	4113	*	*	4630	*	38
+       260	2598	*	1000	1000	*	0	6590	1508	1429	
+
+V 39   5216	*	5580	3348	5516	*	4270	2210	4682	4905	*	*	*	5306	3955	2261	4575	3060	*	4983	39
+       1422	2985	998	1532	612	*	0	6747	1252	1429	
+
+P 40   4159	*	*	4098	*	4408	*	*	5141	*	*	2826	580	*	*	*	*	*	*	*	40
+       0	*	*	*	*	45	5026	5792	0	2579	
+
+R 41   4076	*	4149	3863	3733	4118	5016	3044	*	3743	5059	5647	6293	5127	3516	4417	4277	4146	5147	3410	41
+       42	*	5117	*	*	*	0	7937	0	1000	
+
+F 42   *	*	*	*	1817	*	4347	5359	5752	4140	*	*	*	*	*	6166	*	3931	4484	1174	42
+       24	*	5940	*	*	*	0	8016	0	1142	
+
+A 43   4878	4474	5909	5931	3851	*	*	2019	5784	3383	5051	6517	*	5842	3402	5295	*	2234	6217	4231	43
+       0	*	*	*	*	397	2057	8022	0	1205	
+
+D 44   4560	*	1013	3369	*	*	6085	*	*	*	*	2952	6007	4222	5947	4531	5157	*	*	3952	44
+       61	*	4589	*	*	*	0	8228	0	1003	
+
+V 45   4533	3844	6194	*	6100	6332	*	2877	3555	2628	3144	3728	6026	5677	6219	5287	5017	3144	4599	5989	45
+       0	*	*	*	*	337	2262	8195	0	1246	
+
+S 46   3973	*	4552	*	5426	4301	*	*	2822	4011	4992	4971	*	5302	2118	2441	3897	5361	5530	*	46
+       38	*	5261	*	*	0	*	8502	0	1003	
+
+S 47   4452	*	3861	3052	6024	4436	5006	6504	2884	4261	*	3602	4093	4464	3235	3180	4380	6681	*	6260	47
+       13	6798	*	3459	138	948	1054	8714	1024	1048	
+
+I 48   3843	6992	*	6268	4019	6269	6324	2534	*	1723	6414	*	6713	6283	*	5021	4961	2396	*	4062	48
+       19	*	6286	3585	126	0	*	8750	1000	1000	
+
+T 49   3987	5344	6692	*	3530	5945	6456	3693	4962	1645	4597	5122	6709	5632	6511	6384	3633	4122	6835	3480	49
+       25	6769	6974	2807	222	*	0	8889	1000	1002	
+
+E 50   3677	5171	*	4232	4627	3217	5037	4100	4467	3154	6931	3927	6485	4419	4456	3221	4860	3639	*	4406	50
+       0	*	*	*	*	*	0	8935	0	1039	
+
+S 51   6566	6877	1635	3542	6528	*	4973	*	4237	*	6874	3193	5963	5023	3881	3262	4167	5316	6035	4484	51
+       46	*	4996	*	*	*	0	9023	0	1039	
+
+P 52   3768	6861	*	4630	6862	4169	7352	5505	3814	5137	6003	6854	1329	4539	5675	3887	4553	5381	4336	5862	52
+       27	*	5763	*	*	1497	631	9055	0	1220	
+
+E 53   3397	6586	3596	2272	*	4625	3718	7109	3788	5056	7327	5401	6069	4966	3767	3724	3913	4604	*	4467	53
+       28	5676	*	2384	307	*	0	9157	1059	1219	
+
+T 54   3660	*	5086	4950	3924	3778	6618	3984	5135	1952	5065	6058	6789	3711	4987	4340	5834	3023	*	6922	54
+       0	*	*	*	*	0	*	9248	0	1219	
+
+L 55   2555	7128	*	6918	3299	3805	7464	3113	*	2200	4982	6822	7043	*	3188	5011	6270	3983	*	4734	55
+       0	*	*	*	*	*	*	9358	0	0	
+
+K 56   4389	*	3852	2929	7152	4601	3719	5109	3378	5136	7792	5312	6036	3239	2418	4138	5683	5451	*	4763	56
+       43	6178	6025	3348	149	*	*	9384	1061	0	
+
+A 57   3391	*	4201	2709	5074	5517	6712	4260	3668	2599	*	6222	4409	3660	3652	7419	5308	4186	7344	5100	57
+       0	*	*	*	*	*	0	9404	0	1042	
+
+I 58   3435	4713	7193	*	4251	7177	7185	2595	6191	1717	3796	*	6570	6319	6266	7556	5050	2838	5991	6179	58
+       8	7413	*	1585	585	*	0	9411	1000	1042	
+
+R 59   1726	3987	*	7170	7024	2194	*	3595	5517	5062	4511	*	6830	7385	5672	3971	4430	3670	*	*	59
+       0	*	*	*	*	1276	768	9423	0	1042	
+
+D 60   4241	7636	3010	2771	5874	5367	5023	5698	3245	5297	6138	4419	5151	3297	3073	4258	4347	7031	6165	5914	60
+       28	5713	*	2000	415	0	*	9430	1063	1000	
+
+F 61   3534	5355	4296	3482	4640	4537	5607	3655	3730	3009	5701	6056	5802	4203	3334	5055	5001	4319	4856	6102	61
+       10	7171	*	2000	415	*	*	9458	1000	0	
+
+L 62   4695	*	7022	*	2890	6497	*	2571	*	1270	3244	*	*	6926	*	*	*	3714	6964	5212	62
+       0	*	*	*	*	*	*	9458	0	0	
+
+V 63   1523	5081	6280	5400	7547	3930	*	4460	3841	3939	7172	6168	*	4217	5025	4147	6197	3292	4956	5324	63
+       9	7291	*	0	*	*	*	9458	1000	0	
+
+E 64   2816	6581	3293	2432	7334	4956	4643	5647	3530	4751	7634	5271	5152	3733	3718	3842	4891	5824	7200	*	64
+       11	7043	*	2000	415	*	*	9458	1006	0	
+
+R 65   3364	*	6343	4322	4259	5629	3738	4601	2829	3358	5917	5489	6457	3511	3003	7109	6525	4036	6340	4066	65
+       12	*	6964	*	*	*	*	9458	0	0	
+
+Y 66   4218	7250	6935	6916	2633	7153	6124	2160	6999	2108	4769	6063	7104	*	5507	6132	6661	3887	6225	3457	66
+       71	5823	5031	1810	484	0	*	9441	1145	1000	
+
+R 67   2608	7010	3902	3657	7019	4633	5791	5255	2986	3746	7621	5278	3927	3931	3249	4439	5290	5375	*	5270	67
+       139	3972	5146	1272	771	3016	190	9419	1398	1293	
+
+T 68   3883	*	3520	2854	5118	3400	7022	6097	3079	5210	6192	4096	3387	3913	4275	4052	5172	5380	7873	6219	68
+       1085	5908	966	656	1452	*	0	9387	1038	1459	
+
+M 69   4280	5973	3332	3368	5120	5113	3560	5234	4352	3418	4332	3079	*	6257	*	3074	6353	4888	3936	6196	69
+       710	1868	3126	723	1343	5843	25	8638	2137	4943	
+
+S 70   *	4975	3155	*	3630	2475	5949	4768	5952	3080	5435	3841	5844	5146	4894	4896	*	4963	3279	3897	70
+       354	2417	5044	577	1601	271	2547	8482	1555	5107	
+
+P 71   3946	6850	4132	3513	4280	5365	4867	4853	3658	3285	5515	4827	4164	4064	3584	6308	4210	4040	5119	4533	71
+       56	5222	6449	975	1026	301	2409	9275	1333	1967	
+
+A 72   4773	*	2501	3256	*	3241	7547	*	2928	5685	7598	3679	3450	4551	3378	4311	5262	5483	*	7019	72
+       113	4766	4702	910	1096	0	*	9409	1193	1272	
+
+P 73   3613	7148	4929	5526	2786	*	*	2843	4881	4974	*	4206	2532	6263	5807	4787	4365	3191	7007	4423	73
+       99	4834	4990	727	1337	265	2575	9396	1294	1264	
+
+T 74   4320	*	1413	4049	*	5918	4825	6259	6305	5573	*	4070	3990	5265	5679	4594	3207	3771	7232	5808	74
+       17	6416	*	1585	585	348	2220	9425	1065	1194	
+
+H 75   2788	5570	6870	*	4360	4680	4908	3506	3842	2566	6049	4746	7605	5224	5707	6053	3973	2762	7288	4573	75
+       9	7320	*	0	*	0	*	9295	1000	1000	
+
+I 76   5464	*	*	*	3982	*	*	1445	*	2923	5577	*	*	*	*	*	7419	1404	6613	*	76
+       18	6311	*	1541	608	*	*	9307	1028	0	
+
+L 77   3223	4583	*	*	5731	4142	6527	2391	*	2540	7291	*	*	*	*	6171	5034	1509	*	*	77
+       0	*	*	*	*	*	*	9307	0	0	
+
+G 78   2406	4384	*	*	6353	1574	*	*	*	4996	*	7062	2715	*	*	3588	3270	5419	*	6154	78
+       9	7286	*	0	*	*	*	9317	1001	0	
+
+F 79   4861	6432	*	*	5992	*	*	1973	6149	2865	4248	*	2831	*	*	5881	4662	1850	*	7556	79
+       80	4217	*	2496	281	*	*	9317	1347	0	
+
+D 80   2677	*	3298	2575	*	4575	*	*	5331	4218	6301	5567	1771	6418	6548	4507	4597	7237	6316	*	80
+       332	2533	4925	2575	265	*	*	9294	2167	0	
+
+A 81   2972	*	5595	3440	6738	4730	6410	4977	3963	4656	5727	5216	4460	4620	3398	3557	2626	4492	*	4400	81
+       21	6106	*	1804	487	*	0	9274	1051	1257	
+
+R 82   4554	7136	5479	5772	7017	1571	*	*	4146	4756	6108	7862	6997	6052	2000	3309	3962	6041	*	*	82
+       8	7554	*	0	*	2140	371	9263	1000	1311	
+
+G 83   3102	6458	6132	7442	*	675	7181	7185	*	*	*	7061	6193	6622	4912	3586	5229	4737	*	*	83
+       35	5398	*	2400	303	*	0	9281	1099	1227	
+
+F 84   3618	*	6743	7391	2573	*	6232	2558	6836	3300	4859	7349	5879	*	4303	5341	5027	2754	5426	3229	84
+       370	2145	*	1907	447	*	0	9281	2511	1227	
+
+L 85   3955	7492	4863	5061	5538	5582	6093	3559	4956	2818	5797	5121	2169	4684	5545	4385	4096	3691	5372	6341	85
+       0	*	*	*	*	0	*	9268	0	1280	
+
+F 86   4706	7730	*	*	2966	7064	4424	2964	6217	1665	5124	*	3880	5949	4545	*	5952	3352	5194	5576	86
+       8	*	7574	*	*	*	*	9310	0	0	
+
+G 87   977	5778	*	*	6901	2377	*	5476	6948	5931	7431	6335	6341	*	5853	3861	4557	3903	*	*	87
+       16	*	6535	*	*	*	0	9311	0	1000	
+
+P 88   3078	7856	4424	3582	6352	3889	5023	4954	4368	4398	5702	6061	5872	4198	3428	3381	3243	4110	6874	4577	88
+       44	5048	*	0	*	662	1442	9338	1413	1107	
+
+M 89   2344	7871	5308	3123	5012	3915	5069	3987	6032	4174	4172	5610	4168	4278	5044	4012	5158	4363	6139	4982	89
+       16	*	6535	*	*	0	*	9311	0	1000	
+
+I 90   4827	6765	*	*	4608	7068	*	2491	7063	1454	4400	*	*	*	*	*	5039	2080	6208	5116	90
+       7	7774	*	650	1463	0	*	9337	1087	1045	
+
+A 91   1038	3996	*	5994	7382	4294	7386	6577	6949	3961	6294	6863	*	5308	6945	2419	5886	5042	*	*	91
+       24	*	5949	*	*	*	*	9310	0	0	
+
+V 92   3921	*	3784	3228	5983	5978	5603	5394	3319	3130	4863	5646	5365	3903	2630	3718	*	5387	6265	4498	92
+       16	7862	7167	402	2041	0	*	9332	1095	1091	
+
+E 93   2692	6822	6388	3130	5255	4740	4727	4095	3259	3499	6347	5954	*	5033	3375	4660	5692	3489	*	4208	93
+       67	6036	5053	2150	368	937	1066	9299	1133	1044	
+
+L 94   3833	6074	*	*	4193	5214	7485	3597	7514	1108	4536	6875	7170	7135	5576	5190	3932	4637	6234	4555	94
+       61	4809	7506	1601	577	2651	250	9308	1536	1253	
+
+G 95   4640	*	3448	4763	*	1742	5366	*	3112	6429	*	2684	5349	4561	3860	4011	5173	*	*	*	95
+       120	4086	5593	2499	281	2389	306	9304	1462	1249	
+
+I 96   3798	5631	6729	5518	5697	7567	*	2746	3042	1997	5318	6025	*	6169	4553	4838	5232	2847	6342	5548	96
+       46	5001	*	1967	426	*	0	9308	1191	1371	
+
+P 97   3963	*	4355	3418	6898	4403	6260	6924	3996	7840	*	5241	1261	6089	3363	4640	4595	6333	*	*	97
+       166	3303	7061	992	1009	373	2134	9308	1981	1371	
+
+F 98   5462	5671	7036	5526	2575	7845	5377	3645	7325	2103	4292	5668	6504	5792	7045	5461	5434	3120	6262	2923	98
+       132	3667	6798	975	1025	*	0	9292	1603	1084	
+
+V 99   2805	6824	4203	4402	4481	4372	5687	3043	5004	2628	6633	*	*	7527	7466	4635	4887	2287	7347	6216	99
+       132	3667	6840	1136	876	606	1543	9289	1531	1155	
+
+L 100  4248	6614	3827	5216	3146	4912	6025	3030	6274	2792	5631	7531	3671	*	6563	3659	5372	3994	6405	3238	100
+       317	2517	5479	1120	889	510	1748	9309	2407	1130	
+
+M 101  3240	6901	7354	7435	4860	*	5311	2407	4478	2517	4560	7456	5633	6491	5518	4737	4615	2282	*	5574	101
+       118	4071	5715	237	2721	1346	721	9309	1520	1208	
+
+R 102  4958	*	5138	4064	*	4900	4113	*	2885	4656	6270	6421	6859	4652	1416	4477	5565	4371	7588	4443	102
+       22	8005	6447	2000	415	2508	279	9250	1000	1260	
+
+K 103  4361	5355	6217	6428	*	5302	6115	4616	1620	6236	5001	6076	5975	4611	2908	4139	3918	3869	5308	5058	103
+       131	3837	5873	537	1686	1888	454	9259	1547	1292	
+
+A 104  3581	6205	3745	3277	6272	3480	4303	4484	3148	5879	8012	3881	5538	5076	3658	3141	4579	5490	*	5813	104
+       227	4024	3571	831	1192	1651	553	9257	1392	1385	
+
+D 105  3597	*	4119	4907	*	2830	5758	5268	3590	4118	6731	5177	3886	4629	2789	4055	4798	4915	*	3614	105
+       120	4212	5278	766	1279	605	1545	9143	1391	2226	
+
+K 106  4760	*	5008	3928	6063	3587	5025	5376	2145	5575	6899	4479	4682	6735	3419	4138	2884	5259	5937	4778	106
+       306	4736	2703	2761	230	3657	119	9219	1567	1714	
+
+N 107  3648	*	5478	3343	4045	3981	6191	4215	3610	2873	6217	5167	3965	5986	4252	4397	4653	3383	*	4929	107
+       248	5144	2944	1000	1000	2881	210	9077	1121	3142	
+
+A 108  4239	6639	4084	3949	5344	4687	5510	5999	3403	6740	*	5446	2188	6868	4708	3195	3800	3981	6662	3944	108
+       310	2836	4235	1768	502	3469	137	9007	1996	3640	
+
+G 109  3808	*	5413	3614	5548	2180	5446	6886	5491	3815	6548	4907	4931	2407	4004	4727	4272	6566	*	5109	109
+       63	6887	4863	0	*	3078	182	8983	1035	3715	
+
+L 110  3287	6847	3338	3599	5085	4887	4781	5423	3555	4731	6642	5575	3811	4013	4427	2705	5546	4256	6561	6213	110
+       219	*	2827	*	*	4056	89	9345	0	3655	
+
+L 111  4863	5239	4161	3969	4388	3365	5718	3854	3786	4764	6680	5203	5533	4885	4300	3805	2604	3617	*	5923	111
+       18	*	6301	*	*	5409	34	9205	0	4557	
+
+I 112  4631	*	6738	4966	3739	5048	6696	2831	3691	2021	5359	6796	7183	5153	4766	6012	6088	2732	*	4228	112
+       127	6968	3714	0	*	4965	47	9187	1000	4528	
+
+R 113  4442	*	4138	4150	6015	4378	5010	4793	4820	6291	6907	3581	5255	4059	3144	2140	3274	5560	6556	6834	113
+       1841	5154	530	0	*	6707	14	9118	1067	4725	
+
+S 114  3475	*	3505	3659	*	4905	*	4878	*	*	*	2090	4948	3929	3457	3004	3367	5065	*	*	114
+       0	*	*	*	*	1301	751	7150	0	6625	
+
+E 115  4334	6552	5170	3008	5530	3748	*	3454	3457	4092	6616	5281	6262	4240	2683	3426	5615	3847	*	6609	115
+       35	5403	*	630	1499	2248	341	8919	1035	4961	
+
+P 116  3810	6611	4345	2608	6061	4916	5538	5242	2663	5275	*	5281	5417	4040	4462	3320	3476	4198	5716	7207	116
+       21	7156	7090	2000	415	4207	80	9143	1266	4332	
+
+Y 117  3965	*	4193	2682	3390	5383	3681	6877	4180	6421	5435	5460	5219	3898	4416	4643	5920	4791	*	2526	117
+       89	4226	7246	2070	393	4721	56	9220	1223	4418	
+
+E 118  4667	*	4483	4699	7125	5697	6841	4938	3839	5145	7347	*	4470	4909	1434	2963	4147	4329	*	5480	118
+       19	7125	7325	0	*	4437	68	9275	1000	4349	
+
+K 119  3999	*	4329	3632	4305	5836	5662	4679	2911	2500	4749	4773	4638	4294	3920	4460	6321	4189	6957	5735	119
+       150	5449	3715	0	*	1664	547	9297	1085	4278	
+
+E 120  2905	*	2953	2829	6775	4688	7158	7005	4071	4536	7215	4570	4858	4108	4095	3837	2923	5575	6852	*	120
+       133	*	3509	*	*	2114	379	9358	0	3706	
+
+Y 121  4245	*	5248	3576	6792	*	2707	5562	3681	4495	*	2624	*	4911	4613	4333	4099	4047	6764	3089	121
+       229	4704	3203	2373	309	1785	494	9284	1580	3528	
+
+K 122  4459	*	5925	6202	5869	1480	6949	3704	4591	3017	5897	4898	5078	4741	5466	3645	7242	4009	6570	*	122
+       2657	*	249	*	*	5694	28	9154	0	3395	
+
+E 123  *	*	3449	2146	*	3486	4030	*	3314	*	*	*	*	*	3560	2341	3342	4300	*	*	123
+       2191	1128	1629	2258	338	5879	25	5940	1446	6829	
+
+A 124  2772	*	*	2524	*	4351	*	*	*	*	*	*	*	2825	2456	2005	4099	*	*	*	124
+       0	*	*	*	*	1804	487	5702	0	6941	
+
+A 125  3511	*	3994	4493	5065	*	5840	4370	3208	3913	5082	5851	5611	5091	2528	3915	3243	3781	*	5634	125
+       0	*	*	*	*	233	2743	8120	0	5825	
+
+P 126  4357	*	4101	3649	*	3180	6039	4703	3343	5107	5567	4808	4069	4212	3606	3477	3740	3701	6011	6352	126
+       83	6146	4591	1792	492	1225	806	9226	1218	1928	
+
+E 127  4465	*	3415	3673	*	2728	4670	6021	3844	5880	6268	2950	5874	3536	4099	3360	5354	4559	*	5499	127
+       21	6108	*	3512	132	2189	357	9220	1232	1900	
+
+V 128  2749	*	6236	3951	5280	8258	5185	5085	3703	4744	5714	5176	4190	3519	3889	3506	3924	3014	6172	5296	128
+       45	6552	5659	2376	309	499	1774	9251	1080	1698	
+
+M 129  7119	*	7476	6619	1933	7042	*	2413	5858	2130	3944	7554	6724	*	5297	6757	5208	3363	6785	5249	129
+       226	7002	2868	719	1350	3567	127	9317	1089	1394	
+
+T 130  3907	*	4474	2580	5189	5486	4771	4091	3831	5269	6755	6454	7171	4107	4299	3267	3830	3573	6019	3842	130
+       65	*	4501	*	*	1912	446	9162	0	2656	
+
+I 131  6088	6170	*	*	3454	4009	6396	2852	6994	1929	4485	7494	5289	*	5077	7335	6606	2188	4724	5795	131
+       236	4860	3103	399	2050	1749	510	9089	1210	2530	
+
+R 132  4759	*	3005	6287	*	4830	4559	3512	3277	4783	6814	4170	4650	5129	3204	3119	4365	3264	*	6387	132
+       253	5803	2804	1041	960	382	2103	9059	1047	2976	
+
+H 133  3022	6258	4314	2844	6499	4462	6979	4896	3031	4906	6845	5803	3255	5433	2864	5172	5452	3990	*	6031	133
+       243	3887	3520	1596	580	395	2063	9399	1468	2811	
+
+G 134  4143	*	2945	3793	4527	1918	5726	5633	3605	6013	*	4159	4807	6231	3934	3215	*	7316	*	6357	134
+       189	3098	7405	1019	981	443	1918	9155	1984	2082	
+
+S 135  3328	5267	3196	4054	5168	4309	5458	6702	4002	3536	6597	4400	4442	4709	4259	3270	4698	4076	7499	4481	135
+       215	3770	3935	944	1059	1168	850	9267	1525	1353	
+
+I 136  4917	6678	4333	4453	3122	5756	6540	2805	4682	2489	6075	5740	4566	5810	5201	4413	5070	2758	*	6352	136
+       351	3715	2837	957	1044	675	1420	9188	1608	1672	
+
+G 137  4953	6140	5468	3986	4386	4427	6177	2643	3868	2813	7371	5311	3895	3707	4141	4034	5940	3647	*	*	137
+       61	4911	6893	1336	728	106	3813	9332	1193	2682	
+
+K 138  3421	*	4547	2928	7342	4838	5830	4903	2431	4635	*	5302	2836	4099	3693	4769	5202	4810	*	6155	138
+       18	*	6332	*	*	0	*	9225	0	1129	
+
+N 139  4983	*	2879	5211	7273	1035	7790	7230	4494	*	7812	3145	5887	6487	5102	5429	5631	4935	*	7728	139
+       40	6697	5813	0	*	*	0	9266	1029	1033	
+
+S 140  4059	7484	2993	3859	6713	4113	6577	*	2051	*	5620	6224	6432	3054	2760	4044	5901	5853	7336	7222	140
+       14	7362	8069	357	2189	0	*	9238	1134	1227	
+
+R 141  4823	5630	4501	4674	*	7101	3507	4645	2974	*	6928	3449	3939	5581	2146	3646	3826	5047	*	7329	141
+       10	7191	*	3907	100	*	0	9275	1000	1000	
+
+V 142  3306	4088	*	*	5999	*	*	2342	*	3810	*	*	6268	*	*	*	6264	997	6641	5712	142
+       11	7082	*	0	*	*	0	9275	1000	1000	
+
+V 143  4625	5399	7753	*	5216	*	6551	2451	*	1218	6460	*	*	*	*	*	7320	2085	5526	7429	143
+       0	*	*	*	*	*	0	9275	0	1000	
+
+L 144  6627	*	*	*	5512	*	*	1681	*	1265	5458	6551	*	*	*	*	*	2324	*	7150	144
+       0	*	*	*	*	*	0	9275	0	1000	
+
+I 145  7812	6759	*	*	3998	*	*	2178	*	3245	*	*	*	*	*	7353	6188	820	*	6514	145
+       0	*	*	*	*	*	0	9275	0	1000	
+
+D 146  6105	*	317	3192	*	*	7121	*	*	6146	7274	6887	*	7413	6264	6639	6888	*	*	*	146
+       0	*	*	*	*	*	0	9279	0	1000	
+
+D 147  6163	*	138	5562	*	*	*	*	*	*	*	*	7699	6212	6264	7693	7420	7412	*	6948	147
+       0	*	*	*	*	*	0	9279	0	1000	
+
+V 148  5591	6683	*	6106	3721	5470	*	2226	*	3205	4337	7160	*	*	*	4492	4213	1468	5795	*	148
+       0	*	*	*	*	*	0	9279	0	1000	
+
+L 149  4448	5576	6990	7412	4748	6998	*	1790	*	2121	5010	*	7075	7234	6300	5711	4499	2804	7138	3572	149
+       0	*	*	*	*	*	0	9279	0	1000	
+
+A 150  3269	7152	2579	4847	7468	4586	6594	5920	7312	*	7525	5697	*	7409	4528	3357	1499	4170	*	5283	150
+       0	*	*	3322	152	0	*	9279	1000	1000	
+
+T 151  5611	*	6441	6312	*	4868	*	*	4926	*	6845	5568	*	5628	4369	2073	904	*	*	5812	151
+       15	*	6630	*	*	*	*	9279	0	0	
+
+G 152  5071	7124	*	*	7411	132	7545	*	*	*	*	*	*	*	5756	6349	*	6928	*	*	152
+       0	*	*	*	*	*	0	9269	0	1018	
+
+G 153  2898	*	4953	4720	6286	2457	5055	6410	4228	5282	*	5007	8217	5642	3091	2782	3229	5340	5464	6886	153
+       0	*	*	*	*	*	0	9269	0	1018	
+
+T 154  4664	*	7114	*	*	*	*	6450	6634	6262	*	6646	*	5799	5912	2027	687	7018	*	*	154
+       0	*	*	*	*	0	*	9269	0	1018	
+
+A 155  3120	7420	*	*	4787	*	7258	2750	5088	1601	3070	*	6684	6789	*	5554	6096	2837	*	6070	155
+       18	*	6345	*	*	*	*	9279	0	0	
+
+L 156  2981	5637	5538	3591	5961	*	6590	3522	3694	2588	4990	3953	*	5231	3119	5044	3870	4807	*	5678	156
+       0	*	*	*	*	0	*	9237	0	1034	
+
+S 157  2052	7190	5029	2549	6262	4284	5114	5971	3540	4510	*	4648	*	6479	3635	3642	4071	4866	*	7421	157
+       0	*	*	*	*	*	*	9251	0	0	
+
+G 158  1493	3777	*	7604	5782	4975	*	3630	*	3190	4997	*	*	*	*	4308	3854	2581	*	6926	158
+       16	*	6514	*	*	*	*	9251	0	0	
+
+L 159  2318	4312	7006	7282	*	5623	6524	2509	4217	3146	5433	*	*	7530	4063	4723	4884	2636	6636	5046	159
+       0	*	*	0	*	0	*	9264	1045	1045	
+
+Q 160  3376	6265	2764	2505	*	5455	7602	7604	2687	*	*	4088	6357	4355	2617	3991	5129	7772	*	*	160
+       0	*	*	*	*	*	*	9251	0	0	
+
+L 161  2736	5541	7315	4346	4707	5991	5096	3954	4368	2203	5006	6353	6464	4458	4887	4937	3767	3660	6515	5090	161
+       10	7227	*	0	*	*	*	9251	1000	0	
+
+V 162  4347	5512	*	*	5840	*	*	2492	*	880	5210	*	*	*	7142	*	*	2905	*	5471	162
+       8	7582	*	0	*	*	*	9251	1000	0	
+
+E 163  5002	*	6043	3087	6510	6104	5167	5475	2262	4336	6059	5782	6367	4141	2025	4318	5603	4827	*	4363	163
+       42	5110	*	1366	708	*	*	9251	1186	0	
+
+A 164  3321	*	3304	2493	6948	4592	5682	5656	3291	5711	6614	4237	5884	3816	2999	3651	5028	6402	*	6304	164
+       72	5565	5168	0	*	*	*	9251	1196	0	
+
+S 165  1948	5351	7201	4211	4203	4650	4630	5123	4455	3670	5284	5016	8166	5188	3734	4155	6261	3808	8631	3999	165
+       35	6052	6867	492	1792	319	2332	9194	1206	1161	
+
+G 166  4623	7339	5322	4598	*	682	6208	*	4122	7212	*	4008	4730	6428	6309	4835	6028	*	*	6464	166
+       126	3748	6724	1048	953	0	*	9239	1533	1047	
+
+A 167  1275	5463	6126	6054	4651	3192	6072	4760	*	3928	*	7220	3466	6623	*	6266	5403	3343	*	5298	167
+       43	5076	*	344	2236	642	1478	9248	1269	1065	
+
+E 168  3569	6917	4984	2702	*	4879	5253	4273	2492	6095	*	4165	5717	3981	3706	4372	3585	4121	*	6155	168
+       45	5828	6268	731	1331	*	0	9249	1202	1000	
+
+V 169  4922	6652	4838	3515	*	7121	6410	3368	3217	3721	*	4467	4095	5785	4522	3690	5325	1952	*	6767	169
+       6	*	8013	*	*	555	1646	9253	0	1080	
+
+V 170  4122	6357	6885	5342	*	6514	*	1981	4490	3092	6167	*	6076	6066	5470	4954	5459	1514	*	*	170
+       22	7699	6591	1000	1000	1187	835	9243	1000	1019	
+
+E 171  3871	6645	3843	3737	4629	2075	5208	4598	4080	4686	7771	7033	7347	4891	4141	4637	4679	4788	7296	3288	171
+       9	*	7310	*	*	1465	649	9234	0	1063	
+
+M 172  2709	3706	*	*	4580	4480	*	2635	*	3655	4994	*	5453	*	7192	4357	4040	1945	*	6273	172
+       6	7910	*	0	*	701	1378	9234	1000	1068	
+
+V 173  2039	5346	7322	6827	3671	3813	*	3645	*	2545	4732	7034	*	*	7159	5130	7295	2671	6383	4061	173
+       10	7140	*	3170	170	0	*	9235	1117	1000	
+
+S 174  2634	3078	*	*	4960	6123	*	4088	*	5194	6521	*	*	*	*	3772	2713	1509	*	*	174
+       0	*	*	*	*	*	*	9244	0	0	
+
+I 175  4134	5969	*	*	3623	6269	*	2937	*	1553	5422	7628	4624	*	*	5886	4465	2451	5216	5589	175
+       25	*	5855	*	*	*	*	9224	0	0	
+
+L 176  2424	5710	*	*	3425	4603	3667	3328	*	2850	5588	*	7593	7265	*	4966	3952	2541	5156	6115	176
+       20	7472	6946	0	*	*	0	9201	1036	1095	
+
+T 177  3950	7205	1983	3863	5397	3730	7039	7347	4820	4866	7202	3408	6272	7063	3328	3749	3806	4978	7183	5733	177
+       0	*	*	*	*	0	*	9063	0	1160	
+
+I 178  4438	*	7021	5337	5474	4699	4856	5183	2210	3169	5496	4969	5398	7095	2008	5154	5791	3940	*	5262	178
+       54	*	4757	*	*	*	*	8899	0	0	
+
+P 179  5757	*	4738	3458	4018	2984	5575	4641	4024	3775	5573	5887	2685	3594	4080	3466	4522	*	*	*	179
+       216	5375	3119	1647	555	1319	739	8641	1143	1160	
+
+F 180  4501	6250	2746	3003	2578	4442	6410	6876	4424	4839	7122	5888	4235	4763	*	3505	3746	4613	6553	5291	180
+       429	*	1959	*	*	2333	319	8249	0	1866	
+
+L 181  4165	6110	3971	3418	4271	4248	3825	5082	5512	3025	6373	5029	3798	3132	4503	4419	4008	5220	*	6096	181
+       197	4571	3543	1000	1000	367	2155	7640	1095	2951	
+
+K 182  3182	*	4039	3183	*	2356	6115	*	4860	5837	6223	3955	3973	4665	3815	3287	4089	5683	6330	6378	182
+       107	4814	4810	0	*	1204	822	7949	1174	1791	
+
+A 183  2149	*	4506	6598	*	1101	*	6267	4469	5541	*	4408	5274	*	5793	5401	6579	4782	6272	*	183
+       44	5539	6890	1910	446	635	1489	8024	1125	1764	
+
+A 184  3111	6755	4743	3798	*	4428	5275	3620	3698	4409	5638	6082	5274	4420	2077	4388	6622	4998	5149	5257	184
+       67	5180	5804	1744	512	828	1196	8108	1168	1287	
+
+E 185  3137	*	3776	1936	*	4338	4686	5090	2946	4887	*	4786	5282	3826	4902	5460	4220	5129	*	*	185
+       35	5383	*	1000	1000	1634	561	8134	1037	1289	
+
+R 186  3572	*	4844	3764	5661	*	*	5622	2477	2577	4848	4776	6752	5376	2421	5164	4536	4710	*	5666	186
+       68	4854	6463	0	*	1648	555	8115	1104	1177	
+
+I 187  4890	*	*	*	3478	*	*	2219	6619	1091	6489	*	6668	*	5084	5680	*	3154	*	*	187
+       125	6413	3809	4248	78	*	0	7901	1023	1167	
+
+H 188  3868	*	3441	2799	6458	3704	5644	6345	3308	3884	5665	5493	4472	5309	3682	3548	4523	3886	5656	*	188
+       181	*	3088	*	*	*	0	7744	0	1597	
+
+S 189  2675	*	3049	2062	*	6228	5160	*	3758	*	*	3518	4362	3256	6129	4284	4520	5792	*	*	189
+       1992	*	418	*	*	*	0	7572	0	2303	
+
+T 190  *	*	3947	3334	*	3500	*	3661	2564	*	*	2399	3615	*	*	2836	3504	*	*	*	190
+       1580	*	587	*	*	*	0	4929	0	4774	
+
+A 191  1873	*	2093	*	*	*	*	*	*	*	*	*	*	*	1022	*	*	*	*	*	191
+       423	1975	*	2000	415	*	0	2741	1117	5235	
+
+G 192  *	*	2093	*	*	1873	*	*	*	*	*	*	*	*	*	2070	*	1975	*	*	192
+       0	*	*	*	*	3702	115	2741	0	5235	
+
+G 193  *	*	*	2053	*	2844	2211	*	*	*	*	*	*	2890	2811	2984	*	*	*	*	193
+       209	2890	*	2807	222	5424	34	4017	1114	4994	
+
+R 194  *	*	*	2089	*	2672	*	*	*	*	3333	*	*	3511	1248	*	*	*	*	*	194
+       0	*	*	*	*	6514	16	4543	0	4924	
+
+Y 195  *	*	*	*	2094	*	3615	*	2990	3179	*	*	3429	*	*	*	3705	*	*	1845	195
+       0	*	*	*	*	809	1220	4669	0	4892	
+
+K 196  2683	5405	4575	3593	6023	4266	4503	5006	3326	2861	5754	5423	5364	4883	3881	4544	4675	*	*	3923	196
+       0	*	*	*	*	1096	910	7150	0	2914	
+
+N 197  4483	*	3327	4340	*	1055	6031	*	4499	*	*	2941	4876	*	4463	5096	*	6298	*	6178	197
+       51	5276	6785	382	2104	691	1393	7642	1104	2050	
+
+V 198  3777	6514	5129	6385	4712	6452	5845	2808	5668	3530	6180	6040	5561	*	*	3610	4510	1544	*	4621	198
+       32	*	5532	*	*	262	2592	7670	0	1434	
+
+R 199  3904	*	4623	3024	*	4332	4206	6225	3972	6211	*	4172	1865	5157	3344	6291	3998	5000	6358	*	199
+       23	5985	*	0	*	1535	610	7740	1050	1180	
+
+F 200  5088	5141	*	*	3285	*	*	2418	*	2073	5296	*	5866	*	*	4984	5294	2073	*	3690	200
+       0	*	*	1000	1000	0	*	7763	1097	1097	
+
+I 201  3711	*	4434	3888	2970	*	3066	3660	4621	4167	5828	5628	*	4395	5093	4036	4941	3642	*	3334	201
+       18	*	6364	*	*	*	*	7784	0	0	
+
+G 202  2591	5159	*	4868	6474	3872	*	*	5451	*	*	*	4236	4984	6526	1305	3279	3917	*	*	202
+       31	*	5549	*	*	0	*	7763	0	1022	
+
+L 203  *	6950	*	*	4978	5316	7061	2320	6586	1140	6613	*	6229	5957	*	6356	6288	2641	6214	5342	203
+       0	*	*	*	*	*	0	7727	0	1045	
+
+L 204  3472	4918	6483	6352	3185	6535	6183	3060	*	1570	5636	*	6214	*	*	5647	4396	2764	*	6157	204
+       54	5634	5936	2000	415	*	0	7727	1097	1045	
+
+S 205  6455	6776	4010	3103	*	6090	4075	5220	3249	6387	*	3942	4688	6324	3973	3944	2221	3171	*	6318	205
+       0	*	*	1190	832	0	*	7826	1105	1105	
+
+E 206  3389	*	*	5553	3318	5348	*	2656	5338	2351	5433	*	*	*	5060	6195	3220	2968	4693	4701	206
+       109	3786	*	1000	1000	*	*	7725	1381	0	
+
+D 207  4446	*	2201	3401	6776	4615	6059	*	3922	6276	*	3453	3138	4440	4683	2592	6084	6211	6143	*	207
+       173	3143	*	3490	134	*	*	7729	1668	0	
+
+V 208  4649	*	2743	3048	5689	4817	5910	5249	*	4932	*	5222	5590	4345	4799	2517	2340	4516	*	6530	208
+       29	*	5644	*	*	*	*	7436	0	0	
+
+L 209  5665	*	*	*	3456	*	*	2713	5726	1553	5860	*	*	*	*	*	*	2463	3988	3115	209
+       207	2906	*	1431	668	0	*	7237	1463	1023	
+
+T 210  3537	*	3196	3180	*	3620	5430	3599	6210	3887	4597	*	2413	*	3997	4791	3943	4903	*	*	210
+       49	4893	*	0	*	*	*	7045	1000	0	
+
+E 211  3157	*	3449	2829	*	4052	3666	4349	3796	*	*	5004	2726	4665	4501	*	4327	4404	*	4941	211
+       94	*	3989	*	*	*	*	6553	0	0	
+
+A 212  3025	*	2768	2320	5216	2396	*	*	3747	*	*	5626	*	*	3997	6177	3308	4607	*	*	212
+       113	3731	*	0	*	*	0	6214	1232	1202	
+
+N 213  3642	*	3779	3162	*	*	3899	*	4404	4368	*	2503	*	3093	3063	4994	4160	4783	4806	*	213
+       141	3425	*	721	1347	1035	966	6244	1213	1202	
+
+C 214  *	1004	*	*	*	*	4334	3412	3233	3094	*	*	*	*	*	*	4962	3771	5098	*	214
+       124	3598	*	0	*	0	*	6031	1232	1074	
+
+G 215  5114	*	4079	5190	*	3814	*	*	4526	4284	*	*	1006	3608	4536	4970	3967	*	*	*	215
+       235	*	2732	*	*	*	*	5890	0	0	
+
+D 216  2690	*	2438	4941	4091	*	*	*	4492	2213	4712	*	5085	*	4287	4695	*	4369	*	3275	216
+       0	*	*	*	*	789	1247	5351	0	1441	
+
+L 217  *	655	4526	3820	*	3799	*	*	*	3486	*	4069	*	*	*	5050	*	*	*	*	217
+       0	*	*	*	*	*	0	5431	0	1153	
+
+N 218  3537	*	*	3438	3632	*	3407	*	2524	2761	*	3486	*	3313	3396	4630	*	*	*	*	218
+       0	*	*	*	*	*	0	5431	0	1153	
+
+D 219  3140	*	2894	3946	*	*	*	*	2475	*	*	4959	*	3185	1843	*	3534	*	*	*	219
+       186	*	3050	*	*	*	0	5258	0	1153	
+
+Y 220  3917	3546	*	*	3907	1219	*	*	3715	3971	*	3389	*	*	*	*	*	*	*	3100	220
+       278	3228	3872	3604	124	*	0	4723	1132	1441	
+
+T 221  *	*	3717	3675	*	*	3953	2996	*	4153	3414	2142	*	3743	*	3843	2892	*	*	*	221
+       200	*	2948	*	*	1499	630	4435	0	1533	
+
+G 222  *	*	*	*	*	738	*	*	3092	*	*	3271	*	*	*	*	*	*	*	2478	222
+       0	*	*	*	*	329	2292	3504	0	1408	
+
+P 223  *	*	*	*	*	*	*	2117	*	2690	*	*	1357	*	*	3363	2978	*	*	*	223
+       0	*	*	*	*	0	*	4043	0	1036	
+
+R 224  *	*	*	2662	2938	*	*	*	3700	3617	*	*	*	*	2167	*	2881	2362	*	*	224
+       0	*	*	*	*	*	*	4145	0	0	
+
+V 225  *	*	*	*	3462	*	*	3916	*	*	*	*	*	3742	*	*	1864	1019	*	*	225
+       0	*	*	*	*	*	*	4145	0	0	
+
+L 226  *	*	*	*	*	*	*	1516	*	1654	*	*	*	*	*	*	*	1588	*	*	226
+       0	*	*	*	*	*	*	3990	0	0	
+
+S 227  *	*	1917	*	*	*	*	*	*	*	*	2636	3609	*	*	1453	*	2976	*	*	227
+       0	*	*	*	*	*	*	3621	0	0	
+
+C 228  *	1656	*	*	*	*	*	2042	*	*	*	*	*	*	*	*	3609	1482	*	*	228
+       0	*	*	*	*	*	*	3621	0	0	
+
+S 229  1961	*	2636	2976	*	*	*	*	*	*	*	*	*	*	*	1135	*	*	*	*	229
+       0	*	*	*	*	*	*	3621	0	0	
+
+D 230  3427	*	1510	*	*	*	*	*	*	3393	*	*	1584	2976	*	*	*	*	*	*	230
+       0	*	*	*	*	*	*	3621	0	0	
+
+L 231  1796	*	*	*	*	*	*	3602	*	1877	3393	*	*	*	*	*	3427	2563	*	*	231
+       0	*	*	*	*	*	*	3621	0	0	
+
+L 232  *	*	*	2636	2515	*	2976	2454	*	1496	*	*	*	*	*	*	*	*	*	*	232
+       0	*	*	*	*	*	*	3621	0	0	
+
+V 233  2015	2263	*	*	*	*	*	*	*	*	*	*	*	*	*	2464	*	1462	*	*	233
+       0	*	*	*	*	*	*	2418	0	0	
+
+N 234  *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	234
+       0	*	*	*	*	*	*	1000	0	0	
+
+Q 235  *	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	235
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  c73204c4134fbbb074a65e8410643b7c
+FAM   
+FILE  c73204c4134fbbb074a65e8410643b7c
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:56:51 2013
+LENG  137 match states, 137 columns in multiple alignment
+FILT  111 out of 1145 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  8.0 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCEEEECCCCCCCCCCCHHHHHHHHHHHHHHHHHHCCCCCCCCCCCCCCCHHHHHCCCCCCCCHHHHHHHHHCCCCCCCCCCCCCCCCCCCCCHH
+HCCCCCCCHHHHHHHHHHHHHCCCCCCCCCCCCCCCC
+>ss_conf PSIPRED confidence values
+9775687665448888657588377999999999871986489888778766654576631575547799999999663202452110145777768500
+1024699999999999999975777789998886659
+>Consensus
+xxxxxxxxxxxxxxxxxxxxxxxxxxxxGxxLfxxxCaxCHxxxxxxxxPxlxxxxxxlxxxxxxrxxxxxlxxxlxxpxxxxgxxxxxxxxxxxxMpxx
+xxxxxxLsxeexxxIxxYlxxxxxxxxxxxxxxxxxx
+>c73204c4134fbbb074a65e8410643b7c
+AELTPEVLTVPLNSEGKTITLTEKQYLEGKRLFQYACASCHVGGITKTNPSLDLRTETLALATPPRDNIEGLVDYMKNPTTYDGEQEIAEVHPSLRSADI
+FPKMRNLTEKDLVAIAGHILVEPKILGDKWGGGKVYY
+>gi|194333943|ref|YP_002015803.1| cytochrome c class I [Prosthecochloris aestuarii DSM 271]gi|194311761|gb|ACF46156.1| cytochrome c class I [Prosthecochloris aestuarii DSM 271]
+------------------------ATPDGEAIFNRSCSVCHSVNPPPkSAPPVIPLANRYHMQFQTKeQGVAAMADFLEKPDVA-----KA-LdPRAVSR
+FGLMPLIP-LTDEERKAVSEWFWDQYNpaK-GGGRGFGG---
+>gi|117926827|ref|YP_867444.1| cytochrome C, class I [Magnetococcus sp. MC-1]gi|117610583|gb|ABK46038.1| cytochrome c, class I [Magnetococcus sp. MC-1]
+----------------TVVGFAGSAHAADDAV--MnKCRACHTweaGKKGKQGPNLFGIVGSAAGSNAdfkyNkssvlPdvgakgvvWDAALIDEYLQDP
+TKFLQR-VLGDAKAKSKM--TFK----LKGaDKADEraaIIEFLSNN---------------
+>gi|32473911|ref|NP_866905.1| hypothetical protein RB5806 [Rhodopirellula baltica SH 1]gi|32444448|emb|CAD74446.1| hypothetical protein-transmembrane prediction [Rhodopirellula baltica SH 1]
+----------------------DGDTVNGKAVFTKHCQTCHQLHGEGslVGPQLDGaisrSVERLlEDvVLPDRNIDQAFRtqslllddgrvlvgliasq
+ddevIRLTTSDGKTqdvRVDNVEarQASQRSLMPANLSE--LMTERELVDLMAYLKSSSGN------------
+>gi|118474682|ref|YP_892589.1| ubiquinol--cytochrome c reductase, cytochrome c1 subunit [Campylobacter fetus subsp. fetus 82-40]gi|118413908|gb|ABK82328.1| ubiquinol--Cytochrome c reductase, cytochrome c1 subunit [Campylobacter fetus subsp. fetus 82-40]gi|342328059|gb|EGU24543.1| ubiquinol--cytochrome c reductase, cytochrome c1 subunit [Campylobacter fetus subsp. venerealis NCTC 10354]
+----------------NSIDLAKGSAKTGEELIAAAgCNACHGIKSANMPAPMDDKtASESFGVAPPDlsdigylYDGKFLAALIKDPVLALKLSHKfSD
+EQPF-PMTP-FMGAGGDLNQEIADLVAYFKSI---------------
+>gi|291280072|ref|YP_003496907.1| cytochrome c family protein [Deferribacter desulfuricans SSM1]gi|290754774|dbj|BAI81151.1| cytochrome c family protein [Deferribacter desulfuricans SSM1]
+-----------------------YPADYGRNTWKKNCRlAC-HDGSKTG-VP-KLAPNS--------KTQQQWENVFA-qnrkyIYEM---------HK-
+---GVD-fS---H-lSEKDWNMIKLFVIQHAYD------------
+>gi|317405587|gb|EFV85888.1| alcohol dehydrogenase cytochrome c subunit [Achromobacter xylosoxidans C54]
+------------------SLLAGRYDSRGAVIYMEHCVICHRADGQGMprifpalagNSAIFA------------QNPQSIIQITLE-----GGGMPAnd
+HDTMAFAMPR-FN---HLSDQDITDVINFIRT----------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+A 1    0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1000	0	0	
+
+E 2    *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2
+       0	*	*	*	*	*	*	1598	0	0	
+
+L 3    *	*	*	*	*	*	*	*	*	844	*	*	*	*	*	*	*	*	1174	*	3
+       0	*	*	*	*	*	*	1598	0	0	
+
+T 4    2037	*	2128	2229	*	*	*	*	*	*	*	*	*	*	*	*	1670	*	*	*	4
+       0	*	*	*	*	*	*	2530	0	0	
+
+P 5    *	*	*	1082	*	*	*	2229	*	*	*	*	1670	*	*	*	*	*	*	*	5
+       0	*	*	*	*	*	*	2530	0	0	
+
+E 6    2296	*	*	719	*	*	*	*	*	*	*	*	*	*	*	*	2406	*	*	*	6
+       0	*	*	*	*	*	*	2869	0	0	
+
+V 7    *	*	1736	*	*	*	*	*	*	*	*	*	1624	*	*	2777	*	2123	*	*	7
+       0	*	*	*	*	*	*	3167	0	0	
+
+L 8    *	*	*	*	*	*	*	3220	3077	2573	*	*	*	3101	2057	3008	*	3000	*	*	8
+       0	*	*	*	*	*	*	3656	0	0	
+
+T 9    3348	*	*	*	*	*	3253	*	3399	*	*	*	3349	*	3328	1424	2925	*	*	*	9
+       0	*	*	*	*	*	*	4117	0	0	
+
+V 10   3473	*	*	*	*	*	*	1967	*	3633	*	*	*	*	*	*	3657	1320	*	3417	10
+       0	*	*	*	*	*	*	4266	0	0	
+
+P 11   *	*	*	*	*	*	*	3414	*	*	*	*	843	3417	3387	2649	*	*	*	*	11
+       0	*	*	*	*	*	*	4266	0	0	
+
+L 12   3858	*	*	*	*	3763	*	2222	*	1796	*	*	*	*	*	3863	4006	3040	3286	*	12
+       103	*	3863	*	*	*	*	4909	0	0	
+
+N 13   1941	*	2766	3601	*	3368	*	*	*	*	*	3638	3841	*	*	*	3982	2959	3812	*	13
+       94	3982	*	2807	222	*	0	4947	1085	1099	
+
+S 14   2931	*	*	2804	*	2277	*	*	2479	*	*	3812	4079	*	*	2771	3982	*	*	*	14
+       0	*	*	*	*	*	0	4947	0	1099	
+
+E 15   4316	3439	2893	2514	*	3085	*	*	3286	*	*	4502	4127	*	3843	3235	4314	*	*	*	15
+       165	*	3214	*	*	*	0	5764	0	1099	
+
+G 16   4884	*	4670	*	*	1155	*	3561	*	3238	*	3522	4316	*	*	4697	3702	4858	*	*	16
+       0	*	*	*	*	504	1762	6369	0	1612	
+
+K 17   2571	*	3216	3256	*	3633	*	5155	4324	5017	*	3152	3469	5389	5418	5412	3528	3844	*	*	17
+       47	4957	*	3170	170	*	0	7359	1062	1100	
+
+T 18   3031	*	4217	3688	*	3885	5106	3896	*	4971	5337	5054	3667	4349	5014	3132	2811	3637	*	*	18
+       100	3894	*	0	*	*	0	7554	1113	1100	
+
+I 19   2536	*	5823	4477	*	4281	5639	2709	4497	4119	*	*	3591	5585	5724	4185	*	2198	*	4534	19
+       37	5315	*	1000	1000	*	0	7914	1066	1100	
+
+T 20   3066	*	3576	*	*	5333	5854	5581	5831	3792	4477	4651	2905	3508	*	4028	3170	2790	*	5576	20
+       24	5905	*	2807	222	*	0	7989	1000	1100	
+
+L 21   3047	*	4789	*	2806	5904	5637	4821	5593	2204	3978	5788	4941	5594	*	4617	3475	4727	5555	3936	21
+       0	*	*	*	*	*	0	8151	0	1100	
+
+T 22   3006	*	2539	5697	*	4975	*	*	*	5621	5899	6035	3959	4784	3644	2049	2492	*	*	*	22
+       72	*	4362	*	*	*	0	8339	0	1100	
+
+E 23   2722	*	3962	3559	6130	3354	*	6226	3492	6442	5955	3222	2887	6186	6605	3538	3728	5074	*	*	23
+       78	4645	6276	675	1420	716	1354	8937	1182	1436	
+
+K 24   2393	*	3223	2980	6271	2528	6647	6484	4071	4148	*	6498	3829	4542	5561	4206	5823	4836	*	*	24
+       15	6589	*	1000	1000	*	0	9184	1032	1199	
+
+Q 25   3291	*	2311	3353	5338	6660	6852	5306	4726	3713	*	3480	3654	4022	5138	3731	4652	5090	*	6330	25
+       80	5860	4763	3138	174	0	*	9459	1173	1199	
+
+Y 26   2150	*	5418	4708	5696	3816	5760	3560	5305	2767	5535	6901	4041	4372	6025	5733	5209	3122	6572	5523	26
+       38	5267	*	1160	856	817	1209	9501	1244	1289	
+
+L 27   2076	*	4412	2868	*	*	5033	6421	3601	4624	6364	6629	5310	4084	4022	3376	3738	3910	*	6960	27
+       63	4539	*	1772	500	0	*	9555	1303	1057	
+
+E 28   2728	*	3918	3271	*	6803	6382	6962	2927	5587	5825	5751	4788	3443	2529	4035	3909	5345	6914	*	28
+       28	5708	*	1336	728	*	*	9577	1082	0	
+
+G 29   3949	*	5762	6833	*	251	*	5667	*	6760	*	6560	6778	*	6850	6593	*	*	*	*	29
+       13	*	6833	*	*	*	*	9596	0	0	
+
+K 30   3370	*	4280	2658	5556	7074	*	*	2098	5854	*	5430	5415	2775	2775	4617	*	6946	6925	5807	30
+       0	*	*	*	*	0	*	9587	0	1000	
+
+R 31   2869	*	4460	2952	5332	5683	6677	4583	3745	3675	*	5057	*	2824	3284	5103	3829	4725	6493	5842	31
+       25	*	5880	*	*	*	*	9598	0	0	
+
+L 32   4025	*	*	6479	*	*	6826	2550	*	1096	4736	6873	*	5682	6704	6435	5915	2500	*	*	32
+       31	6435	6664	2000	415	0	*	9590	1017	1103	
+
+F 33   3600	*	*	*	1204	*	*	4838	6682	5311	6633	*	*	*	7048	6757	6826	3521	4650	1994	33
+       40	5931	6524	0	*	*	0	9586	1052	1000	
+
+Q 34   2654	*	4338	2710	5511	6112	5595	5909	3625	4423	*	4474	*	3140	3764	4390	3441	4398	6616	6958	34
+       28	*	5703	*	*	0	*	9566	0	1099	
+
+Y 35   3545	*	4332	4230	6933	3897	*	4628	2963	5617	5815	3889	6936	3175	2835	3952	3059	6790	*	6781	35
+       244	2685	*	1886	455	0	*	9572	2638	1071	
+
+A 36   3427	*	5599	4967	5160	4862	2845	4876	3864	6026	*	2300	6865	4100	4129	3917	4533	5691	6029	3975	36
+       141	3430	*	204	2926	*	*	9598	2075	0	
+
+C 37   *	24	*	*	*	*	5925	*	*	*	*	*	*	*	*	*	*	*	*	*	37
+       0	*	*	*	*	*	*	9598	0	0	
+
+A 38   1657	*	*	*	5518	3000	6850	4405	5325	3843	4619	6323	*	6637	4103	2973	3873	3870	*	*	38
+       0	*	*	*	*	*	*	9598	0	0	
+
+S 39   2069	*	5839	5998	6208	3355	5654	6862	4309	5463	5816	5269	4488	4389	4801	2440	3569	3875	*	7117	39
+       12	*	6929	*	*	*	*	9598	0	0	
+
+C 40   *	38	*	*	6370	*	*	*	*	*	*	*	*	*	*	6158	*	*	*	*	40
+       0	*	*	0	*	0	*	9586	1000	1000	
+
+H 41   5925	*	*	*	*	*	24	*	*	*	*	*	*	*	*	*	*	*	*	*	41
+       87	5630	4716	0	*	*	*	9598	1080	0	
+
+V 42   3299	6415	5858	6897	6527	1875	*	*	5266	5629	5220	4550	5560	4218	3679	2884	3296	4200	*	5869	42
+       30	6598	6636	916	1089	383	2101	9562	1120	1309	
+
+G 43   3890	*	4076	4229	5291	4225	5869	3125	5266	2673	4506	5308	2997	7178	7004	5272	4473	3249	6757	4973	43
+       52	4826	*	1606	574	0	*	9595	1496	1119	
+
+G 44   4545	*	2626	3364	6932	2345	5543	5766	4110	5234	6786	3130	4462	5524	4851	4016	4628	6994	*	4894	44
+       68	5111	5857	1060	942	*	*	9598	1200	0	
+
+I 45   3830	*	3865	6614	6227	1483	6678	4998	4061	3592	*	*	3915	5289	3931	4180	5141	4734	*	5838	45
+       14	6680	*	1000	1000	*	0	9562	1000	1110	
+
+T 46   3620	6354	3934	2766	4742	4675	6922	4835	3173	4415	5540	3442	3640	3631	4870	5044	4923	4488	*	*	46
+       98	4128	6938	1119	890	1014	986	9562	1725	1110	
+
+K 47   3860	*	4857	4787	6819	1580	6424	6085	3257	4595	5591	4225	5055	7007	5458	4417	3167	4272	*	*	47
+       932	1219	4440	2432	296	0	*	9589	5173	1080	
+
+T 48   3355	*	5587	6722	4819	3554	6457	3069	4037	4593	5499	6008	4238	4734	4821	3283	3091	3208	7607	5544	48
+       135	4247	4779	2233	345	292	2447	9518	1440	1433	
+
+N 49   2109	*	*	5569	5931	1561	*	5217	5209	5713	4904	4406	4344	6917	4482	5171	4777	4803	*	4795	49
+       0	*	*	*	*	*	0	9542	0	1428	
+
+P 50   3716	*	5238	4505	6260	4116	*	*	5346	7110	6602	6463	774	6779	4851	5003	4533	5962	*	6589	50
+       86	5352	4907	3263	159	362	2172	9542	1113	1428	
+
+S 51   3285	*	2676	4024	6884	4559	6607	5955	4859	4993	5331	2447	3092	6922	5263	3725	3875	6756	*	5403	51
+       99	5778	4375	3191	167	2295	329	9543	1076	1530	
+
+L 52   4408	*	7135	6730	3725	6697	5951	3340	6564	1187	3716	*	*	*	5801	5028	6909	3174	6328	5053	52
+       123	4887	4378	997	1003	1638	559	9488	1212	1889	
+
+D 53   2670	*	4706	7200	5150	3154	5084	4795	4130	6315	6362	3701	*	7394	3591	3404	2442	5738	*	4417	53
+       137	5863	3762	1000	1000	2748	232	9473	1081	2122	
+
+L 54   5101	*	4947	3698	5571	1845	5313	4735	4547	2742	6177	5655	3394	4530	4693	5744	4732	6226	6550	5961	54
+       854	1532	3310	1249	788	1445	660	9384	3909	2660	
+
+R 55   4534	*	2974	*	5670	2848	5700	4079	4259	4900	6601	4008	3723	6597	5301	2307	4878	4003	*	5349	55
+       77	5442	5113	1367	708	4630	59	9342	1132	3082	
+
+T 56   3737	*	6065	4718	4700	4981	5555	6140	3704	2757	5888	5636	2808	4665	2979	5285	3734	4837	*	4062	56
+       56	5186	6557	523	1718	1324	735	9347	1378	3413	
+
+E 57   3039	*	3647	3032	*	3745	5068	5251	4114	*	*	4149	3467	4354	3560	3644	3634	4416	*	*	57
+       77	5034	5544	1784	495	2798	224	9480	1195	2577	
+
+T 58   3511	*	2808	4235	6501	4081	6477	5733	4144	6549	4789	6666	3944	*	2806	4009	3224	4225	4337	5452	58
+       243	5438	2921	1910	446	797	1236	9452	1084	2609	
+
+L 59   3278	*	*	*	6527	4196	6139	2673	4297	1593	4309	6793	6512	6391	4735	5348	4935	4158	*	4473	59
+       277	2649	6046	1706	528	4380	71	9283	2250	2958	
+
+A 60   1744	*	5396	3853	4007	4551	4499	4916	4064	3899	6524	*	4324	4890	4439	5011	4999	4188	5628	5541	60
+       97	6664	4188	3459	138	1296	755	9299	1000	3091	
+
+L 61   3832	*	5500	4936	4811	1465	5727	5679	3091	4603	4694	3979	*	5093	6632	3954	6762	5788	5576	5261	61
+       112	5460	4261	2507	279	4498	65	9300	1236	2694	
+
+A 62   2863	*	5600	6591	4593	4400	6449	2955	3388	3321	6847	4913	6692	3298	4399	4597	4122	3774	*	4862	62
+       147	4395	4350	1508	625	3275	157	9236	1347	3093	
+
+T 63   4022	*	4079	5473	4473	4189	4390	5404	4997	2727	4258	4898	3885	4965	6607	4823	3150	4039	5001	3893	63
+       156	5497	3633	522	1720	2329	320	9177	1074	3214	
+
+P 64   3738	*	3143	4008	*	4237	4476	*	5328	4360	6658	5415	1865	4165	4051	3724	4881	5688	6382	6254	64
+       630	5447	1596	2000	415	3774	110	9114	1077	3447	
+
+P 65   3717	*	4896	4693	5901	3369	*	5507	4379	4880	6049	4307	2033	3606	3800	3767	4658	5915	*	4621	65
+       282	3212	3844	2382	307	2356	313	8480	1509	5496	
+
+R 66   4690	*	3984	6204	4893	4465	4575	*	2817	4356	*	4448	6025	6262	1412	3960	6449	5001	*	5969	66
+       388	2972	3205	1944	434	890	1119	8795	1855	5117	
+
+D 67   4037	*	3289	4748	6169	5060	5030	4811	4869	4767	6350	3798	*	5587	3421	3985	3837	3962	3407	2958	67
+       103	3853	*	3136	174	409	2018	9184	1618	3668	
+
+N 68   5643	*	2618	3865	5260	3750	5901	5183	6595	4667	7017	2855	5060	5718	5212	3684	2868	3530	6288	5797	68
+       82	4519	6433	810	1218	*	0	9506	1419	1663	
+
+I 69   3368	*	4161	3047	6566	4521	6742	3905	5184	4401	5714	*	3108	4038	4100	4505	4464	2755	*	5088	69
+       51	4839	*	846	1172	2476	286	9478	1191	1837	
+
+E 70   2195	*	3618	2650	6857	3786	5599	5221	3545	4837	*	3909	5458	4291	5076	4033	4645	7010	6290	*	70
+       23	*	5958	*	*	*	0	9491	0	1672	
+
+G 71   2807	*	4229	3467	3952	4197	*	6430	4361	4167	6745	3271	*	3409	5536	4392	4362	4897	3931	4206	71
+       43	5089	*	1758	506	2325	321	9467	1159	1859	
+
+L 72   4616	*	6824	*	3632	6581	*	2770	*	1451	4144	*	*	5958	6514	6221	3378	3337	4479	6649	72
+       12	*	6857	*	*	1649	554	9491	0	1672	
+
+V 73   3016	*	5286	3069	4015	6555	5894	4259	2934	3141	4656	4646	6579	6049	3678	5804	4705	3714	6310	5836	73
+       12	6966	*	1585	585	*	0	9519	1029	1572	
+
+D 74   2934	*	2687	2817	5800	5902	6728	*	4082	4114	*	4632	4570	3985	3558	5771	4536	3657	*	4642	74
+       12	6936	*	3170	170	2967	197	9519	1085	1572	
+
+Y 75   3475	*	*	*	2583	4229	5932	4366	5305	5094	5797	6784	6523	5661	6447	4458	5207	3757	2582	2414	75
+       146	4003	4883	2876	211	1464	650	9533	1524	1486	
+
+M 76   4346	*	*	6656	4271	6916	6470	2143	*	1583	3017	*	5785	5576	*	*	5808	3121	*	6176	76
+       11	7104	*	1000	1000	301	2407	9539	1186	1672	
+
+K 77   4320	*	*	4242	6843	4837	4368	4301	2324	4009	5046	4889	4432	3095	3012	4361	4686	5435	5741	6426	77
+       68	4971	6158	3069	183	*	0	9596	1219	1032	
+
+N 78   3540	*	2291	3857	7010	4320	5500	6741	3582	5586	*	2091	6940	3983	4389	4846	4690	6964	*	6396	78
+       165	7117	3306	0	*	*	0	9582	1016	1246	
+
+P 79   3775	*	6892	4250	*	2394	5835	5531	5478	4764	6799	5303	1239	*	4923	3901	*	6384	*	7057	79
+       124	*	3597	0	*	4016	92	9402	1000	2318	
+
+T 80   3411	*	3638	4151	*	4781	5494	3618	3289	3943	5264	5308	4626	4267	3492	3592	3547	4465	*	6003	80
+       172	*	3156	*	*	3311	153	9284	0	3111	
+
+T 81   3423	*	4448	3547	4047	5354	4678	6521	3026	3690	5956	4040	3991	*	3257	3505	3813	4772	*	*	81
+       83	6441	4493	1000	1000	2472	287	9109	1076	3758	
+
+Y 82   3649	6120	5238	6344	2932	5227	4636	3699	4115	2739	4940	4059	5359	5334	6073	6125	4160	3798	*	3541	82
+       1028	6347	1008	1585	585	3916	99	9150	1018	3588	
+
+D 83   3285	*	2783	4367	3599	3831	5778	3890	5340	3211	*	*	*	*	4403	3727	3488	4417	5347	4344	83
+       234	3545	3968	1852	468	3274	157	8064	1222	6299	
+
+G 84   3334	*	*	*	*	1021	*	*	4343	3419	*	*	5326	4381	5312	3895	3764	*	*	5238	84
+       90	*	4043	*	*	4635	59	8339	0	6196	
+
+E 85   5667	*	4152	2944	5784	4189	4449	*	3974	3786	4463	5309	*	*	2482	2689	5315	3985	*	4435	85
+       332	3777	2917	1898	451	*	0	8311	1226	6230	
+
+Q 86   2826	*	3715	3701	5173	2813	*	4302	4571	4162	*	3602	*	3797	3761	4868	4002	4950	*	5048	86
+       261	3603	3584	3320	152	4322	74	8024	1191	6532	
+
+E 87   3501	*	3157	3254	5232	5538	4091	5093	4303	4165	*	3302	5587	5128	4226	5657	3862	2650	*	*	87
+       217	4373	3455	1831	476	2845	216	8107	1096	6494	
+
+I 88   3817	5345	*	*	*	4275	3634	2029	3427	2767	*	*	4485	5709	*	*	5061	3051	5499	4299	88
+       229	3006	5499	1293	757	6267	19	8221	1408	6188	
+
+A 89   3185	*	3289	3336	3812	3363	*	*	4472	4323	*	*	4353	4361	4368	3306	3594	4234	*	4561	89
+       447	2363	3798	1261	779	3401	143	8215	1967	6191	
+
+E 90   2548	*	3360	2122	*	2573	*	5625	3396	*	5632	5403	5921	4384	4612	5444	5641	5241	*	*	90
+       191	3888	4143	2358	313	2740	234	8270	1208	6177	
+
+V 91   4019	5397	5737	4545	*	2199	5699	3180	4015	3053	*	5957	5594	6008	4741	*	5585	2709	5912	4533	91
+       84	4152	*	280	2502	662	1442	8568	1313	5781	
+
+H 92   4591	*	3484	3591	5715	4704	3672	4294	2918	4428	5385	4782	3675	4065	3958	6495	4917	5041	4622	4550	92
+       35	6247	6554	0	*	518	1729	9371	1000	3131	
+
+P 93   3338	4439	3585	3412	5699	3921	*	*	4856	6034	5848	6653	1898	5547	4702	3947	3810	4865	*	5901	93
+       164	*	3221	*	*	486	1805	9538	0	1714	
+
+S 94   3089	*	3422	*	4571	2355	4755	4279	4125	4903	6725	4018	6192	5527	3945	2895	5340	6536	*	5014	94
+       412	3322	2754	1336	728	3158	171	9425	1862	2306	
+
+L 95   3544	6370	*	5212	4102	2863	6457	4249	5289	3979	5624	4240	4233	5390	5456	2923	2641	4380	*	6227	95
+       35	5369	*	1752	508	1065	938	9093	1390	3579	
+
+R 96   3286	*	4816	4974	5084	3261	*	4611	3266	3898	4490	5584	3483	3708	3615	4744	6771	3503	*	4762	96
+       16	6530	*	1000	1000	2030	405	9365	1000	2404	
+
+S 97   *	6572	6454	6766	*	6299	5563	6795	*	*	398	5513	4418	*	4413	6662	6377	5807	*	6412	97
+       55	5772	5696	1482	640	1703	529	9415	1085	2056	
+
+A 98   3631	*	6557	4432	4915	4656	5681	4917	4847	6631	6599	5296	1221	4397	6423	4882	3556	4655	*	6703	98
+       89	6224	4422	0	*	3488	135	9452	1098	1895	
+
+D 99   2550	*	2937	4663	6694	2565	6775	5864	5711	6492	6691	4688	3294	5307	4446	3072	5133	5424	6659	5511	99
+       995	*	1005	*	*	2251	340	9371	0	2342	
+
+I 100  4011	*	*	4197	2777	3772	5629	2363	5181	3088	3788	*	5442	4464	*	*	5484	3086	*	5394	100
+       449	3669	2406	2152	368	599	1556	8134	1381	5845	
+
+F 101  4271	*	*	*	1407	5245	3877	6376	4659	3798	4248	5516	4914	*	*	*	6238	4390	3980	3045	101
+       310	4853	2653	0	*	2318	323	9076	1165	3792	
+
+P 102  3056	*	3997	3690	*	2591	5152	5051	3906	5963	5745	5220	2479	5030	*	3479	4593	4439	*	*	102
+       944	5297	1137	2729	236	3670	118	8921	1055	4287	
+
+K 103  3074	*	4020	5389	*	2222	*	5273	3619	3267	*	5141	4550	5213	4415	2761	5511	5066	5256	*	103
+       820	5573	1277	1585	585	3727	113	7883	1000	6115	
+
+M 104  4539	*	*	*	5032	2805	4828	3231	4863	3255	2057	5188	4747	*	*	*	2922	4967	*	4892	104
+       275	2525	*	1821	480	2599	260	7220	1559	6851	
+
+R 105  3798	*	3488	*	*	2565	*	5356	3343	4131	5513	3348	4533	3555	2577	4447	5147	*	*	*	105
+       31	*	5560	*	*	92	4015	7939	0	6247	
+
+N 106  4189	*	3661	6507	*	2697	3991	4339	3345	3937	6756	4606	5702	4016	3128	3740	5853	3896	*	5649	106
+       47	4952	*	741	1315	0	*	9537	1235	1547	
+
+L 107  5750	*	6300	*	4210	5988	*	2866	6847	832	4362	6803	*	5476	6412	*	6787	4505	6747	4757	107
+       82	4186	*	660	1446	0	*	9575	1447	1119	
+
+T 108  4378	*	3527	4555	5681	5359	*	*	4091	6319	*	4142	4258	5311	6698	1745	2040	6833	*	6186	108
+       12	6939	*	1000	1000	*	*	9604	1000	0	
+
+E 109  4342	*	1870	2137	*	5969	*	*	4261	*	6488	3743	3227	5677	4766	4600	4625	5188	6385	6441	109
+       26	5819	*	0	*	*	*	9604	1077	0	
+
+K 110  2775	*	2755	1816	*	5614	4864	*	4096	*	*	*	5603	2791	4433	7040	4589	5663	5939	6385	110
+       0	*	*	*	*	*	*	9604	0	0	
+
+D 111  5991	*	1735	1599	*	5858	6636	*	5091	6669	6402	6847	7338	2498	6036	6998	4717	6563	*	6385	111
+       0	*	*	*	*	*	*	9604	0	0	
+
+L 112  2822	*	7027	*	*	*	*	2224	4538	2615	3720	*	5227	7315	3185	4947	5870	2929	*	5022	112
+       0	*	*	*	*	*	*	9604	0	0	
+
+V 113  2301	6441	2609	3254	*	5165	5849	6386	3888	4303	*	4635	*	3322	3618	5297	4828	6783	4528	7222	113
+       25	*	5844	*	*	*	*	9604	0	0	
+
+A 114  1652	*	1737	4519	*	6383	5990	5925	6081	3842	6787	5408	*	4359	5506	3912	5557	6621	*	6921	114
+       32	5502	*	1585	585	1398	688	9568	1124	1069	
+
+I 115  4728	*	6388	*	6580	*	*	1697	*	1633	4116	*	*	*	*	*	*	1993	*	*	115
+       0	*	*	*	*	*	0	9571	0	1000	
+
+A 116  1909	*	*	5889	4638	6812	6797	2859	*	3075	7112	6523	*	5385	6686	3620	3981	2515	5609	6569	116
+       12	*	6938	*	*	*	0	9571	0	1000	
+
+G 117  1778	*	3354	2561	5533	3942	5157	6376	5702	5352	*	3823	*	5795	4343	3760	5773	4619	*	*	117
+       17	*	6376	0	*	1174	845	9561	1000	1091	
+
+H 118  5453	*	*	*	2187	*	4933	6833	*	6831	*	*	*	*	6569	*	6345	5884	3424	800	118
+       0	*	*	*	*	*	0	9552	0	1135	
+
+I 119  5522	6633	*	*	3834	*	*	2048	*	1165	5722	*	*	*	*	*	*	2681	*	4826	119
+       0	*	*	*	*	*	0	9536	0	1135	
+
+L 120  3705	*	6894	3679	*	4971	5323	*	2960	2750	4137	6498	*	4444	2608	4380	6550	4672	5241	3314	120
+       12	6955	*	0	*	1118	891	9536	1000	1135	
+
+V 121  2958	*	3281	4427	*	4334	4954	5375	5360	6922	6404	4025	*	3552	6803	2181	3176	5105	7088	4370	121
+       0	*	*	*	*	*	0	9558	0	1017	
+
+E 122  3937	*	*	4534	4310	4750	5808	4155	4446	1624	6593	4607	6268	2838	5066	6979	4390	4878	*	4794	122
+       15	6552	*	1585	585	0	*	9377	1000	1017	
+
+P 123  2042	*	3671	5350	5325	4857	*	*	3515	*	4844	4801	2886	4286	5235	3828	3581	6114	6446	4520	123
+       39	5229	*	3213	165	*	*	9050	1050	0	
+
+K 124  3166	*	5273	3895	4634	3577	*	*	2262	*	*	3606	4451	3976	4415	3372	3980	4925	4977	*	124
+       100	3902	*	826	1199	*	*	8643	1256	0	
+
+I 125  5749	*	4007	3020	*	3812	*	3867	2849	5823	*	4142	4438	4066	4346	3342	2628	5176	*	*	125
+       964	*	1037	*	*	*	*	7723	0	0	
+
+L 126  *	*	2108	*	*	3274	*	3944	3491	3061	*	*	2726	*	3562	*	3764	3617	*	*	126
+       157	*	3278	*	*	619	1520	4550	0	2404	
+
+G 127  *	*	4414	*	*	1546	*	*	4103	4179	*	2870	3851	4218	*	3974	2525	*	*	*	127
+       286	3428	3525	1000	1000	1171	847	5309	1000	1580	
+
+D 128  *	*	3083	*	*	3399	3320	*	*	3549	3202	3716	1959	3800	3509	*	*	*	*	*	128
+       0	*	*	*	*	711	1361	4447	0	1519	
+
+K 129  3938	*	2951	3613	*	1905	*	*	2416	*	*	*	2407	*	*	*	*	3629	*	*	129
+       206	2909	*	1113	895	0	*	4923	1119	1132	
+
+W 130  4043	3612	*	*	3789	*	*	*	*	3788	*	*	*	3078	3828	*	*	*	932	*	130
+       0	*	*	*	*	*	*	5232	0	0	
+
+G 131  *	*	*	*	*	890	*	3580	*	*	*	3479	3663	*	3805	3764	3993	*	*	*	131
+       0	*	*	*	*	*	*	4575	0	0	
+
+G 132  *	*	3543	*	3075	1899	3371	*	3384	*	*	*	*	2061	3392	*	*	*	*	*	132
+       0	*	*	*	*	*	*	3857	0	0	
+
+G 133  *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	133
+       0	*	*	*	*	*	*	2823	0	0	
+
+K 134  *	*	*	*	*	2114	*	*	379	*	*	*	*	*	*	*	*	*	*	*	134
+       0	*	*	*	*	*	*	2420	0	0	
+
+V 135  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	135
+       0	*	*	*	*	*	*	1000	0	0	
+
+Y 136  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	136
+       0	*	*	*	*	*	*	1000	0	0	
+
+Y 137  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	137
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  c737dfcd8b440f4a80b15ef9f3c3a806
+FAM   
+FILE  c737dfcd8b440f4a80b15ef9f3c3a806
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:12:26 2013
+LENG  100 match states, 100 columns in multiple alignment
+FILT  129 out of 1069 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.0 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCEEEEECCCCCCCCCEEEEEEEECCCCCCCCEEEEEECCEECCCEECCCEEECCCCCEEEEEEEEECCCCCCEEEEEEECCCCCCCEEEECCCCC
+>ss_conf PSIPRED confidence values
+9865999999787822379848999998166588889899889913345451427878998599999999834469989999997888956899815899
+>Consensus
+xxxxxPxvxxxxxxxxxxxxxxtlxCxxxxfxPxxixvxWxxxgxxxxxxxxxxxxxxxxxxysxxsxlxxxxxxxxxxtCxvxhxxxxxpxxxxxxxxx
+>c737dfcd8b440f4a80b15ef9f3c3a806
+MIQRTPKIQVYSRHPAENGKSNFLNCYVSGFHPSDIEVDLLKNGERIEKVEHSDLSFSKDWSFYLLYYTEFTPTEKDEYACRVNHVTLSQPKIVKWDRDM
+>gi|326703679|gb|AEA06491.1| MHC class I antigen [Macaca mulatta]
+--seagS----------------htiqtmygcdlgpdgrllrgyeqyaydgrdyfalne---DLRSWTAADMAAQN---------------tqrkweaag
+vaeqw----RAYLEGECLEWLRRYLEKGK---------------et--LQ--raE---
+>gi|82407640|pdb|1ZVO|C Chain C, Semi-Extended Solution Structure Of Human Myeloma Immunoglobulin D Determined By Constrained X-Ray Scatteringgi|82407641|pdb|1ZVO|D Chain D, Semi-Extended Solution Structure Of Human Myeloma Immunoglobulin D Determined By Constrained X-Ray Scattering
+------------------------------FR-------WPESPKAQaSSVPTAQPQAEGSLAKATTAPATTRNTgrgGEEKKKEKEKE-----------
+----
+>gi|291165393|gb|ADD81217.1| immunoglobulin light chain [Larimichthys crocea]
+--DTAPTLTVLPPSSEQLQqGKATLMCLANKGFPSDWSLAWKVDSSSSiSwEESRSPVVLEKDGLYSWSSTLRLDADQwrkVDSVTCEATQGSQ-TPRSE
+TL----
+>gi|145559665|gb|ABP73658.1| MHC class I antigen [Sus scrofa]
+----GLKTLR-GYYNQSEAG-SHTYQWMYGCYlgPDGLFLcgysQFGYDGADYvALNEDLRSWTAADMAAQISKRKWEAADEAERMRSYLQGrcvEWLQK
+YLemgkdTLQHAD--
+>gi|148691350|gb|EDL23297.1| histocompatibility 2, M region locus 9, isoform CRA_a [Mus musculus]
+--TDPPEPTI-PFLPM----IIALVlgALLMGSVMTFLI---------------WKRRTRG---------------------------------------
+--
+>gi|16754812|emb|CAC82793.1| immunoglobulin heavy chain constant region [Lepus capensis]
+----GPSVFIFPPKPKDtLmiSLTPEVTCVVVDVSQddPEVQFTWYINNEQVytARPPLR--EQQFNSTIRVVSTLPIVHQdwlRGKEFKCKVHNKALPS
+PIE-------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    1281	*	*	*	1397	*	*	*	*	*	2262	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	3066	0	0	
+
+I 2    3826	*	*	3904	*	*	*	1823	2018	2596	*	*	4168	*	*	4096	*	4217	*	*	2
+       0	*	*	2000	415	*	*	5676	1081	0	
+
+Q 3    3264	*	4739	5879	4755	3735	5771	5773	3345	3357	*	4520	4179	2871	4715	3901	4276	3555	*	5679	3
+       25	*	5891	*	*	*	*	7915	0	0	
+
+R 4    2909	5656	6532	3571	*	5368	*	4829	3302	6193	*	*	4670	3916	4740	3306	3861	1918	*	*	4
+       52	6499	5368	0	*	*	0	8507	1000	1081	
+
+T 5    2763	*	6670	3746	6418	3815	4834	6575	3388	4953	*	6414	2035	4750	4709	3385	4825	4321	*	*	5
+       77	4274	*	2716	238	2442	293	9193	1570	1446	
+
+P 6    4957	*	*	*	*	6478	*	*	6819	4871	*	*	350	5244	*	4231	5017	5744	*	*	6
+       14	6714	*	0	*	*	0	9191	1000	1339	
+
+K 7    4689	*	4591	3190	6297	*	5142	5007	2733	4805	5869	5324	6089	4878	4104	2250	2792	4375	*	*	7
+       51	4836	*	1684	538	*	0	9191	1464	1339	
+
+I 8    4294	*	*	6335	6251	*	6757	3109	6707	3153	4799	6698	4858	6491	*	4588	3858	1075	*	*	8
+       0	*	*	*	*	*	0	9176	0	1646	
+
+Q 9    4493	*	6537	4148	3794	*	4410	4094	4074	3574	*	5199	5255	5736	4068	2524	3041	4428	6973	3541	9
+       0	*	*	*	*	1642	557	9176	0	1646	
+
+V 10   6772	*	*	5042	6258	4622	*	2384	6837	2009	4300	*	4746	6645	5417	4525	5967	2126	5315	5438	10
+       149	*	3354	*	*	784	1254	9227	0	1397	
+
+Y 11   7417	4961	*	4983	2412	6589	5478	3904	5471	2535	4893	6686	6224	5194	4742	3215	3383	4670	*	3581	11
+       173	5781	3396	535	1690	201	2940	8907	1164	2505	
+
+S 12   4352	7337	*	5056	6399	4508	4803	4869	4112	3641	6729	5569	1891	4592	3870	3113	3809	4904	6617	6560	12
+       134	4069	5088	1557	599	376	2123	9137	1877	2400	
+
+R 13   4519	6702	6750	4545	5737	4239	3104	6130	4131	5006	6523	6025	1933	4187	4393	3493	4581	4755	6609	4810	13
+       133	4867	4217	833	1189	1259	781	9180	1358	1769	
+
+H 14   4212	5426	4199	3670	6691	4883	3366	5686	4168	4750	*	6432	3150	6640	5291	2611	3779	3855	*	3805	14
+       110	4592	4957	2486	284	448	1906	9153	1613	2199	
+
+P 15   4182	5973	6634	3444	*	5151	6480	5698	4351	4648	6973	4940	2172	4846	3425	2908	3784	4212	*	5087	15
+       166	4521	3946	245	2679	2607	259	9169	1438	1685	
+
+A 16   3580	5746	3809	3207	5632	5021	5738	4238	4634	3833	5832	5682	5243	3495	4510	3599	4712	2986	4960	6653	16
+       102	4345	5721	201	2941	1190	832	9041	1670	2467	
+
+E 17   4194	*	3254	2204	5769	5882	6387	5714	4308	5296	5723	6882	3652	4406	4091	2542	4808	4647	*	5564	17
+       233	2918	5877	1037	964	504	1763	9127	2644	2052	
+
+N 18   4746	*	2739	2792	4647	4381	5121	5250	5521	2333	7082	3755	3898	5596	6849	3773	5578	4898	*	*	18
+       247	2756	6773	994	1006	687	1400	9260	2882	1454	
+
+G 19   4677	*	5263	4051	6499	1667	4619	*	3671	5752	*	3336	4341	3844	4983	3213	4568	*	*	6490	19
+       137	3623	6729	2756	231	*	0	9272	2316	1214	
+
+K 20   4926	*	3433	2497	*	2971	5307	6816	3495	4916	6346	4452	6765	2693	3842	4257	3836	*	*	*	20
+       336	3955	2804	665	1438	1927	440	9352	1836	1342	
+
+S 21   4024	*	3301	3738	7254	4872	4662	6409	3656	5829	5725	4360	3291	5230	3235	3013	3086	6829	5631	*	21
+       93	5033	4969	1735	516	293	2445	9369	1295	3439	
+
+N 22   2278	*	*	*	6776	5469	*	3661	5792	3337	5999	4729	4634	5115	5824	3486	4838	1878	*	5078	22
+       10	7155	*	0	*	0	*	9319	1000	1829	
+
+F 23   4690	*	6881	5320	4576	*	5089	5128	3815	4534	7166	4205	6775	5157	4823	3102	1528	3498	5872	6477	23
+       15	*	6608	*	*	*	*	9478	0	0	
+
+L 24   4354	*	*	*	3514	*	6803	3057	*	1043	5216	*	*	*	6655	6776	5652	2787	*	4705	24
+       18	*	6330	*	*	0	*	9403	0	1032	
+
+N 25   3657	*	5922	4828	5836	3586	6997	3953	5033	3601	4788	6014	*	6952	4139	4732	2186	2469	*	5139	25
+       63	5332	5781	935	1068	0	*	9418	1473	1170	
+
+C 26   6873	123	*	*	*	6965	*	*	*	*	*	*	*	5634	*	5521	7163	*	*	5956	26
+       0	*	*	0	*	0	*	9382	1000	1195	
+
+Y 27   5003	*	5146	3870	4328	*	3664	4064	4935	1841	5012	*	*	5399	4652	3705	5032	3713	3978	5041	27
+       0	*	*	*	*	*	*	9634	0	0	
+
+V 28   1481	*	*	*	*	6265	*	2883	*	4249	5656	5319	6975	*	*	5078	4216	1763	*	6693	28
+       0	*	*	*	*	*	*	9429	0	0	
+
+S 29   3921	*	5682	3373	5436	6895	6040	*	3994	4915	*	4346	6835	3764	3843	2194	2985	4301	6886	3833	29
+       14	6655	*	3000	193	*	*	9429	1055	0	
+
+G 30   5675	6809	2278	5457	*	1286	6085	*	4919	8546	*	2853	6047	5357	4712	4108	6975	*	*	*	30
+       0	*	*	*	*	*	*	9429	0	0	
+
+F 31   4482	5706	6596	5467	1060	5048	6422	4308	*	3503	4870	6806	4809	*	7195	5293	5042	6066	*	3531	31
+       67	5454	5463	665	1438	*	*	9562	1242	0	
+
+H 32   5149	*	5239	5402	2766	7162	6138	5692	3833	4983	5795	4480	4845	6625	4640	2825	4809	5245	5901	1918	32
+       121	4489	4799	503	1764	637	1487	9539	1701	1228	
+
+P 33   6597	*	6821	6078	*	5756	*	6281	5077	4868	*	*	355	7666	5815	4844	5816	6200	*	*	33
+       78	4702	6161	990	1010	2600	260	9489	1511	1652	
+
+S 34   3017	*	3657	3602	6783	3489	*	*	2788	4110	6523	4667	2823	5314	4564	3283	5617	5742	*	6234	34
+       89	7129	4249	0	*	768	1276	9505	1103	1748	
+
+D 35   4460	*	2165	3514	5994	3484	6243	5989	5931	4379	*	3083	3640	3968	6857	4031	4142	4133	*	*	35
+       151	6043	3570	645	1473	2104	382	9439	1147	2137	
+
+I 36   3620	*	5783	*	*	6418	5978	1680	*	2674	5955	5326	4488	*	*	*	4424	2125	6848	4875	36
+       16	*	6502	*	*	586	1583	9335	0	3104	
+
+E 37   3830	*	4464	3128	4851	6909	3845	*	3407	6015	5491	3576	*	3907	4379	3219	2673	4877	*	5124	37
+       10	*	7199	*	*	2946	201	9440	0	1886	
+
+V 38   *	*	*	*	2697	*	*	2050	*	2663	5456	*	*	*	*	*	5174	1405	*	5761	38
+       44	5585	6781	2000	415	*	0	9415	1213	1949	
+
+D 39   *	*	6211	3799	*	6889	4283	4700	2983	*	4776	4496	6622	4029	4075	2841	1945	5058	*	4348	39
+       26	5790	*	0	*	1761	504	9397	1152	2083	
+
+L 40   *	5257	*	*	4284	*	6035	6004	*	5468	6504	*	6101	*	*	*	6455	6642	283	*	40
+       31	*	5575	1000	1000	2611	258	9471	1000	1736	
+
+L 41   5189	*	5678	5108	3368	3953	4950	5329	3464	2283	4878	6910	5234	4379	3776	3862	5017	5506	6983	3477	41
+       101	3890	*	2627	255	1863	464	9481	1933	2036	
+
+K 42   3926	5829	5362	3638	*	6915	5316	5051	2150	4292	6938	4775	6454	4097	2464	5333	6087	3466	5844	5110	42
+       38	5894	6766	2392	305	973	1028	9484	1480	1725	
+
+N 43   6107	5965	1987	4386	6683	3278	6940	5915	4464	*	7364	1717	5561	6199	4928	3982	4754	*	*	6919	43
+       50	5547	6304	1913	445	1984	421	9480	1204	1433	
+
+G 44   6056	*	3605	3723	*	1172	6968	*	4596	*	*	3226	4357	5121	4441	4339	5258	5164	*	*	44
+       39	5734	6984	0	*	1138	874	9456	1294	1640	
+
+E 45   3852	*	4566	2754	*	4743	7163	4588	3029	5769	5839	3883	4252	3587	3923	3568	3994	3649	*	*	45
+       148	4060	4746	1292	757	*	0	9495	1864	1414	
+
+R 46   4195	6469	3414	2641	*	5493	6922	5875	4428	4321	*	4605	2677	4381	4930	3746	3877	3895	6729	4701	46
+       64	4750	7287	724	1341	1032	969	9391	1661	2089	
+
+I 47   6202	*	4977	5208	6918	6650	5394	3084	4264	1901	6159	7190	5380	3738	5643	3973	4455	2539	*	5223	47
+       1183	877	6060	292	2450	1203	822	9486	7057	1613	
+
+E 48   3667	5962	3656	2456	6500	5046	5929	5317	3060	4557	*	5640	4028	4041	4947	3103	3400	*	*	6291	48
+       67	5108	5935	560	1636	*	0	9491	1284	1578	
+
+K 49   3542	*	2920	3615	*	2386	5752	5903	4054	4404	*	4558	5457	5522	5717	3056	3104	5394	*	*	49
+       75	5919	4885	588	1579	*	0	9473	1173	1833	
+
+V 50   3750	6693	6648	4913	4561	4844	5006	3842	5551	3424	5333	4437	4707	4870	4857	3840	3384	2234	*	5375	50
+       154	4554	4092	320	2329	768	1276	9429	1693	2508	
+
+E 51   3752	5926	5896	2592	4553	5727	6062	3963	4753	5397	6990	5444	3768	3377	4659	3719	2966	4716	6836	4856	51
+       134	4573	4425	2630	254	935	1069	9349	1690	2501	
+
+H 52   4789	*	3551	4461	5276	4635	5197	5340	4043	4698	*	4461	3722	3275	5883	3375	2611	4990	6247	3842	52
+       13	*	6831	*	*	1191	831	9319	0	2387	
+
+S 53   4117	*	*	4371	3931	3094	4946	5994	6858	3722	*	4083	4266	7067	6045	2704	2362	5131	*	3864	53
+       143	4709	4157	1281	765	629	1500	9375	1587	1881	
+
+D 54   3828	5876	3253	3133	5968	4352	*	5483	3933	4698	*	4662	3210	4178	4266	3200	3966	4562	*	4944	54
+       223	3759	3851	1085	920	836	1184	9379	2493	2183	
+
+L 55   4562	5808	*	4938	5568	5970	4909	3216	5495	3672	4751	4413	2363	*	6853	3914	3892	2723	*	4148	55
+       0	*	*	0	*	393	2070	9257	1000	2996	
+
+S 56   3934	*	*	3683	7048	7026	6907	4324	3920	3231	4751	5383	3841	3782	3215	3361	3781	3690	4857	5851	56
+       100	5077	4739	693	1391	*	0	9492	1327	1411	
+
+F 57   3778	4785	5755	3332	5949	3992	5967	4454	3938	3204	*	5975	2568	4300	3584	4930	4059	5231	*	5609	57
+       43	5470	7139	1127	883	149	3347	9421	1757	1975	
+
+S 58   3522	6912	3438	3343	*	4065	4871	6469	5501	5308	5821	2658	4561	3922	4758	2916	4342	5834	6173	5226	58
+       61	5372	5833	2030	405	881	1130	9525	1285	1101	
+
+K 59   3113	*	5015	2934	6649	2648	6123	6934	3512	5608	6926	4098	3767	3561	4770	3418	4513	5963	*	7024	59
+       142	4338	4504	319	2334	1627	565	9499	1763	1380	
+
+D 60   4875	6605	1628	4077	*	4146	6014	*	3771	*	*	2988	4641	3776	6102	3440	4669	5105	*	6200	60
+       76	6860	4545	727	1337	446	1912	9379	1225	1950	
+
+W 61   5406	*	5683	4840	8126	1265	5112	*	3295	4776	5565	4125	6263	6171	5089	3628	4225	6867	4612	5920	61
+       160	3995	4568	254	2629	689	1396	9485	1947	1881	
+
+S 62   4996	6786	6328	4883	5776	4262	5503	*	4199	3216	5825	5192	6926	5302	4306	2505	1736	4424	*	7209	62
+       45	6875	5504	0	*	1093	913	9461	1000	1975	
+
+F 63   4391	4189	*	5985	1939	5927	5113	6675	5020	6697	*	5862	*	6823	*	*	4556	6050	4441	1337	63
+       76	5143	5444	990	1010	1390	693	9434	1335	1903	
+
+Y 64   5122	5242	5256	5590	4604	6641	6414	*	5505	5185	6649	4927	6975	3086	3567	1487	3050	5774	6254	5392	64
+       61	4911	6902	2021	408	2439	294	9427	1368	1924	
+
+L 65   3020	6109	*	6379	5283	*	*	3432	4098	3593	3854	*	5450	4132	6431	3125	2743	2735	5991	*	65
+       26	5791	*	0	*	637	1487	9440	1118	2098	
+
+L 66   6936	5963	6728	5988	4107	6224	4101	6899	6044	3151	7241	6011	5892	5206	3961	2399	2728	3339	3798	4530	66
+       0	*	*	*	*	*	0	9490	0	1314	
+
+Y 67   4083	6728	6827	7358	*	7277	4318	5852	4568	4273	*	6643	5892	5159	5574	1091	3861	3058	*	6077	67
+       39	6976	5757	1000	1000	1678	541	9490	1000	1314	
+
+Y 68   4436	*	4851	4661	4573	*	4754	2980	4726	4259	5325	6817	5191	4098	3566	3615	3310	3770	4925	3456	68
+       11	7004	*	0	*	967	1034	9460	1036	1498	
+
+T 69   4745	5168	*	7712	4809	6125	6119	3820	5613	1154	5248	*	5476	*	4167	5169	4789	3048	5808	5803	69
+       19	6260	*	2322	322	*	0	9498	1096	1170	
+
+E 70   4357	*	4413	3169	*	6939	5231	4774	3974	3747	4850	3748	3872	6090	3419	3776	2750	5514	5596	4883	70
+       41	*	5152	*	*	*	0	9461	0	1411	
+
+F 71   4226	*	*	5550	3458	5755	*	2297	6993	2409	4925	*	6806	6594	*	4499	4551	1923	*	6227	71
+       32	5529	*	1585	585	2551	270	9336	1172	1864	
+
+T 72   3400	5948	3933	4754	5981	5626	6891	6749	3739	4802	6598	3967	3004	4748	4653	2800	2928	3815	*	*	72
+       12	6916	*	0	*	*	0	9359	1000	1698	
+
+P 73   2877	7046	*	3737	4689	5967	4618	*	3191	3464	7047	6440	2513	5051	3949	3128	4604	6964	5322	6970	73
+       137	3465	*	1860	465	*	0	9359	2338	1698	
+
+T 74   4291	*	2766	2651	*	3584	6650	5751	3793	5885	6413	3956	7060	3178	4765	2925	4045	7154	6437	*	74
+       472	1954	5580	1859	465	616	1525	9359	4524	1698	
+
+E 75   5268	5231	2750	2189	*	4572	5107	*	4096	4764	*	4075	4674	3290	5035	2895	5642	6478	*	5941	75
+       532	1803	5527	1487	637	2823	220	9334	4811	1696	
+
+K 76   3191	*	3847	2688	6675	1817	5136	4911	4428	6191	*	4102	5657	5573	4939	4627	4160	*	7206	6009	76
+       36	5323	*	1606	575	*	0	9234	1281	1961	
+
+D 77   3143	*	3231	3334	*	2817	5095	6750	3022	4698	6922	4715	*	4804	4434	3560	3681	5403	*	5365	77
+       22	6048	*	1748	510	2694	242	9234	1166	1961	
+
+E 78   6054	*	5925	2506	*	5445	5697	5836	3231	3833	5420	4099	5757	5071	3591	3346	2483	3922	*	*	78
+       68	4903	6340	1042	959	1979	422	9248	1444	1798	
+
+Y 79   *	5624	*	*	2031	*	4561	3984	6368	4108	4587	*	*	*	6855	6113	6034	3392	6546	1421	79
+       25	5870	*	967	1034	3209	165	9286	1121	1980	
+
+A 80   5172	*	5672	6987	*	6746	6471	4341	2935	6115	4798	6775	*	4760	4492	2282	1689	4284	*	4786	80
+       49	4911	*	1453	656	1078	926	9304	1370	1865	
+
+C 81   *	287	*	6602	*	5907	*	5748	*	6343	*	*	*	6649	5903	4837	5793	5354	*	5781	81
+       0	*	*	*	*	2417	299	9417	0	1519	
+
+R 82   5097	5883	7174	2562	5847	5798	4736	4621	4064	6015	4640	5573	6100	3089	3143	5020	3640	2877	*	4826	82
+       0	*	*	*	*	*	0	9401	0	1397	
+
+V 83   2589	6187	*	5606	4439	4840	*	4338	*	4740	5158	5798	5883	*	6644	5497	6480	977	*	5867	83
+       58	5572	5784	4644	59	*	0	9401	1159	1397	
+
+N 84   4870	*	4403	3006	5218	7045	5430	5038	2660	5290	*	4657	5946	2986	3820	3237	3587	4923	*	4408	84
+       0	*	*	0	*	2798	224	9311	1000	1713	
+
+H 85   6862	*	6132	5698	*	4070	804	6331	6804	4692	*	3127	5210	6944	5654	4759	6543	*	5728	5083	85
+       85	4396	6714	2604	259	*	0	9239	1514	1594	
+
+V 86   3862	*	4567	2284	6320	4458	*	4862	3030	5314	*	4115	3441	5766	3679	3906	4201	4435	5485	6983	86
+       73	4769	6338	2211	351	1528	614	9113	1663	1751	
+
+T 87   2391	*	4212	4499	6834	2378	6840	*	4741	4836	*	4348	4599	*	5303	2144	4257	6680	5321	*	87
+       22	6037	*	0	*	2216	350	9068	1172	1605	
+
+L 88   4917	*	6898	*	4130	3552	*	6477	4649	1347	6396	3938	5595	5148	5435	2934	4892	5204	7015	5424	88
+       64	4522	*	2421	298	697	1384	9030	1442	1448	
+
+S 89   4875	*	4137	3398	*	3836	4616	6291	3443	4794	*	3540	3202	4198	5143	3099	3196	4073	*	*	89
+       193	2998	*	1465	649	*	0	9028	2238	1081	
+
+Q 90   3533	*	5044	3046	*	6262	6092	5816	3297	5803	5427	3215	4817	3085	3905	3249	3254	4796	*	*	90
+       0	*	*	1000	1000	*	0	8741	1081	1081	
+
+P 91   4874	*	3724	3795	4470	*	*	*	3707	4981	*	5179	1121	6434	*	4011	3835	*	*	4894	91
+       0	*	*	*	*	*	0	8734	0	1081	
+
+K 92   4425	*	*	*	5016	*	4942	2526	3635	1576	4153	5897	*	3823	5905	*	4846	3457	*	6112	92
+       53	4780	*	2322	322	0	*	8587	1213	1081	
+
+I 93   5429	*	5167	4092	*	5344	*	3380	3807	3938	6257	6018	6063	4877	2769	3338	2093	3728	*	*	93
+       22	6032	*	2322	322	*	*	8576	1000	0	
+
+V 94   3381	*	*	4192	4663	5191	*	3578	3186	2204	*	*	*	3909	4177	6061	4047	3054	*	4209	94
+       27	*	5759	*	*	*	*	8431	0	0	
+
+K 95   *	*	5471	4735	5256	4542	3895	5342	3566	*	4503	3641	4501	4028	3574	2479	2965	5650	*	4225	95
+       0	*	*	*	*	*	0	8191	0	1081	
+
+W 96   4676	*	*	*	2743	*	4170	5207	*	2962	*	*	5155	*	4943	5207	*	3498	1332	5199	96
+       0	*	*	1000	1000	0	*	7388	1081	1081	
+
+D 97   3935	*	2971	2448	*	3203	*	*	2639	*	*	3277	*	*	4795	4046	3657	3724	*	*	97
+       0	*	*	*	*	*	*	6949	0	0	
+
+R 98   *	*	3587	4579	*	4295	4721	*	4058	*	*	*	945	*	3353	*	4178	4226	*	*	98
+       0	*	*	*	*	*	*	6220	0	0	
+
+D 99   *	*	3652	2520	*	*	3515	*	*	*	*	*	1830	3785	*	2197	3529	*	*	*	99
+       0	*	*	*	*	*	*	4690	0	0	
+
+M 100  *	*	*	*	*	*	*	*	*	844	1175	*	*	*	*	*	*	*	*	*	100
+       0	*	*	0	*	*	*	2653	0	0	
+
+//
+�HHsearch 1.5
+NAME  cb13cb2555c5bacde1dc168618e48f3f
+FAM   
+FILE  cb13cb2555c5bacde1dc168618e48f3f
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:33:53 2013
+LENG  183 match states, 183 columns in multiple alignment
+FILT  143 out of 1887 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  10.8
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCHHHHHHHHHHCCCCCCEEEEEECCCCCCHHHHHHHHHCCCCCCCCCCCCEEEEEEEECCEEEEEEECCCCHHHHHHHHHHHCCCCEEEEEEECCCCHH
+HHHHHHHHHHHHHHHCCCCCCEEEEEECCCCCCCCCHHHHHHHHHHHHHHCCCCEEEEEECCCCCCHHHHHHHHHHHHHHCCC
+>ss_conf PSIPRED confidence values
+9137999999852899833999999999999999999965887544785434789999677789999757717678999998603999999998997311
+68899999999986244899789999882155423899999999887654269708999668896999999999998675179
+>Consensus
+xxxxxxxxxxxxxxxxxxxxixvxGxxxxGKstlixxlxxxxxxxxxxtxxxxxxxxxxxxxxxxxxDxxgxxxxxxxxxxxxxxxdxxixvxdxxxxxs
+xxxxxxxxxxxxxxxxxxxxxxivvxnKxDlxxxxxxxxxxxxxxxxxxxxxxxxxxxxSaxxxxxixxxxxxixxxxxxxxx
+>cb13cb2555c5bacde1dc168618e48f3f
+MGNIFSSMFDKLWGSNKELRILILGLDGAGKTTILYRLQIGEVVTTKPTIGFNVETLSYKNLKLNVWDLGGQTSIRPYWRCYYADTAAVIFVVDSTDKDR
+MSTASKELHLMLQEEELQDAALLVFANKQDQPGALSASEVSKELNLVELKDRSWSIVASSAIKGEGITEGLDWLIDVIKEEQL
+>gi|300121709|emb|CBK22284.2| unnamed protein product [Blastocystis hominis]
+--------------KDNNIRIIVVGDAAVGKTSIISTFVSDRFAENVDPVLcevVIPGECTTNHCSLTIVDSSSIEEDHDITCEQIRLADVVMIVYSLDK
+PHSLESVTTKWIPLVIDIGGPQKPIVVVGNKIDLEKnpssMNSNTHLREHSESILSQYPNVDcCMECSAKSRQNLTQVFYAAQRTV-----
+>gi|14595136|dbj|BAB61872.1| Picchu-236-X [synthetic construct]
+--------------DMAGNfdseersswywgrlsrqeavallqgqrhGVFLVRDSSTSPGDYVLSVSENSRVsHYIINSSgPRPPVPPSPaqPppgvspS
+RLRI----GDQEFDSLPALL-----EFYKIHYLDTTTLIEPVSR---------SRQGSGVILRQEEAEY-------------------------------
+---------------------
+>gi|288553110|ref|YP_003425045.1| GTPase RsgA [Bacillus pseudofirmus OF4]gi|288544270|gb|ADC48153.1| ribosome-associated GTPase [Bacillus pseudofirmus OF4]
+------------------------------------------------------------------------DRKNELVRPPISNIDQALLVFSAKEPDF
+---SPLLLDRFLVHIEANNIKPVIIISKVDLLLPNELAEIKEYQKQY--EAIGYTVILTTNQNQSSnqtneMVEILSCIKDQV-----
+>gi|326674986|ref|XP_001337060.4| PREDICTED: GTPase IMAP family member 8-like [Danio rerio]
+-----------------sEFSLVLLGYGEAGKSSAGNTILGRPafgs-----gRTYQCVQRHGEVGGQKVSIIDTPGWwkhlpiqqtpelnkEQITQSAS
+LSTSGPPAFILVTRAD--CSFKEQERKALEDHLNLFGSSVwdHSLVLFTFGDLIGGRAIEQHIEWEGealrwlVDRCGNRYHVFNNKA---kgeSQQVRG
+LLEKIQEMTVANK-
+>gi|169621003|ref|XP_001803912.1| hypothetical protein SNOG_13705 [Phaeosphaeria nodorum SN15]gi|160704153|gb|EAT78729.2| hypothetical protein SNOG_13705 [Phaeosphaeria nodorum SN15]
+--------------------------------------------------------------------------MSISLIHQVtQTSHGAVCILDG----
+-VAGVEAQTEKVWLQSGQYNIPRIIFVNKLDRVGA-------------------------------------------------
+>gi|118366321|ref|XP_001016379.1| hypothetical protein TTHERM_00128980 [Tetrahymena thermophila]gi|89298146|gb|EAR96134.1| hypothetical protein TTHERM_00128980 [Tetrahymena thermophila SB210]
+--------------KKKIINVLVDGSPKSGKSQLISKLSEYCLHEGYDYMErylknCSEVMIQNEQVTVIFYENSNHQ-YLKEESEFNIQFHIYLLLFDV
+NNQDSFEISIKQYNQYSSK--LKSSLKFLIASKCDLSNmsiviqkninnlqylsQITTEDIEQFLvessriylndqQEQFAQQNGFSIFAVSSATKRNVQ
+TLKFKLAQAAYNLGL
+>gi|27383230|ref|NP_774759.1| ABC transporter ATP-binding protein [Bradyrhizobium japonicum USDA 110]gi|27356404|dbj|BAC53384.1| ABC transporter ATP-binding protein [Bradyrhizobium japonicum USDA 110]
+-------------------VVALIGPSGSGKSTLLRCVNL----LVTPDGGS----VRVGDTRFQFGEGAKlpdvktLARFRATTGMVFQH-FNLFPHMT
+TLQNVmegPV----------------------------------------------------------------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	*	1946	717	*	*	*	*	2921	*	*	*	*	1
+       0	*	*	*	*	*	*	4567	0	0	
+
+G 2    *	*	3515	3407	*	1165	3386	*	3526	*	*	3434	3363	*	*	*	*	*	*	*	2
+       0	*	*	*	*	*	*	5462	0	0	
+
+N 3    3639	*	*	*	3633	3839	2728	*	3685	*	*	2134	*	3387	3671	3778	3927	*	*	*	3
+       0	*	*	*	*	*	*	5919	0	0	
+
+I 4    3778	3671	*	3839	*	*	*	2104	*	2461	*	*	*	2690	3633	3685	*	4290	*	*	4
+       0	*	*	*	*	*	*	5919	0	0	
+
+F 5    3212	*	*	*	1452	*	3708	3020	*	2576	3291	*	*	*	*	4136	*	*	*	*	5
+       0	*	*	*	*	*	*	6445	0	0	
+
+S 6    *	*	*	4164	*	*	*	*	1917	*	*	*	*	4206	2549	2015	2721	4179	*	*	6
+       0	*	*	*	*	*	*	6941	0	0	
+
+S 7    *	*	4348	*	*	3559	*	*	2010	3613	*	2448	*	2988	3351	4575	*	*	4662	4402	7
+       0	*	*	*	*	*	*	7268	0	0	
+
+M 8    4435	*	4551	*	2607	*	*	2536	4399	1550	4659	*	*	*	*	3924	*	*	3645	*	8
+       0	*	*	*	*	*	*	7388	0	0	
+
+F 9    *	4603	*	*	3202	*	*	2715	*	2112	4750	4698	4746	4710	3730	4738	*	2587	*	4787	9
+       0	*	*	*	*	*	*	7761	0	0	
+
+D 10   *	*	3014	3948	4845	*	*	*	3502	*	*	2244	*	3306	2086	3228	4882	*	*	*	10
+       105	4775	4882	1000	1000	*	*	8086	1046	0	
+
+K 11   4873	*	*	4651	*	3408	*	*	2443	*	*	4927	*	3901	3857	1898	2491	*	*	4924	11
+       0	*	*	*	*	*	0	8057	0	1059	
+
+L 12   4821	*	*	*	4882	3577	4651	3841	2547	1451	*	*	4830	4918	4914	*	*	4896	4873	5001	12
+       0	*	*	*	*	0	*	8057	0	1059	
+
+W 13   3879	*	*	4971	1599	*	5145	3400	3085	4021	*	5068	5009	5018	5024	3499	5088	*	5203	*	13
+       0	*	*	*	*	*	*	8271	0	0	
+
+G 14   5145	*	2547	3446	5046	3050	*	4912	5036	*	*	4083	4034	4038	2972	5184	3341	4067	*	*	14
+       1438	4020	813	594	1566	*	*	8271	1310	0	
+
+S 15   4056	*	2708	2099	4931	*	*	*	3029	4263	*	3424	4132	4962	4955	3938	4822	*	*	5017	15
+       47	4964	*	1000	1000	218	2832	8692	1000	4288	
+
+N 16   4105	*	4427	3276	*	4297	4346	*	2733	4905	3487	4143	3986	4535	3445	3448	4592	4992	*	*	16
+       0	*	*	*	*	1450	658	9711	0	1388	
+
+K 17   4142	6232	6233	4238	*	4935	4132	4776	2364	6178	5959	3168	3336	6139	3143	4603	3689	5252	*	5019	17
+       0	*	*	5644	29	*	0	10267	1205	1183	
+
+E 18   6227	*	3867	3928	*	4396	5335	3951	3109	4155	*	3622	3473	4987	3404	4858	2960	3772	*	6641	18
+       0	*	*	*	*	0	*	10504	0	1183	
+
+L 19   5093	6298	*	*	3215	6379	6368	2386	6576	2195	5535	6051	3906	*	4400	5422	*	2632	*	3823	19
+       36	5342	*	4131	85	*	*	10541	1303	0	
+
+R 20   4848	5793	5332	5137	6318	5864	4147	6632	1754	6653	6768	2802	*	4857	2589	5927	3794	4612	*	6839	20
+       51	5402	6493	3869	102	*	*	10240	1182	0	
+
+I 21   5877	5757	*	*	4725	6761	*	1491	*	2659	5237	*	7016	*	*	4870	6596	1665	*	6780	21
+       0	*	*	*	*	*	0	10496	0	1011	
+
+L 22   2383	4002	*	*	4254	3269	7010	3205	*	2434	5406	5572	*	*	*	4888	5142	2460	*	*	22
+       0	*	*	*	*	*	0	10512	0	1011	
+
+I 23   5753	*	*	*	3139	6884	*	2696	*	1743	5053	6694	*	*	*	5955	5737	1591	*	*	23
+       15	6581	*	4000	93	*	0	10450	1038	1011	
+
+L 24   3416	6048	6658	*	4342	*	*	2472	6764	2113	3760	*	*	*	*	4540	4413	2014	*	*	24
+       0	*	*	*	*	*	0	10463	0	1011	
+
+G 25   5148	*	*	6559	*	147	*	6918	*	*	*	*	*	*	6083	6367	6233	6726	*	*	25
+       0	*	*	*	*	0	*	10476	0	1011	
+
+L 26   4354	6831	2608	3558	4581	6563	3590	6633	3993	3692	5881	4129	3614	4908	4437	3315	4127	*	*	6077	26
+       15	6619	*	3170	170	*	*	10485	1038	0	
+
+D 27   4188	5369	4165	4098	5539	4727	*	*	4167	4505	*	5210	2071	3867	4115	3029	4027	3783	*	*	27
+       0	*	*	*	*	*	*	10485	0	0	
+
+G 28   3794	6932	3789	4555	*	1598	6961	*	4054	6734	*	2245	6771	4664	4353	3634	6998	*	*	*	28
+       11	*	7070	*	*	*	*	10485	0	0	
+
+A 29   2323	3868	*	*	*	6450	4874	4483	6602	4843	6535	5475	6111	5723	*	1928	4133	2252	*	*	29
+       12	*	6972	*	*	0	*	10488	0	1000	
+
+G 30   6214	*	5236	5781	6565	218	*	*	*	*	*	5782	*	*	6705	4978	6348	*	*	*	30
+       0	*	*	*	*	*	0	10673	0	1000	
+
+K 31   *	*	*	6348	*	*	*	5758	232	*	6505	*	5507	6688	5374	4919	5784	*	*	*	31
+       14	*	6667	*	*	0	*	10673	0	1000	
+
+T 32   5363	*	*	*	*	6228	6837	*	4795	5542	*	5379	5492	*	5731	1154	1389	*	*	*	32
+       0	*	*	*	*	*	0	10665	0	1030	
+
+T 33   3267	4267	6228	6917	7088	*	*	*	6339	5294	*	5547	*	5822	5774	1638	1432	6752	6838	6633	33
+       24	6684	7145	1585	585	*	0	10665	1010	1030	
+
+I 34   6955	6832	*	*	2364	*	6627	3377	*	958	7007	*	*	*	*	4976	3929	4361	*	6159	34
+       57	4690	*	2290	330	*	0	10521	1838	1181	
+
+L 35   4422	4510	*	*	4535	7181	6546	1762	6773	2334	3949	*	*	6887	5932	4708	4954	2641	6859	5844	35
+       0	*	*	*	*	*	0	10649	0	1181	
+
+Y 36   3938	7081	4153	4187	5894	5178	5325	6048	3647	3701	5525	2030	6846	4610	3320	3684	4659	6404	*	5085	36
+       0	*	*	*	*	1256	783	10671	0	1181	
+
+R 37   2732	5461	7079	6040	5334	7055	4044	5679	2927	5988	4620	5412	5481	4523	2656	3185	3345	5351	*	5448	37
+       32	6850	6237	2000	415	*	0	10673	1011	1030	
+
+L 38   4251	5641	*	*	2910	*	6916	2932	*	1419	4758	*	5886	*	*	5028	5748	3628	4861	3994	38
+       58	4674	*	3533	130	*	0	10606	1590	1329	
+
+Q 39   3490	4867	5889	4940	3947	6358	*	3394	4630	2578	6238	5857	5569	5152	4754	2943	3949	3274	6727	5450	39
+       104	*	3852	*	*	762	1285	10671	0	1329	
+
+I 40   4020	6757	3467	3629	6783	2112	5296	6179	3953	3864	5890	3488	6123	4854	3802	4558	4716	*	*	4724	40
+       222	3012	5765	2416	299	1028	972	10612	3291	2520	
+
+G 41   4798	6623	3250	3644	7081	2208	4952	5461	4328	5889	5945	3459	5326	3938	3654	3325	5718	5767	*	6729	41
+       24	5934	*	5122	42	*	0	10592	1326	2050	
+
+E 42   4155	5201	3187	3090	5862	5306	4488	4766	3717	5473	7128	3564	4185	4052	4263	3120	4839	5401	6532	5404	42
+       121	3758	7205	2115	379	*	0	10592	2255	2050	
+
+V 43   3649	6821	6013	3994	2453	4216	5357	3255	5853	3718	4828	6223	4451	5170	5569	4329	4941	3960	*	3563	43
+       131	3523	*	531	1699	*	0	10960	2682	2183	
+
+V 44   3580	5935	4083	7380	5091	5138	5417	3116	4932	3342	4232	5863	3323	4015	6242	3616	3913	3817	*	4546	44
+       558	1698	6283	1129	881	0	*	10957	6199	2183	
+
+T 45   3771	6749	3871	2815	6036	4127	4884	4518	3250	5075	6017	4054	3678	5383	3770	3591	3967	5368	*	*	45
+       33	6069	6983	4501	65	*	0	11000	1150	1122	
+
+T 46   3906	*	4119	4182	4828	4232	4203	4473	3556	3786	*	4741	6246	5189	4361	4147	3654	3467	*	3029	46
+       53	4785	*	3446	139	*	0	10993	1781	1308	
+
+K 47   5243	6448	3656	3691	4919	3335	5860	3220	4658	4579	5443	4477	4108	4848	6825	2845	4049	4066	*	4696	47
+       42	5565	7033	2209	351	1380	699	10993	1329	1308	
+
+P 48   5530	6626	3995	5016	7184	5013	4460	4261	4045	4446	6993	3985	1874	4922	5703	2995	4258	5512	*	4752	48
+       129	3543	*	2432	296	*	0	10977	2643	1296	
+
+T 49   4519	*	5065	5593	5962	5163	5715	4671	4527	6732	5641	4174	4579	5864	4134	3146	1402	4074	*	6851	49
+       116	3826	7201	4546	63	*	0	10977	2357	1296	
+
+I 50   4539	6009	4959	4705	5359	4665	7103	2457	4377	3394	4636	5602	3558	6046	5590	3567	3445	3229	*	6627	50
+       19	7493	7105	1000	1000	1714	525	10970	1000	1499	
+
+G 51   3982	5708	3034	3401	5265	1574	6134	*	6016	4609	*	5935	5217	5288	4202	3236	6992	5858	7114	7200	51
+       411	2047	7447	1340	725	1977	423	10979	5334	1454	
+
+F 52   4163	4949	5542	4705	3424	*	*	2712	6891	3506	4746	4981	3485	5708	4151	5582	3050	3825	6978	4155	52
+       0	*	*	*	*	*	0	10968	0	1590	
+
+N 53   4548	5834	3652	3076	5097	4535	5467	3776	4703	4579	*	3697	6693	4053	5068	3561	3615	3467	*	4062	53
+       0	*	*	*	*	2155	367	10968	0	1590	
+
+V 54   3993	5829	6195	4119	4251	5831	6361	3445	3686	3718	5298	6163	4369	5526	4878	4123	3214	3765	5908	3037	54
+       21	7225	7032	1000	1000	*	0	10991	1000	1422	
+
+E 55   3631	6979	4524	3436	4016	3391	6013	4692	2708	4602	5534	*	4781	6099	3652	4437	4023	4659	6707	4035	55
+       135	3480	*	5205	40	1375	702	10968	2999	1590	
+
+T 56   5715	5415	5061	3837	6726	4068	6155	4288	3461	6186	5192	4155	4202	4667	3571	3378	3035	2906	*	7433	56
+       73	5159	5548	1854	467	1587	584	11032	1424	1299	
+
+L 57   4985	5085	6797	6909	3387	6066	5986	2753	5575	3623	3943	6917	4447	4677	4766	4282	4257	2434	6014	4453	57
+       25	7080	6634	2000	415	2443	293	10773	1000	1715	
+
+S 58   4308	7081	3923	3093	4001	5436	5632	4622	3203	5253	6677	4255	4390	4728	4533	2974	3758	4227	*	4942	58
+       31	5548	*	3206	165	*	0	10747	1327	1740	
+
+Y 59   5157	5672	4571	6584	3801	4559	4418	2485	4536	3338	5025	4501	5476	7260	*	4138	4632	2968	4933	4139	59
+       49	4908	*	1988	419	1469	647	10747	1758	1740	
+
+K 60   4234	6927	3135	3827	5946	3176	5582	5157	3348	6227	7111	3238	3105	4898	3805	4640	5187	6976	*	4135	60
+       681	1447	6725	1771	500	*	0	10772	7040	1574	
+
+N 61   4567	5138	3629	3712	5888	3144	*	4348	2839	4982	6135	3355	3653	4065	3851	3693	5851	*	*	7230	61
+       202	3298	5102	3507	133	1706	528	10745	3128	1892	
+
+L 62   4047	6675	5793	3708	4479	4866	4797	3412	5993	3613	4599	6773	5045	4650	4000	3974	4571	3012	*	3109	62
+       67	4472	*	1563	596	867	1147	10652	1796	2215	
+
+K 63   6233	6951	3686	3009	6845	4614	5433	4407	3008	4494	7673	3849	4100	4057	3110	4263	4457	4773	*	4460	63
+       0	*	*	*	*	*	0	10789	0	1472	
+
+L 64   4094	4538	5490	*	2737	7066	6992	2749	6980	2450	3779	*	5980	*	5541	5541	7185	2577	5536	4522	64
+       20	6874	7557	1000	1000	*	0	10789	1000	1472	
+
+N 65   5548	7161	8038	3655	6605	5429	4295	3889	5185	3989	6146	3697	5678	3789	3531	3978	2691	2926	*	5233	65
+       11	7080	*	1000	1000	*	0	10746	1000	1611	
+
+V 66   *	*	6691	6870	2640	5902	*	2176	7000	1766	4567	*	*	5631	6951	5539	7015	2901	*	4385	66
+       39	6248	6238	1585	585	*	0	10746	1122	1611	
+
+W 67   5080	*	5936	6056	5328	6787	6004	2519	5304	3896	6004	5891	5351	7024	5920	5575	4551	2463	2234	3576	67
+       0	*	*	*	*	*	0	10733	0	1889	
+
+D 68   6927	*	630	3019	7311	4973	7269	5095	5924	*	*	4780	*	6799	*	6909	4023	6816	*	7046	68
+       12	*	6974	*	*	3247	161	10733	0	1889	
+
+L 69   4268	4062	6640	7005	3612	5405	7052	4222	6435	2773	5344	5872	5009	*	6028	4678	1706	3369	6005	*	69
+       10	*	7242	*	*	2640	252	11096	0	1955	
+
+G 70   3100	5484	4873	5563	7039	2642	6923	6332	7006	6736	5848	5128	1483	5850	5038	3589	4846	5495	*	6878	70
+       27	5760	*	1294	756	1359	713	10961	1432	1914	
+
+G 71   5693	6904	5684	5516	4967	697	5752	*	6945	5923	*	4082	5452	5273	7197	3227	*	6773	*	6849	71
+       114	3723	*	4183	82	*	0	11020	2751	1500	
+
+Q 72   4025	7067	3504	4168	4080	6654	3358	3942	6381	3601	5171	4038	7287	3185	4058	4031	5257	4531	*	3928	72
+       396	2347	4528	3287	156	*	0	11020	4876	1500	
+
+T 73   3958	5758	3155	2325	5183	4660	5928	4917	3934	5517	5283	4290	3766	4325	4201	4355	5617	4196	*	5437	73
+       69	5052	5941	587	1582	*	0	11892	1539	2471	
+
+S 74   4454	*	3527	2729	5269	4123	6234	5473	3399	4249	5757	5290	5026	4768	3609	3049	4262	5427	5979	4477	74
+       45	5540	6740	3494	134	720	1348	11951	1497	2814	
+
+I 75   5284	7191	5121	5423	2725	4950	4162	3256	5929	3316	4108	5125	4236	5302	7148	3863	5064	4912	4902	3094	75
+       44	5050	*	1026	974	2383	307	11723	1462	1838	
+
+R 76   5574	*	3233	3590	5220	3729	4616	4721	3278	3937	6934	4151	6000	3813	3057	4108	3732	7030	7143	5578	76
+       37	6786	5965	5248	38	1085	920	11744	1000	1650	
+
+P 77   3363	6108	3535	3258	6193	4185	5139	6082	3114	5544	5714	4421	4998	5540	3506	3024	4052	4684	*	5630	77
+       30	6109	7344	1326	734	*	0	11791	1191	1584	
+
+Y 78   4826	5681	6033	3100	4656	4882	4868	3350	4382	2251	4362	4641	6133	4895	5075	4433	3564	5207	*	5306	78
+       19	7344	7163	2807	222	2703	241	11795	1000	1743	
+
+W 79   3874	6792	4683	4618	4992	4566	5587	3352	5306	3149	5908	5019	5250	5317	3514	3924	3538	4018	3691	4830	79
+       11	6992	*	2585	263	1588	583	11796	1000	1744	
+
+R 80   4944	*	4243	3398	5516	4833	4534	4579	3042	3775	5348	4133	3530	4133	4494	3336	4639	4378	6957	5742	80
+       58	5592	5732	2287	331	*	0	11793	1247	1445	
+
+C 81   3245	6203	4783	4017	3941	4322	5308	4614	3800	3898	5537	4421	5375	3949	4356	3139	4043	4181	7379	5529	81
+       33	6964	6081	0	*	1844	471	11739	1002	1940	
+
+Y 82   3300	4617	7473	3787	3087	3778	5224	3997	5531	3981	7114	7285	6901	5087	5975	3399	4879	4742	5502	2651	82
+       102	4255	5957	2984	195	1459	652	11838	1910	2068	
+
+Y 83   3659	5421	*	*	2920	6320	5912	3353	4859	2197	4754	6318	5725	7246	6206	4184	4592	3629	7117	3149	83
+       31	5538	*	1217	812	1910	446	11757	1369	2101	
+
+A 84   3723	6104	4425	4296	6179	4257	5310	5351	3049	4326	4864	4540	4529	3543	2691	3501	4591	5629	*	6101	84
+       53	4803	*	2324	321	2209	352	11782	1666	1775	
+
+D 85   4087	*	2886	3483	5099	3725	5326	5390	3122	4192	6573	3203	4665	3976	4450	4440	5487	4833	6074	7131	85
+       168	3382	6187	4453	67	*	0	11790	2772	1575	
+
+T 86   2371	5066	6009	5753	5981	4230	*	3264	*	4304	4813	*	4806	6043	4948	3044	3674	2557	6951	5483	86
+       19	*	6281	*	*	*	0	11789	0	1876	
+
+A 87   4047	*	1182	4648	6038	5605	4008	6200	4502	6564	6735	3384	*	4005	4486	4024	7093	7280	7569	*	87
+       10	7242	*	2000	415	224	2800	11790	1000	2173	
+
+A 88   2222	4010	6566	4844	5164	2486	7641	3686	5404	2817	5945	*	*	5889	6956	4455	5082	3325	*	7061	88
+       0	*	*	*	*	*	0	11787	0	1024	
+
+V 89   3103	4422	*	6962	3217	7213	6188	2220	5949	3049	4953	6685	6223	6141	6960	7081	5993	2374	*	4162	89
+       13	6819	*	1000	1000	*	0	11787	1122	1024	
+
+I 90   5543	*	*	7077	3885	6181	6807	1576	7107	2049	5048	*	*	6991	6685	*	6701	2122	*	6768	90
+       0	*	*	*	*	*	0	11787	0	1024	
+
+F 91   5054	4749	*	6531	2696	*	6339	3546	5607	1784	5369	*	*	5623	5054	*	5937	3065	5751	2947	91
+       11	7077	*	0	*	*	0	11787	1000	1024	
+
+V 92   6025	3117	6685	*	4461	6751	*	3128	6611	2567	4163	*	*	*	6991	*	4820	1311	*	6721	92
+       0	*	*	*	*	*	0	11787	0	1024	
+
+V 93   5086	4921	*	6566	2532	5571	5339	2511	7307	3569	6098	6701	6223	*	5713	5193	6917	2294	6202	2916	93
+       0	*	*	*	*	*	0	11787	0	1024	
+
+D 94   3830	*	1319	6110	*	5775	6991	6685	4782	5123	*	3288	4713	5462	5145	2417	6819	5892	*	6768	94
+       42	7316	5480	4644	59	*	0	11787	1007	1024	
+
+S 95   2274	5470	*	*	4573	3893	*	3137	5743	2791	4303	6012	3932	*	*	3868	5292	2806	*	5978	95
+       66	5674	5315	1757	506	*	0	11792	1299	1494	
+
+T 96   4520	*	3144	4104	5640	3717	6957	4499	4737	4282	*	3572	5890	5078	5384	2734	2449	4688	*	5566	96
+       22	6026	*	1756	507	*	0	11750	1219	2121	
+
+D 97   4968	6104	2135	4177	*	4244	5427	5680	4364	5310	*	3245	7138	4396	3476	2783	3997	4844	*	6851	97
+       226	3247	4650	2013	411	573	1610	11750	2860	2121	
+
+K 98   4722	7047	4377	3261	5889	3305	5731	4965	3740	4722	5963	5749	2564	4336	3371	4801	3916	4225	*	6074	98
+       65	7143	4758	3000	193	*	0	11758	1000	2177	
+
+D 99   3739	6000	2916	2958	6032	3996	4994	5305	3701	4670	7273	4526	5988	4386	4313	3862	3814	4621	5401	5081	99
+       91	5053	5012	4169	83	878	1133	11772	1501	3175	
+
+R 100  4985	*	4839	4178	5885	3264	6076	5981	4470	5285	6592	4864	4477	4680	4354	1691	2876	4947	*	*	100
+       105	5892	4222	0	*	316	2348	11751	1227	2567	
+
+M 101  3828	*	5484	6020	2048	5840	6881	3291	5854	2292	5042	5869	5323	5993	7339	5089	6125	3777	6219	3718	101
+       26	*	5810	*	*	3540	130	11030	0	2682	
+
+S 102  4141	5679	3195	2666	*	4370	5468	5229	3611	4143	*	4896	5957	3340	5226	2685	3878	6179	*	6891	102
+       13	6786	*	0	*	2585	263	10971	1000	2840	
+
+T 103  3293	6847	3501	3263	5391	4374	6743	6870	3935	*	5881	2993	4666	4213	4073	3594	3787	4163	*	4833	103
+       28	6355	7131	0	*	2681	245	10974	1122	2531	
+
+A 104  3488	*	5708	3735	4329	5693	7961	3245	7084	2553	4155	4910	5535	4439	5530	3342	4741	3327	*	4445	104
+       0	*	*	*	*	*	0	11541	0	2415	
+
+S 105  3766	6874	3424	2798	5780	5450	5284	4394	3663	3534	6732	4797	4474	5088	3838	3610	4419	4396	*	4814	105
+       31	6156	7163	4392	70	1941	435	11541	1058	2415	
+
+K 106  3699	5684	3805	3222	5500	4470	4925	4746	3026	4892	6130	4026	7508	3648	3069	4733	4814	4358	6920	5595	106
+       63	5907	5268	0	*	353	2206	11703	1283	2193	
+
+E 107  4071	6856	5529	4247	3849	5736	5155	4733	3875	3105	4840	4999	*	5053	4452	4715	4858	3691	2753	3662	107
+       0	*	*	*	*	1600	578	11698	0	1742	
+
+L 108  4046	6695	6076	6278	3625	*	*	2891	7108	2036	4602	5891	6848	6783	4419	7385	4774	3320	3644	3475	108
+       12	6964	*	1000	1000	*	0	11724	1000	1446	
+
+H 109  3331	6978	3793	3633	4949	4611	4155	4330	3247	3300	4635	4205	5269	4178	4677	3968	5502	5457	6526	5673	109
+       12	6937	*	1000	1000	*	0	11724	1000	1446	
+
+L 110  4067	7307	3580	3158	5510	4569	4847	5869	3596	4213	5867	4440	3633	3520	3580	3602	5215	5303	*	4771	110
+       13	*	6747	*	*	*	0	11724	0	1446	
+
+M 111  3456	6042	7291	4899	3303	7324	*	3005	5964	2297	4768	6537	*	5242	*	5013	3968	2595	6102	4229	111
+       30	7324	6156	5426	34	2545	271	11793	1024	1733	
+
+L 112  4720	5678	5459	4159	6051	4565	7746	3126	4307	1919	4947	6463	4909	6938	3191	4216	6111	3441	*	5866	112
+       9	*	7367	*	*	1264	777	11784	0	1904	
+
+Q 113  3665	6923	3775	3325	6918	4508	4299	5848	3041	4753	*	4144	5504	3310	2831	3552	5080	7925	*	5485	113
+       43	7082	5489	672	1425	*	0	11810	1129	1586	
+
+E 114  4276	5138	4901	3259	5195	4588	3933	4918	3465	3096	4987	4514	*	4171	3217	3491	4746	6932	7202	5185	114
+       355	5365	2365	2670	247	3429	141	11765	1317	2116	
+
+E 115  3153	4670	3531	4894	4359	5196	5259	3286	3250	3742	5379	4332	4645	4853	4248	4431	5384	4960	*	4633	115
+       512	4186	2038	4536	64	3277	157	11471	1738	5467	
+
+E 116  3675	6615	3748	4008	4068	3151	4291	6618	3610	4378	4300	4181	5405	4754	4877	3648	4090	4019	*	6544	116
+       330	6163	2392	2000	415	4355	72	11087	1000	7538	
+
+L 117  4805	*	5115	3410	3661	3296	*	4513	3535	2761	6212	5293	3386	*	4887	3405	4737	4690	6132	5083	117
+       127	5367	4064	1272	771	521	1722	10835	1100	8436	
+
+Q 118  3694	*	3573	3685	7029	4261	4433	5623	3063	4425	5491	4347	2946	4388	3822	3885	4434	5686	*	6013	118
+       25	5880	*	1681	539	672	1425	11504	1133	4607	
+
+D 119  5099	*	2784	3857	*	2901	4992	5500	3311	6148	*	2776	5151	4095	3546	3589	4880	*	6583	6859	119
+       111	3913	7072	1685	537	3453	138	11734	2156	2417	
+
+A 120  4036	7142	5322	5804	5472	6956	5508	2562	2519	3727	5869	5124	4342	6851	4473	4680	4191	2518	*	*	120
+       40	5670	7032	1206	820	1371	705	11720	1290	2414	
+
+A 121  4435	6985	5291	5853	6730	4375	6868	5096	3712	3755	*	3584	1358	4812	4333	4927	4870	4994	*	*	121
+       21	6106	*	3300	154	1993	418	11745	1132	1961	
+
+L 122  4411	5148	5314	5808	4275	5946	*	2508	5343	2837	3771	*	4698	5857	5642	6149	4153	2149	6059	6183	122
+       34	5901	7193	2865	213	711	1362	11763	1189	1686	
+
+L 123  5153	5954	6213	5526	3943	*	6639	1702	*	2416	7159	*	*	4998	5965	7149	6306	2162	*	4227	123
+       0	*	*	*	*	643	1475	11829	0	1306	
+
+V 124  4669	6005	*	7401	3352	*	7165	2186	7732	2142	4535	*	5817	*	*	*	6836	1759	*	5786	124
+       0	*	*	*	*	*	0	11726	0	1000	
+
+F 125  3472	3936	7183	*	4065	6163	*	2498	5622	2986	7070	*	*	6993	6861	6232	*	1311	*	*	125
+       11	*	7071	*	*	*	0	11846	0	1000	
+
+A 126  3287	5450	6956	7569	5115	2148	*	2831	7060	2315	4735	*	6621	5415	6131	5998	5765	3126	5391	*	126
+       8	7569	*	3000	193	*	0	11959	1024	1147	
+
+N 127  7393	4596	5770	6244	*	6265	5563	*	6208	4426	*	1534	7113	*	*	3240	1531	*	*	5462	127
+       9	7357	*	3585	126	*	0	11959	1000	1147	
+
+K 128  6990	*	*	4563	6655	*	4367	*	442	7137	4940	*	7187	3887	5843	*	6050	*	*	6849	128
+       10	7115	*	2807	222	*	0	12030	1000	1147	
+
+Q 129  2919	3230	6920	6826	6823	5001	6012	2687	5749	3483	4147	4777	*	7355	5006	3259	4474	3565	5970	4463	129
+       19	6243	*	3000	193	*	0	11880	1058	1289	
+
+D 130  6917	*	276	4217	*	5289	*	*	*	*	*	5132	5939	7716	*	5603	7038	*	*	6823	130
+       71	7198	4599	1000	1000	1423	673	11832	1000	1289	
+
+Q 131  3762	5968	*	4286	6543	5228	6462	4291	3415	1407	3855	5932	6725	4269	5961	5274	4963	4342	*	5774	131
+       160	3850	4801	1587	584	3224	163	11536	2298	2110	
+
+P 132  3650	5050	3959	3897	5235	4566	6803	3151	4490	2756	*	4771	3285	5240	4507	4624	5106	3485	*	7081	132
+       28	5680	*	2868	213	*	0	11457	1179	2581	
+
+G 133  5910	6467	2725	3071	*	4195	4549	7033	3448	3865	7193	3385	3565	4180	4763	3869	3851	6530	*	6803	133
+       403	2190	5355	2050	399	456	1884	11457	4476	2581	
+
+A 134  3918	*	2735	2482	*	5830	5801	6114	3979	5442	5812	3743	3724	3649	4508	3677	4476	5399	6483	5759	134
+       151	4620	4094	3198	166	0	*	11568	1697	1790	
+
+L 135  4957	4681	4439	3189	5291	4286	*	3513	4108	3031	4765	3884	5836	4917	4805	4801	4648	3098	*	4477	135
+       39	6786	5805	1000	1000	*	0	11476	1000	1998	
+
+S 136  4222	*	3073	3550	6882	4439	6714	4219	4086	4471	6639	4198	4485	3992	5236	2746	3188	4263	*	6513	136
+       90	5341	4810	4244	78	1302	751	11481	1675	2281	
+
+A 137  4690	6832	4930	3695	4860	5882	6604	4437	4040	2833	6763	4831	2980	4354	3586	4445	3896	3968	5968	4748	137
+       12	*	6892	*	*	168	3187	11547	0	2377	
+
+S 138  3999	*	3296	2104	5242	6756	6200	4862	3638	4921	6935	4757	5825	3987	3278	3865	4682	4257	6743	7012	138
+       34	6756	6123	3585	126	*	0	11610	1000	1196	
+
+E 139  3951	*	2694	1850	6114	5679	5386	4316	3501	7060	7119	4221	6042	4172	4303	4013	4628	7019	*	7114	139
+       42	5642	6906	2508	279	1138	874	11609	1167	1501	
+
+V 140  4577	6764	4334	*	4020	6074	7049	2703	4980	1742	6513	5825	6870	4685	5243	4794	*	2790	6111	4894	140
+       25	5853	*	2191	357	*	0	11543	1135	1405	
+
+S 141  5383	5060	5250	3277	5948	5750	4856	3351	2879	3836	*	4951	5130	3971	3896	3105	3993	5014	*	4589	141
+       0	*	*	*	*	*	0	11543	0	1405	
+
+K 142  4356	*	3286	2705	4218	5978	6806	4644	2821	5263	5984	5157	*	2594	3891	4112	4126	*	6911	6803	142
+       45	5471	6935	1000	1000	*	0	11543	1272	1405	
+
+E 143  3826	6118	4720	3781	3248	6503	6043	3525	2790	3708	5878	4712	*	4517	3733	4290	5239	4655	6213	4054	143
+       25	5848	*	3514	132	*	0	11527	1153	1608	
+
+L 144  4144	4793	5236	3500	4015	6969	5677	3085	5207	2315	3998	6895	*	5615	6032	5140	4878	2965	6928	4269	144
+       93	4203	6969	3652	120	1093	913	11527	1855	1608	
+
+N 145  3102	6957	4599	4238	6866	3004	6000	5361	2715	4290	*	3781	5304	4546	3562	3504	4142	4865	*	*	145
+       434	5018	2126	2119	377	*	0	11534	1501	1396	
+
+L 146  4683	6454	4290	2635	3806	5051	6567	4247	3789	2538	5655	4837	5129	5104	4417	3440	4843	5401	*	5778	146
+       49	5491	6500	2508	279	2254	340	10589	1173	5263	
+
+V 147  4303	4875	3383	3075	5692	5004	6894	4833	3153	3544	4575	4051	6543	3642	5037	4017	4315	4388	*	5313	147
+       65	*	4509	*	*	*	0	11258	0	4625	
+
+E 148  4929	5497	4426	3551	3455	3237	6671	4136	4136	3630	4130	4255	6310	4230	3979	3886	4907	4560	6508	5752	148
+       81	6634	4498	2807	222	*	0	11163	1000	5200	
+
+L 149  2262	6456	5446	4085	3774	4947	6498	2934	5018	3828	5335	5226	5435	4400	*	3787	4171	4086	*	4617	149
+       150	6188	3553	2000	415	1053	949	11131	1000	5601	
+
+K 150  4631	5043	3335	3895	4995	6378	4736	5095	2559	5844	5560	3704	5658	4010	3650	3062	4614	5460	5454	*	150
+       76	4632	6515	3844	104	1475	643	10645	1542	4582	
+
+D 151  4127	5004	4216	3099	4166	5087	4622	4597	3751	4318	6980	3641	3649	3664	4386	4445	4244	5777	6738	5117	151
+       109	4983	4593	1223	807	1984	420	11355	1357	3544	
+
+R 152  5248	6815	5252	3461	6893	4911	5776	4068	2988	3024	5880	3548	4043	4625	3241	3720	5902	5079	5161	5665	152
+       38	5797	6993	2577	265	3004	192	11299	1108	3486	
+
+S 153  5050	6648	4016	3702	5826	2075	*	5711	3514	5938	6878	2954	3800	5904	3462	4475	5295	4820	6572	6633	153
+       30	5615	*	2773	228	*	0	11358	1149	3331	
+
+W 154  3191	3761	5814	6760	3438	5554	6599	2786	5785	2996	4660	6664	5082	*	5631	5789	5275	2883	4360	4321	154
+       10	7133	*	1000	1000	383	2102	11358	1000	3331	
+
+S 155  3462	7041	3487	3027	6933	4156	5421	5353	3121	6723	6828	4935	2573	5735	4844	3767	4481	4802	*	4792	155
+       264	2579	*	999	1001	952	1050	11532	3955	1463	
+
+I 156  4541	4762	6928	6574	2958	*	5792	2320	5970	2738	6580	6756	4334	*	*	5326	*	2553	6766	3122	156
+       12	6928	*	2585	263	1229	803	11519	1030	1134	
+
+V 157  4575	*	*	6615	2781	*	4486	1989	5709	3141	4934	6835	*	5693	6779	5186	5933	2567	*	3461	157
+       21	6099	*	535	1690	0	*	11549	1119	1000	
+
+A 158  4184	6593	4815	2207	4133	5699	4961	6040	3493	3503	6196	5406	3080	3719	5304	4930	4908	5800	*	4597	158
+       21	6124	*	1585	585	*	*	11560	1183	0	
+
+S 159  4170	2671	*	*	7043	5351	6797	3151	*	3735	4589	5959	6717	5860	6542	5101	2294	2231	6860	6833	159
+       21	6141	*	0	*	*	*	11560	1085	0	
+
+S 160  6115	5329	4450	6797	7460	6107	*	4809	6948	6673	*	3669	7013	6863	6542	686	3623	5397	*	*	160
+       23	5973	*	2310	325	*	*	11560	1167	0	
+
+A 161  1353	4396	7188	5285	*	4195	4646	4983	6906	5758	6508	5483	5790	7040	6837	2582	3937	3886	*	6964	161
+       32	5496	*	3092	180	*	*	11564	1332	0	
+
+I 162  4093	*	4776	4703	5344	5437	4499	7168	1998	3124	6043	4799	*	3851	3213	4885	3734	4971	*	4899	162
+       22	7164	6992	3322	152	*	0	11559	1011	1000	
+
+K 163  4951	*	2948	3084	6798	4431	4172	*	3558	4928	5804	3465	7043	4932	4529	3520	2513	6590	*	5221	163
+       41	6646	5819	2322	322	885	1125	11548	1001	1106	
+
+G 164  5046	5710	4596	5114	6633	1550	5922	5762	3550	5315	5732	2540	4125	6009	4324	4954	5752	6792	*	6631	164
+       39	5240	*	2050	399	0	*	11500	1394	1326	
+
+E 165  4335	*	4162	2740	5163	4774	5194	3643	3602	4275	5265	3903	6998	5049	4509	3634	5403	3742	5873	3872	165
+       25	5853	*	2224	347	*	*	11535	1178	0	
+
+G 166  5333	*	4017	7057	*	1369	4870	5964	6063	6091	*	2097	6589	4176	6615	3505	4868	*	*	7174	166
+       33	5460	*	1805	486	*	*	11535	1364	0	
+
+I 167  6799	4335	6613	*	4852	*	5843	1691	5515	2751	3744	*	5722	6691	5924	5364	5933	2066	*	*	167
+       0	*	*	*	*	*	*	11533	0	0	
+
+T 168  4037	*	2726	2835	5708	6972	4858	6789	3274	4509	5785	3356	4722	3816	4233	4012	4844	5163	6997	5684	168
+       13	6854	*	2000	415	*	*	11520	1000	0	
+
+E 169  5079	6853	4472	1602	*	5421	6703	5987	3518	3477	6664	3384	*	3603	3955	4795	4470	5166	*	*	169
+       0	*	*	*	*	*	*	11434	0	0	
+
+G 170  3113	5698	*	6730	5760	5167	7049	2417	*	1712	5056	*	5618	7029	5573	5628	3822	2969	6424	*	170
+       0	*	*	*	*	*	*	11346	0	0	
+
+L 171  5460	6762	6053	5021	1908	6946	6654	3171	3842	2476	4095	5807	5758	*	5123	5924	*	3844	4588	5264	171
+       0	*	*	*	*	*	*	11346	0	0	
+
+D 172  3611	*	2712	2452	6791	6705	6797	5223	3540	6577	5718	3985	6135	3796	3752	3581	4149	5656	*	5074	172
+       0	*	*	*	*	*	*	11307	0	0	
+
+W 173  3266	7386	4225	3669	4274	6615	6596	5827	3340	4052	4755	5505	7080	3757	4290	3707	4634	3907	4391	3534	173
+       0	*	*	*	*	*	*	10665	0	0	
+
+L 174  3567	5882	*	*	4942	*	*	1324	*	1553	4787	*	*	*	*	5619	6736	4058	*	*	174
+       0	*	*	*	*	*	*	10665	0	0	
+
+I 175  3447	4605	5809	4697	5609	4213	6836	3063	3553	2674	5759	6960	*	3920	4199	5021	4742	2842	*	6439	175
+       0	*	*	*	*	*	*	10588	0	0	
+
+D 176  3782	*	3781	2928	*	5856	4691	*	2826	6476	*	3591	*	3038	3128	3330	3760	*	*	5479	176
+       0	*	*	*	*	*	*	10577	0	0	
+
+V 177  3393	*	6883	4506	6572	6293	4806	3944	2394	2621	5405	6355	6590	3524	4941	4254	3980	4239	*	4599	177
+       0	*	*	*	*	*	*	10176	0	0	
+
+I 178  3218	5484	*	5341	3520	*	6423	2222	*	2090	6323	*	*	6343	5977	6434	5321	2349	*	5376	178
+       15	6613	*	0	*	*	*	10137	1000	0	
+
+K 179  3665	*	4182	3378	5250	*	5985	*	3022	3418	6104	*	2964	6127	3864	3820	3902	3953	6375	3815	179
+       0	*	*	*	*	*	*	9833	0	0	
+
+E 180  4452	*	3507	2425	*	4227	5076	4295	2876	3875	*	4109	6034	3998	3917	3678	5977	5139	*	5844	180
+       0	*	*	*	*	*	*	9710	0	0	
+
+E 181  4671	*	5597	4837	4973	5501	4800	4866	3445	3690	*	3240	3581	4765	2338	3013	4592	*	5478	*	181
+       0	*	*	*	*	*	*	9198	0	0	
+
+Q 182  4442	*	5448	3174	5278	5553	4055	*	3224	*	*	3765	3328	2380	2950	*	3516	5385	*	*	182
+       0	*	*	*	*	*	*	8957	0	0	
+
+L 183  *	*	*	*	*	4341	*	3546	*	853	4297	*	*	*	2773	*	*	4329	*	3951	183
+       0	*	*	0	*	*	*	7139	0	0	
+
+//
+�HHsearch 1.5
+NAME  cbc92a8a85651bd2fb2a8622778ceaf5
+FAM   
+FILE  cbc92a8a85651bd2fb2a8622778ceaf5
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:36:36 2013
+LENG  208 match states, 208 columns in multiple alignment
+FILT  128 out of 1149 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.2 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCCCCEEEEEEEECCCCCCHHHHHHHHHHHHHHHHHCCCCCCCCEEEEEEECCCEEEEECCCCCCCHHHHHHHHHHHHCCCCCCCHHHHH
+HHHHHHHHHHCCCCCCCCEEEEEEECCCCCCCCHHHHHHHHHHHHHCCCEEEEEEECCCCCHHHHHHHHHCCCCCEEEEECCHHHHHHHHHHHHHHHHCC
+CCCCCCCC
+>ss_conf PSIPRED confidence values
+9999997655688871599999798988868999999999999995667899858999997794469865777678999999998754379984229999
+9999999862257789971999994799876503659999999998799899999488259999999982789981899599999999999999997166
+99999988
+>Consensus
+xxxxxpxxxxxcxxxxDivfllDxSxSmxxxxxxxxxxxxxxxxxxxxxxxxxxrvxvvxfsxxxxxxxxlxxxxxxxxxxxxixxlxxxggxxtxxxxa
+lxxxxxxxxxxxxrxxxxxxiiliTDGxxxxxxxxxxxxxxxxlxxxgixvxavgxgxxxxxxxLxxiaxxxxxxxxxxxxxxxxLxxxxxxixxxiCxx
+xxxxxxxx
+>cbc92a8a85651bd2fb2a8622778ceaf5
+DISEPPLHDFYCSRLLDLVFLLDGSSRLSEAEFEVLKAFVVDMMEQLRISQKWVRVAVVEYHDGSHAYIGLKDRKRPSELRRIASQVKYAGSQVASTSEV
+LKYTLFQIFSKIDRPEASRIALLLMASQEPQRMSRNFVRYVQGLKKKKVIVIPVGIGPHANLKQIRLIEKQAPENKAFVLSSVDELEQQRDEIVSYLCDL
+APEAPPPT
+>gi|260837234|ref|XP_002613610.1| hypothetical protein BRAFLDRAFT_127098 [Branchiostoma floridae]gi|229298996|gb|EEN69619.1| hypothetical protein BRAFLDRAFT_127098 [Branchiostoma floridae]
+------------------LYPYGSySGGYPPSNMEKTMG-PGNYRVPLVAGGETITIGSIKKTEETSPseslsaekQAVVAAQDTRECTMSSITiySEER
+LRGT-KKTYSGNGWLPRDP---SWVVDSAGPAWVDSNGVTWED----V-----------VTVDNVQSGDQ--RQVFGGFQ--GKARywKLVITQTYTGWQ
+PYVRE----------------
+>gi|67677889|gb|AAH97100.1| Cfb protein [Danio rerio]
+------------GGKLDIYIAVDASDSIDPKDFDKAKKIIKTLIEKISYYEVSPNYEILMFATDVDQIVKMRDFKTNekArnivKVFEDLDNFNYDKkgd
+RTGTNIAKLYLKILDSMSLEQVQNkedflQTQHVIIVFTDGQAnmggnPKPKVDLIKNLViknNASRENKLDLYVFGVGKDVKKEDMNGLVSEKKdERHF
+FKLPDLDEVQNTFDLMLDdstvvGLCGMQQN-----
+>gi|308473880|ref|XP_003099163.1| CRE-CLEC-65 protein [Caenorhabditis remanei]gi|308267636|gb|EFP11589.1| CRE-CLEC-65 protein [Caenorhabditis remanei]
+------VSDRRCGSdvtrlWLDVVIIVDNCSIMNLNLVYETISGLFNKN--LQIGtgytdPRSTRVGFITYNYNATDVADFYKLQSWADLDSQIQRLKMT
+PlarTTLSKMDTALYAA-INMINstAGFRDNYKKMVIVFTSVHgSYQ--KNPPKDVSKILKARGIPVVTVNTGSSSDTqSYLKNIA---SDNMAYAMADG
+NATQEILKAMTDT------------
+>gi|254410148|ref|ZP_05023928.1| Vault protein inter-alpha-trypsin [Microcoleus chthonoplastes PCC 7420]gi|196183184|gb|EDX78168.1| Vault protein inter-alpha-trypsin [Microcoleus chthonoplastes PCC 7420]
+---IPAlDYRPDQIFPKDVVFLMDTSGSQQGAPLHKCQELMRRFIQGLN---PDDTFTILDFSNAVRHLSQTPLANTPENRELAINYINQLHaSGATEML
+SGIRAA----INVPAPEGRLRSVVLLSDGYIGNEN-RILAEVQQELKPGNR-LYSFGAGSSVNRFLLNRIAEIGR-GICRIIRHDEPTEKVVENFFRSI-
+----------
+>gi|224012469|ref|XP_002294887.1| predicted protein [Thalassiosira pseudonana CCMP1335]gi|220969326|gb|EED87667.1| predicted protein [Thalassiosira pseudonana CCMP1335]
+------------------------------NNFRDMVEFAKSMITSLAALQSNQSYSVVQFATNATLVSLLTSS---IETLEVMDKMAYSGGLT-NHAAA
+I-SACQETLAQSPTGDRKNLLLLITDGDPSLpelAAKEAASQAAAEAKEAGTLIISVMISSLFKPATLDYMREISSHGAVFNVSGFQDLASLQQSLLEEV
+-----------
+>gi|254776136|ref|ZP_05217652.1| chelatase [Mycobacterium avium subsp. avium ATCC 25291]
+-----------------VIFVVDASGSMAaRDRdgggqrcHAVAAARRLSAPRQG----RRDHVPATAGAAA-VAAHLLGAHRRAAAGPLRHRRQD-AAG
+RR-AAGR----ARADRPGEGPRpGAPRP-----RGGAHrrpghrrpgsvGPQPDRRGPAGRRGRGRGGGGLRNV--------------------------
+----------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+D 1    *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	2329	0	0	
+
+I 2    *	*	3141	2992	*	*	*	1942	*	3016	1983	*	*	*	*	*	*	3011	*	*	2
+       190	3016	*	3807	107	*	*	4427	1000	0	
+
+S 3    *	*	3820	*	*	*	*	*	*	*	3795	*	756	*	3775	3918	*	3983	*	3999	3
+       0	*	*	*	*	*	*	5927	0	0	
+
+E 4    *	*	3124	1440	*	*	*	*	*	*	*	*	1625	*	3862	4027	*	3999	*	*	4
+       0	*	*	*	*	*	*	6131	0	0	
+
+P 5    *	*	*	4243	4125	*	*	*	*	3468	*	*	948	3212	4117	4075	4150	*	*	*	5
+       0	*	*	*	*	*	*	6412	0	0	
+
+P 6    *	*	4421	*	*	*	4423	*	4423	4387	*	*	404	*	*	4143	*	*	*	*	6
+       72	4352	*	0	*	*	*	6816	1024	0	
+
+L 7    3816	2273	*	*	*	*	*	3515	4582	3019	*	*	*	*	3649	4636	2967	2491	4513	*	7
+       0	*	*	*	*	*	*	7026	0	0	
+
+H 8    4636	4476	4652	*	2785	*	2639	4608	4897	4808	*	3805	*	4912	*	3003	4947	3059	*	3696	8
+       228	2775	*	3347	149	*	*	7255	1582	0	
+
+D 9    3980	4277	2474	*	*	4978	5006	4998	3079	*	*	4006	5029	5206	5468	2243	5070	3656	*	5075	9
+       39	*	5232	*	*	*	*	7597	0	0	
+
+F 10   3287	5160	4352	3518	4177	*	*	5127	*	2327	*	5133	2842	3505	3961	4208	*	4319	*	5286	10
+       38	*	5257	*	*	*	0	7733	0	1000	
+
+Y 11   3719	*	5397	*	3793	4318	*	3881	4387	2850	*	3870	3326	3887	3392	4348	4385	*	*	3384	11
+       0	*	*	*	*	1042	959	8066	0	1142	
+
+C 12   5603	711	*	5786	*	5624	*	*	4617	*	*	4617	4543	3675	4440	4077	*	*	*	5496	12
+       26	5786	*	0	*	0	*	8376	1000	1000	
+
+S 13   5140	*	3866	3478	4788	5717	6113	6233	3372	6116	*	4479	4196	3916	4064	2180	3229	4366	*	5783	13
+       275	2525	*	806	1224	0	*	8669	2474	1000	
+
+R 14   3417	6360	6623	3293	6409	3363	*	5149	3237	4828	6206	3539	4051	3920	3885	3638	5405	3411	*	6377	14
+       91	4360	6346	1702	530	*	*	8978	1464	0	
+
+L 15   3691	*	4573	5098	5088	4096	6765	6722	3136	6762	6295	4525	2073	4548	4390	3698	5575	4656	4447	4208	15
+       15	6604	*	2000	415	0	*	9224	1000	1005	
+
+L 16   2609	*	*	*	5641	6475	*	3259	5115	2364	3456	6849	5627	4248	4655	5910	5121	2432	*	4867	16
+       0	*	*	*	*	*	*	9334	0	0	
+
+D 17   5019	*	605	3815	*	*	4589	*	6691	*	*	3655	5961	6876	5186	6017	6365	5045	*	*	17
+       15	6564	*	1000	1000	*	*	9419	1019	0	
+
+L 18   6672	*	*	7015	4981	*	6801	1696	*	2190	4123	*	*	*	*	7417	4643	1800	7081	5934	18
+       0	*	*	*	*	*	*	9575	0	0	
+
+V 19   2977	4552	*	*	5244	4863	*	3002	*	3413	4683	*	*	6661	*	4980	5423	1361	*	4109	19
+       0	*	*	*	*	*	*	9667	0	0	
+
+F 20   6677	*	*	*	1239	*	*	2290	*	2127	7058	*	*	*	*	*	6696	3780	*	4536	20
+       0	*	*	*	*	*	*	9667	0	0	
+
+L 21   3198	5245	*	*	5884	6065	*	2913	*	1368	5375	6710	5978	*	*	*	*	1927	*	*	21
+       8	*	7447	*	*	*	*	9667	0	0	
+
+L 22   7081	4340	*	*	4463	*	*	1859	*	1526	4537	6853	*	*	*	*	*	2403	*	4868	22
+       0	*	*	*	*	*	0	9665	0	1000	
+
+D 23   *	*	224	4224	*	5976	5212	*	*	*	*	6533	6549	*	*	5279	*	*	*	*	23
+       16	*	6533	*	*	*	0	9665	0	1000	
+
+G 24   3045	6805	4904	4691	6896	3087	*	4940	5997	6010	5189	3589	*	5928	4408	2452	3035	2952	*	*	24
+       23	5953	*	0	*	766	1280	9643	1143	1181	
+
+S 25   6761	6696	*	*	*	*	6549	*	*	*	*	*	*	*	*	143	4204	6533	*	*	25
+       11	*	7027	*	*	*	0	9665	0	1000	
+
+S 26   4111	*	3116	3566	*	1421	6756	6316	*	5991	6663	4477	*	5466	4273	2728	4773	*	*	6096	26
+       35	*	5363	*	*	*	0	9660	0	1127	
+
+R 27   4616	*	4630	*	5905	4233	6830	6600	5191	6732	5894	5319	6676	*	4361	624	4791	6979	*	*	27
+       25	*	5888	*	*	1272	771	9606	0	1604	
+
+L 28   6645	*	5352	*	*	6667	*	2411	6758	3784	1292	*	*	5744	*	6008	6454	2265	*	5383	28
+       60	4912	7065	3145	173	1538	609	9609	1572	1617	
+
+S 29   3696	6801	3770	4997	6994	2332	5591	6652	4047	6674	*	4463	4823	4897	3715	2233	3764	5822	*	7080	29
+       238	4052	3447	922	1082	2169	363	9607	1926	1500	
+
+E 30   3308	*	3761	3204	6900	2590	5010	5889	5388	4712	5821	3868	3196	3494	4636	3948	5841	6873	6852	6846	30
+       87	4464	6237	3157	172	410	2016	9536	1706	2795	
+
+A 31   3281	*	3560	2968	6708	3711	5363	5984	4343	4774	5890	4133	5958	4426	4646	2685	4079	4215	*	5173	31
+       43	5893	6303	3272	158	875	1137	9656	1153	1601	
+
+E 32   4108	*	3001	3152	4724	3463	5158	6147	3533	5259	6015	2918	4971	4505	3979	4176	4356	6682	*	5608	32
+       91	4030	*	2375	309	1690	535	9587	1938	1533	
+
+F 33   7199	*	*	*	1638	5399	6462	3830	7312	2466	4187	*	6001	5280	4888	5977	5852	4160	3199	4289	33
+       25	5847	*	2098	384	1406	684	9627	1306	1323	
+
+E 34   4314	*	3310	2298	6950	4139	7047	5366	3774	4532	7009	4709	4650	3206	3289	4584	4314	5692	*	5334	34
+       11	7101	*	0	*	*	0	9649	1000	1144	
+
+V 35   3591	*	4951	3632	7049	5815	4011	3816	2557	3126	4476	7400	6462	4041	3878	4641	4722	4314	*	4575	35
+       54	5005	7400	2388	306	0	*	9649	1686	1144	
+
+L 36   2523	6919	*	4318	6136	5700	5629	3157	6984	2908	3052	*	*	4321	*	4236	4038	2620	*	6210	36
+       39	6330	6158	0	*	*	0	9665	1159	1000	
+
+K 37   4631	*	5131	6744	*	*	*	3470	1654	3430	4979	4161	*	4117	2807	4617	5757	4108	*	6000	37
+       11	*	7056	*	*	612	1532	9662	0	1245	
+
+A 38   3269	*	2570	3509	6011	4201	6971	5340	3402	6642	6344	3967	5357	3963	4266	3784	2997	*	*	5762	38
+       23	*	5972	*	*	1038	963	9661	0	1115	
+
+F 39   2720	5803	6498	5042	1423	4793	*	4842	5478	3667	6769	5676	6846	7082	6434	4414	5734	4028	5773	4571	39
+       38	*	5258	*	*	550	1658	9579	0	1281	
+
+V 40   2394	5437	*	*	5897	7019	*	2233	*	2315	4417	*	5879	*	6333	*	3668	2368	*	*	40
+       0	*	*	*	*	799	1234	9589	0	1511	
+
+V 41   3140	*	5346	3457	5203	4864	6943	6000	2466	3361	5413	4635	5465	4546	3329	3669	5311	3737	*	*	41
+       0	*	*	*	*	*	0	9656	0	1131	
+
+D 42   3364	*	2984	3900	6868	5407	4912	*	3252	4872	5589	2693	*	3044	4054	3334	5278	7019	*	6003	42
+       0	*	*	2577	265	1047	954	9656	1131	1131	
+
+M 43   3456	*	*	*	2706	6990	*	2383	6688	1825	4136	*	*	*	*	4860	5878	2838	*	5974	43
+       0	*	*	*	*	*	0	9658	0	1000	
+
+M 44   4171	*	*	*	4375	4341	6550	2304	7208	2252	4240	5752	6478	6631	5974	4713	4518	2233	*	6172	44
+       50	5355	6688	0	*	*	0	9658	1269	1000	
+
+E 45   4497	6878	2567	2834	*	4758	6961	4944	3350	5129	*	3620	5748	3723	3266	3711	4010	5964	*	*	45
+       55	5639	5822	0	*	*	0	9645	1197	1163	
+
+Q 46   4503	5925	4400	4121	6472	4781	4234	4526	3629	4159	5497	4303	4187	2938	4285	2768	3994	*	*	4855	46
+       55	*	4744	*	*	1096	910	9577	0	1519	
+
+L 47   6662	6607	*	6930	2124	5587	*	3323	5018	1525	4884	5926	*	*	*	5034	5008	3528	*	4481	47
+       56	6941	5054	0	*	*	0	9589	1000	1873	
+
+R 48   3415	*	3427	4018	*	3613	7013	*	3627	5304	5969	3297	4052	4221	4115	3460	3448	4145	*	5184	48
+       482	3986	2178	162	3239	2470	287	9589	1929	2362	
+
+I 49   5038	*	5008	5528	4061	5533	6101	1983	5970	2498	4469	5540	4747	5641	*	3916	4400	3340	*	4695	49
+       50	5452	6521	1840	473	3394	144	9185	1132	5149	
+
+S 50   3910	*	4033	5249	6190	2110	6397	5443	5073	*	*	4315	5202	3993	3540	2556	3696	4987	*	5000	50
+       432	2318	4099	1610	572	2192	356	9206	3430	4929	
+
+Q 51   4444	*	3779	3902	5604	3368	6917	*	3464	4981	*	3308	2646	3844	4296	3659	4339	4147	*	*	51
+       76	4276	*	1637	560	578	1599	9383	1553	4732	
+
+K 52   4078	*	2700	3870	6997	3908	4738	6871	3443	4996	*	3172	4817	3781	4777	3750	3864	4874	*	4569	52
+       41	6883	5655	1188	833	661	1444	9642	1153	2360	
+
+W 53   4057	*	2907	4659	5320	2971	4750	6716	4615	4903	5657	3166	7085	3959	3422	4310	3518	4929	7090	5679	53
+       39	5239	*	1533	612	682	1409	9687	1307	1742	
+
+V 54   3254	*	2894	5174	5927	5081	6769	3625	*	5651	5391	6956	6893	5602	5389	3496	2163	2538	6970	*	54
+       0	*	*	*	*	855	1161	9694	0	1190	
+
+R 55   6630	*	4876	5460	5911	6006	3554	*	3274	6765	7032	4006	*	3125	1285	4754	4697	*	*	4929	55
+       12	6970	*	1585	585	*	0	9724	1000	1000	
+
+V 56   3894	*	*	*	3134	6185	*	2295	*	3322	4975	*	*	*	*	5923	7471	1383	*	3965	56
+       47	5319	7223	1757	506	962	1039	9715	1282	1145	
+
+A 57   1853	4960	*	6779	5836	1475	*	6078	*	6661	5952	4593	6495	7007	*	2617	4981	*	*	6823	57
+       0	*	*	2000	415	1146	868	9718	1000	1168	
+
+V 58   3337	*	*	*	3933	6715	*	2231	*	2027	4126	6884	*	*	*	5969	7114	1895	*	6665	58
+       24	5946	*	1924	441	0	*	9728	1137	1021	
+
+V 59   3418	5931	6998	*	4915	5102	*	2423	*	2548	5059	*	*	5198	7040	4743	4573	1818	6659	5332	59
+       0	*	*	*	*	*	*	9736	0	0	
+
+E 60   3571	*	7032	4595	5312	4757	4671	4172	3474	3808	7105	4927	6989	3163	4638	3367	2282	4773	*	6714	60
+       0	*	*	*	*	*	*	9736	0	0	
+
+Y 61   6141	*	6663	6869	1266	5147	*	6030	5976	5251	6744	6811	*	*	*	*	*	5041	5780	1326	61
+       27	*	5748	*	*	*	*	9736	0	0	
+
+H 62   3097	*	3692	*	*	2232	5496	6654	4924	6853	*	3677	*	*	5691	1542	3840	*	6867	*	62
+       14	6688	*	0	*	*	0	9711	1020	1177	
+
+D 63   4421	6060	2415	3604	5344	3150	4633	*	*	*	*	3694	6853	5942	6024	2041	3251	*	6901	5867	63
+       37	6636	6016	2585	263	862	1153	9711	1058	1177	
+
+G 64   4762	*	3739	3140	5003	4647	4306	6018	3565	5358	*	4049	7187	4744	3573	2579	3040	*	5239	5334	64
+       111	4909	4608	3196	167	*	0	9711	1462	1279	
+
+S 65   2294	*	6740	6689	*	4376	6850	4345	*	5069	6578	4590	3008	6811	*	2961	3259	2414	*	4816	65
+       98	3923	*	2031	405	585	1585	9582	2212	2032	
+
+H 66   4598	6708	4306	2946	5710	*	3966	4572	3390	6042	*	4050	*	3489	3147	3875	3382	4184	6846	4540	66
+       15	6591	*	1585	585	524	1715	9725	1010	1255	
+
+A 67   3800	*	4936	2883	4972	7004	6151	3544	5283	3789	5947	5826	3792	6055	5357	4962	3222	2351	4901	6899	67
+       37	5303	*	2532	274	*	0	9742	1317	1000	
+
+Y 68   3928	6948	6024	3080	4846	5017	4519	3021	4610	3670	7143	4425	5812	4083	4883	4886	4988	2588	6003	5106	68
+       76	4734	6177	2163	365	*	0	9756	1571	1000	
+
+I 69   3464	5626	*	*	2050	5066	5728	3427	*	2642	5348	6909	7033	5002	4864	3540	5967	3338	5893	5501	69
+       0	*	*	*	*	*	0	9758	0	1240	
+
+G 70   4258	6953	2734	5209	7232	3410	4733	5833	3822	5224	*	4108	2093	5284	4635	3930	4407	4718	*	*	70
+       12	6950	*	1000	1000	*	0	9758	1000	1240	
+
+L 71   6741	5895	*	6795	2218	6989	*	5616	6749	1233	5732	5850	4380	6879	*	4409	4617	4636	6125	4270	71
+       38	5912	6749	1958	429	0	*	9758	1157	1240	
+
+K 72   4405	*	3604	4945	*	3274	6010	5229	4635	7071	7124	2708	4940	5301	4427	3059	2422	4448	*	5166	72
+       36	*	5332	*	*	*	0	9741	0	1076	
+
+D 73   3285	*	2331	3706	5454	4748	6078	*	3763	4865	*	4100	3967	3759	3875	4377	3540	6879	5878	6017	73
+       163	3519	5671	554	1650	*	0	9702	2539	1602	
+
+R 74   4118	*	4655	4557	2833	4297	5854	3708	*	4189	6827	4614	4803	5004	7136	3628	3514	3670	6001	2899	74
+       170	5378	3526	1696	533	1047	955	9665	1368	1920	
+
+K 75   4244	5649	3709	4441	4581	4747	5453	6673	2933	*	6984	2897	5190	4764	3824	3219	4047	5515	*	3389	75
+       58	5862	5501	890	1120	2591	262	9611	1153	2848	
+
+R 76   5909	*	2593	4640	*	5433	6629	*	4757	6104	*	2354	6773	4669	4467	1941	3010	*	*	5727	76
+       120	4004	5857	1045	956	3735	113	9607	1912	2886	
+
+P 77   3809	*	3765	4255	4264	3934	6780	5307	3314	3526	*	5311	4306	4009	2862	6626	3501	4222	6497	5323	77
+       155	4154	4459	1965	427	451	1897	9606	1792	3000	
+
+S 78   2644	*	2444	2692	*	5124	*	*	4167	5061	6475	3904	5254	3407	5271	3364	4969	5260	7037	*	78
+       20	7043	7328	3700	115	1965	427	9675	1004	2202	
+
+E 79   3073	5942	2580	2895	7266	6831	6642	*	4165	4569	*	5718	*	3601	4776	3514	3127	3788	5874	6544	79
+       27	5766	*	2178	360	442	1921	9720	1157	2000	
+
+L 80   4841	*	6763	*	3256	6508	6585	2677	5001	1696	4062	*	7134	*	4310	6592	5279	2677	6803	6068	80
+       20	*	6158	*	*	*	0	9745	0	1160	
+
+R 81   4680	*	4256	3339	6905	*	7058	4580	2981	2556	5537	3541	5614	3675	5413	3629	3952	3780	*	7038	81
+       11	*	7081	*	*	398	2052	9735	0	1416	
+
+R 82   2902	*	3832	2714	*	5743	5526	*	3257	4031	7174	3986	*	3647	3621	3299	3360	*	*	7082	82
+       0	*	*	*	*	*	0	9742	0	1131	
+
+I 83   2075	*	5570	3863	4436	4830	*	3719	3068	3244	5151	5031	*	4538	3760	4431	7043	5314	6802	5204	83
+       0	*	*	2322	322	0	*	9742	1000	1131	
+
+A 84   4604	6833	7243	7038	4563	*	6492	1736	4863	1949	5411	*	7330	5931	6792	4923	7105	2438	*	6784	84
+       10	*	7244	*	*	*	*	9755	0	0	
+
+S 85   3857	*	2706	3121	5498	4583	6794	*	3670	4408	6738	3430	5591	3817	3209	3687	4229	7479	*	5285	85
+       174	3514	5274	658	1450	*	0	9753	2394	1000	
+
+Q 86   3778	7061	4906	3514	5984	3968	7057	5888	3605	5371	6968	2898	6633	3470	3593	2844	3794	6862	6743	4894	86
+       0	*	*	0	*	718	1351	9733	1000	1534	
+
+V 87   4270	*	7402	4827	4719	*	*	2193	5781	1743	3702	*	*	5191	6766	6823	5102	2816	6882	4990	87
+       56	6788	5112	1000	1000	*	0	9752	1000	1118	
+
+K 88   4209	*	3917	3686	*	5206	5951	5740	2599	5219	5876	4449	3351	3740	2968	4160	3385	4922	*	*	88
+       170	5481	3489	587	1580	1579	588	9723	1429	1703	
+
+Y 89   4187	6681	6769	6750	3245	5138	4419	5112	4369	4424	5004	4803	3446	5320	4081	4026	4835	5742	4227	2315	89
+       66	4487	*	2214	350	1490	635	9496	1639	2980	
+
+A 90   3754	*	4379	3776	4582	4189	5990	3812	4513	3344	5147	4409	5031	5990	4103	3578	2835	4890	6685	4968	90
+       116	3692	*	2759	231	1471	646	9644	2200	2402	
+
+G 91   3821	*	3627	5135	*	1263	6848	7173	5309	6556	*	3510	4744	5209	4005	3735	5168	5329	*	6720	91
+       160	3373	6877	1186	835	*	0	9681	2574	1871	
+
+S 92   4369	6972	5718	4934	*	1062	6393	5412	5191	6958	7017	4396	6964	5992	4562	2876	4274	6921	6052	6704	92
+       131	7405	3629	0	*	*	0	9657	1000	2258	
+
+Q 93   3476	*	4136	*	5225	1960	*	5764	5154	4243	6642	3363	3922	4204	4273	3772	3505	5789	*	6421	93
+       285	5780	2636	1096	910	2268	336	9571	1297	3477	
+
+V 94   4847	*	4518	4609	6816	2480	*	4212	5485	4321	*	5585	5253	5427	4871	3050	1877	4085	*	6680	94
+       706	6522	1411	1000	1000	398	2052	9394	1004	4785	
+
+A 95   3367	6444	6155	6143	6250	4347	*	4792	4524	4945	*	4451	5263	4634	4278	3674	1349	5142	*	5243	95
+       38	6411	6138	1585	585	106	3817	9342	1000	5832	
+
+S 96   3027	7111	3403	4514	4909	5075	4526	7276	4294	5291	6963	1895	4028	*	3615	4003	5692	*	*	4609	96
+       21	6907	7421	0	*	990	1011	9724	1000	1500	
+
+T 97   5129	*	5527	6933	4964	7222	*	2350	6343	2232	4369	5995	6688	*	*	4922	2290	2837	6970	5483	97
+       0	*	*	*	*	1371	705	9735	0	1310	
+
+S 98   2979	5918	3862	4618	7164	1847	5515	5740	4392	4884	*	5867	5813	4986	5443	3827	3537	5255	*	3880	98
+       0	*	*	2807	222	954	1047	9744	1000	1131	
+
+E 99   2158	6006	3738	3537	5952	4340	3860	5360	3340	3976	*	5992	6103	4772	4839	3141	4620	6071	*	7048	99
+       42	*	5133	*	*	*	0	9753	0	1000	
+
+V 100  966	6925	*	6769	*	2121	5679	*	*	*	5308	6721	5795	6890	4698	4671	5930	3923	*	*	100
+       0	*	*	*	*	*	0	9683	0	1634	
+
+L 101  5740	*	6515	*	3772	*	6802	2673	5171	884	3671	5939	6553	7178	7220	*	*	5412	*	5692	101
+       26	*	5808	*	*	1621	567	9683	0	1634	
+
+K 102  3899	*	3436	2720	*	4608	*	7136	2936	3605	*	4306	*	3977	2907	3861	4240	5955	7672	4735	102
+       8	*	7572	2585	263	455	1887	9668	1000	1699	
+
+Y 103  3300	5991	4386	4160	3187	6724	4758	7020	4074	3227	*	5362	*	3910	4862	4853	3854	5163	4614	2726	103
+       31	*	5562	*	*	641	1479	9714	0	1211	
+
+T 104  1417	5453	6620	6713	6759	3165	*	3649	*	4002	4648	5322	5766	*	*	4851	4675	2699	*	6762	104
+       245	4382	3207	1911	446	2093	385	9736	1869	1432	
+
+L 105  2676	*	7224	*	5214	4819	4096	3282	4525	2456	5753	5179	5859	4847	3085	4901	4877	4885	6845	4024	105
+       51	*	4848	*	*	409	2019	9593	0	3144	
+
+F 106  3761	*	3552	2634	5088	5123	6067	5133	3523	5864	6864	3882	*	4186	3136	3208	3662	7076	*	4859	106
+       201	6625	3062	1585	585	1518	620	9721	1010	2029	
+
+Q 107  5177	*	3127	2301	6945	6590	4021	6667	3732	4931	4923	3380	6639	2925	4376	6541	4178	4747	6720	5296	107
+       39	6475	5988	0	*	444	1917	9611	1010	3543	
+
+I 108  4256	*	6871	5232	4415	6562	*	3264	6712	1946	3047	6081	5929	5792	6486	4634	4505	2784	6995	3985	108
+       73	5329	5344	2722	237	2103	382	9728	1399	1968	
+
+F 109  4568	6963	5998	4760	1871	*	6840	5298	4423	2227	5058	4525	5597	5951	4913	4311	4815	4610	6551	4366	109
+       218	4271	3504	3035	188	2678	245	9642	1796	2119	
+
+S 110  4370	*	3482	4750	*	4075	5363	5761	3010	4024	5656	2992	*	3626	4301	3013	3211	6805	6756	6660	110
+       683	2227	2613	1612	572	1318	739	9542	3910	3386	
+
+K 111  3408	*	4682	5059	*	3724	6499	*	2731	3709	5666	3007	4999	3047	3829	3717	3842	*	*	6570	111
+       132	3904	5618	1468	647	2263	337	9367	1775	4685	
+
+I 112  3598	6531	5076	4771	3778	2026	6834	4529	5229	4404	*	3967	4705	5700	4279	2778	4614	7039	*	5124	112
+       98	4725	5179	271	2546	1162	854	9492	1537	4279	
+
+D 113  3491	*	4236	5740	4118	2617	5095	6033	4550	4330	4155	4832	5411	4730	3589	3424	4682	4431	4607	5227	113
+       77	4533	6887	716	1353	291	2454	9529	1551	3272	
+
+R 114  4587	7134	4095	5609	5673	4288	4369	7209	4521	4659	*	4761	4173	5967	1246	4477	3971	5949	*	6881	114
+       186	3137	7116	535	1690	339	2254	9727	2868	1467	
+
+P 115  3719	*	3943	4295	7190	4864	7330	5946	3561	4059	7019	4472	2231	4949	4131	3039	3896	4623	*	6053	115
+       48	4929	*	1845	471	0	*	9743	1558	1124	
+
+E 116  3524	6911	3003	3285	5600	3219	5162	7303	4688	6024	*	2181	5716	5361	5709	3257	4914	7062	7058	5305	116
+       104	4199	6078	1243	792	*	*	9755	1857	0	
+
+A 117  2864	6957	5968	5519	6055	3203	4636	5272	4362	5405	6013	5474	5767	5190	3469	2954	4404	2925	*	3780	117
+       47	4963	*	1514	622	0	*	9748	1439	1134	
+
+S 118  3847	*	5919	4415	*	4449	5988	5261	2961	6006	6981	3487	2521	4378	2767	3618	3935	5492	*	*	118
+       32	6999	6116	0	*	*	*	9755	1000	0	
+
+R 119  5237	*	6008	*	*	4106	4106	5247	1788	5058	*	4288	3747	4910	2192	4328	4189	6205	*	*	119
+       28	7028	6475	0	*	0	*	9747	1000	1111	
+
+I 120  3418	7191	*	5914	5095	5797	4695	2559	5607	3140	4366	6827	5329	6782	5974	4077	4647	1983	*	4869	120
+       8	*	7468	*	*	*	0	9715	0	1079	
+
+A 121  3462	5157	*	*	5519	*	*	1886	5669	1893	3485	*	*	*	*	6778	4874	2578	*	*	121
+       47	5309	7222	2143	370	*	0	9713	1299	1218	
+
+L 122  6758	*	6939	*	3429	*	*	1672	*	2734	4155	*	*	*	*	*	*	1640	5958	4942	122
+       13	6770	*	0	*	1943	435	9718	1000	1348	
+
+L 123  6785	*	*	*	3730	*	6659	2484	*	1440	4419	6700	*	*	*	*	7038	1842	*	6005	123
+       15	6635	*	5087	43	*	0	9713	1026	1218	
+
+L 124  4801	*	5961	*	2900	6635	6778	1820	*	1903	4399	*	*	*	*	6944	6261	2719	*	5397	124
+       7	*	7604	*	*	668	1432	9713	0	1218	
+
+M 125  3973	*	*	*	5781	4661	*	5262	*	6084	6122	5969	*	*	5642	2233	864	5293	*	*	125
+       33	6928	6085	603	1550	1037	964	9752	1118	1115	
+
+A 126  4085	*	577	5685	6525	4184	*	*	*	6806	*	4490	*	5498	7044	3849	5955	5887	*	*	126
+       117	3681	*	2212	351	0	*	9744	2415	1270	
+
+S 127  4735	*	4482	5799	*	505	*	*	7064	7242	*	4722	7043	*	*	3450	5392	5635	*	*	127
+       41	5437	7662	1344	723	*	*	9755	1319	0	
+
+Q 128  4381	6704	4169	2939	5967	3634	4592	5348	4090	4447	5402	4396	4351	3284	3533	4455	6095	3757	7170	4682	128
+       94	4322	6224	2400	303	0	*	9746	1971	1000	
+
+E 129  3024	*	2870	4480	6211	4776	5672	4633	7133	6077	*	4116	2872	5459	5801	2593	3644	3880	6057	*	129
+       143	4448	4364	2188	357	1044	958	9740	1844	1113	
+
+P 130  4330	*	3515	4889	6745	4291	5503	6826	6159	3999	*	3583	3746	4261	6562	2419	2637	6713	4388	4818	130
+       87	4872	5355	2078	390	1203	822	9693	1632	1894	
+
+Q 131  4972	6994	1971	3398	*	4093	5740	4759	6007	4096	5764	3715	5192	3867	4582	3362	5916	4085	*	5869	131
+       348	4549	2541	1569	593	2003	414	9683	1731	1879	
+
+R 132  5099	6726	1969	3899	*	3896	6674	*	4087	5688	*	4025	4127	4250	3983	2841	3822	*	6484	5172	132
+       600	3398	2028	2300	328	3996	93	9532	2175	4312	
+
+M 133  3594	5290	3433	3809	4671	3434	6282	3959	*	4616	5410	4739	2795	4228	4543	3749	4453	4143	*	*	133
+       241	5301	2959	1000	1000	1730	518	9199	1137	6323	
+
+S 134  3374	5378	4220	3312	5408	4375	4653	3993	4699	5371	*	4258	3839	4625	4405	3605	4936	3321	6032	4377	134
+       134	5306	3985	954	1047	1314	742	9235	1125	5942	
+
+R 135  3446	*	2774	3701	6717	3069	4874	6294	3197	*	*	5344	4842	4085	3918	3577	3710	6449	*	4493	135
+       109	5943	4150	0	*	1109	899	9391	1088	4832	
+
+N 136  4546	*	1725	3319	6526	3855	5534	*	5714	6563	5755	3844	4567	3635	4865	3790	4100	5799	*	5076	136
+       26	6722	6865	1000	1000	618	1521	9428	1000	3855	
+
+F 137  3467	5529	5862	5217	4892	6436	*	2897	*	1998	5136	*	3359	5211	*	5356	5873	2704	5401	4557	137
+       55	*	4747	*	*	3278	157	9649	0	2143	
+
+V 138  3531	6654	6025	3871	5867	6145	5192	3903	3448	3810	5553	4710	4284	3648	3311	4784	3239	3660	*	5734	138
+       11	*	6998	*	*	2406	302	9541	0	2568	
+
+R 139  3368	*	3163	2473	*	4402	*	6131	4546	5956	7061	4157	5918	3761	3057	3058	4108	5055	*	6837	139
+       41	*	5155	*	*	1291	758	9570	0	2383	
+
+Y 140  1849	5830	*	4096	*	4832	*	3003	5757	3006	4921	6943	4454	4972	6944	4016	4811	3722	5680	5376	140
+       54	5170	6768	2087	387	2034	404	9571	1364	2199	
+
+V 141  1611	6879	6907	5303	5281	3858	7091	3022	5449	3895	7025	6811	*	*	4498	3711	5947	2892	*	5198	141
+       0	*	*	0	*	1428	671	9606	1000	2023	
+
+Q 142  4048	*	3410	2874	*	6666	6036	7285	2994	4009	5769	3252	5931	3252	3399	4282	3979	5819	*	5794	142
+       13	6776	*	0	*	2089	386	9630	1007	1601	
+
+G 143  3162	*	4449	2625	4588	5266	*	4835	2789	4614	6899	3347	5861	3922	3550	4269	5573	5967	5837	6543	143
+       0	*	*	*	*	2002	414	9651	0	1428	
+
+L 144  2267	5525	6538	7226	4996	*	*	3282	6108	1275	5001	6868	5918	*	6459	5327	6816	4465	*	4489	144
+       22	7202	6926	0	*	*	0	9651	1000	1284	
+
+K 145  5523	*	4776	5083	7006	4235	5632	5603	2055	6945	7091	5573	*	3901	1784	4115	4296	4135	*	6543	145
+       39	5221	*	408	2023	801	1231	9644	1303	1538	
+
+K 146  2860	6764	3454	2582	6551	4733	5153	5356	3114	5287	*	5033	*	3106	3338	4018	5215	6707	6793	*	146
+       125	3749	6875	1313	743	*	0	9659	2263	1143	
+
+K 147  3192	*	5377	3494	7107	5613	7069	5541	2679	3794	5447	3248	5052	5483	3032	3333	5443	5212	*	4615	147
+       35	6009	6877	1982	421	1640	558	9652	1154	1284	
+
+K 148  4149	*	3929	4745	6187	1140	*	*	3848	*	7131	3605	4522	5053	4322	4103	6957	5934	*	6908	148
+       19	7117	7421	0	*	681	1410	9638	1000	1322	
+
+V 149  4118	*	5631	6879	5137	4295	*	1795	5993	4301	*	4820	6914	6586	*	5901	3596	1819	6819	4878	149
+       23	7048	6910	1000	1000	*	0	9724	1000	1163	
+
+I 150  3853	5243	3698	4902	*	4548	5448	2697	3482	4887	*	5467	4297	5962	3316	5089	2962	3361	7427	*	150
+       21	6131	*	2000	415	*	0	9715	1103	1342	
+
+V 151  5784	5882	*	*	4354	*	*	2054	6741	2728	5032	*	5540	*	5919	5859	3772	1490	*	*	151
+       0	*	*	0	*	469	1849	9715	1024	1342	
+
+I 152  4655	7010	5461	6926	2020	6747	4954	3071	*	3708	5908	5817	6575	*	6499	5061	5023	3236	6902	2273	152
+       12	6905	*	0	*	*	0	9740	1000	1000	
+
+P 153  1538	5501	*	*	6211	4420	*	5034	*	5980	6550	5196	4648	6815	*	3185	2662	2536	*	*	153
+       8	*	7572	*	*	*	0	9728	0	1000	
+
+V 154  5076	7125	6603	*	4130	*	*	1648	*	2852	5574	*	*	*	*	6760	*	1417	*	4900	154
+       0	*	*	2585	263	964	1037	9726	1000	1115	
+
+G 155  2220	5922	5369	5970	*	1086	6546	*	*	4787	*	4970	7055	5841	6513	3918	5036	5771	6809	5712	155
+       41	5148	*	2498	281	*	0	9581	1367	1000	
+
+I 156  4966	5816	*	*	3410	*	*	2145	*	2306	4376	*	6904	6546	*	4403	4316	2288	*	4098	156
+       64	4955	6460	432	1950	*	0	9581	1457	1000	
+
+G 157  4832	*	4239	4904	6704	846	6524	*	4691	*	6934	3901	5277	4915	5448	4876	3958	7039	*	*	157
+       83	4595	6101	1957	430	1292	757	9534	1791	1167	
+
+P 158  4037	*	2826	3291	5836	4849	5942	6653	4173	6697	6861	3325	2704	3742	5195	3808	3496	5648	*	6858	158
+       373	4816	2379	3342	150	0	*	9558	1473	1291	
+
+H 159  4033	*	2492	4610	6570	3235	3976	4841	3560	5023	*	3387	5896	4104	3845	3902	4943	6639	*	4646	159
+       202	3439	4692	1938	436	752	1299	9326	2305	3793	
+
+A 160  2260	*	5232	4680	5680	5077	5755	3574	5122	4506	*	6790	4779	5926	6644	2729	4466	2669	*	3716	160
+       42	5120	*	1653	552	1832	476	9328	1282	2669	
+
+N 161  4663	5611	1774	3956	5461	4696	6130	6918	4093	5668	*	2596	5856	5187	5838	2994	4627	6825	*	5737	161
+       77	6897	4511	1000	1000	239	2712	9389	1000	2195	
+
+L 162  4410	*	4949	2937	6924	4839	5304	5926	3944	3027	4465	5071	4098	6759	3337	4056	4186	2985	*	4860	162
+       51	4839	*	294	2440	253	2638	9537	1423	1851	
+
+K 163  2926	*	2777	2926	*	5647	5252	6807	3298	*	6896	7051	4862	3364	3939	3082	4223	5342	*	5312	163
+       25	6731	7013	1585	585	*	0	9550	1000	1009	
+
+Q 164  4583	6913	*	2325	4620	5628	*	5270	4332	3876	5420	3247	5259	2797	5217	4887	4108	3687	5779	4939	164
+       14	6689	*	2000	415	*	0	9550	1000	1156	
+
+I 165  5292	5342	6650	5941	4518	*	*	3649	6100	674	4293	6125	6662	6651	*	5563	*	5442	6711	5642	165
+       0	*	*	*	*	0	*	9550	0	1156	
+
+R 166  5299	6783	4038	2539	7622	5837	6695	6063	3174	3976	5829	4222	5897	3129	2537	4466	3775	7126	*	6516	166
+       49	*	4894	*	*	*	*	9571	0	0	
+
+L 167  2653	*	3838	3108	*	4461	*	5207	3370	3182	5795	4524	6508	3809	3666	4015	4795	6780	5780	5162	167
+       12	6929	*	0	*	*	0	9500	1000	1454	
+
+I 168  5877	*	*	*	4727	*	*	1411	*	1606	3207	*	6404	*	*	*	*	3168	*	6761	168
+       116	*	3697	*	*	*	0	9500	0	1454	
+
+E 169  1012	*	5792	4795	6489	3999	6542	*	*	6748	6609	*	6560	5729	*	2848	3394	3599	*	*	169
+       455	6529	1946	2322	322	3847	104	9387	1000	2686	
+
+K 170  3700	*	3687	6536	6250	3276	6698	3773	3377	5351	*	5275	*	4765	4395	2136	2868	4640	*	*	170
+       186	*	3046	*	*	970	1031	8885	0	5473	
+
+Q 171  3325	3369	3667	4068	*	5015	4953	4528	3946	3041	5322	5532	5432	5148	4295	5631	2949	4301	*	5457	171
+       181	5410	3402	1576	589	1403	685	9116	1131	4525	
+
+A 172  2769	*	4434	3968	6802	1877	5459	5263	5526	*	*	*	3191	6428	6248	2848	3391	6609	*	6286	172
+       74	6620	4646	2000	415	150	3338	9246	1000	4263	
+
+P 173  3819	6735	3446	4893	*	3503	6773	*	4125	*	6637	3159	4815	7527	5617	2073	2867	5015	6416	4681	173
+       187	5776	3276	543	1673	1760	505	9545	1132	1803	
+
+E 174  4673	*	3776	2786	*	2565	5594	5808	3685	4970	5488	4478	3153	5870	4024	3309	4421	6564	*	6742	174
+       15	6615	*	2000	415	372	2137	9441	1000	2992	
+
+N 175  4976	6703	3188	3139	6005	1882	6913	*	4060	5817	7000	2752	*	4719	3894	4766	4169	*	*	6855	175
+       127	4175	5128	2872	212	373	2134	9567	1762	1379	
+
+K 176  4539	5811	5764	4752	4100	4408	3705	6200	2708	4197	5888	3187	5241	3783	3237	4309	5853	7312	*	3745	176
+       39	6937	5747	1585	585	*	0	9527	1000	1451	
+
+A 177  2966	6711	6461	*	3170	6761	6059	2795	5075	3459	7008	4436	6924	*	*	3986	5123	2296	*	3420	177
+       37	6545	6095	1585	585	859	1157	9505	1020	1748	
+
+F 178  6405	*	*	*	1461	*	6749	2997	*	2892	5278	*	6934	5805	*	*	4785	3785	*	2359	178
+       67	5475	5441	0	*	1376	702	9507	1259	1517	
+
+V 179  3932	*	4450	4088	3634	5951	4768	4070	4546	3803	4925	4050	*	4570	4598	3509	3134	3819	7004	3935	179
+       25	*	5850	*	*	841	1179	9556	0	1756	
+
+L 180  2576	*	6671	6948	6686	5726	6908	3544	5730	2548	5589	5373	5097	7276	*	4811	3209	2062	6507	5209	180
+       48	4944	*	1247	789	0	*	9565	1406	1538	
+
+S 181  3496	*	3095	4113	6911	4568	6625	*	4342	7042	5490	3206	3530	3449	4365	2605	3660	5775	*	*	181
+       13	*	6769	1000	1000	*	0	9580	1000	1000	
+
+S 182  5652	*	1685	4635	*	4022	5925	5825	4850	*	*	2759	4797	5897	*	2193	3848	6645	*	*	182
+       16	*	6521	*	*	0	*	9542	0	1126	
+
+V 183  3304	*	5747	5245	2326	4464	*	3750	6468	4166	4575	6032	3566	*	5035	4277	4279	4835	4143	3312	183
+       30	*	5610	*	*	0	*	9540	0	1045	
+
+D 184  3813	6850	2441	2646	*	3954	5212	*	4312	6989	*	3626	*	4958	5182	3139	3026	5056	*	5683	184
+       64	5456	5600	380	2112	*	0	9513	1254	1173	
+
+E 185  2459	*	2608	2994	6928	4178	*	6093	3989	5296	5606	4306	*	4295	4212	3086	4276	7215	*	6637	185
+       0	*	*	0	*	1396	690	9418	1000	1693	
+
+L 186  4615	*	*	*	4198	6548	*	3964	*	724	5117	6635	5078	*	*	4975	5224	3846	5750	6710	186
+       0	*	*	*	*	707	1369	9430	0	1378	
+
+E 187  3704	*	3190	3531	*	4499	5908	5034	4107	5032	4738	3961	3043	3418	3614	3808	5201	5601	*	5069	187
+       49	5539	6361	0	*	0	*	9504	1159	1051	
+
+Q 188  3633	*	2626	3233	5118	3555	*	6605	3474	6336	*	3879	4111	3850	5143	3460	3739	5251	*	6797	188
+       325	2310	*	679	1413	0	*	9378	3602	1023	
+
+Q 189  3837	*	5609	*	3340	6303	6789	3089	5040	2006	5586	5198	*	5188	6557	3955	4771	2665	*	4400	189
+       0	*	*	*	*	*	*	9398	0	0	
+
+R 190  3009	*	*	5503	3252	4593	*	3086	4590	3070	5617	5746	6454	5613	4899	4933	3441	2562	*	5036	190
+       0	*	*	*	*	*	*	9365	0	0	
+
+D 191  3484	*	2870	3715	5528	3860	6355	*	2650	5713	*	3296	5016	3608	3535	5389	4641	4614	*	6548	191
+       0	*	*	*	*	*	*	9365	0	0	
+
+E 192  3172	*	3775	2815	*	5198	6520	6333	3593	4369	6676	5657	6987	2943	2768	3712	4890	4679	6707	5703	192
+       17	6376	*	0	*	*	*	9344	1007	0	
+
+I 193  *	*	*	*	2786	*	5364	1699	5716	2149	3340	*	*	*	*	*	6222	2690	*	6500	193
+       0	*	*	*	*	*	*	9237	0	0	
+
+V 194  3591	6827	5381	4141	6592	4027	6662	3171	5515	2285	6564	6268	6355	4479	5617	3972	3553	2770	*	6452	194
+       27	5774	*	0	*	*	*	9216	1095	0	
+
+S 195  6369	6411	2874	3579	*	4919	5562	*	2831	*	*	2918	6296	3779	2984	3367	3651	5212	*	6205	195
+       18	6313	*	2322	322	*	*	9215	1000	0	
+
+Y 196  2557	*	4304	3305	5269	*	6121	*	3482	3840	*	5439	*	3760	4375	3445	3880	3862	5540	3581	196
+       0	*	*	*	*	*	*	9048	0	0	
+
+L 197  5271	*	*	6081	5169	*	*	1293	*	1765	5967	6478	5521	4351	*	4843	*	3376	*	*	197
+       26	5816	*	0	*	*	*	8982	1019	0	
+
+C 198  4381	398	*	*	*	6163	*	*	5868	5896	*	*	*	*	*	5699	4918	3429	*	*	198
+       0	*	*	*	*	*	*	8584	0	0	
+
+D 199  5572	*	3209	3354	*	2861	4924	*	2959	*	*	4738	3427	3251	4865	3627	4272	4244	*	5754	199
+       0	*	*	*	*	*	*	8463	0	0	
+
+L 200  3421	*	3124	4113	4829	4014	*	5644	4758	3841	5702	4173	4624	4264	5562	2883	3948	3040	*	*	200
+       83	5396	4973	0	*	*	*	8376	1000	0	
+
+A 201  1518	4393	*	*	*	5199	*	3659	*	3664	5303	5544	4528	5241	5278	4318	3829	3002	*	5040	201
+       0	*	*	*	*	0	*	7682	0	1058	
+
+P 202  *	*	3959	4811	*	5093	*	*	2411	*	*	*	1389	4859	3960	4759	2976	*	4712	*	202
+       0	*	*	*	*	*	*	7207	0	0	
+
+E 203  3073	2594	4759	1860	*	3772	*	*	3221	*	*	4765	4850	4798	3761	*	*	4594	*	*	203
+       0	*	*	*	*	*	*	6985	0	0	
+
+A 204  2044	4090	*	3232	*	4067	*	*	*	*	*	4226	2657	*	4277	4183	3281	3168	*	*	204
+       0	*	*	*	*	*	*	6265	0	0	
+
+P 205  2224	*	*	*	*	3697	*	*	3564	*	*	*	1337	*	*	2703	3740	*	*	*	205
+       0	*	*	*	*	*	*	5354	0	0	
+
+P 206  2824	*	*	1973	*	*	*	*	2729	*	*	*	2612	*	2734	2844	*	*	*	*	206
+       0	*	*	*	*	*	*	3978	0	0	
+
+P 207  *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	207
+       0	*	*	*	*	*	*	2833	0	0	
+
+T 208  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	208
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  cbf4a79de0130a2230da880af29a77c4
+FAM   
+FILE  cbf4a79de0130a2230da880af29a77c4
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 14:26:52 2013
+LENG  195 match states, 195 columns in multiple alignment
+FILT  115 out of 1145 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.9 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCEEEEEEEECCCCCCCHHHHHHHHHHHHHHHHCCCCCCEEEEEEECCCEEEEECCCCCCCHHHHHHHHHHCCCCCCCCCHHHHHHHHHH
+HHHHHHCCCCCCCCEEEEEEECCCCCCCCHHHHHHHHHHHHCCCEEEEEEECCCCCCCCCHHHHHHHHHCCCCCEEEECCCHHHHHHHHHHHHHC
+>ss_conf PSIPRED confidence values
+9977677888873699999798888866999999999999986266896899999889227987677767899999999835267999639999999999
+98655415778986199999279978981669999999987899899999688433424899999998287985499759999999999999729
+>Consensus
+xxxxxxxxxxxxxdivxllDxSxSmxxxxxxxxkxxxxxxxxxlxxxxxxvxvvxfxxxxxxxxxlxxxxxxxxxxxxixxlxxxxgxtxxxxalxxaxx
+xxxxxxxxxrxxxxxxivliTDGxxxxxxxxxxxxxxxxxxxxixvxxvxxgxxxxxxxxxxxlxxiaxxxxxxxxxxxxxxxxlxxxxxxixxx
+>cbf4a79de0130a2230da880af29a77c4
+GSEALRGSPQEDSDIAFLIDGSGSIIPHDFRRMKEFVSTVMEQLKKSKTLFSLMQYSEEFRIHFTFKEFQNNPNPRSLVKPITQLLGRTHTATGIRKVVR
+ELFNITNGARKNAFKILVVITDGEKFGDPLGYEDVIPEADREGVIRYVIGVGDAFRSEKSRQELNTIASKPPRDHVFQVNNFEALKTIQNQLREK
+>gi|260837234|ref|XP_002613610.1| hypothetical protein BRAFLDRAFT_127098 [Branchiostoma floridae]gi|229298996|gb|EEN69619.1| hypothetical protein BRAFLDRAFT_127098 [Branchiostoma floridae]
+---------------LYPYGSySGGYPPSNMEKTMG-PGNYRVPLVagGETITIGSIKKTEETSPseslsaekQAVVAAQDTRECTMSSITiySEERLRG
+TKKTYSGNGWLPRDPSWV-----VDSAGPAWVDSNGVTWEDV--------------VTVDNVQSGDQ------RQVFGGFQGKARYWKLVITQTYTGWQP
+YVRE----
+>gi|75055238|sp|Q5RER0.1|ITIH5_PONAB RecName: Full=Inter-alpha-trypsin inhibitor heavy chain H5; Short=ITI heavy chain H5; Short=ITI-HC5; Short=Inter-alpha-inhibitor heavy chain 5; Flags: Precursorgi|55725936|emb|CAH89747.1| hypothetical protein [Pongo abelii]
+---APKDLPPLPKNVVFVLDSSASMVG---TKLRQTKDALFTILHdlRPQDHFSIIGFSNRIKVWKDHF-DISHSRQHQGwqsvhSPYVAH---wrhrhQ
+RGLAEGHQAPQQVRGPQWHW---RPERVPHCLPDG--weahGrgdAHPQDPQQHPRGRPRPSLHLH-IGIGNDV----DFRLLEKLS-------------
+--------------
+>gi|320105837|ref|YP_004181427.1| VWFA-like domain-containing protein [Terriglobus saanensis SP1PR4]gi|319924358|gb|ADV81433.1| VWFA-related domain-containing protein [Terriglobus saanensis SP1PR4]
+---------RQPVSILVVMQTGGAGQ-RQFEYYRN-VPTLLDAMGgSAKHETAVMTFDSAPEDLFPFVSNPA--RLKQAFTHPHAGDHGAAVLDAVNYAI
+DLFKGKPAGTR----RIILLLSQPQDHGSKVHAEEVVRRLGENNITIFSVSFSPE------KTWLKD-----------------------------
+>gi|94967802|ref|YP_589850.1| hypothetical protein Acid345_0771 [Candidatus Koribacter versatilis Ellin345]gi|94549852|gb|ABF39776.1| hypothetical protein Acid345_0771 [Candidatus Koribacter versatilis Ellin345]
+---TVQSGSELPLRLGVLVDTSTKAHGDAYAAALHAISNFVQGAMlEQNVRVFFVPFANKT----DMSAFMSKDDLAHYQLKIS-KGDGAALYDAIVGAC
+KERMAVE--ETHPARRVLVVISNGEDNQSRFTYQQAIAAAQSAGVVIFTVNTGSGGSGDHGEVRLREFSDQTGGI-IFPGSNPGTISRPFEAISDQ
+>gi|163792343|ref|ZP_02186320.1| hypothetical protein BAL199_15888 [alpha proteobacterium BAL199]gi|159182048|gb|EDP66557.1| hypothetical protein BAL199_15888 [alpha proteobacterium BAL199]
+-----------DLELVLAVDSSASVDYSEFSLQLEGLALAFRDPElaatisagiHGVIAVTLMEWSSIGRQEvalpwTRIATTADASAFADAIDRSpRQL
+QtGATSISSAIEFANGLFAGN---GFEGVRRVIDLSGDGYNNQGE-PLDITRADVLATGTTINALAIENQVLGLTEYFEQQLIGG--VAAFAMRATDYRD
+Y----------
+>gi|84386024|ref|ZP_00989054.1| transporter [Vibrio splendidus 12B01]gi|84379340|gb|EAP96193.1| transporter [Vibrio splendidus 12B01]
+GPTwQQQPSPffEDNSELVIALDVSDSMNKTDIqpSRLERAKQKINQLVElRGDAKTGLVIYGGSAHVAMPVTKDKELtRYFLDVLDGSLLPDNESKPAS
+VLKPT-LELISQAK-----APSTVLILTDKTNDEAIEEFTKAF-EQQQHQVIVWAMGENpqsGGNGTAGltetQLASLSQLAQAGHGNMVSFTHDASDVE
+AVYQSIQNN
+>gi|242278087|ref|YP_002990216.1| OmpA/MotB domain protein [Desulfovibrio salexigens DSM 2638]gi|242120981|gb|ACS78677.1| OmpA/MotB domain protein [Desulfovibrio salexigens DSM 2638]
+---AESRIVlkPKVDAFAYFVDTSPSMsqtydstGNPKIIAGLNALKRLNNVVPELGYDSALYAMP--DFATYSPKSMFTRAAMAKGIASVPSdlpfF-Q
+STPIGTGFSDL-NGVVKNWGG-----KFAVIFVSDGLTNsgRNPALVVSDMAKTYGDRFCLHIISVADTA---RGKANLKRLAS----------------
+----------
+>gi|238924634|ref|YP_002938150.1| hypothetical protein EUBREC_2277 [Eubacterium rectale ATCC 33656]gi|238876309|gb|ACR76016.1| Hypothetical protein EUBREC_2277 [Eubacterium rectale ATCC 33656]
+----EVETPGFSVD--ILMDASSSRKQMQ-QKIAAQAYVLSKSLTNCGIPVQIYSYCSirGYTVMHIFKEYDDYGVEDELFH--FVAAGNNRDGLALRAA
+SHLM------ELsPKPKKLLFMFSDASPQDDQIagegafykdreytdalavkDTVNEVQRLKNHGIDVIGIFMGSAH----DSELATKIFG----RSLVK
+IKSINEFADAVGRVLNE
+>gi|307720601|ref|YP_003891741.1| hypothetical protein Saut_0680 [Sulfurimonas autotrophica DSM 16294]gi|306978694|gb|ADN08729.1| protein of unknown function DUF58 [Sulfurimonas autotrophica DSM 16294]
+----------RELNVVIASMLNGSVYFGSKRFKQDVIAEITAMLSfstiKNGDLLSSYIFSDKMESFLKPSKKLFSvHKSTDEILNFDPLNKKADYKVLA
+DTLF---------KRLKRKSLIVIVGDFF---EIPDFKVl------AKKHEVVAVIVRDR-------LEET-----------------------------
+-
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+G 1    3106	*	*	*	*	825	*	*	*	*	*	*	*	*	3272	*	3327	3102	*	*	1
+       0	*	*	*	*	*	*	4733	0	0	
+
+S 2    *	*	*	*	*	*	*	*	3153	*	4138	4085	755	*	*	3118	3963	*	*	*	2
+       0	*	*	*	*	*	*	6604	0	0	
+
+E 3    3483	*	*	2860	*	3510	*	4536	4420	*	*	*	1516	*	*	3334	4213	4435	4429	*	3
+       80	4213	*	0	*	*	*	7121	1074	0	
+
+A 4    2659	4860	*	4938	*	3545	4741	4948	4009	3907	*	*	*	3875	4861	2510	2463	*	*	5018	4
+       0	*	*	*	*	*	*	7949	0	0	
+
+L 5    4201	5306	5521	3951	4534	*	5254	4380	5440	3734	*	4291	4215	3277	*	3797	4277	1931	5353	*	5
+       39	5221	*	1000	1000	*	*	8435	1031	0	
+
+R 6    4414	*	4034	4586	*	*	*	*	3057	*	*	4574	2965	2523	3158	3279	4247	3075	*	*	6
+       68	4441	*	1329	732	*	*	8640	1260	0	
+
+G 7    4262	*	4488	2457	*	2872	5657	5722	3496	4778	5972	4176	4218	4303	4763	3226	4762	5791	5924	5059	7
+       0	*	*	*	*	*	*	8870	0	0	
+
+S 8    5022	1065	*	5836	4858	4798	*	4863	*	4275	4165	4882	4866	5742	5747	3839	4869	4271	*	*	8
+       350	6016	2322	1000	1000	*	*	9000	1000	0	
+
+P 9    5599	*	3649	3480	4790	5480	*	*	4078	4026	*	5777	1873	3802	*	3304	3505	3668	*	*	9
+       375	2126	*	820	1205	643	1476	8767	2865	2886	
+
+Q 10   3888	*	6012	2827	*	4158	6139	*	3705	4441	4508	4067	4359	3688	3170	2565	4081	6164	*	*	10
+       141	3429	*	926	1078	357	2189	9239	1996	1607	
+
+E 11   3461	6131	5224	3668	4787	2220	*	5487	3199	3640	6103	6254	4727	3546	4250	4986	4694	4225	*	*	11
+       18	6368	*	0	*	0	*	9670	1000	1000	
+
+D 12   3656	*	3569	4427	6475	3418	6467	*	4516	3923	*	3966	2474	4473	5104	3706	3561	5521	5381	4683	12
+       13	6750	*	2000	415	*	*	9801	1000	0	
+
+S 13   2599	*	6459	*	3720	5464	6334	3318	4225	2790	3547	6206	6205	*	4222	4544	3551	3536	*	4895	13
+       0	*	*	*	*	*	*	9859	0	0	
+
+D 14   4618	*	971	3774	6708	6905	4570	*	*	6904	*	3454	5470	4993	3932	5053	4127	6725	*	*	14
+       27	*	5733	*	*	*	*	9944	0	0	
+
+I 15   5604	6612	*	6587	4203	*	6765	1786	*	2136	4562	*	*	*	6573	*	5104	1858	*	5639	15
+       0	*	*	*	*	*	0	10087	0	1201	
+
+A 16   3100	6042	*	*	4999	5225	*	3036	*	2997	4129	*	*	*	6861	5310	4237	1642	6638	3496	16
+       14	6681	*	2322	322	0	*	10199	1028	1201	
+
+F 17   6677	*	*	*	1567	*	*	2456	*	1757	6988	*	*	*	*	6158	6485	3365	6622	4863	17
+       14	6678	*	0	*	*	*	10269	1008	0	
+
+L 18   3728	4733	*	*	6779	*	*	2989	*	1184	5639	6867	6028	*	*	6146	6565	2040	*	*	18
+       0	*	*	0	*	0	*	10241	1008	1008	
+
+I 19   5279	*	*	*	5005	6577	*	2141	*	1380	4244	*	6749	*	*	6415	*	2253	6158	5379	19
+       0	*	*	*	*	*	*	10269	0	0	
+
+D 20   6710	*	259	5095	*	6059	5234	*	*	*	6415	5878	*	5208	*	6151	6158	*	*	*	20
+       0	*	*	*	*	*	*	10269	0	0	
+
+G 21   3348	5249	4761	3654	4788	3367	*	4104	4804	5511	6798	6709	*	5136	4619	3058	2653	3068	*	5366	21
+       34	6059	6882	0	*	*	*	10269	1147	0	
+
+S 22   5397	6875	6678	*	*	6722	*	*	*	*	*	5625	*	*	*	278	3276	*	*	*	22
+       0	*	*	*	*	0	*	10262	0	1001	
+
+G 23   3256	*	4297	4020	6945	1475	*	6785	5190	6000	*	5645	6695	5802	3691	2941	3992	5106	*	5977	23
+       25	*	5839	*	*	*	*	10269	0	0	
+
+S 24   4024	6783	4790	*	*	4868	6766	6689	5333	5770	6789	6775	6151	6870	5577	619	4138	6566	*	5880	24
+       27	6774	6769	0	*	978	1023	10239	1185	1183	
+
+I 25   4218	6151	*	6730	*	6716	6777	3027	*	3639	1087	5708	*	*	5879	5280	4521	3187	*	6038	25
+       67	4790	6779	3271	158	*	0	10242	1568	1210	
+
+I 26   3383	*	3708	4288	*	2980	6690	5815	3784	4013	*	5255	5356	3514	3779	2806	4430	4377	*	4668	26
+       231	6530	2866	2000	415	*	0	10243	1015	1409	
+
+P 27   3563	*	3730	2990	5263	2320	6674	5661	5001	4473	6466	5088	3001	3955	*	3679	5574	5080	6376	6475	27
+       62	6932	4881	2322	322	253	2637	10038	1000	3865	
+
+H 28   3287	*	3680	3273	*	3567	5167	*	3807	5481	5277	3322	5689	3569	4319	3461	4337	4473	*	4470	28
+       111	3756	*	1440	663	1748	510	10186	2469	1943	
+
+D 29   4338	*	2509	3276	6685	3908	6742	6906	4468	4160	6563	3159	4692	3924	3456	3863	4936	6754	*	4397	29
+       197	4214	3758	2444	293	2187	358	10206	1866	1617	
+
+F 30   6629	*	*	5074	2340	7055	6736	2962	6308	2608	4139	*	5006	*	4885	5124	5738	4542	2643	3864	30
+       87	4097	*	1905	448	0	*	10093	1976	2814	
+
+R 31   3785	*	2795	2707	*	4550	*	5355	3714	4525	5931	4446	4854	3716	3879	3612	3546	7023	*	5184	31
+       36	5886	6994	1345	722	*	*	10292	1195	0	
+
+R 32   2711	6797	3616	5363	6436	4727	5266	4969	3005	3714	5092	5796	6895	3619	2984	4404	5086	4973	6737	4537	32
+       25	5891	*	3715	114	*	0	10281	1222	1000	
+
+M 33   2261	*	*	4470	6878	6737	5842	3350	4055	3061	3394	6894	*	4785	6940	5234	3532	2774	*	5280	33
+       14	*	6740	*	*	*	0	10281	0	1000	
+
+K 34   4275	*	5152	6095	6583	6708	6627	3605	1517	4373	5530	5835	*	3714	2641	5202	4484	5109	6683	6761	34
+       29	6609	6713	2000	415	0	*	10276	1001	1206	
+
+E 35   2815	*	2557	3724	6624	3797	5140	6848	3824	4745	*	3674	5906	3358	3785	3943	4845	6515	6718	*	35
+       81	*	4188	*	*	*	0	10271	0	1006	
+
+F 36   1985	6722	5672	5635	2463	5602	*	5105	5578	3254	5813	6720	6820	5833	4994	5184	3771	3558	4871	4775	36
+       12	6925	*	2322	322	206	2909	10103	1000	2101	
+
+V 37   2542	6980	*	*	4745	7147	*	2684	5503	2129	4495	6754	6080	*	5764	5859	4539	2602	6164	4507	37
+       0	*	*	*	*	*	0	10275	0	1000	
+
+S 38   3109	6943	3565	3751	4730	5365	6960	4396	3087	3785	5268	4591	5010	3490	3804	4245	5105	4933	6701	5254	38
+       15	6567	*	0	*	*	0	10275	1027	1000	
+
+T 39   3226	*	3486	3294	5895	3764	6877	5804	3436	4416	5336	3250	6860	3722	4592	3830	3867	4938	*	5743	39
+       0	*	*	*	*	*	0	10275	0	1000	
+
+V 40   3521	*	*	*	2856	6730	*	2500	6399	1721	3691	6567	*	*	6164	*	4890	3126	*	5429	40
+       0	*	*	*	*	0	*	10275	0	1000	
+
+M 41   2843	*	*	6768	4350	*	*	2766	*	2404	4358	5852	*	7273	5359	3884	3577	2331	*	5697	41
+       10	7222	*	0	*	*	*	10292	1000	0	
+
+E 42   3916	*	3131	2851	6775	4570	*	6838	2794	4444	6897	4485	5664	3937	3340	3494	4371	4131	*	*	42
+       21	*	6115	*	*	*	*	10292	0	0	
+
+Q 43   3135	*	4510	4850	6728	3630	5317	5067	2996	3931	6432	6605	5499	3218	3152	2909	5337	4911	*	5922	43
+       79	4902	5676	1805	487	*	0	10280	1543	1158	
+
+L 44   4096	6720	*	6968	2268	*	*	3845	*	1240	3861	*	*	6743	6756	4539	6898	5112	*	4166	44
+       38	*	5278	*	*	*	0	10268	0	1566	
+
+K 45   3736	5548	3193	4284	5776	3326	4804	6701	3992	5097	5225	4062	4246	3623	4812	3484	3980	4271	7039	5701	45
+       2354	444	3846	1874	460	439	1931	10244	8805	2098	
+
+K 46   4115	5649	3836	3284	*	3009	5777	5094	4060	4227	5776	3932	2727	4469	3241	4371	5616	6615	*	*	46
+       12	6899	*	1000	1000	0	*	10251	1000	2541	
+
+S 47   3668	5922	2786	3492	*	5030	5405	6876	3903	4820	6722	3622	2730	3825	5146	3146	6754	5263	*	5840	47
+       52	6615	5314	2000	415	*	*	10298	1028	0	
+
+K 48   4172	*	3276	4959	*	2665	5191	5662	3295	5339	5482	3384	5188	3565	4368	3355	4567	5209	7112	5312	48
+       14	*	6712	*	*	*	0	10278	0	1389	
+
+T 49   3483	7030	2345	4650	5927	4993	5305	2934	6970	4409	6624	*	5819	*	6726	4021	2742	2930	6586	5862	49
+       0	*	*	*	*	0	*	10258	0	1582	
+
+L 50   4734	*	4437	3972	6042	5247	4003	6776	3591	4233	5746	4117	5223	2921	1933	5363	4640	6529	*	5012	50
+       0	*	*	*	*	*	*	10298	0	0	
+
+F 51   4134	*	*	*	3025	*	*	2546	*	2869	5224	*	*	*	*	5213	4446	1418	*	4714	51
+       0	*	*	*	*	*	*	10298	0	0	
+
+S 52   1907	5898	6410	4546	6750	1682	6904	*	6529	*	*	4608	5867	5922	*	2665	4023	6855	*	5674	52
+       14	6712	*	1585	585	*	*	10298	1008	0	
+
+L 53   4824	6523	*	*	3807	6604	*	2306	*	2078	4523	*	*	*	*	4821	5596	1585	*	*	53
+       0	*	*	*	*	*	0	10271	0	1008	
+
+M 54   4619	6697	*	5618	5115	5836	*	2429	*	3175	4245	5742	*	6693	5431	5010	4485	1809	4594	3648	54
+       0	*	*	*	*	*	0	10271	0	1008	
+
+Q 55   4293	*	5850	5013	3760	3117	5718	4200	4678	4120	5907	4917	5724	4608	4450	3248	2247	3831	*	*	55
+       12	*	6949	*	*	0	*	10271	0	1008	
+
+Y 56   6754	*	*	*	973	6797	5694	*	6082	4751	*	6844	*	*	*	*	*	5254	5643	1531	56
+       13	6846	*	0	*	0	*	10284	1000	1000	
+
+S 57   2859	5922	3711	5932	*	2180	5548	*	*	6841	5721	3002	*	6720	5283	1871	4592	*	*	6902	57
+       24	7030	6812	5585	30	*	*	10298	1016	0	
+
+E 58   4103	*	2525	4138	*	3556	4598	*	5792	7010	5662	3731	5757	4597	4489	2075	3140	*	*	6809	58
+       152	3325	*	2528	275	992	1008	10281	2988	1224	
+
+E 59   5841	*	3566	2669	6710	3589	3853	5274	3311	6846	6900	4158	4437	4478	3628	3136	3744	*	5716	*	59
+       95	4770	5192	1980	422	0	*	10287	1634	1014	
+
+F 60   2317	*	5887	5685	5026	4075	6812	4063	4814	4760	6417	5000	3436	6598	*	3394	3354	2769	6692	4764	60
+       99	4426	5668	1673	543	613	1531	10257	1783	1378	
+
+R 61   4626	6892	5356	3120	4758	5191	4262	5078	3362	5846	6740	3529	5779	4061	2702	3989	3884	4338	*	4541	61
+       14	6665	*	1585	585	*	0	10238	1008	1414	
+
+I 62   3882	*	3854	3115	*	5575	6712	3841	5189	3385	5821	5895	3502	4976	5109	5125	3222	2416	6806	6883	62
+       22	6026	*	3000	193	*	0	10238	1147	1414	
+
+H 63   4211	*	4247	3541	4636	5130	5173	4280	5935	2675	4803	7085	4071	4116	5437	5151	5299	2419	5557	4599	63
+       156	3416	6780	2103	382	1620	568	10238	2741	1414	
+
+F 64   3474	7257	*	*	2357	6463	5694	3958	5437	3234	4311	*	5265	5313	5957	3812	4723	2677	4775	3958	64
+       25	5861	*	1727	519	527	1708	10255	1368	1397	
+
+T 65   4738	6805	3349	5441	*	4795	4519	4923	3669	4495	5925	3806	2159	6063	4062	3298	4358	5303	5991	5743	65
+       37	5302	*	2070	392	*	0	10299	1362	1000	
+
+F 66   5263	5034	*	6845	2975	5798	6356	4127	5140	1408	4824	*	3967	6749	6669	5215	6810	3654	5234	4192	66
+       50	4868	*	2129	374	0	*	10299	1518	1000	
+
+K 67   3723	*	3547	5798	5522	2984	6900	6776	4713	4792	*	3816	4202	4713	4127	3157	2467	4436	*	5577	67
+       84	4884	5444	811	1218	*	*	10298	1546	0	
+
+E 68   3878	*	3144	3843	6623	3793	6855	6884	3548	4878	*	3850	3944	3762	3990	3290	3045	5867	6928	6560	68
+       43	*	5100	*	*	890	1119	10237	0	1278	
+
+F 69   4078	*	2811	5281	3098	4495	4822	4003	5006	4078	6851	3954	3617	5319	4989	5177	5757	4628	7009	3086	69
+       41	5580	7158	2159	366	*	0	10240	1193	1648	
+
+Q 70   5785	6809	3714	3984	4890	4616	5703	4592	2740	4679	4553	3960	4173	5308	3970	3583	3384	6682	6574	4087	70
+       54	5148	6905	763	1283	1287	761	10251	1391	1817	
+
+N 71   4171	6985	2718	4138	5053	*	5783	*	4514	5261	5718	2782	6655	5251	4430	2083	3097	6646	*	*	71
+       147	*	3369	*	*	357	2190	10283	0	1579	
+
+N 72   3977	6529	3574	4035	5790	5761	4302	3459	3220	3632	6781	4805	4008	4404	3732	4469	4378	4157	*	4804	72
+       404	2700	3472	1279	767	3699	116	10179	3495	2861	
+
+P 73   3221	*	3167	3617	*	4588	5380	6429	2948	6481	5487	3974	5089	3656	4251	3269	3783	4665	*	5723	73
+       25	6754	6949	3807	107	0	*	10054	1013	4083	
+
+N 74   3707	6083	3133	2729	5101	4858	*	6787	3542	5359	5190	4136	6585	3462	3582	4293	3912	4128	*	5848	74
+       12	6901	*	0	*	*	0	10292	1005	1000	
+
+P 75   3402	6949	6690	6828	3164	5331	6893	3340	5913	1856	4189	5942	7008	5526	5454	6439	4626	2654	*	6930	75
+       0	*	*	*	*	*	0	10292	0	1000	
+
+R 76   3197	*	4475	3827	5886	6621	6337	4386	2943	2617	4575	4941	*	4836	3427	4147	4851	3754	*	5182	76
+       62	4906	6804	2135	373	*	0	10292	1522	1000	
+
+S 77   3150	*	2834	3001	6710	4444	5276	6929	3731	5357	7066	3802	*	3265	3872	3009	5114	*	5729	6701	77
+       0	*	*	*	*	*	0	10283	0	1194	
+
+L 78   2132	5871	4828	4153	4919	4923	5722	3420	3266	3334	6860	*	*	5658	3694	4078	4262	5172	*	4754	78
+       32	6330	6763	2322	322	0	*	10283	1061	1194	
+
+V 79   4103	5382	*	*	3667	6966	*	2061	*	1848	4235	*	*	5549	6896	5203	5285	2722	6589	5960	79
+       25	5891	*	1000	1000	*	0	10278	1177	1034	
+
+K 80   3857	6887	2631	3580	*	4841	6823	6635	3656	4174	5734	3138	5692	3967	3449	2855	4527	*	*	*	80
+       46	6073	5902	1000	1000	*	0	10278	1147	1034	
+
+P 81   3274	*	4013	4154	6738	4245	4543	*	3505	5864	5636	3201	4332	3969	3174	3638	4275	5828	*	3932	81
+       72	5638	5128	2046	400	*	0	10248	1205	1425	
+
+I 82   5626	*	*	4916	4044	6959	7125	2100	6640	1736	2969	6584	6696	5753	*	*	4176	3587	*	5474	82
+       185	4227	3896	2650	250	0	*	10208	1905	1997	
+
+T 83   4268	6721	3683	3197	6711	4796	4160	5524	3292	6570	5723	3498	3240	5749	4183	3578	3569	4876	*	5218	83
+       184	5906	3280	1000	1000	0	*	10243	1185	2227	
+
+Q 84   3895	6787	4074	5718	4444	4669	5467	5818	3815	4420	4397	4038	3364	4419	3238	4050	4202	5186	6710	3441	84
+       479	2071	4483	2589	262	0	*	10131	4722	2821	
+
+L 85   3761	6642	4862	5007	4188	4413	6887	4922	3992	3097	4737	5660	2560	5063	4852	3632	3425	4217	6815	*	85
+       58	5202	6364	1611	572	417	1996	10186	1395	1800	
+
+L 86   4417	6572	3179	4266	6995	1762	6621	*	4891	5186	*	3469	6708	5066	4229	3365	3633	6699	*	4796	86
+       51	4846	*	1335	728	1060	943	10225	1534	1296	
+
+G 87   4341	6520	4878	5200	*	1174	6759	6751	4082	4978	6729	5283	4217	5260	5310	3279	4148	5919	6628	*	87
+       119	3660	*	670	1429	0	*	10257	2737	1061	
+
+R 88   3816	*	4058	4914	6843	1573	6918	6598	4606	5265	5973	3371	4880	4542	4555	3765	4377	7210	5620	5346	88
+       111	3751	*	770	1273	*	*	10298	2379	0	
+
+T 89   3304	6820	5964	5191	6831	5809	*	4874	6085	6956	6898	3899	4535	*	4459	2754	1218	5583	*	*	89
+       50	4868	*	1406	683	*	*	10298	1574	0	
+
+H 90   3578	7152	2651	5229	5250	4108	4702	6843	4913	5976	7039	2212	3727	6653	3323	3458	*	*	*	4539	90
+       0	*	*	*	*	*	*	10298	0	0	
+
+T 91   3890	*	5363	*	4559	*	*	2148	*	1795	3859	*	5776	*	*	5434	3037	4231	6903	4099	91
+       12	6903	*	4392	70	*	*	10298	1000	0	
+
+A 92   3517	5007	3988	5368	5344	1753	4789	6918	5623	3891	*	4131	6676	4726	6882	3193	4894	6776	5774	4125	92
+       0	*	*	*	*	*	*	10298	0	0	
+
+T 93   2698	6615	3418	3124	6876	4837	4832	7039	4167	3771	6814	5903	4641	4350	3448	3618	4077	5174	*	4733	93
+       0	*	*	*	*	*	*	10298	0	0	
+
+G 94   1010	5983	6779	*	*	2041	*	6742	*	6444	5840	7035	6019	*	6598	4202	5148	3621	*	*	94
+       0	*	*	*	*	*	*	10298	0	0	
+
+I 95   4849	*	*	*	4509	6749	5557	2546	*	1034	3515	6085	*	*	*	*	*	3043	7018	*	95
+       0	*	*	*	*	*	*	10298	0	0	
+
+R 96   4542	*	3805	3113	5933	5440	5161	4344	3216	4283	6190	3860	6604	3552	3228	3942	4028	4871	5586	5147	96
+       0	*	*	*	*	*	*	10298	0	0	
+
+K 97   3098	7152	3935	3265	5380	5183	5239	5677	3479	3861	5815	4917	*	4016	4607	4561	3375	5679	4122	3620	97
+       11	7035	*	2000	415	*	*	10298	1000	0	
+
+V 98   1115	5270	*	6699	5109	3673	*	3979	*	3632	5717	6895	6364	*	*	4820	4318	2985	*	*	98
+       285	*	2480	*	*	*	*	10298	0	0	
+
+V 99   3017	4454	*	6297	4412	4758	4571	4479	4196	2496	5168	4503	5874	5400	3498	4668	4970	3472	6469	4584	99
+       85	6689	4397	1585	585	0	*	10119	1013	4259	
+
+R 100  4050	7055	2817	3529	4192	5972	5334	6604	3339	6657	6482	3586	*	3684	3090	4196	3345	6702	*	4765	100
+       53	6842	5203	2322	322	*	0	10187	1030	1645	
+
+E 101  3804	*	3207	3023	4575	5174	5771	4017	3746	3724	6546	4277	6521	3676	3958	4492	3885	5043	6528	5152	101
+       15	6565	*	1000	1000	1745	511	10157	1000	2223	
+
+L 102  3490	*	*	5195	3964	5201	5711	2947	5755	2349	2912	*	4584	*	4968	5686	*	2972	6832	3905	102
+       109	*	3786	*	*	*	0	10183	0	1821	
+
+F 103  3756	6771	5670	5638	2426	4581	6718	3967	5162	2151	4007	6976	*	4604	5323	3473	4614	4744	*	5771	103
+       163	5694	3512	0	*	*	0	10058	1178	3144	
+
+N 104  3512	*	4010	4510	6374	4278	4592	5594	3219	3964	5660	3489	4132	3000	3774	4594	4227	*	5066	5603	104
+       86	5133	5079	2610	258	4395	70	9907	1377	4407	
+
+I 105  3335	*	4499	3560	4720	6387	5565	4868	3179	5562	*	3861	4899	4051	2942	3682	3709	4618	5549	5275	105
+       228	4634	3236	1944	434	2460	289	9906	1530	4635	
+
+T 106  3911	5679	4451	3880	6329	3986	6262	4204	3523	4442	6442	3428	4511	3845	3451	4473	3362	6340	5206	4898	106
+       239	4797	3100	721	1346	3193	167	9734	1386	5307	
+
+N 107  2800	6302	4415	4807	*	3891	4606	*	3162	4552	5324	2793	4777	3896	5490	2719	5207	6435	*	6307	107
+       74	*	4325	*	*	3671	118	9712	0	5991	
+
+G 108  3684	*	4654	3983	*	1531	*	*	4365	4761	*	3863	6126	3983	3596	3951	4809	6213	5004	6178	108
+       240	3511	3931	2231	346	305	2393	9703	1987	6118	
+
+A 109  3054	6294	3828	3119	*	2573	6651	5608	4560	5077	6408	3973	3981	4824	4166	4288	3771	5761	6556	5185	109
+       105	7151	3978	0	*	1632	562	10051	1000	2992	
+
+R 110  4717	*	4163	4590	5578	4109	4748	*	3516	4560	*	6587	4855	4275	1264	4541	3995	*	*	*	110
+       194	3816	4194	1386	696	2456	290	10031	2115	3405	
+
+K 111  4157	6202	4620	3968	6361	3620	5123	4990	3691	4417	6443	3889	1964	4620	3984	4714	5492	4683	*	6711	111
+       125	4499	4700	818	1208	1889	454	10076	1614	3961	
+
+N 112  4995	*	2159	4873	6608	2726	6519	*	3407	5575	6596	2561	4494	4511	4879	5023	4920	5440	5734	6018	112
+       137	4565	4373	1159	857	1176	843	10132	1599	3837	
+
+A 113  2473	*	6728	4832	*	3846	5688	4384	3774	4668	6891	3973	4033	4615	3109	3861	4610	3691	*	4350	113
+       74	5781	4988	1000	1000	1053	949	10149	1148	3385	
+
+F 114  3760	6470	5002	4116	5832	5245	6734	6797	2963	5622	*	3793	2621	4688	2436	4168	4558	4730	*	5565	114
+       0	*	*	*	*	291	2454	10178	0	2748	
+
+K 115  4291	*	6763	6705	6723	3673	4009	6806	2312	5172	6796	4767	4386	4078	2288	3367	5180	4337	*	6552	115
+       14	6734	*	3322	152	1159	857	10280	1035	1188	
+
+I 116  3698	*	6748	5787	3960	*	5717	2227	*	2914	5423	*	5354	6848	4317	4935	3874	2369	*	3944	116
+       13	*	6750	*	*	*	0	10291	0	1017	
+
+L 117  3554	6585	*	*	6766	6800	*	1640	*	2170	3525	6543	6351	*	*	*	4506	2400	*	*	117
+       11	*	7078	*	*	0	*	10280	0	1239	
+
+V 118  6625	*	*	*	3370	*	6358	1745	*	2752	4797	6466	*	*	*	*	*	1522	6081	5386	118
+       0	*	*	*	*	0	*	10300	0	1000	
+
+V 119  *	5531	*	*	4001	*	*	2215	*	1294	5824	5842	*	*	*	*	6783	2246	5641	5820	119
+       12	6898	*	0	*	*	*	10298	1000	0	
+
+I 120  4841	*	6085	*	2740	*	*	1722	*	2122	4217	*	*	*	*	6470	5251	2502	*	*	120
+       0	*	*	*	*	*	*	10298	0	0	
+
+T 121  4503	*	*	7004	6659	4326	*	6764	*	5819	7147	5711	6364	*	*	1729	964	6799	*	*	121
+       11	7105	*	4858	51	*	*	10298	1000	0	
+
+D 122  4436	6951	552	5917	*	5357	5843	*	6936	*	*	4612	6783	6764	5859	4080	4809	6740	*	5904	122
+       0	*	*	*	*	*	*	10298	0	0	
+
+G 123  3894	*	5249	5213	5766	546	*	6783	6956	5140	*	4948	6764	*	7028	4715	4889	*	*	6720	123
+       18	*	6364	*	*	*	*	10298	0	0	
+
+E 124  4004	6603	4229	3009	3674	6034	6594	4320	4242	4342	5563	4128	4723	3303	4039	4036	4518	3752	6001	5587	124
+       58	6841	5035	1000	1000	*	0	10257	1000	1061	
+
+K 125  3505	*	2479	3725	6841	5168	5163	4156	6976	5215	*	5384	2728	4736	6568	2840	4172	4209	6917	5566	125
+       45	6554	5653	3934	98	1828	477	10174	1257	1696	
+
+F 126  4489	*	3745	4805	4460	4102	4459	5854	*	5030	5098	2290	5247	4930	4835	3016	2982	6549	5342	4848	126
+       997	2003	2002	1948	433	*	0	10166	5052	1833	
+
+G 127  5208	5782	2685	4470	6261	2249	5450	4837	4804	6128	*	4895	3825	4788	5239	3148	3126	5130	*	*	127
+       136	3656	6548	1988	419	446	1911	9687	1988	5629	
+
+D 128  4374	*	1685	3551	*	4245	5078	*	4725	*	6050	3201	5785	4375	5281	2709	4385	6571	*	6930	128
+       66	5862	5185	2104	382	3443	139	10185	1195	2553	
+
+P 129  4540	*	4517	4006	5246	5056	7048	3450	3690	4131	6615	5213	2136	3889	5829	4420	4487	3569	5847	5762	129
+       114	4631	4805	2091	386	1217	811	10162	1780	2889	
+
+L 130  3471	5468	3518	3699	5175	4866	5704	3829	4166	3691	5786	4638	3884	4600	4521	4140	4691	3893	7021	4131	130
+       96	4544	5561	3415	142	1177	842	10128	1723	2687	
+
+G 131  3942	*	3165	3273	*	4400	5143	5303	3893	4177	5555	4301	3617	4706	4076	3196	3673	4962	*	5282	131
+       130	5849	3856	3244	161	1943	434	10139	1183	2259	
+
+Y 132  4180	6487	6867	4591	4369	5062	*	3934	5168	2633	4966	6565	2932	6565	6566	5701	3448	2740	*	3385	132
+       74	4942	5840	2024	407	1199	825	10141	1468	3156	
+
+E 133  2992	5332	3281	3372	6652	4504	5679	4498	4014	3873	5098	4209	5646	4222	4705	3682	4605	3858	*	5726	133
+       0	*	*	*	*	1692	534	10180	0	2496	
+
+D 134  3565	*	3528	2605	6688	5681	4830	6941	3566	5702	6647	3303	7125	3028	3870	4275	3974	4594	*	5493	134
+       31	6344	6833	0	*	1180	840	10179	1056	2004	
+
+V 135  2500	6074	5688	4186	5048	5110	6293	3345	7067	3070	5305	5403	5299	4722	4963	4373	3971	2854	5614	5499	135
+       39	5649	7154	0	*	2787	226	10126	1223	1911	
+
+I 136  2032	6647	*	4653	5687	7049	*	2267	5870	2814	5799	5772	6289	6839	5134	4171	5718	2808	*	6929	136
+       29	6537	6733	1000	1000	2520	276	10138	1074	1898	
+
+P 137  3941	*	3974	3481	6453	5228	6730	5173	2821	5193	5913	4761	4579	3035	2679	3450	5806	5165	*	5217	137
+       41	5152	*	720	1348	1764	503	10136	1388	1919	
+
+E 138  2982	*	4784	3024	6458	4233	5729	4174	3911	3697	5637	4201	*	3683	2763	4358	4879	6543	5559	5835	138
+       77	5297	5236	4176	82	*	0	10141	1375	1603	
+
+A 139  2293	5683	*	5731	4427	5194	*	3375	6732	1683	4611	5819	6977	6835	6286	4238	3958	4810	*	5297	139
+       30	5622	*	2583	263	771	1272	10118	1207	2171	
+
+D 140  3820	*	5863	4112	*	5844	5865	5756	2071	5359	7030	4660	4365	4205	2011	4426	4770	4686	*	5743	140
+       89	4066	*	2082	389	1241	793	10151	2022	1393	
+
+R 141  3303	6709	3357	3117	6359	4748	5260	5318	2557	5235	*	3756	*	3932	3618	3305	4690	6880	*	6670	141
+       38	5263	*	392	2073	*	0	10172	1376	1147	
+
+E 142  2917	*	5795	3612	7109	5122	5800	5675	2925	3789	3568	3807	4744	5729	3742	3385	4051	5642	6630	5841	142
+       28	6679	6736	0	*	*	0	10172	1013	1147	
+
+G 143  5692	*	3317	*	*	1359	5097	6852	3421	*	*	2924	3379	6486	5464	3958	7083	5278	*	*	143
+       25	6910	6775	1000	1000	0	*	10161	1000	1332	
+
+V 144  4863	7045	6888	6973	5735	6710	4580	1789	7063	3943	4988	5913	6599	6655	5695	3786	4589	1905	5905	5361	144
+       13	*	6843	*	*	0	*	10235	0	1000	
+
+I 145  4843	6752	3817	4114	6350	5455	4734	4382	3837	5622	7161	4041	4509	3672	3227	3384	2751	3915	*	6814	145
+       25	*	5859	*	*	*	0	10243	0	1030	
+
+R 146  6634	5203	*	*	4685	6629	*	1998	7121	2564	4419	*	6807	*	5259	6845	4306	1583	6331	*	146
+       75	4311	*	2326	321	0	*	10210	1900	1408	
+
+Y 147  4275	*	4410	*	2316	*	4211	2650	*	3677	5892	4638	*	6357	6919	4449	5402	3643	6735	2534	147
+       18	*	6344	*	*	*	*	10248	0	0	
+
+V 148  2721	5845	*	*	4675	3501	*	3637	*	4965	4804	6056	4526	5640	*	3512	2417	2371	*	6869	148
+       0	*	*	*	*	0	*	10207	0	1061	
+
+I 149  5453	7092	6141	*	3776	*	*	1801	*	2526	7029	*	*	*	*	6590	*	1402	*	5287	149
+       42	5685	6780	1800	488	*	*	10248	1183	0	
+
+G 150  2456	6780	4289	*	4832	1381	5648	6393	*	4517	6678	5695	*	4519	5965	3895	3787	5930	*	5780	150
+       0	*	*	*	*	0	*	10234	0	1000	
+
+V 151  4331	*	*	6566	3279	7133	*	2261	6691	2806	4485	*	*	*	6778	4238	3657	2180	*	4019	151
+       14	6694	*	1585	585	*	*	10179	1000	0	
+
+G 152  4152	6579	5182	4597	6104	838	*	6589	5091	5656	6670	4425	5112	*	4978	3874	6014	5693	*	6518	152
+       28	5714	*	1641	558	*	*	10121	1283	0	
+
+D 153  3297	*	2845	4263	6704	3800	5802	*	4356	4525	*	3174	3202	5708	5041	3213	3293	6777	*	5188	153
+       112	5608	4199	1834	475	*	*	10108	1205	0	
+
+A 154  2536	*	2868	3198	6657	3808	5281	6827	4380	*	6549	3922	3760	4457	4228	4317	4980	4562	*	4499	154
+       825	6220	1245	4170	82	2472	287	10063	1041	1864	
+
+F 155  2249	*	3622	5858	3850	3558	6060	4375	4357	4104	*	*	4077	5003	5602	3541	5677	3230	*	4518	155
+       2070	3579	560	3849	104	4016	92	9156	1789	6907	
+
+R 156  4278	4454	4285	2497	*	2829	*	4445	4414	4340	*	4295	*	*	2759	2807	*	4326	*	*	156
+       78	*	4246	*	*	4663	58	7024	0	8986	
+
+S 157  2427	*	3362	*	3529	3014	*	*	4857	*	*	4846	*	*	*	2223	3369	*	*	2989	157
+       123	4741	4499	3322	152	5413	34	7241	1000	8895	
+
+E 158  2932	*	4594	2747	4391	*	*	*	4423	3504	4695	*	2347	*	4430	4619	2894	4662	*	*	158
+       140	4349	4533	2585	263	2506	279	7320	1074	8868	
+
+K 159  2922	*	*	3573	5250	4094	5247	2577	5269	*	*	5533	*	5061	5141	3432	2290	3780	*	5083	159
+       184	3538	4889	3296	155	205	2917	8381	1474	8261	
+
+S 160  3919	4990	1782	3733	4362	3454	4612	6920	4125	*	6518	3075	5658	6772	5469	4142	4577	*	*	6587	160
+       28	*	5710	*	*	794	1240	9839	0	2683	
+
+R 161  3884	*	4566	2946	4451	4846	6736	*	3427	3513	6411	4656	5645	3845	2817	3826	4693	3981	6319	5507	161
+       0	*	*	*	*	486	1805	9979	0	1964	
+
+Q 162  3030	6883	2996	2415	6543	5201	6465	*	3536	4906	*	4400	5634	4066	3708	4239	3525	5549	*	5475	162
+       12	6861	*	0	*	0	*	10084	1000	1148	
+
+E 163  3961	*	3624	2017	4780	5512	6357	5815	4905	3536	*	4028	*	2803	4700	*	4748	3484	5655	6605	163
+       12	*	6881	*	*	*	*	10108	0	0	
+
+L 164  5126	6720	6330	6366	4127	6711	*	3447	*	1027	2539	7090	*	6516	6865	6918	*	4471	5318	6545	164
+       0	*	*	*	*	*	0	10094	0	1016	
+
+N 165  4086	*	3159	3196	*	4082	5782	6459	2908	5218	6468	3906	6642	3504	2394	5306	4035	6596	*	6918	165
+       16	6520	*	0	*	0	*	10094	1036	1016	
+
+T 166  3850	6101	3589	2989	6533	3390	5612	*	3532	3748	*	3396	6556	4774	3112	3423	4074	6787	*	*	166
+       33	5481	*	2521	276	*	*	9986	1242	0	
+
+I 167  4596	*	6575	6745	3814	*	*	1427	*	1785	4130	*	*	*	*	*	5775	3217	6627	6295	167
+       14	*	6727	*	*	*	*	9958	0	0	
+
+A 168  1257	*	4933	5731	4625	6457	*	5095	*	5453	*	*	*	5276	6551	2496	2868	3730	*	*	168
+       0	*	*	*	*	*	0	9926	0	1000	
+
+S 169  3989	5694	3215	3325	*	2735	*	6531	3732	6709	5553	3925	6467	6474	4251	2841	3293	4718	*	5468	169
+       321	6498	2406	0	*	*	0	9864	1015	1000	
+
+K 170  2713	5343	3618	4094	6143	3610	5300	6162	3520	3447	6105	6228	*	3973	4437	3187	3953	6388	5988	5119	170
+       63	*	4545	*	*	*	0	9552	0	3938	
+
+P 171  3733	*	*	*	*	3160	6344	4479	4534	6078	6007	5162	2282	5805	*	3431	1785	5139	*	5685	171
+       160	*	3249	*	*	675	1420	9480	0	4377	
+
+P 172  3511	*	3912	*	5141	1500	5317	5855	3923	4365	6180	4350	5495	6324	4515	3208	5317	*	*	4939	172
+       38	6557	6016	2807	222	2866	213	9591	1000	3453	
+
+R 173  4144	*	3689	3335	*	1371	*	*	3812	5140	*	4020	6432	5305	5302	3639	6309	5991	*	4378	173
+       38	6168	6351	0	*	499	1773	9593	1010	3310	
+
+D 174  3781	*	4196	2921	*	4050	4841	5395	3681	4494	*	3078	*	3067	3731	4432	3511	6503	4601	*	174
+       480	2794	2848	697	1383	369	2148	9775	2931	1771	
+
+H 175  5363	6234	4370	6483	3737	5321	2575	*	3711	4665	4187	3981	5297	4299	3849	4323	4594	5083	*	2894	175
+       15	*	6598	*	*	0	*	9653	0	3127	
+
+V 176  3612	5380	*	5727	2343	6580	*	4400	6268	2839	6283	6392	6173	*	5513	5002	3759	2583	*	2887	176
+       131	6633	3699	1585	585	0	*	9864	1000	1000	
+
+F 177  4840	*	6313	6271	1598	*	6314	4198	6249	2897	6464	6225	5290	6319	6123	6563	*	3409	*	2232	177
+       18	*	6358	*	*	219	2827	9776	0	2087	
+
+Q 178  4195	*	3670	4804	4969	6704	3973	3971	3020	4193	4768	4723	4034	4158	4124	3570	3596	6646	*	4102	178
+       18	*	6298	*	*	0	*	9785	0	1216	
+
+V 179  2297	*	5367	*	*	6327	6456	2597	*	2495	4881	*	4928	4973	6268	4896	3593	2494	*	*	179
+       15	6608	*	0	*	0	*	9791	1000	1013	
+
+N 180  4175	6866	2665	3019	*	4506	6535	*	4216	6157	*	3227	3450	4042	3957	3371	3518	5316	*	*	180
+       16	6487	*	0	*	*	*	9814	1000	0	
+
+N 181  *	*	1919	3918	6323	3120	5096	*	4471	6487	6340	2370	*	*	5544	2792	3561	*	*	*	181
+       17	*	6418	*	*	*	*	9798	0	0	
+
+F 182  3063	*	5411	4425	2357	4160	*	3846	5132	4839	4262	6173	3739	6072	*	4144	6432	3456	4461	3927	182
+       0	*	*	*	*	0	*	9694	0	1000	
+
+E 183  3457	*	1921	3156	*	4718	6633	6302	4769	4425	6223	4617	6266	4538	4336	3225	3360	*	6432	6250	183
+       20	6188	*	0	*	*	*	9688	1036	0	
+
+A 184  2708	*	2637	2115	6231	5055	*	6168	6214	4348	5307	4615	6327	4101	*	3004	4004	6429	*	*	184
+       0	*	*	*	*	*	*	9585	0	0	
+
+L 185  *	*	*	6117	3920	*	*	2733	*	906	3739	*	*	6216	6214	*	6359	3316	5558	*	185
+       0	*	*	*	*	*	*	9541	0	0	
+
+K 186  3686	*	3805	4511	6278	*	6224	5097	3826	3676	*	3889	3347	3384	2720	3211	5273	4624	*	6059	186
+       19	6261	*	0	*	*	*	9451	1000	0	
+
+T 187  5289	*	2621	3203	*	3621	*	*	3834	4923	5982	2927	5496	4160	3735	3070	4179	5076	*	6121	187
+       0	*	*	*	*	*	*	9423	0	0	
+
+I 188  2934	5986	*	*	4898	6113	5980	2346	4974	2419	4395	4470	5928	5978	4047	*	6030	3031	*	4291	188
+       28	5683	*	0	*	*	*	9279	1022	0	
+
+Q 189  6016	*	*	*	2087	5878	*	3364	5929	2771	3986	*	*	4454	4632	6048	4983	2025	*	5034	189
+       0	*	*	*	*	*	*	9172	0	0	
+
+N 190  4287	*	3014	3293	*	2892	*	*	3105	4938	5987	3227	4966	3932	2730	4277	*	*	*	5870	190
+       0	*	*	*	*	*	*	9130	0	0	
+
+Q 191  3446	*	4362	2785	*	4313	4972	*	3205	3842	*	5068	4918	2318	3391	3955	5014	*	*	*	191
+       0	*	*	*	*	*	*	9130	0	0	
+
+L 192  *	*	*	*	5548	*	*	1149	*	1651	3161	*	*	*	*	5437	5570	4230	*	*	192
+       0	*	*	*	*	*	*	8817	0	0	
+
+R 193  3856	*	*	4255	4300	4423	*	3572	3324	2768	4267	4315	*	3723	5513	4240	3855	2959	*	*	193
+       0	*	*	*	*	*	*	8358	0	0	
+
+E 194  4931	*	2423	2328	4889	5163	*	*	2952	5138	4813	4041	*	3423	*	3158	4045	*	*	*	194
+       0	*	*	*	*	*	*	7792	0	0	
+
+K 195  *	*	*	2869	*	*	*	*	1230	*	*	3944	*	2705	3185	*	4184	4221	*	*	195
+       0	*	*	0	*	*	*	6715	0	0	
+
+//
+�HHsearch 1.5
+NAME  cd06863eb01c4bcc5ae9b1817480cf17
+FAM   
+FILE  cd06863eb01c4bcc5ae9b1817480cf17
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:16:27 2013
+LENG  226 match states, 226 columns in multiple alignment
+FILT  129 out of 1445 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.2 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCEEECCCCEEEECCCCEEEEEEECCCCCCCCEEEEEEECCCCCCEEEEEEECCCCCCEECCCCCCCEEEEECCCCEEEEEEECCCCCCCCCEEEEEEEE
+CCCCCCCCCCEEEECCCCCCCEEEECCCEEEEEEECCCCCCCCCCCEEEEEEECCCCCCCCEEEEECCCCCCCCCEEECCEECCCCEEEEEEEEEECCCC
+CCCEEEEEEEECCCCEEEEEEEEECC
+>ss_conf PSIPRED confidence values
+9389675888996899899998963788888669999968999958999995368841106766762699841543168899826680218369999973
+6766545332055315421000000000024567428631202474299999767887997499988995247720100065399789999999941336
+79879999995898878999996088
+>Consensus
+xxxxxxpxxxxvxxGxxvxLxCxxxxxxxxxxxvxWxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxrxxxxxxxxxxxxxLxIxxvxxxDxGxYxCxxxx
+xxxxxxxxxxxxxxxxxxxxlxVxxxxxxxPxvxxxxxxxxxxxgxxxxlxCxxxxxxPxxxxvxWxxgxxxxxxxxxxxxxxxxxxxxxsxlxixxxxx
+dxxxyxCxvxxxxxxxxxxxxixxxx
+>cd06863eb01c4bcc5ae9b1817480cf17
+DVQLVESGGGLVQPGGSRKLSCAASGFTFMRFGMHWVRQAPEKGLEWVAYISSGSSTIYYADTVKGRFTISRDNPKNTLFLQMTSLRSEDTALYYCARSG
+GIERYDGTYYVMDYWGQGTSVTVSSAKTTPPSVYPLAPGSAAQTNSMVTLGCLVKGYFPEPVTVTWNSGSLSSGVHTFPAVLQSDLYTLSSSVTVPSSPR
+PSETVTCNVAHPASSTKVDKKIVPRD
+>gi|293338546|gb|ADE43520.1| anti-2,4,6-trinitrotoluene scFv antibody 6-3 [synthetic construct]
+----------------------------------------------------------------------------------------------------
+------------------------------mgQVQLVQSGAEVKKPGA--SVEGLLQDF-----------------------------------------
+----------------------------
+>gi|33569904|gb|AAQ21854.1| immunoglobulin kappa chain variable region [Homo sapiens]
+----------lAVSLGERATINCKSSQSVLYSSnnkn-------------yllgtsrnqdSLLSCSF-----TGHLPGNPGSLTDSVaAGLGQISLSP--
+----------------------------------------------------------------------------------------------------
+------------------------------------------
+>gi|326674722|ref|XP_689309.4| PREDICTED: poliovirus receptor-related protein 2-like [Danio rerio]
+-QHVRVEPEVVSFPGQTVTLRCQFPNPGDTqLTQVSWIFERTDTERTNIAVFHPNFGVNYPTTSPvSGRVTFVSNPpTLDNPSIQIKDVKMTDEGRYICE
+--------------YATYPSGNEqgvssLVMLAKPKNTATTVTVSAGKTPVI----VARCESSNGRP-AATITW--STALNGNVTTPKKTDnpDNTVSIQ
+SVYMLAPQPEDnGKDISCIVSHRTMAQPETFPMK---
+>gi|168985092|emb|CAQ09233.1| major histocompatibility complex, class I, C [Homo sapiens]
+----------------------------------------------------------------------------------------------------
+-----------------------------HPKTHVTHHP---VSDHEASRR-WNLpevgscggAFWrRAEIHVPCaARGAARAPHPE-------------
+------------------------------------
+>gi|17570629|ref|NP_510069.1| 2 (Zwei) IG-domain protein family member (zig-2) [Caenorhabditis elegans]gi|18104589|gb|AAL59607.1|AF456249_1 secreted 2-immunoglobulin-domain protein ZIG-2 [Caenorhabditis elegans]gi|3877044|emb|CAA92170.1| C. elegans protein F42F12.2, confirmed by transcript evidence [Caenorhabditis elegans]
+---------SNVTFGEKFVLSCGA--NGAPLPSIYWELNGMR--------IQGEETSNVYENILNdGKQVSN--AAMVSSHYRIPCATARNSGAYKCIID
+NG----------LTKLEHVAKVFVGGnktncalNDNGAPFISMTVDFRLEISNNAVALSC----RSETATEWSW-------HKGEQLLTNDGERYQMFPS
+gdLIIRNISWSDmGEYNCTARNHFGETTAITFLYP--
+>gi|149597420|ref|XP_001520231.1| PREDICTED: similar to butyrophilin [Ornithorhynchus anatinus]
+--VIGPAEPVLALEGGDTEMPCHLNPKESAeFMEVRWFR----SRPSNIVHLYDNREELFREQMEEyqGRTELVRDaMDYGSVAVRLLNVRVSDEGNYHC
+SFYDG------------NTVDRAPLELQVvGSTAQCSIFMEHFSWIS-----LILDLFP-DWIPDlfPI-LQMrelsEGGVNIKCPKSYGIGHTCTMFSL
+ddifgnfisaplfptaLSLMVALGVTLPV--LGLIIAGglyLIWKQNMDIEK----
+>gi|221330930|ref|NP_001137898.1| CG42256, isoform F [Drosophila melanogaster]gi|220902492|gb|ACL83253.1| CG42256, isoform F [Drosophila melanogaster]
+--------------------vaknpaaeikytallqvKGSVLAYPS--QKLN-TEHKKRKPHKYRSHLL-----------SKL-----kLSQ----CSLT
+LAA----slkp----FI-----------------------------------------------------------------------------------
+------------------------------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+D 1    4203	*	2592	2606	*	*	4156	*	*	*	*	*	3315	1510	*	4147	4277	*	*	*	1
+       0	*	*	*	*	*	*	6193	0	0	
+
+V 2    *	*	*	*	4777	4882	*	4878	*	1598	*	4613	*	*	*	3945	*	1122	*	*	2
+       0	*	*	*	*	*	*	7304	0	0	
+
+Q 3    5405	*	4255	4309	4467	4481	*	5481	2811	*	*	*	*	3013	4319	4428	2793	2144	*	5169	3
+       38	*	5276	*	*	*	*	8140	0	0	
+
+L 4    5570	*	*	5737	3911	*	*	3480	*	1745	5752	*	5655	*	5423	5227	3907	1512	*	*	4
+       0	*	*	*	*	0	*	8314	0	1031	
+
+V 5    5659	*	5079	3065	*	5815	5792	3763	5797	3914	5582	5754	*	3014	5928	2797	2271	3229	*	*	5
+       51	5774	5928	0	*	*	*	8479	1010	0	
+
+E 6    2843	*	5333	2957	*	4800	5570	*	4792	5812	*	*	3292	1848	4124	*	4284	3214	*	*	6
+       179	3102	*	0	*	*	0	8537	1929	1034	
+
+S 7    5061	*	6019	5176	*	6382	6102	*	4929	4941	*	5201	1002	4759	5795	2501	4042	5933	*	*	7
+       70	4396	*	0	*	*	0	8809	1345	1034	
+
+G 8    3139	*	3631	3549	*	3008	5445	*	3837	6150	*	4784	2791	4672	4672	2547	5105	5080	*	*	8
+       19	6237	*	0	*	*	0	8931	1000	1034	
+
+G 9    4793	*	2970	3588	4642	4027	*	5921	5253	6069	*	3626	4786	3278	4383	2816	3315	4105	6089	6560	9
+       0	*	*	*	*	*	0	8998	0	1034	
+
+G 10   4620	*	5916	5279	6476	4205	*	2549	5402	2812	4809	6416	6304	4048	4412	4251	6472	1874	*	6588	10
+       17	*	6381	*	*	*	0	9265	0	1034	
+
+L 11   6498	*	5203	4417	6671	5619	6659	3143	4624	3888	4983	5409	6658	*	3896	2759	2358	2784	*	4907	11
+       18	6307	*	1827	478	936	1067	9368	1217	1208	
+
+V 12   3364	6317	*	5599	6495	3745	*	4428	4104	3970	4752	6648	*	6669	4901	4077	4721	1403	*	4325	12
+       0	*	*	1000	1000	0	*	9475	1017	1017	
+
+Q 13   3736	*	7121	4036	6589	5827	6838	5348	2752	4086	4858	4181	4089	3576	3146	3414	4144	3636	6369	*	13
+       16	*	6485	*	*	*	*	9566	0	0	
+
+P 14   4080	*	6770	2031	5767	6467	*	4267	3987	2657	6813	7404	2982	6353	4565	3723	6525	3801	6929	5541	14
+       0	*	*	0	*	*	0	9556	1034	1034	
+
+G 15   *	*	5180	4851	6062	381	7077	*	5900	*	*	4749	*	6755	4864	4784	*	6223	*	*	15
+       12	6871	*	1585	585	*	0	9630	1000	1034	
+
+G 16   4216	*	2745	1994	7455	3154	5604	*	4321	5734	*	4002	*	3231	6109	3403	4420	6170	*	*	16
+       0	*	*	*	*	*	0	9623	0	1034	
+
+S 17   4877	6521	3767	4429	6381	6986	5766	*	3707	6803	7069	3427	3473	6575	4607	2068	2241	5698	*	*	17
+       29	7143	6267	1000	1000	*	0	9651	1000	1034	
+
+R 18   1994	*	*	6586	6558	6255	*	3317	*	3205	5808	*	*	*	5585	6444	5839	1190	*	*	18
+       0	*	*	*	*	1057	946	9623	0	1210	
+
+K 19   4927	*	5591	3613	5956	*	4850	3573	4332	4611	6010	4137	6878	5208	5180	3507	1527	4058	*	6815	19
+       0	*	*	*	*	*	0	9650	0	1034	
+
+L 20   *	*	*	*	3767	*	*	2537	*	694	4057	*	*	*	*	*	*	3720	*	*	20
+       0	*	*	4087	87	*	0	9650	1000	1034	
+
+S 21   *	*	4047	4493	6186	6736	5617	6463	3977	4212	*	3605	2378	4498	3525	2778	2903	5835	7127	6264	21
+       0	*	*	2807	222	0	*	9617	1034	1034	
+
+C 22   *	98	*	*	*	6353	6391	*	*	*	*	*	6270	*	*	6531	6995	*	6690	*	22
+       32	6494	6546	0	*	*	*	9725	1010	0	
+
+A 23   3716	*	4174	5490	6544	3634	4617	4778	2888	4869	*	4035	4229	6463	3344	3111	3118	4469	*	6905	23
+       12	6956	*	0	*	0	*	9617	1166	1034	
+
+A 24   3212	6605	*	6981	2873	5963	6704	4282	*	2556	*	*	4748	6647	*	5179	4098	2062	*	3087	24
+       216	3711	3996	570	1614	*	*	9725	1977	0	
+
+S 25   5513	*	3416	4274	*	4034	4747	5080	3684	4521	*	4241	4694	4886	3655	2483	2406	*	6479	*	25
+       152	4136	4536	863	1152	1200	825	9568	1846	1914	
+
+G 26   3620	6825	4410	3430	6117	1692	6601	6793	5801	6884	6441	3770	4119	3882	4546	3837	3917	6487	*	*	26
+       125	*	3593	2807	222	1071	932	9603	1060	2169	
+
+F 27   5571	5072	5005	6733	2904	3686	4294	4916	3916	4819	6454	3902	4123	4493	4047	2699	4390	5076	7072	4952	27
+       146	6715	3530	1049	952	108	3787	9494	1200	2662	
+
+T 28   4757	5585	4091	3686	6593	3646	6582	4732	4050	5966	6840	4877	2585	4238	5574	2670	3744	3935	*	6573	28
+       298	4396	2848	1911	446	1253	785	9517	1619	2208	
+
+F 29   4238	4801	4717	3788	3352	6353	6618	4090	5657	3075	*	6335	3308	4398	5440	3221	4514	4008	6687	3710	29
+       280	5244	2734	2169	363	2656	249	9199	1130	3715	
+
+M 30   5357	*	3184	3786	6138	3105	6066	*	3371	5281	4549	3568	3258	4711	3662	4097	3451	5224	*	*	30
+       145	3909	5116	1015	985	2535	273	9146	1624	5062	
+
+R 31   4869	*	2563	4287	*	4088	4257	6504	5780	4357	*	3277	4593	4238	3657	4157	3631	3101	*	5264	31
+       159	3831	4882	1382	699	284	2487	9336	1797	4705	
+
+F 32   7026	*	4031	4826	3569	4081	4550	4888	5189	3589	5682	4566	3180	4488	4529	3351	3619	4697	*	3510	32
+       44	6859	5544	0	*	930	1074	9632	1003	2119	
+
+G 33   3356	*	4637	*	6864	4977	5684	3886	4806	4466	4243	4906	6001	4411	3968	2828	3133	3380	5557	3860	33
+       44	5042	*	0	*	2502	280	9618	1370	1800	
+
+M 34   6913	*	*	*	5250	6876	6175	1938	5542	2695	3576	*	*	*	*	*	*	1339	6751	5798	34
+       16	6531	*	0	*	2142	371	9646	1000	1638	
+
+H 35   6514	*	*	3771	3005	7043	3828	3830	4386	4275	6647	4537	*	4189	4685	2960	3208	4320	7005	3292	35
+       7	*	7663	*	*	1916	444	9665	0	1464	
+
+W 36   *	*	*	*	5941	*	*	5576	6382	4432	*	*	*	*	*	*	*	5252	209	6279	36
+       59	5395	5916	0	*	2216	350	9673	1167	1425	
+
+V 37   6580	5564	6647	5733	2751	*	5388	4056	3882	3561	*	*	*	4130	3858	5800	3895	4400	5214	1895	37
+       75	6067	4800	2207	352	*	0	9659	1117	1599	
+
+R 38   *	6285	*	7557	4454	*	4204	4604	2157	3713	6491	5157	*	3599	1707	6589	*	5157	4133	5887	38
+       289	6923	2528	1585	585	1601	577	9573	1000	2194	
+
+Q 39   6773	*	3508	4493	*	3842	4697	4843	3968	4681	6701	5346	*	1525	4151	5196	4084	3939	*	5440	39
+       96	6392	4245	610	1537	2099	384	9402	1123	4279	
+
+A 40   3914	6054	3439	4866	5274	3583	6213	4427	2578	6272	6483	5048	4777	4425	3812	4020	3667	4115	6354	4778	40
+       13	*	6807	*	*	3016	190	9312	0	4109	
+
+P 41   4614	*	3810	2940	5527	5025	5038	5499	3336	4198	6399	3859	2129	5846	4790	3372	6840	5021	*	*	41
+       155	4470	4145	305	2392	1845	471	9365	1445	3865	
+
+E 42   5733	*	3482	3638	*	1784	6375	*	4934	6515	*	3889	5028	3662	3806	2967	4136	6798	5445	*	42
+       32	*	5533	1585	585	2080	389	9448	1034	3764	
+
+K 43   4518	*	3663	2788	6452	3176	5457	6442	2745	5880	6534	3866	*	4024	3867	3583	4128	4056	*	*	43
+       30	6903	6361	0	*	4128	85	9484	1005	3395	
+
+G 44   3911	*	4377	2767	5465	2249	6261	6563	4294	7015	4775	5093	4037	4885	5079	3092	3760	5826	*	5365	44
+       65	6399	4961	0	*	*	0	9416	1000	3414	
+
+L 45   5002	6639	4313	4016	5048	5226	5838	5047	4982	2346	4949	6392	2281	4673	3896	3791	4932	4692	6202	*	45
+       26	*	5835	*	*	*	0	9358	0	3837	
+
+E 46   3929	*	4170	2888	6651	6495	5361	4297	3288	4215	*	4369	4415	2546	4616	4218	3656	4297	*	*	46
+       54	6336	5369	1585	585	2968	197	9346	1171	4058	
+
+W 47   5919	*	5507	4483	3249	5390	*	4955	4798	2345	*	4586	4353	5608	3194	4196	5839	3463	3989	3704	47
+       15	6644	*	0	*	*	0	9419	1000	3943	
+
+V 48   5580	*	*	5694	4010	6511	6349	2219	*	1843	5259	5191	6486	6376	6087	3966	4920	2476	*	6293	48
+       428	6799	2012	0	*	2928	203	9419	1009	3943	
+
+A 49   2166	6014	6237	4934	3278	3436	6156	2656	5821	2877	6295	*	*	4915	*	5116	*	3619	*	4733	49
+       50	5914	5839	0	*	*	0	8898	1013	5727	
+
+Y 50   4143	*	6258	4246	3498	4681	5272	5219	4423	4807	5288	*	5434	*	3829	3382	2878	4998	5608	2236	50
+       17	6388	*	1000	1000	778	1262	8838	1000	5815	
+
+I 51   5701	6435	5168	6919	2805	4832	6449	2257	4201	3515	6460	*	*	4492	4081	4856	3852	3189	6839	4171	51
+       29	*	5630	*	*	*	0	9489	0	3376	
+
+S 52   5046	6247	3912	4624	4379	4946	4192	5386	4084	4120	5595	3495	6029	4701	3948	2595	5151	5447	6155	3115	52
+       551	5592	1754	545	1667	*	0	9473	1183	3621	
+
+S 53   4902	*	5898	3931	4519	2182	*	*	4202	*	6256	4111	4331	*	4292	2082	4440	3681	*	4883	53
+       175	5470	3443	1000	1000	2864	213	8971	1010	6161	
+
+G 54   5968	*	3036	3855	*	2909	*	6207	3177	4924	5555	4098	*	4478	4478	2478	3566	4574	*	5188	54
+       132	*	3517	*	*	3559	128	8864	0	6096	
+
+S 55   *	5653	2670	3517	*	2583	6017	3844	4437	5895	*	4027	4528	4848	4939	3338	3238	5996	*	5152	55
+       211	6184	3032	1238	796	1713	525	8835	1179	6187	
+
+S 56   *	*	3770	7174	4977	2099	5282	6319	3408	*	6329	3641	5022	4125	3927	2771	3708	5265	*	5226	56
+       100	5399	4530	0	*	2438	294	9099	1074	5644	
+
+T 57   3995	*	3352	4647	4797	4381	4218	4547	5045	4110	*	4194	*	3930	4588	2862	3786	2914	*	5258	57
+       17	6456	*	1000	1000	3167	170	9276	1000	5278	
+
+I 58   3954	*	4427	5061	6509	4102	3898	3623	4048	3601	*	3207	3613	5430	5793	3753	3845	3153	6475	*	58
+       16	6473	*	1000	1000	2828	219	9328	1013	4913	
+
+Y 59   5259	*	4551	3154	4349	5269	5529	4126	3546	4148	6519	3617	6261	3204	3931	3357	4235	3819	*	5523	59
+       43	6392	5866	1000	1000	3987	94	9416	1014	4470	
+
+Y 60   6263	6411	3636	5246	3449	4311	5508	3364	3981	5367	4913	6215	5055	3987	3709	4959	5648	2960	6362	3174	60
+       34	6511	6341	3170	170	703	1374	9412	1009	4429	
+
+A 61   3189	6580	3035	3404	4192	3620	6593	*	4525	5140	6448	3243	4058	4524	5248	3363	4240	5221	6091	7207	61
+       0	*	*	*	*	3435	140	9638	0	2580	
+
+D 62   5010	5086	3091	3207	*	3372	4930	4992	4005	4723	*	3978	3096	4916	4981	2749	6405	*	6582	4767	62
+       9	*	7377	*	*	*	0	9672	0	2434	
+
+T 63   4921	*	3604	2980	5655	3063	*	4809	5792	5714	5847	4133	3068	4335	5126	3606	3059	3801	*	*	63
+       65	4912	6566	0	*	2780	227	9670	1415	2569	
+
+V 64   5767	5516	5622	6890	3291	5801	6436	5038	4309	2710	5056	5077	4753	4424	6369	4175	4045	2658	*	2881	64
+       62	4578	*	1186	835	1442	662	9629	1463	2487	
+
+K 65   5336	7041	3588	4094	5858	4156	*	7228	2415	6165	5444	3493	3578	3672	3837	3819	4010	4895	*	4879	65
+       139	3677	6223	208	2898	0	*	9663	1965	1918	
+
+G 66   3596	*	2864	3212	*	1921	7191	7087	4361	4995	6540	3836	4406	4805	5678	3602	5189	5595	*	*	66
+       96	5037	4874	1346	721	1037	964	9713	1303	1156	
+
+R 67   *	*	4488	5397	6949	4256	5343	5997	3106	6401	*	4154	*	5893	799	5194	5154	*	*	*	67
+       49	5302	6949	1014	986	686	1402	9590	1312	1587	
+
+F 68   3523	7060	*	6178	1503	*	6689	4610	7055	3975	5919	*	6473	6566	6116	5394	5003	2790	7029	2668	68
+       0	*	*	*	*	1386	696	9748	0	1260	
+
+T 69   4535	*	6209	4496	6000	4776	4620	4881	3955	4535	*	3387	7220	3603	3982	2292	3186	3702	5853	6868	69
+       0	*	*	*	*	*	0	9765	0	1102	
+
+I 70   2968	*	5741	7015	3744	3277	*	2826	7341	2414	4180	*	6997	*	6455	4161	5138	2878	*	4700	70
+       36	6648	6093	1000	1000	971	1029	9972	1017	1102	
+
+S 71   5107	*	4494	3703	4446	5249	6627	4414	4311	3379	*	3330	6663	3955	3567	3263	2502	4828	*	*	71
+       197	7220	3051	0	*	611	1534	9947	1115	1289	
+
+R 72   4379	7299	4083	4056	3922	3010	4366	6050	3386	3823	*	4734	5253	3986	3027	4631	4263	4587	6537	6367	72
+       111	5202	4409	1494	633	*	0	9701	1307	2959	
+
+D 73   5973	*	2481	4829	5438	4304	6145	4551	3878	3753	5526	2830	3717	4650	5523	3798	4253	4623	*	4959	73
+       329	6651	2367	0	*	664	1439	9656	1000	3529	
+
+N 74   4258	*	3457	4400	6448	3419	5383	5560	3587	4696	6760	3434	3376	4195	3741	3326	3998	5280	*	5510	74
+       327	5448	2475	2430	296	3958	96	9521	1170	4358	
+
+P 75   2803	*	3160	3909	6671	4076	5521	*	4842	3236	5971	3835	3977	5291	4610	2714	5846	4670	*	5548	75
+       150	5210	3806	1561	597	894	1115	9313	1177	5648	
+
+K 76   3470	*	4026	3749	6394	2877	5401	5852	3328	3944	5774	2918	4510	4005	3917	3943	*	5458	6671	*	76
+       33	6413	6548	1000	1000	1826	478	9565	1000	4072	
+
+N 77   5786	4851	3768	5570	4844	2551	5567	6892	4498	5498	*	3196	6667	4843	3575	2877	3690	4078	6397	5113	77
+       150	4548	4163	0	*	*	0	9737	1423	3394	
+
+T 78   4914	*	2765	3431	4685	4278	4957	3827	4424	6083	*	3315	4830	4903	5807	3015	3019	4698	*	*	78
+       93	6681	4241	1070	934	538	1685	9606	1190	3988	
+
+L 79   3107	3712	*	7153	2711	3434	*	3970	6571	3761	5929	5928	5533	*	*	3283	6952	3878	5717	2690	79
+       0	*	*	1000	1000	0	*	9816	1000	2714	
+
+F 80   4975	*	4551	5485	4725	*	4575	4572	5311	5253	*	4044	4947	4116	3917	1844	2739	3951	*	5632	80
+       25	7077	6680	1032	969	*	*	9966	1122	0	
+
+L 81   7831	5026	*	6333	4167	*	*	3401	*	551	6291	*	*	*	5937	*	*	3991	6515	5885	81
+       0	*	*	0	*	0	*	10031	1034	1034	
+
+Q 82   4663	*	5472	3682	6600	5132	5543	3828	3766	3990	*	5575	5776	3268	3337	3194	2643	4197	*	5210	82
+       14	*	6670	2000	415	*	*	10079	1007	0	
+
+M 83   *	*	*	*	4041	6291	*	1049	5074	2353	4748	*	*	*	6678	5583	*	2866	6303	*	83
+       0	*	*	*	*	*	0	10031	0	1034	
+
+T 84   4673	*	5140	3421	7049	6333	5242	6291	3301	3837	*	4966	3829	4019	3338	2471	3477	6772	4737	5118	84
+       0	*	*	*	*	*	0	10031	0	1034	
+
+S 85   4421	5866	3011	4304	6535	3194	5216	*	3436	5648	*	2233	4272	6251	3891	2836	*	*	*	5862	85
+       7	*	7796	*	*	*	0	10031	0	1034	
+
+L 86   2363	*	*	*	4596	6354	*	3719	5959	2135	5852	6558	5670	*	*	5534	4151	1704	*	*	86
+       8	7529	*	2585	263	*	0	9937	1003	1161	
+
+R 87   5221	*	7268	2929	6055	5825	6067	4372	3017	5811	7056	5508	4620	2760	2763	3910	2772	5630	*	*	87
+       26	5834	*	377	2120	*	0	9937	1282	1161	
+
+S 88   3567	*	*	4721	6725	7048	7795	4383	3587	2760	5012	*	3134	4416	3525	3317	4181	3129	5108	*	88
+       35	5373	*	0	*	*	0	10045	1270	1161	
+
+E 89   3946	*	3446	2191	*	3476	5359	*	4538	4557	*	4681	6891	5319	4134	2112	4194	6747	*	*	89
+       23	5983	*	1746	511	*	0	10045	1200	1161	
+
+D 90   5689	*	450	5996	6970	4383	4141	*	*	*	*	4995	*	5341	5245	5354	6891	*	*	7661	90
+       0	*	*	*	*	*	0	10045	0	1161	
+
+T 91   2486	*	4371	2305	6487	4109	4827	*	7160	*	5351	4812	6659	5165	6257	2197	3622	4954	*	5887	91
+       0	*	*	*	*	*	0	10045	0	1161	
+
+A 92   2545	*	6080	*	*	678	6678	*	5332	4733	*	*	6550	*	5378	4721	5622	5415	*	*	92
+       7	7661	*	0	*	*	0	10045	1015	1161	
+
+L 93   4357	4467	5487	4333	5613	6125	5368	4495	4590	4002	5317	4902	*	4169	5482	4693	2094	2419	6772	5547	93
+       29	5657	*	2000	415	1326	734	10045	1134	1161	
+
+Y 94   *	5730	6900	*	3385	6652	*	7655	6341	7125	*	*	*	*	6547	5651	*	5518	*	340	94
+       0	*	*	*	*	*	0	10038	0	1034	
+
+Y 95   6634	5929	*	3981	4252	6547	5482	4288	3709	3227	7789	7141	*	3764	3739	4197	3036	4733	4840	2465	95
+       23	*	5965	3700	115	0	*	10038	1034	1034	
+
+C 96   *	147	*	*	6642	*	*	5421	*	5018	*	*	*	*	5624	6319	*	*	*	*	96
+       26	6975	6661	1000	1000	*	0	10000	1000	1074	
+
+A 97   2584	4934	4851	3647	5971	5075	*	3530	4890	3751	4865	5659	*	3471	3662	4646	4023	3045	*	*	97
+       77	*	4263	*	*	*	0	9880	0	1263	
+
+R 98   1931	6623	*	*	6674	6468	6671	3293	4226	3514	6626	5395	7025	6976	4630	4595	6850	1790	6294	6392	98
+       110	4404	5263	1473	644	1621	567	9770	1791	2082	
+
+S 99   4884	5145	3511	4529	4340	4529	*	4167	5102	5460	4074	4138	6511	4783	3965	3150	3511	4516	3380	4681	99
+       155	5589	3619	0	*	2020	409	9856	1219	2120	
+
+G 100  3515	*	4127	4053	6672	3312	4254	4624	4848	4485	*	2519	5274	4298	4105	3603	3941	5457	*	4930	100
+       55	*	4740	*	*	2696	242	9753	0	2928	
+
+G 101  3708	5507	4384	3985	6495	2651	5063	5947	3655	4117	*	3644	3626	5262	5786	3117	3652	*	*	4753	101
+       1534	*	611	*	*	*	0	9755	0	3132	
+
+I 102  *	*	*	*	*	1855	4407	3125	4242	3249	*	5338	4124	4953	5078	2802	5198	5184	5512	4653	102
+       1869	*	462	*	*	*	0	7043	0	7897	
+
+E 103  *	*	*	1616	*	2306	*	*	2932	*	*	*	2648	*	*	2467	*	*	*	*	103
+       524	*	1716	*	*	*	0	3738	0	8689	
+
+R 104  *	*	*	*	1904	*	*	*	*	*	*	*	1867	*	1975	2290	*	*	*	*	104
+       330	*	2290	*	*	*	0	2849	0	8746	
+
+Y 105  1563	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1608	*	*	1585	105
+       0	*	*	*	*	5682	28	2275	0	8783	
+
+D 106  *	*	2199	*	2092	*	*	*	*	2121	*	2345	*	*	*	*	*	3048	*	*	106
+       386	*	2092	*	*	3775	109	2995	0	8729	
+
+G 107  3158	*	*	3218	*	1106	*	*	3466	*	*	4226	*	*	3462	3620	*	*	*	*	107
+       137	*	3462	*	*	5089	43	4621	0	8569	
+
+T 108  3804	*	*	*	3420	3415	*	*	*	3372	*	2216	3255	*	3430	2889	3367	*	*	*	108
+       376	*	2125	*	*	3547	129	5095	0	8516	
+
+Y 109  *	*	4016	3324	*	2699	*	*	*	*	*	2988	3589	*	2448	3893	3345	*	*	2987	109
+       99	*	3919	*	*	2232	345	6237	0	8363	
+
+Y 110  5118	5012	3078	4159	4897	2755	*	4975	5492	4956	*	3216	4485	*	4199	3462	4204	3986	5291	4123	110
+       36	5357	*	0	*	2112	379	8015	1000	7663	
+
+V 111  4239	*	2928	*	*	3834	*	4437	5955	4640	5527	4938	4927	4713	4685	2696	4412	2673	5377	3368	111
+       0	*	*	*	*	488	1802	8770	0	6768	
+
+M 112  3646	6753	5624	2924	3791	4923	4520	4104	4855	3885	4707	6630	4211	3727	4912	5168	4122	3059	*	4914	112
+       45	5666	6461	0	*	1954	431	9817	1187	3180	
+
+D 113  4529	*	3482	3754	4610	4261	4757	4876	3291	3332	5944	3971	3644	3915	4095	5127	6492	3988	5885	5447	113
+       0	*	*	*	*	3730	113	9787	0	2795	
+
+Y 114  5502	6508	5537	5376	5296	5138	5159	3950	3166	4690	5264	5705	4524	6965	5471	3798	2502	2754	4582	3900	114
+       30	6638	6545	1000	1000	337	2263	9800	1017	2664	
+
+W 115  4294	*	6825	5012	1752	4420	5102	3537	4016	4110	6609	7082	6989	6675	4428	3970	4480	3951	4905	4567	115
+       47	*	4972	*	*	1212	815	9926	0	1398	
+
+G 116  4042	*	5295	3188	7062	1957	5821	6817	5974	5535	7085	5394	4196	3811	4125	2523	4698	5738	6781	5616	116
+       30	6499	6744	1411	680	1360	712	9883	1106	1635	
+
+Q 117  3815	*	4429	3188	*	4795	5327	5308	3069	5194	*	3560	2924	3383	3956	2924	5444	6873	*	*	117
+       44	*	5069	0	*	1843	471	9864	1034	1517	
+
+G 118  3548	*	6534	4138	5823	1467	4956	7075	4892	5733	7045	5132	4033	5027	4103	4129	3544	5252	6573	6679	118
+       43	5389	7550	2211	351	*	0	9823	1294	1784	
+
+T 119  3216	*	*	5843	5705	6861	5667	2859	6762	4110	5498	*	4630	5777	5749	4201	1523	3593	*	4716	119
+       46	5489	6779	957	1044	1804	487	9789	1198	1934	
+
+S 120  6549	6287	6198	3380	5332	5666	5502	4494	2859	3909	5680	4352	5840	3881	3005	3345	3864	4452	4808	5343	120
+       71	5430	5325	2645	251	602	1551	9766	1228	1793	
+
+V 121  5544	*	6134	*	*	6748	5623	3374	4295	1095	*	6884	6620	4971	*	4640	6263	2215	*	*	121
+       66	4491	*	3102	179	*	0	10103	1533	1588	
+
+T 122  4932	7036	5470	3643	4107	6671	4262	3924	4239	3856	5810	4384	5789	5418	3903	3940	2098	3708	*	*	122
+       16	6498	*	3006	192	2622	256	10099	1149	1726	
+
+V 123  5995	5417	6478	5121	6884	*	*	2658	6081	3632	5350	*	6574	6522	*	4127	5851	943	*	5789	123
+       146	5683	3707	1773	499	*	0	10103	1194	1588	
+
+S 124  5446	6545	5937	3632	4735	5113	4566	3506	5517	2844	6520	5171	4284	4918	3956	3310	2821	3838	*	6416	124
+       518	*	1728	2585	263	3673	118	9888	1007	2763	
+
+S 125  2957	6019	4170	3432	6312	3418	*	6239	4944	4049	5720	5670	3067	5496	3740	2807	5459	6217	4430	6076	125
+       327	2690	4394	1925	441	1166	851	8560	2436	5840	
+
+A 126  2562	6794	4111	4729	6107	4768	*	3810	3314	3536	5353	5147	4060	4669	3882	4345	4980	3107	*	*	126
+       64	5280	5831	1842	472	2209	352	9014	1210	4512	
+
+K 127  4753	*	3759	6034	*	3839	4994	3853	3235	3974	*	7343	3248	5022	3728	2884	3617	3340	*	*	127
+       94	3987	*	1835	474	2313	324	9037	1616	4062	
+
+T 128  3684	*	3283	4565	5340	5526	*	*	3894	3578	5386	4137	2819	4117	3599	4294	3554	3831	*	6523	128
+       56	5349	6176	2812	222	1117	892	9080	1139	3518	
+
+T 129  3252	*	6885	3739	3631	5236	6462	4763	5065	*	*	4244	2938	6758	4378	2819	3250	3109	*	5438	129
+       27	5775	*	2806	223	380	2112	8989	1181	2647	
+
+P 130  2761	5224	5800	3712	5813	4784	5386	6467	3060	4147	6112	4365	2432	4836	5709	3764	4038	5507	*	7185	130
+       9	7320	*	0	*	*	0	9069	1000	1293	
+
+P 131  4680	*	6781	*	6711	*	*	5702	7592	5437	6656	*	516	4618	5992	3877	5620	4878	7189	*	131
+       0	*	*	*	*	2027	406	9004	0	1436	
+
+S 132  4740	*	3908	2962	6704	7279	*	4337	3224	5341	5034	5035	4022	4196	4897	3083	2723	3743	*	6002	132
+       18	6296	*	588	1579	*	0	9013	1153	1293	
+
+V 133  5074	6958	*	4608	6038	*	6209	2117	7199	3120	4440	6696	4332	5413	5633	*	3879	1630	*	*	133
+       54	*	4763	2585	263	0	*	9013	1000	1293	
+
+Y 134  5935	6959	5418	5161	3006	5475	5716	4675	4604	5232	5907	6369	5560	4182	4593	3009	2574	3246	6282	3404	134
+       79	*	4223	*	*	*	0	8915	0	1367	
+
+P 135  6640	*	6787	3614	6003	5430	*	3039	4498	2946	4740	5236	2632	5764	4974	4427	3715	2584	*	*	135
+       36	5330	*	531	1699	1706	528	8771	1434	2182	
+
+L 136  5381	5057	5319	5102	4278	5323	5936	3768	5718	2055	4949	4935	4767	4330	*	3183	3250	4012	*	4753	136
+       60	6461	5079	1290	759	671	1427	9125	1187	1792	
+
+A 137  4722	5643	5338	5041	5087	3919	5373	*	3607	4570	*	4346	2639	3909	4010	3082	3216	4237	*	5265	137
+       89	4340	6543	1861	464	2920	204	9455	1768	1769	
+
+P 138  4308	*	3271	6046	7057	4917	5806	5783	4700	3739	5926	4326	1938	3718	4638	3430	3832	5256	6919	*	138
+       28	*	5708	*	*	*	0	9431	0	1822	
+
+G 139  4422	5822	7374	3396	5297	4211	6945	5350	4176	4205	*	7023	3247	4049	4592	2012	3662	4567	5737	6597	139
+       52	6726	5256	0	*	1453	656	9409	1195	2133	
+
+S 140  4504	5300	4363	4193	4994	4824	6324	4115	4361	3855	5728	4463	3621	4855	4231	2386	4241	4108	*	4747	140
+       55	5659	5825	2666	247	*	0	9246	1154	2110	
+
+A 141  2670	6676	4695	3327	5847	4364	5374	4883	5404	3504	*	5864	4395	4604	5062	2992	3433	3540	*	5715	141
+       16	*	6535	*	*	1688	536	9216	0	2363	
+
+A 142  4109	6479	3977	2607	6828	5528	6990	3854	5249	3323	5649	5089	4707	5597	4795	3748	4214	2399	*	7097	142
+       253	3238	4187	498	1777	620	1518	9456	2473	2075	
+
+Q 143  4790	6236	4815	4799	6777	*	5255	3275	4194	3168	5160	3357	3879	3455	5557	3593	3861	3441	6705	6029	143
+       117	3687	*	615	1527	761	1287	9451	2036	2148	
+
+T 144  4445	*	4990	2390	6807	5668	5567	4978	3697	3902	*	6833	3862	4507	4494	2652	3865	3149	*	*	144
+       133	4302	4742	2241	343	1054	948	9564	1765	1400	
+
+N 145  5725	6514	3133	3943	*	1094	6681	*	4716	5751	6534	3819	7021	4775	5005	4413	5404	5125	*	*	145
+       117	5134	4345	1824	479	2672	246	9676	1322	1731	
+
+S 146  4989	*	3267	2304	*	2907	6019	6777	3672	5786	*	3690	4954	3198	6408	2731	5921	6646	*	*	146
+       47	*	4960	5170	41	2330	320	9106	1038	2228	
+
+M 147  3280	*	3619	3135	*	7393	4098	5801	4241	*	4514	3581	3442	5028	4262	3000	3301	5177	*	6589	147
+       26	6719	6852	1585	585	1906	448	9258	1000	2409	
+
+V 148  3106	5596	*	6596	4566	3764	7035	3166	7140	3104	4686	6075	5762	5025	5519	5074	3872	1879	*	*	148
+       15	6572	*	0	*	675	1420	9304	1003	2150	
+
+T 149  5213	*	5099	3351	5505	6583	5873	3238	4098	6206	7196	3802	*	4489	3934	3198	2087	3947	*	5591	149
+       15	*	6583	*	*	1562	597	9511	0	1353	
+
+L 150  4133	*	6352	*	3881	*	*	2968	*	834	5778	6668	*	*	7108	*	*	3193	*	5088	150
+       22	6049	*	0	*	1584	586	9501	1215	1349	
+
+G 151  4221	7022	5148	3979	5822	4569	6951	4030	4242	3378	5941	3798	5589	4224	4270	3223	2358	4254	*	*	151
+       41	5602	7087	0	*	647	1468	9517	1343	1367	
+
+C 152  6659	79	*	*	*	5814	*	*	*	*	*	*	*	*	*	7439	6746	*	*	6570	152
+       37	6892	5872	2238	344	0	*	9405	1194	1233	
+
+L 153  4671	*	5341	4058	4731	4994	5135	4334	3728	2513	5314	5449	*	4469	4371	3132	3221	3560	5459	6978	153
+       0	*	*	*	*	*	0	9536	0	1143	
+
+V 154  2038	5448	*	6000	*	*	*	3420	*	4110	*	5824	6588	*	*	2749	3808	1731	*	5858	154
+       0	*	*	*	*	*	0	9536	0	1143	
+
+K 155  5086	*	4790	2968	5155	6856	4205	5405	4039	4371	6608	4469	4938	5955	3518	2469	3067	4039	5627	6572	155
+       62	5547	5612	2333	319	*	0	9536	1334	1143	
+
+G 156  4353	7091	3259	4663	*	1536	5772	6532	4831	*	*	2805	6609	4599	4511	3040	6523	6628	6674	*	156
+       14	*	6682	0	*	504	1761	9364	1201	1493	
+
+Y 157  4466	*	5123	5759	2406	2922	6759	4771	5806	4781	5807	4607	4167	6616	4328	3174	5117	3556	6566	3697	157
+       364	6573	2236	897	1110	1013	987	9438	1178	1227	
+
+F 158  3700	6409	6251	6150	3323	5051	4384	6312	3328	5950	6553	7261	3712	5701	3286	2937	6320	6029	6296	2385	158
+       73	5244	5453	0	*	125	3596	10307	1204	4113	
+
+P 159  5640	*	5744	5749	*	6818	*	*	5332	5702	*	5750	432	5527	5568	4401	5090	6537	*	*	159
+       271	4600	2946	636	1489	356	2195	10373	1640	1444	
+
+E 160  3651	*	3854	2809	6353	3567	6389	5188	3638	3983	6646	6634	3172	3908	4546	4349	3519	4258	*	*	160
+       89	4761	5444	1049	953	202	2933	10166	1446	2789	
+
+P 161  3742	*	3255	4186	6469	4685	5787	5657	4560	5035	*	3842	1873	3828	5519	3103	6699	5795	*	5289	161
+       217	6367	2974	0	*	2036	403	10260	1005	1420	
+
+V 162  2975	*	*	6713	5532	*	6215	2078	6079	3315	4841	5319	4890	5698	5557	5783	3525	2566	*	3877	162
+       327	*	2302	*	*	90	4042	10123	0	3193	
+
+T 163  6911	*	4073	3164	6279	6529	4375	*	3644	5209	*	2703	5878	3708	4519	3465	2310	5398	6302	5476	163
+       92	6517	4299	0	*	236	2726	10024	1002	3606	
+
+V 164  *	*	6487	*	3124	*	*	1959	*	2799	4380	7231	*	6810	*	6222	*	1591	5886	4396	164
+       0	*	*	*	*	266	2570	9435	0	1952	
+
+T 165  5185	*	4134	5428	5756	7101	4985	4123	4206	5815	5801	5759	7180	3821	3112	2482	2253	5304	*	4016	165
+       13	*	6804	*	*	*	0	9340	0	1038	
+
+W 166  *	7178	*	*	6762	*	6597	*	6493	4468	*	*	*	*	*	*	*	*	125	*	166
+       1442	803	4088	1237	797	1126	884	9320	6956	1201	
+
+N 167  5630	*	3997	4016	4564	4197	6679	6198	2111	4811	*	2434	6368	4308	3852	4328	4008	6820	*	5044	167
+       87	4968	5224	377	2121	3175	169	10200	1289	2056	
+
+S 168  6644	*	2625	3608	6861	2339	5506	*	3385	4778	*	3251	4463	5743	3373	3950	6117	5079	*	6471	168
+       91	4038	*	327	2303	2351	315	9163	1665	2333	
+
+G 169  6510	*	4160	4093	6601	1296	7021	5617	3688	5435	5685	3609	4383	5227	3832	4360	5485	*	6504	*	169
+       194	3709	4339	1919	443	2816	221	10168	1982	2061	
+
+S 170  4248	*	4228	2327	*	3812	*	6273	3285	4477	4701	3776	3713	5300	4626	4197	3075	4784	*	*	170
+       132	4194	4941	1332	731	*	0	10108	1639	2591	
+
+L 171  4585	*	6439	2971	*	*	*	3214	3949	2039	4745	5240	3839	5002	4099	4125	4922	3476	*	*	171
+       66	5287	5701	2039	402	3851	104	10066	1158	3082	
+
+S 172  4779	*	4555	3606	5580	*	5977	3758	5976	2439	4904	6375	3116	4661	4396	3710	3201	3738	6472	6852	172
+       90	4579	5745	2093	385	2113	379	10083	1480	3189	
+
+S 173  4773	6636	4176	3112	6317	4019	6270	4076	3853	3729	6616	4403	3525	3876	5142	3154	4516	4960	5302	4762	173
+       31	5576	*	993	1007	1148	866	10152	1227	2941	
+
+G 174  4460	*	3356	3661	*	2281	6630	4985	5693	4210	*	3284	4658	4515	4604	3413	3923	4295	*	5703	174
+       47	6630	5503	2766	229	2914	205	10141	1325	2230	
+
+V 175  4723	*	4365	4058	4613	6102	4886	3140	4048	4011	6385	4297	4623	4345	6251	3489	3236	3115	5811	4867	175
+       54	*	4774	*	*	2338	318	10109	0	2344	
+
+H 176  4924	*	3835	3526	5862	3814	5124	4163	4568	5144	4330	4665	4247	4992	4473	2805	3085	3739	*	6282	176
+       43	6487	5767	1090	916	2099	384	10105	1135	2606	
+
+T 177  5029	*	6263	3135	6972	5573	5576	6437	4149	4920	6698	2467	6569	4456	3682	3146	2136	5226	*	*	177
+       33	5471	*	0	*	1028	973	10121	1181	2505	
+
+F 178  6727	*	6332	4266	3338	4036	5047	3706	4646	2976	5744	4154	7029	5632	4829	2473	3752	5193	6770	3972	178
+       32	6463	6566	3000	193	*	0	9312	1000	1729	
+
+P 179  4729	*	4692	3589	5683	4354	*	4481	4970	4262	6803	4809	2797	4019	3829	3062	2951	4660	6248	5575	179
+       18	6297	*	940	1063	2528	275	10186	1196	1904	
+
+A 180  4251	*	4622	3627	4700	3475	4883	4474	4749	4038	5733	5670	3267	3577	5599	3507	3160	4380	*	5268	180
+       30	*	5585	*	*	*	0	9312	0	1729	
+
+V 181  4981	*	4976	3977	5809	4052	3970	3027	4643	4051	*	3860	6345	3827	4260	3965	3481	2855	*	6325	181
+       39	6476	6005	0	*	2021	408	10163	1151	2053	
+
+L 182  6565	5436	5151	3888	5737	4460	4423	6429	3291	2847	5223	3475	5378	3832	3154	3940	4073	5070	*	5084	182
+       258	*	2610	0	*	2194	356	9262	1000	2060	
+
+Q 183  4851	*	3679	2660	5470	3791	4677	4724	4074	4940	5453	3490	3803	3493	4387	4866	3696	5465	*	6485	183
+       832	1288	5113	977	1024	285	2480	8752	5330	3789	
+
+S 184  4647	5550	2170	3917	*	3048	6620	5707	4769	4906	6683	2929	3973	6408	5707	2895	5074	5554	*	6783	184
+       68	4675	7222	324	2312	1889	454	9340	1446	1857	
+
+D 185  6784	*	3102	3189	5465	1500	5598	*	5230	6516	6498	3756	*	6539	4071	3130	4979	5094	*	*	185
+       114	3929	6590	990	1010	2824	220	9366	1954	1712	
+
+L 186  6749	*	3786	5203	5946	5545	6432	7021	4072	2821	5000	4590	*	5176	2863	2931	2120	5361	*	6671	186
+       92	6692	4259	988	1012	2699	241	9284	1143	1772	
+
+Y 187  5482	5778	6208	6192	2081	5441	4495	4995	*	4111	*	*	5446	4967	5558	5547	4632	4414	5312	1602	187
+       47	6208	5757	1000	1000	1076	927	10161	1016	2480	
+
+T 188  5682	6521	4223	3932	5656	5508	*	5843	*	4947	3906	4319	5223	4667	5162	2032	1872	6876	*	5522	188
+       17	*	6387	0	*	3198	166	9147	1000	2012	
+
+L 189  4320	6214	6123	5300	5523	4462	5611	3182	4252	3089	3647	6701	*	*	4898	3408	3101	2609	*	4997	189
+       27	*	5753	*	*	2963	198	9132	0	2067	
+
+S 190  5162	*	*	6908	4140	5936	5425	4423	5637	4014	6781	4024	6612	4721	4119	2153	2001	4671	5041	5775	190
+       18	*	6362	2322	322	1609	573	9278	1034	2173	
+
+S 191  3660	6315	*	6201	6321	3720	*	4795	5650	4140	4659	4409	5682	6429	5838	1000	4097	*	*	*	191
+       9	*	7359	2000	415	2707	240	10180	1013	1914	
+
+S 192  4117	*	5111	4533	6707	*	3815	3581	6825	3491	6800	4361	*	4059	4019	3184	2460	3607	5004	5383	192
+       150	3340	*	1268	774	0	*	10183	2314	1933	
+
+V 193  4168	*	*	6916	4951	6719	7085	4065	6743	804	6782	*	6876	*	7364	*	4494	2735	*	5211	193
+       0	*	*	*	*	*	*	9386	0	0	
+
+T 194  6860	*	5489	5141	6992	5731	4921	3442	4443	3617	4608	3690	5631	4837	3888	3114	2240	4058	6967	5313	194
+       0	*	*	*	*	*	*	9386	0	0	
+
+V 195  7085	*	*	*	3309	*	*	1838	*	1821	6922	6876	*	6215	*	6788	*	2108	5795	4656	195
+       11	6983	*	0	*	*	*	9386	1000	0	
+
+P 196  4702	6758	6954	4375	*	4734	4855	4727	3587	5311	6768	3976	2819	4557	3486	2766	2846	4989	*	6139	196
+       12	*	6894	*	*	*	*	9386	0	0	
+
+S 197  3223	*	3671	3744	5127	5703	6620	4450	4479	4167	7205	3880	3495	4751	3623	2934	4278	3806	*	*	197
+       15	6568	*	2807	222	*	0	9384	1004	1000	
+
+S 198  3853	6490	4227	3857	6849	5304	5533	4303	4090	4199	*	6554	4749	5340	5105	2491	2834	2739	*	6897	198
+       99	*	3911	*	*	0	*	9384	0	1000	
+
+P 199  3844	*	4268	3140	*	4421	4490	6517	4036	3898	6642	6324	3830	3295	3707	2878	3910	4969	5729	6587	199
+       48	6050	5835	0	*	*	0	9123	1135	1995	
+
+R 200  3351	5236	4902	3365	5464	6806	5608	4151	4433	2704	6545	*	4848	3620	3328	4351	6719	4505	3628	5208	200
+       350	2552	4474	627	1504	118	3674	9107	3166	2251	
+
+P 201  4093	*	1416	2784	*	6910	4937	*	4369	*	5684	3479	4415	6475	4493	3353	6376	*	*	6547	201
+       964	1127	5088	140	3434	1329	732	10175	5976	1717	
+
+S 202  3440	*	3091	4225	*	2433	4570	5536	3841	*	6475	3493	5956	6521	*	2727	3652	5435	*	4729	202
+       61	4585	*	0	*	1187	834	9223	1470	1904	
+
+E 203  3536	*	5590	3633	*	1280	6225	6579	3148	6291	5060	4310	*	4794	6539	4450	4922	4850	*	6537	203
+       14	*	6681	*	*	*	0	9234	0	1453	
+
+T 204  6752	*	4257	3385	6178	5798	6694	4256	3709	4222	*	3657	4748	4276	4370	3309	2778	2853	5855	*	204
+       31	5577	*	0	*	886	1124	9170	1132	1609	
+
+V 205  *	6546	*	*	2697	*	5005	4080	*	3794	*	*	*	*	*	*	*	2824	6063	953	205
+       0	*	*	*	*	*	0	9149	0	1201	
+
+T 206  6967	*	5468	4668	4267	6773	5651	4254	3208	6544	4515	5882	*	4226	4125	3163	1800	4623	*	3902	206
+       0	*	*	1585	585	1126	884	9149	1007	1201	
+
+C 207  *	60	*	*	*	5717	*	6597	*	*	*	*	*	*	*	*	*	6428	*	*	207
+       17	6457	*	0	*	*	0	9162	1005	1038	
+
+N 208  4213	6909	*	3350	5417	*	5042	3402	5900	5135	5517	4040	*	3780	2612	3688	3140	3285	6673	5392	208
+       0	*	*	*	*	*	0	9121	0	1038	
+
+V 209  1770	*	*	*	5984	6548	*	3594	*	*	*	*	*	6506	6565	4762	6463	922	*	*	209
+       30	6662	6535	0	*	*	0	9114	1007	1038	
+
+A 210  4098	*	4721	3333	*	4751	4785	5680	3313	4528	*	4803	*	3406	3095	2811	2786	5576	*	6394	210
+       15	6575	*	0	*	*	0	9072	1007	1198	
+
+H 211  *	*	5656	*	6431	*	1292	*	*	*	6268	1472	*	4922	6702	4338	4793	*	*	4089	211
+       0	*	*	*	*	1661	549	9017	0	1359	
+
+P 212  5171	*	3282	2464	*	5241	4820	6479	4399	4713	6621	5004	3391	4670	4443	2576	3306	5658	7085	6423	212
+       15	6626	*	1000	1000	*	0	9040	1000	1198	
+
+A 213  2348	*	3668	4980	4795	3134	*	5641	4626	4221	5550	4245	5363	4666	4482	2587	4086	6497	*	6608	213
+       0	*	*	*	*	*	0	9053	0	1198	
+
+S 214  4621	*	*	5095	6670	1679	*	4336	5750	2691	4911	3480	4863	4219	5384	3424	6464	4929	*	6286	214
+       147	4730	4079	1084	920	1142	871	8905	1304	1198	
+
+S 215  6116	*	3867	2820	*	6037	5338	*	3527	6427	*	5981	2846	3210	*	2169	3618	4099	6388	*	215
+       0	*	*	*	*	1744	512	8454	0	1843	
+
+T 216  2422	*	6226	3081	6568	4615	5446	4579	3823	5928	6704	4558	5282	4660	*	2657	2951	4020	*	6402	216
+       0	*	*	1000	1000	450	1900	8515	1038	1555	
+
+K 217  5083	*	5046	3154	5093	3953	3677	6202	3917	6010	*	4392	2583	3697	4413	3467	3865	3989	*	*	217
+       20	6214	*	0	*	*	0	8597	1007	1038	
+
+V 218  3575	5280	*	5361	6249	4755	6458	3134	3605	2067	4652	*	*	6078	6042	5253	4403	2322	*	5244	218
+       26	*	5797	*	*	0	*	8577	0	1038	
+
+D 219  5414	*	3742	3231	*	*	5879	6168	4180	5018	*	4512	4755	3536	3823	2972	2205	3586	*	6268	219
+       0	*	*	*	*	0	*	8542	0	1000	
+
+K 220  3756	5940	*	5968	6021	5879	5160	2668	3850	3885	*	5901	*	2792	4143	6284	3257	2409	*	6016	220
+       27	5742	*	1000	1000	*	*	8510	1000	0	
+
+K 221  6246	*	5234	3284	4518	5924	4399	6159	2884	*	*	3628	4244	4501	3783	2724	2721	5046	*	5883	221
+       0	*	*	*	*	*	*	8477	0	0	
+
+I 222  5652	*	*	*	3405	*	*	1811	*	1760	4344	*	*	5755	*	4252	*	2432	*	*	222
+       0	*	*	*	*	*	*	8637	0	0	
+
+V 223  *	*	4013	5452	*	*	5304	4445	2751	3560	*	2658	5656	4571	4408	2678	4644	4310	*	3371	223
+       0	*	*	*	*	*	*	7614	0	0	
+
+P 224  *	*	3661	*	*	3261	*	*	3734	2816	*	*	1792	4458	3355	3655	*	3506	*	*	224
+       0	*	*	*	*	*	*	6369	0	0	
+
+R 225  3054	*	3237	3687	*	*	*	*	1504	*	*	*	3143	*	2813	*	3513	*	*	*	225
+       0	*	*	*	*	*	*	4418	0	0	
+
+D 226  *	*	1726	*	*	*	*	*	2746	*	*	3021	1748	*	*	2969	*	*	*	*	226
+       0	*	*	0	*	*	*	3825	0	0	
+
+//
+�HHsearch 1.5
+NAME  ced02dc66c62cb64fc91194b87a4189c
+FAM   
+FILE  ced02dc66c62cb64fc91194b87a4189c
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:27:33 2013
+LENG  101 match states, 101 columns in multiple alignment
+FILT  103 out of 1324 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  8.7 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCHHHHHHHHHHHHHHHCCCCCCCCEECHHHHHHHHHHHHHHHHCCCCCHHHHHHHHHHHCCCCCCCCCHHHHHHHHHHHHHHHHHHHHHCCCCCCCC
+C
+>ss_conf PSIPRED confidence values
+9770899999999999997043899897769999999999868760689999999999998667999818299999999999999999998770469888
+9
+>Consensus
+xxxxxxxxxxxlxxxFxxxdxxdxxxgxlxxxelxxxlxxxxxxxxxxxxxxxxxxxxxxxxdxxxdgxIxfxEFxxxlxxxxxxxxxxxxxxxxxxxxx
+x
+>ced02dc66c62cb64fc91194b87a4189c
+MACPLEKALDVMVSTFHKYSGKEGDKFKLNKSELKELLTRELPSFLGKRTDEAAFQKLMSNLDSNRDNEVDFQEYCVFLSCIAMMCNEFFEGFPDKQPRK
+K
+>gi|323456850|gb|EGB12716.1| hypothetical protein AURANDRAFT_18505 [Aureococcus anophagefferens]
+-------GIVALARNFRIAD-RDRS-GALREVEFERSVKN-----SQSGLDSSDISALFAYFDADRSGEVDYDEFLAAIRGPPNARRQA-----------
+-
+>gi|168054523|ref|XP_001779680.1| predicted protein [Physcomitrella patens subsp. patens]gi|162668878|gb|EDQ55476.1| predicted protein [Physcomitrella patens subsp. patens]
+-----VKRTksgivsqalnapctihcseAELEAAFKVFD-ANGD-GRICITELGKVLGS-----LSGCevTEQELQLIMNDVD-KNQDGFISLEQFKAAN
+KTLTshlaDNEtpkEDSIREA--------
+>gi|341876965|gb|EGT32900.1| hypothetical protein CAEBREN_17400 [Caenorhabditis brenneri]
+-----SLTSEQwkdLGDRFQTiCH-TTQE-GSLKREEIQEAFKI-----LGLDIPTYELRPLLDrAFgakeI------MDVKDVVQLYVKIRE-------
+----------
+>gi|195121290|ref|XP_002005153.1| GI20321 [Drosophila mojavensis]gi|193910221|gb|EDW09088.1| GI20321 [Drosophila mojavensis]
+----SKELINELRLIYDKHD-VNRT-GKIDIRQLYQIMFD-----VGYAPTEGEVHEFMAEADEDDSSYIGFDAFIKMLAPKlnEMFSEENLGK------
+---
+>gi|66808853|ref|XP_638149.1| EF-hand domain-containing protein [Dictyostelium discoideum AX4]gi|74996819|sp|Q54MZ4.1|MCFB_DICDI RecName: Full=Mitochondrial substrate carrier family protein Bgi|60466585|gb|EAL64637.1| EF-hand domain-containing protein [Dictyostelium discoideum AX4]
+------------------------------MSNNNNNNNN-----NNNNNNNNNN----NNNNNNNNDKNNNNNIDSSIK--------------------
+-
+>gi|145507732|ref|XP_001439821.1| hypothetical protein [Paramecium tetraurelia strain d4-2]gi|124407016|emb|CAK72424.1| unnamed protein product [Paramecium tetraurelia]
+----------RIWGLFKQFDID--NKNYITTMDVRRAFER-----RGKSLSTVKINTMFKEISLDSQDRIDFQRFQDIMLADslkSQ-------------
+----
+>gi|51889273|emb|CAH04268.1| protein kinase C activity reporter protein [synthetic construct]
+----------------lgmdelyksgamepkriregylvkkgsvfntwkpmwvvlledgiefykkksdnspkgmiplkgstltspcqdfgkrmfvfkitt
+tkqqdhffqaafleerDAWV-RDinkaikciEG-GQKfarksTRRSIRLPETI------------------dlgalylsmkdtekgIKELNLEKDKK-if
+nhcfTGN-------cvidwlvS--------------------
+>gi|297562741|ref|YP_003681715.1| signal transduction protein with EFhand domain [Nocardiopsis dassonvillei subsp. dassonvillei DSM 43111]gi|296847189|gb|ADH69209.1| putative signal transduction protein with EFhand domain [Nocardiopsis dassonvillei subsp. dassonvillei DSM 43111]
+----VHASYQMLWLELLRH-GSPAQ-ARLDRDAFVAAMHAASEDR----SR---fnmtegvAEAVFDLLDTDDGGSISEAEYVRYAEVLGA---------
+--------
+>gi|148235622|ref|NP_001079452.1| calpain 8 [Xenopus laevis]gi|27503196|gb|AAH42349.1| Capn8-a protein [Xenopus laevis]
+-LDPSNVQVESeIEDILNELEQKKME---MSAEDLRINLSRILSKkkdIKSDGFSLTTCKEMINLFDTDLTGKLNCKEFRPLWIKL--------------
+-----
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	1
+       655	1454	*	2322	322	*	*	2265	1285	0	
+
+A 2    2701	*	*	3978	*	3311	*	*	*	*	1892	2661	1975	*	*	*	*	*	*	*	2
+       0	*	*	*	*	*	*	4946	0	0	
+
+C 3    4361	4024	3900	*	*	*	*	*	*	*	*	3964	2408	*	3060	2463	1893	*	*	*	3
+       0	*	*	*	*	*	*	5759	0	0	
+
+P 4    4680	*	2205	2699	*	*	*	*	4571	*	*	*	3312	3015	2970	3264	*	3443	*	*	4
+       139	3443	*	2163	365	*	*	6437	1183	0	
+
+L 5    3886	*	4037	*	4697	*	*	3914	5207	1514	5014	3995	*	5362	4859	3391	3849	3791	*	*	5
+       45	5040	*	0	*	*	*	7722	1000	0	
+
+E 6    2972	*	3583	1723	*	5676	*	*	*	4045	3895	4448	5169	3636	3749	5475	*	5240	5592	4619	6
+       22	*	6046	0	*	*	0	8507	1067	1000	
+
+K 7    3595	*	3102	2884	5562	*	4622	*	2676	5528	*	4731	*	3021	3125	4236	4633	4143	*	*	7
+       0	*	*	*	*	*	0	8795	0	1219	
+
+A 8    2929	4586	3147	2721	5729	*	5052	5842	3283	4883	*	4326	*	3026	6070	3699	4089	5901	*	5685	8
+       0	*	*	*	*	0	*	9093	0	1219	
+
+L 9    4368	*	5961	3850	*	*	*	1951	5017	2395	3576	6097	5139	5047	4955	4771	5883	3583	*	4053	9
+       53	4785	*	2260	338	*	*	9371	1297	0	
+
+D 10   2784	*	2827	2415	5591	5604	6425	6230	3618	4669	5008	4374	5796	4831	4823	3951	3974	5100	*	6139	10
+       0	*	*	1000	1000	*	*	9658	1000	0	
+
+V 11   3406	4761	3686	2683	*	3434	*	4506	3250	*	6098	4823	5483	4406	4235	5725	3376	3752	6649	5525	11
+       12	6858	*	0	*	*	*	9782	1000	0	
+
+M 12   4706	6329	*	5913	3657	6458	*	2469	*	1536	4156	6792	*	6399	*	6560	5571	3260	4884	3841	12
+       16	*	6526	*	*	*	*	9948	0	0	
+
+V 13   4696	5892	4516	3169	5315	4890	5749	3057	3573	5286	4815	*	*	4708	2883	4873	4568	3892	3471	4669	13
+       44	6116	5988	0	*	*	0	9949	1026	1000	
+
+S 14   3638	*	3178	2687	4478	6920	6252	4841	2671	5627	6314	4306	6440	3745	3189	4150	4564	6623	*	6982	14
+       27	6695	6857	645	1472	1155	860	9958	1116	1187	
+
+T 15   2930	5846	5736	5409	4398	5256	6081	3444	4369	2594	4441	4773	*	5015	4681	4167	4217	2813	*	6576	15
+       19	6278	*	0	*	1279	766	9959	1000	1165	
+
+F 16   *	6013	*	*	594	*	5262	5136	*	3519	5118	6883	*	*	*	6571	*	4810	5048	3912	16
+       0	*	*	6644	14	0	*	9979	1000	1029	
+
+H 17   3919	7064	3194	3638	4594	6202	3735	5117	2743	4200	5689	3621	*	3668	3598	4922	4287	7112	6811	6391	17
+       10	*	7119	*	*	*	*	10063	0	0	
+
+K 18   3885	4792	6644	3875	*	6470	5711	3849	3037	3042	4253	4001	*	3489	3838	3513	5414	4094	6708	5511	18
+       0	*	*	*	*	*	0	10051	0	1000	
+
+Y 19   4378	*	5297	5634	1833	6744	4445	4142	*	2461	4895	4322	5505	*	6305	6093	4934	5720	6876	2846	19
+       15	*	6592	*	*	0	*	10057	0	1000	
+
+S 20   2870	5634	1153	4224	6275	5060	6246	*	5081	4508	6291	4549	6763	7101	5575	4192	4523	5715	*	*	20
+       1845	*	471	*	*	*	0	10048	0	1000	
+
+G 21   3575	*	1630	4383	*	2285	*	4534	4732	3583	*	*	4442	*	3338	5016	*	*	*	*	21
+       54	*	4763	0	*	98	3927	7063	1000	7528	
+
+K 22   4952	*	4636	4371	6600	4031	5692	5435	2184	3706	*	5517	3250	3648	3702	4718	4014	4300	5404	6543	22
+       65	6757	4839	0	*	255	2627	9926	1292	1728	
+
+E 23   4741	*	1583	3328	*	4623	4472	*	3776	6038	*	2384	*	5571	4780	4391	4092	*	*	*	23
+       61	4592	*	2019	409	1542	607	9988	1485	1613	
+
+G 24   5347	4919	3370	4597	6425	1882	5734	*	2873	6738	5539	3679	6047	4693	3790	3630	4859	5973	*	*	24
+       130	4965	4210	0	*	545	1667	10043	1298	1353	
+
+D 25   6512	5351	1927	3502	6594	4144	*	5076	3525	*	*	2931	5504	4375	5201	4009	2967	6466	*	*	25
+       2232	*	345	*	*	*	0	9960	0	1805	
+
+K 26   2803	*	4275	4550	*	4594	*	*	2099	3925	*	4283	4233	*	3816	3955	2459	*	*	*	26
+       304	2396	*	754	1296	126	3583	6246	1258	7878	
+
+F 27   3831	*	4890	4270	6734	869	6433	*	5627	*	5049	4431	6476	4481	4137	5318	*	4602	*	*	27
+       13	6783	*	0	*	887	1122	9978	1075	1886	
+
+K 28   4772	6405	5341	3789	4082	4519	6501	4152	2857	3928	6684	6020	5540	4330	3831	3835	3080	5718	5133	3672	28
+       15	*	6581	*	*	0	*	10041	0	1332	
+
+L 29   4688	6143	*	*	6465	*	*	1741	5430	1422	3628	*	*	6344	*	6043	*	2923	*	*	29
+       25	6882	6854	2322	322	*	0	10044	1000	1000	
+
+N 30   4859	6556	2684	5265	*	4520	*	*	4435	5885	*	2913	3989	6859	4367	2405	2304	6154	*	6884	30
+       29	6755	6589	0	*	1167	850	10025	1089	1115	
+
+K 31   3568	4666	5271	3888	3588	5105	6931	4038	3144	2822	4593	6799	4109	6577	3914	6269	4402	3967	6635	5182	31
+       0	*	*	1585	585	0	*	10067	1000	1260	
+
+S 32   4328	*	2995	2860	4552	4652	6475	6371	3241	5339	5112	4812	5756	3201	3860	2740	5759	6177	6914	*	32
+       0	*	*	*	*	*	*	10127	0	0	
+
+E 33   4235	6914	2397	1177	*	5269	*	*	4797	5178	6648	4513	*	5968	5788	3912	5763	5854	6371	6067	33
+       12	*	6887	*	*	*	*	10127	0	0	
+
+L 34   6475	*	*	*	1911	*	6924	3647	*	1374	5477	6360	6053	6176	6362	6224	6431	3604	5532	4494	34
+       12	*	6925	0	*	0	*	10108	1000	1000	
+
+K 35   4242	*	5666	3871	*	3724	5682	3811	2169	3698	6428	5523	6955	2973	3138	3842	5876	6468	*	6283	35
+       31	*	5539	0	*	0	*	10116	1000	1000	
+
+E 36   3833	*	3378	3336	*	5177	4724	4643	3156	5205	5822	3440	5762	3260	4484	3246	4390	4951	*	5203	36
+       82	5399	4981	2382	307	1341	724	10047	1251	1150	
+
+L 37   2846	5314	6206	*	4128	4692	*	2361	*	2030	3862	6335	6879	*	5776	4840	6704	3435	*	4571	37
+       102	5763	4332	1102	905	*	0	9973	1129	1486	
+
+L 38   4729	6061	*	5371	3867	*	*	2931	*	1344	3048	6256	6146	*	*	*	6349	3060	5255	5430	38
+       123	3886	6173	2541	272	2485	284	9896	1901	2783	
+
+T 39   4405	5674	6531	3067	*	*	6793	6607	2837	4047	5609	3191	6040	3324	3296	4192	2973	4687	*	6008	39
+       12	*	6898	*	*	3400	144	9965	0	2828	
+
+R 40   3258	*	4862	3535	*	4335	*	6862	2827	4970	*	4258	*	2919	3485	2732	4076	4267	6898	*	40
+       1326	5527	788	1980	422	3675	118	9996	1263	2797	
+
+E 41   4241	4261	*	1984	*	5784	*	3570	*	4169	*	3246	*	3126	*	3593	5042	4067	5112	4002	41
+       211	*	2880	*	*	5099	43	8195	0	7085	
+
+L 42   4066	*	5031	4966	2221	5074	*	4925	5222	1381	*	5024	5095	*	*	*	3345	4990	*	*	42
+       120	*	3649	*	*	4004	93	7966	0	7206	
+
+P 43   2721	5300	4299	5709	*	3302	5402	*	4945	*	*	3546	1843	5137	5114	3155	4021	*	*	*	43
+       127	5024	4231	2000	415	5098	43	8123	1076	7147	
+
+S 44   4957	4816	3202	2978	3691	3570	3995	4976	4273	5053	*	2891	*	*	4115	3235	4060	*	*	*	44
+       126	4315	4915	0	*	5060	44	8082	1183	7140	
+
+F 45   5078	*	*	*	1808	3051	*	4437	5486	2372	5065	5528	3542	4878	5394	5157	*	5101	*	4321	45
+       492	3413	2357	1755	507	466	1857	8104	1324	7089	
+
+L 46   4866	4639	*	*	4045	5127	3902	3297	4956	1959	3497	5235	*	5821	5596	3752	3884	3791	*	6541	46
+       32	5507	*	1400	687	2499	281	9636	1230	4055	
+
+G 47   *	6470	4579	4900	*	1687	4852	*	3416	6205	5517	3161	4788	3753	4443	3588	4069	*	*	5145	47
+       188	4831	3518	713	1358	3556	128	9753	1256	3582	
+
+K 48   5177	5810	3130	3096	4365	5250	5588	5074	4166	3893	*	2685	6806	3556	4698	3712	5365	4078	*	5199	48
+       102	*	3867	1585	585	1666	546	9553	1000	4178	
+
+R 49   3552	4512	5120	4681	6932	4161	5695	6200	3911	4755	*	2886	2857	3250	4153	3333	4584	5200	*	*	49
+       111	4153	5825	850	1168	1888	454	9646	1584	3824	
+
+T 50   4610	5470	4005	4370	4582	4931	5907	3595	4066	2315	4694	3977	3211	6301	*	6997	3995	4048	6235	5368	50
+       28	5696	*	1000	1000	3141	174	9801	1157	3262	
+
+D 51   3666	6449	2899	4199	6562	5033	*	6174	4418	6558	*	3777	4542	4518	4030	2330	2993	5405	6042	5324	51
+       85	5563	4793	1688	536	*	0	9835	1104	3023	
+
+E 52   4177	5957	2658	2889	*	5682	5784	3649	3184	3671	6425	3854	4242	4462	4652	5434	3860	5755	*	*	52
+       55	5169	6708	1605	575	467	1854	9688	1184	3346	
+
+A 53   3869	6372	2980	2937	6499	4371	4958	5116	3210	5060	*	3927	3911	5619	3933	3390	5578	4310	6801	6657	53
+       20	6188	*	4248	78	3040	187	9961	1017	1712	
+
+A 54   3859	*	3576	2662	4429	4114	*	3715	4006	3918	5485	5497	5553	5168	5189	4824	4347	3450	4660	4507	54
+       119	3657	*	2578	264	1402	686	9955	2129	1610	
+
+F 55   2746	4648	6740	6703	5259	6484	*	2462	*	2270	5281	5608	6932	*	5266	5347	4758	2446	5725	5531	55
+       32	*	5499	*	*	1487	636	10027	0	1324	
+
+Q 56   4351	*	3575	2712	4428	5201	4933	4290	3171	4873	5055	5535	6803	3623	2904	3397	5732	5994	*	7147	56
+       33	5460	*	1269	773	*	0	10007	1151	1922	
+
+K 57   3455	5692	3831	2978	*	5994	4572	4392	3110	3556	4686	3955	*	3593	3640	4036	5437	5523	*	6186	57
+       0	*	*	*	*	890	1120	10007	0	1922	
+
+L 58   4800	6840	6551	*	3814	*	*	2351	6407	2180	2456	5622	*	6567	*	5313	4196	3007	5162	*	58
+       45	7018	5429	3231	163	1815	482	10019	1096	1351	
+
+M 59   6940	6209	*	*	2234	5417	*	2924	7023	2136	2494	6860	*	*	*	4745	4175	4053	5113	7036	59
+       18	*	6359	*	*	1810	484	9977	0	1537	
+
+S 60   3397	6460	4305	2827	*	4436	6796	6536	2307	4999	*	3314	6576	4702	3097	4112	4552	*	5998	5619	60
+       47	*	4966	0	*	924	1080	10045	1024	1523	
+
+N 61   3701	*	3638	2630	5699	5217	7248	4437	3772	3037	5561	3522	6704	4837	5638	4354	3951	4080	7091	4858	61
+       18	*	6354	*	*	1782	496	10037	0	1615	
+
+L 62   2744	4776	5721	6009	3086	5216	*	3885	6513	2346	3899	4683	6696	4860	*	5577	5452	3115	*	4311	62
+       90	5264	4856	1378	701	926	1078	10088	1421	1574	
+
+D 63   5092	6934	1119	4752	6439	4030	5484	7034	5123	5261	*	3359	4594	5795	4749	4687	5027	4846	*	6764	63
+       43	5680	6631	1756	507	643	1475	10084	1204	1797	
+
+S 64   4733	*	7076	3781	*	4660	6904	3850	3256	4089	6202	3966	4601	4032	3589	2691	3551	3687	6726	6465	64
+       47	5679	6321	3168	170	1942	435	10074	1114	1315	
+
+N 65   5736	5359	2084	3061	*	5365	*	6349	3409	5749	*	2019	4685	5420	5520	3903	4947	*	*	5506	65
+       61	5039	6524	3027	189	414	2004	10023	1258	1501	
+
+R 66   4684	5985	5257	3477	*	2239	4314	*	2770	4673	6823	2911	5520	3744	6802	3909	4411	6750	*	6450	66
+       37	6187	6400	0	*	*	0	10067	1000	1139	
+
+D 67   5470	*	1399	3871	*	4588	*	*	4043	6664	*	2734	6440	4434	6460	4115	3371	6410	*	4960	67
+       65	5343	5679	1688	536	605	1547	10062	1397	1324	
+
+N 68   5408	*	3175	4101	*	1166	6072	6844	3618	6136	*	4008	5406	5422	4401	5424	5733	6760	7166	5166	68
+       42	5592	7015	2233	345	1502	628	10019	1266	1272	
+
+E 69   5640	6492	6349	4403	5144	4426	4733	5319	2438	3862	4172	5823	*	3404	2908	4213	3615	5785	*	3967	69
+       12	*	6884	0	*	421	1983	10022	1113	1492	
+
+V 70   *	6034	*	*	3838	*	*	1467	6383	1832	4800	6319	*	*	6408	*	*	2323	*	*	70
+       15	*	6642	2585	263	1098	908	10046	1000	1151	
+
+D 71   6450	5275	2522	3896	6163	4910	5416	*	4057	*	*	2562	6737	4800	*	2354	2565	*	*	6435	71
+       0	*	*	0	*	1062	940	10038	1000	1159	
+
+F 72   4241	5991	6919	6972	1340	6895	*	4579	5131	2453	5882	6339	6308	*	4535	4877	*	5667	6822	3170	72
+       17	6391	*	1000	1000	*	0	10064	1001	1004	
+
+Q 73   4001	*	2330	1856	6165	5061	6490	6221	4237	5836	*	4046	6476	3492	5824	4296	4260	4982	*	6590	73
+       32	6221	6895	0	*	*	0	10064	1017	1004	
+
+E 74   4415	*	2744	939	6636	4217	6415	*	5931	*	*	5654	*	3160	*	4350	6725	*	*	*	74
+       15	*	6642	*	*	*	0	10046	0	1151	
+
+Y 75   6393	*	*	*	502	*	*	4665	*	3628	6686	6207	*	*	*	*	*	6031	4539	3644	75
+       0	*	*	0	*	1605	575	10020	1000	1304	
+
+C 76   4368	5216	5595	5272	5546	4947	6875	3897	3744	2423	4499	5553	*	5389	4382	5408	3893	2238	5388	5413	76
+       15	*	6642	*	*	*	0	10046	0	1151	
+
+V 77   3226	*	4070	3543	*	*	4634	5092	3236	4061	*	3608	5835	3515	2982	3216	4068	5572	*	6590	77
+       0	*	*	0	*	1605	575	10020	1000	1304	
+
+F 78   3419	5724	*	6198	2992	5462	*	3057	*	2048	4117	5525	*	6697	6730	5604	4876	3303	5006	3677	78
+       0	*	*	*	*	*	0	10046	0	1151	
+
+L 79   6093	4274	*	6661	3412	6190	*	2222	5662	1883	3351	*	*	5534	*	6547	6412	3246	6660	4219	79
+       54	4773	*	1079	925	*	0	10050	1615	1151	
+
+S 80   3926	5865	5613	4120	4961	2989	6501	4572	3344	4017	4287	3964	6608	4076	4620	2743	4742	4602	*	6126	80
+       30	*	5622	2807	222	0	*	9979	1000	1151	
+
+C 81   4812	5429	3995	3558	5796	3902	4724	6447	2666	6688	4734	4046	*	4326	4217	2557	4199	5448	5466	5603	81
+       44	5057	*	1000	1000	*	0	9776	1106	1853	
+
+I 82   4109	*	4316	6282	3331	*	6064	3500	5559	1820	4223	6264	4218	4554	5326	4572	4915	4733	4505	5202	82
+       87	4095	*	2043	401	3134	175	9550	1533	1975	
+
+A 83   3919	*	6190	5147	*	3226	4854	5144	3689	3607	4518	3484	4186	3540	4020	4378	3545	3963	*	5102	83
+       131	3528	*	1472	645	*	0	9425	1821	1853	
+
+M 84   3918	*	4506	5150	6278	*	5832	5046	3091	2500	3599	3264	4284	4893	3653	4810	5928	3270	*	*	84
+       0	*	*	*	*	0	*	9167	0	1853	
+
+M 85   3895	*	2806	3211	3970	3250	*	*	5536	3088	5352	3910	5626	*	5067	3729	4710	3886	5250	5315	85
+       0	*	*	*	*	*	*	8314	0	0	
+
+C 86   4036	2565	3653	4926	4177	5462	*	*	5507	2810	5430	*	*	5058	3655	3404	4212	4312	*	3580	86
+       86	4974	5272	0	*	*	*	8020	1000	0	
+
+N 87   3897	*	3016	5262	4718	*	3447	*	3268	4555	4991	3933	*	3915	5131	4914	5432	5076	5156	2312	87
+       0	*	*	*	*	0	*	7661	0	1000	
+
+E 88   4925	*	3786	2325	*	3507	3980	3814	2304	3631	*	4503	*	4781	4966	*	4906	4520	*	*	88
+       64	*	4525	*	*	*	*	7440	0	0	
+
+F 89   3291	*	2117	2975	2342	*	*	*	*	3357	4674	4696	*	4200	3856	*	4505	*	*	*	89
+       64	4528	*	1585	585	0	*	6747	1065	1000	
+
+F 90   *	*	*	4216	1898	*	*	3738	*	1358	*	*	*	3458	*	4775	4769	*	*	4362	90
+       0	*	*	*	*	*	*	6567	0	0	
+
+E 91   *	4396	*	2658	*	4775	4861	3240	2986	4607	4591	*	*	3749	2858	4143	*	2840	*	*	91
+       53	*	4781	*	*	*	*	6567	0	0	
+
+G 92   4455	*	3458	2726	*	3362	3944	*	2225	3901	*	*	*	4306	*	2193	*	*	*	*	92
+       0	*	*	*	*	*	0	6336	0	1277	
+
+F 93   1846	3326	*	3128	3303	*	*	*	*	2206	*	*	*	*	3625	3202	*	*	*	*	93
+       0	*	*	*	*	0	*	4802	0	1277	
+
+P 94   2438	*	*	*	*	*	2035	*	*	*	*	*	807	*	*	*	*	*	*	*	94
+       378	*	2116	*	*	*	*	3326	0	0	
+
+D 95   *	*	1635	1671	*	*	2447	*	*	*	*	*	*	*	2468	*	*	*	*	*	95
+       0	*	*	*	*	0	*	2493	0	1285	
+
+K 96   2162	*	*	*	*	928	*	*	1994	*	*	*	*	*	*	*	*	*	*	*	96
+       0	*	*	*	*	*	*	2910	0	0	
+
+Q 97   *	*	*	*	*	1440	*	*	*	*	*	*	*	1657	*	*	*	*	1669	*	97
+       0	*	*	*	*	*	*	2525	0	0	
+
+P 98   *	*	*	*	*	*	2410	*	*	*	*	*	301	*	*	*	*	*	*	*	98
+       0	*	*	*	*	*	*	2525	0	0	
+
+R 99   *	*	2054	*	*	*	1981	*	*	*	*	*	*	*	983	*	*	*	*	*	99
+       0	*	*	*	*	*	*	1862	0	0	
+
+K 100  *	*	*	*	*	*	*	*	422	*	*	*	*	1981	*	*	*	*	*	*	100
+       0	*	*	*	*	*	*	1862	0	0	
+
+K 101  *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	101
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  cf096ff6881b75de1c34ab8525847a53
+FAM   
+FILE  cf096ff6881b75de1c34ab8525847a53
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:03:46 2013
+LENG  68 match states, 68 columns in multiple alignment
+FILT  5 out of 7 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  1.8 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCHHHHHHHHHHHHHHHHHHHHHHCCCCCCCHHHHHHHCCCCCCCCEECHHHHEEECCCCCCCCCCC
+>ss_conf PSIPRED confidence values
+91156889988888987699999871898753577888602686666334778601052101013469
+>Consensus
+xxxxxexeRqkxxeiExxksxxxRxfGxAxxddkxaxxyaxFDxxdxrvQxAEFYRFnDxxxnkxGYF
+>cf096ff6881b75de1c34ab8525847a53
+MEQLTKNQRKKRDEIEAGKSYCSRRFGGATCDDKSAQIYARFDKNDWRIQPAEFYRFHDAEVNTFGYF
+>gi|71843046|gb|AAZ49227.1| gpB [Enterobacteria phage WA11]
+--PDIEAERKKRDEIEAGKSYCSRRFGGATCDDKSAQIYARFDKNDWRVQPAEFYRFHDAEVNTFGYF
+>gi|89888610|ref|YP_512370.1| gpB [Enterobacteria phage ID2 Moscow/ID/2001]gi|71842743|gb|AAZ48950.1| gpB [Enterobacteria phage ID2 Moscow/ID/2001]
+--QHLEAERQERATIEAGKEICRRRFGGATCDDQSAKIHAQFDPSNRSVQPAEFYRFNDNEINKYGYF
+>gi|242346744|ref|YP_002985206.1| internal scaffolding protein gpB [Enterobacteria phage St-1]gi|240129555|gb|ACS44788.1| internal scaffolding protein gpB [Enterobacteria phage St-1]
+--SDSERERQKAIDLEHRRAAFARHFGCAPGSEKHVENYSSFDEKDTRVQLAEFYRFNDGHLKKWGYF
+>gi|71842809|gb|AAZ49010.1| gpB [Enterobacteria phage NC28]
+--SDSERERQKAIELEHRRSAFARHYGCAPASEKYVEKYPSFDEKDTRIQLAEFYRFNDGHLKKWGYF
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1000	0	0	
+
+E 2    *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2
+       0	*	*	*	*	*	*	1000	0	0	
+
+Q 3    *	*	*	*	*	*	*	*	*	*	*	*	2536	1249	*	1297	*	*	*	*	3
+       0	*	*	*	*	*	*	1804	0	0	
+
+L 4    *	*	788	*	*	*	2106	*	*	2408	*	*	*	*	*	*	*	*	*	*	4
+       0	*	*	*	*	*	*	1804	0	0	
+
+T 5    *	*	*	*	*	*	*	2536	*	2106	*	*	*	*	*	1297	2408	*	*	*	5
+       0	*	*	*	*	*	*	1804	0	0	
+
+K 6    *	*	*	301	*	*	*	*	2408	*	*	*	*	*	*	*	*	*	*	*	6
+       0	*	*	*	*	*	*	1804	0	0	
+
+N 7    1305	*	*	*	*	*	*	*	*	*	*	2408	*	*	1297	*	*	*	*	*	7
+       0	*	*	*	*	*	*	1804	0	0	
+
+Q 8    *	*	*	301	*	*	*	*	*	*	*	*	*	2408	*	*	*	*	*	*	8
+       0	*	*	*	*	*	*	1804	0	0	
+
+R 9    *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	9
+       0	*	*	*	*	*	*	1804	0	0	
+
+K 10   *	*	*	*	*	*	*	*	1471	*	*	*	*	646	*	*	*	*	*	*	10
+       0	*	*	*	*	*	*	1804	0	0	
+
+K 11   *	*	*	2106	*	*	*	*	382	*	*	*	*	*	*	*	*	*	*	*	11
+       0	*	*	*	*	*	*	1804	0	0	
+
+R 12   1297	*	*	*	*	*	*	*	*	*	*	*	*	*	754	*	*	*	*	*	12
+       0	*	*	*	*	*	*	1804	0	0	
+
+D 13   2106	*	1471	*	*	*	*	1297	*	*	*	*	*	*	*	*	*	*	*	*	13
+       0	*	*	*	*	*	*	1804	0	0	
+
+E 14   *	*	2298	825	*	*	*	*	*	*	*	*	*	*	*	*	2106	*	*	*	14
+       0	*	*	*	*	*	*	1804	0	0	
+
+I 15   *	*	*	*	*	*	*	754	*	1297	*	*	*	*	*	*	*	*	*	*	15
+       0	*	*	*	*	*	*	1804	0	0	
+
+E 16   *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	16
+       0	*	*	*	*	*	*	1804	0	0	
+
+A 17   754	*	*	*	*	*	1297	*	*	*	*	*	*	*	*	*	*	*	*	*	17
+       0	*	*	*	*	*	*	1804	0	0	
+
+G 18   *	*	*	*	*	754	*	*	*	*	*	*	*	*	1297	*	*	*	*	*	18
+       0	*	*	*	*	*	*	1804	0	0	
+
+K 19   *	*	*	*	*	*	*	*	754	*	*	*	*	*	1297	*	*	*	*	*	19
+       0	*	*	*	*	*	*	1804	0	0	
+
+S 20   2298	*	*	2106	*	*	*	*	*	*	*	*	*	*	*	825	*	*	*	*	20
+       0	*	*	*	*	*	*	1804	0	0	
+
+Y 21   1297	*	*	*	*	*	*	2106	*	*	*	*	*	*	*	*	*	*	*	1471	21
+       0	*	*	*	*	*	*	1804	0	0	
+
+C 22   *	754	*	*	1297	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	22
+       0	*	*	*	*	*	*	1804	0	0	
+
+S 23   1297	*	*	*	*	*	*	*	*	*	*	*	*	*	2106	1471	*	*	*	*	23
+       0	*	*	*	*	*	*	1804	0	0	
+
+R 24   *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	24
+       0	*	*	*	*	*	*	1804	0	0	
+
+R 25   *	*	*	*	*	*	1297	*	*	*	*	*	*	*	754	*	*	*	*	*	25
+       0	*	*	*	*	*	*	1804	0	0	
+
+F 26   *	*	*	*	328	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2297	26
+       0	*	*	*	*	*	*	1804	0	0	
+
+G 27   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	27
+       0	*	*	*	*	*	*	1804	0	0	
+
+G 28   *	1297	*	*	*	754	*	*	*	*	*	*	*	*	*	*	*	*	*	*	28
+       0	*	*	*	*	*	*	1804	0	0	
+
+A 29   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	29
+       0	*	*	*	*	*	*	1804	0	0	
+
+T 30   *	*	*	*	*	*	*	*	*	*	*	*	1297	*	*	*	754	*	*	*	30
+       0	*	*	*	*	*	*	1804	0	0	
+
+C 31   2297	754	*	*	*	2298	*	*	*	*	*	*	*	*	*	*	*	*	*	*	31
+       0	*	*	*	*	*	*	1804	0	0	
+
+D 32   *	*	754	*	*	*	*	*	*	*	*	*	*	*	*	1297	*	*	*	*	32
+       0	*	*	*	*	*	*	1804	0	0	
+
+D 33   *	*	754	1297	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	33
+       0	*	*	*	*	*	*	1804	0	0	
+
+K 34   *	*	*	*	*	*	*	*	382	*	*	*	*	2106	*	*	*	*	*	*	34
+       0	*	*	*	*	*	*	1804	0	0	
+
+S 35   *	*	*	*	*	*	2298	*	*	*	*	*	*	*	*	754	*	*	*	2297	35
+       0	*	*	*	*	*	*	1804	0	0	
+
+A 36   754	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1297	*	*	36
+       0	*	*	*	*	*	*	1804	0	0	
+
+Q 37   *	*	*	1297	*	*	*	*	2106	*	*	*	*	1471	*	*	*	*	*	*	37
+       0	*	*	*	*	*	*	1804	0	0	
+
+I 38   *	*	*	*	*	*	*	754	2297	*	*	2298	*	*	*	*	*	*	*	*	38
+       0	*	*	*	*	*	*	1804	0	0	
+
+Y 39   *	*	*	*	*	*	2106	*	*	*	*	*	*	*	*	*	*	*	*	382	39
+       0	*	*	*	*	*	*	1804	0	0	
+
+A 40   754	*	*	*	*	*	*	*	*	*	*	*	2297	*	*	2298	*	*	*	*	40
+       0	*	*	*	*	*	*	1804	0	0	
+
+R 41   *	*	*	*	*	*	*	*	*	*	*	*	*	2106	1471	1297	*	*	*	*	41
+       0	*	*	*	*	*	*	1804	0	0	
+
+F 42   *	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	42
+       0	*	*	*	*	*	*	1804	0	0	
+
+D 43   *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	43
+       0	*	*	*	*	*	*	1804	0	0	
+
+K 44   *	*	*	1297	*	*	*	*	1471	*	*	*	2106	*	*	*	*	*	*	*	44
+       0	*	*	*	*	*	*	1804	0	0	
+
+N 45   *	*	*	*	*	*	*	*	1297	*	*	1471	*	*	*	2106	*	*	*	*	45
+       0	*	*	*	*	*	*	1804	0	0	
+
+D 46   *	*	382	*	*	*	*	*	*	*	*	2106	*	*	*	*	*	*	*	*	46
+       0	*	*	*	*	*	*	1804	0	0	
+
+W 47   *	*	*	*	*	*	*	*	*	*	*	*	*	*	2106	*	1297	*	1471	*	47
+       0	*	*	*	*	*	*	1804	0	0	
+
+R 48   *	*	*	*	*	*	*	*	*	*	*	*	*	*	382	2106	*	*	*	*	48
+       0	*	*	*	*	*	*	1804	0	0	
+
+I 49   *	*	*	*	*	*	*	1351	*	*	*	*	*	*	*	*	*	718	*	*	49
+       0	*	*	*	*	*	*	1804	0	0	
+
+Q 50   *	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	50
+       0	*	*	*	*	*	*	1804	0	0	
+
+P 51   *	*	*	*	*	*	*	*	*	1297	*	*	754	*	*	*	*	*	*	*	51
+       0	*	*	*	*	*	*	1804	0	0	
+
+A 52   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	52
+       0	*	*	*	*	*	*	1804	0	0	
+
+E 53   *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	53
+       0	*	*	*	*	*	*	1804	0	0	
+
+F 54   *	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	54
+       0	*	*	*	*	*	*	1804	0	0	
+
+Y 55   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	55
+       0	*	*	*	*	*	*	1804	0	0	
+
+R 56   *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	56
+       0	*	*	*	*	*	*	1804	0	0	
+
+F 57   *	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	57
+       0	*	*	*	*	*	*	1804	0	0	
+
+H 58   *	*	*	*	*	*	1471	*	*	*	*	646	*	*	*	*	*	*	*	*	58
+       0	*	*	*	*	*	*	1804	0	0	
+
+D 59   *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	59
+       0	*	*	*	*	*	*	1804	0	0	
+
+A 60   1471	*	*	*	*	1297	*	*	*	*	*	2106	*	*	*	*	*	*	*	*	60
+       0	*	*	*	*	*	*	1804	0	0	
+
+E 61   *	*	*	754	*	*	1297	*	*	*	*	*	*	*	*	*	*	*	*	*	61
+       0	*	*	*	*	*	*	1804	0	0	
+
+V 62   *	*	*	*	*	*	*	2106	*	1297	*	*	*	*	*	*	*	1471	*	*	62
+       0	*	*	*	*	*	*	1804	0	0	
+
+N 63   *	*	*	*	*	*	*	*	1297	*	*	754	*	*	*	*	*	*	*	*	63
+       0	*	*	*	*	*	*	1804	0	0	
+
+T 64   *	*	*	*	*	*	*	*	646	*	*	*	*	*	*	*	1471	*	*	*	64
+       0	*	*	*	*	*	*	1804	0	0	
+
+F 65   *	*	*	*	1471	*	*	*	*	*	*	*	*	*	*	*	*	*	1297	2106	65
+       0	*	*	*	*	*	*	1804	0	0	
+
+G 66   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	66
+       0	*	*	*	*	*	*	1804	0	0	
+
+Y 67   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	67
+       0	*	*	*	*	*	*	1804	0	0	
+
+F 68   *	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	68
+       0	*	*	0	*	*	*	1804	0	0	
+
+//
+�HHsearch 1.5
+NAME  cfe750d45ad9ea874e03be9e47fe8331
+FAM   
+FILE  cfe750d45ad9ea874e03be9e47fe8331
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:42:40 2013
+LENG  71 match states, 71 columns in multiple alignment
+FILT  140 out of 808 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  7.1 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCEEECCCCCCCCHHHHHHHHHHHCCCCCCCCHHHCEECCCCCCCHHHHHHHHHHHHCCCCCCCCCCC
+>ss_conf PSIPRED confidence values
+99871442479982989999999999658975566554122478965799999999999657663657789
+>Consensus
+mxxxixGDxNxDGxvxxxDxxxxxxxlxgxxxxxxxxxaDvnxdgxixxxDxxxlxxxxlgxxxxxpxxxx
+>cfe750d45ad9ea874e03be9e47fe8331
+MSTKLYGDVNDDGKVNSTDAVALKRYVLRSGISINTDNADLNEDGRVNSTDLGILKRYILKEIDTLPYKNG
+>gi|317055743|ref|YP_004104210.1| cellulose 1,4-beta-cellobiosidase [Ruminococcus albus 7]gi|315448012|gb|ADU21576.1| Cellulose 1,4-beta-cellobiosidase [Ruminococcus albus 7]
+--GKDIGKENNGGDAEPAEKSTYDEEKADKNKAENKtkksasdddentdantkenikagSDSKILFIGLIAGAVIILVVATEIFIYKMtkLKMQnqnke-
+-
+>gi|317055204|ref|YP_004103671.1| mannan endo-1,4-beta-mannosidase [Ruminococcus albus 7]gi|315447473|gb|ADU21037.1| Mannan endo-1,4-beta-mannosidase [Ruminococcus albus 7]
+-PQEITYPTNIKANYSQQyhQVQFVWDKVKGAdKYGIAVylaGKWRVQTSN-ITTNSYVTPKNLTPGMTYKVAIA--
+>gi|317055945|ref|YP_004104412.1| fibronectin type III domain-containing protein [Ruminococcus albus 7]gi|315448214|gb|ADU21778.1| Fibronectin type III domain protein [Ruminococcus albus 7]
+--QFVWDKLYGADKYGIAVY-LAGKWRVQ-TTNITTNSyvtpKNLTPGmsyrvAIAARVNGVWSTTEAINNAVTVTVR--
+>gi|317055737|ref|YP_004104204.1| spore coat protein CotH [Ruminococcus albus 7]gi|315448006|gb|ADU21570.1| Spore coat protein CotH [Ruminococcus albus 7]
+-PTNIKVNYNTQyhqiqfvwDKVQGADKYGIAVYLAGKW-RVQ--TSSITTNSFVTPKNLTPGMSYKVAV---------
+>gi|160893736|ref|ZP_02074520.1| hypothetical protein CLOL250_01290 [Clostridium sp. L2-50]gi|156864721|gb|EDO58152.1| hypothetical protein CLOL250_01290 [Clostridium sp. L2-50]
+---IIFGDVTGDGVINALDLLKIQKHIIGASSlkGAFLQAANIKRSGGLSALDLLKVQKFLMGAA--------
+>gi|299136675|ref|ZP_07029858.1| glycoside hydrolase family 2 sugar binding [Acidobacterium sp. MP5ACTX8]gi|298601190|gb|EFI57345.1| glycoside hydrolase family 2 sugar binding [Acidobacterium sp. MP5ACTX8]
+-------------------------MWFATTASDSEstgePMSNTSSRR-----EFLAAAAVAAAGLPAILC---
+>gi|119960824|ref|YP_949129.1| FG-GAP repeat-containing protein [Arthrobacter aurescens TC1]gi|119947683|gb|ABM06594.1| FG-GAP repeat domain protein [Arthrobacter aurescens TC1]
+----------------------MKRSKHGSGrptaalhqrrcsLAYPskcsYRSTRSRAWKAVPLAASASLAAAAIALTG-VP----
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	3297	0	0	
+
+S 2    *	*	4615	*	*	5342	*	*	5031	*	*	2108	1073	*	*	2980	4740	4946	*	*	2
+       0	*	*	0	*	*	*	5583	1000	0	
+
+T 3    5077	*	5036	3130	*	2858	*	*	4542	*	*	3761	3386	3224	*	4644	1900	4553	*	5811	3
+       24	5927	*	1000	1000	*	*	7011	1017	0	
+
+K 4    3587	*	5880	3870	3782	3715	*	3037	4444	4982	6653	5260	3958	6454	4701	4185	4541	2679	*	3664	4
+       17	6428	*	1802	488	*	*	7320	1016	0	
+
+L 5    4660	*	5039	*	6820	5728	7263	1687	4395	2588	4919	5159	6742	6986	6845	7101	4181	2275	*	6009	5
+       0	*	*	*	*	0	*	7322	0	1000	
+
+Y 6    3711	5617	*	6829	6161	*	*	3185	2776	2810	6045	7152	4429	*	3338	6016	3800	7402	4349	2538	6
+       0	*	*	*	*	*	*	7351	0	0	
+
+G 7    4838	*	5193	*	*	242	*	*	*	*	*	5627	5460	*	*	*	*	5494	*	5227	7
+       0	*	*	1000	1000	*	*	7362	1005	0	
+
+D 8    *	*	321	5610	*	*	*	5534	4049	*	*	3831	5212	*	*	*	*	*	*	*	8
+       30	*	5610	*	*	*	*	7377	0	0	
+
+V 9    2969	6605	*	5597	6060	*	*	2682	*	2228	*	7045	*	*	*	4327	4303	1729	5430	5372	9
+       0	*	*	*	*	*	0	7292	0	1155	
+
+N 10   *	*	2686	*	*	*	*	*	*	7124	*	445	*	*	*	*	4021	6329	*	5114	10
+       0	*	*	*	*	*	0	7290	0	1155	
+
+D 11   3303	3761	4014	4481	4812	1428	*	5067	6193	4793	6676	3709	*	6106	4543	4533	5030	*	*	6170	11
+       0	*	*	*	*	*	0	7290	0	1155	
+
+D 12   4690	*	563	6119	*	3733	*	*	5153	*	*	3655	*	5381	*	4496	7388	*	*	6289	12
+       35	5381	*	3000	193	*	0	7304	1117	1155	
+
+G 13   4826	*	3883	5858	*	524	*	*	5512	*	*	4406	*	5585	5429	4774	4851	*	*	*	13
+       9	*	7361	*	*	*	0	7304	0	1155	
+
+K 14   4765	6728	4892	3483	6328	7212	6665	4188	1926	5256	5759	4009	*	4779	3962	3596	4306	2882	*	7097	14
+       0	*	*	*	*	2114	379	7306	0	1223	
+
+V 15   4439	*	*	*	4176	5471	*	2030	*	3965	*	*	*	*	7000	*	4709	1213	*	3478	15
+       0	*	*	*	*	0	*	7304	0	1155	
+
+N 16   5607	*	1783	4109	*	4427	*	*	5849	6902	*	1790	*	4568	6874	3412	3002	*	*	*	16
+       0	*	*	*	*	*	*	7390	0	0	
+
+S 17   3350	*	6412	6259	6213	3554	*	2914	*	4032	3980	*	4729	4805	6260	2397	5217	2402	6796	5651	17
+       0	*	*	*	*	*	*	7390	0	0	
+
+T 18   1992	*	6940	6203	5138	4318	5651	3820	4510	2862	4782	4080	*	4612	4968	3639	3899	4525	*	5868	18
+       38	5255	*	1000	1000	*	*	7390	1144	0	
+
+D 19   *	*	293	4196	*	*	*	*	*	6342	*	*	*	4145	*	*	4879	5232	*	*	19
+       0	*	*	*	*	*	*	7390	0	0	
+
+A 20   2564	6911	*	7335	3741	*	*	3217	3972	1977	6350	*	*	7102	6206	5859	5232	2653	*	3637	20
+       48	7301	5232	2000	415	*	*	7390	1000	0	
+
+V 21   2447	7506	5917	4751	7137	5708	*	3699	7497	4599	4855	7361	6506	4233	5153	4229	2794	2024	*	5008	21
+       0	*	*	*	*	0	*	7230	0	1149	
+
+A 22   3662	6940	7633	5844	4216	4846	6781	3589	5466	1746	3938	7057	*	5229	4894	*	3738	4261	6393	3097	22
+       18	6320	*	1585	585	*	*	7390	1055	0	
+
+L 23   3442	5817	*	*	4889	6786	*	2407	5646	1764	2894	*	*	*	*	6812	4736	3274	*	4056	23
+       62	4577	*	2249	341	*	*	7454	1348	0	
+
+K 24   2960	6781	4852	5089	7207	4257	6523	6291	2597	4448	4484	3989	*	2770	2795	4886	5894	7279	5181	5534	24
+       0	*	*	*	*	0	*	7368	0	1155	
+
+R 25   4346	7193	3402	4122	*	5993	*	*	1900	5780	5115	3397	*	2955	2892	4280	6852	4860	*	6939	25
+       24	7003	6801	1000	1000	*	*	7454	1000	0	
+
+Y 26   4519	*	6906	5104	5512	4670	3231	4433	4724	5801	5116	4889	*	6396	6530	4639	7194	4958	3804	1275	26
+       32	*	5496	*	*	0	*	7522	0	1007	
+
+V 27   5473	6992	5749	*	4943	5284	*	2202	4816	1453	4638	7112	*	*	4857	4705	*	2994	6357	5902	27
+       40	7286	5599	1000	1000	*	0	7408	1000	1125	
+
+L 28   2673	5246	*	7129	5712	6831	4522	3348	4035	1805	5038	4078	5592	6290	6335	4243	5194	3843	*	7044	28
+       25	6597	7207	666	1436	2610	258	7407	1021	1315	
+
+R 29   3804	*	3686	4669	*	1194	*	7262	3709	*	7443	3161	*	4307	4981	4158	6113	6091	*	7234	29
+       110	*	3769	*	*	*	0	7413	0	1325	
+
+S 30   3770	*	4864	5141	6872	3387	*	3627	2013	3667	6035	3997	3605	6828	5464	4108	4718	4787	6107	6134	30
+       157	3527	5913	658	1449	1051	950	7165	1612	1954	
+
+G 31   4137	6176	4334	3910	5657	3206	*	3643	2972	4378	5738	4298	4171	5734	4573	3705	3225	4849	5310	*	31
+       351	2599	4291	1561	597	2238	344	7340	2337	1615	
+
+I 32   4044	*	3439	3604	6046	4900	7099	3993	3052	5451	7096	4151	3776	4605	6307	3412	3023	5396	*	3800	32
+       339	2468	5113	905	1101	1147	867	7190	2385	1976	
+
+S 33   3154	*	3305	3420	6284	3110	6907	5358	4725	4325	*	3229	3247	7034	4380	3637	3583	6321	*	*	33
+       136	4441	4505	1578	588	1963	428	7272	1422	1848	
+
+I 34   3602	*	5202	3107	2921	*	*	2007	4670	2892	5471	*	6740	6983	7000	5306	5975	3498	*	4557	34
+       74	4554	7070	1461	651	2172	362	7249	1267	1992	
+
+N 35   3538	6987	3281	5161	6112	5439	*	5522	4511	5025	7134	2770	3529	3264	6091	3449	2634	6849	7038	6233	35
+       680	1693	3912	2240	343	635	1489	7262	3479	1823	
+
+T 36   3653	6946	5339	3973	4373	7141	*	4449	3458	2722	4935	5648	5167	6236	4690	5711	2837	3991	3604	4520	36
+       183	3073	*	3407	143	933	1070	7275	1885	1774	
+
+D 37   3927	*	4099	3251	6132	4439	6225	4062	2219	3925	4984	5043	4275	4375	4960	4819	5213	4419	6824	4484	37
+       38	5545	7710	1923	442	1142	871	7338	1147	1340	
+
+N 38   1550	4882	4932	6561	5917	6845	*	4637	4459	4991	5814	2957	7114	5143	5201	2971	4325	5209	*	5306	38
+       58	4670	*	2930	203	2391	305	7447	1484	1208	
+
+A 39   807	5504	*	*	5677	2938	*	*	4308	7127	5065	*	*	*	6341	3377	5740	7273	4841	*	39
+       9	7345	*	1000	1000	2648	251	7450	1000	1198	
+
+D 40   *	*	341	*	*	*	*	*	5689	*	*	3763	*	*	4093	5377	6315	*	5480	*	40
+       0	*	*	*	*	*	0	7446	0	1155	
+
+L 41   3766	4470	*	*	4841	6964	*	2427	*	2544	4442	*	*	6315	*	6316	5863	1455	5156	*	41
+       0	*	*	*	*	*	0	7446	0	1155	
+
+N 42   *	5308	2522	5156	7217	*	7090	5389	4436	5248	*	1037	*	5204	5329	6366	3833	5393	*	5911	42
+       18	6344	*	1000	1000	0	*	7446	1042	1155	
+
+E 43   3612	6423	4188	4376	5723	2034	7446	5675	3520	5857	4972	4398	4981	3452	4431	4682	4063	7037	7312	4342	43
+       8	*	7513	*	*	*	*	7531	0	0	
+
+D 44   *	*	786	7140	*	4873	6863	4964	*	*	*	2629	5631	*	5703	3435	*	4942	6342	*	44
+       77	4667	6343	1938	436	0	*	7531	1318	1000	
+
+G 45   3482	*	5077	6447	*	703	*	*	5018	6563	*	3366	6359	*	5312	4274	5170	*	*	*	45
+       78	6129	4710	0	*	*	0	7499	1075	1070	
+
+R 46   3617	*	4688	3981	4071	4155	*	4154	2620	4480	6834	6281	5373	4934	4120	3253	3822	3076	*	7167	46
+       75	5114	5538	0	*	1306	748	7270	1237	1454	
+
+V 47   4221	7028	*	*	4624	*	*	1190	*	3688	*	*	5441	*	6318	6559	5542	1668	*	*	47
+       18	6315	*	2807	222	*	0	7344	1042	1465	
+
+N 48   3810	*	1461	6560	*	*	*	*	*	7215	*	1847	5292	6766	6901	4853	2377	*	*	*	48
+       18	*	6318	*	*	*	0	7344	0	1465	
+
+S 49   2917	*	6296	5896	*	3620	*	2728	5762	5141	4054	4387	4732	7078	4538	3162	3657	2619	6770	*	49
+       0	*	*	1585	585	872	1141	7310	1155	1613	
+
+T 50   2466	*	4686	4446	3481	4296	*	3293	3439	3513	5312	4168	*	6071	5143	4413	3978	4442	*	4986	50
+       0	*	*	*	*	856	1160	7430	0	1244	
+
+D 51   4888	*	342	5754	*	*	*	*	6855	6359	*	4310	*	*	*	5258	5674	4575	*	*	51
+       0	*	*	*	*	*	0	7499	0	1070	
+
+L 52   3314	6428	*	5846	3124	5204	*	3368	6822	1788	6021	5483	*	*	5488	3926	*	2894	*	3779	52
+       0	*	*	*	*	*	0	7499	0	1070	
+
+G 53   2644	7240	5608	5803	*	4615	*	2886	5101	3983	5746	6338	5674	6520	6194	4065	2614	2288	*	5411	53
+       0	*	*	*	*	*	0	7499	0	1070	
+
+I 54   3170	*	7216	4182	5300	7396	6576	3388	3738	2104	4969	*	5424	4296	5723	4687	3831	4900	4862	3640	54
+       0	*	*	*	*	*	0	7499	0	1070	
+
+L 55   6370	*	*	*	5996	5424	7251	1796	*	1398	3425	*	4366	6844	*	5204	7410	3450	*	*	55
+       39	5224	*	1357	714	*	0	7499	1219	1070	
+
+K 56   3152	6948	7356	5278	7223	7283	6775	4309	2436	4913	4379	5856	*	2629	2712	4394	3971	4693	5483	7674	56
+       0	*	*	*	*	*	0	7499	0	1070	
+
+R 57   3385	*	3763	6209	7115	5407	*	*	1838	5369	7496	3584	*	3288	2541	3920	4234	*	*	*	57
+       0	*	*	*	*	*	0	7496	0	1070	
+
+Y 58   4643	*	5960	4603	2987	6354	5549	3639	4893	2906	4558	6401	*	5843	5672	5679	5014	5364	*	1601	58
+       0	*	*	*	*	*	0	7498	0	1070	
+
+I 59   3469	6287	7382	4597	5942	*	*	1993	4337	1890	6118	7071	*	7012	*	7488	4903	2787	*	4342	59
+       0	*	*	*	*	*	0	7503	0	1070	
+
+L 60   3436	7040	4916	*	6658	7135	7185	2800	5057	1353	4413	7069	5207	7046	6833	5105	5541	3148	7145	6678	60
+       7	*	7646	*	*	*	0	7494	0	1070	
+
+K 61   3900	6647	5425	5356	4525	1112	4326	*	3315	*	*	3451	*	7262	4306	5518	6278	4807	*	*	61
+       30	7455	6097	0	*	0	*	7493	1000	1121	
+
+E 62   4378	6897	6189	4257	6042	5060	*	3082	3405	3149	3717	4277	5325	5222	3622	4298	4737	2824	7019	6773	62
+       23	5971	*	1070	933	0	*	7552	1044	1056	
+
+I 63   3057	5558	4951	4486	*	6657	*	1675	5557	4051	5323	*	*	6702	5016	6467	2885	3757	*	3460	63
+       15	*	6621	*	*	*	0	7372	0	1000	
+
+D 64   3812	*	3321	3580	*	4682	6451	5594	2427	6354	*	4893	4040	5524	4942	3036	3400	4050	*	4316	64
+       113	4611	4863	1000	1000	1076	928	7321	1149	1049	
+
+T 65   4230	*	3256	2972	6238	*	4662	6078	2432	4607	4927	*	*	6246	4999	2321	2908	6634	*	*	65
+       165	3206	*	1000	1000	0	*	7104	1461	1275	
+
+L 66   6049	*	*	5230	1443	*	*	4138	*	1378	*	*	*	*	*	*	6325	2987	*	6621	66
+       23	5958	*	2322	322	*	*	7174	1009	0	
+
+P 67   3868	*	5741	5976	*	4581	*	*	3966	5368	*	5138	794	*	*	4581	3329	5606	*	*	67
+       0	*	*	*	*	*	*	7164	0	0	
+
+Y 68   3499	5004	4916	4271	*	3761	*	3366	2745	5814	4661	5620	4892	*	*	4918	5792	1895	*	4497	68
+       55	4744	*	1354	716	*	*	6944	1040	0	
+
+K 69   3676	*	*	2946	*	3413	*	*	2230	*	*	3963	*	2382	3508	3573	4130	*	*	*	69
+       375	2128	*	2322	322	*	*	6560	1103	0	
+
+N 70   *	*	*	*	*	1661	*	*	*	*	*	885	*	*	*	*	2812	*	*	*	70
+       0	*	*	*	*	*	*	2919	0	0	
+
+G 71   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	71
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  d3011fec8513a3e2267bf4e15e08704b
+FAM   
+FILE  d3011fec8513a3e2267bf4e15e08704b
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:05:26 2013
+LENG  166 match states, 166 columns in multiple alignment
+FILT  117 out of 1051 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.4 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCCCCHHHHCEEEEEEEEECCCCCHHCCCCCEEEEEEEEEECCCEEEEEEEEEECCEEEEEEEEEEECCCCCEEEEEEECCEEEEEEECC
+CCCEEEEEEEECCCCCEEEEEEEEECCCCCCHHHHHHHHHHHHHCCCCHHHEEECCCCCCCCCCCC
+>ss_conf PSIPRED confidence values
+9888888875788896893758899999528962000387047899999977996999999710982999999999758895899985084899999869
+998999999645899567899999789999999999999999984999899699887785877899
+>Consensus
+cxxxxxxxxxxxxfdxxkxxGxWyxiaxaxxxxxxxxxxxxxxxxxxxxxxxxxxlxvxxxxxxxxxcxxxxxxxxxxxxxgxxxxxxxgxxxxxvlxtD
+YxxyaixxxxxxxxxxxxxxxxlxsRxxxxxxxxxxxfxxxxxxxglxxxxixxxxxxxxCxxxxx
+>d3011fec8513a3e2267bf4e15e08704b
+CVHAEEASSTGRNFNVEKINGEWHTIILASDKREKIEDNGNFRLFLEQIHVLENSLVLKFHTVRDEECSELSMVADKTEKAGEYSVTYDGFNTFTIPKTD
+YDNFLMAHLINEKDGETFQLMGLYGREPDLSSDIKERFAQLCEEHGILRENIIDLSNANRCLQARE
+>gi|55958592|emb|CAI17198.1| progestagen-associated endometrial protein [Homo sapiens]
+----MDIPQTKQ----------------------DLElPKAPLRVHITSLLPTPEdNLEIVLHRWENNSCVEKKVLGEKTENPKKFKINCKASGAPQL--
+------SWKPQGPRTDPASS-T----ARVLVEDDEIMQGFIRAFRPLPRHLWYLLDLKQMEE------
+>gi|291241284|ref|XP_002740541.1| PREDICTED: apolipoprotein D-like [Saccoglossus kowalevskii]
+------TVVVQPDFNVDKYTGSWYEIE-----RFPASFESGLKCNNATYWLKQDgTIGVINSgIdIVTGERTSVEGNAWVPdpNVPAKLKVKFRWwvpAG
+DYWVLRTDYNTYSVVYSCDdFMFgFIKMEFAWILSRDRILNTGTLTDIKRDIQDRGIDISNFLS-TDQIGCDA---
+>gi|254468024|ref|ZP_05081430.1| lipocalin family protein [beta proteobacterium KB13]gi|207086834|gb|EDZ64117.1| lipocalin family protein [beta proteobacterium KB13]
+SGCAtngLPKIEPVEKISLDNFMGDWYVLAHIPA---LIEKN-AFNA-VESYSFNSaDqVIETTFTfNKGAldGPEKIYKPKGFVIPgtNNAVWGMQfiw
+piKAQYVIAYI-DEGY-ENTIVARDK----RD--YLWFMSRTTDLPTEKKQWIYKKTSELGYDGDMLRFVPHN--------
+>gi|285019342|ref|YP_003377053.1| lipocalin precursor [Xanthomonas albilineans GPE PC73]gi|283474560|emb|CBA17061.1| putative lipocalin precursor protein [Xanthomonas albilineans]
+PASTvrakspgPEQEAARPPIDLQRFMGRWYVIA-HIPY--FA-ERGHVAS-SDEYTLKDnGKI--avRY-Q-YRKGf-DEPLKEITSRATvnEGTGN-r
+RwttwffavLPTK-yRILEVAPDY-SWALIDYP------GRDLAWVFARSPDMSHKQYRELVDKMDhKYGIN----tdklLR------------
+>gi|47226724|emb|CAG07883.1| unnamed protein product [Tetraodon nigroviridis]
+----DDMVKPYIPLDPKAVFGKWVYVMGAGDPDPYHRALGSIKSSWVELSPTSdVqTVTLRWGDYLFNQCALGEVNATLSG----TTVTFQKNlseHRGH
+LLQTRANS--LLWTDSFrNVDVTGRFVMQFTRTGTTDPELVRLFKEQIACLHFPEN-FHsYDGTTELCPEASP
+>gi|260893984|emb|CAP10680.1| lipocalin homologue [Deinagkistrodon acutus]
+CVVQANEKKPFQNFDCSKMARNWILRVIVTNCSHFENMIRGIKACPVSFVKKSqENMEMIMDMFTPQGCQIIKVNLTW--VNGAIVATcGDGvEKTVEDV
+RINKNT--M-YTSaRVRGKEQCKVATLAAKDIADIQPDLEDFTRFVNGVGLEGKKIYVLPTEDICPRS--
+>gi|270046182|dbj|BAI50821.1| unnamed protein product [Triatoma dimidiata]
+------NPEPLDGFSASNfFSGTWYVSHVK---------SVTSPTVCQTFTTSqEDnKLITEYVFGKGGkdiivRCEA-----EK-KKNILLTFSckNSQ
+CrtflTVFTVMDTNYDNYAEFYKCVIfTSGSKA-DIYLVIKRESGNEQIPEK----AKSLNLQK-----------------
+>gi|270046234|dbj|BAI50847.1| unnamed protein product [Triatoma dimidiata]
+------GYKPMENFDSTRyLQITtpLYSTQA-KPKSN----YTVCREFRSIKKsgdkvdtNIHGYYKDrgkiFNYE---LLCSTTWE---S-FNKGQYLS
+VcevlKDTdvegplissfEQHMSVIHTDYDSYAILYiCISDESGIEENVVVLE-KDPGASNE---AVTTALRNNDMDLTEFF-PWNYAYCQN---
+>gi|156602033|gb|ABU86907.1| Apom [Ornithorhynchus anatinus]
+----------------RTYLGYWHFIAGSAPTPDPLATFDPVDNILFHLVPGsTPlELYLRASIrMKNGLCVPREWTYLLAK--GTTNLRIEGRpnMKTE
+LFSAPCAESIIL-K---ETGQDYERFLMYSRSPAPPARCVNDFQALVSCWNF-T-LLQTPRQQDACMLT--
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+C 1    4740	278	*	*	*	4528	*	*	*	*	*	4260	4564	*	*	*	*	*	*	*	1
+       115	*	3709	*	*	*	*	6458	0	0	
+
+V 2    1719	*	4373	*	*	2182	*	*	*	*	*	*	*	3266	*	3422	3111	3126	*	*	2
+       0	*	*	*	*	1268	774	6437	0	1201	
+
+H 3    2990	*	4292	*	*	3992	3038	3627	*	3768	*	*	*	3675	*	2940	2989	2740	*	*	3
+       0	*	*	*	*	*	0	6640	0	1044	
+
+A 4    3463	*	3891	4537	*	*	3588	5099	*	*	4633	*	4853	1223	4740	3739	4656	5007	*	*	4
+       745	1310	*	1508	625	*	0	6788	2860	1044	
+
+E 5    3395	*	4993	2475	*	4769	4398	3582	4679	3509	5348	5230	2617	*	3672	4382	*	4094	*	*	5
+       43	*	5087	*	*	*	0	7824	0	1044	
+
+E 6    3453	*	2849	1536	*	5331	4987	5271	*	*	*	2610	6144	4588	5100	4428	4387	*	*	*	6
+       123	4260	5070	418	1991	0	*	7757	1473	1264	
+
+A 7    3000	*	2624	2842	*	3331	5542	5188	5951	3459	*	2746	6060	5753	*	4432	4148	6165	5746	*	7
+       19	6263	*	2025	407	*	0	9074	1188	1057	
+
+S 8    4694	5619	5074	5324	5413	5908	*	2662	5672	3588	*	*	3072	5231	6335	4311	6374	1768	*	3804	8
+       22	*	6065	*	*	0	*	9215	0	1057	
+
+S 9    4145	*	6073	4959	*	5337	4760	6176	3115	5260	*	*	2570	2310	4293	3376	3074	4534	*	*	9
+       15	*	6561	*	*	*	0	9409	0	1000	
+
+T 10   2535	*	6473	4289	*	4917	6180	4240	4853	5050	6104	6406	2128	5331	6374	4139	3190	2816	*	*	10
+       0	*	*	*	*	991	1009	9439	0	1181	
+
+G 11   3005	6741	4811	5538	5341	3838	*	5116	3939	3909	2335	6717	6445	2560	*	5253	6257	3120	*	6547	11
+       45	*	5030	*	*	*	0	9475	0	1000	
+
+R 12   3301	*	3609	3133	*	4261	6192	*	4015	5004	*	4996	2469	2981	3328	5050	4761	4703	*	*	12
+       14	6743	*	0	*	*	0	9450	1019	1510	
+
+N 13   4752	*	2326	4249	*	3903	*	5559	5871	5136	*	1683	3425	5592	4075	5670	4240	6662	*	6615	13
+       30	6434	6776	3170	170	2181	359	9543	1014	1697	
+
+F 14   *	6622	5178	*	822	*	*	4195	6286	2356	*	*	6671	6346	*	*	*	3340	6293	*	14
+       19	6293	*	2322	322	2281	332	9566	1047	1681	
+
+N 15   6078	6888	1089	3693	*	*	*	*	5779	*	*	2247	*	4463	6302	3661	4938	5460	*	6926	15
+       12	*	6907	1000	1000	0	*	9585	1000	1510	
+
+V 16   3508	6302	5794	5953	5016	6833	5260	3965	5054	1666	4244	6458	3109	5129	5987	4547	5041	3771	5676	*	16
+       0	*	*	2585	263	*	0	9651	1000	1000	
+
+E 17   5086	*	2736	2412	*	4719	5544	*	3888	*	6751	3913	4627	3221	5630	2995	2871	*	*	*	17
+       15	6574	*	0	*	0	*	9695	1005	1000	
+
+K 18   4897	*	5080	3916	6964	*	5688	*	1755	5205	*	5900	4878	2717	1991	4147	*	6805	*	*	18
+       166	3202	*	0	*	*	*	9704	2882	0	
+
+I 19   *	*	*	*	1744	*	6608	3425	*	2737	4353	*	*	*	*	5618	5846	3700	5754	1911	19
+       12	6918	*	1000	1000	*	*	9704	1000	0	
+
+N 20   2993	*	5778	4575	6775	4137	5824	5760	4473	2605	3398	5903	*	3934	6789	2675	3651	4554	6653	5161	20
+       11	*	6995	*	*	*	*	9704	0	0	
+
+G 21   *	*	*	*	*	52	*	6140	*	*	*	*	*	*	5578	*	*	*	*	*	21
+       0	*	*	*	*	*	0	9662	0	1019	
+
+E 22   6645	*	5724	4235	5191	*	6780	4425	1905	4780	5661	4086	4849	6865	2970	5211	2223	6389	*	5115	22
+       35	5387	*	793	1241	0	*	9662	1462	1019	
+
+W 23   *	*	*	*	*	6648	*	*	*	6146	*	*	*	*	*	*	*	*	51	6589	23
+       0	*	*	*	*	*	*	9678	0	0	
+
+H 24   6588	*	*	*	3345	*	3605	5503	5375	4501	*	*	*	6908	4485	5224	6648	4929	4922	828	24
+       0	*	*	*	*	*	*	9678	0	0	
+
+T 25   4532	*	6845	1728	5149	5630	*	4728	*	3292	*	7673	5406	5506	5677	3912	2915	2487	*	6541	25
+       0	*	*	*	*	*	*	9678	0	0	
+
+I 26   4518	*	*	*	6598	5625	5032	1617	5531	2774	5281	6885	*	5488	5478	5881	3781	2208	*	5946	26
+       26	5802	*	1945	434	*	*	9669	1171	0	
+
+I 27   1252	*	*	4303	*	3032	3536	7057	5763	6661	*	*	*	3767	5790	4122	6811	4037	*	3912	27
+       418	5516	2121	2080	389	*	*	9669	1242	0	
+
+L 28   3670	*	*	*	6601	4153	6288	2955	4814	2433	2890	*	*	*	3613	3858	4461	2756	*	6213	28
+       113	6323	3988	0	*	512	1742	9373	1005	4785	
+
+A 29   1253	*	7055	5668	6393	4879	6576	5433	4399	4225	5571	5513	*	5808	3159	4313	5023	3492	*	5054	29
+       113	*	3726	*	*	1049	953	9456	0	3084	
+
+S 30   3087	*	5740	6517	5639	4617	*	4543	4866	4286	5513	*	3319	6599	4538	1849	2788	4991	6094	5675	30
+       57	6534	5172	0	*	*	0	9514	1016	3203	
+
+D 31   6717	*	2407	5030	*	5016	5605	6461	3876	6635	*	1962	3100	6394	4482	3061	4053	*	*	5610	31
+       394	*	2064	*	*	*	0	9485	0	3579	
+
+K 32   4154	2565	3162	6350	5577	4528	4424	6263	3691	3652	6157	3278	*	4637	5884	3186	3542	*	*	*	32
+       301	5237	2626	1746	511	776	1265	9105	1373	6016	
+
+R 33   4601	*	5398	4416	*	*	6316	3953	3310	6612	6272	6560	2215	4279	3141	2867	3808	3720	*	6395	33
+       215	4779	3290	2333	319	1597	579	9377	1349	4943	
+
+E 34   4585	*	3833	2796	3349	5017	4283	*	6220	4677	4890	3308	*	4185	*	3028	3622	6643	4633	3889	34
+       321	4111	2820	1480	640	1119	890	9396	1823	4818	
+
+K 35   6621	*	*	4664	1972	6356	6278	4421	3471	1992	5349	6113	4156	*	3815	4961	6393	6192	*	4100	35
+       31	6467	6621	1000	1000	1458	653	9268	1000	4783	
+
+I 36   4655	*	*	5250	2888	5777	5459	3146	4562	2513	4181	6686	4551	5656	4351	4006	3688	3898	*	4498	36
+       68	6636	4792	514	1738	3931	98	9355	1209	3738	
+
+E 37   3435	*	4425	1807	*	4563	*	6420	4256	*	6528	3966	3692	2938	5396	4115	5641	3561	*	*	37
+       131	3683	6785	714	1358	1655	551	9400	2095	4096	
+
+D 38   5499	*	3766	1992	5107	5132	5028	5626	3575	4561	3882	5136	3466	5802	3271	4740	4506	*	*	5130	38
+       42	6501	5805	3700	115	324	2315	9455	1000	3323	
+
+N 39   4963	*	4153	4183	4989	2946	5380	4766	2456	4609	6822	3595	4459	4828	3759	3746	5177	6448	6953	4522	39
+       297	5133	2667	951	1050	2817	221	9646	1339	1698	
+
+G 40   3581	4988	3240	4652	*	1921	5563	5450	4129	6519	*	4332	*	5056	5218	2983	3276	5215	*	*	40
+       135	*	3481	0	*	1068	935	9479	1019	4310	
+
+N 41   3928	4211	5736	4386	*	4514	4172	5742	3415	3801	5554	5775	2572	4497	5638	3620	4458	3127	*	5894	41
+       52	*	4810	0	*	569	1617	9576	1044	3922	
+
+F 42   5810	3302	5436	*	3540	5619	*	4127	4741	2300	3022	*	*	5767	3635	4453	5173	3184	6674	4697	42
+       140	*	3431	*	*	668	1432	9582	0	2440	
+
+R 43   4933	*	3234	4645	4776	4881	6393	*	2520	*	*	4370	5722	4198	1762	3371	5732	6582	*	5522	43
+       15	6605	*	3000	193	1017	983	9600	1000	2916	
+
+L 44   2991	2499	4298	4264	*	*	6575	4326	5689	4212	3287	4223	4074	6100	6678	4280	4372	3043	*	*	44
+       106	*	3821	*	*	2773	228	9641	0	1944	
+
+F 45   2894	5334	*	4340	3053	3851	6606	3848	6553	3379	5722	5151	6636	*	*	4087	3795	3019	*	3270	45
+       8	7568	*	1000	1000	786	1251	9559	1000	3093	
+
+L 46   4263	4543	5840	4485	4840	4539	5617	3162	4101	5184	4603	4488	4522	4805	5170	5108	2625	3350	5489	4545	46
+       36	*	5330	*	*	2626	255	9613	0	1849	
+
+E 47   2650	6769	4944	3996	4022	5767	3594	4016	5010	4187	5573	6058	*	4773	5180	3620	3385	2751	*	*	47
+       12	*	6883	*	*	410	2015	9580	0	2113	
+
+Q 48   *	*	5171	3254	5858	5705	4415	3717	4638	4693	6562	3617	*	4248	4235	3060	2484	3385	6507	5256	48
+       12	*	6960	1585	585	*	0	9638	1019	1350	
+
+I 49   *	*	*	7658	2602	*	*	2554	5322	2774	4795	*	6699	*	5704	*	*	2613	7040	1983	49
+       13	6817	*	0	*	438	1933	9622	1247	1563	
+
+H 50   4413	*	5524	3079	5650	5105	4756	5788	4615	5980	7018	4243	5818	6587	3949	2673	2112	3416	5883	*	50
+       88	4314	6867	2673	246	0	*	9667	1997	1223	
+
+V 51   3361	5415	*	5465	5155	6011	*	5244	5595	2227	5890	5351	2767	4241	4487	5666	3816	3141	6588	4263	51
+       26	6574	7059	1000	1000	0	*	9683	1016	1000	
+
+L 52   4686	6671	4051	4076	6563	4428	6788	4455	3406	3124	6590	3723	4806	4379	3543	3342	2830	6951	*	6994	52
+       240	2705	*	505	1760	*	0	9697	3614	1000	
+
+E 53   4130	*	2147	2782	*	2957	6155	*	4025	*	*	3906	3408	4862	*	3445	4730	6962	*	4847	53
+       270	2621	6896	0	*	0	*	9697	3705	1000	
+
+N 54   5458	*	2617	2929	*	1499	6918	*	4766	*	*	2780	5187	5714	5141	5297	5093	6812	*	*	54
+       1241	793	*	458	1878	0	*	9680	7758	1021	
+
+S 55   5166	6829	3240	4140	5482	4743	5202	6016	3257	5646	*	2492	*	4252	3992	3239	3105	*	*	4091	55
+       68	4444	*	1127	883	*	*	9690	1715	0	
+
+L 56   5766	*	5775	6790	3646	6981	6709	2534	5978	1509	3524	6944	*	*	*	*	6741	2792	6698	4094	56
+       61	5816	5389	553	1652	*	0	9678	1192	1000	
+
+V 57   3696	*	3397	2930	5071	4638	5787	3981	3492	4081	*	3286	6950	5034	4414	2773	5699	5865	*	5223	57
+       0	*	*	*	*	1345	722	9649	0	1752	
+
+L 58   4013	6576	6121	*	4017	5357	*	2973	*	2410	5475	5820	*	6799	*	5787	5809	1399	6710	4734	58
+       213	3411	4527	1416	677	0	*	9680	3132	1396	
+
+K 59   5139	*	4384	4504	4942	5144	5713	3618	2599	5185	7179	5190	*	6770	3790	3285	2316	3915	6887	4970	59
+       155	3297	*	804	1227	1344	722	9633	2786	1789	
+
+F 60   3164	6680	5664	5730	2790	6964	5252	5760	*	3787	3956	3187	5929	*	7102	3274	3701	4861	5546	2874	60
+       11	7018	*	2807	222	*	0	9640	1000	1587	
+
+H 61   2715	*	5580	5328	3050	4028	4818	5808	4972	3567	*	4556	*	5967	4590	3554	3088	5873	6754	3044	61
+       146	3503	6974	1198	826	*	0	9640	2764	1587	
+
+T 62   6980	5770	4023	4553	3291	3937	5178	3280	4253	5451	3909	4511	5279	5334	3477	4436	5236	3270	6556	4094	62
+       299	3640	3223	1274	770	2602	260	9606	2254	1975	
+
+V 63   6613	*	4924	6628	6082	5779	4281	4183	3214	3072	4739	4652	3966	6575	2657	4886	3388	4714	3772	5072	63
+       164	3692	5063	2221	348	846	1173	9471	2279	3811	
+
+R 64   *	*	6524	2885	4284	4061	*	3472	3022	3541	6689	5703	5352	4426	2674	4223	4127	3931	6581	*	64
+       50	4882	*	835	1186	3613	123	9547	1425	2895	
+
+D 65   5764	*	2781	3784	*	4236	6002	*	3300	6716	5610	2267	3773	5671	5274	3598	3228	5629	*	5192	65
+       37	5719	7308	1322	737	587	1582	9567	1264	2744	
+
+E 66   4363	*	3317	4934	6519	1273	4348	*	4375	6113	*	3077	*	4136	7073	4136	*	4934	*	6735	66
+       131	3526	*	1626	565	2089	387	9650	2507	1631	
+
+E 67   5778	7089	4790	3125	*	3074	4959	5248	2916	4675	*	4388	5903	3833	3340	3662	3880	3870	*	5262	67
+       50	5381	6648	0	*	325	2310	9672	1396	1446	
+
+C 68   5858	736	*	5262	6864	6754	*	5787	6883	4937	5945	5656	5906	5074	5301	4259	5273	4430	4751	6695	68
+       51	4843	*	2523	276	633	1494	9673	1608	1698	
+
+S 69   5366	*	4208	2918	6885	4903	5119	4962	2982	4800	5832	4548	*	3073	4904	3672	4111	3166	5315	4687	69
+       27	6730	6812	0	*	*	0	9667	1000	1335	
+
+E 70   3918	6635	5289	2547	6824	4213	*	4660	3389	4305	5838	4728	5028	3400	5928	4522	2601	5441	*	4312	70
+       51	*	4837	2201	354	1855	467	9655	1140	1504	
+
+L 71   3905	*	5519	4212	4189	6231	5078	2804	3668	3483	3511	5678	5360	6601	4017	4344	3541	3793	5190	6630	71
+       13	*	6764	*	*	*	0	9634	0	2004	
+
+S 72   5212	*	4036	3481	5527	6815	6790	3647	2366	4165	*	3710	5655	4814	3973	3358	3224	4717	6040	*	72
+       42	6749	5711	1585	585	2079	390	9683	1000	2131	
+
+M 73   3418	*	6687	5380	5071	2243	*	3378	6664	3525	4427	5143	6771	5203	6871	5154	4244	2687	4949	4306	73
+       102	5889	4285	1585	585	*	0	9668	1127	2221	
+
+V 74   *	*	5285	4076	*	5310	4680	3968	3685	3562	5858	4074	6774	5211	3972	4715	2629	2143	5516	*	74
+       59	5052	6658	3477	136	3038	187	9548	1380	2996	
+
+A 75   1794	*	6865	*	3655	3006	*	3963	6808	2081	5402	*	5866	*	*	4533	*	5018	*	3739	75
+       37	6657	6051	1000	1000	909	1098	9569	1168	2893	
+
+D 76   6638	*	5243	3159	4502	5094	5192	5736	2841	3829	*	4447	5074	4000	3761	4001	3377	4122	5915	3688	76
+       56	5741	5700	1585	585	430	1956	9588	1258	2115	
+
+K 77   6100	*	*	4339	4310	6781	4588	4512	1726	4251	6860	4425	2708	5768	5242	4068	*	3164	6361	*	77
+       382	5668	2230	1458	653	1028	973	9674	1450	1498	
+
+T 78   4469	*	4998	4097	4748	4985	6405	4076	6544	4316	6556	*	4504	4334	*	4069	1479	3150	*	5100	78
+       215	3412	4485	1113	896	74	4328	9288	2382	4728	
+
+E 79   3625	*	2313	2481	5428	3241	5932	7029	4101	*	6372	3468	5788	4840	5072	3899	4400	5173	*	*	79
+       174	4175	4095	968	1033	0	*	9603	1992	1823	
+
+K 80   4777	*	4050	2663	6694	4222	*	5017	3082	6518	4909	4605	4025	3550	4970	3678	3030	3868	*	*	80
+       207	3021	6578	2026	406	764	1282	9567	3148	2280	
+
+A 81   4450	*	3595	4566	6651	4884	5773	5763	3617	6371	*	3430	1525	4583	6749	3753	4854	4465	*	6673	81
+       119	4039	5773	1239	795	416	1997	9612	2022	1751	
+
+G 82   2711	*	4091	6691	6560	931	*	*	5325	6623	*	4394	5112	5954	5206	4688	4959	*	5786	*	82
+       87	4343	6782	1675	542	1753	508	9650	1793	1413	
+
+E 83   4853	*	6390	3803	*	4600	3979	5252	1902	*	7025	4809	5919	3162	3149	5318	4125	3217	*	6802	83
+       26	*	5826	*	*	1336	728	9651	0	1419	
+
+Y 84   5666	6501	*	*	1523	6124	*	3903	*	2696	3850	6682	5533	*	*	6548	6248	5822	4419	2345	84
+       13	6794	*	1000	1000	*	0	9649	1000	1572	
+
+S 85   5263	*	4785	4167	6065	5238	5494	5651	2752	3436	6591	4102	5652	6571	3858	3546	2359	4164	7085	4440	85
+       154	4331	4274	1000	1000	*	0	9636	1697	1737	
+
+V 86   4196	*	*	*	2794	5720	6404	3271	6486	2598	5238	4809	*	6679	6661	4524	5367	1964	*	3562	86
+       106	4601	5082	1203	822	430	1957	9587	2331	2754	
+
+T 87   5778	*	3565	4049	6698	5231	5335	7322	4034	5661	*	3115	3851	4318	3436	2646	2841	4800	7162	5692	87
+       688	1535	4871	2288	331	732	1330	9618	6006	2053	
+
+Y 88   4525	*	5624	5195	2251	4879	4636	5390	4360	3674	*	4358	*	6496	*	4663	4953	3722	6776	1959	88
+       228	3149	4913	2194	356	402	2041	9678	3132	2298	
+
+D 89   3518	*	3279	2995	4823	3879	*	6581	3663	3819	4826	4391	4058	4654	4906	3281	5724	5569	4614	5575	89
+       173	3344	6128	2022	408	1358	713	9635	3045	1742	
+
+G 90   4051	*	4813	4107	*	1013	*	6700	5701	5637	6862	3939	5084	6660	6617	3663	4221	5822	5800	6630	90
+       621	1786	4065	2035	404	507	1754	9630	5453	2049	
+
+F 91   4191	*	3654	3223	5194	4177	3493	4955	4004	6034	*	3942	5018	4058	4146	3225	4317	3927	*	4569	91
+       244	3322	4165	1747	510	1943	434	9681	2587	2433	
+
+N 92   3305	*	6807	4329	5735	3927	4517	5703	3865	3886	4906	2656	6920	5998	5063	3506	4831	3834	*	3090	92
+       33	5464	*	1170	848	1441	663	9612	1787	3072	
+
+T 93   5543	*	2490	2764	6587	6578	4319	6606	4173	4166	*	3990	4296	5636	4757	4766	3611	3214	4434	5843	93
+       0	*	*	*	*	1186	835	9598	0	2480	
+
+F 94   5185	*	*	*	2768	5308	5970	2942	*	3218	4522	*	6804	*	*	5596	4641	2170	*	2242	94
+       0	*	*	*	*	*	0	9661	0	1788	
+
+T 95   4644	6488	5822	4061	5131	*	3985	4280	4347	4416	5898	5118	*	4671	3560	4230	3292	3524	2902	3532	95
+       0	*	*	2322	322	2164	364	9661	1044	1788	
+
+I 96   6051	6951	4782	5924	3730	7164	*	2360	6947	3147	*	6819	*	*	*	6477	7580	1097	6614	5458	96
+       67	5596	5339	2138	372	534	1693	9679	1447	1581	
+
+P 97   5155	*	6962	6510	4773	6782	5728	2981	5870	1395	4486	*	7037	6258	6671	6777	*	1963	*	5393	97
+       12	*	6962	0	*	0	*	9637	1061	1642	
+
+K 98   3207	*	1742	2828	7491	4067	4829	*	4173	5662	6928	5706	6679	*	4507	3357	5169	*	*	3839	98
+       24	5938	*	0	*	0	*	9698	1155	1000	
+
+T 99   3959	*	4904	6707	5840	5821	*	4609	4840	6039	5814	*	4006	*	7249	3670	938	3654	*	*	99
+       22	7249	6831	0	*	*	*	9698	1000	0	
+
+D 100  6673	5425	636	4523	*	5674	*	*	7107	6664	*	3662	5997	5996	6681	3521	5275	6591	*	*	100
+       74	7191	4527	0	*	*	0	9686	1132	1000	
+
+Y 101  *	5575	5826	5140	4838	7385	5780	6586	4947	*	*	5730	3793	6419	*	5378	6449	6601	*	551	101
+       280	*	2503	*	*	0	*	9639	0	1909	
+
+D 102  6507	6550	1726	3115	*	*	*	*	2664	5427	*	3372	4763	4066	4866	4958	3506	5618	*	6418	102
+       16	6531	*	1585	585	0	*	9568	1000	4051	
+
+N 103  4741	5434	2996	4875	*	4718	4990	6738	3926	5743	*	2278	*	4247	4261	2566	2988	*	6515	*	103
+       138	*	3457	*	*	*	*	9698	0	0	
+
+F 104  6933	6578	7395	*	2633	6471	4577	5623	6649	6776	5591	*	*	6569	*	5631	6776	5241	3734	838	104
+       25	6920	6863	0	*	730	1333	9466	1019	2551	
+
+L 105  974	5039	*	*	4660	5044	*	4000	7099	3230	6469	*	*	*	*	3573	3959	4735	6519	7388	105
+       0	*	*	*	*	0	*	9575	0	1859	
+
+M 106  5971	5008	*	*	3974	6011	*	1556	*	2146	4368	*	*	6581	*	6678	5898	2228	6815	*	106
+       33	6581	6393	0	*	*	*	9698	1018	0	
+
+A 107  4852	*	*	6775	3431	5181	*	2694	*	1861	3775	*	*	6985	4999	5899	5873	1943	*	*	107
+       45	*	5010	*	*	0	*	9662	0	1065	
+
+H 108  5245	3079	5656	*	3203	3583	3996	5323	*	4434	5572	6875	*	*	5834	4644	*	5725	4270	1507	108
+       189	3159	6518	0	*	0	*	9628	2836	1415	
+
+L 109  5853	2781	6862	5362	5109	3360	6777	4943	4387	3533	3773	4767	*	*	4923	2769	3205	4046	*	4522	109
+       147	5305	3802	425	1972	1170	848	9661	1317	1251	
+
+I 110  4373	2190	4977	3835	5618	6430	6416	3804	4535	5728	6837	*	3256	3538	3726	4203	6619	3878	*	4444	110
+       244	5057	2994	0	*	3681	117	9551	1371	2821	
+
+N 111  6332	*	3528	6201	5585	3432	6259	6347	2753	3721	5017	2465	5513	5563	3429	3674	3804	5842	*	6781	111
+       268	5038	2846	0	*	3047	186	9373	1303	4392	
+
+E 112  4890	*	4113	3398	4215	5125	4941	5433	3327	4907	6385	4061	*	4950	4119	3258	3151	2989	*	4734	112
+       571	1668	6380	707	1368	3011	191	9137	4837	5508	
+
+K 113  3672	*	3573	3520	4053	5466	6511	5568	3527	4130	4813	3667	3519	6392	3630	3243	4748	6350	5492	5638	113
+       155	3929	4790	812	1217	975	1026	9295	1710	5396	
+
+D 114  3223	*	2982	3628	5590	3337	4898	6630	3398	5546	*	2876	5508	5053	4321	3885	3934	6654	*	5353	114
+       160	4627	3959	378	2116	3916	99	9547	1493	4067	
+
+G 115  6347	6544	3090	6573	5476	1593	5048	4938	3557	6476	*	3488	3849	6515	4877	3345	5431	*	6507	*	115
+       130	3534	*	1025	975	445	1914	9498	2501	4590	
+
+E 116  5921	*	5199	3523	4197	3354	4984	4272	2865	4317	*	6569	4256	3698	2934	4393	4585	4521	*	4551	116
+       107	5816	4226	0	*	747	1306	9729	1166	2009	
+
+T 117  4790	6984	3998	3262	6776	5563	3775	6443	2882	5373	*	3296	4396	3898	4771	2818	3612	4722	*	*	117
+       75	*	4304	*	*	906	1100	9707	0	2226	
+
+F 118  4779	4930	3914	4836	3151	4729	4185	4283	5790	4409	4367	5339	*	5908	3624	2946	3640	5203	*	3327	118
+       252	5783	2817	1343	723	1335	728	9673	1167	2452	
+
+Q 119  5678	6382	3360	3284	6636	*	4643	4806	3440	3386	6762	2903	5522	3229	3716	3976	4521	5448	*	5840	119
+       0	*	*	*	*	688	1398	9620	0	4135	
+
+L 120  5851	6664	4238	5544	3670	5668	5068	4510	5110	3448	3508	4521	*	5688	4662	3444	4432	2814	4958	3280	120
+       0	*	*	*	*	0	*	9638	0	2245	
+
+M 121  2293	6707	5353	*	3929	4384	*	4873	6582	2090	4148	4972	*	*	*	5258	4805	2403	5644	6693	121
+       0	*	*	*	*	*	*	9709	0	0	
+
+G 122  5125	4844	*	4153	3365	5198	6125	4339	3190	4346	6975	7107	*	5272	5874	4727	4159	4283	1778	4690	122
+       0	*	*	*	*	*	*	9709	0	0	
+
+L 123  5619	6661	*	*	4513	*	*	2064	*	1082	5666	*	6516	5338	*	*	*	3035	*	4755	123
+       15	6632	*	0	*	*	*	9709	1025	0	
+
+Y 124  5586	7046	*	5600	2812	*	4843	4946	*	1485	4010	6520	*	5871	6699	5890	5549	4637	6733	2347	124
+       125	5338	4106	0	*	*	*	9709	1351	0	
+
+G 125  2024	6614	*	6604	*	3067	5583	*	6410	4219	*	5555	*	*	6878	1496	3178	4913	*	*	125
+       12	*	6870	0	*	0	*	9569	1044	2019	
+
+R 126  *	*	6540	*	*	*	*	*	3206	*	*	5983	5652	*	302	6228	6591	*	*	6579	126
+       0	*	*	*	*	*	0	9716	0	1019	
+
+E 127  5214	*	2679	3950	6681	4077	*	*	3622	*	*	4079	5816	4282	3749	2393	2389	5796	*	*	127
+       11	*	6980	*	*	*	0	9716	0	1019	
+
+P 128  5123	*	5171	5183	6632	5464	*	5486	3982	3325	6522	5706	1747	4800	2523	3994	4023	5804	5789	*	128
+       40	*	5176	1000	1000	1127	883	9700	1019	1185	
+
+D 129  4592	*	3189	2470	*	5332	4716	5302	3942	3537	5788	4782	5986	3528	6893	3839	2907	4049	*	*	129
+       68	6923	4735	0	*	1047	955	9663	1431	1572	
+
+L 130  3524	*	4279	4985	5808	4532	6868	3582	*	1856	4410	5490	2981	*	6919	5655	4370	2964	*	*	130
+       15	*	6624	*	*	221	2816	9601	0	2147	
+
+S 131  4759	*	2823	2668	*	6586	*	5568	5189	7002	*	3761	3349	5459	5749	1945	3153	*	*	6350	131
+       28	5724	*	1000	1000	0	*	9697	1383	1192	
+
+S 132  3716	*	2630	2720	6632	4032	6789	*	4024	5547	6900	4315	2712	2918	6572	5339	4289	5832	*	*	132
+       0	*	*	*	*	*	*	9725	0	0	
+
+D 133  2658	*	2293	2296	*	4276	7030	6809	3369	*	6875	5721	4207	3893	6818	3903	5315	6626	*	6806	133
+       87	*	4103	*	*	*	*	9725	0	0	
+
+I 134  2134	6522	4845	4339	5228	5560	6203	3255	5839	3246	5051	6836	6851	4057	6663	5121	3768	2867	6477	5644	134
+       81	4202	*	894	1115	*	0	9587	1769	1997	
+
+K 135  5689	6935	6469	6595	4522	*	*	2755	2878	2050	3115	5732	4892	*	4155	*	5671	4412	5539	3848	135
+       12	*	6884	*	*	*	0	9587	0	1997	
+
+E 136  2740	*	3635	1791	6714	5028	5752	*	2859	*	*	4112	6910	3814	4434	4711	4811	6835	5777	*	136
+       13	*	6835	*	*	440	1926	9583	0	2148	
+
+R 137  3229	*	3978	2663	6543	4867	5179	5806	2331	5248	4424	5145	*	3807	2887	5841	5615	*	*	4753	137
+       0	*	*	0	*	488	1801	9693	1240	1404	
+
+F 138  2812	4985	*	*	1231	*	*	3828	*	2952	5282	*	*	*	*	*	6714	3356	*	3888	138
+       12	*	6971	*	*	*	0	9723	0	1000	
+
+A 139  4506	6565	5320	3033	4316	*	4733	6734	2864	2831	4719	6637	*	4236	3414	5651	3640	3573	*	4505	139
+       0	*	*	0	*	891	1118	9706	1019	1188	
+
+Q 140  3069	5740	3379	2873	*	4988	*	*	2468	6923	4787	4237	*	4281	4132	3024	4238	*	*	4821	140
+       0	*	*	*	*	*	0	9699	0	1000	
+
+L 141  3215	*	7027	6846	3141	*	6560	3778	3423	2364	*	*	*	4372	3005	6949	4934	3317	5775	4076	141
+       14	6677	*	0	*	*	0	9699	1044	1000	
+
+C 142  2142	4038	*	*	4089	5283	*	3759	*	1975	5631	*	*	*	*	3979	3943	2808	*	6879	142
+       21	7214	6969	0	*	*	0	9699	1000	1000	
+
+E 143  4046	6551	3814	2781	*	5095	*	5177	2478	4499	*	4934	4744	3994	2794	3586	4538	6853	6571	6793	143
+       25	5852	*	573	1609	*	0	9682	1131	1188	
+
+E 144  2773	4183	3536	3004	6908	4432	5229	5732	2906	5218	*	4370	6728	4507	3684	3253	4902	6737	*	*	144
+       0	*	*	1000	1000	*	0	9682	1019	1188	
+
+H 145  4809	*	*	5012	4558	6908	5149	4138	4317	1780	4253	3860	6798	3390	4150	*	5246	4380	*	3323	145
+       24	5943	*	1000	1000	*	0	9682	1133	1188	
+
+G 146  6835	5209	4802	5678	*	688	5649	5180	4525	*	*	3788	5291	5119	4842	5940	6598	6798	*	*	146
+       28	5714	*	433	1947	891	1118	9682	1381	1188	
+
+I 147  *	*	5883	*	2481	*	*	2414	*	1580	4329	*	*	*	6734	6791	*	3213	*	3240	147
+       12	*	6907	*	*	*	0	9699	0	1000	
+
+L 148  6604	*	2165	3537	*	5752	4544	*	4192	4029	*	4378	3234	4723	4829	2587	3979	5145	*	5820	148
+       61	*	4592	*	*	*	0	9682	0	1212	
+
+R 149  6514	*	3549	2741	5105	6305	*	4255	4309	3014	4729	4779	3811	6036	4638	3424	3215	3971	*	5620	149
+       32	*	5489	*	*	2943	201	9617	0	2064	
+
+E 150  4139	*	2566	2586	5847	4244	5291	*	3848	5537	*	4318	5395	4086	5636	2601	3766	*	5656	6625	150
+       92	*	4018	*	*	1947	433	9532	0	2264	
+
+N 151  4952	*	3146	4730	4586	6522	4190	5481	2481	5089	5010	2785	6328	3703	3267	4492	6720	6611	*	4459	151
+       0	*	*	2585	263	1279	766	9470	1019	2878	
+
+I 152  6607	*	*	*	2833	*	6457	1852	*	1870	4131	*	*	5683	*	6875	5621	2747	6834	5356	152
+       30	6580	6669	2149	369	1196	828	9564	1815	2090	
+
+I 153  5708	*	*	3764	3790	*	5413	2635	4596	3714	6368	5646	*	4359	3365	4248	4060	2323	5658	5442	153
+       246	*	2674	0	*	350	2216	9581	1044	1717	
+
+D 154  *	*	3564	5557	2680	*	3971	4202	4472	3954	4600	3810	5370	4939	4068	5012	3838	3902	4594	3789	154
+       32	6374	6687	0	*	97	3942	9290	1000	3482	
+
+L 155  5023	*	4990	6691	4366	*	*	3529	4434	2344	6141	6399	2591	5201	5782	4665	2901	3160	6826	5767	155
+       89	5758	4607	0	*	1217	811	9600	1131	1168	
+
+S 156  4640	*	4897	3882	4777	5284	6644	5376	5133	6485	6490	4093	2368	3983	3363	3326	3174	4655	6021	4911	156
+       19	6283	*	0	*	338	2260	9509	1016	1743	
+
+N 157  *	*	4288	4253	6447	*	4114	5981	2852	6499	*	3019	4686	2096	3872	3152	4153	5667	*	6789	157
+       16	6461	*	0	*	*	0	9580	1013	1019	
+
+A 158  4737	*	3255	3863	*	4063	5747	6521	3883	5670	6510	4554	3883	2856	4185	3695	2816	4569	*	4778	158
+       116	3940	6386	699	1381	1023	977	9473	1916	1210	
+
+N 159  3353	*	1737	2226	5460	3194	*	5484	4371	6545	6306	4279	*	6289	4403	6352	6435	5211	*	*	159
+       51	6285	5501	0	*	1744	511	9416	1000	1406	
+
+R 160  3066	6417	3512	3111	5298	5186	5956	5069	4172	4855	6098	4255	4271	3280	3792	4843	3286	*	*	4461	160
+       0	*	*	*	*	0	*	9159	0	1518	
+
+C 161  *	114	*	5982	*	*	*	*	*	*	*	*	6019	6037	*	*	*	6150	6009	*	161
+       71	5019	5842	1601	577	*	*	9092	1191	0	
+
+L 162  3513	*	3891	4439	*	4714	5765	5006	4438	4072	*	4511	2120	3358	*	3427	4019	3918	*	6231	162
+       0	*	*	*	*	*	0	8925	0	1057	
+
+Q 163  3753	*	3876	3035	4505	3708	3135	5536	*	5404	5509	3482	3161	3753	4481	4659	4670	5785	*	5886	163
+       0	*	*	*	*	*	0	8504	0	1057	
+
+A 164  1227	*	2760	2280	*	*	*	*	*	4604	*	*	*	*	*	2489	*	*	*	*	164
+       154	3303	*	0	*	0	*	6896	1021	1057	
+
+R 165  *	*	2440	*	*	3437	*	*	3041	*	*	*	*	*	732	*	*	*	*	*	165
+       213	2864	*	0	*	*	*	4798	1000	0	
+
+E 166  2606	*	*	2491	*	2735	*	*	*	*	*	*	2785	1463	*	*	*	*	*	*	166
+       0	*	*	0	*	*	*	3537	0	0	
+
+//
+�HHsearch 1.5
+NAME  d330d1598fd712b741ae1a07a1797d37
+FAM   
+FILE  d330d1598fd712b741ae1a07a1797d37
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:02:53 2013
+LENG  192 match states, 192 columns in multiple alignment
+FILT  167 out of 1196 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  7.6 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCEEEEEEEEECCCCCEECCCCCCCCCHHHHHHHHHHHHCCCCCCCCCEEEECCCHHHHHCCCCCCCCCCEEEEECCCCCCCCCCCCEEEECCHHHHH
+HHHCCCCCEEEECCHHHHHHHHHCCCCCEEEEEEEECCCCCCCCCCCCCCCCHHHCEEEEEEEECCCCCCCCCCCCCCCCCCEEEEEEEEEC
+>ss_conf PSIPRED confidence values
+9986099999999588847379977876878999999997178754557879984008765230147889997999958897655789969989999999
+97478997999887999999974899789999999533366656324389983447998888611234555543442468921899999979
+>Consensus
+xxxxxxxxlixAxsldGxIgxxgxlpWxxxxdxxxfxxxxxxxxxxxxxxxvvmGRxTyexxxxxxxpxxxrxxiVvSxxxxxxxxxxxxxxxxxxxxxi
+xxxxxxxxixViGGxxlxxxxlxxxlvDelxltiipxxxxxxxxGdxxfpxxxxxxxlxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
+>d330d1598fd712b741ae1a07a1797d37
+MLKPNVAIIVAALKPALGIGYKGKMPWRLRKEIRYFKDVTTRTTKPNTRNAVIMGRKTWESIPQKFRPLPDRLNIILSRSYENEIIDDNIIHASSIESSL
+NLVSDVERVFIIGGAEIYNELINNSLVSHLLITEIEHPSPESIEMDTFLKFPLESWTKQPKSELQKFVGDTVLEDDIKEGDFTYNYTLWTRK
+>gi|330723554|gb|AEC45924.1| dihydrofolate reductase [Mycoplasma hyorhinis MCLD]
+-------MIISilAMGKNNLIGKGDDLPWYVKEDFDFYREQTK-------HHDILVGKNTFFTLPKS---LQKWSKIYIVSddkNFN-Y-ENENVKTINN
+FSNLIKEyQNHpSKHLFVSGGYTLYKSII--NKCDQLIISFIKGE----HSGDIFLNElKWEKFE-----------------------------------
+>gi|308177537|ref|YP_003916943.1| RibD domain-containing protein [Arthrobacter arilaitensis Re117]gi|307745000|emb|CBT75972.1| RibD domain-containing protein [Arthrobacter arilaitensis Re117]
+-------IFDAAVSLNGYLADEnHGLQWLfdvpGAQEPDP-DLL------PKNVGVHVEGANTYKWLIDneqlmenpHKWQEyyPGVTTYVFTSRDLPIP
+DGADVRLVNgPVAKFLPEIrgtAGLKNIWVLGGGELLGQFLDAGAIDILALTIAPVA----LaRGTELLPRniGSERLELVQAHK---------------
+--------------
+>gi|298245066|ref|ZP_06968872.1| bifunctional deaminase-reductase domain protein [Ktedonobacter racemifer DSM 44963]gi|297552547|gb|EFH86412.1| bifunctional deaminase-reductase domain protein [Ktedonobacter racemifer DSM 44963]
+---------LEFVTLDGVIQaPGgPEEDtsggfayggWvapYDDDVAGTVMDKQMNL-----PFDLLLGRKTFEIWAP-FWPqhadgwpgVMSATKYVAS
+NSMTS-SEWQPSVFLgGDIAEKVSKLkhQPGPDLHVYGSANLLQTLMKHDLVDAFWLKIFPLT----LgSGKRLFTDgTiPAAFKVTESQV---------
+--------------------
+>gi|300783227|ref|YP_003763518.1| hypothetical protein AMED_1302 [Amycolatopsis mediterranei U32]gi|299792741|gb|ADJ43116.1| conserved hypothetical protein [Amycolatopsis mediterranei U32]gi|340524608|gb|AEK39813.1| hypothetical protein RAM_06605 [Amycolatopsis mediterranei S699]
+-------VASFCMSLDGFVaRPDDSvgplFDWYqagdvevpmagypitfrvAPASAEYLSTFLDSVR----HSAFVCGRRVFEYTHGwGGRPPGGGAAFV
+VTHRPPPaGWPAGNlapFTFCADVTSAIEQAKaaGDGTV-GVSGPSIAQQCLRLGLLDEVRIDLVPVL----LgTGVRYFE-------------------
+-----------------------
+>gi|281421474|ref|ZP_06252473.1| riboflavin biosynthesis protein RibD [Prevotella copri DSM 18205]gi|281404546|gb|EFB35226.1| riboflavin biosynthesis protein RibD [Prevotella copri DSM 18205]
+-HQRPYIILKWAQTANGFLDNGGR-GMAISSP---FTKMLSHK-LRAENDAILIGRVTDERDhSQlnvRDWSGKDPMRLVIDRHHPCFEGLDFsRGKTEV
+LQQIMQYlyNNKVQSLIVEGGAITHQAFLDAGLWDEIRAETllstsVENS----VTSGTPAPMLPHNVRLISH---------------------------
+----
+>gi|284052809|ref|ZP_06383019.1| riboflavin-specific deaminase [Arthrospira platensis str. Paraca]gi|291566856|dbj|BAI89128.1| putative riboflavin-specific deaminase [Arthrospira platensis NIES-39]
+--TRPHTTVILAMSADGKIADLMRSPARfgSNADIIHLERQIAQ------ADAVLFGNGTLAAYGTVLrvsstELLGdrekngkppQPVQIVCSASGKIN
+ptlkffqQPVPKWLLTTFlggqpwkrfsdhFDQVIvaddsngvitwsealQQlrDRDIQRLAVLGGGQLVASLMAHHAIDEFHLTVCP------------
+--------------------------------------------
+>gi|84494757|ref|ZP_00993876.1| hypothetical protein JNB_08164 [Janibacter sp. HTCC2649]gi|84384250|gb|EAQ00130.1| hypothetical protein JNB_08164 [Janibacter sp. HTCC2649]
+--GRLRYGVIISL--DGYArDASGSFAWARPDHdLhSFINEKERD------VRTYIYGRGLWETMR--YWQnpprGEvnapehdefatiwqGADKVIVST
+TLE-PPTEPRTQLWDtLDVDRLAALVgdASTDV-SIGGPTLAADALRAGLVDEITAYVMPHV----AgGGLPWLPD------------------------
+-----------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	2633	0	0	
+
+L 2    *	*	*	*	*	*	2564	*	*	2667	2839	*	*	*	*	1971	2727	2970	*	*	2
+       0	*	*	*	*	*	*	3841	0	0	
+
+K 3    *	4093	3943	4205	*	2609	*	*	3166	4222	*	*	*	3790	2765	2578	3234	*	*	*	3
+       0	*	*	*	*	*	*	5567	0	0	
+
+P 4    2891	*	4367	*	4502	4209	4440	*	*	*	*	4433	2100	*	1742	4620	4231	*	*	*	4
+       0	*	*	*	*	*	*	5794	0	0	
+
+N 5    *	*	*	4790	*	4539	3659	4562	3506	2826	*	3651	1860	3603	*	*	4301	3603	*	*	5
+       204	4301	3619	1585	585	*	*	5990	1026	0	
+
+V 6    *	*	*	4578	3006	*	3405	3024	4685	3668	*	*	*	3532	4442	3555	3346	3010	*	4088	6
+       0	*	*	*	*	0	*	5970	0	1107	
+
+A 7    4778	5380	5536	*	6059	*	*	2219	5900	1989	6517	5967	*	5618	*	3838	3625	3025	*	3346	7
+       20	6181	*	1000	1000	*	*	7106	1049	0	
+
+I 8    5189	6396	*	6448	6354	4397	5925	2173	3159	3983	*	4701	*	*	4043	2990	2711	3779	*	5292	8
+       104	5331	4481	0	*	*	*	7623	1110	0	
+
+I 9    3148	5456	*	*	4575	6760	*	2730	*	1437	4573	*	*	6160	*	5665	5080	3277	*	3561	9
+       15	6560	*	1000	1000	0	*	8033	1015	1253	
+
+V 10   6980	6922	5041	*	3824	6986	4705	1588	5612	4982	4927	4130	*	5451	*	4806	5239	2704	5185	3384	10
+       0	*	*	*	*	*	*	8309	0	0	
+
+A 11   2229	*	7147	5251	4342	6018	*	3300	*	3377	4022	5657	*	5898	*	7254	5245	1853	4143	5247	11
+       32	6118	7006	621	1516	*	*	8309	1109	0	
+
+A 12   635	4762	6224	*	4043	5308	5841	6945	*	7372	6816	4617	7031	7334	*	4033	4991	4954	*	*	12
+       0	*	*	*	*	*	0	8303	0	1034	
+
+L 13   3119	5667	*	5394	6635	6552	*	2692	5768	3621	3090	*	*	4436	7223	5397	3233	2076	*	5124	13
+       43	*	5077	0	*	0	*	8357	1034	1034	
+
+K 14   3285	6057	2743	*	*	4502	*	*	7239	6108	*	6180	*	7371	7131	1233	2282	6657	*	*	14
+       55	5282	6405	3881	101	*	0	8365	1261	1206	
+
+P 15   3285	*	4366	3663	7068	6597	*	4529	4298	1385	7164	5463	4785	5284	4322	4437	*	3517	*	*	15
+       37	5316	*	498	1777	0	*	8353	1329	1322	
+
+A 16   5247	*	965	6492	*	5317	5096	*	4595	*	*	1901	*	5588	5130	5909	7171	7181	*	7151	16
+       30	5977	7644	945	1057	*	*	8426	1087	0	
+
+L 17   *	*	7783	6838	4464	605	5387	6637	6693	4502	6156	3525	*	5544	4326	7142	*	*	6381	7633	17
+       10	7168	*	553	1652	0	*	8427	1043	1000	
+
+G 18   3240	5257	*	5194	2380	3008	5488	4717	4415	3848	7416	6493	*	6550	6742	7075	7253	3086	7495	2528	18
+       16	*	6493	*	*	*	*	8424	0	0	
+
+I 19   4470	5400	*	*	3620	7243	6222	749	*	3451	5571	*	*	*	*	*	5559	3400	*	7266	19
+       212	2873	*	290	2458	*	0	8442	2077	1032	
+
+G 20   2119	*	3414	4397	*	1068	*	*	*	5957	*	*	6858	5994	7025	4018	4584	*	*	*	20
+       212	2940	7229	728	1335	*	0	8442	2089	1032	
+
+Y 21   3955	7429	3597	5994	5035	4761	4207	5483	2925	3665	*	4181	2775	4374	3412	4674	4966	5963	*	4432	21
+       95	3971	*	453	1891	*	0	8388	1472	1181	
+
+K 22   3727	*	2380	4043	*	2940	5182	7447	3909	5589	6352	2451	4864	4900	4524	4663	4344	5796	7043	*	22
+       136	3704	6228	0	*	*	0	8388	1584	1181	
+
+G 23   5111	*	3020	5222	*	1251	4473	6887	5558	*	5878	2561	4753	4694	7023	5154	6788	7157	*	6368	23
+       83	5651	4799	1053	949	2601	260	8382	1100	1288	
+
+K 24   4745	*	2561	3413	7003	2819	*	7187	2714	*	*	4228	5652	4059	3870	3021	4917	6012	5864	*	24
+       170	3456	5663	2437	294	1896	451	8335	1644	1519	
+
+M 25   7491	*	5096	5378	4188	4860	5431	2989	5670	1414	2993	5419	6137	7324	*	5522	4842	4045	*	5556	25
+       0	*	*	*	*	281	2500	8328	0	1533	
+
+P 26   3986	*	2546	5468	6700	5029	*	6706	5590	3764	*	7103	1243	5103	5470	3681	4899	7445	*	*	26
+       170	3869	4551	1862	464	0	*	8492	1534	1038	
+
+W 27   5486	7205	*	*	3420	*	6861	*	*	4933	4885	*	6688	5773	*	6509	*	5131	508	4986	27
+       225	3048	5421	796	1237	*	0	8429	1943	1300	
+
+R 28   4314	7236	6209	5201	4448	4037	2762	5089	4076	2718	4611	4928	4357	4466	3464	3804	6327	4980	*	4904	28
+       607	1738	4515	1518	620	0	*	8367	3465	1716	
+
+L 29   4780	5127	4604	4088	3250	5120	5749	2949	5823	2275	4846	4898	5210	6068	*	3533	5639	4149	5594	4831	29
+       112	4310	5381	1719	523	650	1463	8466	1570	1291	
+
+R 30   4339	*	2908	3628	7018	5022	*	5858	2663	6179	7270	4421	1785	5456	4604	4241	5151	5591	*	*	30
+       104	4157	6180	1024	976	1585	585	8434	1506	1284	
+
+K 31   3016	7141	2541	1708	*	3576	6985	*	3979	*	*	5541	5226	4256	6663	4207	4534	5135	*	*	31
+       94	4171	7011	2054	398	2742	234	8434	1385	1311	
+
+E 32   4799	*	1024	2006	7192	5505	5622	7120	7235	5332	*	5995	4428	6542	*	5603	4871	6961	*	*	32
+       124	4050	5501	1047	955	2705	240	8435	1508	1312	
+
+I 33   3778	6151	6203	7432	3458	4428	5369	4733	4748	2032	2682	*	6092	4760	5336	4858	5094	3650	5621	5896	33
+       73	4334	*	1386	696	2321	322	8380	1496	1451	
+
+R 34   2577	*	3513	3471	6086	3694	4710	4933	3149	4811	6129	5009	5492	3220	3929	4436	4576	6101	*	*	34
+       37	6035	6625	602	1552	*	0	8408	1060	1348	
+
+Y 35   4294	*	4795	4536	2525	5632	2694	7662	5284	5045	5721	4494	7162	4636	3500	*	5284	4625	4720	2667	35
+       69	6380	4859	0	*	273	2537	8412	1034	1439	
+
+F 36   7080	6633	7025	7225	1045	6368	5160	4462	6970	3296	5388	5657	*	*	7194	7290	5108	4255	5330	2997	36
+       62	4570	*	1998	416	771	1272	8486	1300	1304	
+
+K 37   3429	*	5367	3435	5560	7233	7442	4342	2401	3879	4763	7335	6206	4859	2706	3866	4306	4489	6700	4934	37
+       53	5101	7130	1894	452	*	0	8484	1234	1086	
+
+D 38   3114	7509	3029	2597	5202	5379	5591	7206	3436	5502	*	3588	*	3212	4003	4474	4026	5131	*	6692	38
+       19	6284	*	0	*	*	0	8474	1047	1146	
+
+V 39   3960	*	4725	3840	3744	7010	5266	3506	4791	2260	4481	5464	6289	4088	4118	6131	3257	4599	*	5059	39
+       102	7451	4002	1000	1000	1694	533	8474	1000	1146	
+
+T 40   4994	7312	5039	5127	4623	7360	*	3485	5319	3281	3887	7022	*	5136	5127	4681	1484	4205	6056	4596	40
+       45	*	5028	*	*	2002	414	8443	0	1582	
+
+T 41   2941	*	3984	3808	*	6895	6005	4646	3905	2730	4116	5338	*	4535	5161	3836	2633	5847	7015	4512	41
+       253	7335	2695	2585	263	*	0	8435	1045	1658	
+
+R 42   3720	6186	5202	3816	5492	1997	5122	*	4434	5012	*	2638	*	4230	3410	3672	4713	6821	*	*	42
+       814	*	1213	*	*	*	0	8224	0	2943	
+
+T 43   2645	*	5058	5183	4338	6242	3895	4355	3888	4069	*	3808	5243	4205	4218	4368	2627	4041	*	*	43
+       749	4382	1486	2795	224	*	0	7118	1159	5358	
+
+T 44   4260	4222	*	4319	*	*	5554	5263	3285	4210	*	3584	1745	*	3971	4382	4320	3899	5074	*	44
+       1328	4623	834	3170	170	4563	62	6383	1121	6071	
+
+K 45   4712	*	2587	4056	*	4319	*	*	3514	3026	4588	3654	4580	4637	*	2434	3526	*	*	*	45
+       252	*	2643	*	*	4630	59	5184	0	6569	
+
+P 46   3589	*	*	4660	4180	5018	*	4557	4727	2857	*	*	1410	*	3957	3593	*	4338	*	*	46
+       402	2040	*	3448	139	3704	115	5662	1653	6557	
+
+N 47   2299	*	5643	2687	*	3576	*	5626	2630	*	*	3285	*	5048	3166	4193	4741	5675	*	*	47
+       27	5756	*	1000	1000	3111	177	6897	1034	6291	
+
+T 48   4465	5957	3730	3381	*	3680	6007	*	2928	4395	*	4168	*	4386	3700	2586	3146	6135	5607	*	48
+       56	*	4704	*	*	1408	682	7340	0	5887	
+
+R 49   2575	6299	*	6271	4504	6980	5139	2310	4509	5996	4424	5436	4893	5460	5190	4311	4761	2311	*	5469	49
+       10	7154	*	711	1361	384	2098	7860	1104	4605	
+
+N 50   5170	6852	1542	6243	6143	2272	3761	7155	4216	*	*	2875	7386	5691	6323	4144	5603	*	*	*	50
+       9	7348	*	3000	193	2426	297	8682	1000	1965	
+
+A 51   1616	4436	5196	*	7014	5991	6109	4149	7615	4177	7102	5222	5041	6655	*	5604	2545	2660	7286	6078	51
+       8	7430	*	2807	222	154	3306	8689	1007	1781	
+
+V 52   4566	5284	*	6887	4327	7246	4545	2030	*	2461	4768	7284	*	7070	*	6372	5861	1775	*	5275	52
+       0	*	*	*	*	*	0	8722	0	1018	
+
+I 53   6887	*	*	*	7145	*	*	1721	*	1742	5200	*	*	*	6639	*	*	1535	*	*	53
+       0	*	*	*	*	*	0	8722	0	1018	
+
+M 54   5537	7285	*	6234	3382	7171	7236	3943	*	2814	1121	*	*	6707	*	5551	7529	3846	5577	4171	54
+       0	*	*	4322	74	0	*	8722	1018	1018	
+
+G 55   6391	*	6701	*	*	66	*	*	*	*	*	*	*	*	*	6214	*	*	*	6667	55
+       0	*	*	*	*	*	*	8734	0	0	
+
+R 56   3043	6639	*	*	*	7537	6214	*	4273	6422	7749	6580	*	7108	641	4442	5284	6141	5940	5595	56
+       0	*	*	*	*	*	*	8734	0	0	
+
+K 57   5253	*	*	6299	*	4865	4531	*	1800	6818	*	2703	6701	7107	2136	4441	3866	4026	*	6213	57
+       25	*	5881	*	*	*	*	8734	0	0	
+
+T 58   5781	5771	*	*	*	6190	6206	7188	*	4919	4661	*	*	*	*	3409	416	6236	*	*	58
+       0	*	*	*	*	*	0	8691	0	1105	
+
+W 59   5967	*	6514	*	1976	*	7364	5956	*	4703	6355	*	*	*	*	6932	*	5896	2812	1063	59
+       12	6874	*	0	*	867	1147	8691	1003	1105	
+
+E 60   4670	*	2632	1255	5712	5852	5822	7772	4694	4413	7401	4639	6602	3866	4003	7073	4783	7589	*	*	60
+       37	5655	7579	1403	685	*	0	8725	1100	1008	
+
+S 61   3331	*	4707	4376	7380	3679	5342	5276	5650	3807	3987	6179	7082	4244	5409	1935	4466	4137	5321	4675	61
+       75	4770	6174	1758	506	0	*	8725	1442	1063	
+
+I 62   4555	5445	5386	5560	3136	6344	7314	2384	6304	2519	2345	7573	5899	7244	*	6840	5113	4038	4842	5673	62
+       160	3980	4594	935	1068	0	*	8706	1736	1061	
+
+P 63   3463	*	6262	4943	5168	2962	4822	4424	5284	3954	5253	6534	1861	4518	4101	3734	6538	4824	*	*	63
+       397	4612	2324	2357	313	2401	303	8741	1367	1552	
+
+Q 64   3031	5909	3467	3348	*	2606	5475	6617	3468	5254	*	5330	3613	4227	4471	3875	4147	5100	*	*	64
+       1915	1310	1593	1401	687	2381	307	8256	3490	3436	
+
+K 65   4349	*	3616	4293	6540	2364	5335	6550	2961	4724	6577	3500	4096	*	3179	3791	5252	5493	5432	*	65
+       373	2816	3546	1203	822	1068	935	7855	1641	4965	
+
+F 66   4212	*	4482	3502	2983	3130	4720	5176	4301	4258	5121	5329	4834	5034	5793	5428	4880	3964	*	2784	66
+       163	3507	5736	1471	645	682	1409	7988	1666	3903	
+
+R 67   5052	*	5482	4249	5417	4595	7403	6801	3301	5000	7388	4591	6881	4808	2517	5459	*	*	1432	5461	67
+       96	4582	5482	2269	336	1114	894	8205	1362	2323	
+
+P 68   3843	*	4362	5263	6294	4421	5848	5072	4387	4486	6093	6813	1157	4559	5186	4477	5573	5309	*	5406	68
+       358	2311	5787	3391	144	376	2123	8626	2865	1910	
+
+L 69   6772	*	6502	5597	3635	4928	6288	4867	5658	1415	5039	7626	4750	6348	5539	6058	5343	6300	4417	2334	69
+       31	7360	6029	2128	375	1055	947	8379	1079	1383	
+
+P 70   3327	7210	4750	3901	*	3589	5416	6571	3027	5756	6139	3921	2090	4775	4014	5180	5176	4822	*	5203	70
+       119	3654	*	3232	162	341	2247	8719	1698	1327	
+
+D 71   3628	*	2780	4124	*	2141	4678	7476	4114	6938	7163	2401	5921	4980	4792	4122	6481	6067	7330	6860	71
+       28	5692	*	1765	503	*	0	8738	1152	1013	
+
+R 72   3986	7351	6191	7714	5206	5323	6468	4669	3189	4498	4423	6860	4106	5534	1500	5157	3942	3966	7331	7966	72
+       42	5116	*	2283	332	0	*	8738	1241	1013	
+
+L 73   4788	*	3862	3822	6521	*	4705	3133	3323	4029	5417	6291	2514	5112	3577	4653	3752	4382	*	6157	73
+       41	5156	*	2000	415	*	*	8450	1209	0	
+
+N 74   4972	4477	6445	7277	4575	*	4221	5030	2376	5585	5907	2321	6484	5058	3977	4329	4064	3126	*	5642	74
+       32	6224	6910	2000	415	*	*	8450	1044	0	
+
+I 75   5272	6196	*	*	3092	*	4653	2034	*	3759	6839	7177	6890	*	6362	*	5195	1999	6624	2630	75
+       7	7634	*	2322	322	*	0	8742	1000	1008	
+
+I 76   6773	*	*	*	*	*	*	2429	*	4587	*	*	*	*	*	*	6036	418	*	*	76
+       39	6953	5750	594	1568	0	*	8742	1086	1008	
+
+L 77   3770	5239	6356	*	3037	6796	*	2877	*	1847	5579	6791	*	*	*	6784	7079	1815	*	6324	77
+       13	*	6835	0	*	537	1687	8419	1061	1121	
+
+S 78   6174	6951	5241	6836	*	5269	7347	*	*	*	7175	*	*	*	*	779	1687	6559	*	*	78
+       27	6742	6784	2446	292	*	0	8742	1052	1068	
+
+R 79   4282	*	4145	*	*	5335	2641	6946	3645	*	*	7005	*	6300	1810	2471	3099	6590	*	7422	79
+       42	5483	7227	1314	742	744	1311	8745	1297	1162	
+
+S 80   5418	*	3942	5432	*	5349	4263	*	3293	*	*	3761	*	3363	3100	2555	2077	*	*	6076	80
+       156	4757	3926	1142	871	*	0	8438	1428	1107	
+
+Y 81   4622	6384	4630	5618	5665	4021	4758	5412	3140	1936	4781	4391	2995	6013	4827	4468	5057	5872	*	5816	81
+       254	3689	3575	1900	450	1913	445	8351	1780	1949	
+
+E 82   3687	*	3264	4223	5385	4754	5102	4228	3116	4181	5677	5098	3520	3836	4575	3251	3809	6433	*	6073	82
+       464	5342	1997	1722	521	1300	751	8286	1234	2474	
+
+N 83   4094	5486	4628	3461	5377	4164	5109	4417	4256	3139	*	4688	3186	4207	4225	4188	4130	4192	*	4529	83
+       682	3680	1744	511	1745	995	1005	8210	1550	3733	
+
+E 84   2883	5786	2836	2482	4495	3563	5258	4886	4902	3587	6930	5256	4371	6871	5304	4937	4345	7248	*	5910	84
+       616	1961	3459	1850	469	576	1603	8145	2679	4373	
+
+I 85   3368	*	3144	3076	7366	5335	4895	5293	4350	4232	*	4221	4552	3553	5995	3567	3423	4068	5715	5271	85
+       243	4030	3416	2398	303	799	1234	8143	1795	2878	
+
+I 86   3578	6910	3498	3810	6419	4115	6406	5012	4557	3108	*	4800	3154	5062	4427	3793	4206	3935	4176	7441	86
+       353	3910	2733	1708	527	1004	996	8260	1982	2645	
+
+D 87   3888	6868	3766	4168	5382	3937	5896	5525	4683	3657	6395	4112	3125	5003	4192	3952	5206	4412	2921	6987	87
+       115	3889	6768	428	1961	413	2006	8303	1597	2922	
+
+D 88   3669	7150	2876	3060	*	3615	4615	7309	4865	*	*	3275	2772	4266	4613	3827	4815	7229	4845	7580	88
+       111	4014	6326	419	1987	1324	735	8348	1506	1545	
+
+N 89   5705	6096	2772	4200	5888	2467	5153	6024	4564	5083	*	2239	4389	5630	3878	5339	4233	7087	*	5686	89
+       189	3318	5466	1967	426	688	1398	8337	1958	1499	
+
+I 90   3068	5603	5081	4938	4472	6418	6895	3100	5950	4299	5685	6095	7556	*	4847	3767	2999	2005	5659	7027	90
+       171	3676	4906	1528	615	537	1685	8403	1789	1360	
+
+I 91   5997	7021	*	3411	4068	5727	4868	3820	4546	3405	*	4793	5214	4856	3619	5197	2325	3470	7497	4051	91
+       43	5086	*	1698	531	363	2168	8457	1325	1526	
+
+H 92   6238	*	6199	7427	2546	6363	5068	2993	4856	2451	7277	6581	5475	5789	5981	*	5048	2017	5966	4492	92
+       45	5231	7822	518	1730	1005	995	8442	1204	1065	
+
+A 93   3725	4366	5074	5125	3415	4834	4628	3162	*	3642	5931	7267	*	5883	6379	5047	3316	2137	5700	5190	93
+       204	2925	*	532	1698	583	1588	8433	2286	1133	
+
+S 94   4101	6854	3398	4226	*	3148	4301	5354	3898	6390	*	3565	3894	5471	4057	2520	3836	6025	7160	5904	94
+       646	1469	*	125	3591	*	0	8445	3867	1000	
+
+S 95   6173	7432	1751	4029	5762	3951	7477	*	4584	6787	6961	3250	4407	6390	5957	2215	4502	5910	7156	6480	95
+       54	5045	7293	3741	112	0	*	8445	1250	1000	
+
+I 96   4175	*	5237	6373	3840	7109	*	2638	7260	1787	6368	7327	3170	*	7133	5319	5190	2863	5086	5946	96
+       24	6891	6907	1000	1000	0	*	8424	1012	1107	
+
+E 97   2949	6279	3252	2259	6674	6797	5122	5402	4593	4131	6824	6614	3754	4407	4266	4156	4085	4045	*	7373	97
+       0	*	*	0	*	0	*	8443	1008	1008	
+
+S 98   3151	*	2815	1979	*	4389	5968	*	4441	6406	7428	5633	5672	3703	5940	2874	3963	5325	*	7376	98
+       24	7053	6805	1000	1000	*	*	8454	1000	0	
+
+S 99   1587	6923	*	3757	3842	5904	6797	3558	5429	2579	6839	6904	*	5701	5757	5522	4820	3582	*	5753	99
+       9	7267	*	0	*	*	0	8425	1000	1006	
+
+L 100  5137	5365	5538	6435	4446	*	6797	1749	*	2034	4563	*	7531	7358	6462	6368	*	2056	*	*	100
+       100	4618	5236	3292	155	*	0	8425	1365	1006	
+
+N 101  2606	7057	4509	2551	*	5220	5063	7462	3174	5479	7451	3736	7397	3907	3016	3713	4558	6031	*	7166	101
+       37	7703	5587	1000	1000	1624	566	8344	1005	1385	
+
+L 102  3925	*	4480	2652	4334	4730	5726	4297	3167	3110	7655	5315	*	3556	3481	4269	6540	4997	5922	5009	102
+       497	1829	6619	1534	611	1109	898	8320	3800	1477	
+
+V 103  2628	6232	6292	4468	4569	6352	6351	4196	3889	1520	5982	5203	7518	5761	4006	6526	5389	4401	7618	6230	103
+       727	1489	4661	1665	546	1206	820	8384	4232	1570	
+
+S 104  4194	*	4677	2805	*	4792	5312	6301	2345	6252	5799	3701	4745	3721	3557	3406	4629	5141	*	5433	104
+       494	1814	7489	1134	877	921	1083	8353	3498	1702	
+
+D 105  3669	*	3971	3139	7403	2191	5553	7533	4826	7154	*	4608	3241	4031	4458	3512	3594	5247	*	*	105
+       77	5244	5293	188	3031	0	*	8381	1307	1363	
+
+V 106  4310	7419	2763	3988	5749	2004	5794	2951	5300	4754	*	4679	5401	*	5235	5392	4270	4325	*	4609	106
+       103	4408	5515	1566	594	0	*	8448	1722	1257	
+
+E 107  5669	*	3580	3289	*	2450	7008	*	2248	*	*	3672	5012	3810	3521	4062	4394	6431	*	7294	107
+       28	5703	*	381	2107	622	1513	8419	1266	1148	
+
+R 108  5275	*	1802	3205	6483	5417	4739	5447	3664	5805	6263	3709	4296	5210	3615	4040	4081	6288	*	7492	108
+       36	5762	7267	1736	515	0	*	8425	1112	1006	
+
+V 109  3898	*	*	*	*	*	7444	1370	6909	2544	5734	7217	6520	6967	8195	*	4964	1915	6795	7267	109
+       68	8195	4542	1000	1000	0	*	8445	1022	1000	
+
+F 110  3345	5137	*	*	2510	*	7136	3448	7276	4118	5278	6449	*	6430	*	5165	7430	3671	2145	2759	110
+       71	7260	4587	3907	100	0	*	8421	1006	1370	
+
+I 111  5923	5214	*	6768	7457	6233	*	1827	*	2482	5316	*	*	*	7374	6378	*	1236	*	*	111
+       96	6872	4166	558	1641	0	*	8407	1098	1333	
+
+I 112  3773	4266	5817	4639	4023	5402	5170	1754	*	3151	4778	*	*	7439	*	4185	5847	2831	5427	5909	112
+       10	*	7205	*	*	0	*	8430	0	1552	
+
+G 113  4677	6400	5302	*	6771	181	*	*	*	6904	*	7413	*	*	*	5782	*	*	*	*	113
+       21	*	6090	*	*	0	*	8450	0	1026	
+
+G 114  7499	7138	6244	*	*	317	*	*	*	*	*	*	*	*	6911	2779	5841	*	*	*	114
+       0	*	*	*	*	0	*	8426	0	1061	
+
+A 115  1670	*	*	4887	7888	1763	5755	5876	4841	4996	7071	7262	4032	6019	5960	3673	4935	4888	*	*	115
+       0	*	*	*	*	*	*	8454	0	0	
+
+E 116  3937	*	4293	2616	6439	3140	*	5344	3941	*	7479	5339	6528	3043	4253	2798	3041	6315	*	6255	116
+       9	*	7276	*	*	*	*	8454	0	0	
+
+I 117  6238	*	*	*	5111	6410	*	2290	*	1333	4802	*	*	*	*	*	3347	2325	6519	*	117
+       11	*	7063	0	*	0	*	8445	1000	1000	
+
+Y 118  2276	6212	*	*	3767	7416	5454	2989	*	3713	*	6269	*	7344	*	5837	4671	3116	7480	1842	118
+       0	*	*	*	*	0	*	8445	0	1000	
+
+N 119  2718	*	3802	4041	*	3564	5852	6123	3506	7397	6279	4307	7101	3031	3149	3581	3618	5903	6801	6812	119
+       0	*	*	*	*	*	*	8454	0	0	
+
+E 120  2674	*	4784	2431	7534	6591	*	*	5593	3131	7175	6828	5451	2344	4854	2881	4763	6710	6441	7132	120
+       17	*	6439	*	*	*	*	8454	0	0	
+
+L 121  2402	4152	*	*	1917	6545	7150	6378	*	1690	4377	6818	*	7310	*	5880	5821	6205	*	4696	121
+       23	*	5958	0	*	0	*	8435	1048	1048	
+
+I 122  4305	*	5999	6898	4333	*	7289	2519	7154	1025	3492	*	*	*	*	5409	6507	4886	5979	5416	122
+       418	7453	2025	0	*	*	0	8442	1059	1136	
+
+N 123  2860	*	3175	2375	6251	*	7027	6216	2868	6719	7395	4008	6219	4079	2531	5450	6921	5770	*	6067	123
+       13	*	6758	*	*	4090	87	8056	0	3887	
+
+N 124  1758	*	5466	3125	*	5551	3165	*	5937	2881	5686	4082	6805	4274	4186	4595	5032	*	6873	7057	124
+       22	*	6046	*	*	52	4807	8084	0	3829	
+
+S 125  5293	*	2434	3970	*	1488	5552	*	4838	*	7445	3949	3239	4461	4814	4951	7383	*	*	5872	125
+       0	*	*	*	*	1118	891	8444	0	1195	
+
+L 126  4326	6021	7199	5899	4308	*	3792	4064	5741	1054	4598	*	7333	7570	4239	6486	*	5649	6250	3673	126
+       52	6223	5515	2069	393	1396	690	8444	1120	1073	
+
+V 127  2843	3821	*	*	6783	*	*	1893	*	2994	5952	*	7240	6988	*	5576	6006	1769	6508	6121	127
+       9	7262	*	888	1121	1787	494	8419	1136	1336	
+
+S 128  *	7033	549	5320	*	7218	4846	*	5358	*	*	3833	*	5055	7182	4573	4126	*	*	6408	128
+       0	*	*	*	*	526	1710	8441	0	1220	
+
+H 129  5383	7751	4373	989	*	6502	6078	6026	4370	5596	*	6295	*	4221	2992	4435	4488	5925	*	6669	129
+       0	*	*	*	*	*	0	8441	0	1018	
+
+L 130  5395	6248	*	*	3238	7761	*	2084	*	1729	4249	*	*	*	*	*	*	2834	6229	3201	130
+       0	*	*	*	*	*	0	8441	0	1018	
+
+L 131  5942	7334	7485	4313	3544	6151	2748	3080	6133	3613	7285	7759	*	4476	3575	*	4171	3818	4265	2832	131
+       0	*	*	*	*	*	0	8441	0	1018	
+
+I 132  5395	6156	*	7163	4370	*	6415	2019	7200	1142	4670	*	*	7454	6811	*	7321	3041	*	7197	132
+       14	6657	*	2807	222	*	0	8441	1032	1018	
+
+T 133  5091	6149	5006	6513	3941	6132	5366	4736	5022	4722	5527	4587	*	5155	6371	2629	1444	4890	6471	5216	133
+       0	*	*	3170	170	1112	896	8406	1018	1122	
+
+E 134  *	*	6429	4753	5589	*	5357	1804	3774	3196	5951	*	*	7471	2924	5550	3490	2698	7060	6391	134
+       21	6561	7986	2322	322	*	0	8400	1045	1032	
+
+I 135  3260	4850	*	7647	4540	6326	3827	1771	*	4061	5793	5061	*	*	6554	6395	7426	1919	7005	5124	135
+       7	*	7743	*	*	*	0	8366	0	1165	
+
+E 136  6045	6556	3992	4174	5826	6516	3858	*	4749	6221	5471	4292	814	5756	*	6022	*	6246	*	5776	136
+       36	5350	*	1494	633	*	0	8436	1216	1283	
+
+H 137  3772	7522	6436	5089	7215	3726	4647	3842	4407	4077	6567	5587	6727	5235	4431	4537	3890	1687	*	4403	137
+       15	*	6558	1000	1000	1785	494	8082	1032	1283	
+
+P 138  3822	*	3544	3507	4781	7476	5315	3189	7660	2467	4793	4854	6527	5960	5935	3608	4053	2869	*	*	138
+       3656	*	119	*	*	1334	729	8085	0	1263	
+
+S 139  2920	*	2049	3147	*	*	3139	*	*	*	*	*	*	*	*	3097	2726	*	*	2924	139
+       461	*	1871	*	*	5416	34	3904	0	6557	
+
+P 140  *	*	3101	*	*	*	3158	*	2927	*	*	*	1460	*	*	2897	*	2813	*	*	140
+       446	1912	*	2149	369	4848	51	3807	1199	6552	
+
+E 141  2460	3580	3428	2485	*	*	*	*	2491	*	*	*	*	2393	*	*	3398	*	*	*	141
+       0	*	*	*	*	6612	15	4466	0	6435	
+
+S 142  2542	*	*	*	*	3572	*	3239	3276	*	*	*	2661	*	*	3744	2796	3746	3576	*	142
+       129	3544	*	0	*	15	6602	4780	1038	6400	
+
+I 143  3629	7241	*	6240	2679	6342	7106	3799	7568	1683	*	7144	4222	*	5031	6908	6267	2919	*	3471	143
+       936	1109	6204	25	5856	0	*	8104	3994	1014	
+
+E 144  4185	*	3015	2052	*	3130	3870	*	3907	6825	*	4762	5608	3467	4738	4109	3664	*	*	*	144
+       95	4273	6347	399	2049	0	*	8081	1454	1100	
+
+M 145  3391	2826	6853	6668	*	589	6378	*	*	*	5728	*	*	*	*	6127	6067	6741	*	6538	145
+       43	5679	6668	1498	631	*	0	8084	1116	1048	
+
+D 146  4939	*	1169	5912	*	5467	6146	4010	4108	4235	7297	4698	4443	5707	4046	7318	4214	3935	*	*	146
+       41	6020	6340	1000	1000	1023	977	8080	1247	1170	
+
+T 147  4069	*	*	6884	*	5524	6697	4900	5349	5538	6823	7155	2916	6984	1963	4222	2362	2643	*	*	147
+       21	*	6144	*	*	*	0	8059	0	1155	
+
+F 148  4750	6464	6799	*	1714	*	5662	4458	5655	1876	4301	*	4993	*	5783	7681	*	5941	5695	2843	148
+       43	*	5088	*	*	1649	554	8021	0	1259	
+
+L 149  4880	*	*	*	796	7091	*	4322	*	2727	4218	6476	*	*	*	6712	6628	4822	5268	4804	149
+       85	4639	5872	833	1189	353	2206	7999	1509	1400	
+
+K 150  4269	*	3700	4122	*	3819	5647	6189	4626	*	*	4403	1033	5588	5334	4586	5187	5800	*	*	150
+       98	3929	*	717	1352	787	1250	8018	1613	1175	
+
+F 151  4242	6933	2535	2965	5251	3329	6742	4895	4650	4199	4697	3955	4142	4595	4770	3910	5336	4891	*	6293	151
+       2261	365	6066	321	2327	*	0	7913	5284	1032	
+
+P 152  4148	6793	1857	3493	4966	4200	6274	4882	4773	3564	6661	3698	3958	4298	5208	4568	4962	*	*	6392	152
+       409	2173	5316	675	1419	355	2196	7736	2372	1397	
+
+L 153  4191	*	3329	3368	5804	6818	*	6810	5071	2867	5800	5184	2603	4997	4596	3233	3817	4899	5661	4920	153
+       149	3875	5051	845	1174	354	2202	7771	1527	1245	
+
+E 154  3500	6065	3344	4292	5589	4333	4469	4307	5052	4276	*	3775	4427	4488	3754	3212	3757	3877	*	6485	154
+       16	*	6501	*	*	0	*	7761	0	1204	
+
+S 155  3482	*	3136	3828	5364	4694	*	6845	3791	5652	6422	2860	3936	3324	3378	3804	4507	5647	*	5934	155
+       90	4042	*	1499	630	0	*	7786	1536	1018	
+
+W 156  6406	*	*	6561	2051	*	*	6347	*	1667	*	*	*	6332	*	*	*	4753	1833	3661	156
+       29	6406	6911	3000	193	*	*	7805	1017	0	
+
+T 157  4352	*	5530	2001	*	7155	4410	5662	2514	*	*	*	6311	3546	2886	3837	3533	5123	6376	*	157
+       41	*	5171	*	*	*	0	7807	0	1016	
+
+K 158  *	*	*	4112	4690	*	6672	3974	3948	1018	4860	*	5094	*	4601	4830	6354	3071	*	*	158
+       101	*	3884	*	*	1373	704	7758	0	1285	
+
+Q 159  5135	6385	5882	4397	*	4631	5574	2823	4451	3296	6020	5058	*	3279	4672	3665	3488	2401	*	*	159
+       21	*	6089	*	*	*	0	7670	0	1724	
+
+P 160  3645	6631	2862	2803	*	3805	6756	6141	3782	5018	*	4763	5088	4267	4692	2146	4968	*	*	5976	160
+       33	5462	*	2000	415	2940	201	7633	1121	1837	
+
+K 161  4158	5622	4943	4757	*	6151	4275	6227	3465	6639	*	4852	6448	3849	3641	2361	2586	3223	*	6551	161
+       35	6656	6160	1000	1000	2784	226	7670	1000	1724	
+
+S 162  4238	*	4385	2645	6195	5484	5395	5711	2821	5636	6468	6866	*	3072	2974	3428	3468	4335	*	*	162
+       72	5610	5144	992	1008	*	0	7559	1083	1697	
+
+E 163  3372	*	4003	2781	5802	7011	4480	*	4249	*	*	4653	5121	3770	3151	3152	2914	3775	*	*	163
+       297	*	2426	*	*	3044	186	7461	0	1978	
+
+L 164  *	*	5238	4174	3062	4251	2944	2741	5338	2047	*	*	5556	*	*	4155	5149	*	5071	3959	164
+       844	4790	1298	2585	263	4221	80	5220	1059	2434	
+
+Q 165  *	*	*	1839	*	*	*	3319	4592	3257	*	4167	*	2706	2186	*	*	4457	*	*	165
+       156	4304	4270	2322	322	3687	117	4648	1007	3224	
+
+K 166  3274	4247	2670	1700	*	4527	*	*	3020	4236	*	*	*	4102	4448	*	4176	*	*	*	166
+       106	*	3814	*	*	4773	54	4713	0	3122	
+
+F 167  4156	*	*	*	2063	*	*	4156	*	3110	4206	*	*	*	4380	*	4400	3229	1855	*	167
+       84	4139	*	0	*	2723	237	4594	1016	3144	
+
+V 168  *	*	*	*	4225	4225	4559	2024	*	2983	*	*	3134	*	*	*	1901	3371	*	*	168
+       591	3581	1985	1585	585	2583	263	4741	1121	2847	
+
+G 169  3464	*	4141	3292	*	1978	4181	*	4291	*	*	*	3493	4345	4359	4228	4083	4388	4513	*	169
+       407	4651	2280	1000	1000	*	0	4663	1084	2949	
+
+D 170  *	*	2879	3779	3099	*	*	3903	*	2800	*	*	2892	*	3795	*	3961	3032	*	3820	170
+       466	3727	2317	1000	1000	2561	268	4328	1052	3187	
+
+T 171  3936	*	2834	3222	*	2930	3926	3920	*	*	*	4065	*	*	*	3992	2332	*	*	3280	171
+       99	*	3920	*	*	*	0	4615	0	3104	
+
+V 172  3852	*	*	*	*	*	3797	2441	*	4444	*	*	*	*	*	4120	*	808	*	*	172
+       108	3797	*	1000	1000	1017	983	4327	1049	3187	
+
+L 173  3352	*	3782	3342	*	3976	*	5072	3691	3385	5106	4808	1632	*	*	5401	5817	*	*	4819	173
+       26	*	5817	*	*	1483	639	5304	0	2151	
+
+E 174  2133	5031	3989	2388	*	*	5267	5288	3816	4978	*	4098	*	3553	*	3188	*	3648	*	*	174
+       492	4989	1956	2585	263	2680	245	5477	1049	1806	
+
+D 175  4729	*	2112	2729	*	1966	*	5090	4887	*	*	*	*	4692	*	3588	3282	*	*	4779	175
+       610	3715	1895	2528	275	2699	241	5162	1117	2400	
+
+D 176  4682	*	3713	4447	*	4216	*	3447	3500	3474	4690	4739	4491	4571	4471	2961	3555	3417	*	*	176
+       128	4854	4313	1936	437	879	1131	4921	1202	2664	
+
+I 177  *	*	2616	3417	5131	5427	4112	3505	4481	5237	4986	4283	*	2343	*	3612	3615	5019	*	*	177
+       131	3531	*	1272	772	241	2702	5463	1225	1852	
+
+K 178  5654	*	2668	2415	*	4292	5299	5565	2865	4849	*	3707	6009	4589	*	3067	3147	*	*	*	178
+       0	*	*	*	*	*	0	5778	0	1076	
+
+E 179  *	5292	2391	1387	*	5230	*	*	4202	*	*	3028	5643	6009	3560	5824	4057	*	*	*	179
+       24	5937	*	1000	1000	0	*	5778	1000	1076	
+
+G 180  4547	*	2883	4274	*	2862	3701	*	5609	5312	*	2072	4486	5495	4929	3697	3768	5513	*	*	180
+       61	*	4599	*	*	*	*	5843	0	0	
+
+D 181  3230	*	3470	3546	4445	1673	4427	*	3545	5978	*	5384	4622	5429	*	5470	4804	5789	*	4447	181
+       30	5606	*	0	*	0	*	5799	1012	1078	
+
+F 182  5655	*	4531	4499	2704	*	4676	4084	*	2999	*	5536	*	*	5369	*	4079	2249	5512	2483	182
+       103	4488	5369	2837	218	*	*	5843	1117	0	
+
+T 183  4130	5598	3517	3435	*	2592	*	5482	4461	*	*	3207	3300	5288	4059	3082	3392	*	*	*	183
+       0	*	*	*	*	0	*	5810	0	1000	
+
+Y 184  5425	3952	*	*	1638	*	4724	3512	*	5321	*	*	*	*	*	*	*	4007	*	1403	184
+       0	*	*	*	*	*	*	5843	0	0	
+
+N 185  *	*	3632	2998	*	*	4494	5291	3832	5808	*	4032	*	3735	3600	2594	2724	5638	*	3636	185
+       0	*	*	*	*	*	*	5807	0	0	
+
+Y 186  *	*	5904	*	1103	*	4320	2313	*	5633	3962	*	*	*	*	*	*	4641	5314	3097	186
+       0	*	*	*	*	*	*	5807	0	0	
+
+T 187  4587	5580	3889	2554	4487	*	4131	4741	5638	5904	5461	5676	*	3114	4443	4667	3863	2701	5527	4773	187
+       0	*	*	*	*	*	*	5807	0	0	
+
+L 188  *	*	*	3572	*	*	4838	4521	3803	2843	5314	4090	*	*	4609	*	1802	2577	5567	5265	188
+       0	*	*	*	*	*	*	5807	0	0	
+
+W 189  *	*	*	*	3588	*	*	*	*	3077	*	*	*	*	5808	*	*	*	2296	794	189
+       60	5695	5529	0	*	*	*	5807	1007	0	
+
+T 190  5454	5432	*	2404	5347	*	*	3859	3382	5772	5105	5474	*	4587	3336	4897	3142	2357	*	5430	190
+       31	5551	*	0	*	0	*	5749	1005	1003	
+
+R 191  5272	*	5601	5624	*	*	5905	*	1872	*	*	3519	3657	4422	1217	*	*	*	*	*	191
+       0	*	*	*	*	*	*	5685	0	0	
+
+K 192  4132	*	*	2834	*	*	*	*	1608	4239	*	3751	4071	3580	3074	3548	*	*	*	*	192
+       0	*	*	0	*	*	*	5293	0	0	
+
+//
+�HHsearch 1.5
+NAME  d5222617b3ccb99da7e3ec0bb92c4cb5
+FAM   
+FILE  d5222617b3ccb99da7e3ec0bb92c4cb5
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:03:46 2013
+LENG  147 match states, 147 columns in multiple alignment
+FILT  138 out of 1740 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  10.7
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CHHHHHHHHHHHHHHCCCCCCCCCHHHHHHHHHHHCCCCCHHHHHHHHHHHCCCCCCCCCCCHHHHHHHHHHHHHCCCHHHHHHHHHHHHHHCCCCCCCC
+CHHHHHHHHHHHCCCCCHHHHHHHHHHCCCCCCCCCHHHHHHHHHCC
+>ss_conf PSIPRED confidence values
+9899999999999977899994879999999998578888999999999864345768857599999999998722422268999999998675899838
+69999999999489999999999998647899909399999998639
+>Consensus
+xxxxxxxxxxxFxxxdxxxxgxixxxexxxxlxxlxxxxxxxxxxxlxxxxxxxxxxxgxixxxefxxxlxxxxxxxxxxxxxxxxxxfxxxDxxxxgxI
+xxxelxxxlxxxgxxxxxxxxxxxxxxxxxxxgxixxxefxxxxxxx
+>d5222617b3ccb99da7e3ec0bb92c4cb5
+SKAAADDFKEAFLLFDRTGDAKITASQVGDIARALGQNPTNAEINKILGNPSKEEMNAAAITFEEFLPMLQAAANNKDQGTFEDFVEGLRVFDKEGNGTV
+MGAELRHVLATLGEKMTEEEVEELMKGQEDSNGCINYEAFVKHIMSV
+>gi|125532611|gb|EAY79176.1| hypothetical protein OsI_34285 [Oryza sativa Indica Group]
+TEDELIYIRAQYNLLEPsSTDGRLCIENFRMALLQnSTDAMKESRALDILNALEPL--AYRRMDFEEFRAATISPYQLEALsRWEEIAGTAFEYFEQEGN
+RPITIEELAQVPTVSPKKQpqkklpqmgaegrKCRSVFYFCRTmVRRhfivlrtinkcfQYPRLSLIpGNLEMLNT-
+>gi|312380158|gb|EFR26239.1| hypothetical protein AND_07834 [Anopheles darlingi]
+-----RKVCFGLSKTPVPRKVVPPSKLLVLLLDRCRRPIVRSSSQ-------------------------------------------------------
+-----------------------------------------------
+>gi|145501910|ref|XP_001436935.1| hypothetical protein [Paramecium tetraurelia strain d4-2]gi|124404080|emb|CAK69538.1| unnamed protein product [Paramecium tetraurelia]
+-------LLKIFKFFDLTNQGFLKKQDFLKAIAKSGVtITEQEFAEKLWSHYSDG--V--QLNYKDFINRVVIKDSYQEdfsesriiASPLESLRakiql
+kgalgllnlaISLP-------NQFNCQQLQDYLRRQDID-----IEGLHQLfNGE---FMSQANLIGLIK--
+>gi|307187651|gb|EFN72623.1| EF-hand domain-containing family member C2 [Camponotus floridanus]
+-QPVYNEFIQMY--appkDTKDDIQILEYGKFKEALHQYlGDKITEHEIITIAR--yySSHE-KI-eHk-S-rEYVRQLLHTE-lYRFLWHDLDRL---k
+edL-----hhwdkDRTGFLPR-----------eslytilrgcrVPV--dvELLNSMLDHLcKAEDg---------------
+>gi|32394789|gb|AAN08425.1| phospholipase C-delta1 [Misgurnus mizolepis]
+-------IYSCMRKSDKDFDKKMSPKELKSFLQSINIEVDDDYAKILFEKCDTS--KSGFIEGKEIERFYKILTHRE------EIDVIYGEYAKTG-SLM
+STTDLLNFLLKEQKDsaSQTD-ALQLIDKyELDEDAKakqlMTKDGFLMYLHQ-
+>gi|258593894|emb|CBE70235.1| putative signal transduction protein with EFhand domain [NC10 bacterium 'Dutch sediment']
+VQSMQQFKERMFSRIDSDGSGGVDKTEFSDLAKKMSEmSGSSPNVEDVYSKYDAN--GDGALSADELNSFMKD--NAPAPPPMNgpmegrgmqgRLEGLF
+SKIDTDTDGGISKSEFGVFAENIRErKGDSIDGDKVFSVyDTDGDGSLSADELNSFMKDN
+>gi|332227145|ref|XP_003262752.1| PREDICTED: calpain-14 isoform 2 [Nomascus leucogenys]
+-EDQNERQNEFFTKFFEKYP-EINAVQLQNLLNQMTWSslgsrqpfFSLEACQGILALLDLN--ASGTMSIQEFRDLWKQL---------KLSQKVFHKQ
+D-HGSGYLNWEQLHAAMREAGIMLSDDVCQLMLIRYGGPRLQMDFVSFVHLMLR-
+>gi|281211821|gb|EFA85983.1| hypothetical protein PPL_01216 [Polysphondylium pallidum PN500]
+------------------------------------------------------------------------------TAAAAAATSSNNNNNSEsnaes
+gEQSPLLHSEHQHLpvdVK-gIGL-------------------------------K-
+>gi|168033621|ref|XP_001769313.1| predicted protein [Physcomitrella patens subsp. patens]gi|162679419|gb|EDQ65867.1| predicted protein [Physcomitrella patens subsp. patens]
+--------QQVYRYFDRTNSGCISFRQYAVGIAYVSShLRFKEAVVAAYNFCGGE--ENDLPDEPTLLRSLRVLIPSVSK---QQVKmivfwavpALCAQ
+LTNHEEVDVEVyeftcidgtqvlastdncslygrftcf---------------------------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+S 1    *	*	*	*	*	*	*	*	5023	*	4945	3041	3966	4713	*	1315	1684	*	*	*	1
+       0	*	*	*	*	*	*	8079	0	0	
+
+K 2    3735	*	2830	2468	*	*	*	*	2688	5654	5925	*	3197	2820	4774	3601	5511	5609	*	*	2
+       0	*	*	*	*	*	*	9128	0	0	
+
+A 3    4935	*	2370	1944	5741	*	*	*	4072	3777	*	6105	4573	3231	3539	3963	5893	4927	*	*	3
+       0	*	*	*	*	*	*	9588	0	0	
+
+A 4    3741	*	4045	2337	*	*	3466	*	3836	4915	5126	4405	*	1722	3953	*	*	5080	*	*	4
+       0	*	*	*	*	*	*	9781	0	0	
+
+A 5    4696	*	*	4053	*	*	*	2298	3146	2207	5229	6451	5199	4664	3952	4634	4796	3395	6213	6162	5
+       0	*	*	*	*	*	*	9826	0	0	
+
+D 6    3239	*	3201	2808	*	*	*	4282	2593	4912	*	4522	6280	3169	2930	4173	6452	6288	*	6191	6
+       35	6099	6699	3807	107	*	*	10005	1064	0	
+
+D 7    3400	*	3852	1899	6454	*	6486	5274	3038	4850	6619	4556	*	4929	3746	4221	3953	5466	*	4006	7
+       14	*	6702	*	*	0	*	10060	0	1000	
+
+F 8    3994	5727	6750	*	3115	*	*	2664	6463	1549	4759	6629	*	*	5685	6677	6470	2910	5525	4631	8
+       29	5653	*	0	*	*	0	10568	1206	1000	
+
+K 9    4680	7318	5222	3321	5218	6824	4188	5827	2677	3894	4482	*	6741	3257	2643	3799	4822	4246	6782	6911	9
+       0	*	*	*	*	0	*	10646	0	1000	
+
+E 10   3840	6366	2895	2875	7336	5161	5046	6834	2876	5172	4762	4365	*	3347	3351	4614	4460	4854	*	7034	10
+       36	5330	*	3164	171	*	*	10648	1319	0	
+
+A 11   3192	5491	6963	5219	3768	4911	*	2422	4752	2429	4713	7144	*	5769	3975	5236	6077	3272	6060	5034	11
+       0	*	*	*	*	*	*	10678	0	0	
+
+F 12   6730	5991	*	6684	579	*	*	6935	*	3611	6822	*	7003	*	*	7002	*	5204	4322	3266	12
+       0	*	*	*	*	*	*	10703	0	0	
+
+L 13   3476	6935	3776	3919	6582	5761	4598	5289	3039	5042	5484	3208	6777	3221	3714	3194	4862	5438	6815	5930	13
+       12	6935	*	578	1600	*	*	10767	1265	0	
+
+L 14   4267	5683	5906	3052	7037	5934	5419	3754	3044	2308	4561	4426	*	4620	4251	3603	5854	5508	*	4534	14
+       11	7070	*	0	*	0	*	10770	1000	1046	
+
+F 15   4173	4894	7033	*	2080	6791	5811	4010	6854	1982	4933	*	6943	5412	6081	5323	5660	4011	6789	3046	15
+       96	4581	5462	1627	564	*	*	10786	1724	0	
+
+D 16   4319	6829	705	3711	7027	*	*	6194	4365	6841	7022	5244	6220	6012	6980	3869	6920	5317	*	*	16
+       33	7157	5974	3700	115	0	*	10774	1000	1565	
+
+R 17   4360	5290	4240	3587	5752	4789	5933	5476	2809	4425	7063	6847	5258	3811	2672	3440	3994	3789	*	6799	17
+       14	6729	*	0	*	856	1160	10764	1075	1169	
+
+T 18   5356	*	1930	2978	7025	4360	3985	*	4730	4238	6982	2722	4628	4074	6768	3881	4655	*	*	*	18
+       89	4917	5216	0	*	0	*	10779	1533	1000	
+
+G 19   5812	*	3344	4740	*	2207	4242	*	2980	6234	*	2577	4005	3792	3839	6141	5153	7198	*	5986	19
+       35	5904	7171	2567	267	934	1069	10770	1205	1464	
+
+D 20   4179	*	2294	4060	*	4152	4991	*	4249	5881	7052	2704	5664	*	6881	2470	2863	5920	*	*	20
+       50	6037	5706	0	*	566	1624	10781	1181	1277	
+
+A 21   6869	*	4232	3537	6803	878	5409	*	4602	6838	*	3877	*	4757	4394	4993	6880	7769	*	5138	21
+       64	5222	5893	0	*	580	1596	10753	1448	1388	
+
+K 22   6847	6853	6071	3502	4303	5075	5041	3931	3173	3538	5432	5624	*	4703	3330	4449	3758	3576	6770	3154	22
+       13	6846	*	2221	348	533	1694	10756	1190	1407	
+
+I 23   5868	*	*	*	5492	*	*	1608	6703	1645	4348	*	7793	*	*	6876	5937	2153	*	*	23
+       0	*	*	*	*	*	0	10803	0	1002	
+
+T 24   *	5344	2264	4357	*	4991	*	6790	4918	*	*	2863	4336	*	4377	2498	2103	*	*	*	24
+       0	*	*	*	*	*	0	10803	0	1002	
+
+A 25   3759	*	5005	4551	3049	6843	7253	3249	3019	3491	4661	5984	4621	5195	3903	5159	4428	3742	4950	5207	25
+       0	*	*	*	*	0	*	10803	0	1002	
+
+S 26   4649	7247	4063	2062	4599	6237	5859	5784	3587	6250	5964	5069	7060	3462	3354	3092	4553	4359	*	5831	26
+       0	*	*	*	*	*	*	10807	0	0	
+
+Q 27   7279	*	2419	1476	*	6904	6709	*	4554	4363	*	3677	7055	2939	4710	4880	4527	7274	*	*	27
+       0	*	*	*	*	*	*	11011	0	0	
+
+V 28   5511	5074	*	*	1620	*	6839	3285	7191	1823	5005	*	*	6893	*	*	*	3230	6959	3878	28
+       45	7081	5442	2000	415	*	*	11014	1005	0	
+
+G 29   3827	7224	5011	4066	5520	4232	5102	4674	3492	3551	7133	4439	4987	3530	2656	5320	5358	3622	*	4211	29
+       25	*	5856	*	*	1559	598	10997	0	1384	
+
+D 30   3481	*	3164	3118	5267	6866	4983	5531	3847	4094	4873	4431	*	3513	3362	3699	3831	4629	*	6062	30
+       48	5415	6798	0	*	1795	490	10969	1355	1641	
+
+I 31   2895	5004	*	*	3140	3684	*	3309	*	2230	4540	6049	*	*	4421	5483	4497	2923	6738	5934	31
+       35	6989	5940	1335	728	890	1119	10833	1265	1621	
+
+A 32   4055	5472	*	*	3655	5882	6639	2782	*	1220	4066	7168	6486	5374	*	5921	*	3774	*	4478	32
+       71	4639	7009	0	*	0	*	10963	1708	1565	
+
+R 33   5478	6190	4557	3497	6230	5165	5428	5331	2918	4307	5431	4527	4595	3626	2544	3214	4550	6236	5913	5644	33
+       31	7282	6064	0	*	*	0	11004	1000	1016	
+
+A 34   3160	5168	4733	3203	7274	4552	4898	3875	3524	3974	5925	5910	*	3532	4054	3018	4134	4813	*	5880	34
+       46	5426	6998	0	*	1450	658	10978	1422	1404	
+
+L 35   5367	4921	*	6500	3741	5398	5447	3099	5547	1516	3757	5383	*	5758	5445	4790	5443	3596	7047	4884	35
+       203	3121	5932	1470	646	1776	498	10993	3174	1418	
+
+G 36   4621	6994	4056	4661	5111	1443	6284	6335	5009	4395	6915	3775	5509	4160	4302	3670	4449	5868	*	*	36
+       93	5459	4663	774	1268	*	0	10983	1307	1621	
+
+Q 37   4633	4383	4387	4051	3504	5934	5766	3808	4311	2711	4702	4801	4403	5358	4320	4782	5026	3354	6717	4796	37
+       166	3438	5934	962	1039	665	1438	10922	2803	2486	
+
+N 38   3652	6935	3056	4062	5654	4744	7012	4488	3125	5850	6087	3079	2952	4499	4993	3695	4924	5545	*	5557	38
+       112	3908	6993	2171	362	1149	865	10937	2414	1809	
+
+P 39   4441	7023	4228	4925	3489	5484	*	3705	4963	2545	4178	4971	2717	*	4864	4682	4455	3661	7255	5334	39
+       34	5420	*	1519	619	0	*	10947	1714	1525	
+
+T 40   5886	*	3238	7303	4415	5089	*	5112	3769	5016	5104	3912	3588	6070	5255	2098	2526	5741	*	5994	40
+       35	6950	6002	5807	26	*	*	10999	1036	0	
+
+N 41   4229	6303	3083	2877	5473	6022	6108	4826	3913	3433	6851	4387	4201	4215	3934	3630	4037	5942	6945	4754	41
+       19	7043	7441	1000	1000	888	1122	10979	1000	1178	
+
+A 42   3899	*	2841	2165	5103	5432	6191	7336	3854	4468	5291	5167	3748	3800	4405	4299	3955	5520	*	*	42
+       12	6868	*	4087	87	0	*	10997	1000	1135	
+
+E 43   4877	*	3195	1961	5186	*	5495	5254	4493	3437	4643	5773	7102	3018	4482	5290	4895	4692	5899	4679	43
+       25	6829	6881	1585	585	*	*	10999	1023	0	
+
+I 44   2816	6126	*	5935	4829	7105	*	2271	6843	1890	4137	*	*	*	6700	4719	5940	2983	6109	4735	44
+       0	*	*	*	*	0	*	11017	0	1039	
+
+N 45   3743	6188	4392	2938	5210	6956	5388	4473	3356	4059	5453	4054	*	3100	3391	4064	4770	4056	*	5629	45
+       22	6063	*	1585	585	*	*	10999	1188	0	
+
+K 46   3457	4637	3394	2779	6329	4742	6342	5385	2870	4559	*	5296	*	3567	3240	3957	4449	6858	6101	6199	46
+       0	*	*	*	*	*	*	10987	0	0	
+
+I 47   4719	*	*	5621	4578	6987	5515	2494	5231	1564	3338	*	7085	*	*	5340	4484	3267	6249	4832	47
+       0	*	*	*	*	*	*	10987	0	0	
+
+L 48   4269	6121	*	4932	1971	*	*	3609	5020	2499	4198	7075	5460	6101	5973	5339	5091	3110	5475	4352	48
+       90	4243	6974	2561	268	*	*	10987	2132	0	
+
+G 49   3353	5479	3646	3818	4362	5082	4611	5008	2604	4498	5552	4314	6003	3689	3723	3534	5654	6928	*	6045	49
+       47	5360	6958	2807	222	*	0	10969	1370	1035	
+
+N 50   3548	6974	5340	2954	4269	5634	4610	4852	4482	4094	4137	4277	*	4319	3037	3091	4712	4526	*	5466	50
+       111	5000	4544	1000	1000	*	0	10965	1546	1222	
+
+P 51   3852	4417	5880	5883	2896	6056	4552	4225	4954	2366	4508	6023	5861	6025	5594	7240	5003	3850	6160	2791	51
+       323	7367	2361	2807	222	2710	239	10955	1000	2238	
+
+S 52   4812	*	1348	4055	4258	3604	*	6675	5064	5727	5001	4277	4053	4627	4582	4482	6450	6996	*	5107	52
+       148	4246	4489	2421	298	721	1346	10669	1726	5344	
+
+K 53   3521	4473	5397	4102	4383	4457	4797	4123	3588	3734	*	4846	3465	4487	4205	3624	3924	4043	6808	*	53
+       112	5265	4364	1195	828	1530	613	10885	1518	3610	
+
+E 54   5902	*	1711	3107	5727	3985	5830	6925	3898	5698	*	3162	5643	4998	4659	3585	3911	7126	*	6975	54
+       1151	6933	885	4700	57	*	0	10905	1000	3595	
+
+E 55   4317	5697	4011	2904	4109	4679	*	4774	3210	5925	5673	5633	4038	5587	3725	3125	3556	4644	5570	5715	55
+       208	4549	3447	0	*	4748	55	9480	1357	9018	
+
+M 56   5546	*	2171	3534	*	5690	*	*	4699	4819	3757	2090	*	4522	4589	4692	3929	4071	5702	*	56
+       151	3329	*	2781	227	251	2646	9366	1696	9151	
+
+N 57   3994	5035	4153	3965	7015	2450	4566	*	3271	5357	*	3195	4286	3660	3637	3971	4581	*	*	*	57
+       90	4543	5806	1658	550	228	2773	10889	1810	3075	
+
+A 58   4920	*	2015	4036	6935	3824	6158	4799	4326	6048	*	2968	5452	4129	5420	2855	4222	5351	*	5848	58
+       31	6206	6965	3245	161	1961	428	10993	1178	1527	
+
+A 59   4781	6915	3462	3610	6823	1182	*	7199	5051	6958	6134	3635	5842	6020	4154	3953	5482	6792	*	6920	59
+       44	5359	7388	2377	308	*	0	10963	1373	1683	
+
+A 60   5128	5174	5006	4474	5261	4401	4511	4630	2543	3966	4646	4478	*	3911	4013	3310	3485	5023	*	4638	60
+       29	5629	*	1585	585	414	2004	10909	1225	2160	
+
+I 61   5045	7014	5998	*	4749	*	*	1541	5030	2068	3527	*	5785	*	*	6875	6993	2513	*	*	61
+       0	*	*	*	*	979	1021	11000	0	1168	
+
+T 62   5514	7018	2070	3998	*	4202	5381	*	4876	6834	*	3047	6909	5137	4980	2470	2612	7212	*	6924	62
+       21	7167	7124	0	*	*	0	10977	1000	1000	
+
+F 63   5552	7028	7357	5110	1757	*	*	5501	5054	2348	6029	*	6862	6819	4000	*	5899	4215	4126	2571	63
+       0	*	*	1445	660	0	*	10966	1217	1217	
+
+E 64   3600	*	3540	2320	6849	6690	6208	7218	2810	7277	5361	3694	4287	4346	4636	3748	3924	4675	*	5507	64
+       0	*	*	*	*	*	*	10987	0	0	
+
+E 65   4549	*	2596	1386	7421	4727	7062	7046	4699	6125	6994	4036	7015	3189	6849	4423	4700	6669	*	6958	65
+       68	6867	4745	4644	59	*	*	10987	1000	0	
+
+F 66   7203	6985	*	*	674	*	*	5100	*	2648	5468	*	*	*	*	*	6981	4387	4724	4220	66
+       35	5382	*	1628	564	0	*	10793	1620	1817	
+
+L 67   3738	4799	*	4814	6108	*	6029	3360	4542	2157	3931	6213	*	4802	4418	4008	5110	2662	*	4363	67
+       35	6893	5995	1585	585	*	*	10987	1000	0	
+
+P 68   3440	7029	3326	3436	6000	5576	4243	5717	3737	4907	5522	4695	5446	3957	3659	3514	3567	4278	*	4608	68
+       50	5805	5920	2513	278	970	1030	10989	1203	1226	
+
+M 69   2944	6139	7118	5808	2725	4190	4779	3322	4974	2286	5437	6646	*	5635	*	4505	4090	4490	7053	4522	69
+       22	6036	*	2308	325	576	1604	10955	1158	1421	
+
+L 70   5014	4290	*	7158	3523	6928	5488	3024	*	1444	3660	*	7262	6027	6006	6966	5354	3112	6305	5281	70
+       52	4829	*	4034	91	0	*	10973	1706	1018	
+
+Q 71   3356	4563	4666	3584	5374	5219	4286	5039	2932	3594	5698	4820	6071	3746	3942	3377	4207	6704	*	5527	71
+       0	*	*	*	*	*	*	10987	0	0	
+
+A 72   3434	5984	3931	3783	5101	5044	5391	4325	3557	3606	4891	3914	5121	6023	3710	3449	4241	4104	*	5056	72
+       28	*	5678	*	*	*	*	10987	0	0	
+
+A 73   5087	6106	5583	4160	3364	6108	5308	3877	3899	2437	4496	7024	6785	3807	3996	4504	4802	3700	4836	4817	73
+       205	6099	3086	2014	410	1475	643	10967	1157	1326	
+
+A 74   3549	4570	4872	4945	4045	4344	4675	3633	4584	2298	3886	5060	5696	5930	4165	4511	5008	5019	6918	5146	74
+       244	3455	3952	3319	152	2489	283	10856	2720	3784	
+
+N 75   4821	*	4564	3394	4589	4123	4186	5193	2987	4876	*	4089	5328	3916	3564	2802	3955	6776	*	4864	75
+       177	3494	5212	4699	57	3759	111	10787	2491	4405	
+
+N 76   3855	6688	5822	2990	5572	3727	4863	3811	3293	3892	5398	3890	5165	4336	4037	3911	3918	5866	*	5217	76
+       105	5073	4622	2741	234	2158	366	10752	1371	4568	
+
+K 77   5966	5260	4351	3490	7074	4287	5518	5837	3923	3645	5694	3587	3693	5686	3399	3025	4150	3739	*	5166	77
+       270	4307	3060	2882	210	1321	738	10807	2106	4459	
+
+D 78   5006	6712	2850	3209	5649	5254	6926	6785	4242	3346	*	3076	3541	4040	3992	3016	5142	6904	*	6712	78
+       304	5881	2531	2908	206	4842	51	10690	1365	4943	
+
+Q 79   4189	*	4239	3427	6469	5340	5510	5536	2993	3246	*	4207	4082	3526	3897	4654	3856	4416	*	3921	79
+       269	5260	2798	419	1988	2738	234	10078	1485	6814	
+
+G 80   3310	*	2922	3924	*	4088	4733	4457	4850	3338	*	4157	4438	4845	4677	2976	3791	5414	*	5214	80
+       126	3771	6557	2675	246	1630	563	10082	1905	7301	
+
+T 81   3933	*	3831	3669	4658	4983	4508	3649	3875	3614	6542	4126	5011	5619	3438	3697	3508	4603	6129	6822	81
+       59	5682	5623	2190	357	5339	36	10342	1222	5900	
+
+F 82   6778	*	4320	2398	4279	4939	5371	4443	3692	3272	5067	5005	6723	4341	3189	4056	4876	4613	*	4280	82
+       57	5089	6694	2959	199	409	2018	10318	1328	6008	
+
+E 83   3534	*	2779	1977	6960	5361	5664	6911	3693	5083	5396	4014	4107	4127	4766	5521	4333	5350	*	6251	83
+       49	5334	6911	3696	116	531	1699	10919	1373	2623	
+
+D 84   4019	7054	3240	2270	4590	6217	5458	4311	3046	3870	5646	4596	6953	4084	4911	4519	4385	5983	6856	5472	84
+       115	3897	6728	4398	70	2071	392	10960	2448	1578	
+
+F 85   3611	6075	*	6961	3133	*	7152	2564	6753	1587	4486	6045	6681	5665	6906	4663	4994	3903	6142	6194	85
+       32	*	5507	1585	585	749	1304	10934	1046	1782	
+
+V 86   4709	*	3332	2797	6993	5813	5724	3692	2912	3960	5156	4833	*	4115	2896	4568	4129	4724	*	7108	86
+       34	6904	6041	3000	193	*	0	10934	1006	1773	
+
+E 87   3411	6589	3834	3333	5455	6889	*	4274	3587	3780	6283	4073	5382	3461	3743	3945	4894	3512	6006	5395	87
+       11	7035	*	1256	783	268	2561	10881	1372	2107	
+
+G 88   1930	5403	*	5565	4716	6168	6108	2665	5013	2491	4270	6170	6844	5508	5667	4376	5006	4151	6938	*	88
+       13	6851	*	2807	222	*	0	10978	1064	1046	
+
+L 89   6147	4499	*	*	689	6698	6917	4588	*	3463	4757	*	*	*	*	6364	*	5937	5921	3482	89
+       13	6841	*	5248	38	*	0	10978	1017	1046	
+
+R 90   4030	7119	3506	3370	*	7350	4560	6724	2805	4508	6195	3626	6497	3169	2634	4249	4447	5884	*	6882	90
+       67	4676	7264	1747	510	*	0	10978	1808	1046	
+
+V 91   3237	5895	6207	3562	4724	6990	*	3786	3746	2803	3894	4679	6489	4001	4570	3834	5510	3426	6705	5253	91
+       0	*	*	0	*	0	*	10972	1046	1272	
+
+F 92   5088	4851	6671	*	1706	7159	6300	3211	5402	2340	4778	5693	*	6946	6506	5879	*	4081	7252	3142	92
+       39	7316	5601	2322	322	*	*	10999	1000	0	
+
+D 93   4131	6908	576	4674	*	4877	*	*	6849	*	*	5032	6489	5791	5936	5048	4241	6204	*	6767	93
+       9	*	7377	*	*	533	1694	10986	0	1289	
+
+K 94   4117	*	5884	4627	6975	4801	4945	4879	2654	3440	5343	4634	4520	4410	3552	3744	3271	3891	7039	5078	94
+       75	5521	5118	2344	317	0	*	11000	1349	1145	
+
+E 95   4354	5879	1627	3421	*	4907	6921	6948	4790	5237	7049	2631	4665	4114	4447	3960	5142	*	*	*	95
+       0	*	*	*	*	0	*	10985	0	1729	
+
+G 96   5156	7268	4034	4096	5365	2245	5070	5721	2787	*	6691	3254	5969	3213	3959	3555	5082	*	*	*	96
+       48	5936	5921	1544	606	*	*	10999	1210	0	
+
+N 97   3929	5772	2209	4386	6125	5634	6810	*	3430	5732	6684	2925	6959	5083	4469	2387	4090	6159	*	6783	97
+       22	7001	7121	2807	222	0	*	10959	1005	1198	
+
+G 98   *	5796	3883	4275	*	844	5768	*	4194	6972	5998	4278	6240	5397	4088	4680	6111	6940	*	*	98
+       73	5129	5576	3323	152	*	0	10994	1526	1000	
+
+T 99   4171	4168	5418	3985	3271	7125	5015	6242	3106	4269	5810	4679	4965	4478	4432	5253	3104	4422	7011	3288	99
+       72	4686	6627	0	*	748	1305	10925	1760	1767	
+
+V 100  5292	*	*	*	5555	6836	*	1270	6770	2324	4874	*	*	*	*	*	*	1846	*	6870	100
+       0	*	*	*	*	1921	442	10919	0	1441	
+
+M 101  5331	5441	2816	3499	6857	4917	5870	7781	5213	4926	7079	3749	4891	6271	4514	2381	2250	7013	*	5942	101
+       11	7051	*	1585	585	*	0	10953	1007	1279	
+
+G 102  3389	5306	6674	4375	4141	5515	5098	4372	2750	2966	6061	6998	5392	6108	3128	3768	4960	4209	7122	4435	102
+       12	6925	*	3846	104	1023	977	10953	1232	1279	
+
+A 103  3596	7021	2889	2060	6882	4570	4622	6780	4126	7061	6856	3880	6311	3459	4752	3046	4990	*	*	*	103
+       0	*	*	*	*	*	0	10918	0	1054	
+
+E 104  6259	*	2274	1375	6976	5036	6929	5970	4294	6838	6827	4407	*	3516	5172	4876	5650	4999	7194	6780	104
+       14	6716	*	1585	585	*	0	10918	1023	1054	
+
+L 105  6123	*	*	*	1684	*	7889	3261	*	1384	4561	*	7152	*	*	*	6838	3616	7365	4752	105
+       11	7049	*	2000	415	0	*	10918	1016	1054	
+
+R 106  5069	6150	4822	3807	4794	4563	5065	3251	2658	4026	5502	5053	*	4224	2938	4616	5287	3331	*	6134	106
+       9	*	7265	*	*	*	*	10972	0	0	
+
+H 107  3813	7023	3059	3720	6043	*	4726	5010	2936	5200	5802	3686	*	3363	3932	3299	3632	7174	7004	5150	107
+       0	*	*	*	*	*	0	10965	0	1046	
+
+V 108  2560	6036	*	6849	3031	4436	*	2485	7107	2858	4267	7286	*	6271	*	5787	4680	2982	6117	4477	108
+       18	7772	6959	1289	759	0	*	10965	1226	1046	
+
+L 109  4575	5078	*	*	3087	7094	6995	3617	*	1332	3062	*	6580	5885	*	5181	5271	3430	6095	6826	109
+       61	4587	*	1561	597	*	0	10937	1714	1004	
+
+A 110  5971	4676	4762	4195	7060	4219	4899	6107	2340	5502	5494	4470	6048	3016	3061	3219	3598	6837	*	*	110
+       15	*	6559	*	*	0	*	10637	0	1004	
+
+T 111  4141	6020	3553	3338	7131	5050	4925	5447	3232	3670	6044	3681	5197	5209	4323	3420	3248	4723	*	4977	111
+       31	5550	*	1151	864	965	1036	10623	1501	1172	
+
+L 112  3446	*	6948	5331	2945	7139	5413	3619	*	2297	3911	5431	*	4007	4958	3800	4986	3680	7113	4123	112
+       323	3008	3714	1847	470	*	0	10621	3250	1000	
+
+G 113  4411	5850	5330	4552	5190	961	6667	6622	4351	5108	*	4222	4054	5192	4466	4547	*	*	*	*	113
+       211	3305	4846	1280	765	678	1415	10340	2701	2623	
+
+E 114  6757	6793	4561	2448	4202	6720	5114	3648	3936	2769	5331	3929	4123	3895	5816	5931	5793	3789	*	4965	114
+       111	4318	5401	770	1273	2033	404	10474	1825	2221	
+
+K 115  5407	6913	3981	3667	5871	3262	4379	*	3004	4526	5835	3332	3308	3981	3469	4463	5913	4448	*	6731	115
+       120	3642	*	2426	297	1062	940	10467	2319	2405	
+
+M 116  4639	*	6866	5340	3445	6866	6695	3086	6737	1744	3682	6881	3934	6238	6740	4829	4612	3620	5271	4914	116
+       41	5590	7070	3053	185	1353	716	10500	1238	1675	
+
+T 117  4318	5225	3014	4750	*	5878	*	7078	3795	4832	7079	3532	3329	5293	5841	2250	2792	4656	*	*	117
+       73	4615	6839	2621	256	*	0	10515	1707	1492	
+
+E 118  4541	6309	2523	2085	5672	5322	6558	5304	4088	5747	*	3874	3565	5312	4764	4109	4550	4469	*	5939	118
+       26	5815	*	970	1031	*	0	10497	1171	1693	
+
+E 119  3274	6949	2964	2216	*	5194	6636	6619	3846	5282	*	4797	5040	3560	4486	2711	6616	5301	6898	6669	119
+       14	6689	*	0	*	1002	998	10491	1192	1852	
+
+E 120  5219	*	2560	1640	*	6906	4822	4079	4313	4013	*	5281	*	3364	5018	5079	4335	5813	6763	7005	120
+       39	5719	7058	2729	236	601	1553	10517	1192	1347	
+
+V 121  2774	7162	5840	*	4135	5332	*	2383	6858	2300	5336	*	6012	5868	5903	5414	6908	2365	*	4499	121
+       0	*	*	*	*	1069	934	10538	0	1165	
+
+E 122  4662	5766	2882	2703	6338	6903	4857	5348	3446	4934	7102	3602	6787	3715	2876	4807	4428	4710	*	5859	122
+       29	6753	6559	0	*	*	0	10541	1027	1000	
+
+E 123  3683	*	3727	2440	5875	4574	6717	4494	3738	4353	6677	4336	6825	4119	4229	3557	3623	5926	5863	4417	123
+       25	5854	*	2070	393	866	1148	10502	1400	1220	
+
+L 124  4863	6804	*	5763	3319	6794	6028	2382	5822	1795	3047	6791	*	7045	6914	5990	5167	3297	*	5333	124
+       23	7030	6993	3170	170	*	0	10559	1000	1000	
+
+M 125  5843	4811	*	6736	1882	*	6563	2483	6781	2191	3662	*	*	6803	5819	6933	4784	4349	5308	5365	125
+       89	4579	5781	2005	414	846	1173	10518	1931	1226	
+
+K 126  3822	6748	3321	4020	7132	5331	5332	6740	2230	4028	7020	3784	*	3178	3570	3401	5280	6226	*	6793	126
+       49	5252	7067	995	1005	*	0	10509	1350	1366	
+
+G 127  3466	5228	4344	3145	3915	4514	5143	3752	3894	3821	4004	6963	*	3578	3312	4269	5076	5956	6682	7004	127
+       1468	647	*	70	4407	421	1982	10507	8586	1526	
+
+Q 128  3586	5172	1325	4905	4808	3380	6002	5817	6812	4547	*	4413	6907	5284	5234	5825	5912	4200	*	4524	128
+       102	4291	5875	699	1380	*	0	10520	2059	1226	
+
+E 129  4877	6889	4049	3979	5864	3679	6687	4022	2983	3073	5240	5960	4273	4738	3708	3887	3831	3898	6863	*	129
+       63	4543	*	230	2765	2364	312	10515	1760	1758	
+
+D 130  5726	*	1827	3601	5828	4878	6814	6653	3882	*	6547	2084	6620	5800	4752	4201	4281	4539	*	5806	130
+       68	4741	6824	2282	332	384	2096	10526	1817	1582	
+
+S 131  6889	5837	4169	2995	*	2113	6918	*	3112	4464	5894	3505	4947	4021	3330	4027	6935	5839	*	7086	131
+       52	5276	6756	724	1342	893	1115	10546	1363	1211	
+
+N 132  4261	6730	1631	3310	5884	5829	5989	*	4076	5180	*	3074	5268	4421	*	3261	4036	6900	*	6309	132
+       25	5881	*	1680	540	976	1025	10527	1225	1187	
+
+G 133  4858	*	3664	4904	*	1083	5195	7076	3700	6956	5346	3845	4392	*	4930	5309	4501	7016	*	6690	133
+       50	5346	6725	2610	258	*	0	10520	1533	1226	
+
+C 134  4115	5307	5862	4292	4436	4802	4761	4970	2778	4857	5240	5871	6915	3304	3389	4312	2899	4372	*	4782	134
+       53	4784	*	787	1250	519	1727	10508	1770	1414	
+
+I 135  6706	*	6825	6610	3871	*	6807	1624	6595	2133	4413	*	*	6989	*	*	*	1855	*	*	135
+       29	5651	*	585	1585	*	0	10536	1226	1000	
+
+N 136  5305	5317	2582	4833	*	6016	4957	6911	6007	5812	*	2971	5917	5819	4623	1790	2757	5739	*	*	136
+       0	*	*	*	*	*	0	10536	0	1000	
+
+Y 137  5904	6793	*	7070	2200	6882	5737	4620	3449	2818	6739	6912	6715	6593	4418	6933	*	5328	3848	1938	137
+       0	*	*	*	*	*	0	10536	0	1000	
+
+E 138  4128	6525	2257	2616	6053	4890	4871	6319	3687	5852	7031	3454	5890	4106	4874	4241	3995	4787	*	6738	138
+       18	6319	*	0	*	*	0	10536	1075	1000	
+
+A 139  4952	*	2335	1177	*	4188	*	*	3555	7044	*	6851	*	3933	5958	4838	5158	6874	*	5801	139
+       0	*	*	*	*	*	0	10536	0	1000	
+
+F 140  6923	*	6595	*	689	*	*	4931	*	2647	4904	6319	*	*	*	*	*	6745	5145	3552	140
+       0	*	*	*	*	*	0	10536	0	1000	
+
+V 141  3702	4887	6862	5714	5138	6579	5321	2750	3657	2122	4823	5325	*	4528	4839	5841	4474	3369	6078	5180	141
+       13	*	6852	*	*	*	0	10479	0	1000	
+
+K 142  2686	5832	3416	3789	6816	5124	4743	5924	3547	7058	6924	3161	*	4228	3972	2433	4802	*	*	5753	142
+       13	6826	*	2000	415	980	1020	10470	1010	1186	
+
+H 143  2872	4712	5638	5855	2620	5750	4769	4165	4787	2974	3889	6734	*	5644	4405	5253	4636	3567	5293	5052	143
+       0	*	*	*	*	*	0	10414	0	1000	
+
+I 144  4678	5639	*	*	3542	*	*	2965	6434	1615	2923	*	6414	*	*	4996	6662	2651	5245	5754	144
+       0	*	*	*	*	*	0	10358	0	1000	
+
+M 145  4019	5370	*	5266	4686	6162	*	4721	3026	2543	3812	5053	*	4462	3346	4020	2870	4797	6402	6394	145
+       0	*	*	*	*	0	*	10071	0	1000	
+
+S 146  4287	*	3948	3162	5841	5039	4883	*	2900	5769	5988	3375	6017	4571	3022	2522	4710	5899	*	5919	146
+       0	*	*	*	*	*	*	9740	0	0	
+
+V 147  4253	*	4318	*	*	4269	*	*	*	*	*	1532	4400	3325	*	2285	*	3346	*	4350	147
+       0	*	*	0	*	*	*	7169	0	0	
+
+//
+�HHsearch 1.5
+NAME  d7be13700ed7588ca7b576ccd24889ab
+FAM   
+FILE  d7be13700ed7588ca7b576ccd24889ab
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:17:03 2013
+LENG  175 match states, 175 columns in multiple alignment
+FILT  117 out of 1090 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.1 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCCCCCCCCCCCCHHHHHHHHHHHHHHHHHHCCCCCCCCHHHHHHHHCCCCCCCCCCCCHHHHHHHHHHCCCCCCCCCCCCCCCCCCCCC
+CCCCCEEEEEEEEEECCCHHHHHHHHHHCCCEEEEEEECCHHHHCCCCCEEECCCCCCCCCCEEEEEEEECCCCC
+>ss_conf PSIPRED confidence values
+9872335548856887557777439999999999999998569987659999986500458999889878999999998199575455576355774556
+877641454207990787999999998569989999814503323577466578888885897999998568898
+>Consensus
+lPxxxDxrxxxxixxvxdQgxcgxCwAfaxxxxxexxxxxxxxxxxxlSxxxlxxcxxxxxxxxcxggxxxxaxxxxxxxxGxxxexxxpyxxxxxxcxx
+xxxxxxxxixxxxxixxxxxxikxxlxxxGPVxxxxxvxxxxfxxyxxgvxxxxxxxxxxxxHaVxIvGxgxxgx
+>d7be13700ed7588ca7b576ccd24889ab
+APRSVDWREKGYVTPVKNQGQCGSCWAFSATGALEGQMFRKTGRLISLSEQNLVDCSGPQGNEGCNGGLMDYAFQYVQDNGGLDSEESYPYEATEESCKY
+NPKYSVANDTGFVDIPKQEKALMKAVATVGPISVAIDAGHESFLFYKEGIYFEPDCSSEDMDHGVLVVGYGFEST
+>gi|288560029|ref|YP_003423515.1| adhesin-like protein with cysteine protease domain [Methanobrevibacter ruminantium M1]gi|288542739|gb|ADC46623.1| adhesin-like protein with cysteine protease domain [Methanobrevibacter ruminantium M1]
+LPSHFDARDWGWTTSAKIQGDNTDCWAFASISSLETSFAKASGVLYNLSQNYLQKLQLKyfySGDKRNsLTGFSYSGPGYALSWYGVLPV-DNGYDDRGM
+IADTDLEDERIHVQDVLFIDTgrddAVELIKWAILKYGAVTVQRGINGPYGELPTEGDDIAI---MSHGTHFISLIGWDD---
+>gi|170028894|ref|XP_001842329.1| conserved hypothetical protein [Culex quinquefasciatus]gi|167879379|gb|EDS42762.1| conserved hypothetical protein [Culex quinquefasciatus]
+IPTSFDARTRwpncPSIALIPNQGCCNSSAFQIPAAVITDRACIRSNGtsTRTYSAYDALACCTDCpfsQLFKCAGGDPLKVWNYWATT-GLVSDSCMPF
+SLSPlclgFNCPLLCApgYagsiVGDRKKGLKvvTVAPYVDAIQSEIILNGPVEASFDL-YLDFVHLKqSQVYNSRS-GPNLGRQSVKIIGWGVE--
+>gi|326787377|dbj|BAK08431.1| putative papain-like cysteine prorease [Plasmodium simiovale]
+----------SCVSKieAGDQGDCATSWLFASKVHLETIKCMKGHDHVASSALYVANCSNKEAKDMCHAPsNPLEFLNTMEETKFLPAESDLPYSYKavN
+NVCPEPKShwqnlwanvklldpqNepNSVSTKGYTAYQSdhfngNMnafiKLVKSEVMSKGSVIAYVKAD-ELMGYDLNGKKVLSLCGGETPNLAVNIVG
+YGN---
+>gi|89890478|ref|ZP_01201988.1| putative cysteine protease [Flavobacteria bacterium BBFL7]gi|89517393|gb|EAS20050.1| putative cysteine protease [Flavobacteria bacterium BBFL7]
+LPAVYDLGF--LMPAPRSQGAQGSCVSWATHYYLATYMDNIRNDSIISSIQEIMSPSFAfnqikasDGSNNCFGSTIAQNLDLLINT-GALPLSEFSYND
+--TTCAPQPDmiqlanTRNNLISSYENIGpytflePttqesliasSLNEVKSALFDNRPVIVSMLTD-EAFGRHrNEDVFTVSEINeaTVRGCHAMTIVG
+YNDD--
+>gi|285018828|ref|YP_003376539.1| cysteine protease [Xanthomonas albilineans GPE PC73]gi|283474046|emb|CBA16547.1| putative cysteine protease protein [Xanthomonas albilineans]
+PPENADLTQW-AIKP-SDQKQLGACASFATARTLAGWYANFTKQSvNLFAPMYLYTQV----NDGQDNGSTMeAPLDVALKQ-GIDTKADYFQGDydwRT
+KPTKHEranARNYKQPF-HYQMIYNnwgdnspvdsqaLIEQIKLAIANGTPVVIGFNV-RAGFDSLNqdHDIDYDNH-SKILDGHEVIALGYDKDG-
+>gi|339445227|ref|YP_004711231.1| hypothetical protein EGYY_16900 [Eggerthella sp. YY7918]gi|338904979|dbj|BAK44830.1| hypothetical protein EGYY_16900 [Eggerthella sp. YY7918]
+FPSKYSLVDEGVVTPVKLQNPWGTCWSFGGTAAAEVSLLSELGltydeTQLDLSELHtawmantplsdgssqdgegIHTTSSDDATVLSQSGFPFTLTSV
+YSSGIGPVPESVAPYKNKaekkeeiatpsgpipvwyskEGDWSVDQSLRfeqLYQLEESSILPSpaergaGVEAMKRELMQGRAVDIAFCS-DQTSTYIN
+NTTWSHYTYEEKPINHSVCVVGWDDN--
+>gi|297833374|ref|XP_002884569.1| hypothetical protein ARALYDRAFT_896743 [Arabidopsis lyrata subsp. lyrata]gi|297330409|gb|EFH60828.1| hypothetical protein ARALYDRAFT_896743 [Arabidopsis lyrata subsp. lyrata]
+-----DWRLiVDLLGPIIEQRE-AICWAIVLARLIEAMYNIWIGdskCFLRISVDDLVSKIKAE-DDDKEITTLNRCIKVIELE-GIKKVP---------
+TTSHANRDKIKTIKWVIDTNEaaDRNFIQTKLEI-SPVGIIIDI-DDEFSALREGFYKVrdvPRTGKTVSRHALMILGRG----
+>gi|118579734|ref|YP_900984.1| peptidase C1A, papain [Pelobacter propionicus DSM 2379]gi|118502444|gb|ABK98926.1| peptidase C1A, papain [Pelobacter propionicus DSM 2379]
+-PDRIDYRDRVYNPPlvclpeqypspefienhladytrkhklILNQGKEGACTGFGLAAVINYLLWKEcleagkdgGRsvsRIARVSPRMLYHMARIYDe
+wpGEDYEGSSCRGAMKGWHRH-GICTEQFWPYKTKFvpPKEGWQQDAARRPLGAYYRINKdSIADMQAAIREVGAIYVSASV-HKGWSLGASSTLPMIPF
+TTEVaGGHAFAITGYTTRG-
+>gi|297846494|ref|XP_002891128.1| hypothetical protein ARALYDRAFT_336538 [Arabidopsis lyrata subsp. lyrata]gi|297336970|gb|EFH67387.1| hypothetical protein ARALYDRAFT_336538 [Arabidopsis lyrata subsp. lyrata]
+------WETeeiKDIVGPVRDQKQHLLCWAYAASDLVSAQRILRqwENDYYPLCPHYLCRFVHPgwlgkdekaEPGHFCYRCSIKDALKHIKKE-GIPRE
+INSVFECSsDSRSRDPIPRGHGEVKSIRTLEDTLEAALKELPL-QPIGADLIV-FSDLWKSGRNIYHGPKSigSKFEGYHAVIIVG------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+A 1    5000	*	5750	*	3403	*	*	3155	*	610	*	*	5949	*	*	*	*	4625	*	4993	1
+       39	5233	*	2000	415	*	*	8015	1133	0	
+
+P 2    5895	*	5725	*	*	*	*	6003	5610	*	*	*	197	*	*	4857	*	5533	*	*	2
+       0	*	*	*	*	*	*	8193	0	0	
+
+R 3    3495	*	2874	3163	*	*	*	*	3930	4706	6174	4562	3639	5248	4781	2009	3604	6189	*	5985	3
+       29	*	5658	*	*	*	*	8372	0	0	
+
+S 4    4781	*	5278	4227	4562	*	5270	6147	3410	6129	5319	3507	*	4870	3612	1845	3369	4340	*	4635	4
+       0	*	*	*	*	0	*	8587	0	1081	
+
+V 5    4320	*	*	*	1535	*	*	4664	6210	4464	4711	*	*	*	*	*	6062	2794	2989	2448	5
+       0	*	*	*	*	*	*	8593	0	0	
+
+D 6    6401	*	443	*	*	6256	*	*	6135	6109	*	3755	*	*	*	2983	6636	*	*	*	6
+       19	6263	*	2000	415	*	*	8681	1025	0	
+
+W 7    3511	*	*	*	4207	6256	6301	5324	*	2036	6227	6369	6345	*	*	3826	*	5536	1303	5135	7
+       0	*	*	*	*	*	*	8736	0	0	
+
+R 8    4771	6552	6450	6358	*	4057	*	*	3755	6176	*	6290	6340	4995	722	3694	5146	6269	*	*	8
+       0	*	*	*	*	*	*	8736	0	0	
+
+E 9    5045	*	1731	2712	6447	*	5307	6575	3645	5387	6459	3164	5309	5465	6518	3856	3872	5497	6380	6421	9
+       404	3168	2908	1553	601	*	*	8750	2351	0	
+
+K 10   *	6236	5213	3371	6621	6309	3484	*	2311	3899	*	4305	4666	4641	4593	3934	5415	3271	4042	4115	10
+       786	1716	3115	1497	631	3433	140	8552	4055	2657	
+
+G 11   4216	*	3242	*	*	1452	5247	*	*	*	*	2604	5360	6269	4577	3413	3990	4862	*	6178	11
+       78	5231	5260	3106	178	327	2302	8502	1147	3714	
+
+Y 12   4210	3529	6225	*	4191	6614	6739	2904	4524	2798	4844	6560	*	5424	6625	5445	6564	2886	4915	2557	12
+       0	*	*	*	*	252	2644	8873	0	1820	
+
+V 13   5602	4288	6598	*	4075	*	6605	1825	*	3006	3683	5406	*	6588	*	5324	4274	1982	*	*	13
+       35	*	5381	*	*	0	*	8912	0	1000	
+
+T 14   4729	*	6472	5071	6642	2703	*	6478	6683	5616	*	*	2562	*	6592	2293	1762	4726	*	*	14
+       28	5723	*	1000	1000	0	*	8964	1122	1212	
+
+P 15   3910	*	3794	3220	*	5719	4913	6701	4084	6566	6889	4881	1201	6545	5041	4040	5527	5525	*	*	15
+       139	4228	4702	2830	219	*	*	8994	1741	0	
+
+V 16   3429	*	*	6349	5284	6718	*	2145	*	4630	6198	5044	3303	6632	*	6545	*	1227	*	*	16
+       0	*	*	*	*	0	*	8956	0	1505	
+
+K 17   5772	*	*	4801	4354	4459	6793	3568	1765	4313	5136	6726	5651	5766	2328	4306	6468	5298	5650	5009	17
+       39	7040	5693	0	*	*	*	9062	1000	0	
+
+N 18   6619	6671	1065	5532	*	*	4953	6563	6268	6605	*	1981	4823	6349	6866	3785	6261	6703	*	6721	18
+       35	5389	*	3375	146	*	0	9073	1272	1202	
+
+Q 19   *	*	5468	6268	*	*	6741	5861	*	*	*	*	6071	147	*	*	*	5658	*	*	19
+       107	3813	*	1246	790	*	0	9073	1991	1202	
+
+G 20   3767	*	6493	5545	*	897	*	7089	3893	6823	5998	4741	6843	4517	5145	4742	4786	6099	*	4279	20
+       27	6756	6757	0	*	0	*	9114	1000	1202	
+
+Q 21   4069	6708	3415	4190	6504	4660	5654	6520	3813	4151	6863	3026	3868	3928	4789	2538	4973	6372	6565	4473	21
+       32	*	5496	*	*	*	0	9119	0	1006	
+
+C 22   5458	1013	*	4922	5087	5150	4781	*	*	3691	*	5695	*	4832	3909	4858	4329	5306	5725	5167	22
+       29	5635	*	601	1554	546	1666	9089	1195	1383	
+
+G 23   3818	5145	5193	4750	*	877	5320	6710	5654	5517	*	3732	5093	*	*	3641	5788	*	*	6297	23
+       0	*	*	*	*	*	0	9141	0	1006	
+
+S 24   3704	4770	4286	*	6650	3669	*	4562	*	3167	*	4319	*	*	6625	1700	2547	4519	*	6583	24
+       44	*	5051	*	*	*	0	9141	0	1006	
+
+C 25   6720	422	*	*	*	5543	*	6350	*	6085	*	5536	*	*	6741	2679	*	6809	*	*	25
+       0	*	*	*	*	*	0	9024	0	1526	
+
+W 26   4245	*	*	*	6642	*	*	6510	*	5501	*	*	*	*	5327	5251	4442	3602	675	3344	26
+       13	6749	*	2000	415	*	0	9024	1000	1526	
+
+A 27   674	6512	6742	*	5734	4994	*	5063	*	4786	*	7499	5727	*	6090	3463	5054	3881	*	6837	27
+       13	*	6816	*	*	*	0	9033	0	1526	
+
+F 28   *	6700	*	5789	1108	*	4763	2963	*	6078	5750	5001	5733	5844	*	6908	6775	4141	4350	3068	28
+       0	*	*	*	*	909	1098	9025	0	1674	
+
+S 29   866	*	*	5817	*	3492	*	5690	6154	*	*	*	*	*	*	2237	4380	4293	*	*	29
+       14	6649	*	4170	82	*	0	9123	1039	1233	
+
+A 30   2042	*	5714	*	5048	3914	6154	3869	*	3767	6795	*	5240	*	*	2622	2813	2983	5731	*	30
+       0	*	*	*	*	*	0	9123	0	1233	
+
+T 31   2210	5623	*	*	6667	4755	6702	4120	4445	3372	5865	6686	*	*	6777	3252	2116	2883	*	*	31
+       0	*	*	*	*	*	0	9123	0	1233	
+
+G 32   2161	*	3463	3795	6959	3197	5290	*	4232	5884	6587	4537	*	4701	4687	2715	4025	6794	*	4399	32
+       0	*	*	*	*	0	*	9123	0	1233	
+
+A 33   1923	5728	*	*	*	4630	4868	3870	*	2835	3415	*	*	*	*	3057	3684	2911	*	6722	33
+       0	*	*	*	*	*	*	9155	0	0	
+
+L 34   3472	6897	*	*	3685	5766	5582	2257	*	1633	3948	*	*	*	6813	*	6652	2917	6669	5218	34
+       26	*	5834	*	*	*	*	9155	0	0	
+
+E 35   3748	6182	*	875	6592	4539	*	6521	*	*	6886	4704	*	4096	5031	3358	4086	*	*	6646	35
+       12	*	6906	*	*	*	0	9132	0	1193	
+
+G 36   2516	6310	3223	*	5546	4127	6850	3996	6808	5754	5107	6266	6322	*	*	2127	2525	5696	*	4279	36
+       0	*	*	*	*	1347	720	9130	0	1374	
+
+Q 37   2956	*	6022	5945	6744	4799	5744	4569	5070	3308	5130	4524	*	4595	2429	3051	4165	5263	4943	3863	37
+       54	7166	5071	1000	1000	*	0	9152	1000	1163	
+
+M 38   4306	*	*	7497	3360	5807	*	3246	6765	1825	3751	5229	*	5182	3919	*	*	3627	5689	2869	38
+       39	5956	6595	3170	170	1596	579	9091	1103	1698	
+
+F 39   2468	2849	6665	5637	6212	4482	6843	4375	3416	3213	4568	4455	5558	*	3661	4791	5458	5203	5610	4667	39
+       74	5052	5662	980	1020	1095	911	9083	1404	1587	
+
+R 40   5280	*	*	6266	*	4734	6838	1804	2450	3811	3843	4504	*	6674	3238	4767	6553	3502	*	6787	40
+       25	6838	6894	658	1449	1115	894	9073	1181	1578	
+
+K 41   3123	6774	4803	3636	5828	4833	5103	6683	2565	3864	6255	3983	*	2967	3427	4073	4707	6080	5568	*	41
+       124	3690	7744	1895	452	461	1871	9102	2136	1390	
+
+T 42   5787	6704	5824	4871	7169	2476	4875	6421	3762	4427	*	3532	6657	5000	4416	2805	2330	5854	*	4877	42
+       145	3651	5947	1653	552	0	*	9149	2242	1122	
+
+G 43   5196	*	5696	4762	5803	1912	4702	5137	3518	4121	*	2754	5220	4233	3747	3773	*	6529	*	4852	43
+       457	1882	*	1495	632	658	1448	9145	4838	1147	
+
+R 44   3905	6434	3746	3343	*	3177	5552	5234	3038	*	5257	3982	5264	3106	3486	5013	3925	4756	6194	*	44
+       213	3074	5745	1995	417	0	*	9162	2857	1000	
+
+L 45   4092	6687	3340	4036	4135	5114	4596	3981	4751	3434	5771	4456	4162	5092	4048	4171	4200	3856	6786	4202	45
+       105	3831	*	2190	357	0	*	9181	2413	1351	
+
+I 46   4762	*	4718	5830	3970	*	5596	2880	5986	3398	6829	4793	3893	7184	4260	7205	3256	2482	5988	3334	46
+       23	5977	*	1000	1000	*	*	9156	1119	0	
+
+S 47   4816	*	2207	4784	5510	7241	4940	4833	3065	4305	7019	3584	3622	4685	3748	4293	3939	5276	*	5822	47
+       76	4278	*	1326	734	*	*	9156	1770	0	
+
+L 48   4966	*	*	*	2364	5563	*	4058	*	1009	6750	*	6539	*	5852	5248	*	4072	*	3786	48
+       15	6566	*	1000	1000	*	*	9156	1046	0	
+
+S 49   4397	5800	5073	5852	6295	6855	*	*	*	*	*	5756	6350	*	*	283	6196	*	*	*	49
+       12	6909	*	1585	585	*	*	9156	1000	0	
+
+E 50   2693	6465	6295	1939	6650	*	4858	4410	5961	4079	6566	6703	2622	5105	4427	5550	5771	3380	*	*	50
+       31	5574	*	3711	115	*	*	9156	1186	0	
+
+Q 51   3358	*	4132	3944	6835	5803	4703	6998	4685	3781	4805	4346	5752	1429	4089	5352	7003	6350	*	5800	51
+       0	*	*	*	*	*	*	9156	0	0	
+
+N 52   4801	6860	4717	3015	3065	5902	2793	*	*	6611	6529	4065	6551	2760	6039	4818	7019	6789	4866	2535	52
+       79	4238	*	3025	189	*	*	9156	1870	0	
+
+L 53   3604	*	*	*	4767	6835	6614	2964	5802	1388	3357	7024	6942	*	*	*	*	2550	*	4326	53
+       0	*	*	*	*	*	*	9156	0	0	
+
+V 54   3606	5754	5568	6193	4543	7006	6693	3035	5458	2288	5858	5504	*	5069	6729	6987	3918	2779	*	2675	54
+       0	*	*	*	*	*	*	9156	0	0	
+
+D 55   4440	*	1995	6770	4137	4643	5113	5886	4962	6971	5777	2942	6918	5437	5054	2642	5783	*	4303	3790	55
+       48	5846	5996	3029	189	*	*	9156	1194	0	
+
+C 56   4112	1173	6634	*	4838	4857	4696	4532	4502	4659	6501	4076	5783	3987	6979	5250	5772	5812	5855	6097	56
+       51	6910	5241	4087	87	*	0	9165	1000	1128	
+
+S 57   2890	4386	3641	5523	6954	4886	*	4413	5479	4890	5607	3941	*	5701	5529	2297	3694	3119	5256	5511	57
+       159	5490	3608	1585	585	2562	268	9120	1222	1591	
+
+G 58   5474	*	3892	5238	6534	4502	4279	4771	3062	5232	*	3810	4898	4535	3018	3292	2960	4420	7027	4721	58
+       132	4348	4700	1249	787	1545	605	9020	1663	2828	
+
+P 59   3837	*	3255	3633	4415	3915	5801	5277	3477	5062	5500	4154	3832	5318	4154	4015	4511	4403	6474	3755	59
+       929	2511	1741	2615	257	2786	226	8947	3408	2743	
+
+Q 60   4516	4639	3017	3159	3687	4463	6156	6067	4761	5258	6005	4634	6399	3766	4177	3460	4158	6125	5946	3444	60
+       467	2499	3330	1258	782	2277	333	8721	2780	5739	
+
+G 61   3706	4681	4060	6240	5608	1604	5438	5889	4227	5147	*	4350	3892	6077	5039	3236	5151	4498	*	*	61
+       121	3635	*	1042	959	399	2050	8723	1786	5644	
+
+N 62   3961	*	3254	4550	*	2631	6423	5160	4308	3691	6781	2348	5879	5043	4753	3754	3954	5532	6771	*	62
+       47	5516	6578	3235	162	592	1570	9136	1199	2332	
+
+E 63   5224	*	2666	3762	4602	3319	4409	6586	3493	4417	6109	3963	4885	3834	5214	3199	5222	6619	5089	5460	63
+       16	6531	*	0	*	1011	989	9164	1013	1540	
+
+G 64   3400	5913	4908	6853	6623	1272	6767	5696	4211	4793	5800	4762	4022	6225	4550	3745	6176	4532	*	*	64
+       78	4903	5711	3726	113	*	0	9182	1469	1193	
+
+C 65   6558	725	3888	5166	5961	5793	5794	6892	4938	5823	*	5764	6835	6896	6678	5587	5759	4367	6659	4823	65
+       83	4389	6892	1604	575	*	0	9164	1702	1551	
+
+N 66   4010	5244	2874	3777	4921	4213	4768	6765	3967	5627	6940	3395	6459	2866	5861	3184	4538	5868	*	4440	66
+       183	3401	5358	1150	865	2273	334	9158	2587	1686	
+
+G 67   4154	*	4958	4570	5866	760	*	6317	*	4577	*	4695	5740	*	5226	4475	4286	5790	*	6759	67
+       12	6895	*	0	*	1802	488	9120	1000	1943	
+
+G 68   4330	5720	*	5247	5696	664	*	*	*	6955	6752	4248	6790	5829	4576	3760	5013	6487	*	*	68
+       94	4244	6589	1171	847	*	0	9133	1779	1637	
+
+L 69   *	*	3484	5893	3457	6515	5421	4937	6775	4614	4867	2549	5204	6566	4754	2640	3644	5058	3764	4013	69
+       40	5178	*	3045	186	761	1286	9123	1364	1799	
+
+M 70   4551	6506	6778	5886	4291	7518	*	3070	6992	2885	4084	4718	2654	*	5786	3961	2821	3830	*	4281	70
+       37	5744	7247	646	1469	*	0	9181	1162	1239	
+
+D 71   4225	5746	4314	2998	3646	4931	7518	4987	4838	2648	5305	4217	5540	6921	4181	4080	4293	4761	6980	3482	71
+       74	4750	6255	734	1326	*	0	9182	1572	1376	
+
+Y 72   3898	*	2857	3051	6996	4522	5774	5253	4002	3869	5416	3952	4386	4712	4059	3953	3648	5695	4803	6144	72
+       15	6602	*	0	*	1072	931	9088	1018	1596	
+
+A 73   1044	5295	6519	*	4799	3236	*	4449	*	4326	6437	6006	5873	5786	*	4893	4632	3542	*	5737	73
+       0	*	*	*	*	*	0	9181	0	1239	
+
+F 74   5781	6728	6752	*	2937	5281	6000	3936	5099	1830	3364	*	4911	6493	*	5193	4788	5334	3572	3302	74
+       21	*	6108	2000	415	*	0	9181	1000	1239	
+
+Q 75   4121	*	3485	3164	7129	4726	5523	5152	2311	4352	*	3635	6954	3776	3373	3586	5770	6527	*	5276	75
+       23	6490	7637	1585	585	1117	892	9113	1020	1576	
+
+Y 76   3516	6399	*	4617	3055	6506	4616	4823	6956	3380	6575	4452	*	*	6836	4777	4478	3942	3589	1977	76
+       16	*	6493	*	*	494	1785	9181	0	1368	
+
+V 77   2679	*	*	*	3780	4830	*	2591	*	1772	3406	*	*	6862	*	7010	7327	3216	4930	5657	77
+       84	6523	4447	1000	1000	1155	860	9328	1020	1180	
+
+Q 78   3347	6644	6930	4237	6976	6505	4504	3855	3115	3311	5683	4572	6858	3207	4316	3791	3300	5124	5247	5328	78
+       33	5984	7260	0	*	1122	888	9148	1130	1814	
+
+D 79   3945	*	4174	2651	6824	4470	*	6551	2944	4050	*	3284	*	4726	3007	3052	4023	6739	*	6747	79
+       74	7201	4542	0	*	*	0	9257	1000	1523	
+
+N 80   5744	*	4344	4310	4784	5105	3809	5655	4393	3833	5970	2611	*	4562	4739	3818	3384	4531	3512	4313	80
+       1360	5667	759	2951	200	847	1171	9225	1156	2211	
+
+G 81   5714	*	3567	3751	4583	2614	3943	4012	3750	*	4072	4130	5403	3186	*	3845	5391	5803	*	4199	81
+       51	4851	*	1585	585	61	4602	8182	1133	7491	
+
+G 82   *	*	6851	*	5296	279	6295	*	5276	5738	*	6510	5889	*	5724	6548	5863	6656	*	*	82
+       72	4650	6819	1283	764	0	*	9300	1560	1300	
+
+L 83   4103	6511	*	5844	3184	6786	*	1998	*	2257	5203	*	4269	5114	*	5118	5741	2570	*	6500	83
+       19	6288	*	3459	138	*	0	9350	1062	1010	
+
+D 84   3386	3255	4462	4881	5537	5922	6771	*	5567	3649	5323	*	2549	5243	6844	3643	4831	2485	*	4396	84
+       0	*	*	*	*	*	0	9350	0	1010	
+
+S 85   4240	*	3858	3569	5995	5747	*	*	4400	2814	6729	5940	2915	5878	4012	3563	2324	*	6771	4676	85
+       11	7022	*	2807	222	*	0	9350	1000	1010	
+
+E 86   3844	*	3481	882	6305	5406	*	5675	5909	4327	*	4765	*	5259	5781	6003	5941	4409	6674	7336	86
+       128	4165	5115	3677	117	*	0	9350	1883	1010	
+
+E 87   3116	6774	3125	2619	*	3711	6637	6651	4184	*	*	5114	6406	4095	3968	2478	4178	4350	*	*	87
+       43	6950	5571	0	*	434	1944	9167	1000	1540	
+
+S 88   4636	2423	2425	3802	4158	5448	5359	5714	5878	4198	*	3452	6597	6532	4991	4977	4063	4570	*	4506	88
+       54	5801	5751	2807	222	*	0	9254	1133	1390	
+
+Y 89   4762	4213	5032	*	3440	*	*	5644	*	3642	3767	5334	*	5794	5173	5606	5781	4659	3250	1478	89
+       177	3111	*	2070	393	2483	284	9230	2791	1721	
+
+P 90   4375	*	*	4991	5838	5179	*	6454	4479	6748	*	5556	648	5961	5890	3827	5218	5631	*	*	90
+       0	*	*	*	*	*	0	9289	0	1568	
+
+Y 91   5694	5443	6707	5576	2886	5258	*	6857	*	4692	*	5165	*	5104	6708	7004	5758	6564	4093	846	91
+       65	5372	5671	0	*	*	0	9226	1421	1568	
+
+E 92   6782	6955	2850	4391	*	4234	5644	5371	3312	3957	*	3532	4516	3974	3796	3368	3342	3990	*	6668	92
+       20	6188	*	1585	585	1600	578	9192	1062	1944	
+
+A 93   3961	6019	2833	3439	4339	2527	*	4684	*	4809	4889	4067	4444	5686	6879	3225	4306	4655	6880	5842	93
+       129	3718	6708	2802	223	1911	446	9217	2209	1591	
+
+T 94   3376	*	5219	3977	*	4250	5793	4976	2865	4759	6799	3937	4625	4972	3270	2990	3342	5042	*	4982	94
+       336	2395	5824	2749	232	1055	947	9224	3886	1556	
+
+E 95   4223	*	3047	2658	5687	3998	5327	*	3585	4172	*	4172	3948	3697	5377	3836	3670	5026	6634	6569	95
+       456	2057	5032	1952	431	2097	384	9232	4486	1543	
+
+E 96   5392	*	5145	3346	5186	1981	5068	6540	5108	5642	6717	3389	3686	4206	5717	3124	3815	5066	*	7000	96
+       123	3611	*	2279	333	202	2935	9173	2153	2108	
+
+S 97   2955	6720	5182	5009	5887	4961	6929	4450	3449	4981	5265	4016	3401	4437	5048	3338	3245	3499	*	5319	97
+       69	4429	*	1785	495	0	*	9298	1687	1006	
+
+C 98   4275	804	4898	4792	6514	*	*	5327	5807	5849	6680	6606	*	6519	6731	4374	4446	4221	5788	5126	98
+       91	4504	5888	2080	389	*	*	9300	1683	0	
+
+K 99   4417	*	3460	4005	5705	6481	5279	6720	3353	4533	*	5255	2647	3633	2871	3678	3651	5849	*	6044	99
+       261	2723	6149	2556	269	*	0	9295	3370	1160	
+
+Y 100  3614	4879	4758	5687	3633	5610	4777	3836	4671	3123	*	3520	3843	5647	5146	4168	4558	4050	4984	3812	100
+       138	3799	5692	2403	302	2184	358	9306	2111	1421	
+
+N 101  4618	6831	3150	4752	5587	4125	6699	5729	3940	4418	5838	3589	3044	3901	3052	3627	5398	4400	*	5584	101
+       99	4155	6644	1996	416	921	1083	9265	1830	1691	
+
+P 102  4423	4056	3357	4235	*	3695	*	5431	3264	5121	*	4478	2463	3981	4150	3218	5851	5197	*	6455	102
+       172	3598	5074	2317	323	1485	638	9257	2229	1427	
+
+K 103  3621	4680	2947	4157	*	4179	5942	6922	5599	5194	7588	3223	3855	3733	3728	2651	4352	5880	6793	*	103
+       250	2735	6776	2212	351	319	2333	9230	3204	1749	
+
+Y 104  3398	5312	4094	3893	6283	3954	4886	4932	3103	4497	*	3167	3886	3953	4364	4229	3802	5817	*	6095	104
+       223	3331	4509	2360	313	*	0	9277	2531	1186	
+
+S 105  4168	*	5087	3595	6253	3978	5671	6050	3706	4640	5123	3838	3195	4019	3426	3725	3963	3898	*	4839	105
+       187	3345	5432	2486	284	1234	799	9261	2537	2014	
+
+V 106  3885	*	5652	5281	4900	3499	5565	4422	3164	3950	6647	4211	4633	5773	3019	3741	4172	3201	6512	5328	106
+       78	4242	*	2014	410	889	1121	9231	1731	2092	
+
+A 107  3347	5868	6799	*	5164	4108	4801	3618	4249	4074	6075	5202	5142	5854	5177	4962	4555	2807	6000	2237	107
+       50	4869	*	944	1058	531	1699	9249	1502	1432	
+
+N 108  5221	*	6828	5290	4938	5197	3684	4307	2572	4496	*	4614	3723	4809	2996	3985	3463	4772	7264	3974	108
+       25	5883	*	2946	200	*	0	9289	1150	1018	
+
+D 109  3999	4382	5207	6871	4229	7013	5868	1838	4834	3076	6837	*	6000	*	*	4102	4851	2243	*	6170	109
+       89	4279	6935	2639	252	*	0	9289	1797	1018	
+
+T 110  5208	*	3619	4448	5605	4455	5357	5989	2303	5917	*	4546	5734	4714	3506	3449	3070	3712	5677	5260	110
+       0	*	*	*	*	0	*	9278	0	1191	
+
+G 111  4423	*	2722	3166	5936	2652	4729	4934	3802	5209	*	3511	6047	5451	3943	2801	*	*	6442	*	111
+       20	6807	7644	1000	1000	*	*	9296	1000	0	
+
+F 112  3746	5383	5698	6683	2657	6672	5328	4769	6594	3699	7263	*	6816	*	5551	4981	5480	3442	3973	1695	112
+       43	5105	*	2559	268	0	*	9299	1366	1000	
+
+V 113  4045	6085	5245	3473	5762	4570	5423	3418	3582	5350	*	5349	*	4243	3416	4805	3750	3575	7199	2727	113
+       108	4155	5943	1662	548	*	*	9300	1848	0	
+
+D 114  4528	6788	4229	3962	4843	6429	4878	4197	3951	4916	5371	3979	5799	4235	3310	3521	3678	3538	*	3529	114
+       86	4678	5745	2449	292	*	0	9279	1552	1186	
+
+I 115  4543	*	5708	6272	4672	4995	*	1679	6811	2123	7308	*	6084	*	6618	*	5566	2257	*	4570	115
+       105	4036	6760	1661	548	2092	386	9258	1890	1521	
+
+P 116  3017	*	3533	3691	5468	3084	6982	6547	4936	6054	*	3813	2608	4985	4458	3906	3943	5305	*	4773	116
+       279	3588	3428	1713	525	1975	424	9257	2335	1532	
+
+K 117  5428	5788	3794	3519	6040	4720	6591	6766	3982	4090	6562	3243	2714	5479	4822	2812	3628	5121	*	5248	117
+       1515	721	4518	1476	643	0	*	9041	7117	3052	
+
+Q 118  4003	6800	2068	4523	*	4910	6487	*	4465	5918	6770	2229	7144	4248	4624	3145	3675	*	*	5242	118
+       142	3413	*	2398	304	0	*	9239	2404	1557	
+
+E 119  5287	7150	4386	2453	*	*	7050	2468	6034	3448	6818	5844	4250	7040	4696	4311	4980	2493	5337	4952	119
+       57	4699	*	2566	267	*	*	9300	1600	0	
+
+K 120  3762	6668	2713	1850	6916	5268	4443	7031	3633	5074	*	3502	5541	5903	4149	4717	5008	5708	*	5850	120
+       0	*	*	*	*	0	*	9293	0	1021	
+
+A 121  2654	7038	3198	2588	6446	5872	5865	4371	4145	4423	6519	4574	*	3155	4528	3844	5067	4765	5943	*	121
+       28	6993	6419	1585	585	*	*	9300	1000	0	
+
+L 122  4893	*	*	*	5257	*	*	1146	7219	2361	3136	*	*	7020	*	5850	5347	3129	6748	*	122
+       10	*	7219	*	*	*	0	9156	0	1256	
+
+M 123  4623	*	*	5719	5378	*	*	3922	899	4072	3472	*	*	3465	4912	6788	*	6724	6266	6762	123
+       25	5838	*	0	*	0	*	9165	1133	1383	
+
+K 124  3976	*	4802	3291	6611	6519	5240	*	3077	3585	6934	4388	6691	3197	3117	2844	4294	7347	4720	5332	124
+       11	*	7017	*	*	*	*	9300	0	0	
+
+A 125  1567	5684	5856	2581	5535	5842	3696	4492	6442	3204	4505	6844	*	*	*	4607	5703	5327	6404	5145	125
+       13	6829	*	0	*	0	*	9303	1000	1000	
+
+V 126  6570	*	*	*	6292	*	*	1524	*	1119	5933	*	*	*	*	*	6855	2800	*	*	126
+       18	*	6322	*	*	*	*	9300	0	0	
+
+A 127  2527	7227	4491	5655	4162	*	4166	3854	4543	3364	3008	6824	6676	5377	4392	4275	6547	4596	5886	3329	127
+       37	7019	5805	0	*	0	*	9291	1030	1081	
+
+T 128  3723	6859	3847	2994	*	6649	5056	6422	3091	3291	*	3215	*	3736	4887	3056	3497	6569	6815	7724	128
+       214	5806	3058	1569	593	0	*	9278	1351	1247	
+
+V 129  4247	*	6770	4206	*	2815	3611	5600	3015	7536	*	3033	*	5164	3723	4815	6670	4296	6539	2494	129
+       42	*	5112	*	*	155	3299	9124	0	2893	
+
+G 130  5922	*	6776	*	5723	600	5115	6673	6524	*	*	6550	*	4519	3750	4346	4658	*	*	5109	130
+       0	*	*	*	*	0	*	9155	0	1528	
+
+P 131  2908	*	*	6600	6652	5902	*	*	*	6679	*	*	602	*	5849	3077	5781	7150	*	*	131
+       0	*	*	*	*	*	*	9300	0	0	
+
+I 132  4786	*	6292	*	4477	6308	*	2682	*	2979	5254	*	6745	*	7150	*	7052	835	*	*	132
+       0	*	*	*	*	*	*	9300	0	0	
+
+S 133  2396	5849	6731	5924	6843	4184	6652	2961	*	3813	5563	*	7150	5313	*	3724	3196	2311	6611	4522	133
+       0	*	*	*	*	*	*	9300	0	0	
+
+V 134  1892	5311	*	*	4050	4622	*	2551	*	5057	5793	*	*	*	*	3337	4114	2127	*	*	134
+       0	*	*	*	*	*	*	9300	0	0	
+
+A 135  2749	5799	5038	4821	7038	2137	5648	4734	*	5202	5370	4500	6789	5648	5119	2437	3854	5925	6876	4544	135
+       0	*	*	*	*	*	*	9300	0	0	
+
+I 136  6497	*	*	*	2315	*	*	2301	*	3416	3058	*	*	*	5247	5502	6885	2454	6292	3068	136
+       22	*	6026	*	*	*	*	9300	0	0	
+
+D 137  3690	6696	3385	4597	4845	4220	5765	6655	3055	4533	4433	3037	6883	6983	3662	3804	4627	5285	*	3407	137
+       14	*	6664	*	*	0	*	9292	0	1111	
+
+A 138  2704	5937	5227	5713	5171	6811	6882	3293	*	3598	6767	5701	4806	5840	*	4784	3864	1516	*	5753	138
+       1185	6713	861	2585	263	*	0	9279	1006	1018	
+
+G 139  3935	*	3022	4311	4649	4143	*	*	*	*	*	3563	3679	5040	*	2040	3575	4568	*	3288	139
+       485	4008	2163	484	1810	126	3581	8149	1320	7262	
+
+H 140  4741	*	3700	4297	3651	3221	5102	*	5402	5453	*	4013	3089	5040	4403	3766	4246	*	*	2403	140
+       98	6520	4196	1000	1000	380	2109	9121	1003	3288	
+
+E 141  3826	*	3509	2769	6714	5066	*	6624	3648	5169	*	3640	3184	4131	4729	2620	4638	4622	*	6746	141
+       8	*	7587	*	*	483	1814	9130	0	2267	
+
+S 142  4808	6738	2210	3149	5176	3639	6824	*	4689	4756	5517	3945	*	5878	5715	2417	4359	6045	5448	4767	142
+       31	6266	6882	669	1430	0	*	9254	1153	1490	
+
+F 143  6664	*	6668	5645	1029	5819	6854	5120	*	3208	5272	5087	6875	*	6656	5142	4682	5290	3233	4873	143
+       71	5082	5772	1238	796	*	0	9284	1344	1000	
+
+L 144  5075	*	3964	3845	3493	4129	5692	5346	3638	3523	4324	4095	5040	3413	5814	3770	4439	6812	5013	3843	144
+       24	6981	6889	2039	402	1595	580	9258	1146	1357	
+
+F 145  4070	*	3905	4316	4025	5180	5155	5835	4809	3708	5155	3434	6586	4401	4213	3038	5804	4405	5671	2857	145
+       52	5270	6720	1168	850	528	1707	9271	1286	1331	
+
+Y 146  5130	7019	4437	*	5644	5551	5865	4031	6807	3624	*	5681	3999	6614	6581	5263	4658	5987	5800	983	146
+       119	3660	*	2396	304	940	1063	9273	2162	1153	
+
+K 147  4135	*	3973	3505	6838	3822	5918	5597	2273	5260	5749	3666	6775	4002	4457	3415	3455	7340	6885	5177	147
+       25	5877	*	594	1568	0	*	9284	1172	1000	
+
+E 148  5817	6836	3510	4002	*	2284	5369	6839	3901	6821	*	2892	5655	6847	4501	2217	4128	5711	*	6577	148
+       80	4500	6687	925	1079	*	*	9286	1648	0	
+
+G 149  5579	*	3933	3731	*	763	*	6487	4749	6665	*	4474	6679	5429	5114	5093	4741	6826	*	6884	149
+       166	3203	*	1300	752	0	*	9269	2715	1017	
+
+I 150  7011	*	4763	6823	4971	*	*	1586	5269	4147	6703	5581	*	*	5647	6277	3929	1477	6493	*	150
+       18	*	6327	*	*	*	*	9285	0	0	
+
+Y 151  6657	*	4951	6514	2596	*	6659	3482	5207	3897	4704	*	*	*	6826	6890	4915	4870	4355	1265	151
+       64	5768	5306	0	*	0	*	9138	1164	1256	
+
+F 152  6944	6526	3124	4461	5082	5714	4767	5731	3699	5558	*	3212	4676	3897	3041	4047	3205	4474	6620	4088	152
+       95	4720	5287	1047	955	*	0	9259	1538	1306	
+
+E 153  3464	6590	3390	3668	5339	3137	3861	5566	6772	4816	4006	4753	3182	4996	5900	3449	5164	4370	*	5236	153
+       85	4366	6830	2175	361	2133	373	9231	1828	1799	
+
+P 154  3877	*	5904	4023	6622	5297	5098	4285	4219	5735	*	4419	2332	4750	4405	3210	3275	4257	*	3800	154
+       293	3497	3392	1825	479	279	2509	9100	2369	1877	
+
+D 155  4559	*	3498	3387	6576	6811	5580	5154	3967	5032	*	3033	4045	5537	4800	2633	3070	5603	*	3848	155
+       305	3735	3116	1767	502	645	1472	8972	2041	2542	
+
+C 156  3452	1499	5327	6603	6296	2871	*	4888	*	4948	*	4034	6498	*	4869	3515	4452	5698	*	4464	156
+       298	2632	5316	960	1041	206	2912	9208	3059	3206	
+
+S 157  4738	*	2653	5077	6231	2522	*	*	3857	6507	*	4351	4715	5676	7576	2167	2932	4971	6781	*	157
+       343	2331	6261	1955	430	878	1134	9234	3820	1583	
+
+S 158  5163	*	3528	3895	*	2857	6726	5024	3252	4757	5805	4292	3353	3897	4085	3378	4400	4819	5802	6916	158
+       118	4666	4668	1417	677	390	2078	9130	1636	1618	
+
+E 159  3607	*	3706	3270	4326	5162	6866	4558	3564	6722	5821	3787	4515	3669	4661	3363	3610	4630	6648	4913	159
+       75	4752	6216	1651	553	854	1162	9137	1512	1685	
+
+D 160  3501	*	4248	3756	5157	6647	4423	3536	3532	3006	4584	4489	5645	4256	4749	4234	3941	4098	*	5016	160
+       114	3816	7598	592	1572	1030	970	9118	2093	1582	
+
+M 161  3860	*	5451	5303	6290	1377	*	4457	6432	3715	7277	4281	4189	5739	6792	4131	4049	3590	*	6509	161
+       13	6765	*	656	1453	1184	837	9110	1142	1518	
+
+D 162  4406	6702	3141	*	5760	2294	5530	5190	7266	4498	5865	2057	*	6476	4236	4197	3753	*	*	4128	162
+       19	6249	*	2646	251	0	*	9251	1251	1221	
+
+H 163  *	*	*	*	7015	*	257	6743	*	4873	6667	*	*	4451	5412	*	*	*	*	4936	163
+       7	7613	*	0	*	*	*	9283	1000	0	
+
+G 164  882	5711	4559	4674	5121	4540	*	5586	*	*	*	5827	*	4792	*	3015	4601	4795	*	6729	164
+       0	*	*	*	*	*	*	9283	0	0	
+
+V 165  4234	6496	*	*	6474	5736	*	3501	*	3015	3704	6653	*	*	*	6485	6373	776	*	*	165
+       15	6570	*	3000	193	*	*	9283	1037	0	
+
+L 166  3683	4166	6671	4620	*	*	*	3797	5047	2294	5233	4538	*	4659	5266	4781	2787	2371	*	*	166
+       0	*	*	*	*	*	*	9283	0	0	
+
+V 167  4316	5644	*	*	*	*	*	1083	*	2192	7048	*	*	*	*	*	6725	2171	*	*	167
+       0	*	*	*	*	*	*	9283	0	0	
+
+V 168  6674	7091	6842	*	6649	*	6836	2008	6244	3617	6063	*	*	*	*	6767	3476	1056	*	5846	168
+       0	*	*	*	*	*	*	9283	0	0	
+
+G 169  *	*	*	*	*	19	*	*	*	*	*	*	*	*	*	*	*	6238	*	*	169
+       0	*	*	*	*	*	*	9272	0	0	
+
+Y 170  *	*	*	*	3778	*	6346	6547	6737	6229	*	*	*	*	6405	*	*	5143	1284	1215	170
+       0	*	*	*	*	*	*	9251	0	0	
+
+G 171  5061	6747	1716	6699	*	1075	6589	*	6992	*	6810	3619	*	*	6751	5171	5249	*	*	*	171
+       15	6613	*	0	*	*	*	9238	1014	0	
+
+F 172  5631	*	1513	3263	5860	6965	6652	5552	3945	4742	6845	4440	*	4906	6986	6551	2892	3398	6672	5623	172
+       103	3866	*	477	1829	*	*	9189	1669	0	
+
+E 173  5717	*	1694	1505	*	*	*	5966	5031	*	*	3976	*	5027	4862	3793	4154	5960	*	*	173
+       0	*	*	*	*	*	*	8618	0	0	
+
+S 174  4058	*	4214	4611	*	442	*	*	*	*	*	*	4056	*	*	4349	*	*	*	*	174
+       0	*	*	*	*	*	*	6098	0	0	
+
+T 175  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	299	2417	*	*	175
+       0	*	*	0	*	*	*	3173	0	0	
+
+//
+�HHsearch 1.5
+NAME  d973556a2b119e22f373f42b3ee50271
+FAM   
+FILE  d973556a2b119e22f373f42b3ee50271
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:01:59 2013
+LENG  205 match states, 205 columns in multiple alignment
+FILT  126 out of 1058 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  6.6 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCEECCCCCCCHHHCCCCCCHHHHHHHHHHHHHHHHHHHHHHHHHHHHHCCCCCCHHHHHHHHHHHHHHHHHHHHHHHHHHCCCCCCCCCCCCH
+HHHHHHHHHCCCHHHHHHHHHHHHHHCCCCCEEEEEEECCCCEEEEEECCCCCCCCCCCCEEEEEEECCHHHHHHHHCCCHHHHHHHHHHHCCHHHHHHH
+HHHHC
+>ss_conf PSIPRED confidence values
+9864667122799999902354757999999999979999999999999988753004765789874199856668899999999961787889987889
+9999999880899999999999997478774799999589992899952688874566987589886524675888655789999999986599999999
+99539
+>Consensus
+xxxxxxxxxxlpxLpyxxxxLxpxiSxxxlxxHxxxhxxxyVxxLNxxxxxlxxxxxxxxxxxixxxxxxixxxaxxxxNHxxfxxxLxpxxxxxxxpxx
+xLxxxIxxxFGSxexfkxxfxxxaxxxxGsGWxwLvxxxxxxxLxixxtxnxxxpxxxxxxPlLxlDvwEHAYyldYxnxrxxYixxxwxxinWxxvxxr
+xxxxx
+>d973556a2b119e22f373f42b3ee50271
+MNDLEKKFYELPELPYPYDALEPHISREQLTIHHQKHHQAYVDGANALLRKLDEARESDTDVDIKAALKELSFHVGGYVLHLFFWGNMGPADECGGEPSG
+KLAEYIEKDFGSFERFRKEFSQAAISAEGSGWAVLTYCQRTDRLFIMQVEKHNVNVIPHFRILLVLDVWEHAYYIDYRNVRPDYVEAFWNIVNWKEVEKR
+FEDIL
+>gi|153955389|ref|YP_001396154.1| superoxide dismutase [Clostridium kluyveri DSM 555]gi|219855805|ref|YP_002472927.1| hypothetical protein CKR_2462 [Clostridium kluyveri NBRC 12016]gi|146348247|gb|EDK34783.1| Sod [Clostridium kluyveri DSM 555]gi|219569529|dbj|BAH07513.1| hypothetical protein [Clostridium kluyveri NBRC 12016]
+---------NMKPEVFNF-NSVKGISQRQLNEHYK-LYVGYVNILNQiwntDYTPQNYTDSNP-TYSkMRSLKLGETYALNGVKLHNLYFKNMT---GGN
+TTPHGPVLNSIINQFSSYDNFLSYLTNVGLS--MRGWAILSIDSLDNKFHIIGSDLHDKGSVWISYPILVMDVYEHAYFMDFGTNKKEYISTFIKNINWT
+VVNKRFQK--
+>gi|302697213|ref|XP_003038285.1| hypothetical protein SCHCODRAFT_43770 [Schizophyllum commune H4-8]gi|300111982|gb|EFJ03383.1| hypothetical protein SCHCODRAFT_43770 [Schizophyllum commune H4-8]
+-----RALHTVRPLPYSVeEGLGRFMPPQALKTVAVDYLGGLVERLNNEIRDTELENKK--LVDvIIGAAQqenqvLAFNYGSLALNTSFFLRQLYSETH
+ERsmsy-----DLRTAIRTQYGSLAQLKSAFMGAASGMFSSGFLWLVSDS-RGNMGIVPTFGPGTLLIRsrshlaasdadfkrprsilddvdadsnpidv
+gipaqaalsdkltalnyGdvLYPLLCVPIYEHAWMsAGFGVwGREEWLRHMWSVVDWAAVSQNY----
+>gi|50547305|ref|XP_501122.1| YALI0B20086p [Yarrowia lipolytica]gi|49646988|emb|CAG83375.1| YALI0B20086p [Yarrowia lipolytica]
+---LGRALHTMPAYSGlgsqaAPTQINKFLSAETVKSAWFEHQHEMLERVNEGLAsseELEGLDLQSLALEtCNRSEDALHHFASGAFANDFFFKGVAST
+VkPGevsepidayhglyvsprdpdyqtvmpalatGetpawgNHPgtDDALYDLILTSFGTVEAFREHLLTKAESIFGNGYTWLVLSKHSGRLHLVNTYNN
+GF-IQkkgtnsaelaaeaaakraveadeakalaelqaeaqnkklnaleekllknkiykmevakqmrqaqpkilHDLKPLLNVNVWQHMWLNDYGAfGKRK
+YLDNFWEKIDWNVVKGRLQ---
+>gi|71402548|ref|XP_804176.1| superoxide dismutase [Trypanosoma cruzi strain CL Brener]gi|70867006|gb|EAN82325.1| superoxide dismutase, putative [Trypanosoma cruzi]
+------GFFSRPRLNYPVaSGIPAFISRRQFDVQYNIFHHDAVATLNRHTLgtSLEGHS-----LEtVIRRAsfdatqAAVHTAAAEHFNYCFFYKSLRP
+--WG-TAVPKQLREAFQLQYGrdgSVdvvEEVKRLFTVVVLSHQeRCGWVYLVWT--GKQFDVVEFPHGACPIGSDLIPLLAINVHEGAYSLDYGpSGLE
+QYAQNYFRACNWFLAERYYLQA-
+>gi|164688120|ref|ZP_02212148.1| hypothetical protein CLOBAR_01765 [Clostridium bartlettii DSM 16795]gi|164602533|gb|EDQ95998.1| hypothetical protein CLOBAR_01765 [Clostridium bartlettii DSM 16795]
+------------KLNYNFYDLNDFINSNELKYSYC-QYGAYLDNLNHILKDYKEFKDAS--LKdLLTNLDsmpdeialKVKINASNALNYEYFFNNLSS-
+-E-KTFAKGKILKEINNSFSSFDNFKKEFEKIALN-SNSDWIFLALNS-QNKLYLTTSKEVSSPVIYKDKIILCLNLDKEIY-----SNREQIIHNFLNY
+VDWNIANKNYN---
+>gi|294948608|ref|XP_002785805.1| superoxide dismutase, putative [Perkinsus marinus ATCC 50983]gi|239899913|gb|EER17601.1| superoxide dismutase, putative [Perkinsus marinus ATCC 50983]
+-----------FDVPFStYANFFPLVQPKALSYHYRSICGRDTARFNTGLRQLSLLPNlpthvrhMGFdallyfcEYEnILSEEiplplcDKLVYYGNSY
+IYHEIYFNCLRA--TGMyddfEEPlsleSSLLVQDITNAFGGMKELFEELLEAALSLDGYGWVWLLSLP-EG-LSVITSQDYDGIHGDQIYAIFNIDLWE
+HAYIESHGANVEAYIKAWWGAVDWNKLDVQY----
+>gi|261884240|ref|ZP_06008279.1| superoxide dismutase(Fe) [Campylobacter fetus subsp. venerealis str. Azul-94]
+-----------RHSPFNP-ATNAVVSEQTCNYHYGKHHQSYVNNLSNLIKgtDFEGAD----LFEILtHSEGAIFNNAAQIDTHDFYWDCIAA-------
+----------------------------------------------------------------------------------------------------
+--------
+>gi|342180748|emb|CCC90224.1| conserved hypothetical protein [Trypanosoma congolense IL3000]
+-----------------------------------------------------------------CLSHRAHFLASEDFCHSLVKRCTRRV--ACPVP-A
+EWKGIVSRQFASEAALEAELVFRAANRREAGWTWLVYDNqrpEEQRLVVVNMPGNRTPLLLGLWPLGVVDMTDKAVV-----------------------
+--------
+>gi|167569530|ref|ZP_02362404.1| manganese and iron superoxide dismutase [Burkholderia oklahomensis C6786]
+---------QMKALSCDP-AQLPDLSERLIVGHYEHNSGGAVKRLNAITDQLAGIAPGSTPVFvPNGLKREELVAANSMILHEIHFENLGA--S--RSID
+RTPEAAIKRDFGSVDRWRDECR------------------------------------------------------------------------------
+------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1000	0	0	
+
+N 2    *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	2
+       0	*	*	*	*	*	*	1000	0	0	
+
+D 3    *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	3
+       0	*	*	*	*	*	*	1548	0	0	
+
+L 4    *	*	*	*	*	*	*	*	*	1195	2861	*	*	2754	*	*	2779	2926	*	*	4
+       0	*	*	*	*	*	*	3227	0	0	
+
+E 5    2322	*	*	3175	*	3516	*	*	2708	*	*	*	3120	3954	3633	3025	3928	*	*	*	5
+       62	*	4567	*	*	*	*	4124	0	0	
+
+K 6    5305	*	*	*	*	5523	*	5334	4072	5170	3598	*	*	4192	956	4317	5075	3767	*	4842	6
+       32	5493	*	2807	222	*	0	5223	1000	1000	
+
+K 7    3708	6360	5796	5350	6010	2304	*	*	4915	3842	3526	5414	4606	*	*	2420	3047	6082	*	3757	7
+       65	4502	*	2792	225	*	0	5798	1098	1000	
+
+F 8    2893	*	6667	3933	4055	6491	*	3560	3581	3850	4438	5575	3502	6683	*	3421	3441	4017	*	3866	8
+       19	6251	*	732	1329	0	*	6102	1302	1000	
+
+Y 9    4151	*	*	*	1817	6203	2070	6147	5744	5082	*	*	*	6923	*	*	*	4576	*	1758	9
+       12	6915	*	0	*	*	*	6161	1000	0	
+
+E 10   4239	*	6279	3075	6698	*	5147	5405	3259	5948	*	6925	4657	4660	4031	2655	2069	4101	*	5093	10
+       0	*	*	*	*	*	*	6215	0	0	
+
+L 11   4974	6404	*	*	5769	*	*	3656	*	990	3969	*	4028	4823	4551	5696	6203	3068	*	*	11
+       16	6473	*	1000	1000	*	*	6253	1000	0	
+
+P 12   4911	*	*	5543	5969	5894	*	5750	4267	5254	5776	7330	721	5823	4353	*	4122	4352	*	6397	12
+       0	*	*	*	*	*	*	6358	0	0	
+
+E 13   4028	*	3369	2657	*	6713	*	*	2734	*	*	5571	1687	5858	4659	4653	3688	5817	*	*	13
+       7	7731	*	1000	1000	*	*	6365	1000	0	
+
+L 14   *	*	*	*	6086	*	*	4709	6243	393	5699	5839	4766	*	*	6633	5395	4414	*	5811	14
+       45	6315	5775	1585	585	*	*	6394	1007	0	
+
+P 15   3913	*	3640	4502	*	4796	6481	6316	3555	5528	6580	4530	1112	5946	*	3183	*	*	*	*	15
+       42	5963	6282	0	*	1011	989	6554	1125	1071	
+
+Y 16   *	5490	*	5481	2398	6281	4783	6375	6089	4672	*	4440	*	*	5366	*	5913	*	5543	884	16
+       72	5085	5691	2470	287	*	0	6549	1127	1097	
+
+P 17   2414	*	2398	3982	*	4365	5165	*	4561	4387	*	2779	3625	5813	4542	3667	5229	*	*	*	17
+       113	3910	6837	1104	903	370	2143	6534	1428	1234	
+
+Y 18   3738	*	6527	4817	3216	*	*	5573	3920	4249	6676	5351	3374	4168	5761	5338	*	3300	*	1735	18
+       333	2531	4905	1303	750	0	*	6561	2099	1066	
+
+D 19   3794	*	2004	4077	*	5518	5023	*	2974	*	*	2684	6779	4501	3619	4116	4129	*	6430	5460	19
+       13	6778	*	0	*	240	2707	6528	1000	1188	
+
+A 20   1569	*	3046	4017	6671	2111	*	*	4642	6872	*	4180	*	6299	5675	3783	6497	5708	*	*	20
+       17	6447	*	2322	322	*	0	6578	1017	1000	
+
+L 21   6863	5383	*	6279	3722	6540	*	3585	6671	622	6087	7125	*	*	*	6388	6597	4262	*	5116	21
+       0	*	*	*	*	*	0	6578	0	1000	
+
+E 22   3403	*	4489	1283	6122	4600	*	*	4235	3294	5857	3797	3788	5929	*	4290	*	6597	*	*	22
+       203	3695	4211	2400	303	*	0	6578	1464	1000	
+
+P 23   3906	*	4391	6557	*	3117	6367	*	3601	*	6294	5264	730	7087	*	5938	*	*	*	*	23
+       0	*	*	*	*	0	*	6487	0	1350	
+
+H 24   4501	*	5368	6477	2304	2508	3968	4755	6661	2673	*	7235	*	6740	*	6582	6084	3377	*	2868	24
+       12	6864	*	0	*	*	*	6616	1007	0	
+
+I 25   *	*	*	*	2911	*	*	1151	*	1935	4164	*	*	*	*	*	*	4161	*	4524	25
+       0	*	*	*	*	*	*	6628	0	0	
+
+S 26   6914	7395	2558	7043	*	*	*	*	*	*	6066	4688	6373	6215	*	606	3796	*	*	*	26
+       0	*	*	*	*	*	*	6668	0	0	
+
+R 27   2351	*	4032	2393	*	4708	*	*	4157	6040	*	4867	2663	4977	3730	3113	5157	*	*	*	27
+       11	*	6991	*	*	*	*	6668	0	0	
+
+E 28   3679	*	4628	2215	*	*	7043	*	2596	6441	5932	3549	*	2458	2728	6040	6588	7111	*	6156	28
+       0	*	*	*	*	*	0	6647	0	1002	
+
+Q 29   3219	*	*	5081	*	3253	*	3015	*	3672	*	6423	*	2838	*	5152	1552	4820	*	*	29
+       0	*	*	1000	1000	0	*	6647	1002	1002	
+
+L 30   6967	*	*	*	3013	*	*	2502	*	1574	2329	6827	*	*	*	6021	*	3178	*	5509	30
+       11	*	6991	*	*	*	*	6668	0	0	
+
+T 31   6160	*	2801	2178	6019	5985	*	6562	2631	5684	6681	3178	*	3899	3243	4275	4692	*	*	5998	31
+       17	6380	*	1000	1000	*	0	6647	1020	1002	
+
+I 32   4482	6757	5377	4621	3348	6376	*	3278	*	2359	5038	5528	*	4851	*	4188	3062	3095	6190	3627	32
+       0	*	*	*	*	*	0	6676	0	1002	
+
+H 33   3221	*	6431	*	*	*	467	6671	*	4696	*	6049	*	5255	*	4911	6478	5419	*	*	33
+       5	8283	*	1585	585	*	0	6673	1000	1002	
+
+H 34   5427	*	*	*	3488	*	1700	*	*	4909	6972	*	*	*	6567	5118	*	7079	2496	1668	34
+       131	*	3525	*	*	*	0	6678	0	1035	
+
+Q 35   6476	6094	2721	3569	3766	2843	4675	6373	4117	5308	*	3917	*	4405	5477	3224	3333	4348	*	*	35
+       96	6381	4259	1000	1000	218	2836	6467	1031	1650	
+
+K 36   5696	*	3590	3551	6126	3729	*	4938	1396	*	7102	4194	*	4032	4323	5477	4462	4107	*	6473	36
+       0	*	*	2585	263	0	*	6607	1002	1349	
+
+H 37   *	*	*	*	4763	*	883	4328	*	2911	*	4658	*	6160	4688	6600	6738	7021	5007	3520	37
+       9	*	7270	*	*	*	*	6687	0	0	
+
+H 38   6404	5561	*	6766	7059	6089	1244	*	*	4719	*	*	*	2311	6082	6735	7037	5622	*	2173	38
+       15	*	6570	0	*	0	*	6664	1000	1000	
+
+Q 39   3269	*	5749	4641	*	3324	5429	6942	2520	6491	*	5317	6954	1788	3775	4059	4964	4915	*	*	39
+       0	*	*	*	*	0	*	6832	0	1007	
+
+A 40   2378	*	4437	6404	5609	1548	5171	7125	7064	6353	6724	4932	7174	5166	5526	4881	3033	6338	5989	4332	40
+       0	*	*	*	*	*	*	6840	0	0	
+
+Y 41   3664	5413	5507	*	6748	*	6615	6392	7125	3155	5279	*	*	*	*	6630	*	4570	*	629	41
+       23	6748	7276	2585	263	*	*	6840	1000	0	
+
+V 42   4768	5514	*	*	6216	*	*	2759	*	3010	6065	*	*	*	*	*	3781	834	*	7070	42
+       11	*	7033	*	*	*	0	6838	0	1000	
+
+D 43   3363	*	2023	3628	*	6978	*	6970	2953	*	*	2066	*	4631	7238	4522	3653	5507	*	*	43
+       0	*	*	0	*	924	1080	6829	1002	1065	
+
+G 44   4775	6793	5868	5229	*	4129	*	6670	2161	6635	5938	1699	*	4460	2756	5011	4032	*	*	*	44
+       11	*	6982	*	*	*	0	6838	0	1000	
+
+A 45   3426	*	*	*	4348	*	*	6251	*	637	6201	*	*	*	6868	6411	3601	4629	*	4471	45
+       9	*	7374	*	*	*	0	6835	0	1060	
+
+N 46   *	6377	*	7196	*	6933	7574	*	5701	6366	*	253	*	6785	6301	7215	4076	6739	*	*	46
+       24	*	5945	*	*	*	0	6833	0	1112	
+
+A 47   2590	*	3409	2726	*	6468	5484	5665	2795	4196	5058	4406	*	3859	4479	4120	3680	*	6615	*	47
+       30	5590	*	1609	573	1201	823	6816	1152	1249	
+
+L 48   1967	6785	7126	4886	7579	5003	4302	3300	6871	1726	7056	6739	6741	6805	5424	5323	4564	3858	*	*	48
+       30	6026	7569	2139	372	*	0	6833	1049	1112	
+
+L 49   4829	6822	5599	3953	6720	*	5777	4189	5967	1578	6022	4843	*	5185	4647	6530	2827	2851	6457	5807	49
+       73	5113	5594	1945	434	2420	298	6837	1159	1153	
+
+R 50   2700	*	4443	2210	*	4446	7182	*	2656	4631	6440	4345	5995	4115	3756	3627	5619	5445	*	*	50
+       667	1434	*	1155	860	1272	771	6805	3405	1324	
+
+K 51   4431	*	3485	2651	*	3260	7332	7312	2502	5759	5621	5360	4160	2770	4830	3714	5436	7730	*	7213	51
+       154	4297	4318	1423	673	*	0	6805	1354	1163	
+
+L 52   6492	6890	7250	*	3658	6337	6246	3715	6812	1231	4562	4882	*	7364	6634	5314	3679	6204	4839	3134	52
+       64	4761	7226	866	1148	682	1408	6777	1191	1534	
+
+D 53   2875	7396	4251	2062	6908	4322	6761	7720	3462	6432	*	4960	4200	3723	4002	3672	5295	6044	*	4402	53
+       79	4703	6047	1183	838	2257	339	6805	1216	1221	
+
+E 54   4034	*	3199	2395	5356	2753	5966	6226	3873	5204	*	3778	5045	4103	6999	3324	5168	5760	7301	5592	54
+       204	3420	4693	1063	940	*	0	6643	1618	1286	
+
+A 55   2900	*	4432	4476	5571	5183	5192	5385	3193	2509	3818	5366	6374	4937	3502	3986	5983	5784	6874	4153	55
+       44	5720	6530	1571	592	2085	388	6588	1079	1559	
+
+R 56   4688	7303	3630	4551	5099	5653	5288	5741	5169	4074	*	4205	3575	5818	3045	1873	3662	6160	*	6980	56
+       974	6306	1064	1585	585	*	0	6717	1031	1485	
+
+E 57   2807	*	2434	3813	5753	4398	*	*	3937	3617	*	4634	3973	3737	3787	3463	4965	6171	*	*	57
+       214	4477	3428	2230	346	5253	38	6223	1094	4338	
+
+S 58   2525	*	3898	4000	*	5650	*	4803	3602	4889	5088	3281	4596	3669	4377	3895	2808	*	*	6102	58
+       37	*	5295	*	*	*	0	5859	0	4465	
+
+D 59   3498	*	4262	4317	*	1832	*	*	5612	*	*	3025	3496	4739	*	2214	5379	5692	*	*	59
+       1860	4729	542	3139	174	4406	70	5854	1203	4519	
+
+T 60   4178	*	*	*	3763	4061	*	4068	2721	3695	*	3451	*	4277	*	3176	3043	3925	*	3611	60
+       708	1367	*	1585	585	1401	686	4851	1499	5689	
+
+D 61   4030	*	2547	4138	5286	4885	5668	4682	*	3953	*	3100	3428	5779	*	2978	3905	3520	*	5673	61
+       152	3325	*	1248	788	113	3734	6463	1320	4287	
+
+V 62   4588	*	6081	5946	3329	5140	6460	2882	7113	1518	6370	5008	5045	7417	6298	5473	*	3205	7311	3904	62
+       33	5452	*	1644	556	2140	371	6787	1107	1241	
+
+D 63   3869	6295	3679	1855	6193	5610	5217	5962	4507	4665	5529	3934	4650	4350	6108	3495	3205	7402	*	6588	63
+       2433	296	*	419	1989	1803	487	6796	5564	1171	
+
+I 64   5641	6311	7250	7483	4376	*	5528	1762	*	2145	4035	6662	*	4392	5613	*	5892	2911	*	3722	64
+       9	7370	*	4165	83	*	0	6804	1047	1103	
+
+K 65   4260	7370	7224	5668	5570	6351	5887	2290	4070	2021	5988	4312	*	6542	3689	4548	5552	2874	*	*	65
+       0	*	*	*	*	*	0	6804	0	1103	
+
+A 66   2952	5573	5597	4527	5704	3444	4938	6394	3292	4829	5711	4209	*	3814	3683	2724	3572	4826	*	*	66
+       32	7500	5912	0	*	*	0	6920	1000	1103	
+
+A 67   4440	*	4623	3480	6712	5845	5361	5397	4884	2019	5766	3449	*	5031	4407	3880	3584	3484	5953	5401	67
+       8	*	7431	*	*	2082	389	6913	0	1239	
+
+L 68   2689	*	*	3917	6018	5163	*	4277	2750	2609	*	6146	5556	3881	4857	2776	4101	5719	*	6610	68
+       289	2794	4746	2438	294	2561	268	6931	2029	1215	
+
+K 69   3246	*	3483	5386	7268	4000	3762	6485	2755	6809	5966	4093	5037	4791	2638	3321	4965	5708	*	5857	69
+       1030	971	*	2529	274	300	2412	6921	4349	1498	
+
+E 70   2490	*	3687	3642	5800	3636	4610	*	3317	4829	5595	4532	4415	5318	3288	4211	4425	4303	*	*	70
+       50	4862	*	1834	475	2390	305	6916	1206	1266	
+
+L 71   4026	*	7281	3362	4433	*	6644	2061	*	2224	4443	*	*	5541	*	*	3992	2360	*	*	71
+       56	4725	*	229	2768	733	1327	6918	1233	1203	
+
+S 72   4826	*	*	*	1805	4386	3291	4097	3708	4375	6365	6420	6510	5039	3282	4430	4710	4750	*	4169	72
+       15	6561	*	1000	1000	*	0	6858	1016	1041	
+
+F 73   *	7053	7511	5734	2286	*	4204	5010	4859	6183	6490	1292	*	4995	*	5026	4658	4953	5799	4101	73
+       8	*	7584	*	*	*	0	6858	0	1041	
+
+H 74   3287	5369	*	4331	4551	5383	5175	*	*	3966	6007	1333	*	4450	6655	5233	5057	*	*	2830	74
+       0	*	*	*	*	0	*	6865	0	1084	
+
+V 75   1018	7155	7221	*	5122	2183	*	6446	*	3181	6824	*	*	*	*	5996	5183	4658	*	5048	75
+       0	*	*	*	*	*	*	6890	0	0	
+
+G 76   2654	6095	4653	*	*	1361	*	*	*	*	6492	3265	*	*	*	1983	5087	*	*	*	76
+       0	*	*	*	*	*	*	6890	0	0	
+
+G 77   4808	*	*	3766	*	1226	4938	*	*	5505	4206	4526	*	2213	*	3603	*	*	6252	*	77
+       0	*	*	*	*	*	*	6890	0	0	
+
+Y 78   2453	6714	5529	*	5219	6637	2025	3566	*	4145	3705	*	*	6934	*	5532	5258	2606	*	3929	78
+       58	*	4657	*	*	*	*	6890	0	0	
+
+V 79   7302	*	7251	*	2903	*	3925	2825	4045	2863	*	*	*	*	6761	4969	6071	3360	2895	2639	79
+       11	*	7094	*	*	0	*	6948	0	1245	
+
+L 80   6548	6295	*	*	*	*	*	6278	*	2173	6437	574	*	*	*	5039	6018	*	*	6274	80
+       0	*	*	*	*	0	*	6885	0	1000	
+
+H 81   *	*	*	*	*	*	519	*	*	3900	*	2607	*	5641	*	*	*	*	*	4290	81
+       0	*	*	*	*	*	*	6889	0	0	
+
+L 82   4245	4498	4572	2128	*	7527	3485	4895	5630	7241	*	3625	*	4332	5437	2459	3115	6934	*	5818	82
+       17	*	6449	*	*	*	*	6889	0	0	
+
+F 83   5985	*	*	*	1576	*	7083	3233	*	1604	4704	*	*	6890	6322	*	*	4752	6332	3364	83
+       0	*	*	*	*	*	0	6876	0	1040	
+
+F 84   6529	*	*	*	955	*	6407	6274	*	5403	*	*	*	*	*	*	*	4865	6264	1405	84
+       0	*	*	*	*	*	0	6876	0	1040	
+
+W 85   *	*	*	*	1275	*	*	*	6282	3629	*	6446	*	*	5995	*	*	6333	1218	5398	85
+       10	*	7218	*	*	*	0	6876	0	1040	
+
+G 86   3539	6723	3490	2132	*	5331	5702	*	2980	4781	*	3287	5306	3777	4635	3380	4986	7423	*	7432	86
+       0	*	*	*	*	660	1446	6871	0	1103	
+
+N 87   5744	2890	*	6649	7055	3458	*	3960	*	*	6064	1715	*	3923	*	2555	3800	4624	7426	*	87
+       19	6278	*	1585	585	*	0	6885	1041	1000	
+
+M 88   *	*	*	*	5075	*	*	2861	*	818	2187	*	*	*	6278	*	6295	5628	*	*	88
+       54	4765	*	680	1412	0	*	6885	1291	1000	
+
+G 89   2363	4782	5360	*	*	3055	*	6308	3480	6355	*	5615	*	4729	3421	2222	3056	5369	*	*	89
+       45	*	5038	*	*	*	*	6889	0	0	
+
+P 90   4180	*	5736	5229	7227	2805	*	*	4513	7325	*	4384	889	6096	6278	4277	4944	*	*	*	90
+       1604	6491	600	1000	1000	*	0	6863	1016	1205	
+
+A 91   2606	*	*	5080	*	*	*	*	2944	4803	*	4509	2988	3249	5103	3041	2819	3777	*	*	91
+       373	3465	2865	0	*	6252	19	5837	1172	5135	
+
+D 92   *	*	2916	3810	*	3102	*	*	3251	*	5389	5872	3004	*	4731	2064	3421	4686	*	*	92
+       224	2800	*	1332	730	93	4009	5283	1308	5321	
+
+E 93   5432	*	3230	3613	6976	3205	4885	*	3741	*	*	2303	4148	4099	3668	3466	4876	6402	5339	7326	93
+       264	5120	2853	685	1403	912	1094	6835	1148	1392	
+
+C 94   2917	6248	5829	6741	*	1361	7019	*	4016	6415	6652	4109	5327	5287	6823	2841	5271	4132	*	7111	94
+       469	2816	2886	2494	282	301	2409	6807	2030	2268	
+
+G 95   4927	5987	*	3732	6581	1490	*	6632	3624	*	6180	4629	4067	3739	5792	2998	3980	7371	*	5876	95
+       234	3399	4191	2392	305	1264	777	6785	1656	2085	
+
+G 96   4472	*	5179	4349	*	1803	*	6153	4547	4648	*	3233	6183	4999	4211	4095	2540	4791	*	5435	96
+       134	3826	5777	1806	486	0	*	6548	1653	2077	
+
+E 97   3432	*	4874	2393	5263	5542	5128	4655	3250	6039	5347	4321	4403	3414	4977	4558	3381	4299	*	6626	97
+       103	4087	6628	886	1124	0	*	6884	1478	1071	
+
+P 98   4106	5423	5393	*	*	7078	*	3519	5805	4837	4583	*	807	5125	*	4104	*	4404	*	*	98
+       183	4015	4123	1162	854	*	0	6879	1409	1005	
+
+S 99   4520	*	3783	3881	7158	3500	*	4748	3900	5817	*	4187	3006	6298	5242	1936	3701	5954	*	5277	99
+       110	4101	6067	2938	202	881	1129	6640	1345	1512	
+
+G 100  3461	7234	3737	5141	*	1465	*	*	4768	7276	6035	5042	2751	4457	4009	4308	4936	6797	*	*	100
+       27	6102	8092	1371	705	415	2000	6842	1048	1322	
+
+K 101  3114	*	3216	2598	5874	4782	7045	*	3063	4356	*	4674	4187	4324	3174	4433	4336	6221	*	5778	101
+       9	7393	*	3170	170	1975	423	6754	1000	1064	
+
+L 102  5209	*	*	*	4336	*	*	3254	*	614	5127	*	*	*	6270	6519	*	3684	5456	6347	102
+       14	*	6703	*	*	*	0	6872	0	1031	
+
+A 103  2351	*	*	3883	6788	5434	5612	5137	2465	2476	4957	6246	*	4342	3560	4927	5624	4589	*	5638	103
+       19	6277	*	1459	652	1231	801	6864	1038	1104	
+
+E 104  3093	*	2690	2423	*	5031	5564	*	2717	6005	*	3804	5105	4882	4917	3708	4184	6758	7148	7295	104
+       54	4779	*	0	*	*	0	6872	1198	1031	
+
+Y 105  1419	*	4432	4301	6433	5013	7173	4068	3579	3142	5647	*	*	4030	4270	5121	6645	6179	6130	5443	105
+       21	7088	7077	2096	384	0	*	6872	1099	1031	
+
+I 106  6474	*	*	6340	4181	*	*	703	*	2467	4919	*	*	*	6010	*	6445	3922	*	*	106
+       14	6705	*	0	*	0	*	6880	1075	1002	
+
+E 107  3961	6636	3506	2141	*	4845	5637	7046	4080	5692	*	2719	*	3798	4084	4586	3217	4715	*	*	107
+       0	*	*	*	*	*	*	6889	0	0	
+
+K 108  3078	6023	4136	2632	*	*	5286	*	2595	4424	6862	4727	*	3286	3164	3542	5832	4873	*	6345	108
+       14	*	6653	*	*	*	*	6889	0	0	
+
+D 109  3906	*	2061	5678	5556	*	5025	*	4427	*	*	4072	*	2836	5482	2172	3610	6405	*	4714	109
+       0	*	*	*	*	0	*	6879	0	1005	
+
+F 110  *	5998	*	6355	408	*	*	6445	*	4902	6480	*	*	*	*	*	*	*	4187	3216	110
+       0	*	*	*	*	*	*	6889	0	0	
+
+G 111  6296	*	*	5113	*	475	*	5631	4968	6445	*	6355	7435	4952	6014	3603	6416	6023	*	*	111
+       53	5087	7228	1350	719	*	*	6889	1176	0	
+
+S 112  6231	6617	3890	*	*	3685	*	*	*	*	*	4246	*	6691	*	462	4549	*	*	*	112
+       0	*	*	0	*	0	*	6718	1000	1000	
+
+F 113  6270	6656	*	5802	1774	*	*	3930	6323	2492	5124	*	*	7269	*	6051	5514	2566	5661	2735	113
+       34	5406	*	1585	585	*	*	6865	1122	0	
+
+E 114  4026	*	1713	1398	*	4830	*	*	5739	*	7300	5232	5602	4290	6846	5060	4436	6522	*	*	114
+       0	*	*	*	*	*	*	6865	0	0	
+
+R 115  2906	*	5181	2583	6663	4128	5894	*	2899	*	6365	1971	*	4752	4155	4080	5697	6043	*	*	115
+       10	*	7198	*	*	*	*	6865	0	0	
+
+F 116  6562	6444	*	*	876	*	*	7103	*	2334	4155	*	*	*	*	*	*	4806	2964	7098	116
+       18	6303	*	0	*	0	*	6860	1103	1000	
+
+R 117  6304	5710	*	4254	5589	*	5698	3947	1258	3976	*	7520	*	3914	2462	5884	7597	4208	*	*	117
+       0	*	*	*	*	*	*	6865	0	0	
+
+K 118  2553	*	3544	2228	7283	6277	*	*	3063	4996	7198	3497	*	4643	4439	3161	3904	*	*	*	118
+       0	*	*	*	*	*	*	6865	0	0	
+
+E 119  4322	*	3291	2001	*	5983	4914	5317	2966	3510	*	4696	6304	2962	5859	5020	5083	6198	*	4739	119
+       0	*	*	*	*	*	*	6865	0	0	
+
+F 120  5739	*	*	*	676	*	*	4176	*	2249	4342	*	*	6656	6779	6917	*	6283	*	*	120
+       0	*	*	*	*	*	*	6865	0	0	
+
+S 121  5048	6427	*	4379	*	5021	6323	3628	2947	2985	5078	4107	*	4817	4884	3223	2559	3581	6304	*	121
+       0	*	*	*	*	*	*	6865	0	0	
+
+Q 122  2002	*	4325	3505	6324	5582	*	*	2770	5837	*	3177	*	4455	3555	3701	3772	5406	*	*	122
+       14	6656	*	0	*	*	*	6865	1005	0	
+
+A 123  2001	7997	7059	4433	*	*	6499	4394	3490	4073	5052	6869	*	*	3775	3640	2515	3277	*	6009	123
+       44	*	5050	*	*	*	*	6865	0	0	
+
+A 124  684	6757	*	*	7235	2845	*	*	*	4178	*	6466	*	6277	*	3770	4655	5052	*	*	124
+       27	*	5732	0	*	583	1589	6804	1014	1177	
+
+I 125  3129	5976	4621	4536	*	*	5870	3844	3379	1964	6311	4838	6759	6604	*	3618	2836	4363	*	6693	125
+       23	*	5974	*	*	1526	616	6835	0	1167	
+
+S 126  2297	*	5508	6534	*	2504	6975	6762	4759	4967	5876	4291	*	5784	5874	1823	3115	*	*	*	126
+       289	4530	2854	0	*	0	*	6840	1315	1216	
+
+A 127  4960	7164	*	*	5797	5269	3819	2692	7100	2260	3351	5041	6366	3619	4790	5446	6424	2539	*	6556	127
+       85	5547	4794	0	*	682	1408	6671	1077	1949	
+
+E 128  4155	*	6204	4953	1306	4529	6410	6955	4703	5498	*	5259	5680	2763	4069	3334	5785	*	*	*	128
+       34	5428	*	470	1847	308	2377	6829	1187	1582	
+
+G 129  3720	6439	*	6324	*	365	*	*	*	*	4759	6189	*	*	6520	4196	7015	*	*	*	129
+       19	6271	*	0	*	0	*	6832	1034	1060	
+
+S 130  4305	6531	4777	6522	*	4792	6565	4226	6648	*	*	4778	4174	4558	4321	875	5133	6550	*	6326	130
+       35	6043	6779	0	*	*	*	6865	1039	0	
+
+G 131  4727	6324	6218	*	*	95	*	*	*	*	*	*	*	*	*	*	*	*	*	*	131
+       11	*	7065	*	*	*	0	6782	0	1008	
+
+W 132  6516	*	*	*	4053	*	*	*	*	*	*	*	*	*	7115	*	6201	*	318	3240	132
+       0	*	*	*	*	*	0	6772	0	1078	
+
+A 133  1981	4614	6080	*	*	3225	*	4458	*	4133	*	7295	*	*	*	*	3365	1403	*	*	133
+       0	*	*	*	*	936	1067	6772	0	1078	
+
+V 134  6861	*	*	*	3616	*	7196	3959	*	4395	7313	*	*	*	*	*	6498	3546	667	4101	134
+       0	*	*	*	*	*	0	6856	0	1002	
+
+L 135  6281	7356	*	*	7110	*	*	5274	*	226	5601	*	*	*	*	6544	5359	4743	*	*	135
+       25	6428	7569	0	*	*	0	6856	1031	1002	
+
+T 136  3624	4701	*	*	6990	3374	*	4261	*	4349	*	6834	*	*	6424	3939	5058	961	*	4459	136
+       110	3774	*	0	*	1224	806	6862	1503	1054	
+
+Y 137  4778	5359	4363	4505	4436	*	6847	3948	4325	3397	*	5786	*	3615	4981	4871	4735	3278	3703	2329	137
+       89	4412	6278	2693	242	769	1275	6746	1335	1101	
+
+C 138  5146	6378	1413	4714	6870	5034	5225	5661	4404	6282	*	2520	5292	4969	3792	4605	5052	5834	*	7032	138
+       288	4771	2791	1366	708	554	1649	6865	1290	1114	
+
+Q 139  4087	5213	4454	5602	5102	5357	5496	7177	2679	4660	*	4379	2172	3844	4097	3745	3720	6668	*	6453	139
+       859	3625	1444	2765	230	1274	770	6868	1589	2111	
+
+R 140  4327	*	3336	2896	*	4096	4890	5619	3716	3912	*	5400	6373	4462	2442	3582	4161	5001	*	5266	140
+       67	4465	*	2772	228	195	2982	6186	1143	3754	
+
+T 141  5011	*	2586	3135	4451	3880	6356	6807	5249	4908	7149	3252	6034	3943	6457	3714	2771	5120	*	4674	141
+       75	5537	5103	944	1058	228	2773	6849	1116	1349	
+
+D 142  5622	5464	4747	5386	5940	1297	4350	*	2472	*	*	3364	6067	3977	5425	4845	6686	*	*	*	142
+       53	6827	5206	978	1022	0	*	6932	1068	1215	
+
+R 143  6219	*	6196	3613	6343	7274	5290	5809	2000	5656	*	3343	6839	3758	2266	3319	4200	7098	6956	*	143
+       56	5035	7073	1574	590	0	*	6836	1226	1135	
+
+L 144  6607	*	*	*	3889	*	*	4435	6861	281	6559	*	*	*	*	7110	*	5226	*	*	144
+       0	*	*	0	*	0	*	6856	1002	1002	
+
+F 145  3794	7283	4201	3009	4439	4268	3972	4827	3175	5128	7199	5432	*	3926	3305	3540	7208	3503	*	5116	145
+       0	*	*	*	*	*	*	6865	0	0	
+
+I 146  5555	*	*	6864	5677	*	*	1094	*	3092	7264	2893	*	*	6479	*	*	2388	*	5537	146
+       0	*	*	*	*	*	*	6865	0	0	
+
+M 147  5546	5787	6483	5022	4214	*	5255	2948	5947	2427	4450	5241	*	5177	6189	4485	3457	2150	*	4962	147
+       11	*	7091	*	*	*	*	6865	0	0	
+
+Q 148  4058	5596	6891	5175	4990	3806	*	6774	4003	4206	*	3461	3716	3527	5570	3476	2300	5814	3853	*	148
+       0	*	*	*	*	*	0	6783	0	1002	
+
+V 149  4102	4341	*	7320	4358	7343	6576	4915	6280	5111	4726	6628	6833	5784	7208	3594	991	3935	*	6288	149
+       10	*	7204	*	*	*	0	6783	0	1002	
+
+E 150  3457	*	3410	4748	4159	5036	4417	5402	3265	7179	*	4760	3211	3510	5913	3695	5575	*	6497	2724	150
+       91	5081	4986	4259	77	1080	924	6740	1223	1065	
+
+K 151  4070	*	2712	4012	6575	4400	5334	5434	5650	3964	*	1066	6719	6261	6952	5713	*	6855	*	*	151
+       0	*	*	*	*	355	2196	6855	0	1250	
+
+H 152  2330	*	5636	5032	*	3331	2229	*	6889	6469	*	3414	6644	2043	*	5802	6351	6191	*	5175	152
+       0	*	*	*	*	*	0	6753	0	1002	
+
+N 153  4068	*	1620	3427	5908	2307	4645	*	*	*	6504	3523	*	4302	6396	4206	5516	6127	*	6337	153
+       98	*	3934	*	*	*	0	6743	0	1002	
+
+V 154  5004	3935	4170	*	6470	5259	4404	5761	7087	4434	5426	2822	6795	4794	6672	2527	2059	4408	*	6492	154
+       94	4731	5300	1575	590	0	*	6686	1292	1542	
+
+N 155  5214	*	*	5962	6649	3362	*	4935	5987	4511	7261	4487	711	*	5940	5692	5514	5225	*	6500	155
+       33	6256	6740	0	*	0	*	6723	1060	1127	
+
+V 156  4107	6071	*	*	4178	5796	4125	2501	*	1848	6003	5609	5243	5358	*	5451	6331	3112	7421	3344	156
+       49	7100	5250	0	*	0	*	6751	1000	1008	
+
+I 157  3973	6887	5443	6858	5136	4264	6104	3603	5250	3626	3324	5561	3811	4390	6299	3371	3120	3162	6481	5358	157
+       419	2372	4088	4585	61	396	2058	6743	2518	1132	
+
+P 158  3241	7685	3551	3951	4354	4628	5296	6471	4136	3767	*	4251	5248	4008	4914	3817	4363	3946	3541	4697	158
+       336	2454	5296	4597	61	120	3646	6703	2204	1521	
+
+H 159  4437	*	3288	5280	*	1176	6289	6214	4212	6683	6924	3447	5772	4739	4663	4249	5761	*	7145	5651	159
+       326	2664	4486	2357	313	363	2170	6725	2128	1164	
+
+F 160  4074	5165	4632	4910	4408	3918	4508	3322	4110	2151	5141	4861	*	4909	6823	3840	4047	5809	*	4446	160
+       58	4677	*	924	1080	0	*	6755	1436	1338	
+
+R 161  5474	6816	*	3939	5915	6271	3449	2686	3565	5071	6427	5391	5874	6172	4877	6107	3247	2238	6421	3861	161
+       7	7714	*	0	*	0	*	6742	1000	1000	
+
+I 162  4225	*	*	*	*	*	*	4112	*	*	7235	6938	258	*	*	*	7015	5052	*	*	162
+       0	*	*	*	*	*	*	6731	0	0	
+
+L 163  6228	*	*	*	7184	*	*	1349	*	993	6600	*	7615	*	*	*	*	4032	*	6916	163
+       0	*	*	*	*	*	*	6731	0	0	
+
+L 164  6835	*	*	*	3475	5416	*	3275	*	591	4823	*	*	*	*	*	*	4043	6099	*	164
+       12	*	6938	*	*	*	*	6731	0	0	
+
+V 165  2281	2698	*	6100	7173	2269	*	5143	*	*	7568	4235	5692	*	*	7198	3064	2484	*	*	165
+       0	*	*	*	*	*	0	6740	0	1003	
+
+L 166  7698	4222	*	*	5970	*	*	1916	*	1519	4250	5318	*	6466	*	6255	*	2253	*	*	166
+       0	*	*	*	*	*	0	6740	0	1003	
+
+D 167  6492	6345	421	*	*	6964	*	*	6069	*	*	2847	6614	*	*	4502	*	6221	*	*	167
+       0	*	*	*	*	*	0	6735	0	1003	
+
+V 168  3735	*	*	6809	5288	*	*	4019	*	2696	3695	6964	*	*	*	5618	3733	1019	*	*	168
+       0	*	*	*	*	0	*	6735	0	1003	
+
+W 169  7069	6671	6261	*	4235	7678	3801	*	*	5358	*	6987	*	6633	*	4798	5532	*	622	3466	169
+       0	*	*	*	*	*	*	6733	0	0	
+
+E 170  *	*	4562	365	*	*	6760	*	5015	6102	*	6343	4181	4500	6092	*	*	*	*	*	170
+       0	*	*	*	*	*	*	6746	0	0	
+
+H 171  *	*	*	6244	*	6441	343	*	4872	*	*	6500	*	5491	4959	5551	*	5457	*	4535	171
+       0	*	*	*	*	*	*	6746	0	0	
+
+A 172  458	4684	6209	*	6959	*	*	6228	*	*	5054	6204	6486	*	*	2975	*	5942	*	*	172
+       0	*	*	*	*	*	*	6739	0	0	
+
+Y 173  *	*	*	*	4221	*	6622	*	*	*	*	*	*	6486	6224	6061	*	6411	3307	351	173
+       36	7535	5686	2807	222	*	*	6739	1000	0	
+
+Y 174  *	6173	*	7021	3542	*	5081	4867	*	2594	4950	*	*	5790	*	5661	6477	4989	4892	953	174
+       12	*	6960	*	*	*	0	6702	0	1083	
+
+I 175  6469	*	5324	4706	5204	*	3619	2776	5060	1331	4918	5494	5226	*	5796	6371	4508	4142	6606	5608	175
+       18	6371	*	0	*	*	0	6641	1029	1152	
+
+D 176  6407	*	617	5520	*	6371	*	*	3104	*	*	*	*	2879	6212	5622	*	5952	*	*	176
+       0	*	*	*	*	2142	371	6641	0	1152	
+
+Y 177  *	*	*	*	3080	*	3478	*	5520	*	*	*	*	6546	6816	*	*	*	4989	476	177
+       18	6348	*	0	*	1288	760	6641	1020	1103	
+
+R 178  6353	*	*	4711	6064	1403	6559	6534	2818	5153	*	5581	6141	2048	3976	6991	*	*	*	5887	178
+       270	2689	5985	1443	661	0	*	6649	2016	1033	
+
+N 179  3143	*	5861	*	5888	6674	7247	5686	4894	4471	*	1107	4762	7050	6138	3902	3568	4511	*	5628	179
+       182	3153	7411	701	1378	0	*	6656	1873	1064	
+
+V 180  4633	*	2872	5008	*	2165	*	*	2694	5650	*	2780	*	5411	2998	7380	*	3480	*	7681	180
+       20	6201	*	0	*	574	1607	6640	1129	1084	
+
+R 181  4575	*	*	*	*	*	*	*	1569	6394	*	6038	*	*	820	*	*	5178	*	*	181
+       0	*	*	*	*	0	*	6671	0	1000	
+
+P 182  1801	*	6479	3171	*	3500	6423	*	3912	5046	*	4743	2877	4653	4837	3770	7301	4718	*	5149	182
+       0	*	*	*	*	*	*	6670	0	0	
+
+D 183  2800	*	2125	2774	*	5252	*	*	2835	*	*	3619	5871	3410	4936	4595	5060	5793	*	*	183
+       0	*	*	*	*	*	*	6671	0	0	
+
+Y 184  *	*	*	*	3143	*	4151	6197	*	*	*	*	*	*	*	*	*	*	5490	332	184
+       0	*	*	*	*	*	*	6671	0	0	
+
+V 185  5113	*	*	*	4907	*	*	1656	*	1497	*	*	*	*	7690	6217	6717	2070	*	*	185
+       0	*	*	*	*	*	*	6671	0	0	
+
+E 186  3834	*	2471	2112	*	*	6197	*	2537	6452	*	3210	*	3632	4181	5501	4681	7182	*	6800	186
+       0	*	*	*	*	*	*	6671	0	0	
+
+A 187  1933	*	4423	3969	6201	7450	*	5994	3887	*	*	1846	6782	6091	3976	3863	3826	5617	*	*	187
+       0	*	*	*	*	*	*	6661	0	0	
+
+F 188  7175	*	*	*	1291	*	*	3270	*	5903	5714	*	*	*	*	*	*	2851	1951	4390	188
+       0	*	*	*	*	*	*	6661	0	0	
+
+W 189  *	*	*	6448	1967	*	6344	5201	*	3304	4190	*	*	6710	*	*	*	5576	1002	7089	189
+       81	4677	5995	0	*	*	*	6661	1219	0	
+
+N 190  4539	*	2867	2726	*	4735	5004	*	2597	*	*	2240	*	4290	4316	3215	6142	*	*	*	190
+       48	4932	*	0	*	836	1185	6644	1272	1125	
+
+I 191  3891	3887	*	*	4917	6454	4841	3338	4588	2879	7281	2502	7650	*	5691	5365	6134	2041	*	5611	191
+       0	*	*	*	*	0	*	6646	0	1017	
+
+V 192  5484	5260	*	*	6448	*	*	1203	*	2553	6344	*	*	*	*	*	5031	1773	*	*	192
+       0	*	*	*	*	*	*	6661	0	0	
+
+N 193  *	*	1415	5123	*	*	*	*	*	6535	*	841	*	*	6588	5870	*	*	*	*	193
+       0	*	*	*	*	*	*	6661	0	0	
+
+W 194  *	*	*	*	5785	*	6120	*	*	*	*	*	*	*	*	*	*	*	70	6100	194
+       0	*	*	*	*	*	*	6658	0	0	
+
+K 195  5161	*	2260	2483	6384	4780	5715	5728	2745	*	*	2831	*	4700	6827	3036	5536	*	*	5817	195
+       0	*	*	*	*	*	*	6658	0	0	
+
+E 196  3346	*	4514	2947	2979	6530	*	3725	3205	4907	6957	4596	*	6090	6746	*	4813	2236	5519	5058	196
+       22	6033	*	613	1530	*	*	6658	1056	0	
+
+V 197  2013	6528	6116	7104	*	*	*	3158	*	4455	*	*	*	*	*	*	*	831	*	*	197
+       0	*	*	*	*	*	*	6655	0	0	
+
+E 198  3516	*	4835	1531	6685	6783	7386	*	5010	5495	6944	2147	*	4822	6147	3327	4987	6384	6494	5959	198
+       0	*	*	*	*	*	*	6655	0	0	
+
+K 199  3100	*	4126	2611	*	6377	4885	6112	2607	*	*	4482	*	3154	3060	3281	6213	6162	6475	5691	199
+       18	6346	*	1585	585	*	*	6647	1015	0	
+
+R 200  4510	6999	*	*	5493	7197	6970	6069	5040	4643	*	2680	*	4807	820	*	5975	5351	*	5201	200
+       14	6680	*	1585	585	*	*	6631	1001	0	
+
+F 201  5352	*	*	*	2458	*	6916	*	*	1633	4887	*	*	*	*	*	*	*	4851	1343	201
+       258	2731	6271	1155	860	*	*	6618	1863	0	
+
+E 202  3210	*	4352	2553	*	6557	*	5780	3105	2940	*	3920	*	2913	4194	3889	4097	5801	*	*	202
+       85	5190	5069	1657	550	*	0	6279	1131	1007	
+
+D 203  2418	*	4792	3674	6179	4706	*	6410	2862	*	5169	2991	*	2261	4187	3645	*	*	*	*	203
+       27	5743	*	0	*	0	*	6134	1000	1154	
+
+I 204  1376	3886	*	4653	4011	3707	5503	3268	*	4493	*	*	*	*	4760	3530	5325	4320	*	*	204
+       0	*	*	*	*	*	*	5466	0	0	
+
+L 205  *	*	*	*	*	*	*	*	*	978	2032	*	*	*	*	*	*	2013	*	*	205
+       0	*	*	0	*	*	*	2400	0	0	
+
+//
+�HHsearch 1.5
+NAME  da9c94dd81bbb9286cd73b3d2469179c
+FAM   
+FILE  da9c94dd81bbb9286cd73b3d2469179c
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:41:31 2013
+LENG  117 match states, 117 columns in multiple alignment
+FILT  107 out of 163 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  4.5 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCHHHHHHHHHHHHHHHHHHCCEECCCHHHHHHHHHHHHHHHHHHCCCCCCCCCCCCCHHHHHCCCCCCCCCCHHHHCEEEEEEEECCCCCCCCC
+CCCCCHHHHHHHHCCCC
+>ss_conf PSIPRED confidence values
+9866677889999999999999983987897899999999999998998398779874799707666437702168467670915587677644467674
+34238999999870369
+>Consensus
+xxxxxxxxxxxexxxxxxekxaexxGyxlNpDxexxxxvxxGLxxnkxxyGxxxCPCRxxgdkexdxxxxdiiCPCxxixexGxChCxLfvxxexxxxxx
+xxxixxxxxxxxxxxxx
+>da9c94dd81bbb9286cd73b3d2469179c
+TSSDTQNNKTLAAMKNFAEQYAKRTDTYFCSDLSVTAVVIEGLARHKEELGSPLCPCRHYEDKEAEVKNTFWNCPCVPMRERKECHCMLFLTPDNDFAGD
+AQDIPMETLEEVKASMA
+>gi|298676070|ref|YP_003727820.1| hypothetical protein Metev_2198 [Methanohalobium evestigatum Z-7303]gi|298289058|gb|ADI75024.1| conserved hypothetical protein [Methanohalobium evestigatum Z-7303]
+---SSEarTERRKNKLRELFTRVVDPLGYKFSPDEELVDFLLEQEVMTEREKGAPYCPCQALPGNREEDMKLV--CPCIPFNRKhfdimKRCWCGLFVHK
+DVTDPDKLEQISPKELEkmEKE----
+>gi|294495625|ref|YP_003542118.1| ferredoxin thioredoxin reductase subunit beta [Methanohalophilus mahii DSM 5219]gi|292666624|gb|ADE36473.1| ferredoxin thioredoxin reductase beta chain [Methanohalophilus mahii DSM 5219]
+---QE---DKVKT-KNWVTKYAQKKGYKLNPDPEMLDLVIEGLANNKIKYGKGYCPCRIPSGDEKEDRKI--ICPCIYHEDEiatdGSCHCDLFFQKvDD
+EKK---EEQQNDSED-------
+>gi|206890211|ref|YP_002249669.1| rubredoxin [Thermodesulfovibrio yellowstonii DSM 11347]gi|206742149|gb|ACI21206.1| rubredoxin [Thermodesulfovibrio yellowstonii DSM 11347]
+------PEKLYEVL----DRYAKSKGLELNKDKNFVFELLKGLLKNEERYGYRSCPCRLASGDKQRDADI--ICPCVysidDIKEYGRCYCGLYVTEEYN
+QGKIEERIVPERRKK------
+>gi|302038852|ref|YP_003799174.1| putative ferredoxin-thioredoxin reductase, catalytic subunit [Candidatus Nitrospira defluvii]gi|300606916|emb|CBK43249.1| putative Ferredoxin-thioredoxin reductase, catalytic subunit [Candidatus Nitrospira defluvii]
+---AEPSKESLDKMWKYVKGFAEKSGTAMHPNEAVTNAVVLGLAAHVDELGKPLCPCNFYPDKQAEAKLRRWMCACDEMQIYKYCHCLLFVREDG-----
+-----------------
+>gi|88602537|ref|YP_502715.1| hypothetical protein Mhun_1252 [Methanospirillum hungatei JF-1]gi|88187999|gb|ABD40996.1| conserved hypothetical protein [Methanospirillum hungatei JF-1]
+----------TeEEIRSWALEYSRSHGWVLNPDEKQTNAVIKGLSRNSEKHGERYCPCRIRsGDKEKDKA---IICPCVYhvheLEQAGHCTCNFFYDPE
+-----------------------
+>gi|91774293|ref|YP_566985.1| hypothetical protein Mbur_2384 [Methanococcoides burtonii DSM 6242]gi|91713308|gb|ABE53235.1| Hypothetical protein Mbur_2384 [Methanococcoides burtonii DSM 6242]
+----------EEEFYNRSKKNAETTGYRLNPDYDVITIAVKGICNNKREYGEWYCFCQKRtGDVEKDKK---IICPCAArsrdVEMRGSCKCGLYIK---
+----------------------
+>gi|149195059|ref|ZP_01872151.1| Rhodanese-like protein [Caminibacter mediatlanticus TB-2]gi|149134772|gb|EDM23256.1| Rhodanese-like protein [Caminibacter mediatlanticus TB-2]
+---------EFLKTEKFAHRVINQFNWKFNPNEEIVERVLKGLTNNKILYGKRFCPCFPVEkRNGKYVSSDDRICPCPQaiekeIPEDGVCHCGIFCNEE
+YVKNE------------------
+>gi|152991978|ref|YP_001357699.1| hypothetical protein SUN_0382 [Sulfurovum sp. NBC37-1]gi|151423839|dbj|BAF71342.1| hypothetical protein [Sulfurovum sp. NBC37-1]
+-----------KKQQRWMEKYCEQNGYTINPSWMMATNLKSNLCEMEETFGKRYCPCFEPsGDKELDKK---MMCPCDYvedeIKEYGTCHCALFGPADL
+SK--------------------
+>gi|334340537|ref|YP_004545517.1| hypothetical protein Desru_1975 [Desulfotomaculum ruminis DSM 2154]gi|334091891|gb|AEG60231.1| hypothetical protein Desru_1975 [Desulfotomaculum ruminis DSM 2154]
+-----------EEIEQRIEAFAKLRGFVFNEDRGM---VLEGLMEKKKQFGDFFCPCKFDNI--P-----ENICPCLEtrkgfVRKEGRCHCGLFN----
+----------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+T 1    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	1
+       0	*	*	*	*	*	*	1000	0	0	
+
+S 2    *	*	*	*	*	1582	*	*	*	*	*	*	*	*	*	587	*	*	*	*	2
+       0	*	*	*	*	*	*	1462	0	0	
+
+S 3    *	*	*	*	*	*	*	*	2044	*	*	*	*	*	2061	949	*	*	*	*	3
+       0	*	*	*	*	*	*	1536	0	0	
+
+D 4    3806	*	1932	4956	*	*	*	*	4507	5430	5001	4298	4573	3074	*	2221	3890	4561	*	*	4
+       152	*	3325	*	*	*	*	3581	0	0	
+
+T 5    3971	*	4738	1763	*	*	*	*	3063	2921	*	5267	*	3065	4977	4110	3412	5420	*	*	5
+       79	*	4227	*	*	*	0	3498	0	1089	
+
+Q 6    3848	*	3069	3876	*	4934	*	2790	5489	*	5496	*	1554	5637	*	4856	5044	3380	*	*	6
+       57	4685	*	1667	546	540	1680	4078	1053	1147	
+
+N 7    *	*	3878	*	4514	*	*	3554	4009	3988	*	4574	3662	*	*	1636	2636	3750	*	*	7
+       33	5462	*	1000	1000	*	0	4205	1015	1018	
+
+N 8    4434	*	3136	1358	*	5054	*	*	3934	*	4722	6074	3422	3446	5119	4798	*	5345	*	5195	8
+       0	*	*	*	*	956	1046	4237	0	1073	
+
+K 9    3794	*	3832	1764	*	5366	*	*	1928	*	*	4209	*	5286	3849	3758	4234	*	*	*	9
+       0	*	*	0	*	0	*	4251	1000	1015	
+
+T 10   4454	*	3838	1772	5998	5856	*	4898	5798	4989	*	4198	*	5947	2913	2293	3874	*	*	*	10
+       18	6328	*	1000	1000	*	*	4640	1015	0	
+
+L 11   4973	*	6272	4477	4394	*	*	3049	2727	1905	4958	*	3666	*	*	*	4535	2633	*	6861	11
+       95	3977	*	1273	771	*	*	4806	1142	0	
+
+A 12   4001	*	2629	1224	*	6952	*	5741	2675	6166	*	4489	*	4379	5238	6658	6413	6673	*	*	12
+       0	*	*	*	*	*	*	4936	0	0	
+
+A 13   2497	*	5245	2424	*	5826	*	5013	1930	4061	5824	6715	7047	4106	3980	5133	5879	4735	*	*	13
+       60	5522	5716	1594	580	*	*	4936	1034	0	
+
+M 14   7033	*	*	*	3838	*	6937	3006	5518	1890	1972	*	*	4870	6515	*	3072	4645	*	4672	14
+       51	5243	6875	925	1079	606	1544	4934	1058	1049	
+
+K 15   *	*	6018	4151	5048	6372	3788	6431	3191	5656	5974	*	*	4444	2012	5929	5576	4485	5415	1957	15
+       0	*	*	*	*	1461	651	4935	0	1044	
+
+N 16   3829	*	4908	2266	5814	*	4347	*	1882	*	7338	3126	6007	3689	3474	5842	6021	6196	*	*	16
+       0	*	*	3225	163	*	0	4939	1077	1013	
+
+F 17   6727	*	6023	4740	1380	*	*	6244	3798	4320	4528	*	*	4746	3179	6032	5495	5870	2883	4746	17
+       24	*	5952	*	*	*	0	4979	0	1013	
+
+A 18   2442	*	*	*	4121	*	5908	3679	7046	1970	5590	*	*	*	*	3481	2674	2900	*	*	18
+       0	*	*	*	*	1096	910	4980	0	1074	
+
+E 19   4069	*	3300	1473	*	*	6188	6599	2585	5164	*	3910	*	3819	4364	5155	4834	*	*	6510	19
+       0	*	*	*	*	*	0	4980	0	1021	
+
+Q 20   3651	*	6172	4805	*	5186	5734	6768	1406	4918	6249	4254	4417	4162	3430	4272	3881	5369	*	*	20
+       0	*	*	*	*	1201	824	4980	0	1021	
+
+Y 21   5660	*	4448	4553	3664	*	6515	3659	6956	4861	*	5451	*	5453	*	6750	5929	2129	*	1395	21
+       0	*	*	0	*	0	*	4977	1000	1000	
+
+A 22   1038	3627	6586	*	*	*	6853	3873	*	5240	*	5710	*	3336	*	4423	4759	3101	*	*	22
+       0	*	*	*	*	*	*	4981	0	0	
+
+K 23   4504	*	3235	1420	*	5893	6282	6918	2190	6049	*	5387	*	3987	4005	5320	6119	6040	*	*	23
+       0	*	*	*	*	*	*	4981	0	0	
+
+R 24   4063	*	*	4897	*	7197	6216	6559	1901	4622	6626	6119	3140	2546	2823	3714	5458	*	*	5795	24
+       0	*	*	*	*	*	*	4981	0	0	
+
+T 25   4469	*	*	*	3423	4322	5162	*	2372	3783	*	4266	*	6268	4664	2182	2784	5694	*	5132	25
+       0	*	*	*	*	*	*	4981	0	0	
+
+D 26   *	*	5196	6065	*	272	*	*	5641	*	*	3682	6141	6745	6931	*	*	*	*	*	26
+       0	*	*	*	*	*	*	4998	0	0	
+
+T 27   *	*	*	*	3596	*	*	5641	*	4371	6559	7072	*	6308	*	*	2129	*	2725	1189	27
+       0	*	*	*	*	*	*	4998	0	0	
+
+Y 28   4306	4964	*	4991	2932	*	3908	5105	2463	*	6578	5395	*	6601	3473	6884	4425	2807	7218	2851	28
+       0	*	*	*	*	*	*	4945	0	0	
+
+F 29   *	*	*	5475	1594	*	*	4416	*	1310	5844	*	*	6660	*	*	4974	4493	*	3432	29
+       0	*	*	*	*	*	*	4945	0	0	
+
+C 30   *	2846	6942	*	*	*	4122	*	*	*	*	564	*	*	*	4568	3986	6187	*	*	30
+       0	*	*	*	*	*	*	4945	0	0	
+
+S 31   4702	*	*	3612	*	6977	*	4811	4298	*	7208	4416	762	6826	5388	3909	*	4547	*	*	31
+       0	*	*	*	*	*	*	4945	0	0	
+
+D 32   *	*	392	5115	*	6194	*	*	*	6404	6022	3302	*	4774	*	5706	*	6470	*	*	32
+       0	*	*	*	*	*	*	4945	0	0	
+
+L 33   4752	7145	4858	2178	*	7371	*	6239	2364	4300	5209	*	3619	3969	3152	4184	4912	5608	5706	5422	33
+       0	*	*	*	*	*	*	4945	0	0	
+
+S 34   4565	*	2784	1292	*	4118	*	6279	4321	*	5706	4933	*	4306	6304	2771	6194	6900	*	*	34
+       0	*	*	*	*	*	*	4945	0	0	
+
+V 35   5142	*	*	*	2783	*	5588	2551	5522	3387	2897	*	*	4520	7218	6578	5082	1857	*	5878	35
+       22	*	6066	*	*	*	*	4945	0	0	
+
+T 36   4296	*	*	*	*	*	*	5410	5415	3458	*	3588	5746	*	6729	5952	1492	1713	*	5427	36
+       0	*	*	*	*	*	0	4913	0	1013	
+
+A 37   3073	*	2573	2523	4895	6941	6561	*	3151	3288	4129	4860	*	6819	4657	3739	4365	*	*	6896	37
+       0	*	*	*	*	*	0	4913	0	1013	
+
+V 38   2924	*	3048	3944	3530	3473	*	4220	6256	4759	5674	4291	6278	6457	4393	3114	4697	3487	*	5941	38
+       0	*	*	*	*	0	*	4913	0	1013	
+
+V 39   5422	5961	*	*	6023	*	*	2918	*	1561	6833	*	*	*	*	*	6141	1148	*	*	39
+       0	*	*	*	*	*	*	4945	0	0	
+
+I 40   4473	*	*	*	*	*	*	2054	4135	1673	4789	*	*	3570	4518	*	6022	2606	*	*	40
+       0	*	*	*	*	*	*	4945	0	0	
+
+E 41   4786	*	5536	1560	*	*	6910	*	2534	3739	4047	4911	*	4116	3155	4782	5139	5722	*	*	41
+       0	*	*	*	*	*	*	4945	0	0	
+
+G 42   4141	*	*	*	*	350	*	*	*	*	*	5706	*	3861	*	4220	5878	*	*	*	42
+       0	*	*	*	*	*	*	4945	0	0	
+
+L 43   *	*	*	4207	*	*	*	3721	*	254	*	*	*	4979	*	*	*	*	*	*	43
+       0	*	*	*	*	*	*	4945	0	0	
+
+A 44   1473	4557	*	*	*	*	*	4289	4124	2066	6066	6296	*	*	*	5060	3530	3243	*	*	44
+       0	*	*	*	*	*	*	4945	0	0	
+
+R 45   4082	*	4959	3145	6942	*	5317	4037	2976	6197	4599	3987	*	4266	1830	6485	3694	5159	*	7177	45
+       0	*	*	*	*	*	*	4945	0	0	
+
+H 46   *	*	*	*	*	*	2374	5148	4396	5133	5706	832	*	6893	6186	*	4024	*	*	4702	46
+       18	*	6342	*	*	*	*	4945	0	0	
+
+K 47   6075	*	6656	2722	*	4966	*	5776	879	4640	*	5886	*	5341	3875	4947	*	5533	6328	6218	47
+       111	*	3759	*	*	*	0	4998	0	1009	
+
+E 48   5949	*	2347	1837	*	6803	*	4878	3648	3501	4399	3955	*	4034	3608	6107	*	5220	*	*	48
+       0	*	*	*	*	2437	295	4948	0	1296	
+
+E 49   *	*	4200	2755	*	*	7165	4067	2597	5442	4381	*	*	4770	1449	5601	4164	6040	*	*	49
+       0	*	*	*	*	*	0	4981	0	1235	
+
+L 50   *	*	*	*	3204	*	4160	6274	6291	2474	6239	5018	*	*	*	*	*	*	6256	804	50
+       0	*	*	*	*	*	0	4981	0	1235	
+
+G 51   *	*	5199	*	*	145	*	*	4615	*	*	5191	*	*	*	*	*	*	*	*	51
+       0	*	*	*	*	2472	287	4981	0	1235	
+
+S 52   2991	*	5952	3838	5790	5252	6141	4163	2134	6113	*	*	*	*	3713	4551	*	6201	*	1742	52
+       0	*	*	*	*	0	*	4998	0	1186	
+
+P 53   4533	*	6762	5329	6066	3435	*	6086	5878	6194	2701	6578	1715	5122	2217	*	*	*	4790	5564	53
+       0	*	*	*	*	*	*	4945	0	0	
+
+L 54   2951	5429	*	*	3235	6304	*	*	*	1930	*	6833	*	6187	*	3563	6922	*	*	1511	54
+       0	*	*	*	*	*	*	4945	0	0	
+
+C 55   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	55
+       0	*	*	*	*	*	*	4945	0	0	
+
+P 56   *	*	*	*	5422	*	*	*	*	*	*	*	34	*	*	*	*	*	*	*	56
+       0	*	*	*	*	*	*	4945	0	0	
+
+C 57   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	57
+       0	*	*	*	*	*	*	4945	0	0	
+
+R 58   *	*	*	*	3038	*	*	*	4969	6342	*	5025	*	3440	547	6279	*	*	*	6166	58
+       0	*	*	*	*	*	*	4945	0	0	
+
+H 59   4430	*	5026	5181	2895	5961	3353	3014	5422	1645	3536	5243	6337	*	5461	6088	*	6702	*	6939	59
+       18	*	6342	*	*	*	*	4945	0	0	
+
+Y 60   2241	*	6056	4789	6210	5892	*	5089	*	4196	*	6282	3954	7035	3705	4545	5210	2655	*	2104	60
+       1003	997	*	0	*	0	*	4998	2623	1009	
+
+E 61   *	*	3664	2995	*	1156	6251	6943	6698	6319	7139	4521	3100	5520	4992	4905	4840	6080	*	*	61
+       265	3524	3627	0	*	*	0	4919	1248	1016	
+
+D 62   *	*	964	4459	*	3837	*	5827	4286	*	*	3518	*	6788	3938	4708	3773	5064	*	*	62
+       26	*	5827	*	*	*	0	4938	0	1338	
+
+K 63   5987	*	3771	3855	5453	5317	*	4814	1317	6115	*	4780	5051	5249	2442	6206	5537	5426	*	7109	63
+       0	*	*	*	*	621	1515	4926	0	1389	
+
+E 64   5514	*	4233	973	*	4559	5908	*	3217	*	*	4418	6426	4055	3831	5417	4776	*	*	*	64
+       15	*	6581	*	*	1518	619	4877	0	1112	
+
+A 65   2717	*	6001	1768	*	*	*	7095	2194	4315	*	4995	4483	3818	5060	6048	5055	4987	6796	*	65
+       23	*	5956	*	*	1876	459	4911	0	1096	
+
+E 66   5926	*	1042	1506	*	*	*	*	5333	*	*	6602	5400	6340	5858	*	5113	*	*	5136	66
+       34	*	5428	*	*	*	0	4877	0	1112	
+
+V 67   4292	*	3408	5297	*	*	*	4061	2572	3006	*	5108	*	4466	2653	6701	4981	2488	*	5392	67
+       668	*	1433	*	*	*	0	4930	0	1198	
+
+K 68   2889	*	6421	4687	*	5701	*	4608	1367	4293	2971	6270	*	*	6067	3246	4193	*	*	*	68
+       470	*	1848	*	*	*	0	4549	0	2415	
+
+N 69   2854	*	4056	3114	*	*	3368	*	2307	3669	*	5155	*	4680	3665	3512	5231	4372	*	*	69
+       47	*	4958	*	*	*	0	4089	0	2830	
+
+T 70   3201	*	2690	*	*	3069	*	2266	5050	4043	*	4216	*	*	2308	4765	5274	*	*	*	70
+       158	*	3272	*	*	866	1147	4053	0	2859	
+
+F 71   *	*	1129	4547	3606	*	*	*	6406	*	*	3510	*	*	4578	*	4060	3358	*	3073	71
+       148	*	3358	2807	222	787	1250	4676	1000	2008	
+
+W 72   5934	*	*	*	*	*	*	1191	*	6466	5459	5805	*	*	2953	*	*	3993	1811	5914	72
+       0	*	*	*	*	870	1143	4735	0	1715	
+
+N 73   *	*	*	6816	6824	*	*	1028	3770	3191	4721	2929	5564	*	*	*	*	3074	*	*	73
+       0	*	*	*	*	0	*	4764	0	1310	
+
+C 74   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	74
+       0	*	*	*	*	*	*	4946	0	0	
+
+P 75   4294	*	*	*	*	*	*	5756	*	*	4341	*	182	*	*	*	*	*	*	*	75
+       0	*	*	*	*	*	*	4946	0	0	
+
+C 76   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	76
+       0	*	*	*	*	*	*	4946	0	0	
+
+V 77   4480	*	2311	7191	*	7369	*	2701	3245	4664	6000	5587	5086	5460	6140	6019	4706	1929	*	5451	77
+       561	1633	*	1968	426	*	*	4946	2133	0	
+
+P 78   4484	*	1351	3304	6453	*	*	*	*	*	*	*	1803	6331	*	6264	6165	*	*	3006	78
+       483	1813	*	2137	372	*	*	4946	1917	0	
+
+M 79   6633	*	*	*	3399	*	5665	1687	*	3207	2028	*	*	*	*	*	*	2460	*	5080	79
+       0	*	*	*	*	*	*	4946	0	0	
+
+R 80   2773	*	6622	2721	6713	*	4139	6633	3082	*	*	4574	3338	3522	2296	6114	4475	7310	*	*	80
+       0	*	*	*	*	*	*	4946	0	0	
+
+E 81   5487	*	3437	1034	*	*	6986	4348	4191	6000	5419	5907	*	3994	3464	6317	4696	5318	*	*	81
+       117	3682	*	2416	299	*	*	4946	1271	0	
+
+R 82   5993	*	3515	2548	3369	6577	*	*	4242	6481	*	6000	*	5602	2609	7171	*	6373	*	1576	82
+       146	3373	*	2234	345	*	*	4946	1403	0	
+
+K 83   *	*	6713	*	*	569	*	*	1855	*	*	6885	*	6601	6310	6826	*	*	*	*	83
+       0	*	*	*	*	*	*	4946	0	0	
+
+E 84   2875	5636	5456	2926	5063	7124	3173	*	6845	*	5253	5698	*	5403	4017	2594	4017	4078	*	3118	84
+       0	*	*	*	*	*	*	4946	0	0	
+
+C 85   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	85
+       0	*	*	*	*	*	*	4946	0	0	
+
+H 86   *	*	*	*	3723	*	825	*	5419	*	*	*	*	*	*	*	5993	*	3859	1990	86
+       0	*	*	*	*	*	*	4946	0	0	
+
+C 87   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	87
+       0	*	*	*	*	*	*	4946	0	0	
+
+M 88   3114	*	5736	6994	*	1388	6884	*	5248	3678	2402	4130	*	4563	5570	5702	5660	*	*	6140	88
+       0	*	*	*	*	*	*	4946	0	0	
+
+L 89   *	*	*	*	5993	*	*	3097	*	205	*	*	*	*	*	*	*	*	*	*	89
+       0	*	*	*	*	*	*	4946	0	0	
+
+F 90   *	*	*	*	891	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1117	90
+       0	*	*	*	*	*	*	4946	0	0	
+
+L 91   *	3097	*	*	3213	5706	*	4425	6278	3028	*	6065	*	6172	*	*	5605	1208	6260	3666	91
+       0	*	*	*	*	*	*	4946	0	0	
+
+T 92   5806	6568	5193	*	*	*	4229	*	2858	5948	*	3331	5675	4715	4714	1817	2014	*	*	6607	92
+       0	*	*	*	*	*	*	4915	0	0	
+
+P 93   3844	*	3781	2483	*	4963	6233	*	1894	*	*	5279	2382	4510	4461	4934	6459	6218	*	*	93
+       14	6715	*	0	*	*	*	4933	1018	0	
+
+D 94   3560	*	1955	1191	*	5417	6680	*	4289	*	*	4709	6349	5113	7166	5416	5314	*	*	*	94
+       0	*	*	*	*	*	*	4874	0	0	
+
+N 95   *	*	5656	5674	4760	2917	6734	3078	5829	4942	*	2426	*	*	5434	6497	*	2255	4286	2919	95
+       0	*	*	*	*	*	*	4696	0	0	
+
+D 96   2227	*	3340	2671	6071	*	*	3730	6096	4238	*	4903	4683	*	*	3209	3194	4380	*	4835	96
+       0	*	*	*	*	*	*	4652	0	0	
+
+F 97   5483	*	2730	3657	2220	5395	*	*	2559	*	*	4753	*	3512	3738	3620	5710	*	*	4661	97
+       0	*	*	*	*	*	*	4575	0	0	
+
+A 98   2368	*	*	4345	*	1670	*	*	3434	*	*	4357	2950	*	5993	3882	*	3498	*	*	98
+       56	*	4723	*	*	*	*	4472	0	0	
+
+G 99   4492	5452	4830	2684	*	2055	*	4670	2335	3910	*	4973	*	*	*	2596	*	*	*	*	99
+       0	*	*	*	*	*	0	4090	0	1018	
+
+D 100  *	*	2757	3237	*	5214	*	3456	2601	*	*	4908	4024	2588	*	4371	2702	*	*	*	100
+       0	*	*	*	*	*	0	3350	0	1018	
+
+A 101  4243	*	4264	2203	*	*	*	*	3933	1740	*	4908	*	*	*	2384	3504	*	*	*	101
+       0	*	*	*	*	0	*	3350	0	1018	
+
+Q 102  *	4919	*	2043	*	*	*	*	3539	*	*	*	*	1038	3151	*	4690	*	*	*	102
+       0	*	*	*	*	*	*	3472	0	0	
+
+D 103  *	*	5282	2243	*	*	*	*	3373	3959	*	4690	*	1973	3206	*	2319	*	*	*	103
+       0	*	*	*	*	*	*	3472	0	0	
+
+I 104  *	*	*	*	*	*	*	513	*	3292	*	*	*	3955	5225	*	*	3237	*	*	104
+       0	*	*	*	*	*	*	3472	0	0	
+
+P 105  4628	*	4136	3626	*	*	*	*	*	*	*	*	1811	3334	*	2045	3139	3615	*	*	105
+       0	*	*	*	*	*	*	3472	0	0	
+
+M 106  4145	*	*	3376	3096	*	*	5339	4119	2339	5207	3339	2945	*	*	5175	3897	4577	*	4109	106
+       0	*	*	*	*	*	*	3456	0	0	
+
+E 107  *	*	1569	2146	*	*	4283	*	2839	*	*	4904	*	*	*	2679	5299	5015	*	*	107
+       41	5175	*	3000	193	*	*	3456	1029	0	
+
+T 108  *	*	3755	1377	*	*	*	4810	5175	5177	*	*	5015	5303	3589	3934	2200	*	*	5185	108
+       0	*	*	*	*	*	*	3456	0	0	
+
+L 109  *	*	*	3934	4109	*	*	2237	*	1690	*	*	*	*	3589	*	*	1880	*	*	109
+       0	*	*	*	*	*	*	3456	0	0	
+
+E 110  5175	*	3934	1857	*	*	4991	4635	3177	3071	*	*	4145	4959	3465	*	5299	5339	*	3318	110
+       172	4151	4157	1000	1000	*	*	3456	1016	0	
+
+E 111  4718	*	3045	1573	*	4506	*	*	1751	*	*	*	*	3687	4334	*	*	*	*	4784	111
+       0	*	*	*	*	*	0	3281	0	1021	
+
+V 112  4762	*	*	2972	*	4285	4545	*	2402	2914	*	3137	*	3791	*	*	3772	3817	*	3481	112
+       0	*	*	*	*	0	*	3074	0	1021	
+
+K 113  3595	*	*	3456	*	3603	*	2998	4821	3051	4717	4805	*	*	*	3550	1976	*	*	4346	113
+       0	*	*	*	*	*	*	2998	0	0	
+
+A 114  2058	*	*	2437	*	3301	*	*	3407	3380	*	*	*	2377	*	3461	*	*	*	*	114
+       0	*	*	*	*	*	*	1948	0	0	
+
+S 115  *	*	*	*	*	970	*	*	*	*	*	2728	*	*	*	1562	*	*	*	*	115
+       0	*	*	0	*	*	*	1626	1015	0	
+
+M 116  *	*	*	*	*	*	*	*	*	2663	248	*	*	*	*	*	*	*	*	*	116
+       0	*	*	*	*	*	*	1626	0	0	
+
+A 117  1652	*	*	*	*	*	*	*	1652	*	*	*	*	*	*	1459	*	*	*	*	117
+       0	*	*	0	*	*	*	1466	0	0	
+
+//
+�HHsearch 1.5
+NAME  db724bcc82eacb181edae3af47403f31
+FAM   
+FILE  db724bcc82eacb181edae3af47403f31
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:16:31 2013
+LENG  52 match states, 52 columns in multiple alignment
+FILT  100 out of 110 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  3.3 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCHHHCCCCCCEEEEEEEEECCCCHHHHHHHHHHHCCCCCEEEEEEC
+>ss_conf PSIPRED confidence values
+9853021000003687899997762588647789999997797641659839
+>Consensus
+mxxxxxxxxxxxxxPxkxfitxGxgxxxtxLxaFdxALxdAgIxnxNLVxVS
+>db724bcc82eacb181edae3af47403f31
+MNAEINPLHAYFKLPNTVSLVAGSSEGETPLNAFDGALLNAGIGNVNLIRIS
+>gi|212224474|ref|YP_002307710.1| pyruvoyl-dependent arginine decarboxylase [Thermococcus onnurineus NA1]gi|212009431|gb|ACJ16813.1| pyruvoyl-dependent arginine decarboxylase [Thermococcus onnurineus NA1]
+MYNRLIrekgKEEVgMsWTTPKRAFIGAATAEGGTKLNAFDNALLKLGIGNVNLVKLS
+>gi|188585514|ref|YP_001917059.1| Pyruvoyl-dependent arginine decarboxylase [Natranaerobius thermophilus JW/NM-WN-LF]gi|179350201|gb|ACB84471.1| Pyruvoyl-dependent arginine decarboxylase [Natranaerobius thermophilus JW/NM-WN-LF]
+-----------LKTLKYFKLVTGTGEGNTSLTAFDKALLNAEVGNFNLLKVT
+>gi|291575308|gb|ADE10233.1| pyruvoyl-dependent arginine decarboxylase [Actinoplanes liguriensis]
+---------------DQIPVVRAIGRGTTSLSAFHDALVTMECGFYNLVRLS
+>gi|229819355|ref|YP_002880881.1| Pyruvoyl-dependent arginine decarboxylase [Beutenbergia cavernae DSM 12333]gi|229565268|gb|ACQ79119.1| Pyruvoyl-dependent arginine decarboxylase [Beutenbergia cavernae DSM 12333]
+---------------PTIRISTGTGSGRTTLSAFDAALRSAGVADFNLLRLS
+>gi|76802875|ref|YP_330970.1| hypothetical protein NP4484A [Natronomonas pharaonis DSM 2160]gi|76558740|emb|CAI50333.1| conserved hypothetical protein [Natronomonas pharaonis DSM 2160]
+---------------GRIRIVWGTATAPTAMASYDAALAAANVHNYNLVAVS
+>gi|52549420|gb|AAU83269.1| conserved hypothetical protein [uncultured archaeon GZfos27B6]
+-------------IPDAFFVTSGAGMDFEQANAFDLALHDAGISECNLVEVS
+>gi|302341587|ref|YP_003806116.1| arginine decarboxylase, pyruvoyl-dependent [Desulfarculus baarsii DSM 2075]gi|301638200|gb|ADK83522.1| arginine decarboxylase, pyruvoyl-dependent [Desulfarculus baarsii DSM 2075]
+------------LVPKYIYLTKGKGEHKEKLASFEAALRDAGIAAQNIVEVS
+>gi|119719781|ref|YP_920276.1| pyruvoyl-dependent arginine decarboxylase [Thermofilum pendens Hrk 5]gi|119524901|gb|ABL78273.1| arginine decarboxylase [Thermofilum pendens Hrk 5]
+-------------LPKKYFVTKGKGLSnVSPLMAFNNALREAGIHQLNLVPVS
+>gi|34540667|ref|NP_905146.1| hypothetical protein PG0903 [Porphyromonas gingivalis W83]gi|188994902|ref|YP_001929154.1| hypothetical protein PGN_1038 [Porphyromonas gingivalis ATCC 33277]gi|334146632|ref|YP_004509559.1| hypothetical protein PGTDC60_0831 [Porphyromonas gingivalis TDC60]gi|34396981|gb|AAQ66045.1| conserved hypothetical protein [Porphyromonas gingivalis W83]gi|188594582|dbj|BAG33557.1| conserved hypothetical protein [Porphyromonas gingivalis ATCC 33277]gi|333803786|dbj|BAK24993.1| hypothetical protein PGTDC60_0831 [Porphyromonas gingivalis TDC60]
+-------------IPNTFFITKGSGESDLELHagSYHMALFDAGISDFNIMTYS
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	*	3129	175	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1967	0	0	
+
+N 2    *	*	3244	*	*	*	*	*	3268	*	*	1210	*	2943	*	*	*	*	*	2131	2
+       0	*	*	*	*	*	*	1967	0	0	
+
+A 3    3191	*	3140	*	*	*	*	*	3394	*	*	1583	*	*	*	2943	2197	*	*	*	3
+       0	*	*	*	*	*	*	1967	0	0	
+
+E 4    *	*	3129	2289	*	*	*	*	3244	*	*	3140	*	*	2131	2097	*	*	*	*	4
+       0	*	*	*	*	*	*	1967	0	0	
+
+I 5    2097	*	*	*	*	*	*	1653	*	1545	*	*	*	*	*	3244	*	*	*	*	5
+       384	*	2097	*	*	*	*	1967	0	0	
+
+N 6    *	2700	*	*	*	*	*	1923	*	*	*	2804	*	*	*	1187	*	*	*	*	6
+       780	1260	*	2241	343	*	0	1818	1167	1114	
+
+P 7    *	2725	*	*	*	*	*	*	1923	*	*	*	773	*	*	*	*	*	*	*	7
+       0	*	*	*	*	0	*	1818	0	1114	
+
+L 8    *	*	*	2247	*	*	*	782	*	3466	3092	*	*	*	*	*	*	*	*	*	8
+       0	*	*	*	*	*	*	1865	0	0	
+
+H 9    *	*	*	2247	*	*	573	3092	*	*	*	*	*	*	*	*	*	*	*	*	9
+       0	*	*	*	*	*	*	1865	0	0	
+
+A 10   3015	*	*	*	*	*	*	*	*	*	1677	3836	*	*	*	1397	*	3135	*	*	10
+       552	1654	*	0	*	*	*	2081	1129	0	
+
+Y 11   *	*	*	*	*	*	*	3775	*	*	608	*	2216	*	*	*	*	*	*	4173	11
+       126	3577	*	0	*	*	*	2335	1138	0	
+
+F 12   *	*	*	*	1749	*	*	*	*	806	*	*	*	*	*	*	*	*	3632	4328	12
+       0	*	*	*	*	*	*	2405	0	0	
+
+K 13   5816	*	*	5654	3130	*	*	*	3146	2324	3231	3955	2011	*	6476	*	4358	5554	*	4831	13
+       42	5112	*	0	*	*	*	3152	1015	0	
+
+L 14   3618	*	*	*	*	*	*	1911	6422	3298	*	*	*	*	*	*	2122	1692	*	*	14
+       0	*	*	*	*	*	*	3362	0	0	
+
+P 15   4827	*	*	*	*	*	*	*	*	4968	*	*	100	*	*	*	*	*	*	*	15
+       0	*	*	*	*	*	*	3362	0	0	
+
+N 16   *	*	4236	*	*	5457	*	*	1683	*	3657	2467	5566	6279	3112	3743	2961	*	*	*	16
+       0	*	*	*	*	*	*	3693	0	0	
+
+T 17   5635	6754	*	4204	*	*	5653	5752	1325	*	6151	5743	*	4543	3168	5345	2202	6648	*	4645	17
+       0	*	*	*	*	*	*	3693	0	0	
+
+V 18   3769	6889	*	*	2406	*	6062	1535	*	4948	4717	*	*	*	*	*	*	2615	*	2878	18
+       0	*	*	*	*	*	*	3693	0	0	
+
+S 19   3778	*	*	*	833	*	5832	5878	5241	*	*	*	4924	*	3247	3151	4524	*	*	6587	19
+       0	*	*	*	*	*	*	3693	0	0	
+
+L 20   *	*	*	*	2065	*	*	1935	*	1992	5400	*	*	*	*	*	5291	2330	*	*	20
+       0	*	*	*	*	*	*	3693	0	0	
+
+V 21   5184	*	*	*	*	6044	*	6266	5752	5878	6848	*	*	*	*	5315	845	1651	*	*	21
+       0	*	*	*	*	*	*	3693	0	0	
+
+A 22   1967	*	*	*	5112	5158	*	*	2068	*	*	*	*	6726	2890	2502	4043	6027	4266	*	22
+       0	*	*	*	*	*	*	3693	0	0	
+
+G 23   2716	*	*	*	*	238	*	*	*	*	*	*	*	*	*	*	*	*	*	*	23
+       0	*	*	*	*	*	*	3693	0	0	
+
+S 24   2924	5283	*	4661	6516	*	6027	3447	3621	*	*	6834	*	*	5226	2321	2807	2150	*	*	24
+       0	*	*	*	*	*	*	3693	0	0	
+
+S 25   2031	5418	6197	*	*	602	*	*	*	*	*	*	*	*	*	4073	*	*	*	*	25
+       0	*	*	*	*	*	*	3693	0	0	
+
+E 26   *	*	4187	1305	6122	6648	5243	4381	5439	5059	4825	6163	*	*	3012	4292	4030	3276	*	*	26
+       0	*	*	*	*	*	*	3693	0	0	
+
+G 27   2551	*	4825	*	*	1210	1951	*	*	*	*	*	*	*	*	3507	6040	*	*	*	27
+       27	5732	*	0	*	*	*	3693	1012	0	
+
+E 28   *	*	2812	2961	4692	4959	6511	*	2099	*	*	4632	2492	6243	4355	4018	4704	5732	*	6062	28
+       0	*	*	*	*	*	*	3693	0	0	
+
+T 29   6872	*	2940	2735	*	*	5159	4456	6027	4488	*	3836	*	*	*	3558	1243	*	*	*	29
+       0	*	*	*	*	*	*	3693	0	0	
+
+P 30   3243	*	*	2668	6900	*	5417	*	1849	*	5583	*	2710	3915	3558	4072	4806	*	*	7051	30
+       0	*	*	*	*	*	*	3693	0	0	
+
+L 31   4825	*	*	*	*	*	*	5345	5291	309	3414	*	*	*	*	*	6220	*	*	*	31
+       0	*	*	*	*	*	*	3693	0	0	
+
+N 32   2155	*	*	4640	*	6908	3584	*	*	*	5732	1752	*	4632	*	3637	2664	4334	*	*	32
+       103	3854	*	1000	1000	*	*	3693	1111	0	
+
+A 33   946	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1101	6094	*	*	*	33
+       0	*	*	*	*	*	*	3693	0	0	
+
+F 34   *	*	*	*	308	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2380	34
+       0	*	*	*	*	*	*	3693	0	0	
+
+D 35   *	*	823	1671	*	*	3292	*	*	*	*	5732	*	*	*	*	*	*	*	*	35
+       0	*	*	*	*	*	*	3693	0	0	
+
+G 36   2196	*	4924	5497	5191	4414	*	*	5745	2534	2919	2016	*	6543	5014	*	*	5072	*	6615	36
+       0	*	*	*	*	*	*	3693	0	0	
+
+A 37   66	5575	*	*	*	*	*	*	*	*	*	*	*	*	*	5415	*	*	*	*	37
+       0	*	*	*	*	*	*	3693	0	0	
+
+L 38   *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	38
+       0	*	*	*	*	*	*	3693	0	0	
+
+L 39   3003	*	*	*	5716	*	5635	5116	*	1545	*	*	*	*	1440	*	6197	4924	*	4337	39
+       0	*	*	*	*	*	*	3693	0	0	
+
+N 40   3703	*	1116	2771	*	*	*	*	3278	*	*	3801	*	4826	5779	4210	4924	*	*	*	40
+       0	*	*	*	*	*	*	3693	0	0	
+
+A 41   225	*	*	*	*	5198	*	*	*	6044	4324	*	*	*	*	4272	*	*	*	*	41
+       0	*	*	*	*	*	*	3693	0	0	
+
+G 42   *	7061	6220	4277	*	568	6649	*	4756	*	*	3698	*	6279	3240	6601	*	*	*	*	42
+       0	*	*	*	*	*	*	3693	0	0	
+
+I 43   6243	4924	*	*	*	*	*	411	*	5832	*	*	*	*	*	*	*	2442	*	*	43
+       0	*	*	*	*	*	*	3693	0	0	
+
+G 44   2298	6040	*	2211	*	1323	2979	*	*	*	*	*	*	*	*	4675	*	*	*	*	44
+       0	*	*	*	*	*	*	3693	0	0	
+
+N 45   5435	5625	3084	4825	4924	5479	5630	*	2814	*	4834	1132	5991	4531	6433	6279	*	*	*	6543	45
+       0	*	*	*	*	*	*	3693	0	0	
+
+V 46   5345	3435	*	*	2609	*	*	5003	*	3413	6027	*	*	5033	*	*	3656	2245	*	1956	46
+       0	*	*	*	*	*	*	3693	0	0	
+
+N 47   *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	47
+       0	*	*	*	*	*	*	3693	0	0	
+
+L 48   *	*	*	*	*	*	*	3048	*	186	*	*	*	*	*	*	*	*	*	*	48
+       0	*	*	*	*	*	*	3693	0	0	
+
+I 49   *	*	*	*	*	*	*	2267	*	3573	3549	*	*	*	*	5832	5328	785	*	*	49
+       0	*	*	*	*	*	*	3693	0	0	
+
+R 50   4334	*	*	3978	*	6044	6392	*	2585	5479	*	6580	4175	6139	1856	3424	2660	5291	*	4734	50
+       0	*	*	*	*	*	*	3693	0	0	
+
+I 51   *	*	*	*	*	*	*	2991	*	3029	4899	*	*	*	*	*	*	624	*	3854	51
+       0	*	*	*	*	*	*	3693	0	0	
+
+S 52   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	51	4839	*	*	*	52
+       0	*	*	0	*	*	*	3693	0	0	
+
+//
+�HHsearch 1.5
+NAME  dbea14172bdf1965e97ce49c46d0fd07
+FAM   
+FILE  dbea14172bdf1965e97ce49c46d0fd07
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:22:59 2013
+LENG  133 match states, 133 columns in multiple alignment
+FILT  102 out of 457 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  7.1 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCEEEEEEEECCCCEEEEEEEEEECCCCEEECCCCCCCCCCCCCEEEEECCCCCEEEEEEEEEECCCCCEEEEEEEEEECCCEEECCCCCC
+CCEEEEECCCCEEEEEEEECCCCEEEEEEEEEC
+>ss_conf PSIPRED confidence values
+9765138998739999999489989999999947997998654588788973179996799978999999996878945999999998997231664889
+929998569999999999817858999999989
+>Consensus
+GxxxddgxxxxixxIxixxxxxxxIxxiqxxYxxxgxxxxxxxxGxxxxgxxxxxxxlxxxxEyItxvsGxxgxxxxxxxIxsLxFxTnkxxxxxfGxxx
+GxxFxxxxxxxxivGFxGrsgxxldsiGvyxxx
+>dbea14172bdf1965e97ce49c46d0fd07
+GKAFDDGAFTGIREINLSYNKETAIGDFQVVYDLNGSPYVGQNHKSFITGFTPVKISLDFPSEYIMEVSGYTGNVSGYVVVRSLTFKTNKKTYGPYGVTS
+GTPFNLPIENGLIVGFKGSIGYWLDYFSMYLSL
+>gi|53791723|dbj|BAD53318.1| hypothetical protein [Oryza sativa Japonica Group]
+------------DLISVQIKSKDTIDHLTFTYkdtKGNQQT---V-SWGG------------------tmgddhlaevSGSVGPFpsqkq----------
+ACTVNSLTFVTS-EGRRGgp--wgkrgkddkDFKVPVGKGRIVGFYARADVFISAIGFYIR-
+>gi|242048128|ref|XP_002461810.1| hypothetical protein SORBIDRAFT_02g008430 [Sorghum bicolor]gi|241925187|gb|EER98331.1| hypothetical protein SORBIDRAFT_02g008430 [Sorghum bicolor]
+-SLWEMeGKSQRLENVTIY--HIGAVEGIQFSYvDEDGQIRTTGTWGRVHpSPLYKTEIKFG-PSEFVKQITGAARH---GGWLSQFKIVTSHKTYGPFG
+VDAGaPSFSYTVReDELVVGFFANADTFVQSIGVCT--
+>gi|15224348|ref|NP_181902.1| jacalin-like lectin domain-containing protein [Arabidopsis thaliana]gi|2281096|gb|AAB64032.1| hypothetical protein [Arabidopsis thaliana]gi|52354293|gb|AAU44467.1| hypothetical protein AT2G43740 [Arabidopsis thaliana]gi|330255220|gb|AEC10314.1| jacalin-like lectin domain-containing protein [Arabidopsis thaliana]
+-LEWEEKGRNMISSIYVAF-DKDTINSIQFSYCQNGGHVVSKKYGMSDaqkqkygsyNGRFHVMfvfalvtddhvktnlcniqVRLN-DDEFVTGLSAIY
+L----CKGITNLNIHTNQGKHGPICDRysSsknimdNYKVEIdvKIRDRrEFGGFFGSFDNygTLTSIGIYVC-
+>gi|38347662|emb|CAE04702.2| OSJNBa0041M06.4 [Oryza sativa Japonica Group]
+----KEGvN----------Y-FICGVPG-----hCAAGMKL--RVVADE-FP-SADTK------------------------------------------
+-----------------------------------
+>gi|294659253|ref|XP_461608.2| DEHA2G01562p [Debaryomyces hansenii CBS767]gi|199433820|emb|CAG90055.2| DEHA2G01562p [Debaryomyces hansenii]
+----------KVTKVRVY--HGGALDGVRFYFNSsdngetKNAPkvplrnylhkltnkssdssenRnssqgvnpKVVTIGHE-KS-HYSDYDIG-PGEYI
+TKFHIRNG-----AWIDAIQIETNTgKKSPMFGNPNGghlSTLESPGQGFHVIGMYGYVGSWLDGLGIIY--
+>gi|328835778|dbj|BAK19070.1| PL-toxin I [Plotosus lineatus]
+---TNNGS--TVRKIWVWA-AGWQIKSMKIWL-TDGREQ---QFGNP-AGN-HSEFEFQ-DGECMTSLSLWG-N-GAGTRLGAIKFKTNRSrEFfahmTD
+WG--LKTEYPIDVGSGICVGVTGSAGSDIDCLGFMF--
+>gi|301122501|ref|XP_002908977.1| conserved hypothetical protein [Phytophthora infestans T30-4]gi|262099739|gb|EEY57791.1| conserved hypothetical protein [Phytophthora infestans T30-4]
+GNEFSDQasvaAGQSIGSITIRA--GERVDGISLEVtaPKAAT----FSHGGS-GG-KANTLTLA-KEEYITSMEAHWGEKKGRTRIFYLSFGTSAGNTV
+AAGSQTESKNTVTAPkGFQLGGFFGQDGNEIDKLGAI---
+>gi|313231270|emb|CBY08385.1| unnamed protein product [Oikopleura dioica]
+GSKWSDVQykSRPVRRIVLW--CGAFLDAIKVDYDIKlGI--GSQKHGTG-RDHQRENVHIH-QGDHVQQITGKTCDFYGQVILTEIRIHTEQgRVHGPF
+GSYNepereLMPFTVGGPHCRLQYLDGK--------------
+>gi|145490355|ref|XP_001431178.1| hypothetical protein [Paramecium tetraurelia strain d4-2]gi|124398281|emb|CAK63780.1| unnamed protein product [Paramecium tetraurelia]
+GDDFDDGMIDKITRVKIQY-NKQNIVAIGIFYEQRQIYK-DHNFCAN-SLskfyfyVWEEEFVIE-KDDYLQQVTGTYD----GMYITSLQFVTYNGQSM
+HFKAsCLGESFNIEN-------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+G 1    4066	*	*	*	*	89	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	6155	0	0	
+
+K 2    5424	*	2639	5723	*	5118	5668	5703	3031	5420	6250	2958	*	4911	4811	2112	3361	4492	*	*	2
+       0	*	*	*	*	*	*	6342	0	0	
+
+A 3    2844	*	4223	2801	5624	5802	4741	5882	4451	3051	5961	4156	2590	*	3994	3826	*	6029	*	5807	3
+       0	*	*	*	*	*	*	6560	0	0	
+
+F 4    *	5723	*	*	1515	*	5985	*	*	*	*	*	5713	4882	5027	*	5339	*	1080	4883	4
+       42	*	5116	*	*	*	*	6696	0	0	
+
+D 5    5440	*	1097	2965	*	*	*	*	6850	6061	*	4390	*	*	*	2437	3495	5894	5665	*	5
+       0	*	*	*	*	1035	965	6721	0	1062	
+
+D 6    *	*	838	3149	5708	*	4949	3947	*	4966	4254	5369	*	6068	*	4459	*	*	*	4562	6
+       53	4804	*	0	*	0	*	6721	1097	1000	
+
+G 7    *	*	3796	5924	*	989	*	4589	4514	*	*	3151	*	5537	3877	*	4449	3748	*	*	7
+       493	1789	*	1184	837	*	*	6726	2564	0	
+
+A 8    2721	5854	4256	5807	5726	4102	5306	5034	3519	5996	4917	4512	3331	4379	*	2763	3444	4026	*	*	8
+       240	3380	4130	1001	999	*	*	6766	1473	0	
+
+F 9    *	*	*	5710	2326	4064	3805	5749	*	*	*	4117	2537	*	4442	2860	4257	5862	6072	2905	9
+       87	4087	*	1044	957	2448	292	6832	1243	1449	
+
+T 10   *	*	2461	4294	5992	2914	6229	*	4869	*	*	3162	4237	3373	3997	3995	2980	4513	*	6133	10
+       0	*	*	*	*	492	1792	6840	0	1351	
+
+G 11   5155	*	4053	5288	5343	2218	4701	6366	3128	6433	6041	4579	2870	5314	3182	4527	5728	3965	*	6114	11
+       18	6346	*	0	*	*	0	7201	1000	1033	
+
+I 12   5448	6664	6160	*	5400	6539	*	1557	6535	2529	*	*	5395	5109	*	*	*	1588	*	6725	12
+       20	6154	*	0	*	*	0	7277	1023	1033	
+
+R 13   6729	*	6183	4694	*	6400	*	*	2617	5660	*	6380	*	5416	1607	2853	2435	4146	*	*	13
+       0	*	*	*	*	*	0	7319	0	1033	
+
+E 14   3803	6127	*	3316	*	4003	5379	4124	2432	2852	6178	5625	6451	4396	3636	2815	5484	6930	*	*	14
+       0	*	*	*	*	*	0	7319	0	1033	
+
+I 15   6760	*	*	4643	*	*	6261	965	6667	3249	4811	*	*	6591	*	*	4954	2106	*	*	15
+       0	*	*	*	*	*	0	7319	0	1033	
+
+N 16   4301	5584	5140	5062	4558	5435	6161	4458	3089	6602	*	4889	*	3728	2691	3663	2859	3812	5391	4594	16
+       60	5107	6389	1076	928	*	0	7319	1177	1033	
+
+L 17   6688	*	*	*	3888	6355	*	1411	*	2961	4477	6506	*	*	*	*	*	1513	*	*	17
+       39	*	5241	*	*	*	0	7292	0	1241	
+
+S 18   4535	7217	6439	6253	5171	4305	3930	*	4219	6405	*	5039	*	4609	2849	2938	2654	*	3282	3137	18
+       374	5658	2260	595	1565	267	2564	7238	1085	1472	
+
+Y 19   3859	*	4897	5522	3502	5435	3976	2965	6131	3222	*	6495	*	5193	*	3688	5068	2934	6491	2612	19
+       1694	6223	562	1000	1000	*	0	7035	1004	2721	
+
+N 20   *	4602	*	*	3196	4505	3849	4449	4613	*	*	3421	*	*	1913	4495	*	4798	2813	3875	20
+       0	*	*	*	*	444	1916	5148	0	6069	
+
+K 21   4123	5108	2715	*	7395	2784	2788	*	5282	6243	*	3366	6197	5548	*	2223	4758	*	*	4531	21
+       17	6404	*	2322	322	64	4529	7313	1000	2715	
+
+E 22   4430	*	3710	4484	6456	1214	*	5001	4247	4657	*	4488	4915	5900	6898	3122	5494	5753	6924	*	22
+       35	5377	*	1339	726	*	0	7328	1141	1000	
+
+T 23   3642	6085	2596	3461	5916	3452	6036	*	4661	4944	5405	3409	*	4629	6277	3094	3689	5061	4853	5412	23
+       43	5086	*	550	1658	0	*	7328	1270	1000	
+
+A 24   2677	4792	6316	5565	4380	3240	5258	3872	5786	5418	6198	4623	*	5329	3348	5000	3698	3093	*	3621	24
+       25	6613	7100	2000	415	*	*	7328	1000	0	
+
+I 25   *	*	*	*	6407	*	*	1267	*	2276	*	*	6376	*	*	*	5785	1627	*	6341	25
+       0	*	*	0	*	0	*	7327	1000	1000	
+
+G 26   4806	6596	1624	5884	5127	6355	3634	4912	3868	6464	*	3641	7598	4780	4832	4175	3605	4407	*	4767	26
+       0	*	*	*	*	*	*	7328	0	0	
+
+D 27   2123	4412	5335	*	6379	1808	6206	6758	*	5687	6796	6578	*	6860	6659	2032	5154	6342	*	4794	27
+       7	*	7598	*	*	*	*	7328	0	0	
+
+F 28   6375	*	*	*	3516	*	*	1098	*	2371	4251	*	*	*	*	*	*	2479	*	6918	28
+       14	*	6651	*	*	*	0	7317	0	1033	
+
+Q 29   5260	*	6816	2979	*	4466	*	5490	2884	6492	*	*	*	1440	3680	2812	5287	*	*	6731	29
+       0	*	*	*	*	*	0	7318	0	1150	
+
+V 30   5784	4527	*	*	1262	5721	*	3416	*	3322	*	*	*	*	*	6178	6268	1879	*	6598	30
+       43	*	5084	*	*	1081	923	7318	0	1150	
+
+V 31   *	6622	3511	3147	5484	6324	5599	5184	3327	6755	5473	4476	6126	5056	4078	3039	2602	3753	4918	4936	31
+       53	5730	5851	1585	585	*	0	7298	1073	1321	
+
+Y 32   *	6252	*	5719	3275	*	*	6249	*	4117	*	*	*	*	*	5005	6110	5342	6549	488	32
+       814	1462	3875	392	2070	1155	860	7291	3982	1480	
+
+D 33   3598	5652	1531	3348	*	2713	*	5628	5200	*	6414	3774	6181	7035	6193	4684	4462	4669	*	6671	33
+       110	4700	4829	604	1549	567	1622	7186	1348	1829	
+
+L 34   3907	*	4399	5044	*	4016	5645	4736	2404	3891	*	3372	*	3562	4358	4954	3186	4454	6685	4254	34
+       206	4263	3625	2131	374	1366	708	7342	1366	1503	
+
+N 35   2938	6845	2099	6151	*	3211	*	*	4508	6035	*	2432	*	4777	4578	3585	3988	6404	*	5363	35
+       83	6192	4576	0	*	1276	769	7151	1011	2115	
+
+G 36   5224	6475	4950	4886	*	583	*	5897	5274	*	*	3795	6334	5186	*	4105	6003	*	*	*	36
+       126	3782	6475	1336	728	3229	163	7208	1654	2012	
+
+S 37   4867	*	3648	3811	*	4812	5475	4063	2549	6674	7548	4932	*	2465	4216	3872	2843	5412	6373	*	37
+       90	6431	4358	1336	728	2640	252	7218	1082	1987	
+
+P 38   4893	*	6312	4134	5481	4276	5320	3499	5350	4513	6181	3783	2845	6356	3337	3374	3622	3596	*	4510	38
+       187	5352	3369	4321	74	1289	759	7146	1077	2201	
+
+Y 39   4996	*	*	3471	3283	*	4191	2934	4210	3556	*	*	6324	4970	3335	5138	4850	2346	*	4384	39
+       402	3741	2570	1443	662	1690	535	7105	1572	2464	
+
+V 40   4825	6261	*	3810	*	5091	6586	5353	3858	4362	*	5982	5196	4311	5184	3210	2295	3375	2920	4743	40
+       69	*	4420	*	*	1992	418	6805	0	3204	
+
+G 41   2977	5502	4478	5355	*	2158	*	5977	6291	*	5354	6015	6154	5230	5475	1972	3783	3843	*	5132	41
+       108	*	3788	*	*	1326	734	6904	0	2968	
+
+Q 42   3136	*	4283	3884	6033	2307	5354	6240	5023	4674	*	4993	3163	4065	3953	4349	4448	3644	*	*	42
+       74	*	4318	*	*	483	1813	7013	0	2641	
+
+N 43   4026	4396	5447	4355	6687	6227	5683	4168	2705	3095	5554	4751	3737	3732	3559	4402	4635	4650	*	5063	43
+       57	5101	6662	1892	453	662	1441	7169	1146	1830	
+
+H 44   *	*	*	*	3143	6340	1457	5735	5164	3780	6348	6741	5323	*	4101	6133	*	4528	2832	3511	44
+       0	*	*	*	*	364	2164	7246	0	1353	
+
+K 45   5985	6367	*	*	*	138	*	*	6345	*	*	6047	*	*	*	6309	*	*	5415	*	45
+       44	5477	7029	0	*	*	0	7316	1115	1003	
+
+S 46   4720	*	4033	5249	*	1217	6711	6579	4380	6291	6236	4833	6367	6473	4958	2920	3396	5629	6322	*	46
+       30	*	5620	*	*	*	0	7323	0	1091	
+
+F 47   3838	6234	4634	4333	6270	3454	5479	6499	4422	4847	6558	3043	4309	5350	3246	2833	3334	4748	*	5731	47
+       1916	*	444	*	*	2179	360	7301	0	1296	
+
+I 48   4450	*	2923	*	*	3121	4750	3632	4602	4233	*	*	3986	*	3431	3491	*	3701	3013	4329	48
+       859	1477	3483	2196	355	90	4051	5668	1873	5998	
+
+T 49   3685	5800	5750	6801	5079	1467	*	6491	4555	6895	*	4077	5442	5185	4549	3179	2820	6788	*	6655	49
+       139	4393	4491	785	1253	2054	397	7249	1310	1545	
+
+G 50   5323	5879	5018	*	5284	595	6260	4458	*	4250	*	7124	5972	6512	5553	4208	6860	6599	*	*	50
+       598	6177	1619	2585	263	1434	667	7200	1034	1840	
+
+F 51   3884	*	3413	4814	5889	4301	4795	3579	4990	3933	*	3363	6021	*	4899	2542	2993	4698	5881	5670	51
+       345	4681	2525	2077	390	100	3906	6855	1136	3928	
+
+T 52   4912	*	4568	3237	6066	3943	6565	*	3031	5310	5461	3259	5033	3361	3459	2845	4168	6080	6141	6542	52
+       36	6351	6314	0	*	293	2442	7147	1001	2141	
+
+P 53   4058	6251	7050	2822	4208	6536	3928	6184	4400	4225	6707	*	3076	4138	4321	3373	3278	4749	*	4039	53
+       33	*	5449	*	*	2106	381	7289	0	1276	
+
+V 54   5104	6883	3486	3147	*	4916	5262	5313	3474	6875	6115	3585	6659	3692	4500	2854	3262	3750	*	4993	54
+       61	4590	*	774	1269	867	1146	7309	1287	1424	
+
+K 55   5172	*	4657	1584	*	5742	6157	3982	3429	*	4811	4870	5167	5461	6556	4060	2355	5391	*	*	55
+       64	4978	6452	2837	217	1477	642	7305	1291	1141	
+
+I 56   5031	*	6727	6499	2049	*	6944	2005	7570	2978	4891	*	*	*	*	*	6377	2199	*	4202	56
+       18	6370	*	1000	1000	*	0	7293	1026	1157	
+
+S 57   5143	5641	3918	2874	5354	*	6471	5020	3989	3830	6386	4105	6407	5049	3916	3863	2861	2971	6863	5133	57
+       13	6779	*	1000	1000	1322	737	7283	1003	1157	
+
+L 58   6154	6717	*	*	2650	*	*	2485	6935	1023	5090	*	*	*	*	*	*	3200	*	*	58
+       50	5256	6935	1605	575	*	0	7283	1155	1156	
+
+D 59   3381	*	2195	3338	6871	2546	6472	*	5745	6326	*	3032	5495	3670	4295	4451	5342	*	*	5619	59
+       1569	*	593	*	*	*	0	7276	0	1243	
+
+F 60   5048	4792	4765	*	2938	5109	3996	*	*	4988	*	*	*	5101	*	4874	4734	4151	4286	1201	60
+       274	2909	4641	0	*	130	3540	5631	1295	5703	
+
+P 61   4082	*	2718	4292	6618	4699	6409	*	4575	*	*	4710	1227	4474	*	3809	4609	6278	*	*	61
+       29	6369	7007	2161	365	817	1209	7185	1194	1673	
+
+S 62   4901	*	1898	4132	*	1609	4503	*	7112	*	*	4094	*	*	4971	2841	*	*	*	4968	62
+       17	6419	*	2322	322	*	0	7275	1004	1313	
+
+E 63   *	*	3103	324	*	6419	6563	*	*	*	*	6557	*	6265	6125	5333	*	*	*	*	63
+       0	*	*	*	*	*	0	7275	0	1313	
+
+Y 64   6249	4752	5681	5474	2635	*	4166	5658	6360	4237	*	6982	6716	6513	4520	4196	5805	4764	*	1235	64
+       31	*	5535	*	*	*	0	7275	0	1313	
+
+I 65   *	*	*	*	5632	*	*	936	*	1855	6146	*	*	*	*	*	6219	2851	6116	*	65
+       0	*	*	3015	190	829	1194	7255	1127	1520	
+
+M 66   5796	5726	*	5311	*	*	*	3509	2911	4639	6328	6752	*	4898	5006	4492	1287	2969	*	6867	66
+       0	*	*	*	*	*	0	7316	0	1176	
+
+E 67   3847	6570	6246	2498	6582	2478	5653	6916	3238	6622	6822	6714	*	3215	5778	2356	5246	*	*	5079	67
+       0	*	*	*	*	*	0	7316	0	1176	
+
+V 68   4593	*	*	*	3975	6165	*	1779	*	3868	3216	*	6158	*	*	6199	*	1373	*	*	68
+       0	*	*	*	*	*	0	7316	0	1176	
+
+S 69   6613	6466	5327	2908	5533	4764	4794	5336	4004	*	*	5132	*	5415	4842	1332	2903	6199	*	7075	69
+       0	*	*	*	*	*	0	7316	0	1176	
+
+G 70   4577	*	*	*	6908	483	5181	3901	*	3887	*	*	*	*	*	*	*	3983	6825	*	70
+       18	*	6347	*	*	*	0	7316	0	1176	
+
+Y 71   4376	5356	5089	4931	5591	*	5785	6107	4059	6800	6443	*	6197	5551	2590	3095	1822	*	4572	3499	71
+       0	*	*	*	*	1785	495	7298	0	1287	
+
+T 72   3981	5222	*	*	3028	4864	5681	4968	5454	5022	*	5764	*	5516	6165	4880	3051	3012	6481	1718	72
+       94	6199	4339	2322	322	*	0	7316	1055	1176	
+
+G 73   3912	5319	2720	6102	*	1078	*	*	4891	4652	*	*	*	5507	5370	4323	3864	5651	*	6591	73
+       425	7066	2013	2127	375	910	1096	7171	1141	1814	
+
+N 74   4199	*	2906	4602	5784	5400	4153	5330	3311	4597	5981	3101	2949	6274	4651	4211	3326	*	5233	6482	74
+       446	4666	2143	1273	770	3183	168	6872	1190	3323	
+
+V 75   5256	4745	5584	5661	2764	5994	6231	3523	4144	4138	*	5141	6192	5982	5901	4178	3706	4069	5954	2076	75
+       1281	1209	2681	1239	795	3263	159	6436	3267	4236	
+
+S 76   3847	*	4612	3591	4296	2889	4951	*	3770	5616	*	3191	*	*	*	2631	5036	5564	4596	2934	76
+       256	3289	4059	1311	744	3170	170	6324	1445	4586	
+
+G 77   3952	*	2996	5622	*	1513	*	5021	5939	5969	5965	3806	4771	4917	5851	3253	4831	4505	5830	*	77
+       78	4659	6243	2264	337	1875	459	6392	1122	4462	
+
+Y 78   4861	4837	3891	4434	*	2637	4688	6081	3932	4660	6576	4032	4774	4970	3733	3006	3906	5320	4957	4884	78
+       0	*	*	*	*	1397	689	6766	0	3714	
+
+V 79   3279	6108	3282	4300	6818	4897	4849	6323	4937	3826	6057	3415	3922	5721	4843	4680	2744	3188	*	6710	79
+       28	6635	6818	0	*	509	1750	7080	1098	2766	
+
+V 80   4038	5830	6328	6050	5210	3148	4428	3869	5532	3721	6492	*	*	6465	2557	6181	3784	2595	3997	4837	80
+       0	*	*	1000	1000	360	2180	7257	1000	1582	
+
+V 81   5785	*	*	*	*	*	*	1257	*	2393	6746	6167	*	*	*	*	*	1515	*	*	81
+       26	6544	7128	1000	1000	*	0	7294	1007	1055	
+
+R 82   4483	*	2755	5740	4225	4300	6741	6361	4691	4408	*	4135	*	4653	2748	4173	1974	6661	6455	*	82
+       0	*	*	*	*	642	1477	7295	0	1141	
+
+S 83   3423	5186	*	5589	6880	4046	5671	*	4517	*	6220	4935	*	3102	3957	1133	*	*	5759	5328	83
+       0	*	*	*	*	*	0	7335	0	1000	
+
+L 84   6625	6205	*	*	4663	*	*	2061	*	717	4808	*	*	*	*	*	*	4229	*	*	84
+       0	*	*	*	*	*	0	7335	0	1000	
+
+T 85   4975	*	*	6923	*	4087	6479	6749	2789	*	4586	5505	*	3021	3059	3438	1955	3992	*	5964	85
+       0	*	*	*	*	*	0	7335	0	1000	
+
+F 86   6184	*	*	*	556	*	*	2507	*	3581	6494	*	*	*	*	*	*	4822	*	*	86
+       0	*	*	*	*	*	0	7335	0	1000	
+
+K 87   4397	6473	5585	4350	6769	5372	3983	3985	2573	4778	*	5467	*	4399	3811	6854	2756	2501	*	4937	87
+       12	6898	*	2462	289	0	*	7335	1070	1000	
+
+T 88   *	*	*	*	6446	*	*	*	*	5365	*	*	*	*	*	3792	165	*	*	*	88
+       0	*	*	*	*	*	*	7334	0	0	
+
+N 89   *	*	4328	5467	*	6800	6409	*	5822	5484	*	887	*	6626	*	2065	4581	*	*	4826	89
+       14	6708	*	2322	322	*	*	7334	1000	0	
+
+K 90   5027	*	4479	5512	*	6795	4943	*	1359	3154	4931	4277	*	3083	4697	*	4096	5223	*	4932	90
+       414	2047	7090	239	2714	*	*	7334	3046	0	
+
+K 91   4686	*	4828	*	5159	1711	*	*	3067	*	*	3652	*	3725	2015	5315	4806	6675	*	*	91
+       83	4157	*	0	*	0	*	7322	1503	1075	
+
+T 92   4119	*	5498	4212	*	*	*	*	3537	*	*	4599	6273	4081	2371	3483	1700	3709	*	*	92
+       50	4889	*	0	*	*	*	7334	1241	0	
+
+Y 93   *	6469	*	6337	3539	*	3680	4684	*	4512	*	5736	6479	6866	6679	2012	3427	5420	6924	1696	93
+       49	4911	*	1267	775	*	*	7297	1223	0	
+
+G 94   5644	*	5056	4364	4918	1262	4594	*	5043	3520	6373	4975	3490	6688	*	3759	5560	4186	*	*	94
+       58	*	4671	*	*	*	*	7297	0	0	
+
+P 95   4078	*	5334	4446	4744	5150	6265	4989	4789	5893	4981	6754	1222	6817	4347	4520	3885	4411	6676	6453	95
+       29	5649	*	1304	749	0	*	7245	1172	1321	
+
+Y 96   5297	4397	*	6212	1246	4931	*	4498	6282	5343	5544	5490	6267	*	*	*	*	4878	4515	2040	96
+       36	*	5342	*	*	*	*	7286	0	0	
+
+G 97   *	6170	*	*	*	122	*	*	6318	*	*	*	*	5706	6323	5431	*	*	*	*	97
+       148	3991	4859	0	*	738	1320	7238	1460	1136	
+
+V 98   4497	4626	4307	4988	5486	3426	*	4504	3863	4970	*	2826	6326	4359	4564	3248	2722	4977	*	4643	98
+       140	3431	*	1136	875	*	0	7184	1755	1315	
+
+T 99   3270	6284	3991	3588	5273	3166	*	*	3595	5574	4773	3953	3328	5736	5131	3646	3488	4560	5308	6416	99
+       158	3266	*	598	1559	368	2149	7184	1834	1315	
+
+S 100  3199	*	4006	4621	*	2187	7138	7089	4372	5200	*	3367	7194	4071	5450	3447	2850	4008	*	*	100
+       121	3631	*	1978	422	1206	820	7281	1706	1067	
+
+G 101  4286	*	*	5016	*	542	5421	*	5020	6458	6554	4825	6477	5985	6732	4374	5399	*	6484	*	101
+       184	3064	*	1261	779	*	0	7242	2023	1149	
+
+T 102  5136	*	4352	3795	*	4851	5558	*	3753	*	4933	4035	5658	3945	4173	3414	1635	4142	*	6136	102
+       90	4390	6302	2296	328	0	*	7242	1571	1149	
+
+P 103  3840	*	4013	4177	6289	*	5202	5301	2969	*	*	4380	2110	4407	4176	3274	3568	6600	*	4654	103
+       50	*	4865	*	*	*	0	7276	0	1020	
+
+F 104  *	*	*	*	317	*	*	6718	*	5031	*	5469	*	*	*	5552	5643	6158	6293	3907	104
+       11	*	7063	0	*	251	2646	7242	1035	1347	
+
+N 105  6163	5196	5025	2983	*	*	5312	4872	4806	4876	*	3564	6068	5747	4571	1712	3502	3200	*	6656	105
+       32	*	5498	0	*	876	1135	7285	1000	1059	
+
+L 106  3651	6591	*	4337	3689	*	6100	2434	6305	2125	*	*	5664	*	*	4310	4209	2824	6232	3996	106
+       139	3808	5595	248	2662	1227	804	7263	1576	1184	
+
+P 107  4858	*	4579	4073	*	4363	6095	6172	3420	*	6615	5174	1424	3776	*	4600	2933	6768	*	5123	107
+       209	4712	3371	0	*	932	1072	7261	1223	1257	
+
+I 108  2671	*	*	5195	5970	4105	*	3663	6406	2755	4432	5251	6376	6679	*	3519	5238	1878	6277	6686	108
+       190	5525	3300	0	*	1335	729	7207	1077	1925	
+
+E 109  3357	*	5423	2944	*	3841	*	6136	3893	4690	6446	3391	2150	4019	4280	5225	5881	5069	*	4634	109
+       173	3146	*	546	1666	386	2089	7111	1806	2284	
+
+N 110  4119	*	2292	4135	*	1802	5430	6870	4196	6047	*	3201	4576	5694	*	3643	5568	6303	*	6739	110
+       122	3625	*	467	1853	597	1561	7200	1635	1246	
+
+G 111  5707	4396	5042	4175	5544	1359	3793	*	5042	5389	*	4138	6792	5436	4468	3616	6939	5672	5329	4589	111
+       361	2175	*	82	4179	0	*	7240	2763	1019	
+
+L 112  4202	5536	6322	3750	*	4610	4166	4469	2697	5432	*	4999	*	3101	3403	3065	3810	3998	*	5480	112
+       49	4915	*	1048	954	*	*	7260	1221	0	
+
+I 113  *	6043	*	*	3233	*	*	1239	*	2469	*	*	*	*	*	*	6245	1938	*	*	113
+       23	6857	7092	2322	322	*	*	7260	1000	0	
+
+V 114  3644	*	*	*	6443	4128	6894	3166	5524	3648	6287	*	*	5608	*	3752	*	937	*	*	114
+       0	*	*	*	*	*	0	7259	0	1000	
+
+G 115  4453	*	*	*	6305	263	*	*	*	*	*	*	*	6707	5986	4329	*	*	*	4904	115
+       23	5986	*	459	1877	0	*	7259	1131	1000	
+
+F 116  4436	*	*	*	336	*	*	4105	*	4128	5754	*	*	*	*	*	*	5175	*	*	116
+       0	*	*	*	*	*	*	7260	0	0	
+
+K 117  5286	6500	5039	6375	1477	5072	2583	*	6277	4608	*	6721	*	6320	5400	4190	5386	6136	5358	2756	117
+       21	*	6136	*	*	*	*	7260	0	0	
+
+G 118  3843	*	*	*	*	181	*	5680	*	*	6316	*	*	*	*	*	*	5969	*	*	118
+       66	4483	*	2766	229	*	0	7238	1281	1035	
+
+S 119  6609	*	6673	*	4543	6267	5075	*	3829	5784	*	3910	*	5300	1114	2470	5172	6230	*	5043	119
+       33	5452	*	0	*	*	0	7219	1091	1035	
+
+I 120  1675	3612	5468	4948	5527	6813	*	6207	*	*	*	*	*	6518	*	1691	3910	4080	*	4068	120
+       17	6457	*	1114	894	0	*	7194	1130	1035	
+
+G 121  4332	*	2817	6765	*	954	*	6199	6469	*	*	5422	*	4980	6151	2866	4269	*	*	*	121
+       118	3665	*	339	2254	*	*	7215	1603	0	
+
+Y 122  3863	4776	2389	4621	*	4637	6637	*	5225	5338	*	3574	4785	4276	*	2623	4386	4928	4077	3516	122
+       94	4233	6630	353	2203	*	*	7215	1363	0	
+
+W 123  4558	4446	4812	3916	3179	4197	5002	4477	6249	3396	*	6719	*	5745	4122	4873	5345	4699	4234	2154	123
+       0	*	*	*	*	*	0	7217	0	1019	
+
+L 124  6620	6347	*	*	5508	*	*	2037	*	1138	5647	*	6633	6252	*	*	6538	2297	*	*	124
+       0	*	*	*	*	*	0	7217	0	1019	
+
+D 125  6862	*	955	4889	*	6530	4796	6693	5509	*	*	2982	*	4990	4588	4242	4403	4937	*	5019	125
+       0	*	*	*	*	0	*	7217	0	1019	
+
+Y 126  1512	5975	*	*	6060	3556	*	*	4480	6630	*	5521	*	3925	5382	1641	4926	*	*	6218	126
+       0	*	*	*	*	*	*	7215	0	0	
+
+F 127  *	*	*	*	3356	*	*	939	*	1878	*	*	6630	*	*	*	*	3901	5696	6332	127
+       0	*	*	*	*	*	*	7215	0	0	
+
+S 128  5092	*	5913	6266	*	229	*	*	*	*	*	*	*	6253	6808	4670	*	*	6310	6151	128
+       0	*	*	*	*	*	*	7215	0	0	
+
+M 129  2601	*	*	6531	2337	6973	*	3017	*	4285	5250	*	*	*	5473	*	6332	1499	*	5125	129
+       0	*	*	*	*	*	*	7215	0	0	
+
+Y 130  4594	6417	*	*	4834	*	3591	3439	*	4869	5897	5633	*	*	5920	*	5317	3893	*	845	130
+       16	6474	*	0	*	*	*	7094	1003	0	
+
+L 131  *	*	*	*	2405	*	*	3352	*	2719	4707	6060	*	*	*	6149	4348	2062	4072	2776	131
+       27	5777	*	2322	322	0	*	6918	1000	1003	
+
+S 132  2888	4040	5770	3821	*	4965	4672	*	3079	3697	5348	5989	4584	4795	2750	3345	6269	4242	*	5842	132
+       0	*	*	*	*	*	*	6211	0	0	
+
+L 133  *	*	*	*	*	*	*	*	*	558	*	*	*	*	*	*	*	1640	*	*	133
+       0	*	*	0	*	*	*	2015	0	0	
+
+//
+�HHsearch 1.5
+NAME  dea447cd63c9d8c162d6bcafb1cbb851
+FAM   
+FILE  dea447cd63c9d8c162d6bcafb1cbb851
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:33:24 2013
+LENG  197 match states, 197 columns in multiple alignment
+FILT  114 out of 165 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  5.8 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCEEEEEEEECCCEECCEEEEECCEEEEECCCCCCCCCEEECCCCCCCCCCHHHHHHHHHCCCEEEEEEECCEEEEEECCCCCEEEECCCCCCCCCCCC
+CCEEEECCCCEEEECCHHHHHHHHHHHHHCCCCCCCCCCCCEEEEEEEECCCCCCCCCCCCCCCCEEEEEECCHHHHHHHHHHHHCCCCCCCCCCCC
+>ss_conf PSIPRED confidence values
+9811799998449767152895099899927636888985675447788988899999985477289999899899997689988982897774126887
+8618858998699817699999999985048876566200037999997677998787884558838999918699999999975599889788789
+>Consensus
+xxxWcxIxYyExxxrVGexfxxxxxxvxIDGfxdxxxxxrfcLgxlxnxxRxxxxxxxRxxIGxGvxLxxxxgxVxxxnxsxxxIFVqSxxxnxxxxxxx
+xtVxKvxpgxxxkvFdxxxfxxxlxxxxxxxxxxxxxlxxxcxiRISFvKGWGxxYxRqxitxxPCWiEixlxxplxxldxvlxxmxxpxxxxxsxx
+>dea447cd63c9d8c162d6bcafb1cbb851
+PAFWCSISYYELNQRVGETFHASQPSMTVDGFTDPSNSERFCLGLLSNVNRNAAVELTRRHIGRGVRLYYIGGEVFAECLSDSAIFVQSPNCNQRYGWHP
+ATVCKIPPGCNLKIFNNQEFAALLAQSVNQGFEAVYQLTRMCTIRMSFVKGWGAEYRRQTVTSTPCWIELHLNGPLQWLDKVLTQMGSPSIRCSSVS
+>gi|308489650|ref|XP_003107018.1| CRE-DAF-3 protein [Caenorhabditis remanei]gi|308252906|gb|EFO96858.1| CRE-DAF-3 protein [Caenorhabditis remanei]
+--RWGVVSYYEEGDCYIER-ECYRGNFHIDSgFI--ISEQRLSLGLIQNPSRSTMAFKIRKAMIDGIRFSYKtDGSVWLQNNMRLPIFVTSGYLDdQCPG
+IRVNKVHKLYGHAKVKVFGFTRVKQIIRdrlyskqmaRLYLQqnGNrnpmFEVYhripliaiqrearvttdSLVKYCCVKVSFGKGFGDAYPeRPIVSQC
+PVWLELKINSAFDYMDAILNDLEN---------
+>gi|308455180|ref|XP_003090150.1| hypothetical protein CRE_23794 [Caenorhabditis remanei]gi|308266234|gb|EFP10187.1| hypothetical protein CRE_23794 [Caenorhabditis remanei]
+-GYWCSVQlndcktmvsWREINLikaylksfQKGKPFLTRNMEFVVDSLETSVVSddKRMALmGLpMSEKGKHNSI---KTSFKDGIKVYCTGGTVKVSV
+LSDVTIFVQSPFWNHANGQDLAAVTRLGSnqprPVIFTVFDFEQFKTHLERAKQHPPTdEMNeFLQSICGFNVSVSKGFGPDYGNRTIFETCCWLSIKFT
+DPLLLFDKYYRQYRLAPDEINS--
+>gi|312377233|gb|EFR24116.1| hypothetical protein AND_11529 [Anopheles darlingi]
+-EIWAKVIVFERNRRVAKAY-ARAPVLTINGSDDGFDGmsdgsfsspvaefpwandvekwlmmseglthqvhslyssavptghglsisrslrvtaalrwd
+pgilgvtkvqrpfvrsvvmFPIGLCGFDNPMRDHKTDEVKRHVGQGVKIKMDdAGNILIRRYSKSNVYVKSTASQpNEETAIGADILKLPGQAiesekIV
+KLFDMKKFQSNVNRELRRAYPDRRRLETQCLSAIAFVKS------ENDILDCPMWVLIINVVAMDMLKSKLppgkssalgiiftskYQMNSPYDVTKSV-
+>gi|221125810|ref|XP_002162815.1| PREDICTED: hypothetical protein [Hydra magnipapillata]
+-SGWCRVDCYERQHHVAT-FRMDEPVICIDGIHPVSDKHRISFAGLPTRSEDLKVLKVKSCIGKGVQLHQDErQNLWATRLGKNPIFVRGHTLCPELVK-
+--LNGKLTQGVPMKVLDTSAFKEYMKKECeTSGL--VdDELRDKIMsrlkVCMSFIKD------TVVDEETPCWFEVWLI--------------------
+----
+>gi|313232554|emb|CBY19224.1| unnamed protein product [Oikopleura dioica]
+--DWARVSFYQKKMKRGPDFIARSRSFTIDGMTGPRCtSTRMPLGIRTLGLRgCPDTDRLLETVGHGIVIENKENCVLLRNISPVSVYVKSCQID-----
+--STPIRIPAAHEVDLFFYDEFSRSIAER--NTLADLWQLREHCTLFISFGLCWGSStVQVESVDGLPCWLKLDLQHCWRELNVAVEQ------------
+>gi|167517705|ref|XP_001743193.1| hypothetical protein [Monosiga brevicollis MX1]gi|163778292|gb|EDQ91907.1| predicted protein [Monosiga brevicollis MX1]
+---VASITYHERDSPLAQFY-LNQPIFNISCFRPVEDNtTTVSLSDIDNPCRDSRTEKIRRFIGSGLQVSIRRKCLYVTRLSRNPVFLKNYQSPStvSDS
+ILLRENGELPDGAEVCLFDYQVFSKEIARMPAE------LALKMATVSLAFVRT------GEFDDKIPCWIRIRMGDALRM-------------------
+>gi|313217634|emb|CBY38686.1| unnamed protein product [Oikopleura dioica]gi|313218130|emb|CBY41437.1| unnamed protein product [Oikopleura dioica]gi|313231875|emb|CBY08987.1| unnamed protein product [Oikopleura dioica]
+-KPWCNVSVYECNNKIevystaktqlGVEYKVADanryaKKEAMKG-KNATQSDVFDLSSISNVNRSTDTWDLLEKLQRGLTLVYDREKRIVSChnNcKN
+LKIYVLSYLMNVECGKHEQSLIQVGPGASRVVYDGYQLAKTIEG-VNSTT--QNDLQKwalisqyanyFTVFRISFQP-WGPEYTKKRLTDCDLWLEIFM
+REYLDWINQIEHH------------
+>gi|71985803|ref|NP_492746.2| Temporarily Assigned Gene name family member (tag-68) [Caenorhabditis elegans]gi|38422270|emb|CAB70215.2| C. elegans protein F37D6.6, confirmed by transcript evidence [Caenorhabditis elegans]gi|38422275|emb|CAB70221.2| C. elegans protein F37D6.6, confirmed by transcript evidence [Caenorhabditis elegans]
+-RSWAKMTRYERKEQIGDTVWLHGPFAAV-GVLSKSvhDAQLECSpWDLKNEV---SFALIRQadPIG-----STNPEDVWLYNSGTRPLFL-SMTPNVS
+ST--KDTLRRLSPGYCIRVHRGEVSASAPASERTKVrRPSKDPALAQQNLVISVGKGWGPNYSRLYLTDIPCRYEVSF----------------------
+---
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+P 1    3983	*	3654	*	*	6008	*	*	*	*	*	*	597	4643	4374	5535	4649	5014	*	*	1
+       24	5925	*	1585	585	*	*	3920	1000	0	
+
+A 2    3769	*	3073	2660	*	3435	*	*	2793	7673	7008	5200	4041	3478	4028	3001	5158	*	6922	*	2
+       16	6513	*	1463	650	*	*	5555	1053	0	
+
+F 3    3588	5462	5333	4741	4140	4530	3189	3037	6471	*	*	3441	3671	6134	6251	4294	3947	4113	*	3087	3
+       0	*	*	*	*	*	*	5907	0	0	
+
+W 4    *	*	*	*	*	*	*	*	*	6212	*	*	*	*	*	*	*	5834	67	6143	4
+       0	*	*	*	*	*	*	5970	0	0	
+
+C 5    1982	735	*	*	*	3672	*	6038	*	4246	*	*	*	*	*	*	*	*	*	*	5
+       0	*	*	*	*	*	*	5970	0	0	
+
+S 6    5077	*	7863	*	*	5467	4467	*	2301	*	7048	3695	*	4014	4124	1664	2975	4863	*	6143	6
+       8	*	7539	*	*	*	*	5970	0	0	
+
+I 7    6981	*	*	*	*	*	*	1198	6138	2821	5660	*	*	*	*	*	*	1393	*	*	7
+       0	*	*	*	*	*	0	5967	0	1000	
+
+S 8    1443	7852	5734	*	5292	5650	6576	3094	*	4409	*	*	*	3325	*	2799	4031	4525	*	4611	8
+       29	5664	*	3170	170	*	0	5967	1076	1000	
+
+Y 9    *	5766	*	*	4325	*	*	6088	*	4640	*	*	*	*	4984	*	5825	3719	5670	450	9
+       0	*	*	*	*	*	0	5990	0	1000	
+
+Y 10   *	*	*	*	2714	*	4480	*	*	6541	4199	5703	*	6158	5670	*	*	*	2030	1185	10
+       0	*	*	2000	415	0	*	5990	1000	1000	
+
+E 11   5954	*	*	119	*	*	*	*	5240	*	*	*	*	4773	*	*	*	*	*	*	11
+       18	*	6354	*	*	*	*	5992	0	0	
+
+L 12   *	5472	*	3113	4679	5006	4693	5664	3491	1325	5243	*	*	6214	2922	5930	6156	6143	*	5114	12
+       21	6143	*	0	*	0	*	5970	1023	1034	
+
+N 13   4287	4985	2957	6652	*	2824	5198	5954	4093	*	*	1615	*	5767	3268	4817	4290	*	*	*	13
+       0	*	*	*	*	*	*	5992	0	0	
+
+Q 14   5729	*	4899	3190	*	6917	4029	7307	4616	4359	5717	3812	*	2993	3421	3071	2433	4075	*	*	14
+       75	4748	6181	2640	252	*	*	5992	1182	0	
+
+R 15   *	4515	*	*	5230	*	4496	*	3217	*	6486	*	5137	2674	897	4495	*	*	*	*	15
+       0	*	*	*	*	0	*	5968	0	1025	
+
+V 16   5831	*	*	*	*	*	*	2239	5671	3498	5142	*	*	6599	4802	*	*	798	*	6307	16
+       33	5476	*	3322	152	*	*	5992	1079	0	
+
+G 17   2805	*	5292	*	*	420	*	6307	5831	*	5954	*	*	6181	*	6448	*	6354	*	*	17
+       0	*	*	*	*	*	*	5992	0	0	
+
+E 18   5063	*	3698	1315	*	*	*	*	2651	6354	*	*	3683	4597	2815	6229	5767	5220	*	*	18
+       67	6358	4899	0	*	*	*	5992	1045	0	
+
+T 19   2459	6412	5640	5413	4229	*	6273	4824	4403	2508	4586	*	3808	4731	4560	7263	2502	4140	*	7543	19
+       70	*	4391	0	*	0	*	5891	1045	1243	
+
+F 20   5256	*	*	6653	738	6734	*	*	*	*	*	*	*	*	*	*	*	4696	4986	1811	20
+       202	*	2935	*	*	0	*	5910	0	1239	
+
+H 21   4656	6756	4638	3906	5412	*	2612	4126	2299	5444	*	5844	3331	3784	4353	4715	5096	4911	5519	6259	21
+       0	*	*	*	*	0	*	5634	0	1690	
+
+A 22   1821	3755	*	*	4964	4104	*	5016	*	3204	5767	*	*	*	*	4783	3827	1795	*	*	22
+       151	3334	*	1000	1000	*	*	5992	1541	0	
+
+S 23   5186	6053	4937	4094	5745	4767	3431	6911	4157	6448	*	4544	6539	4206	2123	2346	4113	7071	6652	4907	23
+       71	4384	*	976	1024	*	*	5992	1245	0	
+
+Q 24   3559	6215	4463	3820	7318	3757	4158	5212	4013	7625	6857	3812	5992	3149	3280	2772	4449	5203	*	5339	24
+       33	5476	*	2322	322	*	*	5992	1079	0	
+
+P 25   5388	*	4336	5590	*	4130	4851	6701	4218	5589	5671	4118	1473	4122	3989	3731	3370	*	*	*	25
+       44	5320	7572	1683	539	*	*	5992	1088	0	
+
+S 26   4027	5560	5187	4655	4086	*	4191	4989	4641	*	*	4472	5330	6129	6533	1950	2512	3093	6572	6906	26
+       0	*	*	0	*	0	*	5990	1000	1000	
+
+M 27   4137	4966	*	5476	3078	*	*	2761	*	2748	8206	*	*	*	*	*	6246	1164	*	6512	27
+       8	*	7572	*	*	*	*	5992	0	0	
+
+T 28   4052	5226	6923	*	5746	*	4056	2681	4661	3692	*	2631	*	6071	5751	4653	2072	4104	6049	7056	28
+       24	5939	*	3700	115	*	0	5990	1034	1000	
+
+V 29   *	*	*	*	*	*	*	955	*	6129	5474	*	*	*	*	*	*	1160	*	*	29
+       367	*	2153	*	*	*	0	5990	0	1000	
+
+D 30   *	*	368	5521	*	5658	5599	*	5125	*	*	3707	*	*	*	4805	*	*	*	5522	30
+       0	*	*	*	*	2711	239	5680	0	2291	
+
+G 31   4857	4669	*	5599	*	310	*	*	*	*	*	4793	*	*	*	3997	*	*	*	*	31
+       192	4133	3889	0	*	52	4824	5800	1239	2098	
+
+F 32   6064	*	*	*	1023	3479	7099	5716	*	3869	5628	*	*	*	6251	2821	6493	5613	*	3290	32
+       71	6275	4829	1858	466	514	1737	5875	1057	1309	
+
+T 33   6169	5379	3573	4414	6510	6644	4996	3798	4773	4478	6384	5160	*	4204	4968	5913	1606	3501	6553	4175	33
+       157	4356	4204	868	1145	628	1503	5926	1291	1254	
+
+D 34   3465	6998	1101	3968	*	4280	6198	*	*	6166	*	3490	4753	5123	5953	3629	5560	5679	*	*	34
+       40	5821	6707	3822	106	*	0	5879	1043	1389	
+
+P 35   4689	*	*	4843	*	2754	6202	*	5592	3311	*	*	1231	4729	6197	4032	5793	3831	*	5947	35
+       34	*	5445	*	*	403	2037	5879	0	1475	
+
+S 36   4640	5489	*	4828	3175	5588	5601	4935	*	6744	*	4957	2644	6006	4381	1436	4670	5246	*	5857	36
+       47	4954	*	1000	1000	515	1736	5982	1161	1208	
+
+N 37   5348	5713	1872	4379	*	3451	4871	7462	5299	4052	*	3281	*	4062	4702	3807	3741	4160	*	6066	37
+       260	2876	5126	1584	585	0	*	5992	1815	1022	
+
+S 38   4538	6636	5122	3751	*	1591	*	5460	4619	*	*	3162	3929	4956	5510	2637	5358	4975	*	*	38
+       423	1976	*	2206	352	2225	347	5961	2561	1112	
+
+E 39   5229	6141	2068	3489	4622	4342	4507	*	4362	*	*	2994	6799	4099	*	3112	3261	6266	*	5426	39
+       0	*	*	*	*	*	0	5954	0	1076	
+
+R 40   6543	*	*	6268	*	2830	5123	*	4704	5665	*	6323	6657	*	758	4325	4350	4779	*	*	40
+       0	*	*	*	*	*	0	5954	0	1076	
+
+F 41   *	5937	*	5665	1074	*	*	2746	*	2812	3206	*	*	*	*	6464	*	4572	*	4810	41
+       0	*	*	*	*	*	0	5954	0	1076	
+
+C 42   5624	1002	5450	*	*	2986	*	*	*	*	*	5180	5694	5796	*	1952	*	*	6945	*	42
+       0	*	*	*	*	*	0	5954	0	1076	
+
+L 43   *	*	*	*	3959	*	*	5393	*	267	5751	6328	*	*	*	5677	*	5039	*	*	43
+       77	4261	*	0	*	*	0	5951	1293	1076	
+
+G 44   3512	5609	*	5257	6049	941	6105	*	*	5827	*	3491	*	6341	4538	3727	4662	7368	4966	*	44
+       20	6209	*	0	*	*	0	5951	1020	1076	
+
+L 45   3425	5801	3783	4014	4327	3428	4617	5346	6894	2156	*	6790	*	3132	5325	3097	4979	*	6609	7239	45
+       56	5632	5801	0	*	535	1691	5951	1076	1076	
+
+L 46   *	5378	6210	5516	2706	*	*	2726	6022	1132	4923	*	*	6109	4601	*	*	4928	*	4544	46
+       21	*	6109	*	*	*	0	5956	0	1089	
+
+S 47   4172	5483	3703	2708	*	*	5765	*	5228	*	*	3947	4026	4535	6186	1554	3016	*	*	*	47
+       57	6324	5257	0	*	1396	690	5929	1013	1179	
+
+N 48   6104	*	*	4703	*	*	5195	6311	5870	4535	*	647	5398	5137	4673	3511	5729	6585	*	*	48
+       42	5599	6901	2040	402	*	0	5953	1060	1257	
+
+V 49   5324	6603	5157	4077	5852	5016	7339	4577	5560	4046	*	6031	2171	4454	5721	4343	4930	1665	*	*	49
+       109	3916	7230	1406	683	643	1476	5948	1434	1302	
+
+N 50   7052	5479	5073	5578	6810	3555	2818	5766	4630	5074	3960	1822	5684	6265	5824	3590	4172	4384	*	6437	50
+       106	5028	4645	2570	266	998	1002	5986	1150	1111	
+
+R 51   4981	*	6805	5261	5855	*	4745	6038	5073	*	*	4703	4578	7116	558	4895	5642	6196	*	*	51
+       67	4770	6805	0	*	*	0	5895	1165	1293	
+
+N 52   *	5138	2199	4774	*	7578	5562	*	4308	7198	*	2400	4345	*	5142	2056	3091	6851	*	*	52
+       41	5740	6779	1585	585	*	0	5896	1058	1349	
+
+A 53   3738	*	2586	2564	6722	7204	6006	5834	4838	4784	*	4124	3366	3567	*	2860	3719	*	5929	*	53
+       0	*	*	*	*	764	1283	5890	0	1402	
+
+A 54   2668	6885	3253	4387	*	4718	6064	6884	2965	5193	5669	5385	7256	3927	4388	3179	2703	4758	*	*	54
+       18	*	6357	3700	115	2207	352	5987	1000	1133	
+
+V 55   3453	*	*	7354	5465	*	*	2409	*	*	*	*	*	*	*	2558	2229	1865	5897	5862	55
+       30	*	5626	*	*	*	0	5968	0	1195	
+
+E 56   3638	*	4463	1604	4643	5449	*	4887	2893	4652	*	6154	6918	3537	4596	3814	*	7511	5341	5427	56
+       23	*	6012	2807	222	1950	432	5904	1000	1326	
+
+L 57   *	*	3908	3452	*	4965	5119	6341	2463	4153	4752	2767	*	4413	2435	4038	5221	5172	*	*	57
+       8	*	7521	*	*	*	0	5877	0	1332	
+
+T 58   2503	4210	*	*	*	5878	*	2363	7337	4055	*	6565	*	*	6760	5905	1797	2578	*	*	58
+       0	*	*	0	*	623	1513	5875	1000	1374	
+
+R 59   6054	5912	*	*	*	*	5818	7314	3205	4131	*	*	*	6822	403	6215	*	*	*	*	59
+       0	*	*	*	*	*	0	5970	0	1095	
+
+R 60   3704	4934	*	4317	*	4154	5315	5926	2878	3901	5543	4143	*	3159	2162	3798	4201	*	*	*	60
+       33	5483	*	1678	541	1622	567	5970	1108	1095	
+
+H 61   4309	5766	*	5727	5060	*	1709	*	2008	3888	5901	5712	5501	3838	7014	4600	4134	*	*	5238	61
+       12	*	6921	*	*	*	0	5988	0	1045	
+
+I 62   *	*	*	*	4755	5656	*	416	*	4596	5241	*	*	*	*	*	*	2991	*	*	62
+       13	*	6854	0	*	1505	627	5991	1000	1101	
+
+G 63   6069	*	5880	5429	*	383	6610	5406	5647	*	*	6618	*	4781	6561	4931	*	4865	*	*	63
+       32	*	5494	*	*	*	0	5987	0	1102	
+
+R 64   4999	6883	3291	3930	5727	6409	4252	*	2030	3318	6546	5121	*	3701	2586	4511	*	*	*	4737	64
+       18	6331	*	4459	67	*	0	5915	1011	1218	
+
+G 65   *	*	*	6331	*	36	*	*	*	*	*	*	*	*	6319	*	*	*	*	*	65
+       0	*	*	*	*	*	0	5915	0	1218	
+
+V 66   4847	6851	*	*	6262	*	*	1574	*	2439	6148	*	*	*	*	*	7960	1303	*	*	66
+       0	*	*	*	*	*	0	5915	0	1218	
+
+R 67   4667	*	*	3941	*	6026	4171	4009	2729	4834	6905	7350	*	2907	2498	5010	2745	3804	*	*	67
+       0	*	*	*	*	*	0	5915	0	1218	
+
+L 68   6319	*	*	*	3997	*	*	2264	*	731	5338	*	*	*	*	*	7960	3546	*	*	68
+       0	*	*	*	*	1252	785	5915	0	1218	
+
+Y 69   6166	6459	4224	4038	5216	6373	4092	*	3148	5917	6915	*	*	*	3944	1804	3277	4492	*	2988	69
+       9	*	7288	*	*	*	0	5987	0	1102	
+
+Y 70   6437	4593	*	5824	5019	6629	5312	4068	3841	3077	3389	4438	*	4941	3252	7070	4162	4886	*	2064	70
+       20	6147	*	0	*	2364	312	5989	1065	1141	
+
+I 71   *	6368	2554	1839	6594	6642	5824	4797	3212	4094	7975	5494	*	6845	3514	6561	4637	3007	*	*	71
+       417	1994	*	446	1911	*	0	5987	2407	1102	
+
+G 72   3382	7170	3259	3369	*	2262	6707	*	3925	5832	*	3258	3605	3673	4329	5031	5767	6905	*	5482	72
+       138	3453	*	372	2136	*	0	5984	1522	1145	
+
+G 73   *	*	2754	4239	*	666	6199	*	4655	*	*	5120	*	5775	*	5443	5028	*	*	6085	73
+       56	4720	*	1049	953	2244	342	5984	1193	1145	
+
+E 74   7758	4020	2561	2222	*	2880	*	*	5461	*	*	2687	*	4730	6610	3275	4093	5249	*	*	74
+       11	7084	*	1000	1000	*	0	5987	1000	1102	
+
+V 75   6373	5575	*	*	5308	*	*	2390	*	3688	*	*	*	*	5228	*	7542	641	*	*	75
+       0	*	*	*	*	*	0	5987	0	1102	
+
+F 76   *	*	*	*	3218	*	5800	4271	4266	3779	7084	*	*	6610	6343	5407	6845	5145	1200	2537	76
+       0	*	*	*	*	*	0	5987	0	1102	
+
+A 77   2091	*	*	*	*	6067	*	2247	*	1801	7343	*	*	*	*	*	*	2020	*	*	77
+       36	*	5349	*	*	*	0	5988	0	1102	
+
+E 78   *	5484	4952	2391	*	*	*	*	3692	*	4919	*	6265	3814	3319	3893	2745	*	*	2038	78
+       19	6265	*	1752	508	1968	426	5961	1088	1242	
+
+C 79   4950	2000	*	*	*	*	*	*	6523	4970	*	1006	*	*	2996	*	*	4275	*	*	79
+       53	4786	*	2227	347	1820	480	5980	1148	1166	
+
+L 80   *	7576	*	5663	6439	*	6199	5739	*	1251	6845	3606	*	5575	1974	4863	5521	4308	6046	5452	80
+       57	4682	*	852	1165	*	0	5988	1171	1102	
+
+S 81   5345	4154	*	*	*	2541	*	*	5437	*	4446	*	*	*	*	699	4006	*	*	*	81
+       40	5207	*	0	*	*	0	5988	1106	1102	
+
+D 82   4714	*	1970	2442	*	5729	4793	*	2736	5879	*	3055	4174	5475	4815	4910	4896	*	*	*	82
+       0	*	*	*	*	*	0	5992	0	1102	
+
+S 83   3897	4507	*	*	5196	5555	2877	5656	5339	4279	6081	3204	*	4868	5495	2256	5816	3386	6625	3387	83
+       0	*	*	*	*	*	0	5992	0	1102	
+
+A 84   2670	*	6069	*	*	4690	6371	6170	4497	*	*	4632	1255	*	6563	2288	5193	5865	*	*	84
+       0	*	*	*	*	*	0	5992	0	1102	
+
+I 85   *	*	*	*	5939	*	*	1156	*	4096	6625	*	*	*	6371	*	*	1139	*	*	85
+       0	*	*	*	*	1488	636	5992	0	1102	
+
+F 86   *	*	7371	*	328	*	*	4486	*	5159	*	*	*	6893	*	*	*	*	*	3103	86
+       0	*	*	*	*	*	0	5992	0	1045	
+
+V 87   6246	6099	*	*	*	*	*	3055	*	4701	6893	*	*	6398	*	6081	*	361	*	*	87
+       51	*	4839	*	*	*	0	5992	0	1045	
+
+Q 88   *	*	4416	*	*	6818	5614	5872	3338	5373	*	2655	*	1171	4470	4903	3830	*	*	4969	88
+       0	*	*	0	*	618	1520	5901	1018	1237	
+
+S 89   5360	6181	*	*	*	3535	6279	*	*	*	*	4805	5512	*	*	335	6380	*	*	*	89
+       28	6893	6543	0	*	*	0	5992	1000	1045	
+
+P 90   4702	5738	*	*	*	4126	5784	4168	5352	*	4757	6202	1514	5439	3707	5354	3722	4899	4421	3231	90
+       0	*	*	*	*	*	0	5991	0	1133	
+
+N 91   5066	5986	*	5006	3306	6617	*	5925	6094	4802	6196	2513	*	4820	5799	3318	2032	5374	*	2901	91
+       90	6078	4450	2000	415	*	0	5991	1048	1133	
+
+C 92   4697	2870	*	5766	4383	*	6967	5298	5865	1298	4528	5718	4388	*	*	3767	4923	6035	4449	5400	92
+       100	*	3904	*	*	2164	364	5908	0	1405	
+
+N 93   3944	5678	1625	5300	*	*	5843	*	5865	*	*	1204	4354	5659	*	5127	*	*	*	*	93
+       199	3212	5597	223	2802	2307	326	5895	1566	1694	
+
+Q 94   6423	*	4586	6409	3743	5385	3685	4783	6857	3242	4710	4144	3601	3325	3108	5060	5955	4369	*	3053	94
+       81	5694	4836	1000	1000	3690	116	5859	1045	1662	
+
+R 95   4626	5277	4778	2349	5588	*	4922	4924	4261	5336	4284	6792	3273	3806	3430	3240	3975	4650	*	*	95
+       44	5508	7003	2368	311	1568	593	5888	1061	1784	
+
+Y 96   3156	5365	3882	3532	6752	4790	2739	6341	5354	4080	6802	2729	4333	4740	5667	3155	6163	*	*	5300	96
+       8	*	7520	*	*	1406	683	5895	0	1599	
+
+G 97   3414	4897	7223	6930	*	1492	4527	*	6112	*	*	2605	7358	5314	6817	2817	3885	5047	*	*	97
+       115	5464	4217	3716	114	3697	116	5925	1071	1391	
+
+W 98   4308	4080	6847	4640	2864	5947	*	4342	2994	2729	6968	*	6521	4367	3023	4663	6153	4995	3997	5348	98
+       197	*	2967	0	*	1964	427	5816	1000	1713	
+
+H 99   4202	*	3515	4952	*	6154	2158	3342	5138	3813	5030	6703	3082	5323	2945	4817	5250	6071	*	*	99
+       88	4479	6105	1076	928	866	1147	5696	1154	2171	
+
+P 100  4492	*	5878	5348	*	3062	6523	5979	4826	2872	5384	4114	1827	5611	4132	3941	4150	6238	*	5638	100
+       59	5421	5911	0	*	1085	920	5807	1085	1605	
+
+A 101  2534	*	2820	5218	5329	3449	*	6158	4511	3154	7016	3673	*	4351	4837	3199	3928	5885	*	6554	101
+       140	3434	*	1607	574	742	1315	5918	1547	1413	
+
+T 102  3103	*	3918	4349	*	*	*	6609	3651	3426	*	*	4654	*	4121	4419	1311	5749	*	5657	102
+       43	6458	5781	1000	1000	*	0	5991	1005	1133	
+
+V 103  *	*	*	*	*	*	6430	3041	*	3772	*	4395	4675	*	*	7359	6434	537	*	*	103
+       0	*	*	0	*	1377	701	5970	1062	1252	
+
+C 104  6633	2461	*	6508	4297	4415	2574	3007	5322	3940	6078	7086	*	*	3740	5182	3795	3816	7565	4503	104
+       12	*	6889	*	*	*	0	5991	0	1133	
+
+K 105  *	*	5848	4507	5408	*	*	*	709	*	*	*	5450	4787	2114	6218	*	*	*	*	105
+       51	*	4837	*	*	*	0	5992	0	1190	
+
+I 106  *	*	*	*	6116	*	*	1756	*	1904	6224	6530	*	*	5798	6621	6355	1552	*	5887	106
+       35	5370	*	2972	197	2226	347	5956	1181	1419	
+
+P 107  6250	6122	*	6460	5261	4215	5075	*	5000	4444	3887	5857	1319	4170	6148	3962	5396	*	*	2932	107
+       24	5923	*	3807	107	740	1317	5974	1053	1319	
+
+P 108  3670	*	4944	*	*	3837	*	*	5868	*	*	3369	1065	4086	5446	2833	7685	*	*	*	108
+       50	4874	*	2000	415	*	0	6006	1171	1094	
+
+G 109  5138	6545	*	3869	6042	827	5016	*	4628	6253	6281	3610	5678	5275	4960	4985	6083	*	*	6551	109
+       64	4521	*	1580	588	1246	790	6006	1224	1094	
+
+C 110  2417	2560	*	4702	3856	3700	3483	5506	5146	6158	*	7838	*	5808	*	4236	*	4014	*	2574	110
+       254	2632	*	2142	371	*	0	6010	1920	1030	
+
+N 111  4860	2796	5936	4839	7467	5407	6064	5111	4337	5555	*	4365	4367	4986	5402	1717	3568	5878	7369	3993	111
+       24	5936	*	4000	93	*	0	6010	1043	1030	
+
+L 112  3931	6381	*	5878	4066	6643	*	2360	7262	1721	2983	6102	*	*	5062	6285	*	3303	*	4440	112
+       0	*	*	*	*	*	0	6010	0	1030	
+
+K 113  5428	4091	5216	5350	*	*	*	5233	745	5319	*	4912	*	7012	3252	*	5030	5011	*	6504	113
+       34	6056	6891	2620	256	*	0	6010	1033	1030	
+
+I 114  4100	*	*	*	*	*	*	1517	*	2699	*	*	*	*	*	*	6538	1226	*	*	114
+       9	*	7319	*	*	*	0	6010	0	1087	
+
+F 115  *	*	*	*	157	*	4981	*	*	5784	*	*	*	*	*	*	*	*	*	4233	115
+       9	*	7265	*	*	*	0	6006	0	1152	
+
+N 116  *	5406	702	4773	5711	4428	6468	*	*	*	*	2789	*	7171	4411	4669	6617	*	*	*	116
+       0	*	*	*	*	*	0	6009	0	1192	
+
+N 117  *	7671	6034	5315	3896	3939	4747	4212	6163	2818	2688	2988	6712	*	5991	4765	3681	*	6492	2805	117
+       40	6082	6346	3321	152	2622	256	6009	1032	1192	
+
+Q 118  4798	*	4008	2440	*	7548	5450	5866	3674	*	*	3924	*	2371	2778	3943	3695	*	*	4420	118
+       58	4915	7274	2458	290	2452	291	5988	1133	1254	
+
+E 119  4585	7658	4629	3594	*	6819	4721	5173	2332	2974	6351	6085	6627	2793	3026	4633	*	3708	*	6833	119
+       116	5395	4223	3807	107	*	0	5990	1080	1235	
+
+F 120  3366	4529	*	*	856	7142	5966	6848	*	5407	6971	*	6938	*	*	3382	5225	5501	*	3456	120
+       74	5173	5473	2467	288	924	1081	5978	1121	1553	
+
+A 121  1546	5459	7500	4384	7050	5139	5341	*	3162	6103	6423	4563	6788	3606	4650	2903	6455	5537	*	4538	121
+       7	7758	*	1585	585	*	0	5975	1000	1361	
+
+A 122  4243	7585	4541	2832	*	6807	5211	*	2939	5225	5232	3704	*	2163	4133	3377	4512	5535	7287	6158	122
+       18	7330	7287	4392	70	2716	238	5975	1000	1361	
+
+L 123  3725	*	6031	3839	*	*	4339	4681	6658	2205	3276	3369	*	4511	4338	4053	4674	4835	5434	3773	123
+       15	7917	7300	2322	322	3353	149	5982	1000	1336	
+
+L 124  6173	6446	*	6114	*	6328	*	2931	5210	861	4604	*	4991	4815	4723	7202	6135	3791	*	*	124
+       130	4428	4646	2580	264	3416	142	5981	1218	1334	
+
+A 125  2026	6754	7278	3019	5293	5901	4704	7218	5031	*	6853	4202	7293	3407	3175	2590	4705	6685	*	6817	125
+       91	4026	*	2777	227	974	1026	5913	1415	1520	
+
+Q 126  3240	5705	5131	3483	*	4537	5283	6209	4111	4754	5885	*	4867	2290	2178	4464	4521	6874	*	7450	126
+       95	4642	5396	2491	283	1362	711	5970	1180	1230	
+
+S 127  2089	4912	*	2520	*	5735	5393	*	5034	6220	5132	5962	5900	5154	3443	2442	3580	6434	*	6592	127
+       72	6495	4726	3070	183	1194	829	5905	1002	1254	
+
+V 128  3197	5221	6135	4212	4664	*	6430	5642	4387	3456	7537	6102	5295	5013	3757	3656	4364	2051	5482	4503	128
+       211	4375	3508	2118	378	3044	187	5849	1308	1348	
+
+N 129  3613	5962	*	4668	*	4815	4420	4999	3556	4686	*	2626	4370	3644	3418	3271	3212	5048	*	*	129
+       166	3199	*	2416	299	295	2433	5818	1510	1798	
+
+Q 130  4730	*	3893	3649	7824	4052	3232	6795	3801	4697	7351	4264	5339	2908	2447	3407	6181	5850	*	*	130
+       161	4529	4000	3247	161	2147	369	5946	1199	1106	
+
+G 131  3442	*	7564	4748	6545	1185	6043	6645	6935	4879	6035	6543	3932	5240	6605	3619	3275	5157	*	7195	131
+       113	3920	6748	1124	886	*	0	5846	1363	1512	
+
+F 132  4715	6798	*	5699	2869	*	5989	4479	4650	3319	*	6140	3640	7162	4250	5688	3494	4311	5820	1910	132
+       445	2915	2911	3166	170	864	1150	5845	1672	1566	
+
+E 133  3937	*	3383	2110	6056	6005	4784	4238	*	*	*	3020	2431	4278	4869	6080	4504	5423	*	6541	133
+       86	4714	5665	2008	412	*	0	5720	1160	1925	
+
+A 134  2589	*	2432	3646	6533	2628	4618	*	4161	5646	*	4910	4497	5835	4272	3850	4824	6021	*	6313	134
+       44	5071	*	2327	321	438	1933	5688	1125	2019	
+
+V 135  4353	*	*	6123	5918	5713	4832	5093	5584	4439	4111	*	3491	4914	3576	5848	4241	1266	*	5654	135
+       74	4716	6363	0	*	*	0	5897	1164	1236	
+
+Y 136  5254	*	2337	4614	3674	7296	5110	*	*	5168	4523	4002	5780	4626	3570	4454	5423	4622	5212	2265	136
+       210	3546	4329	3589	125	1311	744	5876	1460	1339	
+
+Q 137  5626	5579	2270	3017	5092	2749	7451	5755	4461	5696	*	4948	4435	3761	4146	2914	5691	*	*	*	137
+       27	6373	7300	2807	222	3127	175	5922	1005	1495	
+
+L 138  4225	*	6052	*	7290	*	*	5798	*	634	4438	*	2542	*	*	*	*	5547	6115	6779	138
+       0	*	*	*	*	*	0	5920	0	1463	
+
+T 139  4327	4704	6378	3300	6148	5978	*	4320	5004	3585	*	4829	5761	3782	2649	3857	3002	3562	6761	5043	139
+       10	*	7197	*	*	797	1236	5920	0	1463	
+
+R 140  3928	5552	2406	4913	*	*	5199	*	2068	4551	5598	4506	7052	*	2256	5318	4965	6195	*	5037	140
+       63	4539	*	3246	161	930	1074	5934	1185	1201	
+
+M 141  *	7076	*	6460	3635	6915	4637	4882	4414	2660	2302	5963	2761	3328	4728	6709	*	4783	6820	4190	141
+       30	5594	*	1246	790	*	0	5947	1074	1065	
+
+C 142  5091	773	*	6209	4267	*	5315	5762	*	*	*	3402	5963	5660	*	4305	3735	*	*	5616	142
+       0	*	*	*	*	1816	482	5947	0	1065	
+
+T 143  5192	3552	*	6462	3782	5675	6985	3517	5234	3883	4563	4399	*	*	*	2291	2072	4007	*	*	143
+       27	5764	*	2000	415	*	0	5943	1053	1030	
+
+I 144  *	*	*	*	4272	*	*	1530	6714	2612	4058	*	*	*	*	4205	4313	1920	*	*	144
+       0	*	*	*	*	*	0	5943	0	1030	
+
+R 145  3654	5764	*	*	5726	7053	5293	*	3748	*	*	4927	*	5526	607	4836	6632	5663	*	*	145
+       0	*	*	*	*	*	0	5943	0	1030	
+
+M 146  4814	6087	*	*	7382	*	*	861	*	2899	3090	*	*	*	*	*	*	2820	*	*	146
+       0	*	*	*	*	*	0	5943	0	1030	
+
+S 147  3569	*	*	*	*	7345	*	*	*	*	*	*	*	*	*	185	6714	5625	*	*	147
+       0	*	*	*	*	0	*	5943	0	1030	
+
+F 148  *	*	*	*	282	*	*	*	*	3446	6202	*	*	*	6546	*	*	4264	*	6755	148
+       0	*	*	*	*	*	*	5942	0	0	
+
+V 149  2408	4105	*	7132	*	3515	*	4353	*	*	6755	6546	*	5423	*	4549	6218	970	*	*	149
+       13	*	6755	*	*	*	*	5942	0	0	
+
+K 150  *	6510	*	4441	*	*	*	*	211	5755	*	*	5415	6535	5815	6866	*	*	*	*	150
+       61	6320	5117	4524	64	*	0	5946	1025	1000	
+
+G 151  6409	5702	3927	*	*	346	*	*	*	*	*	4260	*	*	*	5360	4640	*	*	*	151
+       209	*	2893	0	*	399	2050	5864	1000	1179	
+
+W 152  *	*	*	*	2710	*	*	*	*	6128	*	*	*	*	*	4948	*	*	344	6305	152
+       9	*	7329	*	*	3122	176	5628	0	1750	
+
+G 153  *	*	*	*	*	69	*	*	*	*	*	5677	*	6308	*	6131	*	*	*	*	153
+       70	5493	5297	1574	590	*	0	5661	1061	1701	
+
+A 154  2385	*	4052	3357	*	4615	5652	*	4923	*	*	4924	1512	4973	5799	3696	*	4692	*	7015	154
+       44	*	5071	*	*	*	0	5580	0	1798	
+
+E 155  4234	3966	2157	2417	6557	3377	5514	6068	3484	6510	7092	4244	*	4752	6363	3553	4926	*	*	*	155
+       35	5377	*	0	*	4096	87	5449	1064	1886	
+
+Y 156  *	*	*	*	6154	*	*	6056	*	*	*	*	*	*	*	*	*	4559	*	107	156
+       22	6064	*	5170	41	*	0	5447	1011	1833	
+
+R 157  5563	*	6865	*	*	4547	3109	*	3715	*	*	4207	2672	4255	2319	2294	3888	*	*	*	157
+       68	5172	5758	0	*	441	1925	5447	1094	1833	
+
+R 158  *	*	5165	4432	*	5619	*	*	4509	*	*	4453	5302	*	435	*	5658	4999	*	*	158
+       0	*	*	*	*	1704	529	5805	0	1281	
+
+Q 159  4838	*	6406	4643	*	*	5397	6194	3044	4804	4614	5343	3292	1298	4132	4866	5066	5420	*	*	159
+       0	*	*	*	*	290	2458	5866	0	1178	
+
+T 160  5064	*	2359	3131	3138	5124	4708	6219	6042	5944	7403	4489	*	6838	5334	2965	2551	4919	*	5643	160
+       0	*	*	*	*	*	0	5890	0	1000	
+
+V 161  5821	6299	4717	*	*	*	6219	1099	*	3656	4794	*	6160	*	*	*	*	1635	*	*	161
+       0	*	*	*	*	*	0	5890	0	1000	
+
+T 162  6380	5065	4268	5711	5566	*	6495	5485	3180	3061	4483	6016	*	6740	6443	5520	1046	6042	*	*	162
+       0	*	*	*	*	*	0	5890	0	1000	
+
+S 163  5308	*	3207	2597	*	4155	5258	*	3728	*	*	3882	*	3908	4454	1461	*	*	*	*	163
+       0	*	*	*	*	*	0	5894	0	1000	
+
+T 164  5571	1379	*	*	*	*	6295	4267	5966	4425	*	*	*	*	*	4460	1277	6763	*	*	164
+       0	*	*	*	*	*	0	5894	0	1000	
+
+P 165  *	5546	5327	*	*	*	7175	*	*	*	*	*	79	*	*	*	*	*	*	*	165
+       19	6292	*	1000	1000	*	0	5894	1030	1000	
+
+C 166  5287	366	*	*	*	*	*	6453	*	4285	6532	*	*	*	*	*	6538	3132	*	*	166
+       0	*	*	*	*	*	0	5894	0	1000	
+
+W 167  *	*	*	*	*	*	*	*	*	6295	*	*	*	*	4297	5402	*	*	156	6059	167
+       22	*	6059	*	*	*	0	5894	0	1000	
+
+I 168  *	*	6258	*	3493	*	*	1548	*	1612	6405	*	*	*	*	*	*	2450	*	4867	168
+       0	*	*	*	*	614	1528	5879	0	1066	
+
+E 169  5975	*	6750	437	*	*	*	*	5582	4912	3880	6131	*	4483	4903	5531	*	*	*	*	169
+       0	*	*	*	*	*	0	5893	0	1000	
+
+L 170  6547	*	*	*	*	6158	*	1220	*	2507	4633	*	*	*	*	*	*	1600	*	*	170
+       0	*	*	*	*	*	0	5893	0	1000	
+
+H 171  6131	*	5582	*	5308	*	2019	3333	3690	2892	*	5782	*	3839	3344	4762	4756	3844	4777	6069	171
+       10	*	7190	*	*	*	0	5893	0	1000	
+
+L 172  *	*	*	*	2498	*	*	3525	*	769	4106	3698	6123	*	*	*	*	*	*	*	172
+       0	*	*	*	*	*	0	5822	0	1022	
+
+N 173  4833	4641	6385	*	*	5024	2293	5502	6837	3205	*	1695	6704	4861	4216	4998	4114	4540	*	*	173
+       0	*	*	*	*	*	0	5720	0	1022	
+
+G 174  4167	*	4134	4048	*	2619	4638	5315	4945	*	*	3665	4245	4574	2461	3646	6739	3035	*	*	174
+       0	*	*	4524	64	897	1111	5547	1000	1022	
+
+P 175  1776	3964	*	*	*	*	5475	*	*	*	*	5406	997	5284	6124	5383	*	*	*	4927	175
+       0	*	*	*	*	0	*	5544	0	1000	
+
+L 176  4554	5861	*	*	5149	*	*	*	*	624	2984	*	5742	*	6012	*	*	*	5015	3804	176
+       56	4711	*	0	*	*	*	5399	1058	0	
+
+Q 177  3303	*	2366	3920	6842	5964	5372	*	3259	4525	6659	5753	*	1646	3889	5239	*	*	*	*	177
+       0	*	*	*	*	*	*	5227	0	0	
+
+W 178  *	6701	5061	4047	4820	*	*	*	6126	2329	3456	*	*	*	*	*	*	3891	1217	4001	178
+       0	*	*	*	*	*	*	5227	0	0	
+
+L 179  4365	*	*	*	4825	*	*	2528	*	757	3687	*	*	*	*	*	5136	5934	*	5123	179
+       0	*	*	*	*	*	*	5125	0	0	
+
+D 180  *	*	410	5168	*	5594	*	*	4054	*	*	3697	*	5136	4918	*	*	*	*	*	180
+       0	*	*	*	*	*	*	5125	0	0	
+
+K 181  3511	*	4389	3295	*	*	*	*	2429	*	*	3836	*	2575	2798	2930	5123	4814	*	*	181
+       42	5123	*	3585	126	*	*	5125	1037	0	
+
+V 182  3472	*	*	*	5696	5594	*	3194	3671	3540	*	*	*	*	*	*	5136	909	*	4825	182
+       0	*	*	*	*	*	*	5125	0	0	
+
+L 183  *	4358	*	4588	5123	*	*	4217	*	590	4703	*	*	6135	*	*	5758	4152	*	4825	183
+       93	4988	5022	3907	100	*	*	5125	1013	0	
+
+T 184  5084	7294	*	4400	*	*	3197	*	3129	5412	*	3543	3969	3872	3170	3448	2410	6728	*	4275	184
+       0	*	*	*	*	0	*	5050	0	1053	
+
+Q 185  4419	3880	4590	4733	*	5651	4131	3319	5364	*	*	5542	*	1326	4326	6679	3233	*	*	5756	185
+       24	*	5916	*	*	*	*	5099	0	0	
+
+M 186  *	*	*	6704	*	*	*	3152	*	2259	765	*	*	*	4742	*	*	*	*	4533	186
+       0	*	*	*	*	0	*	4740	0	1000	
+
+G 187  4564	*	4071	3467	*	1317	5512	*	*	*	*	2743	3129	*	4458	4806	4660	*	*	*	187
+       0	*	*	*	*	*	*	4648	0	0	
+
+S 188  2493	*	*	*	*	4520	*	6002	*	4218	*	4112	2250	*	5121	1379	*	*	*	5150	188
+       0	*	*	*	*	*	*	4456	0	0	
+
+P 189  3340	*	*	5610	*	*	*	*	*	*	*	*	486	*	4637	3518	4679	*	*	*	189
+       0	*	*	*	*	*	*	4246	0	0	
+
+S 190  4228	*	2918	5770	*	4774	3949	6104	*	*	*	3422	1981	6489	5779	3518	3560	5159	*	3263	190
+       65	4499	*	3000	193	*	*	4147	1029	0	
+
+I 191  *	*	2785	5124	6031	4388	6066	4367	3623	5785	*	2027	4039	6292	3111	4047	3744	5020	*	*	191
+       40	*	5196	*	*	*	*	4044	0	0	
+
+R 192  3539	*	*	3927	*	*	*	3837	3638	5062	*	5680	1571	4681	4565	*	*	2385	*	4672	192
+       0	*	*	*	*	*	0	4030	0	1000	
+
+C 193  *	1462	*	*	*	*	*	1604	*	*	3989	*	4091	*	*	*	3570	3288	*	*	193
+       45	5027	*	1000	1000	0	*	4017	1057	1000	
+
+S 194  *	*	4068	*	*	3337	4123	*	3996	*	*	3114	*	*	*	931	3619	*	*	*	194
+       0	*	*	*	*	*	*	4032	0	0	
+
+S 195  *	5596	*	*	*	*	*	*	*	*	*	*	*	*	*	30	*	*	*	*	195
+       50	4868	*	1000	1000	*	*	3878	1000	0	
+
+V 196  *	*	5216	*	3490	*	*	4291	*	*	4086	4251	*	5635	2108	*	*	1091	*	*	196
+       0	*	*	*	*	*	*	3545	0	0	
+
+S 197  *	*	*	*	*	4921	*	*	*	*	*	*	*	*	*	467	2039	*	*	*	197
+       0	*	*	0	*	*	*	2962	0	0	
+
+//
+�HHsearch 1.5
+NAME  deee1e6a65f0898c57dcde00fc15c870
+FAM   
+FILE  deee1e6a65f0898c57dcde00fc15c870
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:16:44 2013
+LENG  126 match states, 126 columns in multiple alignment
+FILT  111 out of 624 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  5.8 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEECCCCCCCCCCHHHHHHHCCCCCHHHHHHHHHHCCCCCCCCCCCCCHHHHHHHHHHHHCCCCCCHHHHHHHHHHHHHHHHHCCHHHHHHHCCCCCCC
+CCCCCCCCCCCCCCCCHHHCCCCCCC
+>ss_conf PSIPRED confidence values
+9377366689975679788624465699999999990999451107499999999999984436321789999999799999864354328852997798
+76727765567764420112444689
+>Consensus
+mvxixxxxlxxxkxvxxaLxxIxGIGxxxAxxIcxxlgixxxxxxxxLxxxqixxlxxxlxxxxxixxdLxxxxxxxIxrlxxIxsyRGxRHxxGLPVRG
+QRTxTNarTxkxxxxxxxxxxxxxxx
+>deee1e6a65f0898c57dcde00fc15c870
+MARIAGVEIPRNKRVDVALTYIYGIGKARAKEALEKTGINPATRVKDLTEAEVVRLREYVENTWKLEGELRAEVAANIKRLMDIGCYRGLRHRRGLPVRG
+QRTRTNARTRKGPRKTVAGKKKAPRK
+>gi|225680884|gb|EEH19168.1| 40S ribosomal protein S13 [Paracoccidioides brasiliensis Pb03]
+------------------------------------marFYVHETAKIGDLGNKQILSLTAALSE-MKIENDLRRQILDDIQRLKDIGTVRACGPILvag
+pAASMRGlvslvfpfaDGYTLQNKT-----aiklnrldrrlgikgpr------------
+>gi|290559361|gb|EFD92694.1| ribosomal protein S13 [Candidatus Parvarchaeum acidophilus ARMAN-5]
+IVRIADTDLDGSKAVKDLLRSIPGISFSYSNALMKVLNIPKGKKLQDLDEKELNTLKEALSDPfkYkiphwlfnwrrddetgldyhLLSNDLRSKTTMRI
+QKIKTSRSYRGYRHSFNYKLRGQKVKSrganvHGRV-----------------
+>gi|15790213|ref|NP_280037.1| 30S ribosomal protein S13P [Halobacterium sp. NRC-1]gi|169235942|ref|YP_001689142.1| 30S ribosomal protein S13P [Halobacterium salinarum R1]gi|13124533|sp|Q9V2W4.1|RS13_HALSA RecName: Full=30S ribosomal protein S13P; AltName: Full=HS13gi|6172227|dbj|BAA85895.1| ribosomal protein HS13 [Halobacterium salinarum]gi|10580671|gb|AAG19517.1| 30S ribosomal protein S13P [Halobacterium sp. NRC-1]gi|167727008|emb|CAP13794.1| ribosomal protein S13 [Halobacterium salinarum R1]
+FVRIGQTDLDGTKTVERALAELGGVGRRVARIVADEAGVDRTATMGGLEDDAIESVTDAVDSFtEHapawlanrqndfytgenqhiTGTDVELTRDQDi-
+NRMRMIR-sYKGIRHER-gQKVRGQRTKSTGRTE----------------
+>gi|27661504|ref|XP_232915.1| PREDICTED: ribosomal protein S18-like [Rattus norvegicus]gi|109476520|ref|XP_001058861.1| PREDICTED: ribosomal protein S18-like [Rattus norvegicus]
+-LQVLNTNIDEQQETAFAITATKGAEQRYAHVVLRKAGIDLTKMAGELTEDKVERVITIMQNPrqYEipqkgvrdgrcsqvPANGLDNKLREELERLKKI
+RAHRGLRHFWGLHVHCQLTMSHG--CRGYTVGASKKKR----
+>gi|7525003|ref|NP_050101.1| ribosomal protein S13 [Dictyostelium discoideum]gi|74833664|sp|O21038.1|RT13_DICDI RecName: Full=Ribosomal protein S13, mitochondrialgi|2627258|dbj|BAA23575.1| ribosomal protein S13 [Dictyostelium discoideum]gi|4958906|dbj|BAA78083.1| ribosomal protein S13 [Dictyostelium discoideum]
+----GKIELNNEKQIIGELkKKIKGVNFHIAQKVIMLSGNVASIKGNKLIQSEEKQIVDILQRFkglYSHNYGLKEEALAKIRRIEN--VYRYIRVRQGY
+PVRG-RTKSNANTVKRQ-------------
+>gi|187764102|ref|YP_001876551.1| ribosomal protein S13 [Dictyostelium fasciculatum]gi|160688810|gb|ABX45225.1| ribosomal protein S13 [Dictyostelium fasciculatum]
+--------LNKRKKVLFEIkKKIAGMGESMTKRLCSMCGFLPMTYVSKISTKGGLRLMRIYKS-FKGLSDYSYYvyrKRFNQRRS-KERAYRSQRFTKGY
+PV-SQRTRTNGKIAS---------------
+>gi|72161465|ref|YP_289122.1| hypothetical protein Tfu_1061 [Thermobifida fusca YX]gi|71915197|gb|AAZ55099.1| conserved hypothetical protein [Thermobifida fusca YX]
+--------VIGKMKVSALLESLPGVGKVRAKQIMERLNIAESRRIRGLGANQRAALESEFG---------------------------------------
+--------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	5916	*	*	4288	*	*	2044	*	3860	757	*	*	*	*	5860	*	6392	*	*	1
+       0	*	*	*	*	*	*	5243	0	0	
+
+A 2    3460	*	*	*	5074	*	*	3083	6212	3373	4314	6092	4947	*	*	4043	4554	1149	*	*	2
+       21	6092	*	0	*	*	*	5443	1053	0	
+
+R 3    *	*	*	6296	3318	*	3777	4714	*	4530	*	6122	*	4443	1108	*	*	6157	*	2364	3
+       13	6790	*	3478	136	*	*	5464	1061	0	
+
+I 4    5319	*	*	*	5578	*	*	802	*	2857	3993	6656	*	*	*	*	5973	2701	*	*	4
+       0	*	*	*	*	*	*	5464	0	0	
+
+A 5    2876	6279	*	*	2693	3482	*	5312	6202	1521	4062	6427	*	4269	5390	4435	*	6339	*	6172	5
+       0	*	*	*	*	*	*	5530	0	0	
+
+G 6    *	*	3114	4910	*	1413	6458	*	4704	*	*	2086	*	4222	4425	4735	4245	*	*	*	6
+       0	*	*	*	*	*	*	5530	0	0	
+
+V 7    4535	5934	*	*	6801	*	6536	3319	3057	*	*	4807	*	4515	*	4574	1390	2340	*	*	7
+       15	6627	*	1357	714	*	*	5530	1062	0	
+
+E 8    5200	*	1857	3306	5384	5826	6197	3977	5489	5396	*	1993	4873	*	4395	4428	5744	*	*	4921	8
+       39	5247	*	0	*	*	*	5564	1077	0	
+
+I 9    5518	5562	*	*	3550	*	*	1814	*	1242	6175	6262	6183	*	*	6198	6580	3325	*	*	9
+       0	*	*	*	*	0	*	5696	0	1077	
+
+P 10   5545	*	2025	6581	4347	*	6245	7573	3680	3950	*	2731	2266	5529	*	3463	5645	6184	*	7071	10
+       0	*	*	*	*	*	*	5774	0	0	
+
+R 11   4282	*	3123	3428	*	1625	6544	7148	3288	*	6658	3039	4429	6880	5142	3940	5914	*	*	*	11
+       0	*	*	*	*	*	*	5777	0	0	
+
+N 12   *	*	3714	3515	*	5469	4107	6795	2951	6262	*	1779	6074	4598	4166	3645	3045	*	*	*	12
+       0	*	*	*	*	*	*	5777	0	0	
+
+K 13   5133	*	*	4886	5702	*	6786	7555	693	4050	5255	5108	*	3987	3834	7191	*	6405	6764	6800	13
+       56	*	4719	*	*	*	*	5788	0	0	
+
+R 14   4115	*	*	4943	6766	6122	*	5896	2124	4451	*	4463	3025	3550	3741	3111	3051	5077	*	*	14
+       53	4789	*	717	1353	0	*	5810	1153	1200	
+
+V 15   4239	6280	*	*	5879	*	*	1879	*	2096	5511	*	*	*	*	*	5479	1446	*	*	15
+       0	*	*	*	*	*	*	5829	0	0	
+
+D 16   3907	*	7258	3129	3616	6682	5280	4404	3566	4063	6854	5460	4022	4638	3016	4121	6796	3791	5448	3545	16
+       0	*	*	*	*	*	*	5829	0	0	
+
+V 17   5032	6432	5778	4755	2348	5379	6084	2559	4693	4367	5307	5389	*	4529	4006	4808	5469	3558	7232	3236	17
+       23	6001	*	3700	115	*	*	5858	1022	0	
+
+A 18   863	*	*	3376	6892	3135	*	4846	*	4531	*	5239	*	*	*	3147	*	6129	*	*	18
+       0	*	*	*	*	*	*	5858	0	0	
+
+L 19   6886	6443	*	*	4668	*	*	3823	5663	310	*	*	*	*	*	6507	*	5548	*	6486	19
+       146	3381	*	0	*	*	*	5889	1496	0	
+
+T 20   3879	6104	6849	5378	*	*	*	5850	2653	4807	*	5103	5674	3411	3209	3454	1647	6456	*	*	20
+       0	*	*	*	*	0	*	6006	0	1077	
+
+Y 21   3671	*	4272	4260	*	4415	6823	*	2094	*	5587	4078	*	3392	3434	2873	5181	6932	*	3515	21
+       0	*	*	*	*	*	*	6072	0	0	
+
+I 22   5252	*	*	*	3697	*	*	791	*	3424	5742	*	*	*	6007	*	4941	2894	6128	6645	22
+       0	*	*	*	*	*	*	6072	0	0	
+
+Y 23   5793	*	5375	*	2717	6959	4533	*	2063	7082	*	6929	3830	*	4390	6615	6133	5772	*	1561	23
+       0	*	*	*	*	*	*	6072	0	0	
+
+G 24   5719	*	*	*	*	59	*	*	*	*	*	*	*	*	*	5566	*	*	*	*	24
+       0	*	*	*	*	*	*	6072	0	0	
+
+I 25   5651	*	*	*	5788	*	*	736	*	2811	5793	*	*	*	*	*	*	2434	5952	*	25
+       0	*	*	*	*	*	*	6072	0	0	
+
+G 26   *	*	*	5651	*	372	*	*	4973	*	*	2983	*	6091	*	4866	*	*	*	*	26
+       0	*	*	*	*	*	*	6072	0	0	
+
+K 27   *	*	5824	4438	5544	5877	4174	4913	2955	3202	6572	3964	2957	4379	2988	4248	5164	6007	6911	3479	27
+       0	*	*	*	*	*	*	6072	0	0	
+
+A 28   3665	*	*	*	3935	5026	4066	4960	3094	*	5614	3971	4997	5767	2445	3035	3440	5804	*	3912	28
+       0	*	*	*	*	*	*	6072	0	0	
+
+R 29   5946	*	*	6768	3533	*	5724	4124	2962	3294	3553	5281	*	3899	3661	4841	2252	4639	*	4654	29
+       0	*	*	*	*	*	*	6072	0	0	
+
+A 30   788	6552	*	*	*	7117	*	3609	*	*	*	6076	*	*	*	2040	5068	6950	*	5303	30
+       0	*	*	*	*	*	*	6072	0	0	
+
+K 31   3601	7284	6950	4109	4607	*	4233	3604	2215	3873	7167	3634	*	3775	3410	4508	4529	*	*	4536	31
+       12	6889	*	2000	415	*	*	6072	1000	0	
+
+E 32   2726	6057	*	4363	5602	6114	6272	3692	2512	4746	7303	6476	*	2618	3375	4719	5371	3582	*	5335	32
+       0	*	*	*	*	*	*	6072	0	0	
+
+A 33   5156	6836	*	*	5240	*	*	983	*	2019	5295	*	*	*	*	*	6097	2797	*	*	33
+       0	*	*	*	*	*	*	6072	0	0	
+
+L 34   4079	1122	*	5426	*	6504	*	4540	*	2246	4132	*	*	*	5535	5321	5806	4165	*	5952	34
+       0	*	*	*	*	*	*	6072	0	0	
+
+E 35   3197	6951	3362	3535	*	*	5604	*	2532	3808	5526	3439	7008	5096	2900	3425	*	5354	*	4960	35
+       0	*	*	*	*	*	*	6072	0	0	
+
+K 36   3968	*	4563	4098	6007	7333	*	4346	1978	3922	5793	5700	*	3962	2412	4549	5971	3640	*	5931	36
+       0	*	*	1585	585	*	*	6072	1099	0	
+
+T 37   2549	3813	*	*	3602	*	*	4518	*	1304	5113	7285	*	*	*	4297	3703	4740	6935	5766	37
+       20	6167	*	1000	1000	*	*	6122	1025	0	
+
+G 38   5593	*	4615	4194	*	781	6935	*	5013	6218	*	3116	*	4921	4869	4785	*	6935	*	5489	38
+       0	*	*	*	*	*	*	6122	0	0	
+
+I 39   *	*	*	*	3067	*	6777	1461	5215	2014	6127	5169	*	*	*	*	*	2755	*	4522	39
+       0	*	*	*	*	*	*	6122	0	0	
+
+N 40   5806	6932	1756	6069	5475	4226	2843	*	*	4783	*	2624	5878	7148	5501	2892	6930	5099	*	5012	40
+       24	*	5946	*	*	*	*	6122	0	0	
+
+P 41   4308	*	4787	4191	6721	4420	*	4934	3340	3853	*	4862	1365	*	4759	3856	5426	4891	*	5943	41
+       12	6910	*	4248	78	0	*	6101	1000	1094	
+
+A 42   5082	*	3558	4586	4659	4806	4772	*	3773	4410	5808	2109	5893	5694	4333	2874	3179	*	5077	*	42
+       0	*	*	*	*	*	*	6122	0	0	
+
+T 43   2907	3989	7339	4835	6990	*	*	3863	2381	2923	3820	*	*	5892	3566	4619	3242	5360	*	5707	43
+       52	4824	*	916	1089	*	*	6122	1186	0	
+
+R 44   6873	*	*	6505	6605	5181	6082	5466	1754	5055	5691	5061	4506	4924	1709	5775	3502	*	6288	5199	44
+       13	*	6780	*	*	*	*	6122	0	0	
+
+V 45   2870	7450	*	*	4416	5033	*	2386	6073	2647	3604	*	6648	*	*	*	4767	1920	*	5566	45
+       0	*	*	*	*	0	*	6111	0	1000	
+
+K 46   6105	6916	5030	5667	*	1402	4044	5967	2417	*	*	4085	7445	5186	4053	3376	*	5893	*	5709	46
+       35	6664	6167	0	*	*	*	6122	1000	0	
+
+D 47   5387	*	2331	2450	5976	4923	4998	*	3661	3686	5611	4172	*	3746	6928	3107	4485	*	*	4714	47
+       0	*	*	*	*	*	0	6087	0	1025	
+
+L 48   *	6890	*	*	5153	*	*	3666	*	392	5684	*	*	*	*	5122	*	4103	*	5957	48
+       12	*	6894	*	*	0	*	6087	0	1025	
+
+T 49   4840	*	4392	4292	*	4084	*	6542	3581	5270	*	3081	5362	*	6865	1937	1862	*	*	*	49
+       0	*	*	*	*	*	0	6116	0	1006	
+
+E 50   4247	*	2085	2390	5661	6982	*	6080	3504	5510	*	3449	3593	4059	5110	4846	4563	6469	*	5916	50
+       15	6625	*	2000	415	*	0	6116	1000	1006	
+
+A 51   3980	*	3109	2248	4931	4438	5844	6982	3332	4544	6924	3632	5045	5239	*	3085	4863	7508	*	4046	51
+       42	*	5123	*	*	*	0	6116	0	1006	
+
+E 52   6928	*	3676	2020	*	5747	4540	6589	4097	5606	*	4681	*	1452	6264	5783	5153	*	*	4261	52
+       0	*	*	0	*	456	1885	6103	1119	1186	
+
+V 53   6374	*	6080	4341	4141	4834	6595	1792	6281	1786	*	*	*	6561	5282	*	5581	2805	5444	7210	53
+       0	*	*	2807	222	*	0	6116	1006	1006	
+
+V 54   4155	*	2964	2510	5874	4870	5689	4846	3029	4165	5007	3515	6924	5460	6234	3660	3573	7343	*	5359	54
+       0	*	*	*	*	*	0	6116	0	1006	
+
+R 55   3483	*	5708	4742	5874	6774	6136	5356	2375	3021	*	5599	*	3341	2837	2634	4688	6137	*	*	55
+       0	*	*	*	*	0	*	6116	0	1006	
+
+L 56   *	*	*	6664	4537	*	*	1724	6899	926	5194	*	*	*	*	*	*	3598	*	*	56
+       0	*	*	*	*	*	*	6122	0	0	
+
+R 57   4317	5656	4539	2936	*	6813	*	3998	4267	4867	4517	3943	*	4884	2987	3547	2863	3447	*	6044	57
+       22	6044	*	3322	152	*	*	6122	1031	0	
+
+E 58   3206	*	3267	3045	5077	7098	6964	5504	2816	4787	6390	3278	*	3417	4038	4205	3933	*	6777	5434	58
+       12	6899	*	1000	1000	*	*	6122	1006	0	
+
+Y 59   2884	*	*	3374	3048	7033	*	2334	5813	3409	6606	*	6664	5620	5792	5011	5015	3375	5117	3580	59
+       22	6044	*	0	*	*	*	6122	1031	0	
+
+V 60   4584	6477	*	*	4265	*	*	1712	*	1381	4757	*	*	5759	*	*	*	2916	*	5808	60
+       91	5230	4847	4417	69	*	*	6122	1129	0	
+
+E 61   4267	*	3540	2338	*	5027	6577	5165	2968	*	*	3298	6684	3419	4501	2610	4382	*	*	7225	61
+       99	4428	5657	0	*	1101	905	6061	1247	1319	
+
+N 62   4676	*	3373	3528	6453	4451	6717	5770	2768	*	6279	2185	*	3545	4943	3345	3843	5813	*	6774	62
+       519	3251	2344	3665	118	2735	235	6022	1510	1271	
+
+T 63   *	*	3743	5701	3229	*	5170	5779	3913	5576	*	2098	2198	4610	5400	3865	5692	*	*	4015	63
+       802	1230	*	1650	553	195	2985	5743	2695	2440	
+
+W 64   *	*	5984	6839	2968	*	3388	4990	5781	2805	3515	4545	7093	*	6416	5464	5615	4990	7270	1604	64
+       246	2676	*	4286	76	2395	304	6025	1762	1191	
+
+K 65   6746	6080	4702	4288	4366	4445	6890	4865	3032	2268	4989	4306	3919	5997	5812	4316	3516	3481	6587	*	65
+       197	2972	*	4249	78	*	0	6030	1641	1144	
+
+L 66   *	*	*	*	5503	4602	6485	1627	4861	2595	*	*	5617	6047	*	6128	3072	2170	*	6489	66
+       0	*	*	*	*	*	0	6030	0	1144	
+
+E 67   4272	*	4626	1522	*	2217	5898	*	6873	5668	*	4107	*	6705	5455	3221	3466	6479	*	*	67
+       9	7271	*	2585	263	*	0	6030	1000	1144	
+
+G 68   4748	*	4146	4725	*	2736	4943	5703	5760	5384	*	2543	6130	4471	4988	2407	2990	6896	5898	5487	68
+       0	*	*	*	*	*	0	6030	0	1144	
+
+E 69   6078	6057	1207	2612	6007	4319	6759	6231	4651	6889	6669	3773	6453	4687	6140	4277	6479	5218	*	*	69
+       60	5077	6478	0	*	*	0	6030	1112	1144	
+
+L 70   4678	*	*	*	*	*	*	3747	5665	437	6137	*	*	*	*	*	*	3824	6075	5142	70
+       14	6722	*	3907	100	*	0	6015	1027	1210	
+
+R 71   4684	*	3118	4739	5349	6582	4499	4259	1920	*	5488	5672	*	4752	1896	4407	6837	6740	*	*	71
+       0	*	*	*	*	*	0	6015	0	1210	
+
+A 72   3966	*	4617	4858	4400	5638	6737	6861	3036	3410	5533	3906	*	6882	1693	4388	4828	5411	7128	4653	72
+       0	*	*	*	*	2022	408	6015	0	1210	
+
+E 73   3639	*	6025	2772	4248	5898	*	4047	3046	5611	6849	4781	*	3004	3975	3529	3548	5645	*	4031	73
+       29	5668	*	1585	585	*	0	6030	1044	1144	
+
+V 74   4710	*	6047	4426	4228	*	6479	2458	3580	3463	4337	5385	*	3578	4700	6733	4681	2231	*	5492	74
+       22	6057	*	2000	415	*	0	6030	1010	1144	
+
+A 75   4256	*	4901	4574	4732	*	6453	5337	2940	3464	6938	4100	*	3380	1898	3498	4909	6425	*	6231	75
+       0	*	*	*	*	*	0	6030	0	1144	
+
+A 76   2915	*	3099	2256	3948	6805	6995	5682	4489	3301	4008	3895	*	3658	5737	4777	5487	*	*	6920	76
+       0	*	*	*	*	*	0	6030	0	1144	
+
+N 77   5614	6007	1459	4448	*	*	5514	5704	4579	5888	5544	1636	*	5621	4742	4212	*	*	*	*	77
+       23	5994	*	0	*	*	0	6030	1031	1144	
+
+I 78   *	*	*	*	5327	*	*	626	3610	3118	6799	*	*	5655	*	6718	*	3448	*	*	78
+       0	*	*	*	*	1697	532	6025	0	1234	
+
+K 79   4240	*	5010	2530	5932	*	*	*	2181	4930	*	2634	*	2789	3299	5357	5945	5312	*	*	79
+       0	*	*	*	*	*	0	6030	0	1144	
+
+R 80   *	7494	*	4896	4988	7162	4908	*	3141	4228	*	5869	*	5526	792	6425	3966	6007	*	6080	80
+       0	*	*	*	*	*	0	6030	0	1144	
+
+L 81   5128	*	6859	4233	5370	5544	6579	4313	3707	872	3214	*	*	6859	*	5174	7147	*	*	5101	81
+       29	*	5668	*	*	*	0	6030	0	1144	
+
+M 82   5702	6663	*	4671	*	*	*	2027	1737	5359	4745	5769	*	4931	2959	7119	*	3135	*	5390	82
+       11	7089	*	0	*	1570	593	5970	1000	1246	
+
+D 83   4423	*	3162	3294	5932	5819	*	5273	1932	5467	4168	3562	*	4379	4404	4048	3593	5942	*	*	83
+       33	*	5487	*	*	*	0	6030	0	1144	
+
+I 84   6103	*	*	5649	6551	*	*	682	*	3619	3830	6014	*	*	*	4369	4078	4139	*	*	84
+       0	*	*	0	*	1260	780	5981	1077	1267	
+
+G 85   5365	*	*	5348	*	2477	6530	*	2104	*	5740	2815	*	5299	2102	3459	*	*	5796	*	85
+       42	6304	5974	1000	1000	617	1523	6015	1010	1132	
+
+C 86   3272	2400	*	6557	*	*	6070	*	*	4721	6568	4788	*	6327	6560	1189	3260	5019	*	*	86
+       0	*	*	3775	109	793	1242	6057	1098	1098	
+
+Y 87   *	*	*	6485	6332	*	5131	4471	6593	4286	*	5661	*	*	6065	6959	*	4271	3617	588	87
+       0	*	*	*	*	*	0	6062	0	1006	
+
+R 88   5482	*	*	7173	*	*	6365	*	2955	6343	*	*	*	*	370	7176	6490	5299	*	*	88
+       0	*	*	*	*	*	0	6062	0	1006	
+
+G 89   5453	6343	*	*	*	296	*	6105	*	6163	*	5678	*	*	*	3928	*	6076	*	5518	89
+       0	*	*	1585	585	0	*	6062	1006	1006	
+
+L 90   *	4405	*	*	3616	*	*	2355	4996	2118	5038	*	*	5766	3723	4948	6460	2937	5228	3499	90
+       0	*	*	*	*	*	*	6070	0	0	
+
+R 91   *	*	*	*	6336	5454	*	*	*	*	*	*	*	*	52	*	*	*	*	*	91
+       0	*	*	*	*	*	*	6070	0	0	
+
+H 92   *	*	*	*	4709	*	403	6436	6761	4021	*	*	5454	*	6131	6107	*	4495	*	5207	92
+       0	*	*	*	*	*	*	6070	0	0	
+
+R 93   2867	*	*	3545	4756	5662	4891	3227	2623	5830	4828	6040	*	5332	3159	3430	3621	5053	*	6834	93
+       18	6336	*	1000	1000	*	*	6070	1013	0	
+
+R 94   4913	6168	5480	5335	4772	*	5887	*	2374	2367	3978	4566	*	3494	2966	4834	4815	6028	4620	5916	94
+       98	5454	4552	2000	415	*	*	6070	1099	0	
+
+G 95   4494	*	*	*	6001	491	4616	*	4193	*	*	3889	*	*	4460	5637	*	*	*	*	95
+       0	*	*	0	*	1510	624	6053	1031	1198	
+
+L 96   5250	*	*	*	5657	*	*	*	6016	418	6811	6503	*	4367	*	6548	*	*	*	3172	96
+       0	*	*	*	*	832	1190	6063	0	1108	
+
+P 97   *	*	5977	*	*	*	5665	*	2318	*	*	*	526	*	5032	5348	6137	*	*	*	97
+       0	*	*	1585	585	*	0	6059	1013	1013	
+
+V 98   5014	3472	*	*	*	*	*	5371	*	3818	5348	6137	*	*	*	4913	4500	583	*	*	98
+       55	*	4728	*	*	0	*	6059	0	1013	
+
+R 99   *	6018	*	6303	*	*	3473	*	4470	*	*	4730	*	*	354	5892	*	*	*	*	99
+       0	*	*	*	*	0	*	5986	0	1180	
+
+G 100  *	5644	*	*	*	153	*	*	5172	*	*	5698	*	*	*	4888	*	*	*	*	100
+       115	5414	4236	3170	170	*	*	6062	1099	0	
+
+Q 101  5984	*	5307	*	*	*	*	*	*	*	*	*	*	86	5887	*	*	*	*	*	101
+       0	*	*	*	*	1285	762	6011	0	1243	
+
+R 102  *	6526	*	*	*	5322	4326	*	4449	5615	*	5097	*	5992	346	5913	*	*	*	*	102
+       0	*	*	*	*	*	0	6058	0	1119	
+
+T 103  *	*	*	*	*	6462	*	*	*	*	*	5928	*	*	*	5293	136	6422	*	5322	103
+       0	*	*	*	*	*	0	6058	0	1119	
+
+R 104  *	*	*	*	*	*	1973	7080	1755	*	5582	*	*	5779	1628	6831	5264	6706	4857	*	104
+       0	*	*	*	*	*	0	6035	0	1119	
+
+T 105  *	*	*	*	*	5109	*	*	5798	5264	*	3831	*	*	*	1561	949	*	*	*	105
+       17	6412	*	2322	322	*	0	6035	1000	1119	
+
+N 106  *	*	*	*	*	*	4570	*	*	*	*	470	*	4256	*	5798	2596	*	*	*	106
+       0	*	*	*	*	*	0	6035	0	1119	
+
+A 107  908	6790	*	*	5069	1729	4895	*	*	*	*	4612	*	*	6821	5885	6097	6417	*	*	107
+       53	*	4780	*	*	*	0	6035	0	1119	
+
+R 108  6074	*	*	*	*	6370	5569	5340	1666	*	6667	4917	*	5086	1058	5093	*	*	5815	6327	108
+       57	6370	5229	2675	246	1086	918	5971	1204	1318	
+
+T 109  *	*	*	*	6634	5140	5459	4725	4597	*	*	5539	6413	*	4923	3488	565	5137	*	*	109
+       0	*	*	*	*	817	1210	5955	0	1293	
+
+R 110  1529	3378	*	6141	*	3399	*	4149	4995	5298	*	*	6013	4612	2471	5034	5767	4334	*	*	110
+       0	*	*	*	*	0	*	5867	0	1094	
+
+K 111  5283	5897	*	*	*	*	*	*	1012	*	*	6063	*	5974	1437	4777	*	*	*	5319	111
+       281	5065	2768	2042	401	*	*	5644	1068	0	
+
+G 112  *	*	5185	*	*	2035	*	5651	1372	4177	*	5447	*	*	2441	4540	*	*	*	5891	112
+       590	1750	4698	2857	214	1055	947	5306	1777	1528	
+
+P 113  5462	*	*	5203	4453	5033	5436	4000	3119	2355	5564	5538	3231	3421	3223	5629	5645	5662	*	3874	113
+       36	5333	*	1000	1000	*	0	4985	1000	1645	
+
+R 114  3540	*	*	5460	*	5394	*	*	3192	2945	5302	2839	*	*	2959	3467	2892	3193	*	*	114
+       46	5008	*	3561	128	0	*	4792	1175	1645	
+
+K 115  5087	*	*	4387	*	*	5272	4744	1379	4596	*	3813	5617	*	3078	4033	*	2619	*	*	115
+       45	5016	*	0	*	*	*	5036	1025	0	
+
+T 116  3388	*	4974	5188	3112	2801	*	3759	3451	2876	*	5556	*	5324	3847	4550	3443	4866	*	*	116
+       80	5544	4946	1535	611	*	*	4985	1088	0	
+
+V 117  3756	*	*	5517	5257	*	4415	2817	2906	4431	*	4228	4734	5595	4340	*	4318	1745	*	*	117
+       0	*	*	*	*	*	0	4947	0	1034	
+
+A 118  3052	*	4023	5112	*	4286	*	3322	4007	3677	*	4144	*	*	2872	2484	5119	3370	*	*	118
+       0	*	*	*	*	*	0	4839	0	1034	
+
+G 119  4448	*	*	*	*	2996	*	5200	1759	*	*	3746	*	3279	2536	3941	5027	5044	*	5050	119
+       280	2841	4764	857	1158	0	*	4811	1190	1034	
+
+K 120  5106	*	4694	4641	*	4689	*	*	1324	3845	*	4520	*	5205	2000	4832	*	5119	*	*	120
+       0	*	*	*	*	0	*	4537	0	1009	
+
+K 121  5080	*	*	*	*	4858	4297	4719	1082	4813	*	*	*	4608	2372	4721	3897	*	*	*	121
+       177	3112	*	0	*	*	*	4563	1093	0	
+
+K 122  *	*	4599	*	*	3387	4560	4490	1896	4449	*	3492	4127	4215	3008	4707	*	4420	*	4253	122
+       255	3669	3580	3907	100	*	*	4237	1000	0	
+
+A 123  3401	*	*	3092	*	*	*	3120	*	2971	*	3020	*	2186	*	*	*	2305	*	*	123
+       1127	883	*	1433	667	0	*	3087	1159	1002	
+
+P 124  *	*	*	*	*	*	*	*	*	*	1006	*	1989	*	*	2000	*	*	*	*	124
+       0	*	*	*	*	*	*	1888	0	0	
+
+R 125  *	*	*	*	*	*	*	*	419	*	*	*	*	*	1989	*	*	*	*	*	125
+       0	*	*	*	*	*	*	1888	0	0	
+
+K 126  *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	126
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  e0ba85cb42b528cdde934e6e751de9b2
+FAM   
+FILE  e0ba85cb42b528cdde934e6e751de9b2
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:02:24 2013
+LENG  138 match states, 138 columns in multiple alignment
+FILT  249 out of 1276 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.4 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCEEEEEEEHHHCCCCCCCCCCCCCEEECCEEEEEECCCCCHHHHHHHHHHCCCEEEEECCHHHHHHHHHHCCCEEEEEEECCCCCCEEECCCCCCCCCC
+CCCCCCCCCCEEEEECCCCEEECCCCCCEEEEEEEECC
+>ss_conf PSIPRED confidence values
+9513545001101676789999998997999999977753999999999974998946579999999997245789877854889976977998046566
+57899999886999789828865788876748987459
+>Consensus
+xxxlxxxxxxxxxxxxxxxxCpxxwxxxxxxCyxxxxxxxxwxxAxxxCxxxgxxLaxixxxxexxxixxxxxxxWiGlxxxxxxxxwxwxdgxxxxxxx
+wxxxxpxxxxCxxxxxxxxwxxxxCxxxxxxICexxxv
+>e0ba85cb42b528cdde934e6e751de9b2
+MNSLFNQEVQIPLTESYCGPCPKNWICYKNNCYQFFDESKNWYESQASCMSQNASLLKVYSKEDQDLLKLVKSYHWMGLVHIPTNGSWQWEDGSILSPNL
+LTIIEMQKGDCALYASSFKGYIENCSTPNTYICMQRTV
+>gi|260832614|ref|XP_002611252.1| hypothetical protein BRAFLDRAFT_119658 [Branchiostoma floridae]gi|229296623|gb|EEN67262.1| hypothetical protein BRAFLDRAFT_119658 [Branchiostoma floridae]
+------------------PyKCDQ--------CdYSATQKGNLDQHRTNPTGE-------------KTYLCGYRtaGRSYLSLHMRTHTGEKPFkCDECD
+YSvAKKCEESHKAkhtdAKRYKCvecgYRTAymshlSVHMRTHTVWPF---------
+>gi|149637003|ref|XP_001508495.1| PREDICTED: similar to polycystic kidney disease 1-like 2 [Ornithorhynchus anatinus]
+------------------SPRPRARRDRGPPRRPLLVTGMTFAmlPGNATRGGPYGRSAVFRRPRAElrstpgPCRERpAGprAAACPGLSARirgsrgS
+VARPGpgvcggtTWLDESNTSYSNW---PEdpSPAArCGYLDqqSGYRWVaTENCSQELGFICEFE--
+>gi|341894061|gb|EGT49996.1| hypothetical protein CAEBREN_20633 [Caenorhabditis brenneri]
+VAARFDSSSSESCEdshshshgshshehgggggRGANRGCERGWRRFNrpsgGWCIKVAQGQFSQAQAESKCQVEGGTLSGLQDTNEISYITSAalrlfp
+erTGSLWVGAKRTpacssspisascNAMNSFTWTDGSTSGTAgfQWNKNQPDNahsktQQCVVLLASSTqvvtdsWtwntnqlDDVRCVNPggsqqrivR
+GYVCGKRA-
+>gi|268554055|ref|XP_002635015.1| Hypothetical protein CBG13558 [Caenorhabditis briggsae]gi|187028583|emb|CAP32339.1| CBR-CLEC-172 protein [Caenorhabditis briggsae AF16]
+ISQLILVSLMISLATSK--SCLAPASYILGSCFTFINTPMSFWEANSYCEYHSnnawSYLALVESPEQSIWLAKSAtmftsENYWIGVYRPSVIDNFRTI
+LNRYLTFQYFANINPSMNYAVGRKSDGKWETRPEEERFPFVCSYK--
+>gi|241594910|ref|XP_002404410.1| attractin, putative [Ixodes scapularis]gi|215500403|gb|EEC09897.1| attractin, putative [Ixodes scapularis]
+--------------------VGQEGREPAQACQETGLRTGRWMASKRRCLrgRLVNGTQGLVDARENQTDvDQCQQSEssncdkLHNCHACHTEF-HCgW
+QNDHRCYtfVRESAPGMIpGfyLGVSEWL------------------------
+>gi|341874183|gb|EGT30118.1| CBN-CLEC-265 protein [Caenorhabditis brenneri]
+--SAFLLIATVFHSSLAA-SCPTGTKLYNSKCYAALGMDMTRDKALAYCKKTygsYAVLATPLTYAENNFVTEQVQlhanwHTWLEF---VADGTYIVgD
+DGKPPVYTNFAVGEPfsvSVGYCITIGMNGYWYAQPCADSHSALCEFALY
+>gi|260816259|ref|XP_002602889.1| hypothetical protein BRAFLDRAFT_98109 [Branchiostoma floridae]gi|229288202|gb|EEN58901.1| hypothetical protein BRAFLDRAFT_98109 [Branchiostoma floridae]
+----------------------AGRDRR--------ATMSRLVSAGIACWLL---IVTGWGYSFFPMRYLLVlklssgAKLL-----LL--EVTVWP---
+-VVF--FLKNKSVIlGRSHHL------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	4920	*	3574	*	*	2018	3765	2800	1751	*	*	*	*	*	*	3036	*	*	1
+       0	*	*	*	*	*	*	6945	0	0	
+
+N 2    5043	*	4636	3143	*	4968	*	5166	5208	5233	*	2816	*	3036	3468	2459	2916	4875	*	*	2
+       0	*	*	*	*	*	*	7401	0	0	
+
+S 3    2913	*	4002	5765	*	*	3432	*	3587	4474	*	3595	*	4356	5331	1450	4534	*	*	*	3
+       0	*	*	*	*	*	*	7808	0	0	
+
+L 4    6101	6020	*	5747	*	*	*	3155	5983	1056	4280	*	5023	*	5853	4497	4957	2705	*	6260	4
+       0	*	*	*	*	*	*	8295	0	0	
+
+F 5    4160	5363	*	5245	1357	*	5066	3525	*	2055	*	*	*	*	*	5797	5156	4681	5120	4971	5
+       0	*	*	*	*	*	*	8631	0	0	
+
+N 6    5411	6429	6328	6465	4528	*	*	3955	5704	1851	*	2934	5446	4775	4552	2585	4797	3467	*	6508	6
+       16	6508	*	1000	1000	*	*	8732	1009	0	
+
+Q 7    3877	2118	5639	4653	4317	6373	6608	3979	*	2567	6581	*	*	3333	3963	4191	4700	3835	*	*	7
+       0	*	*	*	*	*	*	8833	0	0	
+
+E 8    3823	6606	6846	2209	5434	6672	6823	3986	6482	3137	6644	4122	3671	4653	4966	4060	4619	2776	*	*	8
+       0	*	*	*	*	*	*	8823	0	0	
+
+V 9    3759	4407	6883	5029	4521	6928	*	3816	5684	1566	6739	5621	4341	5823	6666	4454	3680	3057	*	6711	9
+       0	*	*	*	*	*	*	8841	0	0	
+
+Q 10   3381	5555	5875	5950	6910	*	6788	3962	5764	2499	5337	4051	2776	5122	6391	2778	3339	4397	*	6817	10
+       11	*	6990	*	*	*	*	8844	0	0	
+
+I 11   3855	6781	*	5562	4456	5336	6719	2980	5254	2360	5171	4902	4100	5822	4022	4724	4139	2557	6675	*	11
+       0	*	*	*	*	0	*	8875	0	1000	
+
+P 12   2967	4049	6777	5956	5289	5857	6801	5737	4030	3713	6941	4852	4683	6669	4838	1927	3294	3733	*	6399	12
+       31	5850	7901	937	1066	*	*	8929	1072	0	
+
+L 13   4929	6615	6599	3712	4338	5305	5413	4032	6755	2050	5172	5225	4769	4095	5005	3245	3570	3738	*	6083	13
+       33	6781	6197	3700	115	0	*	8885	1006	1000	
+
+T 14   2924	5843	6898	4873	5794	4546	*	3350	4885	3683	*	3695	3658	5238	4315	2487	3984	4288	*	6403	14
+       26	5811	*	4151	84	*	0	8917	1117	1062	
+
+E 15   3221	6797	3590	3262	*	2321	5604	4119	5992	4420	*	7115	4321	3538	4966	3987	4182	4207	*	6955	15
+       75	6844	4565	0	*	974	1026	8913	1000	1062	
+
+S 16   3041	*	4158	4931	5897	3067	4036	4131	4883	6077	6920	5099	3830	6726	6645	2314	3220	4283	*	*	16
+       135	*	3482	*	*	*	0	8905	0	1404	
+
+Y 17   3328	*	4514	3284	*	4118	4856	5774	3213	3759	7192	3981	5047	3700	3944	5111	3879	3640	*	4557	17
+       134	5076	4089	1553	601	3035	188	8905	1287	2225	
+
+C 18   3112	1817	3926	4896	6573	3670	5735	6562	4952	5875	*	4115	5208	4886	5784	3329	5037	4495	*	5483	18
+       185	4594	3659	2231	345	1515	621	8873	1285	2561	
+
+G 19   4143	6736	4279	4058	7014	2858	5592	*	3889	3967	*	4209	3103	4284	3923	2845	3978	6571	*	5392	19
+       151	3438	7113	608	1540	580	1594	8948	2029	2664	
+
+P 20   4647	6285	4311	4998	3920	3423	4613	5285	3900	4424	7027	4496	2881	4824	6299	2838	3396	4359	*	7176	20
+       55	5393	6189	2409	301	497	1778	9110	1262	1602	
+
+C 21   6423	198	7559	7587	7169	7312	*	*	*	7638	*	*	5883	6172	5835	*	6518	5128	*	*	21
+       8	7426	*	0	*	949	1053	9339	1017	1331	
+
+P 22   4962	*	3635	4165	6016	4576	6085	7674	5736	4492	7564	5425	1020	5496	4902	4372	4301	7383	*	6740	22
+       6	7824	*	0	*	*	0	9354	1000	1118	
+
+K 23   4504	7840	3014	3447	6409	4096	5563	5125	3285	6681	7779	3758	3205	3771	4571	3207	4323	5522	*	5534	23
+       61	5018	6531	0	*	*	0	9379	1421	1118	
+
+N 24   4754	7770	3305	4423	7789	1265	4758	*	4764	6083	*	3117	4279	6750	5175	4163	5207	7745	7710	7526	24
+       76	8051	4391	1260	780	978	1022	9306	1114	1310	
+
+W 25   6147	*	5217	4766	3072	4614	*	7726	*	6856	7524	5681	*	7758	5968	5447	5037	6002	976	2983	25
+       11	7103	*	0	*	1779	497	9473	1048	1951	
+
+I 26   5234	7122	5237	4051	3838	7739	4245	2990	4268	3124	5777	5238	6574	5198	4033	4712	2945	2947	7555	6263	26
+       94	4100	7620	2332	319	3267	158	9487	1927	1662	
+
+C 27   4511	5468	5652	3530	5467	4828	6229	5058	4587	3332	5722	6136	3192	3425	3989	3263	5024	5502	5625	3197	27
+       41	5172	*	1952	431	698	1382	9488	1473	1657	
+
+Y 28   6955	*	5546	6630	2220	5561	3313	3248	6219	3486	7614	5465	5858	*	4464	5632	5317	3880	6135	2335	28
+       29	6152	7365	1449	658	1993	417	9467	1141	1303	
+
+K 29   4450	*	3729	3897	6107	2337	4893	8121	4009	5185	5677	2671	6032	3506	4053	3811	4330	7996	7055	*	29
+       173	3211	7577	1860	465	*	0	9463	2749	1345	
+
+N 30   7729	6419	2650	4434	6790	1506	5295	6899	4134	7882	8202	3053	6372	4985	4340	4156	5093	6631	*	6713	30
+       33	5758	8001	966	1035	*	0	9523	1245	1469	
+
+N 31   4447	7751	8192	4736	4940	6209	4261	4122	2854	4617	7714	3425	5914	5084	3424	2748	3691	5468	6433	3712	31
+       72	4356	*	1956	430	658	1448	9497	2015	1550	
+
+C 32   5485	343	7816	4746	7150	*	6994	7299	*	8082	*	7079	*	7803	5388	5857	6256	6116	6796	4912	32
+       14	6716	*	0	*	1305	748	9592	1112	1153	
+
+Y 33   *	*	*	*	2653	*	5322	4914	7335	3727	7800	*	*	6352	5920	7456	7816	4997	7029	692	33
+       0	*	*	*	*	*	0	9591	0	1057	
+
+Q 34   4854	6011	*	5049	3732	6544	4777	3921	2601	3162	6264	5597	7041	3671	3425	4413	4601	5291	5226	3303	34
+       7	7666	*	0	*	*	0	9589	1045	1057	
+
+F 35   3562	*	*	7616	2133	8121	7458	3134	5308	2259	5483	6222	6225	5738	5465	5879	5073	2943	*	4116	35
+       53	5027	7624	220	2820	1066	937	9608	1512	1186	
+
+F 36   4906	8069	5013	5057	2695	5115	4464	4039	6334	4772	7808	4079	5245	5083	7542	2267	4457	3170	*	3752	36
+       12	6955	*	1799	489	953	1048	9602	1065	1189	
+
+D 37   3967	*	4181	3846	5068	4274	4986	5305	3747	4426	5850	3241	3885	4314	4295	3612	3002	4489	*	6809	37
+       53	4795	*	1451	657	0	*	9669	1644	1048	
+
+E 38   5077	*	2707	2917	5301	4245	6288	5091	3430	5917	6521	4114	5311	3502	4785	3970	3284	4455	*	5329	38
+       314	2355	*	1615	570	*	*	9673	4181	0	
+
+S 39   3476	*	6906	4047	6689	4248	5744	4922	2660	4302	5290	4760	3142	3735	4373	3653	3530	4977	6879	6270	39
+       0	*	*	*	*	*	*	9673	0	0	
+
+K 40   3320	7309	6286	4215	5375	4480	5787	6037	3076	2363	3245	6171	6972	4992	3818	3968	4760	4121	*	5396	40
+       12	8223	7738	1000	1000	*	*	9673	1002	0	
+
+N 41   5071	6727	3862	5066	7786	5962	7004	7484	6402	6146	8068	2398	4315	6143	4452	2179	1998	6184	8032	6651	41
+       0	*	*	*	*	0	*	9663	0	1031	
+
+W 42   5748	*	6680	6614	2633	5892	4072	6243	7995	5365	7949	7895	*	6155	4592	6856	*	6029	1159	2767	42
+       13	6827	*	1019	981	*	*	9673	1075	0	
+
+Y 43   4021	*	2835	3192	4131	6905	5287	6099	5399	3869	5531	4433	4600	3884	5058	3098	3439	5093	5762	5190	43
+       16	7094	8069	1000	1000	*	*	9673	1055	0	
+
+E 44   3485	*	2285	2139	*	3675	5900	6279	3948	4897	6279	4339	6429	4150	5802	4529	4342	6233	6733	6850	44
+       34	5429	*	213	2864	0	*	9670	1463	1001	
+
+S 45   371	5893	*	7795	6520	4867	7572	7280	*	7332	6014	*	7327	7725	6689	3613	6986	7035	*	6823	45
+       0	*	*	*	*	0	*	9625	0	1045	
+
+Q 46   4151	*	4802	3174	5437	6390	5890	5653	3057	4320	6195	4291	6849	2793	2755	4261	5022	3690	7440	5435	46
+       0	*	*	*	*	*	*	9673	0	0	
+
+A 47   3290	7170	3862	3343	4866	5719	6431	4740	3988	5294	5502	3303	8477	3302	3254	3356	4133	5372	*	5540	47
+       13	6824	*	678	1415	*	*	9673	1131	0	
+
+S 48   3391	7332	4769	3969	3201	6109	5219	3581	4299	3840	5804	5541	6164	5210	4067	4448	3976	4652	6228	2825	48
+       9	7337	*	1585	585	*	0	9625	1028	1045	
+
+C 49   8237	88	*	*	*	6730	*	*	*	*	*	*	*	*	6202	6823	5975	*	*	6944	49
+       5	8233	*	0	*	0	*	9625	1123	1045	
+
+M 50   3539	*	5505	2827	7953	4336	4349	4745	3283	3572	5799	4189	*	3254	3124	3997	5112	5021	6697	*	50
+       23	6394	7934	1000	1000	*	*	9673	1161	0	
+
+S 51   3093	*	3316	3686	6066	4092	6359	*	3537	5481	6665	3809	6840	3883	3903	2581	4038	5478	8073	4974	51
+       50	5376	6691	1233	799	*	0	9677	1395	1002	
+
+Q 52   4946	*	4839	3441	4404	6250	3451	4526	3741	2570	4209	5009	6528	3399	3848	5444	6332	5213	5735	4039	52
+       210	2943	7546	1037	964	*	0	9563	3262	1197	
+
+N 53   6306	6940	4099	6008	7510	1093	5102	7592	4934	7956	*	2584	6352	4620	4688	4174	*	6353	*	4883	53
+       66	4491	*	2200	354	2295	329	9542	1837	1335	
+
+A 54   1727	7968	6733	7972	8125	1461	*	*	5269	5378	4330	6371	*	7448	*	2602	6135	7016	*	6689	54
+       11	7034	*	3235	162	*	0	9537	1090	1251	
+
+S 55   6104	7572	3261	3991	5398	5087	2807	6885	3685	8065	7084	4364	6576	4306	3384	3680	2924	4995	6862	3952	55
+       9	7347	*	1585	585	1254	784	9537	1028	1251	
+
+L 56   7502	*	*	*	7502	*	7591	4516	*	255	5393	*	6325	6813	*	6525	6399	4876	*	*	56
+       16	6538	*	3020	190	*	0	9557	1112	1112	
+
+L 57   1253	*	*	*	4908	6055	7349	4485	*	3110	5663	6676	5278	6399	*	6008	5302	1983	*	7834	57
+       0	*	*	*	*	*	0	9557	0	1112	
+
+K 58   4804	6025	4708	4480	5733	4746	7049	3687	4335	4814	4959	4213	8012	5935	5017	2398	2736	2813	7839	5991	58
+       29	5638	*	2261	338	*	0	9557	1336	1112	
+
+V 59   4606	*	7789	5433	3644	6606	7895	1427	*	2817	5732	*	3311	*	*	6507	5990	2580	*	6735	59
+       35	6349	6385	3349	149	*	0	9557	1140	1112	
+
+Y 60   4796	7629	2737	3287	5965	7198	3775	5755	3528	4290	7018	3928	5126	3861	3821	4027	3387	5876	6028	5416	60
+       0	*	*	0	*	765	1280	9553	1045	1386	
+
+S 61   5830	8044	2331	5422	6676	5337	7929	*	5115	8635	6978	2759	7349	*	5088	1750	2498	*	*	5574	61
+       7	7761	*	0	*	*	0	9557	1004	1112	
+
+K 62   3032	6316	3846	3001	5690	5069	5721	5390	3786	4090	6112	5001	3759	3255	4525	3917	4680	4635	*	4864	62
+       11	8119	7851	0	*	*	0	9557	1039	1112	
+
+E 63   3240	*	3120	2106	5271	4918	5310	5105	5086	6060	5420	4461	5673	3908	4267	3855	3998	4729	*	6276	63
+       6	*	8022	0	*	1762	504	9558	1000	1193	
+
+D 64   5356	*	3406	1260	6117	7868	7024	4839	3716	4404	5798	5924	*	4066	5609	5847	3707	3827	*	*	64
+       51	6052	5672	1241	794	504	1763	9558	1231	1193	
+
+Q 65   3731	*	4780	4657	4389	5543	4395	5532	4791	3126	4882	2449	6019	2730	3967	4611	5860	5819	6958	5131	65
+       30	7092	6235	2585	263	*	0	9612	1055	1465	
+
+D 66   3771	6645	2567	3272	6217	5850	5674	5038	4624	4263	5609	2969	6229	3758	3841	3938	4137	4857	*	6777	66
+       7	7613	*	672	1425	524	1715	9580	1134	1700	
+
+L 67   3497	6302	5803	5028	1406	6498	4979	3741	7679	3377	5057	*	*	6230	5483	5206	4615	4732	6000	3895	67
+       27	5732	*	1603	576	1688	536	9662	1276	1161	
+
+L 68   4747	7483	5870	*	5924	*	*	1847	7791	1918	5232	5113	*	8005	5357	6271	5801	1978	*	6980	68
+       94	4317	6284	540	1680	*	0	9662	2012	1085	
+
+K 69   3132	6680	4673	4287	6460	5611	5059	5456	3211	4069	6162	4683	6831	4017	3033	3426	3585	4581	5803	4269	69
+       57	4679	*	1354	716	1513	622	9658	1815	1368	
+
+L 70   4451	7937	3768	3776	5649	4166	6309	6038	3202	4270	6583	3586	7062	3577	3445	2543	4790	5115	7881	5494	70
+       121	3696	8213	1992	418	504	1762	9658	2496	1212	
+
+V 71   4841	6397	*	6510	3832	6906	4911	2809	4326	1928	4714	4280	*	5199	6446	5346	4937	3936	6632	3129	71
+       482	1837	8005	2196	355	*	0	9612	5144	1196	
+
+K 72   3298	*	5805	4951	5234	3990	6346	3836	3540	3428	5304	3896	5311	4209	4305	3368	3988	4277	*	3975	72
+       929	1075	*	2708	240	1489	636	9612	7180	1276	
+
+S 73   3348	*	3489	3825	5575	3049	6053	7134	3675	5257	*	3547	5654	3691	4066	3341	3584	4951	*	5889	73
+       62	4576	*	1652	553	*	0	9659	1715	1149	
+
+Y 74   4001	6007	3425	3333	4231	4258	4685	6222	4095	5079	8169	3990	4277	4998	3850	3048	3948	6259	6293	4221	74
+       122	3683	8155	2654	250	*	0	9659	2352	1149	
+
+H 75   4095	7797	7551	6372	2368	6403	6077	3389	*	3721	5731	6020	6046	7871	7052	5474	4456	2911	5252	2061	75
+       78	4256	*	2755	231	419	1989	9609	1927	1239	
+
+W 76   7313	6534	7559	*	4511	6452	5689	7864	*	4235	7910	*	*	8012	6494	7809	7018	*	452	3587	76
+       14	*	6659	*	*	*	0	9672	0	1000	
+
+M 77   *	7901	7775	*	4670	*	6341	1169	7976	2429	4771	6422	7046	7616	*	7932	3100	3078	*	7557	77
+       18	6328	*	3536	130	*	0	9602	1154	1238	
+
+G 78   4843	*	4886	6900	*	338	*	7813	*	*	*	5449	*	*	5516	4033	*	6662	7063	7819	78
+       5	8093	*	1000	1000	1690	535	9602	1000	1238	
+
+L 79   3012	4874	8181	6939	4874	2891	*	4252	7775	1155	4333	6859	7305	*	8088	*	5134	4804	*	5445	79
+       217	4305	3486	1700	531	*	0	9604	1941	1139	
+
+V 80   5783	8025	5005	5274	5275	*	3462	5903	3296	5923	6392	2984	*	4588	2864	2763	2906	5641	7954	4399	80
+       127	5112	4178	1931	439	845	1174	9627	1468	2796	
+
+H 81   3925	6253	2201	4539	4887	4612	6065	8119	3960	4730	5743	3828	7478	4416	2647	5951	5540	5130	7640	3427	81
+       131	6352	3745	755	1295	973	1028	9583	1158	2723	
+
+I 82   5555	4986	4094	3702	6636	5065	6559	3953	3941	3061	5809	3558	4286	4715	2957	3768	4344	4252	6417	7933	82
+       146	4609	4173	3023	189	1045	956	9595	1708	3013	
+
+P 83   3772	6601	3654	3292	7655	3353	5634	5023	3627	4746	8125	3887	4334	5712	4733	2969	3750	4227	6847	5541	83
+       36	6188	6523	906	1100	384	2096	9591	1165	2978	
+
+T 84   3918	*	4020	4066	5902	3542	5267	5331	3771	4401	7785	3710	5147	4109	4964	3025	3165	3583	6223	6920	84
+       37	5558	8002	2968	197	3132	175	9600	1331	1651	
+
+N 85   4513	*	3318	2466	6586	3104	5802	5476	4713	6251	6853	2944	4329	4417	5881	3615	3950	5536	6024	5553	85
+       83	4403	6847	2155	367	1260	780	9589	2028	1734	
+
+G 86   4564	8075	4100	5647	5130	1509	5104	*	3834	5984	5722	3552	6000	4742	4112	3431	4326	6004	*	7016	86
+       65	6261	5018	2163	364	2038	403	9608	1243	1577	
+
+S 87   4875	*	4216	3329	7435	4275	4608	4447	3941	4445	6681	3294	4179	4242	3995	3674	3419	3600	7234	6171	87
+       21	8188	6519	1000	1000	2425	297	9517	1000	2166	
+
+W 88   5565	5341	6906	*	2293	5950	5688	6275	6638	4060	7718	8148	5593	7985	7554	6657	7432	7891	1167	3059	88
+       26	6210	7939	2380	308	344	2238	9583	1273	2127	
+
+Q 89   4275	6342	6750	3637	5142	7840	5108	4869	3043	4188	4919	7904	6124	3586	3445	4534	3609	2966	6907	3536	89
+       48	4931	*	559	1638	*	0	9666	1601	1275	
+
+W 90   7100	6282	5607	*	4329	6325	7812	7689	6699	6395	*	4391	*	*	5482	4799	4443	5496	642	4285	90
+       160	3255	*	579	1597	*	0	9619	2824	1400	
+
+E 91   3748	6035	3661	4044	5300	4868	7858	3146	*	3661	5237	6169	4632	4218	7033	2665	4294	2685	7947	7808	91
+       28	6169	7517	1764	503	562	1633	9619	1327	1400	
+
+D 92   5964	*	1108	4695	6471	4823	6028	6775	6122	6330	*	2515	6099	6047	8019	3956	3711	6152	7531	6074	92
+       87	4330	6878	1156	859	*	0	9604	2025	1214	
+
+G 93   6213	8281	4359	4179	8174	821	*	*	5963	5769	6251	2682	7013	7318	5149	4668	5605	*	7853	*	93
+       60	4752	8182	707	1368	977	1024	9590	1693	1487	
+
+S 94   4423	6679	4667	3709	5642	4579	5580	5431	3789	5051	5622	5994	5611	4577	4251	2155	2369	4972	*	5759	94
+       17	*	6433	*	*	*	0	9593	0	1264	
+
+I 95   4289	*	4461	3349	6404	5488	5891	5581	3529	4757	6521	4367	2223	4897	3857	3477	4016	4052	*	5519	95
+       39	5233	*	1243	792	833	1188	9578	1553	1564	
+
+L 96   4412	6400	7863	5611	3577	5998	*	3514	5849	2207	4440	5734	4170	7015	7717	5041	4223	2587	4728	3748	96
+       93	4006	*	1360	712	*	0	9607	2186	1206	
+
+S 97   5203	*	3067	4365	6383	3610	6132	4557	5982	5673	5960	2848	4634	4854	5412	2816	2939	4116	6923	5190	97
+       548	1738	5961	2497	281	637	1486	9606	5360	1332	
+
+P 98   5125	7723	5291	5894	2605	6019	7753	5264	5820	4953	7511	4725	3233	6891	8001	3987	5002	5062	5532	1490	98
+       75	4853	5972	1338	726	2252	340	9619	1744	1440	
+
+N 99   5151	6934	4113	4417	4371	4288	5195	4854	4129	3922	7679	3543	4739	3990	4223	2734	2840	5196	6771	8163	99
+       19	6251	*	782	1257	1699	531	9589	1210	1782	
+
+L 100  4921	*	3916	4593	4219	4325	6565	7449	4152	3911	5833	1882	3762	5379	5582	4032	5171	5082	4900	4123	100
+       34	6312	6502	2488	283	2132	374	9596	1162	1523	
+
+L 101  5331	6674	*	7505	2672	7083	5852	5278	7501	4878	6009	*	4803	7780	6182	4940	5696	5456	867	5629	101
+       47	5655	6345	2432	296	*	0	9611	1325	1605	
+
+T 102  2549	7690	3954	3818	5933	3399	4697	5726	3666	4760	8055	3359	4744	5147	4584	3287	4064	6666	7823	5674	102
+       26	5820	*	4192	81	1781	496	9584	1243	1826	
+
+I 103  4030	6592	4049	4365	6760	4544	6215	4201	4352	4695	7046	4094	2400	5434	4294	2938	3815	4639	6597	5046	103
+       74	6753	4621	699	1381	3560	128	9587	1096	1570	
+
+I 104  5503	*	4453	5665	6141	1551	6384	4882	4595	4621	6757	3209	4530	4867	5971	3518	3877	4598	8004	5804	104
+       81	4643	6122	1899	450	1375	702	9575	1678	2244	
+
+E 105  4833	7678	4485	1955	5024	4842	5672	6382	4863	6711	5844	3748	3641	2842	4864	3883	5204	5834	6938	4323	105
+       133	4605	4404	475	1834	1441	663	9587	1696	2046	
+
+M 106  5013	7743	4442	4251	5622	6137	7126	5189	5178	4417	5487	5800	1071	6258	5864	3681	4211	5126	7708	6559	106
+       779	1287	7031	1708	527	2301	327	9543	6332	2576	
+
+Q 107  4260	*	3642	4018	5636	2417	6209	6570	3833	6276	8045	3099	4373	4041	4610	3054	4122	5470	7953	5905	107
+       148	3361	*	1729	518	1071	932	9540	2775	2459	
+
+K 108  4374	*	3275	3828	7978	3507	6013	6672	4024	4865	7725	2382	3842	5035	4633	2875	3933	6376	*	6152	108
+       269	2629	6851	2344	316	2185	358	9572	3692	1758	
+
+G 109  5171	*	3840	2281	5944	2075	6368	*	4438	5825	6692	3757	5565	3507	3699	4519	5701	6431	*	5437	109
+       53	4940	8244	1598	578	1796	490	9593	1720	1873	
+
+D 110  4242	*	2659	4266	4537	4186	4148	6141	3879	5323	*	2722	6409	4946	3301	3703	4920	5117	*	4667	110
+       56	4928	7673	1340	725	762	1284	9599	1586	1662	
+
+C 111  6365	179	*	*	6616	7724	*	*	*	*	*	6775	*	*	7843	5502	7794	5954	*	4893	111
+       14	*	6740	0	*	2034	404	9604	1045	1438	
+
+A 112  2012	*	7158	6374	7023	3433	7540	3463	6652	2861	4743	*	6377	7585	*	5156	5129	1917	*	6261	112
+       106	3915	7684	1072	932	1714	524	9589	2153	1482	
+
+L 113  2789	5287	7781	3814	3957	5030	5585	4439	6832	4032	4762	8108	*	4549	5384	3510	3981	2879	5999	3152	113
+       42	5273	8402	1726	519	*	0	9604	1527	1438	
+
+Y 114  4418	7487	8134	7469	3950	*	7803	2767	6994	1685	2731	7747	*	6941	6656	5130	5545	3615	7665	3416	114
+       147	3364	*	2254	339	2774	228	9597	2675	1490	
+
+A 115  4021	*	3164	4095	5166	3176	4582	5878	3362	5110	5781	3851	6857	5201	3647	3189	4847	4563	5637	4839	115
+       304	2537	5837	1957	430	1436	665	9488	3927	1408	
+
+S 116  3870	8010	4747	4559	5549	3495	5467	5671	3646	5012	5999	3731	3908	5072	4511	2405	3633	4166	7811	5366	116
+       99	4583	5327	985	1015	1632	562	9476	1773	1632	
+
+S 117  4186	*	4082	3963	6727	2955	5844	5604	3918	5424	8057	2616	4360	4858	3950	2919	3865	5227	7545	6903	117
+       232	3810	3697	1965	427	772	1270	9468	2181	1851	
+
+F 118  4706	*	4496	5637	4206	1885	5799	6312	4969	4414	6995	4092	6825	5652	5616	3078	3677	6605	4888	3227	118
+       302	2406	*	1787	494	275	2527	9394	3829	2588	
+
+K 119  5041	7664	5717	4044	4827	3072	5384	6343	2527	3935	5317	4521	5877	3665	3284	4139	3828	5065	7067	5374	119
+       67	4452	*	2633	254	*	0	9488	1750	1229	
+
+G 120  6996	7707	*	7746	3990	4995	6084	4227	8141	3522	5381	*	7731	*	*	5971	6937	4673	755	4475	120
+       23	6010	*	2194	356	*	0	9488	1288	1229	
+
+Y 121  5015	*	3973	4648	4499	4893	5075	4221	4073	4092	4919	2776	*	4569	4120	3676	4629	3725	5047	3590	121
+       163	3279	8107	910	1096	*	0	9488	2764	1229	
+
+I 122  3470	*	1780	5703	6773	5452	6815	6448	5975	4297	5854	4036	3894	5681	5012	3173	3144	4867	6262	6272	122
+       54	4928	7994	789	1248	*	0	9486	1576	1303	
+
+E 123  3435	6776	3897	3487	5807	4396	5110	3564	3947	4235	5615	5184	7052	4486	4172	3759	4147	3116	6217	5031	123
+       18	6868	7963	2322	322	2000	415	9483	1084	1497	
+
+N 124  4505	7548	2702	4914	7062	5002	4109	6530	5201	4633	*	2752	3127	4853	4272	2700	4775	5334	7597	5703	124
+       0	*	*	0	*	2819	220	9484	1000	1426	
+
+C 125  *	160	6746	6168	*	6797	7063	7421	*	*	*	8030	7567	7743	7713	7747	5195	*	*	6812	125
+       66	4617	7919	1390	693	*	0	9486	1734	1355	
+
+S 126  4158	7566	2708	4085	5739	4302	5255	6234	6058	5206	8031	3074	*	6912	4057	2664	2686	5081	*	4570	126
+       16	7108	8031	1001	999	533	1696	9483	1173	1442	
+
+T 127  3771	*	3725	3204	5865	5611	5591	5430	3717	3668	6146	3491	*	3850	4255	3792	3467	3783	6111	4978	127
+       77	4260	*	727	1337	0	*	9491	1856	1145	
+
+P 128  5410	*	4656	3599	5509	5664	5926	5824	3069	3532	6929	4728	3272	3794	3440	3392	3424	4351	6209	6910	128
+       19	6280	*	1919	443	*	*	9506	1213	0	
+
+N 129  4635	6741	5323	6068	3684	6346	4137	4800	3244	2776	4353	3734	*	4356	3043	4254	4493	7117	7068	3828	129
+       48	5445	6704	0	*	*	*	9505	1371	0	
+
+T 130  3793	8050	5888	6012	5617	3084	4702	5745	4797	5418	6837	3190	2453	5227	3300	3321	6278	6552	*	3571	130
+       0	*	*	*	*	0	*	9410	0	1082	
+
+Y 131  4964	5758	*	*	1418	6074	7477	5746	*	5478	*	*	5544	*	6359	3966	5844	4092	4892	1707	131
+       20	6201	*	1476	643	*	*	9433	1147	0	
+
+I 132  4772	*	*	*	4532	*	*	1080	*	3073	5287	*	*	*	*	5946	8013	1850	*	7550	132
+       0	*	*	*	*	*	*	9433	0	0	
+
+C 133  *	31	*	*	*	*	*	6868	*	*	*	*	*	*	7247	7357	*	*	*	*	133
+       0	*	*	*	*	*	*	9433	0	0	
+
+M 134  5671	*	*	1263	7561	5609	7990	*	2873	6806	4498	7163	*	2031	5942	4739	5736	*	*	5638	134
+       12	7633	8261	0	*	*	*	9416	1000	0	
+
+Q 135  5026	*	*	5037	3468	7387	5156	4468	1865	5007	4539	7437	*	3946	2760	4621	4887	3786	*	4175	135
+       19	6288	*	2793	225	0	*	9415	1093	1000	
+
+R 136  4746	*	3658	3445	6468	5718	5318	7262	3006	5584	6973	3587	2201	4851	3257	5439	3767	5855	7034	6047	136
+       0	*	*	*	*	*	*	9303	0	0	
+
+T 137  1505	6755	6817	*	6289	*	6500	2887	5706	2598	4691	*	4103	*	6751	5427	4246	3264	*	*	137
+       0	*	*	*	*	*	*	9055	0	0	
+
+V 138  *	*	*	*	3641	*	*	3003	*	2701	*	*	4690	*	*	*	4627	831	*	*	138
+       0	*	*	0	*	*	*	6875	0	0	
+
+//
+�HHsearch 1.5
+NAME  e130d30836eaf714deba0688836fbaec
+FAM   
+FILE  e130d30836eaf714deba0688836fbaec
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:18:57 2013
+LENG  230 match states, 230 columns in multiple alignment
+FILT  134 out of 1359 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  10.2
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEEECCCCEEEECCCCEEEEEEECCCCCCCCEEEEEEECCCCCCEEEEEEECCCCCEEECCCCCCCEEEECCCCCCEEEEEECCCCCCCCEEEEEEEEC
+CCCCCCEECCCCEEEEEEECCCCCCEEEECCCCCEEECCCEEEEEEEECCCCCCCEEEEECCCCCCCCCCEEEEEECCCCEEEEEEEEEEECCCCCCEEE
+EEEEECCCCEEEEEEECCCCCCCCCCCCCC
+>ss_conf PSIPRED confidence values
+9299488858996799889998961788889789999907999817999994378840205665762567305887617899625731445899999954
+9876401125515877862244575388608753010697489999965767997599988984157732025684599789999999951204798799
+999948998789999906768999698999
+>Consensus
+xxxxxxpxxxxxxxGxxvxLxCxxxxxxxxxxxvxWxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxrxxxxxxxxxxxxxLxIxxxxxxDxgxYxCxvxx
+xxxxxxxxxxxxxxlxvxxxxxxxpxvxxxxxxxxxxxgxxxxlxCxxxxxxPxxxxvxWxxxxxxxxxxxxxxxxxxxxxxxxsxLxixxxxxxxgxyx
+Cxvxxxxxxxxxxxxlxxxxxxxxxxxxxx
+>e130d30836eaf714deba0688836fbaec
+QVQLQQPGAELVKPGASVKLSCKASGYTFTSNWINWVKQRPGQGLEWIGNIYPGSGYTNYNERFKSKATLTVDTSSSTAYMQLSSLTSDDSAVYYCARKH
+YFYDGVVYWGQGTLVTVSAAKTTAPSVYPLAPVCGDTSGSSVTLGCLVKGYFPEPVTLTWNSGSLSSGVHTFPAVLQSDLYTLSSSVTVTSSTWPSQSIT
+CNVAHPASSTKVDKKIEPRGPTIKPCPPCK
+>gi|94732089|emb|CAK03669.1| novel immune-type receptor 5, allele 2 [Danio rerio]
+---LQLHELEQVESEVKKPLYCLVQNQLVRNEHrLYWFSHGSEEsPPGFI--------HIygNSSKSCVGSSESDCLSPTCMYNLPMKRSRSSKMEMHYC
+ALATC---GQALFGNVSKLNPDAVGSPKI-----------------------------------------------------------------------
+----------------------------------
+>gi|168985092|emb|CAQ09233.1| major histocompatibility complex, class I, C [Homo sapiens]
+----------------------------------------------------------------------------------------------------
+-----------------------HPKTHVTHHPVSD---HEASRR-WNLpevgscggAFWrRAEIHVPCaaRGAARAPHPE-------------------
+-----------------------------------------
+>gi|194039786|ref|XP_001927231.1| PREDICTED: butyrophilin subfamily 1 member A1-like [Sus scrofa]
+HFDVIGPPEPIlAVVGEDAELPCRLSPNVSAERmELRWFRKKVSPAVFVR--REGREQAGEQMPEYRGRVtLVEDDIAAGHVAVRIQGVKASDDGEYRCF
+FRQ-----DENYEEAIVHLKVAALGSDPQIHM-----EVQESGEIQLECTSMGWYPEP-WVQWrtPKGEEFPSMSESKSPNEEGLFTVAASVIIRDPS--
+VKNVSCYVRNLLLGQEKEVEIS-------------
+>gi|18858393|ref|NP_571075.1| CD166 antigen homolog A precursor [Danio rerio]gi|2497299|sp|Q90460.1|C166A_DANRE RecName: Full=CD166 antigen homolog A; AltName: Full=Activated leukocyte cell adhesion molecule A; AltName: Full=DM-GRASP homolog; AltName: Full=Neurolin; AltName: CD_antigen=CD166; Flags: Precursorgi|452158|gb|AAA50024.1| transmembrane glycoprotein [Danio rerio]
+--------------GETIEVPCNngNN-KPDGLIFTKWKYAKDDGSPGDLLIKQAQKDDPtvSAMDGYKTRVSIAAN-----SSLLIAQGSLTDQRVFTC
+MVVSST----NLEEFSVEVKVH--KKPSAPVIKNKVKELENGKLTQLGECVVESANPAA-DLIWmkNNQALVDDgktiiITSDVTKDPvTGLSSTSSRLQ
+YTARKEDvASQFTCVAKHVTGPNQV---STP------------
+>gi|332257155|ref|XP_003277679.1| PREDICTED: poliovirus receptor-related protein 2-like [Nomascus leucogenys]
+SGRPPAPARTPSNLtfraGEAEHLPRPPPAPrAPSRVSPSWLAPPTPTPYTSDS-LEETLTPPFCISLTTtPILL------nptahptpacLSPSP----
+---------------------FLGFP---------RRKAKPENQAEAQKVTFSQDPTTVALCISKEGRP-PARISWLSSLDWEAKETQVSGTLAGTVTVT
+SRFTLVPSGRaDGVTVTCKVEHES-----------------------
+>gi|213982747|ref|NP_001135545.1| v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene homolog [Xenopus (Silurana) tropicalis]gi|195539639|gb|AAI68021.1| Unknown (protein for MGC:185004) [Xenopus (Silurana) tropicalis]
+--------------------------------------------------------------------------------ITIKMVQVSFDGCYVCTGNQ
+SG---TVKKSSTFSIHVKPEPKKEPTIFLTKSRQLVKTGEPFEVTCTVMDV-FSTVKAQWLDARDmEsTERANFLPTR-IFSL--NLTLKSDGVLFSeSR
+TFTCQAENAIGQVNATFTLD-------------
+>gi|327265502|ref|XP_003217547.1| PREDICTED: macrophage colony-stimulating factor 1 receptor-like [Anolis carolinensis]
+--------------------------------------------------------------------------------IRLRRVGMDDNGWYKCRALV
+QG---Q-------WVQ-------SPKIGLIVKGFIIFYYIFTYFFVTAHCI-VLAFGSY-----CKCHIKLELSFK-----------------------I
+CILTK----KQSALIKT-------------
+>gi|11990448|dbj|BAB19782.1| vascular cell adhesion molecule-1 6D variant lacking D7 [Bos taurus]
+-VEISPGPQIAAQVGDSVVLTCDVRDCES--PSFSWRTLIDsplNGNVRSE---------------------------GSKSTLTLSPVSFENEHFYLCT
+VMCGQ--KKLEKRIQVKPYSFPSnpeiemsGplvsgnpvtvscrvpnvypsdqleielfkgesimmnktfskdvskkaletkslektfipttedignvlv
+clarlpidemefelkqrqstqtlyvnvAPRDTTILVSPSSILEEGSSVNMTCSSNGLPAPKILWSRqlSNGD------LQPISE-NATL------SFMST
+KMEDsGIYVCEGINQVGTSRKEVNL--------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+Q 1    4150	*	4592	3088	*	4105	3102	*	3015	*	*	*	4534	1617	*	4173	4016	*	*	*	1
+       0	*	*	*	*	*	*	6658	0	0	
+
+V 2    4916	*	*	*	4920	3965	*	3036	*	2270	*	3975	5216	*	*	5089	5523	1326	*	*	2
+       0	*	*	*	*	*	*	8426	0	0	
+
+Q 3    5599	*	4373	4058	5479	4001	*	5575	3416	5669	5572	*	*	4521	3953	3229	3556	1840	*	4274	3
+       0	*	*	*	*	*	*	8966	0	0	
+
+L 4    4850	*	*	*	4674	*	*	3230	5352	1634	3889	*	4135	5107	5870	5757	4311	2098	*	*	4
+       59	4648	*	2206	352	*	*	9713	1326	0	
+
+Q 5    6032	*	4056	4287	*	*	*	4984	3947	4105	5879	5182	5033	2773	5883	2693	2177	3256	*	*	5
+       19	6285	*	0	*	*	*	10095	1000	0	
+
+Q 6    3197	*	5927	5141	*	4224	5208	4697	4323	4479	*	5164	3285	2325	4031	3374	3789	4038	6450	*	6
+       111	3751	*	0	*	*	*	10137	1642	0	
+
+P 7    5427	*	4554	3978	*	3848	4705	5232	*	5093	6152	5311	999	5151	5832	3804	4313	*	*	*	7
+       19	6292	*	0	*	*	*	10218	1007	0	
+
+G 8    3800	*	3926	4156	*	3195	*	*	3679	5957	*	5039	2160	4661	4332	2665	4080	4546	*	*	8
+       17	6451	*	0	*	*	*	10239	1000	0	
+
+A 9    5227	*	4110	3691	5281	4549	5364	6185	5408	3712	*	4339	4472	3760	4760	2155	3517	3464	*	5379	9
+       67	4888	6449	0	*	*	*	10138	1286	0	
+
+E 10   4789	*	6441	3490	6125	4644	6306	3225	4821	2330	4406	*	5502	3799	6373	4686	5355	2067	*	*	10
+       0	*	*	*	*	*	0	10460	0	1000	
+
+L 11   5186	*	5258	4032	5574	5511	5025	3504	4534	4250	6768	4148	4513	6510	5403	2756	2471	3165	6820	4836	11
+       31	5539	*	0	*	0	*	10332	1186	1000	
+
+V 12   2272	*	*	5516	6516	4595	*	3865	5350	4356	5080	*	6516	5089	5406	4782	3937	1603	*	4250	12
+       0	*	*	*	*	*	*	10424	0	0	
+
+K 13   4530	*	6483	4004	5049	6598	5554	3964	3195	4061	6411	4321	4501	3007	3666	3629	3761	3117	6771	*	13
+       11	6994	*	4644	59	*	*	10467	1000	0	
+
+P 14   4046	*	4742	2272	*	6556	7004	4717	4429	2875	6674	*	3378	4057	4109	3917	4321	3517	*	5138	14
+       30	5580	*	1350	719	*	*	10599	1238	0	
+
+G 15   5980	*	6795	3792	7206	487	5791	*	4961	*	*	4242	*	5946	5625	5822	6989	6843	*	6806	15
+       0	*	*	*	*	*	*	10759	0	0	
+
+A 16   5355	7114	2782	2399	*	2356	6693	7190	3339	6628	5969	4518	*	3678	4879	3637	4226	7170	*	*	16
+       0	*	*	*	*	*	*	10804	0	0	
+
+S 17   4178	6637	3307	3734	5806	6714	6914	7094	4780	5798	*	4149	3159	4579	5364	2334	2430	4547	*	*	17
+       34	7044	5984	1000	1000	*	*	10824	1000	0	
+
+V 18   2080	*	*	6706	5811	5913	*	3353	6694	3333	5246	*	6709	*	*	5646	5205	1218	*	*	18
+       15	6629	*	0	*	0	*	10851	1000	1142	
+
+K 19   4682	*	5448	3620	6051	5837	4867	4742	4687	5450	5156	4292	4958	4286	4584	3682	1711	3685	*	5294	19
+       0	*	*	*	*	*	*	10876	0	0	
+
+L 20   *	*	*	*	3227	*	7225	2456	7133	776	4400	*	7094	7037	*	*	7116	4862	*	6783	20
+       0	*	*	*	*	*	*	10876	0	0	
+
+S 21   6012	*	4161	3809	5493	4380	5961	6677	5281	4457	5874	3582	2661	4543	3467	2989	2820	5042	*	*	21
+       0	*	*	*	*	*	*	10876	0	0	
+
+C 22   5828	130	*	*	5283	*	*	*	7133	6726	*	*	*	*	5939	6661	*	*	*	*	22
+       0	*	*	*	*	*	*	10876	0	0	
+
+K 23   4247	7225	4008	3488	4917	4158	4736	6041	3579	4270	6334	3466	4306	5436	3822	2885	3780	4554	*	6159	23
+       23	5957	*	1764	503	*	*	10876	1123	0	
+
+A 24   3175	*	*	6726	3092	6762	6493	3409	*	2939	7159	5996	4549	5995	*	4517	4370	2180	*	3013	24
+       127	4323	4861	1306	748	*	*	10876	1732	0	
+
+S 25   5371	*	3397	3760	5877	4310	5311	5304	3855	4715	7128	4198	4525	5861	4119	2588	2469	4969	7157	5934	25
+       151	4461	4211	1377	702	2140	371	10828	1654	1540	
+
+G 26   4596	6977	3772	3773	*	1616	*	*	4992	4575	*	3836	3740	3818	5684	3705	4866	5073	*	5115	26
+       92	*	4021	*	*	2364	312	10777	0	2537	
+
+Y 27   3954	6103	5766	5726	3317	4078	4781	5150	3899	3647	6845	4637	3829	3926	4730	2864	4161	5869	*	3651	27
+       118	4725	4618	0	*	288	2464	10749	1495	3279	
+
+T 28   4039	6675	4063	3338	5631	4245	5333	7045	3918	4982	5843	4342	2980	4722	5021	3133	3182	3815	*	6625	28
+       143	6734	3561	1000	1000	1735	515	10805	1000	1965	
+
+F 29   3948	4475	4122	4157	5769	5065	6713	4930	4592	3506	*	4815	2356	5522	3877	3308	4822	4056	*	4660	29
+       376	4760	2379	1466	648	2322	322	10754	1406	3095	
+
+T 30   3499	*	2933	4711	*	3003	6359	*	3606	4268	6624	4926	4058	4616	4400	3012	3390	4710	*	5458	30
+       158	4439	4115	866	1148	3355	148	10691	1436	5489	
+
+S 31   4092	*	2411	4121	6496	3202	4335	6531	4840	3832	*	3760	3673	4173	4681	4156	4697	4145	*	6297	31
+       233	2849	6574	936	1067	275	2527	10547	2651	5701	
+
+N 32   4391	*	4715	3704	4488	4376	6795	3785	5310	3515	5790	3886	2999	4916	5265	3808	4119	3344	*	4229	32
+       220	2915	6794	208	2899	762	1285	10793	3331	2054	
+
+W 33   3728	*	6059	5202	5943	5851	6575	4337	5508	5692	4615	5277	6716	3689	4423	2495	2486	3440	5785	3625	33
+       69	4625	7265	1276	769	*	0	10818	1615	1522	
+
+I 34   5924	*	*	7039	3555	*	*	1777	5961	2880	6652	*	6562	*	*	7094	4735	1562	5233	5916	34
+       15	6642	*	0	*	2220	348	10816	1000	1657	
+
+N 35   4645	6809	*	3571	3516	*	4624	4722	4237	4079	5240	5870	*	3550	5149	2621	2711	4530	6707	3974	35
+       0	*	*	*	*	*	0	10829	0	1483	
+
+W 36   *	*	*	*	3746	*	*	5830	*	5158	*	*	*	*	6897	*	*	4826	274	6732	36
+       36	5789	7325	438	1934	*	0	10829	1260	1483	
+
+V 37   6789	6951	5137	5809	2874	6989	5307	4645	3471	3179	5883	5871	*	5102	4146	4358	3569	4134	5342	2379	37
+       63	5888	5270	2298	328	2058	396	10832	1332	1624	
+
+K 38   5864	*	4990	6641	4564	*	4714	4994	1912	4156	6627	*	7176	3899	2110	5835	4529	3895	4695	5296	38
+       167	4434	3994	665	1438	3054	185	10828	1726	2007	
+
+Q 39   4401	*	3808	4591	*	3594	5751	6638	3487	4225	6724	4341	4776	1885	4589	4734	3973	4710	6654	5125	39
+       113	*	3734	*	*	1049	953	10797	0	3249	
+
+R 40   4962	*	3355	4445	6004	3992	5618	4699	3078	5084	*	3457	4228	5165	3036	3584	3394	5199	6931	5011	40
+       206	*	2910	*	*	4182	82	10683	0	3379	
+
+P 41   4658	*	3283	3444	4452	4289	*	*	3587	3886	*	3543	2331	5691	4184	3695	4255	5079	*	*	41
+       116	4153	5555	1443	662	970	1030	10513	1732	5045	
+
+G 42   6635	*	3276	4107	*	1601	5184	6820	4152	*	*	3124	5650	5292	4441	3254	4383	5133	6763	6675	42
+       118	3674	*	1860	465	2595	261	10699	2055	3540	
+
+Q 43   3836	5946	3943	2971	5302	2882	5618	7056	2757	5764	6647	4386	5298	3418	4041	4562	3906	5690	*	*	43
+       29	5672	*	0	*	3560	128	10713	1216	3145	
+
+G 44   3060	*	4680	3515	6498	2752	*	4851	4883	4887	4946	4848	3213	4457	6059	2852	3520	5033	*	*	44
+       140	4301	4580	880	1131	*	0	10731	1730	2971	
+
+L 45   5271	5787	4150	4670	6556	6670	*	3625	*	3554	5648	5081	2285	4337	4190	4396	3361	2951	6394	5114	45
+       44	5537	6867	1130	881	3109	178	10570	1281	3637	
+
+E 46   5711	*	3758	3336	5840	3643	5158	5277	3730	4214	6549	5636	4520	2619	3979	3755	3877	4150	*	5136	46
+       31	*	5564	*	*	2131	374	10589	0	3482	
+
+W 47   6599	*	4770	5272	3528	6334	6544	4302	5176	2783	5102	4752	4441	4603	3564	3992	3571	3348	4284	4079	47
+       24	5901	*	4103	87	*	0	10690	1231	3232	
+
+I 48   6884	6575	5670	4086	4509	5806	5759	2714	5986	1938	4956	5134	6542	5609	5779	3791	5756	2600	*	5202	48
+       585	6671	1628	0	*	*	0	10690	1011	3232	
+
+G 49   3015	5105	6094	4508	3415	3075	5938	3507	*	3357	*	*	4146	4187	4622	3341	4176	3871	*	*	49
+       82	5350	5037	2367	311	*	0	9990	1187	6811	
+
+N 50   3341	*	4730	3496	5030	5882	5155	4592	3839	5300	6102	5106	*	*	4989	3036	3288	4184	4729	2551	50
+       37	*	5286	*	*	787	1250	9898	0	6976	
+
+I 51   5546	*	5125	6436	3698	*	6536	2542	4270	2873	5369	6931	5112	5473	4701	5045	4186	2420	6549	3550	51
+       28	6925	6512	1000	1000	2148	369	10576	1000	4303	
+
+Y 52   4101	*	4235	4247	3993	*	4178	4331	4773	3453	6575	4175	4936	3350	4401	3368	4077	4188	*	3549	52
+       458	5619	1990	399	2050	4309	75	10620	1338	3762	
+
+P 53   3587	*	6400	3814	4816	3047	4848	6405	4307	6061	6320	4715	2936	4512	4661	3131	3650	4148	*	4308	53
+       228	4415	3329	757	1293	2701	241	10199	1448	6359	
+
+G 54   5255	6241	3357	4313	6127	2387	6246	6121	3922	4048	6112	3723	5907	4555	4127	3162	3874	4273	*	6060	54
+       56	*	4722	*	*	3931	98	10142	0	6542	
+
+S 55   5173	*	3388	3930	5148	2414	5951	4880	3438	4660	*	3657	6180	4392	5325	3324	4115	4354	*	4600	55
+       136	6322	3693	1218	811	1171	847	10132	1151	6521	
+
+G 56   *	*	3361	6479	6248	2172	6347	4291	3234	4146	*	3065	*	4377	4085	3346	4028	5599	*	5410	56
+       97	6536	4201	3807	107	3163	171	10500	1075	5210	
+
+Y 57   4494	*	3274	4508	5602	4632	4120	5502	4473	4008	*	4988	5358	3580	4461	3273	4065	3926	*	2769	57
+       134	*	3496	*	*	3142	173	10662	0	5319	
+
+T 58   3592	*	4100	4349	4908	4099	3975	4832	3711	5327	6067	5563	3251	4521	6420	3310	2749	4466	6402	6053	58
+       16	6491	*	1000	1000	3134	174	10527	1000	5824	
+
+N 59   6620	*	3929	2844	3859	6261	4949	4259	3641	4289	*	3164	6739	3164	5618	3534	4492	3788	*	5011	59
+       32	6442	6554	1000	1000	*	0	10611	1125	5406	
+
+Y 60   4883	5307	4252	4162	3462	3322	6597	3682	5137	4962	6300	4062	5278	5493	4028	3783	4860	3696	6336	3126	60
+       29	6441	6883	2322	322	2100	383	10606	1000	5502	
+
+N 61   3518	*	3381	3505	3898	4645	4046	6495	4265	5484	4893	3717	4378	5627	5522	2633	3776	6423	6246	5893	61
+       12	*	6901	1000	1000	3150	172	10720	1000	4764	
+
+E 62   4613	6536	3253	2528	5727	3389	5103	6495	5038	6628	*	3966	2923	4571	4807	3192	4584	4980	*	5752	62
+       0	*	*	*	*	4367	72	10555	0	4538	
+
+R 63   4401	*	3375	3368	5450	3061	5603	6464	4410	5064	6306	5072	3523	4098	4623	3093	3167	4569	*	6813	63
+       12	6941	*	0	*	*	0	10575	1000	4394	
+
+F 64   4365	*	5173	6313	2624	3610	5424	5685	6538	2598	5660	5119	6596	4985	5465	4382	4063	3574	*	2801	64
+       89	4279	6920	4193	81	*	0	10575	1839	4394	
+
+K 65   5074	*	4003	2739	5711	4150	4589	6463	2876	5577	5774	4034	3823	3849	3830	3704	3753	6399	*	5623	65
+       102	3873	*	503	1765	1868	462	10560	1939	4498	
+
+S 66   3585	5320	3161	3573	6736	2256	4857	6395	3796	5871	*	3798	3920	5826	4366	3795	3933	*	*	*	66
+       52	4832	*	1931	439	4275	77	10672	1579	3646	
+
+K 67   6934	*	4819	4327	*	4175	4226	5601	4171	5618	5483	4786	5639	4326	954	7047	4688	*	*	6600	67
+       58	4669	*	257	2618	*	0	10680	1526	3521	
+
+A 68   2983	*	4880	5108	1915	6725	6611	4130	4830	2929	*	*	6600	6731	5399	*	5445	3110	*	3060	68
+       14	6646	*	0	*	*	0	10680	1022	3521	
+
+T 69   5685	*	4512	5248	5126	4635	4879	4280	5914	4494	6962	3780	5804	3786	3440	2292	2929	4100	5176	6587	69
+       44	*	5042	*	*	3963	96	10680	0	3521	
+
+L 70   3930	5092	4919	5805	3053	5852	*	3811	6934	2825	5196	5206	5069	4888	6561	3725	4326	2339	7047	4776	70
+       25	*	5887	*	*	*	0	10670	0	3817	
+
+T 71   4695	*	4403	3514	5738	5420	5688	3500	4262	4762	*	3879	5573	4348	4111	3136	2620	3541	6624	5695	71
+       198	5188	3311	461	1871	3387	145	10651	1266	4118	
+
+V 72   3935	*	4408	4812	4342	2942	6616	4844	3826	3781	*	4485	3536	4939	2966	4366	4514	4444	5574	4896	72
+       136	4581	4367	1962	428	4851	51	10530	1469	5022	
+
+D 73   6362	*	2573	3946	5790	3960	4645	5080	3390	4476	5466	3091	4593	4106	4168	4843	3495	5695	*	5338	73
+       454	4514	2144	851	1167	535	1690	10495	1476	5367	
+
+T 74   4156	*	4878	4079	5010	3924	5622	4960	3293	3788	*	4916	2866	3616	4683	3629	3632	4179	*	5689	74
+       109	5681	4225	0	*	*	0	10602	1132	5324	
+
+S 75   3399	*	3918	3309	6416	3138	5382	*	5639	4373	*	3800	5713	5274	3916	2578	3871	5041	4685	4947	75
+       93	5023	4972	1929	439	956	1045	10530	1501	5842	
+
+S 76   4221	*	3827	3225	*	2909	4062	5604	5477	4000	5702	3696	4957	3520	5097	3199	3606	5790	*	5935	76
+       74	5032	5683	1051	951	1475	643	10721	1295	4019	
+
+S 77   3844	6501	3646	4406	5684	2618	5733	*	3617	4783	6625	3430	6614	5056	4288	2289	4137	6939	*	6735	77
+       115	5628	4144	0	*	4301	75	10805	1157	3267	
+
+T 78   4298	5275	2795	4825	4988	4950	4296	4791	3831	4556	*	3530	4747	3861	4361	2932	3887	4991	*	6796	78
+       32	6693	6341	0	*	963	1038	10641	1000	3922	
+
+A 79   2739	4760	*	*	3131	3323	6664	3638	6535	3458	7098	5947	5254	*	6992	3173	6738	3368	5388	3201	79
+       11	7057	*	0	*	1131	880	10707	1007	2624	
+
+Y 80   5193	*	4836	4354	5417	*	4912	5761	5892	4295	*	3551	5187	4104	3979	1967	2672	4042	*	4709	80
+       39	5904	6648	1221	808	2403	302	10769	1176	1844	
+
+M 81   6721	5725	*	*	4823	*	*	2598	*	685	6933	7127	7027	*	*	6028	6686	3767	*	5188	81
+       0	*	*	*	*	2002	414	10801	0	1858	
+
+Q 82   5316	*	6033	4379	4863	5225	4478	4403	3575	4108	5414	4757	5843	3765	3171	3665	2377	4574	6175	5222	82
+       11	*	7086	*	*	*	0	10856	0	1609	
+
+L 83   6038	*	7080	*	4975	6729	*	964	6945	2366	5015	5902	6028	*	*	5834	6647	3041	*	6718	83
+       0	*	*	*	*	*	0	10833	0	1793	
+
+S 84   3454	*	4321	4226	6844	*	4484	6789	3031	3730	*	5024	4391	4251	3454	2598	2900	6935	5994	*	84
+       47	5477	6729	0	*	*	0	10833	1297	1793	
+
+S 85   4506	6669	2862	4361	6715	4243	4554	*	3607	6638	7115	2177	4032	4317	3788	3374	*	5503	*	4946	85
+       48	5861	6011	0	*	1723	521	10809	1146	1951	
+
+L 86   3034	*	*	*	4392	5810	5538	3623	6565	2234	6915	6671	5037	*	*	4648	4080	1760	4517	*	86
+       0	*	*	*	*	*	0	10770	0	1924	
+
+T 87   4836	6690	4465	2926	7108	4928	5793	5281	3283	6565	*	4360	*	2635	2629	3772	3185	6762	6812	6849	87
+       0	*	*	*	*	*	0	10770	0	1924	
+
+S 88   4039	*	7240	3722	5069	5952	5316	4978	3476	2468	3796	5823	3246	4732	4606	4499	4777	3384	5338	6900	88
+       22	6026	*	0	*	1156	859	10770	1087	1924	
+
+D 89   4065	*	3504	1968	*	3921	7140	*	3925	5234	*	4198	6699	3851	4161	2455	4626	5742	*	*	89
+       38	*	5250	*	*	*	0	10988	0	1445	
+
+D 90   6119	6530	533	4052	7849	6597	3579	*	6934	*	*	6239	5053	4973	5740	5795	*	*	*	7610	90
+       35	6119	6746	2000	415	*	0	10831	1091	1957	
+
+S 91   2845	*	3867	2265	5905	4726	6435	5519	5938	*	4953	4944	6030	4603	*	2397	3042	4392	*	*	91
+       62	6011	5249	2585	263	1259	780	10809	1088	2112	
+
+A 92   2398	*	5185	6872	*	822	6233	*	5857	5624	*	5924	*	*	4947	4213	5367	5571	*	6717	92
+       41	5781	6717	821	1204	*	0	10933	1339	2067	
+
+V 93   *	5300	4112	3445	6141	5949	*	3683	4159	3593	4698	5346	5925	5091	3640	4205	2478	3031	7076	5299	93
+       39	5730	7038	1431	669	790	1246	10910	1204	2206	
+
+Y 94   *	*	7228	*	3424	*	5883	7633	*	5834	*	*	6789	*	7080	6602	*	5751	6205	319	94
+       0	*	*	*	*	2044	401	10971	0	1616	
+
+Y 95   6735	7025	*	4218	4012	*	6664	3727	4926	4171	*	7123	*	3008	3659	5611	2508	3347	4633	2757	95
+       0	*	*	*	*	*	0	10996	0	1430	
+
+C 96   *	96	*	*	6666	6895	*	6807	*	5799	*	*	*	*	6637	*	6779	*	*	*	96
+       20	6197	*	1000	1000	*	0	10996	1091	1430	
+
+A 97   2949	7170	4750	3040	6788	6119	5734	4569	3892	4571	4922	6842	*	3756	2765	4466	3591	3058	*	*	97
+       36	*	5354	*	*	*	0	10984	0	1430	
+
+R 98   2294	6749	*	*	6755	6640	*	4298	5755	3490	6745	*	*	7281	5291	4283	4510	1181	*	4987	98
+       90	6773	4287	0	*	*	0	10955	1007	1906	
+
+K 99   4114	5613	4907	3600	6996	5081	5427	5773	3748	4414	3942	4018	5624	5076	4160	2935	3589	3826	3949	5382	99
+       133	4090	5079	852	1165	2539	272	10901	2073	2783	
+
+H 100  3879	6128	4716	4175	5155	4706	3201	4570	5272	4066	6564	2173	6055	4798	5179	4704	3699	4358	*	4428	100
+       171	6603	3298	0	*	*	0	10827	1001	2885	
+
+Y 101  3562	5298	3872	5688	6432	2876	6571	6921	4425	5067	*	4607	3019	5918	4608	3080	4012	5319	4930	3334	101
+       310	5571	2538	1612	572	3680	117	10622	1259	4362	
+
+F 102  3509	*	4008	3847	6457	2724	4852	6461	6135	3837	*	3146	3812	5719	4241	3098	3773	4588	*	*	102
+       1512	6124	655	2000	415	5645	29	10308	1011	6041	
+
+Y 103  *	*	3873	3958	*	2626	4724	*	*	3981	*	3884	2995	*	3033	3025	3706	4074	*	5055	103
+       467	*	1853	*	*	4686	57	7960	0	9179	
+
+D 104  4596	4598	3722	3590	3762	3304	*	3585	*	3691	*	3876	4383	*	4445	2741	3724	*	*	4812	104
+       172	4812	3707	0	*	2015	410	7751	1000	9355	
+
+G 105  5493	5578	4162	5525	5299	2411	5866	4763	4680	3821	5263	3710	4611	5502	3255	4545	4660	4517	4771	3850	105
+       88	5503	4761	0	*	692	1392	9408	1009	8466	
+
+V 106  4126	*	3608	3439	3244	4962	4985	4167	3113	4558	5523	5250	4705	3552	5567	4264	5053	3880	5588	5506	106
+       30	6419	6790	0	*	2259	338	10528	1007	5186	
+
+V 107  4203	*	3811	3751	4040	3723	6676	4754	4059	3095	*	4017	3551	3866	4268	4550	4669	4080	6636	5570	107
+       72	6547	4719	1000	1000	4763	54	10603	1022	4645	
+
+Y 108  5003	*	*	4159	5130	5347	6544	3543	4693	3321	5979	4456	4068	4273	5225	4035	2753	2848	5375	4247	108
+       56	6551	5180	1000	1000	604	1548	10710	1000	4931	
+
+W 109  4239	*	*	5630	2077	3904	4180	3403	4329	3990	5725	6816	5774	4755	3888	4789	5110	3886	4507	4904	109
+       13	6759	*	2807	222	2730	236	10880	1000	2974	
+
+G 110  4548	*	4598	3120	6926	1755	5897	*	4748	5806	6722	5001	3759	4433	4495	2513	5348	5665	*	*	110
+       99	4499	5516	3385	145	908	1098	10907	1711	2681	
+
+Q 111  3732	*	4046	3497	6814	3701	4305	4795	3062	4741	*	4229	3634	3787	4266	3322	4490	4845	6867	*	111
+       12	6967	*	0	*	*	0	10925	1052	2188	
+
+G 112  3253	*	4875	4272	6627	1954	5127	4604	3611	5982	6674	5264	4360	4314	4421	3665	4109	5442	7115	5311	112
+       37	5937	6777	2322	322	2324	321	10925	1130	2188	
+
+T 113  3202	*	6757	4615	4591	5313	5930	4581	4594	3564	6914	*	4716	6087	5847	4311	1743	2832	*	5471	113
+       35	5397	*	762	1285	2230	346	10910	1302	2093	
+
+L 114  6638	*	*	2843	5266	5240	6149	5919	2626	4222	6953	3963	6739	2896	3867	3240	3379	4944	4913	*	114
+       21	*	6131	*	*	1885	455	10930	0	1836	
+
+V 115  4389	5522	7344	7362	4574	*	5785	3572	4080	1228	*	5861	7307	6651	*	4257	5684	2667	5966	6739	115
+       66	5987	5126	2807	222	2513	278	10902	1087	1821	
+
+T 116  4009	7028	5045	4754	5228	4563	4405	3399	4533	4838	*	4347	4431	4626	3305	4130	2587	3594	*	5044	116
+       41	6528	5872	4248	78	3186	168	10856	1011	2281	
+
+V 117  6341	5843	5653	6695	6714	*	6519	3014	4261	3906	4597	4529	*	5183	*	4468	5368	1092	*	5211	117
+       40	5682	6946	2008	412	1910	446	10808	1176	2527	
+
+S 118  4989	5246	6054	4786	4671	5312	5359	3950	3231	2525	5751	5277	3957	5209	3742	4358	3180	3852	*	5777	118
+       517	5055	1884	1237	796	3121	176	10892	1370	2234	
+
+A 119  2879	*	3471	4642	5872	3582	*	5575	5510	3662	5505	4805	3034	5729	3872	3069	5643	4228	6166	4724	119
+       228	3013	5505	1933	438	1390	693	10436	2819	5905	
+
+A 120  2213	*	3531	4497	*	3483	6587	5163	3535	5527	6725	3974	3875	3975	5336	4031	4499	3595	*	*	120
+       164	4080	4369	2211	351	2051	399	10741	2109	4560	
+
+K 121  3590	*	3920	4697	*	3650	4885	3953	3123	4876	6623	6470	3219	4514	3788	4602	3803	3382	*	4979	121
+       87	4099	*	5689	28	1404	685	10727	1939	4383	
+
+T 122  3422	5981	4093	3647	4937	4554	8341	4661	3538	3774	5718	3929	3103	4572	4570	4626	4842	3468	*	5350	122
+       37	5921	6808	1256	783	1165	852	10885	1152	3337	
+
+T 123  3860	6737	5793	4571	3615	4552	5819	6844	4860	4820	7067	4390	2807	5148	4193	2900	3593	2993	6572	7107	123
+       24	5915	*	2806	223	517	1731	10841	1159	2419	
+
+A 124  2687	5972	5875	4120	5340	3842	6540	5657	3102	4654	7097	4875	2177	4666	4756	3869	5222	4979	*	7089	124
+       0	*	*	*	*	*	0	10942	0	1332	
+
+P 125  3666	*	4197	*	7050	6156	7147	4746	5229	4598	*	5295	881	4705	5473	4701	4455	5665	*	*	125
+       23	6001	*	2470	287	*	0	10942	1316	1332	
+
+S 126  4783	*	5371	3463	6874	6928	5559	5673	3256	4555	5354	5283	3931	4996	4054	2777	2701	3318	*	4759	126
+       54	5038	7303	2374	309	*	0	10942	1450	1332	
+
+V 127  5048	5428	5024	4943	5442	6525	6760	2654	5738	3062	6418	4999	4160	4567	5925	7005	3859	1696	*	*	127
+       13	6840	*	3108	178	1047	954	10939	1167	1469	
+
+Y 128  3932	7104	5417	5041	3216	5936	5647	3602	5160	3669	5569	*	5138	4494	3973	3668	2852	3897	5729	3646	128
+       63	6841	4869	1000	1000	949	1053	10959	1025	1161	
+
+P 129  4852	6942	5664	4945	6749	6056	5877	2726	4546	2733	5184	5637	3204	4237	4621	5184	3641	2969	6059	5700	129
+       71	5840	5030	921	1084	*	0	10867	1127	1686	
+
+L 130  4731	5374	5013	5055	3116	5148	6062	3471	6925	2568	6745	4530	5155	4066	5988	4886	3659	3353	5690	3940	130
+       15	6603	*	1585	585	*	0	10655	1107	2398	
+
+A 131  4132	6613	5303	4178	5234	4881	5523	5855	4206	3408	7459	4451	2556	4190	3979	2784	3558	5260	6896	*	131
+       111	4373	5272	822	1204	3410	143	10637	1892	2398	
+
+P 132  3615	*	6094	5144	8157	4779	6373	4287	3906	4341	*	5789	1703	4424	4517	3363	3927	4358	5708	6671	132
+       35	7015	5922	0	*	1376	702	10614	1000	2647	
+
+V 133  4773	6794	3848	4205	6670	4972	5412	4699	3743	4838	6855	4351	3283	4323	5304	2158	3744	4192	5787	6609	133
+       14	*	6739	*	*	*	0	10617	0	2423	
+
+C 134  4630	4883	4263	3496	5680	4267	6296	3791	4886	4215	6726	4798	3353	4916	4799	3299	3522	3257	*	4819	134
+       15	6637	*	0	*	765	1280	10601	1025	2578	
+
+G 135  3715	*	4035	3338	5726	4999	5828	4909	4527	3586	5649	*	4426	4159	5239	2225	3909	3810	5803	5823	135
+       0	*	*	*	*	0	*	10904	0	1584	
+
+D 136  3813	6065	3712	2839	6592	5410	6914	3570	5273	3877	5803	5116	4066	7352	5285	4104	4042	2219	*	7442	136
+       38	7020	5786	1585	585	*	*	10745	1000	0	
+
+T 137  4604	7343	4174	4245	4931	5844	5948	3258	3712	2990	5083	3658	4729	5250	5529	3803	4015	3356	6538	4827	137
+       97	3950	*	396	2057	2129	375	10721	1953	1550	
+
+S 138  3879	*	5000	2400	*	5211	6917	5482	3747	4354	*	4947	3326	5719	3726	3421	4038	3091	6561	5545	138
+       388	2430	4318	1422	674	1766	502	10722	4020	1388	
+
+G 139  6861	6605	3684	3807	*	973	6623	*	4953	*	*	3883	6869	4768	5895	3594	4551	5848	*	7086	139
+       30	*	5608	*	*	1769	501	10593	0	2133	
+
+S 140  4413	*	2638	3191	*	3219	5345	5572	3966	5196	*	3318	4563	3262	4755	3279	5115	7047	*	6026	140
+       0	*	*	*	*	2663	248	10710	0	2128	
+
+S 141  3733	*	3773	2820	6929	6863	5650	6918	3659	*	5910	3502	3676	5783	5370	2714	2691	5135	6109	6630	141
+       24	6697	7162	3322	152	2673	246	10775	1011	1933	
+
+V 142  2547	5807	*	*	4407	4774	*	3351	6839	3189	4634	5994	5435	5070	5440	4728	3695	1981	*	6525	142
+       26	5806	*	2365	311	196	2975	11012	1154	1897	
+
+T 143  6450	*	5235	3330	5848	*	5978	3823	3663	5110	5190	4091	*	3927	4355	3010	2142	3728	6632	6173	143
+       0	*	*	*	*	*	0	10751	0	1000	
+
+L 144  3799	*	5838	*	3767	6783	6929	2819	*	1030	4638	*	6127	*	6422	*	*	3386	*	5227	144
+       38	5268	*	0	*	*	0	10751	1328	1000	
+
+G 145  5365	6112	5926	4317	6169	4984	6119	3873	4727	2877	6906	3736	4622	4575	4055	3115	2763	3696	*	5230	145
+       6	*	7863	*	*	0	*	10751	0	1000	
+
+C 146  6133	41	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	7030	*	7339	146
+       0	*	*	*	*	0	*	10736	0	1035	
+
+L 147  4634	*	5340	2669	5848	6173	4736	3552	4349	3175	4903	4560	6488	4345	3822	3896	3463	3397	7857	*	147
+       23	7261	6779	2000	415	*	*	10634	1000	0	
+
+V 148  2156	5311	*	7083	6011	5823	*	3440	*	5214	6262	6147	5929	6573	*	2780	4737	1642	*	4915	148
+       0	*	*	0	*	1029	972	10754	1000	1172	
+
+K 149  4476	*	5291	3514	4927	5785	3801	5367	3621	4539	6590	4582	4843	4535	3261	2434	3458	4914	6435	6012	149
+       80	4441	6951	2583	264	*	0	10763	1842	1002	
+
+G 150  4205	6006	3768	3497	*	1719	5851	6426	4311	*	*	2880	5209	4891	5000	2858	5680	*	*	*	150
+       0	*	*	0	*	*	0	10755	1007	1184	
+
+Y 151  4500	6459	5250	5692	2300	2371	6549	4855	6551	4414	6586	4789	4755	6970	5462	3271	4888	3872	6555	3858	151
+       306	5356	2583	884	1126	1020	980	10753	1298	1184	
+
+F 152  3702	4948	6456	*	3088	4613	4560	*	3247	*	5505	4935	3603	6809	3128	2829	4435	6675	7731	3166	152
+       35	7731	5712	0	*	249	2657	10285	1035	4209	
+
+P 153  4712	*	5847	5404	*	*	5398	*	6971	4491	*	5692	529	5096	5513	4530	6621	5159	*	*	153
+       191	4986	3431	925	1079	0	*	10734	1522	1726	
+
+E 154  3178	*	3550	2897	6892	3547	5408	*	5166	5644	5552	4720	2858	4065	3404	3509	5693	4441	*	*	154
+       109	4567	5021	581	1594	161	3245	10758	1517	2455	
+
+P 155  2906	*	4221	4301	*	4264	5079	4754	5304	4200	*	4489	1830	4264	5129	3389	4574	5657	*	*	155
+       353	6638	2273	0	*	2116	379	10703	1031	1603	
+
+V 156  3239	*	6277	6469	5241	*	3813	2208	5554	2730	5797	*	4925	4574	*	5564	4098	2403	*	5481	156
+       252	*	2639	*	*	156	3284	10134	0	4442	
+
+T 157  5680	*	4057	2949	*	5691	4589	5602	3753	4400	*	3817	5552	3644	4059	3010	2799	4408	6371	5129	157
+       0	*	*	*	*	269	2557	10582	0	3591	
+
+L 158  *	*	*	*	3708	*	6227	2525	5921	2242	5004	5721	6497	*	*	5511	*	1531	5210	4262	158
+       17	6439	*	0	*	0	*	10730	1075	1355	
+
+T 159  *	*	4877	4870	5834	5833	5744	4281	3863	5693	4614	4492	7731	3564	4229	2295	2447	4221	*	3840	159
+       11	*	6993	*	*	*	*	10743	0	0	
+
+W 160  *	7798	*	*	5891	*	6764	*	6084	5539	*	*	*	*	5841	*	*	*	161	5535	160
+       1899	578	4008	1165	852	*	0	10558	8390	1107	
+
+N 161  5144	*	2838	3293	6674	4511	4637	5703	2789	4338	6495	2825	5345	4956	3991	3640	6271	6710	6588	4732	161
+       43	5084	*	0	*	2387	306	10375	1428	2292	
+
+S 162  5384	*	3156	3865	*	1952	5638	6789	3210	5638	*	2989	4358	5580	3994	4104	*	4441	6762	6991	162
+       42	5741	6672	589	1576	1377	702	10384	1129	2028	
+
+G 163  6106	*	3808	3774	*	1726	5764	5221	3169	5811	*	3575	4941	3822	4391	3925	5086	4866	*	*	163
+       45	5586	6655	1445	660	955	1047	10397	1215	1746	
+
+S 164  4394	*	3563	2742	6323	3839	*	*	3549	4391	5231	3559	3915	4159	3859	3755	3695	4355	*	*	164
+       165	5167	3644	0	*	1075	929	10562	1305	1413	
+
+L 165  5485	5834	4548	3008	5115	6397	*	2969	4332	2193	6520	4354	5731	6774	4356	4946	4336	2860	*	*	165
+       30	6531	6695	2807	222	*	0	10422	1000	2576	
+
+S 166  6160	*	4044	3241	6349	*	5546	3823	4103	3147	6863	3864	3070	5017	4454	2978	3666	4164	6667	*	166
+       43	5857	6397	1695	533	2526	275	10463	1144	2705	
+
+S 167  4474	6779	3517	3116	5017	6706	6650	5087	4613	3332	5604	3753	3253	5614	5125	3364	3428	5704	6415	4222	167
+       15	6633	*	0	*	*	0	10503	1007	2556	
+
+G 168  3327	*	2744	3742	*	2467	5191	5073	6675	5498	*	4090	6380	4245	5009	2956	3499	6397	*	5453	168
+       86	4638	5801	1312	744	1581	587	10160	1394	2710	
+
+V 169  4233	*	4253	3662	*	4487	4568	3599	4431	5000	5567	4072	4571	4452	4677	3114	3682	2669	*	6585	169
+       48	5385	6787	2610	258	2303	327	10476	1198	2424	
+
+H 170  4434	*	4928	3725	5062	3894	4601	4111	3693	5613	5063	4572	4926	3534	4695	3263	3231	4617	*	3835	170
+       110	4772	4752	1428	670	1149	865	10546	1500	2262	
+
+T 171  3926	*	6799	4051	*	5568	5904	6769	4248	4807	6429	2707	4457	4286	4618	3001	2173	4674	*	4596	171
+       41	5591	7059	590	1575	*	0	10485	1192	2342	
+
+F 172  4758	*	4332	4691	3543	4317	5133	4257	5251	3978	5734	4757	5465	4622	3517	2637	3193	4344	*	4558	172
+       58	5643	5703	2345	316	594	1568	10492	1177	2474	
+
+P 173  4462	*	4519	4084	6812	3936	6947	5022	4265	4428	*	4654	2478	4228	4110	3186	2981	4543	6097	5964	173
+       12	*	6881	*	*	2585	263	10564	0	1716	
+
+A 174  4511	*	4353	3604	5237	3253	4765	4808	4863	4333	6553	6436	3258	4091	4331	3093	3510	3716	*	5574	174
+       67	4472	*	2013	411	1494	633	10556	1719	1714	
+
+V 175  4573	*	4685	4266	4834	4154	5645	4023	3681	3849	6737	4746	3830	4638	4664	3019	4007	2676	*	6892	175
+       50	5278	6859	728	1335	*	0	10575	1251	1553	
+
+L 176  6311	6412	4008	3839	5319	4919	4049	4465	4041	2858	5563	5520	4926	3774	3299	4065	3897	4435	5743	4687	176
+       269	6609	2646	0	*	2551	270	10567	1002	1697	
+
+Q 177  4853	6364	3893	2889	*	4272	4246	5565	3876	4043	*	3084	3555	3489	6529	3842	3686	4862	*	6403	177
+       986	1051	6350	913	1093	522	1719	10145	6390	4122	
+
+S 178  5036	*	1886	3877	*	2860	*	*	4638	4945	*	3011	4614	6550	4740	2811	4489	5608	*	*	178
+       0	*	*	*	*	2411	300	10311	0	2265	
+
+D 179  5794	*	3076	3753	5847	1361	5630	*	4127	5846	6476	3281	*	6375	4442	4085	4586	6828	*	7337	179
+       223	3167	4981	1343	723	1447	659	10330	2696	2010	
+
+L 180  6837	5796	4784	5601	6735	5569	7516	5226	4191	2684	7102	3784	6782	*	3786	2765	1817	5005	*	5661	180
+       66	6705	4841	0	*	1812	484	10310	1120	2117	
+
+Y 181  6608	*	6536	5130	1891	*	5476	4349	6277	4083	6742	6285	4976	5026	5647	4064	5187	4629	6319	1773	181
+       38	*	5282	*	*	1220	809	10289	0	2332	
+
+T 182  5634	*	4190	4424	5667	6516	4539	6853	5739	5760	4094	3400	6585	4426	5232	2199	1875	5627	6431	*	182
+       33	6280	6633	4170	82	*	0	10301	1075	2175	
+
+L 183  3888	*	6300	5299	5349	4608	6381	3516	4514	3015	3742	6781	*	4724	4656	4327	3256	2233	6467	5502	183
+       76	6582	4613	1000	1000	*	0	10292	1002	2336	
+
+S 184  4413	*	*	*	4165	6604	4763	4941	4999	3917	5425	4015	5028	4590	5532	2522	2225	3869	4232	4984	184
+       34	6201	6725	1000	1000	*	0	10362	1023	2988	
+
+S 185  4105	4476	*	4823	*	3836	*	5083	4610	4830	5060	5652	6461	6542	6170	862	4802	6135	*	*	185
+       0	*	*	*	*	4194	81	10360	0	3098	
+
+S 186  5325	6738	5328	3815	6487	*	4645	4276	4558	3774	5135	4529	*	4455	3020	3003	3216	3159	4855	4967	186
+       88	4357	6601	1082	923	759	1289	10362	1546	2988	
+
+V 187  5623	*	*	6598	4985	4913	6644	3797	*	704	*	6735	*	*	*	5735	4776	3527	*	4120	187
+       0	*	*	*	*	418	1991	10366	0	1910	
+
+T 188  5168	*	4881	4124	*	6530	*	3729	4373	3334	4894	3930	6573	5691	3072	2999	2472	3710	*	5837	188
+       0	*	*	*	*	*	0	10423	0	1107	
+
+V 189  6701	*	*	*	3363	*	*	2042	*	1892	4591	*	*	5569	5660	7835	6513	2226	5790	4282	189
+       13	6842	*	0	*	*	0	10423	1000	1107	
+
+T 190  5704	6513	6234	4897	*	5569	4266	5848	3937	5190	6911	4099	2762	3785	3417	2672	2881	4114	*	6765	190
+       0	*	*	*	*	*	0	10423	0	1107	
+
+S 191  3384	*	4070	3901	5674	*	5947	4580	3714	4282	5095	3659	3112	5046	3673	2988	4964	3615	*	*	191
+       0	*	*	*	*	*	0	10423	0	1107	
+
+S 192  3474	5184	4791	3528	6637	4728	5828	4764	4652	5119	7573	4689	5505	4179	4135	2558	2643	3628	*	*	192
+       0	*	*	*	*	*	0	10423	0	1107	
+
+T 193  4269	7835	3368	2666	6790	4147	5701	6491	3227	4370	*	5772	4235	4224	3872	3468	3557	4463	6166	6573	193
+       192	*	3004	*	*	*	0	10423	0	1107	
+
+W 194  4222	6380	4646	3177	4899	5529	5598	4747	5778	2653	5552	*	4933	5015	3463	3163	5715	4555	2996	5683	194
+       251	2954	5024	1031	970	*	0	10171	2782	3402	
+
+P 195  5066	*	1411	2740	*	4420	6352	*	4892	5627	*	3619	4344	4770	4540	3559	5342	6390	*	*	195
+       800	1307	5534	241	2700	597	1561	10124	5760	3752	
+
+S 196  3010	*	2145	6604	*	2332	5035	*	4594	*	5768	3667	6436	5722	*	2694	4330	5587	*	5931	196
+       304	2394	*	105	3832	1043	959	10321	3929	2202	
+
+Q 197  3887	*	5330	4185	*	1196	5562	*	2888	5580	6984	5043	*	5733	5461	4073	4131	5011	*	6443	197
+       28	*	5689	*	*	2109	381	10399	0	1556	
+
+S 198  6849	*	4284	3718	*	*	6994	4031	3725	4640	6760	3466	5663	4655	4040	3695	2168	2733	*	6788	198
+       68	4438	*	253	2634	550	1658	10398	1603	1695	
+
+I 199  *	*	*	*	2951	*	5659	3305	*	3868	*	*	*	*	*	*	*	3011	*	844	199
+       0	*	*	*	*	0	*	10423	0	1107	
+
+T 200  *	*	7215	4518	5140	*	5841	4358	3182	5794	4691	*	*	5152	3941	2908	1532	5636	6356	3580	200
+       0	*	*	*	*	*	*	10457	0	0	
+
+C 201  *	37	*	*	*	6709	*	*	*	*	*	*	*	*	*	*	*	6003	*	*	201
+       30	5589	*	0	*	*	*	10457	1231	0	
+
+N 202  3659	*	*	2689	7328	*	5666	4089	4556	4412	5329	5013	6819	3807	3248	3719	3876	2485	6999	5663	202
+       0	*	*	*	*	*	*	10602	0	0	
+
+V 203  1829	*	*	6349	5710	5864	*	3784	*	4626	*	*	*	*	*	5076	6365	957	*	*	203
+       0	*	*	*	*	*	*	10465	0	0	
+
+A 204  3927	*	3854	3549	*	*	4637	5925	3099	5939	6867	3934	*	3699	3033	2752	3096	5104	6479	6496	204
+       0	*	*	*	*	*	*	10489	0	0	
+
+H 205  *	*	*	6431	6417	6508	1296	*	6703	*	6236	1572	*	4656	*	4381	4847	6219	*	3983	205
+       15	*	6593	*	*	*	*	10459	0	0	
+
+P 206  3439	4751	4031	2166	*	3518	*	6375	3726	5196	*	5360	3232	4934	3660	3851	4336	5443	*	*	206
+       54	4754	*	1835	475	*	0	10343	1410	1107	
+
+A 207  2320	*	4326	5458	4940	2518	5283	*	4504	3746	5062	3753	*	5980	5426	2787	4550	4826	*	6693	207
+       54	5429	6185	0	*	*	0	10234	1316	1107	
+
+S 208  5269	*	6131	5266	6314	1612	*	5223	4816	1972	5402	4098	6484	4680	6160	3385	5469	*	*	6306	208
+       98	4242	6314	1826	478	*	0	9817	1527	1270	
+
+S 209  *	*	4140	3093	*	4542	6403	6045	3933	*	6638	4505	2359	3486	3878	2982	3058	5246	6437	*	209
+       84	4976	5350	0	*	1127	884	9739	1213	1775	
+
+T 210  2622	*	4175	3312	6324	5365	6461	6141	4600	*	*	3795	4472	4114	4637	2726	2342	6101	*	*	210
+       0	*	*	*	*	850	1168	9457	0	1754	
+
+K 211  5087	*	3589	3994	6155	4199	5419	5627	3283	4138	*	4537	2268	3344	3895	4603	4227	4568	*	*	211
+       32	5490	*	1000	1000	0	*	9492	1139	1247	
+
+V 212  3370	6170	5298	6350	4485	6015	5336	2892	3532	2022	6206	6335	*	*	4486	4488	5905	2693	6278	*	212
+       23	*	6008	*	*	*	*	9489	0	0	
+
+D 213  4550	*	4105	3035	*	*	5788	4507	3969	6136	*	3191	4585	*	4653	3014	2386	3335	*	4969	213
+       0	*	*	*	*	*	0	9331	0	1000	
+
+K 214  3791	5950	*	*	5050	*	5027	2873	3447	2848	5801	*	*	3099	5027	4978	3909	2184	*	*	214
+       0	*	*	*	*	*	0	9269	0	1000	
+
+K 215  6227	*	*	2678	*	5964	4412	4890	3029	*	5919	3729	4146	3656	3997	3140	2526	6129	*	5687	215
+       0	*	*	*	*	0	*	9269	0	1000	
+
+I 216  4940	*	*	*	3774	*	6091	2754	5661	1277	5899	*	6039	4788	*	5667	4743	2654	6060	*	216
+       0	*	*	*	*	*	*	9058	0	0	
+
+E 217  *	*	3804	2806	5774	4547	5607	4565	3687	3174	*	2766	*	*	*	2276	3533	4906	*	*	217
+       44	5047	*	0	*	*	*	8776	1000	0	
+
+P 218  5774	4706	5085	5069	*	3978	*	4901	3975	3237	*	4751	2278	*	3950	*	2918	2829	4777	*	218
+       0	*	*	*	*	*	*	7841	0	0	
+
+R 219  3599	*	4835	3127	4385	4539	*	3671	*	4210	*	4550	*	*	2140	2436	4190	4820	*	*	219
+       0	*	*	*	*	*	*	7405	0	0	
+
+G 220  *	*	*	2538	*	4471	*	*	3605	3634	*	*	4301	2164	5473	2504	2764	*	*	*	220
+       0	*	*	*	*	*	*	7085	0	0	
+
+P 221  *	1346	*	4230	*	*	4297	*	4318	*	*	*	2460	*	*	2697	3987	4230	*	*	221
+       103	3864	*	4087	87	*	*	6438	1097	0	
+
+T 222  *	*	3607	*	3648	*	*	*	3089	*	*	*	2073	*	*	2841	2272	2873	*	*	222
+       345	2234	*	3473	136	*	*	5709	1600	0	
+
+I 223  *	2576	2275	*	*	3341	*	3348	*	*	*	3651	3294	*	*	2590	*	3622	*	*	223
+       0	*	*	*	*	0	*	5074	0	1052	
+
+K 224  *	*	*	*	*	*	*	*	1761	*	*	3753	1096	*	*	2616	*	*	*	*	224
+       149	*	3345	*	*	*	*	5237	0	0	
+
+P 225  *	*	*	2679	*	*	*	*	*	*	*	*	464	*	*	3070	*	*	*	*	225
+       490	1795	*	1359	712	0	*	4716	1343	1107	
+
+C 226  *	935	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1656	2647	*	*	226
+       0	*	*	*	*	*	*	3770	0	0	
+
+P 227  *	*	3167	*	*	*	2647	*	*	*	*	*	741	*	*	*	2936	*	*	*	227
+       260	2601	*	1585	585	*	*	3770	1097	0	
+
+P 228  *	2567	2655	*	*	*	*	*	*	*	*	*	1437	*	*	*	2814	2635	*	*	228
+       0	*	*	*	*	*	*	3621	0	0	
+
+C 229  *	294	*	*	*	*	*	*	*	*	*	*	2442	*	*	*	*	*	*	*	229
+       0	*	*	*	*	*	*	3621	0	0	
+
+K 230  *	*	*	*	*	*	*	*	528	*	*	1705	*	*	*	*	*	*	*	*	230
+       0	*	*	0	*	*	*	2240	0	0	
+
+//
+�HHsearch 1.5
+NAME  e28b3a1dbc0f15f5e8575e6ca4f6ea00
+FAM   
+FILE  e28b3a1dbc0f15f5e8575e6ca4f6ea00
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:33:30 2013
+LENG  174 match states, 174 columns in multiple alignment
+FILT  179 out of 1574 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  6.5 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEEEEEEECCEEEEEEEEECCCEEEEEEECCCHHHHHHHHHHHHHHHHCCCCCEEECCCHHHHHHHHHHHHHHHCCCCCCCCCCCCCCCHHHHHHHHHH
+HHCCCCCCEEEHHHHHHHHCCCHHHHHHHHHHCCCCEECCCEEEECCCCCCCCCCCHHHHHHHHHHHCCCCCCC
+>ss_conf PSIPRED confidence values
+9689999989959999999479758999813827899888999999975176550414865999999999999974898888767254763779999999
+83189997486999999979889999999840998713367378889997788865999999999708675689
+>Consensus
+xxxyxxxxxxxxxxxlxxxtxxglxxlxfxxdxxxxxxxxxxxxxxlxxxxxxxxxxxxxxxxxxxxxxxlxxYfxgxxxxxxlxlxxxtxfqxxvxxxl
+xxxipxGxxxtYxxiAxxxgxxxraVgxaxxxnpxxxxiPcHRVvxxxGxxxyxxgxxxkxxlLxxEgxxxxxx
+>e28b3a1dbc0f15f5e8575e6ca4f6ea00
+MLSVEKFRVGERVVWIGVIFSGRVQGIAFAFDRGTLMKRIHDLAEHLGKRGVSISLDVQPSDYPEKVFKVLIGELDNASFLRELSFEGVTPFEKKVYEWL
+TKNVKRGSVITYGDLAKALNTSPRAVGGAMKRNPYPIVVPCHRVVAHDGIGYYSSGIEEKKFLLEIEGVKEWTS
+>gi|159901119|ref|YP_001547366.1| methylated-DNA--protein-cysteine methyltransferase [Herpetosiphon aurantiacus DSM 785]gi|159894158|gb|ABX07238.1| methylated-DNA--protein-cysteine methyltransferase [Herpetosiphon aurantiacus DSM 785]
+--------------------SEGLLLASFADDDsellAELTEA------Yperlllyrsnt----------------LLDQAFYQYQAYFSGQRQQFALP
+IAwHGSAQQQAIWQQIIQ-IPFGQQWSYQQLAQTLPTPyqaAHAINQALRHNPLALIIPCHRLSNSPqGLGYYRWGrVRQQQ---LCDRE-----
+>gi|322384642|ref|ZP_08058320.1| O6-methylguanine-DNA methyltransferase-like protein [Paenibacillus larvae subsp. larvae B-3650]gi|321150527|gb|EFX44008.1| O6-methylguanine-DNA methyltransferase-like protein [Paenibacillus larvae subsp. larvae B-3650]
+-----HLNRGNWNLHLAAT----SKGLCYVESGDSS---WEGLQRWAEMRLPHSQLKRD-DNRMNRYKEQFIQYLERERSdFTfPLDLH-GTPFQLTVWK
+ALQE-LSYASTYAYSDIAELIRRPgaARAVGAAIGANPVLIAIPCHRVIGKNRtLTGYRGGLKMKTDLLQLEKSRS---
+>gi|339449054|ref|ZP_08652610.1| methylated-DNA/protein-cysteine methyltransferase [Lactobacillus fructivorans KCTC 3543]
+-----SV-hVNGDKIFFTI-DD---HGLNFVSsPGQ-gV-SQ---LL--DfyTNDH---FEYAKNSERSLLYRKTIKNYLRGKSTdLDlPI--dfmsY-G
+SDEGRLIWNEIAQ-IPFGELVTVSDLAD--QSGlgPDKVELAISKSPIWLVLPLHRVTDRNGrYP-YRTGDTTRDFLVDLE-------
+>gi|302547238|ref|ZP_07299580.1| ADA regulatory protein [Streptomyces hygroscopicus ATCC 53653]gi|302464856|gb|EFL27949.1| ADA regulatory protein [Streptomyces himastatinicus ATCC 53653]
+----------------------GIc-SVLTGDQL--pgDALtgDAEAaLVGRLRKRfPKA-HLIRag--REFDD-RVAAAVRQSEPPRLgRdLPLNIR-V
+TAMSERLRKALRE-TPSEPSVQTR-------------------------------------------------------------
+>gi|90417471|ref|ZP_01225394.1| O6-methylguanine-DNA methyltransferase [marine gamma proteobacterium HTCC2207]gi|90330712|gb|EAS45991.1| O6-methylguanine-DNA methyltransferase [marine gamma proteobacterium HTCC2207]
+-------------------TPRGICQVTFSNGLPliAFVSN-------LQRLLPEAKLLRTEPEPIAVFESIFS-rN-KPI----DktLNLHlFALPTHT
+NVWRILLA-TDPGTLTDHIAIAKAVGRRksTLATHNAITSNPIAFFIPSHRAVDPEGhVGDYRWGVTRKHTMHAWECAT----
+>gi|262375845|ref|ZP_06069077.1| methylated DNA-protein cysteine methyltransferase [Acinetobacter lwoffii SH145]gi|262309448|gb|EEY90579.1| methylated DNA-protein cysteine methyltransferase [Acinetobacter lwoffii SH145]
+--------------------------------------------------------------------------------------SANQEMTEMILVVV
+NQ-IPYAKVATYGQIARLAGLPkhARLVGRVLSHLESDTNIPWYRVINAQAKISL-KQLDEhgqniQQQKLMQEGI-----
+>gi|153952539|ref|YP_001398247.1| methylated-DNA--protein-cysteine methyltransferase [Campylobacter jejuni subsp. doylei 269.97]gi|152939985|gb|ABS44726.1| methylated-DNA--protein-cysteine methyltransferase [Campylobacter jejuni subsp. doylei 269.97]
+-------------------YKIPLCYLSLHSDGKFLTGVdFCDN-----------KRSEKNCSLLDLAKYELDLYFTHKLKkFSvPVLV-QGTDFESKVY
+KALMK-IPYGKIATYKDIAEKkivklCTDTktQIRI------------------------------------------------
+>gi|313127164|ref|YP_004037434.1| methylated DNA-protein cysteine methyltransferase [Halogeometricum borinquense DSM 11551]gi|312293529|gb|ADQ67989.1| methylated DNA-protein cysteine methyltransferase [Halogeometricum borinquense DSM 11551]
+-----------------------------------------------------------------PILDRVFAYLDGDEDhFDDAPVAlTVPTDHRRVLD
+AVRN-IPYGETIALRRVIRMAGMdPededdVATARSALRENPVPLFIPDHRVDD--APGAIPEAVAR--RLRQVESA-----
+>gi|336393345|ref|ZP_08574744.1| hypothetical protein LcortK3_11535 [Lactobacillus coryniformis subsp. torquens KCTC 3535]
+VIYYRRHNLAGHTYYLGA-TAQGLCFVGSWA--QTL-AE-------LQSFYPLAELRPATT-QTEAAATELAQYLNGQRRkFTiPLAWPQATPLQQAV--
+----------------------------------------------------------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	2254	*	*	1087	*	*	2744	*	*	*	2553	*	*	1
+       0	*	*	*	*	*	*	3290	0	0	
+
+L 2    *	*	*	*	3181	*	*	1483	*	911	*	*	*	*	*	*	*	*	*	*	2
+       0	*	*	*	*	*	*	4174	0	0	
+
+S 3    *	*	*	3185	*	*	3799	*	3037	*	*	2714	*	*	*	3166	3800	*	*	1471	3
+       0	*	*	*	*	*	*	4792	0	0	
+
+V 4    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2175	*	361	4
+       0	*	*	*	*	*	*	4792	0	0	
+
+E 5    *	*	1496	1722	*	*	*	*	*	*	*	3750	*	*	2430	3598	*	*	*	*	5
+       0	*	*	*	*	*	*	4792	0	0	
+
+K 6    *	*	*	*	4657	*	4573	3654	2504	4729	*	3761	*	3822	3506	2444	2540	*	*	4770	6
+       0	*	*	*	*	*	*	5969	0	0	
+
+F 7    4374	*	*	*	1791	*	4668	2886	*	2361	*	*	*	*	*	*	4632	3020	4360	3622	7
+       137	*	3466	*	*	*	*	5969	0	0	
+
+R 8    *	*	*	4497	*	*	*	*	3794	*	*	2754	2795	2560	3158	3553	2513	4341	*	*	8
+       0	*	*	0	*	0	*	5729	1083	1083	
+
+V 9    *	*	*	*	2264	*	3025	1898	*	3197	*	*	*	*	4622	4609	*	2252	*	*	9
+       0	*	*	*	*	*	*	6013	0	0	
+
+G 10   4731	*	3121	*	*	2450	*	*	3261	2861	*	2665	3591	4816	4732	3669	*	5056	*	*	10
+       0	*	*	3170	170	*	*	6013	1003	0	
+
+E 11   4638	*	2733	3995	*	2141	4621	4668	*	*	*	2010	3813	4746	*	4626	*	*	4545	*	11
+       59	4638	*	1585	585	*	*	6121	1012	0	
+
+R 12   *	*	4544	*	*	2224	3435	*	3458	*	4855	*	*	3642	2811	3807	5182	*	2297	*	12
+       0	*	*	*	*	*	*	6273	0	0	
+
+V 13   3492	*	*	3928	3849	*	4473	5076	3619	*	*	3364	3874	4552	*	2895	2172	4168	*	*	13
+       0	*	*	*	*	*	*	6368	0	0	
+
+V 14   *	*	*	*	3263	*	*	1703	*	2436	*	*	*	*	*	*	*	2895	3784	2345	14
+       0	*	*	*	*	*	*	6682	0	0	
+
+W 15   4622	*	*	5218	4008	4053	4036	*	*	2769	*	*	*	*	*	3234	3864	*	2784	1825	15
+       0	*	*	*	*	*	*	6682	0	0	
+
+I 16   3862	*	*	*	3059	*	*	2097	*	1575	*	*	*	*	4965	*	*	2253	*	*	16
+       0	*	*	*	*	*	*	7551	0	0	
+
+G 17   1546	*	*	*	3102	3224	5141	4085	*	3156	*	*	*	5209	*	4260	3860	3530	*	*	17
+       0	*	*	*	*	*	*	7551	0	0	
+
+V 18   2271	5518	*	3878	*	5316	*	3010	5182	4073	5216	*	*	*	5252	4289	3846	1894	*	5391	18
+       973	*	1028	*	*	*	*	7551	0	0	
+
+I 19   2753	*	*	4163	3284	*	*	2993	*	4003	*	*	*	*	*	*	2094	1884	*	*	19
+       287	*	2470	0	*	0	*	4730	1039	2212	
+
+F 20   4982	6108	3541	4888	4075	6563	5407	5350	*	*	6569	5552	*	6542	6173	2221	1759	6074	4570	3428	20
+       62	4570	*	1139	873	*	0	7880	1116	1172	
+
+S 21   3915	*	1983	2148	*	4274	5026	*	4589	*	*	4114	3831	4478	3580	3941	6705	*	*	*	21
+       174	5740	3395	2955	199	*	0	7969	1016	1172	
+
+G 22   5569	*	3124	3412	*	2973	4564	5619	3342	*	6699	6538	5219	5321	2385	2775	3799	*	*	*	22
+       37	5290	*	0	*	4603	61	7894	1070	1700	
+
+R 23   3154	*	*	4968	6456	1185	*	*	3185	*	*	*	3031	5231	4940	4795	4224	6757	*	6143	23
+       32	5509	*	0	*	1749	509	8038	1023	1671	
+
+V 24   6534	*	5650	*	*	*	*	1900	*	1371	*	*	6652	*	*	6496	4010	2111	*	*	24
+       90	4052	*	0	*	0	*	8075	1179	1463	
+
+Q 25   4202	2528	6393	5473	4713	2560	5088	4175	4516	3686	*	5832	*	4220	4746	6814	5257	3099	*	3971	25
+       12	6923	*	0	*	0	*	8034	1004	1179	
+
+G 26   2597	4318	5511	6613	4129	2343	5958	*	4395	4191	5952	4579	6930	4688	3085	4180	5354	6279	7373	4095	26
+       76	6402	4672	0	*	*	*	8194	1004	0	
+
+I 27   5849	4829	*	*	5611	*	*	1921	*	1386	4699	5968	*	*	*	5450	6349	2391	*	*	27
+       12	*	6972	*	*	*	0	8194	0	1134	
+
+A 28   2712	5207	4477	3512	*	4469	*	3916	6851	3494	5111	4989	*	4701	*	3002	2962	3700	6424	4710	28
+       33	5473	*	1958	429	0	*	8190	1077	1165	
+
+F 29   6294	6891	6484	*	1361	6417	*	3764	5829	2559	5960	*	5281	6809	5293	5693	5363	4848	4134	3409	29
+       83	5010	5315	1033	968	*	*	8193	1131	0	
+
+A 30   2329	*	6478	4255	6759	2817	5063	4494	*	3911	*	5518	4423	5295	*	2829	3665	3071	7602	6992	30
+       278	4292	3011	1438	665	1517	620	8110	1205	1122	
+
+F 31   3006	5107	2035	4616	5444	3150	6531	5399	*	4267	*	4208	5053	5333	5686	2762	3971	*	*	*	31
+       161	3855	4765	0	*	264	2579	8045	1305	1582	
+
+D 32   4757	*	1710	2896	*	4310	5800	6839	4650	5099	*	3182	4273	4251	4630	4052	5158	7039	*	5252	32
+       167	6954	3303	0	*	2952	200	8136	1000	1263	
+
+R 33   4623	5751	3304	3009	6250	1957	5607	*	3902	4412	6277	4878	3293	*	3607	4445	5342	*	*	6823	33
+       189	6921	3130	2000	415	485	1808	8149	1004	1651	
+
+G 34   2858	*	2866	3894	*	4060	4464	3739	3810	4077	*	5415	3724	3687	4631	5734	6587	3982	5770	5722	34
+       160	3789	4930	393	2067	1026	975	7978	1414	1591	
+
+T 35   3280	4169	3939	2368	5054	3717	7014	6807	4019	4608	5813	5087	*	3760	5732	3313	4483	4716	*	4890	35
+       202	3778	4107	1120	889	745	1310	7960	1624	1454	
+
+L 36   4115	*	4808	4106	2533	5330	6294	4600	4830	1649	5708	7358	5766	5773	4144	4401	5859	4936	6500	5944	36
+       334	*	2276	*	*	*	0	8065	0	1427	
+
+M 37   3437	5243	5174	4520	5400	4520	5216	3487	*	2592	5379	*	6438	5342	4718	4246	2712	3038	*	4818	37
+       67	6329	4926	1075	928	1551	602	7888	1132	2466	
+
+K 38   3980	*	3342	2915	6523	2688	5901	*	3289	4845	*	5645	6347	3628	3009	3029	6228	6339	*	*	38
+       34	5420	*	1000	1000	2763	230	7952	1028	2117	
+
+R 39   3281	5425	4580	2921	5294	5818	4879	4155	3925	3678	6211	5070	5178	3465	3486	5009	5118	4117	4503	6592	39
+       1007	1634	2472	251	2649	1222	808	7976	2165	1956	
+
+I 40   2863	6451	4871	4271	2982	*	6612	3164	*	2286	5442	6512	4354	5680	4196	4373	6562	4750	4771	5494	40
+       0	*	*	*	*	2186	358	7926	0	2421	
+
+H 41   4890	5177	3564	2397	*	4991	4009	5554	3503	5120	5757	4251	2912	3988	4114	4108	6606	5186	6369	*	41
+       89	4997	5118	2307	326	2914	205	7988	1067	2120	
+
+D 42   2758	6928	3105	3709	*	3781	6353	4912	4442	4280	*	4110	4795	4862	4065	3711	3211	4191	6908	*	42
+       159	5223	3687	0	*	1445	660	7972	1028	2053	
+
+L 43   3960	6821	4505	3231	5496	4572	*	4843	4270	1599	6694	5790	5015	3226	6510	4473	4924	5251	7079	7095	43
+       334	7165	2325	3000	193	*	0	8020	1000	2055	
+
+A 44   3085	6490	5388	4598	3247	4747	*	2977	2907	2924	*	6327	6637	3722	4864	4379	4907	4128	*	*	44
+       100	6394	4179	0	*	3162	171	7795	1000	2699	
+
+E 45   3735	*	3578	2934	*	2774	4068	6281	2907	6487	*	4346	*	5511	3461	3556	5452	*	*	3691	45
+       61	6391	5093	1000	1000	3162	171	7746	1000	2690	
+
+H 46   4087	*	4294	3385	2502	4457	4260	4863	3523	4770	*	5620	6733	4125	3741	5213	6311	4492	3517	5111	46
+       111	5969	4112	3459	138	837	1184	7337	1004	2686	
+
+L 47   3169	5035	5113	5769	4115	4454	5415	4583	5862	1293	5867	*	5382	*	5758	6717	5824	3432	6961	5070	47
+       280	5113	2763	1000	1000	*	0	7668	1083	2038	
+
+G 48   3462	*	4341	4005	*	3134	5356	*	3280	*	5526	6438	3422	3276	2448	3804	4349	5459	*	*	48
+       137	3750	5946	190	3019	3823	106	8038	1250	2525	
+
+K 49   3504	5724	4227	3694	*	4223	6605	4783	2688	4622	5462	3907	5404	4110	2983	2889	5449	*	*	6494	49
+       0	*	*	*	*	2860	214	7982	0	2461	
+
+R 50   3990	*	3826	3443	4617	6495	5406	4888	3902	3498	*	4791	6450	3703	1903	5318	4630	*	*	4244	50
+       699	2385	2376	99	3912	2092	386	8105	1644	2270	
+
+G 51   4749	*	4587	3617	2950	2345	5351	5724	5396	4187	*	5047	4289	6178	*	5462	4646	4959	2528	5157	51
+       190	*	3015	*	*	1645	556	7993	0	2600	
+
+V 52   3367	*	5062	5161	5300	5029	4560	5162	3544	4053	6153	6656	1486	6123	6133	4886	*	3322	*	5088	52
+       183	3640	4693	1677	541	2950	200	8284	1200	2526	
+
+S 53   3263	6068	4371	3763	6603	4076	4910	*	3081	5752	6103	2770	3836	3687	3617	4164	4951	5028	*	6606	53
+       280	*	2502	*	*	2293	329	8189	0	2502	
+
+I 54   1746	5993	4026	3866	5650	5405	5490	4092	4728	3884	*	4585	5699	*	6525	4537	4084	3510	*	3950	54
+       99	6325	4223	2585	263	1512	623	7599	1000	2666	
+
+S 55   5053	*	4167	3404	5534	5617	4620	4042	3008	4617	*	4094	6396	3932	3132	4006	3170	4558	*	4458	55
+       109	5161	4486	1217	812	796	1237	8334	1063	2232	
+
+L 56   3777	*	5158	3540	4793	6096	*	3416	6811	1724	5025	6057	4982	4504	5342	6318	5188	3638	4926	4114	56
+       58	5519	5815	1479	641	3325	152	8247	1049	1671	
+
+D 57   4581	5478	4438	3315	5831	5840	6007	4280	3862	3512	5185	6685	5122	3342	4630	3990	4024	2839	5548	4636	57
+       11	*	7020	*	*	1242	792	8219	0	1685	
+
+V 58   4092	*	3741	2411	7061	3466	7047	4450	3673	4464	6619	5050	3573	3271	3625	5311	5832	4826	*	5922	58
+       88	4217	7455	1000	1000	3232	162	8246	1179	1433	
+
+Q 59   3617	*	2190	3411	*	2989	5244	5043	4468	4994	*	4079	5102	4708	4738	3887	4347	4483	*	5595	59
+       72	5992	4918	1585	585	1507	626	7775	1048	1688	
+
+P 60   3748	5992	2250	2987	*	5976	6694	5761	4928	4891	*	3136	3988	4550	3894	3519	3743	6131	*	*	60
+       250	4850	3007	2110	380	221	2818	7772	1169	1644	
+
+S 61   3434	5256	2875	3091	7090	4049	5401	6655	4804	3621	*	4179	3676	6069	5054	2689	3723	*	*	*	61
+       42	*	5134	*	*	328	2297	7838	0	1569	
+
+D 62   2819	*	4147	2236	6116	3626	4791	5847	4051	5018	7334	4589	3791	5438	4821	3902	3787	5546	*	6602	62
+       98	4712	5170	1210	817	578	1599	7786	1269	1255	
+
+Y 63   4685	6524	6585	4960	3626	6656	7066	2851	5029	2651	4739	4954	4620	5053	4051	5434	3814	2962	5887	4625	63
+       30	*	5582	*	*	636	1488	7298	0	1175	
+
+P 64   3089	6752	4289	4481	4626	6582	7138	3466	4293	2248	5389	6308	3255	4585	6485	4508	4322	4190	5896	7017	64
+       74	6253	4758	0	*	0	*	7245	1083	1160	
+
+E 65   2744	*	3196	2758	*	6058	5449	6876	3137	4211	*	4621	3951	3609	4119	4485	4627	4504	*	7451	65
+       149	6669	3506	0	*	0	*	7323	1031	1196	
+
+K 66   4745	7118	5126	3322	7764	5643	6045	4241	3230	2245	*	5926	3880	3699	3554	4375	4438	5267	5569	5119	66
+       57	6018	5406	2230	346	946	1056	7223	1021	1447	
+
+V 67   2098	4099	*	7338	5523	7365	6925	2930	7152	2744	6263	*	6795	*	5267	6960	3466	2851	7127	3540	67
+       57	5955	5452	1337	727	1228	803	7310	1038	1381	
+
+F 68   2881	6110	6939	3732	4774	7330	6446	3711	3105	3513	6197	6892	*	4638	3051	4218	4220	2965	*	6181	68
+       89	*	4057	0	*	742	1315	7344	1040	1371	
+
+K 69   3168	6735	3255	3219	6174	5215	4996	6127	2677	5958	*	5080	*	3221	3343	4168	4093	5257	*	4942	69
+       10	7182	*	4789	53	547	1664	7251	1057	1460	
+
+V 70   2991	*	*	2830	5927	4980	*	3463	5558	4018	*	6981	*	2368	4085	5160	5930	4982	2829	4858	70
+       0	*	*	*	*	1997	416	7405	0	1170	
+
+L 71   5046	*	*	*	2250	*	6968	2802	5918	1094	5379	*	*	*	*	*	*	4061	5371	6044	71
+       15	*	6591	*	*	1865	463	7355	0	1116	
+
+I 72   3248	7348	2978	2984	4388	5696	5552	4774	3175	3905	*	4007	7506	4017	4796	4183	4004	4845	*	6034	72
+       117	*	3686	*	*	709	1364	7370	0	1146	
+
+G 73   1542	*	3965	2821	*	3157	5724	4676	4555	5208	*	4896	6679	4234	4252	5337	5595	7024	*	6783	73
+       23	6743	7220	2330	320	2410	301	7257	1103	1522	
+
+E 74   5683	6069	6244	4929	4214	6978	5816	*	5564	5726	7085	5461	*	5920	6433	7042	5465	5396	5961	574	74
+       20	*	6164	*	*	2835	218	7316	0	1454	
+
+L 75   4903	*	*	6866	1052	*	*	4525	*	1931	*	6222	6905	*	6467	4641	5415	5763	4709	5888	75
+       15	6550	*	3322	152	201	2943	7271	1008	1455	
+
+D 76   2423	*	3024	2792	*	4785	5133	6376	3974	7293	6730	3243	5560	4396	4306	3545	4070	6418	*	6952	76
+       25	6549	7336	1000	1000	*	0	7332	1006	1075	
+
+N 77   5462	*	3463	5261	6842	879	7041	*	3627	7408	*	3629	4144	4743	5093	6678	*	*	*	*	77
+       37	5717	7254	2150	368	*	0	7383	1022	1129	
+
+A 78   4903	*	3153	2592	*	5434	5872	4261	2527	5756	*	5307	3121	3731	3792	4831	4217	6112	7063	7547	78
+       124	4846	4388	1784	495	1276	768	7383	1103	1166	
+
+S 79   4320	6272	4206	3299	6035	4802	*	5169	3882	2843	6914	4712	4533	4830	2142	4128	4614	4633	7493	*	79
+       73	5331	5370	724	1341	909	1097	7244	1214	1411	
+
+F 80   4902	*	3779	4733	5921	5217	4246	6181	3509	4697	6597	5107	2736	3256	3974	4097	3467	3412	6637	6759	80
+       1130	881	*	100	3894	960	1041	7283	3889	1377	
+
+L 81   5082	*	5509	5144	1548	5458	4987	4143	5563	2671	6702	7234	3545	6304	3919	5128	4916	5132	6750	6810	81
+       179	3280	6194	168	3184	1596	579	7299	1497	1215	
+
+R 82   5820	5523	2564	3222	4022	4855	5848	5153	4109	3056	6272	5285	4841	6989	5355	3002	3234	5177	*	*	82
+       1034	1019	5794	465	1859	184	3059	7276	3831	1246	
+
+E 83   4088	*	3058	3667	5918	*	5047	6057	4569	5536	*	5457	1325	6485	7604	4279	3798	4491	7298	7774	83
+       69	4647	7141	602	1552	466	1858	7015	1169	1150	
+
+L 84   4720	7177	*	6349	5070	*	*	2476	5806	1005	6597	*	5298	7136	6095	*	6118	3188	6076	5595	84
+       23	*	5987	*	*	1304	749	7356	0	1044	
+
+S 85   4251	7371	1913	4877	*	6383	4952	5603	4099	5694	*	3436	2027	6247	4641	4620	4666	7020	*	5598	85
+       57	6821	5074	1152	863	2689	243	7356	1038	1170	
+
+F 86   7549	6995	*	6062	3997	*	5042	3217	6448	1202	5305	*	4735	7721	7119	6396	5120	3317	4756	3787	86
+       136	7121	3590	1455	655	1152	863	7345	1258	1308	
+
+E 87   3092	7072	3092	3430	5104	6741	4131	7677	3625	4438	*	4698	3795	5665	3434	3020	5330	5181	7258	4942	87
+       1888	1088	1946	531	1700	109	3786	5936	3354	1691	
+
+G 88   3797	*	3902	4075	3591	3477	4591	4286	3304	3389	*	6762	5471	4086	3710	5556	4343	5342	6495	3917	88
+       40	5202	*	1271	772	0	*	6801	1165	2532	
+
+V 89   3164	6653	6628	4981	5524	1079	6120	5583	5973	4159	5523	6083	5402	6765	6402	4695	4428	4136	*	6475	89
+       30	5585	*	0	*	*	*	6289	1078	0	
+
+T 90   3553	*	5163	4832	*	*	6015	6989	6429	5133	5158	5719	5548	5748	5361	2295	1079	*	*	*	90
+       0	*	*	*	*	*	*	6184	0	0	
+
+P 91   2591	*	2677	2652	6726	5353	5743	7789	5647	4943	*	4515	2181	4769	*	3906	5236	6071	*	*	91
+       24	5915	*	1000	1000	*	*	6208	1023	0	
+
+F 92   6366	*	6240	4771	665	*	7304	6399	4816	3505	6261	5676	*	5349	5053	6908	4986	6203	6910	5910	92
+       44	*	5060	3322	152	*	*	6195	1011	0	
+
+E 93   4495	*	4924	4560	4886	5315	4488	7101	5128	*	6784	4809	*	1162	3505	5192	4398	4476	*	4590	93
+       0	*	*	*	*	0	*	6207	0	1137	
+
+K 94   4488	5648	6509	3165	*	7898	5518	3759	3050	3631	8473	5640	*	2777	2320	4346	5808	4037	*	6089	94
+       11	*	7004	*	*	*	*	5821	0	0	
+
+K 95   3236	8039	4341	4113	*	7448	*	7153	2215	4447	6439	4763	*	3342	2028	3884	5065	5715	*	*	95
+       0	*	*	*	*	0	*	5748	0	1048	
+
+V 96   4452	*	5932	*	4235	*	*	2565	*	4212	5374	*	*	*	*	*	5059	718	*	*	96
+       0	*	*	*	*	*	*	5748	0	0	
+
+Y 97   *	6193	*	5885	6060	*	6375	5608	*	2152	*	*	*	*	4175	*	5893	7009	1169	2537	97
+       34	*	5411	*	*	*	*	5724	0	0	
+
+E 98   4629	*	3228	2846	*	5072	6758	6164	2892	5174	5499	3818	*	2449	2902	5425	4900	6489	5607	*	98
+       203	5910	3128	2000	415	*	0	5831	1036	1066	
+
+W 99   1701	5661	*	3142	4291	4927	*	4102	5338	3959	4933	6629	*	5365	6894	4175	3633	3625	6788	5236	99
+       0	*	*	*	*	211	2876	5714	0	1755	
+
+L 100  5120	5399	7123	*	*	*	*	2767	*	968	3597	*	*	6381	*	*	6176	2523	*	*	100
+       43	8424	5226	2322	322	*	0	5830	1000	1066	
+
+T 101  3439	5940	*	6486	6835	*	6326	4038	4072	2218	4074	*	*	3327	2507	4503	4881	3446	*	5717	101
+       38	*	5280	0	*	456	1884	5813	1000	1232	
+
+K 102  2599	7025	5142	2865	*	5713	4705	6575	2494	4628	*	4528	*	2984	4274	3845	3640	7748	*	*	102
+       2172	*	362	*	*	622	1513	5720	0	1202	
+
+N 103  3014	*	*	4009	5193	5177	4702	*	5000	2693	*	3087	*	3083	4750	2898	3386	4957	*	*	103
+       0	*	*	*	*	20	6213	5125	0	5628	
+
+V 104  *	*	*	7100	*	*	*	819	*	3044	5887	*	*	*	*	6634	4572	2087	*	*	104
+       0	*	*	1000	1000	*	0	5800	1040	1040	
+
+K 105  4816	*	5432	7013	5851	6018	*	*	3534	7587	*	7280	438	7982	5972	5067	6063	*	*	*	105
+       15	6615	*	0	*	*	0	5800	1008	1040	
+
+R 106  4174	6446	*	4020	2745	*	5157	5736	4561	4672	5866	6907	3414	5486	3246	4409	5454	5763	5373	2092	106
+       0	*	*	*	*	0	*	5800	0	1040	
+
+G 107  5792	*	5837	6807	*	147	*	*	6911	*	*	*	*	6578	6736	5870	*	7103	*	*	107
+       0	*	*	*	*	*	*	5801	0	0	
+
+S 108  4930	6111	6000	2105	7179	7152	5137	6780	2352	*	8003	5720	6807	3143	2838	4000	3328	6586	*	*	108
+       15	*	6574	*	*	*	*	5801	0	0	
+
+V 109  4797	7154	*	*	6847	6561	6381	4731	6724	4013	5511	*	7165	6783	6253	4584	1478	1549	5926	7207	109
+       0	*	*	*	*	*	0	5769	0	1023	
+
+I 110  2856	4847	*	*	7676	8865	*	2896	4889	3899	5050	*	*	6737	3459	4892	2484	2202	5833	7137	110
+       0	*	*	*	*	*	0	5769	0	1023	
+
+T 111  5355	5177	6075	*	*	7419	7954	*	*	*	*	6491	6455	6966	*	1441	983	*	*	5758	111
+       24	*	5919	1585	585	0	*	6003	1023	1023	
+
+Y 112  5871	5573	*	*	5390	*	5927	*	*	*	*	*	6598	*	*	6858	6801	4662	6377	248	112
+       0	*	*	*	*	*	0	5776	0	1080	
+
+G 113  4026	7194	5060	4864	7688	1268	6552	5927	3443	8309	*	7005	*	3445	3573	3041	5636	*	*	*	113
+       0	*	*	*	*	*	0	5776	0	1080	
+
+D 114  3266	*	2206	1812	*	4802	5053	*	6192	7286	6022	*	*	2297	5223	5966	4839	*	7110	7778	114
+       0	*	*	*	*	*	0	6043	0	1080	
+
+L 115  6353	*	*	7761	5133	*	*	1374	*	1301	7607	*	*	5274	*	*	*	2922	*	*	115
+       17	*	6441	2000	415	0	*	6043	1080	1080	
+
+A 116  348	7751	*	*	*	3310	*	6349	*	6404	*	*	*	*	5954	4626	6117	6936	7513	*	116
+       19	*	6256	*	*	*	0	6056	0	1023	
+
+K 117  2522	*	3540	2724	6787	6562	6093	*	2700	6423	5331	4961	*	3999	2740	4568	4681	4952	*	7384	117
+       26	7713	6259	769	1276	0	*	6031	1053	1094	
+
+A 118  2587	6101	4218	4163	5935	5711	6855	3942	3940	2633	4103	6420	*	4360	2695	4963	5282	5415	*	5665	118
+       32	5522	*	1662	548	1874	460	5949	1094	1062	
+
+L 119  2191	4886	*	*	4985	*	*	2234	*	1755	6765	*	6578	*	*	5394	4101	3251	*	*	119
+       77	4260	*	2612	258	0	*	5948	1369	1032	
+
+N 120  5251	*	3904	4687	7650	644	4489	*	5734	7728	*	4257	5631	5349	5628	5039	8084	7969	*	*	120
+       75	5227	5379	746	1308	*	0	5926	1108	1048	
+
+T 121  5557	6448	4944	5049	4840	5834	5211	5799	4023	3395	4187	3147	8383	4933	2895	3111	3704	3728	*	4485	121
+       90	4198	7366	736	1323	2465	288	5949	1257	1186	
+
+S 122  3624	*	5368	6247	*	3777	4535	4999	4437	5188	*	*	1154	7256	5603	2998	4082	*	*	*	122
+       2040	425	6365	1159	856	0	*	5892	5313	1186	
+
+P 123  1567	6355	*	*	6190	6407	5097	4580	6074	4630	8004	*	2674	5159	*	3491	4826	2787	*	4610	123
+       36	7885	5619	2000	415	1072	931	5900	1000	1087	
+
+R 124  5010	*	5341	5453	*	*	5460	6223	6510	5947	*	*	6602	3979	443	4652	6805	*	*	*	124
+       0	*	*	1000	1000	1485	638	5876	1023	1150	
+
+A 125  843	*	6469	5510	5821	*	5479	5964	6278	4093	5035	*	*	3551	5985	5550	4321	4614	6014	5492	125
+       0	*	*	1000	1000	0	*	5911	1080	1080	
+
+V 126  3989	*	*	*	*	*	*	2722	*	*	*	*	*	*	*	6282	5056	429	*	*	126
+       0	*	*	*	*	*	*	5958	0	0	
+
+G 127  2236	6279	*	6302	*	753	5964	*	6895	5596	*	6699	6383	*	5130	5387	6823	4610	*	*	127
+       34	*	5414	*	*	*	*	5955	0	0	
+
+G 128  3321	*	*	5433	6953	4044	5764	6605	4983	4815	5974	3236	*	3623	2988	2553	3009	6285	4807	4649	128
+       0	*	*	0	*	0	*	5888	1085	1085	
+
+A 129  543	5940	*	*	*	7410	5959	3663	*	4404	6606	*	*	6076	*	5653	5082	4201	*	5608	129
+       0	*	*	*	*	*	*	5947	0	0	
+
+M 130  5643	2912	*	*	*	*	*	3238	*	1633	2513	4010	*	*	*	5974	*	2594	*	*	130
+       75	5542	5096	1599	578	*	*	5947	1072	0	
+
+K 131  2444	*	*	6498	5928	1715	4879	*	2746	*	6796	4424	*	6392	3655	3088	5412	*	*	6263	131
+       67	4897	6366	711	1362	*	0	5849	1180	1187	
+
+R 132  2230	8112	5570	4195	6280	6842	4365	*	2795	6120	5861	3844	6774	3780	2964	3183	4232	6420	*	7144	132
+       65	5250	5835	0	*	2566	267	5885	1091	1246	
+
+N 133  4734	7176	*	5952	*	4928	6175	6249	*	4665	5760	495	5226	*	*	5124	4525	6241	*	*	133
+       44	*	5052	*	*	1468	647	5875	0	1279	
+
+P 134  4213	*	7491	5238	5710	6307	4993	*	3692	5542	*	5988	927	4850	3762	3989	6337	*	5883	6688	134
+       50	5388	6575	515	1735	*	0	5786	1076	1319	
+
+Y 135  4375	6800	4485	5002	3092	5080	*	2174	6651	2153	*	6776	5445	*	6389	5582	4822	2972	6237	5461	135
+       60	*	4611	0	*	372	2138	5761	1003	1367	
+
+P 136  2395	5505	6619	5259	7181	3940	6385	*	5620	3877	6387	5461	1714	*	4183	3781	5030	4559	5088	6738	136
+       70	5002	5956	3594	125	0	*	5864	1130	1253	
+
+I 137  5382	*	4778	4690	5029	4337	*	1724	*	2028	5741	*	5877	6470	*	3469	4841	3974	*	4757	137
+       44	*	5045	*	*	908	1098	5936	0	1032	
+
+V 138  4351	7584	4644	4062	3589	5149	6441	2275	6793	2199	*	4360	*	*	5220	*	6574	2401	*	6117	138
+       0	*	*	*	*	2589	262	5890	0	1176	
+
+V 139  5553	*	*	*	7297	7125	*	1300	*	2926	*	7002	*	*	7633	*	5379	1552	6027	4870	139
+       0	*	*	1000	1000	0	*	5896	1023	1139	
+
+P 140  5739	*	*	*	*	6645	*	*	*	*	*	5958	97	*	*	*	6456	*	6856	*	140
+       0	*	*	*	*	*	*	5948	0	0	
+
+C 141  4263	695	5860	*	*	*	*	*	*	6301	*	*	*	*	6063	4683	*	6366	2195	5974	141
+       0	*	*	*	*	*	*	5948	0	0	
+
+H 142  *	*	*	*	4395	*	259	*	*	*	*	*	*	5714	*	*	*	*	3612	5958	142
+       0	*	*	*	*	*	*	5948	0	0	
+
+R 143  5751	*	*	*	*	*	*	*	*	*	*	*	*	*	49	6063	*	*	*	*	143
+       18	*	6361	*	*	*	*	5948	0	0	
+
+V 144  4274	7234	*	*	*	*	*	2512	*	4810	*	*	*	*	*	*	5965	485	*	*	144
+       36	5345	*	2000	415	*	0	5912	1065	1023	
+
+V 145  6843	5184	*	*	*	*	*	1923	5925	2395	6228	*	*	*	5259	6673	4580	1313	*	*	145
+       30	*	5619	*	*	*	0	5912	0	1023	
+
+A 146  3230	7301	3863	6474	7144	2427	5120	*	4248	5249	*	2893	4319	5805	2412	4106	4598	*	*	5922	146
+       26	7144	6534	2585	263	*	0	5866	1000	1150	
+
+H 147  2249	7225	4785	*	*	5214	5884	5747	2761	*	*	4569	5314	4827	4633	1718	4995	4441	*	6322	147
+       0	*	*	*	*	*	0	5847	0	1203	
+
+D 148  4396	*	1938	4857	*	3390	4890	*	4419	*	*	2277	5466	4518	5055	3156	4634	*	*	5273	148
+       82	4746	5812	2365	311	1013	987	5847	1244	1203	
+
+G 149  *	*	5320	7477	*	357	5790	*	6008	6871	6848	4674	6345	8005	5003	5011	*	*	*	5638	149
+       2080	407	6748	590	1574	396	2058	5873	5164	1184	
+
+I 150  5608	*	7173	6672	4803	5976	5384	2299	4486	1255	6037	*	3765	7560	*	6685	4857	3975	7615	6253	150
+       124	3930	5910	559	1638	*	0	5905	1288	1055	
+
+G 151  3910	6981	4131	6221	*	1227	*	4651	5779	4351	*	6228	3529	*	5837	4549	2985	6035	*	5710	151
+       106	5044	4634	0	*	243	2688	5871	1271	1157	
+
+Y 152  4908	7489	4571	4438	*	1211	4822	*	3488	5018	*	4142	5105	5161	4824	4717	3795	6351	*	6112	152
+       93	3999	*	1830	477	269	2555	5890	1322	1201	
+
+Y 153  4998	6364	6467	5502	2388	6465	6429	*	*	5225	*	*	4346	6273	5611	5111	6590	5396	*	897	153
+       58	6037	5364	426	1966	0	*	5940	1029	1000	
+
+S 154  2747	6348	6256	4866	5468	3043	4637	*	6507	6170	6415	4661	3528	4805	2373	2796	4234	6305	*	7433	154
+       73	6574	4685	0	*	356	2193	5898	1124	1098	
+
+S 155  3254	*	4830	4170	5590	1552	5263	6702	*	6012	7876	*	3701	7048	5411	3820	6188	*	2699	4611	155
+       203	2933	*	798	1235	484	1812	5857	1805	1190	
+
+G 156  4699	6327	5339	5595	*	499	5021	6460	7253	6973	*	6439	*	4999	7718	3945	5940	*	*	6559	156
+       122	3621	*	1538	609	*	0	5915	1404	1059	
+
+I 157  3552	5495	5254	4568	5600	4630	*	3243	6404	2189	*	6254	3673	5001	4477	4856	4187	2752	5582	*	157
+       61	5902	5342	1000	1000	646	1470	5915	1036	1059	
+
+E 158  3180	*	2580	2079	*	6349	5736	4937	4267	5346	6291	4686	5519	4198	4439	4092	4138	4898	5776	7893	158
+       72	4780	6338	756	1294	2177	360	5879	1154	1126	
+
+E 159  3607	7915	3856	3789	6984	*	6639	3224	4079	2778	4043	*	*	4202	2612	5541	4434	4325	5925	5069	159
+       35	6233	6554	1000	1000	0	*	5819	1021	1148	
+
+K 160  6364	*	*	5543	*	*	*	*	744	6353	5663	*	*	2092	3926	*	*	5896	*	5629	160
+       0	*	*	*	*	*	0	5893	0	1007	
+
+K 161  3459	6485	5903	3171	5864	5226	5613	4512	2741	4625	5230	6235	6364	3148	2078	5340	5784	5973	*	6456	161
+       88	*	4075	*	*	0	*	5893	0	1007	
+
+F 162  2339	*	5716	4242	3416	*	6871	4497	4281	4245	4938	7032	*	3670	3239	5562	4484	6331	2876	4625	162
+       34	6292	6560	0	*	1367	708	5793	1140	1277	
+
+L 163  4394	*	*	6471	*	*	6326	4565	5019	490	4150	*	*	6104	4050	*	6339	*	*	*	163
+       32	5497	*	0	*	1563	596	5823	1080	1199	
+
+L 164  *	*	*	*	*	*	5465	4430	*	261	6293	*	*	*	4750	*	6427	6164	*	5569	164
+       0	*	*	*	*	700	1380	5800	0	1241	
+
+E 165  2827	*	3734	2083	*	5757	7880	6851	3449	4522	5562	4522	*	3752	3158	4060	4051	6635	*	*	165
+       0	*	*	1409	681	857	1159	5863	1064	1064	
+
+I 166  3420	6659	5158	4007	4057	*	2635	5835	5575	1996	4412	5699	6748	5069	3770	*	5026	7257	3934	6059	166
+       37	7093	5772	0	*	0	*	5888	1002	1003	
+
+E 167  *	*	3858	121	*	*	*	*	6460	*	*	*	*	*	*	*	*	*	*	*	167
+       15	7303	7872	3585	126	1998	416	5883	1012	1150	
+
+G 168  3942	5382	*	6492	*	973	7044	*	3363	*	7393	6229	*	3721	3732	3913	4355	*	*	*	168
+       119	3715	8479	1933	438	1261	779	5870	1400	1159	
+
+V 169  2885	5584	5175	5157	5175	5316	4635	2651	6116	4874	*	4768	6228	4149	5836	4515	4496	2055	5982	5736	169
+       73	4720	6449	982	1018	1404	685	5842	1203	1115	
+
+K 170  2928	5190	4144	3375	*	5325	5079	4225	3573	2897	5131	4435	4833	5940	3940	5187	4325	3946	*	5134	170
+       0	*	*	*	*	0	*	5742	0	1140	
+
+E 171  4157	*	4027	2983	4104	1398	*	*	*	*	*	*	*	*	*	2061	3665	*	*	*	171
+       0	*	*	*	*	*	*	4181	0	0	
+
+W 172  *	*	*	*	*	*	*	*	*	2108	*	*	*	*	*	*	*	2224	852	*	172
+       0	*	*	*	*	*	*	2081	0	0	
+
+T 173  *	*	*	*	*	*	*	*	*	*	2108	*	1200	*	*	*	1587	*	*	*	173
+       0	*	*	*	*	*	*	2081	0	0	
+
+S 174  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	174
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  e2e8d293c6308e03168e6291d88b3e9e
+FAM   
+FILE  e2e8d293c6308e03168e6291d88b3e9e
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:04:27 2013
+LENG  50 match states, 50 columns in multiple alignment
+FILT  45 out of 47 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  4.0 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCHHHHHHHHHHHHHHCCCCCCCCCCCCCCCCCCCCCCCC
+>ss_conf PSIPRED confidence values
+98666661547899999999898731677888410023762301014789
+>Consensus
+xxmxxxSiqDRTxEFxsivxsxqkrxaxxxxxxrqxllxxxxxxxxxxxx
+>e2e8d293c6308e03168e6291d88b3e9e
+GAMAGMNIKDRTSEFQQSVLSYKKRNKNFREQQRERLQEKESENFANNTT
+>gi|149244238|ref|XP_001526662.1| conserved hypothetical protein [Lodderomyces elongisporus NRRL YB-4239]gi|146449056|gb|EDK43312.1| conserved hypothetical protein [Lodderomyces elongisporus NRRL YB-4239]
+---MSVSIQNRTIEFQQCVNTYEKINRKQQQQQqAQQAQHHGSG-------
+>gi|339467499|gb|EGP82602.1| hypothetical protein MYCGRDRAFT_101897 [Mycosphaerella graminicola IPO323]
+--TTHASIQDRTPEFRSILTAAQKSLARQRKPGaPITSQQSQPL-------
+>gi|299756116|ref|XP_001829105.2| integral membrane protein sed5 [Coprinopsis cinerea okayama7#130]gi|298411529|gb|EAU92740.2| integral membrane protein sed5 [Coprinopsis cinerea okayama7#130]
+--M--TSFQDRTTEFRTCVESIRSRSAPGARAEaKQRLLHQPNG-------
+>gi|238505886|ref|XP_002384145.1| ER-Golgi SNARE complex subunit (Sed5), putative [Aspergillus flavus NRRL3357]gi|220690259|gb|EED46609.1| ER-Golgi SNARE complex subunit (Sed5), putative [Aspergillus flavus NRRL3357]
+--MTGPSIQDRTGEFHAILGQAQKRVATNKVGSqRQALLSDSQRRQANG--
+>gi|328772031|gb|EGF82070.1| hypothetical protein BATDEDRAFT_18965 [Batrachochytrium dendrobatidis JAM81]
+-----MVGKNRTNEFLAVVESCLSRDAGIHRQQ-----------------
+>gi|299471589|emb|CBN79451.1| Soluble NSF Attachment Protein (SNAP) Receptor (SNARE) [Ectocarpus siliculosus]
+-----MTDRTDDFRLIAAALPPQPRRASPHPPK-----------------
+>gi|224112555|ref|XP_002316227.1| predicted protein [Populus trichocarpa]gi|222865267|gb|EEF02398.1| predicted protein [Populus trichocarpa]
+---TTTKYRDRTAEFHSITQTLKKIggIAPVHQNK-----------------
+>gi|255549032|ref|XP_002515572.1| syntaxin, putative [Ricinus communis]gi|223545516|gb|EEF47021.1| syntaxin, putative [Ricinus communis]
+---GKSSYRDRTQEFLSVVERLKKSFSSANNAA-----------------
+>gi|320165357|gb|EFW42256.1| syntaxin 5A [Capsaspora owczarzaki ATCC 30864]
+---ALISAKDRTKEFLSAVATAQRTSAAASALP-----------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+G 1    *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1000	0	0	
+
+A 2    0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2
+       0	*	*	*	*	*	*	1000	0	0	
+
+M 3    2562	*	*	*	*	*	*	*	*	*	438	*	*	*	*	*	3432	*	*	*	3
+       280	3591	3421	1000	1000	*	*	3260	1077	0	
+
+A 4    1769	*	*	*	*	3664	*	*	*	*	2024	*	*	4285	*	*	2191	3165	*	*	4
+       77	*	4274	*	*	*	0	4277	0	1000	
+
+G 5    2826	*	*	*	*	3341	5338	*	4172	4765	5841	2937	2454	5311	*	3531	3681	3022	*	*	5
+       256	*	2623	*	*	0	*	4239	0	1089	
+
+M 6    2158	*	*	*	4388	*	*	4165	*	*	2142	*	4061	*	*	3140	2201	4184	*	*	6
+       38	*	5267	*	*	2570	266	4676	0	1329	
+
+N 7    3885	*	*	*	*	*	*	*	4627	*	*	3750	3847	*	5142	873	2969	4440	*	*	7
+       0	*	*	*	*	0	*	4736	0	1355	
+
+I 8    5037	5279	3098	*	3696	4648	*	1010	*	4578	*	*	*	*	*	*	*	4029	*	3182	8
+       45	5023	*	2322	322	*	*	4881	1007	0	
+
+K 9    *	*	*	*	*	*	*	*	2176	*	4665	4047	*	1444	1684	*	*	*	*	*	9
+       0	*	*	*	*	*	*	4827	0	0	
+
+D 10   *	*	475	*	*	*	*	*	*	*	*	2676	*	*	*	*	3009	*	*	*	10
+       0	*	*	*	*	*	*	4827	0	0	
+
+R 11   *	*	3009	*	*	*	*	*	*	*	*	*	*	*	191	*	*	*	*	*	11
+       0	*	*	*	*	*	*	4827	0	0	
+
+T 12   *	*	3009	*	*	*	*	*	*	*	*	*	*	*	*	4744	254	*	*	*	12
+       0	*	*	*	*	*	*	4827	0	0	
+
+S 13   3794	*	6232	4814	2595	5194	5544	4215	5132	4744	*	3118	3536	4146	*	2766	3427	5230	*	5602	13
+       0	*	*	*	*	*	*	4827	0	0	
+
+E 14   *	*	*	191	*	*	*	*	*	*	*	*	*	*	3009	*	*	*	*	*	14
+       0	*	*	*	*	*	*	4827	0	0	
+
+F 15   *	*	*	*	191	*	*	*	*	3009	*	*	*	*	*	*	*	*	*	*	15
+       0	*	*	*	*	*	*	4827	0	0	
+
+Q 16   *	*	*	*	*	*	3440	3009	3678	2787	*	5404	*	1843	1952	*	*	*	*	*	16
+       0	*	*	*	*	*	*	4827	0	0	
+
+Q 17   1677	*	*	*	*	5082	5325	*	*	*	*	*	*	1970	*	1702	3833	*	*	*	17
+       0	*	*	*	*	*	*	4827	0	0	
+
+S 18   2292	2473	*	*	*	*	*	1648	*	5082	*	*	*	*	*	3029	*	2790	*	*	18
+       0	*	*	*	*	*	*	4827	0	0	
+
+V 19   2275	*	*	*	*	*	*	4584	*	2320	*	*	*	*	*	*	4824	954	*	*	19
+       0	*	*	*	*	*	*	4827	0	0	
+
+L 20   2279	*	5445	2044	*	3664	*	*	*	2132	*	5081	*	4013	*	3440	4726	*	*	*	20
+       0	*	*	*	*	*	*	4827	0	0	
+
+S 21   3732	*	*	*	*	*	5404	*	*	*	*	*	3009	2407	3319	1766	2672	4744	*	*	21
+       0	*	*	*	*	*	*	4827	0	0	
+
+Y 22   1445	4616	*	*	4530	*	4744	3152	*	2883	*	*	3009	*	*	*	*	*	*	2846	22
+       0	*	*	*	*	*	*	4827	0	0	
+
+K 23   4339	*	3887	5081	*	*	*	*	2024	4616	*	*	*	1220	2862	*	*	*	*	*	23
+       0	*	*	*	*	*	*	4827	0	0	
+
+K 24   *	*	*	*	*	*	*	*	1061	*	*	*	3009	*	1909	2940	*	*	*	*	24
+       0	*	*	*	*	*	*	4827	0	0	
+
+R 25   *	*	*	*	*	*	3860	3488	4741	4530	*	*	*	4028	802	3682	5132	*	*	5652	25
+       108	3788	*	1000	1000	*	*	4827	1103	0	
+
+N 26   4831	*	4616	*	3726	*	5230	4824	*	3174	5379	2499	5344	3152	3009	3299	4665	4370	*	5367	26
+       65	*	4511	*	*	*	*	4827	0	0	
+
+K 27   921	*	*	*	*	5372	*	*	2531	*	*	6028	5399	*	4297	3124	4554	5184	*	*	27
+       93	3999	*	1210	817	0	*	4785	1125	1042	
+
+N 28   3723	*	*	*	5344	4616	*	*	2892	*	*	4041	3005	3416	4728	1702	3734	5325	*	*	28
+       137	*	3466	*	*	*	*	4827	0	0	
+
+F 29   2982	*	*	*	5349	5295	*	3927	*	4095	*	3260	2840	3276	*	1852	4706	4769	*	*	29
+       68	*	4440	*	*	*	0	4816	0	1235	
+
+R 30   3693	*	5474	5244	*	*	2319	*	1672	*	*	3685	5818	4038	3728	3253	5450	*	*	*	30
+       0	*	*	*	*	1107	900	4765	0	1408	
+
+E 31   2407	*	*	5209	*	*	*	5431	2930	*	*	4602	2525	3387	3909	4040	3600	3188	*	*	31
+       0	*	*	*	*	*	0	4728	0	1185	
+
+Q 32   3593	*	5781	*	*	2340	5009	*	*	4968	*	3995	2303	2371	*	3180	4395	5509	*	*	32
+       0	*	*	*	*	1616	570	4728	0	1185	
+
+Q 33   2498	*	*	2976	*	3347	*	*	2448	5024	*	5300	4058	2971	*	2714	*	5781	*	*	33
+       1776	498	*	204	2924	0	*	4775	2428	1099	
+
+R 34   4397	*	*	*	*	*	*	*	2253	*	*	2627	3583	3960	1207	*	*	*	*	*	34
+       99	*	3909	*	*	*	*	4089	0	0	
+
+E 35   4044	*	4432	3501	*	4667	*	4628	*	*	*	*	4559	855	4112	3802	*	*	*	*	35
+       0	*	*	*	*	*	0	3805	0	1042	
+
+R 36   3324	*	*	*	*	*	*	*	2943	4998	*	*	4705	4391	2391	2071	2879	*	4044	5173	36
+       0	*	*	*	*	0	*	3805	0	1042	
+
+L 37   3552	*	*	*	5159	*	*	*	*	837	*	4435	4822	2971	*	4688	4862	4486	*	*	37
+       0	*	*	*	*	*	*	4089	0	0	
+
+Q 38   5065	*	*	*	*	*	*	*	*	679	*	*	*	2237	4435	*	4557	4486	*	*	38
+       0	*	*	*	*	*	*	4089	0	0	
+
+E 39   4168	*	3601	2994	*	4764	3418	*	4435	4486	*	2828	*	4688	4924	2913	2557	*	*	*	39
+       0	*	*	*	*	*	*	4089	0	0	
+
+K 40   5303	*	2442	*	*	3772	4056	*	3104	*	*	3690	2437	4225	*	3059	3245	*	*	*	40
+       0	*	*	*	*	*	*	3817	0	0	
+
+E 41   2029	*	4615	2829	*	3386	*	*	*	*	*	4105	4000	3442	4530	2919	4292	*	*	4695	41
+       0	*	*	*	*	*	*	3780	0	0	
+
+S 42   3140	*	*	4811	*	*	*	*	*	*	*	3967	4016	1471	3654	2085	4343	*	*	*	42
+       0	*	*	*	*	*	*	3834	0	0	
+
+E 43   *	*	*	3592	*	2549	*	*	3242	3904	*	*	2783	3057	1961	4281	*	*	*	*	43
+       0	*	*	*	*	*	*	3671	0	0	
+
+N 44   *	*	*	*	*	*	1707	*	*	*	*	1480	*	*	1577	*	*	*	*	*	44
+       0	*	*	*	*	*	*	1993	0	0	
+
+F 45   1707	*	*	*	1480	*	*	*	*	*	*	*	*	1577	*	*	*	*	*	*	45
+       0	*	*	*	*	*	*	1993	0	0	
+
+A 46   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	46
+       0	*	*	*	*	*	*	1620	0	0	
+
+N 47   *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	47
+       0	*	*	*	*	*	*	1620	0	0	
+
+N 48   *	*	*	*	*	1000	*	*	*	*	*	1000	*	*	*	*	*	*	*	*	48
+       0	*	*	*	*	*	*	1620	0	0	
+
+T 49   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	49
+       0	*	*	*	*	*	*	1000	0	0	
+
+T 50   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	50
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  e3d87649b2f1632f153be8830af2c4ce
+FAM   
+FILE  e3d87649b2f1632f153be8830af2c4ce
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:14:59 2013
+LENG  125 match states, 125 columns in multiple alignment
+FILT  107 out of 1506 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.7 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCEEEEEEEECCHHHHHHHHHHCCCEEEECCCCEEEEEECCEEEEEEECCCCCCCCCEEEEEEEECCHHHHHHHHHHCCCEEEECCCCCCCCCEECCCCC
+EEEEEECCCCCEEEEEECCCCCCCC
+>ss_conf PSIPRED confidence values
+9829999991999999999998699899637999999959989999958888888861599999699999999999889968732443225862547961
+9999998999999999878878999
+>Consensus
+xxxxxxxlxvxdxxxxxxfYxxlGxxxxxxxxxxxxxxxxxxxlxlxxxxxxxxxxxxxxixxxvxdxxxxxxxlxxxGxxxxxxxxxxxxxxxxxxxgx
+xxxxxxDpxGxxieixxxxxxxxxx
+>e3d87649b2f1632f153be8830af2c4ce
+TDQATPNLPSRDFDSTAAFYERLGFGIVFRDAGWMILQRGDLMLEFFAHPGLDPLASWFSCCLRLDDLAEFYRQCKSVGIQETSSGYPRIHAPELQEWGG
+TMAALVDPDGTLLRLIQNELLAGIS
+>gi|333371105|ref|ZP_08463067.1| glyoxalase [Desmospora sp. 8437]gi|332976549|gb|EGK13390.1| glyoxalase [Desmospora sp. 8437]
+--SLSPYFVVNGAQRFVDLIKnLFNATELRRydrPDgtiMHVELRIDDTVIMVGDsSEQFPAN--HLLIHVYVPDVDEVFSRALELECVP-------VEE
+PKEsEGDPDRRGTFKDFAGNIWSVATQGK-----
+>gi|194016689|ref|ZP_03055302.1| lactoylglutathione lyase [Bacillus pumilus ATCC 7061]gi|194011295|gb|EDW20864.1| lactoylglutathione lyase [Bacillus pumilus ATCC 7061]
+-----IAIAVFSIKNTSRILQQlFNWHFSDIreipEQEikASFASLDHVHIELIEPMSGSsKLhtfltkrgEGLHHIALKSGDIQADLNRLDHFGVELLQ
+------QSAQIGASGKRIAFIspKETSGVLFELCEpLK------
+>gi|254466122|ref|ZP_05079533.1| glyoxalase/bleomycin resistance protein/dioxygenase [Rhodobacterales bacterium Y4I]gi|206687030|gb|EDZ47512.1| glyoxalase/bleomycin resistance protein/dioxygenase [Rhodobacterales bacterium Y4I]
+-----TTVGAGDIARGTVLFRvpaSp-GYAVEEG-PAGLRYTlpANpGQppalpDYYVkPPFGGrPAs-AGNGSMTAFEERtqkQVREPHAAALLAGGSD
+E--G---QPGfRADYGPLFYVGYLRGAQGNKIAHFS--------
+>gi|254787661|ref|YP_003075090.1| glyoxalase family protein [Teredinibacter turnerae T7901]gi|237686487|gb|ACR13751.1| glyoxalase family protein [Teredinibacter turnerae T7901]
+---FHVHLSVDNLATNIEFYSRlFGAQAHKIKSDYAKWLIEDlrLIFAISSRGD---RPGLNHFGVQALSdedLAVLRTRAINaNEGTFVD-------EA
+DaRCCYAKsDKHWVSDPQGIPWEHFYTR------
+>gi|239928418|ref|ZP_04685371.1| glyoxalase/bleomycin resistance protein/dioxygenase [Streptomyces ghanaensis ATCC 14672]gi|291436745|ref|ZP_06576135.1| glyoxalase/bleomycin resistance protein/dioxygenase [Streptomyces ghanaensis ATCC 14672]gi|291339640|gb|EFE66596.1| glyoxalase/bleomycin resistance protein/dioxygenase [Streptomyces ghanaensis ATCC 14672]
+-----VLQVVSDRARYESLFLDvLGFRLSdhidlapN---LaATFLHCNRrhHSFAFTPkVA---GRPLgVGHFMLEVTdldVIGRAMEHIEDEPHRLL-
+-----KTFGRHSNDRMVSFYLLTPSDVGLEFG---------
+>gi|291435257|ref|ZP_06574647.1| bphC [Streptomyces ghanaensis ATCC 14672]gi|291338152|gb|EFE65108.1| bphC [Streptomyces ghanaensis ATCC 14672]
+-----------DLEVMEKFLTAFGMVKAEgSDDRTLYMRGTgtQHHIHVTRKA---DKQRFVGASIEVAGYDDLVELAAKQGsSPV---------RESTE
+PGGGHEVSMTMPDGIEIRAIWGRRkAEPIP
+>gi|172036226|ref|YP_001802727.1| 4-hydroxyphenylpyruvate dioxygenase [Cyanothece sp. ATCC 51142]gi|171697680|gb|ACB50661.1| 4-hydroxyphenylpyruvate dioxygenase [Cyanothece sp. ATCC 51142]
+-------WYVKNADYWKKWFInVMGFHAIagghNDHTYTEIVKTGskdyPIIFVISSPLSPQSPVAkfleihppgVADIAFRVNNLKACLEKIKNLGTVI
+-------QEPMKEkkYTNGYLQWSKIISQTGLIH-----------
+>gi|224826541|ref|ZP_03699642.1| Glyoxalase/bleomycin resistance protein/dioxygenase [Lutiella nitroferrum 2002]gi|224601142|gb|EEG07324.1| Glyoxalase/bleomycin resistance protein/dioxygenase [Lutiella nitroferrum 2002]
+-------VRVTDTTKAIEWYQRvLGLTPDpryrhmqDEPHGVTMVANPSSTVRLALCEDAESSTAIGAVAFVVSgqEFMEWIDQLAGERVTNREGQTIAR
+DSVYDHHFFCS-LSFVDPFGNAFEVVSYD------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+T 1    *	*	*	*	*	*	*	*	*	*	*	*	1643	*	*	*	557	*	*	*	1
+       0	*	*	*	*	*	*	2280	0	0	
+
+D 2    2749	*	895	*	*	*	*	*	*	*	*	2591	*	*	*	*	2763	*	*	*	2
+       0	*	*	*	*	*	*	3733	0	0	
+
+Q 3    3922	*	*	*	*	*	2144	*	*	*	2990	*	4119	2776	2316	3095	4044	*	*	*	3
+       98	3922	*	0	*	*	*	6009	1038	0	
+
+A 4    3039	4578	*	*	3837	4930	*	1720	*	4118	4750	4934	5033	4694	*	4886	4765	2618	*	*	4
+       0	*	*	*	*	*	*	7579	0	0	
+
+T 5    5110	*	*	*	3422	5399	2292	3424	4201	*	4446	5598	*	4647	4504	4254	2638	3466	*	4374	5
+       54	*	4754	*	*	*	*	8543	0	0	
+
+P 6    4136	6239	*	*	4151	6055	*	2336	*	3721	5867	*	2869	6192	*	5021	3252	1830	*	*	6
+       19	*	6236	*	*	*	0	9930	0	1177	
+
+N 7    2868	5246	6540	3745	3752	2956	4145	3981	4830	4379	4858	3467	*	5293	6432	4333	4839	3558	*	6183	7
+       0	*	*	0	*	0	*	10245	1058	1433	
+
+L 8    *	*	*	*	2929	*	*	2347	*	1677	4686	*	*	6455	5464	*	6825	2353	5769	3973	8
+       0	*	*	1000	1000	*	*	10403	1000	0	
+
+P 9    3495	6420	4901	4832	4137	4265	5670	5133	5860	4874	4718	4648	2993	5181	3424	4655	4341	4565	5054	2867	9
+       14	6700	*	0	*	*	*	10412	1000	0	
+
+S 10   3710	4185	*	*	6414	5528	*	5022	*	*	*	*	*	6749	*	3223	2251	1125	6533	6825	10
+       30	5605	*	516	1735	*	*	10474	1253	0	
+
+R 11   3550	*	3320	3568	5834	4620	4771	*	2798	6567	*	3464	3340	5707	4129	3289	3547	5192	*	*	11
+       34	5434	*	1000	1000	0	*	10429	1334	1058	
+
+D 12   5153	*	1113	5271	*	5252	6555	*	4357	6340	*	1951	*	4564	4705	4425	*	*	*	*	12
+       0	*	*	*	*	*	*	10443	0	0	
+
+F 13   3339	*	6419	5606	4220	*	*	2788	*	1959	3741	*	3501	6941	5011	4842	5527	2902	*	5597	13
+       0	*	*	*	*	*	*	10443	0	0	
+
+D 14   3011	*	2386	2284	*	4750	5675	6556	3136	5658	6384	5675	4693	2810	5741	*	5693	5182	*	*	14
+       15	6552	*	0	*	*	*	10495	1058	0	
+
+S 15   2250	6458	4964	2548	*	5121	6527	6794	2805	5195	*	5224	6556	4634	3119	4391	3906	5185	*	5518	15
+       0	*	*	*	*	*	*	10495	0	0	
+
+T 16   1735	*	6780	4687	6923	4292	6371	6571	6552	3730	4010	6714	*	5271	*	2578	3045	4484	4477	6962	16
+       0	*	*	*	*	*	*	10495	0	0	
+
+A 17   3025	5994	6344	4729	5551	6710	5698	3084	3610	3381	5123	*	*	5911	2998	4240	4009	2474	*	*	17
+       0	*	*	*	*	*	*	10495	0	0	
+
+A 18   2444	*	3016	2829	*	*	*	5609	3269	*	6630	3550	5792	4397	3650	3751	4338	4272	6448	*	18
+       12	6881	*	2000	415	*	*	10495	1000	0	
+
+F 19   6544	*	6677	6857	786	*	5311	5899	*	4010	6565	*	*	5821	5305	6745	*	5763	3062	3541	19
+       0	*	*	*	*	*	0	10483	0	1000	
+
+Y 20   *	*	*	*	2926	6390	5718	*	*	3200	6476	*	*	*	*	6677	*	6568	3379	734	20
+       42	5674	6754	0	*	*	0	10483	1176	1000	
+
+E 21   3839	*	5094	2581	*	4145	6678	4286	3329	6645	6438	6839	5557	3378	3545	4318	2607	4101	6534	*	21
+       869	1144	*	281	2501	959	1042	10471	6862	1178	
+
+R 22   4023	6491	4137	3592	5591	5700	6616	4026	2831	4656	6603	4688	*	3591	4019	4047	4048	2546	*	6642	22
+       855	1196	6544	80	4205	*	0	10483	6897	1000	
+
+L 23   *	*	6513	*	1825	*	*	3957	*	1117	3146	*	*	*	*	6732	*	5036	6545	5800	23
+       12	6916	*	0	*	1085	920	10391	1000	1627	
+
+G 24   5941	*	4338	4454	*	468	6946	*	5789	*	*	3803	*	4769	6876	5464	*	*	*	*	24
+       0	*	*	1000	1000	774	1268	10437	1058	1242	
+
+F 25   3393	5498	*	6699	1472	4937	*	5276	*	2458	4312	*	6876	*	6880	*	5919	3933	3779	4324	25
+       16	*	6545	*	*	*	0	10481	0	1000	
+
+G 26   6286	6352	4375	2749	6802	4651	4746	*	3272	*	6462	5363	4079	3687	2723	4659	3386	3324	*	5088	26
+       21	*	6106	0	*	774	1268	10436	1058	1242	
+
+I 27   3985	6674	6696	3219	4453	6036	*	3507	4130	2688	6651	5541	3212	6568	5047	5716	4815	2404	*	5298	27
+       58	5119	6536	1279	767	*	0	10465	1380	1312	
+
+V 28   3398	6423	3709	3923	5657	4679	6650	3119	3910	5729	5024	6755	6523	6381	5293	3808	3853	2431	5177	4652	28
+       242	2694	*	2004	414	1495	632	10426	3737	1712	
+
+F 29   4676	*	3301	3118	3328	4286	4176	5691	5765	4485	6559	4248	4405	6597	3289	3934	4362	5784	4250	4387	29
+       215	3016	6088	1418	676	1549	603	10442	3489	1396	
+
+R 30   4318	6840	3434	2861	6858	3553	5608	5569	3841	5656	6494	5241	5243	4829	2790	3162	4743	5036	6760	4226	30
+       293	2548	6270	1451	657	1135	876	10446	4185	1517	
+
+D 31   4461	*	2882	3108	4502	3397	4246	6884	4039	5561	5614	4580	4282	3873	5168	3471	3837	5043	*	5608	31
+       314	2353	*	2959	199	0	*	10422	4232	1436	
+
+A 32   4426	*	3013	3637	6606	2627	4996	*	4216	4850	5101	4005	3085	4389	5183	4147	3779	4528	*	*	32
+       295	2579	5817	2078	390	0	*	10478	3845	1128	
+
+G 33   4018	*	2912	3485	5430	2833	*	5266	4533	5613	6394	2941	5489	5067	3502	4341	4617	4403	6976	4831	33
+       165	3208	*	1822	480	*	0	10478	2829	1148	
+
+W 34   3123	5218	6605	4502	3087	5403	3801	4680	5795	3916	4747	*	*	6661	*	4016	3852	5013	3485	2564	34
+       69	4427	*	1977	423	0	*	10478	1924	1148	
+
+M 35   2042	5972	6882	4415	5530	5886	5954	4167	5522	2523	5911	*	*	*	4774	3762	4164	2669	5097	6537	35
+       112	3745	*	1002	998	*	*	10494	2302	0	
+
+I 36   4553	6674	4664	4456	3553	4432	4273	3565	5857	3589	4675	6585	7437	4428	4241	4358	4095	3918	4078	3221	36
+       0	*	*	*	*	*	*	10494	0	0	
+
+L 37   4483	5777	*	6731	2219	*	*	4053	*	1766	3460	*	6406	6347	*	5120	*	3183	4833	3842	37
+       95	4104	7437	1127	883	*	*	10494	2051	0	
+
+Q 38   3991	*	3784	3529	5965	3982	5048	4707	3187	5934	6821	3947	5002	4592	2616	3745	3775	4713	*	6850	38
+       170	3463	5625	1269	773	0	*	10489	2744	1000	
+
+R 39   3640	5102	4337	5700	4312	3184	5691	3632	5751	3248	*	4117	4980	5482	4512	4446	3146	4114	5128	4753	39
+       153	3429	6968	684	1405	0	*	10451	2700	1213	
+
+G 40   4503	*	2678	4122	*	1770	*	*	6681	5522	*	2752	3650	4409	4811	4217	5170	*	6809	5940	40
+       522	1790	6101	887	1123	0	*	10491	5745	1000	
+
+D 41   4454	6620	3003	4444	*	1899	4084	6340	4092	6388	6896	3048	4281	4694	5050	3711	5226	6511	*	*	41
+       168	3277	7240	641	1479	1682	539	10472	2894	1277	
+
+L 42   3372	5543	4526	6746	3421	4066	4209	3932	*	3980	4711	6459	4862	4579	4458	3646	3333	3543	6433	4459	42
+       183	3193	6681	1266	776	0	*	10478	3059	1289	
+
+M 43   3644	*	4251	3752	4718	5090	3646	4438	4642	5716	5218	5114	6613	3653	3372	3682	3460	4324	6330	3885	43
+       70	4405	*	674	1422	0	*	10476	1734	1016	
+
+L 44   5576	*	*	*	3010	6761	5403	2428	*	1500	5166	*	*	*	*	5637	5726	2526	5657	5480	44
+       31	6643	6508	1000	1000	*	*	10494	1000	0	
+
+E 45   3285	6815	6603	2258	6861	3278	3455	4454	5067	4495	3856	6485	6553	5862	4913	5495	4803	3149	6470	5424	45
+       43	5719	6549	547	1664	0	*	10474	1173	1011	
+
+F 46   5770	*	*	*	3104	5485	*	2404	*	1286	4311	*	5959	*	*	*	5154	3099	*	4927	46
+       63	4544	*	1771	500	0	*	10448	1909	1058	
+
+F 47   3726	5226	5666	5278	3229	5714	4636	3278	*	3041	4818	5703	6307	4587	4606	3715	3968	4123	3988	4284	47
+       40	5208	*	486	1806	*	*	10494	1329	0	
+
+A 48   3734	*	4016	2556	5569	4374	5524	*	4184	5117	5087	4197	3166	3631	4467	3278	4615	5552	5529	6635	48
+       89	4352	6568	351	2211	*	*	10494	1864	0	
+
+H 49   3812	5736	4319	4722	4569	3254	3665	4680	3814	4762	5592	4008	3386	5872	4806	4040	3554	4300	6773	6373	49
+       74	5567	5114	1341	725	0	*	10477	1422	1007	
+
+P 50   2880	*	3673	3317	5804	4367	4700	6920	4039	4251	5546	5697	2250	5414	3553	4275	5668	6630	*	5799	50
+       106	4703	4951	1300	752	*	0	10454	1565	1368	
+
+G 51   4988	*	3532	2981	*	2764	5869	5675	4104	6530	5488	3633	3554	4347	3998	3104	4193	6547	*	5567	51
+       107	6229	4096	0	*	3424	141	10423	1044	2325	
+
+L 52   3479	6674	3839	3837	5688	3933	6514	6411	3702	3968	4912	4980	2569	4823	3749	5560	5127	4141	5693	4524	52
+       205	3155	5633	2404	302	2697	242	10334	2730	3143	
+
+D 53   3306	*	3716	2518	6557	3039	4923	6858	3163	*	*	6711	3814	3940	4647	3276	5024	4543	*	*	53
+       352	2349	5613	1793	491	821	1205	10271	4005	3351	
+
+P 54   4041	*	3710	3299	6756	4580	5567	4981	3766	4077	*	4532	2153	4226	4558	3400	5611	4923	*	6318	54
+       270	2935	4653	2308	325	2011	411	10349	2984	2699	
+
+L 55   3001	6355	4667	3392	6909	3488	5761	5583	4064	3706	6239	3967	3650	5133	4829	3447	4470	4150	*	4595	55
+       404	2306	4581	1989	419	655	1454	10394	4134	2892	
+
+A 56   3157	*	5679	5162	5806	2594	6550	5607	4129	5483	5608	4269	2991	3713	5771	4271	3342	3422	*	6666	56
+       97	4112	7131	1101	906	177	3113	10352	2048	2342	
+
+S 57   2930	*	4980	4923	6598	2563	6463	5058	3715	4949	6522	3475	3638	6868	3679	3050	4482	5441	*	5769	57
+       230	2765	*	3128	175	896	1112	10490	3595	1148	
+
+W 58   3747	6667	6829	5058	3610	3166	5171	3444	5965	2906	5732	4413	4726	4737	4745	3432	5645	3835	6769	4498	58
+       104	4801	4881	350	2215	*	0	10495	1557	1000	
+
+F 59   3397	6554	4646	5057	3519	4321	3233	4949	6347	4538	6845	4083	4361	4665	4492	4093	3966	3674	5205	3947	59
+       13	6827	*	1585	585	1129	882	10417	1000	1599	
+
+S 60   4284	6856	5132	4101	5319	3255	1443	5772	6149	4600	4563	5106	*	5081	5999	3908	4728	5289	6909	5189	60
+       70	4392	*	1805	486	0	*	10437	1738	1238	
+
+C 61   4333	5043	*	*	3058	*	6642	1928	*	1984	5206	*	*	*	*	5717	5047	2547	6643	5893	61
+       14	6722	*	1585	585	*	*	10494	1000	0	
+
+C 62   1752	3524	6832	4653	6618	3535	5145	6576	*	4784	5631	4609	*	*	6779	2922	4237	3872	7276	3919	62
+       32	*	5520	*	*	*	*	10494	0	0	
+
+L 63   5825	6662	*	*	1482	*	*	2737	*	2032	*	*	*	*	*	*	*	3440	3917	4015	63
+       23	6003	*	319	2335	0	*	10419	1501	1275	
+
+R 64   3458	6967	3768	2577	5620	4226	5514	5041	3870	4715	5746	3973	*	4041	4424	4226	4427	3497	5851	4965	64
+       91	4309	6552	1313	743	*	*	10494	1849	0	
+
+L 65   3784	4793	5674	5094	5689	4904	*	3939	*	3643	4910	*	*	*	5196	4450	2823	1391	*	5991	65
+       31	5562	*	668	1433	0	*	10448	1458	1058	
+
+D 66   3631	*	2135	3500	*	4836	5163	6722	4531	6701	6400	3861	3022	5169	5508	3039	3660	6347	*	6454	66
+       460	1873	*	1616	570	*	*	10494	5230	0	
+
+D 67   4129	*	1323	2995	*	4260	4938	*	6631	6489	*	2748	*	4021	*	3715	5318	*	*	*	67
+       56	4722	*	1585	585	*	*	10494	1536	0	
+
+L 68   3495	*	*	*	4173	*	6478	2413	5657	1952	5004	*	4443	6696	*	*	6885	2341	6397	3751	68
+       0	*	*	*	*	*	*	10494	0	0	
+
+A 69   3926	*	1883	2532	6796	4340	5175	5507	3659	5043	6489	4475	4713	3877	4051	5689	5514	6839	*	*	69
+       15	*	6552	*	*	*	*	10494	0	0	
+
+E 70   1946	*	4327	2498	6621	4268	5897	6729	3753	5713	*	4748	6628	4130	3883	4269	4378	5368	*	4803	70
+       29	5652	*	1136	875	0	*	10448	1442	1058	
+
+F 71   2112	6712	4595	5722	4160	6719	5816	3418	5737	2392	6568	6489	6307	*	6508	5662	3669	3752	3908	5140	71
+       27	6741	6734	1585	585	*	*	10494	1000	0	
+
+Y 72   3121	4061	5698	5729	4234	6655	2954	3444	6470	4014	4740	*	*	*	3668	4702	5359	3289	*	2749	72
+       0	*	*	*	*	*	0	10474	0	1000	
+
+R 73   2913	*	2704	2496	*	5260	*	6556	2902	5392	*	4650	*	3428	3721	4182	3896	*	*	6473	73
+       26	6403	7422	1353	717	0	*	10474	1238	1000	
+
+Q 74   3558	*	5748	3760	5188	*	3681	4930	3053	4749	*	6719	*	3571	1789	4322	4555	*	6459	4645	74
+       0	*	*	*	*	*	0	10489	0	1000	
+
+C 75   2686	5799	*	*	3117	5878	*	2793	6679	1282	5497	*	*	*	*	*	5152	4375	6881	5503	75
+       11	6999	*	0	*	*	0	10489	1000	1000	
+
+K 76   3629	6468	4353	3138	*	5447	6628	3806	2592	3774	6735	4111	5804	3672	3815	4699	4987	3544	*	6459	76
+       0	*	*	*	*	*	0	10489	0	1000	
+
+S 77   2018	*	3542	2975	*	4829	5840	6787	3236	6302	*	4117	5063	3865	4079	3298	4901	6793	*	*	77
+       0	*	*	*	*	*	0	10489	0	1000	
+
+V 78   2631	6606	4736	5022	4481	*	3349	5830	2961	3103	5741	3040	*	4235	3367	4379	7107	6779	*	*	78
+       35	5379	*	1732	517	*	0	10489	1345	1000	
+
+G 79   4736	7124	4087	5635	6510	698	5666	6600	4748	6654	*	3607	*	4310	5768	5573	*	*	*	*	79
+       28	5720	*	0	*	*	0	10489	1596	1000	
+
+I 80   3364	4805	*	4530	3711	3268	*	2679	*	3471	5538	*	6819	5500	5041	4968	5011	2584	5253	4098	80
+       68	*	4432	*	*	*	0	10489	0	1000	
+
+Q 81   5032	*	4072	3240	6530	5374	5139	5775	3458	4282	*	3889	3467	3636	2951	4268	3530	3962	6677	*	81
+       60	5524	5708	0	*	*	0	10438	1233	1899	
+
+E 82   4119	5739	4192	4782	3644	*	5068	2376	4239	3165	5800	6549	4587	6453	6383	4413	4563	2703	6741	5644	82
+       838	*	1183	*	*	*	0	10415	0	2238	
+
+T 83   3565	*	5935	3355	5742	3678	4849	3639	4107	2992	*	5769	4782	5124	5799	4685	3406	3135	4682	5743	83
+       636	5669	1571	2585	263	5732	27	9412	1005	7467	
+
+S 84   4119	*	3724	2870	3612	*	5051	4972	4173	*	4314	5092	2917	5097	5346	3181	5262	*	4142	3797	84
+       1689	*	536	*	*	5451	33	8502	0	8406	
+
+S 85   *	*	*	3538	*	3933	3629	*	3520	*	*	*	3500	3575	*	2565	3613	3607	3552	3472	85
+       384	2572	3933	3429	141	4398	70	5546	1411	9298	
+
+G 86   *	*	2821	2997	*	1320	*	*	*	*	*	3903	1911	*	*	*	*	*	*	*	86
+       452	*	1895	*	*	4803	53	6300	0	9203	
+
+Y 87   *	*	3790	3901	*	2256	3684	*	*	2739	*	3745	*	*	2826	*	3855	*	*	2846	87
+       356	3795	2771	3459	138	3361	148	6135	1000	9241	
+
+P 88   *	*	4296	3320	*	4458	*	4436	3592	4424	*	*	2356	3360	4344	4447	3369	2803	*	*	88
+       150	4229	4458	1000	1000	4511	65	7219	1028	9016	
+
+R 89   *	4438	*	4622	*	3445	4682	3568	2992	4627	*	*	*	3497	1845	*	4584	3020	*	*	89
+       0	*	*	*	*	739	1318	7589	0	8919	
+
+I 90   5324	5964	4405	3629	4318	4617	4317	2841	5044	2536	4656	6427	*	4505	*	4068	5080	2763	*	5982	90
+       0	*	*	*	*	1129	882	10061	0	5717	
+
+H 91   4628	*	4505	3518	4828	3252	3431	6795	5651	4123	5573	5456	4036	3461	4549	2674	4441	4559	6236	6339	91
+       32	*	5525	*	*	478	1827	10252	0	3876	
+
+A 92   3413	*	4102	2581	6551	3004	6564	*	4805	4933	7026	4962	2510	3855	5086	3742	4204	6407	*	6422	92
+       55	4747	*	779	1261	2934	202	10350	1654	2124	
+
+P 93   5770	5597	6699	3626	4294	3703	6559	3836	5070	2971	5525	5715	1605	*	6261	6612	4995	3632	*	*	93
+       184	3734	4490	1935	437	2614	257	10368	2367	1960	
+
+E 94   4246	6258	4539	3229	4617	3643	*	4092	3732	6333	6647	5195	5495	3371	3044	5063	3063	4075	6516	5623	94
+       159	4259	4266	2002	414	3076	182	10324	1797	2581	
+
+L 95   4440	*	2922	2884	5401	4795	4062	3995	5602	4488	4788	3070	4142	4754	3367	5739	5048	4985	6295	*	95
+       83	4764	5708	1000	1000	967	1034	10280	1425	3173	
+
+Q 96   3819	6748	4474	3383	5126	3547	4902	5824	4477	4091	4596	6810	3511	3514	3629	5743	4300	4741	5541	3728	96
+       109	4545	5060	1674	542	1512	623	10380	2040	2368	
+
+E 97   4047	6763	3122	3550	4068	3267	4428	6722	4586	4893	4540	5015	2418	5841	4356	5105	5506	4702	*	5752	97
+       117	4080	5714	458	1878	1546	605	10378	1864	2355	
+
+W 98   5503	6576	3612	4984	3022	2568	4594	4815	6758	4988	5940	5059	6237	5014	*	3493	5008	5820	2936	3540	98
+       126	4094	5324	746	1309	727	1336	10391	1877	2181	
+
+G 99   4534	6605	4025	4846	5116	976	6562	6586	4130	6260	6629	3563	*	6639	5023	4882	5668	4920	*	*	99
+       307	4650	2720	952	1049	2766	229	10399	1572	1870	
+
+G 100  3795	6144	5182	5599	5139	3297	5533	3673	4349	4679	3791	5336	6685	3251	3649	4833	3586	3618	6145	4577	100
+       59	4991	6827	1610	573	450	1901	10231	1462	4267	
+
+T 101  5463	*	5686	4637	4622	4827	7052	6733	2999	3327	5669	4543	5867	5238	2381	4692	3824	4319	4912	3191	101
+       86	6392	4453	1255	784	333	2280	10382	1335	2019	
+
+M 102  3707	*	5586	3720	3310	3617	4795	4240	4545	4469	4025	4763	*	4188	5489	3884	4744	3283	5498	4011	102
+       0	*	*	*	*	1625	565	10433	0	2043	
+
+A 103  2467	6719	*	5751	2430	3753	*	3145	*	3135	4594	*	*	*	*	4136	4821	2983	5514	5478	103
+       18	6308	*	0	*	*	0	10434	1041	1656	
+
+A 104  5238	6441	6835	4702	2872	6481	5148	4643	5493	4834	4388	4528	*	4781	4144	3680	3908	4754	4393	2132	104
+       0	*	*	*	*	511	1745	10434	0	1656	
+
+L 105  4230	5588	6512	*	1797	5628	5429	2687	6693	2365	5334	*	*	*	*	*	*	2478	*	5614	105
+       13	6822	*	1000	1000	*	0	10445	1000	1058	
+
+V 106  4332	*	5221	3475	*	*	5274	3428	3162	3249	6464	5799	6491	4638	2628	4387	3071	4702	6512	4661	106
+       16	6516	*	1585	585	*	0	10445	1040	1058	
+
+D 107  5878	6747	699	6822	*	4509	5067	5638	6867	5665	4915	5098	5219	*	6512	4355	4018	5946	*	*	107
+       0	*	*	*	*	*	0	10445	0	1058	
+
+P 108  5589	6370	6741	5704	*	6452	6888	5703	5100	5123	*	6789	709	5050	5079	3750	3975	6341	6508	*	108
+       0	*	*	*	*	*	0	10439	0	1058	
+
+D 109  4300	*	1655	2655	4103	4387	*	*	6613	5568	*	3902	5747	4340	*	3059	6735	6379	5326	4859	109
+       52	4823	*	2714	239	*	0	10466	1765	1058	
+
+G 110  4730	*	5131	6279	6584	482	6585	6549	4516	*	*	3989	*	*	5532	5371	5594	*	*	*	110
+       0	*	*	*	*	0	*	10466	0	1058	
+
+T 111  5760	*	5074	6595	4857	3827	3602	3275	6370	3562	*	1913	*	5529	4844	*	4320	3823	6681	3299	111
+       0	*	*	*	*	*	*	10487	0	0	
+
+L 112  4677	6644	6874	3437	6572	6613	*	3428	3469	2692	5670	4904	4899	4895	2873	7113	3531	3759	5222	4633	112
+       0	*	*	*	*	*	*	10487	0	0	
+
+L 113  5753	6540	*	*	3145	6432	5398	1828	6526	2920	5220	6370	*	*	*	*	5346	2341	2971	6746	113
+       15	6594	*	0	*	*	*	10487	1000	0	
+
+R 114  5500	5055	5867	1207	6518	3813	4597	4732	6432	3970	5233	5616	*	4688	4165	4726	5788	3976	*	*	114
+       15	6629	*	1000	1000	*	*	10487	1000	0	
+
+L 115  5763	6419	*	6459	2672	6803	6209	1669	*	2557	4928	*	5023	*	*	*	6594	2415	*	4904	115
+       15	6627	*	1000	1000	*	*	10358	1000	0	
+
+I 116  4751	4860	6158	6118	3322	4082	5126	2930	4895	4506	4930	5437	*	4636	4833	4266	4610	2525	4996	3751	116
+       17	6431	*	0	*	*	*	10310	1000	0	
+
+Q 117  2967	5450	6456	2224	*	6809	5591	6349	5370	*	*	6191	*	2445	5293	3241	2746	4903	4787	6592	117
+       19	6249	*	0	*	*	*	10094	1000	0	
+
+N 118  5275	*	3488	3794	3928	3497	4594	6052	4559	3872	6026	3863	2864	4606	4228	5314	5210	4163	*	3887	118
+       0	*	*	*	*	*	*	9800	0	0	
+
+E 119  3421	*	3041	3688	4624	4171	3990	4180	3736	3434	5603	4758	4406	5934	4331	3937	4691	4291	*	*	119
+       31	5544	*	2000	415	*	*	9417	1000	0	
+
+L 120  4200	*	3195	3371	*	2988	4502	*	4313	3021	*	*	3663	5396	4500	4354	2530	*	*	5206	120
+       1003	997	*	0	*	*	*	8716	1660	0	
+
+L 121  2095	*	*	*	*	*	*	*	*	891	*	*	2142	*	*	*	*	*	*	*	121
+       0	*	*	*	*	*	*	2864	0	0	
+
+A 122  1541	*	*	1677	*	*	*	*	*	*	*	*	1541	*	*	*	*	*	*	*	122
+       0	*	*	*	*	*	*	2399	0	0	
+
+G 123  *	*	*	*	*	541	*	*	*	*	*	*	1677	*	*	*	*	*	*	*	123
+       0	*	*	*	*	*	*	2399	0	0	
+
+I 124  *	*	*	*	*	*	*	607	*	*	*	*	*	*	1541	*	*	*	*	*	124
+       0	*	*	*	*	*	*	2399	0	0	
+
+S 125  *	*	*	*	*	*	*	*	*	*	*	*	1160	*	*	856	*	*	*	*	125
+       0	*	*	0	*	*	*	1711	0	0	
+
+//
+�HHsearch 1.5
+NAME  e44a004fd43907d485810413e310dc01
+FAM   
+FILE  e44a004fd43907d485810413e310dc01
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:56:25 2013
+LENG  124 match states, 124 columns in multiple alignment
+FILT  40 out of 42 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  2.5 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCCCCCCCHHHCCCCCCCEECCCCCCCCCCCCCCCCCCCEEEEECCCCCCCCEEEEEEECCCCCCCCCCCCCCCCCCCCCCCCCCCCCCE
+EEEECCCCCCCEEEEEEEEEEECC
+>ss_conf PSIPRED confidence values
+9865554889898652403010022684773658885466998855774167871589999667998304558752255023788566640056777846
+787537998757778777787159
+>Consensus
+xxxxxkxxpxxxDxxsCdYWRyCaiDGxlCsccGGsxtsCPPGTexSpxsWvGtCxNPxDgkxYlIsYnDCCGkxxcgxcxCxxxexexPxYrpxxxNDi
+xWCxgxxsxxxxYhCtxaxivGxA
+>e44a004fd43907d485810413e310dc01
+VDPRAKWQPQDNDIQACDYWRHCSIDGNICDCSGGSLTNCPPGTKLATASWVASCYNPTDGQSYLIAYRDCCGYNVSGRCPCLNTEGELPVYRPEFANDI
+IWCFGAEDDAMTYHCTISPIVGKA
+>gi|312141802|ref|YP_004009138.1| methylamine dehydrogenase maua [Rhodococcus equi 103S]gi|325672940|ref|ZP_08152634.1| methylamine dehydrogenase small subunit [Rhodococcus equi ATCC 33707]gi|311891141|emb|CBH50460.1| putative methylamine dehydrogenase MauA [Rhodococcus equi 103S]gi|325556193|gb|EGD25861.1| methylamine dehydrogenase small subunit [Rhodococcus equi ATCC 33707]
+-----------KDPAECEYWRWCNMDGTSCAa-CnGGGVTTCAPGSKPGAEFWVGCCTNPDTGKTYLIAYYDCCGAPSCSNAFCGEPDMQAIMYNPVsgs
+---ydqEIIWCVSDES--QSYTCTMAPIIGED
+>gi|254516233|ref|ZP_05128293.1| methylamine dehydrogenase light chain [gamma proteobacterium NOR5-3]gi|219675955|gb|EED32321.1| methylamine dehydrogenase light chain [gamma proteobacterium NOR5-3]
+-----------GDNQSCDYWRYCAFSGQICSCCGGSMTQCPPGSETASVAWVGTCHNPLDGQDYLISYNDCCGKSACGRCGCHRSEGDRPVYFPSKSNSI
+LWCFGSNS--HAYHCTLARVVGKA
+>gi|326387252|ref|ZP_08208862.1| putative methylamine dehydrogenase light chain precursor [Novosphingobium nitrogenifigens DSM 19370]gi|326208433|gb|EGD59240.1| putative methylamine dehydrogenase light chain precursor [Novosphingobium nitrogenifigens DSM 19370]
+-----------SDDTKCNYWRYCAIDGALCTCCGGGIHTCPPGAEPSPVSWVGTCINPEDGKAYLIAYRDCCGKSFCNKCNCNGSDRETQIYTPQLNNDI
+IWCFGTQS--MEYHCSTAVLVGAA
+>gi|119898548|ref|YP_933761.1| methylamine dehydrogenase, L chain [Azoarcus sp. BH72]gi|119670961|emb|CAL94874.1| probable methylamine dehydrogenase, L chain [Azoarcus sp. BH72]
+-------AAKKagGkapTDEDCEYWRYCAQDGYLCNCCGGTASSCPPGTEASKVSWIGTCHNPEDGKDYLISYNDCCGKTACGRCFCNTNEREMPGYRMG
+LHNDINWCMANDS--TMFHCTMATVVGLA
+>gi|167644528|ref|YP_001682191.1| amine dehydrogenase [Caulobacter sp. K31]gi|167346958|gb|ABZ69693.1| Amine dehydrogenase [Caulobacter sp. K31]
+-------VADDpGDPTSCDYWRYCAIDGFLCSCCGGSVSTCPPGTEMSPITWIGTCTNPSDGRAYVISYNDCCGTSSCGQCSCHRSEGDRPQVRPQSNND
+YNWCLGTES--SIYHCSAAAIIGVA
+>gi|238796082|ref|ZP_04639593.1| Aralkylamine dehydrogenase light chain [Yersinia mollaretii ATCC 43969]gi|238720027|gb|EEQ11832.1| Aralkylamine dehydrogenase light chain [Yersinia mollaretii ATCC 43969]
+-------KPa---DVNECNYWRYCALDGNLCSSSGGSITTCPVGTETSKTSWVGTCRNPHDNKNYLVSYNDCCGKTTVANSVnCFNNQGERPGYRMGLHN
+DINWCMANTN--KGYHCTVATLVGIA
+>gi|335421103|ref|ZP_08552131.1| amine dehydrogenase [Salinisphaera shabanensis E1L3A]gi|334892933|gb|EGM31159.1| amine dehydrogenase [Salinisphaera shabanensis E1L3A]
+-------PGtpGDpGDPQSCDYWRYCSVDGFLCTCCGGTINACPPGTDVSEVTWVGTCHNPADGRDYVIAYNDCCGKQACGQCACNRNDSEQPLYRPFNN
+NDINWCLGAEH--LTYNCTIATIRDVA
+>gi|189220011|ref|YP_001940651.1| methylamine dehydrogenase, L chain [Methylacidiphilum infernorum V4]gi|189186869|gb|ACD84054.1| Methylamine dehydrogenase, L chain [Methylacidiphilum infernorum V4]
+----GKEPPASNDPaTSCSYWRYCSLDGFLCSCCGGGATACPPGTFPSPTHWVGSCRNPEDGKHYLVSYRDCCGKGYCGRCYCRQTDAkEMPVYQLLRNN
+DTIWCFGAPN--MIYHCTGAAVLAPA
+>gi|330503791|ref|YP_004380660.1| amine dehydrogenase [Pseudomonas mendocina NK-01]gi|328918077|gb|AEB58908.1| amine dehydrogenase [Pseudomonas mendocina NK-01]
+------------------------------------------------------------------------------------HDSEEPLYQPNNDNDV
+NWCLAAKS--HIYHCTASIIRGVA
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+V 1    *	*	*	*	*	1591	*	*	*	*	*	*	*	*	*	*	*	582	*	*	1
+       0	*	*	*	*	*	*	1190	0	0	
+
+D 2    *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2
+       0	*	*	*	*	*	*	1190	0	0	
+
+P 3    *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	3
+       0	*	*	*	*	*	*	1190	0	0	
+
+R 4    *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	4
+       0	*	*	*	*	*	*	1190	0	0	
+
+A 5    1129	*	*	*	*	882	*	*	*	*	*	*	*	*	*	*	*	*	*	*	5
+       0	*	*	*	*	*	*	1513	0	0	
+
+K 6    *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	6
+       0	*	*	*	*	*	*	1513	0	0	
+
+W 7    *	*	*	1628	*	*	*	*	*	*	*	*	*	*	*	*	*	*	564	*	7
+       0	*	*	*	*	*	*	1513	0	0	
+
+Q 8    2074	*	*	*	*	*	*	*	1958	*	*	*	2920	1683	*	*	*	4020	*	*	8
+       0	*	*	*	*	*	*	2241	0	0	
+
+P 9    2943	*	*	*	*	4108	*	*	*	*	*	*	300	*	*	*	*	*	*	*	9
+       782	1256	*	1327	734	*	*	2241	1211	0	
+
+Q 10   3626	*	3935	*	*	1763	*	*	3717	*	*	*	*	1236	*	*	*	4100	*	*	10
+       0	*	*	*	*	*	0	2185	0	1000	
+
+D 11   3899	*	1086	2060	*	*	*	*	3717	*	*	*	*	*	*	3626	3942	*	*	*	11
+       1683	682	3942	168	3186	*	0	2185	1308	1000	
+
+N 12   4994	*	3205	5040	*	1170	*	*	2352	*	*	2672	*	*	*	4949	*	*	*	*	12
+       93	3998	*	3838	105	0	*	2535	1102	1032	
+
+D 13   *	*	90	4985	*	*	*	*	*	*	*	*	*	*	*	*	5124	*	*	*	13
+       49	*	4890	*	*	*	*	2546	0	0	
+
+I 14   *	*	2817	5295	*	*	*	3661	*	*	*	4911	909	5350	4575	*	*	3042	*	*	14
+       53	4806	*	0	*	0	*	2533	1023	1005	
+
+Q 15   3477	*	*	5179	*	*	*	*	5467	4244	*	3165	*	1977	*	5484	1254	*	*	*	15
+       0	*	*	*	*	*	*	2548	0	0	
+
+A 16   2503	*	5179	3347	*	*	*	*	3591	*	*	*	*	4332	*	900	5092	*	*	*	16
+       0	*	*	*	*	*	*	2548	0	0	
+
+C 17   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	17
+       0	*	*	*	*	*	*	2548	0	0	
+
+D 18   *	*	569	2456	*	*	*	*	*	*	*	3619	*	*	*	4856	5158	*	*	*	18
+       0	*	*	*	*	*	*	2548	0	0	
+
+Y 19   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	19
+       0	*	*	*	*	*	*	2548	0	0	
+
+W 20   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	20
+       0	*	*	*	*	*	*	2548	0	0	
+
+R 21   *	*	*	*	*	*	*	*	4310	*	*	*	*	*	75	*	*	*	*	*	21
+       0	*	*	*	*	*	*	2548	0	0	
+
+H 22   *	*	*	*	*	*	1771	*	*	*	*	5382	*	*	*	*	*	*	3817	708	22
+       0	*	*	*	*	*	*	2533	0	0	
+
+C 23   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	23
+       0	*	*	*	*	*	*	2555	0	0	
+
+S 24   680	*	*	*	*	5213	*	*	*	*	*	3886	*	*	*	1831	*	*	*	*	24
+       0	*	*	*	*	*	*	2555	0	0	
+
+I 25   *	*	*	*	4274	*	*	866	*	2670	3404	*	*	5374	*	*	*	3013	*	*	25
+       0	*	*	*	*	*	*	2555	0	0	
+
+D 26   4517	*	216	*	*	4615	*	*	*	*	*	*	*	*	*	4201	*	*	*	*	26
+       0	*	*	*	*	*	*	2555	0	0	
+
+G 27   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	27
+       0	*	*	*	*	*	*	2555	0	0	
+
+N 28   5208	*	*	*	1316	*	*	*	*	*	5656	1801	*	4279	*	5575	3404	5266	5418	4372	28
+       0	*	*	*	*	*	*	2555	0	0	
+
+I 29   *	*	*	*	*	*	*	2612	*	419	*	*	*	*	*	3886	*	5588	*	*	29
+       0	*	*	*	*	*	*	2555	0	0	
+
+C 30   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	30
+       0	*	*	*	*	*	*	2555	0	0	
+
+D 31   3054	*	2488	*	*	4257	*	*	*	*	*	5374	*	*	*	1249	2293	*	*	*	31
+       101	3886	*	0	*	*	*	2555	1059	0	
+
+C 32   *	264	*	*	*	*	*	*	*	*	*	*	*	*	*	3228	4043	*	*	*	32
+       0	*	*	*	*	0	*	2439	0	1059	
+
+S 33   *	324	*	*	*	*	*	*	*	*	4974	*	*	*	*	2561	*	*	*	*	33
+       101	3886	*	0	*	*	*	2555	1059	0	
+
+G 34   4517	*	*	*	*	64	*	*	*	*	*	*	*	*	*	*	*	*	*	*	34
+       0	*	*	*	*	*	*	2555	0	0	
+
+G 35   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	35
+       0	*	*	*	*	*	*	2555	0	0	
+
+S 36   *	*	*	*	*	2129	*	*	*	*	*	*	*	*	*	823	2279	*	*	*	36
+       0	*	*	*	*	*	*	2555	0	0	
+
+L 37   2723	*	*	5393	*	*	*	3306	*	2305	3866	*	*	5213	*	3766	3265	2175	*	5219	37
+       0	*	*	*	*	*	*	2555	0	0	
+
+T 38   *	*	*	*	*	*	2976	*	*	*	*	3592	*	*	*	2379	742	*	*	*	38
+       0	*	*	*	*	*	*	2555	0	0	
+
+N 39   2979	*	*	*	*	*	*	*	*	*	*	4515	*	4274	*	1015	1821	*	*	*	39
+       0	*	*	*	*	*	*	2555	0	0	
+
+C 40   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	40
+       0	*	*	*	*	*	*	2555	0	0	
+
+P 41   3886	*	*	*	*	*	*	*	*	*	*	*	101	*	*	*	*	*	*	*	41
+       0	*	*	*	*	*	*	2555	0	0	
+
+P 42   *	*	*	*	*	*	*	*	*	*	*	*	87	*	*	*	*	4095	*	*	42
+       0	*	*	*	*	*	*	2555	0	0	
+
+G 43   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	43
+       0	*	*	*	*	*	*	2555	0	0	
+
+T 44   3667	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2205	505	*	*	*	44
+       0	*	*	*	*	*	*	2555	0	0	
+
+K 45   5279	*	5397	941	4882	*	5348	*	3073	4517	*	*	*	5266	5860	3478	4337	5247	*	*	45
+       0	*	*	*	*	*	*	2555	0	0	
+
+L 46   2696	*	*	*	*	*	*	*	*	2894	2964	*	1275	*	5247	*	4204	3489	*	*	46
+       0	*	*	*	*	*	*	2555	0	0	
+
+A 47   3030	*	*	*	*	3886	*	*	*	*	*	*	*	*	*	304	*	*	*	*	47
+       0	*	*	*	*	*	*	2555	0	0	
+
+T 48   3493	*	5247	4170	*	*	*	*	3339	5406	*	*	891	5530	5395	3382	5236	*	*	*	48
+       0	*	*	*	*	*	*	2555	0	0	
+
+A 49   5236	*	*	3886	*	4517	*	1738	*	*	*	*	*	*	*	3211	2892	1646	*	*	49
+       0	*	*	*	*	*	*	2555	0	0	
+
+S 50   4284	*	*	*	3886	*	4882	*	*	*	*	*	*	*	*	988	1544	*	*	*	50
+       0	*	*	*	*	*	*	2555	0	0	
+
+W 51   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	51
+       0	*	*	*	*	*	*	2555	0	0	
+
+V 52   *	*	*	*	*	*	*	1257	*	5105	*	*	*	*	*	*	*	856	*	*	52
+       0	*	*	*	*	*	*	2555	0	0	
+
+A 53   2894	*	*	*	*	208	*	*	*	*	*	*	*	*	*	*	*	*	*	*	53
+       0	*	*	*	*	*	*	2555	0	0	
+
+S 54   *	3886	*	*	*	*	*	*	*	*	*	*	*	*	*	2072	526	*	*	*	54
+       0	*	*	*	*	*	*	2555	0	0	
+
+C 55   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	55
+       0	*	*	*	*	*	*	2555	0	0	
+
+Y 56   *	*	*	*	3417	*	2346	5208	*	3365	*	*	*	*	1865	*	2715	*	*	2656	56
+       0	*	*	*	*	*	*	2555	0	0	
+
+N 57   *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	57
+       0	*	*	*	*	*	*	2555	0	0	
+
+P 58   *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	58
+       0	*	*	*	*	*	*	2555	0	0	
+
+T 59   2002	*	3417	3555	*	2639	3714	*	*	4359	*	5393	4517	3747	*	5650	3689	4421	*	*	59
+       0	*	*	*	*	*	*	2555	0	0	
+
+D 60   *	*	101	*	*	*	*	*	*	*	*	*	*	*	*	*	3886	*	*	*	60
+       0	*	*	*	*	*	*	2555	0	0	
+
+G 61   *	*	5656	4974	*	474	*	*	4577	*	*	3357	4517	5588	5348	*	*	*	*	*	61
+       0	*	*	*	*	*	*	2555	0	0	
+
+Q 62   *	*	*	*	*	*	*	*	1272	5656	*	3848	*	2428	1799	5418	*	*	*	*	62
+       0	*	*	*	*	*	*	2555	0	0	
+
+S 63   3172	*	1567	*	*	*	4038	*	4517	*	*	3007	*	5370	*	2603	2903	*	*	*	63
+       0	*	*	*	*	*	*	2555	0	0	
+
+Y 64   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	64
+       0	*	*	*	*	*	*	2555	0	0	
+
+L 65   *	*	*	*	*	*	*	2462	*	775	4336	*	*	*	*	*	*	2439	*	*	65
+       0	*	*	*	*	*	*	2555	0	0	
+
+I 66   *	*	*	*	*	*	*	478	*	*	5219	*	*	*	*	*	4517	2242	*	*	66
+       0	*	*	*	*	*	*	2555	0	0	
+
+A 67   1345	*	*	*	*	*	*	*	*	*	*	*	*	*	*	722	*	*	*	*	67
+       0	*	*	*	*	*	*	2555	0	0	
+
+Y 68   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	68
+       0	*	*	*	*	*	*	2555	0	0	
+
+R 69   *	*	*	*	*	*	5260	*	*	*	*	902	*	*	1559	*	*	*	*	3330	69
+       0	*	*	*	*	*	*	2555	0	0	
+
+D 70   *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	70
+       0	*	*	*	*	*	*	2555	0	0	
+
+C 71   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	71
+       0	*	*	*	*	*	*	2555	0	0	
+
+C 72   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	72
+       0	*	*	*	*	*	*	2555	0	0	
+
+G 73   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	73
+       0	*	*	*	*	*	*	2555	0	0	
+
+Y 74   3183	*	*	*	*	*	*	*	557	*	*	*	*	3755	5266	*	5650	5636	*	3832	74
+       0	*	*	*	*	*	*	2555	0	0	
+
+N 75   2967	*	3755	*	*	4105	4467	*	*	*	*	3157	3515	3476	*	2003	2681	*	*	*	75
+       0	*	*	*	*	*	*	2555	0	0	
+
+V 76   1997	*	*	*	5208	3769	*	*	*	5266	*	5247	*	*	*	2043	2832	2655	*	4187	76
+       0	*	*	*	*	*	*	2555	0	0	
+
+S 77   5383	324	*	*	*	*	*	*	*	*	*	*	*	*	*	3397	*	4307	*	4974	77
+       0	*	*	*	*	*	*	2555	0	0	
+
+G 78   3304	*	5656	5575	*	714	*	*	*	*	*	3305	*	*	*	3021	5383	*	*	*	78
+       38	5266	*	1585	585	*	*	2555	1000	0	
+
+R 79   5559	*	*	3234	*	*	*	*	3803	*	*	3406	*	2545	1043	4328	*	*	*	*	79
+       0	*	*	*	*	*	*	2555	0	0	
+
+C 80   3330	366	*	*	*	*	*	*	*	*	*	*	5395	5348	*	4307	*	5279	*	*	80
+       83	4168	*	0	*	*	*	2555	1039	0	
+
+P 81   2459	*	*	5395	2368	3863	*	*	*	3245	3937	3293	5236	5260	*	3781	5279	3756	*	4882	81
+       39	5226	*	0	*	*	*	2555	1000	0	
+
+C 82   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	82
+       0	*	*	*	*	*	*	2555	0	0	
+
+L 83   5560	*	*	*	4302	3886	3119	*	*	1929	5559	1710	*	5247	4882	4248	5530	5550	*	*	83
+       0	*	*	*	*	*	*	2555	0	0	
+
+N 84   5560	*	*	3886	*	3730	*	*	*	*	*	1711	*	4882	1335	*	3322	*	*	*	84
+       0	*	*	*	*	*	*	2555	0	0	
+
+T 85   4431	*	3699	*	*	*	6593	*	*	*	*	1757	3867	5291	*	2728	1716	5576	*	*	85
+       0	*	*	*	*	*	*	2555	0	0	
+
+E 86   *	*	1834	749	*	*	5399	*	*	*	*	*	*	3735	*	*	5291	*	*	*	86
+       0	*	*	*	*	*	*	2555	0	0	
+
+G 87   4903	*	4282	*	*	962	*	*	*	*	3867	*	*	*	1954	3733	*	*	*	*	87
+       49	4903	*	0	*	*	*	2555	1023	0	
+
+E 88   5130	*	1549	834	*	*	*	*	*	*	*	*	*	3867	*	*	*	*	*	*	88
+       0	*	*	*	*	*	*	2555	0	0	
+
+L 89   3867	*	*	5044	*	*	*	*	3188	2322	3593	*	*	3396	1727	*	3165	*	*	*	89
+       0	*	*	*	*	*	*	2555	0	0	
+
+P 90   *	*	*	*	*	*	*	3867	*	*	*	*	145	5224	*	*	*	*	*	*	90
+       0	*	*	*	*	*	*	2555	0	0	
+
+V 91   4993	*	*	*	*	2567	*	3788	*	2975	3074	*	5593	4145	*	4353	5364	1595	*	*	91
+       0	*	*	*	*	*	*	2555	0	0	
+
+Y 92   *	*	*	*	*	*	5643	*	*	*	*	*	*	*	*	*	*	3675	*	149	92
+       0	*	*	*	*	*	*	2555	0	0	
+
+R 93   *	*	*	5291	3419	*	*	*	4378	*	*	3162	*	3145	863	4993	5224	*	*	*	93
+       0	*	*	*	*	*	*	2555	0	0	
+
+P 94   5136	*	*	*	5291	*	*	*	4535	3248	2991	5244	632	*	*	*	*	*	*	*	94
+       0	*	*	*	*	*	*	2555	0	0	
+
+E 95   4635	*	3969	2916	2829	2700	*	*	*	4903	5297	6593	*	2278	*	3376	5130	3867	*	*	95
+       171	3867	4535	1585	585	*	*	2555	1059	0	
+
+F 96   3219	*	*	*	2632	5514	*	*	3279	2184	*	3079	*	*	4789	2751	4949	4296	*	*	96
+       0	*	*	*	*	1147	867	2436	0	1140	
+
+A 97   2731	*	6413	*	*	5218	2254	*	*	*	*	1337	*	*	*	2453	5466	*	*	*	97
+       0	*	*	*	*	*	0	2502	0	1059	
+
+N 98   *	*	*	*	*	*	*	*	*	*	*	46	*	*	*	4983	*	*	*	*	98
+       0	*	*	1585	585	0	*	2502	1059	1059	
+
+D 99   *	*	187	3867	*	*	*	*	*	*	*	*	*	*	*	5220	5244	*	*	*	99
+       0	*	*	*	*	*	*	2555	0	0	
+
+I 100  *	*	*	*	*	*	*	479	*	4151	*	*	*	*	*	*	4015	3210	*	4145	100
+       0	*	*	*	*	*	*	2555	0	0	
+
+I 101  *	*	5130	*	*	*	*	1565	*	3419	*	1075	*	*	*	*	*	3939	*	*	101
+       0	*	*	*	*	*	*	2555	0	0	
+
+W 102  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	102
+       0	*	*	*	*	*	*	2555	0	0	
+
+C 103  *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	103
+       0	*	*	*	*	*	*	2555	0	0	
+
+F 104  *	*	*	*	1224	*	*	5652	*	2293	2164	*	*	*	*	5173	*	3366	*	*	104
+       0	*	*	*	*	*	*	2555	0	0	
+
+G 105  2267	*	*	*	*	561	*	*	*	*	*	*	*	*	*	3129	*	*	*	*	105
+       65	4499	*	2000	415	*	*	2555	1024	0	
+
+A 106  1917	*	3812	*	*	4404	*	*	*	*	*	2149	*	*	*	4143	1579	*	*	*	106
+       0	*	*	*	*	*	0	2621	0	1024	
+
+E 107  3589	*	3860	1388	*	3343	*	*	4994	*	*	5090	4886	2982	*	3830	3718	*	*	*	107
+       252	3178	4328	0	*	0	*	2621	1106	1024	
+
+D 108  5328	*	2648	*	*	4278	5347	*	*	*	*	2320	*	*	*	891	*	*	*	*	108
+       3233	*	162	*	*	0	*	2489	0	1042	
+
+D 109  *	*	523	*	*	1718	*	*	*	*	*	*	*	*	*	*	*	*	*	*	109
+       655	*	1455	*	*	*	0	1560	0	2128	
+
+A 110  613	*	*	*	*	1530	*	*	*	*	*	*	*	*	*	*	*	*	*	*	110
+       0	*	*	*	*	0	*	1190	0	2156	
+
+M 111  5528	*	5487	4157	*	*	4557	*	3198	3759	1926	*	5343	3389	*	2459	3641	5088	*	*	111
+       33	5487	*	1000	1000	*	*	2540	1000	0	
+
+T 112  3150	*	*	5147	*	3552	*	2491	*	5293	3257	5352	5133	*	*	3433	1963	3970	*	*	112
+       0	*	*	*	*	*	*	2540	0	0	
+
+Y 113  *	*	*	*	2937	*	*	*	*	*	*	*	*	*	*	*	*	*	*	202	113
+       0	*	*	*	*	*	*	2540	0	0	
+
+H 114  *	*	*	*	*	*	578	*	*	*	*	2120	*	*	*	*	3817	5088	*	*	114
+       0	*	*	*	*	*	*	2540	0	0	
+
+C 115  *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	115
+       0	*	*	*	*	*	*	2540	0	0	
+
+T 116  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1264	777	*	*	*	116
+       0	*	*	*	*	*	*	2540	0	0	
+
+I 117  5028	*	*	*	*	4867	*	2352	*	3476	3343	*	*	*	*	*	1508	2327	*	*	117
+       0	*	*	*	*	*	*	2540	0	0	
+
+S 118  779	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1345	5397	*	*	*	118
+       0	*	*	*	*	*	*	2540	0	0	
+
+P 119  2497	*	*	*	*	*	*	3563	*	4124	*	*	2033	*	4969	*	3660	1619	*	*	119
+       0	*	*	*	*	*	*	2540	0	0	
+
+I 120  *	*	*	*	*	*	*	928	*	2891	*	*	*	*	*	*	*	1558	*	*	120
+       0	*	*	*	*	*	*	2540	0	0	
+
+V 121  5343	*	*	*	*	*	*	2773	*	2450	*	*	*	*	3660	4429	5088	1026	*	*	121
+       0	*	*	*	*	*	*	2540	0	0	
+
+G 122  4867	*	5384	*	*	86	*	*	*	*	*	*	*	*	*	*	*	*	*	*	122
+       0	*	*	*	*	*	*	2540	0	0	
+
+K 123  3057	*	*	3389	*	*	*	5182	2654	2985	*	5357	3973	5222	5230	*	3672	1991	*	*	123
+       0	*	*	*	*	*	*	2540	0	0	
+
+A 124  250	*	3782	*	*	*	*	*	5088	*	*	*	*	5236	*	5037	*	*	*	*	124
+       0	*	*	0	*	*	*	2490	0	0	
+
+//
+�HHsearch 1.5
+NAME  e69e1ac0a4b2554df25f2c2183b0fba0
+FAM   
+FILE  e69e1ac0a4b2554df25f2c2183b0fba0
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 13:00:49 2013
+LENG  248 match states, 248 columns in multiple alignment
+FILT  178 out of 1119 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  6.3 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCEEEEECCCCCCHHHHHHHHHHHHHHCCCCCCCEEEEECCHHHHHHHHHHHCCCCEEEECCCEECCCCCCCCCCCHHHHHHCCCCEEEECCHHHHH
+HHCCCHHHHHHHHHHHHHCCCEEEEEECCCHHHHHCCCHHHHHHHHHHHHHCCHHHHCCEEEEECCHHHCCCCCCCCHHHHHHHHHHHHHHHHHHCCCCC
+CCCEEEEECCCCCCCCHHHHHHCCCCCEEEECHHHHHHHHHHHHHHHC
+>ss_conf PSIPRED confidence values
+9987089997521689999999999998621244697699988788899999973147879833223036899736157999998699999978788755
+5078789999999999978998999908878998665559999999999851414436359998787761799999989999999999999998517100
+466059981766802299997078999899713847789999999859
+>Consensus
+mmrxxxixxNwKmnxxxxxxxxxxxxxxxxxxxxxxxxvxvxPpxxxLxxxxxxxxxxixigAQnxxxxxxGaxTGevSxxmLxdxGxxxviiGHSERRx
+xfxEtdxxixxKvxxalxxgLxpIlCvGExxexxxxgxxxxvxxxQlxxxlxxxxxxxxxiIAYEPvWAIGtGxxaxxexixxxxxxIRxxlxxxxxxxx
+xxxvxILYGGSVxxxNxxxlxxxxxiDGxLVGxaslxxxFxxiixxxx
+>e69e1ac0a4b2554df25f2c2183b0fba0
+MARKYFVAANWKCNGTLESIKSLTNSFNNLDFDPSKLDVVVFPVSVHYDHTRKLLQSKFSTGIQNVSKFGNGSYTGEVSAEIAKDLNIEYVIIGHFERRK
+YFHETDEDVREKLQASLKNNLKAVVCFGESLEQREQNKTIEVITKQVKAFVDLIDNFDNVILVYEPLWAIGTGKTATPEQAQLVHKEIRKIVKDTCGEKQ
+ANQIRILYGGSVNTENCSSLIQQEDIDGFLVGNASLKESFVDIIKSAM
+>gi|340708258|pdb|3S6D|A Chain A, Crystal Structure Of A Putative Triosephosphate Isomerase From Coccidioides Immitis
+--PKTLLIISLKMYFTPSRTIDYIQGLLEPRNDiirqenRSRLLLALIPDFLTIYPCSEAIKefesnlaapqdadtpPPLLLGAQDCFWDSLGPYTGEIS
+PVCLRDMNVSIVELGHAERRAIFGETDQQVARKAAAAADQGLIPLVCIGEVSTlgpivSEAIGRAVGECEAQIRPVLEALPRDAPVIFAYEPVWAIGKPQ
+PARVDHVGAVVSGIRSVIERI-DRHRKGEVRILYGGSAGPGLWGPGGLGKEVDGMFLGRFAHDiEGVRKVVRE--
+>gi|261368205|ref|ZP_05981088.1| triose-phosphate isomerase [Subdoligranulum variabile DSM 15176]gi|282569711|gb|EFB75246.1| triose-phosphate isomerase [Subdoligranulum variabile DSM 15176]
+----------------------------------SEVEFAAYLPEAHLLSAAAARKpgCPLQLGCQGVYRAdtavggNFGAFTTNRPASAAKALGCESVL
+IGHCEERNDKmgilAEagvtgteasraVNRLLNQEIRCAVARGMTVLYCIGEKSEEQD--AWQQVLGEQLSLGLEGV-DKSKVVIAYEPVWSIGPGKTPa
+DKPYITKIARFVKEQT---------GGMDVVYGGGLKSDNAAMLASIPEIDGGLIaltrfsGEIGFYpEEYLEIIRLY-
+>gi|170017749|ref|YP_001728668.1| triosephosphate isomerase [Leuconostoc citreum KM20]gi|169804606|gb|ACA83224.1| Triosephosphate isomerase [Leuconostoc citreum KM20]
+-----ICIVNFKSLMCYKKQLQWLQDIEQLP---LNFKLLVAPTLPEHNTY-----QNYEIIAQNISLAQ--RTVGEMSANVLKALDIRYAFVGHLERRK
+LLNETTDIIHERLANCLNNDMIPIICLGMHS-------GPDLVIRELKSILKNIDfMGQRIIVAYESLRSTQSNSSAySYVEMEAVYLKLNQYLSELVKN
+SNLASYSLVMGGHITAEG-ISVARKIGYDGVLIGDRYQEvSAFQPIIE---
+>gi|258614850|ref|ZP_05712620.1| triosephosphate isomerase [Enterococcus faecium DO]
+--RKPIIAGNWKMNKTASEAKEFAEAVKNKIPS-NDKVdsVIGSPALFLQELMTSAEGTELKISAQNCYWENSGAFTGETSPAALADLGVH---------
+----------------------------------------------------------------------------------------------------
+--------------------------------------------------
+>gi|20095100|ref|NP_614947.1| triosephosphate isomerase [Methanopyrus kandleri AV19]gi|22096220|sp|Q8TUT9.1|TPIS_METKA RecName: Full=Triosephosphate isomerase; Short=TIM; AltName: Full=Triose-phosphate isomerasegi|19888388|gb|AAM02877.1| Triosephosphate isomerase [Methanopyrus kandleri AV19]
+----PPVIVNFKAYSeaVGENALRLARVAAEVSEE-TGVEVGICPPHVDLRDVVREVGDEVTVLAQAVDAAEPGGRTGHVTPEMVVEAGADGTLLNHSER
+RMLLEDLKD----VCRACINEGLLTIVCASDALAAR--------------AAG----ALSPHAVAVEPPELIGTGtpvSKADPEVVERSVEVVKEV----
+-----SEETAVLCGAGITDGSDVRAAVELGADGVLVASGVVL-----------
+>gi|312870562|ref|ZP_07730679.1| conserved hypothetical protein [Lactobacillus oris PB013-T2-3]gi|311093922|gb|EFQ52249.1| conserved hypothetical protein [Lactobacillus oris PB013-T2-3]
+-----------------------------------------------------------------------------------------LTLLDHSSR--
+-------ELNHQLQTTLQGSQQPVLKLDEG-DLRLTPVdFAYLLSRRLANVLAGVsrAAVARLVIVYSPSWA-GEcRLPADAQRIRIAHRQIRDLLRIIY
+DQETAGQVQIIYGGFVFEEELADVLCDSNVDGVLMN----------------
+>gi|312887118|ref|ZP_07746722.1| triosephosphate isomerase [Mucilaginibacter paludis DSM 18603]gi|311300430|gb|EFQ77495.1| triosephosphate isomerase [Mucilaginibacter paludis DSM 18603]
+-MRNKVIAANWNMNDSYLKGLALFSEMLKLVHEeVkGNREIIICPPFIHLHVFGQLSKnhSRISIGAQNAHQSDSDA-----------------------
+----------------------------------------------------------------------------------------------------
+----------------------------------------------------
+>gi|262401201|gb|ACY66503.1| triose phosphate isomerase [Scylla paramamosain]
+-SKRFFVIGNWKMNVDKARIDGIVKMMTAASLS-KHTEVVVGCPSCYLE---------------------------------------------------
+----------------------------------------------------------------------------------------------------
+------------------------------------------------
+>gi|337294138|emb|CCB92123.1| putative uncharacterized protein [Waddlia chondrophila 2032/99]
+-----------------------------------QTEWLFALPFSLTSEISSF--PQVSCGAWNLSFAKTGAFTQEVHFSMLRERGASFVILGDRMSRR
+HLDVSDREINVWLLKALERGLSVVV--GLTD----QG----DLYEQIQGVLEGIEpkHLEKVrILLYAG--SLGWNLEDEAEKIAERAKNLRNVLSSLYD
+-DVSRTIKILIEISHFSDDPFAYLSHSSIDGISLSASAIK-----------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	4279	*	253	*	4085	*	*	*	*	4314	*	*	1
+       848	2013	2347	579	1598	*	*	3956	1167	0	
+
+A 2    4188	*	*	*	*	5255	6581	4766	3832	4718	806	6128	6460	4868	5298	4482	5603	5123	*	6367	2
+       377	2715	3685	959	1042	0	*	5187	1591	1120	
+
+R 3    5310	*	5553	5470	*	6626	*	6848	2282	5875	3429	5667	6253	5464	1056	4925	5189	*	*	*	3
+       101	6445	4151	0	*	376	2124	5497	1000	1296	
+
+K 4    6803	*	*	4344	*	6712	8637	5846	1333	6716	4662	4628	5656	3453	2256	4807	4009	7016	*	*	4
+       99	5667	4420	2702	241	1531	613	5583	1045	1295	
+
+Y 5    5613	*	*	*	5010	*	6563	4985	2238	3898	4613	5792	1405	6967	3790	6102	4241	6466	*	4978	5
+       57	5323	6159	622	1514	403	2036	6117	1121	1372	
+
+F 6    *	*	*	7123	2629	*	5605	1924	7286	1943	4479	*	7282	*	*	7253	4896	3801	4140	4039	6
+       63	4808	7126	818	1208	0	*	6336	1247	1133	
+
+V 7    6351	6291	*	*	3490	*	*	1323	*	2541	5979	*	*	*	*	*	6256	1809	*	*	7
+       7	*	7768	*	*	940	1063	6351	0	1043	
+
+A 8    2199	*	*	6631	4997	2957	*	1785	*	3968	5081	*	6346	5649	*	6916	7710	2448	*	*	8
+       0	*	*	0	*	0	*	6363	1000	1028	
+
+A 9    2089	6575	*	*	5402	1409	*	3528	*	5217	6499	5894	6355	*	*	5553	4432	2910	*	*	9
+       25	5885	*	539	1681	*	*	6359	1093	0	
+
+N 10   *	*	*	*	*	5269	*	*	*	*	6782	164	*	*	*	4060	6355	*	*	*	10
+       0	*	*	*	*	*	*	6359	0	0	
+
+W 11   *	6858	*	*	2838	*	*	*	*	2909	5413	6351	4856	*	*	*	5380	*	713	6145	11
+       42	5602	6964	962	1039	*	*	6393	1095	0	
+
+K 12   *	*	*	*	*	6322	*	*	64	6798	*	8544	*	*	6939	6515	*	*	*	*	12
+       12	6881	*	0	*	1518	620	6390	1009	1050	
+
+C 13   3430	3379	*	*	*	*	5786	6781	*	4201	978	4032	*	6390	*	4206	3572	6590	*	*	13
+       0	*	*	661	1444	0	*	6392	1061	1017	
+
+N 14   *	*	*	7299	6669	*	3266	*	*	5092	*	1053	6887	5372	6541	5652	7539	*	*	1738	14
+       137	5143	4004	0	*	*	*	6579	1149	0	
+
+G 15   4433	*	6627	4494	3537	2182	5054	6322	2230	3616	3990	5071	4287	6148	6576	5138	5222	5399	*	6961	15
+       222	3238	4761	982	1018	0	*	6334	2075	1440	
+
+T 16   5326	5888	3320	5311	5135	5114	*	6882	5658	3805	6032	3309	7316	*	5360	2456	1973	4595	6740	4605	16
+       41	6072	6258	1272	771	1318	740	6463	1111	1194	
+
+L 17   5902	6392	6935	5346	3645	2477	5349	3563	3802	3413	8059	*	4039	5275	3182	4004	4650	4723	*	3973	17
+       27	*	5744	*	*	1094	912	6462	0	1188	
+
+E 18   2460	7054	3914	3085	6382	5457	4587	*	2579	5292	*	4654	5648	3705	5000	3349	4438	4933	*	6308	18
+       26	5797	*	0	*	1406	683	6558	1177	1235	
+
+S 19   4853	6823	3101	1913	4726	4994	*	*	3459	3832	7098	3710	7394	4031	4246	3375	5363	7344	*	6186	19
+       0	*	*	*	*	*	0	6476	0	1172	
+
+I 20   1653	7130	*	*	5603	4057	*	3299	*	3169	7819	5003	6011	4672	*	3595	3084	3769	*	5872	20
+       26	6672	6910	0	*	724	1342	6476	1060	1172	
+
+K 21   3905	5533	5034	3246	*	5287	6210	5172	3462	2424	5587	3757	7549	4416	3958	4288	4273	3563	*	4924	21
+       16	*	6469	*	*	1943	435	6471	0	1089	
+
+S 22   2699	*	3188	2242	6060	5087	6089	6138	3639	5630	6762	4768	*	3358	3926	4282	3902	5405	*	*	22
+       9	7374	*	0	*	2092	386	6549	1000	1160	
+
+L 23   6305	7069	*	*	2028	*	6909	3867	7589	1456	5240	*	*	6363	*	7267	*	5923	3751	2714	23
+       26	7159	6494	2228	346	565	1625	6560	1115	1112	
+
+T 24   1693	4728	7421	7541	4268	6811	*	2935	6419	2165	6654	7653	*	6003	7671	5720	5565	2964	7650	7185	24
+       32	7559	5898	0	*	534	1694	6478	1000	1128	
+
+N 25   4106	7440	3354	2923	*	5096	4791	7257	2413	7575	6637	3367	*	3163	3462	3624	4640	6503	*	*	25
+       13	*	6764	0	*	2257	339	6564	1000	1156	
+
+S 26   2617	*	4036	2562	6539	4118	*	4237	3295	4337	5927	4500	*	4245	4439	4612	4106	4217	*	5525	26
+       0	*	*	*	*	1826	478	6549	0	1177	
+
+F 27   3716	6109	*	6352	2659	7389	*	2795	*	1487	4994	7339	*	6920	6335	6335	5466	3159	6211	6222	27
+       77	4554	6721	790	1245	*	0	6563	1327	1115	
+
+N 28   2740	6475	3617	3443	*	4583	6544	4651	3786	3491	7620	2966	5415	4379	3534	4594	4360	5011	*	*	28
+       140	5273	3904	371	2140	376	2122	6567	1272	1187	
+
+N 29   2839	7715	4067	3247	7462	4615	7454	5350	3072	5838	*	3607	4172	3100	3780	3936	4339	6537	5656	7658	29
+       102	5021	4749	771	1273	448	1904	6462	1153	1463	
+
+L 30   2666	6109	7789	4124	4589	4328	5620	3354	4499	2619	7544	5324	4543	4920	4671	4299	4464	3491	*	5712	30
+       202	3190	5586	383	2100	1724	520	6526	1665	1445	
+
+D 31   3524	5514	4525	6106	5722	5374	5591	3425	3882	2050	4834	7129	5012	6522	4494	3595	4105	3614	*	5964	31
+       224	4293	3429	526	1710	1743	512	6505	1280	1455	
+
+F 32   3534	*	3513	3501	4576	5554	5376	4527	3268	4277	6072	4036	3889	3777	3980	4095	4066	5857	6872	5153	32
+       254	4899	2964	384	2098	768	1276	6378	1171	1854	
+
+D 33   4000	8685	2849	2252	5349	5800	7057	*	3481	6207	7406	3163	3942	3872	4693	3219	5452	7199	7253	*	33
+       1590	3308	819	1599	578	3487	135	6360	1574	2084	
+
+P 34   4576	*	4953	3221	3617	5182	3739	4285	4452	3359	4942	4201	3194	*	3790	5251	6361	3078	*	6069	34
+       703	2342	2408	1465	649	472	1842	5516	1490	4509	
+
+S 35   3027	*	3747	4305	*	4561	5797	5221	3811	3588	*	3777	3929	4734	5303	3489	3251	5293	6007	3754	35
+       307	3032	3849	1302	750	233	2745	6535	1828	2609	
+
+K 36   4524	6090	3244	4073	7832	2893	5867	6667	3411	4807	*	2599	4587	3636	4272	3310	4814	7403	*	*	36
+       356	2194	*	433	1946	2928	203	6404	2755	1663	
+
+L 37   3646	4186	5810	5626	5895	5656	4484	3427	4917	4179	6732	4645	5043	6357	4763	4965	3414	1786	*	5649	37
+       87	4099	*	255	2623	0	*	6419	1993	1613	
+
+D 38   6951	7996	2377	1861	7086	5407	6882	5270	3442	5881	*	3941	6459	3406	3511	4483	5142	6119	*	*	38
+       29	5659	*	745	1310	*	*	6645	1112	0	
+
+V 39   4387	7996	*	*	3980	*	*	2018	7796	2634	5785	7298	6359	*	6571	6778	4526	1559	5819	5992	39
+       16	7283	7740	1000	1000	*	*	6645	1001	0	
+
+V 40   2728	7715	7530	6231	3209	3789	*	2576	*	3306	5014	*	*	*	*	7581	5873	1765	7767	5367	40
+       15	7530	7662	1000	1000	0	*	6547	1000	1000	
+
+V 41   5086	5686	*	*	3470	7026	*	1820	*	2284	5151	*	*	*	*	*	6083	1690	*	6384	41
+       0	*	*	*	*	*	0	6546	0	1000	
+
+F 42   1520	2315	*	7261	2676	4588	*	4122	*	4936	6504	*	*	*	*	3880	4204	7069	*	6069	42
+       119	5612	4094	809	1221	*	0	6546	1084	1000	
+
+P 43   4157	6621	*	*	5940	6296	7218	5747	*	3927	7342	*	498	*	*	7418	*	3417	*	*	43
+       0	*	*	0	*	0	*	6395	1440	1473	
+
+V 44   4022	*	5719	7090	*	5839	*	5766	*	6950	*	4749	1141	3152	*	2490	4047	5227	*	*	44
+       16	*	6518	*	*	*	*	6641	0	0	
+
+S 45   2904	7536	5231	5470	1719	*	4008	4530	*	3503	5485	5206	5722	6092	*	3784	4803	6128	*	3202	45
+       0	*	*	0	*	0	*	6637	1061	1061	
+
+V 46   4336	6884	*	7292	6061	5024	6968	2837	*	2532	7399	*	2476	6853	*	4529	2325	2995	*	7294	46
+       38	6824	5854	0	*	*	*	6641	1018	0	
+
+H 47   3227	6851	2511	5224	4280	6207	3650	6288	*	3020	5778	6193	*	7426	*	3748	4074	6255	*	2204	47
+       7	*	7640	0	*	590	1576	6632	1061	1115	
+
+Y 48   4357	*	*	*	6219	*	6425	2112	*	795	6032	6351	*	8667	*	*	5003	4731	*	5685	48
+       25	7637	6344	1233	799	1181	839	6637	1032	1051	
+
+D 49   3159	6186	3875	3494	6303	4371	3839	4756	5376	5815	6784	3999	3440	4643	3577	3178	4971	5043	7550	4572	49
+       17	*	6437	*	*	1588	584	6624	0	1096	
+
+H 50   3794	*	4652	3465	6029	4702	6383	5041	4886	3303	6561	6171	3427	3525	4027	2934	3300	5268	6194	5121	50
+       29	8191	5896	0	*	2154	367	6629	1000	1135	
+
+T 51   2738	5699	7228	8015	3777	7468	*	3008	*	2964	3921	*	7284	7256	*	4759	3861	1856	*	5138	51
+       64	7812	4688	492	1792	613	1530	6457	1133	1247	
+
+R 52   2383	*	7663	5736	7445	5340	6149	4487	3153	3313	5912	4839	*	4250	3601	2627	5839	3177	*	7355	52
+       33	*	5458	*	*	3559	128	6523	0	1313	
+
+K 53   3958	7664	3225	2530	*	4081	5082	6451	3070	5003	*	3886	6353	3010	4697	3443	4199	6451	*	*	53
+       91	5217	4880	191	3012	2638	253	6356	1226	1466	
+
+L 54   3242	5646	7684	4275	4170	6770	4012	3823	4006	3043	4671	4874	*	3789	4108	3894	4388	3688	6775	4988	54
+       186	*	3047	*	*	3602	124	6326	0	1640	
+
+L 55   4802	5688	*	6335	3721	*	*	3462	6922	1599	4651	7489	5714	6685	5690	4071	3116	2951	*	5065	55
+       337	4028	2765	688	1399	3172	170	6329	1457	2325	
+
+Q 56   2612	6933	4184	3213	*	4638	5292	6467	2631	*	*	4013	4131	3823	3767	3414	4112	6359	*	*	56
+       3155	308	3646	951	1051	952	1049	6026	4528	2970	
+
+S 57   4084	7514	3636	5678	7267	4543	4223	4758	3498	5383	*	4762	3331	6042	4754	2136	3104	6483	*	4649	57
+       199	3969	3945	462	1867	197	2971	6196	1416	2491	
+
+K 58   5241	7073	3342	4354	6258	3275	3901	7382	2811	5522	*	2601	3479	3721	4996	3986	5127	7476	*	7373	58
+       88	4288	6982	673	1424	124	3601	6594	1287	1589	
+
+F 59   *	6182	*	*	3379	7048	7079	1547	*	1914	5640	7381	7702	*	*	6925	6811	2472	6335	5207	59
+       9	9887	7642	0	*	*	0	6623	1000	1065	
+
+S 60   3311	*	5231	3364	4775	4286	4896	4607	3088	3469	6984	5684	3925	3769	4702	3204	5247	4465	6003	7803	60
+       32	7718	5879	1000	1000	668	1431	6460	1000	1099	
+
+T 61   5488	5342	*	*	3812	6928	*	1792	*	2153	*	*	5833	7376	*	*	4375	2063	5835	4998	61
+       7	7722	*	3327	151	1102	904	6443	1042	1122	
+
+G 62   2785	4488	*	*	4069	983	*	4076	*	5705	*	*	*	*	*	5020	5382	4310	7176	4201	62
+       7	*	7651	*	*	0	*	6468	0	1044	
+
+I 63   571	6936	*	6990	*	3884	*	6335	*	5891	*	*	5674	7245	*	3162	7485	3832	*	*	63
+       0	*	*	0	*	0	*	6472	1000	1000	
+
+Q 64   *	*	7275	5243	*	6993	7564	*	*	*	*	*	5762	142	8011	*	7205	*	5728	*	64
+       18	*	6367	*	*	*	*	6472	0	0	
+
+N 65   4447	*	2023	*	*	5448	3084	*	*	*	*	963	*	7181	*	5890	5450	7002	*	*	65
+       11	7013	*	354	2201	0	*	6435	1115	1061	
+
+V 66   3247	2529	*	*	5535	*	*	3751	*	3273	2940	5743	6943	*	*	*	7625	1474	*	*	66
+       36	7690	5673	0	*	*	*	6472	1000	0	
+
+S 67   3964	5637	2742	5932	4080	6428	2706	6409	*	*	*	4952	*	*	*	1709	5221	6652	7580	2899	67
+       24	6561	7443	611	1535	0	*	6475	1025	1132	
+
+K 68   3147	*	4297	4517	3447	6338	5093	4733	4135	4597	7361	7702	2966	4521	4660	3989	5939	5083	3114	3697	68
+       37	6454	6203	603	1550	0	*	6474	1035	1000	
+
+F 69   2896	*	4575	2699	4274	5075	4019	4471	3599	5772	5170	4871	6186	4138	5505	6165	4884	3233	*	3792	69
+       123	4015	5632	1345	722	820	1205	6428	1394	1066	
+
+G 70   3962	*	2411	2440	*	3049	*	5383	4084	5722	7282	4450	4608	4840	5453	3170	4203	6063	*	6702	70
+       61	7249	4839	1000	1000	0	*	6443	1001	1138	
+
+N 71   5337	5815	5043	3371	4116	7288	6545	6882	3408	4307	7616	3515	3227	3996	4999	2589	4081	4805	*	4378	71
+       0	*	*	*	*	*	0	6363	0	1183	
+
+G 72   6646	*	6528	*	*	89	*	*	5674	*	*	7703	*	*	*	6963	7262	*	*	*	72
+       14	*	6646	*	*	0	*	6363	0	1183	
+
+S 73   796	*	*	5817	*	6414	*	*	7424	*	*	4751	2849	7315	3363	3467	6216	7527	*	*	73
+       0	*	*	*	*	0	*	6440	0	1034	
+
+Y 74   7646	*	*	*	1618	4321	3295	*	*	5554	7645	4648	6222	*	6526	5991	4996	6905	5004	1555	74
+       0	*	*	*	*	*	*	6460	0	0	
+
+T 75   *	7138	*	*	*	*	*	5731	*	6222	4618	*	*	*	*	5820	210	4739	*	*	75
+       89	*	4070	*	*	*	*	6460	0	0	
+
+G 76   6217	*	*	*	*	124	*	*	*	*	*	6155	*	5757	*	5681	5868	*	*	*	76
+       0	*	*	*	*	*	0	6318	0	1440	
+
+E 77   4033	6459	3546	734	6939	*	4994	*	6155	*	7537	6171	*	5610	5226	3823	5364	*	*	5283	77
+       0	*	*	*	*	*	0	6318	0	1440	
+
+V 78   7175	7486	*	*	5813	*	*	1597	9217	4179	5556	5002	*	*	5867	5312	3114	1427	*	*	78
+       0	*	*	*	*	*	0	6318	0	1440	
+
+S 79   3787	*	*	*	*	4985	5756	*	*	4851	*	6925	4350	*	6154	516	3969	6882	*	*	79
+       20	*	6154	*	*	*	0	6318	0	1440	
+
+A 80   1246	6919	*	*	4872	5056	*	4487	*	5247	7234	7327	2117	7173	*	4985	5156	3407	5392	7174	80
+       0	*	*	*	*	*	0	6287	0	1545	
+
+E 81   2996	*	4281	2467	5254	4576	7624	*	4916	3993	*	4216	4130	3871	4220	2633	4173	5403	*	*	81
+       0	*	*	*	*	2455	290	6287	0	1545	
+
+I 82   3624	6254	*	5492	5309	6701	5616	7595	7617	4006	973	5726	*	3670	*	4039	6352	3902	6777	*	82
+       0	*	*	*	*	*	0	6367	0	1440	
+
+A 83   4457	*	*	6683	7196	*	*	2982	*	547	6108	*	*	*	*	6238	*	3407	7617	*	83
+       0	*	*	3000	193	0	*	6367	1440	1440	
+
+K 84   2120	*	*	5572	*	6942	6660	5901	1580	4409	6995	5449	*	4689	3057	4673	5343	3997	*	5913	84
+       0	*	*	*	*	*	*	6479	0	0	
+
+D 85   3785	*	1469	1761	*	5752	4854	*	6889	6321	7548	4455	*	4869	*	3573	7668	7038	*	6012	85
+       0	*	*	*	*	*	*	6479	0	0	
+
+L 86   2627	5464	*	7094	3815	*	6585	3013	6134	2156	4117	5227	*	7165	5861	4202	5137	3131	6781	4330	86
+       37	*	5301	*	*	*	*	6521	0	0	
+
+N 87   5149	*	3916	7306	*	510	5226	*	4365	*	*	3541	*	6131	6766	6319	*	*	*	*	87
+       13	*	6834	*	*	0	*	6525	0	1134	
+
+I 88   2129	2341	*	*	*	4902	*	2524	*	3867	*	6657	*	6778	*	6467	6020	1986	*	*	88
+       0	*	*	*	*	0	*	6507	0	1014	
+
+E 89   5540	*	3213	3705	*	6077	8722	5335	2276	7793	*	3665	7676	4210	2922	2749	3393	5668	*	7020	89
+       14	6738	*	0	*	*	*	6521	1042	0	
+
+Y 90   4458	5688	6917	*	3706	2650	4128	5778	6812	4245	6162	6218	*	*	*	5975	4227	5822	3630	1479	90
+       0	*	*	*	*	*	*	6594	0	0	
+
+V 91   2804	5255	*	*	*	6740	*	5437	*	5036	*	*	*	*	*	3904	2555	938	*	6812	91
+       0	*	*	*	*	*	*	6594	0	0	
+
+I 92   *	*	*	3612	3541	*	*	1282	*	1528	4398	*	*	*	*	*	6372	6070	*	*	92
+       14	7571	7734	1000	1000	*	*	6594	1031	0	
+
+I 93   5403	6689	*	*	*	6804	*	1314	*	1817	*	*	*	*	*	*	6010	1994	7569	*	93
+       0	*	*	*	*	*	0	6595	0	1000	
+
+G 94   *	*	6817	*	*	354	*	6812	6365	*	*	2483	*	*	*	6804	*	*	*	*	94
+       16	*	6466	*	*	*	0	6595	0	1000	
+
+H 95   *	*	5881	6374	*	6749	78	6813	*	*	*	*	*	*	*	*	7577	*	*	*	95
+       0	*	*	1585	585	1812	484	6526	1000	1103	
+
+F 96   3193	6971	*	6380	6671	*	6750	*	*	4317	*	*	4363	7579	4881	528	*	*	6737	6521	96
+       0	*	*	*	*	*	0	6525	0	1061	
+
+E 97   *	*	6336	110	*	*	*	*	7579	6380	5884	6823	*	*	*	5783	*	*	*	*	97
+       0	*	*	*	*	*	0	6525	0	1061	
+
+R 98   6412	4927	*	5293	*	*	5170	6978	5360	*	*	4133	6576	7143	459	5512	6380	5269	*	6995	98
+       23	*	5953	*	*	*	0	6525	0	1061	
+
+R 99   *	*	*	5773	*	*	*	*	4915	*	7052	7173	4689	5654	221	5818	*	*	*	*	99
+       22	7111	6968	2595	261	1275	769	6465	1117	1211	
+
+K 100  3610	7092	4621	4679	*	5651	3535	4850	2964	3183	4485	4930	*	3948	2703	4771	4011	4270	*	7482	100
+       40	6852	5732	1585	585	*	0	6501	1014	1161	
+
+Y 101  5368	*	4180	5444	4865	5749	4340	3191	5299	2585	4666	5454	6950	*	6434	4339	3097	4679	7274	2321	101
+       46	7075	5370	3700	115	1649	554	6474	1005	1301	
+
+F 102  5182	7710	*	5880	1150	*	3316	4979	6850	2423	6271	5899	6792	7450	6663	6786	*	5869	7275	3541	102
+       70	5220	5601	1308	746	1592	582	6429	1208	1385	
+
+H 103  3697	5396	3919	5514	6227	1694	3089	*	3994	6158	*	2580	7471	5196	4994	4757	6979	*	*	5784	103
+       32	5516	*	1569	593	1695	533	6451	1137	1410	
+
+E 104  7031	6971	3173	357	*	6742	6962	*	6045	*	*	6828	*	6061	*	6868	6678	5796	*	*	104
+       34	5430	*	3105	178	*	0	6442	1134	1272	
+
+T 105  *	*	3612	6333	*	5999	6294	3451	5225	3940	*	3548	6908	6613	*	2512	1387	4953	*	*	105
+       0	*	*	*	*	2788	226	6438	0	1324	
+
+D 106  4885	7994	1077	4000	*	6169	7287	6955	6254	4892	*	2731	6846	4760	5790	3848	5057	4999	*	7505	106
+       26	*	5808	*	*	904	1103	6448	0	1271	
+
+E 107  2938	*	3353	1899	7036	6200	6116	5989	3985	4746	6304	6550	*	3356	3354	3896	5361	5804	6621	6221	107
+       249	*	2657	*	*	0	*	6494	0	1240	
+
+D 108  5113	*	3205	3603	4562	*	6019	2661	6045	2823	4195	6183	*	3565	*	4821	3109	3387	*	6916	108
+       0	*	*	*	*	*	0	6177	0	2133	
+
+V 109  5688	6172	*	6451	6086	*	*	1320	*	3641	*	*	*	7252	*	6955	4873	1282	*	*	109
+       0	*	*	*	*	*	0	6177	0	2133	
+
+R 110  1856	5342	6786	4462	6799	4425	5057	6274	4397	5833	6062	1798	*	6020	3366	5703	5068	6506	7339	*	110
+       20	*	6188	*	*	*	0	6177	0	2133	
+
+E 111  3015	*	5000	3244	7403	6177	*	7440	2289	3151	7097	4353	*	3346	3011	4230	5573	4966	7534	7284	111
+       0	*	*	1338	727	0	*	6168	1170	2226	
+
+K 112  4655	*	*	6956	*	*	*	*	408	5033	*	6999	*	5053	4551	6881	4762	5341	5856	*	112
+       9	*	7303	*	*	*	*	6590	0	0	
+
+L 113  2714	6262	*	*	4038	*	*	2670	5839	2771	6012	*	*	*	*	6496	3837	1537	7556	7339	113
+       7	*	7723	*	*	*	0	6586	0	1008	
+
+Q 114  2689	*	4332	3578	6216	5331	4927	5166	2409	3265	*	4146	5659	3793	3592	5050	6010	4857	*	6856	114
+       0	*	*	0	*	1181	839	6587	1000	1051	
+
+A 115  1892	5926	*	5330	4264	7576	5734	5341	2944	4180	6607	3095	*	4716	2865	4720	4727	7748	*	5613	115
+       0	*	*	*	*	*	0	6586	0	1008	
+
+S 116  887	3184	*	*	7288	5906	*	4090	*	3019	*	*	*	*	*	4197	5648	4308	*	5703	116
+       0	*	*	*	*	*	0	6586	0	1008	
+
+L 117  4029	*	5622	5419	5163	6878	6237	3653	3416	1182	5541	5832	7748	3907	4461	5525	*	4692	6036	*	117
+       0	*	*	*	*	*	0	6586	0	1008	
+
+K 118  2870	*	2904	2427	*	4912	*	*	3106	6977	6983	3759	*	3438	3265	3382	*	*	6335	*	118
+       0	*	*	*	*	*	0	6586	0	1008	
+
+N 119  2468	6305	*	4324	6623	5599	3306	5693	4756	3081	*	2702	*	4357	5001	3617	4523	4029	*	5043	119
+       0	*	*	2807	222	0	*	6586	1008	1008	
+
+N 120  5475	*	3489	4603	*	710	5819	*	4697	6980	*	3574	7524	5890	5972	4662	6620	*	*	*	120
+       0	*	*	*	*	*	*	6590	0	0	
+
+L 121  7520	*	6980	*	4204	*	*	2781	*	824	2607	*	*	6813	*	*	*	4759	7441	7345	121
+       24	7524	6469	0	*	*	*	6590	1000	0	
+
+K 122  5724	6409	4139	4033	*	6325	6380	2764	3161	4469	4773	4913	7922	4000	4014	4129	2494	3567	*	7524	122
+       0	*	*	0	*	0	*	6521	1061	1061	
+
+A 123  4133	*	*	*	*	6540	*	3791	*	6463	*	*	989	*	6337	3914	3735	2388	*	*	123
+       0	*	*	*	*	*	*	6590	0	0	
+
+V 124  6223	5438	*	*	7189	*	*	940	*	3121	5201	*	*	*	*	*	7676	1829	*	7174	124
+       7	*	7618	*	*	*	*	6590	0	0	
+
+V 125  4811	*	*	*	3953	*	*	2523	*	1589	*	*	*	*	*	5804	*	1718	*	3804	125
+       43	6336	5851	0	*	*	0	6592	1065	1000	
+
+C 126  5785	107	6702	*	6282	*	*	*	6751	*	*	*	*	*	*	6481	*	6601	*	*	126
+       0	*	*	*	*	2196	355	6494	0	1120	
+
+F 127  3522	4822	*	*	4937	*	*	1512	*	4931	7601	*	*	*	*	6971	5803	1216	*	*	127
+       0	*	*	*	*	0	*	6492	0	1084	
+
+G 128  6356	6961	3268	4951	*	397	*	*	6871	*	*	4897	5979	6204	7097	7519	*	*	*	*	128
+       0	*	*	*	*	*	*	6590	0	0	
+
+E 129  *	*	3564	498	*	8067	*	*	6984	5856	6481	4053	*	5859	6092	4201	5993	7618	*	*	129
+       39	*	5223	*	*	*	*	6590	0	0	
+
+S 130  5234	*	3874	4884	*	6034	4857	5394	5420	5754	6906	4179	3177	6302	6993	2590	1682	3926	*	5826	130
+       79	7111	4440	0	*	367	2153	6558	1006	1163	
+
+L 131  3332	*	5025	2681	7936	*	*	4924	4328	1482	5305	6832	6306	3786	5082	4022	5451	5277	*	6603	131
+       199	*	2954	*	*	678	1415	6474	0	1362	
+
+E 132  3388	6806	3051	1221	*	5959	7224	7062	4490	4558	6602	6327	7351	3767	6277	4804	4391	5056	*	*	132
+       35	6933	6012	2322	322	4748	55	6241	1050	2044	
+
+Q 133  3367	7115	3415	1459	6595	5406	*	4698	6281	5052	6575	5695	6098	3216	5607	4945	4677	3666	*	*	133
+       41	*	5171	*	*	*	0	6232	0	2090	
+
+R 134  4037	6933	*	4780	4432	4776	5440	7134	3039	4107	*	4910	6867	6037	1225	5979	6897	*	*	3430	134
+       234	7205	2809	1004	996	981	1019	6188	1040	2235	
+
+E 135  4045	*	2883	1481	*	*	*	*	3323	6577	5296	3648	*	3334	5844	4301	4592	5552	*	*	135
+       80	7236	4409	2322	322	2690	243	6149	1000	2385	
+
+Q 136  1682	*	4868	4721	*	4541	*	4716	4787	5854	7041	3385	5876	3022	4766	3070	4001	*	6242	7221	136
+       133	*	3502	*	*	4074	88	6137	0	2395	
+
+N 137  4689	*	4326	4863	6014	976	6313	*	3470	6682	6210	3061	6493	5567	6183	4252	*	6808	*	*	137
+       112	5039	4499	1000	1000	4976	47	5856	1126	2729	
+
+K 138  5675	6895	2951	3815	7040	6251	7159	4838	2298	3812	4814	4179	6143	3760	2927	4304	5575	4531	*	6757	138
+       46	5333	7201	1515	621	3215	164	5760	1142	2870	
+
+T 139  2574	*	6517	5001	4890	5963	4965	*	*	4468	4891	4799	*	6419	6097	3252	1467	4294	5451	5230	139
+       0	*	*	2322	322	3653	120	5915	1061	2719	
+
+I 140  3842	*	4695	2711	4273	6080	6212	4207	2608	2690	5935	5439	4610	4456	5145	5021	5119	4146	*	6020	140
+       22	*	6056	*	*	5210	40	5964	0	2593	
+
+E 141  3136	*	2305	1873	*	6792	5459	7362	5372	*	6919	4088	7632	4065	4224	3226	5271	5254	*	7773	141
+       0	*	*	*	*	3223	163	5912	0	2605	
+
+V 142  4146	*	5121	4567	3588	*	6368	3986	5667	3682	*	5880	5647	*	*	5209	4383	1201	5743	4292	142
+       0	*	*	*	*	*	0	5999	0	2444	
+
+I 143  6048	3623	*	*	*	*	*	2145	6273	1629	*	6293	6307	6420	*	6582	4945	2039	6699	6889	143
+       0	*	*	*	*	4660	58	5999	0	2444	
+
+T 144  3747	6445	4537	3171	4036	5649	7300	3740	3500	3513	*	7843	*	4229	3413	3786	3730	4048	5213	4837	144
+       37	6738	5941	2807	222	4037	91	6011	1005	2390	
+
+K 145  3406	*	3705	3266	6426	5531	5184	*	3419	5941	*	3805	6407	3635	2400	3621	3659	5610	6260	7101	145
+       25	6595	7222	3411	142	4015	92	6024	1062	2400	
+
+Q 146  *	7254	*	3728	5909	*	6150	*	*	*	*	*	*	244	5000	*	6418	*	*	*	146
+       27	5759	*	1153	861	4967	47	6107	1086	2359	
+
+V 147  4949	4673	*	*	6033	*	*	2071	*	1046	5815	*	*	*	*	*	5401	3029	*	5211	147
+       45	*	5014	1585	585	1336	727	6102	1061	2364	
+
+K 148  2770	6778	3274	3193	6782	7628	7408	5086	2663	4968	7397	4321	*	3498	3356	3779	4140	6256	*	7065	148
+       59	6817	4998	1000	1000	389	2082	6316	1024	1949	
+
+A 149  2085	7626	4801	4216	*	3447	6381	4282	3500	4737	7632	4059	3627	5355	6854	3250	3838	4859	*	*	149
+       24	5910	*	677	1416	1405	684	6566	1130	1415	
+
+F 150  2813	5026	5259	6078	5098	3162	*	2499	6860	3540	5572	*	*	6287	7300	3212	*	2343	*	5127	150
+       36	*	5359	1000	1000	864	1150	6572	1061	1244	
+
+V 151  2874	*	4712	7559	3926	4964	*	3437	*	1030	6541	5810	6687	*	7603	5501	6302	4214	6915	*	151
+       356	*	2193	*	*	*	0	6556	0	1276	
+
+D 152  2688	*	3406	2609	4554	4930	5594	7351	2887	7745	*	3577	3606	4458	5557	4381	4803	6657	*	5787	152
+       149	4563	4158	947	1055	3947	97	5980	1181	2784	
+
+L 153  3766	7095	2846	4203	5362	1863	6462	7396	3213	5157	6730	3576	*	4532	*	4385	5363	4222	*	6466	153
+       1215	842	6466	1139	873	2842	217	5927	3780	2925	
+
+I 154  3566	6537	4104	4374	7380	5694	*	2851	4009	2954	7391	6018	3987	4659	5344	3693	4571	2639	7003	7183	154
+       204	4265	3649	919	1086	1397	689	5916	1460	2961	
+
+D 155  3801	*	2413	2310	6090	5800	6956	*	3682	4858	6465	4561	4109	4810	6053	2785	4528	4838	*	*	155
+       373	3038	3238	771	1272	261	2594	6097	1670	2650	
+
+N 156  2655	6586	2630	3764	6917	4769	4281	5649	4135	4252	5353	4048	4850	3164	4950	3944	5262	6017	*	*	156
+       119	5276	4226	193	3001	550	1658	6618	1249	1929	
+
+F 157  4201	6790	4499	5022	3115	5064	5767	4018	5882	1749	4767	*	5282	5549	6135	5314	5400	4505	3794	4088	157
+       129	3804	6192	573	1610	1180	840	6547	1468	1612	
+
+D 158  3528	7047	3801	2941	*	3469	5351	*	2701	6216	*	3616	5041	3653	4093	3104	4674	5950	*	*	158
+       10	*	7124	*	*	1500	630	6570	0	1407	
+
+N 159  5389	7785	4501	4386	*	5159	4684	7406	2775	7145	*	2547	2203	4341	2930	4126	6041	7189	7469	*	159
+       91	4039	*	1316	741	629	1501	6569	1385	1296	
+
+V 160  5341	6033	3184	*	5555	7279	6344	2048	*	2335	4632	6007	6192	*	*	5499	4356	2193	*	6524	160
+       25	5850	*	0	*	0	*	6571	1084	1077	
+
+I 161  4550	5526	6222	*	5071	7170	*	1488	6919	4307	5241	*	*	6934	*	4872	4454	1732	6054	4653	161
+       20	6210	*	0	*	*	*	6593	1061	0	
+
+L 162  *	*	*	*	4264	*	*	973	*	2492	5366	*	*	*	*	*	*	2133	6875	*	162
+       0	*	*	*	*	*	*	6593	0	0	
+
+V 163  270	*	*	*	*	6091	*	6653	*	3788	*	*	*	*	*	4919	6868	4970	*	*	163
+       7	*	7731	*	*	*	*	6593	0	0	
+
+Y 164  6878	5509	*	*	4693	*	*	4796	*	5391	7078	*	*	*	*	*	*	5323	7145	266	164
+       0	*	*	0	*	0	*	6593	1000	1000	
+
+E 165  5854	6948	*	95	*	*	*	*	6321	*	*	*	*	*	*	6816	5889	*	*	*	165
+       0	*	*	*	*	*	*	6593	0	0	
+
+P 166  5919	*	*	*	*	5854	*	6438	*	*	6653	6516	157	6765	5914	6476	*	*	*	*	166
+       25	*	5854	*	*	*	*	6593	0	0	
+
+L 167  4939	*	*	5990	*	6869	*	2376	6039	4183	*	6819	2904	6266	5583	5186	4084	1304	*	6325	167
+       13	*	6833	*	*	*	0	6554	0	1084	
+
+W 168  4580	*	*	3025	5155	5862	*	*	*	*	*	*	*	*	6453	4718	*	7733	519	4718	168
+       14	*	6707	*	*	577	1601	6482	0	1147	
+
+A 169  539	7035	5167	*	*	*	*	*	*	2807	6298	*	*	*	*	3050	*	*	*	*	169
+       53	8273	4921	857	1159	1790	492	6521	1026	1101	
+
+I 170  *	*	*	*	*	*	*	172	*	4856	*	*	*	*	*	6921	4742	4964	*	*	170
+       0	*	*	0	*	447	1907	6433	1061	1340	
+
+G 171  5350	*	*	6498	*	150	*	*	*	6194	*	5400	*	6480	7757	6627	*	*	*	*	171
+       49	5190	7316	0	*	708	1367	6485	1154	1059	
+
+T 172  5391	*	*	5560	*	3658	6433	*	4204	*	6506	4778	5948	5461	6415	2489	963	8092	5871	*	172
+       54	4777	*	0	*	975	1025	6495	1292	1037	
+
+G 173  7123	7398	3950	5382	*	535	*	*	6172	*	*	3318	4630	6844	6824	6397	5372	*	*	*	173
+       200	2951	*	1554	601	464	1862	6487	1917	1101	
+
+K 174  5591	*	7517	3941	*	7128	7030	4886	1856	3499	5436	6024	*	3524	3378	2813	4779	3394	*	*	174
+       13	6768	*	1000	1000	*	0	6495	1032	1000	
+
+T 175  3080	7094	*	5035	6972	*	6587	4028	4241	7128	*	4945	3001	5406	5825	3324	1911	2891	7635	*	175
+       7	7646	*	0	*	*	0	6495	1000	1000	
+
+A 176  748	6149	5240	6917	6305	6869	*	6175	*	4973	6107	*	2430	*	*	4431	6652	5281	*	7225	176
+       108	3982	6871	574	1608	*	0	6592	1416	1000	
+
+T 177  6214	7116	3098	4071	*	5725	5482	*	3457	*	*	4734	4738	5305	5594	1978	1757	*	*	*	177
+       9	*	7275	*	*	*	0	6580	0	1059	
+
+P 178  2934	5867	*	6666	6651	5755	*	4809	4924	3545	6288	4269	1212	6497	7450	4917	4425	4325	*	5912	178
+       17	7241	7521	1585	585	1308	746	6577	1001	1112	
+
+E 179  3633	*	2420	1239	*	7082	7407	*	4535	7454	*	5495	5555	3534	6593	4526	5628	4874	*	6804	179
+       16	*	6520	*	*	*	0	6492	0	1087	
+
+Q 180  6168	*	2628	2624	5442	5733	3841	3826	5034	5384	6847	7412	*	2515	5174	5234	5519	3615	*	3673	180
+       0	*	*	*	*	*	0	6592	0	1168	
+
+A 181  1668	*	*	*	7225	*	*	1253	*	4642	5853	*	7583	*	*	*	7112	2401	*	*	181
+       13	*	6847	*	*	1997	416	6592	0	1168	
+
+Q 182  3391	*	4955	2473	5342	5247	7668	5381	5343	7889	*	3814	*	1819	3482	3968	4805	4889	*	7347	182
+       0	*	*	*	*	900	1108	6585	0	1178	
+
+L 183  3241	*	3323	1547	7272	5400	4919	6289	3419	6567	7341	3788	*	4988	3870	4131	4998	*	7633	*	183
+       0	*	*	*	*	*	0	6580	0	1059	
+
+V 184  2535	6638	7537	*	4848	5800	*	3047	7255	6047	3235	6948	*	*	5203	4033	2966	1838	*	7275	184
+       26	7255	6449	1000	1000	*	0	6580	1001	1059	
+
+H 185  3175	3717	*	*	5105	7409	1660	3097	*	3941	5152	5493	7698	6765	7555	5795	4923	2861	*	5523	185
+       0	*	*	*	*	1224	806	6566	0	1210	
+
+K 186  2734	*	4964	2569	*	4848	5544	6831	3246	4707	*	4533	*	2970	3208	3263	5715	6007	5804	7716	186
+       10	*	7124	*	*	*	0	6485	0	1101	
+
+E 187  2342	*	4701	4905	2753	4972	5061	3798	4789	3507	4808	4461	*	4557	5134	5148	5044	3591	7885	5218	187
+       13	*	6799	*	*	*	0	6574	0	1155	
+
+I 188  7459	4689	*	6838	7439	*	*	822	*	2368	*	*	*	*	6852	*	7122	2593	*	*	188
+       15	*	6603	*	*	1144	869	6556	0	1221	
+
+R 189  5565	7369	6142	6641	7849	6945	4750	*	2254	7477	*	5396	*	5956	741	5844	5997	7221	*	7458	189
+       39	*	5239	2322	322	1880	457	6587	1061	1181	
+
+K 190  3443	*	2947	2787	*	4276	*	*	2788	5331	*	3697	*	3174	3734	3091	4975	*	*	*	190
+       45	6948	5479	526	1710	2595	261	6558	1051	1330	
+
+I 191  4317	5153	6285	4082	4460	5947	4908	2844	4145	3303	7328	5743	*	5959	5633	4663	4027	2881	4218	3234	191
+       283	6445	2586	592	1570	3631	121	6530	1039	1424	
+
+V 192  4495	*	6994	*	4743	5911	*	2371	*	1009	5544	*	*	6059	7350	5549	5496	3229	*	6517	192
+       170	6101	3368	2016	410	5690	28	6035	1042	2481	
+
+K 193  1917	7018	5436	5332	*	4221	4690	5048	3716	5513	7081	4676	6948	6123	3286	2630	3655	4825	*	6469	193
+       159	6013	3496	740	1317	*	0	5921	1047	2908	
+
+D 194  4171	*	3717	2186	7082	5806	6120	5467	3016	5343	6965	3223	*	4048	3444	3216	4400	6926	7053	*	194
+       75	*	4294	*	*	4689	57	5832	0	3346	
+
+T 195  5909	6264	*	5430	5644	6280	*	3756	3492	1716	3886	4138	*	4113	3322	6757	4220	4024	*	4630	195
+       319	5388	2517	536	1689	3676	118	5805	1096	3470	
+
+C 196  4563	4766	6489	*	2365	5352	6130	3473	6302	3686	*	6672	5476	6159	*	4581	5242	3436	4821	1976	196
+       88	*	4084	*	*	1998	416	5638	0	3895	
+
+G 197  3949	*	2512	5140	*	1332	*	7099	4431	5847	*	4175	5850	*	6821	2916	5790	5317	*	7358	197
+       260	*	2602	0	*	3301	154	5815	1000	3448	
+
+E 198  3043	*	2957	2610	6580	6074	4641	*	3133	6690	*	3918	4165	3351	3851	4501	5362	7174	6507	5534	198
+       136	6805	3629	1561	597	3087	181	5699	1035	3772	
+
+K 199  3026	*	2858	2502	5676	5584	6183	5163	3763	6826	6840	4162	7173	4013	4277	3302	4834	4744	*	4670	199
+       133	7089	3626	0	*	2970	197	5637	1000	3722	
+
+Q 200  2963	5466	*	6092	5793	3511	6302	3427	4754	3700	*	5705	5802	5599	4422	4081	3518	1999	6933	*	200
+       29	*	5640	1314	742	905	1102	5778	1042	3667	
+
+A 201  1373	*	4005	6043	5260	3120	5136	7204	5125	6240	*	4230	5175	5508	6734	2560	5868	6192	*	7479	201
+       61	*	4594	0	*	653	1458	6391	1000	2406	
+
+N 202  3679	7503	2698	3018	7109	4790	6750	6275	3424	5533	7322	2839	3389	4457	4299	4283	5298	4767	*	7131	202
+       106	5446	4380	0	*	874	1138	6514	1106	1724	
+
+Q 203  4052	7004	3419	3561	*	3511	5188	6172	3389	6372	*	3117	5820	3585	4372	3012	3363	5255	*	7557	203
+       32	*	5531	*	*	419	1987	6562	0	1695	
+
+I 204  4388	7260	*	*	*	5087	7070	2140	6239	3344	4013	*	5792	7666	7422	6532	3140	1734	7459	4353	204
+       8	*	7487	*	*	2589	262	6560	0	1290	
+
+R 205  4438	*	5220	6212	6166	7390	7274	5641	2868	7008	5838	*	2486	4840	1412	3779	5279	5860	*	*	205
+       0	*	*	*	*	194	2988	6574	0	1272	
+
+I 206  6179	6649	*	*	5517	*	*	1065	*	2598	7056	*	*	*	*	*	6851	1761	*	*	206
+       0	*	*	*	*	*	0	6593	0	1000	
+
+L 207  7782	*	*	*	6745	*	6819	2605	*	737	6162	*	*	4286	6920	*	*	2916	*	7205	207
+       10	*	7156	*	*	*	0	6593	0	1000	
+
+Y 208  5563	4727	*	*	6190	*	6838	5900	*	6466	6010	*	*	5223	*	*	5404	4159	*	380	208
+       6	7963	*	1585	585	778	1262	6582	1040	1052	
+
+G 209  4744	7966	*	5908	*	86	*	*	*	*	*	*	*	*	*	*	*	*	*	*	209
+       0	*	*	*	*	*	0	6593	0	1000	
+
+G 210  2782	*	*	*	*	262	*	5908	*	*	*	*	*	*	7966	*	*	*	*	*	210
+       0	*	*	*	*	*	0	6593	0	1000	
+
+S 211  5452	7782	*	6302	6810	2199	5456	*	*	*	*	*	*	*	*	511	6881	*	*	*	211
+       0	*	*	*	*	*	0	6593	0	1000	
+
+V 212  3556	5794	*	*	*	*	5933	2409	*	4853	5665	*	*	*	*	*	*	648	*	*	212
+       0	*	*	*	*	*	0	6494	0	1000	
+
+N 213  7245	*	5205	6443	5312	4774	6999	6312	2147	*	*	1849	*	5730	5332	2480	2857	6895	*	*	213
+       0	*	*	*	*	*	0	6494	0	1000	
+
+T 214  2752	6647	4749	3848	*	4608	5915	8090	5464	4450	6205	4640	1946	5017	5293	3346	3411	4785	*	7150	214
+       0	*	*	*	*	*	0	6494	0	1000	
+
+E 215  3522	*	2480	2293	7077	2497	6016	*	3220	7298	7461	4663	*	4918	5465	3855	5288	5613	*	*	215
+       0	*	*	*	*	*	0	6494	0	1000	
+
+N 216  7013	*	4074	3344	*	5465	*	*	5357	4883	*	595	*	5547	7118	4932	5531	6895	*	*	216
+       59	*	4650	*	*	*	0	6494	0	1000	
+
+C 217  1510	3797	2564	*	5604	*	*	2567	*	4544	6545	*	5846	*	*	5884	5533	3920	7091	4814	217
+       9	7406	*	468	1853	0	*	6478	1055	1283	
+
+S 218  2705	*	4587	3407	5331	4652	5326	4479	3079	5590	7333	5519	5522	5008	4612	3454	4886	2477	*	6519	218
+       0	*	*	*	*	*	*	6494	0	0	
+
+S 219  3464	*	3290	1741	*	4697	*	7203	3801	5215	6982	5540	5511	4448	3737	3117	4761	6961	*	4979	219
+       7	*	7760	*	*	*	*	6494	0	0	
+
+L 220  4994	*	6855	6767	3375	7142	*	2341	4319	1332	5431	*	*	5208	6046	*	5279	4654	*	3802	220
+       48	6411	5575	1000	1000	0	*	6497	1033	1000	
+
+I 221  1977	4701	*	*	3577	5690	7081	3340	5303	1986	3483	7238	*	*	6189	4342	7535	4681	5871	*	221
+       0	*	*	*	*	*	0	6466	0	1101	
+
+Q 222  2643	6120	4362	4274	5157	4240	6580	3657	3784	4181	7306	3877	7320	4786	4079	2415	5322	4704	*	*	222
+       27	7078	6499	0	*	0	*	6466	1017	1101	
+
+Q 223  4922	4818	4231	2984	7737	5062	5041	3035	3542	2984	4411	4523	*	2583	6865	5662	6148	4459	7092	*	223
+       0	*	*	*	*	0	*	6582	0	1099	
+
+E 224  3265	6734	3339	3601	*	5782	6641	5560	3317	2886	*	5296	1929	5467	6231	3767	6138	*	*	6857	224
+       23	6768	7273	2807	222	*	*	6494	1042	0	
+
+D 225  4488	6407	1575	4853	*	1821	5201	*	7117	6014	7482	2831	6617	6407	*	4963	5914	7709	*	5728	225
+       0	*	*	*	*	*	0	6581	0	1002	
+
+I 226  3606	5229	*	*	6037	5733	*	1506	*	3373	7448	*	*	*	*	5583	5530	1605	6856	5450	226
+       14	6704	*	2000	415	0	*	6581	1033	1002	
+
+D 227  5134	*	451	5204	*	6312	6631	*	5727	*	*	3745	*	5546	*	3900	*	*	*	6949	227
+       7	*	7721	*	*	*	*	6495	0	0	
+
+G 228  4440	*	*	*	*	82	*	*	*	*	*	*	*	*	*	*	*	*	*	6766	228
+       89	*	4063	0	*	0	*	6495	1000	1000	
+
+F 229  2937	*	*	*	2637	3494	*	2932	*	2449	7052	*	*	*	*	*	*	1806	*	6343	229
+       0	*	*	*	*	*	0	6346	0	1440	
+
+L 230  5822	*	*	*	3240	7117	*	*	*	247	6725	*	*	*	*	5851	*	*	*	*	230
+       0	*	*	*	*	*	0	6346	0	1440	
+
+V 231  7616	*	*	*	*	*	*	1772	*	3080	5560	*	*	*	*	6638	7044	876	*	*	231
+       25	5884	*	2585	263	*	0	6346	1080	1440	
+
+G 232  2934	*	6867	6246	*	340	*	*	*	*	*	6747	*	*	*	5049	5827	*	*	*	232
+       0	*	*	*	*	*	0	6346	0	1440	
+
+N 233  5820	*	4101	6898	*	1228	*	*	4422	*	*	5106	*	*	2516	2345	5021	6557	*	*	233
+       0	*	*	*	*	*	0	6332	0	1440	
+
+A 234  695	6061	*	*	3918	3215	*	5320	5900	*	*	*	*	*	4724	3486	7238	6706	*	6885	234
+       18	*	6368	*	*	*	0	6303	0	1440	
+
+S 235  2453	6017	*	*	6849	3799	*	5437	*	*	*	*	*	*	*	829	*	3309	7387	5130	235
+       8	*	7536	2903	207	175	3131	6266	1440	1501	
+
+L 236  4902	*	*	*	5882	*	4245	3914	*	683	5005	*	*	4815	*	5574	*	3743	4460	*	236
+       41	5525	7363	1000	1000	*	0	6414	1092	1061	
+
+K 237  5884	5491	1775	4266	*	*	6730	7885	1498	5926	*	4203	*	4112	*	4178	5206	6135	*	5391	237
+       4002	93	*	24	5937	372	2138	6369	4885	1233	
+
+E 238  3025	*	2607	1705	*	4483	6976	6205	3718	*	*	5122	5139	3856	5632	4298	5207	4943	*	7097	238
+       51	7650	5067	1000	1000	759	1290	5912	1000	1110	
+
+S 239  3607	*	2802	2875	*	3695	4945	6461	3173	7107	*	3318	*	5674	5219	2585	3771	6325	*	*	239
+       11	7104	*	0	*	0	*	5886	1000	1207	
+
+F 240  *	*	*	*	369	*	*	4152	*	3415	7153	*	*	*	*	*	*	5136	7203	4897	240
+       10	*	7195	*	*	*	*	5834	0	0	
+
+V 241  2954	4823	*	4904	6234	6637	7403	3285	5384	2084	4490	4593	*	5122	6635	3624	4869	3036	4936	5957	241
+       0	*	*	0	*	0	*	5840	1000	1000	
+
+D 242  2725	*	2892	2556	7173	7192	5860	5808	3030	7492	6913	4894	4219	3390	3830	3805	4868	*	*	*	242
+       0	*	*	*	*	*	*	5830	0	0	
+
+I 243  *	*	*	*	6330	*	*	619	*	2847	3351	*	*	*	*	5720	4946	4381	*	*	243
+       24	5921	*	0	*	*	*	5805	1018	0	
+
+I 244  3940	3335	*	*	6436	6361	*	1272	*	2969	5504	*	*	*	*	6864	*	2061	*	*	244
+       33	5917	7376	0	*	0	*	5755	1040	1018	
+
+K 245  4604	5781	4033	2650	*	5562	5054	7521	2908	7039	6416	2478	7459	4055	2786	3722	4678	7421	*	*	245
+       20	7044	7364	3807	107	0	*	5784	1000	1000	
+
+S 246  2187	*	5961	3753	4118	5243	7108	3344	4775	3927	*	4146	*	4196	5142	3896	4334	3845	5908	4162	246
+       138	3456	*	128	3560	0	*	5613	1297	1000	
+
+A 247  1789	3385	*	6620	3998	5074	5795	5275	5182	4780	5494	*	*	4657	4744	3525	4973	2785	*	4582	247
+       0	*	*	*	*	*	*	5358	0	0	
+
+M 248  *	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	248
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  e8936c77146e6b67b02efb57e9f7dba3
+FAM   
+FILE  e8936c77146e6b67b02efb57e9f7dba3
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:30:24 2013
+LENG  158 match states, 158 columns in multiple alignment
+FILT  179 out of 719 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  8.2 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCEEEECCCCCEEEHHHHHHCCCCEEEEECCCCCEEEEEEEEEEEECCCEEEEEEEECCCCEEEEECCCEEEECCCCEEHHHCCCCCEEEECCC
+CCCCHHCCCHHHHHCCCCCCEEEEEEEEEECCCCEEEEEEECCCCEEEECCEEEECCC
+>ss_conf PSIPRED confidence values
+9775889799977899199999963047978999828899899999999998597589999978998999978981996788799799789999984577
+7761000223233102566189999996685971699859779765999999986459
+>Consensus
+sgCxxxdTxVxxxdxGxxxxIxelxxxxxxxVxsxdxxxxxxxxxxvxxxxxxxxxxxxxIxtxxGxxixxTxxHxxxtxxgwxxaxxLxxGDxixxxxx
+xxxxxxxxxxxxxxxxxxxxxxxxvxxixxxxxxxVYdlxVxxxhxfxangxlVHNsi
+>e8936c77146e6b67b02efb57e9f7dba3
+SGAISGDSLISLASTGKRVSIKDLLDEKDFEIWAINEQTMKLESAKVSRVFMTGKKLVYILKTRLGRTIKATANHRFLTIDGWKRLDELSLKEHIALPRK
+LESSSLQLSPEIEKLSQSDISWDSIVSITETGVEEVFDLTVPGPHNFVANDIIVHASI
+>gi|341582094|ref|YP_004762586.1| MCM2/3/5 family DNA replication licensing factor [Thermococcus sp. 4557]gi|340809752|gb|AEK72909.1| MCM2/3/5 family DNA replication licensing factor [Thermococcus sp. 4557]
+----------------DIGSIQ-YSQGIEYSPYlgeSLSAEDGKIKNAPLSRVWrLKAPKELVKVRTITGKELTLTPETKLLTIQngepIWKEAKSLSEG
+DYVATLRKLTV-----------EERGVPILELLKDLDDl----IVYEIkdQVKGLIEEALKELHISKR-
+>gi|298245511|ref|ZP_06969317.1| SpoVR family protein [Ktedonobacter racemifer DSM 44963]gi|297552992|gb|EFH86857.1| SpoVR family protein [Ktedonobacter racemifer DSM 44963]
+-ACLVGESLVL-TEHG-LLRYDELhkrLAEGQS-I---QVASGERQCDVv-SDRHIQRNARTIRLRTRRGLILEGAEGHKLSVGPgQWMELKDVRVGQRI
+PL-------------------------------------------------------------
+>gi|297191963|ref|ZP_06909361.1| YD repeat-containing protein [Streptomyces pristinaespiralis ATCC 25486]gi|197723321|gb|EDY67229.1| YD repeat-containing protein [Streptomyces pristinaespiralis ATCC 25486]
+--SFLPGSLVLMAD-GSKKKIEDVG--LGDKVEVTDPKTGENSDREVVRTIvTEDDKDFVTLTVSTgsGaAELVSTVTHPFWVEsaQAWVDAGDLEPGMD
+LRTADGDQ--------------------VELTALDFfEKRQRTHDLTVAGIHAYFvfAGaePVLVHNmdlnC-
+>gi|126179195|ref|YP_001047160.1| MCM family protein [Methanoculleus marisnigri JR1]gi|125861989|gb|ABN57178.1| intein [Methanoculleus marisnigri JR1]
+----------------------------DMGIAAVDEM-DKMQKEDRSALHEameqQCYDDETEVLTESGWKLfrdvtaddrvatlsadgrleyappsnf
+vaseydgemyyvksrqvdlAVTPNHRMYVNlnrraDEWEgfrliRMDELPIHKRMRfkknaawTGErhethWIPpvvkfanqnaegkltDPitvgmddwl
+eflgyflsEgsvqrhhqtgvpyrviisqtnpesaetirqclerlpfrfsydgknfsinakqlaehLApfgkchekyVPDYAKSLPPEQIgilldalmlgd
+gyinkttgvsiYTTSSRRLADDvtelllkkglsgnvylrreagtvaanprggtstathDifqVTFIRDgqnepnintngkqhIEKRPYkgtiYCLEVPNH
+TLYvrrsgipvwcgNSI
+>gi|309790378|ref|ZP_07684943.1| deoxycytidine triphosphate deaminase [Oscillochloris trichoides DG6]gi|308227570|gb|EFO81233.1| deoxycytidine triphosphate deaminase [Oscillochloris trichoides DG6]
+-RCFSADTRVALVD-GTAPTLEEMARRADngelFWGYSIGPNG-RLIVSLLEQPRYIGRDSLLEVTLDNGEKINCTPDHIFLMRDGREtSADQLRPGDSL
+MPLyRDYhrgyemvyqPLngflnpthrladewntrygiyPDVpgthrhhkdmnRrnnnpWNiErmeasaHIRLhnnvihaFKGIAVRNHKVTAIRSlPGT
+HDVYCLTVPEAGNFALEaGVFVHNC-
+>gi|147898419|ref|NP_001079262.1| indian hedgehog protein precursor [Xenopus laevis]gi|6016351|sp|Q91612.1|IHH_XENLA RecName: Full=Indian hedgehog protein; Short=IHH; AltName: Full=Banded hedgehog protein; AltName: Full=X-BHH; Contains: RecName: Full=Indian hedgehog protein N-product; Contains: RecName: Full=Indian hedgehog protein C-product; Flags: Precursorgi|1147832|gb|AAA85165.1| banded hedgehog protein [Xenopus laevis]
+-GCFPGEALATLES-GEKIPVSQLS--PGLRVLAMDNS-GRPTYSDFLSFLdhsPKEEHMFQVIKTqDPHRRLFLTPAHLIFVSDNYStpasefqavFAS
+SVRPGQYILVSN-----------------------------------------------------------
+>gi|115374273|ref|ZP_01461558.1| hypothetical protein STIAU_0597 [Stigmatella aurantiaca DW4/3-1]gi|310818165|ref|YP_003950523.1| fibronectin type III domain-containing protein [Stigmatella aurantiaca DW4/3-1]gi|115368694|gb|EAU67644.1| hypothetical protein STIAU_0597 [Stigmatella aurantiaca DW4/3-1]gi|309391237|gb|ADO68696.1| Fibronectin type III domain protein [Stigmatella aurantiaca DW4/3-1]
+-----------MLHDGTELPAEML--RPGMRVLTMLEDGAEGGVYEVVHVGRHS-SARVKVVTVDGRVVVVTPNHRWRTCErGWVRSDELVRGDTIDG--
+--------------------FAPSRVARVEPFDSGEVIKISVDVARTFIVKGLLAHN--
+>gi|115380366|ref|ZP_01467366.1| putative cell surface protein [Stigmatella aurantiaca DW4/3-1]gi|310822206|ref|YP_003954564.1| hypothetical protein STAUR_4959 [Stigmatella aurantiaca DW4/3-1]gi|115362632|gb|EAU61867.1| putative cell surface protein [Stigmatella aurantiaca DW4/3-1]gi|309395278|gb|ADO72737.1| uncharacterized protein [Stigmatella aurantiaca DW4/3-1]
+ASCYTPEQKIRFPE-GD-VAIVEAVAGMKKNVVTLTPDssldAIALQTNKtysYTAEFRDTEHPIVNLLMASGGKLTVTKEHPLINSEGRlVTAQTVKVG
+DELV--------------------KVDGSFDPIVRVEHTTHfGKVYNLRpdtdDRVSNILVAEGYLVGSS-
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+S 1    4334	*	*	*	*	2101	*	*	*	*	4625	5042	4792	*	*	712	*	*	*	*	1
+       0	*	*	*	*	*	*	6539	0	0	
+
+G 2    3600	*	5977	4444	*	937	*	5771	3776	*	*	4085	3713	6069	5193	3948	*	*	*	*	2
+       0	*	*	*	*	*	*	7764	0	0	
+
+A 3    5000	137	*	*	*	5929	*	*	*	*	*	*	*	*	*	4538	*	*	*	*	3
+       0	*	*	*	*	*	*	8059	0	0	
+
+I 4    *	7216	*	*	1454	*	6754	3416	*	1881	6783	*	7240	*	5947	*	*	2294	*	5806	4
+       11	*	7073	*	*	*	*	8135	0	0	
+
+S 5    2816	*	5533	5119	*	5688	5566	6268	6105	5121	*	5747	2697	*	5239	2291	2370	3439	*	5533	5
+       111	4764	4742	1106	901	0	*	8119	1459	1073	
+
+G 6    2509	*	7146	3441	5022	1246	*	*	5832	*	*	6029	2809	5957	6037	6884	7077	*	7039	4564	6
+       0	*	*	*	*	*	0	8005	0	1318	
+
+D 7    6194	*	1096	4034	6827	2242	6999	*	7033	*	*	2904	*	7087	5441	4591	7093	6786	*	*	7
+       0	*	*	*	*	*	0	8005	0	1318	
+
+S 8    3184	6063	*	4548	*	5228	6559	*	*	*	*	*	*	4351	*	2994	733	7042	*	6478	8
+       11	*	7013	*	*	*	0	8018	0	1318	
+
+L 9    *	6729	*	3462	5265	5938	6055	4482	3188	1737	5115	5729	3584	3927	2861	7172	6089	6136	6417	7382	9
+       16	*	6544	*	*	*	0	7993	0	1465	
+
+I 10   6819	*	*	*	*	*	*	1351	*	4036	*	*	5923	5285	*	6032	*	1057	*	*	10
+       22	*	6032	*	*	*	0	7960	0	1585	
+
+S 11   3852	7171	6195	5808	4616	5889	4941	3779	4663	1941	6238	5099	4709	5616	3826	4144	3485	4228	5749	4648	11
+       333	5197	2485	0	*	1294	756	7953	1171	1716	
+
+L 12   4722	*	5092	*	5652	*	*	5028	*	1719	2303	5682	*	*	5117	*	2411	3257	*	4840	12
+       11	*	6996	*	*	498	1777	8086	0	2806	
+
+A 13   2161	*	4586	3985	5444	4756	6016	6106	4635	4834	*	5168	3005	5637	4106	4262	2820	4768	5462	5459	13
+       93	*	4000	*	*	2777	228	8192	0	1564	
+
+S 14   4587	7394	1280	3168	6063	7100	6691	6150	*	6170	6198	2506	5356	6116	5340	3964	4976	6219	*	7135	14
+       956	*	1045	*	*	1180	840	8159	0	2051	
+
+T 15   6089	5989	3246	4667	*	2899	3784	6316	4482	4770	*	3355	*	4121	3680	4567	2151	*	*	5405	15
+       63	*	4555	*	*	109	3776	7651	0	5116	
+
+G 16   6089	*	*	*	*	443	6193	7348	4447	5404	6961	6947	7212	6840	5246	4117	7147	5003	*	7229	16
+       316	4971	2600	336	2267	2336	318	8206	1246	1514	
+
+K 17   5214	7161	3937	3243	6739	3779	5544	*	2934	*	*	6123	*	4071	2873	2415	3105	6849	7210	5006	17
+       204	3757	4108	689	1398	568	1619	8117	1458	2862	
+
+R 18   5349	*	*	3608	6236	*	6099	3866	4367	2628	6999	4643	3948	3283	2896	4469	3502	4037	6167	5116	18
+       152	3878	4957	1465	649	0	*	8143	2087	2086	
+
+V 19   5224	5066	*	5106	4790	6303	6171	3430	2231	3088	6295	7075	5683	5704	3651	*	5897	1944	7427	7057	19
+       20	7104	7227	0	*	278	2513	8342	1000	1268	
+
+S 20   3687	*	7816	4619	5258	6091	*	6826	3203	5637	7369	4901	1986	4287	3352	3112	3057	*	*	5516	20
+       0	*	*	*	*	1489	636	8332	0	1093	
+
+I 21   4109	*	*	6385	3916	*	*	735	6533	2964	5511	*	*	*	*	6319	*	3809	*	5786	21
+       15	*	6612	*	*	0	*	8372	0	1032	
+
+K 22   3863	*	3227	2031	*	2957	*	6989	2788	6982	*	4826	*	4776	3034	4008	6195	5581	*	*	22
+       26	*	5793	*	*	0	*	8379	0	1039	
+
+D 23   6370	*	2120	1330	*	*	7206	*	3362	*	5538	3977	*	3906	4675	5589	5689	7268	*	5754	23
+       21	6654	7803	697	1383	0	*	8377	1111	1221	
+
+L 24   4921	*	*	*	4092	*	*	1998	*	1117	5218	*	*	*	6242	6641	7368	3189	*	5002	24
+       74	6880	4600	1585	585	*	0	8372	1000	1000	
+
+L 25   3958	*	6166	3889	4399	6199	4495	4784	3700	4248	*	5169	6223	4506	3383	4546	5318	2118	5522	3608	25
+       353	*	2205	0	*	2092	386	8326	1000	1452	
+
+D 26   2942	6713	3342	2712	*	3137	5741	6060	3510	6510	6334	4119	5675	4468	4108	3748	5905	3660	*	*	26
+       453	3912	2301	2136	373	2786	226	8056	1467	3315	
+
+E 27   4401	7096	5157	3029	4781	3698	5365	3448	3115	3405	6743	4295	4396	4892	3120	4716	4938	6990	*	5602	27
+       413	2301	4444	3252	160	356	2193	8012	2154	4296	
+
+K 28   4961	*	6701	4909	5384	2739	5626	4079	2586	5560	6725	3525	3629	4017	4070	4658	4418	3333	*	*	28
+       398	2876	3257	1914	445	496	1781	8345	2166	2166	
+
+D 29   4485	*	2385	3377	*	1437	*	6188	6852	5762	6954	3888	3780	4734	6173	6248	5874	5590	7239	*	29
+       223	3422	4327	2165	364	1846	470	8444	1963	2292	
+
+F 30   4773	6716	2095	3753	3568	5804	*	3334	3834	3665	4857	*	5263	5883	6234	4813	5996	3187	*	4526	30
+       182	3932	4241	2805	223	1311	745	8439	1493	2547	
+
+E 31   5580	5827	3942	2394	6402	4605	6433	5527	3457	3209	5664	4001	6163	4454	3666	3583	4099	6363	4876	6360	31
+       92	4320	6421	1853	468	910	1096	8392	1468	2403	
+
+I 32   4292	*	*	7239	*	6975	5503	3009	6390	3492	*	*	6149	7013	4801	*	6554	732	*	5901	32
+       75	5290	5300	1597	579	4061	89	8615	1214	1767	
+
+W 33   4013	6598	6938	6767	4308	*	7470	3325	3715	1961	4645	5700	5942	7483	4573	6314	4702	3885	3694	3288	33
+       106	4736	4900	1731	517	2466	288	8578	1387	1970	
+
+A 34   2205	5413	7039	6150	*	3432	7148	6009	7079	6658	*	*	6316	6629	7033	1523	2832	3524	*	*	34
+       27	*	5771	*	*	1306	748	8547	0	2143	
+
+I 35   4347	*	6880	7751	3108	*	*	3276	5254	1975	4440	*	6796	6451	5585	7013	4863	2902	6708	2598	35
+       27	8034	6104	1000	1000	1082	922	8716	1065	1927	
+
+N 36   7408	6658	1377	4166	*	4491	6432	*	5843	6867	*	1874	7430	5577	4800	4167	4079	6492	*	*	36
+       103	7223	4009	1242	793	*	0	8687	1048	1625	
+
+E 37   3169	*	4346	2104	6014	4454	4770	4772	4793	4306	6134	5010	3031	4534	4770	4870	4086	4833	6579	*	37
+       113	4215	5541	981	1019	1772	500	8548	1490	2298	
+
+Q 38   4399	*	3175	2708	*	4427	5367	7163	3250	5443	4721	3283	*	4577	3513	3604	3735	4788	*	5697	38
+       343	5873	2361	2895	208	2250	341	8562	1176	2116	
+
+T 39   5058	*	3412	4759	5438	2594	4650	5741	4287	5390	*	4494	7109	6706	5103	3275	1706	6709	*	7137	39
+       72	5007	5853	2269	335	327	2303	8349	1226	3680	
+
+M 40   6805	7340	4435	4725	5198	1429	5273	6341	4073	3602	5970	3402	*	4388	3859	5310	6940	5199	*	4861	40
+       17	*	6437	*	*	1450	658	8706	0	1717	
+
+K 41   5091	*	3979	2889	6694	4623	5530	5278	2457	4554	*	5898	4896	3414	2768	4859	3428	4990	*	*	41
+       18	*	6323	*	*	3041	187	8720	0	1592	
+
+L 42   4288	*	*	5547	3571	4764	*	2924	5881	2227	4039	6390	5307	6638	5267	4744	3657	2582	6593	5950	42
+       46	6142	5877	1579	588	3225	163	8725	1159	1655	
+
+E 43   4952	7313	5900	2780	5368	3578	5264	4292	3572	5168	6280	5022	5924	3938	3849	4178	4040	2546	*	5639	43
+       54	5538	6033	1555	600	1203	822	8729	1133	1727	
+
+S 44   3719	6708	4282	5353	4663	5913	7352	5274	3547	3939	*	4018	3273	4798	4279	3545	3340	4257	4140	4218	44
+       26	7690	6285	2322	322	1727	519	8688	1032	1554	
+
+A 45   3205	7508	4990	4220	4926	3638	*	6782	2854	7441	5039	5141	7333	3757	3256	2850	3489	4933	*	5038	45
+       75	6506	4663	1493	633	1774	499	8650	1035	1470	
+
+K 46   4908	5723	4063	3384	7416	5415	5168	5479	2727	5020	5833	5031	2959	5088	2435	5015	4277	4337	*	7023	46
+       25	5870	*	1164	853	1607	574	8549	1122	1652	
+
+V 47   4233	*	*	5303	5662	5621	5169	2400	5331	4533	*	6163	5436	*	4871	5325	5813	1122	*	5460	47
+       59	7623	4842	2000	415	2929	203	8678	1000	1491	
+
+S 48   4768	7317	5113	4106	4806	5038	7329	4125	3707	3224	6968	4622	6050	5163	5166	3003	2549	3468	*	4288	48
+       20	6204	*	0	*	1571	592	8543	1069	1802	
+
+R 49   2675	*	3517	4172	4832	4442	4210	5588	3430	4535	5286	3709	6449	4666	3028	3741	5487	7415	*	5044	49
+       80	5113	5326	2077	390	2242	343	8569	1394	1515	
+
+V 50   4084	7400	*	6313	3019	*	5866	2918	5094	2908	6356	*	5904	*	5595	6645	3632	1879	4348	5260	50
+       45	6236	5852	1500	630	866	1147	8540	1049	1767	
+
+F 51   4908	*	5675	6554	2143	6885	3694	3171	4296	3762	4719	*	7377	*	4483	4152	6591	3761	3511	3800	51
+       304	2427	7936	1624	566	1533	612	8608	3139	1513	
+
+M 52   4625	5198	4040	4215	6230	5439	5444	4151	3888	4431	4758	5443	4833	4202	2212	4156	4294	5174	7441	3603	52
+       140	3622	6460	1360	712	*	0	8633	2073	1432	
+
+T 53   5088	*	4724	4653	5244	4939	2958	5171	4007	4491	6459	4338	4395	3408	3843	3221	2740	5133	*	6249	53
+       188	3147	6747	1134	878	1133	878	8618	2178	1577	
+
+G 54   3312	5587	3684	3907	7326	1308	6513	5349	4216	7203	6547	6668	6032	5815	4409	3944	4158	*	7359	*	54
+       158	4198	4340	2291	330	2348	316	8674	1508	1518	
+
+K 55   4372	*	3852	3173	6301	6271	5144	4604	3682	4353	7155	4536	3671	5487	3154	5461	3816	3038	6472	4066	55
+       42	7817	5350	0	*	523	1717	8625	1033	2014	
+
+K 56   3616	7413	3150	3138	*	4890	3996	*	1929	5935	7146	4788	5911	4522	3337	4643	4974	5556	*	6017	56
+       24	5942	*	2677	245	3440	139	8692	1112	1568	
+
+L 57   4651	*	3300	2779	5258	5512	5313	6684	3475	6166	5309	6145	2270	4512	3150	4209	5085	5949	*	5428	57
+       0	*	*	*	*	421	1982	8690	0	1510	
+
+V 58   5252	5685	*	5870	3840	5985	*	2845	*	1998	4418	*	*	5828	5275	*	3694	1856	7530	6286	58
+       33	6464	6500	1000	1000	*	0	8725	1061	1073	
+
+Y 59   *	4593	*	5810	3855	*	5273	2539	6566	2811	6345	7569	*	6358	4598	7986	4461	3064	5891	1923	59
+       41	7533	5477	1585	585	2216	350	8729	1000	1185	
+
+I 60   4944	6326	4643	2187	6730	5522	4869	6446	2546	4665	*	4907	*	4787	2106	7798	4277	4692	6481	*	60
+       9	*	7376	*	*	505	1759	8724	0	1428	
+
+L 61   4989	*	6012	*	*	*	*	1282	*	2067	6099	*	*	*	5428	*	*	1989	*	6228	61
+       36	5612	7828	2398	303	*	0	8721	1189	1166	
+
+K 62   *	7233	5685	2835	7329	6832	4879	4132	2642	4507	*	4987	6458	4933	2465	6051	2386	4455	6878	7315	62
+       49	6526	5485	2322	322	991	1009	8727	1057	1226	
+
+T 63   *	*	*	5759	3300	*	7267	6031	5316	1804	4751	5525	*	*	6405	6406	1263	4792	*	6443	63
+       55	4996	7429	1042	959	2650	250	8689	1355	1333	
+
+R 64   2761	*	3517	1960	6282	4807	*	5890	3461	5992	7100	4321	*	*	3042	4231	4237	5383	*	5205	64
+       98	6299	4233	1306	748	1697	532	8682	1062	1410	
+
+L 65   5116	7473	2326	4054	7476	3874	7572	5495	5108	3967	7368	2539	5641	5488	5617	2767	3425	*	*	5019	65
+       80	4378	7438	3710	115	242	2694	8652	1569	1867	
+
+G 66   7419	*	5100	4861	*	487	7191	6440	6819	7270	*	3340	5788	6710	5152	5862	7317	*	7471	*	66
+       139	3767	5750	690	1395	1751	509	8734	1866	1137	
+
+R 67   4649	*	5958	3212	4773	5627	5265	5564	3548	4098	5900	5428	4745	4644	2036	3832	4076	5203	4984	4680	67
+       32	6028	7228	2000	415	755	1295	8707	1112	1291	
+
+T 68   4753	7358	5388	2388	6636	*	5716	4398	3352	5368	*	5258	*	4800	4048	2896	2647	3491	*	4721	68
+       27	6859	6650	2000	415	1384	697	8719	1024	1167	
+
+I 69   7261	*	7321	*	4488	*	*	1533	*	1500	7051	6282	6718	*	*	*	5801	2438	6496	*	69
+       41	5174	*	4751	55	0	*	8726	1444	1231	
+
+K 70   4604	7492	5338	2686	5004	*	5663	3865	2898	4649	7093	5369	*	6144	2919	4695	2662	3503	6406	7611	70
+       27	6643	6829	0	*	*	*	8745	1016	0	
+
+A 71   1777	3385	*	*	6395	4657	*	4852	*	2674	7049	6328	*	*	*	5915	3475	2040	*	*	71
+       0	*	*	*	*	0	*	8724	0	1056	
+
+T 72   5100	*	5070	*	*	*	*	*	*	*	*	5343	*	*	*	3959	272	6167	6643	*	72
+       0	*	*	*	*	*	*	8745	0	0	
+
+A 73   3138	6665	3827	2983	6372	3219	5237	7439	4615	4760	7093	5489	1693	*	6033	4593	7453	4658	6753	*	73
+       0	*	*	*	*	*	*	8745	0	0	
+
+N 74   4987	6167	1956	2505	*	4549	5490	*	6042	*	7345	1756	*	6303	6288	4737	4883	7955	5644	5838	74
+       0	*	*	*	*	*	*	8745	0	0	
+
+H 75   *	*	*	6167	*	*	117	*	*	*	*	*	*	5441	*	6441	6388	5824	*	*	75
+       0	*	*	*	*	*	*	8745	0	0	
+
+R 76   6715	*	5487	5923	*	5811	*	6448	2852	3344	5884	7120	1274	5266	3073	4147	5360	7285	7171	6829	76
+       0	*	*	*	*	*	*	8745	0	0	
+
+F 77   *	7223	*	6561	1574	*	7057	3228	*	2230	5145	*	*	*	*	*	5824	2334	4773	4702	77
+       0	*	*	*	*	*	*	8745	0	0	
+
+L 78   6845	*	*	*	2529	*	*	4406	7091	1567	4149	*	5675	*	3683	5506	7174	5518	4277	2558	78
+       31	5869	7969	1172	846	*	*	8745	1144	0	
+
+T 79   5776	5135	5831	*	*	5908	*	4496	*	5085	5741	5247	5787	6531	5505	4726	1205	1881	7340	*	79
+       46	7842	5197	3170	170	*	0	8742	1000	1000	
+
+I 80   4014	6882	4668	3213	5037	6115	*	5419	4265	3107	5914	3888	3061	4630	3574	3912	4685	4137	*	4168	80
+       108	3791	*	1422	674	2193	356	8691	1769	1445	
+
+D 81   4084	*	3036	2516	*	4064	6046	7900	3357	5037	*	3599	5191	4438	3091	4065	4053	5828	7804	5531	81
+       569	1617	*	1826	478	1232	800	8687	4265	1333	
+
+G 82   5445	*	4164	4252	*	967	7147	5556	3914	5193	7597	4357	5864	4795	4959	5171	5157	5132	*	6420	82
+       52	5469	6316	1547	604	*	0	8706	1246	1160	
+
+W 83   5939	*	6580	5265	5281	4894	*	5908	5417	7231	4598	4899	7304	*	5038	5536	4821	5451	737	4322	83
+       175	3126	*	2769	229	1866	463	8698	2377	1360	
+
+K 84   5234	6319	5427	3839	*	7766	*	3573	1811	5794	5786	5594	*	4102	3409	5221	4295	2347	7608	7482	84
+       182	3152	7410	2024	407	1950	432	8698	2434	1242	
+
+R 85   3809	6721	5813	2596	4705	*	5948	6559	4052	3975	*	4806	3044	3951	2480	3739	5306	5269	*	5644	85
+       24	5945	*	407	2023	290	2456	8706	1074	1212	
+
+L 86   1017	5557	7266	*	*	6494	*	3773	*	2707	4117	*	*	*	*	5260	4497	3311	*	6369	86
+       83	4161	*	2146	370	0	*	8746	1642	1000	
+
+D 87   3971	6227	2649	2873	*	2802	5844	5522	3318	5309	5989	4883	*	4078	3562	3549	7738	6024	*	5662	87
+       56	4987	7239	1889	454	*	*	8731	1325	0	
+
+E 88   4358	*	2101	1888	7633	7290	6291	7450	4030	6119	7657	3481	6327	3427	4336	4117	4825	*	*	*	88
+       18	*	6327	*	*	*	0	8721	0	1004	
+
+L 89   6098	6316	*	*	5159	*	*	3051	*	745	6510	*	*	*	6714	6676	5758	2530	*	7447	89
+       40	6422	5968	1000	1000	599	1557	8703	1187	1194	
+
+S 90   4067	6464	7136	3559	5865	5862	7229	7526	1859	6308	*	4204	5821	4234	2790	3726	3006	4942	*	*	90
+       0	*	*	0	*	885	1125	8708	1073	1321	
+
+L 91   3397	7351	5419	2909	*	5403	*	3522	5506	4454	7494	6031	2249	5504	4838	4601	5201	2355	*	6372	91
+       46	5339	7262	1000	1000	*	0	8728	1153	1106	
+
+K 92   *	*	4340	5051	6733	520	5605	6502	6186	5493	*	3355	*	*	6339	6199	6234	*	*	6783	92
+       16	6502	*	3322	152	*	0	8721	1057	1189	
+
+E 93   5266	*	739	3186	*	*	5942	7124	5151	*	5593	4798	6727	4331	*	4192	5375	7239	*	6358	93
+       33	5775	7935	4090	87	1685	537	8662	1144	1189	
+
+H 94   4642	6363	5845	4457	5056	*	4349	4288	3640	3451	4626	4924	6485	4104	2606	3722	4289	4399	6174	3511	94
+       10	7210	*	0	*	503	1765	8675	1014	1182	
+
+I 95   7325	5760	*	6363	7130	5564	*	1743	*	1688	4900	*	6124	*	6685	*	*	1899	*	*	95
+       87	5871	4597	2726	236	*	0	8668	1159	1000	
+
+A 96   2351	6053	5026	5735	5043	4657	5818	5392	5685	2634	4541	*	5606	5840	4072	4083	4384	3080	*	3610	96
+       90	4215	7185	4290	76	1027	973	8512	1696	1555	
+
+L 97   3687	5236	5851	7247	5182	4722	7214	3107	5677	3033	5015	5012	6220	5800	4778	4430	2397	2506	*	*	97
+       179	6535	3243	2585	263	*	0	8550	1070	1370	
+
+P 98   2849	*	5217	3763	5135	4642	6893	4957	6166	3441	5360	5019	1992	4018	6807	3220	6230	5027	*	5871	98
+       187	4536	3674	4559	63	1969	425	8311	1445	2466	
+
+R 99   5286	*	2521	4471	6926	4147	6862	5604	3373	4323	*	4145	6133	5898	1643	5621	4112	5837	*	6469	99
+       322	3738	2999	3381	146	3400	144	8304	1685	2726	
+
+K 100  4788	*	4710	3314	5043	2336	4714	*	3737	3486	*	4437	5657	4677	3247	4521	5574	4101	6583	4304	100
+       193	5711	3240	2500	281	5348	36	8093	1099	3467	
+
+L 101  4251	6601	4729	4394	4026	6343	5973	2760	6344	2065	5271	5641	*	6325	6343	3344	3652	3564	*	5062	101
+       347	3498	2999	1885	455	*	0	7924	1530	3921	
+
+E 102  5230	*	4852	3019	*	4289	*	5321	6363	4626	4515	3836	1787	5337	3971	3875	3642	5172	*	5753	102
+       396	3471	2739	3288	156	4298	75	7844	1486	4410	
+
+S 103  2927	*	4222	3258	5820	5287	5056	4351	5557	3100	4651	3358	*	*	4611	3565	4593	3155	*	4890	103
+       565	2668	2587	2843	217	5525	32	7672	1588	4729	
+
+S 104  2969	*	5590	3751	*	5304	4883	4565	*	*	*	3657	1182	*	5196	3222	*	5546	*	*	104
+       464	2223	4040	4359	72	*	0	7219	1721	5046	
+
+S 105  5749	*	2969	3215	*	4221	*	*	4463	2489	*	5339	*	5250	5456	2481	5342	2386	*	*	105
+       238	2714	*	5308	37	*	0	7116	1491	5135	
+
+L 106  *	*	4798	*	*	*	*	3589	4977	1097	5409	5255	*	*	3258	4939	3463	3262	*	*	106
+       365	2562	4207	3440	140	2336	318	6566	1407	5212	
+
+Q 107  5016	*	4152	5403	*	5167	6492	*	3699	4339	*	3689	*	1798	3724	2986	5463	2898	*	*	107
+       476	1977	5214	3718	114	4179	82	7130	1870	4684	
+
+L 108  5578	5594	*	*	5000	4163	4317	2580	*	2117	5335	*	5680	3750	3733	*	5501	2943	3692	*	108
+       146	3377	*	2782	227	*	0	7220	1251	4591	
+
+S 109  4588	*	2570	4231	5000	5354	*	3985	3836	3459	*	3810	3178	4165	5183	3440	4678	5501	4694	*	109
+       323	2488	5485	1828	477	5087	43	7220	1673	4591	
+
+P 110  3259	*	4045	2968	*	4459	*	5430	4509	3070	*	*	3181	5246	4624	4566	2746	4018	*	4461	110
+       146	3794	5372	1571	592	5747	27	6885	1221	4577	
+
+E 111  4109	*	3853	2891	*	5505	5426	*	3234	5840	6520	*	1979	4677	5764	3131	5457	*	*	3183	111
+       37	5318	*	2000	415	4775	54	6907	1000	4578	
+
+I 112  3472	5960	4117	5421	5310	5584	6688	2315	4357	2668	*	4506	*	5801	4869	*	4449	2266	*	*	112
+       27	5747	*	3902	100	5656	29	6976	1080	4475	
+
+E 113  4828	*	5450	3444	5671	*	5035	*	1902	*	5766	4058	4336	3450	2258	4020	4568	*	*	*	113
+       36	5332	*	1585	585	5231	39	7012	1021	4420	
+
+K 114  5033	*	6790	3613	4628	4267	4584	5945	3445	2245	*	3102	3712	4372	4383	4210	5602	*	*	4010	114
+       301	3312	3514	2655	250	4117	86	7072	1363	4347	
+
+L 115  *	*	*	3313	3974	5623	*	3040	*	1172	5641	5597	5796	5496	*	*	5780	3028	*	5141	115
+       464	2129	4428	3508	133	2304	326	6866	2163	4419	
+
+S 116  2489	5932	4368	4179	5399	4600	*	3741	4788	5913	*	5751	3174	*	5059	3493	2862	3433	*	5007	116
+       12	*	6902	*	*	3026	189	7212	0	4107	
+
+Q 117  3921	*	4253	3514	4166	3940	*	6044	3550	5125	*	2746	3219	3757	3414	4466	4717	5712	*	5855	117
+       73	4341	*	6260	19	2960	198	7020	1228	3843	
+
+S 118  3942	*	4773	3700	*	2136	6379	5786	4691	6332	*	4432	6221	6255	4835	1677	4823	4527	6235	*	118
+       79	5959	4746	0	*	3767	110	7165	1014	3528	
+
+D 119  4861	*	2082	3609	4871	3916	4785	5757	5736	4044	6689	3387	5043	4459	4162	4163	4237	3896	*	*	119
+       52	*	4829	*	*	1612	572	7157	0	3552	
+
+I 120  5332	5796	*	6251	4053	3442	5960	2285	4874	2783	*	5393	4785	*	*	6826	4166	2021	*	5639	120
+       117	4121	5593	3889	101	2568	266	7510	1297	2951	
+
+S 121  3205	6469	6290	4463	4389	4785	5302	3750	3310	6130	*	4307	*	6730	3901	3707	3009	4396	*	2754	121
+       11	*	6995	*	*	2595	261	7760	0	2779	
+
+W 122  5559	5564	*	5688	2862	7459	4596	4390	4632	3079	5951	3832	4058	*	*	5726	3871	4605	2283	3897	122
+       35	*	5398	*	*	2790	225	7835	0	2558	
+
+D 123  3841	*	2635	2708	*	4445	4624	6043	4863	4954	*	5952	5304	6981	5942	3174	3564	2628	*	5313	123
+       33	*	5449	2322	322	1239	795	7910	1073	2545	
+
+S 124  4400	5900	*	3431	6277	6206	*	5018	2716	5209	7965	6715	5455	4600	2617	3287	2632	3665	*	5412	124
+       36	6446	6241	0	*	728	1336	7788	1013	2080	
+
+I 125  *	*	*	*	4863	*	*	1856	5223	3667	6743	*	5118	6706	*	4679	*	1008	*	*	125
+       44	5570	6798	2109	380	3224	163	7931	1089	1483	
+
+V 126  3578	6465	4020	3744	*	4440	6272	3674	3293	4732	*	5545	*	5377	3829	3962	3332	2236	*	*	126
+       0	*	*	0	*	2015	410	7908	1073	1569	
+
+S 127  3796	*	4805	2958	7112	3426	*	*	3418	*	*	3522	*	4009	3492	1812	5812	5104	*	*	127
+       0	*	*	*	*	2122	377	7939	0	1413	
+
+I 128  4557	6772	6486	*	*	*	7290	1100	5148	2943	5989	5291	*	*	6173	6365	5131	2250	*	*	128
+       26	5802	*	442	1922	2734	235	7976	1084	1302	
+
+T 129  4019	*	3554	1663	7557	5255	6452	5763	3987	7202	6672	4726	5672	*	3444	3207	4057	5155	6412	4682	129
+       68	7006	4697	1585	585	*	0	7975	1000	1246	
+
+E 130  3918	4481	3844	2888	5205	5869	4836	3970	5144	5441	4864	4773	3233	4840	4229	3849	4884	5576	*	3319	130
+       314	2408	7146	847	1171	3370	147	7890	2407	1593	
+
+T 131  4256	*	3504	4559	5360	4632	6707	3197	4762	2544	6194	6771	3131	5840	*	4519	3534	3207	*	4932	131
+       154	3436	6827	4182	82	2748	232	7867	1605	1716	
+
+G 132  5098	5784	4232	3418	6330	1320	7831	*	4198	*	6718	4036	3887	5407	4608	4337	4548	*	*	4677	132
+       160	3256	*	1125	885	*	0	7861	1734	1691	
+
+V 133  5567	*	6268	2727	6342	6729	4077	5934	3259	3689	*	5949	4059	5006	4281	4514	3564	2880	*	3149	133
+       319	2334	*	452	1894	2393	305	7861	2701	1691	
+
+E 134  4167	*	3872	2325	6166	3269	3869	4874	3755	*	*	6633	5991	3004	4112	4995	3447	4298	*	*	134
+       131	3636	7236	204	2925	2277	333	7858	1566	1549	
+
+E 135  5482	*	2719	3510	4598	*	4630	4381	3301	6005	4644	4379	3689	4585	3609	*	3459	*	5647	3457	135
+       10	7148	*	0	*	2096	384	7878	1000	1557	
+
+V 136  4706	6759	*	*	*	*	*	3860	*	4485	4600	*	*	*	*	5923	2924	623	*	*	136
+       0	*	*	*	*	1823	479	7905	0	1412	
+
+F 137  *	5461	*	*	2819	*	6800	6149	*	6352	6853	*	*	*	4587	*	7305	6194	7070	469	137
+       0	*	*	*	*	*	0	7913	0	1276	
+
+D 138  *	6290	923	6307	*	7681	5323	*	5806	*	*	1613	*	*	7206	4150	6714	*	*	*	138
+       61	4587	*	3738	112	*	0	7913	1271	1276	
+
+L 139  6010	*	*	*	3140	*	*	1957	*	863	7741	*	6300	*	*	*	*	4430	*	*	139
+       37	5320	*	630	1499	2001	415	7897	1162	1389	
+
+T 140  4809	7058	4868	2017	7499	6181	6351	5169	5662	*	5354	7013	*	3541	4368	2979	2036	5477	5090	7067	140
+       38	6919	5802	2000	415	*	0	7911	1046	1274	
+
+V 141  5307	6666	6800	6865	6698	*	*	2857	5963	3253	4514	*	*	*	*	*	4695	746	*	*	141
+       18	*	6363	*	*	1519	619	7926	0	1458	
+
+P 142  3315	*	2946	1917	*	5761	*	*	3879	*	6777	4675	2403	6145	4306	3904	4929	*	*	5882	142
+       0	*	*	*	*	2483	284	7897	0	1349	
+
+G 143  5298	*	2479	3695	6845	1854	6207	*	3475	*	*	3627	3633	6181	4909	4665	4931	5031	*	5808	143
+       0	*	*	*	*	*	0	7911	0	1274	
+
+P 144  3691	*	4526	5867	5591	3939	4742	6374	6259	3278	*	2858	4249	*	*	3489	2472	6015	*	2887	144
+       212	2998	6456	868	1145	573	1609	7911	1976	1274	
+
+H 145  6867	6689	6307	4254	6642	4841	744	6289	5354	6819	6892	4129	6376	5424	5346	5038	5752	6694	*	4494	145
+       15	*	6642	*	*	1217	811	7861	0	1125	
+
+N 146  3845	3924	6249	6282	5775	6451	*	6849	*	4487	*	1334	6749	6003	5355	3899	2238	5849	6713	8054	146
+       0	*	*	*	*	1229	803	7865	0	1124	
+
+F 147  *	*	6737	6324	808	*	7717	6883	*	4223	6638	*	*	*	7332	*	*	5022	6863	1814	147
+       19	7772	6883	0	*	*	0	7993	1004	1038	
+
+V 148  4402	*	*	4700	2060	6706	*	2573	*	2724	5609	*	*	*	*	*	4975	2222	*	3666	148
+       104	3841	*	784	1254	*	0	7967	1501	1189	
+
+A 149  992	6083	*	*	*	5234	*	5700	*	4599	6300	*	*	*	*	4639	4046	1985	*	5095	149
+       156	3290	*	1176	844	821	1205	7857	1945	1189	
+
+N 150  6251	6913	4969	3491	6876	2503	*	*	5560	*	7030	998	5025	4487	6892	4843	6045	6694	*	*	150
+       154	3302	*	968	1032	*	0	7882	1761	1038	
+
+D 151  5155	*	3544	3870	*	736	6986	*	5731	*	*	3610	5349	7243	4861	4536	*	*	*	*	151
+       53	4787	*	1766	502	*	0	7885	1206	1038	
+
+I 152  4492	*	*	*	2588	6305	5021	2153	*	2152	*	*	*	*	*	5180	6478	2141	6858	5518	152
+       29	6171	7338	1000	1000	*	0	7885	1041	1038	
+
+I 153  5898	*	*	*	4501	*	6275	2108	6709	1544	4360	*	*	*	*	*	5268	2139	5130	6447	153
+       0	*	*	*	*	*	0	7877	0	1178	
+
+V 154  3659	*	*	*	*	*	*	4464	*	3555	*	*	6677	*	*	3719	4430	603	*	*	154
+       62	4563	*	750	1303	*	0	7877	1270	1178	
+
+H 155  5916	6481	*	7256	*	5249	212	*	*	*	*	*	*	*	*	4545	*	*	*	4923	155
+       74	4320	*	3319	152	0	*	7595	1276	1178	
+
+A 156  5698	*	*	5582	*	6858	*	*	6017	*	*	135	*	6171	*	6462	*	*	*	*	156
+       21	6143	*	3823	106	*	*	7609	1051	0	
+
+S 157  3787	2580	4544	5886	*	6436	*	*	4907	*	5266	*	*	*	5734	1324	2242	*	*	*	157
+       64	4522	*	1000	1000	*	*	7407	1000	0	
+
+I 158  *	*	*	*	3004	*	*	272	*	4413	*	*	*	*	*	*	*	*	*	*	158
+       0	*	*	0	*	*	*	5033	0	0	
+
+//
+�HHsearch 1.5
+NAME  eb17077e5768f21bb26c456637a41be1
+FAM   
+FILE  eb17077e5768f21bb26c456637a41be1
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:16:11 2013
+LENG  247 match states, 247 columns in multiple alignment
+FILT  110 out of 183 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  6.5 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEEECCCCCHHHHHHHHHHHHHHHCCCCCCCCEEEECCCCCCCCCEEEEEEECCCCCEEEEEEECCCEEEEEEEECCEEEEECCCCHHHHCCCCCCCCC
+CEEECCCCCCHHHHHHHHCCCCCCCCCCHHHHHHHHHHHHCCCHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHCCCCCCCHHHHHHHHHHHHHHHHHH
+HHCCCCCCCCCCCEEECCCCCEEEEEEHHHHHHHHHHHHHEECCCCC
+>ss_conf PSIPRED confidence values
+9489847997464999999999984758868996730899888877899999838999899999879779999998998899479963540056789987
+3588879999899998738870036408999999999996699179999999999996636662999999996521377898899999965999999999
+85389987689623654899889996678878866406433055779
+>Consensus
+xvxfxxxxatxxxYxxFIxxLRxxlxxxxxxxgiPvlxxxxxxxxrxxxVxLxxxxxxxvtLaixxxnlYvvGfxxxxxxyxFxdxxxxxxxxxlfpxxx
+xxxxLxfxgsYxxLxxxagxxrxxixLGxxxLxxAixxLxxxxxxxxArxLlvxIqMvsEAaRFxxIxxxvxxxxxxxxxpxxxxxsLexnWxxlSxxIx
+xxxxxxgxfxxpvxlxxxxxxxxxvxxvxxxxxxxxxxlxxxxxxxx
+>eb17077e5768f21bb26c456637a41be1
+DVSFRLSGATSSSYGVFISNLRKALPNERKLYDIPLLRSSLPGSQRYALIHLTNYADETISVAIDVTNVYIMGYRAGDTSYFFNEASATEAAKYVFKDAM
+RKVTLPYSGNYERLQTAAGKIRENIPLGLPALDSAITTLFYYNANSAASALMVLIQSTSEAARYKFIEQQIGKRVDKTFLPSLAIISLENSWSALSKQIQ
+IASTNNGQFESPVVLINAQNQRVTITNVDAGVVTSNIALLLNRNNMA
+>gi|132576|sp|P24476.2|RIP0_DIACA RecName: Full=Antiviral protein DAP-30; AltName: Full=Dianthin 30; AltName: Full=Ribosome-inactivating protein; AltName: Full=rRNA N-glycosidase; Flags: Precursor
+AYTLNLANPSASQYSSFLDQIRNNVRDTSLIYGgtdVAVIGAPSTT-DKFLRLNFQGP-RGTVSLGLRRENLYVVAYLAMDnanvnRAYYFknQITSA--
+ELTALFPEVvvaN-QKQLEYGEDYQAIEKNAKITtgdqsRKELGLGINLLITMIDGVNKKvrVVKDEARFLLIAIQMTAEAARFRYIQNLVTKNFPNKFD
+SENKVIQFQVSWSKISTAIFG-DCKNGVFNKDYDF--------------------------------
+>gi|204307504|gb|ACI00278.1| trig7 [Hordeum vulgare]
+TATFNVQASSAD-YATFIAGIRNKLRNPAHfSHNRPVLPPvePNVPPSKWFHVVLKASPTSAgLTLAIRADNIYLEGFKSSDGTW-W------ELTPGLI
+PGAT---YVGFGGTYRDLLGDTD-KLTNVALGRQQLADAVTALHGRtkadkasgPKQQQAReAVTTLVLMVNEATRFQTVSGFVAGLLHpKavekkSGKI
+GNEMNAQVNGWQDLSAALL--KTDVkpppgkspAKF-API-------EKMGMRTAEQAANTLGILLFVEV----
+>gi|256783605|ref|ZP_05522036.1| secreted protein [Streptomyces lividans TK24]gi|289767488|ref|ZP_06526866.1| secreted protein [Streptomyces lividans TK24]gi|289697687|gb|EFD65116.1| secreted protein [Streptomyces lividans TK24]
+-----------PHYRSVVQQLRR--GAGHLIHGNNIYETmGQGQNAGLVALNLYNADwVHQTTLYFNASNLYLVGFKSRtGQAYLFSDASA-NAREEVgr
+eVRGAP-VTTLPFAGSYTSLVNTlPGAETEPTTIGIYAIQTNMEALARTpNpaaatgayRGSIARAMLIMIGAFAEAARFPMFRDHFEAAFRRfanpSVV
+VTPTMQALRTAWGQMSRWVQ--QLVSGPPPTPAVFG-------------------------------
+>gi|295701322|ref|YP_003610323.1| ribosome-inactivating protein [Burkholderia sp. CCGE1002]gi|295441645|gb|ADG20812.1| ribosome-inactivating protein [Burkholderia sp. CCGE1002]
+--EFSVDFTSPQKYVQSLGAIRAAMGDAMSLTNIPGnkilyqLRPDASNIVEGVTIEIIGvgrnnsPSNRDVRFVINPSDLYLTGFIVGRIFYRFSDFSD
+T-ASGRVQVNAPRhlvdfTIDMTVDSSYLSLARSAGVSADRTDLSIDrySLMKGYrdliNHVSSTrtINGAEARALLSYATVLSEAVRFRSIQGNFASTa
+LgDDAFTP--YRLSLEDsnrttRWDRLSDEIR--KAHYGAI----KIATHGAAPILLANVRD-----------------
+>gi|242071645|ref|XP_002451099.1| hypothetical protein SORBIDRAFT_05g024110 [Sorghum bicolor]gi|241936942|gb|EES10087.1| hypothetical protein SORBIDRAFT_05g024110 [Sorghum bicolor]
+----------------------------------------------------------------------------------------------------
+----------------------------VEDLDEAISSLSLFptgnaTEEDVSRGLAACDAMVAAAATFLYVERRMSAGMWDgnGVSNDGSLRRLQESRP
+DLSAAVQ--DSYQGAFAAPVALQRSNGERVLVDNMRRAVP--------------
+>gi|254385328|ref|ZP_05000657.1| hypothetical protein SSAG_05020 [Streptomyces sp. Mg1]gi|194344202|gb|EDX25168.1| hypothetical protein SSAG_05020 [Streptomyces sp. Mg1]
+PVSFSVAHASVGDYRLLASSIRSRAALA---QCLPGRAGNEEVSARYLPVRIQLR-GLFielfIELRTQNSVLRITGFRNTFENW---QAPPEGRFRHVr
+davaPPGVHHAEALSFEGEVPALEAAAEVGRTGLSLGRRPMMKAVMWLHRNtDPKCTALGMLVLGEMLCEAASSPVLAQEMSRIW---------------
+---------------------------------------------------------
+>gi|157108298|ref|XP_001650164.1| hypothetical protein AaeL_AAEL005004 [Aedes aegypti]gi|108879337|gb|EAT43562.1| hypothetical protein AaeL_AAEL005004 [Aedes aegypti]
+----------DRAYLGFIQNLISALTESDEVYGnIKVTKRK----DGITKVTLKDS-STnsQVGFIYRNRDLYIVGLVVGTTFYIDKEVYDGlgkkipTT
+WKgVINAAN--TVSLSNPFSYNQILPS----GEGTVLQIGKLGDSLTHLTKIgDtSKrsqIMTQHLGPFVVAFSEAIRFPVVAREIQGAIRKatgtvSLs
+knlvrplslgHPSertsnhvFTMYSLLLNWSKLSDRVP-----------------------------------------------
+>gi|77553788|gb|ABA96584.1| Ribosome inactivating protein [Oryza sativa Japonica Group]
+---IDVTDPTQGGYTTALNSIRERDQEraGQnTFHGVAIT--S--LNKQWRRINLVHQDRPTVSLLIDESNGYLVGFRRGDGtWMHFNDQE-----LPNV
+PGTEQrvpGIPIQLSSSYMNLIKD--NERPYFSVGRQSLRHSYFVLLNYDaevdlrsamMKRQRKALTQLIILFCEAARIRPVLEFISEAMSTeDTTPlD
+ETLWTWIKNWSTLSRFA------------------------------------------------
+>gi|47496961|dbj|BAD20031.1| hypothetical protein [Oryza sativa Japonica Group]gi|47497865|dbj|BAD20039.1| hypothetical protein [Oryza sativa Japonica Group]
+-------RGTKNTYASLVSSIVTRITTRAMatVEGKPVCGPSG-----YFEIILFPkpgtqfaakHANGRVRLLFNYQNLYLVAFKVQGKWHKFKDLTPK
+IA-----PDYASikrkkhceAKNLPFESNYGVRGMAANLaqLkvSRQTPLQIYKML----SLYDPehnagmvRLSDLQKMLFKTCAVFPEVFRFPLLKKR
+VVYLMgktaDEESTVGEQHTDLFQNWGDCCMALR--MGR-QAFTPMADL--------------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+D 1    *	*	2471	*	*	*	*	4512	4252	5215	*	2839	2995	*	*	3715	1494	*	*	*	1
+       0	*	*	*	*	*	*	5016	0	0	
+
+V 2    4547	*	5748	6092	4453	*	*	2629	*	4498	*	*	5599	*	*	5628	*	663	*	*	2
+       0	*	*	*	*	*	*	5373	0	0	
+
+S 3    *	*	*	3275	6479	5714	*	5959	5182	5748	*	3600	5648	*	3639	1720	1736	5820	*	*	3
+       104	*	3840	*	*	*	*	5741	0	0	
+
+F 4    *	5524	*	*	448	*	*	5119	*	2601	*	*	*	*	5867	*	*	*	5815	5900	4
+       0	*	*	0	*	0	*	5911	1268	1268	
+
+R 5    5268	*	2016	4514	*	*	5215	*	4823	*	*	2311	*	*	5358	2231	2696	*	*	5178	5
+       0	*	*	*	*	*	*	5971	0	0	
+
+L 6    6382	5387	*	*	*	*	*	4076	*	1560	6350	*	5640	5856	*	*	2473	1642	*	6019	6
+       22	*	6019	*	*	*	*	5971	0	0	
+
+S 7    2800	*	2716	3354	*	3373	5080	6459	4284	5142	*	*	5922	3860	*	2792	3585	3714	*	*	7
+       120	5800	4016	0	*	0	*	5971	1011	1012	
+
+G 8    5146	*	4219	5379	4084	2103	4552	*	4155	6291	*	3629	5424	6064	3446	2885	3098	*	*	5173	8
+       34	5424	*	483	1814	0	*	6032	1102	1174	
+
+A 9    1233	6488	6086	6024	5966	3934	*	6339	4852	4430	*	*	3827	*	*	2951	3464	5419	*	4478	9
+       13	*	6787	*	*	*	*	6215	0	0	
+
+T 10   6186	*	3010	5462	*	4170	*	*	5059	*	*	4705	*	*	5819	2841	876	6229	*	*	10
+       20	*	6163	*	*	*	0	6274	0	1000	
+
+S 11   2760	5498	4263	3661	*	3576	*	5072	3372	*	*	*	3265	4278	3956	2843	6595	3488	5728	6469	11
+       53	5261	6646	575	1605	0	*	6453	1073	1064	
+
+S 12   3353	*	3198	3817	*	3056	*	5798	2860	5765	*	3669	5785	3206	4777	3129	4795	*	*	4801	12
+       31	*	5550	*	*	*	0	6643	0	1000	
+
+S 13   4280	*	3763	4701	*	4089	5770	5628	3166	*	*	3847	4957	6614	4858	2159	2128	5123	*	*	13
+       0	*	*	*	*	0	*	6634	0	1132	
+
+Y 14   *	*	*	*	4590	*	*	*	*	*	*	5628	*	*	*	*	*	*	*	92	14
+       0	*	*	*	*	*	*	6673	0	0	
+
+G 15   3418	*	6237	4204	6560	4386	*	5877	3935	4598	*	3559	6439	5429	2726	2393	2805	4250	*	*	15
+       0	*	*	*	*	*	*	6691	0	0	
+
+V 16   4208	*	2444	4974	*	5099	6863	*	4650	3635	*	4123	6439	4033	5360	2340	2332	5533	*	*	16
+       0	*	*	*	*	*	*	6691	0	0	
+
+F 17   5816	*	6230	*	489	*	*	5642	*	3022	*	*	*	*	*	4550	*	4263	*	5752	17
+       0	*	*	*	*	*	*	6691	0	0	
+
+I 18   5865	*	*	*	*	*	*	889	*	1859	4104	*	*	*	*	5642	4975	4127	*	*	18
+       0	*	*	*	*	*	*	6691	0	0	
+
+S 19   3641	*	3755	3397	*	4115	*	6076	2939	*	*	3021	*	3398	3868	3347	2738	6234	*	*	19
+       0	*	*	*	*	*	*	6676	0	0	
+
+N 20   3337	*	3606	3339	*	4406	*	*	3467	5269	*	2785	*	4111	4067	2083	4895	5358	*	*	20
+       0	*	*	*	*	*	*	6676	0	0	
+
+L 21   *	*	*	6242	4861	*	*	2038	*	766	5351	*	*	*	*	*	*	3620	6062	*	21
+       0	*	*	*	*	*	*	6676	0	0	
+
+R 22   *	*	*	*	*	5829	*	4431	5643	*	*	*	*	5507	223	*	5890	5598	*	*	22
+       0	*	*	*	*	*	*	6676	0	0	
+
+K 23   3585	*	2483	2874	*	4300	*	6561	3196	*	*	2776	*	6827	4904	3366	3337	4421	*	*	23
+       68	*	4434	*	*	*	*	6676	0	0	
+
+A 24   2292	6187	4612	3617	6490	5369	6841	5363	3347	4221	*	4351	*	3036	2359	5909	4471	6398	*	*	24
+       0	*	*	*	*	1570	593	6605	0	1221	
+
+L 25   3281	*	5789	*	5495	*	*	3696	*	963	5177	*	*	*	*	*	*	2064	*	*	25
+       77	5605	4995	0	*	0	*	6614	1086	1122	
+
+P 26   2226	*	*	3968	*	3215	*	5432	2895	6018	*	*	4372	4247	4566	3402	2672	4414	*	*	26
+       0	*	*	*	*	0	*	6667	0	1150	
+
+N 27   5160	*	2411	3227	4977	3959	5831	4829	4146	4630	*	3642	6730	5318	4166	2852	3311	5508	*	*	27
+       143	4602	4232	2042	401	*	*	6679	1149	0	
+
+E 28   3077	*	5035	4998	*	1809	4373	*	3530	*	*	4782	2528	5264	4808	4016	4918	*	5807	6041	28
+       103	4796	4921	566	1624	0	*	6603	1161	1258	
+
+R 29   3180	*	4207	5385	*	3626	4792	*	5095	4755	5964	4026	3320	4519	4042	3307	2396	6905	*	4412	29
+       146	3657	5901	1532	612	*	0	6594	1367	1136	
+
+K 30   *	*	4528	2617	5258	*	3909	4944	3721	2815	4834	4278	3991	5406	4729	4083	4185	3564	*	4602	30
+       718	1535	4413	746	1309	2083	388	6554	2805	1302	
+
+L 31   3529	4699	*	6837	4026	*	5363	3281	5063	3959	6821	*	4603	6472	4193	2000	*	2386	*	5263	31
+       128	3554	*	1299	752	0	*	6701	1870	1548	
+
+Y 32   4066	3690	4974	3581	6950	5442	1821	*	6624	4978	*	4057	6706	4234	*	5234	4757	6349	*	2375	32
+       60	4617	*	816	1211	*	*	6805	1183	0	
+
+D 33   *	5219	3330	4591	*	992	*	*	6962	6818	*	2371	*	6668	*	4499	4605	6318	*	6451	33
+       197	2968	*	1008	992	*	*	6805	1793	0	
+
+I 34   *	*	*	*	5513	*	5650	856	4879	2618	4991	5912	*	*	3791	6349	5255	4321	*	*	34
+       20	6213	*	1000	1000	*	*	6805	1003	0	
+
+P 35   5009	*	*	*	6190	5899	*	6474	4086	5547	*	5174	579	5675	4330	5577	6890	5418	*	5163	35
+       12	*	6956	*	*	*	*	6805	0	0	
+
+L 36   4546	*	*	*	6633	4490	*	3323	5566	3036	3617	*	*	*	4794	*	5739	934	*	*	36
+       21	6125	*	2585	263	*	0	6802	1019	1000	
+
+L 37   6460	4315	*	*	6247	6178	*	3306	*	776	4171	*	*	*	5933	5948	3205	6255	*	5906	37
+       107	4820	4795	1169	849	0	*	6802	1298	1000	
+
+R 38   2857	*	4654	5355	*	4921	6339	*	3132	5561	*	4857	2059	6455	2087	4933	5744	4748	*	7076	38
+       22	6026	*	0	*	*	0	6763	1017	1190	
+
+S 39   3514	*	4875	4696	*	4330	6830	5413	3582	4551	*	4197	2150	4479	4159	2884	3612	4888	*	*	39
+       737	1322	*	1131	880	0	*	6763	3461	1190	
+
+S 40   4692	*	4171	5001	*	4118	5483	*	5416	*	*	4251	1960	3822	5218	2888	2245	5792	*	*	40
+       194	6763	3101	0	*	*	*	6807	1000	0	
+
+L 41   3332	*	4924	3992	6514	4625	*	4416	6040	3374	*	5156	3525	4899	*	4789	2603	2108	*	6170	41
+       229	5758	2966	0	*	3283	156	6550	1023	1689	
+
+P 42   3230	*	3638	3159	*	3880	*	6326	5150	4877	6940	3896	2623	4050	5620	2807	4564	4618	*	6125	42
+       417	4359	2305	258	2610	1972	424	6409	1251	2335	
+
+G 43   4012	*	2840	3887	*	3781	*	3619	5370	4733	*	3927	3231	3690	*	3344	3269	3990	*	*	43
+       110	4740	4797	1575	590	710	1363	6188	1085	2857	
+
+S 44   4282	6271	3443	4992	*	4239	*	6032	4771	4458	*	3327	1575	5131	7196	2717	5092	6667	*	*	44
+       35	5916	7026	1000	1000	661	1444	6564	1017	1875	
+
+Q 45   2465	*	3213	3467	6431	5595	*	*	4149	*	6242	3641	3415	2682	3551	4331	5480	5421	6927	*	45
+       0	*	*	*	*	2724	237	6800	0	1338	
+
+R 46   4431	6980	5191	4226	*	3041	*	5945	2860	6386	*	4970	6435	4194	1389	4825	4547	*	6797	6563	46
+       22	*	6048	*	*	0	*	6843	0	1276	
+
+Y 47   *	*	*	*	1565	5201	6931	4733	*	3464	*	6453	*	6218	*	5421	*	*	2321	1998	47
+       19	6264	*	0	*	0	*	6867	1003	1029	
+
+A 48   4597	*	5058	*	3117	*	6826	2255	5860	2160	5903	6612	*	7189	5064	6981	4521	2064	*	*	48
+       29	6463	6840	1000	1000	*	*	6902	1008	0	
+
+L 49   5230	*	5114	5867	4814	*	4037	5020	4189	1497	4533	5430	4837	6198	4175	5560	4214	4365	*	3367	49
+       0	*	*	0	*	0	*	6886	1008	1080	
+
+I 50   4095	*	*	*	6816	6886	*	2034	*	3566	6292	*	5020	*	*	5892	5210	977	*	*	50
+       12	*	6905	*	*	*	*	6942	0	0	
+
+H 51   4672	*	2901	2511	*	6180	4254	3529	3840	*	*	3199	6722	4302	3078	6324	3758	4187	*	*	51
+       0	*	*	*	*	0	*	6940	0	1002	
+
+L 52   *	*	*	*	5553	*	*	3734	*	402	5376	*	*	6919	6295	6592	*	3749	*	5872	52
+       0	*	*	*	*	*	*	6942	0	0	
+
+T 53   6592	*	5344	4267	4116	*	6689	3449	2957	6130	*	7210	5872	3519	4432	3320	2448	2743	*	5578	53
+       23	*	5967	*	*	*	*	6942	0	0	
+
+N 54   2767	6632	4606	5894	4598	2391	4703	*	6508	4588	*	1957	4153	*	*	3903	4584	5279	7186	7118	54
+       560	2986	2356	2095	385	0	*	6946	1819	1066	
+
+Y 55   4774	*	5116	4212	6628	3452	4688	5237	4086	5200	6640	4324	4343	4634	3138	2477	6831	5405	4110	3400	55
+       330	3796	2917	690	1395	129	3552	6766	1710	2383	
+
+A 56   3012	*	2247	3907	*	2474	*	*	5127	6690	*	3212	4648	6493	4431	3574	4044	5028	*	*	56
+       70	4640	7044	903	1104	0	*	6626	1279	1840	
+
+D 57   3909	5868	2966	3750	*	2121	6751	*	4560	7079	7097	2923	5857	4389	4274	5344	3227	5573	*	5893	57
+       82	5069	5290	2417	299	0	*	6948	1170	1000	
+
+E 58   5140	*	2611	3550	*	3221	4344	5453	3552	4994	6064	3934	6143	3658	3033	4861	3687	5743	*	*	58
+       50	5382	6662	1327	734	0	*	6923	1176	1235	
+
+T 59   4361	*	5581	3326	5255	6696	*	6301	3913	7016	*	4866	4352	3778	3899	2628	2048	5074	4878	5837	59
+       64	4534	*	1536	610	0	*	6932	1257	1012	
+
+I 60   3418	*	*	*	6683	*	*	1751	*	4738	6606	*	*	*	*	5828	2805	1354	*	*	60
+       0	*	*	*	*	*	*	6944	0	0	
+
+S 61   5071	*	*	4409	*	6066	*	5146	5079	6650	4820	7001	5138	5424	3534	3159	920	5740	*	*	61
+       14	6689	*	2000	415	*	*	6942	1000	0	
+
+V 62   4854	*	*	*	3864	5921	*	5559	*	489	5174	*	*	*	*	7277	*	3152	*	*	62
+       54	*	4756	*	*	*	*	6942	0	0	
+
+A 63   1096	6891	*	*	*	4003	6097	4096	5378	3574	6068	5844	*	*	3601	4871	6933	3580	5319	6123	63
+       12	6933	*	254	2632	0	*	6957	1348	1268	
+
+I 64   *	*	*	*	2757	*	*	1608	*	2127	3465	*	*	*	*	*	5373	2949	*	4297	64
+       0	*	*	*	*	*	*	6956	0	0	
+
+D 65   3888	6584	1687	6603	*	*	5448	*	5709	6155	*	3395	*	3994	1827	3507	7134	*	6594	*	65
+       0	*	*	*	*	*	*	6956	0	0	
+
+V 66   3621	*	3560	4555	*	6018	*	4345	4856	6170	5055	4218	4600	6975	2427	5781	4515	1997	*	4410	66
+       0	*	*	*	*	*	*	6956	0	0	
+
+T 67   5163	*	1911	4388	7293	6692	4676	5072	5857	6305	5926	3567	6241	5321	4248	2986	2627	4129	*	7246	67
+       0	*	*	*	*	*	*	6956	0	0	
+
+N 68   *	*	1604	*	*	4917	*	*	*	*	*	832	*	*	*	5507	4652	6102	*	*	68
+       0	*	*	*	*	*	*	6956	0	0	
+
+V 69   2421	*	*	*	7272	6190	*	5135	*	798	4306	*	*	*	*	*	6951	2936	*	*	69
+       0	*	*	*	*	*	*	6956	0	0	
+
+Y 70   5796	6313	*	*	*	6360	*	*	*	*	*	4822	*	*	5291	4461	*	6223	*	256	70
+       0	*	*	*	*	*	*	6956	0	0	
+
+I 71   *	*	*	*	4568	*	*	2201	*	1508	*	*	*	*	*	*	*	1408	*	6365	71
+       0	*	*	*	*	*	*	6956	0	0	
+
+M 72   2956	*	*	4274	*	*	*	3264	*	3706	4195	*	*	5353	6223	6668	4201	1157	4891	*	72
+       0	*	*	*	*	*	*	6956	0	0	
+
+G 73   2046	*	*	*	*	400	*	*	*	*	*	*	*	*	*	*	*	*	*	*	73
+       0	*	*	*	*	*	*	6956	0	0	
+
+Y 74   *	*	*	*	914	*	*	*	*	6082	*	*	*	*	*	*	*	6108	6213	1229	74
+       20	6213	*	2585	263	*	*	6956	1017	0	
+
+R 75   3052	*	*	4814	5259	*	*	4442	3787	4077	*	*	*	3025	2097	3163	3488	3790	*	6594	75
+       143	3407	*	1566	594	*	*	6956	1665	0	
+
+A 76   1860	*	2832	5877	*	4948	*	6709	*	6151	4542	2385	*	5025	6174	4336	4296	3018	*	6925	76
+       234	2742	*	1404	685	*	0	6954	2011	1000	
+
+G 77   5405	*	5346	4315	*	1717	6736	*	3067	5525	6569	3677	6774	3144	2964	3939	4906	6764	*	*	77
+       155	3389	7225	349	2219	*	0	6954	1636	1000	
+
+D 78   5336	4956	2473	5613	4862	2479	*	6621	4257	5824	*	2548	6767	*	4735	3158	3428	5998	*	6608	78
+       207	2906	*	1678	541	1082	922	6954	1997	1058	
+
+T 79   4070	*	4784	4271	5481	3260	3439	6269	4460	6216	*	3861	*	3719	2283	7170	3560	3274	*	5966	79
+       32	5530	*	1933	438	0	*	6954	1163	1000	
+
+S 80   2835	6108	6213	5926	3705	4834	3894	*	6523	5084	*	6102	7297	6895	4834	1993	4928	7258	2302	4701	80
+       14	6707	*	1000	1000	*	*	6956	1012	0	
+
+Y 81   6951	5498	*	*	4015	6509	3077	*	5067	5351	5028	4794	*	*	6692	*	*	5603	2714	1074	81
+       154	4766	3953	2229	346	*	*	6956	1215	0	
+
+F 82   4108	6738	*	4014	1456	*	4469	3806	5025	3663	6040	*	*	*	4326	5543	4885	4201	6139	3457	82
+       75	4894	5850	0	*	893	1116	6819	1194	1510	
+
+F 83   6817	*	4504	*	546	*	5513	6754	*	2774	6856	*	*	*	*	*	6084	5362	5639	5861	83
+       240	5285	2973	1306	748	1595	580	6853	1191	1332	
+
+N 84   3903	*	6341	4184	*	4211	5397	*	1851	5487	5108	2455	4669	5164	3065	3466	*	*	*	*	84
+       76	5405	5179	0	*	1185	836	6811	1410	2126	
+
+E 85   5397	*	1038	3501	6074	2965	*	6561	4603	5650	*	3762	6685	5049	4932	5385	*	5967	*	*	85
+       158	*	3269	1585	585	1873	460	6851	1000	1809	
+
+A 86   2084	*	4457	4676	3465	5095	*	4896	*	4787	*	5646	5580	4605	4053	2569	3993	3104	*	*	86
+       88	*	4084	*	*	*	0	6818	0	2223	
+
+S 87   5152	*	4419	4615	4878	4127	5896	6027	4713	*	*	6015	1452	5791	4687	2714	4185	6764	*	3868	87
+       223	3902	3713	1276	769	4669	58	6749	1325	2547	
+
+A 88   2377	*	2615	3729	*	3645	*	6448	4850	5908	*	3689	3516	6414	3697	3585	3489	*	*	*	88
+       1115	4402	1026	1686	537	*	0	6553	1180	2901	
+
+T 89   5302	*	3262	2992	*	5053	*	3794	2850	4506	*	3148	5572	4946	4968	3446	3051	5630	5108	*	89
+       547	3103	2327	2107	381	873	1139	6017	1688	4909	
+
+E 90   3849	*	2461	2262	*	4177	6054	3342	*	3667	*	4106	4782	4931	*	3980	4126	4477	*	*	90
+       104	4462	5356	1000	1000	1851	468	6393	1122	3550	
+
+A 91   1357	5070	6470	4537	*	3235	*	5561	3994	4443	*	*	*	4559	3589	4555	5624	3822	*	5041	91
+       78	6310	4648	1000	1000	738	1320	6526	1005	3026	
+
+A 92   4043	6101	4993	4548	3328	6090	5687	4479	4024	3665	6086	5797	7304	5417	3756	2439	4064	4492	4941	3755	92
+       0	*	*	*	*	1231	801	6769	0	2038	
+
+K 93   3441	*	3933	3213	6171	4282	5081	*	3136	5222	*	2979	4566	4290	3413	5253	3355	4849	*	5237	93
+       128	3561	*	2362	312	1643	557	6813	1578	1581	
+
+Y 94   6496	*	3781	5320	*	3886	2512	6341	4511	4078	*	3430	3467	4550	5452	3938	3803	3519	*	4060	94
+       0	*	*	*	*	2570	266	6861	0	1375	
+
+V 95   5455	*	5499	*	4882	5528	*	2956	6669	1062	5643	5390	5975	5000	*	*	4905	2667	*	*	95
+       74	4625	6740	2118	378	2095	385	6869	1239	1301	
+
+F 96   *	4915	*	*	1116	6127	*	2375	*	2633	*	5978	4786	6227	*	6570	*	4216	*	7092	96
+       14	*	6672	*	*	640	1480	6830	0	1276	
+
+K 97   4347	*	4474	4870	*	6190	5866	*	3948	5727	*	6066	1153	6175	3138	4123	4118	4564	*	6985	97
+       24	5917	*	1585	585	*	0	6920	1036	1132	
+
+D 98   3834	*	2397	3214	*	1367	*	6567	*	*	*	3270	*	*	6131	3906	4814	6168	*	*	98
+       116	5683	4116	1585	585	529	1704	6917	1070	1132	
+
+A 99   2481	*	4665	*	6623	6771	*	5276	5372	7122	6177	4844	4345	6195	5501	2642	1964	3061	5829	5847	99
+       627	3820	1827	1354	716	1815	482	6849	1452	1444	
+
+M 100  4272	*	6293	4542	*	5600	5040	6523	3676	6244	6790	3416	4409	3433	4339	4489	1522	4588	*	6269	100
+       1295	*	755	*	*	2846	216	6399	0	3131	
+
+R 101  *	4280	5656	5574	*	*	3922	*	*	4345	*	2175	*	3428	2420	3011	2779	5542	*	*	101
+       1034	1178	3837	1978	422	396	2060	5583	2032	5130	
+
+K 102  2698	5936	*	6451	6140	4764	5897	4270	3245	5748	*	5548	5702	2744	2859	3697	3031	4405	*	*	102
+       0	*	*	*	*	762	1285	6703	0	2530	
+
+V 103  4680	*	5240	3247	7145	*	4872	3334	3885	*	7056	5393	5012	4106	2940	4635	2531	3187	*	4400	103
+       29	6931	6451	0	*	134	3496	6875	1000	1620	
+
+T 104  4412	*	4263	4401	3867	6139	*	4641	3490	4973	5895	4476	3825	4746	3287	3630	2606	4536	6604	4661	104
+       19	6293	*	1850	469	925	1079	6954	1094	1058	
+
+L 105  6709	*	*	*	5008	*	*	3437	*	418	5314	*	*	6923	*	6355	4885	6750	*	5059	105
+       27	5772	*	0	*	0	*	6955	1064	1000	
+
+P 106  5903	*	4242	3878	6650	2967	5345	*	5419	6739	*	4277	1529	6190	5722	3076	3083	*	*	*	106
+       0	*	*	*	*	*	*	6956	0	0	
+
+Y 107  *	4812	*	*	831	6603	*	4028	*	5005	*	6082	*	*	6108	*	6548	4504	4944	2450	107
+       9	7407	*	0	*	*	*	6956	1000	0	
+
+S 108  5508	*	3123	3522	*	1501	*	7024	5260	*	*	3454	5139	*	5022	3668	2704	7258	*	*	108
+       0	*	*	*	*	*	*	6956	0	0	
+
+G 109  *	*	4061	4513	4748	985	5769	*	6692	6197	*	4439	6223	6313	*	2312	7134	4990	*	*	109
+       0	*	*	*	*	*	*	6956	0	0	
+
+N 110  *	*	3363	6102	*	3848	7137	*	*	*	*	2157	5498	5349	6625	1209	3349	*	*	*	110
+       0	*	*	*	*	*	*	6956	0	0	
+
+Y 111  6950	*	*	*	6360	*	*	*	*	*	*	*	5498	5926	6509	*	*	6102	*	127	111
+       57	*	4696	*	*	*	*	6956	0	0	
+
+E 112  4309	*	4231	3693	*	2849	4968	7440	7508	4884	6111	3256	3047	3852	3858	4393	2767	5052	*	*	112
+       0	*	*	*	*	0	*	6809	0	1156	
+
+R 113  3636	*	1894	3617	6108	5857	*	6950	4949	*	6337	3799	*	4464	5269	1866	4322	5890	*	*	113
+       0	*	*	*	*	*	*	6956	0	0	
+
+L 114  *	*	*	*	5757	6622	*	2925	*	500	3964	*	*	*	4426	*	*	5498	*	*	114
+       24	*	5951	*	*	*	*	6956	0	0	
+
+Q 115  4421	*	5473	1447	7182	3228	*	3493	*	3010	5290	*	*	3253	5022	5434	6770	4510	*	*	115
+       118	6634	3865	0	*	*	0	6958	1000	1074	
+
+T 116  3753	6654	4846	7043	*	2107	5140	5533	3334	*	4955	2964	3803	4543	3279	4323	4332	*	*	6085	116
+       180	*	3095	*	*	1064	938	6797	0	1513	
+
+A 117  2243	5828	4395	4911	*	5152	4671	5782	3322	4655	6378	3852	6075	4548	4141	4060	5928	2674	5933	5636	117
+       209	5085	3247	2309	325	*	0	6863	1111	2093	
+
+A 118  615	*	*	6379	4501	2784	*	*	6138	*	*	5797	5805	5884	6240	6667	5235	5099	*	*	118
+       261	4061	3243	178	3109	581	1593	6641	1463	2679	
+
+G 119  5519	*	4266	4251	*	716	3779	*	3733	*	6306	4713	6466	5272	6741	5685	*	*	*	*	119
+       489	2472	3223	337	2263	1264	777	6627	2346	2152	
+
+K 120  2809	*	5787	4481	4648	4933	5492	4397	2767	4047	*	4309	6603	3438	5144	5448	3428	2761	*	*	120
+       257	3901	3376	880	1131	876	1135	6514	1317	2366	
+
+I 121  *	*	3372	3686	4485	4949	5575	4688	5329	4456	*	1754	*	6607	4323	2771	4489	4952	*	4705	121
+       119	3663	*	1149	865	117	3677	6725	1498	2230	
+
+R 122  6265	*	*	*	*	4119	*	5059	5923	2709	5483	*	4780	*	775	5802	6186	4181	*	*	122
+       71	4998	5923	1767	502	0	*	6868	1159	1033	
+
+E 123  5594	*	3701	1755	*	7140	6967	*	3313	4277	6126	5790	3338	6008	4099	3613	3483	4330	6298	*	123
+       39	5211	*	2025	407	*	0	6878	1140	1036	
+
+N 124  4454	*	3974	3757	*	3334	*	*	2804	6111	6803	2578	6169	3565	4035	3034	4470	4797	*	5579	124
+       24	5903	*	1119	890	0	*	6878	1056	1036	
+
+I 125  5894	*	*	*	4345	5889	*	1804	6198	2650	5204	7035	6225	*	5933	5069	2935	2165	*	6687	125
+       0	*	*	*	*	*	*	6922	0	0	
+
+P 126  4115	*	3148	3654	5266	4015	*	5056	*	7112	*	4082	1914	3859	6334	3749	3332	4458	*	*	126
+       20	*	6198	*	*	*	*	6922	0	0	
+
+L 127  *	*	*	*	6844	*	6726	3663	*	426	6609	*	*	5920	*	*	*	3381	5492	6216	127
+       0	*	*	*	*	0	*	6893	0	1013	
+
+G 128  *	*	*	6246	*	340	*	*	*	*	*	4002	6198	4986	4400	4577	*	*	*	*	128
+       0	*	*	*	*	*	*	6922	0	0	
+
+L 129  5477	*	*	*	3570	4706	*	1839	3042	3657	4900	7178	4614	5162	2474	7015	5824	4053	*	*	129
+       0	*	*	*	*	*	*	6922	0	0	
+
+P 130  3852	*	3946	3114	5865	4270	4732	5253	3440	4894	6359	3591	4516	3609	3740	4481	4068	5950	*	3728	130
+       19	6284	*	1000	1000	*	*	6922	1019	0	
+
+A 131  2227	*	4948	3628	6509	*	4981	5508	3174	5963	7520	4808	2755	3919	5797	2331	6692	*	*	*	131
+       0	*	*	*	*	*	*	6922	0	0	
+
+L 132  3368	*	*	*	5255	*	*	5614	*	530	3272	*	*	*	*	*	5245	4875	*	*	132
+       0	*	*	*	*	*	*	6922	0	0	
+
+D 133  3749	*	2947	3143	*	3494	5429	3930	4502	3163	4493	3620	*	4462	4195	5563	5059	3788	*	*	133
+       69	*	4430	*	*	*	*	6922	0	0	
+
+S 134  4440	6933	3045	2970	5459	4698	4428	5145	3429	6852	*	3773	*	3769	4850	3070	2985	*	6634	5452	134
+       0	*	*	*	*	1597	579	6790	0	1262	
+
+A 135  726	*	6091	*	5642	4282	*	*	*	4297	*	6158	*	*	6672	2642	5706	*	*	4171	135
+       55	*	4733	*	*	*	0	6838	0	1151	
+
+I 136  4201	*	*	*	5560	*	*	1285	*	2945	3620	*	*	*	*	*	5559	2249	*	3806	136
+       58	5021	6857	694	1389	729	1334	6852	1473	1488	
+
+T 137  4753	6121	4154	3686	4321	4064	4994	6619	3296	5310	6061	3596	7163	3795	3352	3315	2788	6972	*	6883	137
+       0	*	*	*	*	390	2076	6836	0	1221	
+
+T 138  3433	5884	4298	6341	7107	6221	4641	5263	2933	4625	*	4285	*	3519	5133	2753	3100	3423	5275	5789	138
+       0	*	*	*	*	*	0	6921	0	1000	
+
+L 139  *	*	*	6341	6932	*	*	3545	*	461	5972	*	*	*	6932	*	6239	3027	7104	*	139
+       11	*	7009	1000	1000	0	*	6921	1000	1000	
+
+F 140  2586	*	5973	6936	3226	6585	4332	5707	*	6137	6598	3647	*	*	4767	2455	4313	5886	4496	2409	140
+       75	*	4301	*	*	*	0	6928	0	1000	
+
+Y 141  4048	*	4411	4471	6932	2279	4585	*	3528	4926	*	3117	*	4601	3230	3524	4995	5467	*	3878	141
+       91	5475	4697	1312	744	1541	607	6912	1477	1444	
+
+Y 142  4767	6774	*	5991	3854	5908	5289	5024	3174	6897	6986	3997	4391	5702	5753	3977	3742	4406	6911	1611	142
+       2091	386	*	1873	460	624	1511	6952	5333	1606	
+
+N 143  4524	*	1576	5343	*	6817	*	6174	5206	4856	*	2284	5127	5385	5277	4470	2875	4414	*	*	143
+       302	2472	6817	1622	567	170	3170	6887	2251	1547	
+
+A 144  4112	*	4016	3171	*	3706	*	6327	3828	4579	5093	3419	3087	5171	5149	3905	3342	3856	6280	5365	144
+       92	4020	*	2269	335	922	1082	6921	1490	1074	
+
+N 145  3854	*	4389	3759	*	4297	*	5849	2158	6603	6954	3335	4606	3222	3223	4789	3327	6899	*	*	145
+       123	3610	*	1776	498	*	0	6918	1537	1000	
+
+S 146  2543	5271	2329	4516	*	5638	*	4285	6008	*	*	4060	5213	3877	5574	3056	3300	3994	*	6324	146
+       51	4836	*	1700	531	0	*	6918	1250	1000	
+
+A 147  3842	*	5131	2781	6206	*	6454	2756	*	2242	5096	*	6162	4213	4038	6543	4188	2755	*	*	147
+       18	6337	*	1000	1000	*	*	6919	1037	0	
+
+A 148  688	*	*	*	*	5351	*	*	2434	*	*	6162	5343	4995	4672	4945	6085	6210	*	*	148
+       15	6618	*	4322	74	*	*	6919	1003	0	
+
+S 149  5484	*	5459	3630	*	5971	5241	5179	1977	4948	*	*	5853	4848	1437	4288	5051	6048	*	*	149
+       92	4010	*	0	*	*	*	6919	1429	0	
+
+A 150  1552	*	6837	*	2503	3675	4727	*	*	4530	5891	5877	6067	*	*	2561	5843	5055	6210	4821	150
+       0	*	*	*	*	*	*	6919	0	0	
+
+L 151  5073	*	*	*	3029	*	*	5072	*	564	3532	*	*	*	*	6819	*	4425	*	*	151
+       12	*	6961	*	*	*	*	6919	0	0	
+
+M 152  2655	*	*	*	5886	5089	*	2931	*	1153	5189	*	*	*	6202	*	4325	3198	*	6137	152
+       24	*	5929	*	*	*	0	6918	0	1013	
+
+V 153  3728	*	*	*	*	4941	*	2811	3942	5221	5429	7114	4522	6115	4530	6241	2979	1374	*	*	153
+       32	*	5527	*	*	841	1179	6874	0	1125	
+
+L 154  2384	3783	*	*	3068	6695	*	3091	*	2126	6175	*	*	*	*	6654	4655	2444	*	6244	154
+       0	*	*	*	*	*	0	6897	0	1179	
+
+I 155  4114	5019	5455	*	*	6087	*	773	5995	4496	6297	*	*	*	*	4853	6019	2592	*	*	155
+       0	*	*	*	*	1523	617	6897	0	1179	
+
+Q 156  5866	*	*	4878	*	5425	*	3783	*	3976	5787	*	*	986	*	*	4873	2107	*	*	156
+       0	*	*	*	*	*	0	6897	0	1091	
+
+S 157  3640	6815	*	*	*	*	*	5078	*	3946	680	*	*	*	*	7279	2989	4061	*	*	157
+       0	*	*	*	*	0	*	6897	0	1091	
+
+T 158  *	*	*	*	2669	6534	*	2177	6848	3583	5680	*	*	*	*	6730	3885	1244	*	*	158
+       24	*	5933	*	*	*	*	6918	0	0	
+
+S 159  2163	2431	*	*	7281	6870	*	*	*	5238	*	5709	2859	*	*	1546	4643	6586	*	*	159
+       0	*	*	*	*	0	*	6874	0	1036	
+
+E 160  *	*	*	51	*	*	*	*	*	*	*	*	*	6794	*	7497	5642	*	*	*	160
+       14	*	6734	*	*	*	*	6918	0	0	
+
+A 161  250	5879	*	*	*	4914	*	*	*	*	*	*	*	*	*	3721	5929	5890	*	*	161
+       0	*	*	*	*	*	0	6911	0	1000	
+
+A 162  862	*	*	*	5890	7243	6575	3849	*	3452	6329	*	*	5858	*	4959	3647	3141	*	*	162
+       0	*	*	*	*	*	0	6911	0	1000	
+
+R 163  *	*	*	*	*	*	*	*	6338	*	*	*	*	*	78	6102	5288	*	*	*	163
+       0	*	*	*	*	*	0	6911	0	1000	
+
+Y 164  *	*	*	*	317	*	*	6086	*	3339	5477	*	*	*	*	6102	*	6335	*	4856	164
+       0	*	*	*	*	*	0	6911	0	1000	
+
+K 165  5649	*	6571	5823	5102	5154	5171	4346	1786	6686	*	6958	2670	5262	2067	5393	4581	5464	*	*	165
+       0	*	*	*	*	*	0	6913	0	1000	
+
+F 166  4040	*	5478	6618	4110	*	7387	7263	4642	5888	6188	5491	2469	5559	5170	4405	5092	4048	*	1409	166
+       0	*	*	*	*	*	0	6913	0	1000	
+
+I 167  *	*	*	*	6188	*	5472	707	*	3224	5825	*	*	*	*	6146	*	2351	*	5922	167
+       24	5922	*	0	*	*	0	6913	1036	1000	
+
+E 168  3068	6205	*	1430	4433	*	*	*	5888	4757	*	5879	*	3318	2432	3605	*	*	*	6497	168
+       0	*	*	*	*	*	0	6913	0	1000	
+
+Q 169  5876	*	2639	3397	*	2946	*	6090	3490	5301	*	2721	*	3514	2712	7177	5367	*	6958	4728	169
+       0	*	*	*	*	*	0	6913	0	1000	
+
+Q 170  3919	*	6769	3687	5370	5153	3849	7200	3175	3124	5494	4488	6618	3623	2276	*	3846	5159	5732	6354	170
+       0	*	*	*	*	*	0	6913	0	1000	
+
+I 171  4056	*	*	*	3333	5922	*	2492	*	3138	3508	6146	*	6625	*	*	*	1287	*	6509	171
+       71	4955	5966	0	*	*	0	6913	1182	1000	
+
+G 172  2926	6924	5563	5009	4828	5291	*	3202	4230	3971	*	4434	5907	4777	2790	2873	5786	3212	7396	6782	172
+       10	7217	*	4858	51	1499	630	6909	1000	1139	
+
+K 173  3913	*	3133	3360	6202	3899	5436	4885	5707	5774	*	3758	6526	3606	3264	3350	3268	5244	*	4382	173
+       30	7077	6283	0	*	879	1133	6910	1000	1063	
+
+R 174  3151	*	5185	4677	6632	2525	5391	4388	5114	4605	*	2530	*	6852	4645	2813	3723	5016	*	5339	174
+       163	6269	3412	0	*	820	1205	6929	1019	1070	
+
+V 175  *	*	*	*	2221	*	*	2422	5798	2450	3381	*	6588	*	5160	*	*	5100	2093	*	175
+       234	3077	5012	1174	845	1072	932	6931	2079	1757	
+
+D 176  4814	6436	2473	3109	5140	6075	5411	5618	6437	6085	6059	3468	4029	7055	3736	3077	3781	6036	5037	4122	176
+       109	4609	4984	2626	255	*	0	6829	1196	1715	
+
+K 177  4766	*	2685	3421	*	3878	*	*	2994	*	6425	3776	*	4001	3490	2822	3259	6291	*	5259	177
+       1186	867	6382	1553	601	1081	924	6814	4372	1891	
+
+T 178  3407	*	3361	3783	*	2570	6754	*	4594	4884	6948	3383	6663	5471	5887	2349	3092	*	5949	*	178
+       88	4079	*	807	1224	692	1391	6785	1385	1666	
+
+F 179  4667	*	5896	6206	1622	4143	6506	5606	5379	3570	6126	*	5503	5802	5746	4800	3892	3560	6150	2899	179
+       164	3739	4936	2652	250	1044	958	6827	1565	1214	
+
+L 180  4086	*	6570	5374	*	6000	5814	5425	2753	2980	*	4195	6729	4924	2817	5398	2458	3364	*	4918	180
+       22	6073	*	1585	585	2697	242	6757	1023	1429	
+
+P 181  4337	6252	*	4956	*	*	*	4499	6738	4139	4851	4679	884	5643	*	4535	4505	3796	*	*	181
+       86	4934	5326	0	*	*	0	6768	1137	1353	
+
+S 182  5665	*	1518	5390	*	3235	*	*	4428	6324	*	2977	5241	4614	4373	2916	3896	*	*	*	182
+       113	4873	4595	2518	277	458	1879	6729	1361	1523	
+
+L 183  2871	5706	4246	3506	5983	2994	5773	5239	6617	3912	*	4718	2506	4381	5873	4819	5284	5791	5333	4118	183
+       63	6397	5007	0	*	259	2606	6776	1000	1366	
+
+A 184  2700	*	3226	3784	6205	5344	4696	*	2327	4505	5359	5772	*	5102	5681	3816	3541	5577	4842	4555	184
+       20	*	6190	*	*	494	1787	6818	0	1230	
+
+I 185  3933	*	6466	6595	4672	*	4287	2708	*	2985	1646	5490	*	5223	6238	5425	4777	3300	*	*	185
+       14	6724	*	0	*	0	*	6836	1000	1125	
+
+I 186  3868	6732	5133	*	*	*	6064	2059	5444	1983	*	4895	5980	6175	5121	6825	3542	2874	6070	5336	186
+       21	*	6114	*	*	*	*	6848	0	0	
+
+S 187  3296	7115	2851	4230	*	4654	*	5796	3571	6657	*	4295	6588	6692	4270	1507	4102	*	6124	*	187
+       16	6518	*	0	*	*	0	6814	1003	1029	
+
+L 188  *	6144	6247	4330	5212	*	5820	6672	*	573	4912	6196	*	4973	6312	*	*	*	6034	3478	188
+       16	*	6492	*	*	*	0	6814	0	1029	
+
+E 189  *	*	*	1173	4824	6826	*	3839	5306	3657	*	*	*	2728	6125	*	4411	2991	*	*	189
+       52	4812	*	2121	377	0	*	6801	1156	1106	
+
+N 190  5693	*	4099	3804	*	*	5168	*	3744	3742	*	1619	6258	4264	4095	*	3295	3344	5383	*	190
+       48	4934	*	1852	468	*	*	6848	1165	0	
+
+S 191  4640	6503	4493	5462	*	4700	5056	6064	3221	*	*	1079	*	5973	5688	3195	4697	*	*	4856	191
+       0	*	*	*	*	*	*	6848	0	0	
+
+W 192  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	19	6258	192
+       0	*	*	*	*	*	*	6848	0	0	
+
+S 193  3765	*	3305	4435	*	1363	*	*	5201	*	*	6822	4841	4451	4415	2407	6181	6106	*	6648	193
+       0	*	*	*	*	*	*	6848	0	0	
+
+A 194  3135	*	2772	5613	*	6493	7104	*	2754	4472	6596	5429	5956	3749	2806	3588	3257	4624	7299	7387	194
+       0	*	*	*	*	*	*	6848	0	0	
+
+L 195  *	5871	*	*	5213	*	*	2136	*	948	2750	*	*	6908	*	*	6323	5424	*	5839	195
+       0	*	*	*	*	*	*	6848	0	0	
+
+S 196  *	4098	*	*	*	*	*	*	*	*	*	*	*	*	*	134	5035	*	*	*	196
+       0	*	*	*	*	*	*	6802	0	0	
+
+K 197  3494	4366	3686	3698	4534	*	*	5843	2834	4613	4741	4241	*	4626	3121	4241	3378	6615	6385	4341	197
+       22	6062	*	2000	415	*	*	6837	1029	0	
+
+Q 198  1363	5086	6044	3361	5155	4476	*	*	6144	4846	4656	*	6844	2839	4938	6050	5377	4285	5316	6505	198
+       0	*	*	*	*	*	*	6837	0	0	
+
+I 199  5358	*	*	*	*	*	*	1133	*	2277	*	*	*	*	*	*	*	1855	5227	6631	199
+       32	6467	6511	1585	585	*	*	6786	1010	0	
+
+Q 200  *	*	*	5610	5677	*	3688	*	3779	2576	*	6303	4638	1407	3185	*	6072	4960	6029	4662	200
+       1452	6480	682	0	*	0	*	6726	1013	1000	
+
+I 201  *	*	*	*	*	3574	*	2602	2665	3333	*	2635	*	*	2138	4674	*	4819	4986	*	201
+       253	4442	3121	0	*	*	0	5154	1006	4058	
+
+A 202  1070	*	*	4290	*	*	*	*	4639	*	*	*	4738	*	*	1485	*	*	4721	*	202
+       105	3835	*	1585	585	0	*	4878	1073	4200	
+
+S 203  4883	*	4174	3532	5930	3775	3913	*	2931	6509	5394	2961	*	2630	4119	3897	3541	9019	*	*	203
+       15	*	6550	0	*	0	*	6302	1073	1073	
+
+T 204  2342	6150	4779	*	9023	4094	*	*	5091	4777	5975	5831	3799	4650	4223	1513	4031	6004	*	*	204
+       214	3168	5216	125	3588	*	0	6333	1569	1000	
+
+N 205  5477	*	4541	5591	5312	3546	5654	*	2938	4761	*	2667	4357	5508	3865	4503	3123	3212	*	4261	205
+       301	3908	3041	2063	395	*	0	6265	1244	1154	
+
+N 206  5723	2992	3800	4726	*	3321	*	*	4422	*	*	1789	*	2592	4704	4897	*	5023	*	4597	206
+       144	3697	5820	1511	623	284	2486	6038	1630	1785	
+
+G 207  5246	*	4804	4453	*	738	*	*	4340	*	*	4886	5616	3616	*	4523	5303	*	*	4700	207
+       0	*	*	*	*	1652	553	6245	0	1170	
+
+Q 208  2315	*	5217	6583	*	6236	*	4159	2653	5163	6410	4896	3566	5022	4854	*	3369	2362	5714	*	208
+       17	6391	*	1000	1000	*	0	6151	1000	1092	
+
+F 209  6217	*	*	*	560	5855	5819	3084	*	4796	5553	*	4918	*	*	*	5947	5066	5714	*	209
+       199	*	2956	*	*	*	0	6151	0	1092	
+
+E 210  3096	*	5198	4029	*	5597	*	6546	5090	3377	*	3851	3074	4316	4909	2381	2523	*	*	*	210
+       0	*	*	*	*	350	2216	5904	0	1717	
+
+S 211  3703	*	5033	4618	5190	4867	6795	*	3550	5892	*	3694	2069	3887	4211	3790	2956	*	5491	5760	211
+       36	*	5345	*	*	*	0	6046	0	1100	
+
+P 212  4203	*	4922	*	*	*	*	6385	4257	4245	4480	6372	909	*	3828	4003	4633	4918	*	*	212
+       17	6385	*	2000	415	1257	782	5937	1000	1226	
+
+V 213  3581	*	5679	*	*	*	*	2434	5913	2171	*	6040	*	*	*	*	*	1183	*	5836	213
+       75	*	4296	*	*	887	1123	5931	0	1100	
+
+V 214  3852	*	4050	3143	5205	5015	*	6616	3795	5857	*	4468	6863	2313	4103	4024	3065	3246	*	*	214
+       47	4949	*	1000	1000	*	0	5878	1082	1231	
+
+L 215  *	*	5401	*	4551	*	*	2918	*	484	*	5205	5434	*	*	6121	*	6863	*	6225	215
+       24	*	5915	*	*	1931	439	5878	0	1231	
+
+I 216  4037	5922	*	6061	*	3553	*	2704	4242	4028	*	5978	*	1547	3989	4805	4916	5107	*	4807	216
+       46	*	4999	*	*	*	0	5631	0	1216	
+
+N 217  *	*	2265	*	*	5185	*	5563	4817	4634	*	2122	*	5773	3297	3879	2816	5822	5448	3893	217
+       28	5726	*	1000	1000	2542	272	5528	1000	1359	
+
+A 218  2916	*	5130	2378	*	*	4997	4617	5932	4018	*	5301	3055	4280	4853	2586	4832	4398	*	6020	218
+       0	*	*	*	*	*	0	5501	0	1285	
+
+Q 219  6173	*	2598	3703	*	2691	*	*	5301	*	5550	2077	4799	5366	5031	2772	4300	5819	*	*	219
+       50	*	4888	*	*	*	0	5501	0	1285	
+
+N 220  4977	4913	3528	5834	4063	1529	5995	*	5535	6049	*	3044	5382	4118	*	*	*	5661	*	2741	220
+       31	*	5556	0	*	587	1581	5412	1000	1371	
+
+Q 221  5031	*	3737	2683	*	4998	6022	*	2699	*	*	3754	5618	2721	4809	2959	3192	5781	*	*	221
+       31	*	5564	*	*	*	0	5553	0	1151	
+
+R 222  *	*	5822	4534	4861	*	*	*	3213	*	*	5857	1913	5745	3413	5819	2304	3488	4576	4312	222
+       70	*	4395	0	*	*	0	5517	1000	1223	
+
+V 223  4629	*	*	5790	2992	5638	*	2489	5142	4467	3855	*	*	*	4878	*	4902	2654	2290	4497	223
+       27	*	5746	*	*	2649	251	5429	0	1376	
+
+T 224  *	8004	5927	3786	6069	4450	5834	3112	3918	3051	*	3195	*	5235	4592	5062	3538	3527	4156	3466	224
+       0	*	*	*	*	908	1099	5442	0	1378	
+
+I 225  *	*	*	5805	4718	*	*	2586	5571	4414	3935	*	*	*	*	*	5648	780	*	4574	225
+       54	4760	*	0	*	1499	630	5615	1082	1139	
+
+T 226  4307	*	2687	5326	5892	4949	5940	*	4178	4437	*	3121	*	*	4753	3405	1807	*	4585	5135	226
+       134	6137	3747	1585	585	879	1133	5622	1009	1063	
+
+N 227  3978	*	3925	4861	*	5716	*	*	5958	*	5825	1647	*	3232	4003	3107	2478	*	*	*	227
+       107	3801	*	1463	650	242	2694	5598	1509	1330	
+
+V 228  3687	*	6008	*	4226	*	*	4919	*	4620	3995	*	*	*	*	5759	6006	550	*	*	228
+       138	*	3450	*	*	*	0	5583	0	1000	
+
+D 229  3063	*	2907	2587	*	4578	*	*	*	*	*	4314	5343	5850	3137	2244	4311	5170	*	4521	229
+       25	5880	*	363	2170	2919	205	5528	1402	1397	
+
+A 230  4331	*	2608	1576	*	5154	4591	5732	4231	4974	*	5329	*	3297	4859	3640	5843	5733	*	*	230
+       317	3878	2953	1106	901	2585	263	5528	1514	1336	
+
+G 231  1738	*	5304	*	*	4265	*	4028	4340	2281	*	5466	3293	*	*	5154	*	2702	*	*	231
+       0	*	*	*	*	*	0	4776	0	1611	
+
+V 232  3110	*	*	*	*	*	*	2747	3401	3565	*	*	*	4774	3122	*	4469	1595	*	5135	232
+       0	*	*	*	*	0	*	4776	0	1611	
+
+V 233  3356	*	*	*	*	*	*	5410	4825	3741	*	4137	2528	3523	3958	4393	3752	1914	*	*	233
+       178	*	3108	*	*	*	*	4995	0	0	
+
+T 234  2452	*	4819	*	5046	5440	*	4396	2948	5564	5279	4205	*	3596	4086	4148	2570	5018	*	4236	234
+       82	5018	5376	1501	629	0	*	4666	1337	1268	
+
+S 235  4615	5188	*	*	*	3296	*	2380	5449	1862	4159	4411	4527	5694	*	3800	*	3288	*	*	235
+       0	*	*	0	*	*	0	4786	1000	1000	
+
+N 236  1349	*	5449	*	*	2112	*	5322	3865	5076	*	3230	*	*	*	3598	*	4615	*	*	236
+       0	*	*	*	*	0	*	4786	0	1000	
+
+I 237  5346	*	*	*	4306	*	*	1355	*	1543	3371	*	*	*	*	*	*	3409	*	*	237
+       34	5438	*	1585	585	*	*	4787	1000	0	
+
+A 238  2836	*	*	*	*	3320	*	5276	3913	1528	1896	*	*	4262	*	*	*	*	*	*	238
+       0	*	*	*	*	*	*	4685	0	0	
+
+L 239  *	*	*	5676	*	*	*	4749	4281	253	*	*	*	*	*	*	*	4248	*	*	239
+       0	*	*	*	*	*	*	4622	0	0	
+
+L 240  *	*	*	*	1384	5435	4485	*	*	1588	4583	*	*	*	*	*	*	*	*	2516	240
+       83	4161	*	2043	401	*	*	4685	1067	0	
+
+L 241  5118	*	*	4923	4007	3952	*	5559	4837	1755	5435	5445	*	4915	3542	*	*	1900	5269	*	241
+       0	*	*	*	*	*	*	4685	0	0	
+
+N 242  4442	1284	5264	3602	*	*	*	5445	*	*	*	3177	5269	*	2954	5275	5435	*	*	3361	242
+       355	4347	2564	0	*	*	*	4685	1012	0	
+
+R 243  3187	5307	*	*	5063	4739	*	5216	2627	4495	4653	3264	*	4871	3416	3771	3659	3240	*	4853	243
+       269	2555	*	983	1018	317	2342	4404	1492	1351	
+
+N 244  4126	*	4796	4722	*	3704	5156	5090	4727	*	*	3404	1833	4807	3819	3261	3932	*	*	4463	244
+       224	2796	*	3322	152	0	*	4233	1000	1009	
+
+N 245  1625	1730	*	*	*	*	*	*	*	*	*	2148	*	*	2750	*	*	*	*	*	245
+       0	*	*	*	*	*	*	2605	0	0	
+
+M 246  *	*	*	*	*	*	*	2845	*	*	3014	*	*	*	*	1170	3106	2502	*	*	246
+       0	*	*	*	*	*	*	2389	0	0	
+
+A 247  546	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2742	2596	*	*	247
+       0	*	*	0	*	*	*	2108	0	0	
+
+//
+�HHsearch 1.5
+NAME  eb75493f078d95ea52db97600717baa3
+FAM   
+FILE  eb75493f078d95ea52db97600717baa3
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:04:12 2013
+LENG  129 match states, 129 columns in multiple alignment
+FILT  3 out of 5 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  1.3 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCEEEEEECCCCCCEEEEECCCCCHHHHHHHCCCCCCEEEEEEEEEECCCCCCEEEEEEECCCEEEEEECCEECCHHHHHHHHCCEEEEEEEECCCC
+HHHHHHHHHHHHCCCCCCHHHHHHCCCCC
+>ss_conf PSIPRED confidence values
+9862189999369856469951244303889862476030248888877155666506899962501356537785428998864165266567860761
+89999997776416985067786435779
+>Consensus
+asnxxxfvlvdnggtgxvtvxpxxxangvaewisxnsrsqaykvtxsxrxsxaxxrkytikxevpkvxtqvxxgvelpvaawrsyxxmeltipifatxdd
+xxxixkalxgxfkxgnpixxaiaaxsgxy
+>eb75493f078d95ea52db97600717baa3
+ASNFTQFVLVDNGGTGDVTVAPSNFANGVAEWISSNSRSQAYKVTCSVRQSSAQNRKYTIKVEVPKVATQTVGGVDLPVAAWRSYLNMELTIPIFATNSD
+CELIVKAMQGLLKDGNPIPSAIAANSGIY
+>gi|435743|gb|AAC60713.1| alpha-atrial natriuretic factor/coat protein [synthetic construct]
+ASNFEEFVLVDNGGTGDVKVAPSNFANGVAEWISSNSRSQAYKVTCSVRQSSANNRKYTVKVEVPKVATQVQGGVELPVAAWRSYMNMELTIPVFATNDD
+CALIVKALQGTFKTGNPIATAIAANSGIY
+>gi|83642763|dbj|BAE54359.1| coat protein [Enterobacteria phage SD]
+---matLRSFVLVDNGGTGNVTVVPVSNANGVAEWLSNNSRSQAYRVTASYRASGADKRKYTIKLEVPKIVTQVVNGVELPISAWKAYASIDLTIPIFAA
+TDDVTTISKSLAGLFKVGNPIADAISSQSGFY
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+A 1    0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1102	0	0	
+
+S 2    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	2
+       0	*	*	*	*	*	*	1102	0	0	
+
+N 3    *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	3
+       0	*	*	1585	585	*	*	1102	1013	0	
+
+F 4    *	*	*	*	675	*	*	*	*	1420	*	*	*	*	*	*	*	*	*	*	4
+       0	*	*	*	*	*	*	1355	0	0	
+
+T 5    *	*	*	1680	*	*	*	*	*	*	*	*	*	*	1420	*	1670	*	*	*	5
+       0	*	*	*	*	*	*	1355	0	0	
+
+Q 6    *	*	*	1680	*	*	*	*	*	*	*	*	*	1670	*	1420	*	*	*	*	6
+       0	*	*	*	*	*	*	1355	0	0	
+
+F 7    *	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	7
+       0	*	*	*	*	*	*	1355	0	0	
+
+V 8    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	8
+       0	*	*	*	*	*	*	1355	0	0	
+
+L 9    *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	9
+       0	*	*	*	*	*	*	1355	0	0	
+
+V 10   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	10
+       0	*	*	*	*	*	*	1355	0	0	
+
+D 11   *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	11
+       0	*	*	*	*	*	*	1355	0	0	
+
+N 12   *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	12
+       0	*	*	*	*	*	*	1355	0	0	
+
+G 13   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	13
+       0	*	*	*	*	*	*	1355	0	0	
+
+G 14   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	14
+       0	*	*	*	*	*	*	1355	0	0	
+
+T 15   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	15
+       0	*	*	*	*	*	*	1355	0	0	
+
+G 16   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	16
+       0	*	*	*	*	*	*	1355	0	0	
+
+D 17   *	*	675	*	*	*	*	*	*	*	*	1420	*	*	*	*	*	*	*	*	17
+       0	*	*	*	*	*	*	1355	0	0	
+
+V 18   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	18
+       0	*	*	*	*	*	*	1355	0	0	
+
+T 19   *	*	*	*	*	*	*	*	1680	*	*	*	*	*	*	*	540	*	*	*	19
+       0	*	*	*	*	*	*	1355	0	0	
+
+V 20   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	20
+       0	*	*	*	*	*	*	1355	0	0	
+
+A 21   675	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1420	*	*	21
+       0	*	*	*	*	*	*	1355	0	0	
+
+P 22   *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	22
+       0	*	*	*	*	*	*	1355	0	0	
+
+S 23   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	675	*	1420	*	*	23
+       0	*	*	*	*	*	*	1355	0	0	
+
+N 24   *	*	*	*	*	*	*	*	*	*	*	675	*	*	*	1420	*	*	*	*	24
+       0	*	*	*	*	*	*	1355	0	0	
+
+F 25   *	*	*	*	675	*	*	*	*	*	*	1420	*	*	*	*	*	*	*	*	25
+       0	*	*	*	*	*	*	1355	0	0	
+
+A 26   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	26
+       0	*	*	*	*	*	*	1355	0	0	
+
+N 27   *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	27
+       0	*	*	*	*	*	*	1355	0	0	
+
+G 28   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	28
+       0	*	*	*	*	*	*	1355	0	0	
+
+V 29   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	29
+       0	*	*	*	*	*	*	1355	0	0	
+
+A 30   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	30
+       0	*	*	*	*	*	*	1355	0	0	
+
+E 31   *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	31
+       0	*	*	*	*	*	*	1355	0	0	
+
+W 32   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	32
+       0	*	*	*	*	*	*	1355	0	0	
+
+I 33   *	*	*	*	*	*	*	675	*	1420	*	*	*	*	*	*	*	*	*	*	33
+       0	*	*	*	*	*	*	1355	0	0	
+
+S 34   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	34
+       0	*	*	*	*	*	*	1355	0	0	
+
+S 35   *	*	*	*	*	*	*	*	*	*	*	1420	*	*	*	675	*	*	*	*	35
+       0	*	*	*	*	*	*	1355	0	0	
+
+N 36   *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	36
+       0	*	*	*	*	*	*	1355	0	0	
+
+S 37   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	37
+       0	*	*	*	*	*	*	1355	0	0	
+
+R 38   *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	38
+       0	*	*	*	*	*	*	1355	0	0	
+
+S 39   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	39
+       0	*	*	*	*	*	*	1355	0	0	
+
+Q 40   *	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	40
+       0	*	*	*	*	*	*	1355	0	0	
+
+A 41   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	41
+       0	*	*	*	*	*	*	1355	0	0	
+
+Y 42   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	42
+       0	*	*	*	*	*	*	1355	0	0	
+
+K 43   *	*	*	*	*	*	*	*	675	*	*	*	*	*	1420	*	*	*	*	*	43
+       0	*	*	*	*	*	*	1355	0	0	
+
+V 44   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	44
+       0	*	*	*	*	*	*	1355	0	0	
+
+T 45   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	45
+       0	*	*	*	*	*	*	1355	0	0	
+
+C 46   1420	675	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	46
+       0	*	*	*	*	*	*	1355	0	0	
+
+S 47   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	47
+       0	*	*	*	*	*	*	1355	0	0	
+
+V 48   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	675	*	1420	48
+       0	*	*	*	*	*	*	1355	0	0	
+
+R 49   *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	49
+       0	*	*	*	*	*	*	1355	0	0	
+
+Q 50   1420	*	*	*	*	*	*	*	*	*	*	*	*	675	*	*	*	*	*	*	50
+       0	*	*	*	*	*	*	1355	0	0	
+
+S 51   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	51
+       0	*	*	*	*	*	*	1355	0	0	
+
+S 52   *	*	*	*	*	1420	*	*	*	*	*	*	*	*	*	675	*	*	*	*	52
+       0	*	*	*	*	*	*	1355	0	0	
+
+A 53   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	53
+       0	*	*	*	*	*	*	1355	0	0	
+
+Q 54   *	*	1420	*	*	*	*	*	*	*	*	1680	*	1670	*	*	*	*	*	*	54
+       0	*	*	*	*	*	*	1355	0	0	
+
+N 55   *	*	*	*	*	*	*	*	1420	*	*	675	*	*	*	*	*	*	*	*	55
+       0	*	*	*	*	*	*	1355	0	0	
+
+R 56   *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	56
+       0	*	*	*	*	*	*	1355	0	0	
+
+K 57   *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	57
+       0	*	*	*	*	*	*	1355	0	0	
+
+Y 58   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	58
+       0	*	*	*	*	*	*	1355	0	0	
+
+T 59   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	59
+       0	*	*	*	*	*	*	1355	0	0	
+
+I 60   *	*	*	*	*	*	*	540	*	*	*	*	*	*	*	*	*	1680	*	*	60
+       0	*	*	*	*	*	*	1355	0	0	
+
+K 61   *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	61
+       0	*	*	*	*	*	*	1355	0	0	
+
+V 62   *	*	*	*	*	*	*	*	*	1420	*	*	*	*	*	*	*	675	*	*	62
+       0	*	*	*	*	*	*	1355	0	0	
+
+E 63   *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	63
+       0	*	*	*	*	*	*	1355	0	0	
+
+V 64   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	64
+       0	*	*	*	*	*	*	1355	0	0	
+
+P 65   *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	65
+       0	*	*	*	*	*	*	1355	0	0	
+
+K 66   *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	66
+       0	*	*	*	*	*	*	1355	0	0	
+
+V 67   *	*	*	*	*	*	*	1420	*	*	*	*	*	*	*	*	*	675	*	*	67
+       0	*	*	*	*	*	*	1355	0	0	
+
+A 68   675	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1420	*	*	68
+       0	*	*	*	*	*	*	1355	0	0	
+
+T 69   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	69
+       0	*	*	*	*	*	*	1355	0	0	
+
+Q 70   *	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	70
+       0	*	*	*	*	*	*	1355	0	0	
+
+T 71   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1670	544	*	*	71
+       0	*	*	*	*	*	*	1355	0	0	
+
+V 72   *	*	*	*	*	*	*	*	*	*	*	*	*	1680	*	*	*	540	*	*	72
+       0	*	*	*	*	*	*	1355	0	0	
+
+G 73   *	*	*	*	*	675	*	*	*	*	*	1420	*	*	*	*	*	*	*	*	73
+       0	*	*	*	*	*	*	1355	0	0	
+
+G 74   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	74
+       0	*	*	*	*	*	*	1355	0	0	
+
+V 75   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	75
+       0	*	*	*	*	*	*	1355	0	0	
+
+D 76   *	*	1670	544	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	76
+       0	*	*	*	*	*	*	1355	0	0	
+
+L 77   *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	77
+       0	*	*	*	*	*	*	1355	0	0	
+
+P 78   *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	78
+       0	*	*	*	*	*	*	1355	0	0	
+
+V 79   *	*	*	*	*	*	*	1420	*	*	*	*	*	*	*	*	*	675	*	*	79
+       0	*	*	*	*	*	*	1355	0	0	
+
+A 80   675	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1420	*	*	*	*	80
+       0	*	*	*	*	*	*	1355	0	0	
+
+A 81   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	81
+       0	*	*	*	*	*	*	1355	0	0	
+
+W 82   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	82
+       0	*	*	*	*	*	*	1355	0	0	
+
+R 83   *	*	*	*	*	*	*	*	1420	*	*	*	*	*	675	*	*	*	*	*	83
+       0	*	*	*	*	*	*	1355	0	0	
+
+S 84   1420	*	*	*	*	*	*	*	*	*	*	*	*	*	*	675	*	*	*	*	84
+       0	*	*	*	*	*	*	1355	0	0	
+
+Y 85   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	85
+       0	*	*	*	*	*	*	1355	0	0	
+
+L 86   1420	*	*	*	*	*	*	*	*	1670	1680	*	*	*	*	*	*	*	*	*	86
+       0	*	*	*	*	*	*	1355	0	0	
+
+N 87   *	*	*	*	*	*	*	*	*	*	*	675	*	*	*	1420	*	*	*	*	87
+       0	*	*	*	*	*	*	1355	0	0	
+
+M 88   *	*	*	*	*	*	*	1420	*	*	675	*	*	*	*	*	*	*	*	*	88
+       0	*	*	*	*	*	*	1355	0	0	
+
+E 89   *	*	1420	675	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	89
+       0	*	*	*	*	*	*	1355	0	0	
+
+L 90   *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	90
+       0	*	*	*	*	*	*	1355	0	0	
+
+T 91   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	91
+       0	*	*	*	*	*	*	1355	0	0	
+
+I 92   *	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	92
+       0	*	*	*	*	*	*	1355	0	0	
+
+P 93   *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	93
+       0	*	*	*	*	*	*	1355	0	0	
+
+I 94   *	*	*	*	*	*	*	540	*	*	*	*	*	*	*	*	*	1680	*	*	94
+       0	*	*	*	*	*	*	1355	0	0	
+
+F 95   *	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	95
+       0	*	*	*	*	*	*	1355	0	0	
+
+A 96   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	96
+       0	*	*	*	*	*	*	1355	0	0	
+
+T 97   1420	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	675	*	*	*	97
+       0	*	*	*	*	*	*	1355	0	0	
+
+N 98   *	*	*	*	*	*	*	*	*	*	*	675	*	*	*	*	1420	*	*	*	98
+       0	*	*	*	*	*	*	1355	0	0	
+
+S 99   *	*	544	*	*	*	*	*	*	*	*	*	*	*	*	1670	*	*	*	*	99
+       0	*	*	*	*	*	*	1355	0	0	
+
+D 100  *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	100
+       0	*	*	*	*	*	*	1355	0	0	
+
+C 101  *	675	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1420	*	*	101
+       0	*	*	*	*	*	*	1355	0	0	
+
+E 102  1680	*	*	1670	*	*	*	*	*	*	*	*	*	*	*	*	1420	*	*	*	102
+       0	*	*	*	*	*	*	1355	0	0	
+
+L 103  *	*	*	*	*	*	*	*	*	675	*	*	*	*	*	*	1420	*	*	*	103
+       0	*	*	*	*	*	*	1355	0	0	
+
+I 104  *	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	104
+       0	*	*	*	*	*	*	1355	0	0	
+
+V 105  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1420	*	675	*	*	105
+       0	*	*	*	*	*	*	1355	0	0	
+
+K 106  *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	106
+       0	*	*	*	*	*	*	1355	0	0	
+
+A 107  675	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1420	*	*	*	*	107
+       0	*	*	*	*	*	*	1355	0	0	
+
+M 108  *	*	*	*	*	*	*	*	*	544	1670	*	*	*	*	*	*	*	*	*	108
+       0	*	*	*	*	*	*	1355	0	0	
+
+Q 109  1420	*	*	*	*	*	*	*	*	*	*	*	*	675	*	*	*	*	*	*	109
+       0	*	*	*	*	*	*	1355	0	0	
+
+G 110  *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	110
+       0	*	*	*	*	*	*	1355	0	0	
+
+L 111  *	*	*	*	*	*	*	*	*	540	*	*	*	*	*	*	1680	*	*	*	111
+       0	*	*	*	*	*	*	1355	0	0	
+
+L 112  *	*	*	*	544	*	*	*	*	1670	*	*	*	*	*	*	*	*	*	*	112
+       0	*	*	*	*	*	*	1355	0	0	
+
+K 113  *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	113
+       0	*	*	*	*	*	*	1355	0	0	
+
+D 114  *	*	1670	*	*	*	*	*	*	*	*	*	*	*	*	*	1680	1420	*	*	114
+       0	*	*	*	*	*	*	1355	0	0	
+
+G 115  *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	115
+       0	*	*	*	*	*	*	1355	0	0	
+
+N 116  *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	116
+       0	*	*	*	*	*	*	1355	0	0	
+
+P 117  *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	117
+       0	*	*	*	*	*	*	1355	0	0	
+
+I 118  *	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	118
+       0	*	*	*	*	*	*	1355	0	0	
+
+P 119  544	*	*	*	*	*	*	*	*	*	*	*	1670	*	*	*	*	*	*	*	119
+       0	*	*	*	*	*	*	1355	0	0	
+
+S 120  *	*	1420	*	*	*	*	*	*	*	*	*	*	*	*	1670	1680	*	*	*	120
+       0	*	*	*	*	*	*	1355	0	0	
+
+A 121  0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	121
+       0	*	*	*	*	*	*	1355	0	0	
+
+I 122  *	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	122
+       0	*	*	*	*	*	*	1355	0	0	
+
+A 123  675	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1420	*	*	*	*	123
+       0	*	*	*	*	*	*	1355	0	0	
+
+A 124  675	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1420	*	*	*	*	124
+       0	*	*	*	*	*	*	1355	0	0	
+
+N 125  *	*	*	*	*	*	*	*	*	*	*	675	*	1420	*	*	*	*	*	*	125
+       0	*	*	*	*	*	*	1355	0	0	
+
+S 126  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	126
+       0	*	*	*	*	*	*	1355	0	0	
+
+G 127  *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	127
+       0	*	*	*	*	*	*	1355	0	0	
+
+I 128  *	*	*	*	1420	*	*	675	*	*	*	*	*	*	*	*	*	*	*	*	128
+       0	*	*	*	*	*	*	1355	0	0	
+
+Y 129  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	129
+       0	*	*	0	*	*	*	1355	0	0	
+
+//
+�HHsearch 1.5
+NAME  ec6d5b33f2ae17f54335ee8fce56e790
+FAM   
+FILE  ec6d5b33f2ae17f54335ee8fce56e790
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:34:29 2013
+LENG  83 match states, 83 columns in multiple alignment
+FILT  101 out of 1081 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  6.8 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCEECCCHHHHHHHHCCCEEEEEECCCEEEEEEEEEECCCCEEEEEEEEEEECCCEEEECCEEEEECCEEEEEEC
+>ss_conf PSIPRED confidence values
+97543566536144649999987799899999499599999999868752898438999569818796689994998999969
+>Consensus
+xxxxxmxxxxxxxxxpxxxLxxxxxkxVxVxlxxgxxxxGxLxxxDxxmNlvLxdxxexxxxxxxxxlxxvxIRGxxIxxIxx
+>ec6d5b33f2ae17f54335ee8fce56e790
+GSVIDVSSQRVNVQRPLDALGNSLNSPVIIKLKGDREFRGVLKSFDLHMNLVLNDAEELEDGEVTRRLGTVLIRGDNIVYISP
+>gi|145524719|ref|XP_001448187.1| hypothetical protein [Paramecium tetraurelia strain d4-2]gi|124415720|emb|CAK80790.1| unnamed protein product [Paramecium tetraurelia]
+--------------GYQADLNKYFGKRLKIKLNAKRTIIGTVIGFDIFMNLDKEQKIKIIciqalsnVTDQLVDIGQAIVRGNSIIM---
+>gi|327352187|gb|EGE81044.1| small nuclear ribonucleoprotein Sm D2 [Ajellomyces dermatitidis ATCC 18188]
+-------------SGPLSILQTATRshAQVLISCRNNRKLLARVKAFDRHCNMVLENVKEMWTEkpkggkgkgvNKDRFVSKMYVQTNTCLLA--
+>gi|254567285|ref|XP_002490753.1| Core Sm protein Sm D3 [Pichia pastoris GS115]gi|238030549|emb|CAY68473.1| Core Sm protein Sm D3 [Pichia pastoris GS115]
+-------------SIPVKLLNEAQGHIISAELTSGESYRGKLVESEDSMNIQLKDVTLTAQDGKVSHMEQIFIRGSQIRFFS-
+>gi|15920525|ref|NP_376194.1| hypothetical protein ST0326 [Sulfolobus tokodaii str. 7]gi|342306150|dbj|BAK54239.1| archaeal Sm protein [Sulfolobus tokodaii str. 7]
+----------------ATELNSLLDKAIVVRLINNKIYYGTLSSYElSPFILTLTNAKDN----DNNTYYKVILNGNSITEI--
+>gi|254585839|ref|XP_002498487.1| ZYRO0G11462p [Zygosaccharomyces rouxii]gi|238941381|emb|CAR29554.1| ZYRO0G11462p [Zygosaccharomyces rouxii]
+-----------------PLLKDYLHRRVLVITTAGDCIVATLEGFDKNTNVVISDVVDRCTLRPM--AMAQAVRGSEIVAMG-
+>gi|307105968|gb|EFN54215.1| hypothetical protein CHLNCDRAFT_24936 [Chlorella variabilis]
+--------------LFYSYFKTLVGKEVTVELKNDLAITGTLHSVDQYLNIKLNNIRVVNEQKypHMLSVRACFVRGSVVRYVQ-
+>gi|121710344|ref|XP_001272788.1| LSM domain protein [Aspergillus clavatus NRRL 1]gi|119400938|gb|EAW11362.1| LSM domain protein [Aspergillus clavatus NRRL 1]
+---------------AVRYLESLIGQTLRVHATDTRMFVGTFKCTDAERNIILGNTYEYRFpsssaikdaaaktndgeevvapperrniklDMTSRFIGL
+VVVPSQHITKI--
+>gi|307186087|gb|EFN71819.1| U7 snRNA-associated Sm-like protein LSm10 [Camponotus floridanus]
+----------HFLYNSLSILLKAVEKqRTIIDLRNEASIFGIVEQTDAYMNVVMRDCVFTDPREDSFKFDMFFVQARNIRCV--
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+G 1    *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1000	0	0	
+
+S 2    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	2
+       0	*	*	*	*	*	*	1000	0	0	
+
+V 3    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	3
+       0	*	*	*	*	*	*	1000	0	0	
+
+I 4    *	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	4
+       0	*	*	*	*	*	*	1000	0	0	
+
+D 5    *	*	1000	*	*	*	*	*	*	*	*	1000	*	*	*	*	*	*	*	*	5
+       0	*	*	*	*	*	*	1578	0	0	
+
+V 6    *	*	*	*	*	*	*	*	*	*	127	*	*	*	*	*	*	3569	*	*	6
+       0	*	*	*	*	*	*	3901	0	0	
+
+S 7    1363	*	*	*	*	*	*	*	*	*	*	*	*	*	*	950	3414	*	*	*	7
+       277	2517	*	0	*	*	*	3901	1111	0	
+
+S 8    2466	*	2351	*	*	*	*	*	2508	*	*	3303	*	*	*	3569	2439	3696	*	*	8
+       659	1448	*	305	2393	*	*	3901	1343	0	
+
+Q 9    *	*	*	*	*	4075	*	*	2992	*	*	*	3806	1188	3194	3917	2952	*	*	*	9
+       99	3919	*	1000	1000	*	*	4680	1003	0	
+
+R 10   *	*	*	*	*	3060	*	*	1484	*	*	*	*	*	2131	3915	2133	*	*	*	10
+       370	3013	3291	1585	585	*	*	4785	1235	0	
+
+V 11   2558	4003	4130	*	*	*	3870	*	3388	4145	*	4447	4249	3177	*	4183	3061	4538	*	3981	11
+       0	*	*	0	*	*	0	5080	1000	1104	
+
+N 12   3607	4628	4414	*	4303	*	*	4367	5114	*	2635	3128	*	2994	*	2674	3199	*	*	4787	12
+       0	*	*	*	*	0	*	5542	0	1104	
+
+V 13   4753	*	*	*	*	4986	*	3659	*	3348	5126	3503	3106	3850	3975	4687	2684	2369	*	*	13
+       88	*	4084	*	*	*	*	6094	0	0	
+
+Q 14   *	4622	5553	2522	5594	3545	4347	3761	4116	3629	4361	5677	*	4477	*	3214	3617	3935	*	5132	14
+       54	6088	5502	1000	1000	0	*	6574	1000	1115	
+
+R 15   4179	5838	4446	3396	*	3102	*	3693	4972	3147	*	2577	5738	4829	6402	3428	3575	5802	*	5657	15
+       0	*	*	*	*	0	*	6829	0	1012	
+
+P 16   3677	*	*	*	5235	*	5906	6199	6166	4801	*	5263	708	6058	5559	3805	5006	*	5698	5726	16
+       24	*	5941	*	*	*	*	7026	0	0	
+
+L 17   6331	*	*	4760	5037	*	*	2427	4237	1866	4152	5049	6075	4925	3795	3770	5270	4045	*	4611	17
+       18	6331	*	1000	1000	0	*	7171	1054	1000	
+
+D 18   3533	*	3179	3008	6202	6505	*	4953	3653	6071	*	3822	3553	4168	3773	2750	3961	5833	*	6321	18
+       16	6519	*	0	*	*	*	7396	1000	0	
+
+A 19   4993	*	4392	3746	2429	5683	*	3904	3823	2154	5937	6072	*	6545	6129	4266	5144	3622	*	4026	19
+       0	*	*	*	*	*	*	7520	0	0	
+
+L 20   *	*	*	6535	4294	*	*	3360	*	507	4484	*	*	*	*	*	*	3646	*	6338	20
+       0	*	*	*	*	*	*	7572	0	0	
+
+G 21   4358	*	4546	3145	4890	5212	5072	5812	3294	3564	4289	3660	5569	3365	3116	4359	4698	5332	*	5330	21
+       0	*	*	*	*	*	*	7587	0	0	
+
+N 22   4097	*	4086	3162	*	4270	6744	6418	2782	5325	5557	2642	*	3005	3855	3162	4611	*	*	*	22
+       42	6014	6277	2537	273	*	*	7596	1048	0	
+
+S 23   3206	3716	5811	6316	3147	6318	5690	5528	*	1965	4331	6977	*	*	*	3395	5679	4838	5021	3004	23
+       35	5372	*	1932	438	*	0	7566	1092	1012	
+
+L 24   6276	*	*	5070	6363	6597	*	2282	4234	1957	3882	6546	5870	4743	4675	*	5167	2332	5655	*	24
+       67	4471	*	1000	1000	0	*	7583	1345	1012	
+
+N 25   6749	*	2546	4816	*	1362	5055	6556	5497	6610	*	2398	6542	4352	5063	4969	6579	*	*	*	25
+       52	4813	*	1000	1000	*	*	7620	1210	0	
+
+S 26   5479	5479	6297	3676	*	5512	4128	*	1502	*	6744	4914	*	4897	3322	3281	3632	5421	*	4350	26
+       47	4962	*	406	2027	*	*	7620	1224	0	
+
+P 27   *	*	*	4113	*	*	4988	4611	2327	5673	*	4151	3049	3827	2314	4190	3451	4449	*	6632	27
+       10	7125	*	1000	1000	*	*	7620	1000	0	
+
+V 28   6338	*	*	*	6235	*	5820	2150	*	3456	4516	*	*	*	*	*	3956	944	*	6363	28
+       0	*	*	*	*	*	*	7620	0	0	
+
+I 29   *	4928	5753	4894	7084	*	4332	3708	4007	3037	4755	5293	*	4879	3029	2996	2910	3667	6955	4917	29
+       0	*	*	*	*	*	*	7620	0	0	
+
+I 30   *	4253	*	*	*	5878	*	1706	*	3978	*	*	*	*	*	*	6236	870	*	*	30
+       32	5504	*	1000	1000	*	*	7628	1088	0	
+
+K 31   5937	6560	4251	2027	5653	*	4472	3666	2743	4049	6582	4740	*	5310	4159	5368	3853	4365	4745	6220	31
+       0	*	*	*	*	*	*	7628	0	0	
+
+L 32   4985	5208	*	*	5633	*	*	5305	*	796	3657	*	6285	6518	*	*	2326	7048	*	6636	32
+       15	*	6560	*	*	*	*	7628	0	0	
+
+K 33   5068	6408	4945	*	7113	*	5897	5470	1970	5519	*	3374	*	5132	2228	3606	3561	3510	*	6766	33
+       16	*	6508	1000	1000	0	*	7617	1012	1012	
+
+G 34   4487	*	1669	4409	5538	3762	5105	5717	6553	*	*	1722	*	*	6213	4347	4722	*	5332	6457	34
+       63	4889	6818	2000	415	0	*	7619	1212	1003	
+
+D 35   4890	*	3297	3577	*	1007	*	*	5546	*	*	2575	6279	5565	5293	4856	*	*	*	*	35
+       51	4844	*	659	1447	0	*	7626	1263	1000	
+
+R 36   5114	*	5635	3592	*	6220	5397	5006	3088	4177	5292	4943	*	5212	1751	3528	3295	4747	*	5719	36
+       19	6285	*	1000	1000	*	*	7628	1027	0	
+
+E 37   5263	6699	6792	2349	4975	*	5513	3966	3560	4616	6946	4927	*	4892	5747	4273	2474	2955	*	4017	37
+       10	7141	*	1000	1000	*	*	7628	1000	0	
+
+F 38   4597	5069	*	*	2808	*	6343	2331	*	2173	*	*	*	*	*	6677	5473	3109	*	2286	38
+       0	*	*	*	*	*	*	7628	0	0	
+
+R 39   *	*	6966	2884	5523	*	3942	3286	4113	4265	*	3607	*	3962	2840	3960	3297	3244	*	*	39
+       18	*	6308	*	*	*	*	7628	0	0	
+
+G 40   5423	*	*	6042	*	57	*	*	*	*	*	*	*	*	*	*	*	*	*	*	40
+       0	*	*	*	*	0	*	7591	0	1012	
+
+V 41   6290	*	6883	5628	4598	*	5135	2921	3095	3656	5477	5517	*	4770	3679	4717	1948	3626	*	5435	41
+       0	*	*	*	*	*	*	7628	0	0	
+
+L 42   *	6285	*	*	3882	*	*	3127	*	608	*	*	7284	*	*	6414	5755	3157	*	*	42
+       0	*	*	*	*	*	*	7628	0	0	
+
+K 43   5904	6905	5504	3521	6764	6582	5936	3165	3259	3245	4225	5624	*	4039	3584	4226	4282	2679	*	5087	43
+       0	*	*	*	*	*	*	7628	0	0	
+
+S 44   2215	3541	5748	4671	6556	1978	6606	*	6445	5878	6220	4070	*	5732	5866	2555	4579	7168	*	6675	44
+       0	*	*	*	*	*	*	7628	0	0	
+
+F 45   4906	4624	*	*	1815	*	*	2928	6883	3837	*	6854	*	*	6078	6581	3479	2311	*	3226	45
+       0	*	*	*	*	*	*	7628	0	0	
+
+D 46   *	*	278	3383	*	5878	5589	*	*	*	*	6084	*	*	*	6209	*	6219	*	*	46
+       69	5687	5188	0	*	*	*	7628	1059	0	
+
+L 47   3807	*	3038	3464	*	3661	6610	5637	3043	7320	6413	3759	4004	3103	3655	3573	6994	4517	*	*	47
+       0	*	*	*	*	*	0	7579	0	1129	
+
+H 48   4420	6196	4439	*	2476	6937	3078	*	*	4716	*	3124	6430	4225	4155	5467	4713	6576	5163	2223	48
+       26	5814	*	1000	1000	*	0	7579	1038	1129	
+
+M 49   5545	3761	*	*	3375	4745	*	6682	6534	2816	1374	*	5814	4778	*	4926	4657	4136	4670	*	49
+       0	*	*	*	*	*	0	7579	0	1129	
+
+N 50   *	*	5478	5814	*	6206	*	6430	*	*	*	132	*	*	*	5501	*	*	*	*	50
+       0	*	*	*	*	*	0	7579	0	1129	
+
+L 51   *	5591	*	*	4776	*	*	1937	*	1608	2621	*	*	*	*	*	4915	2664	*	*	51
+       0	*	*	*	*	916	1089	7579	0	1129	
+
+V 52   4820	4680	6371	*	6704	*	5490	2956	4924	3520	5024	6080	*	4808	6330	4547	4213	1236	*	5805	52
+       0	*	*	*	*	0	*	7591	0	1012	
+
+L 53   *	*	6078	*	5139	*	*	3766	5433	431	3384	*	*	*	*	*	*	6614	*	6308	53
+       18	6343	*	1000	1000	*	*	7628	1011	0	
+
+N 54   4442	6454	3283	2346	6833	4293	*	*	2878	6582	*	4775	*	5207	3560	3020	3258	4265	*	6854	54
+       18	6343	*	1585	585	*	*	7628	1011	0	
+
+D 55   6526	6535	1482	3144	*	6341	4808	*	3884	*	*	2188	6300	3909	*	3818	6645	6400	*	*	55
+       0	*	*	*	*	*	0	7600	0	1011	
+
+A 56   1893	2571	5181	5698	6400	6229	*	6839	5370	6404	6447	6355	*	*	*	5797	3247	1802	6373	*	56
+       17	*	6404	*	*	*	0	7600	0	1011	
+
+E 57   *	6597	3528	3404	4575	*	4955	3258	3251	6514	6954	5717	*	4729	4732	3896	2625	2994	6514	4454	57
+       15	*	6630	*	*	*	0	7580	0	1103	
+
+E 58   6516	5469	3844	1158	5562	6238	*	3776	4829	4352	5558	6333	*	4735	4501	*	5463	3722	*	4523	58
+       28	*	5717	*	*	*	0	7570	0	1187	
+
+L 59   *	6885	4677	4045	3958	6791	6623	4360	3926	3828	4730	6243	*	4589	3131	3999	2361	3671	6401	3849	59
+       86	7100	4305	1000	1000	1583	586	7548	1000	1324	
+
+E 60   5036	*	3401	4242	4428	5528	4991	2685	4065	4402	6574	5567	6586	4102	3716	4136	3687	4363	3928	4849	60
+       383	2249	5470	1798	489	1988	419	7523	2580	1598	
+
+D 61   3934	*	2858	3389	6559	5020	5429	6079	2761	5272	5260	4508	4534	5274	3520	4067	3292	5500	*	4706	61
+       295	2437	*	3073	182	1961	428	7498	2331	1603	
+
+G 62   4093	*	2652	3485	*	1929	6492	6220	4172	6402	6467	3615	5333	6023	4890	3373	4412	*	6272	6026	62
+       300	2500	6472	3200	166	2347	316	7528	2223	1429	
+
+E 63   4709	6282	5088	2674	*	2631	5154	5169	3425	6481	4501	3392	5371	3575	5072	4505	3761	5368	6804	6267	63
+       212	2872	*	2081	389	265	2573	7536	1949	1407	
+
+V 64   4917	6183	4080	2432	5075	4123	4019	*	2896	4632	6677	4328	*	3530	4229	3709	4094	6032	6213	5497	64
+       62	5067	6344	692	1392	*	0	7588	1178	1096	
+
+T 65   5248	*	4392	4833	4763	5612	6134	3601	2965	4623	5415	5383	3232	4480	3621	3591	3258	3307	*	*	65
+       14	*	6669	*	*	*	0	7563	0	1189	
+
+R 66   5003	6702	5519	3604	5741	4505	4566	4087	3589	4370	*	4354	6426	*	1941	4108	3995	3316	5811	*	66
+       20	6187	*	1000	1000	892	1117	7565	1007	1271	
+
+R 67   5136	*	5308	3905	4147	5377	3747	4942	2868	4541	*	4373	3880	5482	3702	3296	4033	4403	*	3529	67
+       16	*	6538	*	*	1012	988	7619	0	1076	
+
+L 68   4817	6645	*	4591	3803	6789	6766	2601	5572	1593	4008	6343	6767	*	6878	5136	*	3301	6416	3792	68
+       18	*	6307	*	*	0	*	7610	0	1076	
+
+G 69   4998	*	3572	4732	*	1554	6521	*	5307	6398	6572	4018	2635	4230	4333	3175	*	*	*	6443	69
+       0	*	*	*	*	0	*	7598	0	1011	
+
+T 70   4986	5272	4613	3094	5844	*	6656	5524	3774	2272	3737	4499	*	3774	3665	4074	4065	4304	*	6101	70
+       0	*	*	*	*	*	*	7551	0	0	
+
+V 71   4200	3224	*	6682	5087	*	6739	2389	*	2956	3686	*	*	*	6385	5479	5869	1782	*	4310	71
+       15	6571	*	0	*	*	*	7551	1000	0	
+
+L 72   5844	*	*	*	1629	*	6812	3704	*	2062	3498	6101	*	*	*	4544	5254	2921	*	5060	72
+       0	*	*	*	*	*	*	7551	0	0	
+
+I 73   *	5632	*	*	5659	*	*	1267	*	2117	5663	*	*	*	*	*	*	1765	*	*	73
+       0	*	*	*	*	*	*	7551	0	0	
+
+R 74   *	6452	*	*	*	*	4948	*	2851	*	6351	4148	3527	4956	782	5266	6360	6605	*	*	74
+       0	*	*	*	*	*	*	7550	0	0	
+
+G 75   4984	5296	*	*	*	230	*	*	6360	6518	*	*	*	*	5195	4648	*	*	*	*	75
+       0	*	*	*	*	*	*	7550	0	0	
+
+D 76   4675	6683	2484	3047	*	5576	5212	6644	4210	*	*	2034	6525	6299	4861	2470	4444	6517	*	*	76
+       0	*	*	*	*	*	*	7550	0	0	
+
+N 77   6335	5314	5395	4267	6463	6691	4014	*	5497	5684	5936	1796	6506	3063	5281	2399	3955	5456	*	5333	77
+       19	6222	*	0	*	*	*	7547	1007	0	
+
+I 78   *	*	*	*	*	*	*	1052	6222	4838	6278	*	*	*	*	*	5449	1206	*	*	78
+       0	*	*	*	*	*	*	7547	0	0	
+
+V 79   4825	5495	*	5051	5857	5903	*	3098	3654	3490	6302	6492	*	5632	2581	4012	3951	2047	*	6211	79
+       0	*	*	*	*	*	*	7522	0	0	
+
+Y 80   4986	5510	6289	4233	3152	6454	6787	6503	4854	2426	3333	5787	*	6036	*	3067	4621	4409	6719	2584	80
+       0	*	*	*	*	*	*	7512	0	0	
+
+I 81   6337	5460	*	*	4205	*	*	1185	*	3320	4853	*	*	*	*	*	*	1629	6266	*	81
+       0	*	*	*	*	*	*	7488	0	0	
+
+S 82   5498	5210	*	3548	5334	4476	4338	3241	4454	5548	*	*	*	3154	2934	2388	3060	5699	*	*	82
+       0	*	*	*	*	*	*	6533	0	0	
+
+P 83   4048	*	*	4033	*	*	*	*	3590	3881	*	*	726	*	*	4135	3917	*	*	*	83
+       0	*	*	0	*	*	*	4687	0	0	
+
+//
+�HHsearch 1.5
+NAME  ee520d2fc85e5b54c5cab5b1125d8c3b
+FAM   
+FILE  ee520d2fc85e5b54c5cab5b1125d8c3b
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:18:01 2013
+LENG  249 match states, 249 columns in multiple alignment
+FILT  126 out of 1136 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  8.1 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CHHHHHHHHHHCCCEEEEECCCCCHHHCCCCCCCCCCHHHCCCHHHHCCHHHHHCCHHHHHHHHHHHHHHHHHCCCCHHHHHHHHHHHHCCCEEEEEECC
+CHHHHHCCCCCEEEECCCCCEEEECCCCCCCCHHHHHCCCCCCCCCCCCCCCCCCEEECCCCCCHHHHHHHHHHHHCCCEEEEECCCCCHHHHHHHHHHH
+HHCCCEEEEECCCCCCCCCCCEEEEECCHHHHHHHHHHHHHHHCCCCCC
+>ss_conf PSIPRED confidence values
+9689999998599889998876145328997678872444169998707886750999999999999988602799999999999997099659998430
+2266664887679944750001876789763368874267798773467756675887689799999999999985499999989997657699999999
+8679869998699878885420999488999999999999764185159
+>Consensus
+xxxxxxxxlxxaxxivixxGAGiSxxsGipxfrxxxxxxxxxxxxxxxxxxxxxxxpxxxxxxxxxxxxxxxxxxPnxxHxxLxxLxxxxxxxxviTqNi
+DxLxxxAGxxxvxelHGxxxxxxCxxCxxxxxxxxxxxxxxxpxCxxCggxlrpxvvxfgexxxxxxxxxaxxxxxxxdlxlvlGtslxvxpxxxlxxxx
+xxxxxxxixiNxxxxxxxxxxxxxixxxxxxxlxxlxxxxxxxxxxxxx
+>ee520d2fc85e5b54c5cab5b1125d8c3b
+MDEKLLKTIAESKYLVALTGAGVAAESGIPTFRGKDGLWNRYRPEELANPQAFAKDPEKVWKWYAWRMEKVFNAQPNKAHQAFAELERLGVLKCLITQNV
+DDLHERAGSRNVIHLHGSLRVVRCTSCNNSFEVESAPKIPPLPKCDKCGSLLRPGVVWFGEMLPPDVLDRAMREVERADVIIVAGTSAVVQPAASLPLIV
+KQRGGAIIEINPDETPLTPIADYSLRGKAGEVMDELVRHVRKALSLKLN
+>gi|306827305|ref|ZP_07460592.1| SIR2 family protein [Streptococcus pyogenes ATCC 10782]gi|304430452|gb|EFM33474.1| SIR2 family protein [Streptococcus pyogenes ATCC 10782]
+--EQLAQLIKEADTLVVGIGAGMSAADGFTYIgprfETAfPDFIAKYQFLDMLQASLFdFEDWQEYWAFQSRFVALNYlDQPVGQSYLDLKEILETK-DY
+HIITTNADNAFWVAgYdPHNIFHIQGEYGLWQCSQhCHqQTYKDDTVIRqmiaeqknmkvPGqLIPHCPECEAPFEINKRNEEKgMVEDADFHAQKARYE
+aflsehkeGKVLYLEIGvghtTpQFIKHPFWKRVSE--NPNALFVTLNHKHYRIPLsirRQSLELTEHIAQLISATKTIY---------
+>gi|259485388|tpe|CBF82370.1| TPA: conserved hypothetical protein [Aspergillus nidulans FGSC A4]
+--KTARSWLEQADYLIISAGAGLSAATGL-DYTSTD-LFANYfpaflplGLRRLYDVFGFSgwKSPAQKWGYYFHHLNMVKTWPKSPLYASLLEITSrFG
+PRCFVRTSNADGLFLANGfhPSRISTPQGQYAYLQCFaKCKReaVFPSAPFLtaalpfldsqtqlltDESKIPRCRYCSGELTLCVRggdYFNDSPFqgQ
+ErEYArfleHVSSEIeqGRSAVILELGVGMNTpsvlrWHNEELVEES-NGGSRLIRAGFDAAGcvpWRlaeEGVAVGVAGELNAVVDLLRG---------
+--
+>gi|71279737|ref|YP_269579.1| hypothetical protein CPS_2874 [Colwellia psychrerythraea 34H]gi|71145477|gb|AAZ25950.1| putative membrane protein [Colwellia psychrerythraea 34H]
+-----------AKQCVAITGSGIRKG-TLPDY--PSGQWLDPkVPItsyTLAEFKASKRCRYLYWKASYDYYQQALTINKNNIDEQLDYLLNHY-LSGLF
+TETVDSLFNTE-QHPVYECYGSIKRLYCLDCAKQQAWPPIPLwSQRDLHCQHCSGLLKPQILAADENIDSECYQALQKNMMECGCLLVIGVPTITPVVSM
+IIENANANKIPIIFIGTIPFGYfVEEKDVQLTGDIAHWLAEING-----------
+>gi|290978128|ref|XP_002671788.1| Sir2 NAD-dependent protein deacetylase [Naegleria gruberi]gi|284085360|gb|EFC39044.1| Sir2 NAD-dependent protein deacetylase [Naegleria gruberi]
+--EKAAQLIYNSKYLLITCGAGFSKDSGLAVYKDIasNPIYQEknLTYHDLARPVStFETEQEllDYYGFWVNCAQSYLNTPSHSGYQILKDWKQLlysk
+keiqkefnekqieilsasqwwkenckiASNMFIYSSNVDNHFSRYFeKEEIYNIHGHALNWQCGNhCNEDCVWNFtkqLQniiiNqetlqidneKLKELK
+CEKCQHASMPNVLMFGDLGQyirnteEEdryiAWECSVETFSKesstkfPFIILELGCGLTVPSVRRENECVLldCDESYLIRVNLGQEELDTihnvdli
+pmknDRILNIKNGCQDALHRIHQHLLK-------
+>gi|125973113|ref|YP_001037023.1| hypothetical protein Cthe_0595 [Clostridium thermocellum ATCC 27405]gi|256003907|ref|ZP_05428893.1| hypothetical protein ClothDRAFT_3012 [Clostridium thermocellum DSM 2360]gi|281417305|ref|ZP_06248325.1| hypothetical protein Cther_1977 [Clostridium thermocellum JW20]gi|125713338|gb|ABN51830.1| hypothetical protein Cthe_0595 [Clostridium thermocellum ATCC 27405]gi|255992035|gb|EEU02131.1| hypothetical protein ClothDRAFT_3012 [Clostridium thermocellum DSM 2360]gi|281408707|gb|EFB38965.1| hypothetical protein Cther_1977 [Clostridium thermocellum JW20]gi|316940661|gb|ADU74695.1| hypothetical protein Clo1313_1634 [Clostridium thermocellum DSM 1313]
+-------------------------------------------------------------------------TYSKEVEKLIRFFIEnrl--EYTGFLV
+LNWDTVLEKYisaiapkaiidycnggryltedlrfeekrdgkRKVEILKVHGSCNWLYCDNCRilindtvsrvpnirkvgfkksdfklfdemkkvtdkvf
+f------------EDVRCFICGDIVSAHIAtqsyrkSFRTNsFP-SIWDKAEDMLTNSEKWVFIGYSLPQadYEFKHLLKicehk---lghkkDRRlsid
+----VVlfd--SETTAM-------------------------------
+>gi|37526595|ref|NP_929939.1| hypothetical protein plu2704 [Photorhabdus luminescens subsp. laumondii TTO1]gi|36786027|emb|CAE15078.1| unnamed protein product [Photorhabdus luminescens subsp. laumondii TTO1]
+-----------QGHVVFFCGAGISLAkAKLPNFFQLaQKVIDLLGTTNdSQARQLYDFlnkglkdkegnevalpsyaStlisTDRIfslleqeFETNLIE
+KTVAQVlkpsdTVDTSAHKLLLDLATTseG-RVQLITTNFDRLFNDCSlTeipcflppnlpdlskneliDGLVYLHGR--snsdY---------------
+----------------------------------------------------------------------------------------------------
+-------------
+>gi|333913474|ref|YP_004487206.1| hypothetical protein DelCs14_1828 [Delftia sp. Cs1-4]gi|333743674|gb|AEF88851.1| hypothetical protein DelCs14_1828 [Delftia sp. Cs1-4]
+---------------MWFLGAGASAAAGIPTagdmiweFKqklfvSQRraspemvadlsaPSVRQ-HLQSHIDSTSsLpaEGAPNEYSVIFEkvfpaeaD
+RRAYldakLSGAKPSYGHMALAALMKADHTRIVWTTNFDPLVADAcakvfdgtGALTSVAFGVgPEIARKAMA---------------------------
+------------------------------------------------------------------------------------------------
+>gi|69245855|ref|ZP_00603672.1| conserved hypothetical protein [Enterococcus faecium DO]gi|257882009|ref|ZP_05661662.1| conserved hypothetical protein [Enterococcus faecium 1,231,502]gi|258615570|ref|ZP_05713340.1| hypothetical protein EfaeD_07652 [Enterococcus faecium DO]gi|293563462|ref|ZP_06677910.1| USG protein [Enterococcus faecium E1162]gi|294620826|ref|ZP_06700030.1| USG protein [Enterococcus faecium U0317]gi|314947730|ref|ZP_07851137.1| conserved hypothetical protein [Enterococcus faecium TX0082]gi|68195557|gb|EAN09999.1| conserved hypothetical protein [Enterococcus faecium DO]gi|257817667|gb|EEV44995.1| conserved hypothetical protein [Enterococcus faecium 1,231,502]gi|291599611|gb|EFF30624.1| USG protein [Enterococcus faecium U0317]gi|291604464|gb|EFF33950.1| USG protein [Enterococcus faecium E1162]gi|313645710|gb|EFS10290.1| conserved hypothetical protein [Enterococcus faecium TX0082]
+------------GNAAIFAGAGLSMSQGYVSWPELlNDPATEigLDSkkeTDLVTLAQYYKNenggsRGILNQILMDN--FGEELEISENHRILASL---
+-PIETYWTTNYDHLIEKSIreayknpqvkknytqlattnpnvDTIVYKMHGDIDDVS-------------------------------------------
+-----------------------------------------------------------------------------------
+>gi|84686801|ref|ZP_01014688.1| hypothetical protein 1099457000266_RB2654_22528 [Maritimibacter alkaliphilus HTCC2654]gi|84665232|gb|EAQ11711.1| hypothetical protein RB2654_22528 [Rhodobacterales bacterium HTCC2654]
+-------------------------------mvkFKwclendrSIDdptvtraSYWPWLLKQHWFDQdknlaDLYpsavkhllnvSEDRRQ---FFKALI
+--NPAVDPREGYLGLAEILHQRWVTTILTTNFDECLQKAKNmvgrphqitsiktasdlvmfsssprdPQLIYLHGSVDHYT-------------------
+----------------------------------------------------------------------------------------------------
+-------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	*	*	567	*	*	*	*	*	*	1621	*	*	1
+       0	*	*	*	*	*	*	2162	0	0	
+
+D 2    *	*	1032	*	*	*	*	*	*	1908	*	*	2032	*	*	*	*	*	*	*	2
+       0	*	*	*	*	*	*	2820	0	0	
+
+E 3    3555	*	3071	1774	*	4619	*	*	3005	*	5279	5287	*	5341	2812	3802	5148	5648	*	*	3
+       98	3928	*	1962	428	*	*	6895	1187	0	
+
+K 4    4424	*	3096	3319	6028	*	6096	5883	2296	*	*	5128	6045	2643	2503	5858	3765	6085	*	*	4
+       44	6045	6085	2018	409	*	*	7368	1078	0	
+
+L 5    2014	6342	*	5961	3748	6349	*	3734	*	1233	*	*	*	*	*	*	6017	3307	*	5637	5
+       0	*	*	*	*	*	0	7471	0	1000	
+
+L 6    1847	*	4904	5080	*	6286	6242	3303	3186	3522	4463	*	*	4432	3143	*	5965	3324	*	6165	6
+       0	*	*	*	*	*	0	7545	0	1000	
+
+K 7    4639	6236	2909	1799	*	5008	5318	*	3570	5981	*	4184	*	3313	3623	3651	4605	6333	*	*	7
+       23	*	5992	1585	585	*	0	7577	1000	1000	
+
+T 8    3481	6582	*	6133	4127	*	6624	3427	4119	1777	3459	*	*	4371	5151	5589	4754	4750	3136	*	8
+       45	5020	*	2864	213	873	1140	7612	1257	1109	
+
+I 9    5155	4928	*	*	4875	*	6555	1527	6283	1080	6562	*	*	*	*	*	*	4292	*	*	9
+       0	*	*	*	*	*	0	7556	0	1000	
+
+A 10   3123	*	4130	3123	*	6035	5238	*	2177	3942	*	4122	*	3117	2686	*	4885	*	*	5421	10
+       15	6554	*	1338	727	0	*	7574	1079	1000	
+
+E 11   4239	*	3614	2252	*	4573	*	6983	3400	6674	*	3178	6313	2927	3393	3876	3810	*	*	6410	11
+       78	5249	5260	1392	692	*	*	7569	1150	0	
+
+S 12   1226	5352	5376	*	*	4586	4417	5203	4727	*	*	5146	4960	4648	6982	1999	*	*	*	6345	12
+       106	3824	*	2084	388	0	*	7640	1503	1127	
+
+K 13   6605	*	2170	3297	*	3115	4954	*	2179	*	*	4071	4396	3984	3575	5734	5360	*	*	*	13
+       35	5385	*	1367	708	*	*	7876	1190	0	
+
+Y 14   2952	4464	6727	4964	5280	5984	3622	*	2966	4489	*	2676	6793	3956	2980	4822	4773	6468	*	4353	14
+       10	7155	*	1000	1000	*	*	7892	1000	0	
+
+L 15   4023	4800	*	*	4554	6476	*	1983	*	1983	6207	*	5223	*	*	*	3530	2211	*	*	15
+       12	*	6923	*	*	*	*	7898	0	0	
+
+V 16   3843	6103	*	*	6100	6368	*	2787	*	2008	4988	*	*	*	*	6073	4698	1342	*	5944	16
+       0	*	*	0	*	0	*	7922	1000	1000	
+
+A 17   3255	5270	*	*	3040	*	*	1778	*	3036	6105	*	*	*	*	*	*	1868	4453	*	17
+       0	*	*	*	*	*	*	7940	0	0	
+
+L 18   5269	*	*	6412	2105	2815	4611	2833	*	1898	6607	*	*	*	*	4891	4806	4301	*	7011	18
+       8	*	7452	*	*	*	*	7940	0	0	
+
+T 19   2397	4117	*	*	*	4628	*	3517	*	3377	*	*	*	*	*	3092	1495	4149	*	*	19
+       0	*	*	0	*	0	*	7939	1000	1000	
+
+G 20   5315	*	*	*	*	120	*	*	*	*	*	*	*	*	*	4192	*	*	*	*	20
+       0	*	*	*	*	*	*	7940	0	0	
+
+A 21   426	6412	*	*	*	6511	*	*	5899	*	*	3551	5207	*	6063	3651	6758	*	*	*	21
+       0	*	*	*	*	*	*	7940	0	0	
+
+G 22   5899	*	*	5042	*	108	*	*	*	*	*	*	*	*	6660	*	6036	*	*	*	22
+       0	*	*	*	*	*	*	7940	0	0	
+
+V 23   4294	5299	*	*	4419	*	*	1624	*	1769	3283	*	*	*	*	*	4374	3210	*	*	23
+       0	*	*	*	*	*	*	7940	0	0	
+
+A 24   4385	*	6307	*	*	6180	*	*	*	6893	*	*	*	*	5136	265	5203	6141	*	6021	24
+       0	*	*	*	*	*	*	7940	0	0	
+
+A 25   1746	*	*	*	6791	*	7042	3952	3837	5322	4500	6248	*	4751	5595	5337	2318	2501	*	6870	25
+       15	6572	*	1000	1000	*	*	7940	1000	0	
+
+E 26   1838	6476	3035	2528	*	4109	7452	*	6572	7134	6304	5400	4324	5352	*	2363	5201	*	*	*	26
+       35	6530	6213	0	*	*	*	7940	1000	0	
+
+S 27   2005	5610	5266	4041	*	4776	*	*	*	7191	*	*	*	5212	6010	1011	5011	5024	*	*	27
+       54	*	4763	*	*	0	*	7902	0	1026	
+
+G 28   *	*	6099	*	*	154	*	*	5616	*	*	4807	*	*	*	*	6111	5959	*	*	28
+       0	*	*	*	*	694	1388	7845	0	1305	
+
+I 29   7116	5864	*	*	4491	6328	*	1243	*	1606	5167	*	*	*	*	*	*	3568	*	4165	29
+       39	*	5243	*	*	*	0	7896	0	1050	
+
+P 30   5002	*	4167	*	*	*	6472	5942	6733	*	6107	3342	653	6881	5769	4375	5622	4984	*	*	30
+       102	5039	4727	2310	325	340	2253	7864	1355	1367	
+
+T 31   4689	6911	1518	5947	4813	*	6560	5257	5888	4347	6244	4536	5593	*	*	4696	1889	5215	6224	5427	31
+       173	3228	7316	2405	302	382	2103	7876	1993	1321	
+
+F 32   6727	*	*	*	891	6481	*	5361	*	4429	4996	*	*	*	*	6716	*	7006	3499	2107	32
+       163	3635	5239	2391	305	1013	987	7947	1805	1091	
+
+R 33   4154	*	6552	3321	6485	6664	6392	*	3210	*	6464	5003	6636	6665	996	4122	4387	6446	6427	*	33
+       106	3960	7182	2504	280	*	0	7914	1569	1306	
+
+G 34   5415	*	3005	3227	*	2025	6415	*	3347	5757	*	5312	*	4442	6383	2080	4548	*	*	6864	34
+       0	*	*	2322	322	620	1517	7919	1000	1405	
+
+K 35   3184	6653	3813	3907	*	6200	5625	4738	4261	2719	5096	4422	2874	4068	5762	3497	4635	5408	*	5369	35
+       565	1674	6564	926	1078	0	*	7954	3691	1073	
+
+D 36   5695	*	2507	3899	5880	2362	4595	*	4408	*	*	2564	6601	3749	3894	3770	5981	5623	*	7114	36
+       345	2299	6683	2417	299	0	*	7930	3010	1095	
+
+G 37   4165	*	2473	3586	*	1350	*	*	5132	6830	*	*	3236	5223	7109	4459	7088	5518	*	4772	37
+       48	5248	7346	2617	257	956	1046	7940	1194	1099	
+
+L 38   4837	*	5716	5811	2991	*	6067	2488	6014	1969	5432	6935	6653	6218	5364	5250	4918	2839	7128	4235	38
+       29	7113	6270	0	*	*	0	7942	1006	1091	
+
+W 39   3740	*	*	5891	4100	6507	*	3862	5662	4549	5444	7116	6955	6289	4889	4953	*	3973	1674	2227	39
+       0	*	*	1585	585	1729	518	7916	1000	1224	
+
+N 40   3439	*	3343	3139	6964	5887	*	5764	2752	4861	6752	3993	5792	3421	3246	3649	3422	7016	*	*	40
+       160	3975	4604	1980	422	1237	796	7918	1733	1124	
+
+R 41   4148	*	3644	3249	6398	4126	*	5485	2346	4875	*	3253	*	3915	2546	6132	5152	5476	5112	*	41
+       366	2873	3514	2027	406	1543	606	7894	2275	1529	
+
+Y 42   5006	*	*	5869	3141	*	4543	4486	5912	2878	5754	5756	4592	5798	4556	5134	5132	4217	*	1521	42
+       344	2348	6000	2935	202	350	2215	7812	3019	2203	
+
+R 43   4745	*	2414	4645	7027	2604	4371	5893	4352	6840	*	3557	4218	3821	3971	3404	4860	5096	*	6853	43
+       97	4192	6609	1003	997	1775	499	7883	1578	1343	
+
+P 44   3307	5910	5403	6486	3472	5944	6664	3703	4724	3297	4723	5551	2003	6906	6563	5067	4155	3830	*	5006	44
+       133	4274	4786	2121	377	1584	586	7910	1425	1414	
+
+E 45   4371	*	4157	2505	5269	*	4208	3682	3300	4816	5858	4560	6375	3860	3166	3613	4385	5225	7175	6749	45
+       85	4573	6047	1179	841	1129	882	7916	1321	1725	
+
+E 46   3600	*	2501	2562	*	5033	6861	6960	3983	5158	6080	3957	5749	4737	4128	3326	3200	6776	*	5446	46
+       129	3869	5875	2179	360	2885	210	7886	1724	1606	
+
+L 47   4297	*	*	*	3699	7005	5414	2512	6750	2061	3285	*	5920	5657	5819	4602	5289	3019	5224	4539	47
+       22	7321	6764	0	*	2438	294	7868	1000	1717	
+
+A 48   2576	4823	6127	5221	2309	5204	6796	4092	4889	2496	5572	6763	*	5324	5977	4266	5024	4622	6429	4561	48
+       58	5733	5610	2000	415	2090	386	7900	1076	1769	
+
+N 49   3779	*	2557	2343	*	*	7112	5643	5379	6223	*	3518	*	3734	5679	2686	2750	*	*	6722	49
+       51	6631	5332	2807	222	2980	196	7883	1000	1757	
+
+P 50   2951	*	5733	6049	3835	2940	5423	4039	6094	3948	5576	6717	2715	6851	3636	3709	4398	4756	7313	4890	50
+       58	5119	6512	1916	444	*	0	7840	1225	1894	
+
+Q 51   3722	6423	3054	4061	4518	5785	5104	5722	3681	4601	4167	5385	5160	4217	4769	3234	3266	3711	6872	6641	51
+       55	6292	5357	2000	415	1785	494	7820	1000	1997	
+
+A 52   3028	5716	5371	6369	2633	3362	7257	*	*	3442	4599	5420	*	4224	4546	3364	3881	4911	4686	3899	52
+       155	3837	4963	285	2479	1981	422	7851	1595	1981	
+
+F 53   *	*	5777	7045	1320	6991	5344	6252	6201	2903	4513	*	5719	6550	5476	5433	5467	4512	5036	2602	53
+       523	1838	5359	1289	760	297	2427	7838	3339	2003	
+
+A 54   4534	*	4808	3478	3874	6909	5003	6195	3575	4008	*	4113	4893	3823	3011	3741	4764	4314	5611	3390	54
+       57	4679	*	2718	238	1757	506	7882	1369	1355	
+
+K 55   4326	*	4056	2691	6532	4134	4610	6500	3664	5661	6290	4196	4563	4601	2703	4092	3170	5767	5365	*	55
+       55	4751	*	3027	189	*	0	7910	1268	1219	
+
+D 56   4218	5337	1977	4459	5877	6506	4510	5898	4768	6349	*	2651	*	4292	3872	3544	3519	6441	*	5543	56
+       145	3541	6678	1353	717	*	0	7910	1803	1219	
+
+P 57   4905	*	*	4108	6871	6984	*	5989	3814	4068	6824	*	1107	5333	2985	4925	4549	*	5418	5486	57
+       38	5778	6984	2551	270	1000	1000	7906	1157	1320	
+
+E 58   3175	*	3320	1907	*	4686	7041	6785	3278	5290	6973	4777	6910	3752	3798	5341	4115	5115	7346	5494	58
+       94	5219	4796	5233	39	*	0	7925	1229	1215	
+
+K 59   5252	*	4738	2217	6359	6308	6801	4596	3773	2954	5421	6012	4624	3379	3765	3946	6100	3703	*	4693	59
+       57	6246	5303	0	*	3445	139	7926	1029	1739	
+
+V 60   4317	5382	*	*	2279	*	6202	4125	3556	3879	6816	6804	*	4332	6485	6249	5359	2781	6713	2153	60
+       48	5431	6683	2343	317	3483	135	7875	1204	1970	
+
+W 61   4787	*	*	6905	3832	6615	4356	6435	6833	4070	7120	5030	*	6842	6445	5315	5655	5243	1236	2378	61
+       0	*	*	*	*	3693	116	7871	0	1958	
+
+K 62   2332	*	4350	2581	*	3022	5709	*	3331	6289	5394	4039	*	3426	4783	3980	4978	5522	*	*	62
+       28	6577	6795	2322	322	2141	371	7866	1000	1880	
+
+W 63   4472	7002	*	5679	1545	*	7343	4404	5047	4056	4294	*	*	5689	3744	6896	6457	3934	3790	2850	63
+       10	*	7128	*	*	*	0	7893	0	1771	
+
+Y 64   4288	5997	5618	5718	2410	6715	4650	4611	7025	3442	4695	5678	*	5424	*	4488	5488	5160	3340	2055	64
+       47	6678	5496	2585	263	3151	172	7878	1000	1876	
+
+A 65   2896	7034	6527	2734	5784	4330	6033	5698	3341	4250	6603	4237	*	*	2667	3265	4855	4402	6070	5521	65
+       103	4164	6252	2670	247	2038	403	7893	1421	2013	
+
+W 66   3854	*	3007	3035	6647	5596	5398	4340	3209	5967	6744	4246	6907	3961	2789	4300	4977	5594	4730	4780	66
+       41	7033	5637	0	*	3642	120	7886	1000	1932	
+
+R 67   5427	6522	5864	3598	4069	4961	4914	3560	4772	2555	4260	4899	*	5666	2061	6237	6414	6505	7020	4037	67
+       150	3856	5082	1872	460	913	1092	7894	1829	2117	
+
+M 68   3839	*	*	5589	3649	7219	5826	2429	4752	2852	5270	*	6831	5409	2408	4626	5346	4459	5404	3984	68
+       233	5084	3064	2121	377	2175	361	7849	1174	1758	
+
+E 69   3612	6155	3426	3579	*	5927	4250	5867	3220	4181	6596	3888	4350	3239	3110	4803	4655	7040	6760	4724	69
+       58	4655	*	1606	575	372	2136	7646	1363	2771	
+
+K 70   4761	6473	4352	4164	3832	4468	*	5215	5755	2564	4322	3653	5415	4476	4277	4524	3828	4664	6444	3280	70
+       361	2398	4985	1215	813	761	1287	7878	2743	1485	
+
+V 71   3738	4046	6998	7077	3866	4775	6847	2801	4849	3144	4558	4663	5119	5318	4437	6904	3426	3750	6278	3763	71
+       41	5589	7077	327	2303	679	1413	7855	1228	1533	
+
+F 72   4204	*	4898	3877	3827	5019	5323	4107	4235	3065	*	4582	3923	3739	3408	3682	4742	5930	5471	4150	72
+       121	3639	*	426	1967	714	1357	7922	1750	1233	
+
+N 73   4619	*	2657	2951	7451	3661	4816	5880	3374	4692	6448	3376	6053	4769	3591	4099	4480	5088	*	5383	73
+       58	4669	*	2162	365	*	0	7891	1322	1151	
+
+A 74   1507	5137	7483	5556	5779	4972	6991	4552	3452	3805	6442	5872	5848	5161	6624	4913	3809	3876	4996	4591	74
+       9	7337	*	0	*	0	*	8900	1000	1151	
+
+Q 75   4361	*	6705	2516	6072	6367	5732	6684	1983	4473	*	5030	3326	3555	4237	4331	4780	4894	*	5302	75
+       0	*	*	*	*	*	*	8934	0	0	
+
+P 76   4548	*	5965	5712	7399	6454	*	4551	5591	5836	*	*	520	6432	*	5344	5003	4468	*	6137	76
+       0	*	*	*	*	*	*	8934	0	0	
+
+N 77   5435	7168	5396	*	*	3925	4224	6521	6083	6539	6562	1414	5013	*	5326	2417	2689	*	*	7310	77
+       52	4828	*	1545	606	*	*	8944	1270	0	
+
+K 78   2961	*	4282	3038	5861	*	6068	5422	3646	3759	*	4766	2591	4429	3406	4586	5150	5407	6014	4762	78
+       33	6609	6310	1000	1000	*	*	8944	1017	0	
+
+A 79   1936	*	6525	6431	5273	2386	7117	4128	*	3686	*	5805	5077	6430	*	4138	2984	3236	6863	*	79
+       16	6525	*	1000	1000	782	1256	8938	1004	1132	
+
+H 80   6633	*	6413	6731	4118	*	657	*	6530	6556	3863	5494	*	*	*	*	6434	6730	*	2800	80
+       0	*	*	*	*	*	0	8943	0	1000	
+
+Q 81   4970	6776	*	3180	5641	6447	4753	3800	2971	3011	4344	7151	*	3667	2688	6110	7146	5908	5739	3190	81
+       0	*	*	*	*	*	0	8943	0	1000	
+
+A 82   1598	*	4149	4867	3592	5352	6795	3460	4250	3467	6159	4776	5756	4607	6426	4426	*	4889	5612	7309	82
+       9	*	7374	*	*	*	0	9059	0	1000	
+
+F 83   6557	*	*	*	4199	*	*	1852	*	781	5962	*	*	7199	*	*	6638	4952	*	6525	83
+       29	*	5649	*	*	*	0	9055	0	1091	
+
+A 84   1636	*	5029	5057	5175	5045	6414	*	2969	3508	5169	4850	6728	5431	3589	3836	6279	4208	*	5872	84
+       23	*	5961	0	*	1746	511	9007	1024	1334	
+
+E 85   2781	*	3464	2658	5753	6836	7403	*	3377	4447	7054	4158	*	3395	3146	3668	4549	7207	6840	5530	85
+       42	5482	7363	1175	844	1375	702	8979	1223	1425	
+
+L 86   6100	*	*	*	4361	*	6440	2953	*	767	3997	*	*	*	6234	*	*	5663	3432	5636	86
+       81	6891	4444	2229	346	1975	423	9045	1082	1335	
+
+E 87   3454	6778	5224	2525	6645	5979	5228	3621	4522	2654	4747	5704	*	3374	5730	5140	5869	3213	*	4725	87
+       110	5399	4336	0	*	2376	309	8794	1222	1849	
+
+R 88   4256	6531	3329	2991	*	4134	4426	6347	2235	5994	*	4117	5825	3145	4130	4065	3997	*	*	*	88
+       121	3917	6123	1126	884	1846	470	8772	1897	2218	
+
+L 89   3266	6528	3398	3796	6037	4467	5503	*	2982	3983	5909	4386	7173	3028	3290	3538	4193	*	*	6783	89
+       131	4056	5226	2879	211	2787	226	8825	1716	2194	
+
+G 90   5341	5667	4532	4902	5878	1513	7319	*	2694	5700	5518	3433	6794	5975	4403	5024	5541	4933	7173	4239	90
+       590	3659	1964	339	2257	1478	642	8810	1777	2330	
+
+V 91   6418	*	6661	5548	6773	4156	5145	4435	2297	3329	*	*	3154	4263	2950	4130	5356	4669	5500	3688	91
+       164	3359	6620	2335	319	143	3405	8412	1917	4213	
+
+L 92   *	*	2922	4073	7064	4415	*	2714	5222	2312	*	3794	4598	5600	4244	4253	4527	3622	*	6682	92
+       33	6817	6197	476	1832	1218	810	9040	1149	1379	
+
+K 93   4155	5390	4829	5482	4582	5402	5067	6072	3023	3413	6767	*	4718	4513	3694	4436	3703	3140	*	2934	93
+       9	7266	*	0	*	2369	310	9034	1018	1379	
+
+C 94   5475	5922	7208	*	2066	3689	4156	4680	5964	3795	5719	5944	6086	5609	2651	4823	3091	4898	6262	5278	94
+       0	*	*	*	*	1787	494	9031	0	1286	
+
+L 95   5141	5358	*	7217	4963	*	5114	1800	*	2874	7000	5319	*	*	*	*	6445	1343	*	5848	95
+       0	*	*	*	*	*	0	9030	0	1173	
+
+I 96   5214	*	*	6476	4436	*	6816	1764	6830	2430	5792	*	*	*	6787	*	*	2108	4061	3337	96
+       0	*	*	*	*	*	0	9030	0	1173	
+
+T 97   6582	*	*	*	*	*	*	6445	*	*	*	5580	*	*	*	3681	215	6703	*	6956	97
+       0	*	*	*	*	*	0	9030	0	1173	
+
+Q 98   *	6416	*	5433	6015	*	*	*	6762	3961	6347	6832	*	1324	5511	3017	1688	*	*	*	98
+       0	*	*	*	*	*	0	9030	0	1173	
+
+N 99   6530	*	*	*	*	6956	*	*	*	*	*	155	*	*	6601	4523	5466	7215	*	*	99
+       0	*	*	*	*	764	1282	9030	0	1173	
+
+V 100  4672	*	5765	*	2742	6818	*	1637	*	5506	*	*	6550	5691	6407	6962	4806	1851	5836	4054	100
+       20	*	6181	*	*	*	0	9053	0	1007	
+
+D 101  *	*	124	5017	6424	6526	*	*	*	*	*	5741	*	*	*	*	*	*	*	6594	101
+       14	*	6684	*	*	*	0	9029	0	1272	
+
+D 102  5052	5381	3320	5279	*	1674	3667	7265	5673	6899	6810	2997	6165	4636	4606	3630	4020	6826	*	6290	102
+       0	*	*	1000	1000	1230	802	9009	1000	1394	
+
+L 103  6110	5431	*	*	4396	*	3801	6909	*	584	5028	*	*	3993	6454	6377	*	4819	*	6021	103
+       0	*	*	*	*	*	0	9018	0	1182	
+
+H 104  5177	*	4782	3816	2094	*	1835	3931	*	2773	7578	6347	5556	7427	*	4893	*	4434	*	6148	104
+       0	*	*	*	*	*	0	9018	0	1182	
+
+E 105  3910	6882	5756	1836	5514	5625	4151	6080	6237	4175	6454	4946	6148	3108	3781	4071	4551	4245	5275	5862	105
+       33	*	5484	*	*	*	0	9018	0	1182	
+
+R 106  4484	*	3997	4377	*	6977	6617	5677	2223	3866	7253	5061	6753	3864	1885	4352	4358	4603	*	*	106
+       77	4610	6491	3072	183	2230	346	8924	1473	1506	
+
+A 107  785	4882	*	5020	*	4893	*	6864	*	4636	*	4625	*	6861	*	3274	4834	4472	*	4643	107
+       178	3372	5686	3517	132	961	1041	8934	2319	1514	
+
+G 108  4430	6343	*	*	3360	591	5702	5753	6723	5246	*	6829	5199	*	5765	5378	*	6506	*	5879	108
+       1016	984	*	2244	342	552	1654	8896	5435	1408	
+
+S 109  3411	5042	4724	3310	6669	5986	6856	*	3206	4439	4719	4219	3619	4192	4465	2671	4074	5573	6818	5107	109
+       157	3274	*	4373	71	0	*	8875	2067	1057	
+
+R 110  4630	7272	3260	2548	*	5546	4957	*	2977	4396	6420	3752	3845	4565	3756	3401	4064	5912	*	7193	110
+       44	5336	7528	1197	827	*	*	8957	1201	0	
+
+N 111  5248	*	3565	3751	5461	4477	3997	6915	2284	5731	*	3428	4873	3997	2764	4404	5302	4853	*	6948	111
+       20	*	6159	*	*	0	*	8894	0	1007	
+
+V 112  6557	5369	*	*	6797	*	*	2068	*	2412	6145	*	*	*	*	6176	3496	1307	*	6804	112
+       11	7005	*	1585	585	*	0	8890	1000	1149	
+
+I 113  3850	5359	*	6241	2917	*	7188	2234	6123	2952	6447	*	*	*	5630	5130	5075	2571	5756	3047	113
+       0	*	*	*	*	*	0	8890	0	1149	
+
+H 114  3756	*	4131	1335	7167	6681	3306	6504	3554	*	6552	5074	6536	3662	6895	5657	5626	*	*	3644	114
+       0	*	*	*	*	*	0	8890	0	1149	
+
+L 115  6380	4791	*	*	4542	*	*	2155	*	1599	3561	6516	3882	*	*	6684	5160	2920	*	5568	115
+       0	*	*	2000	415	1356	714	8890	1000	1149	
+
+H 116  *	5866	4890	3994	5453	6178	655	*	*	5058	*	6890	*	2984	*	*	*	*	6326	4744	116
+       7	*	7624	*	*	*	0	8891	0	1048	
+
+G 117  5596	6539	6310	*	*	139	*	*	*	*	*	6372	*	*	6684	6360	*	6176	*	*	117
+       20	6176	*	0	*	1356	714	8890	1111	1149	
+
+S 118  6378	6898	2949	5674	*	*	5870	*	5460	6338	*	1920	5410	5409	3769	1899	3398	6896	*	5480	118
+       29	*	5634	*	*	*	0	8891	0	1048	
+
+L 119  3532	6627	*	4793	4341	5723	6825	2650	6787	1731	4401	6363	*	*	5683	5317	*	3165	4888	3808	119
+       16	7599	7338	1000	1000	*	0	8823	1000	1259	
+
+R 120  3242	6565	3112	4807	3468	4036	4134	5578	3614	5257	6349	3769	*	5462	3268	3820	4485	5552	5933	5062	120
+       9	*	7318	1573	591	853	1164	8822	1104	1450	
+
+V 121  3929	*	4377	3387	4379	5859	4006	4786	4257	3642	*	4903	7078	4642	2895	3998	3954	6468	4739	3275	121
+       20	6958	7477	0	*	*	0	8888	1000	1241	
+
+V 122  3654	6995	6834	3636	3985	4292	6575	4478	*	2059	3632	4509	5586	5970	5555	4128	5715	3149	5763	5384	122
+       0	*	*	*	*	*	0	8813	0	1355	
+
+R 123  4788	7092	7424	4460	5205	*	4401	5363	4304	5436	6577	4940	*	2178	2472	4174	4442	3450	6090	3630	123
+       37	5315	*	2095	385	2243	342	8643	1254	1355	
+
+C 124  6287	212	*	*	*	6172	*	6237	*	5472	6500	*	6728	*	*	4854	*	5705	*	*	124
+       0	*	*	*	*	1953	431	8594	0	1259	
+
+T 125  4448	6889	4334	3710	5237	6381	*	4286	*	3068	3830	*	4049	3347	4725	2556	3553	3915	*	5485	125
+       149	3612	5930	349	2220	*	0	8609	1765	1165	
+
+S 126  3482	6767	4647	4199	4068	4210	4155	5501	2927	6569	6840	2963	6735	3748	4994	4027	3174	4739	*	6455	126
+       476	1881	6724	778	1262	*	0	8578	3455	1398	
+
+C 127  6669	231	*	*	6674	6528	*	*	6676	6321	*	*	5210	6197	*	*	5706	5504	*	6253	127
+       13	*	6826	1000	1000	2615	257	8568	1000	1499	
+
+N 128  4295	4907	4330	4130	6801	2048	3049	6677	3963	*	*	3349	5513	4816	4414	3443	4385	6668	*	6467	128
+       293	2596	5767	2020	409	1513	622	8558	2534	1497	
+
+N 129  4625	5005	4227	2788	5667	6607	3596	6591	2600	5137	*	4803	*	3294	3284	4609	4785	6711	*	3531	129
+       73	4826	6121	1162	854	1336	728	8572	1240	1607	
+
+S 130  5125	*	3635	3623	6936	5924	5399	3517	3988	4868	6891	6567	4359	3639	3455	4738	2627	3086	*	5612	130
+       220	3031	5713	592	1571	*	0	8525	2121	1539	
+
+F 131  3796	6294	*	5192	2905	6546	4281	4733	5655	4245	*	6165	*	4898	5047	4701	5616	3917	3357	1828	131
+       45	5035	*	751	1301	2878	211	8524	1215	1725	
+
+E 132  4861	*	2103	3381	*	6757	*	4897	4735	4428	*	*	2428	4622	4153	2994	4863	6297	6315	4569	132
+       185	3213	6315	1909	447	2879	211	8521	2078	1616	
+
+V 133  4080	5750	4946	5414	3797	4273	6486	4695	5111	3265	5103	3507	*	*	3317	3479	4593	4477	2861	5107	133
+       55	5779	5683	580	1594	*	0	8562	1121	1662	
+
+E 134  3670	*	2750	2966	*	5007	5607	6177	3645	4557	6540	3509	4878	4069	3767	3768	3869	5050	*	5692	134
+       46	4981	*	1938	436	1405	684	8532	1229	1884	
+
+S 135  4248	6420	2547	2444	5428	3607	*	6678	3790	4774	6893	5484	4214	6168	4939	3843	4157	6803	*	3457	135
+       139	3780	5734	3121	176	2698	242	8533	1757	1522	
+
+A 136  3723	*	5184	4403	3310	5538	*	2743	*	2925	4838	6609	4256	4289	4713	4659	5490	2974	5815	4257	136
+       180	3945	4263	2825	219	2851	215	8540	1750	1610	
+
+P 137  3967	5475	4385	4862	4085	6514	*	3035	6603	2879	4784	6572	3612	3269	6451	6222	4265	3068	5215	4722	137
+       561	1795	4878	2616	257	1088	917	8487	3571	1997	
+
+K 138  3864	*	2825	2726	4987	6553	6051	5563	3635	3124	5804	3638	5388	4595	3364	5404	4053	6529	6618	*	138
+       489	2140	4046	3140	174	3241	161	8586	3000	1813	
+
+I 139  4091	6773	4480	3381	6580	5083	6841	5013	3068	3976	5757	3606	2944	4287	3526	3594	4782	6495	6818	5562	139
+       643	1767	3923	2817	221	3848	104	8427	3521	2348	
+
+P 140  3980	*	3472	3657	*	2623	5846	5403	4022	3698	*	3636	4121	4367	4427	2916	5358	5442	*	6309	140
+       460	2251	3994	1851	468	582	1592	8362	2672	2893	
+
+P 141  4505	6533	2828	3001	*	4144	6175	4414	3705	3309	6424	4585	4337	4906	3622	5007	3886	5017	6245	5367	141
+       284	2898	4483	1682	539	1223	807	8507	2222	2191	
+
+L 142  4851	*	3859	4907	5221	4884	5315	1945	5879	2834	6697	5522	3669	4447	*	5342	6021	2700	*	6582	142
+       80	4218	*	1195	828	547	1665	8579	1506	2044	
+
+P 143  4423	*	4664	*	6607	4538	*	5550	5403	4146	6814	4982	865	5590	4457	4578	5646	5516	*	5684	143
+       22	*	6018	*	*	1832	476	8623	0	1270	
+
+K 144  4003	4614	7058	4998	*	*	3761	3898	2400	4198	*	4589	3889	5603	2023	5286	4779	5693	*	5955	144
+       16	6527	*	640	1481	878	1133	8604	1119	1361	
+
+C 145  6627	244	6477	*	*	*	5227	6266	4925	*	*	*	*	*	*	5096	4946	*	*	*	145
+       80	5963	4724	3422	141	*	0	8616	1068	1107	
+
+D 146  4984	5696	4149	2755	4699	4982	6665	*	4365	5951	5522	6731	1307	4963	5328	4303	4379	*	*	6789	146
+       115	4385	5110	1486	637	870	1143	8503	1558	1666	
+
+K 147  4674	6662	3654	4189	*	4375	3333	4342	2687	5479	*	3202	6552	4297	4094	5020	3905	3657	*	4774	147
+       52	6174	5545	0	*	765	1281	8474	1031	1544	
+
+C 148  6712	212	4267	*	*	6692	7006	*	*	6196	6332	*	*	*	*	*	5795	6216	*	*	148
+       74	4606	6795	3593	125	2238	344	8446	1328	1408	
+
+G 149  4434	*	4564	4146	6654	1138	5449	*	3512	6685	*	2898	*	6346	4536	4433	6077	6723	*	6617	149
+       207	2904	*	2614	257	*	0	8443	2241	1412	
+
+S 150  3379	6335	4993	4222	5685	1129	4570	*	3545	*	*	5135	6465	*	6739	3199	4506	*	*	*	150
+       77	4261	*	2861	214	945	1057	8443	1408	1412	
+
+L 151  3989	*	5786	4266	5395	*	6594	3121	3517	2705	6774	7537	2546	4328	4305	4516	5613	3550	5638	5548	151
+       104	3845	*	960	1041	*	0	8454	1614	1144	
+
+L 152  4106	6530	6903	*	5758	5516	5681	3070	*	1331	2967	*	6445	*	6693	4853	*	2744	*	6207	152
+       14	*	6656	3807	107	1138	874	8454	1006	1144	
+
+R 153  5774	6365	6810	4507	5180	*	4337	4736	2105	4465	5525	7043	*	6468	1505	6447	3495	5002	*	*	153
+       13	*	6786	*	*	1211	816	8453	0	1134	
+
+P 154  4859	*	3897	6279	5450	6601	*	5489	*	5448	5084	*	651	5504	6708	6330	4588	4426	*	6856	154
+       18	*	6331	*	*	*	0	8445	0	1186	
+
+G 155  4155	6477	2174	5823	5258	4466	3681	*	6489	5152	6577	1742	*	6264	5154	7234	3662	5523	4992	6019	155
+       0	*	*	*	*	*	0	8419	0	1303	
+
+V 156  4887	6577	6414	*	5490	*	*	1678	6582	3717	4548	*	6319	6019	*	*	5130	1284	*	6272	156
+       18	*	6368	*	*	1798	489	8419	0	1303	
+
+V 157  4684	*	6386	5698	*	*	*	3241	*	2531	6487	*	6343	*	2692	5604	4846	1293	*	6734	157
+       120	3651	*	1949	432	1413	679	8423	1723	1307	
+
+W 158  6307	5736	4906	6400	2402	4529	5569	6659	*	1876	3058	4566	5466	6593	5594	4643	6396	6588	3734	4872	158
+       49	4916	*	1860	465	919	1086	8439	1274	1152	
+
+F 159  4939	6109	4341	5079	1058	*	*	6919	*	4908	6419	6400	6320	*	6379	4426	6425	5567	5317	2324	159
+       49	*	4910	*	*	*	0	8475	0	1014	
+
+G 160  4785	*	2591	3805	*	1138	4767	6358	4884	*	*	3653	*	4503	4785	5719	*	6600	*	*	160
+       22	6644	7582	0	*	422	1979	8405	1139	1372	
+
+E 161  5018	*	2838	990	*	5553	5396	6462	6628	4900	*	5039	6345	5221	5572	4531	5018	5209	*	4867	161
+       96	6628	4199	0	*	0	*	8478	1112	1115	
+
+M 162  3501	*	4890	5144	2620	3969	4744	6747	4423	5811	4204	3400	4430	4226	6374	2730	4726	5737	6593	4896	162
+       192	3254	5667	1192	831	978	1022	8466	1986	1488	
+
+L 163  3592	*	5947	*	4534	6330	4071	2768	6594	1652	7199	*	4753	*	*	*	4811	2906	*	3359	163
+       56	5521	5913	1585	585	396	2058	8503	1108	1372	
+
+P 164  5217	*	3150	3097	6493	5543	6521	*	5327	5861	6891	4643	1290	4249	5559	4326	5523	6689	*	4455	164
+       102	5427	4468	2055	397	*	0	8506	1124	1206	
+
+P 165  4350	*	2360	2633	*	3627	5780	*	5129	4634	5914	4248	4429	3596	4670	3259	5775	4417	*	5650	165
+       235	4241	3361	476	1831	512	1742	8540	1413	1704	
+
+D 166  3732	*	2980	2463	6294	3955	4531	6267	3115	6801	5490	4096	5069	3731	3995	4132	6476	*	8126	4703	166
+       111	4034	6295	1387	695	2212	351	8370	1431	2176	
+
+V 167  3267	6155	3547	4433	4006	4991	4316	3935	4937	3480	*	3762	5933	4793	4366	4189	4505	3247	6507	5114	167
+       121	4172	5314	1292	757	875	1137	8375	1584	2034	
+
+L 168  *	*	*	5210	3170	*	5137	2763	4744	2899	3286	6369	*	6029	5419	6253	6629	3893	2429	3552	168
+       36	5721	7460	1362	711	1691	535	8366	1116	1663	
+
+D 169  2840	*	3024	3320	5499	6778	4335	4700	3594	4393	*	4244	5740	3324	3901	5084	3874	6727	6340	5066	169
+       83	4164	*	1592	582	*	0	8435	1423	1527	
+
+R 170  4026	5388	4968	2944	*	3763	5046	*	2886	4360	5773	3803	*	3540	3132	3397	4450	6366	6711	6311	170
+       25	5861	*	1306	748	2270	335	8435	1064	1527	
+
+A 171  1357	5774	*	6277	5007	4898	*	3511	5491	3004	6476	6738	*	5002	*	3837	4468	4104	*	4209	171
+       32	5504	*	1109	899	1706	528	8454	1121	1398	
+
+M 172  4675	5571	6357	2804	3529	5584	5015	3178	3959	5430	4095	3948	6447	3089	4743	5051	5552	3676	6711	5711	172
+       13	6836	*	1365	709	2279	333	8439	1083	1375	
+
+R 173  3729	*	2830	2659	6576	5494	5553	6845	2798	*	*	4666	*	2846	3624	3479	4134	*	*	6266	173
+       49	5795	6040	964	1037	1489	636	8437	1080	1277	
+
+E 174  2830	*	3808	3905	4295	4968	4644	*	4301	3343	4571	5164	*	4805	3967	6519	4586	6559	2609	4258	174
+       28	5708	*	1802	487	731	1330	8464	1108	1431	
+
+V 175  3672	6734	5675	*	4489	*	*	2510	5851	2218	3749	*	*	6615	5657	3605	5689	2628	*	3784	175
+       34	5435	*	1448	658	1110	898	8507	1217	1109	
+
+E 176  3106	6848	4141	2921	*	5117	*	5812	3020	6056	4616	3862	5599	3411	4080	3133	3524	*	*	5851	176
+       336	2269	*	2577	265	*	0	8504	2987	1007	
+
+R 177  3462	*	4172	3259	*	3944	5638	5188	2357	5606	*	3387	5684	3216	3485	4176	4501	6706	*	*	177
+       125	3590	*	2557	269	*	0	8504	1785	1007	
+
+A 178  1621	3375	6473	*	5770	*	5683	6891	3045	5485	6602	5027	3882	6646	4086	3676	3901	5081	*	5306	178
+       12	6911	*	0	*	0	*	8504	1000	1007	
+
+D 179  6528	6809	820	4945	5430	4708	*	4564	4673	3665	6116	5842	*	*	6736	5579	4765	4039	*	*	179
+       0	*	*	*	*	*	*	8498	0	0	
+
+V 180  3321	5002	*	*	4932	6736	*	4123	5351	1211	4472	*	*	*	5104	6453	4690	2483	*	6704	180
+       0	*	*	*	*	*	*	8498	0	0	
+
+I 181  5563	4743	*	*	3052	6936	5358	2228	*	1883	4393	*	*	6447	*	6612	*	2229	6471	6638	181
+       0	*	*	*	*	*	*	8498	0	0	
+
+I 182  *	*	*	*	4454	*	*	2005	*	1022	5667	*	*	*	*	*	*	2595	6116	6252	182
+       0	*	*	*	*	*	*	8498	0	0	
+
+V 183  4309	5329	*	1932	3877	*	*	3107	*	4614	*	6899	*	*	*	4449	6684	1462	6547	*	183
+       12	*	6915	*	*	*	*	8498	0	0	
+
+A 184  5892	7066	*	*	5649	6990	6291	1987	*	1639	4019	*	*	*	*	6479	6828	1836	*	*	184
+       0	*	*	*	*	*	0	8491	0	1000	
+
+G 185  *	*	6102	*	*	41	*	*	6246	*	*	*	*	*	*	*	*	*	*	*	185
+       220	2824	*	1957	430	0	*	8491	2458	1000	
+
+T 186  4126	4978	*	5533	*	*	6104	5417	*	5867	*	3863	*	*	6660	2822	953	4169	*	4563	186
+       189	3089	7631	1012	988	*	*	8498	2130	0	
+
+S 187  4606	*	6398	6732	*	2870	6804	*	5684	6098	4684	6506	4762	3944	5106	1050	3850	6614	*	6099	187
+       54	6616	5231	2322	322	*	0	8501	1011	1000	
+
+A 188  4041	6702	*	*	2644	3631	*	5062	*	1198	4383	5126	5771	*	5892	5017	4811	4478	*	*	188
+       17	*	6396	*	*	*	0	8463	0	1277	
+
+V 189  3829	*	4379	4080	*	5755	5693	2603	3796	4832	5143	3659	6414	3012	5213	3463	3912	3759	*	6417	189
+       0	*	*	894	1115	380	2111	8447	1126	1407	
+
+V 190  5531	*	6423	6684	4680	6906	*	4027	3336	6391	6691	6080	6482	4524	3754	6387	3076	1209	*	5575	190
+       183	3533	4937	1569	593	0	*	8482	1838	1012	
+
+Q 191  5197	*	5734	3460	3759	5240	4059	4517	5151	4999	*	5417	3365	3697	6330	3730	4312	4276	4226	2654	191
+       31	6664	6490	2807	222	2002	414	8444	1005	1422	
+
+P 192  *	5686	*	6406	6755	4066	6465	4913	6675	4893	*	4954	722	*	*	3572	4785	6269	*	4640	192
+       14	6660	*	1000	1000	1269	774	8449	1000	1405	
+
+A 193  1963	6366	*	*	2208	6132	6703	3670	*	3579	4911	4457	5770	*	*	6599	4519	2574	6667	*	193
+       32	5517	*	1617	569	952	1050	8468	1104	1195	
+
+A 194  2450	5242	4987	2836	6671	6606	*	4590	4146	4601	4644	3223	6384	5561	3602	4232	4753	5877	3775	5891	194
+       19	*	6263	*	*	0	*	8485	0	1038	
+
+S 195  5087	6662	4382	3534	6927	4247	4336	6752	3095	4658	4923	3681	*	3638	2824	2824	4794	6865	6902	5412	195
+       0	*	*	*	*	0	*	8456	0	1041	
+
+L 196  5435	6540	*	6370	3222	*	6481	3756	*	1190	2743	6644	5336	*	6636	*	4286	5333	6653	4533	196
+       16	6541	*	3000	193	*	*	8491	1008	0	
+
+P 197  3390	6018	*	6923	*	5594	*	3387	*	2699	5390	6370	2847	6793	6372	4590	3739	1792	*	6723	197
+       73	5292	5411	1810	484	*	*	8491	1157	0	
+
+L 198  3616	5155	6027	2502	6398	4106	3900	5033	3591	3662	6718	3945	6721	4500	4078	4048	5829	5900	5324	4011	198
+       57	5561	5840	2208	352	*	0	8451	1127	1157	
+
+I 199  4741	5562	5461	3163	5765	6404	4723	4004	4004	4161	3584	4794	*	3359	3234	4324	4675	4234	6803	3572	199
+       330	5669	2434	1532	612	2201	354	8531	1095	1488	
+
+V 200  1334	4433	*	6559	2999	6214	*	3529	6101	5313	6128	4171	6373	*	*	4930	5276	3456	*	4326	200
+       248	7928	2703	4524	64	*	0	8030	1000	3124	
+
+K 201  4010	6359	4777	*	6271	4964	3849	4558	2961	3459	4793	4905	3838	4573	2578	4341	*	4195	*	4055	201
+       211	3952	3805	1425	672	554	1648	7801	1710	3987	
+
+Q 202  3715	6167	3886	3053	5147	3943	6683	*	2965	*	5969	2712	5660	3561	3389	3924	5214	*	*	5089	202
+       180	4453	3800	0	*	314	2353	8335	1323	2498	
+
+R 203  4141	5511	3672	4154	6291	5603	4682	*	2409	4449	6332	3615	2867	5453	3241	4080	4862	6875	*	5747	203
+       95	5164	4796	0	*	801	1231	8391	1184	1836	
+
+G 204  4089	6284	4339	4062	*	1610	4917	6609	2592	6466	*	2511	*	5634	5063	5402	5524	*	*	*	204
+       53	4801	*	1607	574	1280	766	8426	1274	1681	
+
+G 205  1700	*	6294	6423	*	2961	*	3344	4131	5406	5767	6426	6536	5804	6332	3466	3830	3862	4068	*	205
+       18	6361	*	1000	1000	1208	818	8447	1004	1504	
+
+A 206  5787	6734	6854	4706	4488	*	5622	4797	2674	4837	5198	6297	2410	5582	3139	4007	2958	4490	*	4834	206
+       17	*	6445	*	*	773	1270	8441	0	1243	
+
+I 207  5667	5800	*	*	5465	*	*	2391	6343	1940	*	6715	*	6982	5840	6393	4828	1889	*	3011	207
+       16	6487	*	0	*	1241	793	8434	1008	1145	
+
+I 208  3330	4899	*	6165	6723	6862	*	1630	*	3675	5160	*	*	*	*	6448	6631	1645	6786	4176	208
+       0	*	*	*	*	0	*	8450	0	1038	
+
+E 209  4065	5707	6831	3786	4578	*	*	3381	*	2908	7075	4507	*	6338	2816	5183	4029	2328	5044	4483	209
+       21	6797	7564	1585	585	*	*	8487	1006	0	
+
+I 210  5456	7098	*	*	3843	*	*	1190	6777	2681	5233	6448	*	*	*	6458	*	2015	*	*	210
+       46	4983	*	1820	480	0	*	8489	1362	1000	
+
+N 211  6610	*	2995	6255	*	4461	4972	6311	*	6429	*	493	*	*	*	6534	5124	*	*	*	211
+       8	*	7496	*	*	*	0	8442	0	1153	
+
+P 212  5642	6422	5741	7012	4543	*	5488	3904	3698	2520	6750	*	1939	4017	4031	6335	4194	5814	*	3632	212
+       17	*	6410	0	*	551	1655	8444	1000	1252	
+
+D 213  5597	6538	2460	3075	*	3264	6687	6282	3286	*	*	4433	6399	3053	4506	3353	3548	*	*	4918	213
+       30	6511	6654	0	*	1038	963	8438	1010	1116	
+
+E 214  3833	*	3911	2867	6317	5727	4959	5307	3441	4340	6573	6234	2052	3598	5554	4000	6578	6270	6633	5004	214
+       15	6568	*	0	*	0	*	8386	1000	1108	
+
+T 215  3879	*	4249	3692	4850	6234	5353	4948	*	4113	6627	4724	3618	*	5524	2805	2391	3097	*	4726	215
+       137	3984	5191	1685	537	*	*	8360	1558	0	
+
+P 216  3630	*	3865	3870	4112	3761	*	4470	5154	4862	*	4807	3095	4140	3403	3842	4042	4207	6626	4498	216
+       138	3629	6564	2981	195	*	0	8292	1645	1186	
+
+L 217  4201	5407	*	4628	3446	5376	3962	3290	*	2264	4282	6351	6428	5123	4900	5248	4829	3101	4986	4504	217
+       162	4594	3952	0	*	1999	415	8321	1257	1286	
+
+T 218  5028	6379	1906	4108	6269	6297	4663	6208	5229	5085	6201	5484	1883	*	4744	3826	4512	4683	*	*	218
+       360	2275	6128	1745	511	163	3227	8258	2579	1758	
+
+P 219  5332	5444	3936	2504	6217	4483	5675	*	3061	4681	*	5167	3523	3637	3984	3667	4297	4172	*	5029	219
+       468	2101	4515	1533	611	*	0	8354	2791	1102	
+
+I 220  3894	6303	3033	3547	*	3747	4796	4879	2990	3411	4870	4519	5226	4768	4296	3514	*	5513	*	4428	220
+       55	4730	*	2116	378	0	*	8313	1297	1496	
+
+A 221  2174	7116	5580	5293	3152	4528	5299	6701	3486	5639	*	4824	4742	4491	2182	5381	6425	4778	*	6062	221
+       46	5540	6688	1505	627	*	*	8377	1102	0	
+
+D 222  3336	6222	1701	5242	5656	3439	4398	4703	*	5294	*	4549	6339	*	*	3097	3017	5473	*	6347	222
+       75	4301	*	1027	974	0	*	8373	1323	1000	
+
+Y 223  4630	5261	*	6348	4042	5335	5243	2938	*	1846	5033	6547	5424	5169	*	*	4968	2435	5493	3853	223
+       56	5288	6348	1293	756	*	*	8377	1102	0	
+
+S 224  4421	6409	*	4341	3705	2854	4545	4962	4067	4635	6603	4389	*	4350	4090	4769	4248	2505	4439	5320	224
+       0	*	*	*	*	*	0	8357	0	1002	
+
+L 225  6165	4720	*	*	3693	6693	*	1269	*	2262	*	6235	*	*	6390	6314	*	2691	*	4473	225
+       0	*	*	*	*	0	*	8357	0	1002	
+
+R 226  3570	5569	4078	3697	5148	5274	4226	4800	2905	4144	*	4396	5480	3499	3970	4414	3871	4416	*	4619	226
+       14	*	6678	*	*	*	*	8377	0	0	
+
+G 227  3400	4968	3283	3592	*	1250	*	6230	5400	5478	4119	4255	*	6635	*	4417	*	5572	6627	6684	227
+       28	*	5701	0	*	0	*	8365	1000	1000	
+
+K 228  4565	*	1736	4335	*	4304	6264	*	2393	5487	*	4026	3558	*	3948	4528	3905	*	*	6576	228
+       14	*	6654	*	*	1019	981	8365	0	1090	
+
+A 229  1546	2933	*	*	5483	*	*	2358	*	3251	6221	*	*	*	*	3213	6229	3844	*	*	229
+       0	*	*	*	*	*	0	8361	0	1091	
+
+G 230  2616	*	2373	2927	*	2719	*	6728	4707	6718	6269	3373	6134	4674	5533	3910	4651	6343	*	*	230
+       0	*	*	*	*	*	0	8361	0	1091	
+
+E 231  3183	*	2580	1805	*	*	5136	6311	4450	5588	6229	4603	5647	3513	5337	5023	3960	4402	*	*	231
+       34	*	5423	1809	485	0	*	8361	1091	1091	
+
+V 232  2628	5257	*	6344	3929	4822	6504	2314	*	4336	*	4663	*	*	*	6094	3246	2130	4681	6627	232
+       0	*	*	*	*	0	*	8364	0	1077	
+
+M 233  6593	5529	*	*	2954	*	*	3447	*	878	4291	*	*	*	*	5493	*	3122	6062	*	233
+       19	*	6220	*	*	*	*	8377	0	0	
+
+D 234  3239	6580	4493	2529	*	4823	4518	*	4067	4262	*	4999	2219	4846	3368	3865	6472	5834	*	*	234
+       42	6825	5675	782	1257	0	*	8334	1099	1024	
+
+E 235  3836	6635	3463	2740	6274	5038	4843	5077	2518	4316	5265	4500	5490	3877	3407	*	4852	5371	*	4904	235
+       21	6109	*	1093	912	0	*	7820	1124	1098	
+
+L 236  4535	*	*	*	6402	*	*	2516	*	923	3598	*	*	*	*	*	6259	3231	5294	6037	236
+       54	5395	6264	969	1032	*	*	8350	1180	0	
+
+V 237  2962	4192	4776	5105	6022	6982	5037	3833	4639	2315	4301	5897	*	4238	3928	5080	*	2695	*	5963	237
+       24	5901	*	0	*	0	*	8208	1002	1000	
+
+R 238  3152	5660	3113	3409	*	3633	*	*	2807	*	*	3557	6402	3399	2771	4414	4790	6222	*	*	238
+       82	4857	5598	1871	461	*	*	7482	1066	0	
+
+H 239  3000	*	4748	3141	*	*	4122	3810	3996	3031	5504	5477	4717	2854	3308	5618	4455	5446	*	*	239
+       30	5627	*	0	*	*	0	7041	1000	1000	
+
+V 240  *	5431	5610	*	4307	*	*	3066	*	1279	3096	5174	*	*	5574	4933	5297	3349	*	4256	240
+       86	4111	*	1585	585	0	*	6772	1002	1000	
+
+R 241  *	*	*	*	*	1978	*	3265	3263	2498	4233	*	4261	*	3282	3390	4122	*	*	*	241
+       0	*	*	*	*	*	*	5127	0	0	
+
+K 242  *	*	*	1983	*	3051	*	*	1892	*	*	*	2940	2141	*	*	*	*	*	*	242
+       0	*	*	*	*	*	*	3931	0	0	
+
+A 243  2668	*	*	1516	*	*	2841	*	2631	2382	*	*	*	*	*	*	*	*	*	*	243
+       0	*	*	*	*	*	*	3192	0	0	
+
+L 244  2841	*	*	*	*	*	*	2631	*	2668	2382	*	*	*	*	2584	*	*	*	2450	244
+       575	1605	*	3000	193	*	*	3192	1005	0	
+
+S 245  *	*	1024	*	*	*	*	*	*	*	*	*	*	*	*	976	*	*	*	*	245
+       0	*	*	*	*	*	*	1610	0	0	
+
+L 246  *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	246
+       0	*	*	*	*	*	*	1000	0	0	
+
+K 247  *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	247
+       0	*	*	*	*	*	*	1000	0	0	
+
+L 248  *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	248
+       0	*	*	*	*	*	*	1000	0	0	
+
+N 249  *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	249
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  f038453661ad6048b85e5011b6e6296a
+FAM   
+FILE  f038453661ad6048b85e5011b6e6296a
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:31:50 2013
+LENG  243 match states, 243 columns in multiple alignment
+FILT  229 out of 1408 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  7.4 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCEEEEEEECCCEEEEEEEEEEEECCCCCEEEEEEEECCCCCCCCCCCCCEEEEEEECCCCCEEEEEEEECCCCCCCCCCEEECCCCCCCCCCEE
+EEEEECCCEEEEEECCEEEEEECCCCCCCCCCCCEEEEEEECCCCCCCCCCCCCCCCCEEEEEEEEEEEECCCCCCCCCCCCCCCHHHHHHCCCHHHHHH
+HHCCCCCCCCCCCCCCEEEECCEEEEEECCCCCCCCCCCCCCC
+>ss_conf PSIPRED confidence values
+9346893778999845212239999999159994089899851687677889887688998234488677689969989877873366179986568199
+9999928979999999999998443268999872699997627774446888876698589998999995789987222988744557652899999986
+3563636543456675698899999997788832421068899
+>Consensus
+xxxxxxxtsxxixSxxxxxyGxxEaRiKxpxxxGxxxAfwlxxxxxxxxxxxxxxEIDIExxGxxxxxxxtnxxxxxxgxxxxxexxxxxxxdxxxxfHt
+YxieWxpxxIxfyVDgxxvxxxxxxxxxxxxxpmxlixnlwxxxxxxxxGxxdxxxxPxxmxVDyVrvyxxxxxxxxxcxxxxxxxxxxxxxxnxxxxxx
+xxxxxxxnxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
+>f038453661ad6048b85e5011b6e6296a
+MVSAKDFSGAELYTLEEVQYGKFEARMKMAAASGTVSSMFLYQNGSEIADGRPWVEVDIEVLGKNPGSFQSNIITGKAGAQKTSEKHHAVSPAADQAFHT
+YGLEWTPNYVRWTVDGQEVRKTEGGQVSNLTGTQGLRFNLWSSESAAWVGQFDESKLPLFQFINWVKVYKYTPGQGEGGSDFTLDWTDNFDTFDGSRWGK
+GDWTFDGNRVDLTDKNIYSRDGMLILALTRKGQESFNGQVPRD
+>gi|14330336|emb|CAC40809.1| Xet3 protein [Festuca pratensis]
+----SNSSGSMIRSKRQFIFGTVSTWIQASSRAtlarhrhNILP---ILG-------GDNHDEIDFEFLGNETGqpyTLHTNVYADGVGN---KEMQFVP
+WFDPTGGYHKYTISWTPCMIVWYVDDLPIRVFRNYRqSNgvAFPtsRPMYAYSSIWSADDWATQGGrvkTDWTHAPFVANYHGIDLDiceCYGGDCIY--
+-GCAGAYGQPYcGGLTDEQRWKMQWV--QERYRIYDYCVDYKDGKV-------------------
+>gi|331270344|ref|YP_004396836.1| putative endo-1,3(4)-beta-glucanase [Clostridium botulinum BKT015925]gi|329126894|gb|AEB76839.1| putative endo-1,3(4)-beta-glucanase [Clostridium botulinum BKT015925]
+MKNGKPYSSTsgNVSTQGiaFWKYGRIDVRAKIPMEMGMWPAIWMMPEANPYG-WPNDGEIDImEALGSEKNIVYGTLHTGNIDDpknhtRTSTGVTYKL
+qKGTLADDYHIYSVIWKEKSFEFLIDNKSIGKINSwpskfkvTDirtgkekvldpafPDPFNKPFYLILNLGV--GGGWGGEPNTTTswgDKTKMFVDYV
+RVYQKDN----------------------------------------------------------------------
+>gi|58266734|ref|XP_570523.1| hypothetical protein [Cryptococcus neoformans var. neoformans JEC21]gi|134110300|ref|XP_776206.1| hypothetical protein CNBD0270 [Cryptococcus neoformans var. neoformans B-3501A]gi|50258876|gb|EAL21559.1| hypothetical protein CNBD0270 [Cryptococcus neoformans var. neoformans B-3501A]gi|57226756|gb|AAW43216.1| conserved hypothetical protein [Cryptococcus neoformans var. neoformans JEC21]
+-----------------------------------------------------------------------------------------------GGFGV
+YGFEYFSNpedrdsgHITWVANGEKSWTMYPAAVGAvesmgigqrliSEEPMAMIINFGMS---ESFQSVDFNhlITPMEMLVDYIRVYQRSEG-KVGCD
+PKdrpTAAYienhLNAYSNPNLTTWEDAGYTIPKNS----------------------------------
+>gi|46138213|ref|XP_390797.1| hypothetical protein FG10621.1 [Gibberella zeae PH-1]
+-------VASEFDSIDRFQFLSIRFMGRVRGAPGACMAMFTYVPAKEIKD---VQEADMEILTREDHDrVHyTNHPGySATELF-PKAtRNITLPDgLKW
+NEWVEHRLDWTPTQSIWYANGIEAANISFQ---VPRDPSLLIFNSWGD-GGVWTQNMTTGQ-EAYMELQWLQMvYN------------------------
+-------------------------------------------------
+>gi|302915076|ref|XP_003051349.1| hypothetical protein NECHADRAFT_80733 [Nectria haematococca mpVI 77-13-4]gi|256732287|gb|EEU45636.1| hypothetical protein NECHADRAFT_80733 [Nectria haematococca mpVI 77-13-4]
+-----HYLSGAIHAKSTFtvvaGGGYdVKAEFIAPVDRGTWPAFWLNAA-------SGWpPEIDVaEWKGSG--KISFNTFNTSSE-----VTALDVDYP
+EPTQWHSVRAELRDengvdVRVKFFLDDREVTTQYGRE--YIGKGLRLIINY------QTEGSSgsPGPTTPTTFQIRNVEVISY---------------
+---------------------------------------------------------
+>gi|294054542|ref|YP_003548200.1| glycoside hydrolase family 16 [Coraliomargarita akajimensis DSM 45221]gi|293613875|gb|ADE54030.1| glycoside hydrolase family 16 [Coraliomargarita akajimensis DSM 45221]
+---GELYSGATIISNQKFTHGYIEARTR--LDW-VDGHFWPT----------FWMNEYRaDGSANE---fdimeynhwstYPTQSHHFP------KKEGV
+TTVpsNASVNEWHVWGVLWTENEITFYVDgikqfSSERPQVA------ATDLLPLVFSC----SPNLNKNPARTGQYPRFFVDWVRVWQG----------
+--------------------------------------------------------------
+>gi|298372310|ref|ZP_06982300.1| hypothetical protein HMPREF0156_00351 [Bacteroidetes oral taxon 274 str. F0058]gi|298275214|gb|EFI16765.1| hypothetical protein HMPREF0156_00351 [Bacteroidetes oral taxon 274 str. F0058]
+-----EFTSDVVNGYNlaKEEYCGIRVKMRCTG--NVNHAFWLTSGS-------KLPHINVaLIKGK-------TIEVGvHDArGDYY-YTTVT-GI-NP
+SKYYIYSIYQKNGYLIWRINNIEVFRTRNI---IAELRFSPCFSSFIP------ADKvDA--TEGQLDIAWVEVYK------------------------
+-------------------------------------------------
+>gi|328886601|emb|CCA59840.1| hypothetical protein SVEN_6554 [Streptomyces venezuelae ATCC 10712]
+---------AEVHTGVrKFKNGTYAARVRLADtptsgpdGDHLVQSFFTINDLTaPMA--DDYAEYDFEYLPNGgwgePANvLYTTSWETFRPDPWEAVN
+QHTEARTSQAGWHDLVLTIDDTALVYYLDGKEFARHDAR--YLPERPMSIHFNQWL---IDLTGQISTAPRAYEEQVDYVLHV-----------------
+---------------------------------------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	*	*	1074	930	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1642	0	0	
+
+V 2    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	730	1333	*	*	2
+       0	*	*	*	*	*	*	2435	0	0	
+
+S 3    *	*	*	*	*	*	*	1560	*	3520	*	1785	*	2286	*	3671	*	*	*	*	3
+       0	*	*	*	*	*	*	4034	0	0	
+
+A 4    2563	*	4939	5055	*	1557	*	*	*	*	*	3730	*	*	4786	2542	3177	*	*	4865	4
+       0	*	*	*	*	*	*	5981	0	0	
+
+K 5    5339	*	2611	3923	6106	4064	*	*	2291	5813	*	4711	5193	*	2776	3544	3992	*	*	3487	5
+       0	*	*	*	*	*	*	7336	0	0	
+
+D 6    4319	*	3945	4215	*	4988	4663	*	3689	5333	*	2390	2420	3344	4070	5733	4179	*	5197	5584	6
+       0	*	*	*	*	*	*	7962	0	0	
+
+F 7    6111	*	6050	7131	2235	5183	6769	4227	6702	4891	*	6266	*	*	4871	4671	7044	3940	3113	1545	7
+       0	*	*	*	*	*	*	8125	0	0	
+
+S 8    4260	*	4947	5521	*	5931	*	5028	4426	3924	6784	5389	6788	6172	4037	2495	1490	5270	*	4108	8
+       9	*	7360	*	*	*	*	8221	0	0	
+
+G 9    3618	5718	*	*	*	1456	*	*	*	*	*	5552	*	*	*	1220	3760	6560	*	*	9
+       11	7088	*	0	*	0	*	8292	1049	1000	
+
+A 10   1600	4836	5857	*	*	1408	*	7624	*	*	7312	*	6557	*	*	2596	4737	5961	*	*	10
+       0	*	*	*	*	*	*	8374	0	0	
+
+E 11   3120	5323	*	2683	5415	2190	7031	5671	4451	5948	5072	5083	*	*	2721	4532	5330	4780	4777	5610	11
+       9	*	7318	*	*	*	*	8399	0	0	
+
+L 12   5440	*	*	*	2839	*	*	1589	*	1938	4590	*	*	*	7240	*	*	2478	*	5950	12
+       10	*	7240	*	*	*	0	8389	0	1000	
+
+Y 13   3719	*	4091	3428	5837	5046	4205	4354	4211	6321	5515	4341	*	3249	3423	3658	2919	4608	*	4924	13
+       0	*	*	*	*	*	0	8391	0	1043	
+
+T 14   6571	*	*	*	*	4963	6954	*	*	7595	*	*	*	*	*	786	1530	*	6977	6678	14
+       21	6110	*	2407	302	*	0	8391	1043	1043	
+
+L 15   3759	*	4968	5120	6261	5132	5951	5050	1779	4424	7238	3339	7191	3455	3127	5346	4142	6438	7068	5551	15
+       225	2795	*	1275	769	*	0	8391	2019	1043	
+
+E 16   3992	*	3468	3250	3649	3230	4555	*	3413	5040	7595	3184	*	3695	3808	4577	4722	5550	*	5406	16
+       340	2252	*	1075	929	0	*	8391	2437	1043	
+
+E 17   3464	6973	3300	3928	5600	4901	6533	6072	2784	6029	6732	4756	6341	4140	3798	2731	3407	7038	*	4209	17
+       98	3928	*	978	1022	*	*	8443	1371	0	
+
+V 18   5280	*	*	6194	1574	*	*	3374	6318	4237	7125	7063	4772	4079	5829	6021	5442	3472	4490	2629	18
+       62	4756	7622	1658	550	*	*	8533	1207	0	
+
+Q 19   5562	*	6428	5555	5553	3755	4484	5627	2778	2823	5683	5088	5945	2918	3507	3835	3249	5734	7378	6262	19
+       40	5651	7035	1590	582	*	0	8668	1086	1028	
+
+Y 20   5509	*	*	5511	3165	5528	3862	6886	5562	6462	*	5275	4785	6416	5688	4138	5864	6175	6418	942	20
+       13	6856	*	0	*	*	0	8657	1010	1080	
+
+G 21   5137	6938	*	*	*	179	*	*	*	6818	7117	6888	5685	*	*	5781	6745	8047	7669	*	21
+       132	3600	7734	715	1355	476	1832	8633	1571	1137	
+
+K 22   7492	7310	*	7607	3915	6473	5829	7214	3080	4630	4972	6483	*	4579	2140	3633	5458	5355	7754	1845	22
+       89	4064	*	239	2712	1338	726	8677	1378	1038	
+
+F 23   5854	*	*	*	1750	*	*	2518	*	4084	4351	7494	*	7262	*	*	5795	2432	3908	3049	23
+       5	*	8241	*	*	*	0	8675	0	1004	
+
+E 24   5650	*	5195	741	*	4608	8260	*	5342	*	*	5864	*	5317	3946	3326	4466	5284	*	7015	24
+       11	7626	8573	1585	585	*	0	8679	1000	1032	
+
+A 25   1331	5214	*	6882	4441	7039	*	3036	*	6604	3149	*	*	*	*	4209	3831	2873	7040	*	25
+       0	*	*	1000	1000	2474	286	8724	1000	1108	
+
+R 26   4924	7640	7837	4107	*	7363	8193	7211	3241	5215	6091	7254	*	5660	848	3594	4725	6495	6315	6669	26
+       0	*	*	*	*	0	*	8719	0	1080	
+
+M 27   2098	6100	*	*	3775	*	*	1757	*	3361	2795	*	*	*	*	7397	6581	2998	*	*	27
+       10	7218	*	1000	1000	*	*	8674	1008	0	
+
+K 28   5832	*	7370	6147	*	*	*	6518	856	6496	7462	7024	*	3977	1930	5572	6044	*	7572	7145	28
+       15	*	6581	*	*	*	*	8674	0	0	
+
+M 29   2889	6204	*	*	3865	4927	6278	3747	*	1810	2903	*	4302	7354	7145	5923	4575	3225	6113	*	29
+       17	6414	*	2191	357	*	0	8638	1031	1031	
+
+A 30   2804	*	5234	7017	*	5544	6175	5400	7002	5205	5192	4933	1312	5493	5534	3218	4068	4409	*	6966	30
+       61	5714	5480	1596	580	0	*	8637	1125	1031	
+
+A 31   3360	6345	3418	3887	7230	3767	6291	8624	3473	4604	7401	3231	3039	4778	3871	4021	4393	4781	7585	6280	31
+       686	1478	5686	1317	740	0	*	8694	3532	1103	
+
+A 32   3420	7856	3977	4319	*	2279	4518	5347	5549	5020	7260	5748	5724	5474	4412	2577	3316	4030	*	5690	32
+       68	5478	5415	549	1659	1749	510	8630	1176	1107	
+
+S 33   2148	8577	3429	4244	5647	5173	7828	6300	4298	6692	6765	5295	2685	4793	3843	3521	3682	5545	6534	7035	33
+       88	7842	4196	2807	222	0	*	8574	1043	1216	
+
+G 34   5341	*	6924	6178	*	348	6339	*	*	4881	*	5283	7137	*	6267	4474	6985	*	5451	*	34
+       9	7359	*	1000	1000	0	*	8619	1001	1329	
+
+T 35   3720	6113	7374	7486	4214	6139	7215	3119	*	2920	3840	5490	*	*	7266	3774	2548	2332	6231	5553	35
+       6	*	7895	*	*	*	*	8673	0	0	
+
+V 36   5613	4327	5573	6876	3756	5791	7175	4167	*	4826	6112	4538	*	5658	7558	4488	5133	1917	2015	4557	36
+       13	8592	7290	1585	585	*	0	8676	1028	1000	
+
+S 37   4261	4945	7142	*	6126	5101	4989	*	6824	6829	5234	4853	1529	7109	*	2627	2439	4449	*	6833	37
+       6	*	7923	*	*	782	1258	8673	0	1045	
+
+S 38   812	*	*	6988	7371	3576	6581	*	*	6336	6877	5458	6981	7224	*	2749	3382	6158	7535	*	38
+       0	*	*	*	*	1739	514	8675	0	1082	
+
+M 39   6322	*	*	*	843	*	7225	2787	*	3296	4430	*	7227	8129	*	*	6191	4574	5416	4616	39
+       15	6574	*	2309	325	*	0	8672	1086	1043	
+
+F 40   *	*	*	5801	2589	6123	6908	6358	*	4783	5680	*	*	*	7017	*	*	5371	840	2894	40
+       15	*	6568	*	*	0	*	8672	0	1043	
+
+L 41   4189	*	*	*	5050	5879	*	5086	*	1243	2546	*	5865	*	*	5196	2549	4963	5196	*	41
+       15	7621	7527	0	*	*	0	8672	1000	1052	
+
+Y 42   5781	7783	7013	6203	4333	7372	5924	3591	5039	2964	3667	5060	*	4219	4812	3213	3978	4554	4318	2473	42
+       76	6137	4740	1000	1000	1536	610	8671	1047	1095	
+
+Q 43   4148	6903	5019	5818	5702	2719	6270	*	5578	*	*	2833	2767	6499	4678	2086	4227	*	6997	4395	43
+       73	5528	5162	1226	805	2927	203	8664	1116	1311	
+
+N 44   3374	*	2570	4003	*	3342	5017	6782	4409	6519	6925	2882	4872	3621	5329	3841	3636	7179	*	4841	44
+       309	5022	2627	1717	523	1305	748	8613	1331	1597	
+
+G 45   4711	*	2187	3237	5464	2584	7002	6909	4751	6733	6941	3361	3156	5478	5083	5373	4287	*	*	4672	45
+       601	3716	1918	606	1543	2101	383	8437	1758	2477	
+
+S 46   4391	*	3265	3952	6662	3361	6201	7312	4794	7256	6021	4031	3283	5186	*	2387	3035	4215	5969	5370	46
+       679	3933	1690	512	1744	3411	142	8264	1320	3612	
+
+E 47   4656	5740	2710	3403	6660	6052	4716	5235	4034	5199	*	3146	3595	3791	*	4096	4473	5257	4993	3515	47
+       400	4630	2308	1229	802	2167	363	7855	1102	4548	
+
+I 48   4444	6428	4900	5037	3668	5340	*	3287	5158	3492	3651	6560	3647	5774	*	4339	5396	3094	*	2497	48
+       321	5339	2517	967	1034	2512	278	8047	1044	4347	
+
+A 49   3006	*	3812	3238	5073	1867	6217	*	3840	5407	*	6386	4254	4117	4727	3843	4296	*	7089	*	49
+       203	5524	3188	1585	585	3634	121	8221	1113	4344	
+
+D 50   4593	*	2287	3981	6554	3996	5730	*	4219	6097	*	2856	4845	3211	5408	3058	4188	6018	6305	5480	50
+       561	3975	1950	1015	985	2614	257	8153	1179	4476	
+
+G 51   5351	*	4838	5273	5878	1843	6100	*	5256	*	*	3843	3993	4828	6155	5232	5071	*	1671	5268	51
+       155	3292	*	1439	664	584	1587	7917	1296	4737	
+
+R 52   3801	6693	3231	4297	*	2933	7850	4671	3681	5302	6934	4246	2293	5913	7569	4368	3638	4237	*	6084	52
+       73	5007	5765	2061	395	770	1274	8529	1131	2488	
+
+P 53   3806	6019	3973	4508	3920	2943	5633	5693	3162	5652	*	3935	3687	4963	4126	4012	3470	5225	6536	5949	53
+       41	5663	6936	684	1406	1037	964	8602	1139	1724	
+
+W 54   4990	4673	5368	5604	5637	3951	2413	6644	5800	4669	*	3708	6884	6207	4614	3424	7332	4456	2156	4793	54
+       277	2539	8662	1350	719	592	1571	8652	2115	1405	
+
+V 55   4707	5737	2256	4796	5667	2164	5851	5151	7133	5995	6540	4310	3456	3846	4632	5762	4268	4649	*	6148	55
+       20	6186	*	1809	485	0	*	8680	1045	1182	
+
+E 56   7109	7028	*	183	*	7213	5266	*	*	7080	*	6651	7040	5357	6739	6279	*	*	*	*	56
+       0	*	*	*	*	*	*	8697	0	0	
+
+V 57   6893	*	*	6652	4901	*	*	783	*	2946	4109	7357	*	7141	*	*	7319	3127	5806	5175	57
+       7	*	7751	*	*	*	*	8695	0	0	
+
+D 58   5325	5216	245	*	*	7832	*	7027	7331	7108	*	4699	*	6916	6266	6872	*	*	*	6601	58
+       0	*	*	*	*	*	0	8703	0	1017	
+
+I 59   6483	*	*	*	2379	*	6531	1162	*	3813	4223	7192	*	*	6601	7154	7125	2669	6501	6105	59
+       1195	829	*	0	*	0	*	8703	4681	1017	
+
+E 60   *	7314	6350	282	*	7349	*	*	5899	4774	5668	*	*	5471	5914	6532	5893	*	*	6268	60
+       45	5459	6916	489	1799	*	*	8695	1131	0	
+
+V 61   4812	7370	*	5692	2073	4662	4301	3399	6520	3606	6029	3758	*	6261	*	4287	4365	3726	4123	3501	61
+       107	4466	5265	542	1676	*	0	8678	1275	1010	
+
+L 62   4874	6040	5261	*	4457	5201	6170	4118	4118	1732	4649	5512	5657	4858	3941	4629	5243	3663	7399	3492	62
+       17	7611	7203	2585	263	708	1367	8646	1000	1207	
+
+G 63   3973	7008	6057	*	*	711	*	*	4899	*	5735	4406	4982	4553	7289	3682	5247	5755	*	*	63
+       94	4893	5086	1911	446	0	*	8664	1235	1105	
+
+K 64   4734	*	3693	4398	5748	3200	4168	6365	3413	6164	*	1999	5588	4279	3932	4007	4644	5328	7226	6275	64
+       93	5024	4991	965	1036	339	2255	8634	1343	1170	
+
+N 65   3822	6899	2534	3209	7305	3928	5581	5842	4821	5444	*	3065	5070	4864	3599	4354	4298	3978	*	4568	65
+       284	2848	4647	1859	465	1428	670	8589	2186	1329	
+
+P 66   4370	*	4202	5973	5261	3884	*	5925	4071	5244	7417	4034	1572	5364	5136	3889	3265	4203	*	8208	66
+       113	4098	5888	2753	232	*	0	8582	1328	1499	
+
+G 67   4888	*	2902	5434	7166	2129	5245	*	4014	6847	5743	2849	6043	5400	4665	4564	3334	7149	5940	3713	67
+       142	3899	5222	1672	543	1616	570	8550	1473	1608	
+
+S 68   4177	*	5417	3931	5538	4833	4137	4016	3418	4392	6729	4015	6275	2977	3545	5375	2531	4964	7075	7400	68
+       674	1530	5208	1653	552	388	2084	8465	3618	1579	
+
+F 69   4035	*	7458	*	4382	*	5628	2965	*	2033	4311	5339	5741	*	*	6110	7208	2579	3353	3151	69
+       41	5686	6907	2501	280	2866	213	8742	1088	1291	
+
+Q 70   5245	*	6162	4832	5351	4719	2579	5636	6100	5098	6944	3575	5514	1799	4905	4228	4757	5614	4883	4280	70
+       42	5108	*	1281	765	1171	847	8721	1149	1316	
+
+S 71   3870	*	7212	6040	3906	4233	6263	6217	7428	4388	5219	4782	6289	6531	*	2385	1389	5098	*	5615	71
+       29	7070	6358	0	*	352	2208	8631	1000	1156	
+
+N 72   3839	6896	5530	6140	6933	4133	4903	7314	*	5612	*	977	*	4842	*	4378	2729	7381	*	6295	72
+       65	4715	7400	2447	292	653	1458	8712	1241	1074	
+
+I 73   4548	7275	*	4748	4162	7086	4466	2459	*	3134	5643	7308	7453	6329	*	4546	3912	2136	6322	3113	73
+       20	6215	*	1000	1000	0	*	8680	1045	1035	
+
+I 74   5821	7255	*	5949	2314	*	1484	4073	6839	5379	*	6281	6074	*	6368	7215	5539	5748	4104	2607	74
+       88	4920	5246	1525	616	*	*	8676	1184	0	
+
+T 75   3378	6286	5219	5666	3667	4271	4729	5629	7819	3809	5769	5170	4202	7832	5365	4234	2894	3365	3822	3385	75
+       82	4334	7467	1211	816	457	1880	8525	1387	1147	
+
+G 76   4082	*	3829	4783	4660	1926	4499	7577	4754	5767	6843	2583	4918	4536	4964	4901	4169	6250	4779	7932	76
+       174	3335	6120	1409	682	835	1187	8654	1657	1047	
+
+K 77   4289	5694	4605	3712	6082	1710	5013	6149	3504	7690	*	4015	4547	6356	5111	3315	3929	5211	6898	7293	77
+       152	3971	4783	1987	419	0	*	8653	1423	1101	
+
+A 78   3901	*	4013	5590	5779	3701	5329	4648	3409	5768	*	3628	3852	3560	5058	3196	4914	3606	4209	4853	78
+       157	4351	4212	1132	879	1824	479	8608	1350	1385	
+
+G 79   3536	7268	4015	4356	*	1331	5018	*	7171	5829	*	3565	4212	4381	5066	4910	4128	5548	6966	7054	79
+       353	2867	3647	1092	913	3023	189	8494	1846	1771	
+
+A 80   3447	4367	3092	4413	*	3025	6744	6806	4210	4814	6979	2878	3088	5927	5344	3660	4367	6260	*	5525	80
+       543	3058	2370	1735	515	3716	114	8575	1656	2455	
+
+Q 81   3495	*	2891	5093	*	3781	6816	5696	4097	5346	*	3532	4847	4544	3470	5030	2386	4853	5786	4864	81
+       411	2663	3474	1892	453	2645	251	8559	1973	3743	
+
+K 82   *	*	5761	4201	4461	3922	4795	2746	4117	3916	5655	3714	*	5508	4136	5928	4092	3738	4293	2933	82
+       189	3199	6146	2725	237	1391	693	8577	1500	3772	
+
+T 83   5773	*	4198	5062	5571	2365	3324	*	3737	*	6259	3565	5922	3611	3198	3674	4016	*	6840	4220	83
+       153	3862	4975	2260	338	626	1507	8597	1359	2895	
+
+S 84   4027	7122	3876	3943	6559	4735	5074	7423	4030	6068	*	3563	5234	*	2086	3327	2991	4664	*	5214	84
+       117	3795	7454	1762	504	807	1222	8523	1482	1873	
+
+E 85   6204	*	5202	1554	7389	2848	5376	7514	4749	6320	6818	5677	4212	3690	6188	3588	3959	4525	5431	7168	85
+       58	4661	*	1892	453	2405	302	8684	1235	1393	
+
+K 86   4264	6231	5465	4008	5594	3704	6299	4771	2520	4780	5706	5416	4531	2721	4419	5111	3906	4104	7008	4424	86
+       93	4166	7261	1049	953	216	2845	8685	1337	1311	
+
+H 87   5409	*	6443	4048	4965	4268	4725	4729	3974	4784	5760	4086	5591	3548	3012	3228	3178	4229	6544	4152	87
+       112	3970	6551	1199	825	1193	830	8669	1536	1042	
+
+H 88   4307	*	6336	6440	3319	7390	2769	3099	5130	4076	*	6012	4473	7056	5988	4280	4120	2950	6919	2861	88
+       126	3579	*	1884	456	*	0	8562	1550	1092	
+
+A 89   4411	5792	3551	4209	5589	5262	4940	5890	5182	4007	*	3563	2625	5902	4215	3873	3125	4207	7628	4317	89
+       342	2672	4206	1547	604	1687	537	8562	2296	1092	
+
+V 90   3693	*	8114	6162	3624	5682	*	3541	6834	1737	4478	4828	5293	6687	7772	4793	3632	3206	7302	4094	90
+       258	3721	3511	1763	504	487	1803	8456	1710	1450	
+
+S 91   3981	*	2091	4243	*	2243	5816	*	6154	*	*	3862	3118	7769	6253	4733	4698	5877	3168	*	91
+       217	3959	3728	1571	592	189	3023	8499	1355	1683	
+
+P 92   5537	*	4922	5881	1900	3684	7129	4718	5031	7393	7569	4840	2336	6461	5664	5238	3990	3613	6209	4407	92
+       254	4867	2978	1544	606	871	1142	8696	1181	1594	
+
+A 93   5110	7168	1352	5424	*	4628	6857	6006	4940	5358	6961	3478	3841	*	4686	3788	3514	5894	*	4498	93
+       70	6325	4848	0	*	1094	911	8467	1029	2087	
+
+A 94   3537	6480	4253	7640	4135	*	6427	4669	4442	2889	5297	4360	2308	6385	5604	4254	4510	4373	3779	5040	94
+       67	*	4463	*	*	762	1284	8598	0	1766	
+
+D 95   2985	*	3893	6662	7307	4289	5824	5156	5628	4625	5948	4665	5201	4325	4572	2708	2251	4709	5833	4681	95
+       11	7643	8668	2807	222	1041	960	8927	1000	1717	
+
+Q 96   2805	7526	2965	3433	*	2669	6296	7392	3544	5815	*	3643	*	4286	7128	3408	3488	6471	6320	7412	96
+       0	*	*	*	*	0	*	8655	0	1382	
+
+A 97   3916	5743	1733	3269	*	2772	*	7127	3989	*	*	3794	*	3749	5307	4004	4672	6540	7436	7930	97
+       11	7087	*	1317	740	*	*	8326	1015	0	
+
+F 98   4939	*	*	6087	1029	7952	*	7855	*	7381	7207	*	5364	*	*	6564	*	6563	2725	2030	98
+       0	*	*	*	*	*	*	8323	0	0	
+
+H 99   4985	7514	*	*	8101	6520	521	6715	*	7054	6560	4146	*	3895	5195	6493	5866	5458	*	5499	99
+       0	*	*	*	*	*	*	8323	0	0	
+
+T 100  7456	7732	4750	4438	6866	*	6500	3188	4144	5660	*	4251	*	6552	4223	4314	1323	3112	6860	6713	100
+       0	*	*	*	*	*	*	8317	0	0	
+
+Y 101  6771	*	*	*	2936	*	6328	7041	*	5533	6945	*	*	*	*	*	6726	4319	5105	470	101
+       0	*	*	*	*	*	*	8317	0	0	
+
+G 102  2374	*	8130	5044	*	1636	*	7242	5230	*	*	6149	*	6025	3578	2632	3246	6219	5322	*	102
+       0	*	*	*	*	*	*	8317	0	0	
+
+L 103  4380	4860	*	*	2422	6209	*	2048	*	3072	3505	*	*	7041	*	7217	5985	2197	*	5625	103
+       6	8034	*	2585	263	*	*	8317	1000	0	
+
+E 104  6319	*	2782	1406	6385	7112	5644	4857	6132	2561	*	7388	*	4656	5877	5697	5279	4864	5567	4499	104
+       22	6022	*	1671	544	*	*	8317	1075	0	
+
+W 105  7298	*	*	*	4811	*	7795	4408	6203	4429	7039	7375	*	7245	7394	*	*	6219	539	3074	105
+       133	3503	*	1515	621	*	*	8317	1677	0	
+
+T 106  5025	*	3316	4423	5621	4521	4771	5917	4619	6106	8945	2612	7509	4527	4279	4021	1817	5883	7182	6076	106
+       13	6758	*	2130	374	0	*	8314	1038	1003	
+
+P 107  3704	*	3453	3570	*	5689	5729	*	3678	6242	*	5555	1274	5133	5112	3516	5345	*	*	6167	107
+       62	4561	*	2554	269	*	*	8317	1295	0	
+
+N 108  5002	6093	2005	3255	6388	2507	4455	7566	3868	7356	*	3579	7627	5103	5898	4071	4146	5916	*	5663	108
+       140	3435	*	2333	319	*	*	8317	1771	0	
+
+Y 109  4698	*	6708	3237	6114	3977	4338	7786	3342	5019	5069	4492	*	3707	3182	3863	4272	5095	6571	2615	109
+       27	5753	*	0	*	0	*	8316	1101	1000	
+
+V 110  5226	6123	*	*	5420	*	*	1115	7911	2681	4738	*	*	*	*	7561	5207	2140	*	5881	110
+       0	*	*	*	*	*	*	8310	0	0	
+
+R 111  4073	*	4631	4837	7175	*	8091	3482	3680	4993	*	6461	*	4528	2977	3890	2200	2490	*	6504	111
+       0	*	*	*	*	*	*	8310	0	0	
+
+W 112  7257	*	*	*	1140	6590	8294	5750	*	4931	6125	*	7617	*	*	*	7687	5486	1523	3643	112
+       0	*	*	*	*	*	*	8310	0	0	
+
+T 113  5168	*	*	7682	2513	4995	7282	5184	6002	3568	5820	8064	*	5864	5287	4258	5309	6097	5550	1154	113
+       0	*	*	*	*	*	*	8310	0	0	
+
+V 114  5189	6874	*	7257	3954	*	*	1907	*	3350	6946	6425	*	6087	7527	5384	6561	1220	*	5342	114
+       10	7249	*	1000	1000	*	*	8310	1008	0	
+
+D 115  6692	*	465	5750	*	3642	*	7055	7461	*	*	2744	*	7761	*	*	*	*	*	*	115
+       37	5316	*	1617	569	*	*	8310	1172	0	
+
+G 116  5514	*	2264	6003	*	921	*	7461	6305	*	7417	3398	7926	6104	4620	4784	7868	*	7091	*	116
+       8	7461	*	1000	1000	*	*	8310	1001	0	
+
+Q 117  5045	*	5500	3035	7687	6347	5846	3197	2329	5026	6296	6039	*	3063	4181	5205	4187	2577	*	*	117
+       0	*	*	*	*	*	*	8310	0	0	
+
+E 118  4147	*	6931	2549	6683	*	5760	5427	4481	2644	5376	7636	1904	5214	5277	5473	4144	3987	*	5875	118
+       16	6483	*	2161	365	*	*	8310	1046	0	
+
+V 119  4806	7413	*	7738	5223	7674	6201	2265	6483	5071	5804	6981	7435	5290	6290	4812	2822	1669	6994	3470	119
+       0	*	*	*	*	*	*	8310	0	0	
+
+R 120  4418	5835	6301	7558	3568	4005	3604	7617	4646	5583	6254	5828	5391	6494	1769	5412	5958	4984	2805	4330	120
+       10	7123	*	0	*	*	*	8310	1008	0	
+
+K 121  6309	6576	4268	3270	*	6486	5304	5215	4101	5542	5350	6337	*	4517	2693	3763	1890	3329	*	*	121
+       10	*	7124	*	*	*	*	8310	0	0	
+
+T 122  4399	*	6069	5617	2839	6546	4762	3198	6670	3144	3889	5919	6891	4974	5591	4578	4845	2476	5936	3637	122
+       41	6233	6074	1921	442	0	*	8293	1078	1008	
+
+E 123  4991	*	3584	5537	7435	5847	5336	7314	2740	5062	7945	3312	3988	5018	3582	3667	2693	4889	7235	3756	123
+       59	5955	5397	2401	303	*	0	8265	1139	1092	
+
+G 124  2960	*	4274	6347	5649	3275	6271	4845	4072	6242	6441	2335	3790	4435	3358	4309	4283	5800	7491	6288	124
+       266	3108	4249	1867	462	1829	477	8226	2592	1332	
+
+G 125  3327	*	3165	4205	7396	3577	5412	5938	3608	4869	6028	3016	5233	4289	4693	3373	3342	5987	*	5471	125
+       252	5137	2922	1717	523	1537	609	8184	1294	1666	
+
+Q 126  2640	*	2503	3023	7096	3711	5932	6523	3678	8050	*	4789	3892	3591	6768	3963	3964	7264	*	5892	126
+       360	2731	3830	2114	379	1887	455	7995	2208	2513	
+
+V 127  2969	6487	3824	6170	6371	3581	*	3439	5501	3180	5275	4593	4870	5762	6758	3915	4315	2396	*	5584	127
+       302	3236	3595	1978	422	2418	299	7913	2283	2504	
+
+S 128  3411	*	4847	4071	5787	2815	5500	4296	4088	6257	6632	3630	3472	5599	4683	5342	3910	4105	3602	4860	128
+       383	2425	4412	1640	558	1000	1000	7901	2418	2761	
+
+N 129  3472	*	4029	4985	7531	2832	5265	3960	4839	5371	7376	4988	1980	4102	7252	4849	4381	5354	6824	4321	129
+       533	1804	5479	2572	266	448	1905	8099	3057	2204	
+
+L 130  5176	*	*	*	1818	7131	7536	5325	*	3663	5449	*	2321	*	5710	3829	4895	4648	4744	2747	130
+       149	3514	6573	1353	716	1374	703	8195	1645	1447	
+
+T 131  4756	7724	3602	3581	5058	4125	4247	7199	4325	6466	6130	3302	2395	3975	4116	4716	3256	6573	7930	*	131
+       270	2749	5496	591	1574	1199	825	8234	2456	1343	
+
+G 132  4999	6449	4445	2545	7526	4040	5220	6676	3058	4838	6374	4258	6873	2846	3584	3920	4185	5686	5390	5477	132
+       31	5577	*	193	3001	145	3390	8265	1198	1455	
+
+T 133  4129	*	5140	4457	5942	5331	5370	*	4982	6223	7309	4608	807	5875	5900	4047	4960	7771	6842	*	133
+       60	4767	7963	2247	341	*	0	8272	1258	1001	
+
+Q 134  4363	6017	6983	5840	3267	4906	6006	7703	5265	3766	1261	7186	6910	3357	6138	3848	6448	6876	8017	5962	134
+       16	6523	*	1807	485	944	1058	8274	1056	1046	
+
+G 135  3961	*	6750	5291	3193	5147	3707	5449	4286	6344	6392	4561	3716	4709	3528	3119	5472	*	6950	2327	135
+       14	*	6721	*	*	0	*	8277	0	1000	
+
+L 136  4850	*	*	6753	5033	7553	*	2213	*	1580	2766	6046	5303	*	*	6342	*	2740	6737	6489	136
+       26	7180	6487	3000	193	*	0	8272	1026	1049	
+
+R 137  6851	5062	6588	6824	4856	5640	5146	1734	5698	3214	3648	6811	*	5495	4065	5739	4719	3422	6299	3346	137
+       61	4588	*	1000	1000	1843	472	8263	1394	1146	
+
+F 138  3059	7255	*	6087	2711	5132	*	2799	*	1717	3544	*	*	*	*	4138	7929	3849	7226	7193	138
+       25	5878	*	1000	1000	1695	533	8272	1122	1092	
+
+N 139  7246	*	3947	6766	*	4402	*	7194	6166	*	*	1141	6976	4900	7316	2102	3413	6051	*	6917	139
+       35	7316	5808	1000	1000	931	1072	8269	1010	1049	
+
+L 140  6155	6320	7009	*	3963	*	5462	2608	*	1314	5026	4880	*	4642	*	5189	4510	3152	*	5380	140
+       356	5536	2344	1911	446	932	1071	8245	1101	1179	
+
+W 141  2210	*	5757	6075	4483	3244	6300	6147	*	6009	7082	7590	*	6333	6934	6890	6380	7286	1102	4960	141
+       34	*	5440	*	*	5356	36	8056	0	2564	
+
+S 142  3683	*	3282	5015	5490	4706	6787	3777	5904	3588	3609	3160	4374	*	*	3647	5235	2339	*	*	142
+       74	*	4316	*	*	1761	505	8032	0	2667	
+
+S 143  2655	6364	4778	5479	6952	1469	*	7298	*	6809	*	5141	4214	4954	5805	2507	4516	5316	*	6861	143
+       343	5173	2443	1881	457	1834	475	7989	1118	2467	
+
+E 144  5738	*	3335	3027	*	1772	*	4712	5722	7389	6905	4415	5278	*	4781	2230	5089	5941	*	5190	144
+       363	3641	2811	2396	304	1924	441	7932	1467	3059	
+
+S 145  4205	*	2878	4160	4974	2855	6182	5125	6833	4710	*	3632	4732	*	*	2204	3341	4530	*	5872	145
+       166	3198	*	1334	729	2536	273	7845	1588	3648	
+
+A 146  4920	*	5374	7410	3607	4411	6183	3461	6907	4092	7730	3889	3564	*	4593	4156	5347	3238	2141	5339	146
+       282	2953	4361	740	1318	352	2207	7988	1819	3248	
+
+A 147  1904	*	3396	4186	4778	3931	5521	*	4248	5300	5996	3476	4209	4568	7446	2967	5325	7908	6783	7054	147
+       79	5474	5032	0	*	1919	443	8092	1171	1901	
+
+W 148  6227	*	6881	*	3989	5162	6253	5633	6074	4336	4552	5005	7029	*	6160	4732	2223	5992	1324	5205	148
+       9	*	7273	*	*	1338	727	8158	0	1862	
+
+V 149  2389	7277	4085	4147	3318	4315	7702	5210	5432	4497	6566	4807	3291	3689	4212	4592	4218	4365	6175	*	149
+       63	5720	5382	1891	453	2063	395	8177	1092	1549	
+
+G 150  4047	*	5301	4891	*	653	*	*	5196	*	*	4431	5865	4224	*	4526	5150	6140	*	6130	150
+       117	4294	5229	1437	665	1689	536	8239	1343	1606	
+
+Q 151  3736	*	3534	5198	7819	2014	*	4914	3940	4052	7185	4049	3205	5463	5060	4216	4103	5179	*	4929	151
+       464	2031	5048	1771	500	1389	694	8226	3103	1600	
+
+F 152  4749	7351	7757	*	4125	7299	7151	2161	6358	3240	6098	6211	2259	5581	6701	5333	3666	3178	4805	5477	152
+       288	2724	5075	1588	583	682	1408	8236	2072	1592	
+
+D 153  4433	7051	1391	3963	*	5035	5852	*	5051	*	7071	2310	3813	*	*	3976	3920	7146	*	7408	153
+       44	5054	*	1419	675	495	1785	8210	1243	1487	
+
+E 154  3262	*	3643	3774	3994	3901	5998	6258	6611	5692	*	5249	3961	4341	4570	5152	4284	5613	2387	3614	154
+       152	3848	5028	1270	772	1065	938	8260	1462	1111	
+
+S 155  2932	7342	3512	3823	*	3952	7433	6334	3954	5028	5624	3741	4956	5329	5002	2677	2750	5297	*	6302	155
+       370	2524	4261	1081	923	886	1124	8216	2393	1332	
+
+K 156  4122	*	3255	3540	6275	3826	5469	4892	3154	5268	*	3922	4234	3588	5552	5295	2915	4936	7427	4216	156
+       119	4186	5360	1118	891	1635	561	8087	1559	1537	
+
+L 157  2280	*	4725	4228	2560	3662	*	5836	6598	3076	5167	4610	7481	4341	6373	4774	3815	5143	7706	4991	157
+       23	5964	*	0	*	2122	377	8090	1304	1528	
+
+P 158  5064	*	4259	5131	*	4427	*	6085	4425	*	*	5808	639	5330	5417	5508	5015	7114	*	6225	158
+       34	5404	*	904	1103	625	1508	8124	1223	1399	
+
+L 159  2195	*	5422	5918	2256	4091	6260	7221	5320	3783	6249	4776	4929	6194	7824	3530	3621	4415	7339	4843	159
+       63	4856	6978	1463	650	1248	789	8214	1225	1226	
+
+F 160  4235	*	4033	3492	4883	*	5264	4551	3904	8007	6010	5701	7216	4946	4525	3908	2310	2844	6016	3586	160
+       27	*	5752	*	*	1950	432	8183	0	1167	
+
+Q 161  2207	*	*	6382	3221	7694	6244	6507	7118	3625	1327	*	*	5396	*	5502	5158	5405	*	4294	161
+       63	*	4558	*	*	1331	731	8202	0	1279	
+
+F 162  6396	*	4594	2674	4389	7717	4435	5181	4111	3917	6290	4698	*	3601	3758	3288	3877	4291	*	3178	162
+       0	*	*	*	*	*	0	8235	0	1553	
+
+I 163  6807	*	*	*	3324	*	*	1939	*	6008	*	*	*	*	*	7039	6655	1120	*	2863	163
+       6	*	7879	*	*	*	0	8235	0	1553	
+
+N 164  6176	*	721	4249	*	5483	6150	*	4015	*	*	5165	*	4760	3306	4837	5183	*	*	*	164
+       0	*	*	*	*	4058	89	8239	0	1590	
+
+W 165  5706	*	3870	6319	6310	4886	6360	*	7818	*	*	3891	6976	*	5236	4820	6210	*	2006	1193	165
+       6	*	7899	*	*	1857	466	8242	0	1553	
+
+V 166  6080	7085	*	*	2966	*	*	2159	*	3914	6722	*	*	*	*	7480	6088	983	*	5385	166
+       0	*	*	0	*	220	2824	8257	1000	1424	
+
+K 167  5661	*	5181	4639	*	*	5489	*	2604	6449	*	5083	*	5769	897	4370	4257	5391	*	7628	167
+       7	*	7664	*	*	*	0	8237	0	1020	
+
+V 168  3613	5552	7774	*	4206	6054	5810	2538	7477	3865	5114	*	8061	*	*	6186	5684	1372	7549	3300	168
+       14	7468	8045	0	*	436	1938	8236	1047	1062	
+
+Y 169  5606	6296	4497	4135	4744	*	5794	6740	5525	6061	*	6316	6813	5277	4757	4420	4476	5983	3122	1128	169
+       30	5625	*	998	1002	886	1124	8196	1259	1015	
+
+K 170  3480	4895	6085	3814	6403	3385	6240	5882	4184	7238	6757	4368	4197	1713	5022	3992	4414	5467	7942	7137	170
+       0	*	*	*	*	0	*	8067	0	1000	
+
+Y 171  5381	2837	5589	5727	3419	5823	*	5312	3657	3008	5924	3750	2972	*	3646	6926	*	*	5380	2988	171
+       50	5074	7828	974	1027	*	*	7862	1154	0	
+
+T 172  4161	*	2752	3176	*	4244	5637	5123	3447	6284	*	3878	3634	3598	5586	3033	4516	4377	7602	7006	172
+       72	4787	6350	201	2946	447	1908	7586	1170	1058	
+
+P 173  3319	7418	2647	3951	*	2545	*	7089	6549	5331	5462	3985	2545	6641	7221	3692	5580	4750	4931	6240	173
+       125	4159	5218	2589	262	1919	443	7378	1476	1080	
+
+G 174  2786	7149	3511	3503	7179	2965	4669	5525	3939	5443	*	3067	5822	4166	5188	3121	5295	5567	*	7299	174
+       283	3391	3594	534	1692	1593	581	7136	1396	1281	
+
+Q 175  3301	5697	3289	3884	6032	2580	6848	3642	4248	5189	6691	3732	4769	3845	*	3614	4713	4413	*	*	175
+       406	2316	4483	2519	277	2098	384	6807	1919	1851	
+
+G 176  4763	3894	4805	3015	*	3156	5504	4715	4706	5608	*	2699	4318	5758	4707	2772	4588	4426	6659	*	176
+       164	3216	*	866	1148	1703	529	6586	1403	1855	
+
+E 177  3454	*	*	3859	5529	5932	6088	2395	*	3787	3940	*	3205	5904	5780	4001	5460	2547	*	4062	177
+       268	2857	4986	724	1341	2760	230	6638	1575	1587	
+
+G 178  3624	6773	*	6391	4778	2063	*	4809	4977	6378	6263	5614	5660	5458	3270	2490	2683	5679	6690	*	178
+       273	2740	5456	1484	638	1068	935	6628	1719	1697	
+
+G 179  4707	559	*	4903	*	4364	*	5174	6119	*	*	6730	6552	6647	5545	5757	4788	6125	*	4700	179
+       128	4250	4957	1208	818	2508	279	6636	1290	1432	
+
+S 180  3287	5800	1476	5402	*	3985	6602	*	4974	*	*	4207	3480	5620	5582	2781	4451	*	*	6074	180
+       219	3281	4721	2605	259	120	3653	6623	1437	1471	
+
+D 181  3275	*	2804	4316	5650	3996	*	5603	5331	5063	*	*	1481	4093	7082	4075	4015	*	*	*	181
+       46	5000	*	3846	104	1143	870	6692	1129	1163	
+
+F 182  3291	3456	3569	3261	3194	6435	6342	*	3869	*	*	4416	3391	5160	*	2906	3878	4968	*	6259	182
+       465	1910	6714	1943	435	*	0	6707	1889	1136	
+
+T 183  4084	6454	2821	3202	*	3314	*	5417	5025	6456	*	4815	3767	5829	*	3290	1813	*	*	*	183
+       215	2978	6468	1618	569	*	0	6704	1433	1174	
+
+L 184  2584	*	5099	4586	4347	2632	6306	*	3437	4484	6266	5175	6234	5075	4301	3826	3361	5396	*	3711	184
+       211	2878	*	1806	486	*	0	6668	1510	1239	
+
+D 185  3058	6397	2396	4246	5887	5199	*	*	4446	4309	*	2288	5529	6365	4637	3386	4523	*	*	3900	185
+       191	3123	6768	776	1266	1993	417	6603	1690	1239	
+
+W 186  5185	6362	*	*	4025	*	5421	5309	*	5639	5459	*	*	*	5382	6460	*	*	1345	1401	186
+       361	2367	5197	1933	438	*	0	6594	1583	1245	
+
+T 187  4185	*	6609	6075	4997	4350	*	2508	6249	4281	4452	3594	4100	5465	3836	5309	4021	6279	2440	4807	187
+       58	5110	6556	2000	415	*	0	6588	1059	1356	
+
+D 188  3867	*	2307	2654	*	4498	6686	*	3999	*	*	2252	4700	4093	6394	3275	4976	*	*	*	188
+       287	3360	3588	2000	415	1826	478	6585	1283	1401	
+
+N 189  1724	*	2911	4811	*	3587	*	4709	4595	5078	*	4609	4236	3702	4484	4833	4803	4326	*	*	189
+       649	2040	3067	1096	910	1856	466	6515	1764	1588	
+
+F 190  5084	*	*	6447	1702	*	5837	*	*	*	4526	5920	5172	5881	*	6513	*	4902	5274	1122	190
+       234	2737	*	903	1104	788	1248	6433	1799	1816	
+
+D 191  5473	6427	3738	3395	6268	5623	6495	*	5805	5360	4562	2686	6304	2554	4508	3150	2979	6249	5308	7219	191
+       32	5508	*	1549	603	782	1257	6609	1107	1326	
+
+T 192  4551	*	3343	3854	*	3208	6714	*	3745	*	*	1629	*	3520	5641	3807	3576	6457	*	*	192
+       19	6246	*	1000	1000	446	1911	6599	1043	1110	
+
+F 193  4521	*	*	*	4104	*	*	4968	*	1198	3892	6057	2418	6691	6680	5037	5455	4498	5732	5311	193
+       18	6307	*	0	*	*	0	6627	1072	1000	
+
+D 194  *	*	1846	*	*	4791	*	*	*	*	*	1182	*	*	6530	3210	2987	*	*	*	194
+       45	*	5014	*	*	*	0	6627	0	1000	
+
+G 195  2957	*	4061	4618	4713	4416	6668	5705	5052	2209	4596	4745	4652	4356	6707	3205	4711	5192	6517	4368	195
+       0	*	*	4000	93	*	0	6596	1000	1308	
+
+S 196  4730	*	4376	4162	*	4241	6887	*	3672	5780	6909	3865	6095	3790	6595	4300	1271	4515	6517	7276	196
+       21	*	6098	*	*	3095	180	6596	0	1308	
+
+R 197  7056	*	5701	3907	*	3979	6268	4922	4313	4910	*	6719	*	2087	3074	3216	2360	4389	*	*	197
+       0	*	*	*	*	*	0	6584	0	1383	
+
+W 198  5317	*	*	*	5105	*	*	4388	3616	4164	5535	5468	*	3531	3674	*	5478	4227	1113	6217	198
+       83	4157	*	1058	944	1119	890	6584	1145	1383	
+
+G 199  4185	*	3441	3022	*	2887	6903	6403	3739	5107	5031	4352	4410	3989	2742	3840	5072	6391	6659	6632	199
+       0	*	*	*	*	2817	221	6616	0	1226	
+
+K 200  3120	*	3121	3890	*	5823	*	6077	3163	4457	4956	5730	6145	2263	3223	4272	4171	5901	6921	*	200
+       57	6551	5161	3000	193	1024	976	6617	1000	1187	
+
+G 201  1809	*	5353	6193	4579	4183	*	5476	*	2439	2575	*	*	*	*	5072	4460	5640	*	3187	201
+       40	6060	6320	0	*	0	*	6575	1064	1265	
+
+D 202  4006	*	3742	3462	*	2026	*	5951	2739	*	*	3358	*	4661	2733	4628	5376	6824	*	*	202
+       19	6225	*	0	*	0	*	6606	1018	1068	
+
+W 203  5705	*	5495	5156	5629	*	4853	*	5393	6507	*	4017	*	4153	4658	6285	*	*	1238	2020	203
+       0	*	*	*	*	*	*	6610	0	0	
+
+T 204  3682	*	5330	4467	5196	*	5427	6751	5037	*	*	6711	4367	4359	6771	3751	2274	1454	*	*	204
+       91	6104	4418	1585	585	*	*	6568	1000	0	
+
+F 205  5971	*	5917	*	1406	*	*	6441	4443	5529	6426	4378	*	3280	2142	*	5343	4930	3957	*	205
+       150	3338	*	1752	508	1946	433	6203	1237	1196	
+
+D 206  5184	*	3241	*	*	4105	*	*	4388	3098	*	*	1181	3414	3194	*	*	*	*	*	206
+       0	*	*	*	*	0	*	5551	0	1133	
+
+G 207  5334	*	*	4373	*	5448	*	*	1807	3303	2685	4827	5585	4687	2656	5059	3685	*	*	*	207
+       0	*	*	*	*	*	*	5688	0	0	
+
+N 208  5670	*	*	3962	3839	*	5635	*	*	*	*	625	*	*	*	3774	5354	*	*	3638	208
+       0	*	*	*	*	*	*	5688	0	0	
+
+R 209  3783	*	*	4158	*	*	*	*	3960	3248	3642	3571	*	4292	2147	2424	*	*	*	3751	209
+       115	*	3703	*	*	*	*	5609	0	0	
+
+V 210  2730	4238	3782	*	*	3285	*	3003	*	*	4893	4539	4336	*	*	*	*	1714	*	3941	210
+       313	4336	2780	2322	322	0	*	4587	1068	1147	
+
+D 211  *	*	1414	*	*	4290	*	*	*	*	*	2619	*	*	3870	*	2718	4171	*	2890	211
+       0	*	*	*	*	*	0	4532	0	1271	
+
+L 212  *	*	*	*	1425	2384	*	3325	*	2912	*	*	*	*	*	*	*	*	3730	2967	212
+       241	*	2701	*	*	0	*	4012	0	1271	
+
+T 213  2422	*	*	4073	*	2484	*	*	*	*	*	*	*	*	3851	4121	1967	*	*	2376	213
+       280	*	2505	*	*	*	0	3943	0	1127	
+
+D 214  *	*	1724	2584	*	*	*	*	3690	*	*	*	1142	*	*	*	*	*	*	*	214
+       0	*	*	*	*	211	2881	3698	0	1430	
+
+K 215  *	*	2914	3103	*	1622	*	*	4034	4121	*	2951	*	*	*	3700	*	*	*	3305	215
+       0	*	*	*	*	*	0	4081	0	1018	
+
+N 216  4267	3305	4308	*	*	*	*	*	*	*	*	1242	*	2945	3751	2560	*	*	*	*	216
+       0	*	*	*	*	*	0	4081	0	1018	
+
+I 217  1575	*	*	*	*	*	*	2857	*	*	3929	*	*	*	*	*	3751	1372	*	*	217
+       0	*	*	*	*	*	0	4081	0	1018	
+
+Y 218  2635	*	2583	3301	*	3751	*	3952	4002	4300	*	*	*	*	*	*	2895	3022	*	4034	218
+       0	*	*	*	*	0	*	4081	0	1018	
+
+S 219  *	*	*	*	3883	*	*	2669	*	*	*	*	*	*	*	4154	3144	975	*	3366	219
+       159	3264	*	2322	322	*	*	4141	1147	0	
+
+R 220  *	*	4358	3013	*	*	*	4009	1292	*	*	4089	*	*	2642	2858	*	*	*	*	220
+       0	*	*	*	*	*	*	4141	0	0	
+
+D 221  *	*	908	3999	*	3264	*	*	*	*	*	1991	*	4358	*	*	*	*	*	*	221
+       0	*	*	*	*	*	*	4141	0	0	
+
+G 222  *	*	4009	*	*	351	*	*	3264	*	*	4333	*	*	*	*	*	*	*	*	222
+       0	*	*	*	*	*	*	4141	0	0	
+
+M 223  2709	*	*	*	*	*	4009	2493	2683	*	3241	*	*	3215	*	*	4257	2928	*	4200	223
+       0	*	*	*	*	*	*	4141	0	0	
+
+L 224  2709	4028	*	*	3834	*	*	3187	*	1181	3883	*	*	*	*	*	*	3366	*	*	224
+       0	*	*	*	*	*	*	4141	0	0	
+
+I 225  *	*	*	*	*	*	*	4002	2002	*	*	3921	*	*	2353	*	3658	1527	*	*	225
+       0	*	*	*	*	*	*	3864	0	0	
+
+L 226  *	*	*	*	3737	*	*	1824	*	780	*	*	*	*	*	*	*	4055	*	*	226
+       0	*	*	*	*	*	*	3864	0	0	
+
+A 227  1150	*	3921	*	*	3929	*	3894	3871	*	*	*	*	*	*	4055	2172	*	*	*	227
+       0	*	*	*	*	*	*	3864	0	0	
+
+L 228  *	*	*	*	*	*	*	2034	*	780	*	*	*	*	*	4236	4201	3921	*	*	228
+       0	*	*	*	*	*	*	3864	0	0	
+
+T 229  4055	*	2338	4201	*	4223	*	*	2783	4236	*	*	*	*	*	4038	1415	*	*	*	229
+       0	*	*	*	*	*	*	3864	0	0	
+
+R 230  2861	*	4134	*	*	*	*	*	1798	*	*	4084	*	2513	2956	3583	*	*	*	3809	230
+       0	*	*	*	*	*	*	3786	0	0	
+
+K 231  *	*	*	788	*	2924	*	*	3893	*	*	*	2852	*	*	*	3583	*	*	*	231
+       0	*	*	*	*	*	*	3786	0	0	
+
+G 232  *	*	3293	*	*	441	*	*	*	*	*	3798	*	*	*	*	*	3479	*	*	232
+       0	*	*	*	*	*	*	3588	0	0	
+
+Q 233  3668	*	1174	*	*	*	*	*	*	*	*	3547	*	2508	*	3797	2788	*	*	*	233
+       0	*	*	*	*	*	*	3419	0	0	
+
+E 234  *	*	*	673	*	*	*	*	*	*	*	*	*	3797	*	*	2635	2838	*	*	234
+       0	*	*	*	*	*	*	3419	0	0	
+
+S 235  *	*	2581	*	*	1628	*	3451	*	3417	*	3228	*	*	*	2975	3467	*	*	*	235
+       0	*	*	*	*	*	*	3032	0	0	
+
+F 236  *	*	*	*	2102	*	*	*	*	*	*	*	*	*	*	*	*	*	*	383	236
+       0	*	*	*	*	*	*	3032	0	0	
+
+N 237  3467	*	*	*	*	*	*	*	*	*	*	2102	*	*	*	1124	2200	*	*	*	237
+       0	*	*	*	*	*	*	3032	0	0	
+
+G 238  *	*	*	*	*	1150	*	3417	*	*	*	*	*	*	*	*	3228	1519	*	*	238
+       0	*	*	*	*	*	*	3032	0	0	
+
+Q 239  *	*	*	*	*	*	*	*	*	*	*	*	*	564	*	*	1628	*	*	*	239
+       0	*	*	*	*	*	*	3032	0	0	
+
+V 240  *	*	*	*	*	*	*	*	*	1834	*	*	963	*	*	*	*	2277	*	*	240
+       0	*	*	*	*	*	*	2350	0	0	
+
+P 241  *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	241
+       0	*	*	*	*	*	*	1797	0	0	
+
+R 242  2123	*	*	*	*	*	*	*	*	2038	*	*	*	*	1763	*	*	2106	*	*	242
+       0	*	*	*	*	*	*	1797	0	0	
+
+D 243  *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	243
+       0	*	*	0	*	*	*	1797	0	0	
+
+//
+�HHsearch 1.5
+NAME  f10edaeff439be4afbba7757c8cac254
+FAM   
+FILE  f10edaeff439be4afbba7757c8cac254
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:38:56 2013
+LENG  64 match states, 64 columns in multiple alignment
+FILT  114 out of 272 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  6.0 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCHHHCCCCHHHHHHHHHHHCCCCCEEEECCCCCCCCCCCCCEEEEEECCCCCEEEECCCCC
+>ss_conf PSIPRED confidence values
+9877687796999999999988899838997399841677789979999899995986089689
+>Consensus
+xxsWPELVGxxxxxAxxxIxxdxpxxxvxvlxxgxxvtxDfxxxRVxvxvdxxgxVxxxxPxvG
+>f10edaeff439be4afbba7757c8cac254
+LKSFPEVVGKTVDQAREYFTLHYPQYNVYFLPEGSPVTLDLRYNRVRVFYNPGTNVVNHVPHVG
+>gi|41053029|dbj|BAD07960.1| hypothetical protein [Oryza sativa Japonica Group]gi|125537886|gb|EAY84281.1| hypothetical protein OsI_05660 [Oryza sativa Indica Group]gi|125580633|gb|EAZ21564.1| hypothetical protein OsJ_05192 [Oryza sativa Japonica Group]
+-VRWAEVLGELAPLAVTQISNDRPDVAVEVLlrDAAAVVSPEFNPKRVRVFVDNNFIVVK-VPVIS
+>gi|186528913|ref|NP_199170.2| Serine protease inhibitor, potato inhibitor I-type family protein [Arabidopsis thaliana]gi|332007600|gb|AED94983.1| Serine protease inhibitor, potato inhibitor I-type family protein [Arabidopsis thaliana]
+-SSWPELVGRRGEEVKEIIDRENTKVTAKIISENAVVLAVVICDRVYVRVNDQGIVTR-TPI--
+>gi|87198879|ref|YP_496136.1| hypothetical protein Saro_0857 [Novosphingobium aromaticivorans DSM 12444]gi|87134560|gb|ABD25302.1| conserved hypothetical protein [Novosphingobium aromaticivorans DSM 12444]
+------HLGQKATGELGVELLRQTAARVlRWVPPRTAVTMDYRADRVTVGYDDDYTIVR------
+>gi|238498650|ref|XP_002380560.1| conserved hypothetical protein [Aspergillus flavus NRRL3357]gi|317155796|ref|XP_001825378.2| hypothetical protein AOR_1_770074 [Aspergillus oryzae RIB40]gi|220693834|gb|EED50179.1| conserved hypothetical protein [Aspergillus flavus NRRL3357]
+-----KLAGKTITEGTsdvtSFAKKDLPQS-HRIVKPGDMMTMDYKPERLNVHLDEQGTVHD------
+>gi|195657573|gb|ACG48254.1| hypothetical protein [Zea mays]
+-QTWPDLVGYAVVDAVNIIRQDNPNItEVRVLPPDgVPSPLQDGAIRVCIYNDivnGQAVVVNPAPYIG
+>gi|168066728|ref|XP_001785285.1| predicted protein [Physcomitrella patens subsp. patens]gi|162663119|gb|EDQ49902.1| predicted protein [Physcomitrella patens subsp. patens]
+--GWPDLAGLDCVAGMNSIKQDYLGVTIVYGPKGFMHIQDFQKDRVWVDINPDGTIAA-IPAIG
+>gi|254418094|ref|ZP_05031818.1| hypothetical protein BBAL3_404 [Brevundimonas sp. BAL3]gi|196184271|gb|EDX79247.1| hypothetical protein BBAL3_404 [Brevundimonas sp. BAL3]
+--------------------------NRRVTCTTCPVSQDYSAYRLNIFYNADtGIIEQ------
+>gi|325926183|ref|ZP_08187541.1| hypothetical protein XPE_1507 [Xanthomonas perforans 91-118]gi|325543365|gb|EGD14790.1| hypothetical protein XPE_1507 [Xanthomonas perforans 91-118]
+-----SLVGQPLTDAVGEQARSDAGAkSVRVLKPGQMTTMEFNGERLNLEVDAKNVITS------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+L 1    *	*	*	*	*	*	*	*	*	913	*	*	*	*	*	*	*	1093	*	*	1
+       0	*	*	*	*	*	*	1459	0	0	
+
+K 2    *	*	4825	6191	*	6383	*	*	3748	*	6012	4534	5377	2482	6238	2143	1631	*	5547	5723	2
+       0	*	*	*	*	*	*	4669	0	0	
+
+S 3    3511	6297	*	3055	6024	3940	6034	*	5130	*	*	6066	5304	*	5877	1038	3175	*	*	*	3
+       0	*	*	*	*	*	*	4938	0	0	
+
+F 4    *	*	*	*	4786	*	*	*	*	*	*	*	*	*	*	*	*	*	53	*	4
+       0	*	*	*	*	*	*	4935	0	0	
+
+P 5    4150	*	*	*	*	*	*	*	5759	*	*	*	256	4678	*	5008	5833	*	*	*	5
+       0	*	*	*	*	*	*	5377	0	0	
+
+E 6    6254	*	3342	557	*	5436	*	*	3342	*	*	6318	5619	6060	*	5283	*	6246	*	*	6
+       0	*	*	*	*	*	*	6019	0	0	
+
+V 7    4665	5041	*	*	3822	*	6122	6844	*	597	5954	*	*	*	*	6155	*	3064	6641	6004	7
+       0	*	*	*	*	*	*	6327	0	0	
+
+V 8    4232	*	*	*	*	*	*	3480	4801	3271	4881	*	*	5685	*	*	4776	671	*	*	8
+       0	*	*	*	*	*	*	6365	0	0	
+
+G 9    *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	9
+       0	*	*	*	*	*	*	6365	0	0	
+
+K 10   4985	*	6374	4266	6925	*	5391	5285	1673	4325	5106	6581	*	3025	4294	5223	4477	3229	3718	6002	10
+       0	*	*	*	*	*	*	6365	0	0	
+
+T 11   4628	6447	3166	*	6447	*	5942	*	3459	*	5481	3396	2293	5342	5247	2896	2410	5437	*	*	11
+       0	*	*	*	*	*	*	6365	0	0	
+
+V 12   1755	5971	*	5771	4951	2108	*	4074	6725	4075	4668	6845	*	5840	6533	6126	6334	3176	*	3982	12
+       0	*	*	*	*	*	*	6365	0	0	
+
+D 13   5099	*	3036	1918	4561	5723	5611	6654	5493	4211	6586	5472	*	5282	5172	3736	2346	4102	*	*	13
+       86	*	4114	*	*	*	*	6365	0	0	
+
+Q 14   3219	*	2429	1807	6623	5372	5878	6821	5083	4434	6806	5928	5731	3850	*	4485	5776	4331	*	4083	14
+       12	6957	*	0	*	0	*	6344	1000	1346	
+
+A 15   513	6528	5391	3892	*	4727	*	*	*	*	*	6552	*	6151	6508	4039	5375	4686	*	*	15
+       46	*	5007	*	*	*	*	6365	0	0	
+
+R 16   3744	*	*	3920	*	6002	*	4374	1841	3611	4576	6300	*	*	4339	4241	3765	2424	*	5819	16
+       106	3823	*	2057	396	0	*	6301	1332	1109	
+
+E 17   2923	4845	4613	2321	*	3795	5820	5765	3278	3664	5006	4986	5461	4398	4740	4515	4157	4952	*	*	17
+       0	*	*	*	*	*	*	6365	0	0	
+
+Y 18   3393	*	*	3773	3904	6547	7276	2450	3086	5195	6537	*	6348	3824	4716	5453	3120	2990	6528	6222	18
+       0	*	*	*	*	*	*	6365	0	0	
+
+F 19   4183	5621	5063	4943	6222	*	*	580	6622	6547	*	*	6915	4168	5567	5034	6348	5001	*	*	19
+       0	*	*	*	*	*	*	6365	0	0	
+
+T 20   3613	*	6640	2549	*	*	6586	4118	1987	2362	5552	6665	*	4753	4201	5057	5123	5273	6022	*	20
+       29	*	5636	*	*	*	*	6365	0	0	
+
+L 21   3686	*	4527	3765	5005	5813	4440	*	2829	4098	6178	7151	*	2945	2020	3806	4957	6608	*	*	21
+       0	*	*	*	*	0	*	6359	0	1082	
+
+H 22   4210	*	1485	1535	6535	*	6227	6884	4031	6340	*	*	5601	5461	5571	4913	5109	6516	*	*	22
+       20	6200	*	0	*	*	*	6377	1028	0	
+
+Y 23   3790	5664	4797	4256	*	5031	7028	*	4197	3912	4418	2002	*	4757	2083	*	5396	*	6551	4142	23
+       100	6543	4145	2807	222	*	*	6377	1005	0	
+
+P 24   3719	*	*	5159	*	4610	*	*	*	5099	6437	*	835	5896	4720	2665	4924	6875	*	*	24
+       16	6463	*	3907	100	*	0	6354	1005	1346	
+
+Q 25   5154	*	1931	3765	*	1958	*	5014	3655	6399	*	3825	6517	4960	5733	3560	*	*	*	4669	25
+       28	5707	*	0	*	*	0	6354	1032	1346	
+
+Y 26   2091	5600	6358	6832	6836	5038	*	4481	4634	3039	6446	6548	*	6188	6886	4368	5782	1503	*	6151	26
+       453	2321	3849	97	3949	0	*	6439	2194	1346	
+
+N 27   4817	*	3905	3786	*	6943	5788	4069	3404	5046	6985	2996	4789	3207	3245	5204	3016	3948	*	5968	27
+       0	*	*	*	*	0	*	6297	0	1332	
+
+V 28   2601	*	7096	*	5093	6226	4708	2181	*	6159	5191	*	6550	*	6390	5871	5181	1376	*	4941	28
+       132	3682	6693	0	*	*	*	6352	1516	0	
+
+Y 29   6156	*	5508	3432	*	*	*	2899	4540	5094	5711	5417	6240	4027	1327	*	5818	3114	*	5948	29
+       11	7087	*	0	*	0	*	6361	1118	1065	
+
+F 30   6875	*	*	*	3507	*	6600	2313	6638	4102	*	6880	7195	*	*	*	4680	1058	4943	4143	30
+       0	*	*	*	*	*	*	6352	0	0	
+
+L 31   *	*	*	*	5569	4426	5934	2165	6578	1410	5285	*	*	6706	5047	5965	6317	2445	6840	5647	31
+       0	*	*	*	*	*	*	6406	0	0	
+
+P 32   4690	5106	5649	5609	4924	4123	5733	6020	3017	4349	*	*	1602	5337	3066	4413	4522	6390	6717	6772	32
+       0	*	*	*	*	*	*	6406	0	0	
+
+E 33   4368	*	4982	2708	*	5649	7142	*	4070	4372	*	5492	1507	3970	6743	5328	4957	3495	5653	5700	33
+       0	*	*	*	*	*	*	6406	0	0	
+
+G 34   *	*	2387	5965	*	925	5347	*	*	6598	*	3066	*	6407	5243	5008	4557	*	*	*	34
+       40	5836	6715	0	*	*	*	6406	1071	0	
+
+S 35   4043	4227	2866	4891	6241	7066	5748	*	*	*	4108	*	*	2783	5840	2007	2644	4437	*	*	35
+       0	*	*	0	*	0	*	6415	1065	1065	
+
+P 36   2226	*	*	*	5391	5231	*	3588	5751	4224	3137	5618	2081	*	5154	5274	4576	3408	*	5634	36
+       73	4775	6285	1170	848	*	*	6406	1138	0	
+
+V 37   3087	*	6587	5323	5880	*	6244	4404	5127	4787	3459	*	4963	6459	4987	4582	5227	1199	5363	6571	37
+       13	6789	*	629	1502	0	*	6379	1104	1028	
+
+T 38   6504	*	*	*	*	*	7381	4511	*	5837	*	6020	2424	*	6285	4052	695	5844	*	6407	38
+       0	*	*	*	*	*	*	6406	0	0	
+
+L 39   3611	6532	4955	4883	*	5764	7541	*	3428	3358	1638	*	3092	4382	4218	6284	3959	*	*	6706	39
+       23	5954	*	0	*	*	*	6406	1128	0	
+
+D 40   5965	*	647	2853	*	4009	*	4982	*	*	*	4103	*	5836	*	*	*	5326	*	6329	40
+       0	*	*	*	*	*	*	6406	0	0	
+
+L 41   *	*	5836	*	1330	*	4341	5326	5982	4454	6594	5844	6285	*	*	*	5845	5837	6966	1451	41
+       0	*	*	*	*	*	*	6406	0	0	
+
+R 42   *	4235	3244	6189	5965	5836	*	6135	6014	7233	*	2404	*	4685	1331	4687	*	3416	*	*	42
+       33	5447	*	3217	164	*	*	6406	1072	0	
+
+Y 43   3259	2348	6107	3451	6766	6155	*	3786	6252	4995	5931	4605	1856	6444	7372	4743	4410	6971	*	6730	43
+       0	*	*	*	*	*	*	6406	0	0	
+
+N 44   5312	7222	1728	3400	6547	4596	5686	5836	4519	5087	7096	2019	5125	5243	4935	4959	5444	*	*	6317	44
+       0	*	*	*	*	*	*	6406	0	0	
+
+R 45   *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	45
+       0	*	*	*	*	*	*	6406	0	0	
+
+V 46   *	*	*	*	*	*	*	4238	*	2004	6014	*	*	*	*	*	*	552	*	*	46
+       0	*	*	*	*	*	*	6406	0	0	
+
+R 47   5649	5121	6578	6717	3978	*	*	3732	*	5009	*	2021	*	*	1710	6067	3692	4483	4343	5427	47
+       23	*	5975	*	*	*	*	6406	0	0	
+
+V 48   6029	*	*	*	4903	*	*	1958	*	2036	*	*	*	*	*	*	*	1152	*	*	48
+       14	*	6693	*	*	0	*	6352	0	1028	
+
+F 49   4932	*	5502	4499	1846	6791	5007	3451	5327	5110	5763	5492	*	5724	4175	4908	5787	3896	3749	2949	49
+       0	*	*	0	*	*	0	6415	1065	1065	
+
+Y 50   6926	*	6221	*	4892	6107	5059	3168	6829	3239	6880	5211	*	*	*	*	4094	980	*	3774	50
+       28	5699	*	1763	504	*	0	6415	1176	1065	
+
+N 51   6182	*	754	4704	*	4083	*	*	6776	*	*	2172	5818	6833	*	6870	5065	*	*	*	51
+       75	4561	6949	1613	571	0	*	6415	1192	1065	
+
+P 52   3082	5152	2464	2494	6516	3386	*	6219	4111	6805	*	4912	3754	4742	6474	3562	4193	*	6279	*	52
+       101	4942	4844	1071	932	*	0	6403	1155	1000	
+
+G 53   4183	6097	2347	3847	*	4085	7233	*	4155	3963	*	2409	*	4272	5199	3398	3888	4862	*	6112	53
+       110	4011	6447	1388	694	*	0	6396	1264	1371	
+
+T 54   4302	*	3722	5203	*	973	6358	5604	*	4440	5358	3249	*	5736	5702	4662	4585	*	*	6716	54
+       15	6627	*	487	1805	1639	559	6375	1089	1570	
+
+N 55   6462	*	6178	5953	*	*	*	2141	3203	4744	6046	3342	4511	5681	3157	6627	2980	2644	*	*	55
+       40	5186	*	0	*	0	*	6394	1146	1371	
+
+V 56   *	*	*	*	*	*	*	1746	*	*	*	*	*	5653	*	*	*	552	*	*	56
+       0	*	*	*	*	*	*	6384	0	0	
+
+V 57   2268	*	*	3995	*	*	7076	4361	4750	4887	5360	5294	*	5118	4729	3438	2700	2059	*	*	57
+       0	*	*	*	*	*	*	6384	0	0	
+
+N 58   3715	*	3718	3701	6379	5269	5806	6271	3581	6619	*	3794	*	3026	1968	3932	4843	5475	*	4834	58
+       4009	*	93	*	*	*	*	6381	0	0	
+
+H 59   *	*	*	*	*	*	1591	*	*	*	*	*	1523	*	1643	*	*	*	*	*	59
+       0	*	*	*	*	0	*	2019	0	4199	
+
+V 60   3407	6457	*	4862	*	*	*	2821	*	5843	*	6223	3777	*	*	*	1814	1598	*	*	60
+       0	*	*	*	*	*	*	4818	0	0	
+
+P 61   *	*	*	*	*	*	*	*	*	*	*	*	20	*	*	6152	*	*	*	*	61
+       0	*	*	*	*	*	*	4818	0	0	
+
+H 62   4606	*	*	*	*	*	3109	4647	3413	*	3690	*	*	5013	2470	3231	3586	2295	*	5220	62
+       32	*	5490	*	*	*	*	4818	0	0	
+
+V 63   5125	*	*	*	*	*	*	1260	*	*	4959	*	*	*	4504	*	*	1067	*	*	63
+       0	*	*	0	*	0	*	4829	1065	1065	
+
+G 64   5666	*	*	*	5604	111	*	*	*	*	6066	*	*	*	*	*	5733	*	*	*	64
+       0	*	*	0	*	*	*	4755	0	0	
+
+//
+�HHsearch 1.5
+NAME  f22915668ca1cb3ce6b2cdc5b2a8d88f
+FAM   
+FILE  f22915668ca1cb3ce6b2cdc5b2a8d88f
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:26:53 2013
+LENG  111 match states, 111 columns in multiple alignment
+FILT  114 out of 267 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  6.2 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCHHHHHHHEECCCCCHHHHHHHHHHCCCCCCCCCCEEEEECCCHHHHHHHHCCCCCCCCCCCCCEEEEEEEECCCCCCCCCCCCCCCCCCEEEECCCCC
+CEEECCCCCCC
+>ss_conf PSIPRED confidence values
+9568889850388980247999998578658988647889758989999985999887731698288689876258798986212123343899852999
+75887557796
+>Consensus
+xxxxxFxxqHvxxxxxxyCnxxMxxrxxxxxxxCKxxNTFIHxxxxxVxavCxxxxcxNxxSxxxxxxTxCxlxxxxxpxCxYxxxxxxxxixVaCxxxx
+PVHxdxxxxxx
+>f22915668ca1cb3ce6b2cdc5b2a8d88f
+ENWATFQQKHIINTPIINCNTIMDNNIYIVGGQCKRVNTFIISSATTVKAICTGVINMNVLSTTRFQLNTCTRTSITPRPCPYSSRTETNYICVKCENQY
+PVHFAGIGRCP
+>gi|326918746|ref|XP_003205649.1| PREDICTED: ribonuclease CL2-like [Meleagris gallopavo]
+-RYEKFLRQHVdyprtlGLMGHRYCGVMLARRQVTApGRPCKPSNTFVHAPAEDLVATCT-RPADSmgfHSTSTTMDITACRLRGgDTRPPCNYRARQLH
+HHVRVSCLDGLPVHLAGT----
+>gi|312597298|pdb|3LJE|A Chain A, The X-Ray Structure Of Zebrafish Rnase5
+PRYQKFLRQHVDaDMSVQKCDRAMSIKKITagTGNDCKEVNTFIQATKDRITTVCGDAgTPVnNlFKSNQPFPVVTCKLKSgNRRPNCQYRGTSSTRYIV
+LGCDKGWPVHYDE-----
+>gi|126277985|ref|XP_001379355.1| PREDICTED: ribonuclease pancreatic-like [Monodelphis domestica]
+-RIQRFWRFHVDnpkslipGGNTKYCTVMIRRRQISERGKCKRENTFIHAMAGAILDVCKAQsvkACKVgrkncHTSDHSFKQTLCVLQGfGYYPNCAYV
+SFPKFKKISLACTGLprVPVYVDP-----
+>gi|148710333|gb|EDL42279.1| mCG1042736 [Mus musculus]
+-ASQWFATQHITYKANLQCNVEMQAINMHR-PRCKGLNTFLHTSFINVVGVCGNPsglpApsqkfytepihnstyprcddamlvvnryrprckdvdtfrh
+tsfanvcvcghpsgfCKehksaNcHNSSSQVPIIVCNLTTpGrTYTQCRYQMKGSVKYYRVACENrtpwdspiypVVPVHLHGT----
+>gi|291403447|ref|XP_002717916.1| PREDICTED: hypothetical protein [Oryctolagus cuniculus]
+--------------LYRECNTLMAEKVKESNRSCITQYIFIHEEPKTVKAVCSSPavACEfmkgKcHKSPRPFDLTFCKLSKpGQlTPHCNYHTFVLEKH
+IFITCNDQ------------
+>gi|297459463|ref|XP_001249610.2| PREDICTED: ribonuclease, RNase A family, 4-like isoform 1 [Bos taurus]gi|297459467|ref|XP_002700563.1| PREDICTED: ribonuclease, RNase A family, 4-like [Bos taurus]gi|297479281|ref|XP_002690777.1| PREDICTED: ribonuclease, RNase A family, 4-like [Bos taurus]gi|296483458|gb|DAA25573.1| ribonuclease, RNase A family, 4-like [Bos taurus]
+--------------HKYYCDLMMKARGLATDQSCKKNKTFVHSVSPGTRGLCEGPavTCRkmsevyNcHL--IIFKVTQCNLYPeAVPPHCYYEGVTFQM
+DVRIVCVGKRPIHLDE-----
+>gi|38605204|sp|Q7YRH2.1|RNAS9_MACNE RecName: Full=Ribonuclease-like protein 9; Flags: Precursorgi|33243445|gb|AAQ01504.1| LOC122650 [Macaca nemestrina]
+-------------YHRDYCNEEIMRKNVYHKQRCVTEHYFLLMQYDELEKICYNRfvPCKNgvrkcNRSKGLVEGVYCNLTEaFKIPRCKYKSFYRRGYV
+LITCAWqneihkLIPHTIND-----
+>gi|300872939|gb|ADK39282.1| RNase-Cwar1 [Celestus warreni]
+-DFEYFQKHHVDfpkpgtWNDDVYCRMILYKRCI--GF-GLEWTYIIHATEEQLKAICTVDgKRLTgaYRNLTPLPLASCydT-----NNDYAFHGESLT
+GIFEVQCKDGLPVTFLK-----
+>gi|149568755|ref|XP_001515593.1| PREDICTED: similar to ribonuclease 13 [Ornithorhynchus anatinus]
+--ARTFRLMHIDfprsefaPGFRGYCNGLMAYVRAQReSWQCPEKHFVLHAPAATVRAICAHTdsFCEDfgefcTRSHKPLPVTTCARTPgLPPSVCRYN
+ATVHvqSHRVWLLCSS-------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+E 1    2910	*	5201	3357	*	4771	4946	5278	*	*	*	*	4320	1575	4064	3464	4058	*	*	4290	1
+       0	*	*	*	*	*	*	4534	0	0	
+
+N 2    3692	*	2787	6109	*	5579	*	*	5800	6117	5481	3269	4212	5121	1866	2978	3809	*	5130	*	2
+       17	*	6411	*	*	*	*	5418	0	0	
+
+W 3    2479	*	*	6590	3031	5419	*	4629	*	*	*	*	*	*	*	4120	5256	6549	2580	1464	3
+       0	*	*	*	*	*	0	5546	0	1000	
+
+A 4    4168	*	5707	2463	*	*	6056	4567	2958	4868	6812	4112	*	1567	4250	4204	6296	*	*	*	4
+       34	*	5438	*	*	*	0	6040	0	1000	
+
+T 5    6083	*	3574	*	*	6827	3937	*	2082	*	6651	4224	5969	6618	4131	4166	2988	6589	2200	4858	5
+       0	*	*	0	*	481	1819	5804	1098	1162	
+
+F 6    *	*	*	*	20	*	*	*	*	*	*	*	*	*	*	*	*	6212	*	*	6
+       0	*	*	*	*	*	0	6044	0	1000	
+
+Q 7    4162	*	7287	2748	*	7274	*	5641	3258	1853	6078	*	*	2288	3706	6059	*	6063	5821	4748	7
+       34	*	5441	*	*	*	0	6044	0	1000	
+
+Q 8    5324	*	6928	4051	*	*	*	2300	3037	4705	5849	4446	*	4770	1803	*	2674	*	*	*	8
+       0	*	*	1273	770	0	*	5807	1162	1162	
+
+K 9    *	*	*	5162	5858	*	4278	6106	2293	3557	5760	*	*	941	4366	*	6381	*	*	*	9
+       46	5472	6865	0	*	*	*	6073	1098	0	
+
+H 10   *	*	6970	*	*	*	102	*	*	*	*	5927	6729	*	5345	*	*	*	*	6692	10
+       17	6410	*	0	*	481	1819	5852	1015	1162	
+
+I 11   *	*	*	*	*	*	*	1660	*	3400	3410	*	*	*	5644	7102	6052	1426	*	3637	11
+       716	2343	2364	2082	389	0	*	5848	2151	1000	
+
+I 12   5614	*	1184	5381	5493	3786	5603	5830	5150	*	*	5134	6149	5777	5415	4299	3077	5415	*	3691	12
+       1158	858	*	2182	359	516	1733	5887	3397	2298	
+
+N 13   5719	*	3815	3803	6393	2596	*	*	4261	5991	*	2155	3856	3707	4810	3168	5975	6690	4550	7013	13
+       27	6690	6809	1915	444	1556	600	6009	1074	1596	
+
+T 14   4338	*	5608	7030	6555	2676	7064	5972	5349	5848	2998	3016	3946	5527	4529	2760	3588	4087	6728	6349	14
+       28	*	5707	1335	728	757	1292	6021	1302	1485	
+
+P 15   3485	*	2360	*	4204	4123	4501	6572	5004	5642	*	3240	4644	6298	4044	2909	3004	5538	*	*	15
+       0	*	*	*	*	759	1289	6580	0	1290	
+
+I 16   5136	7287	2822	4500	*	5669	4116	4999	3830	6874	*	2732	2924	6182	4395	3616	4427	4719	*	3600	16
+       25	5857	*	1000	1000	1178	841	6458	1076	1080	
+
+I 17   5748	*	3669	4376	5503	4064	5737	3284	4533	4099	*	5081	3446	3316	2773	5321	3787	3844	*	6099	17
+       0	*	*	*	*	*	0	6463	0	1015	
+
+N 18   6152	*	4177	5697	6349	6776	*	7408	3866	6534	*	3513	6218	3362	3608	6640	6973	*	*	982	18
+       0	*	*	*	*	0	*	6463	0	1015	
+
+C 19   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	19
+       0	*	*	*	*	*	*	6481	0	0	
+
+N 20   7063	*	2567	5316	7129	6473	*	*	4404	*	*	827	*	6548	5006	5176	3601	*	*	5843	20
+       0	*	*	*	*	*	*	6481	0	0	
+
+T 21   3943	*	3778	4076	*	3973	4786	5090	4146	3763	5006	4310	7110	3464	4202	3664	3008	3232	*	*	21
+       0	*	*	*	*	*	*	6481	0	0	
+
+I 22   2451	6860	*	2600	*	*	*	3555	5322	3417	1734	*	*	6845	*	6856	4037	4035	*	*	22
+       0	*	*	*	*	*	*	6481	0	0	
+
+M 23   *	*	*	*	*	*	*	3195	*	3365	397	*	*	*	6550	*	*	5402	*	*	23
+       13	6841	*	1000	1000	*	*	6481	1000	0	
+
+D 24   3462	7494	5630	5005	*	4898	5903	5693	2410	4779	5036	5768	6653	3699	1837	3663	*	4942	*	5006	24
+       20	6174	*	0	*	*	*	6481	1024	0	
+
+N 25   4176	6482	5588	4353	*	3992	5214	4800	3259	5219	4956	4300	7068	4238	1969	5576	5457	3564	*	3650	25
+       57	4695	*	0	*	*	*	6481	1200	0	
+
+N 26   5085	*	*	*	*	*	*	3413	2922	5023	*	4773	5287	6796	1042	*	6587	2771	*	*	26
+       29	*	5653	*	*	*	*	6481	0	0	
+
+I 27   6636	4955	6720	5562	*	2599	5538	4524	3706	3633	6531	1455	*	3879	4180	6763	*	5692	6329	*	27
+       16	6465	*	1177	842	0	*	6588	1173	1098	
+
+Y 28   6109	*	*	*	3776	5220	7388	2217	3298	2859	2616	3733	*	5093	4215	*	*	3895	*	4779	28
+       119	*	3654	*	*	*	0	6472	0	1009	
+
+I 29   5405	*	*	4850	4751	*	3357	4442	4628	4657	*	3997	*	5319	5426	4819	1693	6216	5371	2414	29
+       112	4478	5078	1600	577	3355	148	6349	1246	1686	
+
+V 30   5560	*	4928	3289	5318	6400	5288	5027	3406	*	*	3393	4286	3315	3382	3659	2633	4175	*	5833	30
+       1312	3773	932	219	2831	1888	454	6364	1390	1870	
+
+G 31   *	*	2752	5369	*	2511	4046	*	2500	*	*	2904	4416	*	2971	3230	*	*	*	*	31
+       33	5460	*	1000	1000	522	1719	6129	1026	4348	
+
+G 32   6120	*	6293	6522	3937	1798	5183	*	4299	6236	6735	3167	4111	3128	3101	4807	5195	*	4476	*	32
+       76	*	4276	*	*	202	2933	6395	0	2145	
+
+Q 33   *	6583	4596	6598	4935	6771	4044	7105	3565	7223	*	3470	3591	3504	2055	3470	4498	4678	5962	4463	33
+       84	4149	*	1232	800	691	1394	6304	1309	1369	
+
+C 34   *	78	*	*	*	4748	*	*	*	*	*	*	*	*	*	*	*	*	*	6045	34
+       22	6045	*	0	*	0	*	6441	1037	1101	
+
+K 35   *	*	*	6646	*	*	*	5016	468	4220	6945	*	4238	6161	5967	*	5850	4529	*	5016	35
+       0	*	*	*	*	*	*	6481	0	0	
+
+R 36   5265	*	2950	2930	5774	5312	7116	*	2858	6172	*	4252	2280	4733	3461	4938	4640	5051	*	5553	36
+       0	*	*	*	*	*	*	6481	0	0	
+
+V 37   5005	*	*	2979	4999	*	4949	2930	3362	3355	5619	6114	*	3297	4100	5776	3989	2785	5006	*	37
+       0	*	*	*	*	*	*	6481	0	0	
+
+N 38   *	*	6938	6161	*	*	2815	*	5410	*	*	446	*	*	5974	*	5006	*	*	5016	38
+       0	*	*	*	*	*	*	6481	0	0	
+
+T 39   6641	*	*	*	4423	*	*	5760	6161	*	*	6359	*	*	*	5049	420	6641	*	3171	39
+       10	*	7116	*	*	*	*	6481	0	0	
+
+F 40   *	*	*	*	238	*	*	4007	*	*	*	*	*	*	*	*	6190	4658	*	4773	40
+       20	*	6158	*	*	*	0	6476	0	1000	
+
+I 41   6024	*	*	*	*	*	*	904	*	1870	*	*	*	*	6890	*	*	2570	*	*	41
+       0	*	*	*	*	*	0	6455	0	1102	
+
+I 42   *	*	*	*	5609	4981	558	5623	5500	3851	*	7060	*	4385	5811	*	*	4629	*	4521	42
+       0	*	*	*	*	*	0	6455	0	1102	
+
+S 43   2016	*	3609	1953	*	3981	*	*	*	*	4667	6872	*	7187	6891	3430	2571	5327	*	*	43
+       0	*	*	*	*	*	0	6455	0	1102	
+
+S 44   6712	*	3785	5561	*	6478	6998	6539	*	5627	6207	3188	2397	6573	4392	2077	2220	5404	*	*	44
+       0	*	*	*	*	*	0	6455	0	1102	
+
+A 45   3926	*	4537	3765	2252	5319	7143	4796	3562	3395	*	6475	2728	6070	7123	4950	6690	*	5163	3243	45
+       65	4916	6478	461	1870	*	0	6455	1180	1102	
+
+T 46   2441	*	3839	2863	*	3498	6105	7224	3371	*	*	4287	3710	4717	3551	3764	4900	6504	4915	*	46
+       0	*	*	*	*	1696	532	6439	0	1177	
+
+T 47   4799	*	2486	3187	7421	4879	6048	7268	3713	6827	*	2471	5161	3635	4941	3681	3416	5770	*	5802	47
+       0	*	*	3000	193	1381	699	6455	1000	1102	
+
+V 48   7074	*	*	*	*	*	*	1825	*	2618	*	*	*	*	*	*	6095	908	*	*	48
+       0	*	*	*	*	*	0	6460	0	1037	
+
+K 49   3328	6891	5824	4971	*	*	6218	6317	1916	4231	5488	4567	*	2910	3265	5941	4095	3037	*	*	49
+       0	*	*	*	*	*	0	6460	0	1037	
+
+A 50   1226	*	3983	5006	*	3719	6437	*	3346	7580	*	4298	5800	6879	4213	3715	3922	6181	*	*	50
+       0	*	*	*	*	*	0	6451	0	1037	
+
+I 51   3995	*	*	*	4284	*	*	1735	*	3102	5544	*	*	*	*	6728	3635	1483	*	*	51
+       0	*	*	*	*	*	0	6451	0	1037	
+
+C 52   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	52
+       16	*	6541	*	*	*	0	6451	0	1037	
+
+T 53   4794	*	4723	5113	4826	2310	5876	5523	3697	5178	*	3461	*	5022	3243	3503	2965	7693	6553	4112	53
+       178	3597	4901	124	3598	1250	787	6442	1591	1113	
+
+G 54   6114	*	5312	5005	*	2276	4814	*	4383	5017	5731	2691	5109	3577	3754	4328	3238	4830	5847	4662	54
+       39	5242	*	386	2091	2233	345	6509	1166	1256	
+
+V 55   3251	*	4845	4375	*	3182	7244	3588	4063	4638	*	4575	1994	4967	4116	4275	4134	5590	*	*	55
+       4684	57	*	897	1111	757	1292	6522	5811	1188	
+
+I 56   2795	5540	5185	5093	4013	4563	*	3856	4124	5725	*	3606	3492	3675	6016	5524	2434	5855	*	4672	56
+       26	7311	6414	5781	26	*	0	6530	1000	1466	
+
+N 57   4950	822	*	6702	*	4774	*	*	4622	6682	*	5216	3385	5439	3602	4164	5531	*	*	*	57
+       9	*	7404	752	1299	1362	711	6516	1173	1538	
+
+M 58   7022	*	3755	3963	6550	*	7172	*	1471	4112	5352	4764	4169	4815	3815	5012	3766	5138	*	4024	58
+       863	1187	6550	1880	457	1555	600	6531	3608	1342	
+
+N 59   7339	*	3616	*	5349	4600	*	*	4122	6669	*	609	*	6560	5377	5032	4512	6107	*	*	59
+       3196	167	*	1294	756	306	2385	6526	5503	1358	
+
+V 60   *	6405	*	6584	4374	*	1347	5966	6640	*	6476	4589	6772	*	2907	*	3963	3229	6716	2890	60
+       14	*	6716	*	*	0	*	6573	0	1015	
+
+L 61   5968	5521	4169	5411	*	5544	5392	3769	3147	3057	5790	4077	*	2879	2394	5019	3799	6145	*	6487	61
+       53	5585	6025	0	*	*	0	6577	1098	1000	
+
+S 62   *	*	*	*	*	5233	5457	*	*	*	*	4940	*	*	5521	297	3607	*	*	*	62
+       33	*	5471	*	*	1011	989	6542	0	1262	
+
+T 63   5281	6810	6128	3667	*	4749	5052	6929	3352	4696	4885	3475	3808	4632	3742	2224	3000	7433	*	7603	63
+       0	*	*	*	*	0	*	6509	0	1238	
+
+T 64   4528	*	3985	3850	7171	4063	5256	6035	3728	6295	5300	3882	*	3452	4018	2134	3374	4507	*	6239	64
+       0	*	*	*	*	*	*	6584	0	0	
+
+R 65   5038	*	6345	5313	*	6218	6424	4850	3341	3924	*	*	1761	3353	3238	3205	4081	4875	*	7102	65
+       0	*	*	*	*	*	*	6584	0	0	
+
+F 66   *	*	*	*	1255	*	*	3197	*	2984	3344	*	*	*	*	*	5886	2120	*	*	66
+       0	*	*	*	*	*	*	6584	0	0	
+
+Q 67   5844	*	3569	4019	7171	5816	4841	*	2964	*	*	4873	1851	3893	3590	2964	4997	*	*	5175	67
+       0	*	*	*	*	*	*	6584	0	0	
+
+L 68   6392	*	*	*	6170	3669	*	2547	6309	1708	3689	*	*	6172	*	*	4716	1856	*	*	68
+       0	*	*	*	*	*	*	6584	0	0	
+
+N 69   4377	*	*	*	6628	*	*	3551	*	6591	*	5629	5663	*	*	5329	633	2876	*	*	69
+       30	*	5606	*	*	*	*	6584	0	0	
+
+T 70   6434	*	2249	4331	5297	*	4624	3277	5623	4088	6102	5244	*	4285	4897	4950	2638	3697	*	3570	70
+       0	*	*	*	*	*	0	6589	0	1098	
+
+C 71   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	71
+       63	4950	6635	1000	1000	0	*	6589	1309	1098	
+
+T 72   6071	*	5571	4282	6335	*	6267	5063	2668	4461	*	2362	*	4513	2563	3892	3117	4148	*	6962	72
+       112	*	3748	*	*	*	0	6575	0	1007	
+
+R 73   5520	*	*	4122	6767	*	3063	5338	6070	676	*	6680	*	6255	3872	*	*	4834	*	*	73
+       76	*	4276	0	*	1917	444	6393	1098	1541	
+
+T 74   5125	*	5266	4759	*	*	6472	2941	3152	6618	4735	5401	*	4667	3502	4530	1460	4973	*	5904	74
+       18	6354	*	0	*	*	0	6279	1009	1839	
+
+S 75   5120	6358	6618	4017	*	1786	6344	*	3308	*	*	4653	4593	6354	3964	2014	3938	*	*	6193	75
+       4669	192	3555	125	3594	*	0	6279	5248	1839	
+
+I 76   3335	*	4891	3748	6245	3244	*	4769	4233	5847	*	6695	4862	3954	4845	1688	3304	6386	*	*	76
+       223	4488	3343	992	1008	683	1407	6077	1312	2411	
+
+T 77   4519	*	*	6333	*	*	*	6500	2485	6616	6222	4548	3283	3023	2306	4053	2664	5777	6989	5985	77
+       249	2658	*	0	*	93	3996	6278	1823	2058	
+
+P 78   6084	6087	6034	*	5671	6784	3123	4316	4441	6247	4174	4351	2717	*	3434	4517	4929	5123	*	2010	78
+       0	*	*	*	*	*	0	6575	0	1007	
+
+R 79   *	*	5546	*	*	7551	*	6191	4693	5651	*	4949	740	*	4479	3644	3299	4524	*	*	79
+       0	*	*	2000	415	0	*	6575	1007	1007	
+
+P 80   5640	*	2385	*	*	6055	4493	*	5879	7514	*	1852	2377	3888	4976	4115	4507	6073	*	5553	80
+       0	*	*	*	*	*	*	6585	0	0	
+
+C 81   *	79	*	*	*	5550	*	*	*	*	*	*	*	*	*	*	*	*	*	4955	81
+       10	*	7195	*	*	*	*	6585	0	0	
+
+P 82   3375	*	4460	4022	*	6506	3985	4635	2747	*	5059	4174	4492	4076	2080	4484	5313	6623	*	5177	82
+       0	*	*	*	*	*	0	6320	0	1000	
+
+Y 83   *	*	*	*	4224	*	*	*	*	*	*	*	*	*	*	*	*	*	*	79	83
+       15	6615	*	1000	1000	*	0	6320	1015	1000	
+
+S 84   5365	*	4309	3741	5495	7112	3703	*	2227	5513	*	3330	*	3590	2313	3679	4910	6181	*	*	84
+       0	*	*	1585	585	0	*	6320	1000	1000	
+
+S 85   3523	*	4074	4475	*	2176	6905	5290	4940	4386	6259	6156	6594	4107	*	2961	2066	*	*	6583	85
+       0	*	*	*	*	*	*	6585	0	0	
+
+R 86   6318	*	4375	4269	3789	7093	6580	3612	3251	6957	6180	4317	*	6533	4340	3037	1785	4213	*	6335	86
+       16	6490	*	0	*	*	*	6585	1009	0	
+
+T 87   4071	*	5715	4953	*	4419	6001	5392	3726	3891	6558	4480	3117	3302	4108	3160	3825	3801	*	3722	87
+       0	*	*	0	*	0	*	6573	1009	1009	
+
+E 88   3760	*	4100	4764	4759	4216	6073	5876	3284	3188	4899	7097	4898	3495	3613	2803	3442	5959	*	*	88
+       22	6073	*	1000	1000	*	*	6585	1036	0	
+
+T 89   *	*	5541	3337	4589	*	5425	4819	5315	6680	4832	2636	4410	3858	4588	3805	2026	5318	6867	4636	89
+       23	5972	*	0	*	*	*	6585	1076	0	
+
+N 90   4945	*	6032	5364	*	2234	4406	*	2107	*	5156	3787	*	3934	2118	5248	6211	*	*	*	90
+       22	*	6019	*	*	*	*	6585	0	0	
+
+Y 91   6247	6636	5100	*	2471	6633	3478	3997	3577	4906	*	5474	5526	5417	3287	3870	4982	4205	*	2614	91
+       0	*	*	*	*	*	0	6590	0	1056	
+
+I 92   6366	*	*	*	3398	*	*	1120	*	4458	*	*	4882	*	*	6946	*	2538	*	2529	92
+       0	*	*	*	*	*	0	6590	0	1056	
+
+C 93   6884	3101	6950	4949	5473	*	*	2283	4654	3705	*	5449	*	*	3306	6161	3674	2183	6055	4698	93
+       0	*	*	*	*	*	0	6590	0	1056	
+
+V 94   *	*	*	*	*	*	*	1755	*	2983	6391	*	*	*	*	*	*	823	*	*	94
+       0	*	*	*	*	*	0	6297	0	1056	
+
+K 95   1218	*	*	6574	*	4069	*	*	4274	3475	*	*	*	4975	6062	4672	2002	5456	*	*	95
+       0	*	*	*	*	*	0	6297	0	1056	
+
+C 96   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	96
+       0	*	*	*	*	*	0	6297	0	1056	
+
+E 97   5571	*	2527	1626	*	6277	5935	6426	4330	6483	6626	3175	*	4109	3846	4302	6166	4133	6664	*	97
+       0	*	*	*	*	*	0	6297	0	1056	
+
+N 98   *	*	2945	5002	*	2217	5152	*	4341	*	*	2207	2898	5725	3958	6142	*	*	3346	*	98
+       654	1455	*	3106	178	1035	966	6297	3202	1056	
+
+Q 99   6735	*	5612	4227	4104	2253	*	4302	3896	2414	*	2956	*	4666	6140	*	5622	3048	6655	6692	99
+       124	3606	*	1000	1000	*	0	6137	1464	1000	
+
+Y 100  4911	*	*	*	4831	5217	*	3471	4481	2247	*	*	6507	5669	4913	*	*	1543	3545	3913	100
+       0	*	*	*	*	*	0	6030	0	1000	
+
+P 101  *	*	*	*	*	*	*	*	*	5940	*	*	40	*	*	6507	*	*	*	*	101
+       0	*	*	*	*	0	*	6030	0	1000	
+
+V 102  4938	4963	4478	*	*	*	6230	3983	*	*	*	4941	*	*	*	*	5427	400	*	*	102
+       0	*	*	*	*	*	*	6009	0	0	
+
+H 103  5235	*	*	6623	*	*	334	*	*	6435	*	6150	6527	*	*	6268	4021	*	*	4078	103
+       25	*	5867	*	*	*	*	6009	0	0	
+
+F 104  *	*	*	*	1438	*	*	3916	*	1579	*	*	*	*	*	*	*	3734	5783	2872	104
+       0	*	*	0	*	0	*	6045	1056	1056	
+
+A 105  3643	*	925	4390	*	5150	4502	5800	6947	4953	*	4271	*	4121	5239	*	*	4047	*	5734	105
+       26	5789	*	1585	585	*	*	6042	1056	0	
+
+G 106  3980	*	3646	2972	*	1720	*	*	2741	5586	*	4396	5839	5321	3432	4164	6712	*	7093	*	106
+       0	*	*	*	*	*	*	5891	0	0	
+
+I 107  *	*	3427	5031	*	4405	*	2885	5937	4853	*	6154	*	*	*	2845	1998	2693	*	3562	107
+       0	*	*	*	*	*	*	5280	0	0	
+
+G 108  *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	108
+       0	*	*	*	*	*	*	2239	0	0	
+
+R 109  *	*	*	*	*	*	*	*	1350	*	*	*	*	*	2231	1341	*	*	*	*	109
+       0	*	*	*	*	*	*	2239	0	0	
+
+C 110  *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	110
+       0	*	*	*	*	*	*	2239	0	0	
+
+P 111  *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	111
+       0	*	*	0	*	*	*	1452	0	0	
+
+//
+�HHsearch 1.5
+NAME  f2a896c08302b679f64cd8e52af94835
+FAM   
+FILE  f2a896c08302b679f64cd8e52af94835
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:20:02 2013
+LENG  81 match states, 81 columns in multiple alignment
+FILT  43 out of 45 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  3.7 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCHHHHHHHHHHHHHHHHHCCCCCCHHHHHHHHHHCCCHHHHHHCCCCCCCCHHHHHHHHHHHHHHHHHCCC
+>ss_conf PSIPRED confidence values
+964430474569999999999999999828989989999999843701777523556773210899999999898886029
+>Consensus
+xxrdxklgKisxexyxxqkvEILxALrkLGexLtxeExxFLxxxxxxxxsxFekVsxxxxxxgxxxxvlaxaxsqvxxxxx
+>f2a896c08302b679f64cd8e52af94835
+MNREGAPGKSPEEMYIQQKVRVLLMLRKMGSNLTASEEEFLRTYAGVVNSQLSQLPPHSIDQGAEDVVMAFSRSETEDRRQ
+>gi|242008131|ref|XP_002424866.1| conserved hypothetical protein [Pediculus humanus corporis]gi|212508416|gb|EEB12128.1| conserved hypothetical protein [Pediculus humanus corporis]
+-ERDFKLGQISEQQFNKCKKEFLTALKQLNENLNDEEIKFLNgNKSVSNNALFEKVTE-ESDKV--EAVVKQVAKEA-----
+>gi|154421834|ref|XP_001583930.1| leucine zipper protein [Trichomonas vaginalis G3]gi|121918174|gb|EAY22944.1| leucine zipper protein, putative [Trichomonas vaginalis G3]
+-KEAWHLKSITKQMYEEKAVEILTALQSLGESLSNEDAAFLKTQMSAKFSEFEESSN-SVNQAQQKSLIDKFGSEA-----
+>gi|340727909|ref|XP_003402276.1| PREDICTED: protein LZIC-like [Bombus terrestris]
+-DCGVKLGKLSKEVSDHQRAEILNALRQLGEKLEPQELQLLEklMLSNIDTTSYVQVPD-NVEKG--RMAMAVLHYST-----
+>gi|221106519|ref|XP_002158224.1| PREDICTED: similar to predicted protein [Hydra magnipapillata]
+-QLGISSGKLCGVFYQQQIVEILSALKKLGEVLTHSEEEYLRKNASAKLYQFSNVSE-TIG----DSLLKVVHKEV-----
+>gi|328874161|gb|EGG22527.1| Zinc finger protein [Dictyostelium fasciculatum]
+IQRDVKLAKISKDSYIDQSIEILYALKKLGFAISPEEENFLEQHKSRVMGDFEKVSG-NIGQGTKDNLMSNAATQIQK---
+>gi|124088302|ref|XP_001347044.1| hypothetical protein [Paramecium tetraurelia strain d4-2]gi|145474481|ref|XP_001423263.1| hypothetical protein [Paramecium tetraurelia strain d4-2]gi|50057433|emb|CAH03417.1| hypothetical protein PTMB.219b [Paramecium tetraurelia]gi|124390323|emb|CAK55865.1| unnamed protein product [Paramecium tetraurelia]
+-DQDYTLQRINQAQYVKETLNCLNQLQDIGIPFTQQEINFINSN--TGKDNFV-IKQ-DNVQG--KTLLKSAEQQL-----
+>gi|308803242|ref|XP_003078934.1| leucine zipper and ICAT homologous domain protein (ISS) [Ostreococcus tauri]gi|116057387|emb|CAL51814.1| leucine zipper and ICAT homologous domain protein (ISS) [Ostreococcus tauri]
+-ERDAQLGKMTAEGAKTERVEVLTALKKLGAPLEDGELEFLRAHMTAGLADFVEek---------------------------
+>gi|170579733|ref|XP_001894960.1| leucine zipper and CTNNBIP1 domain containing [Brugia malayi]gi|158598270|gb|EDP36198.1| leucine zipper and CTNNBIP1 domain containing, putative [Brugia malayi]
+----HRLRKISDEIYEAKKLEILHALYKLNDHLSDEERSIIEAASRISDFQFELASNH-----------------------
+>gi|71998596|ref|NP_001022497.1| hypothetical protein ZK1248.19 [Caenorhabditis elegans]gi|33621047|gb|AAQ23126.1| Hypothetical protein ZK1248.19 [Caenorhabditis elegans]
+-----RSQKMPKQGYLERKFEILMALRRLEETLTEDERKFLSD--------------------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	*	*	*	949	*	*	1053	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	2537	0	0	
+
+N 2    5151	*	1644	2184	*	*	*	*	3915	*	*	3476	*	1859	*	*	*	*	*	*	2
+       0	*	*	*	*	*	*	3922	0	0	
+
+R 3    *	5291	*	4342	*	*	*	*	5196	4658	*	*	*	3221	550	*	4605	*	*	5219	3
+       0	*	*	*	*	*	*	3922	0	0	
+
+E 4    4342	*	591	2652	*	3940	*	*	*	*	*	4830	*	5196	*	*	*	*	*	*	4
+       0	*	*	*	*	*	*	3922	0	0	
+
+G 5    3776	5275	*	4978	3627	3754	4355	4698	*	3061	3728	*	*	*	*	*	5687	1781	4458	3722	5
+       0	*	*	*	*	*	*	4031	0	0	
+
+A 6    4383	*	*	*	*	*	3812	5739	1188	*	3282	*	*	4577	3030	4331	3616	5331	*	*	6
+       0	*	*	*	*	*	*	4043	0	0	
+
+P 7    *	*	*	*	*	5647	*	3657	*	828	5896	*	3781	*	*	3491	5049	2957	*	*	7
+       0	*	*	*	*	*	*	4043	0	0	
+
+G 8    5653	*	*	4614	*	548	4836	*	4788	*	*	5570	*	3065	4517	*	*	*	*	*	8
+       0	*	*	*	*	*	*	4043	0	0	
+
+K 9    *	*	*	*	*	5675	5049	*	338	*	*	*	*	4602	3616	4788	*	*	*	*	9
+       0	*	*	*	*	*	*	4043	0	0	
+
+S 10   *	*	*	*	*	*	*	1292	*	1321	3334	*	*	*	*	3781	*	5668	*	*	10
+       0	*	*	*	*	*	*	4043	0	0	
+
+P 11   4234	5053	*	6156	*	4428	*	*	*	5541	*	3028	3456	*	*	991	3085	*	*	*	11
+       0	*	*	*	*	*	*	4043	0	0	
+
+E 12   3925	*	3949	2330	*	3940	*	*	1688	4852	*	*	*	2942	3775	4614	*	5924	*	*	12
+       0	*	*	*	*	*	*	4043	0	0	
+
+E 13   3628	*	1922	1485	*	*	*	*	*	*	*	*	5372	2213	*	5059	*	5143	*	*	13
+       0	*	*	*	*	*	*	3965	0	0	
+
+M 14   3403	*	5372	3635	5143	4588	*	3902	*	4565	3250	*	*	2616	4482	4258	5972	2056	*	*	14
+       0	*	*	*	*	*	*	3965	0	0	
+
+Y 15   3166	5926	*	*	3335	4037	4854	*	*	4044	*	*	*	6047	*	5690	5684	*	*	829	15
+       0	*	*	*	*	*	*	3965	0	0	
+
+I 16   4485	*	3592	3273	*	*	*	2635	4675	3660	*	2789	*	3641	*	*	2442	3628	*	*	16
+       0	*	*	*	*	*	*	3965	0	0	
+
+Q 17   3695	*	3488	2754	*	*	5690	*	3038	5465	*	*	5249	1630	3397	*	4295	5244	*	*	17
+       0	*	*	*	*	*	*	3965	0	0	
+
+Q 18   *	4613	*	3264	*	*	*	5244	3697	*	*	*	*	649	3136	*	*	*	*	*	18
+       0	*	*	*	*	*	*	3965	0	0	
+
+K 19   3441	*	*	*	*	5766	*	5143	929	*	*	*	*	5173	2916	3398	3628	*	*	*	19
+       0	*	*	*	*	*	*	3965	0	0	
+
+V 20   3380	*	*	*	3660	4132	*	4325	4613	2149	5734	*	*	*	*	*	*	1208	*	*	20
+       0	*	*	*	*	*	*	3965	0	0	
+
+R 21   *	*	*	237	*	*	*	*	*	*	*	3628	*	*	3822	*	*	*	*	*	21
+       0	*	*	*	*	*	*	3965	0	0	
+
+V 22   5244	3628	*	*	4613	*	*	571	*	*	*	*	*	*	*	*	*	2483	*	*	22
+       0	*	*	*	*	*	*	3965	0	0	
+
+L 23   *	*	*	*	5533	*	*	*	*	68	5366	*	*	*	*	*	*	*	*	*	23
+       0	*	*	*	*	*	*	3965	0	0	
+
+L 24   4898	*	*	*	*	5173	4552	5953	*	3822	3196	3024	*	*	*	3492	1392	4240	*	4198	24
+       0	*	*	*	*	*	*	3965	0	0	
+
+M 25   237	*	*	*	*	*	*	*	*	*	3822	*	*	3628	*	*	*	*	*	*	25
+       0	*	*	*	*	*	*	3965	0	0	
+
+L 26   *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	26
+       0	*	*	*	*	*	*	3965	0	0	
+
+R 27   *	*	*	*	*	*	*	*	1550	4854	*	*	*	2725	1290	*	5566	*	*	4552	27
+       0	*	*	*	*	*	*	3965	0	0	
+
+K 28   *	*	3628	*	*	5173	4855	*	846	*	*	5372	*	2619	3660	4859	*	*	*	*	28
+       0	*	*	*	*	*	*	3965	0	0	
+
+M 29   *	*	*	*	*	*	*	3628	*	297	3248	*	*	*	*	*	*	*	*	*	29
+       0	*	*	*	*	*	*	3965	0	0	
+
+G 30   *	*	5769	3660	*	335	*	*	5249	*	*	3582	*	*	*	*	*	*	*	*	30
+       0	*	*	*	*	*	*	3965	0	0	
+
+S 31   3572	4855	3737	843	3821	*	*	3628	*	*	*	*	*	*	*	3365	*	*	*	*	31
+       0	*	*	*	*	*	*	3965	0	0	
+
+N 32   4659	*	*	3388	*	*	4552	*	1942	*	*	3164	2997	3207	*	4041	3610	3750	*	*	32
+       0	*	*	*	*	*	*	3965	0	0	
+
+L 33   *	*	*	*	3628	*	*	3751	*	243	*	*	*	*	*	*	*	*	*	*	33
+       0	*	*	*	*	*	*	3965	0	0	
+
+T 34   *	*	*	2916	*	*	*	*	5059	5249	*	4613	*	*	*	1522	1244	*	*	*	34
+       0	*	*	*	*	*	*	3965	0	0	
+
+A 35   3268	*	2633	4078	*	*	5143	*	*	5465	5684	4859	1489	3628	4854	4818	3972	*	*	*	35
+       0	*	*	*	*	*	*	3965	0	0	
+
+S 36   5372	*	3248	1000	*	5428	*	6040	*	*	*	*	*	3024	*	2375	5926	*	*	*	36
+       0	*	*	*	*	*	*	3965	0	0	
+
+E 37   *	*	2616	257	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	37
+       0	*	*	*	*	*	*	3965	0	0	
+
+E 38   3693	*	4854	1706	*	*	*	2868	4167	2471	*	5766	*	5649	4035	4809	5059	4516	*	*	38
+       0	*	*	*	*	*	*	3965	0	0	
+
+E 39   2280	*	5005	2337	*	*	4962	*	3338	5249	4855	2703	*	2867	*	3972	5734	*	*	*	39
+       0	*	*	*	*	*	*	3965	0	0	
+
+F 40   *	*	*	*	324	*	*	3829	*	3592	*	*	*	*	*	*	*	*	*	4379	40
+       0	*	*	*	*	*	*	3965	0	0	
+
+L 41   *	*	*	*	*	*	*	2661	*	248	*	*	*	*	*	*	*	*	*	*	41
+       0	*	*	*	*	*	*	3965	0	0	
+
+R 42   3663	*	*	1890	*	*	*	*	4859	*	5766	2777	*	*	2035	2851	3837	*	*	*	42
+       191	3014	*	782	1257	*	*	3965	1338	0	
+
+T 43   2156	*	3757	3457	*	*	*	*	3084	*	4573	3343	*	4258	*	2541	2966	*	*	*	43
+       0	*	*	*	*	*	*	3965	0	0	
+
+Y 44   4366	*	*	4959	5282	*	1930	*	4546	3873	*	1631	*	4481	*	*	5116	*	*	3016	44
+       113	*	3737	*	*	*	*	4038	0	0	
+
+A 45   1910	*	*	*	*	*	*	*	3653	*	2806	2910	*	*	*	1544	4820	*	*	*	45
+       0	*	*	*	*	*	0	3775	0	1113	
+
+G 46   *	*	*	*	*	2514	*	*	4661	*	*	2333	*	*	4269	1698	2474	4416	*	*	46
+       43	*	5090	*	*	0	*	3775	0	1113	
+
+V 47   1404	*	*	*	*	5194	*	2402	5637	*	*	*	*	5767	2904	4582	3347	3418	*	*	47
+       0	*	*	*	*	0	*	4045	0	1000	
+
+V 48   2472	*	3344	*	*	2978	*	4237	3604	5575	*	4572	*	*	*	2247	4253	2911	*	*	48
+       0	*	*	*	*	*	*	3980	0	0	
+
+N 49   5315	*	4271	*	3998	*	4894	5882	3711	1251	3736	3272	*	*	*	4122	3694	*	*	*	49
+       0	*	*	*	*	*	*	3980	0	0	
+
+S 50   2980	*	3089	*	4271	5613	*	*	*	*	*	3280	*	5079	5112	1379	3313	*	*	4754	50
+       0	*	*	*	*	*	*	3980	0	0	
+
+Q 51   4061	*	2712	2992	*	*	6163	*	*	4572	*	2612	*	1549	4454	4188	*	*	*	*	51
+       0	*	*	*	*	*	*	3980	0	0	
+
+L 52   *	*	*	*	310	*	*	*	*	4024	4894	*	*	*	*	*	*	*	*	3344	52
+       0	*	*	*	*	*	*	3980	0	0	
+
+S 53   *	*	4915	918	*	*	*	5007	*	*	*	*	*	3821	*	2938	*	2284	*	*	53
+       173	*	3143	*	*	*	*	4047	0	0	
+
+Q 54   *	*	*	3587	*	*	*	*	1194	4088	*	3882	*	1725	4308	*	*	*	*	*	54
+       46	4986	*	1000	1000	585	1586	3727	1000	1206	
+
+L 55   3871	*	*	*	*	*	*	3210	*	3268	*	*	*	*	*	4261	*	583	*	*	55
+       56	*	4712	*	*	*	0	3964	0	1019	
+
+P 56   5018	*	*	5449	*	*	*	4922	3690	*	*	5208	2750	*	*	1182	2188	*	*	*	56
+       77	5404	5155	0	*	*	0	4017	1000	1110	
+
+P 57   3537	*	3300	2074	*	2996	*	*	*	*	*	3266	4734	2480	*	3875	4044	*	*	*	57
+       2396	*	304	*	*	*	0	4007	0	1179	
+
+H 58   2036	*	*	*	*	*	403	*	*	*	*	*	*	*	*	*	*	*	*	*	58
+       0	*	*	*	*	63	4539	2143	0	2891	
+
+S 59   4724	*	1935	3292	*	5554	*	*	*	*	*	2036	*	*	*	2184	3139	*	*	*	59
+       0	*	*	*	*	*	0	3868	0	1019	
+
+I 60   5225	*	5153	*	*	*	*	1879	*	3014	*	3520	4680	*	*	2432	3781	2597	*	*	60
+       0	*	*	*	*	*	0	3868	0	1019	
+
+D 61   3232	*	2202	3102	*	1578	*	*	*	5153	*	3189	*	*	*	*	*	3520	*	*	61
+       90	*	4048	*	*	*	0	3868	0	1019	
+
+Q 62   2982	*	*	*	*	*	*	*	2303	4603	*	4623	*	1335	*	2596	5195	*	*	*	62
+       47	*	4967	*	*	*	0	3808	0	1200	
+
+G 63   2703	*	*	3953	*	621	*	*	4498	*	*	*	*	*	*	*	5042	4133	*	*	63
+       1442	*	662	*	*	*	0	3784	0	1265	
+
+A 64   2485	*	*	*	*	*	*	*	*	*	*	*	*	2714	3397	2383	1387	*	*	*	64
+       0	*	*	*	*	*	0	2547	0	2477	
+
+E 65   *	*	*	2240	*	*	*	*	1907	*	*	*	*	1303	*	*	*	*	*	3104	65
+       0	*	*	*	*	144	3391	2423	0	2477	
+
+D 66   4128	*	1745	2229	*	5383	*	*	2221	*	*	4653	*	*	3770	4588	*	*	*	4716	66
+       0	*	*	*	*	1277	767	3923	0	1085	
+
+V 67   3626	*	5385	*	*	*	*	3889	2087	*	3927	2640	*	*	4643	2851	3568	3277	*	*	67
+       0	*	*	*	*	*	0	3901	0	1019	
+
+V 68   2908	*	*	*	*	*	*	2436	*	1583	*	*	*	*	*	*	*	1522	*	*	68
+       0	*	*	*	*	*	0	3901	0	1019	
+
+M 69   *	*	*	*	*	*	*	3928	*	666	2355	*	*	*	*	*	4245	4159	*	*	69
+       47	4964	*	0	*	*	0	3901	1000	1019	
+
+A 70   1187	*	2586	*	*	*	*	*	2076	*	*	*	*	*	*	2671	*	*	*	*	70
+       0	*	*	*	*	*	0	3901	0	1019	
+
+F 71   5058	*	*	*	3277	*	*	4036	3378	2942	5480	5104	*	4159	*	2465	*	1781	*	*	71
+       0	*	*	*	*	*	0	3901	0	1019	
+
+S 72   732	*	*	*	3928	*	*	4964	*	4759	*	*	*	*	*	3277	*	2641	*	*	72
+       0	*	*	*	*	*	0	3901	0	1019	
+
+R 73   2662	*	*	2987	*	1239	3700	*	*	*	*	*	*	*	3277	3156	*	*	*	*	73
+       0	*	*	1000	1000	0	*	3901	1019	1019	
+
+S 74   *	*	4898	*	5538	*	*	5427	2747	*	*	3945	4644	3620	*	1078	3680	*	*	4839	74
+       0	*	*	*	*	*	*	3965	0	0	
+
+E 75   *	*	*	1224	*	3967	*	*	*	*	*	*	*	1209	*	3724	*	*	*	*	75
+       0	*	*	*	*	*	*	3965	0	0	
+
+T 76   2755	*	*	*	*	*	*	2797	*	2644	*	*	*	4644	*	*	2904	1417	*	*	76
+       0	*	*	*	*	*	*	3965	0	0	
+
+E 77   *	*	*	1170	*	*	*	*	*	*	*	*	*	848	*	*	*	*	*	*	77
+       0	*	*	*	*	*	*	2016	0	0	
+
+D 78   *	*	495	*	*	*	*	*	1784	*	*	*	*	*	*	*	*	*	*	*	78
+       0	*	*	*	*	*	*	2016	0	0	
+
+R 79   *	*	*	*	*	*	*	*	*	*	*	*	*	*	729	*	1334	*	*	*	79
+       0	*	*	*	*	*	*	1669	0	0	
+
+R 80   *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	80
+       0	*	*	*	*	*	*	1099	0	0	
+
+Q 81   *	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	81
+       0	*	*	0	*	*	*	1099	0	0	
+
+//
+�HHsearch 1.5
+NAME  f2afa8933c4998c89a5c39f692e949bb
+FAM   
+FILE  f2afa8933c4998c89a5c39f692e949bb
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:13:42 2013
+LENG  203 match states, 203 columns in multiple alignment
+FILT  142 out of 1066 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  6.7 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCHHHCCCCCCHHHHHHHHHHHHHHHHHHHHHHHHCCHHHHHCCHHHHHHHHHCCCHHHHHHHHHHHHHHHHHHHHHHHCCCCCCCCCCH
+HHHHHHHHHHCCHHHHHHHHHHHHHHCCCCEEEEEEECCCCCEEEEECCCCCCCCCCCCEEEEEEECCHHHHHHHHCCCHHHHHHHHHHHCCHHHHHHHH
+HCC
+>ss_conf PSIPRED confidence values
+9987379999990246364699999999998999999999999971688760898899998861626788998764488999999999637889999988
+9999999871899999999999987467872899998599998888516789976668752798742056869886456999999999865999999999
+639
+>Consensus
+xxxxxlpxLpyxxxxLepxiSxxxlxxHxxxhxxxyvxxlNxxxxxxxxxxxxxxxxiixxxxxxxxxlxxxxxxxaxxxxNHxxfxxxLxpxxxxxpxx
+xLxxxIxxxFGSxdxfkxxfxxxAxxxxGsGWxwLvxxxxxxLxixxtxnxxxpxxxxxxPlLxiDvwEHAYyldYxnxrxxYvxxxwxxinWxxvxxrx
+xxx
+>f2afa8933c4998c89a5c39f692e949bb
+PYPFKLPDLGYPYEALEPHIDAKTMEIHHQKHHGAYVTNLNAALEKYPYLHGVEVEVLLRHLAALPQDIQTAVRNNGGGHLNHSLFWRLLTPGGAKEPVG
+ELKKAIDEQFGGFQALKEKLTQAAMGRFGSGWAWLVKDPFGKLHVLSTPNQDNPVMEGFTPIVGIDVWEHAYYLKYQNRRADYLQAIWNVLNWDVAEEFF
+KKA
+>gi|220922215|ref|YP_002497517.1| manganese and iron superoxide dismutase [Methylobacterium nodulans ORS 2060]gi|219946822|gb|ACL57214.1| manganese and iron superoxide dismutase [Methylobacterium nodulans ORS 2060]
+-MPYAIKPLGCDPARIK-GMSERLIVSHYENNYGGAVKRLNLIEEQLAGLDYETTPGF-----V-INGLKREQLIAMNSMILHELFFGGLGQES--EPGP
+VLRKAIARNFGSFERWRSEFIAMGKALaGGSGWVLLSWSPrDGQLVNQWAADHAHTLA-GGVPILALDMYEHSYHIDYGARAATYVDTFMQAIRWENADR
+LFFDL
+>gi|338197129|gb|EGO89303.1| Fe/Mn family superoxide dismutase [Clostridium botulinum C str. Stockholm]
+-----------------KGMTSKQLDEHY-KLYLGYINKINEIDKMSKN-----sqfysgS------NPTY-STMRSlKMGetYSLDGVILHQYYFQNIT
+NSN--dYISDKLINIICTQWGCLDNFLSYLKEV-CL-AMRGWAVVCFDPLtSLLRITGSdLHDYGPIW-CSYPILVIDVYEHAYFMDFGTNRAKYIDVMF
+KNLNWKVISSRFNK-
+>gi|50285897|ref|XP_445377.1| hypothetical protein [Candida glabrata CBS 138]gi|49524681|emb|CAG58283.1| unnamed protein product [Candida glabrata]
+---HVVPKLPNGQelsrRGIPKVLSKDGFDLVWSQQQGYVCDKLTLATAGTS-LESYLPFHILLKTAKNQH--QSHIFNLASAAHNNHLFIENILPVTee
+GsalsetNKPSRLLEARLVDSFgHGWDQVKEEMVKSATDnVIGEGWLFLVENSNKELHILTIQNNGTPYyfprnqlfdMnsAirpeeyqhtksvkelvdk
+AselgkkvddwTMPLICVNLWDHAYLADYGvQNRAKYVRNVLDNLNWSVVNNRLF--
+>gi|336373225|gb|EGO01563.1| hypothetical protein SERLA73DRAFT_103425 [Serpula lacrymans var. lacrymans S7.3]
+---HSRKELPYKVEEgLGNFLPPNALKVVAEEYQQGLLDRLNDEVRGTA-EDKMTVAQIVLSTSQSYE--KAMAFNYASLALNNSFFLDNLKPPPpradn
+pgelgnhEGHLNGTYLHsAFRSQMGSLEHFKSSFCAAATGMAGTGYVWLVTDRSGSLAYFPTFAAGTLLvrsrrqvyddkysvlgegspsptdpqsatlg
+stptspvsglarappslnpsspsrtlhtspvsridtagagpsvysagtnepdapnatfrdirSLGEvlIPLFCVSVHEHCWMSaGYGVwGKEAWLKEFWS
+VLDWEKVVKAYTKF
+>gi|322493666|emb|CBZ28956.1| putative superoxide dismutase [Leishmania mexicana MHOM/GT/2001/U1103]
+---FYLPRIDYDVGQgVAPLMSRKQFDVQYHVFHKAAVDRLNAHTLGSE-LEGHNLNVVIRNSS-FDA-SRAVIHAAASEHFNYCFWYRSLRPW-GTAVP
+ARLKEELQLQYSqngTagaVEEVQRLFTVAALSQQSaGGWVYLVWT-GKTFDVIPFDHGTCPIGSDLIPLLALNTHESARCYDYPLAaedeegdeVERFV
+RNFFKTCNWRLVEHYFLQ-
+>gi|164688120|ref|ZP_02212148.1| hypothetical protein CLOBAR_01765 [Clostridium bartlettii DSM 16795]gi|164602533|gb|EDQ95998.1| hypothetical protein CLOBAR_01765 [Clostridium bartlettii DSM 16795]
+-------KLNYNFYDLNDFINSNELKYSYCQ-YGAYLDNLNHILKDYKEFKDASLKDLLTNLDSMPDEIALKVKINASNALNYEYFFNNLSSE-KTFAKG
+KILKEINNSFSSFDNFKKEFEKIALNS-NSDWIFLALNSQNKLYLTTSKEVSSPVIYKDKIILCLNLDKEI----YS-NREQIIHNFLNYVDWNIANKNY
+NS-
+>gi|255714643|ref|XP_002553603.1| KLTH0E02684p [Lachancea thermotolerans]gi|238934985|emb|CAR23166.1| KLTH0E02684p [Lachancea thermotolerans]
+--SYIAPSLEHLArgKGVRGLFSEKGLQTAWFDRADFYTENLNKYMGQSE---EKPLENIVYENAKSAS--KRDIFNNASMLYNLRFALSCLRANDLPsv
+tekpgpqsllaTPSlelkfsndprdngnEKLSAALASSFGSLVEFRSLLLNSNRAISGDGFTWLVARKvqsmhhesvisgTvefDWLYVLNTYNAGSPFN
+fnrvghmsdlkkqlsklqtveetpssnpfqmksveearetesyrdITYVPLLAIDASPKAWITDYGVfGKDLYLERVWESIEWNVVEQRL---
+>gi|340053388|emb|CCC47677.1| conserved hypothetical protein, fragment [Trypanosoma vivax Y486]
+--------------------------------------------------------------------LKRRVNFIASEDFSRKFEEECMRS-SSAVP-S
+EWRNVVTQQFGAMEVLETELVKRAISRREPGWTWLVYDGRrcvdQRLVGMNLPANQTPLTHGLWPLAAVNMTEGALV-----------------------
+-------
+>gi|291412421|ref|XP_002722485.1| PREDICTED: MHC class I-like family A1-like, partial [Oryctolagus cuniculus]
+--------------------------------------------------------------------SGGLLRLGAGGEVECESFLIP-TPHSCFSST-
+----------------------------------------------------------------------------------------------------
+---
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+P 1    *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	2123	0	0	
+
+Y 2    4235	*	*	5055	*	2483	*	*	4452	4383	1268	6118	4768	4654	*	4732	5962	*	*	3564	2
+       136	4004	5178	684	1405	*	*	5099	1113	0	
+
+P 3    2989	*	6677	4486	6387	5314	*	5150	3138	*	3041	5610	2961	4763	6374	2709	3359	4578	*	5094	3
+       65	5193	5914	1397	689	0	*	5887	1329	1000	
+
+F 4    3789	*	6372	*	1837	6617	2179	5514	5276	5637	*	*	*	*	*	*	*	4596	*	1759	4
+       49	4913	*	1150	864	*	0	6284	1130	1021	
+
+K 5    3745	*	6468	3149	6869	5128	4826	5059	3667	5843	*	6347	5121	4762	4025	2621	2188	3951	*	5892	5
+       0	*	*	*	*	924	1080	6267	0	1096	
+
+L 6    6026	*	*	*	6167	*	*	3500	6856	945	4286	*	4237	4369	4603	5821	5246	3103	*	*	6
+       16	6543	*	1000	1000	0	*	6347	1002	1012	
+
+P 7    4997	*	*	6705	5986	6878	*	4502	3521	5304	5642	*	760	6853	4425	*	4065	4557	*	6586	7
+       11	*	6992	*	*	*	*	6378	0	0	
+
+D 8    4371	*	2572	3137	*	6528	*	*	2496	*	*	5587	1969	*	4477	4243	3308	7209	*	*	8
+       0	*	*	*	*	0	*	6407	0	1000	
+
+L 9    *	*	*	6629	6309	6513	7672	4604	5342	332	5592	*	5100	*	*	6955	*	4538	*	*	9
+       0	*	*	*	*	*	*	6461	0	0	
+
+G 10   4143	*	3901	4611	*	4948	*	6620	3944	5471	6440	4778	897	5957	6513	3722	7008	6629	*	*	10
+       14	6670	*	0	*	*	*	6461	1005	0	
+
+Y 11   6405	6579	*	6407	2336	*	5308	*	6198	5090	*	4303	*	6377	6438	6817	6750	*	5151	788	11
+       85	5000	5254	2000	415	*	*	6461	1148	0	
+
+P 12   2344	*	2445	4330	*	3335	5432	*	4612	4458	*	2625	4103	5567	6762	3325	*	6555	*	*	12
+       105	4022	6852	1558	598	1616	569	6455	1328	1120	
+
+Y 13   4531	*	5813	4679	3434	*	7255	6393	3921	3561	6945	5612	3829	4556	4785	6400	5189	3690	*	1541	13
+       274	3016	4348	1787	493	0	*	6458	1734	1119	
+
+E 14   3667	*	2151	3569	*	5229	5316	*	3266	*	*	2405	5569	5118	4016	3654	4029	*	*	6063	14
+       50	4873	*	778	1263	182	3079	6408	1151	1264	
+
+A 15   1459	*	3131	3656	7137	2356	*	6302	4638	5735	*	4138	*	5382	5763	3846	*	*	*	*	15
+       107	3800	*	747	1307	*	0	6518	1431	1000	
+
+L 16   6925	4994	*	*	4807	6302	*	3177	*	587	5324	7071	*	*	6629	5568	6883	4462	*	5783	16
+       0	*	*	*	*	*	0	6518	0	1000	
+
+E 17   4032	*	4891	1160	6183	4748	*	*	4418	3682	5004	3995	3558	*	7170	4271	5260	5781	*	*	17
+       68	*	4431	*	*	*	0	6518	0	1000	
+
+P 18   4115	*	4957	5837	*	2810	6477	*	3945	*	*	5457	718	7260	6601	6054	6472	*	*	*	18
+       0	*	*	*	*	0	*	6575	0	1297	
+
+H 19   4346	*	6202	*	2372	2818	3583	4581	5521	2462	*	7123	*	7076	*	*	6260	3043	*	3002	19
+       17	6436	*	0	*	*	*	6634	1027	0	
+
+I 20   *	*	*	*	2893	*	*	1062	*	2197	4007	*	*	*	*	*	*	3906	*	4671	20
+       0	*	*	*	*	*	*	6666	0	0	
+
+D 21   7108	7251	2551	*	*	7246	*	*	*	*	6132	5239	6524	6271	7389	577	3878	*	*	*	21
+       0	*	*	*	*	*	*	6692	0	0	
+
+A 22   2600	*	4367	2239	*	4039	6466	*	3968	5838	*	4766	2961	4541	3624	3352	4877	*	*	*	22
+       11	*	7088	*	*	*	*	6692	0	0	
+
+K 23   3559	*	5375	2130	*	*	6407	*	2274	6007	6639	3556	*	2624	3005	*	5221	7355	*	6180	23
+       0	*	*	*	*	*	0	6664	0	1004	
+
+T 24   3330	*	*	5109	*	3141	*	3066	*	4138	7110	6578	*	2690	*	4490	1508	6233	*	*	24
+       0	*	*	1000	1000	0	*	6664	1004	1004	
+
+M 25   7137	*	*	*	2891	*	*	2840	*	1521	2320	6340	*	*	*	5968	*	3205	*	4919	25
+       11	*	7088	*	*	*	*	6692	0	0	
+
+E 26   5255	*	2729	2052	6005	6802	5928	7266	2975	5861	6207	2703	*	4274	3641	4508	5487	6827	*	5975	26
+       0	*	*	*	*	*	0	6664	0	1004	
+
+I 27   4648	6940	6621	4030	3552	*	7595	3344	*	2004	5588	4365	7036	5909	7616	4799	3056	3483	6228	3561	27
+       0	*	*	*	*	*	0	6717	0	1004	
+
+H 28   3271	*	*	*	*	6606	455	*	*	4582	*	5987	*	5210	*	5514	6454	4688	*	*	28
+       11	*	7049	*	*	*	0	6717	0	1004	
+
+H 29   5545	*	*	*	3576	*	1562	*	*	4898	*	*	*	*	6767	5728	*	5980	2314	1849	29
+       77	*	4274	*	*	1101	906	6717	0	1064	
+
+Q 30   5611	6212	2752	3571	3861	2923	5324	6598	4366	4786	*	3838	*	4692	5281	3185	2923	5238	*	6627	30
+       105	6445	4095	1000	1000	227	2781	6585	1047	1397	
+
+K 31   5961	*	3541	3426	5005	3837	*	5607	1304	*	5816	5088	*	3858	4116	4971	5336	4732	*	6596	31
+       35	*	5365	2181	359	0	*	6611	1044	1443	
+
+H 32   *	*	*	*	4854	*	828	4646	6627	2934	*	5185	*	5069	5014	*	6667	7039	4999	3568	32
+       9	*	7331	*	*	0	*	6681	0	1118	
+
+H 33   5650	5642	*	6961	*	5551	1215	*	*	4918	*	*	*	2353	6207	6700	*	5753	*	2124	33
+       13	*	6803	0	*	0	*	6707	1000	1000	
+
+G 34   2848	*	5635	4177	*	3289	5673	7155	2563	4475	*	4132	*	2130	3982	5411	5147	4574	*	*	34
+       0	*	*	*	*	0	*	6718	0	1001	
+
+A 35   2463	*	4225	6829	6725	1661	5212	*	6705	6654	6745	4320	7235	4991	4934	4713	3108	6205	5991	3823	35
+       0	*	*	*	*	*	*	6724	0	0	
+
+Y 36   3867	5413	5687	*	5812	*	6826	*	*	2960	5677	*	*	*	*	6923	*	4418	*	602	36
+       20	7085	7344	2585	263	*	*	6724	1000	0	
+
+V 37   5087	5174	*	*	6850	*	*	2952	6576	3153	7078	*	*	*	6676	*	3692	773	*	8793	37
+       11	*	7095	*	*	*	0	6739	0	1000	
+
+T 38   3371	*	2188	3208	*	7029	*	5678	2791	*	*	2184	*	4518	7384	4997	3470	6789	*	8122	38
+       0	*	*	0	*	950	1052	6730	1004	1068	
+
+N 39   5160	6691	6638	5032	8004	3314	*	5796	2095	*	7900	1648	*	4884	3091	5061	4166	7643	*	*	39
+       0	*	*	*	*	*	0	6739	0	1000	
+
+L 40   3318	*	*	*	4465	*	*	5550	*	617	6322	*	*	*	7022	5739	3893	4552	*	4953	40
+       0	*	*	*	*	*	0	6739	0	1000	
+
+N 41   *	*	*	*	*	6219	*	*	5950	6927	*	231	*	6691	6427	7306	4065	6246	*	6738	41
+       11	*	7095	*	*	*	0	6739	0	1000	
+
+A 42   2584	*	3809	2901	*	5883	5250	6789	2813	4055	5197	3988	*	3875	3971	3950	3839	7477	6509	*	42
+       56	4998	7267	1687	536	950	1052	6730	1293	1068	
+
+A 43   2120	6686	5689	5596	5880	5194	4204	3107	*	1666	*	6458	7272	5347	4975	5226	4578	4572	7479	*	43
+       16	*	6473	*	*	1183	838	6741	0	1050	
+
+L 44   4871	6632	5765	3599	7054	*	6003	3746	6183	1566	*	6163	*	5345	5226	7632	2678	2772	6694	5438	44
+       51	8124	5018	0	*	738	1320	6746	1000	1095	
+
+E 45   2649	*	4393	2179	*	4537	5986	5920	2751	4406	*	4263	5817	4044	4594	3763	5375	4995	*	*	45
+       121	4344	5004	854	1162	1788	493	6703	1372	1254	
+
+K 46   4230	6642	3007	3972	7223	1920	7373	5473	2587	7148	5939	6230	5767	2882	5838	4995	5492	7071	*	6208	46
+       233	5717	2940	1108	900	*	0	6664	1104	1384	
+
+Y 47   5411	5579	5709	5448	5833	5482	5700	4298	5199	1977	6081	6974	6875	5766	6014	3210	2164	6244	5925	3377	47
+       216	4649	3331	1460	652	884	1126	6710	1197	2376	
+
+P 48   2736	*	3749	3163	*	4227	*	5842	3399	5833	5931	3765	2583	4502	5843	3492	4052	*	*	6251	48
+       670	4640	1593	269	2555	556	1644	6633	1196	2227	
+
+Y 49   4325	*	3370	1856	5556	3577	6832	5261	3006	5716	*	4193	5233	4418	5334	3798	5194	5999	*	5257	49
+       437	3329	2626	809	1220	437	1935	6301	1454	3365	
+
+L 50   3790	*	6356	6282	2962	5592	6696	4570	*	1323	4998	4532	*	*	6358	5233	5684	5768	5068	3045	50
+       148	4301	4416	1209	817	1448	659	6751	1278	2430	
+
+H 51   3381	6434	3210	1802	5337	5709	4790	*	3896	5633	*	*	5263	3852	3383	3864	5282	6284	*	4968	51
+       156	3470	6347	317	2343	761	1286	6619	1575	2182	
+
+G 52   3189	*	2900	3457	6980	2875	5529	*	4098	6903	*	2897	7243	4605	4932	2585	5195	*	7074	5915	52
+       148	4085	4705	2314	324	2739	234	6665	1448	1546	
+
+V 53   3200	6183	7083	4336	6451	4621	5179	5138	2893	2844	3931	6099	5609	4310	3034	3977	5827	5350	*	4063	53
+       32	6379	6672	1585	585	1399	688	6668	1047	1749	
+
+E 54   4149	7089	3612	3772	*	4606	5884	6610	5238	4001	*	3628	3516	7115	5230	1961	2659	*	*	7191	54
+       47	5124	8108	2238	344	1366	709	6639	1280	1620	
+
+V 55   4496	*	6184	5066	6287	5573	6540	2877	3923	1533	6426	5816	3698	*	*	4702	6852	2792	*	5509	55
+       78	5151	5358	2363	312	1334	729	6679	1158	1399	
+
+E 56   3307	6766	5312	1937	3565	3665	6337	6037	4206	5371	*	3895	4769	6645	6187	3945	3567	5476	*	4848	56
+       89	5882	4543	3777	109	2561	268	6662	1160	1401	
+
+V 57   4537	6187	2280	1934	*	4405	5245	*	4022	6503	*	3598	5779	3510	8050	3617	4737	5800	*	*	57
+       201	4443	3573	1902	449	3122	176	6571	1273	1632	
+
+L 58   *	*	5642	*	4211	6547	7193	1705	*	1765	5544	6399	6023	5535	*	5021	4369	2837	*	5783	58
+       86	*	4115	5000	46	3544	129	6451	1000	2135	
+
+L 59   4363	*	*	*	6253	*	*	1477	6380	1828	4630	7295	5647	5468	*	4331	6288	2904	*	*	59
+       54	7872	4959	0	*	2950	200	6378	1000	2374	
+
+R 60   3394	*	6724	5401	6381	4375	6340	4857	2834	2912	4428	5193	*	3983	3212	2919	4075	5643	*	4832	60
+       210	7241	2956	0	*	2671	246	6407	1000	2364	
+
+H 61   3798	*	4270	3243	6439	4487	3786	4493	3401	4926	*	2431	*	3980	4375	3575	4290	5359	6195	*	61
+       80	5693	4853	604	1548	3229	163	6415	1068	2929	
+
+L 62   2908	*	6166	5655	5585	*	*	3427	5562	2476	7024	4829	5802	*	5851	2902	2228	4862	*	4098	62
+       109	4906	4671	2028	406	2596	261	6455	1184	2902	
+
+A 63   2143	6474	3816	4883	6897	5242	4570	*	4090	5200	6320	3145	4738	4732	4995	2783	4372	6705	7415	4221	63
+       254	6811	2715	1585	585	2848	216	6493	1000	2803	
+
+A 64   3702	*	4696	3538	6530	3305	*	5461	2556	4747	4997	3366	5863	4279	4391	4024	3706	4509	6595	5677	64
+       170	6122	3366	1546	605	2623	256	6475	1100	3313	
+
+L 65   5805	*	3035	5086	4065	*	*	3187	4365	3272	5215	3368	*	4206	4500	3175	*	3735	*	3307	65
+       187	*	3039	*	*	997	1003	6440	0	3410	
+
+P 66   4159	6457	3483	6878	4863	3796	5916	5164	4814	4794	4987	4429	1910	4637	3714	4306	4396	5759	*	4819	66
+       87	*	4097	*	*	1202	823	6548	0	2772	
+
+Q 67   2389	*	3476	2649	6377	3490	5551	5042	3997	5547	*	4543	6464	4967	3943	3433	4427	4930	*	*	67
+       547	5978	1738	1154	861	1846	470	6638	1112	2348	
+
+D 68   2889	6670	3278	2780	4823	3251	5183	*	4410	4444	*	6550	4207	4323	4910	3188	4245	5640	*	6060	68
+       350	4608	2517	2732	235	1796	490	6246	1118	3610	
+
+I 69   4917	*	4827	*	*	*	6522	3544	5774	1077	5612	4879	5718	5689	5080	4580	4521	3477	5222	5760	69
+       219	*	2829	*	*	1066	937	6655	0	3620	
+
+Q 70   5411	5988	4440	4207	6375	5044	6226	*	1851	4051	6515	*	6892	2421	2734	3945	4721	*	*	6966	70
+       33	6930	6106	3000	193	1140	872	6987	1000	3032	
+
+T 71   2558	*	5020	5355	6364	4287	4230	5020	3556	3768	7470	5178	5077	3400	2908	3600	4590	4207	*	*	71
+       25	6536	7357	0	*	794	1240	7030	1016	2216	
+
+A 72   2947	*	4633	3197	6656	3742	4347	7165	3290	4717	5768	3887	3608	5331	3571	3858	4282	4554	*	*	72
+       19	6247	*	3247	161	1115	893	6955	1035	1542	
+
+V 73   4099	*	*	3343	4275	*	*	1993	*	1965	4796	*	*	5725	*	*	4256	2639	*	5949	73
+       33	5480	*	0	*	517	1731	6849	1132	1267	
+
+R 74   4416	*	*	*	1744	4762	3442	4058	3758	4852	6575	5011	6710	5627	3117	4476	4591	5009	*	4237	74
+       13	6759	*	1000	1000	*	0	6972	1016	1037	
+
+N 75   *	7101	*	6219	2257	*	3867	5118	4627	5611	*	1236	*	5976	*	5107	4582	5686	6927	3777	75
+       7	*	7648	*	*	*	0	6979	0	1037	
+
+N 76   3325	5868	7377	4547	4819	5179	5436	*	*	3897	6010	1351	*	4270	6011	4942	5648	6552	*	2806	76
+       0	*	*	*	*	0	*	6986	0	1080	
+
+G 77   1110	7167	7343	*	5468	2063	*	5339	*	3409	6989	*	*	*	7137	4659	5259	5193	*	4849	77
+       14	6715	*	3000	193	*	*	6998	1015	0	
+
+G 78   2478	7392	5516	*	*	1294	6728	*	*	7143	6016	3471	*	*	*	2098	5102	*	*	*	78
+       0	*	*	*	*	*	*	7000	0	0	
+
+G 79   4934	*	*	3731	*	1267	4999	*	6728	4875	4146	5137	*	2239	5410	3807	*	*	6625	*	79
+       0	*	*	*	*	*	*	7000	0	0	
+
+H 80   2660	6848	5750	7749	5394	*	2000	3057	*	3680	4080	*	*	7114	*	5028	5752	2770	*	3721	80
+       61	*	4588	*	*	*	*	7000	0	0	
+
+L 81   5474	*	7493	7248	2935	*	3972	2858	4239	2823	*	*	*	*	6831	5570	5427	3343	2819	2783	81
+       20	*	6197	*	*	327	2301	7066	0	1275	
+
+N 82   5697	5654	*	7654	*	*	*	6623	*	2432	6862	522	*	*	*	5059	6169	*	*	6464	82
+       0	*	*	*	*	0	*	7097	0	1117	
+
+H 83   *	7749	*	*	*	*	514	*	*	4074	*	2706	*	5778	*	*	6891	*	*	4160	83
+       0	*	*	*	*	*	*	7000	0	0	
+
+S 84   3604	4645	3872	2308	*	6534	3276	5531	5362	*	*	3734	*	4589	7022	2263	3466	6036	*	6778	84
+       16	*	6506	*	*	*	*	7000	0	0	
+
+L 85   6871	*	*	*	1528	*	7003	3036	*	1538	5332	*	*	*	7043	6007	*	5120	6637	3576	85
+       0	*	*	*	*	*	0	7106	0	1044	
+
+F 86   5720	*	*	*	963	*	6623	6633	*	5579	*	*	*	*	*	*	*	4727	5940	1424	86
+       0	*	*	*	*	*	0	7106	0	1044	
+
+W 87   *	*	*	6652	1308	*	*	5785	6647	3742	6713	6775	*	*	5419	*	*	*	1243	5728	87
+       9	*	7304	*	*	*	0	7106	0	1044	
+
+R 88   3782	5626	3803	2140	*	4762	5493	7665	2765	5069	7536	3588	5426	4062	4242	3439	4742	7198	*	7219	88
+       0	*	*	*	*	669	1430	7101	0	1107	
+
+L 89   6758	3055	*	6849	*	3502	6979	4154	*	6646	6379	1708	7665	3684	*	2364	4182	4791	7227	7266	89
+       22	6636	7665	1585	585	*	0	7114	1037	1000	
+
+L 90   *	*	*	*	5070	6739	*	2877	*	866	2067	*	*	*	6603	*	6698	5840	*	*	90
+       44	5072	*	668	1431	0	*	6989	1254	1116	
+
+T 91   2428	4706	5512	*	7425	3381	6753	6588	3842	5814	7781	4827	*	5651	3279	2275	2795	4983	*	*	91
+       156	4722	3957	1719	522	*	*	7000	1243	0	
+
+P 92   3675	*	5292	5240	6434	3319	*	*	4114	*	*	4392	893	5080	6633	4827	4919	7361	*	*	92
+       121	4145	5388	1088	917	138	3452	7074	1377	1540	
+
+G 93   4730	7235	3747	3721	6912	3041	5779	*	2807	5122	6541	2614	4204	4672	4358	3952	4419	5214	5710	6378	93
+       399	3571	2668	1731	517	1070	933	7105	1590	1175	
+
+G 94   4155	*	4312	3507	*	1513	7122	*	4385	*	6842	4114	3609	5008	6159	3006	4373	4882	*	*	94
+       450	2571	3323	2478	285	245	2680	6980	2092	2364	
+
+A 95   4847	5998	5281	3803	5589	1564	*	6967	3119	6586	*	4857	4500	4011	*	2835	3854	*	*	6689	95
+       191	3533	4729	3027	189	1874	459	6880	1566	1952	
+
+K 96   3847	*	5309	5061	7839	1970	*	4852	4186	6275	*	3147	5042	4425	4428	3901	2536	5799	*	5672	96
+       127	3950	5671	2477	286	47	4965	6691	1611	1957	
+
+E 97   3421	*	4850	2536	5054	4706	5305	4786	3023	5354	5444	3911	4658	4076	4241	4512	3688	4312	*	6778	97
+       102	4069	6828	832	1190	0	*	7044	1539	1132	
+
+P 98   4081	5429	6165	6459	*	6006	*	3656	6731	4530	5145	*	682	5276	*	5049	*	4756	*	*	98
+       163	4282	4166	1113	895	*	0	6993	1349	1045	
+
+V 99   4404	*	3866	3797	6567	3431	7083	5938	3388	*	*	4082	2795	6370	5975	2266	3166	6326	*	5219	99
+       189	3163	6526	2286	331	747	1308	6728	1773	1571	
+
+G 100  3564	*	3812	4376	*	1381	*	6589	4181	7260	6244	6790	3116	4783	3698	4348	4932	7101	*	*	100
+       29	6153	7449	1470	646	509	1751	6769	1132	1390	
+
+E 101  2789	*	3720	2829	5489	4192	6607	*	2834	3898	*	4826	4285	4078	3952	4794	4100	5046	*	6775	101
+       31	5535	*	2048	399	856	1160	6786	1112	1121	
+
+L 102  5663	*	*	*	4019	*	*	3063	*	568	6221	*	*	*	6649	6779	6660	4495	5231	6489	102
+       22	*	6058	*	*	*	0	6855	0	1019	
+
+K 103  2446	*	*	3907	*	5089	5802	5191	2445	2506	4175	6576	*	4809	3399	6055	4655	4907	7263	5348	103
+       53	4794	*	797	1236	1649	554	6839	1216	1153	
+
+K 104  3349	6773	2840	2557	*	4808	6473	7292	2250	7520	*	3620	5212	4588	5042	3840	4685	5707	*	7339	104
+       16	6473	*	0	*	*	0	6846	1021	1085	
+
+A 105  1469	*	4604	3775	6205	5061	*	4239	3721	3054	5887	*	*	3764	4451	4617	6857	5930	5562	6836	105
+       23	6926	7084	2235	344	844	1175	6846	1090	1085	
+
+I 106  6657	*	*	6616	4577	*	*	748	*	2157	4858	*	*	*	6270	*	6539	4051	*	*	106
+       23	5963	*	0	*	974	1026	6850	1135	1070	
+
+D 107  3971	6723	3197	2460	*	5015	4440	5403	3822	5639	*	2842	*	4212	4170	4492	3514	3975	*	*	107
+       0	*	*	*	*	*	0	6860	0	1002	
+
+E 108  3352	6284	3668	2671	7208	*	5267	*	2596	5007	7093	4584	*	3534	3235	2959	5806	5125	*	7037	108
+       12	*	6864	*	*	*	0	6860	0	1002	
+
+Q 109  3805	*	2242	4903	5979	*	5318	*	4423	*	*	3553	*	2761	5681	2202	3853	6641	6995	4659	109
+       0	*	*	*	*	958	1044	6853	0	1072	
+
+F 110  *	6869	6627	*	448	*	6963	6022	*	5047	6577	*	*	*	*	*	*	6990	4243	3017	110
+       11	7089	*	0	*	*	0	6860	1000	1002	
+
+G 111  6790	6627	6613	4614	*	509	7089	5735	4798	5426	*	7734	*	5535	6029	3911	6090	6284	*	7294	111
+       40	5562	7337	1585	585	*	0	6860	1107	1002	
+
+G 112  6423	6734	3801	*	*	3359	*	*	6708	*	*	4075	*	6885	*	512	4999	*	*	*	112
+       31	5558	*	1297	754	1025	976	6789	1169	1065	
+
+F 113  6932	6864	*	6011	1780	*	*	3859	5915	2441	4535	*	*	7487	*	6284	5669	2568	4972	2997	113
+       0	*	*	*	*	0	*	6860	0	1002	
+
+Q 114  4570	*	1509	1498	*	4918	*	*	4797	*	*	4736	5754	4807	*	5170	4451	5770	*	*	114
+       0	*	*	*	*	*	*	6966	0	0	
+
+A 115  2543	*	5314	2674	6232	4168	6003	*	3384	*	6218	1975	6371	3885	5359	4283	5185	6001	*	*	115
+       9	*	7331	*	*	*	*	6966	0	0	
+
+L 116  6802	5262	*	*	842	*	*	7272	*	2035	5394	*	*	*	*	*	*	4911	3330	*	116
+       15	6623	*	0	*	0	*	6962	1100	1000	
+
+K 117  5319	6802	*	4366	5645	7638	5928	4204	1295	3541	5927	7827	*	4070	2671	5891	5813	4146	*	*	117
+       0	*	*	*	*	*	*	6966	0	0	
+
+E 118  2532	*	3954	2303	5827	6340	*	*	2954	5296	*	3042	*	4404	4573	3301	3980	*	*	*	118
+       0	*	*	*	*	*	*	6966	0	0	
+
+K 119  4353	*	3607	2126	*	6158	5393	6787	2867	3234	*	5000	6625	2726	5017	5755	4851	5234	*	4426	119
+       0	*	*	*	*	*	*	6966	0	0	
+
+L 120  5892	*	*	*	822	*	*	3981	*	2049	4036	*	*	6835	6929	*	6730	5315	*	*	120
+       0	*	*	*	*	*	*	6966	0	0	
+
+T 121  4443	6558	7243	3915	7372	4764	5954	3284	2627	3221	4986	4122	*	5662	4953	3492	2804	4144	6625	*	121
+       0	*	*	*	*	*	*	6966	0	0	
+
+Q 122  2017	*	4276	3279	6730	5876	6522	6772	3035	5767	*	3080	*	4575	3865	3598	3837	5653	*	6612	122
+       13	6835	*	0	*	*	*	6966	1006	0	
+
+A 123  1868	*	7419	4533	*	*	5719	4323	3374	4255	4324	6171	*	5829	4084	3488	2930	3683	*	5599	123
+       26	*	5830	*	*	*	*	6966	0	0	
+
+A 124  624	6907	*	*	6629	2884	*	*	*	4421	*	5748	*	6605	*	4205	4579	5284	*	*	124
+       33	*	5448	*	*	0	*	6933	0	1089	
+
+M 125  3365	6741	5345	3718	*	*	5932	4911	3524	1895	4730	4748	6917	*	7553	3773	2823	3561	*	*	125
+       10	*	7209	*	*	*	0	6956	0	1123	
+
+G 126  2355	*	4901	5870	*	2415	6643	*	4827	5738	5722	3627	*	7249	6915	1855	3168	*	*	*	126
+       202	5813	3149	0	*	435	1941	6950	1137	1185	
+
+R 127  5978	7240	*	*	5903	*	3485	2838	6351	2022	3677	6041	*	3967	4342	4653	6948	2256	*	6730	127
+       127	4941	4275	0	*	1130	881	6800	1222	1909	
+
+F 128  4098	*	6245	4210	1298	5049	6525	5347	4887	5830	*	5231	4963	2802	4330	4137	5957	6718	*	5916	128
+       30	5595	*	448	1905	242	2697	6863	1162	1840	
+
+G 129  3547	6947	*	5748	6996	416	*	*	*	*	4647	6294	*	*	6233	4187	6684	*	*	*	129
+       16	6474	*	0	*	0	*	6917	1031	1081	
+
+S 130  4255	5926	4722	5253	*	4705	6839	4417	6655	*	*	4876	4574	4972	3955	898	4901	6812	*	6403	130
+       35	6001	6929	0	*	*	*	6966	1050	0	
+
+G 131  4934	6615	6320	*	*	82	*	*	*	*	*	*	*	*	*	*	*	*	*	*	131
+       11	*	7093	*	*	*	0	6889	0	1012	
+
+W 132  6602	*	*	*	4170	*	*	*	*	*	*	*	*	*	*	*	5575	*	281	3469	132
+       13	6768	*	1000	1000	*	0	6878	1006	1081	
+
+A 133  2024	4376	6267	*	*	3251	*	3622	*	3839	*	7590	*	*	*	7407	3317	1660	6787	*	133
+       0	*	*	*	*	921	1083	6878	0	1081	
+
+W 134  6193	*	*	*	3321	*	7330	3478	*	4657	6651	*	*	*	*	*	6985	4190	700	3997	134
+       0	*	*	*	*	*	0	6956	0	1004	
+
+L 135  5355	7385	*	*	6540	*	*	5273	*	248	5331	*	*	*	*	6803	5661	5143	*	6742	135
+       24	6424	7695	0	*	*	0	6956	1047	1004	
+
+V 136  3398	4504	6737	*	6650	3418	*	4024	*	4374	*	*	*	*	6423	3898	5060	1005	*	4991	136
+       106	3924	7610	0	*	1297	754	6962	1477	1051	
+
+K 137  4320	5493	4609	3845	4364	*	7061	3868	3990	3426	7707	6740	*	3480	4178	5378	5069	3614	3395	2766	137
+       88	4514	5992	2699	241	510	1748	6853	1351	1164	
+
+D 138  4865	6280	1459	5220	*	5195	6258	6273	4779	4894	*	2713	5376	3892	3680	4548	4240	6861	*	6310	138
+       221	5719	3022	1421	674	401	2042	6872	1179	1159	
+
+P 139  5243	6347	4011	4605	5739	4214	5545	7737	2729	4458	6873	4982	2371	3693	3875	3459	3872	7020	*	5858	139
+       519	1817	5757	1877	459	354	2200	6733	2977	1934	
+
+F 140  5783	*	2003	3975	7778	4176	5255	7400	4354	4411	6672	3479	6471	3713	5433	3268	3280	5071	*	4870	140
+       415	2079	6216	940	1063	313	2359	6828	2788	1288	
+
+G 141  4800	6601	4155	5406	7186	1432	5961	*	2327	*	*	3309	*	4916	5031	4055	4431	*	6611	*	141
+       158	3449	6366	445	1915	0	*	6951	1759	1120	
+
+K 142  5491	*	5466	3522	7154	6455	5555	*	2090	5502	6966	3491	5377	3761	2301	3340	4098	7262	6638	*	142
+       84	4354	7081	1235	798	0	*	6938	1406	1130	
+
+L 143  6887	*	*	*	3959	*	*	4474	*	331	5566	*	7003	7857	6632	7280	*	5202	*	6600	143
+       13	*	6818	0	*	0	*	6956	1004	1004	
+
+H 144  3738	6642	4244	3753	4482	4573	3598	4935	2932	4474	7284	5671	*	4139	3400	3256	5345	3984	*	4644	144
+       0	*	*	*	*	0	*	6959	0	1011	
+
+V 145  6054	*	*	6633	4989	*	*	1079	*	2986	7526	3305	*	6827	6519	7191	7447	2429	*	5690	145
+       0	*	*	*	*	*	*	6966	0	0	
+
+L 146  4673	6788	6678	6520	4124	*	5297	2668	5987	2452	4357	4936	*	6172	7282	4766	3380	2110	*	5258	146
+       33	6004	7109	1000	1000	*	*	6966	1058	0	
+
+S 147  4083	6907	6002	4746	5411	4001	*	*	3698	4625	*	3087	3637	3417	5380	3611	2366	5063	4190	*	147
+       0	*	*	*	*	*	0	6956	0	1004	
+
+T 148  3753	3762	*	6660	4587	6744	6800	5051	6345	4382	5082	6648	6927	6632	*	3261	1125	4190	*	5919	148
+       93	4149	7330	2755	231	*	0	6956	1402	1004	
+
+P 149  3320	6390	3866	3980	4361	5857	3687	6853	3617	4522	*	5221	3287	3828	*	3609	5256	7247	5777	2774	149
+       33	*	5474	0	*	1052	950	6952	1000	1068	
+
+N 150  4305	*	2726	4968	6593	3877	3859	6085	5232	5282	*	1017	6908	5668	6647	6956	*	7063	*	7834	150
+       0	*	*	*	*	430	1955	6942	0	1199	
+
+Q 151  2282	*	4319	4230	*	3342	2750	*	6108	6484	*	3229	*	2103	*	5533	6964	5568	*	5164	151
+       0	*	*	*	*	*	0	6929	0	1004	
+
+D 152  4745	*	1714	4218	5856	2116	5167	*	*	5639	6654	3732	*	4079	5749	4195	5186	5387	*	4669	152
+       107	6838	3990	5044	44	*	0	6956	1017	1004	
+
+N 153  5286	4065	4582	*	6804	4165	4604	6770	7040	4302	5951	2253	5834	5900	*	2522	2085	5076	*	*	153
+       32	5516	*	2122	377	0	*	6764	1175	1542	
+
+P 154  5631	*	6166	6229	5376	3801	*	4777	5675	3935	7526	4735	691	*	6989	6680	5307	5049	*	*	154
+       76	5042	5588	3151	172	*	0	6878	1198	1000	
+
+V 155  3997	7033	6606	7481	3895	7135	4638	2666	*	1702	5377	*	4659	4959	*	5480	7362	3238	7376	3349	155
+       158	3344	7490	5279	38	2128	375	6875	1717	1144	
+
+M 156  3827	6022	6059	5115	4977	4334	*	4220	5762	3284	3139	4948	4432	4503	6036	3055	3217	3491	5665	5253	156
+       677	1869	3307	3915	99	762	1286	6876	2948	1142	
+
+E 157  4307	*	3500	3765	5598	3542	5073	5118	4122	3852	*	4690	4987	4113	4423	4258	3829	3975	3352	4759	157
+       256	2841	5428	3236	162	168	3187	6674	1981	1972	
+
+G 158  5044	6724	3196	4336	*	1208	7618	7103	4346	*	6039	3156	6353	5151	4828	4743	4266	*	7106	7027	158
+       215	2920	7331	2442	293	199	2959	6771	2003	1240	
+
+F 159  4171	6094	4975	4912	3611	3965	4240	3710	3810	2479	5498	4765	5093	5174	5726	3871	4313	4567	*	4530	159
+       221	2815	*	1416	677	843	1176	6802	2106	1025	
+
+T 160  5630	6941	*	4681	5970	6460	3672	2453	4257	4174	5443	5164	5864	5410	4274	5404	3179	2579	5853	3745	160
+       31	5555	*	1175	844	939	1064	6816	1112	1019	
+
+P 161  4047	*	*	*	*	*	*	4294	*	7055	7375	7074	259	*	*	*	6409	5649	*	*	161
+       0	*	*	*	*	*	0	6800	0	1000	
+
+I 162  5585	*	*	*	7383	*	*	1473	*	944	5926	*	*	*	*	*	*	3863	*	6938	162
+       0	*	*	*	*	*	0	6800	0	1000	
+
+V 163  5457	*	*	*	3404	5656	*	3009	*	641	5219	*	*	*	*	*	*	4262	6275	7489	163
+       11	*	7074	*	*	*	0	6800	0	1000	
+
+G 164  2150	2877	*	6279	7374	2392	*	4894	*	6656	7454	5024	6332	*	*	7208	2818	2409	*	*	164
+       0	*	*	*	*	*	0	6811	0	1047	
+
+I 165  *	4153	*	*	6287	*	*	1633	*	1544	4602	5734	*	6505	*	6254	*	2461	*	*	165
+       0	*	*	*	*	1492	634	6815	0	1047	
+
+D 166  6496	6636	427	*	*	*	*	*	6040	*	*	2577	6693	*	*	5075	*	6259	*	*	166
+       0	*	*	*	*	*	0	6839	0	1008	
+
+V 167  3824	*	*	6758	6158	6711	*	4050	*	2456	3707	*	*	*	*	5660	3822	1083	*	6060	167
+       0	*	*	*	*	0	*	6839	0	1008	
+
+W 168  6725	*	6331	*	4138	*	4082	*	*	5373	*	*	*	6657	*	4344	5216	*	598	3449	168
+       0	*	*	*	*	*	*	6812	0	0	
+
+E 169  *	*	4156	354	*	*	6814	*	5655	6247	*	6638	4087	4801	6082	*	*	*	*	*	169
+       0	*	*	*	*	*	*	6801	0	0	
+
+H 170  6885	*	*	6341	*	6701	372	*	5177	7211	*	6519	*	5721	4738	6410	*	5488	*	4030	170
+       0	*	*	*	*	*	*	6801	0	0	
+
+A 171  445	5095	6257	*	*	*	*	6300	*	*	4681	6669	6516	*	*	3027	6517	5857	*	*	171
+       18	*	6300	*	*	*	*	6795	0	0	
+
+Y 172  *	*	*	*	4156	*	6847	*	*	6843	*	*	*	6491	6388	5998	*	6826	3465	343	172
+       7	*	7638	*	*	*	0	6776	0	1037	
+
+Y 173  6920	6385	*	6675	3624	*	6888	4811	*	2595	4710	6769	*	5965	*	5839	6489	5233	5116	911	173
+       11	*	6981	*	*	*	0	6778	0	1080	
+
+L 174  5868	*	5519	4982	5233	5834	4019	2632	4832	1343	5179	6768	5813	*	5634	5555	5435	3735	6752	5076	174
+       27	5768	*	0	*	*	0	6686	1086	1147	
+
+K 175  6490	*	569	6651	*	6509	*	*	2745	*	*	*	*	3324	5996	6314	*	5910	*	*	175
+       0	*	*	*	*	560	1636	6686	0	1147	
+
+Y 176  *	*	*	*	3475	*	3369	*	5978	*	*	*	*	7011	6888	*	*	*	5677	393	176
+       44	5053	*	2653	250	0	*	6707	1177	1004	
+
+Q 177  5633	*	*	4954	6892	1565	5844	6618	2668	4893	7290	4675	5807	2117	4026	5594	*	*	*	7246	177
+       211	3098	5685	1568	593	*	*	6716	1842	0	
+
+N 178  3692	*	6009	7201	6910	6656	6097	*	4947	4232	*	996	4181	5393	6415	4659	3477	4313	6633	*	178
+       179	3165	7609	0	*	0	*	6692	1821	1100	
+
+R 179  3921	*	2847	5411	*	2243	*	*	2837	5877	*	2965	*	5977	2736	5390	*	3549	*	*	179
+       52	4833	*	1819	481	*	0	6718	1196	1000	
+
+R 180  5220	*	*	*	*	*	*	*	1468	5929	*	5977	*	6903	873	*	*	5320	*	*	180
+       0	*	*	*	*	0	*	6718	0	1000	
+
+A 181  1669	*	5924	3250	*	4082	7017	*	3535	4771	*	5619	3004	4354	4061	3996	*	4940	*	5312	181
+       0	*	*	*	*	*	*	6716	0	0	
+
+D 182  3266	*	1908	2983	*	5300	*	*	2558	*	6601	3832	5529	3776	4500	5133	5144	4984	*	*	182
+       0	*	*	*	*	*	*	6718	0	0	
+
+Y 183  *	*	*	*	3292	*	4221	6235	*	*	*	*	*	*	*	*	*	*	5274	313	183
+       0	*	*	*	*	*	*	6718	0	0	
+
+L 184  4711	*	*	*	4897	*	*	1878	*	1599	*	*	*	*	*	6378	6958	1708	*	*	184
+       0	*	*	*	*	*	*	6718	0	0	
+
+Q 185  3989	*	2540	2373	*	*	5683	*	2456	6530	*	3415	*	3791	3983	3934	4410	6903	*	6708	185
+       0	*	*	*	*	*	*	6718	0	0	
+
+A 186  1956	*	3935	3879	6369	6282	6638	6329	3965	*	*	1884	6929	5683	4084	4577	3726	5475	*	*	186
+       9	7363	*	0	*	*	*	6708	1000	0	
+
+I 187  *	6460	*	*	1304	*	*	3588	*	4803	6673	*	*	*	*	7383	*	2587	2047	4625	187
+       0	*	*	*	*	0	*	6712	0	1000	
+
+W 188  *	*	*	6524	2292	*	6634	4198	*	2894	4671	*	*	6947	*	*	*	6134	966	6365	188
+       104	4068	6671	0	*	*	*	6708	1389	0	
+
+N 189  5511	*	2660	2558	*	5198	4455	7396	2457	*	7367	2242	*	4383	5081	3622	6274	*	*	*	189
+       42	5117	*	0	*	*	0	6698	1158	1022	
+
+V 190  4062	3793	*	*	5032	6718	4413	2957	4752	2631	*	2604	*	*	6669	5153	6280	2221	*	5386	190
+       9	*	7396	*	*	0	*	6698	0	1022	
+
+L 191  4880	5421	*	*	6520	*	*	1346	*	2511	5678	*	*	*	*	*	6361	1594	*	*	191
+       0	*	*	*	*	0	*	6709	0	1000	
+
+N 192  *	*	1522	5177	*	*	6638	*	7252	6671	*	846	*	*	6091	5219	*	*	*	*	192
+       0	*	*	*	*	*	*	6708	0	0	
+
+W 193  *	*	*	*	5868	*	6131	*	*	*	*	*	*	*	*	*	*	*	56	7215	193
+       0	*	*	*	*	*	*	6691	0	0	
+
+D 194  4145	*	2064	2531	6583	5354	4582	6661	2534	7253	*	3342	5914	5091	6816	3514	6130	*	*	6593	194
+       0	*	*	*	*	*	*	6691	0	0	
+
+V 195  3730	*	4596	3202	2683	6661	7749	3994	3459	4571	*	4591	*	6174	5912	6690	5177	1963	5751	5366	195
+       10	7125	*	0	*	*	*	6691	1000	0	
+
+A 196  1903	6594	6131	7125	*	*	*	3138	*	4553	*	*	*	*	*	*	*	877	*	*	196
+       0	*	*	*	*	*	*	6691	0	0	
+
+E 197  3651	7302	4068	1529	6671	*	*	*	5923	5108	6467	2003	*	4955	6420	3466	6206	5848	6661	5905	197
+       0	*	*	*	*	*	*	6691	0	0	
+
+E 198  3016	7162	4215	2846	*	5523	5700	6128	2729	*	*	3924	*	3114	2858	3552	5764	6259	6641	5357	198
+       17	6444	*	1585	585	*	*	6683	1017	0	
+
+F 199  4409	7255	*	*	5568	*	6186	6673	5110	4075	*	2622	*	5006	833	7168	6312	6874	*	5040	199
+       0	*	*	*	*	*	*	6674	0	0	
+
+F 200  6371	*	6821	*	2290	*	*	5830	*	1531	7010	7011	*	*	*	*	*	*	4575	1500	200
+       183	3066	*	1150	864	*	*	6690	1686	0	
+
+K 201  3378	*	5003	2430	3852	5410	5917	5312	3372	3170	6998	4050	*	3309	4452	4005	4090	6781	*	*	201
+       15	6635	*	2166	364	*	*	6476	1029	0	
+
+K 202  2439	*	4897	3871	6151	4136	*	*	2673	6420	6349	3268	*	2669	3622	3655	5718	5555	*	*	202
+       30	5597	*	0	*	*	*	6128	1000	0	
+
+A 203  1115	5285	*	5239	3330	3554	*	3084	5770	3571	*	*	*	*	*	4036	*	5627	*	*	203
+       0	*	*	0	*	*	*	5257	0	0	
+
+//
+�HHsearch 1.5
+NAME  f431126caeda0da6cffa83c7e49df465
+FAM   
+FILE  f431126caeda0da6cffa83c7e49df465
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:15:21 2013
+LENG  217 match states, 217 columns in multiple alignment
+FILT  137 out of 1430 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  10.1
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEEECCCCEEEECCCCEEEEEEECCCCCCCCEEEEEEECCCCCCEEEEEEEECCCCCCCEECCCCCCCEEEEECCCCCCEEEEECCCCCCCCCEEEEEE
+ECCCCCEEECCCEEEEEEEECCCCCCEEECCCCCEEECCCEEEEEEEECCCCCCCEEEEECCCCCCCCCCEEEEEECCCCEEEEEEEEEEECCCCCCEEE
+EEEEECCCCEEEEEEEC
+>ss_conf PSIPRED confidence values
+9189777978996799799999961788888679999958999848999997215788603266557617999516898168998245523474489999
+5488721653425788875102476213158740132284699999963656998699989984157731145572599689999999950005898799
+99993898874899969
+>Consensus
+xxxxxxpxxxxxxxGxxvxLxCxxxxxxxxxxxvxWxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxrxxxxxxxxxxxxxLxIxxxxxxDxgxYxCxv
+xxxxxxxxxxxxxxlxvxxxxxxxpxvxxxxxxxxxxxgxxxxlxCxxxxxxPxxxxvxWxxxxxxxxxxxxxxxxxxxxxxxxsxLxixxxxxdxgxyx
+Cxvxxxxxxxxxxxxxx
+>f431126caeda0da6cffa83c7e49df465
+EVKLVESGGGLVQPGGSLRLSCATSGFTFTDYYMSWVRQPPGKALEWLGFIRNKADGYTTEYSASVKGRFTISRDNSQSILYLQMNTLRAEDSATYYCTR
+DPYGPAAYWGQGTLVTVSAAKTTPPSVYPLAPGCGDTTGSSVTLGCLVKGYFPESVTVTWNSGSLSSSVHTFPALLQSGLYTMSSSVTVPSSTWPSQTVT
+CSVAHPASSTTVDKKLE
+>gi|338724447|ref|XP_003364946.1| PREDICTED: hypothetical protein LOC100629784 [Equus caballus]
+DTKVTQrPGHLVKGKEQKAKMTCVP---IKAHIHVYWYRRKLEGEFEFLVYLQ---NNDVIDKIEGFDQQFSAQCPK-NASCSLEIKSTEPGDSALYFCA
+SSESTvLNDTFDKSEVAYV---GPVDAKIYQMPAFLLTGVEQDVTLEC----------------------------------------------------
+-------------------
+>gi|168985006|emb|CAQ10833.1| major histocompatibility complex, class I, C [Homo sapiens]
+----------------------------------------------------------------------------------------------------
+-----------------------HPKTHVTHHL---VSDHEASRR-WNLpevgscggAFWrRAEIHVPCaaRGAAGAPHPE-------------------
+----------------------------
+>gi|341890830|gb|EGT46765.1| hypothetical protein CAEBREN_12792 [Caenorhabditis brenneri]
+---------VVLPSGHALRLECSAYSAPT--GSIQWTFEG--------VVIS--GSDKTNRTENEFNkEALVSE--SMSVLSELHIDCPQ---SGRYTCS
+ATNSFdtitaQATVRIEGHHRHCHPTK--GPKISQYSDMRLELNGNTASVWCD--S-SNQDVSWSWstRSDGEITTDDHY-LVK-D-nE------LIIKN
+VSWNDtKSYFCQASNSYGSVTRE----
+>gi|221330930|ref|NP_001137898.1| CG42256, isoform F [Drosophila melanogaster]gi|220902492|gb|ACL83253.1| CG42256, isoform F [Drosophila melanogaster]
+--------------------vaknpaaeikytallqvKGSVLAYPS--QKLN-TEHK-KRKPHKYRshllskl---------------------------
+-kLSQCSLTLAA----slkp----FI--------------------------------------------------------------------------
+----------------------------------------------
+>gi|149597420|ref|XP_001520231.1| PREDICTED: similar to butyrophilin [Ornithorhynchus anatinus]
+--VIGPAEPVLALEGGDTEMPCHLNPKESAEFmEVRWFRSR----PSNIVHLY--DNREELFREQmeEYQGRTELVRDAmDYGSVAVRLLNVRVSDEGNY
+HCSFYDG----NTVDRAPLELQVvGSTAQCSIFMEHFSWIS-----LILDLFP-DWIPDlfPI-LQMrelsEGGVNIKCPKSYGIGHTCTMFSLddifgn
+fisaplfptaLSLMVALGVT--LPVLGLIIAGglyLIWKQNMDIEK-
+>gi|259089625|gb|ACV91668.1| RT02067p [Drosophila melanogaster]
+---------LRVLVNSSAQIKCDVGSSQADDkvLLVVWYK---NNLPIYSYDTRGAHAGTPSHWRDEevLEDRAVFRTH--KEPAELIINPVKEKDAGNF
+RCRVD-------FKLSqtrnsnVNLEV---VVPPTQPIIFNERRLRIDSragpyeegGSLEVTCVVYGGSPPPT-VIWlMNGQLQNSVVDYTYDGAiNSK
+LVV---RNLSRIHQ-HAVYTCQASNFHKKYVATN-IT
+>gi|335300333|ref|XP_003358857.1| PREDICTED: OX-2 membrane glycoprotein-like [Sus scrofa]
+----VVTQDVRERLNTPASLRCSLQN-PQEVLIVTWQKIKAVS-PENMITFS---KNHGVVVQPAYKDKINITQLGLMN-STITFWNTTLEDEGCYKCL-
+-----FNTFGAGKISGIACLTLSvQPTVSLHYKLSED----QLNITCSANAR-PAPM-ISW--KISGSGIENSTEILVhpNGTTSVTSILQIKDPKSQvG
+KEVICQVLHLGTVTDYRETV-
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+E 1    4195	*	2687	2550	*	*	4169	4372	*	*	*	*	4031	1320	*	*	4215	*	*	*	1
+       0	*	*	*	*	*	*	6847	0	0	
+
+V 2    *	*	*	*	4751	4917	*	2838	*	1931	4459	4681	*	*	*	4961	4909	1512	*	5197	2
+       0	*	*	*	*	*	*	8186	0	0	
+
+K 3    4248	*	*	3701	4404	3740	5102	5409	2685	5687	*	4746	*	5184	5106	3072	4202	2146	*	5167	3
+       0	*	*	*	*	*	*	8645	0	0	
+
+L 4    5666	*	*	*	4646	5916	*	3475	*	1731	3482	*	5562	*	5612	3662	4019	1939	*	*	4
+       0	*	*	*	*	*	*	9189	0	0	
+
+V 5    5629	*	4936	3283	*	5989	*	4955	5066	3190	4609	*	*	2464	5780	2787	2438	3523	*	*	5
+       0	*	*	*	*	*	*	9270	0	0	
+
+E 6    2725	*	4367	3457	6106	5866	6099	4481	3847	4826	*	*	3485	2405	*	4786	3382	3278	*	*	6
+       104	4128	6344	0	*	*	*	9392	1373	0	
+
+S 7    5603	*	4716	4524	*	4532	6087	*	5337	5048	6350	5348	1007	4858	5098	3609	3478	6037	*	*	7
+       0	*	*	0	*	0	*	9626	1000	1000	
+
+G 8    3353	*	5393	3543	*	2904	6585	6429	3805	6078	*	4060	2432	4664	4192	2978	5070	4198	*	*	8
+       73	4345	*	846	1172	*	*	9696	1466	0	
+
+G 9    4484	*	3067	3260	5111	4903	5477	4111	5144	5229	6290	3557	4942	4260	4718	2671	3486	3893	*	*	9
+       22	6057	*	0	*	*	*	9774	1050	0	
+
+G 10   4176	*	*	4643	4867	5596	6445	3542	5473	2127	5084	6351	4643	4519	6160	4519	4923	1866	*	6574	10
+       0	*	*	*	*	*	*	9949	0	0	
+
+L 11   6397	*	4318	4339	*	5655	*	3022	4922	4219	5068	4798	6208	4063	4220	2859	2692	2638	*	6268	11
+       35	5396	*	0	*	*	*	9983	1197	0	
+
+V 12   2364	6752	*	6625	5533	3939	*	4129	4973	3781	4959	6643	6525	5569	6158	4509	3886	1652	*	5638	12
+       26	*	5828	*	*	*	*	10182	0	0	
+
+Q 13   4467	*	*	3585	5176	5438	5645	4405	3663	4129	4835	4527	4232	3324	2956	3078	4183	3580	*	*	13
+       10	*	7124	*	*	*	0	10185	0	1088	
+
+P 14   4012	*	7241	2020	6432	*	*	4996	4181	2883	6147	*	3824	6960	3459	4014	4056	3428	7003	4482	14
+       0	*	*	*	*	*	0	10267	0	1229	
+
+G 15   5720	*	5872	4804	6807	438	*	*	5577	*	*	3643	*	6425	6529	4366	*	6801	*	*	15
+       12	6869	*	1350	719	1487	637	10349	1147	1229	
+
+G 16   4956	*	2948	2262	*	2811	5677	*	4330	4963	*	4676	*	2809	5747	3021	4208	*	*	6928	16
+       0	*	*	*	*	0	*	10451	0	1088	
+
+S 17   5561	5353	3044	5197	*	6971	5817	*	3726	5888	6170	3168	3439	4844	5044	2518	2485	5094	*	5462	17
+       37	6891	5889	1000	1000	*	*	10491	1006	0	
+
+L 18   2048	*	*	6933	5901	5939	*	3496	*	3558	4793	*	5703	*	*	6526	4890	1218	*	6189	18
+       16	6526	*	0	*	0	*	10288	1006	1174	
+
+R 19   4520	6181	4844	3797	5304	6730	6021	4412	3923	4476	7032	4535	6505	4863	4443	3604	1761	3412	*	6096	19
+       0	*	*	*	*	*	*	10509	0	0	
+
+L 20   6181	*	*	*	3766	*	*	3168	*	603	4508	*	6687	6877	*	*	*	3631	*	*	20
+       0	*	*	*	*	*	*	10509	0	0	
+
+S 21   *	*	4195	4790	6116	4700	4758	5373	5102	4926	4981	3342	2337	4727	3672	2893	3352	4444	*	6603	21
+       0	*	*	*	*	*	*	10509	0	0	
+
+C 22   4975	124	*	*	5532	*	*	*	*	*	*	*	*	*	*	6496	*	6692	*	6928	22
+       0	*	*	*	*	*	*	10509	0	0	
+
+A 23   4959	*	4240	3966	4712	4335	4453	5322	3145	4741	6808	3120	4301	6269	3249	2887	4059	4718	*	5960	23
+       27	6556	6979	1000	1000	*	*	10509	1019	0	
+
+T 24   2789	*	6173	*	2813	5739	7013	3186	*	3119	*	6988	4459	6776	*	5203	5278	2248	*	3037	24
+       136	3952	5317	998	1002	*	0	10496	1995	1015	
+
+S 25   5543	*	4796	3396	4846	4502	5825	4779	3854	4427	*	4513	5271	4893	3786	2543	2328	7036	6631	4847	25
+       157	3876	4837	1083	921	2027	406	10462	2036	1522	
+
+G 26   4398	*	4110	3259	6512	1704	6936	7084	3972	5108	6846	4073	3805	4028	4844	3656	5171	6509	*	6626	26
+       95	*	3977	2807	222	1940	436	10433	1083	1959	
+
+F 27   4193	5459	4251	5858	3068	3605	4582	5884	3562	4834	5144	4959	3861	3749	5236	3358	4214	5082	*	4013	27
+       63	*	4557	*	*	828	1195	10308	0	2773	
+
+T 28   3885	6485	4298	3736	5439	5058	5911	5897	3718	5403	*	3986	2094	4296	5660	3197	3220	6884	6783	7112	28
+       174	5478	3455	1000	1000	1501	629	10360	1271	2425	
+
+F 29   4283	5052	4071	3812	4479	4225	6862	4891	4609	2853	*	4966	2722	5840	5295	3652	4557	4139	*	4001	29
+       472	4696	2055	1551	602	2143	370	10597	1514	3476	
+
+T 30   3490	*	3036	3724	*	3257	4847	*	4485	5427	*	4471	3984	4724	4168	3098	3351	5120	*	4038	30
+       83	5341	4996	1331	731	3840	104	10214	1161	5954	
+
+D 31   4503	*	2210	4192	*	4382	3611	4400	4502	3883	*	3446	4126	3671	4482	4005	*	4027	*	*	31
+       291	2550	6373	450	1899	152	3319	10205	3073	5966	
+
+Y 32   5476	*	4681	5217	3879	4202	5252	4248	5343	2999	4890	4982	2702	4433	5771	4036	3506	3490	*	4678	32
+       149	3608	5974	575	1605	1327	734	10481	2453	1696	
+
+Y 33   3936	*	6027	4672	5920	4467	5933	3765	4220	4341	5346	4425	5016	4849	4829	3076	2890	3535	6482	3285	33
+       25	5889	*	940	1062	2571	266	10507	1178	1686	
+
+M 34   6968	6633	*	*	3889	5790	6532	1967	*	2434	5013	*	*	*	*	6919	6102	1498	5955	5596	34
+       12	6886	*	1000	1000	1900	450	10505	1001	1546	
+
+S 35   5493	5964	6148	3640	3589	5541	4617	5559	3925	4360	5488	4669	*	3918	4252	2957	2807	5176	6501	3384	35
+       21	6109	*	0	*	*	0	10515	1114	1359	
+
+W 36   *	*	*	*	4245	*	*	6536	*	5291	*	*	7053	*	*	*	*	4429	223	*	36
+       0	*	*	*	*	*	0	10515	0	1359	
+
+V 37   6022	*	5424	4902	2898	*	4711	5242	3726	3530	5882	5820	*	4590	4030	4690	3802	5206	4910	1950	37
+       103	7183	4009	1585	585	*	0	10515	1000	1359	
+
+R 38   6734	*	*	5443	4367	5295	4296	5154	1749	4603	6497	*	*	3852	1872	5310	6780	5214	4486	5916	38
+       209	5422	3165	1038	963	*	0	10451	1296	2574	
+
+Q 39   6691	*	3125	4100	*	3491	5573	6777	4023	4875	6476	3958	6329	1958	3643	4103	4196	3955	*	*	39
+       29	*	5643	*	*	1460	652	10456	0	4370	
+
+P 40   4280	*	2635	4321	5437	3575	4523	4425	2620	6364	5339	4025	4474	6281	3587	4454	3735	*	*	5815	40
+       209	*	2893	*	*	1323	736	10538	0	3533	
+
+P 41   3563	*	4123	3686	4554	3462	6257	6344	3940	4313	6868	3400	2121	6170	5069	3740	4815	*	*	5727	41
+       61	5345	5871	2003	414	1731	517	10428	1184	4454	
+
+G 42   4117	*	2917	4695	6605	1767	5355	*	4243	*	5930	4359	4693	5322	3873	3186	4097	7176	6740	6887	42
+       15	6581	*	0	*	2124	376	10506	1041	3757	
+
+K 43   3483	*	4230	3870	6719	3351	5209	5722	2487	4519	6654	4140	4531	2888	4104	5652	4826	4182	*	*	43
+       93	7216	4159	0	*	*	0	10533	1000	3169	
+
+A 44   3183	*	4315	3462	5655	2689	6906	4746	4830	4702	5106	4401	3615	4299	5559	3173	3530	5890	*	6569	44
+       12	6882	*	0	*	1016	984	10451	1000	3930	
+
+L 45   4874	5827	4430	4099	4202	5786	6446	3918	4898	2544	5761	6786	2312	5212	4747	3989	5811	3258	6627	*	45
+       105	5174	4547	667	1434	1784	495	10483	1496	2535	
+
+E 46   4391	*	3602	2703	*	5738	6444	3993	4034	4744	6883	4923	5249	2763	4156	3324	3927	3791	*	5958	46
+       145	5437	3782	1000	1000	3918	99	10492	1223	2813	
+
+W 47   5008	*	4459	5080	3133	4671	6891	3927	4680	2496	*	4661	5156	5297	3457	4377	4660	3509	4381	4550	47
+       0	*	*	*	*	2452	291	10442	0	3849	
+
+L 48   4331	*	5702	6905	5082	6162	*	2495	4645	1932	5275	*	4260	5517	5380	5194	3781	2599	*	6531	48
+       563	4831	1796	0	*	1527	615	10469	1384	3372	
+
+G 49   2471	5998	4087	6651	3992	4261	6362	3040	*	3328	6094	*	5356	6221	5493	3388	4082	2802	*	6133	49
+       43	5086	*	1578	589	*	0	10073	1256	6157	
+
+F 50   4684	*	5077	3947	3230	6961	6090	4667	5408	4829	*	5430	4937	4551	4384	3268	4160	4262	4560	2068	50
+       0	*	*	*	*	184	3060	10073	0	6157	
+
+I 51   5284	6778	5077	5826	3755	5557	4740	2274	4804	3018	5031	7110	6556	4795	5503	4675	4129	2594	6053	4810	51
+       0	*	*	*	*	*	0	10527	0	1691	
+
+R 52   4048	*	3818	4994	3951	5808	4522	4644	4091	4658	6759	3316	5183	3542	4448	3363	4512	5453	*	2834	52
+       2420	5363	342	1704	529	*	0	10527	1284	1691	
+
+N 53   *	*	3563	3497	*	3294	4462	4421	2728	*	4324	2900	*	*	*	4341	*	*	*	2008	53
+       298	*	2422	*	*	*	0	7348	0	9194	
+
+K 54   4101	*	3965	*	*	*	3996	4246	2004	4209	*	*	2988	4153	*	2237	3951	*	*	*	54
+       93	*	3996	*	*	1657	550	6600	0	9325	
+
+A 55   3489	*	5336	3572	5660	2648	5941	*	4580	*	*	4619	2642	5789	3472	3332	3482	4558	*	5360	55
+       94	*	3991	*	*	2883	210	8959	0	8068	
+
+D 56   4637	*	4865	3782	*	3700	4891	*	3335	4188	4869	3002	5747	5084	*	2449	3369	3924	*	4830	56
+       49	*	4900	*	*	2927	203	9560	0	7712	
+
+G 57   4458	*	3237	3457	5957	3023	*	5694	5057	4513	5791	3018	5842	4403	5086	2660	3308	6006	*	6084	57
+       62	*	4581	0	*	1378	701	9756	1026	7309	
+
+Y 58   6639	*	2948	*	5428	2390	6369	6055	2902	6284	*	3225	6111	3498	3781	3290	4574	*	*	4455	58
+       71	6475	4759	3807	107	4323	74	10342	1041	5807	
+
+T 59   4846	5340	3600	3726	6635	3792	6342	5194	4033	5721	*	4452	3525	4294	4373	2604	4375	3158	*	5379	59
+       27	5754	*	2807	222	2443	293	10261	1088	5929	
+
+T 60   4145	*	3961	3122	5467	5360	5440	4141	4001	4177	*	4579	3213	5572	4389	3206	3232	4152	*	5033	60
+       15	6593	*	1000	1000	5256	38	10406	1000	5233	
+
+E 61   6792	*	3925	2738	4856	4576	4181	4360	3896	3798	*	3406	6749	3714	4374	3552	4421	3721	*	5636	61
+       38	6503	6094	0	*	4877	50	10401	1013	5147	
+
+Y 62   5467	5295	4220	*	2981	5014	4922	3582	5675	4887	*	4874	5450	3958	4496	3445	4925	3223	5277	2761	62
+       44	*	5070	*	*	2889	209	10351	0	5186	
+
+S 63   4597	*	3236	3366	3541	4473	4885	5656	4258	5449	6057	4052	4458	5482	4529	2308	4010	6618	6218	5524	63
+       0	*	*	*	*	4139	84	10391	0	5034	
+
+A 64   3558	*	3218	2860	6299	2914	4792	5433	5224	5579	*	3321	3098	4928	6811	3487	4676	5742	6374	*	64
+       171	3923	4440	1620	568	4028	91	10427	1795	4850	
+
+S 65   5482	*	3265	2810	5450	3010	6344	6143	3609	4832	6215	4759	3473	4126	5510	3611	3743	4469	*	5711	65
+       67	6668	4826	0	*	*	0	10359	1000	5109	
+
+V 66   4033	6335	6166	*	3219	5293	4918	5448	*	2514	6370	6628	4413	5200	4819	4989	3605	2924	*	2544	66
+       65	4496	*	4223	79	2409	301	10271	1522	5420	
+
+K 67   4990	*	3621	3863	6240	4472	6277	*	2424	5128	6515	3418	3413	4066	4118	3258	4173	5254	*	5031	67
+       80	4213	*	572	1611	2005	413	10215	1692	4751	
+
+G 68   4393	*	3409	3063	*	1997	5572	*	3934	6466	6576	3567	4153	4850	5099	2897	5118	*	6330	*	68
+       27	5749	*	598	1558	4373	71	10313	1167	3942	
+
+R 69   5797	*	4508	6474	6869	4397	5005	4703	3575	6343	*	5151	5242	4612	843	6442	5729	6454	*	6574	69
+       54	4758	*	1048	954	*	0	10332	1487	3816	
+
+F 70   2931	*	*	6391	1845	5490	6522	4184	*	3081	*	5772	6735	6504	5614	*	5271	2659	6830	3057	70
+       0	*	*	*	*	*	0	10332	0	3816	
+
+T 71   5299	*	4757	5352	4872	5249	5338	5327	4597	5759	*	3617	5532	3226	3425	2148	3351	3398	5524	*	71
+       30	*	5606	*	*	4617	60	10332	0	3816	
+
+I 72   3294	*	5384	6353	3036	4096	6829	3157	6671	2159	4638	6483	6574	5073	6715	4740	5494	2897	6519	5575	72
+       53	*	4799	*	*	3522	131	10287	0	4001	
+
+S 73   5512	6757	4370	3571	6767	*	6310	4173	4733	3543	6143	3673	4639	3555	4092	2853	2726	4002	7079	*	73
+       293	4874	2741	444	1915	3340	150	10265	1352	4291	
+
+R 74   4962	6579	5659	4669	4462	2958	5154	5216	3591	4373	*	5742	3714	4648	2640	4707	3942	3780	3906	*	74
+       72	6403	4761	0	*	5123	42	10290	1026	5589	
+
+D 75   6083	*	2328	3463	4838	3759	4246	6366	3801	5420	*	3182	3826	4651	4448	4174	4264	6326	*	4626	75
+       281	4332	2974	853	1163	793	1242	10132	1519	5780	
+
+N 76   4550	*	4380	3783	5739	3477	4618	4560	3593	4489	5613	3564	3444	5182	4627	3240	4086	4337	*	4702	76
+       153	4976	3859	0	*	*	0	10461	1327	4620	
+
+S 77   3066	*	3509	3463	4599	3757	5562	5864	4005	5607	6532	3952	6670	5147	6204	2209	4719	4858	4756	6262	77
+       121	4445	4851	592	1571	872	1141	10362	1519	5339	
+
+Q 78   3959	6594	4408	3059	6854	2810	3687	*	4330	3595	6504	4037	4700	3537	4697	3601	5050	5115	6992	6313	78
+       28	*	5688	*	*	736	1324	10375	0	3660	
+
+S 79   3769	*	3947	4959	6490	2286	7245	7182	3573	4516	*	3374	6314	4759	4209	2689	4152	4762	7249	5840	79
+       180	4222	3974	2355	314	*	0	10464	1739	2365	
+
+I 80   4217	5708	2418	4976	4935	4402	6787	4598	4117	4883	6364	2970	5101	4250	4025	3275	4734	4460	*	5875	80
+       15	6581	*	0	*	1498	630	10339	1019	3400	
+
+L 81   2600	3639	*	7148	3097	2722	7080	4029	*	3838	*	6962	5227	7113	7247	3100	6882	4981	6087	3051	81
+       0	*	*	*	*	704	1373	10408	0	2573	
+
+Y 82   4865	*	4706	4706	5708	6894	4817	5854	5394	4956	*	4162	5535	3839	5232	1734	2461	4350	*	4390	82
+       40	5186	*	963	1038	1975	423	10459	1346	1541	
+
+L 83   6806	6744	*	6525	3929	*	*	3625	*	468	6867	*	*	*	*	*	6161	4275	*	5196	83
+       0	*	*	*	*	*	0	10484	0	1364	
+
+Q 84   4645	*	5316	4798	4341	5210	5124	4434	3679	3372	7000	5468	5171	3186	3466	3323	2808	3957	*	7096	84
+       11	6995	*	1536	610	*	0	10484	1199	1364	
+
+M 85   6161	*	*	*	5557	6867	*	949	5815	2216	4944	5605	*	*	*	5583	6995	3132	*	6728	85
+       9	*	7383	*	*	*	0	10484	0	1364	
+
+N 86   5161	*	5116	4788	*	6518	4099	6031	2963	4430	*	4252	3809	4240	3031	2588	2791	7075	7233	5394	86
+       0	*	*	*	*	*	0	10480	0	1528	
+
+T 87   4737	5822	3477	5450	6520	3591	5310	*	3452	6711	*	1780	5664	5293	3184	3100	5540	6153	*	6208	87
+       26	*	5811	*	*	*	0	10480	0	1528	
+
+L 88   2316	*	*	*	5063	5673	*	3248	6511	2291	5066	*	6988	6175	*	5765	3935	1768	*	*	88
+       0	*	*	*	*	*	0	10359	0	1860	
+
+R 89   4133	*	4301	3017	6236	5607	4735	5222	3953	*	*	5520	6577	2637	2970	3457	2573	5865	6775	*	89
+       56	4710	*	369	2149	1672	543	10359	1693	1860	
+
+A 90   3851	*	5596	3992	5673	7293	6517	3998	3839	2498	5695	7232	3033	4645	3695	4996	4506	3282	4334	7002	90
+       0	*	*	*	*	0	*	10505	0	1548	
+
+E 91   4443	*	3166	2152	6518	3632	*	7990	4053	4626	*	4167	6979	4204	3998	2502	4197	6651	*	*	91
+       60	5035	6635	1758	506	*	*	10650	1411	0	
+
+D 92   5356	*	490	4240	7896	5655	3894	*	6510	6710	*	4524	*	4847	6738	7051	*	*	*	8147	92
+       40	*	5207	*	*	*	0	10638	0	1035	
+
+S 93   2378	*	3786	2588	6532	3936	5925	7089	5981	*	5164	4560	5811	4688	5805	2549	3039	*	7157	6841	93
+       0	*	*	*	*	1814	483	10468	0	1538	
+
+A 94   2460	*	6197	6199	*	854	7393	*	5201	6652	*	5648	*	4576	5305	4119	5737	4999	*	*	94
+       13	8270	7520	0	*	626	1507	10523	1000	1342	
+
+T 95   4521	6457	4336	3421	6483	5359	6979	3825	3588	3645	6785	4259	7181	4827	4023	4483	2642	3126	6819	4975	95
+       0	*	*	0	*	1176	843	10654	1000	1155	
+
+Y 96   *	*	*	*	2901	*	*	*	*	5875	*	*	*	*	*	*	*	5666	7009	283	96
+       0	*	*	*	*	*	0	10657	0	1012	
+
+Y 97   5921	6121	*	3542	3753	*	5775	4278	3896	4491	8089	7289	*	3708	3901	3958	2883	3185	4448	3077	97
+       0	*	*	*	*	*	0	10657	0	1012	
+
+C 98   *	119	*	*	5446	*	*	6797	*	5688	*	*	*	*	7141	6484	6724	*	*	*	98
+       32	*	5489	*	*	*	0	10657	0	1012	
+
+T 99   3033	6462	5430	3317	6156	4125	7005	4056	4710	4614	4680	5797	*	3699	2981	4871	3337	3246	7021	5822	99
+       51	*	4839	*	*	*	0	10617	0	1497	
+
+R 100  2125	6566	*	*	6374	7318	7043	2971	5469	3939	5825	6439	*	7369	5808	5347	4626	1349	*	6921	100
+       114	4532	4943	2216	350	*	0	10552	1640	2097	
+
+D 101  4349	*	3407	3481	5516	4160	6397	4022	3691	5570	4619	4406	6501	3900	4712	3210	4066	4388	3902	5011	101
+       109	5503	4294	907	1099	3409	143	10504	1277	2679	
+
+P 102  3772	*	4909	4185	4683	4224	3176	4342	5205	4046	6846	2134	6008	5213	5280	5127	3766	5537	*	3835	102
+       304	4144	2907	916	1089	2960	199	10440	1966	3354	
+
+Y 103  4148	5494	4040	3796	5552	2310	5306	6705	4220	5420	6622	3900	3489	5292	4206	3267	4812	6604	6659	4374	103
+       367	5397	2315	469	1849	4861	51	10425	1327	4897	
+
+G 104  4304	5984	4675	4711	4366	1810	6149	5415	6143	3441	*	3810	6272	6223	4651	3225	3707	4851	6188	6701	104
+       876	2954	1616	1607	574	5384	35	10092	2406	6532	
+
+P 105  4827	*	4031	5466	*	3552	*	4510	5358	3560	5608	4309	3546	3866	4467	3301	2693	3987	6250	4643	105
+       65	4514	*	1000	1000	465	1859	9303	1269	8225	
+
+A 106  3175	6776	5163	3646	3911	5454	5093	4372	3361	5336	6529	5131	4210	3904	4559	3369	3522	3981	*	4900	106
+       32	5493	*	1228	803	1974	424	10387	1341	3872	
+
+A 107  3171	*	3005	4491	4669	4314	5573	4664	3986	3406	5622	4051	3335	4505	3916	5324	4927	4695	6852	5853	107
+       25	6586	7152	1000	1000	1581	587	10474	1050	3303	
+
+Y 108  4500	6774	5436	4017	4332	5682	6740	4813	3911	3670	6520	6941	3755	4498	5049	3451	3205	2910	5426	3662	108
+       106	5965	4185	948	1054	760	1288	10575	1148	2694	
+
+W 109  4863	7142	*	6087	1733	4325	4386	4223	4777	3773	6285	7077	4855	5379	4146	3833	4535	4004	5473	4364	109
+       26	*	5787	*	*	515	1735	10442	0	2561	
+
+G 110  5336	6825	3588	3535	6745	1895	7362	6503	5646	5856	*	4723	3879	4338	4814	2503	5380	4340	*	5390	110
+       34	6334	6500	2807	222	783	1256	10638	1084	1803	
+
+Q 111  3766	*	4621	2911	5995	4198	5426	5741	2912	5475	*	4519	3243	3749	3620	3145	4327	6643	*	7036	111
+       157	*	3282	*	*	*	0	10639	0	1435	
+
+G 112  3390	*	4230	4572	5862	1856	6919	5507	3636	5345	5867	4409	4513	4841	3873	3551	5191	4940	6850	6009	112
+       43	6441	5832	2322	322	316	2347	10503	1005	3267	
+
+T 113  3260	*	5979	3992	4582	*	5399	4531	3860	4156	4515	6035	5987	5820	6976	4304	1628	3418	*	6050	113
+       71	6068	4910	937	1066	*	0	10600	1145	1714	
+
+L 114  5912	*	6882	3200	5313	*	5414	3692	2705	5281	7074	4230	5829	2783	3353	3551	4181	4235	5241	5677	114
+       0	*	*	*	*	608	1539	10425	0	2315	
+
+V 115  3799	*	5830	5329	6800	6020	6853	2927	4270	1426	5745	7081	5168	5920	5555	4268	5395	2944	*	*	115
+       24	6919	6923	2807	222	*	0	10513	1000	1366	
+
+T 116  5266	*	6427	4058	4832	4517	4403	3609	4473	4211	*	3792	6500	3994	4329	3157	2187	4898	*	4864	116
+       4	8437	*	1585	585	*	0	10503	1000	1532	
+
+V 117  5224	5262	7015	6749	*	7179	*	2550	6461	2946	5883	5419	7088	5576	5747	4969	*	1098	*	5318	117
+       107	*	3805	*	*	*	0	10503	0	1532	
+
+S 118  4627	6416	5272	4026	5122	*	5364	3846	4044	2837	7036	4859	4115	4945	3291	3595	3113	3857	*	4811	118
+       343	*	2240	2585	263	3720	114	10464	1000	2839	
+
+A 119  3541	5767	3715	3861	5416	4990	*	5306	3634	2652	6489	6472	4111	4907	3817	3528	4636	3618	6066	5436	119
+       539	2428	2989	1321	738	2607	259	10204	3434	5438	
+
+A 120  3000	*	5613	4126	*	3362	6265	4313	3978	4056	6342	4382	5365	3357	2750	4116	4750	3512	*	*	120
+       107	4829	4785	1000	1000	505	1760	10077	1262	6073	
+
+K 121  4230	5917	4115	7266	*	3784	5491	4127	3322	5302	5535	6324	3092	5181	3952	3539	3816	2567	*	5701	121
+       59	5298	6062	1000	1000	2484	284	10575	1334	3231	
+
+T 122  3899	*	4601	4329	4451	4839	4840	4484	4793	3516	5764	3853	2998	3560	4743	5561	4272	2945	*	5605	122
+       33	6667	6327	1585	585	1633	561	10576	1000	3077	
+
+T 123  3206	*	6179	3708	3927	4362	4362	5806	4036	*	*	6547	3459	4838	3775	2991	3472	3087	*	5944	123
+       63	4808	7139	2598	260	264	2579	10359	1475	2631	
+
+P 124  3083	7007	4011	4106	6522	4700	6217	5818	3887	4695	7145	4228	1879	4878	4876	4104	4194	4616	*	6229	124
+       106	3825	*	1809	485	*	0	10393	2214	1311	
+
+P 125  3928	*	4978	*	4740	*	5541	5741	5059	5053	7870	7101	737	5356	4973	4658	4993	5267	*	*	125
+       25	6856	6837	0	*	*	0	10382	1041	1311	
+
+S 126  4012	*	5168	3888	6657	*	6916	5051	3063	4594	4692	4649	4140	4130	4728	3095	3069	3335	5709	4360	126
+       0	*	*	*	*	475	1833	10420	0	1476	
+
+V 127  5000	5930	6659	4257	4858	7430	6723	2226	6116	2527	6884	6547	5855	4814	5041	7349	4344	1916	*	5968	127
+       32	*	5516	2585	263	0	*	10478	1015	1015	
+
+Y 128  4917	7134	4985	4497	4426	6652	5168	4066	4308	3733	5876	5555	5499	4848	4173	3121	2450	4008	5750	3556	128
+       7	*	7704	*	*	*	0	10471	0	1259	
+
+P 129  4320	*	*	3849	5863	7298	6005	2988	5143	3005	5174	6144	2979	4185	4478	7155	4032	2207	*	6763	129
+       91	5971	4466	0	*	928	1076	10481	1308	1420	
+
+L 130  5581	5000	5412	6496	4400	4585	6063	3941	4976	2484	5063	4310	4463	3675	6000	3499	3556	3395	6520	4848	130
+       60	5820	5420	1061	941	1410	681	10619	1183	1955	
+
+A 131  3946	6670	*	4475	*	4191	5914	5965	3898	3518	*	4267	2320	3920	4808	2626	3550	4963	*	7584	131
+       77	4637	6448	847	1171	*	0	10621	1579	1966	
+
+P 132  3903	*	3592	4219	5784	3887	5941	5234	5575	4912	*	4385	2061	3584	5406	3229	4174	4975	6657	6006	132
+       0	*	*	*	*	2483	284	10594	0	2167	
+
+G 133  4161	6795	3964	3394	5984	5545	5361	4606	4617	4061	*	3858	3313	4028	6311	2902	3533	3906	5707	5433	133
+       69	7216	4643	0	*	1980	422	10616	1000	1941	
+
+C 134  4422	5390	4406	3556	*	4293	7115	3552	4043	3694	5639	4934	4065	4418	5229	3184	3647	3172	*	5100	134
+       26	7013	6644	0	*	1883	456	10546	1000	2493	
+
+G 135  4384	*	3380	3905	5174	3779	*	4937	5743	3506	6823	6041	4915	4312	3832	2947	3808	2926	5778	5580	135
+       24	7178	6681	1000	1000	3073	183	10245	1000	2293	
+
+D 136  3721	7012	3336	2259	6516	5291	6514	3851	5405	4288	6486	6260	5645	4908	5483	3356	4697	2467	*	*	136
+       361	3060	3301	568	1619	712	1360	10255	3075	2281	
+
+T 137  5811	*	4280	5044	5338	6018	5184	3145	5142	2353	5586	4025	4563	3807	4574	4080	3448	3849	6511	5239	137
+       90	4042	*	949	1053	1074	930	10162	1824	3307	
+
+T 138  4650	6594	6046	2242	7006	4938	7072	4800	4012	3594	*	4982	3265	4080	5303	3377	4937	3068	6612	5948	138
+       133	4036	5196	2078	390	198	2966	9962	1969	2215	
+
+G 139  5687	6027	3528	4819	*	1019	5132	*	4693	6093	*	3285	6844	6814	6145	3858	5220	6494	*	5227	139
+       51	5322	6647	0	*	*	0	10091	1343	1547	
+
+S 140  6849	*	3233	2427	6803	3635	5475	6702	3667	4737	*	3516	4903	2890	5138	3352	4010	7001	*	6728	140
+       0	*	*	*	*	*	0	10070	0	1726	
+
+S 141  4353	*	3763	2690	5972	5484	5892	*	4593	6587	5874	3472	3322	5038	4472	2849	3020	4331	6659	6488	141
+       11	7009	*	0	*	1286	761	10070	1000	1726	
+
+V 142  2633	6492	7030	6893	4639	5627	6290	3517	*	2805	4337	5150	7298	5859	5399	4536	4028	1844	*	*	142
+       40	5207	*	2597	261	547	1664	10091	1359	1368	
+
+T 143  4959	*	6192	3201	6801	*	5497	5039	3426	5067	7012	3782	*	3510	3852	3291	2092	4037	6931	5820	143
+       0	*	*	*	*	*	0	10095	0	1002	
+
+L 144  3942	*	7090	*	3016	7180	*	3058	*	961	4344	*	*	*	7247	*	6671	3647	*	5822	144
+       42	5126	*	0	*	*	0	10095	1488	1002	
+
+G 145  5267	6933	5420	3634	7138	7196	4321	4863	4699	3574	5640	3716	5310	5516	4366	2933	2169	3643	*	5961	145
+       10	*	7247	*	*	0	*	10095	0	1002	
+
+C 146  6102	76	*	*	6856	*	*	7029	*	*	*	*	*	*	*	*	6242	*	*	7085	146
+       30	6444	6733	3000	193	0	*	10388	1082	1066	
+
+L 147  4450	*	5879	3203	4660	7093	4035	3728	4261	3099	5391	6027	4816	4378	5278	3740	2718	3683	7255	5901	147
+       0	*	*	*	*	*	0	10091	0	1019	
+
+V 148  1874	5274	*	7019	5814	7053	*	3669	*	4128	6947	5970	6900	*	*	2680	4139	1903	*	5650	148
+       30	6535	6655	0	*	*	0	10091	1034	1019	
+
+K 149  4857	*	4407	2946	4783	6887	4922	6036	3375	6330	7215	4363	5059	4294	3969	2130	3092	5192	7305	7116	149
+       71	4898	6133	1960	429	*	0	10066	1576	1193	
+
+G 150  3539	*	3578	3967	*	1693	5303	7030	4317	*	*	2441	5368	5869	4821	3638	5553	*	6448	*	150
+       0	*	*	0	*	921	1083	10315	1000	1493	
+
+Y 151  4195	6486	6055	6791	2174	2584	5208	4800	*	5347	5773	4113	5404	*	4911	3243	4576	3763	5748	4024	151
+       456	7231	1921	0	*	*	0	10071	1000	1148	
+
+F 152  5628	4874	*	6308	3574	6408	4297	6073	3327	5354	*	4336	3555	*	3620	2467	5476	5109	7434	2369	152
+       112	4258	5487	543	1672	230	2762	9886	1751	5248	
+
+P 153  4522	*	4535	4425	*	6686	5853	6818	6730	5809	*	5097	573	6564	5293	4651	5884	6723	*	*	153
+       200	5778	3167	1226	805	0	*	9958	1223	1930	
+
+E 154  3508	*	3415	3084	6524	4092	5478	5670	3019	4833	5131	5023	3163	3939	3631	4808	4669	4696	*	*	154
+       96	5050	4880	1744	511	0	*	9802	1360	2701	
+
+S 155  3608	6505	3150	3121	*	4861	5698	4777	4663	5208	*	3808	1854	5443	5393	3719	6063	5897	*	5621	155
+       174	6916	3245	0	*	1931	439	9972	1005	1499	
+
+V 156  2952	*	5583	5175	5093	7007	5036	2602	6734	2812	6019	*	4403	5126	6640	5233	3319	2727	6620	4358	156
+       267	*	2567	*	*	97	3939	9847	0	3144	
+
+T 157  5567	*	5092	3016	4980	*	4591	6502	4387	4988	5966	3259	5800	3651	4562	2625	2602	5649	*	4175	157
+       102	4558	5292	1993	417	78	4253	9858	1566	3693	
+
+V 158  *	*	*	*	2920	*	6616	2301	7013	2416	4880	6510	*	*	*	6594	*	1697	4869	4020	158
+       16	6510	*	0	*	0	*	9972	1041	1417	
+
+T 159  5811	*	4860	4298	4577	6881	5780	4319	3472	5843	5643	4879	5774	4002	3973	2700	2240	4534	*	3977	159
+       18	*	6301	*	*	*	*	10015	0	0	
+
+W 160  *	7678	*	*	5352	*	7149	6904	*	4700	*	*	*	*	6098	6836	6780	*	177	*	160
+       1850	525	5172	1179	841	0	*	10285	8622	1141	
+
+N 161  5828	*	3172	4007	5684	3969	6937	5679	2661	5119	5972	2502	*	4399	3111	4353	5198	5185	*	4263	161
+       77	5194	5333	1348	720	1540	608	9888	1434	1334	
+
+S 162  7136	*	3213	3292	5257	1915	5234	*	3484	5951	*	3339	4175	*	3893	3641	5463	5347	*	6556	162
+       78	6495	4587	1585	585	2328	320	9969	1025	1634	
+
+G 163  5836	*	3493	3042	*	1968	4850	5634	3496	6833	*	3784	5758	3701	3994	3834	5085	4872	*	*	163
+       50	5849	5920	1600	578	2255	339	10202	1166	2330	
+
+S 164  4365	*	4640	2597	*	3974	*	5701	4509	4081	5876	3698	3664	3687	4146	4079	3269	3720	*	6123	164
+       79	4600	6373	905	1102	2420	298	10195	1557	2334	
+
+L 165  5642	*	4820	4328	4361	5922	*	2447	5089	2243	5810	4037	5265	4638	4839	6480	4192	2646	*	*	165
+       40	6727	5807	2807	222	710	1363	9886	1014	2293	
+
+S 166  5212	*	4967	3328	*	6918	5554	2894	4200	3303	6556	5230	3582	4784	6795	2451	2984	4759	6727	*	166
+       81	5117	5285	1721	521	2494	282	9904	1505	1742	
+
+S 167  4673	*	3237	3421	*	4538	*	4234	3541	3023	5864	4177	3192	5095	5197	2904	4180	*	*	5101	167
+       23	6977	7013	0	*	*	0	9780	1000	2046	
+
+S 168  3798	*	2775	4359	*	2448	6860	5313	4863	4006	*	3722	4485	5583	4519	3150	3646	6652	6599	5506	168
+       62	6607	4976	0	*	*	0	9769	1005	2174	
+
+V 169  4834	*	3947	4572	6431	4781	5853	3473	3692	4274	*	3586	3978	4307	4257	3267	3994	3046	6737	5211	169
+       40	*	5202	0	*	1059	943	9743	1000	2796	
+
+H 170  4223	*	4348	3460	5731	4072	4938	3782	4263	4473	6985	4500	4542	3994	5891	3348	2867	5199	*	3496	170
+       0	*	*	711	1361	1560	598	10117	1348	2359	
+
+T 171  4340	*	4829	3373	5859	6467	5123	4233	4509	5184	5866	3989	5166	3381	3628	3322	2665	3856	7179	5745	171
+       90	5532	4683	1311	744	1789	493	10165	1224	1867	
+
+F 172  4840	*	5285	4345	3134	4455	5923	3531	5818	3657	6784	4152	6661	4656	3800	2852	3444	3928	*	4378	172
+       66	4482	*	1399	688	*	0	9807	1713	2231	
+
+P 173  5927	*	4858	4159	6836	4426	6730	5638	4603	3955	5894	4921	2833	3994	4809	2856	2533	3840	6585	5453	173
+       0	*	*	*	*	3202	166	9807	0	2231	
+
+A 174  4481	*	3821	4044	*	4252	5110	4467	5723	5362	4522	4355	3050	3914	4784	3055	3486	3309	*	5176	174
+       24	6762	7107	0	*	1270	773	9809	1014	2088	
+
+L 175  7737	*	4562	3691	4815	4019	5156	3880	4738	4118	5435	4289	3626	3334	4537	3514	3874	2989	*	6938	175
+       57	7507	4899	0	*	2493	282	10164	1135	1742	
+
+L 176  5740	*	5231	4073	5569	3912	3826	4557	5043	2736	5579	4903	5050	3531	3080	4751	3400	4434	6817	4715	176
+       279	4830	2831	1410	681	2124	376	9848	1491	2190	
+
+Q 177  5042	6275	3130	2508	*	4964	7340	5006	3830	4590	6716	3109	4189	3099	6065	3738	4441	4529	6734	*	177
+       1003	997	*	1059	943	695	1388	9971	6517	4005	
+
+S 178  4993	6552	1657	4244	*	3704	7034	*	4811	4852	6704	3068	4212	5167	5246	2783	4953	5727	*	*	178
+       58	5159	6451	432	1951	1338	726	9857	1327	2183	
+
+G 179  4411	*	2978	3950	6663	1348	5348	6611	3715	5913	*	3541	6451	6128	5627	4171	5841	6727	*	5902	179
+       121	3796	6866	810	1219	2796	224	9896	2230	1858	
+
+L 180  4512	6932	3818	*	*	5956	7325	5679	3896	2985	5339	4641	*	4794	3176	3240	2013	4687	*	4727	180
+       158	4824	3874	310	2372	2444	293	9881	1470	1906	
+
+Y 181  6806	6459	6676	6818	1902	5498	6599	4876	6281	3783	*	6662	4537	6605	*	5079	5787	5007	*	1324	181
+       23	*	5998	*	*	1752	508	9729	0	2862	
+
+T 182  4376	5529	4610	4593	5209	5282	4426	5665	5734	4710	4649	3986	5588	3841	5028	2417	2169	5556	6825	6969	182
+       33	6279	6698	4170	82	*	0	9816	1041	2579	
+
+M 183  3566	6664	*	6597	4574	4923	*	3673	4001	2926	3709	5610	6877	6485	5494	3541	3672	2281	6657	5101	183
+       102	*	3870	*	*	2686	244	9813	0	2726	
+
+S 184  4496	*	*	4938	4961	*	5607	5728	4940	4636	5235	5711	5431	6401	3849	2412	2094	3540	4861	3534	184
+       15	6577	*	1000	1000	4216	80	9658	1000	3431	
+
+S 185  4510	6425	6518	4874	6719	3824	*	4477	5088	4232	4228	4312	6622	*	5462	958	5093	6484	*	*	185
+       0	*	*	*	*	*	0	9674	0	3309	
+
+S 186  4461	6733	6825	4246	5173	*	5222	4258	5857	4531	5864	3701	6277	3582	4115	2736	2596	3645	4951	4623	186
+       114	3949	6512	2919	205	243	2690	9674	2070	3309	
+
+V 187  5958	*	*	6773	5155	5736	*	3289	6902	686	*	6431	*	*	*	6864	4905	3036	*	5616	187
+       0	*	*	*	*	768	1277	9880	0	1432	
+
+T 188  6047	*	5253	3955	*	5297	4680	3854	4288	3237	5196	3700	6538	4286	3573	3684	2458	3814	7065	6097	188
+       0	*	*	*	*	*	0	9908	0	1082	
+
+V 189  6676	*	6492	*	3546	*	6734	1598	*	1940	5689	*	6359	*	6629	*	6889	2244	6828	5432	189
+       9	*	7264	1585	585	0	*	9908	1082	1082	
+
+P 190  6846	6702	5596	4535	*	6858	4324	4513	3761	4734	6066	3814	2766	3519	3497	2973	3299	4143	*	6684	190
+       22	7126	6980	0	*	*	0	9955	1000	1000	
+
+S 191  3529	*	3726	3565	5392	5975	5802	5286	3990	4236	5557	4478	2536	5256	4193	3225	3816	4456	*	6480	191
+       0	*	*	*	*	*	0	9926	0	1099	
+
+S 192  3788	5801	4401	3707	5961	4608	5212	5210	4039	4145	7311	5060	6794	4753	4470	2395	2734	3483	*	*	192
+       27	*	5732	*	*	1021	979	9926	0	1099	
+
+T 193  4140	*	2824	2862	*	4185	5344	*	3533	5269	6764	6536	4499	3463	3177	3607	3842	5827	*	4731	193
+       238	*	2719	*	*	1785	494	9897	0	1297	
+
+W 194  4430	*	4718	2838	5233	6586	6345	4817	3661	2870	5468	*	5232	5361	3488	3822	4296	6203	2644	5850	194
+       1125	996	4637	247	2669	*	0	9881	6601	3778	
+
+P 195  6451	*	925	4122	*	*	3873	6159	5474	*	*	3636	3945	6337	4662	3874	4871	*	*	*	195
+       459	1952	6184	0	*	303	2400	9820	4032	4216	
+
+S 196  2993	*	2820	5158	6735	2247	5836	*	5418	6424	*	3315	*	4782	4776	2749	3765	5642	*	5916	196
+       122	3620	*	157	3278	986	1014	9790	2230	1761	
+
+Q 197  3321	*	4127	4948	*	1138	6866	6014	3702	4967	7042	6526	*	5358	6691	4674	4529	3691	*	6559	197
+       31	*	5547	*	*	1500	629	9916	0	1301	
+
+T 198  *	*	4305	3918	5605	7145	*	3500	3825	5109	6776	2947	3984	5370	4170	3425	2664	2989	*	6759	198
+       0	*	*	*	*	1364	710	10091	0	1603	
+
+V 199  *	*	*	*	2274	*	6439	3727	*	3826	*	*	*	*	*	6366	*	2992	*	1006	199
+       16	*	6502	1000	1000	1488	636	10112	1002	1309	
+
+T 200  *	*	5694	4731	5578	5419	6583	3583	3850	5699	5913	6613	*	4129	3742	2762	1827	4726	6436	3664	200
+       0	*	*	1585	585	1631	563	10187	1000	1341	
+
+C 201  *	42	*	*	*	6969	*	6876	*	*	*	*	*	*	*	*	*	*	*	6358	201
+       0	*	*	*	*	*	0	10185	0	1179	
+
+S 202  5087	5327	*	3143	5790	6879	5780	3933	3918	4383	5552	4984	*	3184	3630	4185	3157	2558	5785	6744	202
+       18	6310	*	2322	322	*	0	10190	1082	1179	
+
+V 203  1423	*	*	*	4601	6604	*	3836	*	6270	7227	*	*	6563	*	5844	5554	1195	*	*	203
+       22	6019	*	0	*	0	*	9826	1143	1179	
+
+A 204  3908	*	3820	2894	*	4374	6693	5767	3172	*	6386	4764	*	3591	3577	2519	3136	5925	6761	6462	204
+       38	5264	*	705	1371	*	*	9813	1277	0	
+
+H 205  *	6123	6212	*	6310	5038	1336	6429	6573	6591	*	1510	*	5074	5992	4335	4830	*	*	5711	205
+       0	*	*	2322	322	0	*	9746	1002	1000	
+
+P 206  4967	*	5509	2337	*	3811	6328	5461	3791	6066	*	3893	2808	4768	3751	2834	5468	4071	*	6489	206
+       17	*	6449	*	*	*	*	9581	0	0	
+
+A 207  2102	*	4455	4879	5165	2540	*	4786	6675	4339	*	5159	*	4668	4590	2531	3986	4905	6161	*	207
+       34	5406	*	1000	1000	*	0	9467	1142	1014	
+
+S 208  3330	*	5007	*	6235	1702	*	4676	*	1984	5327	5936	*	5293	*	3207	4388	5533	*	6313	208
+       34	5425	*	557	1642	0	*	9409	1145	1014	
+
+S 209  4974	*	4734	2545	*	4213	4747	*	2934	6403	*	5259	2675	4223	5111	3076	3499	4640	6245	*	209
+       171	6029	3371	0	*	0	*	9331	1021	1000	
+
+T 210  3130	*	5895	2861	6106	4630	5886	*	3632	5504	5559	3773	*	4356	4317	3124	2515	3762	*	*	210
+       0	*	*	*	*	*	0	9111	0	1949	
+
+T 211  3888	*	3598	3610	4198	5080	6238	*	6000	6007	*	2864	2066	4980	3704	3711	3945	6198	*	*	211
+       20	6149	*	0	*	0	*	9080	1000	1949	
+
+V 212  3142	6019	5610	*	6386	4997	6130	2321	4495	2536	6191	6020	*	6219	*	3386	4059	2615	*	6070	212
+       0	*	*	*	*	*	*	9162	0	0	
+
+D 213  4762	*	3856	2704	*	5750	*	4524	*	5744	5887	3902	*	3654	3949	2911	2092	3958	*	*	213
+       22	*	6019	*	*	*	*	9062	0	0	
+
+K 214  1935	5662	*	5765	*	5761	5693	3515	3450	4298	5580	5570	5347	4101	2841	4746	4690	3434	*	*	214
+       0	*	*	*	*	0	*	8830	0	1000	
+
+K 215  5525	*	5733	3693	4106	5665	5788	*	3230	5762	5616	2670	*	4191	3564	2848	2583	5497	*	5923	215
+       77	4258	*	3718	114	*	*	8836	1282	0	
+
+L 216  5535	*	*	*	2708	*	*	2596	*	1464	4503	*	*	5484	*	*	5424	2266	*	*	216
+       0	*	*	*	*	*	*	8557	0	0	
+
+E 217  *	*	4905	2059	*	*	4794	4942	*	4720	*	3779	4619	4810	3635	*	1656	3772	*	*	217
+       0	*	*	0	*	*	*	7368	0	0	
+
+//
+�HHsearch 1.5
+NAME  f56a6e550ea46518bc972010f973cfbd
+FAM   
+FILE  f56a6e550ea46518bc972010f973cfbd
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:05:14 2013
+LENG  216 match states, 216 columns in multiple alignment
+FILT  138 out of 1345 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  10.7
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CEEEECCCCEEEECCCCEEEEEEECCCCCCCCCEEEEEEECCCCCCEEEEEECCCCCCCCCCCEEEEECCCEEEEEECCCCHHHCCEEEEEEECCCCCEE
+ECCCEEEEEEEEEEEEEEEEEECCCEEEECCCEEEEEEEECCCCCCCCEEEEEECCEECCCCCCEEEEEECCCCCEEEEEEEEECCCCHHHCEEEEEEEE
+ECCCCEEEEEEHHHCC
+>ss_conf PSIPRED confidence values
+9299889978997999799999970788788708999990799983799970564466678737986069816999856776558689999980788347
+6362689999731012469981786068649849999998357799819999999999867752014577289858888999981278775908999999
+1897589998355089
+>Consensus
+pxxxxxxxxxxxxxGxxvxLxCxxxxxxxxxxxxvxWxxxxxxxxxxxxxxxxxxxxxxxxxrxxxxxxxxxxxLxixxvxxxDxGxYxCxvxxxxxxxx
+xxxxxxlxvxxxxxxxpxvxxxxxxxxxxxxxxxxlxCxxxxxxpxxxxvxWxxxxxxxxxxxxxxxxxxxxxxxxxxxsxLxixxxxxxdxgxytCxvx
+xxxxxxxxxxxxxxxx
+>f56a6e550ea46518bc972010f973cfbd
+PSALTQPPSASGSLGQSVTISCTGTSSDVGGYNYVSWYQQHAGKAPKVIIYEVNKRPSGVPDRFSGSKSGNTASLTVSGLQAEDEADYYCSSYEGSDNFV
+FGTGTKVTVLGQPKANPTVTLFPPSSEELQANKATLVCLISDFYPGAVTVAWKADGSPVKAGVETTKPSKQSNNKYAASSYLSLTPEQWKSHRSYSCQVT
+HEGSTVEKTVAPTECS
+>gi|326703679|gb|AEA06491.1| MHC class I antigen [Macaca mulatta]
+----------------------------------------------------------------------------------------------------
+--------------------------------htiqtmygcdlgpdgrllrgyeqyaydgrdyfalne--DLRSWTAADMAAQN----------------
+tqrkweaagvaeqw----RAYLEGECLEWLRRYLEKGK------------------et--LQ------
+>gi|332257155|ref|XP_003277679.1| PREDICTED: poliovirus receptor-related protein 2-like [Nomascus leucogenys]
+--GRPPaPARTPSNLtfraGEAEHLPRPPPAPrAPSR-VSPSWLAPPTPTPYTSDS-LEETLTPPFCiSltttpillnptAHPTPACLSPSP--------
+---------------FLGFP-----RRKAKPENQAEAQKVTFSQDPTT----VALCISKEGRPPA-RISWLSslDWEAKETQVSGTL-----AGTVTVTS
+RFTLVPSGRADGVTVTCKVEHES-------------
+>gi|296246053|gb|ADH03430.1| variable region-containing chitin-binding protein 3 [Branchiostoma floridae]
+-MTVRTtHTEVEVHAGGTVELPCAYQLANDTQPPVISWLKG-AAPDRSTKVFKGNYnwqgeglgfvesdSYKESFGDFLGRasvANLAAPTLRLTHVHPQ
+DGGRYWCQVAQWSIRTEFGLDAKsvvLKVTGH--TPSnNVHVSTAEVVQVDEGnDITMTCPCTNCAN---ANvTWYTGPtffenyetgtyqplaNKNQFG
+ITWFSSEIAGRASFSGARNLVIRAAKITDAGRVWCELATGQSELDADRS-----
+>gi|149597420|ref|XP_001520231.1| PREDICTED: similar to butyrophilin [Ornithorhynchus anatinus]
+--VIGPAEPVLALEGGDTEMPCHLNPKESAEFMEVRWFRSRPS--NIVHLYDNReelfrEQMEEYQGRTELVRDamdYGSVAVRLLNVRVSDEGNYHCSF
+YDGN---TVDRAPLELQVVGSTAQCSIFMEHFSW-----ISLILDLFP-DWIPDlfP-ILQMRelSeGGVNIKC--PKSYGIGHTCTMFSLddifgnfis
+aplfptaLSLMVALGVT---LPVLGLIIAGglyLIWKQNMDIE-----
+>gi|47211727|emb|CAF92525.1| unnamed protein product [Tetraodon nigroviridis]
+--DVTVsQSSVQVARGQAAILPCSFTTSAALNNLNIIWMViplSNANQPEQVPKHNNGrtkNPQPTNPNtwvRvniFTHTHTHTHTHTHTHTHTHTHTHT
+HTHTLVALGS-----VPgplncsiRHLFRK-VN-SPSDCPVLgvcASGL----CVPALLVCMCDVPI-FP-SVSWLRSESwFVAT-----PQIGCPD---
+QIQGTVTLKNISTSTSGLYQCTSSN---------------
+>gi|327265502|ref|XP_003217547.1| PREDICTED: macrophage colony-stimulating factor 1 receptor-like [Anolis carolinensis]
+--------------------------------------------------------------------------IRLRRVGMDDNGWYKCRALVQG-Q--
+-----WVQ-------SPKIGLIVKGFIIFYYIFTYFFVTAHCIVL-AFGSY-----CK----CHIKLELSFK-----------------------ICILT
+K----KQSAL------
+>gi|170588355|ref|XP_001898939.1| Immunoglobulin I-set domain containing protein [Brugia malayi]gi|158593152|gb|EDP31747.1| Immunoglobulin I-set domain containing protein [Brugia malayi]
+-------EDNNIYEKDHLELICILPLN-d-D--FDVVWMRDDV-qLAY---------------PERHVTIYSQKFITTLDDISSNESGNYECIAKSKN-T
+Hiyrs---YTLHIKINVVVAPHIVGTEEEYEHLAKYGEKAELVCPIEGEPEP--LYRWLKNGIEYNg-YGSLT-------------KKIDFPRVLVEDKA
+TYTCVAKNRAGSQQ---------
+>gi|313240002|emb|CBY32362.1| unnamed protein product [Oikopleura dioica]
+------PDTECVPNNGKLVFE---avvANEA----LGTKWFR--NGQEIT------------SqNTHFKIEQRGRTRKLIIENANLMDDGLFEIRAGEEK
+------SSCEVHV-----LEAPTAVTKGFEDLQLveGEDAKFTA----TLsTAHGRFKILKDGIEFGLNDN--QTVTRDG----AVVNFEIKKISKSDAG
+FYE--------------------
+>gi|3702284|gb|AAC62834.1| PTPsigma [AA 524- 1926] [Homo sapiens]
+------------VPGQPMNLRAEARSE-TS--ITLSWSP--P-RQE-------------SIIKYELLfrEGDHGREV---------GRTFDPTTSYVVED
+LK--PNTEYAFRLAARSPqglG------AFTPVVRQRT-----------------------LQSKPSAPPQDVK--------------------------
+-CVS-----------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+P 1    4431	*	*	*	*	*	4054	*	3123	*	*	*	361	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	6585	0	0	
+
+S 2    4359	*	5238	*	3750	5070	*	2435	5195	3112	5135	*	3388	*	*	3809	3785	2319	*	5349	2
+       0	*	*	*	*	*	*	8887	0	0	
+
+A 3    4716	*	5264	3035	4756	*	5976	4193	3664	4705	5755	5509	*	3291	4626	4324	3971	2048	5804	4945	3
+       0	*	*	2807	222	*	*	9515	1000	0	
+
+L 4    5108	*	*	*	4364	5752	*	2793	*	1775	*	*	6018	*	*	4973	4040	1695	5996	4839	4
+       24	*	5917	*	*	*	*	10015	0	0	
+
+T 5    6043	*	6327	2981	6005	4299	4949	4350	5173	3173	5762	5008	5885	5232	4318	3475	2032	3614	*	*	5
+       0	*	*	*	*	0	*	10005	0	1037	
+
+Q 6    4565	*	6224	5269	*	6151	*	5910	3304	4071	*	*	3075	1369	5040	3576	3816	4803	*	*	6
+       633	1493	*	158	3268	*	*	10229	4644	0	
+
+P 7    4863	*	4050	3625	*	6318	5476	4815	4691	5391	*	4489	1366	4334	*	3417	4094	4133	*	*	7
+       0	*	*	*	*	*	*	10541	0	0	
+
+P 8    3718	*	3772	3389	6605	3180	6429	6627	5497	*	*	4645	2153	4218	4176	3194	3536	6433	*	6647	8
+       14	6737	*	0	*	*	*	10563	1000	0	
+
+S 9    4603	*	4126	3551	6569	4990	4509	4584	5013	4640	6574	3781	3077	5117	5604	2432	3348	4123	5950	6739	9
+       0	*	*	*	*	*	*	10651	0	0	
+
+A 10   4786	*	*	3931	4944	5594	6615	3713	6810	2468	4999	*	5576	3520	5180	6574	4648	1590	*	5694	10
+       92	4021	*	0	*	*	*	10684	1886	0	
+
+S 11   5219	*	4445	3357	5012	6613	6796	4442	5099	3365	5136	5792	6589	4561	3732	2771	2408	3699	*	5598	11
+       0	*	*	*	*	*	*	10724	0	0	
+
+G 12   2135	7146	*	6784	5175	4005	*	3923	5851	2637	6798	*	6769	5795	5742	6587	4535	1715	*	6767	12
+       12	*	6969	*	*	*	*	10970	0	0	
+
+S 13   3846	*	4910	5085	4376	5154	4795	3992	3723	2937	6667	5385	4554	3856	4374	2877	4109	3930	5984	5868	13
+       13	*	6851	*	*	0	*	11004	0	1000	
+
+L 14   3485	*	5877	1932	5775	5334	6997	5357	4285	3501	6939	5886	3565	5406	4802	3968	4826	3026	6895	5844	14
+       11	7068	*	1585	585	*	0	10910	1000	1037	
+
+G 15   *	*	6808	3957	*	598	6758	*	5954	6790	*	3433	6214	5915	4770	3965	*	*	*	6913	15
+       0	*	*	*	*	*	0	11059	0	1037	
+
+Q 16   4837	6994	2172	2529	6805	2707	5429	6918	4344	6738	*	4631	*	3718	4663	3119	4962	7202	*	*	16
+       0	*	*	*	*	*	0	11102	0	1037	
+
+S 17   4797	5774	3048	5431	6088	*	5952	*	3664	*	*	3073	3238	4436	4639	2362	2548	6033	*	*	17
+       0	*	*	*	*	0	*	11102	0	1037	
+
+V 18   2186	*	*	7746	5055	7021	*	3365	7246	2655	5210	*	6813	*	*	5361	4763	1427	*	7322	18
+       0	*	*	*	*	*	*	11143	0	0	
+
+T 19   5014	*	*	3336	6108	6868	5988	3745	4991	3677	6194	3950	4574	5061	4193	3914	1868	3680	*	5400	19
+       0	*	*	*	*	*	*	11143	0	0	
+
+I 20   6808	*	*	*	3077	*	7936	3185	7021	708	3778	*	*	*	*	6981	*	4109	*	*	20
+       0	*	*	*	*	*	*	11143	0	0	
+
+S 21   4763	*	4663	3744	5991	4280	5004	5316	5057	6353	5432	3594	2860	5412	3313	3153	2734	5063	6936	6093	21
+       12	*	6948	*	*	*	*	11143	0	0	
+
+C 22   4437	258	*	*	6869	*	7322	5394	7016	5422	*	*	*	*	7928	6346	*	4981	*	*	22
+       0	*	*	*	*	*	0	11130	0	1019	
+
+T 23   4979	7928	4173	4093	4464	4890	4537	4422	3712	3743	7061	3568	4423	3973	4366	3512	3447	3600	*	5799	23
+       11	7063	*	0	*	*	0	11130	1000	1019	
+
+G 24   2461	7014	7066	7001	3171	5762	6984	3421	*	3777	5861	5250	6007	7016	6869	5018	5901	2098	*	2888	24
+       34	6020	7001	1585	585	0	*	11130	1342	1019	
+
+T 25   3886	*	4008	4430	6165	4001	4650	6039	3787	5890	5996	4365	4618	4416	4065	2093	3323	5456	5730	5994	25
+       76	5837	4873	2296	328	*	0	11134	1164	1001	
+
+S 26   4975	6903	3927	4427	6877	1892	7100	6914	5962	3266	6991	4043	3839	4602	6077	3104	3655	5202	*	5892	26
+       49	*	4891	0	*	1603	576	10976	1000	1845	
+
+S 27   4097	6835	4279	3456	2870	3974	*	5272	5670	3834	5846	3839	3699	5524	5972	3056	3910	4967	6065	4696	27
+       200	6965	3042	1585	585	891	1117	10924	1000	2246	
+
+D 28   4489	*	3242	4053	4411	5752	4051	5623	3686	3806	5863	3469	3885	4725	5182	3128	4381	4430	5782	5222	28
+       75	7154	4511	3000	193	413	2008	10920	1072	3779	
+
+V 29   4795	5126	4029	4366	5337	5298	*	4541	4396	3031	5979	4728	2329	5877	6413	3312	4331	3632	*	4314	29
+       209	*	2890	*	*	3498	134	11061	0	2513	
+
+G 30   3129	*	4415	3289	*	4127	*	6660	3221	3959	*	4409	4743	4242	4471	3239	3104	3783	*	5600	30
+       421	5720	2093	551	1655	4760	54	10986	1141	4723	
+
+G 31   4804	6939	2808	3664	6117	4010	4741	6355	3532	4799	6257	3506	3510	4291	3975	3306	4576	5282	*	6199	31
+       1250	6180	821	1000	1000	5385	35	10447	1045	7087	
+
+Y 32   4051	5387	4155	3312	3990	3583	4013	*	5270	4174	5125	3384	3945	5242	*	4273	4979	3527	*	3584	32
+       432	2286	4215	525	1714	86	4119	8678	2015	9516	
+
+N 33   3694	*	6997	4991	4456	6040	4693	3528	3928	2805	4734	4643	2841	5925	5830	4667	3742	3755	6821	4631	33
+       11	*	7020	*	*	1194	829	10943	0	2145	
+
+Y 34   3643	*	4921	3448	*	5405	4999	4896	4378	3992	5471	3703	6888	3860	3825	2979	3098	3760	6846	5465	34
+       11	7095	*	1259	781	721	1347	11104	1157	1757	
+
+V 35   6168	6928	*	6989	3358	5852	5906	2555	5874	2733	6050	7713	*	*	*	6094	6080	1375	5228	4668	35
+       0	*	*	*	*	*	0	11130	0	1196	
+
+S 36   4708	*	4957	4336	3647	7146	5466	5812	3526	5015	7007	4548	*	4158	3531	2768	2549	4267	*	3790	36
+       12	*	6924	*	*	*	0	11130	0	1196	
+
+W 37   *	6795	*	*	6436	*	*	5931	7229	6055	7058	*	*	6826	5813	6954	6845	5380	223	6684	37
+       34	6047	6912	609	1539	*	0	11102	1232	1439	
+
+Y 38   6014	5858	6860	5004	2773	5934	4947	4484	4106	3062	4874	4704	*	5408	4639	4775	3895	4325	5910	2297	38
+       11	*	7015	3000	193	1836	474	11098	1047	1619	
+
+Q 39   6968	6151	5029	5979	4624	4936	6014	5884	1928	4070	5365	4961	5383	5514	2164	4801	*	3557	5394	4895	39
+       455	4357	2175	1674	543	2064	394	11098	1866	1589	
+
+Q 40   4878	*	4291	4049	*	3262	4033	5650	4382	5080	6315	4555	5693	2233	6550	2941	5619	3280	*	4631	40
+       50	*	4879	*	*	4879	50	10842	0	5388	
+
+H 41   4024	6842	2832	6562	*	3711	4351	*	3092	4485	6864	3864	4521	6604	3662	3275	3295	4572	*	4873	41
+       137	5132	4016	2369	310	364	2166	10793	1285	5599	
+
+A 42   3779	6785	3002	4253	5716	4459	4797	5235	3970	4583	6817	3273	2677	4395	6902	3329	4753	4410	*	*	42
+       137	3749	5955	982	1019	1233	800	11047	2232	3077	
+
+G 43   3665	*	3158	4364	6931	1652	5305	*	3456	6743	*	3889	4852	4287	4855	3848	4520	7075	*	*	43
+       68	5420	5477	719	1350	1572	591	11059	1324	2651	
+
+K 44   4041	6035	3891	2797	6959	3544	6867	5958	2928	5353	*	3975	4312	3324	4508	3597	4504	4460	6859	*	44
+       193	5400	3300	0	*	2271	335	11011	1328	2481	
+
+A 45   3511	6701	4392	3183	*	3325	5928	4811	3627	3854	4125	3913	3452	5265	4514	4202	4071	4803	*	6877	45
+       108	4070	6329	1062	941	1236	797	10963	1885	3935	
+
+P 46   4481	6709	4335	4315	4619	7186	*	3537	5978	2223	6755	4682	2643	4121	5301	4038	3952	3935	*	*	46
+       142	5904	3693	1329	732	2132	374	11008	1162	3135	
+
+K 47   4453	*	3628	2809	*	4669	4718	3351	3651	5283	5797	3837	5233	3602	3592	4019	3973	4474	*	*	47
+       156	*	3287	*	*	3198	167	11006	0	4000	
+
+V 48   5031	*	6890	4756	3496	6872	*	4136	4699	2758	5713	4545	5622	5258	3949	4033	3458	2802	4259	3995	48
+       155	*	3298	*	*	*	0	10771	0	5190	
+
+I 49   4001	6653	5452	4559	4585	4873	5305	2628	3721	2452	4903	*	4322	*	*	5197	5492	2561	6125	5371	49
+       69	4421	*	1679	540	4047	90	10555	1652	6240	
+
+I 50   3288	5513	6363	6586	4553	3987	5510	2616	4502	3151	5481	5070	6878	5029	5722	3574	4568	2947	*	4655	50
+       181	5821	3323	2292	329	5130	42	10508	1211	6008	
+
+Y 51   4359	6645	3831	*	3160	5634	4327	4989	5614	4409	*	6434	5511	5422	4217	3146	4160	4161	4206	2318	51
+       65	5676	5348	649	1464	*	0	10817	1200	6774	
+
+E 52   *	6464	4011	4153	4894	3647	4821	4197	2941	3974	*	4004	4263	5399	4490	4090	3477	3542	*	4151	52
+       79	4225	*	1199	825	4676	58	10740	1596	6933	
+
+V 53   5600	6263	3572	4497	5497	3599	4548	5708	3857	4732	6590	3463	4488	5318	3936	3641	3030	4094	6298	4185	53
+       60	4613	*	888	1121	5444	34	10774	1667	6777	
+
+N 54   5435	*	3269	5414	*	2643	4534	6517	4483	5443	*	3568	4041	4898	4207	2344	3583	5002	5412	*	54
+       729	1464	4871	1941	435	5216	39	10318	5391	6793	
+
+K 55   4906	*	4009	3559	*	3810	6050	5304	3419	3499	6456	3316	5324	3738	4793	3561	3610	4470	*	3909	55
+       17	6455	*	3700	115	3650	120	10734	1019	6923	
+
+R 56   4187	*	5632	4250	4846	4239	4888	4460	4810	3419	5368	3941	4647	3643	4677	3429	4892	3336	*	3289	56
+       16	*	6497	*	*	2600	260	10797	0	6600	
+
+P 57   3742	6486	4401	3413	6848	3592	4897	6622	5471	4594	5156	4460	3799	3522	5096	3124	3959	3672	4931	5523	57
+       25	*	5880	*	*	2588	262	10524	0	6002	
+
+S 58   4947	*	4291	3064	5116	3788	4747	4379	3449	4793	6664	4299	3186	4571	4032	3335	3467	5684	*	*	58
+       92	5038	5007	1040	961	5150	41	10796	1360	5579	
+
+G 59   4970	6761	4615	2603	*	2604	6770	5425	4576	6418	6432	3918	4069	3766	5600	2766	4518	3629	*	*	59
+       48	6556	5508	0	*	602	1551	10768	1000	5779	
+
+V 60   3780	*	4578	6016	2648	4840	5765	3859	5015	3662	6948	5091	4777	5030	5278	3768	4231	3936	6918	2760	60
+       35	6966	5946	1000	1000	2203	353	11070	1000	3194	
+
+P 61   3618	*	3999	4857	5771	4336	7009	6093	3691	4214	4624	3602	2614	4653	3541	3783	3951	5226	*	5379	61
+       73	4342	*	756	1293	1449	658	11053	1764	3077	
+
+D 62   4838	*	3107	3324	6979	2597	4678	7361	4162	4339	*	3626	3945	4173	4921	3419	4179	5980	6808	5823	62
+       65	4784	6958	1629	563	*	0	11089	1794	2309	
+
+R 63   5372	*	5007	4614	6022	4077	6166	4632	3451	5779	6779	4435	5927	6758	1216	3940	5819	4654	6070	5929	63
+       151	3589	5952	817	1209	1655	551	11064	2505	2507	
+
+F 64   4006	7346	5408	4120	2175	7028	5938	3508	5934	3406	7119	6864	6749	4982	6861	5410	4242	3005	6282	2972	64
+       24	7014	6861	1000	1000	1529	614	11076	1000	2494	
+
+S 65   5417	7170	5298	3638	6034	4670	4302	4936	3717	5356	6967	3608	5030	3352	4442	2713	2809	4558	6950	6027	65
+       81	6884	4435	2585	263	2598	260	11212	1000	2142	
+
+G 66   3556	6789	4225	5346	4929	3051	4390	3545	4483	2789	5295	4061	5958	6146	5959	4602	4790	3163	5840	6209	66
+       50	*	4864	*	*	3360	148	11135	0	3019	
+
+S 67   5361	*	3398	3603	5605	4046	*	4370	4247	4380	6800	4127	5667	4401	3284	2915	3173	3943	*	5382	67
+       539	1977	4110	1232	800	*	0	11031	5066	3429	
+
+K 68   4463	*	3865	3905	5188	3213	4224	4099	3492	3665	6783	4387	4191	3894	3678	4224	4638	4504	*	6678	68
+       43	6867	5566	2386	306	2651	250	10960	1356	4315	
+
+S 69   5613	*	3063	3090	*	5323	6642	5836	3859	4269	*	3840	4808	3996	4516	2374	3854	5280	6576	4085	69
+       354	2605	4227	825	1200	439	1931	11020	3608	4240	
+
+G 70   4564	*	3943	3783	6978	2613	5127	*	4217	3929	6922	3197	4627	5003	3809	3467	3599	5027	*	4769	70
+       85	5214	5052	738	1321	1923	442	11093	1334	2847	
+
+N 71   4357	5847	3832	5571	5904	2417	4653	*	3492	4853	*	2829	*	4482	4323	3668	3397	4103	*	6938	71
+       83	4737	5748	1760	505	3892	101	11125	1695	2933	
+
+T 72   4447	*	2895	4149	5346	3996	4076	5383	3737	6040	4785	3664	5479	5059	5735	2806	3328	4908	*	4630	72
+       97	4302	6147	1154	861	2263	337	11046	1897	3306	
+
+A 73   3095	5292	*	*	3250	3734	5279	6860	*	3951	*	5893	5882	5343	4922	2208	3978	4646	4941	2897	73
+       34	6043	6912	2000	415	1249	788	11083	1162	3133	
+
+S 74   5239	*	4334	4441	5284	*	3903	4189	5934	5143	6215	4477	6043	4160	3982	1718	3024	4339	*	5902	74
+       11	6987	*	1000	1000	2007	413	11111	1000	2378	
+
+L 75   *	6961	*	*	4337	*	6858	3743	*	552	4806	*	*	5840	*	7036	5799	3580	7235	6913	75
+       9	*	7363	*	*	2842	217	11253	0	2011	
+
+T 76   5484	*	5904	5055	*	6913	4181	4403	4323	3508	7043	3777	5456	3609	3202	3069	2400	4209	*	5286	76
+       17	*	6439	*	*	2296	329	11245	0	2022	
+
+V 77   *	*	*	*	5004	*	*	1090	5412	1800	3983	6865	6999	*	*	7047	5799	3588	*	*	77
+       0	*	*	*	*	*	0	11119	0	2141	
+
+S 78   4113	6867	3798	4452	5977	6999	4294	5454	3262	3566	*	4955	3243	5422	3349	3443	2932	7112	6013	5329	78
+       35	6938	5959	0	*	*	0	11119	1024	2141	
+
+G 79   4412	*	3479	4090	*	3604	4275	6886	3475	*	7267	2644	4649	4150	3163	3015	4555	7036	*	5371	79
+       0	*	*	*	*	2195	355	11228	0	2481	
+
+L 80   3118	5292	6238	6867	6981	7070	6567	3548	6865	2333	6027	6795	7091	7011	*	3336	4329	1596	*	*	80
+       0	*	*	*	*	3006	192	11119	0	2141	
+
+Q 81   6070	*	4047	3063	5952	4119	5326	6903	3532	5473	*	4415	5516	2821	3123	3936	2635	4733	*	*	81
+       21	6121	*	0	*	*	0	11120	1169	1985	
+
+A 82   3793	*	5349	3782	*	6776	5801	4716	3782	3033	4519	7179	3124	4158	3915	3732	4766	3950	3301	7687	82
+       10	*	7165	3700	115	*	0	11105	1000	2153	
+
+E 83   3529	*	2804	2425	6769	5068	5391	6864	3979	4724	6904	3749	*	4659	4167	2720	4099	*	5957	7132	83
+       34	6872	6071	0	*	3299	155	11228	1007	2294	
+
+D 84   6122	*	509	5389	7288	5270	3971	6929	5356	5549	*	5519	6038	6806	5094	5261	6996	*	*	*	84
+       24	7020	6842	0	*	2201	354	11096	1000	2426	
+
+E 85   2949	6963	3498	2787	*	3395	4807	*	4981	6817	5592	5163	6825	3828	5902	2508	3362	5335	*	6032	85
+       0	*	*	*	*	2025	407	11112	0	2266	
+
+A 86   3272	6938	5921	5432	*	627	6585	*	5968	*	*	5233	*	6079	5562	3907	5026	6749	*	7502	86
+       13	6763	*	1585	585	2605	259	11252	1010	1929	
+
+D 87   5180	5213	4260	4257	5868	*	5451	3598	3685	3495	4493	3815	5482	4976	4177	3795	2818	3460	6219	6796	87
+       68	4432	*	1170	848	1493	633	11133	1980	1754	
+
+Y 88   7485	7295	*	*	2825	*	4901	5375	*	6026	*	*	*	*	*	*	*	5044	*	427	88
+       10	7173	*	0	*	1310	745	11148	1000	1430	
+
+Y 89   4718	7131	7462	4235	4504	*	4955	3450	3714	4349	7080	6998	*	4990	3483	3736	2195	4540	5880	3139	89
+       0	*	*	*	*	1228	803	11174	0	1187	
+
+C 90   5562	227	*	*	6835	6961	6613	7125	*	4766	6892	*	7474	6839	7236	*	*	5390	*	*	90
+       10	*	7186	*	*	*	0	11176	0	1030	
+
+S 91   3946	*	5015	2614	5898	5732	5957	6037	3931	4038	7009	5524	*	2756	3725	3603	3278	3316	7812	7866	91
+       53	7071	5127	0	*	*	0	11171	1000	1187	
+
+S 92   2390	6980	*	*	5231	4072	6899	2978	6813	3906	6805	*	*	6694	5987	5084	3911	1478	*	6070	92
+       62	4914	6769	1196	827	2294	329	10982	1765	1931	
+
+Y 93   4985	6774	4599	3389	4442	3743	6954	4724	3666	4729	5447	3671	5880	4635	4115	2998	3952	4536	5896	3768	93
+       52	5622	6022	761	1287	*	0	11105	1487	2081	
+
+E 94   4060	7012	2982	5492	4843	4944	2930	4869	4997	7327	6932	2694	5926	4657	4151	4095	3610	4116	6784	5018	94
+       94	6913	4184	1319	739	*	0	11103	1146	2359	
+
+G 95   4353	*	4686	5271	5805	2637	5898	6870	4185	3938	7231	5170	3610	3570	3913	3083	3413	5434	5738	4595	95
+       146	5185	3867	350	2215	4165	83	10994	1526	3469	
+
+S 96   3025	5203	3865	4136	5743	2565	4420	5732	5385	5077	5700	3845	4796	4833	4843	2880	5755	5315	*	4522	96
+       809	5682	1288	1257	782	4746	55	10915	1387	4381	
+
+D 97   6620	*	3821	3697	5160	2412	5804	5009	4970	3681	*	3670	3018	5060	5795	3018	5004	4954	*	5041	97
+       589	2079	3344	1731	517	852	1165	10181	3268	8266	
+
+N 98   3157	*	3570	4518	4094	4512	5664	5526	3685	*	6466	5071	3254	3874	4636	3631	3334	3996	*	4588	98
+       116	5573	4147	2535	273	3592	125	10770	1226	5846	
+
+F 99   4673	5762	3680	4607	3975	4921	4988	4376	4889	2704	*	4485	4422	4551	4467	3913	4227	2969	6622	5441	99
+       15	6562	*	0	*	1721	521	10730	1000	6135	
+
+V 100  5210	*	5137	3458	4634	5570	5672	4110	4013	4549	6503	6706	3305	3946	6783	3707	2617	3751	5611	3645	100
+       81	6660	4479	1000	1000	2448	292	10867	1000	4881	
+
+F 101  5821	*	5240	5396	2577	6513	3746	4305	5206	3165	5224	6666	5506	4650	4146	5120	3789	3537	3753	3765	101
+       143	7074	3520	1585	585	3206	165	10869	1003	4862	
+
+G 102  6307	5095	3882	3846	*	1905	6717	5209	3669	5516	5833	4297	3639	5047	5571	3006	4578	4311	*	*	102
+       56	6567	5182	1000	1000	712	1360	10684	1000	5533	
+
+T 103  3192	*	4094	3148	*	4133	4890	5279	3117	5205	7048	4093	4431	4433	5063	2991	3733	4467	6792	5932	103
+       13	6838	*	1585	585	2472	287	10889	1000	3389	
+
+G 104  3727	*	4027	4867	5354	2569	5332	4096	3713	5269	*	4716	4778	3848	3743	3784	3382	4753	*	5249	104
+       16	6501	*	2807	222	468	1851	10923	1047	2975	
+
+T 105  3602	5960	6875	5189	4523	*	6096	3327	4815	4366	5057	5494	5229	6366	4754	4228	1984	2666	6866	5409	105
+       46	6117	5878	2185	358	565	1625	11015	1154	1463	
+
+K 106  5413	7031	4396	3781	5374	*	3944	4368	3059	3988	5528	3890	4587	3880	3766	3436	3731	4757	7492	4453	106
+       34	5425	*	2100	383	*	0	10988	1377	1450	
+
+V 107  5122	6917	7086	4546	5309	*	*	4166	3971	1396	4564	6072	*	5945	4699	3800	4975	2638	*	6376	107
+       12	6932	*	0	*	580	1594	10988	1000	1450	
+
+T 108  3493	*	4308	3306	4646	5873	4505	4121	3900	3874	*	4429	*	4289	3706	4053	2950	3658	6955	6083	108
+       41	*	5170	*	*	*	0	11037	0	1030	
+
+V 109  5369	*	7066	5949	5324	*	*	2513	6167	3789	5504	6282	7200	4345	5808	5452	4327	1096	6845	6988	109
+       139	6832	3592	1585	585	1415	678	10999	1022	1758	
+
+L 110  4779	6824	*	5004	4331	7158	5362	3621	4319	2718	6903	4970	4269	5993	3922	4050	2814	3133	*	3860	110
+       257	5261	2867	3886	101	*	0	10934	1376	3058	
+
+G 111  3397	6605	3534	3487	*	3176	5418	6648	3136	4106	4354	5671	3879	5537	5110	3386	5085	4248	6597	5141	111
+       60	5788	5477	1609	573	1190	832	10868	1155	5110	
+
+Q 112  3000	4880	3616	3631	*	3970	4709	*	3256	3884	6687	5767	3140	5376	5067	4816	4835	3150	6684	5966	112
+       192	3850	4184	2985	195	3333	151	10873	2178	3769	
+
+P 113  3695	6590	5163	3656	*	4147	5790	4567	4921	4161	5600	5571	2121	4699	4739	3550	4334	3359	6781	6585	113
+       188	3183	6377	5654	29	1933	438	10807	3070	4395	
+
+K 114  4482	*	4423	4246	4752	4158	6942	5742	4388	2820	*	4289	3596	5256	3511	4042	3882	2644	*	6598	114
+       133	4824	4240	1329	733	491	1793	10841	1512	3924	
+
+A 115  3614	6088	5415	4162	4396	3642	5353	4836	4387	4356	*	4434	3169	4310	4568	3218	3923	3092	*	*	115
+       12	*	6949	*	*	766	1279	10916	0	2927	
+
+N 116  3421	6992	*	3077	5906	4337	*	5422	2792	4947	6961	4224	2285	4743	4190	4035	4690	4654	6970	7020	116
+       23	7430	6661	1585	585	1153	862	10971	1003	1943	
+
+P 117  4740	6396	6098	5678	6073	4730	*	4645	4973	3398	6805	7154	999	5915	6047	4139	4717	4720	*	5901	117
+       44	6764	5573	0	*	*	0	10981	1019	1651	
+
+T 118  4204	*	3398	4029	5323	5246	5922	6052	3293	6069	5947	4247	4427	4881	4114	2788	2967	3525	6952	6043	118
+       47	*	4974	*	*	*	0	10951	0	2110	
+
+V 119  6145	5731	6123	6935	5315	6955	*	2330	5388	2702	5998	6829	5229	6081	6215	4978	4339	1479	7257	6796	119
+       11	7071	*	1000	1000	940	1063	10907	1000	2763	
+
+T 120  6057	*	6830	3887	3972	6277	4879	4237	4779	3528	5863	4077	4815	4384	4032	3526	2890	4414	5849	3122	120
+       36	*	5361	*	*	2603	260	10972	0	1796	
+
+L 121  5431	*	5007	5502	*	5461	6075	2864	5314	2544	4436	6854	4906	3745	4977	5138	3979	2111	7093	5212	121
+       26	*	5826	1000	1000	2920	204	10929	1000	2136	
+
+F 122  5262	6882	7157	4582	4460	4386	6090	3684	3601	2894	5355	3804	5255	4008	4325	3359	4069	3778	5997	4872	122
+       110	5660	4226	1585	585	2788	226	10918	1242	2306	
+
+P 123  3243	6765	4892	4771	6944	4559	5554	4840	4193	4615	*	4149	2289	4538	4454	3384	3554	3776	6777	*	123
+       14	6743	*	2000	415	2396	304	10880	1037	3266	
+
+P 124  4155	*	7009	4283	5622	4106	5422	5891	4091	3757	6908	4075	2313	4242	5455	2802	3894	3997	*	6000	124
+       23	7330	6730	1000	1000	1615	570	10880	1168	3027	
+
+S 125  3781	*	3595	3683	6130	3626	7041	7018	5494	4332	5290	4617	3507	5847	4277	2330	3060	5984	6760	5866	125
+       32	6050	7191	610	1536	3268	158	10936	1167	2524	
+
+S 126  4175	6812	4051	3403	6132	4378	5212	3922	4842	4022	4977	4456	3654	4145	6789	3280	3842	3334	6327	5472	126
+       168	*	3187	*	*	2284	332	10955	0	2503	
+
+E 127  3637	*	3625	3803	5886	4469	4812	4938	4501	3951	5858	5715	5085	4813	4486	2518	4175	3311	6799	4568	127
+       52	6658	5287	1000	1000	829	1194	10739	1000	4055	
+
+E 128  3417	*	3712	3183	5956	4424	5946	4006	4886	3441	*	4957	5272	4781	5780	3897	4162	2307	7173	6911	128
+       72	6804	4645	0	*	2524	275	10873	1000	2837	
+
+L 129  4308	*	5964	5780	5363	4521	5180	3513	3320	2758	4813	4889	4263	4269	4838	4244	3676	2873	*	6871	129
+       40	5186	*	0	*	3797	108	10852	1407	3186	
+
+Q 130  4587	6965	4555	2981	5864	4433	5970	5197	3338	4502	5737	4627	3823	3581	3857	3741	4179	3254	*	6135	130
+       319	2542	5239	2862	213	805	1226	10851	3895	3035	
+
+A 131  4554	6501	3895	3874	*	1243	6810	5861	4975	*	*	4617	5380	4080	4872	4384	5337	4180	6016	5095	131
+       12	6885	*	1585	585	949	1053	10920	1045	2359	
+
+N 132  5019	6806	2591	2523	*	2581	*	5827	4141	5403	6044	3830	5867	4195	5040	3192	4966	5256	*	*	132
+       231	2758	*	99	3912	*	0	10962	3661	1589	
+
+K 133  3966	*	3752	3824	7461	5822	6967	6943	4281	5990	5907	3107	3325	4549	4386	2516	2999	4725	7046	5952	133
+       68	5261	5666	716	1355	2277	333	10962	1368	1589	
+
+A 134  2592	5962	6860	6945	4983	5076	5969	2980	*	2739	4628	5469	7200	5316	*	4673	5052	1912	*	5826	134
+       11	7089	*	0	*	1478	641	10939	1139	1912	
+
+T 135  4194	*	5937	3643	6751	6721	5862	4334	3672	5706	5324	3542	7058	4970	4343	3285	2059	3624	6109	5141	135
+       12	6939	*	0	*	2137	372	10953	1024	1532	
+
+L 136  4157	6983	6969	*	3011	6054	7010	3514	*	871	4607	*	*	*	*	6117	6886	3732	*	7039	136
+       10	*	7231	*	*	*	0	10963	0	1373	
+
+V 137  6109	*	5602	3462	7479	6137	4993	4045	4397	4154	4734	3785	4616	3657	3784	3536	2407	4002	*	5741	137
+       11	7073	*	1000	1000	2229	346	10949	1000	1545	
+
+C 138  5901	124	*	*	*	*	*	*	*	6405	6764	*	*	*	*	*	6896	4794	*	*	138
+       22	7167	6953	1308	747	1704	529	10955	1158	1394	
+
+L 139  5493	6878	4212	3004	4232	5863	5396	4688	4963	3486	4597	4162	5308	4138	4354	3663	3049	3905	5740	5436	139
+       25	*	5841	*	*	*	0	10955	0	1415	
+
+I 140  2611	5116	*	*	4495	4711	6769	3556	*	5158	*	6682	4798	7254	*	3144	4619	1510	*	4456	140
+       132	4097	5121	1468	647	2105	382	10918	2008	1857	
+
+S 141  4714	*	4456	3069	5867	4392	4386	6092	4065	4555	7363	4627	4134	6011	4445	2618	2916	3942	5316	5864	141
+       81	5991	4692	557	1642	2550	270	10846	1153	2268	
+
+D 142  4208	6213	2619	5328	*	1694	5338	6661	4808	6606	*	3143	5370	5314	4202	3295	7071	6434	6804	6887	142
+       12	*	6931	3459	138	431	1954	10828	1037	2801	
+
+F 143  3990	5927	4334	4880	2418	3160	6151	6169	5416	4648	*	5386	4312	5942	4966	3049	3796	3683	4754	5913	143
+       179	5454	3412	0	*	*	0	10965	1319	1579	
+
+Y 144  4809	5202	3804	5864	4445	4680	4875	4596	3224	5320	7021	3621	3019	4981	4195	4289	3837	6085	*	3041	144
+       98	5950	4337	557	1643	1132	879	10824	1196	3396	
+
+P 145  4031	*	4810	5276	6758	5178	*	*	5711	4280	6096	4750	823	5875	5943	3793	4780	*	*	6506	145
+       295	5869	2576	604	1548	1341	724	10792	1140	3313	
+
+G 146  3845	*	3130	3408	6240	4090	*	5739	2960	5054	*	5135	2450	4387	4020	3807	4644	5067	*	6561	146
+       218	5421	3099	798	1235	518	1729	10562	1406	5011	
+
+A 147  3361	*	3340	3603	6714	3878	4451	4782	5127	6795	6633	3811	2268	5159	5236	2938	6189	5209	*	6685	147
+       429	4784	2179	550	1658	3357	148	10797	1474	3930	
+
+V 148  3398	*	*	4927	7080	4898	5534	2495	4810	2859	*	5485	6229	*	*	6406	3690	2072	6350	3577	148
+       32	5496	*	2095	385	80	4214	10470	1284	6300	
+
+T 149  4836	*	3828	3511	5324	6202	4974	4899	4273	5449	*	3267	5877	4101	4479	2734	2693	4459	7100	4423	149
+       24	6952	6855	0	*	*	0	10969	1000	1220	
+
+V 150  7412	*	7395	6094	3979	*	*	1956	6935	2357	4928	6748	6835	*	*	6131	6064	1836	6150	3741	150
+       25	6748	7003	0	*	*	0	10941	1019	1433	
+
+A 151  5391	*	5874	4107	5793	6922	7091	5075	3545	4942	4112	5855	6859	4532	3666	2367	2164	4427	*	4309	151
+       8	*	7482	*	*	990	1010	10933	0	1616	
+
+W 152  *	6821	*	7433	5004	*	*	6868	6881	5841	6400	*	*	6882	*	*	*	*	167	6832	152
+       104	*	3846	*	*	*	0	10932	0	1458	
+
+K 153  *	6816	5277	4587	3382	*	5768	4799	3893	2784	4310	6863	6000	4751	4765	5957	3162	5726	5850	2009	153
+       31	6233	6947	1000	1000	1236	797	10810	1079	2826	
+
+A 154  5558	6828	5675	4152	4909	5802	5868	4275	2067	4587	5900	4604	6788	5431	2227	4765	4873	3389	*	5393	154
+       199	2956	*	1323	736	*	0	10867	3275	2165	
+
+D 155  3954	*	2088	3341	*	3074	5334	6810	5936	6991	5373	2301	5362	4945	4977	3593	5229	*	*	*	155
+       26	6853	6794	0	*	*	0	10867	1000	2165	
+
+G 156  5800	*	3476	3579	*	1378	*	*	5271	*	*	2662	5778	4914	4202	3562	5394	6944	*	5841	156
+       14	6659	*	3907	100	693	1390	10843	1019	2349	
+
+S 157  5787	7463	4744	2596	*	3872	5309	4602	2664	4000	7091	4591	5215	3538	4498	3461	3855	4251	*	*	157
+       189	3525	4803	1195	828	*	0	10914	2633	1429	
+
+P 158  4814	*	3881	2625	6428	3713	6871	7029	3933	4183	4609	4670	2454	4958	4965	4640	3575	4340	*	6709	158
+       18	*	6351	*	*	1997	416	10845	0	2107	
+
+V 159  4051	6753	5905	4107	5538	*	6702	2726	5440	1874	4902	4810	5812	4832	5933	5606	4831	2575	*	5995	159
+       115	4138	5671	1449	658	*	0	10851	2006	2156	
+
+K 160  4243	*	4290	3399	5191	6814	4767	4578	3962	4416	6869	3366	4027	3295	*	2835	3228	4885	*	5269	160
+       42	5707	6739	1585	585	*	0	10840	1193	2582	
+
+A 161  4372	6289	4941	2804	4269	4014	5810	4827	4042	3971	6713	4550	3704	4238	5208	2906	3578	4784	6721	*	161
+       406	4846	2247	0	*	3494	134	10802	1496	2918	
+
+G 162  5491	*	3541	3226	6361	2373	*	4805	4962	5526	6464	3675	3920	4878	4487	2745	4167	5020	*	5629	162
+       93	3998	*	912	1094	1370	705	10436	1843	5914	
+
+V 163  4175	5136	4599	4361	3800	4135	4726	3497	4210	4137	5529	5740	5616	5553	3977	3137	4163	3107	*	5098	163
+       99	5826	4364	551	1656	1030	970	10616	1158	4456	
+
+E 164  4254	*	4541	3117	5190	3660	5317	3794	3985	4466	5926	4435	4140	5079	3814	3246	3750	4305	*	5217	164
+       67	6812	4770	0	*	4077	88	10694	1000	3628	
+
+T 165  5134	*	5174	3727	5148	5911	4832	5231	3934	4626	4571	4126	4223	4644	3959	2952	2970	4231	6440	3699	165
+       17	*	6451	*	*	2403	302	10641	0	4163	
+
+T 166  3119	*	4761	4443	4377	3686	6693	6978	4520	5123	5699	4873	4434	5942	4754	2539	2707	4782	*	3801	166
+       56	*	4726	*	*	2560	268	10691	0	3785	
+
+K 167  5066	*	4759	4426	6922	5653	4133	4098	4238	4091	5640	4001	3457	4223	4278	3422	4155	2978	*	3708	167
+       113	4750	4709	999	1001	*	0	10747	1528	3895	
+
+P 168  4434	7046	5142	3896	4434	4900	5753	4430	4416	4153	5096	5625	2980	4022	5108	2889	3380	3543	*	5694	168
+       42	6874	5634	1650	554	2560	268	10655	1184	4385	
+
+S 169  3910	6784	4436	3531	5747	5965	4699	3932	3641	4039	5623	4930	4188	4108	3746	3770	3970	2895	*	*	169
+       95	5254	4744	0	*	2429	296	10683	1323	4147	
+
+K 170  4773	*	4116	2837	*	5226	6721	4033	3448	3786	4817	5165	3288	3874	2832	3944	5199	4724	*	*	170
+       84	*	4138	*	*	*	0	10703	0	4154	
+
+Q 171  4911	5379	4374	3175	3957	4193	4138	4741	3778	4595	5527	2777	5587	3876	3991	4327	4725	4666	*	6666	171
+       125	6634	3780	1585	585	1705	528	10635	1000	4838	
+
+S 172  3338	*	4047	3143	6477	3762	5561	5735	3374	5625	6679	4102	3599	3773	4841	3055	3713	5582	6672	*	172
+       42	6576	5801	3270	158	589	1578	10646	1196	4749	
+
+N 173  4519	6272	2290	3848	*	3334	5460	4977	3788	7366	5775	2733	5788	6796	3846	3114	4709	5768	*	*	173
+       158	5740	3555	3517	132	*	0	10828	1175	2721	
+
+N 174  5556	*	3006	4779	6121	1528	5126	*	3912	5612	*	4280	6440	5194	5140	3269	3472	5661	6820	*	174
+       121	4507	4768	253	2638	2417	299	10621	1613	4082	
+
+K 175  4160	6634	4194	5179	5124	6962	6782	5710	4568	2775	4935	3972	*	*	3703	2596	2171	5145	*	6664	175
+       12	6925	*	1585	585	1825	478	10653	1000	4079	
+
+Y 176  4735	6909	4551	5268	2462	6868	6595	5719	3868	4160	5655	4324	6899	4535	6628	3689	4289	3797	*	2254	176
+       31	*	5550	*	*	2132	374	10669	0	3273	
+
+A 177  3896	*	4181	5238	5897	4765	5191	4538	5909	4021	6800	3830	5352	4617	4067	1798	3205	5266	5989	7150	177
+       171	4851	3701	3051	186	2190	357	10729	1532	3188	
+
+A 178  3871	5144	6708	5182	5205	4938	5155	3608	4411	3058	4478	5058	7093	5155	4503	3470	3305	2793	5685	5654	178
+       34	5423	*	3644	120	3368	147	10708	1243	3974	
+
+S 179  4748	7021	5077	4493	4396	4677	6827	3994	4849	3827	5602	5309	6755	5009	3781	2514	2952	3794	5257	4148	179
+       68	4431	*	2692	243	2221	348	10730	1653	3714	
+
+S 180  3623	5849	5128	5853	4732	3784	4227	5159	5839	5321	5835	7109	5252	6627	4428	1181	6724	5205	*	4791	180
+       27	6577	6936	3000	193	3662	119	10798	1028	3166	
+
+Y 181  5156	5900	5849	4070	5258	5863	4713	3486	4740	4387	*	4813	6836	4525	3622	2872	2313	3819	6817	4802	181
+       14	6731	*	1000	1000	2863	213	10806	1021	3134	
+
+L 182  4849	*	*	6762	3832	*	*	3533	*	677	5137	*	*	6742	*	*	*	3284	6910	5313	182
+       14	6663	*	2322	322	*	0	10834	1027	2848	
+
+S 183  5206	*	5197	5020	*	*	4924	3252	4577	3444	5788	4471	7117	4523	3344	4133	2042	3158	6861	6608	183
+       0	*	*	*	*	443	1919	10804	0	3019	
+
+L 184  4841	*	*	*	3594	*	*	1487	6851	2046	3992	5441	6790	*	*	6236	4896	3088	*	6026	184
+       0	*	*	*	*	*	0	10909	0	1448	
+
+T 185  5910	6818	5053	5430	5910	5403	4307	5936	3421	4806	6912	3626	3163	3711	3051	3458	2950	4343	*	5854	185
+       12	*	6865	*	*	*	0	10845	0	1448	
+
+P 186  3303	*	4139	4127	6726	4468	4605	5365	3938	4338	5789	3532	2690	6970	3141	3383	4994	5362	6817	6817	186
+       0	*	*	*	*	*	0	10838	0	1606	
+
+E 187  2943	5978	6943	4357	6939	4791	*	3991	6741	3121	6048	5881	6092	4330	4585	3049	3319	2332	*	6989	187
+       12	6906	*	0	*	1947	433	10838	1015	1606	
+
+Q 188  3948	6820	3177	3553	7030	6086	6734	6830	3220	3567	6875	5418	4647	3450	3063	3600	3438	6017	7027	5834	188
+       171	*	3161	*	*	1840	472	10866	0	1407	
+
+W 189  5183	6686	*	3136	5395	5931	5115	6578	3535	3190	4799	*	4014	4379	4183	3995	4313	4240	2725	4170	189
+       41	5732	6759	622	1514	*	0	10717	1141	3362	
+
+K 190  3575	*	2542	2259	5764	5270	6775	*	4029	5723	5753	3764	5245	5866	4690	2801	3969	6641	*	6632	190
+       0	*	*	*	*	2499	281	10700	0	3484	
+
+S 191  6875	*	1176	4110	6785	5222	3392	5906	4001	5828	6882	4029	4763	4468	6654	3640	6333	*	*	6804	191
+       54	5733	5802	0	*	276	2524	10733	1167	3065	
+
+H 192  3317	6771	3545	4350	*	2165	6122	6949	5354	6343	6750	3543	5405	4107	4393	2527	3890	6889	*	*	192
+       13	*	6748	*	*	2339	318	10856	0	1602	
+
+R 193  3325	*	6849	4911	*	1114	5874	5865	3992	6775	*	5804	6328	5964	4455	4531	3294	4865	*	5755	193
+       12	*	6891	*	*	2047	400	10824	0	1646	
+
+S 194  6039	*	5153	4305	5234	*	6608	3760	3439	3331	5337	3277	5891	4905	4554	3504	2531	3139	6875	*	194
+       25	5874	*	1943	435	1074	929	10831	1184	1619	
+
+Y 195  *	*	*	*	2090	*	*	4107	6923	3461	*	*	*	*	*	*	6791	3727	6650	962	195
+       0	*	*	*	*	494	1786	10842	0	1448	
+
+S 196  4948	*	6844	5521	4201	5091	5300	3821	4095	5401	6994	*	*	3540	4560	4392	1375	6156	5922	3733	196
+       25	5887	*	0	*	0	*	10887	1184	1003	
+
+C 197  7150	115	*	6919	6066	*	*	5986	*	6348	*	*	*	6767	*	*	*	6802	*	*	197
+       0	*	*	*	*	0	*	10841	0	1027	
+
+Q 198  3376	5844	6671	2602	4329	*	6682	4041	3970	4304	6864	5296	6876	3773	4100	5351	3359	2602	6964	6900	198
+       11	7043	*	0	*	*	*	10820	1000	0	
+
+V 199  2053	*	5090	5682	5243	*	6892	3726	*	3470	*	6608	*	*	6695	4499	6593	1201	*	*	199
+       15	*	6585	*	*	0	*	10732	0	1000	
+
+T 200  3212	*	4387	3500	*	5096	4404	6639	3518	*	*	4438	*	4176	3421	2163	3216	5133	6681	5783	200
+       0	*	*	0	*	0	*	10657	1027	1027	
+
+H 201  6554	*	5093	4984	4355	5497	1916	*	7212	4988	*	1661	*	3787	*	5048	4145	5565	6673	4383	201
+       67	5209	5767	3059	184	*	*	10629	1284	0	
+
+E 202  4279	5376	4523	2785	5590	3181	5503	6323	3187	5237	5719	4399	2613	5756	4506	3216	5413	6566	*	*	202
+       35	5402	*	0	*	1084	921	10401	1156	1278	
+
+G 203  3759	*	3163	3972	4454	2487	6329	5299	4798	6396	6281	3458	5147	4112	5137	2994	5406	4739	*	4783	203
+       153	3310	*	1187	834	*	0	10229	2102	1062	
+
+S 204  3898	*	5171	4594	*	2460	*	6047	4003	2731	3748	*	*	4608	5122	2950	3720	5200	4853	4554	204
+       46	4981	*	1542	607	*	0	10018	1164	1062	
+
+T 205  5145	*	6528	3225	*	6032	5004	4013	4838	5171	*	3075	2622	3371	4520	2680	3790	4915	*	*	205
+       0	*	*	*	*	0	*	9910	0	1062	
+
+V 206  3728	*	4071	3416	4363	*	5208	4136	5340	2796	*	5092	6112	3626	*	3815	3708	2338	*	*	206
+       20	6191	*	0	*	*	*	9882	1000	0	
+
+E 207  4479	*	3905	3016	*	6214	*	4392	3028	6104	*	3437	4070	3087	3025	3538	3508	*	*	*	207
+       25	5874	*	0	*	*	*	9854	1022	0	
+
+K 208  4078	*	5087	4420	*	5814	4467	4445	2053	3494	4715	*	*	4419	2702	4170	5087	3482	6249	*	208
+       0	*	*	*	*	*	*	9854	0	0	
+
+T 209  4668	5157	4605	5016	6093	5769	5212	*	*	5050	*	2955	*	5005	3443	2145	1943	4957	*	*	209
+       0	*	*	*	*	*	*	9807	0	0	
+
+V 210  3398	*	*	5726	2877	*	*	3096	4918	2779	4029	*	*	*	5702	5946	3513	2063	*	5024	210
+       33	5462	*	1000	1000	*	*	9779	1004	0	
+
+A 211  4020	*	4458	3482	5535	*	*	*	4388	5439	*	2256	5311	5622	3498	2241	3158	5562	*	5447	211
+       80	*	4209	*	*	*	*	9255	0	0	
+
+P 212  4129	*	*	4104	*	*	*	4020	1994	3216	*	*	4073	*	2124	*	3950	4474	3922	*	212
+       0	*	*	*	*	0	*	6368	0	1036	
+
+T 213  3902	*	*	2997	*	*	*	*	*	4066	*	*	2011	*	3156	1878	3111	*	*	*	213
+       127	3565	*	0	*	*	*	6338	1015	0	
+
+E 214  *	*	*	1302	*	*	*	*	2497	2545	*	*	*	2570	*	*	*	3690	*	*	214
+       0	*	*	*	*	*	*	5514	0	0	
+
+C 215  *	460	*	*	*	2898	*	*	*	*	*	*	*	*	2846	*	*	*	*	*	215
+       0	*	*	*	*	*	*	4372	0	0	
+
+S 216  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	394	2065	*	*	*	216
+       0	*	*	0	*	*	*	2847	0	0	
+
+//
+�HHsearch 1.5
+NAME  f72d3b0c4bbb6e49ce2af6496d1b71a0
+FAM   
+FILE  f72d3b0c4bbb6e49ce2af6496d1b71a0
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:03:08 2013
+LENG  218 match states, 218 columns in multiple alignment
+FILT  130 out of 1347 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.7 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCEEEEECCCCCHHHHHHHHHHHCCCCCEEEEECCCCCCCCCCHHHHHCCCCCCCCEEEECCEEEECHHHHHHHHHHHCCCCCCCHHHHHHHHHHHHHHH
+HHHHHHHHHHHCCCHHHHHHHHHHHHHHHHHHHHHHHCCCCCCCCCCCCHHHHHHHHHHHHHHHHCCCCHHHCHHHHHHHHHHHCCHHHHHHHHHCCCCC
+CCCCCCCCCCCCCCCCCC
+>ss_conf PSIPRED confidence values
+9469993799804999999999859997799846664111257778851988888789889989876699999999867989999999999999999999
+9999999887301279999999999999999999986439802689999999999999999998472111118899999999984899999987476776
+776774454588788998
+>Consensus
+MxxxLxxxxxspxxxxvrxxLxxxxixxxxxxvxxxxxxxxxxxxxxxxxpxxxvPxLxxxgxxlxeSxaIxxyLxxxxxlxxxxxxxxaxxxxxxxxxx
+xlxxxxxxxxxxxxxxxxxxxxxxxlxxxlxxlexxlxxxxylxGxxxtxaDxxxxxxlxxxxxxxxxxxxxxpxlxxxxxxxxxxpxxxxxxxxxxxxx
+xxxxxxxxxxxxxxxxxx
+>f72d3b0c4bbb6e49ce2af6496d1b71a0
+MSPILGYWKIKGLVQPTRLLLEYLEEKYEEHLYERDEGDKWRNKKFELGLEFPNLPYYIDGDVKLTQSMAIIRYIADKHNMLGGCPKERAEISMLEGAVL
+DIRYGVSRIAYSKDFETLKVDFLSKLPEMLKMFEDRLCHKTYLNGDHVTHPDFMLYDALDVVLYMDPMCLDAFPKLVCFKKRIEAIPQIDKYLKSSKYIA
+WPLQGWQATFGGGDHPPK
+>gi|151967108|gb|ABS19434.1| multivalent antigen sjFABP-97 [synthetic construct]
+MSSFLGKWKLSE------------SHNFDA--VMSKLGVSWATRQIG------------------NTVTPTVTF-----------TMDGDTMTML----T
+ESTFKNLSVTFkfGEEFDEKTSDGRSVKSVVTKDSESKI-----TQTQKDSKNTTVIVREIVGDTMKTTVTVDDVTAIR-------NYKR----------
+--------------------
+>gi|145240759|ref|XP_001393026.1| hypothetical protein ANI_1_2296074 [Aspergillus niger CBS 513.88]gi|134077550|emb|CAK96694.1| unnamed protein product [Aspergillus niger]
+-----------------AIALEALNTPYNVKLWEFGndREKgV---KGEVFLRINENgrVPALEDpnTGVVSWESGACMNYVRRVYDKenflGPKGsEQD
+IVDFEKweyfllstlgpmTGQTNWYRHYNGTKNEDALQ------RYSAQTERCYGVLEGQLKKSggQSVLPGRITAVDYHFEPWVREYDFAGLS-LEKYP
+LITQWLRVMTGRKEVQQAYiKI-----------------------
+>gi|336366382|gb|EGN94729.1| hypothetical protein SERLA73DRAFT_143587 [Serpula lacrymans var. lacrymans S7.3]gi|336379053|gb|EGO20209.1| hypothetical protein SERLADRAFT_400352 [Serpula lacrymans var. lacrymans S7.9]
+--LWTVP--GMRQAIVIRSVAALAGLQLDLPEYKHF--EDNKKPEFTAKFPHGKIPALETADGFkLFEGAPIARYLSTLApnsNLLGTNDQEAALVDQWV
+HFAESeISTPNDIMWQmlngylTPYNKPIHNTLAERQLRAINTLETVLATRTFLVTERITLADIVVASSFQRAVGLaiDASARAKLPNTIRHFETLANQP
+KLKEIFGETTYVEKAA---------------
+>gi|254282669|ref|ZP_04957637.1| glutathione S-transferase, N-terminal domain [gamma proteobacterium NOR51-B]gi|219678872|gb|EED35221.1| glutathione S-transferase, N-terminal domain [gamma proteobacterium NOR51-B]
+--LKLINAGPSPFGRKVMVALHEKSIPFKVEWDIPWH----KDTVVTVHNPLQQLPILIaDDGETVFESSYILEWIDTRFPeppLTPSDPEARLEMGRFR
+VLSVGIMDALVRTNFEVSrPlehqsQEWVQRHIRKINGGLAELDREIQDRNFVVGNELTLGDIEVGCVLGqldFIAENIPPlkeffaehvpWRSDCKYLS
+RYADRLCQRPSFVAS--------------------------
+>gi|294892437|ref|XP_002774063.1| conserved hypothetical protein [Perkinsus marinus ATCC 50983]gi|239879267|gb|EER05879.1| conserved hypothetical protein [Perkinsus marinus ATCC 50983]
+--VNIYQYEICPYCNKVKAFLDWQQVPYKTMDVNPLTKGE---IRFS--KDYRKVPIAFIDGVQVNDSAEIIKKLVEVLGrenvtkQMQDA-EISKWVDW
+TDNKLAVLLFPnLTrtfgesfeafgyimnipHMWlPMKmvnrllggwamwmANDKIRKKydiddEREDLLKCIDEwTLDlAARGGKFHGGPSPDLADVAV
+YGCIRSLEGFTThhWLLRNHTDLLAWYNRMFR---------------------------------
+>gi|340914821|gb|EGS18162.1| hypothetical protein CTHT_0061770 [Chaetomium thermophilum var. thermophilum DSM 1495]
+MVYRLYITNknYSSWSLRVWLLMRQLDIPFIEEFRPMISGT-FSQPQWKEFSPVARVPCLhVLPDnphtdsepLILWDSLSITTFLSLSHPekpIYPSSP
+QALAWslsaVAEMHSSFTSLRDHLAMNIGVRVQlsYPLPAGVVNDLQRLNTLWTEGLTrfGGPWLVGKEFSAVDAFYAPVALRLRTYVGLEEEFFSReAK
+GWVERVLGLESVREWVR------------------------
+>gi|124266174|ref|YP_001020178.1| hypothetical protein Mpe_A0981 [Methylibium petroleiphilum PM1]gi|124258949|gb|ABM93943.1| hypothetical protein Mpe_A0981 [Methylibium petroleiphilum PM1]
+----------GPWSEAAKAILHVKKLAHVKVRqelLG-------SNLPLIRWTAQATAPVAVWNGEPPRSTWIEQLYLFEWLApepaLIPRDVDERMLMf
+glaneifgengfvwNRRHLMVRDFSGPDQPpeiresfrFLGRKygCGDAAAAAAPARCAEVMGLLADRLRSQRergsrYCVGASLTALDLYAACAYALVS
+PLPQDLCAMTPLFRAVYT-------------------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+M 1    *	*	*	*	4827	*	*	*	*	3588	182	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	7232	0	0	
+
+S 2    3501	*	4651	4537	*	*	*	*	3311	*	4631	*	3561	*	*	1371	2945	3531	*	*	2
+       766	1280	*	866	1148	*	*	7717	2544	0	
+
+P 3    5003	*	*	*	4412	6030	5449	3148	6083	3019	2503	5717	2866	*	*	5951	3851	3692	*	2865	3
+       73	4346	*	502	1768	*	*	9665	1397	0	
+
+I 4    *	6073	*	3507	6111	*	6086	3928	2323	4058	4578	5164	*	4549	3358	5948	1847	5308	*	6273	4
+       42	5112	*	0	*	*	*	9788	1219	0	
+
+L 5    *	*	*	6002	4817	*	*	3200	6282	477	5299	*	*	*	*	6336	4926	4719	*	*	5
+       0	*	*	*	*	*	*	9827	0	0	
+
+G 6    *	*	*	*	3155	3936	4245	3505	5155	4046	*	*	*	*	5428	6309	4359	3193	6297	1372	6
+       35	6474	6300	0	*	*	*	9820	1000	0	
+
+Y 7    5540	6261	5509	6285	6285	2396	5230	5368	5069	4071	5825	5213	*	4365	*	4778	3035	5380	5338	1798	7
+       19	*	6285	*	*	0	*	9803	0	1004	
+
+W 8    6201	6411	5451	6216	2282	5211	4029	6119	*	3759	6488	4750	*	5287	4177	3533	3263	5542	3378	3073	8
+       49	5568	6382	2807	222	*	0	9824	1107	1007	
+
+K 9    4348	5875	2334	3580	5370	6163	6479	6414	3894	5347	*	4040	2173	4751	4859	3851	6433	5515	6043	5212	9
+       181	3783	4462	206	2908	0	*	9850	1751	1156	
+
+I 10   3097	*	5426	*	3364	3679	3707	3160	*	3408	4872	4970	4288	6483	6443	5234	4357	3390	5430	3877	10
+       0	*	*	*	*	0	*	9916	0	1530	
+
+K 11   6191	3164	4874	*	*	4949	4932	*	4769	6693	5386	3796	5024	6383	3786	1090	5437	6401	*	6220	11
+       0	*	*	*	*	*	*	10040	0	0	
+
+G 12   3627	*	*	4976	*	2435	6473	5048	*	4560	*	5115	1133	6580	*	4196	4152	6343	*	*	12
+       45	*	5034	*	*	*	0	10090	0	1069	
+
+L 13   4943	4247	5345	4449	2696	6586	5648	6276	4776	5040	*	3466	4736	6626	2886	6570	5704	5476	4293	2298	13
+       15	6586	*	0	*	1448	659	10057	1000	1589	
+
+V 14   2478	2592	*	*	6793	3281	6768	*	6341	*	*	6561	6563	*	*	1938	3064	3065	*	*	14
+       0	*	*	*	*	1043	959	10106	0	1317	
+
+Q 15   3844	6616	6723	2568	4576	*	4746	6520	6679	2965	4582	5002	6423	2987	2409	*	4694	5197	4989	5825	15
+       53	4780	*	1867	462	*	0	10162	1490	1083	
+
+P 16   3112	5619	*	*	5128	6635	6596	4869	1983	4384	4915	*	4687	5011	2031	4520	7079	3620	*	*	16
+       0	*	*	*	*	*	0	10227	0	1083	
+
+T 17   2640	4283	*	*	*	*	*	2396	*	3076	6399	*	5804	*	*	4088	5708	1427	*	*	17
+       0	*	*	*	*	*	0	10247	0	1083	
+
+R 18   5735	4935	6951	4381	6740	6818	5984	4831	4168	2678	5774	6189	6343	4540	1329	6861	5764	5661	4531	4791	18
+       16	6504	*	0	*	*	0	10315	1031	1083	
+
+L 19   2701	7250	*	*	4242	*	7095	2812	*	2028	2808	*	*	6650	6392	6322	3797	3870	4443	5140	19
+       0	*	*	*	*	*	0	10353	0	1083	
+
+L 20   2052	4780	*	*	3721	5182	5702	3230	*	2268	4836	*	*	6322	6565	5869	3662	3147	*	5743	20
+       17	6392	*	1585	585	*	0	10353	1051	1083	
+
+L 21   2643	4561	*	*	4181	6392	*	4300	*	688	4665	*	*	*	*	*	*	5664	*	*	21
+       32	6247	6888	3459	138	*	0	10353	1099	1083	
+
+E 22   2486	6126	4477	2655	5064	4763	4218	5763	3449	3748	6826	4478	*	4916	3003	6046	4749	5830	6745	7008	22
+       0	*	*	*	*	*	0	10352	0	1237	
+
+Y 23   3302	6483	4164	2264	4205	*	3702	5111	7068	2713	4188	*	*	4874	5229	*	*	4388	5204	3145	23
+       0	*	*	*	*	*	0	10352	0	1237	
+
+L 24   2517	4205	*	*	5951	5812	6672	*	2047	2516	5915	5336	6385	4099	6781	3673	5106	4996	6662	4606	24
+       15	*	6642	*	*	0	*	10352	0	1237	
+
+E 25   6848	6914	3831	3347	*	1375	5829	*	3353	6665	*	2708	*	4176	4253	4549	*	*	*	*	25
+       43	5769	6532	2768	229	*	0	10382	1236	1000	
+
+E 26   4021	6623	6875	6929	5244	*	6494	2000	6870	1861	5860	7062	5628	3967	*	6955	5438	2320	*	*	26
+       34	5404	*	1315	741	1325	735	10349	1495	1233	
+
+K 27   4221	*	2643	3728	*	6914	5604	6757	3439	6706	6307	4679	1612	4920	4516	3621	5283	*	*	6900	27
+       89	4064	*	1333	730	*	0	10365	2176	1074	
+
+Y 28   *	6698	5745	*	1921	6707	5214	4472	*	4278	5285	*	*	7114	*	6418	5614	3252	4395	1486	28
+       0	*	*	*	*	*	0	10365	0	1074	
+
+E 29   4138	*	3335	1807	*	5903	*	4441	3184	*	6886	4444	*	4107	4005	4956	2847	4658	*	*	29
+       0	*	*	*	*	*	0	10365	0	1074	
+
+E 30   4567	*	3207	3105	5118	5719	5286	3582	5166	3117	6496	4852	*	5125	5384	4773	3067	3128	5911	4378	30
+       45	*	5026	*	*	*	0	10370	0	1074	
+
+H 31   5757	6994	5989	3180	5383	5221	4422	2988	2787	6005	6603	5597	*	4838	4951	4456	3793	2064	*	6862	31
+       26	*	5814	*	*	2416	299	10270	0	1744	
+
+L 32   4191	*	3693	2931	4322	5320	5382	5349	4904	3917	6830	4803	3048	*	3112	6839	4404	3657	4599	4158	32
+       44	6623	5655	1585	585	1052	950	10243	1002	1873	
+
+Y 33   3977	5784	*	5877	4017	5820	4675	2274	5536	2840	5239	5930	6802	*	6858	6871	*	1807	6550	4343	33
+       41	6925	5646	0	*	1444	661	10322	1000	1692	
+
+E 34   3500	5892	2130	3486	*	3331	4934	*	3995	5377	5690	3471	4243	5639	6289	4205	3737	5834	*	5954	34
+       103	*	3862	*	*	2497	281	10321	0	1692	
+
+R 35   4964	5523	4606	4288	3416	4147	*	4171	4687	2817	4067	5166	3053	*	4721	4152	4107	4095	6565	4706	35
+       177	5172	3513	2786	226	3694	116	10258	1289	2776	
+
+D 36   4031	6468	3135	4532	5704	3502	4437	4986	4575	3398	4142	4342	3562	4787	5793	3858	4726	4831	5179	4874	36
+       605	3391	2015	564	1627	4311	75	10119	2200	3717	
+
+E 37   3261	6428	3047	3516	6250	4990	*	4076	3698	4829	*	3083	4162	6453	3603	4292	3339	5210	6054	*	37
+       369	4685	2422	4269	77	4430	69	9743	1276	5904	
+
+G 38   5956	*	4033	4308	*	1650	5476	3927	3004	5964	4772	4290	4296	5933	3539	4926	*	6035	5696	5933	38
+       168	6102	3392	0	*	2571	266	9450	1000	6802	
+
+D 39   3437	*	2909	1666	4934	4406	*	*	3831	5946	*	4886	3341	4876	5053	4920	5022	4939	*	*	39
+       329	4271	2718	2069	393	1679	540	9540	1334	6546	
+
+K 40   4539	*	3773	2661	6053	5030	2739	*	6247	5036	6124	3406	4576	3144	4689	3753	4096	4801	*	6001	40
+       877	5100	1229	2240	343	1687	537	9754	1127	6094	
+
+W 41   *	*	*	5943	3494	4630	4571	4746	4727	3392	3779	5843	4211	4724	4193	4545	*	5753	1708	4716	41
+       315	4556	2702	0	*	705	1372	9426	1187	7388	
+
+R 42   2904	*	5157	4764	4631	4492	4539	6356	3007	3191	5374	3578	4053	4266	4386	3741	5253	5173	6700	5546	42
+       36	*	5337	*	*	1689	535	9884	0	5042	
+
+N 43   3602	*	3943	4494	*	4969	*	*	3618	4491	*	3138	3426	4251	4258	2341	3384	4444	*	*	43
+       0	*	*	*	*	1413	679	10003	0	4225	
+
+K 44   2372	6537	3786	2790	*	5335	5854	6442	3980	3467	5647	5736	2173	5184	5026	6379	6562	5657	*	6567	44
+       55	6904	5115	1549	603	3388	145	10177	1207	3114	
+
+K 45   4054	*	2852	2191	6556	4844	5643	5787	2909	6829	6482	6795	4395	4021	3988	3365	5026	6673	5216	*	45
+       32	*	5505	*	*	1867	462	10181	0	3247	
+
+F 46   4693	*	6709	5060	2638	5704	5642	3921	6552	2435	5740	6362	4336	*	4576	5062	4665	3893	5677	2459	46
+       47	6440	5618	0	*	1579	588	10172	1000	2938	
+
+E 47   3372	*	4413	4086	5690	4103	5780	4700	3200	2280	6815	4976	6589	4648	3405	4055	4353	4205	*	*	47
+       219	4684	3292	279	2509	1107	901	10241	1528	2560	
+
+L 48   3307	*	4095	3383	4579	4057	6518	6109	2311	4522	6550	4642	5505	3481	3344	4445	5622	4816	*	6670	48
+       169	3746	4789	854	1163	2535	273	10088	2173	3295	
+
+G 49   5581	5693	5082	4987	5103	4643	*	2260	4303	2118	6688	5582	5595	4958	5253	5133	4520	3008	6444	5493	49
+       29	6615	6702	3700	115	1398	688	10023	1000	3390	
+
+L 50   3397	6361	4995	6573	5095	3981	4230	5686	4623	4794	6876	1812	6625	5089	6438	2733	3833	5299	6910	6589	50
+       46	5599	6502	2807	222	1044	958	10132	1189	2637	
+
+E 51   4974	*	4984	4420	5756	4374	6666	5748	*	4553	5955	6847	791	5674	4159	4710	6725	6668	*	5925	51
+       29	5642	*	2415	300	2678	245	10234	1215	1961	
+
+F 52   5199	6893	*	6790	2568	4724	5239	5791	4569	2414	4638	3988	6669	4236	4445	3886	4324	4187	6351	3684	52
+       28	5719	*	1675	542	*	0	10231	1146	2014	
+
+P 53   4017	4647	5148	3825	*	1285	4954	*	3534	5784	5186	6940	3777	*	4724	4670	5212	5659	*	5636	53
+       52	4831	*	2503	280	1123	887	10231	1416	2014	
+
+N 54   4323	*	6881	4894	*	5678	4641	6858	2094	4079	6623	3893	*	2697	3267	4019	3375	4585	*	6517	54
+       77	4582	6652	606	1544	*	0	10326	1681	1489	
+
+L 55   5211	6727	6334	*	5779	6892	6503	2649	*	1933	4982	*	5174	5765	*	5138	4469	1625	*	5903	55
+       11	*	6982	*	*	*	0	10311	0	1670	
+
+P 56   4859	*	*	*	*	*	*	*	*	6843	*	*	122	*	*	5168	*	6671	*	*	56
+       73	4351	*	1743	512	*	0	10303	1680	1798	
+
+Y 57   2811	4181	*	*	4342	6031	*	3467	5658	3636	4919	*	*	6859	6509	5163	2979	1870	6909	4112	57
+       67	4460	*	0	*	2759	231	10353	1670	1798	
+
+Y 58   4830	*	*	*	3803	6373	*	2727	5720	780	4896	*	*	*	*	*	*	4049	6810	5283	58
+       287	2471	*	813	1215	2623	256	10382	3834	1661	
+
+I 59   5351	*	6182	2623	4741	6913	5967	3939	3851	3373	5432	6955	*	4507	4368	7094	3494	1961	6363	5800	59
+       190	3017	*	260	2599	*	0	10397	2907	1531	
+
+D 60   4602	*	1649	3606	4707	4545	4427	4270	*	4220	7301	4214	4497	5823	5346	3889	4479	4643	5878	6875	60
+       87	4101	*	1034	967	1894	452	10397	1908	1531	
+
+G 61   5865	6546	2019	3965	*	2328	4743	6757	3458	*	5970	2952	4594	4347	5916	4805	5220	*	*	6672	61
+       82	4185	*	2695	242	*	0	10424	1861	1347	
+
+D 62   4908	*	2371	3606	*	1138	6688	*	5925	6543	*	3873	5933	4725	7017	6763	4284	6764	*	*	62
+       207	2906	*	2421	298	955	1046	10424	3555	1347	
+
+V 63   4836	*	4638	3184	4427	4398	6702	4102	3427	3394	6202	5031	5405	4466	3896	4391	3408	3195	*	4892	63
+       91	4515	5830	887	1123	*	0	10480	1665	1083	
+
+K 64   3720	6148	*	4793	5252	5714	6769	3551	4013	4983	*	5147	3758	4571	3852	4147	3217	2170	6712	4995	64
+       41	5966	6369	0	*	773	1269	10445	1165	1431	
+
+L 65   6786	6640	*	*	4788	*	6959	2344	5709	1262	4619	6404	6713	6744	6705	5041	6555	2574	*	6191	65
+       11	6984	*	3807	107	1137	875	10467	1000	1380	
+
+T 66   3245	4998	6945	*	3059	3790	5305	4373	5813	6746	5171	4195	4981	5257	5825	3587	2469	4719	4385	4191	66
+       0	*	*	*	*	*	0	10510	0	1133	
+
+Q 67   6709	*	1976	1464	*	3319	6879	*	6783	*	6762	6197	5583	3198	*	4010	5756	6374	*	6573	67
+       0	*	*	*	*	*	0	10510	0	1133	
+
+S 68   4267	5850	5468	5679	*	7245	6985	6688	6758	5490	5415	5552	5769	6118	5364	839	2909	4678	*	*	68
+       11	*	7071	*	*	0	*	10510	0	1133	
+
+M 69   3090	6710	5247	4689	5405	4544	6583	4411	5465	3376	4302	3450	4764	4943	3699	3927	3824	3857	5183	4518	69
+       8	7559	*	1585	585	*	0	10527	1000	1000	
+
+A 70   1295	6606	3830	4499	6857	6092	6774	4390	5210	3651	*	6784	3989	5768	*	3960	6146	3156	*	*	70
+       0	*	*	*	*	*	0	10522	0	1111	
+
+I 71   4826	6690	*	5236	6708	*	*	403	*	3929	5133	*	*	*	*	6656	6647	4361	*	*	71
+       0	*	*	*	*	*	0	10527	0	1111	
+
+I 72   2677	3633	6976	5923	5008	*	*	3509	*	1951	3558	6969	5448	5927	5525	4894	4677	3059	*	6123	72
+       0	*	*	*	*	1061	941	10619	0	1111	
+
+R 73   4012	*	3970	2623	*	5327	5848	4241	4370	3807	5403	5772	*	3250	2282	4532	5003	5342	6043	5056	73
+       0	*	*	*	*	*	0	10722	0	1000	
+
+Y 74   5453	*	7479	7502	2934	*	3102	6881	5324	6117	6283	6984	*	5189	6001	*	6669	5265	5001	889	74
+       32	*	5506	*	*	*	0	10722	0	1000	
+
+I 75   4912	6916	*	*	4054	*	*	2597	*	707	5994	*	*	*	*	*	6570	3404	*	*	75
+       12	6884	*	1000	1000	*	0	10620	1004	1487	
+
+A 76   2433	5502	2694	2797	6744	3287	5842	4225	7062	4289	*	3784	*	5677	6629	3986	4934	4495	*	6570	76
+       12	*	6881	*	*	*	0	10620	0	1487	
+
+D 77   2932	*	2997	2072	6866	6816	6917	6952	4303	4091	*	4814	7033	3882	2979	3217	6548	*	*	7236	77
+       0	*	*	*	*	*	0	10607	0	1627	
+
+K 78   4676	5053	4924	3184	*	*	5276	4298	2319	3580	5846	5256	5858	3995	3403	4158	3751	4309	6721	5728	78
+       86	4647	5800	1626	565	2465	288	10607	1535	1627	
+
+H 79   3887	5794	6937	5973	2411	4501	3039	5889	5338	3226	*	4867	*	6550	7071	4481	4994	4164	*	2296	79
+       269	2553	*	2162	365	2868	213	10586	3982	1844	
+
+N 80   4072	*	3288	4985	*	1998	4943	*	4677	6124	*	4464	1926	5638	5178	3953	4938	7008	*	6775	80
+       1075	1056	4496	1861	465	*	0	10595	7102	1712	
+
+M 81   5715	6677	4204	5525	3345	4788	5372	4266	4901	1142	4863	*	5948	6642	5261	4863	6792	4557	5307	*	81
+       128	3557	*	1456	654	1677	541	10311	2241	2551	
+
+L 82   4506	*	4585	6006	3764	4980	4735	3631	4561	2386	3759	7538	4819	6074	4451	5848	4918	3887	6869	2840	82
+       59	4642	*	770	1274	1873	460	10568	1595	2182	
+
+G 83   3366	*	3720	*	7055	2070	*	5834	5778	5939	*	6535	1394	5180	6716	4161	4957	7063	*	7551	83
+       168	3427	5868	1101	906	*	0	10592	2765	1832	
+
+G 84   3184	5535	3600	3127	5839	4013	*	5009	2922	3107	5385	7380	5008	5428	3619	3617	4475	5580	*	*	84
+       49	4905	*	377	2121	2088	387	10458	1470	2140	
+
+C 85   3828	5623	1750	5854	5761	3103	*	5905	4794	5209	*	3143	4903	5725	6254	3071	3999	5648	*	*	85
+       184	3450	5156	2175	361	2060	395	10484	2462	1848	
+
+P 86   3361	6804	4275	4317	6929	4432	5308	5465	7111	3703	6748	3764	2077	4149	4955	3150	5836	4354	6969	6664	86
+       93	4679	5407	2642	252	285	2482	10484	1768	2134	
+
+K 87   2650	*	4435	3302	4931	5096	6684	3960	4799	3961	4665	4344	3936	3462	5920	4533	4793	3996	5372	5079	87
+       47	4956	*	4077	88	723	1342	10715	1402	1484	
+
+E 88   3459	*	2729	2233	7134	4374	4962	4261	3773	4419	5429	5336	4850	3438	4756	5857	5447	4883	*	*	88
+       46	5493	6782	1018	982	0	*	10729	1268	1092	
+
+R 89   3443	7098	5875	5007	5998	4928	4961	4671	3019	4415	6613	5472	*	3538	1784	4449	6816	4089	5454	5866	89
+       28	5712	*	562	1633	*	0	10702	1291	1013	
+
+A 90   1275	*	4171	5334	6199	3812	*	5541	5970	4610	5819	4585	5519	6907	6845	3305	4465	3962	5172	7226	90
+       25	5877	*	2844	216	0	*	10702	1140	1013	
+
+E 91   3755	*	4282	3063	5270	7249	7193	4007	3500	3306	5306	5154	*	2523	3421	4590	4160	5519	5392	*	91
+       35	5386	*	2261	338	*	*	10724	1262	0	
+
+I 92   2680	5054	4769	5051	4597	6109	*	2856	6024	3215	3810	5368	*	4793	6875	4617	4774	2390	6795	6272	92
+       120	3643	*	2620	256	*	*	10724	2262	0	
+
+S 93   4731	6373	2375	3309	*	6067	5585	4731	4209	3827	4966	4240	6886	3974	2822	4689	4553	6917	5435	4395	93
+       62	4582	*	3979	95	*	*	10724	1619	0	
+
+M 94   2911	5695	5480	2903	3811	5948	6579	6126	4233	3947	3600	5367	4911	3996	3977	3499	4342	5763	5494	5879	94
+       79	4222	*	1848	469	*	*	10724	1871	0	
+
+L 95   4169	*	*	6886	4974	*	6908	3373	6279	1849	3973	5145	*	5318	4357	6068	5156	4313	2408	4028	95
+       53	5241	6674	0	*	*	*	10724	1454	0	
+
+E 96   3846	5124	3566	3183	4809	4503	5186	3399	*	2603	3705	5166	7097	5933	6142	4281	5350	3444	6826	5532	96
+       32	7243	6035	0	*	*	0	10682	1165	1083	
+
+G 97   3387	*	3023	3936	5486	4518	5397	6811	4334	3694	5603	4083	*	4126	4184	2972	4290	5454	3759	5413	97
+       174	3212	7534	1299	753	2002	414	10556	2805	1415	
+
+A 98   3201	5645	5297	4310	3131	4226	5229	3743	5414	3216	4663	6936	7061	4615	4523	4476	4271	5475	4454	3456	98
+       35	5397	*	1729	518	2241	343	10563	1268	1388	
+
+V 99   2549	4819	5192	4971	3693	5413	5220	3508	4751	3671	5426	4120	6757	6026	4853	3522	5072	3238	7171	4897	99
+       103	3856	*	1363	710	815	1212	10663	2109	1272	
+
+L 100  3204	7181	3526	3141	5332	4479	4743	5957	4550	3861	7104	3534	6597	5553	4163	3386	3582	4812	5719	4840	100
+       36	5334	*	3579	126	*	0	10704	1361	1022	
+
+D 101  4693	7110	2239	2769	6867	2926	5866	4521	5475	4492	6850	3382	6749	5364	5820	4267	3953	4714	*	5851	101
+       118	3667	*	2152	368	*	0	10704	2405	1022	
+
+I 102  5082	5034	5414	5465	3775	*	5912	3359	4787	1454	4337	*	6867	7161	5152	4553	6766	3279	5514	4811	102
+       20	*	6160	*	*	*	0	10704	0	1022	
+
+R 103  4129	6991	5516	5682	3324	3935	3914	4414	6974	2304	4565	5236	*	6986	3317	4040	4569	4153	7008	4041	103
+       112	3968	6505	3207	165	*	0	10603	1986	1326	
+
+Y 104  3501	5326	3622	4111	4300	4913	4901	4946	3416	4258	4952	4926	3792	4669	4499	3921	4056	5311	6068	3952	104
+       77	4600	6579	2826	219	*	0	10500	1663	1581	
+
+G 105  2140	7218	5270	4396	5874	3147	4903	5288	3606	4981	*	4767	2819	5060	4099	3708	5417	5982	*	7005	105
+       115	3997	6128	1645	556	794	1241	10467	2108	1808	
+
+V 106  3447	5450	6729	7340	3671	3869	5823	3338	6025	2519	5383	4839	4475	5852	4706	5225	5975	3361	4517	3767	106
+       121	4327	5017	1162	854	2163	365	10503	1756	1540	
+
+S 107  3503	*	4623	4406	4800	3447	5853	4117	5353	3798	5103	6901	*	4536	3890	3450	4008	2611	5796	4581	107
+       172	3428	5682	3001	193	1026	975	10502	2522	1942	
+
+R 108  3052	*	4072	4365	5167	4750	4790	4611	3239	5147	4822	5057	3122	3472	2876	4773	5240	5897	*	6813	108
+       90	4864	5270	2281	332	964	1037	10469	1453	1982	
+
+I 109  3845	5908	6753	5753	3662	*	4630	3284	6084	2643	4773	4246	4581	5968	5912	4422	5212	2866	4701	3713	109
+       78	5447	5064	3268	158	2782	227	10478	1471	1887	
+
+A 110  3693	5715	5913	5085	2963	3918	*	4556	5279	2416	4824	5920	4879	7339	4198	4809	4087	3459	5751	4131	110
+       129	3546	*	2247	341	3219	164	10431	2433	2300	
+
+Y 111  4485	*	4777	4124	2100	4313	7093	5004	4918	4064	5205	6006	5223	4196	4375	5739	4738	5307	6717	2447	111
+       181	3087	*	3537	130	3058	185	10456	3206	2153	
+
+S 112  3523	7325	3102	3315	7193	4312	6118	4793	4906	4575	6690	3905	3477	3472	4544	3733	3636	4547	*	6766	112
+       136	3619	6872	2468	288	1580	587	10441	2263	2157	
+
+K 113  4272	6931	3683	2989	7079	3083	*	*	2679	4318	5797	5858	3740	3785	3898	3951	4443	5331	*	5682	113
+       255	3119	4417	2425	297	1838	473	10478	2929	1861	
+
+D 114  3603	5897	3209	3558	5631	5028	*	5563	3437	3894	4305	4125	6975	3805	3826	4787	4209	3678	5347	5299	114
+       402	2611	3650	1718	523	2972	197	10379	3479	2565	
+
+F 115  4588	*	3777	3346	3794	3913	6915	3826	5786	3109	*	3913	3805	4102	4270	4431	4270	5704	5350	4446	115
+       466	2009	5173	2637	253	855	1161	10297	4272	3577	
+
+E 116  3140	*	2782	2662	*	4278	6858	4375	3366	6740	*	3865	3660	3773	4877	3559	6334	6980	*	6900	116
+       40	5185	*	363	2167	2282	332	10431	1327	2653	
+
+T 117  2763	6091	3082	2468	5254	5035	*	5264	3117	5986	*	4491	4096	4632	6459	4858	3363	5390	*	6034	117
+       264	2720	5996	2695	242	3334	151	10450	3399	2308	
+
+L 118  2664	*	5150	5085	5741	4216	6770	3237	3505	2557	5222	5994	5876	5380	5312	4470	4247	3568	4706	6680	118
+       87	4309	6942	3020	190	2484	284	10437	1745	2439	
+
+K 119  3516	6986	5172	3171	4443	4953	6887	4867	3440	3388	4724	4895	4170	5431	3247	5765	3929	3835	5219	5582	119
+       50	5281	6940	3022	190	3377	146	10449	1293	2303	
+
+V 120  2656	*	3074	2876	7029	4450	7101	5240	3010	6458	6349	4597	4761	4449	3852	3995	3648	5986	*	*	120
+       37	5297	*	3150	172	504	1761	10420	1254	2305	
+
+D 121  2831	7287	3260	2752	4633	3408	5338	*	3474	3761	*	4696	*	4040	3467	5763	5934	4852	*	5788	121
+       36	5800	7187	1626	565	*	0	10675	1147	1447	
+
+F 122  2121	6975	*	5262	4150	3884	6063	4109	4689	3320	5467	5038	6757	4868	4405	4633	5908	3536	5656	3418	122
+       47	4969	*	0	*	*	0	10676	1414	1568	
+
+L 123  5242	*	6943	3695	4399	5912	7300	4530	3004	2496	5233	4900	5953	3840	2822	4589	4372	4144	6724	5085	123
+       0	*	*	*	*	266	2572	10676	0	1568	
+
+S 124  2542	*	3401	2933	*	4222	*	5379	3258	7027	6808	4428	3737	3421	4447	3938	4621	5085	*	7002	124
+       23	5987	*	4377	71	*	0	10561	1139	1000	
+
+K 125  3660	7586	3477	3140	*	4532	*	5961	4001	4124	6168	3783	5078	3706	2939	3587	4200	4270	5590	*	125
+       44	5046	*	0	*	0	*	10561	1589	1000	
+
+L 126  3877	4798	*	*	4123	6971	5865	3019	5573	1247	4574	*	5677	*	6971	6340	4708	3243	5932	7476	126
+       35	7011	5962	0	*	*	*	10564	1015	0	
+
+P 127  4703	6595	4835	2911	4681	5573	5552	4451	2809	4097	7013	3396	3662	4984	3273	4233	4551	4554	*	*	127
+       20	6949	7440	0	*	994	1006	10533	1000	1166	
+
+E 128  3393	5694	4251	2870	6916	5338	4588	6998	3060	4353	7013	4667	5380	4387	2514	4622	4091	4782	*	6023	128
+       0	*	*	*	*	*	0	10554	0	1116	
+
+M 129  3029	4389	5016	4292	5474	3844	3487	4278	4750	3495	5493	5093	*	5971	6017	3436	4196	3432	5467	4509	129
+       0	*	*	*	*	1267	775	10530	0	1116	
+
+L 130  *	5459	*	6852	3257	6920	*	3949	*	880	3862	5388	*	*	*	5790	5809	3907	6039	4743	130
+       0	*	*	2000	415	0	*	10549	1000	1000	
+
+K 131  3185	*	2709	2882	7010	3385	*	5909	3276	5365	6725	5995	6045	3641	4861	4221	2952	5941	*	*	131
+       5	*	8164	*	*	*	*	10564	0	0	
+
+M 132  2791	6910	4638	4124	3695	6067	7060	4699	4216	3362	5518	5739	6033	4147	4474	4848	3399	3708	4727	4072	132
+       58	5298	6129	3486	135	*	0	10560	1337	1077	
+
+F 133  5553	*	*	7038	2847	*	6941	3447	*	1123	3933	*	*	*	*	6637	4853	3409	4710	5025	133
+       0	*	*	*	*	535	1691	10556	0	1354	
+
+E 134  3574	*	2844	1057	*	5459	*	*	*	5853	5611	3509	*	4475	6818	4609	4235	*	*	*	134
+       12	*	6859	*	*	*	0	10553	0	1000	
+
+D 135  3354	7223	2561	3575	*	4367	6565	6122	2956	6073	*	2967	6019	4508	3403	4283	3825	6053	*	7320	135
+       13	6815	*	997	1003	968	1032	10545	1159	1151	
+
+R 136  3665	6915	6027	3878	5067	5550	3783	3870	3978	2708	4658	*	6913	3904	2981	6466	4872	3958	5246	4534	136
+       26	5819	*	0	*	*	0	10554	1158	1000	
+
+L 137  4051	5845	*	6864	4168	6935	*	3474	6934	883	4974	6875	6695	5892	*	*	5619	3352	6513	6233	137
+       182	3310	5835	2113	379	*	0	10554	2745	1000	
+
+C 138  2662	5186	4078	3245	*	2907	6842	5718	2980	5147	*	5482	5430	4434	4495	3188	3798	5955	*	*	138
+       362	2244	6540	1919	443	547	1664	10465	4676	1613	
+
+H 139  4272	*	2645	2798	7083	2099	5069	*	3257	5248	6660	5405	6942	4541	4799	4162	4636	7221	7004	6373	139
+       100	4550	5363	1687	536	2053	398	10501	1752	1385	
+
+K 140  4892	7215	4733	5587	6994	2418	4901	6583	2688	4876	*	3973	5790	3808	3242	2738	4954	5435	*	6820	140
+       75	4561	6959	1359	712	2742	234	10468	1614	1729	
+
+T 141  4637	6953	3926	4323	7222	2924	6877	7014	3750	6008	5759	6774	2032	4125	3286	4128	3759	5611	6993	*	141
+       76	4289	*	2479	285	863	1152	10464	2075	1749	
+
+Y 142  6058	5402	*	*	1771	5917	5301	5878	6477	4648	*	*	6925	*	*	5269	*	5667	3154	1350	142
+       0	*	*	*	*	0	*	10499	0	1254	
+
+L 143  5261	5846	6474	6554	2649	6102	6847	3026	*	1414	4110	*	6699	*	*	5087	4493	3781	6041	5336	143
+       39	6965	5736	1000	1000	*	*	10562	1000	0	
+
+N 144  3283	4159	5369	6017	3586	2841	5945	4189	7022	2922	4361	5179	*	5029	5982	4679	4921	2656	*	6085	144
+       0	*	*	*	*	0	*	10528	0	1164	
+
+G 145  5525	7083	5827	7077	*	539	*	*	5950	7169	*	4810	5336	5852	5904	3389	5353	*	*	5644	145
+       77	4714	6140	1108	899	*	*	10562	1581	0	
+
+D 146  3995	6397	2017	2863	*	3465	6061	*	4377	5127	*	2919	5287	5730	5123	3734	4198	6001	*	6965	146
+       36	*	5352	*	*	0	*	10567	0	1107	
+
+H 147  3844	*	3444	3039	*	4816	6088	7066	2481	5103	*	4391	*	3254	2834	3675	4172	5355	*	*	147
+       32	5493	*	556	1645	0	*	10534	1348	1309	
+
+V 148  4852	*	6642	*	2815	*	*	2710	*	2091	4667	*	1995	6524	5602	6405	*	3870	6756	6101	148
+       27	5754	*	0	*	*	*	10562	1172	0	
+
+T 149  7134	5563	5798	*	*	3784	*	*	6912	6046	*	3995	*	6717	*	1528	1278	5236	*	*	149
+       0	*	*	*	*	*	*	10562	0	0	
+
+H 150  2784	5939	*	5481	3764	4699	7224	2603	6642	2153	4740	*	6699	6945	*	5323	6965	3705	4204	3667	150
+       0	*	*	*	*	*	*	10562	0	0	
+
+P 151  957	5081	5871	6074	*	4967	*	4346	*	3962	6756	6642	4662	6850	7189	4815	5241	2819	*	*	151
+       0	*	*	*	*	*	*	10562	0	0	
+
+D 152  5696	*	204	4636	*	*	*	*	*	*	*	6084	*	5782	*	*	4670	*	*	*	152
+       0	*	*	*	*	*	*	10562	0	0	
+
+F 153  3035	4373	*	*	2736	*	*	2221	*	2228	4771	*	7474	*	*	*	5852	3572	5556	3525	153
+       11	*	7001	*	*	*	*	10562	0	0	
+
+M 154  2305	5066	*	7187	3636	4976	4961	5329	7002	2935	4339	4698	7047	*	6048	3315	5375	3085	*	3320	154
+       0	*	*	*	*	0	*	10552	0	1015	
+
+L 155  2963	4857	*	*	4226	*	6917	3049	6405	1711	5009	6751	*	*	*	7260	5424	2299	4780	5173	155
+       0	*	*	*	*	*	*	10562	0	0	
+
+Y 156  2128	*	*	6815	2715	4314	5644	4526	*	3517	5813	*	*	*	6405	5320	5533	3322	3280	2944	156
+       56	5698	5735	2141	371	*	*	10562	1240	0	
+
+D 157  3310	3547	5327	4483	5687	2927	6718	5775	*	7216	5529	5810	2196	5288	6615	3654	4011	3311	*	5454	157
+       0	*	*	*	*	*	0	10525	0	1177	
+
+A 158  2748	4868	6780	5326	3465	5261	4186	4343	5872	2853	4683	5596	5998	6867	*	4331	3472	3029	5368	4791	158
+       0	*	*	*	*	*	0	10525	0	1177	
+
+L 159  3579	6718	*	*	3423	*	*	2926	*	1269	4364	*	*	*	*	6711	5051	2926	6913	4680	159
+       23	7349	6718	2585	263	*	0	10525	1100	1177	
+
+D 160  2861	6416	3902	3089	5209	5887	3751	4331	5638	4098	5497	4453	*	3562	3299	5423	5272	3992	6187	4644	160
+       12	6973	*	1000	1000	669	1431	10502	1000	1337	
+
+V 161  3899	7031	4890	6807	4027	4677	5967	5263	6884	4131	5271	3924	4884	3936	2952	4362	4620	3642	3070	3923	161
+       0	*	*	*	*	0	*	10535	0	1020	
+
+V 162  3088	4648	5310	5997	3919	5141	5083	3265	*	1994	4026	5525	5126	*	*	5078	5117	3073	6109	5706	162
+       99	4994	4835	2247	341	*	*	10562	1415	0	
+
+L 163  4182	5650	3104	4116	4249	4191	5549	4426	4269	3840	4953	3903	5501	4414	3762	4959	4402	3272	*	5093	163
+       45	5834	6255	539	1681	2368	311	10487	1180	1598	
+
+Y 164  3827	5962	5048	4983	3294	4083	5022	4297	4048	4543	4493	5666	5798	4757	3598	3646	4220	3461	5551	4100	164
+       168	3771	4757	1411	680	0	*	10489	2216	1696	
+
+M 165  3159	5938	6089	3734	3632	5204	5838	4248	4858	2786	4042	*	6013	7145	3732	5910	3563	3453	5619	4234	165
+       244	3316	4175	2624	255	0	*	10568	2718	1723	
+
+D 166  3838	5408	3369	4173	4328	2664	4178	*	4288	3580	*	4616	3560	4208	5429	4444	5132	5526	5810	4651	166
+       47	4960	*	853	1163	653	1458	10524	1391	1903	
+
+P 167  4800	*	4640	3064	5369	2392	7263	5146	4951	3957	*	5441	2539	4137	4299	5130	4512	4405	6121	5532	167
+       461	2070	4825	944	1058	*	0	10529	4611	1234	
+
+M 168  4559	6913	3450	3287	4151	4207	4259	3626	3822	3619	6079	5335	5252	6353	5319	3456	5330	3159	5835	6504	168
+       294	2523	6613	1664	547	2170	362	10486	3947	1988	
+
+C 169  3664	4674	3514	3627	5911	5487	5208	3808	4856	2377	4647	5330	4363	*	5633	3808	4829	3957	5296	5714	169
+       49	5825	5989	2416	299	177	3115	10464	1381	2054	
+
+L 170  5153	4923	6931	4844	2944	7440	5449	3413	4015	2225	5104	6109	4892	4998	3850	5979	5049	3798	4203	5828	170
+       171	3264	7066	2380	308	1603	576	10536	2905	1297	
+
+D 171  3631	6839	3335	2624	6386	4351	5483	7230	3083	5998	6168	4305	4237	4388	3435	3774	4486	4322	*	*	171
+       118	4650	4693	2317	323	1478	642	10531	1598	1293	
+
+A 172  3224	*	3010	2852	5878	3985	5995	5990	3419	4960	6671	3403	4247	3740	4096	4441	5063	5219	*	*	172
+       38	5257	*	414	2003	1095	911	10576	1329	1947	
+
+F 173  4290	6062	5892	6199	2679	5336	3788	5288	5965	3667	5809	5233	5232	*	3895	5706	4429	4819	5310	1914	173
+       63	4653	8443	1786	494	0	*	10589	1545	1440	
+
+P 174  3925	*	4636	6603	*	5439	6074	6793	3780	5681	7096	5914	1026	5096	5484	4140	3142	6964	*	*	174
+       0	*	*	*	*	*	0	10561	0	1077	
+
+K 175  3163	*	4607	5339	*	3777	3896	7077	2858	3607	5787	2543	4432	4559	3938	4117	5918	4750	*	*	175
+       20	6165	*	2196	355	*	0	10561	1129	1077	
+
+L 176  5492	*	*	*	4432	*	*	2181	*	1086	4443	*	*	*	*	7010	5931	2906	7048	5109	176
+       0	*	*	*	*	*	0	10561	0	1077	
+
+V 177  3945	6168	6552	4230	4757	5593	6008	5048	2852	3984	5004	5062	6871	3975	3136	3377	3826	4058	4998	4413	177
+       32	6402	6641	1585	585	*	0	10561	1099	1077	
+
+C 178  2249	5728	4460	3365	*	4434	5390	*	3374	5880	*	3901	7088	4131	2509	4343	4222	5282	*	6777	178
+       0	*	*	*	*	*	0	10515	0	1325	
+
+F 179  5426	*	*	*	3287	*	4498	4956	*	2874	5969	*	*	*	*	7025	*	5357	1313	2244	179
+       0	*	*	*	*	*	0	10515	0	1325	
+
+K 180  4844	4706	*	*	3359	5315	7006	3927	5506	2807	4398	5944	*	5580	4377	4884	5456	3179	5153	2071	180
+       11	6991	*	0	*	*	0	10515	1000	1325	
+
+K 181  3807	7100	2723	2308	*	5265	6714	5923	3276	4654	6045	3668	*	3278	3509	4121	5023	*	*	*	181
+       0	*	*	*	*	*	0	10515	0	1325	
+
+R 182  2779	*	4057	4066	*	5325	5043	6367	4005	5357	7089	4150	*	4436	1660	4765	3776	4498	*	*	182
+       0	*	*	*	*	*	0	10469	0	1325	
+
+I 183  5317	4880	*	*	3461	6787	6969	2409	*	2369	2681	*	*	6936	*	6942	5498	2071	6623	6829	183
+       0	*	*	*	*	*	0	10422	0	1325	
+
+E 184  4253	7426	4210	3018	4101	4270	4756	5348	3406	4037	4460	5330	*	4524	2811	3551	4694	*	6795	4378	184
+       0	*	*	*	*	982	1018	10422	0	1325	
+
+A 185  2485	*	3385	3143	*	5016	5942	6620	3383	6657	6815	3596	*	3386	4040	3242	3829	6918	*	5876	185
+       42	5119	*	1602	576	*	0	10410	1322	1077	
+
+I 186  5311	*	4353	4092	6861	*	3467	4389	5650	2722	4308	5360	*	6003	1776	5162	5242	4537	5775	4296	186
+       56	4714	*	1000	1000	*	0	10337	1402	1077	
+
+P 187  4277	*	2925	3214	*	6195	*	5946	4171	5745	*	5729	1113	5387	5652	4032	6760	6681	*	*	187
+       13	6791	*	0	*	*	0	10234	1000	1077	
+
+Q 188  2260	5385	4376	3408	6542	3013	4803	5820	4988	3854	6754	5432	7078	5723	4357	2592	5735	5276	*	5782	188
+       0	*	*	*	*	*	0	10219	0	1077	
+
+I 189  5197	5744	*	6590	2505	4718	*	3173	*	3519	4309	*	7038	6571	6883	5359	5103	1921	4078	3688	189
+       0	*	*	*	*	0	*	10153	0	1077	
+
+D 190  2607	*	6789	3819	*	6705	6694	5520	1850	5996	5613	6686	6655	3153	3309	4586	4253	3750	*	*	190
+       16	*	6502	*	*	*	*	10020	0	0	
+
+K 191  2390	*	3990	2952	6514	*	5538	*	2168	5500	*	4462	*	3388	3921	3994	3829	*	*	*	191
+       0	*	*	*	*	0	*	9896	0	1000	
+
+Y 192  2433	*	5264	6289	4373	4626	5439	5590	*	3714	6343	6399	7555	*	6435	4040	3372	2272	4452	3106	192
+       0	*	*	*	*	*	*	9827	0	0	
+
+L 193  3622	6198	6346	5278	4787	*	5492	3251	5384	1927	3663	4195	*	6346	4383	5433	5310	3153	5213	4826	193
+       68	5162	5767	921	1084	*	*	9808	1161	0	
+
+K 194  3003	7009	3844	2830	6087	3383	5171	*	3126	5139	*	5303	4047	3045	4292	4170	4374	*	6134	*	194
+       19	6222	*	660	1446	0	*	9636	1402	1074	
+
+S 195  3524	*	3640	3007	*	3860	*	5716	3030	5879	6646	6397	5800	3909	4193	2601	3303	4769	*	5857	195
+       77	4274	*	0	*	*	*	9469	1226	0	
+
+S 196  3700	*	3219	2176	5232	5079	*	5586	4229	5070	5111	5203	*	4330	2286	5489	*	3759	*	5191	196
+       0	*	*	*	*	*	*	8458	0	0	
+
+K 197  3189	4908	5260	3568	*	3308	5419	*	4247	*	*	4237	1967	4101	2518	*	*	5160	*	*	197
+       0	*	*	*	*	*	*	8400	0	0	
+
+Y 198  3219	*	4784	3710	4896	4770	3663	5689	4664	4791	*	*	*	4304	3051	3691	4617	3270	*	2809	198
+       0	*	*	*	*	*	*	7690	0	0	
+
+I 199  3552	*	4469	*	*	*	*	2852	4071	4633	4526	*	4349	4409	4474	3442	2255	2783	*	*	199
+       66	4477	*	1585	585	*	*	7227	1024	0	
+
+A 200  3579	*	2746	4226	3941	*	4377	3696	4351	4359	4477	2844	4264	*	*	*	4501	4447	4288	4373	200
+       159	3260	*	0	*	*	*	7128	1309	0	
+
+W 201  3214	*	*	4318	1891	4308	*	*	3230	4230	*	4144	*	*	*	*	*	4302	2786	3184	201
+       0	*	*	*	*	*	*	6928	0	0	
+
+P 202  3744	*	*	*	*	2848	*	*	*	*	*	*	1116	3673	5127	2779	*	*	*	3790	202
+       123	*	3616	*	*	*	*	5862	0	0	
+
+L 203  *	*	*	*	*	*	*	2106	*	1799	*	*	*	*	*	3285	3411	1818	*	*	203
+       0	*	*	*	*	*	0	5157	0	1024	
+
+Q 204  3195	*	*	*	*	*	*	3433	2135	2051	*	3151	*	3200	*	3214	*	*	*	*	204
+       0	*	*	*	*	*	0	4907	0	1024	
+
+G 205  2134	*	*	*	*	883	*	*	*	*	*	3151	*	*	3089	*	*	*	*	*	205
+       0	*	*	*	*	*	0	4907	0	1024	
+
+W 206  *	*	*	*	*	*	*	1815	2768	*	*	*	1789	*	2888	*	*	*	2789	*	206
+       0	*	*	*	*	0	*	4158	0	1024	
+
+Q 207  *	*	*	*	*	*	*	2883	2964	*	2982	3100	*	2009	3022	*	*	3040	*	*	207
+       0	*	*	*	*	*	*	4409	0	0	
+
+A 208  801	*	*	*	2787	*	*	*	2875	*	*	*	*	*	*	*	2787	*	*	*	208
+       0	*	*	*	*	*	*	4016	0	0	
+
+T 209  *	*	*	*	*	*	*	*	2345	2291	*	2294	*	2418	*	*	2266	*	*	*	209
+       0	*	*	*	*	*	*	3312	0	0	
+
+F 210  *	*	*	*	1279	*	*	2294	*	*	*	*	*	*	*	*	*	*	1381	*	210
+       0	*	*	*	*	*	*	3312	0	0	
+
+G 211  2023	*	*	*	*	995	*	*	*	*	*	*	*	*	*	*	1986	*	*	*	211
+       0	*	*	*	*	*	*	2914	0	0	
+
+G 212  *	*	2023	*	*	995	*	*	*	*	*	1986	*	*	*	*	*	*	*	*	212
+       0	*	*	*	*	*	*	2914	0	0	
+
+G 213  *	*	1601	*	*	577	*	*	*	*	*	*	*	*	*	*	*	*	*	*	213
+       0	*	*	*	*	*	*	2384	0	0	
+
+D 214  *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	214
+       0	*	*	*	*	*	*	1000	0	0	
+
+H 215  *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	215
+       0	*	*	*	*	*	*	1000	0	0	
+
+P 216  *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	216
+       0	*	*	*	*	*	*	1000	0	0	
+
+P 217  *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	217
+       0	*	*	*	*	*	*	1000	0	0	
+
+K 218  *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	218
+       0	*	*	0	*	*	*	1000	0	0	
+
+//
+�HHsearch 1.5
+NAME  f7a5e37dc7250be9dd8e0efc7b40d3b7
+FAM   
+FILE  f7a5e37dc7250be9dd8e0efc7b40d3b7
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 11:56:32 2013
+LENG  93 match states, 93 columns in multiple alignment
+FILT  106 out of 642 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  7.0 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCHHHHHHHHHHHHHHHCCCCCCCCHHHHHHHHHHHHHHCCCCCCHHHHHHHHHHCCCCCCCCHHHHHHHHHHCCCCCCCCCCCCCCCCCCC
+>ss_conf PSIPRED confidence values
+986899999999999998389999898998999999987026675467633155302557876844877628865988999988887787789
+>Consensus
+xxxCxxvxxxLxpClxyxxgxxxxPxxxCCxxvxxlxxxaxxxxdrxxxClCxxxxxxxxxxixxxxaxxLPxxCxvxxpxpixxxxdCxxix
+>f7a5e37dc7250be9dd8e0efc7b40d3b7
+AISCGQVASAIAPCISYARGQGSGPSAGCCSGVRSLNNAARTTADRRAACNCLKNAAAGVSGLNAGNAASIPSKCGVSIPYTISTSTDCSRVN
+>gi|224133474|ref|XP_002328051.1| predicted protein [Populus trichocarpa]gi|222837460|gb|EEE75839.1| predicted protein [Populus trichocarpa]
+--KCEPVFEYFPYCLDFLTGYYNKPSKRCCDHIYKLNRLAKRGLGAQLICWCIEYMVRGTEpQIRADRISELPTKCQTHLSFPISEWKDCNTyslLS
+>gi|222619541|gb|EEE55673.1| hypothetical protein OsJ_04081 [Oryza sativa Japonica Group]
+-----QVALKLAPCAAGHAEPARRGAAQLLRAGAQHRA--------NPKCLCavMLSNTARSAGVKPAVAMTIPKGWAIaNRP-------------
+>gi|4154350|gb|AAD04945.1| lipid transfer protein [Pinus radiata]
+AIECSDVLSRPVHCLSYFVTPRAtlTPTSACCRESEEVLGMANSMGAKEDLCNCFVGLIRGFR-PNPNKIEGLLSSCALQLFFPIDPVTalpDCTQIQ
+>gi|11120788|gb|AAG30968.1|AC012396_4 hypothetical protein [Arabidopsis thaliana]gi|12323696|gb|AAG51810.1|AC079676_5 lipid transfer protein, putative; 26937-27275 [Arabidopsis thaliana]
+---LTACLQKLLPCQPYIHSLNPPPPPSCCGPMKEIVEK-------DAPCLCIAFnNPEVLKalNLTKENALLLPKACGVNPDV--S---LCSKI-
+>gi|52076890|dbj|BAD45903.1| hypothetical protein [Oryza sativa Japonica Group]
+---CLTPLLSMMSCADYLTNSSaQTPPGTCCEGFKSLVST-------APICLChgINGDLSKFlPlPVDMMKMMTLPNTCGATVPLQ-----------
+>gi|77551590|gb|ABA94387.1| Protease inhibitor/seed storage/LTP family protein [Oryza sativa Japonica Group]
+--YCRDSLSGLLACRDFMFGGAAAASPACCAAYSAAFD-------ADPFCLCYIADgvYGRSTgyDVNVTHALEIPVSCGLATP-PIE---------
+>gi|255540483|ref|XP_002511306.1| hypothetical protein RCOM_1508440 [Ricinus communis]gi|223550421|gb|EEF51908.1| hypothetical protein RCOM_1508440 [Ricinus communis]
+-PSCIFISSNLHSCSdvlrlGFLIG---KPSPQCCRGIRFIKEA-ALIFGVPKACHCVRNCAnthifrrhntqklsgslkagapisNKAPDFNGDIFIQL
+QKKCRVDLGFGLDQNIPCLIIK
+>gi|9758178|dbj|BAB08563.1| unnamed protein product [Arabidopsis thaliana]
+---CNINANHLEKCRPAVIGDNPPSPiKECCELLQAAN----------LKCICrFKSVLPVL-AVYPSKVQALLSKCGLtTIP-------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+A 1    1267	*	3855	5603	*	3494	*	*	*	3768	4715	*	4331	3809	4931	4809	3251	*	*	*	1
+       145	3388	*	1916	444	*	*	5511	1258	0	
+
+I 2    3056	*	5220	5543	*	*	*	2338	*	3081	*	4404	2743	*	*	*	4182	2155	*	4672	2
+       63	4551	*	3258	159	*	*	6138	1131	0	
+
+S 3    3720	*	2331	3618	*	*	4365	5967	4152	*	5057	4991	3869	6370	*	2264	2718	*	*	5568	3
+       0	*	*	*	*	*	*	6550	0	0	
+
+C 4    *	72	6113	*	*	*	*	*	*	6102	*	*	*	*	*	5655	*	*	*	*	4
+       0	*	*	*	*	*	*	6959	0	0	
+
+G 5    3293	*	5167	3814	6775	3078	*	4362	6713	5787	5622	3625	5435	5094	4023	2175	2943	5133	*	*	5
+       19	*	6285	*	*	*	*	6959	0	0	
+
+Q 6    3591	*	2672	3902	5594	4861	*	5636	4900	*	4543	3634	3738	3398	*	3794	2692	3956	*	*	6
+       0	*	*	*	*	*	0	7050	0	1063	
+
+V 7    2892	5020	3941	5292	*	*	*	3152	6224	5668	6423	4669	5050	5142	6751	4363	4837	1336	*	*	7
+       18	*	6352	*	*	*	0	7090	0	1063	
+
+A 8    2829	*	5049	6404	3721	5864	6228	3802	5468	2467	6439	5107	5793	3764	6469	5639	3762	2753	5797	4955	8
+       0	*	*	1585	585	0	*	7086	1063	1178	
+
+S 9    3356	*	4902	5383	6367	4502	*	4044	6494	3951	4456	2903	4983	4525	4598	2669	3022	4198	*	5518	9
+       24	5899	*	0	*	*	*	7285	1062	0	
+
+A 10   3614	*	3245	4876	*	4015	5620	6588	2731	3971	5237	3619	6896	3257	5179	3419	3711	*	6619	4533	10
+       0	*	*	*	*	*	*	7288	0	0	
+
+I 11   5818	*	*	*	3670	*	*	4136	*	603	3948	*	5821	*	*	*	*	3354	*	6917	11
+       15	*	6611	*	*	*	*	7343	0	0	
+
+A 12   2664	*	6298	4837	5642	6138	5770	3878	4827	3334	3807	4666	4914	5316	6513	2780	2995	3713	*	6335	12
+       0	*	*	*	*	*	0	7329	0	1063	
+
+P 13   3768	*	3444	5238	6607	5624	5810	*	6772	6582	*	5188	948	4961	*	3081	5852	6638	*	5905	13
+       29	5653	*	539	1681	0	*	7329	1249	1063	
+
+C 14   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	14
+       48	6072	5826	1585	585	*	*	7347	1027	0	
+
+I 15   2910	*	*	*	5512	5992	*	3315	5894	1380	4119	*	*	4890	4346	5257	*	2903	*	5180	15
+       27	5772	*	1482	639	0	*	7330	1310	1131	
+
+S 16   3093	*	3112	4767	*	3024	*	*	5958	6641	5893	3998	1905	5272	5765	2761	5014	6353	*	*	16
+       9	7315	*	1398	688	*	*	7286	1070	0	
+
+Y 17   2547	*	*	*	1803	4951	*	*	*	*	*	*	*	5867	*	5758	6471	6509	*	1145	17
+       0	*	*	*	*	*	*	7286	0	0	
+
+A 18   2695	6735	*	*	4565	4525	4982	3528	*	1689	4969	*	*	*	*	5467	5737	2007	*	*	18
+       0	*	*	*	*	*	*	7303	0	0	
+
+R 19   3689	*	*	5120	5732	4957	5737	3633	4885	4451	5377	4887	*	3550	4474	3243	1884	3865	5942	6145	19
+       98	4174	6603	965	1036	*	*	7303	1452	0	
+
+G 20   5418	*	3912	4577	*	990	5888	6825	5553	6480	*	4169	5120	4821	5088	3776	4338	5262	*	6814	20
+       737	4781	1459	1392	692	0	*	7288	1243	1063	
+
+Q 21   3737	*	3949	5650	*	3645	4408	5573	3319	4741	5945	3308	2808	4215	5383	3042	3798	*	*	5409	21
+       114	3718	*	417	1994	156	3288	6866	1349	3818	
+
+G 22   2570	*	4667	4310	5543	2348	6392	7014	3649	*	6678	3449	5153	6522	4062	3795	3393	4636	*	5891	22
+       62	5586	5570	0	*	784	1255	7231	1108	1337	
+
+S 23   2526	*	4594	4072	*	3607	5886	6465	3717	*	*	4864	3274	4738	4051	2957	3581	3699	*	6127	23
+       107	4034	6574	1186	835	0	*	7273	1455	1271	
+
+G 24   2512	*	5389	5172	*	4100	5987	6116	2973	5850	*	4352	3199	3852	4293	3571	3038	4448	*	6638	24
+       183	3163	7113	908	1098	0	*	7288	2013	1063	
+
+P 25   4678	*	*	6658	*	4659	*	6350	4315	4539	*	*	573	*	*	4152	6641	3890	*	*	25
+       42	5135	*	0	*	0	*	7316	1176	1000	
+
+S 26   4122	*	4681	*	*	4202	5857	6577	*	5818	*	6818	1567	*	*	1867	2527	6678	*	*	26
+       220	3134	5190	649	1465	0	*	7265	2059	1034	
+
+A 27   2418	*	3966	4254	*	4381	*	*	2601	5714	*	5088	2830	3876	6416	2791	4524	6115	*	6319	27
+       15	6633	*	0	*	2105	382	7289	1189	1284	
+
+G 28   2798	*	3226	3445	*	5228	*	5202	4699	6009	6712	7067	3761	2850	4262	2610	3715	5150	*	*	28
+       71	4742	6524	0	*	0	*	7298	1265	1198	
+
+C 29   *	47	*	*	*	*	*	*	*	4977	*	*	*	*	*	*	*	*	*	*	29
+       0	*	*	0	*	0	*	7288	1063	1063	
+
+C 30   *	46	*	*	*	*	*	*	*	4982	*	*	*	*	*	*	*	*	*	*	30
+       0	*	*	*	*	*	*	7303	0	0	
+
+S 31   3273	*	3159	4077	*	4076	5989	5877	5167	5497	*	3534	5564	3897	2798	2769	3437	6847	*	5871	31
+       0	*	*	*	*	*	*	7303	0	0	
+
+G 32   2065	*	5982	4422	*	1514	5942	6483	*	6802	6489	5641	4190	4224	*	3389	6839	4278	5896	*	32
+       24	*	5896	*	*	*	*	7303	0	0	
+
+V 33   4604	*	*	*	4107	4974	*	2138	*	2147	4472	*	*	*	*	5808	7078	1578	*	6502	33
+       0	*	*	*	*	*	0	7234	0	1062	
+
+R 34   3124	*	5175	3569	*	4503	5694	6727	1975	*	6937	4471	*	3792	2177	4179	5157	*	*	5933	34
+       15	*	6576	*	*	*	0	7234	0	1062	
+
+S 35   3556	*	3398	3822	5854	3949	4945	*	3051	*	6307	4357	*	3461	3964	2758	3554	4876	6496	5662	35
+       12	6932	*	1000	1000	697	1385	7217	1019	1156	
+
+L 36   3072	*	*	*	3761	6864	4969	3143	*	1421	4552	*	*	*	*	6937	5182	2387	*	6553	36
+       12	*	6937	*	*	*	0	7284	0	1003	
+
+N 37   3995	*	3523	6871	4862	4419	6811	5376	3496	3104	6824	2480	*	7268	3505	3723	6827	3331	*	4153	37
+       159	*	3263	*	*	1112	896	7283	0	1114	
+
+N 38   2245	*	3937	3439	*	3784	6709	6018	3332	5638	*	3501	6286	3487	3826	3222	4425	*	*	*	38
+       402	*	2039	*	*	2939	202	7218	0	2042	
+
+A 39   3039	*	6261	4407	4694	4211	6030	4311	4647	3359	3249	5053	5843	4324	5465	3154	3608	4939	*	3833	39
+       657	*	1452	*	*	*	0	6967	0	3491	
+
+A 40   948	4425	*	*	5122	*	*	*	*	*	*	*	5514	*	4910	3810	5455	2368	*	3982	40
+       41	5168	*	3322	152	4866	50	5836	1036	4974	
+
+R 41   4020	*	3237	5053	*	4918	*	5271	1176	*	*	4953	3812	5216	6026	3462	4603	*	*	5444	41
+       0	*	*	*	*	4954	47	5929	0	4871	
+
+T 42   5684	*	3407	*	*	5709	*	*	5215	5023	*	3191	*	*	3702	2496	1269	*	*	5008	42
+       71	4371	*	0	*	5174	41	6016	1138	4776	
+
+T 43   3847	*	*	*	5440	3587	*	5130	2118	*	5091	*	3651	5579	2911	3629	2847	4325	*	4921	43
+       50	6550	5425	0	*	*	0	6263	1000	4695	
+
+A 44   3363	*	3010	3516	5037	3006	5545	4377	3298	5108	*	3954	3027	5303	*	4718	5583	4742	*	5189	44
+       30	*	5609	*	*	3459	138	6039	0	4733	
+
+D 45   3472	*	1205	2707	*	3026	*	5484	4361	4477	*	5340	*	4682	5596	*	*	*	*	*	45
+       0	*	*	*	*	1960	429	6576	0	4510	
+
+R 46   3842	*	4604	*	*	5626	*	6118	3013	*	*	4098	4690	5823	1218	3585	3618	5551	*	*	46
+       41	6063	6239	0	*	603	1550	6943	1033	3750	
+
+R 47   4391	*	3918	3683	*	4640	5240	4136	3491	*	6499	3399	5028	2380	2457	4256	*	4931	*	*	47
+       0	*	*	*	*	300	2415	7214	0	2065	
+
+A 48   2347	*	4354	4291	6691	5630	6386	4883	4482	3137	6812	6180	2021	5093	4601	4721	5818	4285	6128	6872	48
+       0	*	*	*	*	0	*	7287	0	1136	
+
+A 49   2584	*	5304	4428	6507	5368	*	2902	3645	2718	5452	5149	3920	4895	*	4497	4176	3181	*	*	49
+       0	*	*	*	*	*	*	7302	0	0	
+
+C 50   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	50
+       0	*	*	*	*	*	*	7302	0	0	
+
+N 51   6214	*	*	4257	4239	7157	4798	4988	4236	1204	7125	3702	*	4508	3495	4740	6612	4677	5949	*	51
+       28	5689	*	2322	322	*	*	7302	1058	0	
+
+C 52   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	52
+       602	1551	*	1081	923	*	*	7302	3698	0	
+
+L 53   4418	*	*	*	3546	6892	*	2544	6318	1570	3575	*	5689	5967	4434	5038	5339	3760	*	4509	53
+       64	4918	6605	821	1204	*	*	7302	1242	0	
+
+K 54   4248	*	6787	3126	5881	6662	5508	5241	2003	3037	5500	4228	*	4019	4721	4011	3923	4199	*	5665	54
+       58	5853	5519	504	1763	*	0	7287	1107	1063	
+
+N 55   3756	*	3458	4572	4785	3331	5180	6148	3896	5695	7163	3162	*	4125	5105	2598	3867	4035	*	5091	55
+       106	3820	*	921	1084	0	*	7251	1733	1299	
+
+A 56   2333	5882	3829	3551	5992	5507	*	4322	5252	3731	4767	4220	4144	5156	5236	3422	4384	4125	6974	4979	56
+       90	5226	4890	1217	811	*	*	7302	1176	0	
+
+A 57   2036	*	4675	*	5148	3375	6144	4155	6793	2945	3609	7130	4606	6626	6826	4556	3652	3746	*	4733	57
+       218	2834	*	2196	355	0	*	7250	2289	1286	
+
+A 58   2266	*	7286	4418	5680	4027	*	5206	3758	4271	6049	3695	3375	5855	4528	3410	3723	3898	*	5707	58
+       106	4427	5367	1682	539	*	*	7302	1348	0	
+
+G 59   4295	*	4760	5009	6062	3019	7120	6387	3408	5441	6635	4527	3476	3777	2504	2900	4641	4971	*	6948	59
+       76	5893	4861	0	*	*	0	7291	1071	1218	
+
+V 60   3424	5657	6630	*	2440	*	5516	3095	6340	2829	4771	4991	6664	4852	*	3711	4295	3916	*	3403	60
+       410	4937	2220	299	2417	2055	397	7215	1204	1501	
+
+S 61   3062	6020	5706	5004	5302	3502	6481	5541	3194	6486	*	3543	2002	3790	5470	3862	5265	*	*	5458	61
+       858	1899	2471	561	1635	327	2300	7067	2699	3054	
+
+G 62   4241	*	4367	6161	*	1193	4730	*	4287	*	*	3227	3429	5154	5499	3944	5394	5649	*	*	62
+       64	4529	*	1270	773	176	3124	7065	1284	2799	
+
+L 63   5221	*	6869	*	3938	*	*	1625	*	2546	*	*	5800	*	6628	4581	5041	1813	*	5705	63
+       0	*	*	*	*	*	0	7278	0	1300	
+
+N 64   5510	*	2092	6293	*	*	*	5436	3493	4852	*	1614	6170	4595	4244	4132	5141	4562	*	5522	64
+       12	*	6874	*	*	1344	722	7278	0	1300	
+
+A 65   3175	*	4446	4948	3896	4737	6451	5576	5957	2881	4143	5284	2076	6998	5010	6071	5031	3657	*	4680	65
+       0	*	*	*	*	*	0	7285	0	1225	
+
+G 66   3257	*	3161	4513	6659	4588	7028	*	3528	6175	6177	3656	4448	5747	4485	2708	2222	6586	*	*	66
+       0	*	*	2474	286	353	2203	7285	1147	1225	
+
+N 67   3270	*	5935	7227	5149	*	6486	5132	2397	3062	7097	3955	6200	4293	1988	6804	5150	3834	*	*	67
+       0	*	*	*	*	*	0	7299	0	1000	
+
+A 68   845	6706	*	*	4522	6766	*	2831	*	3474	5628	*	*	6924	*	5308	*	3370	*	*	68
+       24	*	5896	*	*	0	*	7299	0	1000	
+
+A 69   2759	*	5921	4646	6769	*	*	3453	4650	2438	3242	5070	6919	3347	4349	3300	5109	4340	*	*	69
+       35	6173	6660	1000	1000	0	*	7234	1036	1062	
+
+S 70   2318	*	4500	3604	*	3491	6715	*	4027	4347	5215	3851	*	2900	6016	3535	3117	5887	*	*	70
+       26	6998	6598	0	*	0	*	7293	1000	1000	
+
+I 71   *	*	*	*	6664	*	*	2274	*	554	4577	*	*	*	*	*	5678	4611	*	*	71
+       0	*	*	0	*	0	*	7287	1063	1063	
+
+P 72   5112	*	*	*	*	5719	*	*	*	5244	*	*	303	5882	5689	3665	*	*	*	*	72
+       0	*	*	*	*	*	*	7302	0	0	
+
+S 73   3425	*	4246	4421	*	2572	6677	5965	2070	6042	*	5340	*	4407	3833	2717	4654	5248	*	*	73
+       0	*	*	*	*	*	*	7302	0	0	
+
+K 74   2946	*	5024	3817	6164	4982	5725	6006	2030	3037	*	4494	*	4850	3100	3996	4775	5217	*	*	74
+       0	*	*	*	*	*	*	7302	0	0	
+
+C 75   *	95	*	5689	*	*	*	*	*	*	6318	*	*	*	*	*	*	*	4982	*	75
+       0	*	*	*	*	*	*	7302	0	0	
+
+G 76   4348	*	6077	*	*	1273	3983	*	3315	*	*	2497	*	4945	3717	4160	*	5882	*	*	76
+       14	*	6724	*	*	*	*	7302	0	0	
+
+V 77   3753	6312	*	7033	5225	*	*	2455	*	1882	5749	5773	6720	*	6858	5700	4647	1724	*	6937	77
+       161	3361	6914	320	2329	0	*	7289	1740	1000	
+
+S 78   4280	*	3481	6298	*	5306	3663	6577	2849	4782	6901	3051	3417	4058	5427	3318	3224	4537	*	*	78
+       36	6785	6025	1000	1000	*	0	7314	1019	1000	
+
+I 79   5398	5511	*	*	3561	*	6113	2694	*	2049	5913	3830	5751	6150	4553	4271	3386	3006	*	5331	79
+       39	5228	*	2494	282	0	*	7281	1152	1129	
+
+P 80   4512	*	5631	*	3982	2985	5760	*	6262	5139	*	4721	1065	*	5250	3125	5079	*	*	*	80
+       163	5293	3624	619	1520	*	*	7154	1124	0	
+
+Y 81   3888	6190	*	*	1482	*	*	5388	5031	3306	6338	6006	3804	*	5666	4660	*	3662	5989	2720	81
+       87	4718	5594	633	1493	0	*	6960	1136	1440	
+
+T 82   6053	*	*	4988	*	4592	*	5814	3103	6612	*	4173	946	5054	*	6318	2903	*	5904	*	82
+       28	5720	*	0	*	933	1070	6646	1023	1148	
+
+I 83   4747	5677	*	*	4003	*	*	985	5883	4111	4417	*	6016	*	*	6418	5635	2578	5700	5635	83
+       0	*	*	*	*	0	*	6572	0	1022	
+
+S 84   4721	*	2662	5221	*	4400	*	3896	5470	*	*	3600	4876	*	5713	1529	2984	*	*	4977	84
+       155	5472	3657	0	*	*	*	6624	1024	0	
+
+T 85   4308	*	4504	4127	*	5107	4245	*	*	4155	*	5447	1459	4098	3831	4551	3607	3830	*	*	85
+       0	*	*	*	*	*	0	6093	0	1267	
+
+S 86   4410	*	3139	*	*	4167	4924	*	3219	*	*	1982	5689	5846	5326	2186	4409	4933	5109	*	86
+       0	*	*	*	*	*	0	6093	0	1267	
+
+T 87   5466	*	*	*	2490	*	4983	2683	5109	*	3031	4434	*	*	*	*	1784	3385	*	5137	87
+       142	3415	*	717	1353	0	*	6093	1351	1267	
+
+D 88   *	*	608	*	*	*	*	*	5728	5191	5613	2790	5043	5466	*	5276	4218	*	*	*	88
+       64	4528	*	2256	339	*	*	6221	1119	0	
+
+C 89   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	89
+       0	*	*	*	*	*	*	6221	0	0	
+
+S 90   *	5201	2993	4760	*	*	*	*	4549	4907	*	2648	5584	*	5191	1171	3601	*	*	*	90
+       0	*	*	*	*	*	*	5961	0	0	
+
+R 91   *	*	*	*	4154	*	*	4874	1748	*	*	4403	*	4078	3400	2852	1876	*	*	*	91
+       148	3720	5537	2191	357	*	*	5905	1233	0	
+
+V 92   5153	*	*	*	5230	*	*	995	*	2982	*	*	*	*	*	*	*	1658	*	*	92
+       70	4397	*	0	*	0	*	5711	1078	1000	
+
+N 93   5115	*	*	*	*	5007	4164	*	2024	4992	*	3232	2564	2572	*	2940	4925	*	*	*	93
+       0	*	*	0	*	*	*	5395	0	0	
+
+//
+�HHsearch 1.5
+NAME  f82cb3c7c161ae904b70948cfd869920
+FAM   
+FILE  f82cb3c7c161ae904b70948cfd869920
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:49:08 2013
+LENG  144 match states, 144 columns in multiple alignment
+FILT  138 out of 1115 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.7 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCEEECCEEECCCCCHHHHHHHHHCCCCEEEECCCCCCCCCCCCCCEEEEEEECCCCCCCCHHHHHHHHHHHHHHHHHCCCEEEEECCCCCCHHHHH
+HHHHHHHHHCCCHHHHHHHHHHHCCCCCCCHHHHHHHHHHHHHC
+>ss_conf PSIPRED confidence values
+9987350688678787455419999987997999899888632234687279996357888765899999999999999746998999879999759999
+99999999098999999999987886688999999999999739
+>Consensus
+xxxpxxIxxxlyxgxxxxxxxxxxlxxxgixxvixlxxxxxxxxxxxxxxxxxxixxxdxxxxxxxxxxxxxxxxixxxxxxxxxvlvHCxxGxxRsxxx
+xxxylxxxxxxxxxxaxxxvxxxrpxxxxxxxxxxxLxxxxxxl
+>f82cb3c7c161ae904b70948cfd869920
+ASFPVEILPFLYLGCAKDSTNLDVLEEFGIKYILNVTPNLPNLFENAGEFKYKQIPISDHWSQNLSQFFPEAISFIDEARGKNCGVLVHSLAGISRSVTV
+TVAYLMQKLNLSMNDAYDIVKMKKSNISPNFNFMGQLLDFERTL
+>gi|163744309|ref|ZP_02151669.1| hypothetical protein OIHEL45_01960 [Oceanibulbus indolifex HEL-45]gi|161381127|gb|EDQ05536.1| hypothetical protein OIHEL45_01960 [Oceanibulbus indolifex HEL-45]
+-----TIDPTHNVALfTPDAKALEQAASAGMKTVINFRAADEKGGLSpdEErlvaeklGLNYLHHPVTPDTLGP-----ETVDEFRRSLDDLPQPVFLHC
+ASGK-RAGAMTLMALAADKGWDGDTALQEGKTRGID-LTEEKIGQFVKSYADR-
+>gi|335298243|ref|XP_003131846.2| PREDICTED: protein phosphatase Slingshot homolog 2, partial [Sus scrofa]
+-------------------------------------------------------------------------------eklSEHNHAFSFLC-------
+FRRLLLFSQRAAQAGSTHAISSTTPHAASTR---GYERRAWAFPVCV
+>gi|167646706|ref|YP_001684369.1| hypothetical protein Caul_2744 [Caulobacter sp. K31]gi|167349136|gb|ABZ71871.1| conserved hypothetical protein [Caulobacter sp. K31]
+---------mTLLVCPL--SQVETARTLHRPSHLVSLLSPtsaakaWPEADAN---ETCLRLAFHDVVEAregltpPDAALVARLLDFAARWDAAQ-PLL
+VHCWAGVSRStAAAFIIACQYAPERPERHIAQALRAAAPYATPNPLMVS---------
+>gi|302819053|ref|XP_002991198.1| hypothetical protein SELMODRAFT_161459 [Selaginella moellendorffii]gi|300141026|gb|EFJ07742.1| hypothetical protein SELMODRAFT_161459 [Selaginella moellendorffii]
+------VEYDLTRSGVVHQLNFPFLERLNLRTVLYLSQDEPSqqflSFLDEQGIHFrrTHQSsSTt-AAETTGSLSEAQVLSALEVILRpENYPLHVMCK
+QGRNTTGTV-IGCLRKLQRWNLTSIFE--------------------------
+>gi|257215044|emb|CAZ68050.1| protein-tyrosine phosphatase alpha [Danio rerio]
+-------------GNIRVSvEDTMILVDYTIRKFCIQQVGDvsgkKPQRLV---TQFHFTSWPDFGVPFTPIGMLKFLKKVKNCNPQyAGPIVVHCSAGV
+GRTGTFIVIDAMLDMMGAerKVDVFGFVTRIRAQ------------------
+>gi|170115154|ref|XP_001888772.1| predicted protein [Laccaria bicolor S238N-H82]gi|164636248|gb|EDR00545.1| predicted protein [Laccaria bicolor S238N-H82]
+----------------------------ta-YIVLTss--HTTPRnnvnc---------LYIPLHHERKkkGDTpy--lfTTILPSSLAFIKSRlr--LL
+TvkSVCIaipk--ndSDARDVAVGIMLVVLQLLFddhgelldgasvqlpatKQTIRTRLEWVIASVPDVNPSRTMLKRVNEF----
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+A 1    1513	*	*	*	*	*	*	*	*	*	1072	*	2524	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	3763	0	0	
+
+S 2    *	*	*	*	*	*	*	*	*	*	3019	3217	*	*	*	630	3022	*	*	*	2
+       0	*	*	0	*	*	*	4672	1042	0	
+
+F 3    *	*	4973	4566	2380	*	4337	*	*	2640	*	4580	*	5168	3406	*	4609	*	2978	2380	3
+       0	*	*	*	*	*	*	7060	0	0	
+
+P 4    2482	*	*	*	*	*	5203	*	*	*	5193	*	558	*	*	5086	*	4105	*	*	4
+       0	*	*	*	*	*	*	7982	0	0	
+
+V 5    4521	4840	3211	6174	*	5991	5320	3462	4183	*	*	4281	*	3911	4942	2110	3008	3683	*	5109	5
+       0	*	*	*	*	*	*	8984	0	0	
+
+E 6    4715	*	*	2111	*	6352	5613	6426	2872	6680	6323	4048	4401	2441	3084	4700	3860	*	6629	*	6
+       0	*	*	*	*	*	*	9434	0	0	
+
+I 7    6153	*	*	*	6390	4836	*	1159	6700	3408	6750	6566	*	6322	*	*	6522	1539	*	*	7
+       17	6423	*	0	*	*	*	9518	1063	0	
+
+L 8    3993	7176	3422	3618	5011	4510	6435	3257	3356	2558	5740	5769	*	5012	6722	4593	3127	4653	6285	6506	8
+       0	*	*	*	*	*	*	9525	0	0	
+
+P 9    4964	5857	2215	2453	6559	4942	6749	*	4845	*	6392	4419	1769	4721	5511	5622	5398	6696	*	*	9
+       0	*	*	*	*	*	*	9526	0	0	
+
+F 10   6739	*	4286	5569	4644	1847	5870	*	5058	6931	*	2874	*	4563	3829	2981	4602	5523	5439	3584	10
+       249	2660	*	368	2150	*	*	9517	3220	0	
+
+L 11   5636	6282	*	*	5052	*	*	2330	6718	1192	3781	*	6516	5891	*	*	5532	2768	6461	6564	11
+       16	6516	*	1000	1000	*	*	9530	1063	0	
+
+Y 12   4513	*	*	*	2741	*	6744	5987	*	4057	6590	*	*	6277	*	5156	5187	5322	2420	1215	12
+       0	*	*	*	*	*	*	9630	0	0	
+
+L 13   5664	5634	*	*	5721	5850	*	2356	*	1885	5058	*	6488	5343	2977	5352	5751	2434	5381	6290	13
+       0	*	*	*	*	*	*	9620	0	0	
+
+G 14   3245	4949	*	*	*	677	*	*	*	6909	6663	5085	6057	6374	*	2887	5892	*	*	6635	14
+       35	5363	*	1403	685	*	*	9715	1241	0	
+
+C 15   3335	5979	3829	5272	*	2337	5927	*	5344	6576	6881	3313	2654	6592	4994	2671	3784	*	*	*	15
+       12	6916	*	0	*	*	*	9760	1004	0	
+
+A 16   3691	5399	6684	4676	3573	6632	5237	3742	4607	3532	4315	4641	5835	3208	3886	6979	5558	3795	4986	3174	16
+       157	3401	6841	820	1205	*	*	9760	2440	0	
+
+K 17   4084	*	3903	4067	5182	5783	*	3282	4292	4056	5680	4380	2130	4545	4624	3534	5367	5554	6839	4840	17
+       41	6725	5768	2000	415	1111	897	9751	1000	1142	
+
+D 18   2776	6909	2852	4371	5583	5245	4879	4969	7265	3886	5423	3895	7070	5783	5281	3108	3337	3381	*	5730	18
+       52	5934	5721	0	*	1699	531	9910	1143	1362	
+
+S 19   2287	5074	4522	3309	5933	5332	5686	4145	4471	3074	*	6864	3181	6216	5940	4054	5000	3758	6928	5813	19
+       63	4543	*	0	*	988	1012	9893	1577	1550	
+
+T 20   3307	*	4025	2463	5972	5045	*	5224	3191	4912	5719	4513	6921	4271	3401	3388	4395	4058	*	5647	20
+       45	7461	5336	1585	585	975	1026	10014	1000	1198	
+
+N 21   4730	6794	1981	3466	*	4257	4938	6026	4255	4918	*	2835	*	3969	3962	3122	5395	6816	6948	*	21
+       43	*	5076	*	*	1076	928	10011	0	1536	
+
+L 22   4202	6922	5050	4475	3823	6588	5901	3674	4821	2374	5635	5560	4362	4660	3954	4758	3945	3170	5455	5155	22
+       90	4395	6301	1819	481	850	1168	10024	1819	1814	
+
+D 23   2621	*	4247	2647	*	4683	6859	6540	2999	4007	*	5545	4292	3839	4257	3348	4366	5584	*	5846	23
+       11	*	7023	*	*	*	0	10052	0	1562	
+
+V 24   4354	6274	4314	3521	2946	5918	5329	4435	5192	3254	6134	5903	4746	3414	3967	4495	3857	4423	6142	4290	24
+       39	5906	6668	2023	407	1654	552	9999	1168	1699	
+
+L 25   4459	*	4430	6039	4382	5691	6694	3311	*	897	5379	*	6846	5886	6872	5916	5134	4754	6577	5184	25
+       20	6198	*	580	1595	337	2263	9986	1109	1627	
+
+E 26   3184	5180	4610	3332	*	4622	6280	5691	2283	3894	7092	5147	5678	4010	3324	3778	4731	5286	6723	6163	26
+       26	5789	*	0	*	0	*	9999	1182	1008	
+
+E 27   3001	*	2982	3377	*	4118	4999	7041	4417	5595	7038	3678	5025	3647	3419	3043	3942	6355	*	*	27
+       59	5957	5370	1518	620	*	*	10007	1198	0	
+
+F 28   3217	6059	4871	4071	5056	6386	4049	5386	3987	2093	6004	3651	5941	4637	4315	4675	7012	4763	7317	3875	28
+       24	7012	6808	0	*	1706	528	9971	1000	1299	
+
+G 29   5388	*	4273	6323	*	1025	7040	6798	4138	5809	*	2451	7024	4129	4917	6750	5507	6629	*	7187	29
+       0	*	*	*	*	0	*	9983	0	1321	
+
+I 30   4883	*	*	7109	3518	6877	5990	1118	*	3869	6913	6872	*	*	5821	*	*	1915	6711	6800	30
+       0	*	*	*	*	*	*	10032	0	0	
+
+K 31   4406	5933	3790	5279	7050	4278	6042	5946	2591	*	*	5550	7109	4056	2579	3656	2182	7019	6605	6908	31
+       0	*	*	*	*	*	*	10032	0	0	
+
+Y 32   2913	5395	4692	7018	5864	4688	2527	6037	*	3343	5172	4963	*	5089	4065	3359	3127	4053	7019	5321	32
+       0	*	*	*	*	*	*	10032	0	0	
+
+I 33   *	6711	5307	*	4499	*	*	1547	6718	2994	4720	*	*	5865	*	*	6002	1423	*	*	33
+       0	*	*	*	*	*	*	10032	0	0	
+
+L 34   *	5051	*	5487	3724	*	5755	1705	6447	1692	*	*	*	*	*	6727	*	2377	*	5395	34
+       20	6164	*	2127	375	*	*	10032	1116	0	
+
+N 35   5498	4263	2188	6834	6727	*	6942	5768	*	4812	*	1864	*	6870	5022	2397	4276	4021	6790	*	35
+       0	*	*	*	*	*	*	10032	0	0	
+
+V 36   5317	3313	*	*	4007	*	6623	3090	6661	1239	4778	5317	*	6363	*	*	6447	2840	6605	5958	36
+       58	4662	*	1479	641	*	*	10032	1543	0	
+
+T 37   3576	3324	4542	6967	6800	3478	5861	6442	5258	5426	7404	5248	6082	3722	2544	2698	3352	4872	*	6939	37
+       54	4772	*	1902	449	*	*	10032	1508	0	
+
+P 38   3350	5126	4388	2679	7627	4008	4821	7342	5025	6819	5901	3745	3444	5054	3935	2973	4200	4820	*	5308	38
+       46	5283	7404	1439	664	*	*	10032	1369	0	
+
+N 39   5135	6791	3085	1852	*	4667	6061	*	4973	6891	7011	4357	3547	4519	4501	3419	3608	4397	6927	6368	39
+       345	2301	6701	2473	287	0	*	10006	4237	1000	
+
+L 40   5031	4211	3637	3450	7307	3966	*	5443	5179	2675	7497	5241	4253	4142	4189	3365	3920	4083	6939	4647	40
+       287	2748	4987	1761	504	0	*	10025	3483	1141	
+
+P 41   4961	*	3514	2835	7144	4001	6036	5689	4318	5750	5596	4899	1545	5076	5985	4294	4900	5889	6682	6152	41
+       146	3574	6377	3780	109	2163	365	9959	2311	1445	
+
+N 42   3570	6613	3562	3061	6783	4238	5536	5491	4551	4233	6734	3851	3486	4451	3374	3660	4228	4449	6495	*	42
+       154	3526	6106	1745	511	511	1745	9962	2551	1779	
+
+L 43   4104	*	4887	2749	4594	4031	4506	4134	3176	4399	6984	4086	4720	6040	4263	4856	4668	3968	6012	3787	43
+       95	4122	7376	2275	334	0	*	10028	2016	1421	
+
+F 44   3796	5211	5193	4946	2869	5730	*	3446	4906	2631	6650	7030	4466	5293	6305	4050	4972	4057	4645	3241	44
+       56	5097	6791	978	1022	*	0	10000	1448	1037	
+
+E 45   3990	5809	4347	3247	5025	5407	5173	4855	3774	4205	5819	5673	3008	3526	5457	4559	3498	3731	6921	4829	45
+       118	5139	4318	3407	143	847	1172	9987	1409	1280	
+
+N 46   4217	*	3777	2919	6984	3718	5357	4576	3253	4373	5447	5261	4348	4095	3641	3661	5905	3506	6720	7033	46
+       441	3501	2514	2141	371	*	0	9958	2490	2053	
+
+A 47   3490	*	4566	3514	5033	3241	4407	4220	5280	4361	5627	4226	3903	6566	4413	3200	4049	4562	5387	4786	47
+       229	5083	3089	2219	349	2102	383	9708	1260	4501	
+
+G 48   3444	*	5591	3027	5382	2514	3266	5612	3647	4688	6645	5918	3606	3988	5597	4912	3848	*	*	5180	48
+       602	3732	1912	2885	210	1033	968	9727	2108	4991	
+
+E 49   4564	*	3573	4315	*	1746	4616	*	4402	4820	*	3218	4357	4310	4389	3588	4939	5622	*	6448	49
+       62	6579	4994	1804	487	28	5717	9537	1116	5817	
+
+F 50   5429	4937	5245	5062	3230	6524	4839	2151	*	2706	4531	5495	7012	5993	4246	*	5514	2809	6391	4679	50
+       41	5146	*	1446	660	1275	769	9994	1422	1417	
+
+K 51   3400	*	4155	3109	*	*	3924	4754	3751	4647	7175	3870	*	2896	2922	3629	4045	4914	*	*	51
+       24	5898	*	4624	60	680	1413	10063	1207	1182	
+
+Y 52   7422	5156	6541	5890	4549	6583	3266	4139	5998	3704	5897	5104	6795	7078	4262	6223	5635	3615	4723	1454	52
+       12	6860	*	1585	585	*	0	10077	1010	1000	
+
+K 53   4986	5233	6051	5660	4729	*	2816	3343	4035	2131	5353	*	*	4281	4413	4806	4151	4140	*	3881	53
+       31	*	5562	*	*	*	0	10022	0	1000	
+
+Q 54   4789	5392	6119	5085	4365	4017	2499	6440	4302	6724	5279	3581	*	4650	3421	3690	4337	3757	4833	4089	54
+       0	*	*	*	*	*	0	10000	0	1396	
+
+I 55   4987	5199	*	6460	3469	*	4352	1979	*	2183	7010	*	6440	*	*	5304	5397	2327	6094	4860	55
+       42	5121	*	2760	230	376	2124	10000	1432	1396	
+
+P 56   4098	*	2937	4140	7194	4029	5599	5803	5838	6618	7059	4198	1349	7818	4768	3998	4916	5875	6429	*	56
+       43	5902	6283	2585	263	*	0	10022	1163	1000	
+
+I 57   4308	6119	5862	*	4447	*	*	2205	7032	2440	4689	*	5393	*	*	*	4426	2462	2906	4675	57
+       72	5531	5211	3652	120	1602	576	10017	1260	1251	
+
+S 58   4092	*	2875	4097	5532	5386	5400	5082	4784	3564	6826	4697	2632	4447	4082	4217	3536	4558	5466	6908	58
+       77	5426	5126	1077	927	1457	654	10167	1588	1871	
+
+D 59   5428	6655	881	3623	6753	3514	5741	5710	6875	5446	*	4215	4060	*	6676	5147	6845	*	*	5959	59
+       91	5474	4703	1120	889	1490	635	10117	1240	2090	
+
+H 60   4155	6961	3616	4502	4213	3571	3128	4232	5281	4567	5059	4003	5672	4986	5204	3371	4070	4545	4172	6454	60
+       71	4388	*	877	1134	1709	527	9937	1847	2443	
+
+W 61   4429	7035	3101	3736	*	2764	5450	6259	4122	5451	*	3627	3056	5032	5082	3845	3661	4762	7452	4700	61
+       73	5097	5641	1564	596	1149	865	10018	1414	1982	
+
+S 62   2866	5952	3256	3908	5586	4013	6820	4801	4887	4284	7374	3779	3395	6134	5028	3706	4398	3060	*	*	62
+       58	4985	6951	2547	271	1971	425	10025	1556	1924	
+
+Q 63   3460	6874	3817	2792	4293	4951	4785	4972	5326	4735	7098	4505	2020	4197	5545	5924	5352	4570	*	6118	63
+       77	4264	*	2713	239	312	2364	9975	1807	1786	
+
+N 64   3448	7049	2112	3245	5996	4530	5068	6008	5497	7304	*	3913	3755	4650	4403	3152	4217	5029	*	7183	64
+       104	6318	4134	1302	751	*	0	10010	1126	1030	
+
+L 65   4378	7228	4028	4760	4735	5899	5661	2910	6864	1856	5535	4439	4312	6070	5369	3706	3807	4826	*	6079	65
+       42	5508	7228	1000	1000	*	0	9960	1271	2306	
+
+S 66   3413	5567	3572	3379	3505	6360	6155	3893	5272	3463	5007	5211	3833	5307	4455	3327	4773	4672	*	4962	66
+       122	3749	7233	2113	379	2130	374	9940	2395	2491	
+
+Q 67   3552	5749	3410	3104	5492	5446	7209	6011	3703	4526	6116	3484	3774	3196	3949	3811	4887	6008	6873	5766	67
+       163	4561	3952	2163	364	*	0	9967	1655	2273	
+
+F 68   3396	5397	4139	4144	5016	5508	3426	3644	4320	3843	5129	4288	5193	4670	4680	4111	4819	3837	5548	4258	68
+       233	4960	3094	2064	394	887	1123	9948	1410	3413	
+
+F 69   *	6919	5676	6705	2021	6885	5913	3235	5257	1796	4413	*	6500	*	6781	6748	*	2956	4233	6322	69
+       61	*	4598	*	*	399	2049	9896	0	3874	
+
+P 70   4246	7157	3034	2445	6931	5841	5983	4888	3913	3584	5873	3963	3392	4902	3627	4807	5238	4959	7351	5781	70
+       22	*	6060	*	*	121	3632	9970	0	2324	
+
+E 71   3503	*	3363	2857	4394	4992	5350	4645	3312	5937	5142	4573	6255	3432	3253	4902	4181	5485	6876	5998	71
+       0	*	*	*	*	0	*	10004	0	1233	
+
+A 72   2019	4260	7033	6972	3567	6228	7109	2774	*	2545	6943	*	6035	*	6938	4472	4586	2910	7357	7504	72
+       66	4794	6829	2028	406	*	*	10017	1480	0	
+
+I 73   3301	4139	6174	4923	4385	*	5358	3252	5420	2838	4770	4212	6983	6931	6032	4439	4707	2339	*	4306	73
+       64	4534	*	2304	327	*	0	10003	1594	1086	
+
+S 74   2828	*	2996	2672	7138	5658	6793	7225	2986	5021	5330	3849	*	3827	3026	4392	5171	*	*	6120	74
+       12	6950	*	3322	152	*	0	10003	1000	1086	
+
+F 75   4079	6752	5752	5528	1559	7555	6288	4084	5541	2637	5384	*	*	3974	4360	4221	6043	4473	5213	6008	75
+       0	*	*	*	*	*	0	10003	0	1086	
+
+I 76   3280	6704	6919	*	4432	7005	7105	1665	7031	2232	3273	*	*	6950	6182	7195	5881	3149	6188	7272	76
+       21	6079	*	0	*	*	0	10003	1159	1086	
+
+D 77   3682	*	3111	2757	*	4913	3674	4098	4017	3560	*	3739	7061	4049	2982	7477	5300	5466	*	5721	77
+       9	*	7348	*	*	0	*	9998	0	1281	
+
+E 78   4287	*	2846	3170	6470	6409	4079	5107	3517	3674	6097	3756	6213	3914	3091	4331	5280	4881	5841	6794	78
+       48	6049	5827	1258	781	0	*	10059	1384	1055	
+
+A 79   2235	4470	5913	4033	3934	5396	4947	4317	4706	2930	6859	3756	7040	5767	7392	5021	4017	3660	5199	6651	79
+       76	5270	5301	2032	404	1123	886	9978	1701	1203	
+
+R 80   3520	*	5055	4334	7224	*	6966	3091	3852	2116	7080	5424	5623	4426	3060	4468	5980	4183	6371	4172	80
+       143	3803	5447	4275	77	656	1453	9990	2147	1765	
+
+G 81   3521	*	3148	2927	*	4386	5012	7101	3815	4201	*	3564	4919	3212	3437	3617	4997	5612	*	7411	81
+       108	4930	4670	3022	190	1548	604	9975	1635	1811	
+
+K 82   3808	5583	4300	2935	*	4861	6393	5086	3375	4252	5852	2911	5409	3755	3370	3365	4305	*	*	6726	82
+       201	3143	5897	1154	861	221	2816	9859	3098	2158	
+
+N 83   4478	*	3535	3916	*	1587	5124	6436	4052	*	6784	2658	3999	5363	4882	4304	5595	*	*	6686	83
+       126	5264	4123	1781	496	510	1748	9982	1340	1491	
+
+C 84   4757	5977	5211	3316	7005	1981	4675	*	2444	5567	7404	5930	4353	4692	3189	4504	*	5785	*	4937	84
+       43	5104	*	2260	338	737	1322	9869	1373	2122	
+
+G 85   3959	6103	5360	*	*	4451	7058	6063	2724	7087	*	3578	1987	5759	2649	3928	4323	4629	*	*	85
+       47	5466	6760	1381	699	1878	458	9968	1347	1373	
+
+V 86   4071	5087	*	*	5235	*	*	2344	*	2991	7147	*	5565	*	*	7066	3956	1142	*	6842	86
+       14	6729	*	1585	585	*	0	9960	1037	1469	
+
+L 87   4834	*	*	*	3951	6084	5892	4161	6064	1003	*	*	*	*	*	6102	6431	2795	*	2958	87
+       0	*	*	*	*	1708	527	9960	0	1469	
+
+V 88   4030	6685	6067	*	4383	*	6850	1944	*	3926	5043	*	*	5983	*	*	5649	1102	*	*	88
+       0	*	*	*	*	1169	849	9989	0	1280	
+
+H 89   5954	4104	*	*	3969	*	570	*	*	5213	*	5944	*	6958	6773	4583	5713	5282	*	4602	89
+       14	6699	*	0	*	*	0	10015	1008	1086	
+
+S 90   *	253	5057	*	*	7064	*	*	*	6075	*	7086	6470	*	*	3785	*	*	5842	*	90
+       28	*	5707	*	*	*	0	10015	0	1086	
+
+L 91   3077	*	5106	4541	6196	5366	5120	5940	3263	5866	7201	5125	6298	3474	2920	3397	2955	4027	6048	4848	91
+       0	*	*	0	*	1111	897	10031	1055	1804	
+
+A 92   1935	7099	3916	5982	6991	3067	3795	6451	5574	4305	4366	4341	*	5369	6014	3127	3877	5358	*	5481	92
+       57	5339	6144	3125	176	*	0	10181	1251	1369	
+
+G 93   5455	6791	6851	7033	*	227	*	*	6648	7172	*	5582	*	*	6747	4306	*	*	*	*	93
+       13	*	6846	*	*	1079	925	10170	0	1659	
+
+I 94   4075	6093	*	5035	4554	5612	5435	2807	3166	3091	4798	5478	*	4669	3242	4920	4973	2992	6761	4856	94
+       69	*	4428	*	*	1075	928	10175	0	1441	
+
+S 95   *	6742	2677	6106	5683	1934	5285	6816	6317	5277	7021	2811	5098	5154	5113	2347	4933	*	*	*	95
+       0	*	*	*	*	386	2089	10140	0	2136	
+
+R 96   5027	*	*	6929	6978	6727	5766	5362	6535	4814	*	7353	5896	*	375	7191	5978	6856	5096	*	96
+       0	*	*	*	*	*	0	10184	0	1160	
+
+S 97   2872	5280	6500	*	6105	5113	*	5633	*	6991	*	6884	6824	*	5996	1111	2045	5872	*	*	97
+       20	6154	*	538	1683	0	*	10184	1136	1160	
+
+V 98   2612	5295	*	*	5151	1387	*	6029	*	5250	*	6894	2957	*	*	4221	4448	3380	5753	7006	98
+       58	*	4675	*	*	*	*	10204	0	0	
+
+T 99   2506	3685	*	*	4295	4642	*	3958	*	3165	4694	6662	7127	5928	7295	3765	1959	4006	*	6972	99
+       22	7065	6979	2322	322	0	*	10102	1000	1575	
+
+V 100  4137	4501	*	*	3461	5294	*	3001	6865	2447	3819	*	*	*	7433	5680	4449	1745	7182	5751	100
+       0	*	*	*	*	0	*	10182	0	1000	
+
+T 101  2455	3498	*	6682	5279	4639	*	2614	*	3448	5405	6879	*	*	6157	4820	3353	2309	5853	*	101
+       18	7284	7316	0	*	*	*	10190	1000	0	
+
+V 102  1798	3725	*	*	6033	5816	*	2688	*	2612	3909	*	*	*	*	4149	3967	3952	6031	5772	102
+       0	*	*	*	*	0	*	10116	0	1000	
+
+A 103  1360	3577	*	5365	6487	4368	6804	4829	*	2591	4901	*	*	5239	4673	3974	7052	4777	5869	6826	103
+       23	*	5958	*	*	*	*	10093	0	0	
+
+Y 104  4753	5218	6510	*	4109	6417	5201	4208	*	3331	5856	*	*	6824	6774	5439	4404	4171	4229	1119	104
+       10	*	7176	*	*	0	*	10086	0	1121	
+
+L 105  5410	4987	6627	*	4080	6421	7023	3512	*	1243	3203	4781	*	5237	4680	5693	5652	3839	*	5231	105
+       17	6421	*	1000	1000	0	*	10104	1086	1000	
+
+M 106  3290	4594	*	5798	5536	7189	5942	2980	6866	2928	1945	7032	*	4962	5183	5590	4090	3239	7257	6953	106
+       136	*	3471	*	*	*	*	10099	0	0	
+
+Q 107  3722	*	4677	4376	5017	*	4781	4051	3278	3072	5697	4467	6461	4103	3571	3779	4956	3747	4622	4348	107
+       81	5902	4714	1512	623	158	3266	9907	1186	2595	
+
+K 108  3056	5368	4577	3621	4884	5858	4879	4582	3253	3331	5828	5672	6351	4256	4125	3929	4310	3804	*	4199	108
+       149	3764	5347	840	1180	679	1413	10070	2249	1699	
+
+L 109  5417	4861	5313	3537	4128	4078	4931	5283	3320	2628	4995	4552	5892	3934	2963	6327	6414	*	*	3551	109
+       48	4935	*	3464	137	1509	624	10018	1444	1620	
+
+N 110  4885	7078	4095	4690	5172	1389	5690	6199	3618	5318	7368	2774	*	4890	3691	5356	*	6981	6987	6834	110
+       36	5333	*	640	1480	1394	691	10018	1295	1353	
+
+L 111  3769	5032	6384	5433	4422	*	6871	4350	4219	2262	3216	6986	4817	5389	5155	*	5571	3546	3171	3757	111
+       42	5118	*	0	*	454	1889	10033	1602	1333	
+
+S 112  5285	5780	2651	3569	*	4341	5930	6972	3904	6205	*	3812	2840	5361	5821	2524	2923	*	*	*	112
+       56	4705	*	3333	151	*	0	10076	1461	1000	
+
+M 113  2584	6863	5338	4458	4086	5486	6889	5599	4792	2205	4776	*	3249	5726	3867	5011	5858	3678	5813	5796	113
+       0	*	*	*	*	*	0	10076	0	1000	
+
+N 114  4243	*	2815	2046	6982	5364	6003	5076	3950	4861	7262	4108	4125	4247	3892	4018	6071	4711	7023	5508	114
+       14	6682	*	0	*	*	0	10076	1063	1000	
+
+D 115  3413	*	2532	2137	*	6219	7028	5381	3818	5358	*	5193	6579	3051	4190	4622	3608	6086	*	6066	115
+       0	*	*	*	*	*	0	10076	0	1000	
+
+A 116  822	7279	*	6401	*	5278	6738	3709	*	4430	6224	*	6455	*	5779	3792	4510	3475	6785	*	116
+       0	*	*	*	*	0	*	10076	0	1000	
+
+Y 117  4191	7192	7007	5002	3418	*	6875	2743	7181	1731	4516	*	*	6403	4648	4985	*	3094	5764	3691	117
+       36	5346	*	0	*	*	*	10075	1294	0	
+
+D 118  2542	6625	3104	2501	6830	6603	4695	*	3054	5045	*	4949	*	3863	3915	4427	4558	5783	6874	4885	118
+       27	6660	6813	3322	152	*	*	10075	1038	0	
+
+I 119  4298	*	5697	3565	3318	*	3401	3716	4815	2494	4629	5023	*	4885	5326	4807	6166	4636	*	2820	119
+       0	*	*	*	*	*	0	9945	0	1178	
+
+V 120  4428	5289	*	*	3772	5224	*	2600	*	1993	5060	*	*	*	6923	6373	5904	1626	*	5581	120
+       0	*	*	*	*	*	0	9945	0	1178	
+
+K 121  4339	5605	*	3737	6762	5732	5488	*	2482	4031	5104	5276	*	3212	1579	5594	4432	*	*	*	121
+       0	*	*	*	*	1265	776	9894	0	1178	
+
+M 122  3353	6796	4531	2872	6476	4393	*	5318	3088	5136	5387	4420	6838	3662	3628	2828	4360	4836	*	5675	122
+       16	6516	*	1000	1000	*	0	9900	1023	1038	
+
+K 123  2814	6638	6234	*	4257	5633	4455	3448	3344	3303	*	5727	6321	4000	2907	5730	5285	3145	*	4638	123
+       57	5823	5546	1435	666	*	0	9864	1138	1038	
+
+K 124  5003	6620	*	5721	6467	4238	3560	6573	4265	5818	6787	5481	6274	5665	798	6518	6730	5452	*	5165	124
+       81	5053	5337	3111	177	1236	797	9817	1322	1412	
+
+S 125  4112	*	5772	4748	3554	5058	6434	6835	5139	4926	*	6143	1073	5647	5726	3419	5146	5668	6864	6440	125
+       107	*	3809	*	*	1366	708	9824	0	1610	
+
+N 126  5036	3553	3489	4996	3873	3411	4900	6312	5751	4743	*	3207	5474	3134	3829	4346	5173	4865	6300	4042	126
+       74	4696	6472	1181	839	445	1913	9795	1370	2367	
+
+I 127  2581	5557	*	*	4372	5579	5290	2520	6165	2969	5496	*	6368	5482	4971	4520	4552	2198	*	6906	127
+       53	4788	*	1555	600	0	*	9735	1362	1428	
+
+S 128  3711	5531	4355	3762	*	6791	4946	3931	3824	3496	6384	3451	*	3739	3326	3051	3946	4335	*	*	128
+       31	6477	6676	0	*	*	*	9723	1016	0	
+
+P 129  3875	6488	*	3812	5565	6239	*	3228	4672	3260	5392	6632	1508	5044	5607	5570	5324	3750	*	6954	129
+       34	5408	*	0	*	*	0	9705	1190	1160	
+
+N 130  4223	*	4387	4942	*	5235	3932	5449	3456	6609	*	1594	4929	*	3564	3064	3870	6239	*	*	130
+       0	*	*	*	*	*	0	9705	0	1160	
+
+F 131  3625	*	3748	2787	6766	4912	6199	3976	4095	3399	6468	*	2453	4745	4041	5090	4645	5006	*	4865	131
+       0	*	*	*	*	0	*	9628	0	1160	
+
+N 132  5801	6291	4794	4172	6332	2062	4415	*	4217	4382	*	3979	4928	3821	3586	3016	5001	5277	4764	6721	132
+       36	*	5333	*	*	*	*	9663	0	0	
+
+F 133  4615	6097	*	*	1658	6406	4122	4959	*	2907	3695	4720	6178	3200	6002	6504	6282	4704	6206	3969	133
+       17	*	6453	*	*	1124	886	9633	0	1157	
+
+M 134  5245	*	*	4113	4835	6321	6394	3591	4059	2235	3310	*	*	4254	3133	6495	6193	3475	4603	3681	134
+       0	*	*	*	*	845	1174	9603	0	1148	
+
+G 135  3886	*	4025	2934	6359	4292	5538	5440	2848	5419	6403	3739	5135	3648	2541	6094	4705	*	*	4312	135
+       19	6273	*	2000	415	*	0	9624	1016	1000	
+
+Q 136  3899	*	5873	4690	3882	5233	5382	6146	4227	4763	5212	5031	*	1888	4708	3474	4776	4215	4172	4248	136
+       65	4504	*	2027	406	*	0	9317	1397	1000	
+
+L 137  4426	*	*	4673	6253	*	*	4187	*	527	*	5859	*	*	5941	*	*	3073	*	*	137
+       0	*	*	*	*	0	*	9271	0	1000	
+
+L 138  3153	*	4354	2917	5985	6157	6240	6467	4159	2975	4514	6330	*	2891	3093	4553	*	4249	5320	4630	138
+       28	5711	*	0	*	*	*	9307	1054	0	
+
+D 139  3004	*	3042	2765	5753	5201	*	4726	3242	4614	*	4330	*	3737	3737	3544	4032	6028	*	6069	139
+       0	*	*	*	*	*	*	8977	0	0	
+
+F 140  5787	6288	*	*	2230	*	*	4772	*	3004	5768	5665	5494	*	*	*	*	5142	2439	1636	140
+       0	*	*	*	*	*	*	8939	0	0	
+
+E 141  3472	*	3164	1505	*	4220	*	5530	5365	4723	5143	4568	4439	4740	4161	4617	4726	5646	*	*	141
+       0	*	*	*	*	*	*	8689	0	0	
+
+R 142  3883	*	3761	3786	*	*	*	*	3216	4382	*	3224	*	2748	2295	3240	5378	4616	*	*	142
+       0	*	*	*	*	*	*	8021	0	0	
+
+T 143  5017	5360	4770	4062	*	*	3113	3019	2693	4950	5251	5247	*	3718	3441	2723	4319	*	*	*	143
+       0	*	*	*	*	*	*	7479	0	0	
+
+L 144  *	*	*	*	*	*	*	4246	*	288	*	*	*	*	*	*	4389	3630	*	*	144
+       0	*	*	0	*	*	*	6413	0	0	
+
+//
+�HHsearch 1.5
+NAME  f9eb38ef6943149426b564b15c282045
+FAM   
+FILE  f9eb38ef6943149426b564b15c282045
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:13:29 2013
+LENG  213 match states, 213 columns in multiple alignment
+FILT  215 out of 1347 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.0 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCEEEEEEEECCEEEECCCCCCCCCCCCCCCCHHHHHHHHHHHHCCCCEEECCCCCCCCCCCEECCCHHHHHHHHHHHHHCCCHHHHHHCCEEEEEECC
+CCCCCEEEEEEECCCCCCCCEEEEECCCHHHHHHHHHHHHCCCCEECCCHHHHHHHHHHHHHHHHCCCEEEEEEEEECCCCCCCCCCCCCHHHHHCCCCC
+CEEEEEEEEECCC
+>ss_conf PSIPRED confidence values
+9807999999999998605655667753477747999999999972888774167877543322258989999999999848986785320606899604
+8655579999963657897389998797499998613441389530189999999999999998678869999999856322432122463455301268
+5899999987499
+>Consensus
+xNxMxVxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxllxxxxlcnxaxxxxxxxxxxxxxxxxxGxptExALlxxxxxxxxxxxxxxxxxxxxxxxpF
+xsxrKxmxxvxxxxxxxxxxxxxxxKGApexilxxcxxxxxxgxxxxlxxxxxxxixxxxxxxaxxGlRvLaxAxkxxxxxxxxxxxxxxxxxxxxxexx
+LxflGlvgixDPp
+>f9eb38ef6943149426b564b15c282045
+QNPMTVAHMWFDNQIHEADTTENQSGVSFDKTSATWFALSRIAGLCNRAVFQANQENLPILKRAVAGDASESALLKCIEVCCGSVMEMREKYTKIVEIPF
+NSTNKYQLSIHKNPNASEPKHLLVMKGAPERILDRCSSILLHGKEQPLDEELKDAFQNAYLELGGLGERVLGFCHLLLPDEQFPEGFQFDTDEVNFPVDN
+LCFVGLISMIDPP
+>gi|326426562|gb|EGD72132.1| calcium-transporting ATPase type 2C member 1 [Salpingoeca sp. ATCC 50818]
+ANKMVAKVVYDaaHDIHAQVT------GSGYQFSGrvmlgdrpvsintpaattvaaaaaaTANTSTLPMITITPTATAPA-SAP-------SPSSSAAAA
+AVKTASS-AV-EGAAVAPFASVIEAAVLCNNA--EVhTDGTlIG--QptE-VmarLcvclcvcvcvcvcvcvcvcvcvcVCVCVCVCVRVAMCvaVCPMC
+DGRCCSLFATLSPLLTTiTAAAITNTA-----------T-D------------------VFIFTpGLVAIADQP
+>gi|288941070|ref|YP_003443310.1| HAD superfamily ATPase [Allochromatium vinosum DSM 180]gi|288896442|gb|ADC62278.1| ATPase, P-type (transporting), HAD superfamily, subfamily IC [Allochromatium vinosum DSM 180]
+LNRLAISDLVDpVSGAsmdtpd--------------GRRG-----LLEAALIASELRPAtsqEAGAPCW--S----GDPLDVALAAYHAEQIGPPERLLA
+ETRR--HFPFDLARRREAGVFAEGD--E--ILFAIKGAWESLRPLIGQIQDGAGQHHVADDQTLAVCDRAVhRLSSQGRRVIAVAARRLERLP-----DP
+KApeESL---ERGLVLRGLIALDDPI
+>gi|255581776|ref|XP_002531689.1| cation-transporting atpase plant, putative [Ricinus communis]gi|223528665|gb|EEF30680.1| cation-transporting atpase plant, putative [Ricinus communis]
+CNQMEVNE-fFIGEENMNDdeVC-----------ETSpvVLEALGQGIGAStlvT---------GGsvrPI-----------------ddllaawAKsRW
+GANMELSDQ-cFSV-lDHGILESNKNCSRVVIKKNG--DDegILHLHLKGDASTILNFCSHYYNtKWEVH-aIKDQRR-d-FEQVIENMESRGLTAIAYA
+CKQME-T----------------tksra--EhLHLLALVG-l--K-
+>gi|239630295|ref|ZP_04673326.1| cadmium-/manganese-transporting P-type ATPase [Lactobacillus paracasei subsp. paracasei 8700:2]gi|239527907|gb|EEQ66908.1| cadmium-/manganese-transporting P-type ATPase [Lactobacillus paracasei subsp. paracasei 8700:2]
+------------------------------------ETVRAYSAFACDQQ---------------HPSVIDQAILTFTSNNHVE------A-TLSNFTPF
+TAETGYASATITI----ADRLLKVRLGSLKVLQSRDP-----------------ESPKLP-PLALDAGRSVAVSIN-----------------------E
+-HLVGVYILEDTI
+>gi|255565063|ref|XP_002523524.1| H(\+)-transporting atpase plant/fungi plasma membrane type, putative [Ricinus communis]gi|223537231|gb|EEF38863.1| H(\+)-transporting atpase plant/fungi plasma membrane type, putative [Ricinus communis]
+-----------------------------------------------------------------------------------------DADKETVVLLA
+ARASRTENQDAIDasivgmlS---DPKSAQLSLTLTTMVTGTDAA----------KGHLSKKPHEIIDNFADRGLRSLGVARQTIPEKT--------KES
+---AGTPWEFVGLLPLFDPP
+>gi|340054218|emb|CCC48513.1| putative phospholipid-translocating P-type ATPase (flippase), fragment [Trypanosoma vivax Y486]
+QNVMELLHVTIGDKRFSLHEC---EGEasKVDENEEDVLQFGRVLSLCNTVEVASDPardtDrlgAQPYGEhsGTvvyQAASPDEAALCCGAGKLSVrlt
+HReqtratlmvKGIVESWFIHYVFPFSSELKTMGIVVEREG--TGLIYYFVKGADDRIAEMSTVEsrddvSTNGVGKAGDTETFEFIGSELKHYATRGLR
+TLLIAQKRLSRDDLNHflsQiraAEllLTnrQEKLgeirRDMESGVRILGATAIEDK-
+>gi|340504230|gb|EGR30692.1| hypothetical protein IMG5_125530 [Ichthyophthirius multifiliis]
+----------------------------------------------------------------------------------------------YKVNQN
+NYEVMEGKKFRELIGGiaYDNPYAQNIEDRGEAKIFNFDIFKkIVKELKILARSTPDDKYMLVTGLIQ--ITNDAPALKKADVG-FAMGiagTEVAKEAA
+GIILLDDNFVSIVtackygrNIYDSI
+>gi|154286582|ref|XP_001544086.1| cation-transporting ATPase 4 [Ajellomyces capsulatus NAm1]gi|150407727|gb|EDN03268.1| cation-transporting ATPase 4 [Ajellomyces capsulatus NAm1]
+--------------------------------------------------------------------------------------------AIFCTEPF
+RIPYAGRIDIACFDK--T-GTLTG--------EDLLVD----------------------------GIAGLTLGHASAKTDKhGAhtDITPVEKVA---N
+ETTLVLA---------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+Q 1    4415	5646	*	2244	*	5792	*	7130	2529	4521	4232	*	*	1991	4879	4930	3607	7248	*	5658	1
+       0	*	*	*	*	*	*	9141	0	0	
+
+N 2    *	*	*	*	*	2978	*	*	4642	*	*	374	5036	*	5824	7277	7149	*	*	*	2
+       16	7035	8140	3585	126	*	*	9171	1025	0	
+
+P 3    5295	7072	6245	2800	*	*	4355	5021	1907	5142	5975	4929	6504	3131	2578	4975	5163	5250	*	6920	3
+       0	*	*	*	*	*	0	9170	0	1000	
+
+M 4    6035	*	*	*	5323	*	*	5107	7242	3050	399	*	6217	5809	*	7639	*	*	6827	*	4
+       19	7242	7313	2322	322	*	0	9170	1002	1000	
+
+T 5    5040	7466	7757	3883	6082	6574	5720	4713	3598	*	*	5849	*	4475	3573	2765	1632	3428	*	5824	5
+       5	*	8074	*	*	812	1216	9169	0	1087	
+
+V 6    3842	7523	*	*	3595	*	*	3730	*	2903	7260	*	5807	*	*	*	6239	748	*	*	6
+       0	*	*	2000	415	*	0	9164	1000	1087	
+
+A 7    3420	7424	5397	4876	7523	4955	5145	6087	3112	7010	6482	5440	*	6050	3208	2859	2723	2380	*	*	7
+       0	*	*	*	*	*	0	9164	0	1087	
+
+H 8    3783	5681	3141	2674	*	4936	4325	6519	2698	*	7116	4395	*	3665	3064	4155	4740	4769	*	7183	8
+       47	6544	5553	0	*	*	0	9164	1092	1087	
+
+M 9    4375	3836	7432	*	3558	4032	*	2143	*	2121	4155	*	5570	*	*	7417	*	2631	6286	5934	9
+       18	6325	*	404	2035	1491	634	9131	1380	1485	
+
+W 10   4283	4624	6419	*	2674	7131	7353	3807	*	3886	7415	5833	7482	*	5949	4313	4807	2943	2319	2992	10
+       54	6066	5535	473	1839	*	0	9147	1128	1284	
+
+F 11   3521	6080	5053	*	3492	5138	6549	2505	*	2927	6555	5279	5872	7699	*	4433	2726	3131	*	4000	11
+       103	4109	6491	656	1453	1500	630	9122	1819	1600	
+
+D 12   3395	*	3498	3725	4651	2329	5312	5439	5009	4249	7781	3131	3697	6162	*	3357	6439	5608	6761	5534	12
+       65	5454	5565	1497	631	*	0	9101	1241	1651	
+
+N 13   5347	*	2340	3159	7159	1719	7169	*	4510	4390	6799	3774	5463	5440	7573	3648	5341	5690	*	*	13
+       75	5724	4981	1313	743	3407	143	9077	1162	1932	
+
+Q 14   4083	7143	4687	3286	6695	3090	5271	4961	3153	6284	*	3841	*	3219	3422	3575	3794	4528	*	6335	14
+       52	*	4809	3170	170	2933	203	9073	1000	2245	
+
+I 15   4571	*	4752	4169	5181	6431	4881	3319	3999	3215	5929	4159	5634	4483	3655	3781	3461	3529	6153	4613	15
+       96	4916	5011	2088	387	3941	97	9017	1368	2567	
+
+H 16   4556	6235	6304	4281	2632	*	5036	3491	4849	3517	5040	5522	7167	4771	6815	6301	6380	3816	5289	1992	16
+       126	3802	6394	1826	478	2384	307	8977	1834	3014	
+
+E 17   3824	*	3282	3444	5785	3405	5188	4796	2970	4804	*	4230	5092	4011	4634	3672	3635	6229	*	4713	17
+       95	4730	5266	732	1330	3723	114	8995	1387	2782	
+
+A 18   3343	6973	4597	3973	4608	3843	*	3738	4999	3254	*	4113	4832	7397	*	3440	4782	2202	*	5493	18
+       344	3845	2813	1742	513	3780	109	8957	1797	3021	
+
+D 19   3700	*	2778	3106	*	4134	6574	*	3244	6261	6092	3524	5381	4085	4300	3614	2904	5990	*	6826	19
+       151	4428	4239	3585	126	3039	187	8840	1477	4219	
+
+T 20   4400	7105	3439	3519	5581	1979	5265	5030	4310	3953	5048	5031	5338	4071	4400	4366	4466	5938	*	5849	20
+       142	5997	3681	529	1703	3947	97	8758	1078	4323	
+
+T 21   3283	6542	5560	3020	4454	4587	*	5700	3900	3300	*	4546	5287	*	4824	2794	2988	4120	*	4806	21
+       111	5054	4517	3850	104	4454	67	8692	1341	4730	
+
+E 22   4248	5567	3338	3255	6696	2739	5632	*	3685	5472	6122	4582	3781	4848	4202	3863	4031	3869	*	5233	22
+       443	2428	3667	912	1094	5606	30	8639	2575	4858	
+
+N 23   4387	*	3051	3685	4884	5743	5061	5420	3962	5665	5594	4751	3926	3947	4646	3742	3520	4069	*	3130	23
+       283	3093	4035	1642	557	5260	38	8538	1953	5251	
+
+Q 24   3551	*	4054	3867	6424	5498	4560	4600	3325	4697	4622	3980	3342	4029	4945	4132	3034	4510	*	6539	24
+       300	2745	4691	1758	506	2233	345	8437	2174	5479	
+
+S 25   5716	5937	3488	2875	*	4525	3972	6052	3365	3880	6756	4356	2922	4147	6552	4139	3538	4546	*	6752	25
+       319	3112	3595	1091	914	3886	101	8520	2127	4965	
+
+G 26   4893	*	3839	4842	7016	1207	7112	5204	4276	4707	6100	4048	5166	5326	6554	4142	4285	4585	*	6875	26
+       179	3595	4870	1944	434	3247	161	8507	1722	5223	
+
+V 27   3794	*	4710	2529	6922	4847	5226	4210	3260	4246	*	4210	3903	3954	4170	2858	5037	5252	*	*	27
+       154	3701	5362	3808	107	2983	195	8626	1809	5120	
+
+S 28   4074	*	3454	3610	4840	3923	5332	3031	4244	4896	7770	3838	4027	3951	6495	2762	4591	5338	*	6979	28
+       96	4631	5368	708	1366	3519	132	8714	1341	4864	
+
+F 29   4729	*	5015	5303	3650	5957	4889	4079	3984	2992	4974	5007	4389	5654	6157	4539	4319	4259	5720	2186	29
+       532	2119	3680	2957	199	1936	437	8742	3090	4749	
+
+D 30   2875	*	2921	2959	6983	3511	5881	5013	4618	5715	*	3223	4696	3806	4902	3244	7043	5130	*	7061	30
+       173	3953	4363	1758	506	2370	310	8818	1720	4527	
+
+K 31   4024	6943	5424	3909	4537	5411	6626	3624	3502	3194	7295	5518	2573	4138	5060	3776	4015	3893	*	*	31
+       378	2503	4215	2030	405	1623	567	8816	2923	4305	
+
+T 32   3907	*	3155	3785	6089	4400	5579	5024	4650	3494	5914	3925	3921	3650	4250	2840	4371	5511	*	5998	32
+       196	3958	3995	2626	255	1678	541	8900	1765	3870	
+
+S 33   4063	*	2789	3754	*	2704	5271	7010	4277	4985	7416	3351	3893	4521	4467	3403	4275	6018	6840	5588	33
+       236	2911	5793	3293	155	1435	666	8929	2689	3600	
+
+A 34   3006	6903	3691	2270	7475	4373	5045	5615	3225	7157	*	5137	3799	3838	7465	3649	3766	5604	*	6135	34
+       113	3939	6639	1994	417	1506	626	9039	1753	3220	
+
+T 35   3425	*	3285	3640	*	4447	5437	4784	4413	3642	6376	4008	3543	5247	4792	2930	3785	4409	*	5746	35
+       91	4191	7232	2635	253	2540	272	9105	1716	2653	
+
+W 36   4012	*	6581	4126	3129	7423	5955	3463	5272	1894	6211	5094	5614	7423	4573	4030	5058	3340	5749	5121	36
+       77	5038	5529	3918	99	1725	520	9196	1510	2449	
+
+F 37   4455	7318	3664	2946	7557	4526	5135	4759	3393	3590	7318	5358	4578	3566	3047	4102	4239	4737	6936	6334	37
+       45	5367	7311	1930	439	1680	540	9069	1251	2379	
+
+A 38   3730	7212	3356	2456	6416	6210	6096	3826	4596	2759	4542	4891	*	3653	3781	4455	5371	4856	7524	*	38
+       22	6659	7590	945	1058	1157	858	9059	1177	2042	
+
+L 39   4460	6711	*	*	3070	7544	*	3047	6485	1070	4690	*	7524	*	*	6394	4497	3396	*	5881	39
+       15	7736	7500	0	*	2713	239	9101	1002	1629	
+
+S 40   3766	5310	*	6525	4543	5312	6502	3443	6788	1352	4289	7535	6214	6200	4475	4997	5433	3395	6283	5183	40
+       24	7273	6641	0	*	1257	782	9115	1028	1617	
+
+R 41   3599	6648	4638	2844	6206	5233	5659	5332	3391	3065	5339	4366	6330	3780	3052	5627	3482	5719	7494	6038	41
+       47	4951	*	1820	481	659	1448	9134	1493	1514	
+
+I 42   2045	3788	*	*	5557	3036	6000	2920	*	4249	6412	4200	*	6239	7477	3408	5377	3104	7651	5852	42
+       53	5436	6294	1958	429	*	0	9158	1362	1134	
+
+A 43   2004	4529	*	*	6168	3159	*	2555	*	2748	3800	6589	*	*	*	3061	5598	4835	*	7716	43
+       8	*	7468	*	*	*	0	9119	0	1599	
+
+G 44   2078	4350	7657	7953	5557	3527	7552	4129	*	3749	5144	5631	*	7250	7564	2826	3996	2608	7663	5201	44
+       20	6214	*	4551	63	1555	600	9110	1136	1695	
+
+L 45   4872	5489	7324	5532	5318	5781	7486	3047	6043	1033	4732	6387	*	6281	7656	5030	4866	3621	6942	5611	45
+       38	*	5250	5129	42	2100	383	9136	1033	1435	
+
+C 46   2606	1018	7356	7192	*	*	7311	6754	7611	*	*	2408	*	*	7449	3744	4902	7365	*	*	46
+       44	6492	5703	999	1001	*	0	9135	1118	1786	
+
+N 47   7425	4372	7540	5843	*	*	3348	7387	7275	6614	7414	1297	5787	5565	*	2208	2903	*	*	*	47
+       65	6532	4918	1437	665	1250	787	9097	1261	2104	
+
+R 48   4726	*	2536	3514	*	5819	7475	*	4522	6567	6713	2315	6439	5066	5334	2804	2438	6155	*	7257	48
+       23	7613	6535	1000	1000	2086	388	9082	1000	2167	
+
+A 49   1352	4804	5521	7679	5916	4522	6637	5091	6699	4273	8085	7331	6155	6102	6432	2512	4472	3264	*	6604	49
+       95	6388	4264	486	1807	3682	117	9105	1116	2047	
+
+V 50   4443	6496	5456	3539	5967	5649	5557	4090	3987	5413	4894	3985	6585	3516	3537	3330	3080	3471	*	4534	50
+       179	3766	4534	2629	254	4189	81	8998	1972	2947	
+
+F 51   4277	7603	7072	5564	2869	*	*	2455	4862	2402	5705	5540	4638	5519	5441	4416	6293	2987	6301	4385	51
+       231	3694	3817	1474	644	4866	50	8937	2112	3474	
+
+Q 52   4554	6148	3369	2525	5069	6555	6519	4128	3326	4792	7243	4570	5518	3936	4580	4002	4694	3044	*	5136	52
+       172	4732	3740	586	1582	3080	182	8873	1522	4213	
+
+A 53   4221	*	3607	3186	4976	5257	4823	5832	3748	5030	*	3837	3280	4005	4632	3580	3802	4041	7237	4635	53
+       401	4162	2418	2248	341	4296	75	8807	1642	4573	
+
+N 54   4654	6179	2201	3101	*	2761	7055	4958	4474	5706	*	3489	4161	4783	5176	3739	4425	5501	*	6880	54
+       112	4524	4992	3018	190	1332	730	8759	1386	5828	
+
+Q 55   4691	*	3253	3164	7389	3432	*	6481	3763	6277	6518	2855	4664	3155	4391	3417	3756	5761	7135	7223	55
+       175	3773	4599	2378	308	1859	465	8973	1860	4540	
+
+E 56   4023	*	3039	2832	7388	2520	4601	4996	3883	5207	5746	3346	6438	4935	4496	4296	4418	5778	*	7082	56
+       433	3386	2612	2391	305	2755	231	9053	2319	4123	
+
+N 57   3824	*	3096	3267	6291	2342	5121	*	3713	5299	*	3391	5334	4042	4436	4416	4190	5051	6738	*	57
+       628	5435	1601	1002	998	2092	386	9020	1191	5256	
+
+L 58   4981	6652	3318	4996	4756	2581	6766	4265	3573	3975	5368	4475	5540	4080	4037	3963	4355	4003	6654	5816	58
+       708	4006	1618	4104	86	4286	76	8757	1478	6502	
+
+P 59   5362	*	3875	3832	*	3915	6066	4279	3482	4515	*	5151	1510	5078	4908	4353	5163	*	5257	5266	59
+       783	5518	1333	4416	69	5917	24	8432	1108	7422	
+
+I 60   4488	*	3986	4143	5393	5253	5534	2983	4435	4631	*	5315	3881	*	3773	4275	4962	2643	*	2825	60
+       201	4637	3474	635	1489	3817	106	7575	1079	8070	
+
+L 61   3753	*	4199	4761	5664	3576	3817	4894	4209	3206	4030	4825	3907	*	*	2603	4736	4001	4786	*	61
+       153	3595	5804	3452	138	1655	551	7615	1299	7945	
+
+K 62   3858	*	3513	2664	*	4542	5634	4320	3285	4718	6616	5021	5741	2762	4066	3907	4992	4595	*	5285	62
+       160	3938	4651	1266	776	1608	574	8316	1485	6725	
+
+R 63   5894	6058	5221	4118	4565	4397	7230	5204	3514	4598	4813	5120	4615	4199	3565	4769	5336	3325	2950	3369	63
+       174	4851	3660	2533	274	1942	435	8602	1321	5645	
+
+A 64   4491	7131	4293	2676	6722	3957	4496	3943	3744	5573	6787	5649	5409	3961	3956	5994	3619	2866	*	4421	64
+       44	5068	*	1393	691	1727	519	8690	1566	5232	
+
+V 65   4005	7013	7295	6001	4061	6260	6489	2234	6442	3261	5072	5954	4504	3968	4446	3955	4982	3228	6322	3635	65
+       48	5196	7480	219	2827	1374	703	8879	1372	4204	
+
+A 66   3624	*	5821	5126	4402	3907	5534	2938	3830	4153	*	4394	5701	4461	4558	3037	5217	2707	*	5409	66
+       91	4032	*	1728	519	437	1937	9059	1986	3178	
+
+G 67   5273	*	5901	5168	5814	449	*	7560	5542	6725	*	6828	5573	5526	7455	4527	5460	5971	*	8039	67
+       68	4572	8009	286	2473	2429	296	9202	1678	1564	
+
+D 68   *	*	1541	4388	*	6757	*	7191	*	6948	7455	1866	6510	6135	7312	1991	5550	*	*	*	68
+       23	6419	7912	0	*	942	1060	9209	1094	1542	
+
+A 69   2693	7801	7049	5311	*	7842	5953	5441	3538	5080	6415	6137	1036	4907	5778	4159	6241	6110	*	*	69
+       0	*	*	0	*	1952	431	9219	1016	1323	
+
+S 70   6483	*	3232	5664	6276	*	*	3735	7105	3461	3720	6386	*	*	6839	4059	1121	4423	*	6211	70
+       0	*	*	*	*	*	0	9229	0	1217	
+
+E 71   5405	*	1450	768	*	7474	*	*	*	7337	*	*	*	*	*	6440	*	*	*	*	71
+       20	7472	7003	0	*	*	0	9229	1018	1217	
+
+S 72   3184	3836	*	4688	*	3562	*	3055	3828	3701	5620	4812	*	3896	3970	5094	4866	2560	*	6834	72
+       0	*	*	0	*	2618	256	9212	1000	1402	
+
+A 73   374	5046	*	6756	*	5117	*	6741	*	7984	6848	*	6670	7929	7669	3697	4992	7735	*	7336	73
+       0	*	*	1000	1000	1952	431	9219	1016	1323	
+
+L 74   5364	7795	*	*	4117	*	*	2358	*	820	4013	*	*	*	*	7591	6122	3969	*	7217	74
+       13	6850	*	2807	222	1612	572	9229	1150	1217	
+
+L 75   5292	7408	7861	7638	3907	*	5970	2834	5989	1251	4644	6810	7341	6145	5327	5540	6304	2712	*	5679	75
+       11	*	7064	*	*	*	0	9237	0	1117	
+
+K 76   3938	6352	3871	3106	*	5264	5485	6023	2600	4019	6300	4471	8543	3788	3148	4227	4346	3401	*	7725	76
+       16	6464	*	2177	361	2270	335	9229	1287	1277	
+
+C 77   2548	5744	*	6966	1789	4296	7880	5545	5869	2558	5394	6205	*	7388	*	5760	4686	5742	5295	3256	77
+       61	5322	5943	2450	292	1519	619	9201	1525	1496	
+
+I 78   1347	4112	7419	*	5333	3559	7371	4260	*	2943	6158	*	7567	*	5134	3958	5410	3577	*	5263	78
+       59	4927	7099	1400	687	1897	451	9197	1570	1693	
+
+E 79   3419	*	3998	3295	7969	3510	4121	4933	3643	3781	4151	3992	7560	3816	4141	4478	5407	4792	7421	4477	79
+       297	4213	2923	587	1580	1978	423	9214	1961	1645	
+
+V 80   4270	5748	4154	2977	5208	5104	5256	5521	2298	4294	5321	4073	7271	4698	3721	3619	4555	6144	5253	5754	80
+       102	5822	4296	1434	667	332	2282	9090	1198	3461	
+
+C 81   3465	4644	5459	4931	3887	5043	6685	4305	3454	2634	4263	3866	5887	4019	5362	3996	4920	4591	7680	4727	81
+       79	5550	4957	1205	820	1372	705	9125	1268	2216	
+
+C 82   4319	6138	6626	4381	5301	1424	5377	4076	4838	3468	5521	4447	6229	5425	6115	4599	4406	4885	7615	5332	82
+       194	4321	3718	2572	266	2220	349	9153	1903	2248	
+
+G 83   4335	6295	6478	4550	3394	2595	6720	3111	4507	3458	5280	5307	5683	5613	6644	5281	4189	3461	7735	3540	83
+       267	3096	4261	3531	131	1700	531	9073	2667	3231	
+
+S 84   5383	7074	1740	4237	6055	5473	5530	5836	4031	5263	7277	3548	3580	4286	5115	3406	4325	6740	7372	4758	84
+       249	3238	4244	2480	285	1438	665	8980	2666	3399	
+
+V 85   4851	7162	5592	3810	4467	5396	6028	2951	3516	3286	4995	5130	4821	5796	4091	5364	4952	3041	7330	3230	85
+       109	4209	5722	3363	147	5177	40	9008	1800	3405	
+
+M 86   3344	*	2607	2809	6041	4324	6004	5971	3780	3756	5458	5277	4928	4181	4054	3360	4966	5740	*	7289	86
+       112	3865	7338	3481	135	2024	407	9010	2051	3560	
+
+E 87   3635	*	3219	2934	5363	4084	6545	6230	3313	3808	4717	4260	5495	3561	4593	4011	4632	5943	5879	5170	87
+       211	3309	4836	2320	322	1466	648	9063	2512	3062	
+
+M 88   3937	*	4439	4269	4631	5900	*	2899	3849	2119	5687	5644	5532	4911	4916	5113	4127	3813	4926	5134	88
+       105	4652	5025	2600	260	2479	285	9069	1621	2910	
+
+R 89   4718	*	3970	3605	7894	5195	6390	5843	3462	3938	6098	4487	5715	4371	1692	4186	4917	4370	*	5230	89
+       66	5505	5441	3150	172	1894	452	9032	1272	3022	
+
+E 90   3349	7130	3991	2567	5082	5313	5201	5766	3149	4247	7446	4006	5722	3719	3724	3676	4998	5602	*	5118	90
+       54	5522	6063	3116	177	1436	666	9038	1300	2921	
+
+K 91   3974	*	3655	3085	6881	4158	5980	4771	3109	6037	6611	3362	4063	4203	3728	3380	4345	5253	*	5478	91
+       71	5312	5436	296	2430	970	1031	9139	1537	2484	
+
+Y 92   4496	5520	6023	6652	2523	5002	4192	4005	*	3754	6659	4590	5246	4796	5771	5492	4905	4304	3417	2471	92
+       22	7655	6648	2704	240	1118	891	9159	1073	2187	
+
+T 93   4184	6575	5045	2715	6409	*	5773	5731	2712	6182	7776	5115	2730	4153	3688	4026	3311	4515	*	6284	93
+       52	4825	*	2012	411	1194	829	9220	1675	1773	
+
+K 94   5596	6864	6462	4705	5029	6681	7502	2688	2843	3396	6229	7136	5265	4495	2399	5079	4223	3101	*	7472	94
+       49	6146	5689	2574	265	*	0	9274	1154	1405	
+
+I 95   5071	5663	6262	4743	5683	6270	5917	2757	4844	2133	5243	6439	7466	5866	4521	5397	4382	2010	*	5949	95
+       36	5511	8393	2949	200	1428	670	9270	1476	1774	
+
+V 96   2557	5918	3567	3781	3716	4636	3737	5623	2831	5219	*	4468	*	4239	3823	4610	5073	6037	*	5459	96
+       29	6196	7335	1205	821	1339	726	9280	1181	1535	
+
+E 97   6003	6773	5010	2149	4196	5712	5379	3740	3841	4872	6598	5064	*	3808	3684	5267	3383	2977	*	7954	97
+       59	5642	5617	2736	235	2356	314	9324	1376	1406	
+
+I 98   5981	7720	*	5516	2184	6701	5402	2502	5101	2494	4691	5087	*	5093	6478	5509	5550	3727	5220	3906	98
+       50	5858	5894	573	1610	704	1374	9263	1295	1723	
+
+P 99   3619	*	4826	3143	7808	4703	5239	7780	7267	6145	6084	5838	933	5620	7298	4716	4407	7013	*	*	99
+       0	*	*	*	*	*	0	9270	0	1554	
+
+F 100  6878	*	*	*	257	6603	*	*	*	4452	*	6548	7543	*	6005	*	*	5999	*	4283	100
+       0	*	*	*	*	1498	630	9270	0	1554	
+
+N 101  5653	6726	1651	4151	*	5557	6789	*	7369	6024	*	2479	*	*	5354	2364	2773	*	*	*	101
+       0	*	*	*	*	*	0	9291	0	1330	
+
+S 102  4915	6024	*	5037	5429	5396	5533	5702	6100	6642	*	6181	2739	6677	4402	903	5173	*	*	5294	102
+       15	7915	7369	1000	1000	*	0	9291	1002	1330	
+
+T 103  3509	7494	2992	2114	6697	5288	5521	6739	3418	5103	7417	4255	6282	4734	5133	3293	4266	3935	*	7861	103
+       0	*	*	*	*	*	0	9285	0	1443	
+
+N 104  6536	8564	5566	5869	6333	5502	6946	5496	3613	3860	7457	2972	7021	5939	1241	4075	4418	5345	*	5508	104
+       5	*	8098	*	*	*	0	9285	0	1443	
+
+K 105  5644	*	*	6326	7994	4429	7119	*	699	6721	5266	4718	7018	4264	2781	7375	*	6776	*	*	105
+       77	*	4267	*	*	2995	193	9289	0	1517	
+
+Y 106  5939	4561	*	5963	3274	6077	*	5064	4242	4644	3511	*	*	8534	1724	4245	4348	6219	4900	2810	106
+       49	*	4916	*	*	1152	862	9204	0	2353	
+
+Q 107  4759	7489	*	6542	6807	4478	6027	5351	5467	7447	897	7747	*	4814	4706	2401	7188	6920	*	7671	107
+       31	5559	*	498	1777	1012	988	9207	1325	2291	
+
+L 108  2629	6068	7946	5044	7892	3638	*	4749	6060	3902	4048	*	*	5274	6648	1827	2952	3774	7651	*	108
+       14	6656	*	1936	437	2880	211	9261	1242	1794	
+
+S 109  3694	5593	7788	8022	8100	5712	5518	3605	4844	5672	6113	*	*	7639	6119	3131	2072	1659	7476	7851	109
+       26	5805	*	0	*	2195	356	9270	1238	1679	
+
+I 110  4098	6217	*	6929	5096	6744	7661	1915	6485	2617	5951	7408	6791	7642	6126	6948	4107	1707	*	6131	110
+       17	6408	*	1585	585	*	0	9287	1175	1516	
+
+H 111  4697	4354	5280	*	4119	6108	3506	3397	6868	3009	7193	4895	*	7626	5082	4701	5467	1854	6181	3788	111
+       176	3753	4631	1340	725	*	0	9269	2310	1679	
+
+K 112  4069	6145	5147	2859	6689	4209	5203	5305	2460	6063	7998	5178	4707	4271	2647	4658	3954	4707	7308	5853	112
+       293	4588	2816	3469	137	2622	256	9227	1828	2401	
+
+N 113  4975	5986	3179	3517	4697	4397	5492	5291	3692	3999	5844	3518	4682	4956	4178	3499	3552	4387	5864	6485	113
+       429	4211	2301	2514	278	1874	460	9118	1887	4250	
+
+P 114  3942	*	4563	3104	*	3241	6256	4345	3678	4681	6386	3675	3148	4364	3837	3502	4164	5294	*	*	114
+       518	6146	1797	3920	99	4539	63	8905	1097	5468	
+
+N 115  3790	6341	3140	3144	6979	2469	5356	*	3368	5789	*	3264	6655	4403	6869	4004	3669	4572	*	6950	115
+       1650	3683	729	3018	190	3476	136	8627	1635	6975	
+
+A 116  2936	5311	3681	3980	4663	4244	*	4300	4500	4595	5735	3616	3476	4630	5576	3653	3650	4464	*	5776	116
+       806	1918	2613	2499	281	2768	229	7450	2167	8314	
+
+S 117  3621	5659	3204	2932	*	3588	4101	5434	4444	*	*	5170	3489	4302	4020	3160	4281	5136	*	5164	117
+       164	3340	6885	1249	788	426	1967	7967	1505	8015	
+
+E 118  4307	*	2923	3026	7193	3384	4875	7648	3790	5836	7596	2556	6127	4746	4460	3583	3470	6570	7147	*	118
+       299	3658	3212	2062	395	935	1068	9175	2384	3881	
+
+P 119  5515	*	3255	2880	*	1738	5652	6507	4315	6837	5905	3031	5424	4750	5503	3946	5195	5756	*	6010	119
+       230	3604	3945	1438	664	1031	969	9181	2305	4046	
+
+K 120  4561	6255	4004	3250	6052	3436	4893	6478	2615	5126	*	3647	5413	3943	3390	4938	3513	4997	*	5831	120
+       90	4311	6623	883	1127	837	1184	9073	1651	3800	
+
+H 121  5162	6711	7577	4898	4048	5172	4953	4034	4009	3272	6625	5165	5229	4730	4926	5597	4034	3479	7563	1918	121
+       79	4925	5622	2803	223	2115	379	9247	1501	2451	
+
+L 122  5083	6120	*	5467	3597	*	5663	2853	4519	2815	5124	6511	*	6017	2785	5168	3765	3292	6710	3414	122
+       30	5613	*	3683	117	692	1392	9256	1280	2461	
+
+L 123  3354	5198	6196	6580	4815	*	*	2754	6546	1867	5142	7700	7164	4785	5415	5599	4561	2419	8033	5128	123
+       44	6145	5993	1631	563	1319	739	9270	1331	1533	
+
+V 124  3783	5443	6740	*	2529	6784	4827	3393	*	2789	6675	5194	*	7504	*	6190	6167	3484	7389	1878	124
+       21	7444	6838	1585	585	465	1859	9272	1007	1615	
+
+M 125  3689	3857	5566	*	7893	7763	6979	2740	6257	4078	4324	*	*	6640	5662	3611	2869	1996	5481	5495	125
+       0	*	*	*	*	2401	303	9327	0	1324	
+
+K 126  7190	6664	7377	5362	6911	6817	*	6576	326	5200	6711	*	*	6191	5530	5121	5558	7440	*	*	126
+       4	*	8447	*	*	*	0	9333	0	1247	
+
+G 127  7189	*	6588	*	*	68	*	*	*	7653	*	*	*	7539	*	*	6816	6663	*	*	127
+       14	6675	*	2585	263	*	0	9331	1081	1322	
+
+A 128  590	6026	6096	7734	7089	5045	7140	6917	7660	6793	7700	5257	*	6118	5919	2855	5891	5862	*	*	128
+       13	6796	*	1453	656	2439	294	9331	1200	1322	
+
+P 129  3170	7141	3456	7349	5409	5551	7780	7745	*	4556	6654	6679	1032	*	7190	4428	5765	4043	5170	5715	129
+       0	*	*	*	*	*	0	9333	0	1247	
+
+E 130  5771	6664	3012	805	6817	6820	6152	7858	5418	6227	7540	4613	7884	4729	6135	3662	6450	6679	*	*	130
+       9	7368	*	1585	585	*	0	9333	1082	1247	
+
+R 131  3096	6826	5779	3988	6026	4914	7200	2928	3968	4190	4979	5748	*	5492	3279	3591	5111	2462	*	5750	131
+       0	*	*	*	*	*	0	9316	0	1415	
+
+I 132  *	6816	*	*	6917	*	*	1524	6588	2167	3590	6639	6677	*	5968	*	7655	1868	*	7908	132
+       17	*	6418	*	*	1868	462	9316	0	1415	
+
+L 133  5210	*	*	6696	4439	6536	7629	2758	5082	918	5329	*	*	7656	5748	4710	6123	3946	6461	5826	133
+       27	*	5755	*	*	1772	500	9264	0	1489	
+
+D 134  3574	*	3363	2663	6552	4112	*	7495	3089	7567	7733	3280	3038	4491	4670	3191	5229	6743	7524	*	134
+       14	7383	8124	3170	170	*	0	9249	1062	1685	
+
+R 135  4589	6503	7383	5497	4532	7943	5693	4017	3196	2430	3931	4609	*	4956	2057	4259	6013	4740	*	6375	135
+       33	7315	5960	0	*	2865	213	9253	1082	1752	
+
+C 136  3782	778	6798	7985	5314	6683	7157	6569	7588	3940	*	*	6703	7559	*	2862	5133	5183	*	*	136
+       77	4840	5886	632	1495	1890	454	9206	1614	2048	
+
+S 137  3836	*	3615	4666	8054	4419	6703	5752	3572	5963	6408	4359	*	4536	4730	2280	2098	4631	8231	7456	137
+       176	7603	3187	4858	51	1314	742	9226	1033	2117	
+
+S 138  4574	5934	5891	4905	4516	4907	3236	5446	3512	4468	5547	4006	4997	4216	3445	3380	3388	7202	6526	3596	138
+       258	4602	3025	0	*	2517	277	9104	1592	3575	
+
+I 139  5808	6875	5563	4202	3610	6169	6369	2280	4858	3210	4477	5449	6251	4875	*	6363	4991	3372	6884	2489	139
+       229	5687	2972	3223	163	4272	77	9000	1189	4614	
+
+L 140  4213	5583	5012	4460	5542	5325	6105	3507	4068	2348	3370	5196	5137	4092	4725	4771	5647	4499	5795	3716	140
+       432	2067	5619	166	3202	*	0	8759	3594	5535	
+
+L 141  3468	5541	3876	3584	7282	4570	6931	3465	3272	3669	5662	3887	5257	5369	6396	3290	3646	4219	*	5521	141
+       206	3250	5175	1043	958	4138	84	8883	2182	5667	
+
+H 142  4198	*	2169	3294	6056	3055	5177	6768	4130	*	*	2506	4533	4755	5428	4136	6488	6049	*	5089	142
+       148	3662	5780	1450	657	5354	36	8849	1999	5651	
+
+G 143  4264	*	3463	4587	*	943	6289	6993	4944	5734	6998	3645	6263	6277	6146	4247	5647	6415	7316	7582	143
+       88	4628	5757	2072	392	3880	101	8847	1556	5676	
+
+K 144  4148	*	4396	2465	*	3686	7187	5474	2824	7209	*	3526	7512	4075	4260	3052	3592	4248	*	*	144
+       53	6409	5357	0	*	4731	55	8892	1063	5559	
+
+E 145  5369	5575	5546	2648	5579	6800	7081	2879	4000	3239	7434	7153	4663	4434	4125	3767	5412	2532	7243	*	145
+       111	4772	4728	896	1112	*	0	8901	1337	5603	
+
+Q 146  3906	6025	4679	3707	*	5006	4653	3672	3075	4554	7330	6980	6153	3955	3931	4449	4782	2160	7265	5562	146
+       54	6971	5136	2322	322	3695	116	8865	1000	5851	
+
+P 147  3842	*	3805	3117	7640	4650	6830	4817	4141	5287	*	5659	1603	4437	7063	3864	4790	3952	*	*	147
+       83	6290	4539	801	1231	2097	384	8792	1426	5789	
+
+L 148  5002	6381	7273	7425	3849	6172	*	2782	5134	1174	2966	7186	7629	7085	*	4824	6410	4496	*	7501	148
+       71	5569	5214	1585	585	2041	402	8984	1182	5255	
+
+D 149  4640	6418	1990	5060	5049	5364	*	6014	4568	*	7394	3796	7311	4944	6443	2922	1898	6624	*	5988	149
+       33	*	5451	*	*	1966	427	8956	0	4755	
+
+E 150  3625	*	2507	2169	7242	5502	5505	*	5187	4677	*	3634	4151	4810	5009	3025	3954	7272	*	7408	150
+       86	5421	4866	2334	319	1986	420	8940	1275	4266	
+
+E 151  3103	*	3120	1934	5771	5231	6811	5776	3947	*	*	5833	5865	3381	4608	3403	4106	4630	*	7578	151
+       62	6708	4949	2026	406	2011	411	9115	1055	3943	
+
+L 152  4130	7519	2899	4076	4391	*	5968	3703	4838	3737	4640	4731	5246	3587	3677	4734	4223	3679	5171	5002	152
+       46	*	4991	*	*	2446	292	9108	0	3659	
+
+K 153  4196	7370	5037	4383	6422	6070	7945	4206	2327	3966	6331	6441	4676	4659	1728	5513	5780	5175	6541	5067	153
+       47	*	4950	2322	322	1705	529	9140	1093	3601	
+
+D 154  2837	*	3108	2201	*	6326	*	5104	2839	5090	*	5161	5182	3469	4497	4120	5062	5230	*	6397	154
+       14	7752	7604	450	1899	763	1284	9204	1192	3360	
+
+A 155  3618	*	3490	2936	5899	4425	4786	5009	2657	5110	6166	4062	*	3534	3190	4564	5108	6585	7549	5378	155
+       9	7331	*	387	2087	811	1217	9300	1158	2092	
+
+F 156  5101	6647	*	7659	2797	*	7295	1692	5967	2391	6093	7736	*	5301	8026	*	5375	3079	5608	3680	156
+       44	5655	6660	948	1054	2590	262	9317	1269	1437	
+
+Q 157  5097	5723	3893	2661	*	4987	6191	4695	3572	2588	5239	3589	7745	4162	4179	4231	3573	6096	*	6068	157
+       49	6111	5739	1013	987	2130	374	9308	1177	1568	
+
+N 158  3241	*	3080	2660	7837	5681	5355	6767	2837	5486	5399	3599	5617	3701	5184	3347	4650	6283	*	5962	158
+       35	5376	*	742	1314	912	1094	9306	1520	1829	
+
+A 159  2620	7513	5846	4491	6988	*	4971	3424	3243	3996	5570	5989	6661	3816	4397	4173	3643	2898	7953	5062	159
+       19	*	6264	*	*	2089	386	9284	0	1351	
+
+Y 160  3368	6464	5943	*	5115	5960	5163	2029	6409	2898	4556	4082	*	4702	6482	5362	4322	2942	6882	4393	160
+       7	7678	*	0	*	*	0	9266	1182	1546	
+
+L 161  4593	*	2855	2317	8424	6133	5064	6244	3517	3702	5701	3227	6643	3972	4730	3696	4126	6052	6917	*	161
+       42	5373	7858	1326	734	1210	817	9266	1602	1546	
+
+E 162  2943	7733	3718	2627	*	3974	4910	7026	3339	5776	5476	4346	6232	3569	3683	3706	4425	5881	7881	6126	162
+       6	8016	*	0	*	2595	261	9294	1000	1347	
+
+L 163  5994	6934	*	5962	2717	7668	5955	4950	*	1856	2628	7533	*	5287	7748	5849	*	5619	3956	2483	163
+       6	*	7992	*	*	*	0	9293	0	1275	
+
+G 164  1185	6092	6170	5566	*	3362	7857	5482	7118	5651	*	5254	*	4272	7117	2494	3529	*	*	6637	164
+       21	6092	*	678	1415	*	0	9283	1162	1380	
+
+G 165  3826	6368	5222	2945	7531	4455	7588	7097	2898	4586	6809	3517	*	4153	3076	2636	4229	4793	*	*	165
+       16	*	6528	1000	1000	971	1029	9283	1016	1380	
+
+L 166  4223	*	3218	2980	*	5837	4971	*	2458	4826	7651	4835	*	2673	2842	4519	5074	5031	*	7483	166
+       10	*	7214	*	*	1718	523	9286	0	1366	
+
+G 167  2548	5719	7870	7164	*	607	*	*	*	6525	7428	7191	7369	6669	6705	4103	4826	*	*	*	167
+       25	*	5864	*	*	590	1575	9289	0	1409	
+
+E 168  5337	6561	7079	4188	3886	6204	8050	4810	4978	1244	3450	6425	*	5127	4513	5681	*	6831	*	3010	168
+       6	*	7983	*	*	1855	467	9256	0	1392	
+
+R 169  7783	7723	7104	5986	*	*	5650	7224	4763	7328	*	*	*	*	251	6014	5562	7255	*	6096	169
+       9	7348	*	2958	199	2097	384	9255	1189	1366	
+
+V 170  5466	4094	*	*	*	6017	*	4709	*	4415	5584	5148	*	7508	*	4245	1998	1118	*	*	170
+       6	*	8033	*	*	*	0	9249	0	1428	
+
+L 171  5768	*	6515	7203	6874	7210	*	1805	*	879	4882	*	*	*	7124	*	7554	4212	*	5763	171
+       14	*	6650	2000	415	3031	188	9241	1000	1525	
+
+G 172  896	4160	*	*	*	2638	*	5345	*	3408	*	*	*	*	*	4757	5142	4013	*	*	172
+       0	*	*	*	*	*	0	9204	0	1615	
+
+F 173  6053	5125	*	*	2274	*	*	2855	*	1775	5024	7493	6483	*	*	7737	6690	2084	7722	5914	173
+       4	*	8404	*	*	*	0	9204	0	1615	
+
+C 174  521	4469	*	*	7652	2776	*	7967	*	5793	7668	7202	*	*	*	4159	6598	7146	*	*	174
+       94	4939	5039	2325	321	*	0	9201	1511	1687	
+
+H 175  5207	5403	6397	5692	4488	6086	5742	4725	3667	5456	4116	*	6972	4500	3842	3933	4415	4147	5386	1606	175
+       33	6588	6329	2339	318	2012	411	9160	1392	2282	
+
+L 176  3785	6789	8088	7017	7037	5090	7632	6903	1394	4411	6676	5197	*	4539	1959	4220	6192	5610	*	7978	176
+       109	7019	3948	674	1422	2242	343	9157	1090	2162	
+
+L 177  6091	6380	3153	2532	7726	7915	6614	3991	3549	5128	*	5077	4180	3677	3609	3512	3559	4982	6064	5162	177
+       124	5040	4259	0	*	*	0	9092	1391	3026	
+
+L 178  4430	5820	5681	6174	3657	5680	*	2849	*	1636	4368	5093	5911	6620	6662	4848	5572	2909	6665	5048	178
+       291	3539	3369	1856	466	1803	487	8987	2400	3759	
+
+P 179  5319	6362	2820	2915	*	4470	6372	5533	4503	4917	7549	3780	2925	5291	5267	3132	3001	6221	*	5725	179
+       181	6420	3232	1313	743	3196	167	9000	1072	4170	
+
+D 180  3529	7344	2965	2900	5783	3644	4820	5204	3311	4732	6370	3988	5183	4348	4836	3330	6218	5194	*	5709	180
+       202	4612	3476	1537	610	2592	262	8858	1430	4927	
+
+E 181  4037	*	2496	2655	*	4203	6226	5957	3961	4223	*	3346	4428	3853	6020	3389	4125	5694	*	*	181
+       542	5104	1817	942	1060	2982	195	8888	1337	5285	
+
+Q 182  3893	*	3011	2067	5830	5706	5362	5496	3534	3925	5990	4505	4439	4225	6759	3871	4838	4626	*	5491	182
+       596	3437	2024	1828	477	1889	454	8577	1843	6671	
+
+F 183  4132	*	4835	4116	2363	5432	5291	3715	4655	2877	4834	4227	*	5603	6791	4743	5726	4694	4200	3508	183
+       129	4639	4466	2271	335	1930	439	8651	1575	6757	
+
+P 184  3775	*	3340	3640	*	4731	6490	5410	4671	4899	6124	3902	2124	4235	4737	3673	3828	4703	6997	7205	184
+       364	4053	2621	2125	376	2615	257	8759	1619	5954	
+
+E 185  3395	*	2731	2785	5364	4147	5377	5407	4136	4187	5831	4346	4324	4432	4664	4308	3907	6658	*	4658	185
+       560	2688	2586	1467	648	3790	108	8756	2565	6282	
+
+G 186  3657	6833	3559	3617	5091	3261	6743	4942	4093	5767	6799	2873	5469	6559	4040	2904	4485	4064	6912	7076	186
+       478	3037	2643	1626	565	2984	195	8524	2095	6840	
+
+F 187  4365	5747	3906	3907	3373	5735	6787	3348	4290	3999	5830	3973	5788	4845	4636	3414	3739	4770	4781	4407	187
+       452	2569	3314	2049	399	2233	345	8507	2518	7004	
+
+Q 188  3723	*	3024	2441	*	7160	5174	4151	3576	4945	4666	3563	3659	4296	5338	3840	5429	4718	*	*	188
+       196	3990	3967	747	1307	2444	293	8578	1504	6602	
+
+F 189  4889	7197	6182	5383	2520	5402	6927	2840	7242	2215	5074	6832	4985	*	*	4215	5446	3951	3858	3770	189
+       358	2521	4448	1253	785	2840	217	8628	2800	6235	
+
+D 190  4253	7145	2919	2781	7033	4025	7343	5430	3925	5194	7043	3546	5029	5186	5364	2751	2847	6943	*	*	190
+       183	3337	5619	1433	667	2131	374	8682	2048	5982	
+
+T 191  4889	6175	4122	3801	7063	4442	4987	4442	3427	5616	5163	4810	5110	3508	2248	4254	4765	3757	7338	5759	191
+       167	3966	4466	1459	652	2855	215	8824	1918	5316	
+
+D 192  4402	*	2279	1803	*	5278	6376	5253	4211	6303	7323	4030	6293	4162	4815	3120	5255	6448	7614	*	192
+       203	3570	4408	2105	382	2523	276	8810	2036	5199	
+
+E 193  3662	6369	2524	2944	4445	6018	5326	5086	4228	4207	*	3721	4631	4128	5295	3880	3736	5444	7179	6609	193
+       525	3293	2300	1924	441	3795	108	8810	2280	5174	
+
+V 194  3095	6805	4493	2982	5429	6969	6802	4079	6064	2670	*	4094	5917	4772	4340	4139	6033	3515	5684	3450	194
+       392	4572	2351	1763	504	2638	253	8722	1366	6369	
+
+N 195  4422	*	2633	2216	*	4414	6691	6981	4633	4114	*	2874	4668	4486	5294	3552	3893	5973	*	*	195
+       184	*	3060	3170	170	4645	59	8652	1000	6686	
+
+F 196  3673	7238	3697	3402	2408	5124	6814	3760	3994	3999	5051	*	*	4252	5367	4236	5780	3734	6657	4185	196
+       197	5774	3192	1000	1000	1421	675	8564	1083	6985	
+
+P 197  3937	5948	5359	5438	6020	5931	6609	2785	6090	2770	4184	4674	3384	4078	7272	4023	4747	2923	*	4779	197
+       180	3367	5626	2759	231	1243	792	8740	2358	5948	
+
+V 198  5902	6770	3906	1194	6377	4946	7231	5643	5102	3561	7170	4819	4594	6532	5535	4850	4326	4447	*	4684	198
+       51	5441	6377	1410	681	1096	910	9038	1347	4443	
+
+D 199  4679	6051	3954	3791	*	3837	5287	6474	3048	5396	*	3219	6805	3163	3944	2567	4377	5069	7672	6262	199
+       32	5950	7375	2019	409	360	2178	9085	1221	3149	
+
+N 200  7587	*	1582	3864	6657	2736	5275	*	4407	*	*	2505	4420	5016	*	4077	5002	6594	7796	*	200
+       99	4432	5624	1903	449	463	1864	9235	1743	1583	
+
+L 201  7397	7436	6498	7264	3449	6350	7386	4740	*	722	3382	*	6392	6450	*	*	6217	5426	5211	4864	201
+       22	6063	*	1293	757	204	2922	9226	1237	1514	
+
+C 202  5102	4609	4535	4335	*	6670	6025	2834	5076	6582	7309	4929	*	5183	4322	5437	1777	2410	7133	7635	202
+       7	7616	*	3322	152	*	0	9295	1000	1000	
+
+F 203  6670	7148	*	*	1253	7791	7983	3708	*	1575	5468	*	6166	*	*	*	*	4858	5165	4508	203
+       7	7710	*	2867	213	0	*	9295	1121	1000	
+
+V 204  3875	4452	7762	5718	6590	6788	8024	2628	6411	1545	5766	*	*	5325	7398	5609	5591	2188	*	6254	204
+       15	6636	*	0	*	*	*	9301	1093	0	
+
+G 205  3102	5422	*	*	*	306	*	*	*	*	*	7489	*	*	*	4457	*	*	*	*	205
+       0	*	*	*	*	*	*	9287	0	0	
+
+L 206  4459	5173	*	*	3037	5872	*	2730	*	1263	3901	*	*	6882	*	6744	5675	3506	8232	5323	206
+       0	*	*	*	*	*	*	9287	0	0	
+
+I 207  3836	5001	*	*	3844	5757	*	2151	*	2806	5665	*	*	7632	*	5198	3377	1830	*	6259	207
+       16	6511	*	2807	222	*	*	9287	1137	0	
+
+S 208  1803	4752	*	7588	7136	1220	*	5008	7355	6368	*	5942	5878	*	7439	3710	6218	4310	*	7345	208
+       13	*	6759	*	*	*	*	9320	0	0	
+
+M 209  6232	7433	*	*	2738	*	*	1444	*	2197	3112	7887	*	7216	*	6721	5736	3533	*	7943	209
+       0	*	*	584	1587	*	0	9311	1117	1117	
+
+I 210  4897	*	5266	2373	5570	8023	7332	3590	4454	3867	3591	5774	7122	3463	3346	3932	6232	3942	*	3685	210
+       0	*	*	*	*	1004	996	9311	0	1117	
+
+D 211  *	5344	240	4391	*	6608	6837	*	*	*	*	4704	*	*	7105	5922	*	*	*	*	211
+       0	*	*	*	*	0	*	9227	0	1013	
+
+P 212  5810	*	4572	4820	*	*	6534	5485	5133	6430	*	6537	483	4252	7158	4611	*	*	*	7638	212
+       0	*	*	*	*	*	*	9132	0	0	
+
+P 213  5071	*	*	6708	*	*	7202	3119	*	2954	*	*	717	*	*	6958	*	3422	*	*	213
+       0	*	*	0	*	*	*	8623	0	0	
+
+//
+�HHsearch 1.5
+NAME  fb5bff21f8955d17ec9c9ef42e3fe2a1
+FAM   
+FILE  fb5bff21f8955d17ec9c9ef42e3fe2a1
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:06:41 2013
+LENG  104 match states, 104 columns in multiple alignment
+FILT  27 out of 29 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  1.6 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCHHHHCCCCHHHHEEEEEEEEHHHHHHHHHHHHHHHHHHHCCCCCHHHHHHHHHHHHCCCCCCCCHHHCCCCCCCCHHHHHHHHHHCCCCCC
+CCCC
+>ss_conf PSIPRED confidence values
+9877660477777270012111578884447998861288899984110010078999999988629989981333004875151999999999199930
+2119
+>Consensus
+xxWngxyixPYaEhGkKseqVKKitvsIPxkVLkiLTdERTRRQvnnLRHATNSELLCEAFLHAfTGQPLPxDxDlxKdxxdxiPxxxkxxmxxxGixxx
+xxxx
+>fb5bff21f8955d17ec9c9ef42e3fe2a1
+AEWSGEYISPYAEHGKKSEQVKKITVSIPLKVLKILTDERTRRKVNNLRHATNSELLCEAFLHAFTGQPLPDDADLRKERSDEIPEAAKEIMREMGINPE
+TWEY
+>gi|33151854|ref|NP_873207.1| transcriptional repressor protein MetJ [Haemophilus ducreyi 35000HP]gi|41017323|sp|Q7VN90.1|METJ_HAEDU RecName: Full=Met repressor; AltName: Full=Met regulon regulatory protein metJgi|33148075|gb|AAP95596.1| met repressor [Haemophilus ducreyi 35000HP]
+INWSGKYISPYAEHGKKSKQVKKITVSIPIKVLEILTNERTRRQINNLRHATNSELLCEAFLHAFTGQPLPADEDLMKERYDEIPEKAKSRMRDLGIDPD
+EWQY
+>gi|336317341|ref|ZP_08572197.1| transcriptional regulator of met regulon [Rheinheimera sp. A13L]gi|335878274|gb|EGM76217.1| transcriptional regulator of met regulon [Rheinheimera sp. A13L]
+AKWNGEYVHPYAEHGKKSEQVKKITVSIPLNVLKVLTDERTRRQVNNLRHATNSELLCEAFLHAFTGQPLPADEDLRKDNPHQIPVEVRNILTSMGKPIP
+VIQeA
+>gi|332142907|ref|YP_004428645.1| transcriptional repressor protein MetJ [Alteromonas macleodii str. 'Deep ecotype']gi|332143048|ref|YP_004428786.1| transcriptional repressor protein MetJ [Alteromonas macleodii str. 'Deep ecotype']gi|327552929|gb|AEA99647.1| transcriptional repressor protein MetJ [Alteromonas macleodii str. 'Deep ecotype']gi|327553070|gb|AEA99788.1| transcriptional repressor protein MetJ [Alteromonas macleodii str. 'Deep ecotype']
+AEWNGKYIHPYAEHGKKSEQVKKVTVSIPINVLKALTDERTRRQINNLRHATNSELLCEAFLHAFTGQPLPNDDDLRKDNPNRVPAEARRIMEEMGIDPS
+FENnV
+>gi|71280244|ref|YP_267212.1| transcriptional repressor protein MetJ [Colwellia psychrerythraea 34H]gi|71145984|gb|AAZ26457.1| met repressor [Colwellia psychrerythraea 34H]
+AQWNEEYINPYAEHGKKSEQVKKITVSIPLRVLKVLTDERTRRQVNNLRHATNSELLCEAFLHAFTGQPLPDDEDLAKDNNEKLPASVRRLLEAKGItDF
+SAYEvE
+>gi|336123089|ref|YP_004565137.1| Met repressor [Vibrio anguillarum 775]gi|335340812|gb|AEH32095.1| Met repressor [Vibrio anguillarum 775]
+ADWNGEYISPYAEHGKKSEQVKKITVSIPLKVLKVLTDERTRRQINNLRHATNSELLCEAFLHAYTGQPLPTDEDLRKDRPDDIPTEAKALMTAMGIEFE
+AYDdeeV
+>gi|85711529|ref|ZP_01042587.1| transcriptional repressor protein MetJ [Idiomarina baltica OS145]gi|85694681|gb|EAQ32621.1| transcriptional repressor protein MetJ [Idiomarina baltica OS145]
+K-WNGDYIYPYAEHGRKSEQVKKVTVSIPTRVLKVLTDERTRRQVKNLRHATNSELLCEAFLHAFTGQPLPTDTDLEKTNPNKIPKAVREELEARGLPIP
+ADDeL
+>gi|336452140|ref|ZP_08622572.1| transcriptional regulator of met regulon [Idiomarina sp. A28L]gi|336280956|gb|EGN74241.1| transcriptional regulator of met regulon [Idiomarina sp. A28L]
+E-WDGEYIYPYAEHGKKSTQVKKITVSIPVNVLKVLTDERTRRQVANLRHATNSELLCEAFLHAFTGQPLPDDEDLRKDNPHKMPKAVREYLDTH--NIP
+YSEdD
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+A 1    774	*	*	4292	*	*	*	4475	4277	*	*	*	*	*	*	*	2116	4764	*	*	1
+       156	*	3285	*	*	*	*	1625	0	0	
+
+E 2    4605	*	2167	1776	*	*	*	*	1961	*	*	3371	*	3461	*	*	*	*	*	*	2
+       59	4641	*	1585	585	0	*	1546	1000	1037	
+
+W 3    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	3
+       0	*	*	*	*	*	*	1586	0	0	
+
+S 4    *	*	2404	*	*	*	*	*	*	*	*	578	*	*	*	2824	*	*	*	*	4
+       0	*	*	*	*	*	*	1586	0	0	
+
+G 5    *	*	*	4574	*	62	*	*	*	*	*	*	*	*	*	*	*	*	*	*	5
+       0	*	*	*	*	*	*	1586	0	0	
+
+E 6    *	*	2737	967	*	*	*	*	2092	*	*	4090	*	4468	*	*	*	*	*	*	6
+       0	*	*	*	*	*	*	1586	0	0	
+
+Y 7    *	*	*	*	4090	*	*	*	*	*	*	*	*	*	*	*	*	*	*	87	7
+       0	*	*	*	*	*	*	1586	0	0	
+
+I 8    *	*	*	*	*	*	*	110	*	*	*	*	*	*	*	*	*	3764	*	*	8
+       0	*	*	*	*	*	*	1586	0	0	
+
+S 9    *	*	*	*	*	*	2482	*	*	*	*	2880	*	*	*	758	*	*	*	3415	9
+       0	*	*	*	*	*	*	1586	0	0	
+
+P 10   *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	10
+       0	*	*	*	*	*	*	1586	0	0	
+
+Y 11   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	11
+       0	*	*	*	*	*	*	1586	0	0	
+
+A 12   87	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	4090	*	*	12
+       0	*	*	*	*	*	*	1586	0	0	
+
+E 13   *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	13
+       0	*	*	*	*	*	*	1586	0	0	
+
+H 14   *	*	*	*	*	*	67	*	*	*	*	*	*	4468	*	*	*	*	*	*	14
+       0	*	*	*	*	*	*	1586	0	0	
+
+G 15   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	15
+       0	*	*	*	*	*	*	1586	0	0	
+
+K 16   *	*	*	4090	*	*	*	*	160	*	*	*	*	*	4436	*	*	*	*	*	16
+       0	*	*	*	*	*	*	1586	0	0	
+
+K 17   *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	17
+       0	*	*	*	*	*	*	1586	0	0	
+
+S 18   *	*	*	*	*	*	*	*	3413	*	*	2853	*	*	*	381	*	*	*	*	18
+       0	*	*	*	*	*	*	1586	0	0	
+
+E 19   *	*	4090	234	*	*	*	*	4531	*	*	*	*	*	*	*	4396	*	*	*	19
+       0	*	*	*	*	*	*	1586	0	0	
+
+Q 20   *	*	*	*	*	*	*	*	4090	*	*	*	*	87	*	*	*	*	*	*	20
+       0	*	*	*	*	*	*	1586	0	0	
+
+V 21   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	21
+       0	*	*	*	*	*	*	1586	0	0	
+
+K 22   *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	22
+       0	*	*	*	*	*	*	1586	0	0	
+
+K 23   *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	23
+       0	*	*	*	*	*	*	1586	0	0	
+
+I 24   *	*	*	*	*	*	*	341	*	5564	*	*	*	*	*	*	*	2402	*	*	24
+       0	*	*	*	*	*	*	1586	0	0	
+
+T 25   *	*	*	*	*	*	*	*	*	*	*	*	*	*	5564	*	31	*	*	*	25
+       0	*	*	*	*	*	*	1586	0	0	
+
+V 26   *	*	*	*	5564	*	*	*	*	*	*	*	*	*	*	*	*	31	*	*	26
+       0	*	*	*	*	*	*	1586	0	0	
+
+S 27   *	4479	*	*	*	*	*	*	*	*	*	*	*	*	*	66	*	*	*	*	27
+       0	*	*	*	*	*	*	1646	0	0	
+
+I 28   *	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	28
+       0	*	*	*	*	*	*	1646	0	0	
+
+P 29   *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	29
+       0	*	*	*	*	*	*	1646	0	0	
+
+L 30   *	*	*	*	4162	*	*	2037	*	946	*	*	*	*	*	*	2910	4371	*	*	30
+       0	*	*	*	*	*	*	1646	0	0	
+
+K 31   *	*	*	*	*	*	*	*	613	*	*	2344	*	*	3424	4162	*	*	*	*	31
+       0	*	*	*	*	*	*	1646	0	0	
+
+V 32   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	32
+       0	*	*	*	*	*	*	1646	0	0	
+
+L 33   *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	33
+       0	*	*	*	*	*	*	1646	0	0	
+
+K 34   *	*	*	2567	*	*	*	*	267	*	*	*	*	*	*	*	*	*	*	*	34
+       0	*	*	*	*	*	*	1646	0	0	
+
+I 35   4805	*	*	*	*	*	*	1013	*	*	*	*	*	*	*	*	*	1093	*	*	35
+       0	*	*	*	*	*	*	1646	0	0	
+
+L 36   *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	36
+       0	*	*	*	*	*	*	1646	0	0	
+
+T 37   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	37
+       0	*	*	*	*	*	*	1646	0	0	
+
+D 38   *	*	267	*	*	*	*	*	*	*	*	2567	*	*	*	*	*	*	*	*	38
+       0	*	*	*	*	*	*	1646	0	0	
+
+E 39   *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	39
+       0	*	*	*	*	*	*	1646	0	0	
+
+R 40   *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	40
+       0	*	*	*	*	*	*	1646	0	0	
+
+T 41   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	41
+       0	*	*	*	*	*	*	1646	0	0	
+
+R 42   *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	42
+       0	*	*	*	*	*	*	1646	0	0	
+
+R 43   *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	43
+       0	*	*	*	*	*	*	1646	0	0	
+
+K 44   *	*	*	*	*	*	*	*	4766	*	*	*	*	54	*	*	*	*	*	*	44
+       0	*	*	*	*	*	*	1646	0	0	
+
+V 45   *	*	*	*	*	*	*	1390	*	4418	*	*	*	*	*	*	*	807	*	*	45
+       0	*	*	*	*	*	*	1646	0	0	
+
+N 46   4371	*	*	*	*	3817	*	*	2878	*	*	501	*	*	4718	*	*	*	*	*	46
+       0	*	*	*	*	*	*	1646	0	0	
+
+N 47   *	*	*	*	*	*	*	*	*	*	*	69	*	*	*	4418	*	*	*	*	47
+       0	*	*	*	*	*	*	1646	0	0	
+
+L 48   *	*	*	*	*	*	*	*	*	57	*	*	*	4684	*	*	*	*	*	*	48
+       0	*	*	*	*	*	*	1646	0	0	
+
+R 49   *	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	49
+       0	*	*	*	*	*	*	1646	0	0	
+
+H 50   *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	50
+       0	*	*	*	*	*	*	1646	0	0	
+
+A 51   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	51
+       0	*	*	*	*	*	*	1646	0	0	
+
+T 52   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	52
+       0	*	*	*	*	*	*	1646	0	0	
+
+N 53   *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	53
+       0	*	*	*	*	*	*	1646	0	0	
+
+S 54   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	54
+       0	*	*	*	*	*	*	1646	0	0	
+
+E 55   *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	55
+       0	*	*	*	*	*	*	1646	0	0	
+
+L 56   *	*	*	*	*	*	*	*	*	27	5747	*	*	*	*	*	*	*	*	*	56
+       0	*	*	*	*	*	*	1646	0	0	
+
+L 57   *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	57
+       0	*	*	*	*	*	*	1646	0	0	
+
+C 58   *	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	58
+       0	*	*	*	*	*	*	1646	0	0	
+
+E 59   *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	59
+       0	*	*	*	*	*	*	1646	0	0	
+
+A 60   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	60
+       0	*	*	*	*	*	*	1646	0	0	
+
+F 61   *	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	61
+       0	*	*	*	*	*	*	1646	0	0	
+
+L 62   *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	62
+       0	*	*	*	*	*	*	1646	0	0	
+
+H 63   *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	63
+       0	*	*	*	*	*	*	1646	0	0	
+
+A 64   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	64
+       0	*	*	*	*	*	*	1646	0	0	
+
+F 65   *	*	*	*	691	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1394	65
+       0	*	*	*	*	*	*	1646	0	0	
+
+T 66   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	66
+       0	*	*	*	*	*	*	1646	0	0	
+
+G 67   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	67
+       0	*	*	*	*	*	*	1646	0	0	
+
+Q 68   *	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	68
+       0	*	*	*	*	*	*	1646	0	0	
+
+P 69   *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	69
+       0	*	*	*	*	*	*	1646	0	0	
+
+L 70   *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	70
+       0	*	*	*	*	*	*	1646	0	0	
+
+P 71   *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	71
+       0	*	*	*	*	*	*	1646	0	0	
+
+D 72   2664	4820	2971	4679	*	*	*	*	*	*	*	1859	*	4839	*	*	1601	*	*	*	72
+       0	*	*	*	*	*	*	1646	0	0	
+
+D 73   *	*	59	*	*	*	*	*	*	*	*	4652	*	*	*	*	*	*	*	*	73
+       0	*	*	*	*	*	*	1646	0	0	
+
+A 74   3645	*	1239	1580	*	4679	*	*	*	*	*	3740	*	*	*	*	4381	*	*	*	74
+       0	*	*	*	*	*	*	1646	0	0	
+
+D 75   *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	75
+       0	*	*	*	*	*	*	1646	0	0	
+
+L 76   *	*	*	*	*	*	*	3751	*	111	*	*	*	*	*	*	*	*	*	*	76
+       0	*	*	*	*	*	*	1646	0	0	
+
+R 77   4508	*	4679	4381	*	4707	*	*	4697	4753	2985	*	*	4784	935	3845	*	*	*	*	77
+       0	*	*	*	*	*	*	1646	0	0	
+
+K 78   *	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	78
+       0	*	*	*	*	*	*	1646	0	0	
+
+E 79   *	*	707	1934	*	4697	*	*	*	*	*	4679	*	*	*	*	4381	*	*	*	79
+       0	*	*	*	*	*	*	1646	0	0	
+
+R 80   *	4733	*	*	*	*	4820	*	2789	*	*	1634	*	3759	1522	*	*	*	*	4715	80
+       0	*	*	*	*	*	*	1646	0	0	
+
+S 81   3784	*	3448	*	*	*	4753	4844	4697	*	*	2921	1252	*	*	2934	*	*	*	4559	81
+       0	*	*	*	*	*	*	1646	0	0	
+
+D 82   *	*	647	3689	*	*	3527	*	*	*	*	2662	*	*	*	*	4679	*	*	*	82
+       0	*	*	*	*	*	*	1646	0	0	
+
+E 83   4733	*	3855	1934	*	3201	*	*	2529	*	*	4707	*	4680	3185	3795	4845	*	*	4175	83
+       0	*	*	*	*	*	*	1646	0	0	
+
+I 84   *	*	*	*	*	*	*	645	*	3616	4388	*	*	*	*	*	*	2114	*	*	84
+       0	*	*	*	*	*	*	1646	0	0	
+
+P 85   *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	85
+       0	*	*	*	*	*	*	1686	0	0	
+
+E 86   1837	*	*	1544	*	*	*	*	3263	4628	*	*	*	4453	*	3157	4917	4580	*	*	86
+       0	*	*	*	*	*	*	1686	0	0	
+
+A 87   2021	*	3574	1001	*	*	*	*	4480	*	*	*	*	*	*	2999	*	*	*	*	87
+       0	*	*	*	*	*	*	1686	0	0	
+
+A 88   794	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1240	*	*	88
+       0	*	*	*	*	*	*	1686	0	0	
+
+K 89   *	*	*	*	*	*	*	*	913	4702	*	*	*	4628	1357	*	*	*	*	*	89
+       0	*	*	*	*	*	*	1686	0	0	
+
+E 90   2374	*	*	2823	*	*	*	4453	3148	*	*	3632	*	3648	2075	4480	*	3952	*	*	90
+       0	*	*	*	*	*	*	1686	0	0	
+
+I 91   *	*	*	4257	*	*	*	1687	4585	1531	3764	*	*	4640	4480	*	*	4686	*	4269	91
+       0	*	*	*	*	*	*	1686	0	0	
+
+M 92   *	*	*	*	*	*	*	*	*	2382	307	*	*	*	*	*	*	*	*	*	92
+       0	*	*	*	*	*	*	1686	0	0	
+
+R 93   4628	*	2953	1799	*	*	*	*	3638	4640	*	*	*	3738	2113	4585	3739	*	*	*	93
+       0	*	*	*	*	*	*	1686	0	0	
+
+E 94   1820	*	3467	1134	*	*	*	*	4650	*	*	*	*	4747	*	4580	4269	*	*	*	94
+       0	*	*	*	*	*	*	1686	0	0	
+
+M 95   *	*	*	*	*	*	4222	*	4384	1300	1192	*	*	*	4188	*	*	*	*	*	95
+       79	*	4222	*	*	*	*	1676	0	0	
+
+G 96   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	96
+       0	*	*	*	*	*	0	1652	0	1007	
+
+I 97   *	*	*	*	*	*	*	816	2911	2123	*	*	*	*	*	*	*	3847	*	*	97
+       76	4287	*	0	*	0	*	1652	1002	1007	
+
+N 98   4683	*	1841	2084	*	*	*	*	*	*	*	1919	2833	*	*	*	4597	*	*	*	98
+       0	*	*	*	*	*	*	1676	0	0	
+
+P 99   4583	*	*	*	3003	*	*	1666	*	*	*	*	1637	*	*	*	*	4688	3100	4597	99
+       0	*	*	*	*	*	*	1676	0	0	
+
+E 100  *	*	1846	1317	*	*	*	*	*	*	*	4561	2390	*	*	3518	*	*	*	*	100
+       0	*	*	*	*	*	*	1676	0	0	
+
+T 101  2786	*	2577	2916	4579	*	*	4607	4512	*	*	3563	*	*	*	2900	3194	4465	*	4182	101
+       0	*	*	*	*	*	*	1669	0	0	
+
+W 102  *	*	4114	2954	4604	*	*	3504	*	3034	*	*	*	*	*	4182	*	4627	1776	2521	102
+       64	4534	*	1000	1000	*	*	1669	1000	0	
+
+E 103  *	*	2193	1075	*	*	*	*	*	*	*	2992	*	2468	*	*	*	*	*	*	103
+       1382	699	*	368	2150	*	*	1669	1261	0	
+
+Y 104  3795	*	3687	2218	*	*	*	*	*	3568	*	*	*	*	*	*	*	2942	*	1248	104
+       0	*	*	0	*	*	*	1637	0	0	
+
+//
+�HHsearch 1.5
+NAME  fc94ceafa368716b735a0cc814095abc
+FAM   
+FILE  fc94ceafa368716b735a0cc814095abc
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:35:38 2013
+LENG  170 match states, 170 columns in multiple alignment
+FILT  132 out of 1139 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  8.7 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCCCCCCCCCEEEEEEECCCCCCCHHHHHHHHHHHHHHHHHCCCCEEEEECCCCCCEEEEEEECCCCCCCCCCCCCCEEEEEECCCCCCCCEEEECC
+CCCCCCCCCCCCCCEEEEHHHHHHHCCCCCCCCCCCEECCCCCCCCCCCCCCCHHHHHHHHHHHCCCCCC
+>ss_conf PSIPRED confidence values
+9216889878898888999278887688999999999999997068843899347777579987524678865556765504665548888465088645
+3210236776620101145553755178868999762167035786776888999999999985889899
+>Consensus
+xxxxxxxxxWxxxxityxxxxxxxxxxxxxxxxxvxxAxxxWxxxxxlxFxxxxxxxadixixxxxxxxxxxxxxxgxxxxlaxaxxpxxxxxgxixxxx
+xxxxxxxxxxxxxxxxxxxHElGHaLGLxHxxxxxsvMxxxxxxxxxxxxxlxxxDixxixxlYgxxxxx
+>fc94ceafa368716b735a0cc814095abc
+YSLFPNSPKWTSKVVTYRIVSYTRDLPHITVDRLVSKALNMWGKEIPLHFRKVVWGTADIMIGFARGAHGDSYPFDGPGNTLAHAFAPGTGLGGDAHFDE
+DERWTDGSSLGINFLYAATHELGHSLGMGHSSDPNAVMYPTYGNGDPQNFKLSQDDIKGIQKLYGKRSNS
+>gi|73955226|ref|XP_854613.1| PREDICTED: similar to Interstitial collagenase precursor (Matrix metalloproteinase-1) (MMP-1) (Fibroblast collagenase) [Canis familiaris]
+----------------YNLKTGTNKSVRQRNDSLVAEKLKQMQAFFGLKVTGKVnTDTLNLMKQPRCGC-PmwlSTSSLMGANGT-THIrYIY-------
+-------------FGDVLLSQKDIDAPRHSMRL-HSKCFCVTSLPT--------------SLDFRTFIYAlvHSKN-
+>gi|116334127|ref|YP_795654.1| Zn-dependent protease [Lactobacillus brevis ATCC 367]gi|116099474|gb|ABJ64623.1| Predicted Zn-dependent protease [Lactobacillus brevis ATCC 367]
+------TAaktpswgSWDDTTITYKTENTSS-----YYQSIWKNAVKRWNKVGVVKLKAATTGeKADITLTSSAS-LSTQGG--KLAGYTNYSYYKKSG-
+NDQI-VSAKSTLNRSllSKYDytkNQRTNVATHEIGHALGLSHSASKKSVMYASDRY-----ASIDYQDKVALNNAYNN----
+>gi|104783199|ref|YP_609697.1| hypothetical protein PSEEN4224 [Pseudomonas entomophila L48]gi|95112186|emb|CAK16913.1| hypothetical protein PSEEN4224 [Pseudomonas entomophila L48]
+------------RVLKVAFLGSP----DEFLKSEIFRTASQWLlrsgANLSLALTWDNDSQAQIKVRTGRTLP-RNESCAGTDALAM----PAE----TM
+NLNV-------EPGDATFEHVVLHEFGHALGAEHE---------------------------------------
+>gi|302865602|ref|YP_003834239.1| peptidase M7 snapalysin [Micromonospora aurantiaca ATCC 27029]gi|315502150|ref|YP_004081037.1| peptidase m7 snapalysin [Micromonospora sp. L5]gi|302568461|gb|ADL44663.1| peptidase M7 snapalysin [Micromonospora aurantiaca ATCC 27029]gi|315408769|gb|ADU06886.1| peptidase M7 snapalysin [Micromonospora sp. L5]
+------------RNVCYNIS------QAGPFANTAVQAAAIWNnYTNNINMAQCG---snlrITY---TYg------GGSYAQRTSL-------G---NG
+RVVIDYYQ------AQQYSPLRIMTHEIGHILGLpDNYNGNCAiLMSGGSAGTSCTNPYPSSTEAARVDSLFGfaA----
+>gi|310820673|ref|YP_003953031.1| hypothetical protein STAUR_3414 [Stigmatella aurantiaca DW4/3-1]gi|309393745|gb|ADO71204.1| conserved uncharacterized protein [Stigmatella aurantiaca DW4/3-1]
+-------LFWTVPRITWNQSTLGnPGTqpAGSEF-EAVRRSFQSWQDVFsscgNITFEEGPrvadrdvgyvsKgENRNL-VLFRTRQCTvgSvvpaedpc
+weddvcGNVydcWSNGNETIAVTLttyDENTGiiYDSDIELNAVVfSFTTADgprctppltqgCVATDIQNTMTHEIGHLVGLDHTDAPNSTMNPRAPPG
+ETSKRTIDAGSRAFVCESY------
+>gi|339482545|ref|YP_004694331.1| chitinase C [Nitrosomonas sp. Is79A3]gi|338804690|gb|AEJ00932.1| chitinase C; ChiC [Nitrosomonas sp. Is79A3]
+-------AKWAGNNYTVRASSV--GFPVGSWRDALSSVITHWNGNpSNLSYGVVW-DEPGVAAN-----NNENETwWEANNGSnigtyPAvtytw---FN
+SsCNIkEADVIFNNSVAYHYTTsktslwpYGGasRPFQTTAMHEFGHAGGLAHTANTYNIMGQDWTHIHAngstAMAYSGEDANSGLVAVYGLW---
+>gi|119570361|gb|EAW49976.1| tolloid-like 2, isoform CRA_b [Homo sapiens]
+-------SSPDTTAMDTGTKEA---G-KGSQRAIFKQAMRHWEKHTCVTFIERTDEESFIV--FSYRTCG-CCSYVGRRGGGPQAISI------------
+--------GKNCDKFGIVAHELGHVVGFWHEHtrpDRDqhvTIIRENIQPGQEYNFlKMEAGEVSSLGETY------
+>gi|195386972|ref|XP_002052178.1| GJ23077 [Drosophila virilis]gi|194148635|gb|EDW64333.1| GJ23077 [Drosophila virilis]
+------TRHWPNATVYYKIDE---QFSA-AQIQHIELGMRRLELVSCIRFLPASEETV------------------------------------------
+----------------------------------------------------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+Y 1    *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	1
+       0	*	*	*	*	*	*	2912	0	0	
+
+S 2    *	*	*	*	*	*	2246	*	2293	*	*	*	*	*	2251	1415	*	*	*	*	2
+       0	*	*	*	*	*	*	2912	0	0	
+
+L 3    *	*	*	*	2971	*	*	*	*	2156	3039	*	*	*	3099	2182	3429	*	*	3375	3
+       0	*	*	*	*	*	*	4086	0	0	
+
+F 4    3746	*	*	*	1158	2903	*	2781	*	3740	*	*	*	*	*	*	3018	*	*	*	4
+       0	*	*	*	*	*	*	5156	0	0	
+
+P 5    2672	*	4615	*	*	4532	*	4525	*	*	*	4438	1693	4537	*	1863	*	*	*	4563	5
+       267	2896	4849	2959	199	*	*	6203	1384	0	
+
+N 6    2958	*	4078	3545	*	3474	*	*	*	5258	*	3454	3600	3782	4098	2198	5277	*	*	4015	6
+       0	*	*	*	*	0	*	7121	0	1012	
+
+S 7    3406	*	2473	3648	*	2497	4190	5635	4563	5577	*	3523	4578	5699	4518	5634	3316	5780	*	*	7
+       0	*	*	*	*	*	*	7921	0	0	
+
+P 8    3675	5981	6014	4225	3886	4247	5080	3537	4688	3503	*	3606	3045	*	3576	3511	6427	4741	*	4323	8
+       18	6333	*	2807	222	*	*	8448	1000	0	
+
+K 9    4748	*	*	5412	6220	5230	6137	4571	1761	4193	*	4759	4312	6036	2077	4506	4892	5338	*	4284	9
+       0	*	*	*	*	*	*	8634	0	0	
+
+W 10   6513	*	*	6344	5398	*	*	*	*	*	*	6436	6366	*	*	*	6499	*	163	5299	10
+       218	2835	*	1034	967	*	*	8678	2506	0	
+
+T 11   4073	*	3288	4094	*	3026	*	6787	4160	*	*	3748	2137	3627	5314	3606	3865	5425	*	6630	11
+       154	3303	*	1688	536	*	*	8706	1912	0	
+
+S 12   4544	6348	3951	4927	*	2796	4169	4782	2903	6185	*	3271	6504	3683	4511	3819	3072	4723	*	*	12
+       101	4079	6919	2587	263	*	*	8706	1558	0	
+
+K 13   3508	*	3905	5484	5512	3922	6516	*	3196	3929	7207	3805	4878	7468	2904	4138	2799	4148	*	4607	13
+       0	*	*	*	*	0	*	8923	0	1000	
+
+V 14   5869	6836	4550	4669	6474	5783	4287	4802	3565	5380	*	3342	3559	6479	5058	4687	1849	3098	*	6760	14
+       0	*	*	*	*	*	*	8990	0	0	
+
+V 15   4923	*	*	*	5063	*	*	1771	*	1657	5133	*	*	*	6117	*	*	1875	*	6433	15
+       0	*	*	*	*	*	*	8990	0	0	
+
+T 16   *	*	5097	5098	5578	4733	4778	6733	3325	6766	6940	3961	4415	*	3544	4189	1282	5428	6674	5374	16
+       0	*	*	*	*	*	*	8990	0	0	
+
+Y 17   *	*	*	*	3656	*	*	4179	*	6737	*	*	*	*	*	*	6867	2994	2630	835	17
+       0	*	*	*	*	*	*	9089	0	0	
+
+R 18   3581	4062	5217	5134	4993	4036	6596	*	4261	6649	*	3655	*	5542	2699	2755	3961	4764	*	2917	18
+       0	*	*	*	*	*	*	9089	0	0	
+
+I 19   4617	6784	5774	*	1995	*	6658	1824	*	2854	*	5501	6532	6556	*	*	5870	2906	5371	4951	19
+       13	6799	*	0	*	*	*	9089	1042	0	
+
+V 20   3683	6897	2737	3871	7287	5126	6596	5502	4196	3605	5349	4110	4770	4612	4633	2596	5167	4022	6892	5170	20
+       97	5981	4349	562	1632	*	*	9102	1091	0	
+
+S 21   3751	*	3139	4126	*	5609	*	*	4583	4644	*	2558	3716	5040	6519	2716	2719	4309	*	6503	21
+       340	3008	3549	775	1267	*	0	9022	2511	1521	
+
+Y 22   3982	*	5380	3632	4576	2818	5730	6474	5312	4209	*	4597	4906	6417	5477	2758	3286	4223	5606	3241	22
+       210	4091	3702	1905	448	1207	819	8897	1538	2552	
+
+T 23   4632	*	3880	5585	4942	3632	5540	4717	5498	5362	6591	3675	2333	5112	*	2557	2811	6303	*	6568	23
+       639	2316	2669	2461	289	2901	207	8910	3165	2692	
+
+R 24   4142	*	4129	6447	3856	3654	5251	5416	4805	6282	*	5265	1853	3863	5278	2454	5338	6583	*	6264	24
+       212	3890	3855	2750	232	1620	568	8670	1517	3913	
+
+D 25   4372	*	2559	3935	6314	2736	4467	*	3466	6207	6103	4639	4526	3558	4969	3874	4357	6426	6149	4411	25
+       177	3645	4810	1697	532	1619	568	8782	1816	3598	
+
+L 26   5282	*	4814	4475	3084	4386	6424	2453	6627	2020	4126	*	*	6692	*	3852	4224	4761	*	4309	26
+       201	4186	3735	2466	288	1167	850	8857	1483	3101	
+
+P 27   4463	*	3408	4693	5534	3010	6459	*	*	*	*	3230	3522	4792	4496	2453	2762	4680	*	5527	27
+       208	4035	3766	2748	232	1535	611	8962	1566	3007	
+
+H 28   3231	*	3724	4015	6156	6426	4853	5703	5622	4212	6746	4021	2865	4510	3309	3549	3687	4719	*	4375	28
+       111	4895	4629	2361	312	1449	658	9019	1262	3091	
+
+I 29   3110	*	3192	3270	5637	3284	*	5948	5614	6463	8938	4042	3698	3812	5722	2515	4087	6778	*	5183	29
+       100	6745	4118	0	*	1023	978	9151	1000	2779	
+
+T 30   2867	*	4260	2506	5554	3952	4369	5721	4294	6566	*	3518	*	3783	3663	4108	4984	4677	6554	4584	30
+       79	6502	4570	0	*	486	1807	9145	1015	2578	
+
+V 31   6002	*	6774	5052	3426	4852	7049	3991	5720	3956	4114	4743	5864	3215	*	6710	5330	2398	3798	2760	31
+       97	*	3943	*	*	597	1561	9167	0	2005	
+
+D 32   4039	*	4345	3673	*	4667	5451	5030	2606	3679	6898	5891	*	3143	2365	4972	4229	4568	6796	7051	32
+       0	*	*	*	*	145	3391	9181	0	2271	
+
+R 33   2639	*	2970	3338	6908	5220	6673	4607	3552	*	*	4110	5399	3663	4471	2886	3553	5996	*	*	33
+       0	*	*	*	*	0	*	9224	0	1009	
+
+L 34   1530	*	6979	5323	8435	4983	5063	3452	5460	2726	6715	6094	6320	4085	6536	4958	4243	4080	7245	4872	34
+       0	*	*	*	*	*	*	9239	0	0	
+
+V 35   3863	6544	*	*	3898	6769	*	1989	*	2409	4708	*	*	*	*	*	5939	1831	5382	4493	35
+       10	7195	*	0	*	*	*	9258	1021	0	
+
+S 36   2860	*	5103	3061	6801	5255	4793	4885	3362	4913	6785	3459	*	3356	2663	5054	4782	4682	6914	6893	36
+       14	*	6680	*	*	*	*	9258	0	0	
+
+K 37   3089	*	4019	2509	5917	4943	6646	6679	2977	5006	*	4253	*	3347	3760	3159	4492	*	6093	5466	37
+       0	*	*	*	*	*	0	9239	0	1025	
+
+A 38   562	*	*	*	*	3884	*	5141	5572	6708	6855	*	*	7145	*	3697	5507	4180	*	5269	38
+       13	6758	*	0	*	*	0	9239	1000	1025	
+
+L 39   3110	*	*	*	2067	6693	*	2545	6662	2531	3166	*	*	*	*	6583	4581	3292	6903	7056	39
+       17	6393	*	1585	585	0	*	9239	1034	1025	
+
+N 40   2547	*	3593	3493	*	4842	6135	*	3085	6760	*	3207	*	2713	3748	4123	3864	7078	*	6343	40
+       0	*	*	*	*	*	*	9258	0	0	
+
+M 41   3688	*	7052	3116	5359	6714	4350	7023	3681	3520	4540	4800	6343	3741	3603	3258	3938	4746	5432	3937	41
+       0	*	*	*	*	*	*	9258	0	0	
+
+W 42   7063	*	*	*	4750	*	*	3364	*	4677	5065	*	*	*	*	*	6444	8436	465	4307	42
+       10	7212	*	0	*	*	*	9258	1000	0	
+
+G 43   2883	*	5312	2614	*	5284	*	6537	5805	5415	5517	2020	6875	3859	5402	2452	5892	5595	*	6886	43
+       43	5495	7103	0	*	0	*	9253	1264	1000	
+
+K 44   2700	*	3085	3523	6338	4371	6976	5443	2739	6671	*	3441	4315	4407	7207	3049	4176	*	6781	6886	44
+       34	5423	*	0	*	*	0	9254	1300	1000	
+
+E 45   2812	*	*	7287	4131	5663	3836	3374	8596	4143	7026	4053	6002	4687	5517	5886	4259	2048	*	3418	45
+       95	3978	*	1066	937	0	*	9254	1907	1000	
+
+I 46   3050	6122	6153	5922	3917	3311	6742	3335	7112	3494	*	4763	*	6949	6714	2540	2582	3846	*	*	46
+       136	3474	*	1955	430	*	*	9256	2305	0	
+
+P 47   4476	3326	3553	4656	*	2582	6698	*	4182	6081	*	2306	2839	*	4779	4356	5371	4939	*	*	47
+       223	2870	7239	2060	396	*	*	9256	2751	0	
+
+L 48   5467	*	6789	6892	3534	5283	6875	2169	5656	1681	7041	*	5843	*	6926	*	5257	2274	*	5698	48
+       25	5878	*	1582	587	0	*	9255	1111	1000	
+
+H 49   5006	*	3811	4087	5597	5978	4099	5459	2692	5791	*	3306	7027	4317	3247	3541	2480	5721	*	*	49
+       12	6914	*	0	*	*	*	9256	1000	0	
+
+F 50   6916	*	*	6722	642	*	*	4559	*	2936	4645	*	6714	*	*	*	6979	4083	5812	4867	50
+       12	*	6885	*	*	*	*	9256	0	0	
+
+R 51   4596	*	5261	3508	*	5744	*	4260	4067	5008	*	4733	*	3574	3969	3725	2583	2178	7147	5203	51
+       18	6307	*	1000	1000	0	*	9253	1078	1000	
+
+K 52   4633	*	5800	1649	4569	5037	4688	5882	3688	5020	5295	6135	3949	3713	3713	*	4868	5326	5811	4261	52
+       60	5364	5954	2466	288	*	*	9256	1238	0	
+
+V 53   3162	*	4753	6872	6962	5257	6969	4125	5573	4449	6590	4882	*	4708	5006	3877	2609	1719	6657	5865	53
+       47	6043	5874	3605	124	*	0	9211	1112	1154	
+
+V 54   3981	6652	3517	4279	7172	3347	*	*	4421	7010	*	3064	3866	5723	4750	2856	2574	4543	6760	5280	54
+       1668	778	3291	1162	854	1792	491	9188	6809	1427	
+
+W 55   2822	*	2780	4297	5868	3957	5868	*	3635	6475	6081	5215	4093	5837	5612	3287	3111	4870	5786	3991	55
+       93	4416	6007	1820	481	210	2884	9115	1545	2777	
+
+G 56   3503	*	2573	3205	*	2877	5799	*	*	6037	*	3436	4425	3753	4913	2878	3854	6103	*	*	56
+       23	5981	*	2027	406	412	2009	9228	1112	1376	
+
+T 57   4705	*	3328	3790	5881	4462	4876	4623	3840	4133	7104	3401	3289	3829	3346	4988	3836	6668	6669	4972	57
+       17	6407	*	0	*	*	0	9261	1034	1000	
+
+A 58   1421	4717	5375	5891	6789	4321	5926	6716	5112	4707	6814	5356	3504	5520	6955	2955	4521	4973	6750	5037	58
+       55	5368	6216	1204	821	*	0	9261	1235	1000	
+
+D 59   7154	*	1185	4795	5591	5363	*	*	5482	8018	5587	2295	5730	4986	4845	4261	4166	6569	*	5817	59
+       43	5456	7192	669	1431	*	0	9270	1283	1218	
+
+I 60   5964	4958	6816	*	3514	5930	6977	1409	*	2422	7149	6540	6710	*	6758	5230	5426	2593	*	5987	60
+       37	6768	5954	1000	1000	2038	403	9296	1018	1328	
+
+M 61   4146	6988	5934	5715	6855	6557	5490	3937	4428	3973	4273	4345	6750	4272	2511	*	2777	2807	7160	4319	61
+       33	6783	6200	0	*	2121	377	9262	1011	1460	
+
+I 62   4347	*	*	*	3763	*	*	1508	4991	2834	4723	6997	*	6643	6915	5769	6709	2029	6661	7117	62
+       88	6018	4512	1009	991	2753	232	9262	1095	1601	
+
+G 63   4168	*	4458	5269	5357	2989	*	4852	4879	3981	6896	5608	*	4133	3478	2616	3477	3559	*	3693	63
+       80	6779	4476	1585	585	1061	941	9240	1000	2190	
+
+F 64   4133	*	6096	6806	1884	5800	*	4749	*	4417	5667	3521	4701	5931	4932	4275	4712	4640	2784	3698	64
+       49	*	4911	*	*	3470	136	9211	0	2203	
+
+A 65   3770	*	3306	3772	4600	2965	*	5787	4573	5309	6540	4948	*	4078	3153	4338	4336	3488	6630	3560	65
+       133	5165	4049	1923	442	1218	810	9165	1317	2565	
+
+R 66   4425	5353	3343	5103	*	7093	6689	5149	4275	4570	*	2661	4348	4467	4238	2726	2857	5170	*	4644	66
+       259	*	2605	*	*	*	0	9161	0	2675	
+
+G 67   3281	*	3618	4352	5375	2223	5594	*	4324	4153	*	4516	4489	4781	3341	3870	3726	5340	*	6693	67
+       204	5053	3297	966	1035	2089	387	8982	1230	4425	
+
+A 68   3800	5179	2525	3885	4486	4301	6544	5405	6797	4930	6780	3600	4064	4466	5106	3758	3649	3508	6415	6830	68
+       410	6431	2083	1000	1000	1432	668	8851	1005	4605	
+
+H 69   4712	5552	3814	4650	6269	5318	2112	4684	5358	4039	6713	3574	4872	5484	5582	3398	4683	3795	6230	4439	69
+       156	4719	3952	800	1232	2438	294	8759	1237	5224	
+
+G 70   3651	*	4577	*	4355	1517	*	6198	4611	6493	*	3504	4380	4957	4838	3262	4924	4555	*	4985	70
+       471	3358	2465	1159	857	3711	115	8955	1964	4990	
+
+D 71   4670	3282	1808	4581	6042	4427	*	4886	6450	4478	*	4413	4664	4527	6249	3983	3630	6421	4556	4731	71
+       282	3310	3705	2455	291	2173	362	8754	1792	5886	
+
+S 72   3941	3375	4362	4467	5422	2613	*	6234	5761	6221	5989	3869	4870	6393	4394	2842	3783	4465	4701	4677	72
+       211	4374	3504	1295	755	2849	215	8817	1461	5483	
+
+Y 73   3225	5445	4965	3680	6235	3296	*	5098	6058	4964	*	4344	6191	6215	4420	2564	5016	3729	3261	3923	73
+       206	3950	3869	1743	512	2979	196	8818	1459	5586	
+
+P 74   4213	5757	5203	4735	4443	3985	6599	*	5318	4765	5264	5093	2418	4935	5556	2247	3233	4525	*	5334	74
+       170	3778	4703	709	1364	2363	312	8799	1778	5503	
+
+F 75   4059	6238	6307	6336	1950	*	*	3238	5075	2941	5468	6545	*	4936	5460	4485	4137	4046	4328	3706	75
+       86	*	4103	*	*	2445	293	8953	0	5034	
+
+D 76   3902	*	1630	5215	5975	4990	*	3934	5834	5500	4684	4353	5419	6479	6713	3508	3728	3266	*	4995	76
+       34	*	5433	*	*	2587	263	9047	0	4843	
+
+G 77   4488	*	3910	4944	5923	1057	*	5047	3666	5023	6511	4774	6198	6531	5297	4408	4679	4801	*	*	77
+       118	6630	3870	1000	1000	1467	648	9089	1000	4525	
+
+P 78   3724	6662	5216	6277	6735	4520	5748	5508	3617	3835	5549	4002	2971	4534	3213	3257	4009	4450	*	4195	78
+       181	4169	3997	1285	762	906	1100	9158	1531	4174	
+
+G 79   3570	*	3457	4328	6021	2101	6214	4336	4505	4831	6814	3205	*	4130	5025	3375	3762	6781	*	*	79
+       161	3515	5810	1625	565	502	1766	9179	2147	3191	
+
+N 80   4346	6006	3804	4526	*	1287	6033	6843	5300	*	*	2679	6007	4987	4200	4113	6000	*	6927	5522	80
+       96	5963	4367	562	1631	1016	984	9243	1104	1849	
+
+T 81   3171	6921	6853	4737	5182	5017	*	3699	4761	4819	6804	5902	5005	5022	5653	3749	2813	2010	*	4200	81
+       278	4375	2977	2166	364	1945	434	9256	1609	2193	
+
+L 82   3610	6643	5738	*	5710	5764	6894	3041	5467	1393	4974	6696	4852	5263	5662	*	4015	3666	5652	4786	82
+       130	3950	5540	2674	246	1547	604	8784	1668	3539	
+
+A 83   1341	*	5919	5247	6713	2253	*	6398	*	*	*	5295	5011	6214	5617	3947	3323	*	5982	4053	83
+       153	4756	3971	2653	250	2536	273	9055	1421	2939	
+
+H 84   5393	6439	4542	6564	4743	3887	2617	5070	5114	4697	5770	4607	6524	3600	4482	2894	4423	3960	*	3276	84
+       166	4665	3847	305	2393	3534	130	8955	1356	3462	
+
+A 85   1158	5093	*	4538	*	3755	*	4841	*	4574	6745	6579	4647	6596	6675	3548	3000	5912	*	5537	85
+       156	3604	5647	1304	749	2460	289	8733	1906	3934	
+
+F 86   5290	4733	5674	7074	2315	4014	5659	3975	5651	4657	5574	4517	6433	6582	6931	3372	4264	4771	4613	2450	86
+       148	4283	4429	826	1198	2953	199	8804	1603	3646	
+
+A 87   3425	*	6664	6555	2429	6758	5177	3425	5830	3401	5204	4523	*	5382	6889	3689	5278	4350	5124	2518	87
+       13	*	6811	*	*	2018	409	8822	0	3802	
+
+P 88   4793	*	6520	5308	*	3677	*	5240	4320	5593	*	4399	1162	5913	4725	3429	4306	5226	*	4903	88
+       288	4454	2888	1104	903	1985	420	8899	1594	3267	
+
+G 89   4883	*	3605	3825	*	2625	5265	5805	5256	4434	6973	2771	3521	4945	5610	4652	2975	5560	5594	4983	89
+       1114	2634	1408	1123	886	3643	120	8753	2724	4212	
+
+T 90   4744	5963	3944	3615	*	4434	5303	6060	4506	4901	*	3284	3984	5162	4522	2452	2740	5047	*	4792	90
+       351	2453	4896	1315	741	2873	212	8175	2236	6586	
+
+G 91   3293	5780	4702	5891	*	1832	5956	4958	5260	6026	*	2869	4126	4548	6149	3176	4526	*	6028	4897	91
+       343	2428	5274	1466	648	2723	237	8368	2445	6216	
+
+L 92   5330	*	4750	5239	5347	6092	6314	2806	4237	4077	6361	4309	5158	3891	2965	3971	*	3008	4747	3425	92
+       398	2288	4781	1024	976	718	1350	8567	2822	5786	
+
+G 93   4519	*	3546	3132	5600	3357	5712	4758	3024	6871	*	3315	4113	4703	3926	2981	5651	5013	6509	*	93
+       92	4256	6716	589	1577	1168	849	8906	1596	3577	
+
+G 94   2694	*	6988	6718	6389	1223	*	4935	5287	5803	6831	6750	4383	4563	4448	3518	5255	5450	*	5575	94
+       126	4575	4584	1441	663	1880	457	9045	1523	2687	
+
+D 95   4016	*	2418	3653	*	5650	6047	5161	3267	4985	5990	4253	5114	4038	3874	4340	3076	4395	*	4987	95
+       15	*	6616	*	*	1636	560	9052	0	2750	
+
+A 96   4449	*	*	*	5731	5947	*	1353	5143	3446	3601	6103	5565	5029	5945	5230	4267	2674	7040	*	96
+       110	6720	3961	1000	1000	3723	114	9085	1000	2307	
+
+H 97   5202	5234	6854	4071	5133	4837	2707	3357	5069	4339	*	4391	*	4887	3822	4819	3490	3483	4312	3870	97
+       34	7032	5989	0	*	2663	248	8813	1000	3015	
+
+F 98   6560	6706	*	5974	1616	*	*	2428	*	2060	5159	*	5864	*	*	6896	*	3340	*	4066	98
+       82	5916	4692	2619	256	4251	78	9006	1127	2905	
+
+D 99   5262	*	2234	5936	6762	3854	4845	4636	4016	6511	*	1572	6451	*	5620	4153	4248	5717	*	5450	99
+       116	6694	3893	0	*	1929	440	8926	1000	3235	
+
+E 100  2911	*	3213	3965	6166	3931	*	4717	5417	4739	5126	3771	3852	4401	4812	3003	3878	4187	*	6052	100
+       221	3821	3812	1284	763	1916	444	8952	1733	3352	
+
+D 101  3866	7094	2274	4744	6935	4163	6740	6361	5101	4270	*	2897	4682	3689	5132	3493	3185	5702	*	5937	101
+       144	5040	3947	2676	246	1474	644	8964	1249	3569	
+
+E 102  3706	*	4318	2413	4523	4693	6521	6405	3637	3756	5756	6436	6827	3370	4190	4017	5765	3444	6764	4196	102
+       156	3876	4873	700	1379	1264	777	9004	1814	3413	
+
+R 103  4101	6784	3812	4656	5108	4573	4426	3715	3864	4267	5322	3844	4195	4867	4405	3374	3403	4788	*	4332	103
+       86	7239	4288	0	*	1654	552	9045	1000	2884	
+
+W 104  4792	6891	5668	6106	2388	5888	6522	6858	5575	3479	5740	5747	4278	*	*	7234	5517	4495	1820	2855	104
+       64	5328	5765	727	1337	3188	168	9021	1215	2845	
+
+T 105  4198	4777	4368	5276	5149	4322	5207	3695	5243	3968	6323	3741	6675	4758	6288	2810	2436	3868	*	5698	105
+       231	3329	4368	1069	934	2857	214	9031	2191	2861	
+
+D 106  4608	*	3385	4839	5276	4594	5521	3046	4804	2752	4820	4115	4877	5013	4857	6800	3557	3624	*	3912	106
+       352	4455	2548	1664	547	*	0	8994	1519	3153	
+
+G 107  3575	*	4182	4802	6535	2378	6654	5515	5095	4685	5559	4009	3457	3906	5259	3327	2928	*	*	5392	107
+       549	2120	3533	2362	312	1427	671	8773	3175	4848	
+
+S 108  3874	6608	2938	4009	*	4708	6265	6580	4725	4245	5706	2773	3783	6265	5208	2861	3556	3967	*	6403	108
+       471	1844	*	2287	331	1067	936	8836	3899	4357	
+
+S 109  3799	6725	3223	3631	4456	3107	6278	6899	5603	4026	*	5223	4319	3820	4109	3205	4362	5207	*	3712	109
+       82	4405	6992	1437	665	1138	874	9149	1518	2898	
+
+L 110  7104	*	3163	4559	*	3165	5855	5527	4699	5495	5756	3724	3096	4201	4433	2880	3515	5852	6894	3908	110
+       10	*	7183	*	*	3453	138	9249	0	2145	
+
+G 111  4370	6755	3930	3703	*	1473	6118	*	4517	4932	5930	3992	4460	4854	4851	4692	5380	4419	6688	4804	111
+       97	4091	7287	1271	772	476	1832	9254	1799	2127	
+
+I 112  5495	3699	5072	3274	4150	4971	5004	4434	5027	3339	6548	3542	6911	5005	4224	4438	3494	3888	6165	3905	112
+       42	5122	*	1347	721	*	0	9288	1307	1357	
+
+N 113  4556	6589	2389	4536	4389	4214	4464	5593	5356	4014	5769	3220	5689	4160	4564	3893	4278	6734	6746	3675	113
+       99	4551	5407	796	1238	2262	337	9288	1556	1357	
+
+F 114  5272	*	6746	6068	3449	3799	*	3416	4540	1737	5051	5345	5382	4526	3817	6866	4654	3599	*	5269	114
+       33	5469	*	0	*	1779	497	9287	1237	1775	
+
+L 115  4377	*	*	3379	3733	4325	5892	3925	4951	2792	*	6822	6949	3741	3210	4450	3866	3859	*	3501	115
+       34	6069	6935	1774	499	1300	752	9289	1087	1520	
+
+Y 116  3122	*	4367	4563	5265	2688	4094	*	4654	3995	5504	3536	6033	4142	4415	3678	3968	5270	7166	4316	116
+       0	*	*	*	*	2114	379	9292	0	1375	
+
+A 117  5457	*	*	*	*	*	*	2706	4803	4373	5606	5397	*	*	*	4377	1626	1628	*	*	117
+       0	*	*	*	*	*	0	9301	0	1260	
+
+A 118  1921	*	5597	*	3942	*	*	2663	*	2067	4077	*	6731	*	7250	7008	5050	2895	*	7361	118
+       0	*	*	*	*	*	0	9301	0	1260	
+
+T 119  2775	5975	*	4278	6854	7258	*	2494	5992	2282	4089	6323	*	4929	4404	*	3052	3455	*	6761	119
+       0	*	*	*	*	712	1360	9306	0	1260	
+
+H 120  *	*	5618	*	6023	*	52	*	*	*	*	*	*	*	*	*	*	*	*	*	120
+       0	*	*	*	*	*	0	9301	0	1021	
+
+E 121  5618	*	*	81	*	6023	*	*	*	*	*	*	*	6548	*	6893	*	*	*	*	121
+       0	*	*	*	*	*	0	9301	0	1021	
+
+L 122  7200	*	*	6927	2706	*	*	1677	*	1416	4089	*	5618	*	*	*	5978	5174	7416	5981	122
+       0	*	*	*	*	*	0	9301	0	1021	
+
+G 123  4891	*	*	6893	*	214	*	5979	*	4962	5993	*	*	7673	5618	7198	*	*	*	*	123
+       0	*	*	*	*	*	0	9301	0	1021	
+
+H 124  *	*	*	*	*	*	35	*	*	*	*	*	*	5393	*	*	*	*	*	*	124
+       12	*	6893	*	*	*	0	9301	0	1021	
+
+S 125  1346	5688	*	6730	4672	5338	*	3648	*	3835	6217	6575	*	6323	*	3633	3002	3141	6833	*	125
+       29	6711	6575	0	*	*	0	9306	1030	1260	
+
+L 126  6649	*	*	*	4120	6747	*	3122	*	620	3341	*	*	*	*	*	*	4346	6690	*	126
+       0	*	*	*	*	430	1957	9284	0	1455	
+
+G 127  *	*	6736	*	*	57	*	*	*	*	*	6832	*	*	5618	*	*	*	*	*	127
+       0	*	*	*	*	*	0	9301	0	1021	
+
+M 128  5458	6829	*	*	2823	*	6382	3943	*	511	5082	*	6705	*	*	*	*	6760	*	*	128
+       89	4667	5619	0	*	*	0	9301	1533	1021	
+
+G 129  3263	*	2845	4177	5602	2801	6873	6982	3172	4958	5792	5264	5088	7057	3135	3762	4612	6923	4486	6017	129
+       0	*	*	*	*	551	1656	9209	0	1347	
+
+H 130  *	*	4900	5733	*	7116	235	*	*	*	*	5774	*	*	6984	5247	4698	*	*	*	130
+       46	4981	*	1947	433	*	0	9301	1374	1021	
+
+S 131  4909	6893	5399	2739	6770	6057	*	5524	6117	5790	6842	4544	2774	5454	5166	1880	3021	4342	*	6185	131
+       250	3000	4867	4850	51	0	*	9301	2704	1021	
+
+S 132  3898	*	2754	5989	4352	3124	3534	*	4788	*	6012	3608	3663	5019	4878	3545	4756	6566	5168	3638	132
+       77	4269	*	4298	75	0	*	9025	1700	1497	
+
+D 133  3477	4330	1501	3511	4622	4260	5863	*	6539	6719	*	3128	6806	4538	6807	5448	7195	4397	*	4767	133
+       79	4235	*	2530	274	*	*	9026	1687	0	
+
+P 134  4343	6718	4454	3612	5006	5888	*	6872	3586	6499	*	4556	2252	4409	3234	3430	4021	5755	*	3569	134
+       42	5129	*	2564	267	*	*	9012	1246	0	
+
+N 135  3570	4121	2794	4387	6738	2591	4322	6752	5921	5063	7026	2872	7164	5867	6857	3964	4360	4778	*	4081	135
+       164	3485	5801	2814	221	*	*	9012	2179	0	
+
+A 136  3072	*	2990	*	*	5762	*	*	*	6387	*	4472	4499	6364	6559	1019	3906	4245	*	*	136
+       106	3819	*	1847	470	*	0	8969	1831	1172	
+
+V 137  5113	*	*	6926	*	6553	*	2062	*	2704	6705	6980	6567	6783	*	5615	3622	1305	5995	*	137
+       28	5682	*	3363	147	1008	992	8966	1166	1172	
+
+M 138  5499	*	7017	*	*	4668	*	4839	*	4044	338	*	*	6458	*	5426	*	*	*	6726	138
+       143	3669	6011	0	*	0	*	8976	1981	1021	
+
+Y 139  4258	*	5296	6616	4280	4581	4010	6481	5503	3809	*	3569	6723	5881	4431	3058	4562	*	6700	1630	139
+       100	4651	5216	1263	778	*	0	8980	1405	1098	
+
+P 140  3115	*	6602	4151	5096	3931	*	5575	5215	*	*	*	1310	4248	5724	3663	5873	6436	*	3430	140
+       27	6537	6981	1000	1000	273	2534	8935	1019	1570	
+
+T 141  4716	4817	3952	4779	3222	4394	5731	4470	4631	6004	5044	3440	6542	4148	3745	3095	3702	5121	*	3965	141
+       79	5141	5328	3212	165	1173	845	8952	1285	1146	
+
+Y 142  3934	4819	4640	6613	3274	3855	6640	3480	6302	3370	6429	4253	5917	5334	*	4346	3826	*	4724	2291	142
+       80	4215	*	1617	569	*	0	8878	1499	1349	
+
+G 143  3425	6692	3366	5536	*	3617	*	6417	3029	4237	6792	3463	5027	3527	4299	3525	3751	3857	*	6397	143
+       201	3875	4014	2432	296	1644	556	8780	1663	1349	
+
+N 144  4564	*	3866	4574	4693	1911	4683	*	6423	6585	*	4304	2732	*	4397	3335	5334	*	6564	3342	144
+       361	3478	2925	2620	256	*	0	8646	1896	1926	
+
+G 145  3650	*	3908	3843	5353	2687	6343	4418	5297	4107	*	3602	5242	4282	5089	3291	3774	3785	*	5361	145
+       421	3740	2490	1464	649	3435	140	8493	1696	3181	
+
+D 146  4449	*	2192	4027	6135	3652	4699	6155	5778	5249	*	2978	*	3466	*	5700	2827	3808	5806	5943	146
+       264	3200	4101	2177	361	2129	374	8116	1749	4263	
+
+P 147  3728	4527	5189	5045	*	4514	4974	3669	5846	4273	*	6182	3096	4476	4304	2957	2435	5013	6313	5912	147
+       278	2993	4332	1966	427	1117	892	8186	1941	3954	
+
+Q 148  4087	*	5452	4238	*	4076	4699	6492	4366	*	6356	3196	4762	4758	2942	3450	3626	4726	4640	2917	148
+       166	5109	3653	2691	243	753	1299	8488	1162	3057	
+
+N 149  4425	5180	3613	*	*	3926	*	*	2659	3996	6011	2707	3745	4841	3797	3614	4224	4111	6133	*	149
+       283	6179	2608	2322	322	835	1186	8473	1005	2511	
+
+F 150  3301	*	4667	*	2974	5972	6293	4245	6089	3163	5050	6205	3922	4826	3441	4023	3870	3898	5455	3894	150
+       123	3610	*	1346	721	366	2157	8461	1844	3138	
+
+K 151  6564	*	4512	4042	*	3552	4995	5336	3677	*	5527	4586	5483	4995	3398	3385	2188	3668	6385	4390	151
+       34	5424	*	1684	538	1240	794	8746	1133	1433	
+
+L 152  5477	*	*	6603	2661	*	*	2439	*	1332	4048	*	3625	*	*	6140	*	5135	5518	5542	152
+       13	6782	*	4907	49	*	0	8730	1000	1197	
+
+S 153  4655	*	4277	4954	*	3417	5550	*	5011	*	3516	4597	5033	3784	*	1756	2438	5795	*	*	153
+       61	4598	*	3233	162	*	0	8730	1455	1197	
+
+Q 154  2665	*	3525	3150	5319	4855	*	5290	4862	4196	6751	4974	3320	3084	5539	4142	4181	3933	*	6542	154
+       0	*	*	*	*	*	0	8722	0	1347	
+
+D 155  3510	6677	2320	5271	6522	3061	6305	5356	5498	3980	6676	3353	6515	5578	5459	3251	5028	4863	*	3462	155
+       0	*	*	*	*	551	1656	8722	0	1347	
+
+D 156  5156	*	272	3738	*	*	*	*	6414	*	*	*	*	6245	*	4513	*	*	*	*	156
+       0	*	*	*	*	*	0	8836	0	1021	
+
+I 157  5666	*	6450	6661	*	*	*	1385	3228	3155	5711	4747	*	5662	3125	6406	*	2795	*	6573	157
+       0	*	*	*	*	*	0	8817	0	1021	
+
+K 158  2233	6314	3420	3416	6550	6270	5856	6374	3739	3883	6358	4230	*	4535	3925	3130	4348	5035	*	5398	158
+       0	*	*	*	*	*	0	8817	0	1021	
+
+G 159  1723	*	6310	4997	4827	2057	*	*	5476	6041	*	4357	*	6666	4468	3765	3289	5497	5122	6726	159
+       13	6811	*	2322	322	*	0	8693	1000	1021	
+
+I 160  3766	*	*	*	6556	*	*	1740	*	1525	4483	*	*	*	5412	5705	*	2620	*	5720	160
+       0	*	*	*	*	*	0	8728	0	1021	
+
+Q 161  4410	4473	5549	4904	*	5463	5212	6153	3084	6617	*	3457	*	1804	2515	4893	4734	4728	*	*	161
+       0	*	*	*	*	*	0	8611	0	1021	
+
+K 162  2586	5413	6614	4129	3689	5545	5369	5586	2806	4332	6180	6463	*	4689	4210	4229	4943	*	4572	2642	162
+       0	*	*	*	*	*	0	8611	0	1021	
+
+L 163  4568	*	*	5334	4492	*	*	2495	5214	1075	3665	5366	*	*	5494	6326	6560	4290	*	6597	163
+       0	*	*	*	*	*	0	8611	0	1021	
+
+Y 164  *	*	*	*	4689	*	6392	*	*	*	*	*	*	5619	*	*	*	*	4383	183	164
+       0	*	*	*	*	0	*	8561	0	1021	
+
+G 165  3418	*	6268	6230	*	924	*	*	5042	*	*	3656	2731	4656	5045	5460	*	*	*	*	165
+       50	4876	*	1000	1000	*	*	8388	1197	0	
+
+K 166  2584	4283	3729	3989	*	4017	4945	6325	5221	3951	*	4317	5147	4891	3459	3152	3726	4208	*	*	166
+       0	*	*	*	*	*	*	8310	0	0	
+
+R 167  4310	5327	*	5296	*	*	5058	*	3766	*	*	2033	2554	4378	3164	2379	*	*	5096	*	167
+       0	*	*	*	*	*	*	7524	0	0	
+
+S 168  3680	*	3772	4728	*	4823	*	*	2937	*	2548	3702	3643	3274	*	2928	4383	*	*	4855	168
+       0	*	*	*	*	*	*	6689	0	0	
+
+N 169  *	*	*	*	*	2462	*	*	*	*	*	616	*	*	*	2591	*	*	*	*	169
+       0	*	*	*	*	*	*	3517	0	0	
+
+S 170  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	170
+       0	*	*	0	*	*	*	1574	0	0	
+
+//
+�HHsearch 1.5
+NAME  fdfbd67ee8a6a80e1c49419316279395
+FAM   
+FILE  fdfbd67ee8a6a80e1c49419316279395
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:10:23 2013
+LENG  236 match states, 236 columns in multiple alignment
+FILT  231 out of 1040 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  6.7 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCEEEEEEECCCCCCCCCCCCCEEEEECCCCCCCCEEEEEEECCCEEEEEEEECCCCCEEEEEEECCCCCCEEEEEEECHHHHCCCCEEEEEEECCCCC
+CCCCEEEEEEEEEECCCCCCCCCCCEEEECCCCCCCCCCEEECCCEEECCCCCEEEECCCCCCCCCCCEEEEEECCCEEEECCCCCEEEEEEEEEEEEEE
+CCCCCCCEEEEEECCCCCCCCCCCCCCEEEEECCCC
+>ss_conf PSIPRED confidence values
+9868999975864775679999879998389645640763371896899999980787699999944899872688772268939765799999605886
+3343688999998746445535541678838988886776990753981498299863368966026468998378878586999761268999999953
+799998669999767888889888766562325899
+>Consensus
+xnxxvAVEFDTxxnxxxxDpxxnHvgIxvnsxxSxxxxxxxlxxGxxxxxxIxYdxxxxxLxVxlxxxxxxxxxlsxxxdLxxxlxxxxxvGFSasTGxx
+xxxhxIlswxFxsxxxlxxxaxxxxxxFxfxxFxxxxxxlxxxGxAxixxxgxlxLTxxxxxxxxxxxxGraxyxxPvxlxdxxxxxaSFsTxFxFxIxx
+xxxxxgdGlAFxlapxxxxxpxxsxgxxLGLxnxxx
+>fdfbd67ee8a6a80e1c49419316279395
+ADTIVAVELDTYPNTDIGDPSYQHIGINIKSIRSKATTRWDVQNGKVGTAHISYNSVAKRLSAVVSYPGGSSATVSYDVDLNNILPEWVRVGLSASTGLY
+KETNTILSWSFTSKLKSNSTADAQSLHFTFNQFSQSPKDLILQGDASTDSDGNLQLTRVSNGSPQSDSVGRALYYAPVHIWDKSAVVASFDATFTFLIKS
+PDREIADGIAFFIANTDSSIPHGSGGRLLGLFPDAN
+>gi|255572597|ref|XP_002527232.1| kinase, putative [Ricinus communis]gi|223533408|gb|EEF35158.1| kinase, putative [Ricinus communis]
+----------------------------------------------------------------------------------------------------
+-----------------LLPPSTTSVSFQKTRFDPSDTSIIYEGGATP-SVGSIEF-------------------N------------------------
+----------------------------------S-
+>gi|242082227|ref|XP_002445882.1| hypothetical protein SORBIDRAFT_07g027410 [Sorghum bicolor]gi|241942232|gb|EES15377.1| hypothetical protein SORBIDRAFT_07g027410 [Sorghum bicolor]
+----------------------------------------------------------------------------------------------------
+------------------QEpgqlQPLEVATYNYTSFQEgnskEQRELAFSREARI-YKGAIQVSPDTaNVGSYqDimvNKSGSVLLQRRFTMWShvdvd
+ggGGGngsatsrvQVVSFNSTFSINVFHlpDSSpRPGEGLTFVVA-PSRDePPPGSYGGYLGLTN---
+>gi|297820310|ref|XP_002878038.1| hypothetical protein ARALYDRAFT_906979 [Arabidopsis lyrata subsp. lyrata]gi|297323876|gb|EFH54297.1| hypothetical protein ARALYDRAFT_906979 [Arabidopsis lyrata subsp. lyrata]
+----------------------------------------------------------------------------------------------------
+----------------------SLTHDFSFVGFKK-AsPNLIITGVAEIAATGAIRLTT---DTQR--VIGHAFYSLPIRFKPIgVNRALSFSTSFAIAM
+VPEFvTLGGHGLAFAITPTP-DLRGSLPSQYLGLLNSSR
+>gi|115452011|ref|NP_001049606.1| Os03g0258000 [Oryza sativa Japonica Group]gi|113548077|dbj|BAF11520.1| Os03g0258000 [Oryza sativa Japonica Group]
+SNHVFAVELDTVLSPELHDIDSNHVGIDVNSLQFIQSHTAgyyddstgafmnlTLISRKAMQVWVDYNGQAMVLNVTLAPLGvskPKKPLLPTGLDLSRV
+VEDIAYIGFSSATGlSI-AYHYVLGWSFSLNG--------------------------------------------------------------------
+-----------------------------------------------------
+>gi|255579110|ref|XP_002530403.1| carbohydrate binding protein, putative [Ricinus communis]gi|223530052|gb|EEF31973.1| carbohydrate binding protein, putative [Ricinus communis]
+--GYLGIEFGYSRDGN----DGNSTKILV--LIRVNNEPLghvWTERGQRMKAWIDYDASSKRIEIRINELNGkRpyDPFAAYALDLSKMWSDnEAFVVL
+GSNDgGNPSGTCNVYSWRFRLRKV----------------------------------------------------------------------------
+--------------------------------------------
+>gi|125562917|gb|EAZ08297.1| hypothetical protein OsI_30549 [Oryza sativa Indica Group]
+-----SLPLELTFDASRNLVSASSAGVDVDG---NSTAAVDLRNGNEVGSWVVYDASLARLEVFVSHASLRppTPALAADAdSIAARFAEFMFVGFevts
+SSGNGSSDGGFLIQSWTFQTSG------------------------------------------------------------------------------
+-------------------------------------------
+>gi|125605283|gb|EAZ44319.1| hypothetical protein OsJ_28941 [Oryza sativa Japonica Group]
+----------------------------------------------------------------------------------------------------
+----------------------ASTLSYNFSdpqSFTS--GDLHFEGDAYLG-DTSVVLAKKGTGE-VNPKAGRILYKQPCPSLEQhHRRGNELHHHL-L
+LPHE----RRTGRAGILPH---------------------
+>gi|91215870|ref|ZP_01252839.1| hypothetical protein P700755_15086 [Psychroflexus torquis ATCC 700755]gi|91185847|gb|EAS72221.1| hypothetical protein P700755_15086 [Psychroflexus torquis ATCC 700755]
+----LTIEFDTFQNADFGDPAGDHISIMRNGNPnhnlSTNLaGPvlaidtnPDIEDGIAHDVRIEWDASTNTLSVFFDCLL--R--LTFTDNVKDTiFsg
+DNSVFFGFVGSTGGDTNIHEVCFnrVSFVDNLQ-------------------------------------------------------------------
+-----------------------------------------------------
+>gi|300175644|emb|CBK20955.2| unnamed protein product [Blastocystis hominis]
+----FAIAFSTFKNKEFAryhrDIA-----LYVGDGNTGAFIQdkdhtgCyaryrfhekrqDFSVDNYAVVKIGYSEITGMVRVAIDEKNTGnyHICIHE
+HIDLPAGWWRKATIGISATTGQLADNHDILSVET------------------------------------------------------------------
+-----------------------------------------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+A 1    2008	*	3559	3653	5542	*	*	*	4047	5345	*	5166	5539	4210	*	1633	*	4944	*	5485	1
+       33	5465	*	0	*	*	*	5117	1000	0	
+
+D 2    3444	*	3254	*	6256	6647	*	4841	6209	*	*	896	5555	*	6596	3210	5151	6244	*	6204	2
+       42	*	5112	*	*	*	*	5832	0	0	
+
+T 3    6382	*	*	5565	*	3325	2406	*	4016	*	*	4214	3552	2760	2123	4039	4660	*	*	*	3
+       0	*	*	*	*	1735	515	6225	0	1078	
+
+I 4    5800	6671	*	*	2619	5662	*	3092	6657	3250	5282	*	*	6711	6070	2177	3008	2910	*	5121	4
+       0	*	*	1000	1000	0	*	6449	1043	1043	
+
+V 5    6737	*	*	*	2720	*	*	2677	*	2526	*	*	*	*	*	6084	*	1017	*	*	5
+       12	6957	*	1000	1000	*	*	6515	1000	0	
+
+A 6    386	6871	*	*	5436	4269	6091	*	*	6202	6948	6427	*	*	*	4103	5112	6863	7016	*	6
+       21	6128	*	1585	585	*	*	6593	1018	0	
+
+V 7    *	6542	*	*	5674	*	*	2051	*	3941	6427	*	*	*	6128	*	*	650	*	*	7
+       0	*	*	*	*	*	*	6593	0	0	
+
+E 8    4712	*	*	224	*	5432	*	*	4701	*	*	*	5366	*	*	*	*	5672	*	*	8
+       24	5921	*	1705	529	*	*	6593	1030	0	
+
+L 9    *	*	*	*	309	*	*	5012	*	3149	*	*	*	*	*	*	*	5001	*	5806	9
+       17	*	6445	*	*	*	0	6593	0	1000	
+
+D 10   *	*	243	5349	*	5843	5865	*	6321	6742	*	6583	*	*	6123	5284	*	5417	*	*	10
+       0	*	*	*	*	2067	394	6585	0	1068	
+
+T 11   6282	*	5097	6503	*	*	6126	3959	*	4991	*	4904	*	*	*	4407	498	5029	*	5845	11
+       25	*	5854	1000	1000	0	*	6586	1043	1043	
+
+Y 12   5027	6854	*	*	1759	5025	3737	6711	*	5408	7520	6407	5509	7087	4826	4025	6529	3654	3907	2144	12
+       130	5064	4146	1343	723	888	1122	6591	1085	1039	
+
+P 13   5213	*	7161	5705	4077	5089	5261	6008	1978	4355	5810	4759	3682	2931	3171	4029	6074	6685	6036	4721	13
+       53	6020	5600	1000	1000	1570	593	6541	1021	1286	
+
+N 14   6019	*	2443	6330	6650	5156	*	*	6428	6745	*	710	*	5856	*	4178	4773	*	*	6793	14
+       216	6711	2948	2322	322	2470	287	6517	1000	1256	
+
+T 15   2812	*	2870	4649	4594	3906	6771	6775	3620	7124	*	4118	2678	6733	6426	3626	3881	3942	*	5853	15
+       440	5213	2085	620	1517	1898	451	6413	1125	1710	
+
+D 16   4023	*	2586	1827	5659	2848	5137	*	4353	*	*	4025	4973	6496	4938	4031	4667	5922	*	*	16
+       871	3360	1491	763	1284	1905	448	6289	1332	2238	
+
+I 17   *	4785	*	6046	1918	5813	6182	3928	5532	3147	5169	4296	4924	5303	5753	5672	4297	3872	5681	2852	17
+       59	5704	5571	0	*	461	1870	6097	1003	2781	
+
+G 18   4268	*	3500	6084	4768	2922	*	4873	4917	5364	*	2276	*	6797	3788	4556	6473	*	2144	5883	18
+       99	3920	*	1156	859	1947	433	6419	1196	1577	
+
+D 19   6673	*	383	3983	*	5721	*	*	7077	6370	*	4817	*	5356	6073	5183	*	*	*	5705	19
+       11	7077	*	1000	1000	3589	125	6446	1000	1422	
+
+P 20   5689	*	5582	4806	*	*	6973	2865	*	5014	*	5355	720	6594	*	5255	4771	4531	*	*	20
+       29	6509	6760	1000	1000	458	1878	6466	1003	1384	
+
+S 21   4837	*	2535	5446	6775	5246	7196	5039	4998	*	*	1969	4305	5967	4753	2392	4648	4926	*	4534	21
+       236	3236	4485	1059	943	1984	420	6581	1430	1118	
+
+Y 22   4015	5334	2732	5049	5784	1841	*	5981	6838	*	4664	3487	5651	*	6761	3324	4381	5324	7158	3772	22
+       56	4718	*	0	*	670	1429	6496	1093	1339	
+
+Q 23   6541	5742	2767	6227	*	6694	6234	*	6712	*	*	967	4246	4399	5347	3305	4631	*	*	*	23
+       0	*	*	*	*	*	0	6537	0	1103	
+
+H 24   *	5499	*	*	*	*	299	*	*	6806	*	6101	6340	6691	4686	4262	6471	6895	*	6777	24
+       36	*	5342	*	*	*	0	6537	0	1103	
+
+I 25   4013	*	*	*	*	*	*	1305	6721	4459	6062	*	*	*	*	*	5690	1172	*	*	25
+       0	*	*	*	*	*	0	6498	0	1194	
+
+G 26   3055	*	6537	6658	*	633	*	*	5690	6370	*	*	*	*	5752	2727	6271	*	*	*	26
+       0	*	*	*	*	1944	434	6498	0	1194	
+
+I 27   6607	*	*	6178	5785	*	*	717	*	2713	*	*	*	*	*	*	*	2460	*	6024	27
+       0	*	*	*	*	*	0	6546	0	1134	
+
+N 28   6770	*	1303	6845	6379	5602	4736	*	6282	3675	5113	2080	*	3400	6178	*	*	6996	*	4884	28
+       19	6282	*	1000	1000	*	0	6546	1012	1134	
+
+I 29   5254	6751	7032	6024	6732	6687	*	2121	5143	2958	6683	4794	*	6225	5620	5334	3094	1671	*	*	29
+       61	5483	5702	1770	501	914	1091	6546	1051	1134	
+
+K 30   6948	6883	3719	6287	*	3312	*	7359	5236	*	*	720	5506	*	3585	5669	5101	*	*	*	30
+       51	4845	*	2030	405	*	0	6542	1104	1108	
+
+S 31   *	5903	5029	*	6549	1667	6710	*	6468	*	*	4012	*	6523	4771	1186	4126	*	*	*	31
+       86	6156	4510	1106	901	1161	855	6542	1035	1108	
+
+I 32   4601	*	*	6761	5166	6032	*	2438	5290	2705	3191	4730	5582	6752	4399	3991	4538	2235	*	*	32
+       90	4199	7321	410	2016	1671	544	6492	1167	1220	
+
+R 33   5272	*	4397	3361	6896	6788	6549	3609	2961	4911	*	3294	6595	4929	2959	3566	3896	3119	*	5860	33
+       122	3924	6033	2072	392	*	0	6508	1218	1165	
+
+S 34   6410	*	6093	*	*	*	5738	*	4454	6699	6736	5075	3607	6525	5797	508	4876	6317	*	*	34
+       11	7039	*	1000	1000	750	1302	6418	1000	1223	
+
+K 35   4121	6209	4712	5688	5445	4610	5816	3743	4433	3287	6008	3031	*	*	5070	3978	3826	2061	*	5313	35
+       28	5709	*	1954	431	2067	394	6586	1040	1068	
+
+A 36   2240	*	6487	4947	7021	4884	4657	6154	2679	6765	*	3387	5587	5292	4596	3163	3501	3956	*	4778	36
+       59	4869	7468	2946	200	*	0	6587	1216	1043	
+
+T 37   4228	*	5864	*	5494	*	4362	5216	7064	5965	*	2976	6667	4864	4905	2168	2140	4010	*	3440	37
+       221	2813	*	2724	237	2067	394	6586	1547	1068	
+
+T 38   3150	5882	6562	3265	7045	4729	4830	4592	3324	5220	5940	5174	6807	4627	4276	3441	3394	2953	*	4447	38
+       157	3363	7387	2319	323	0	*	6587	1333	1043	
+
+R 39   3782	5180	4197	5404	*	5821	5645	6372	7049	6936	*	3444	2141	4962	4598	2222	3901	4627	*	4562	39
+       290	2458	*	2383	307	*	0	6596	1694	1000	
+
+W 40   3487	4416	*	*	3826	4855	6799	4183	*	1946	6864	*	4661	*	6796	6041	4365	3351	2354	5583	40
+       952	1050	*	2334	319	611	1534	6601	2812	1033	
+
+D 41   5357	6529	2085	6540	4938	4502	6751	6061	4544	*	6629	2797	5551	5634	4389	2456	3750	4890	5852	5402	41
+       174	3230	7158	2675	246	*	0	6596	1404	1000	
+
+V 42   *	*	*	*	2909	*	*	2753	6843	1207	3424	*	6849	*	7314	3841	4834	3975	*	*	42
+       51	4860	*	2219	349	*	0	6593	1093	1016	
+
+Q 43   3517	6715	4019	3668	6284	5807	4387	4360	3078	4404	7261	2949	5695	5380	4209	3005	4356	4205	6819	*	43
+       47	6190	5757	1349	719	870	1142	6593	1017	1016	
+
+N 44   4081	*	2092	5475	*	4965	*	5548	5150	7555	*	1790	7077	6964	4993	2201	5652	6077	*	6824	44
+       106	4084	6415	716	1354	297	2424	6572	1212	1095	
+
+G 45   5073	*	4778	6348	6747	455	*	6931	6114	*	6932	3947	7311	7002	4635	6426	6344	*	6854	*	45
+       51	6841	5282	1000	1000	*	0	6589	1003	1068	
+
+K 46   3943	*	3590	2817	6645	3864	7051	4436	2418	6111	5932	3150	*	4309	4346	4007	4499	4912	*	7002	46
+       22	6836	7328	0	*	779	1261	6574	1000	1214	
+
+V 47   4477	*	3631	3883	6989	5619	*	3391	4355	4242	6209	4001	3273	4387	3316	4989	3191	3557	*	5167	47
+       8	*	7546	*	*	2275	334	6597	0	1095	
+
+G 48   3780	7049	*	*	3916	5567	2602	3371	4510	3730	2972	4949	*	6652	5767	7189	4277	3131	4678	4267	48
+       12	6873	*	2803	223	2438	294	6599	1020	1096	
+
+T 49   4983	*	3679	4196	4551	4756	4343	4520	3212	5499	*	2995	*	3409	4392	4182	3214	4426	6847	4382	49
+       0	*	*	*	*	*	0	6539	0	1071	
+
+A 50   1519	4059	*	*	6113	*	*	7103	*	4515	*	6380	*	6518	*	3767	7583	1238	*	*	50
+       26	*	5824	*	*	*	0	6539	0	1071	
+
+H 51   5887	*	6212	4778	6633	7126	4610	6104	3759	4656	6621	*	6746	5097	2331	4820	4572	5781	1348	6487	51
+       0	*	*	*	*	1374	703	6595	0	1140	
+
+I 52   *	*	*	*	5351	*	*	457	*	5455	5582	*	*	*	*	*	*	2298	*	*	52
+       0	*	*	*	*	*	0	6539	0	1071	
+
+S 53   5294	*	1967	2530	*	5584	*	4457	5123	5556	*	4019	*	6925	3914	3189	3125	3861	*	*	53
+       0	*	*	*	*	*	0	6539	0	1071	
+
+Y 54   *	*	*	*	3276	*	*	5459	*	*	*	*	*	*	*	*	*	*	4830	253	54
+       0	*	*	*	*	*	0	6539	0	1071	
+
+N 55   7042	*	1214	3940	*	*	7004	4974	5640	*	6911	2050	*	6543	4726	3367	6148	5758	*	6851	55
+       0	*	*	3546	129	434	1944	6539	1043	1071	
+
+S 56   2128	*	4671	5162	*	2039	5389	*	*	*	*	3317	3927	5778	5771	2412	5780	5960	*	6384	56
+       60	6913	4951	3459	138	*	0	6604	1000	1000	
+
+V 57   3460	*	4534	4301	6734	4312	*	4761	3925	4196	*	4783	5806	5056	4971	1874	2840	4322	6738	6606	57
+       36	5734	7397	2186	358	*	0	6589	1036	1134	
+
+A 58   3631	*	4068	5976	6825	5054	6294	6086	4456	4067	5919	4108	*	7070	5548	1972	1737	6698	*	7845	58
+       55	5546	5991	2986	195	188	3036	6593	1057	1158	
+
+K 59   4086	*	5048	3734	5446	3892	4383	7320	1916	4501	5276	3478	*	4566	3621	3369	4432	*	*	*	59
+       25	5867	*	1585	585	1833	475	6595	1031	1047	
+
+R 60   5750	6577	5761	4348	5617	*	5949	4161	4599	3792	4467	3661	*	3294	2618	3724	2952	3357	7419	*	60
+       28	5680	*	2842	217	0	*	6591	1043	1023	
+
+L 61   6784	*	*	*	5193	*	6655	2617	*	668	4317	6355	*	*	*	*	*	3335	*	*	61
+       16	*	6489	*	*	*	*	6599	0	0	
+
+S 62   3772	6396	3237	3031	5847	7293	*	6772	4768	5318	7120	3644	*	4797	3817	2152	3054	4910	6792	6633	62
+       0	*	*	0	*	0	*	6533	1043	1043	
+
+A 63   3216	*	6389	*	6750	*	*	3171	6120	6025	6886	*	*	*	*	6784	*	488	*	*	63
+       12	6917	*	4000	93	*	*	6599	1000	0	
+
+V 64   5325	*	4777	6648	2932	*	7067	5821	5041	5430	*	*	*	*	2943	2862	2057	4795	4666	2883	64
+       13	6784	*	0	*	*	*	6599	1000	0	
+
+V 65   5398	*	6706	6915	4131	*	*	3684	*	1031	3256	*	*	6647	*	6683	5711	2726	5028	6823	65
+       39	6750	5821	3459	138	*	*	6599	1001	0	
+
+S 66   2608	*	2763	6574	*	3553	4861	5376	5480	4792	7107	4443	*	5278	4267	2344	3659	4384	6505	6635	66
+       286	2772	4900	1980	422	0	*	6596	1550	1031	
+
+Y 67   6802	6500	4054	3938	4159	5150	4606	4851	3970	6060	5924	3276	3671	6325	4390	3028	5047	4698	6498	2689	67
+       131	5104	4110	1747	510	2451	291	6580	1082	1110	
+
+P 68   4976	7351	3544	3582	4938	4488	5711	5211	6049	2933	*	3989	2472	5256	5349	3262	4804	3843	6936	6422	68
+       168	4280	4090	2992	194	2241	343	6499	1198	1339	
+
+G 69   4626	7172	2735	4960	*	3463	*	6544	3415	4468	6672	2393	5998	4749	4538	3297	4717	3826	*	5410	69
+       327	2954	3760	2086	388	1727	519	6387	1418	1509	
+
+G 70   4499	*	3603	4693	6169	3699	6225	5539	6707	3513	3971	4986	3781	4705	5431	2469	2917	4098	*	6540	70
+       399	3108	2991	1339	726	3915	99	6301	1380	1612	
+
+S 71   4319	*	4340	6537	*	3554	*	6179	1951	6557	*	4795	3115	4470	2872	3030	4397	6745	*	6742	71
+       1753	508	*	1155	860	779	1261	6232	3095	2009	
+
+S 72   4776	7193	4310	4084	*	5773	4886	4912	3460	6058	5536	3523	3573	4507	2952	2896	3094	5708	7082	6321	72
+       287	3923	3126	1345	722	669	1429	6422	1304	1414	
+
+A 73   4300	5519	7642	*	4470	5206	6944	4395	6212	4213	*	6492	1191	3831	5644	3597	6930	5392	*	3777	73
+       10	7180	*	0	*	157	3276	6474	1000	1596	
+
+T 74   5221	5721	5887	6844	4147	*	6992	2999	6667	1851	7030	4783	*	5431	*	3157	3383	2657	6635	6889	74
+       65	4894	6567	654	1456	0	*	6590	1140	1029	
+
+V 75   5856	*	6376	*	4667	*	5339	2694	*	1022	5089	6901	8148	*	*	5642	5704	2743	*	5070	75
+       15	6573	*	1000	1000	0	*	6570	1006	1030	
+
+S 76   3361	6389	4281	4533	*	*	6191	5015	4602	4582	*	3076	7012	4786	5525	1461	3668	5068	7564	7086	76
+       136	3786	5833	266	2569	*	*	6595	1294	0	
+
+Y 77   2745	*	6100	4735	4361	4611	3903	4679	4647	4756	5973	5792	6619	5364	4465	4119	3310	3582	5019	2838	77
+       58	4661	*	481	1818	642	1478	6510	1125	1119	
+
+D 78   4509	*	4520	4306	*	4869	6184	4073	3288	*	*	3128	3438	5746	4461	2726	3044	3337	*	6624	78
+       42	5887	6378	521	1723	865	1149	6590	1059	1018	
+
+V 79   4587	*	6635	6211	5287	*	*	2093	4750	2756	5965	6886	4795	5722	4597	*	6620	1764	8162	4038	79
+       59	4636	*	284	2483	*	0	6578	1129	1041	
+
+D 80   5288	*	700	5861	*	*	5675	*	6286	*	*	2431	5936	6141	6373	4168	*	5293	*	*	80
+       10	7159	*	2322	322	*	0	6578	1000	1041	
+
+L 81   *	6211	*	*	4012	*	*	3711	*	367	5283	*	*	*	*	*	*	4413	*	*	81
+       34	5430	*	0	*	1634	561	6578	1081	1041	
+
+N 82   3162	6317	4988	3819	*	5935	6351	6127	3015	5652	6284	4342	4386	6650	3702	1684	4383	5607	*	6567	82
+       37	5900	6870	1000	1000	*	0	6578	1039	1015	
+
+N 83   2904	*	3067	3507	6228	3898	*	6126	3142	5606	*	4763	4171	4675	3941	2909	3454	*	*	6715	83
+       27	*	5776	*	*	721	1345	6573	0	1050	
+
+I 84   5002	7269	5723	5349	3403	6075	5715	2658	4715	3361	5127	7260	*	7128	5385	7237	3655	2541	*	2535	84
+       50	4868	*	0	*	1677	541	6526	1112	1073	
+
+L 85   *	7038	*	*	2827	5287	*	4214	*	810	5347	*	*	*	*	7436	6877	3201	4205	*	85
+       141	3426	*	1362	711	0	*	6534	1350	1063	
+
+P 86   4242	*	3812	5088	*	3643	5462	6912	3495	3644	*	4227	1664	5701	4596	3406	5089	*	6195	*	86
+       152	3319	*	1071	933	*	*	6617	1394	0	
+
+E 87   6318	*	2636	1587	*	3659	5611	6718	4449	6280	*	3789	4954	3359	5176	4424	4330	*	*	*	87
+       163	3388	6486	453	1893	*	*	6617	1355	0	
+
+W 88   6341	6238	3958	2551	3563	6838	*	*	3000	5723	5853	4356	7436	3593	4185	4530	4262	6110	3142	3851	88
+       19	6265	*	1250	787	*	0	6553	1017	1043	
+
+V 89   1834	*	*	*	5931	4275	7326	5804	7152	*	2315	*	*	*	*	4939	6762	1434	*	7083	89
+       15	6613	*	0	*	*	0	6553	1002	1043	
+
+R 90   3810	*	7072	7009	2619	*	5775	4731	7477	*	5833	*	*	5884	4054	3526	3713	6961	3894	1489	90
+       0	*	*	*	*	*	0	6559	0	1043	
+
+V 91   4081	*	*	*	3211	*	*	2237	*	4765	4207	*	*	*	*	*	6798	981	6133	*	91
+       0	*	*	*	*	*	0	6559	0	1043	
+
+G 92   *	*	*	*	*	57	*	*	*	6798	*	*	*	*	6873	7460	*	5995	*	*	92
+       0	*	*	*	*	*	0	6559	0	1043	
+
+L 93   *	*	*	*	269	*	*	4887	*	3397	5713	*	*	*	*	*	*	*	*	5487	93
+       43	5383	7494	2000	415	*	0	6542	1059	1043	
+
+S 94   4312	*	*	*	*	4915	*	6991	*	*	*	*	*	*	*	854	1566	5803	*	*	94
+       13	*	6828	*	*	*	0	6542	0	1068	
+
+A 95   660	*	*	*	*	2536	*	*	*	*	*	*	*	*	*	2507	5733	*	*	*	95
+       15	*	6642	*	*	2023	407	6541	0	1103	
+
+S 96   1777	6546	6207	*	*	3658	*	*	*	*	6793	5276	*	*	7091	1130	3418	6364	*	*	96
+       15	6561	*	2000	415	1272	771	6538	1005	1100	
+
+T 97   5315	5465	5972	*	*	6093	*	7213	6009	*	5791	3981	*	*	*	3144	580	4799	*	*	97
+       23	5962	*	0	*	*	0	6542	1027	1043	
+
+G 98   4955	*	*	7137	*	267	*	*	*	6686	*	*	6577	6544	5282	4800	5139	*	*	6825	98
+       95	3975	*	1480	641	*	0	6566	1258	1043	
+
+L 99   4307	*	3431	3996	7089	2695	7360	5033	5089	4423	*	3220	5254	4226	5245	2785	3397	5212	6691	5081	99
+       75	4298	*	1247	789	*	0	6566	1172	1043	
+
+Y 100  3657	4504	4894	4921	3780	3806	5511	5766	5395	3023	*	4841	4458	4483	5259	2584	4235	5141	6013	3971	100
+       98	4265	6165	1565	595	*	0	6566	1178	1043	
+
+K 101  3489	5190	4864	7410	3484	4512	6935	3603	4739	4385	4414	4627	6879	7822	5638	3144	3000	3835	5232	3660	101
+       49	5202	7278	746	1308	1861	464	7276	1068	1122	
+
+E 102  3280	*	3968	1905	*	4783	6003	*	6079	6263	7183	4786	6790	1770	*	3124	*	5242	*	*	102
+       0	*	*	0	*	1581	587	7051	1000	1144	
+
+T 103  3985	*	6966	5033	4722	4614	7386	2804	4127	2712	6995	4538	6869	*	4172	3071	2609	4354	*	6181	103
+       18	6322	*	812	1216	*	0	7052	1029	1083	
+
+N 104  *	5375	*	*	4306	*	695	5926	8222	8118	*	3363	7810	3851	5335	5943	5088	5690	*	5405	104
+       16	*	6474	*	*	*	0	7134	0	1083	
+
+T 105  7287	4603	2620	3670	5421	*	5794	4466	3944	4307	6219	3620	6470	3469	3777	3751	4444	5060	*	3480	105
+       13	*	6806	*	*	2013	411	7128	0	1123	
+
+I 106  *	*	*	*	5485	*	*	902	*	2949	6606	*	*	*	*	6918	*	1763	*	*	106
+       9	*	7401	*	*	*	0	7058	0	1126	
+
+L 107  *	5912	5421	4665	6489	5104	4345	5010	4598	1216	4981	4723	8450	6913	4140	5255	6201	5452	5820	3175	107
+       12	6903	*	3775	109	670	1429	7044	1087	1154	
+
+S 108  4264	7466	5529	7142	5674	3239	6039	6897	5113	6433	6757	3704	6466	6242	4800	1115	4507	8263	4583	5216	108
+       15	6588	*	1000	1000	0	*	7053	1000	1034	
+
+W 109  5870	4534	*	*	3403	5909	*	5582	*	4573	7813	*	*	*	7080	*	6078	4974	500	*	109
+       0	*	*	*	*	*	*	6306	0	0	
+
+S 110  5186	*	6482	3389	5600	5776	4134	*	5110	5430	*	3787	*	4649	3949	1390	3842	6956	*	3617	110
+       114	3722	*	0	*	*	*	6063	1295	0	
+
+F 111  5147	*	*	*	607	*	*	4917	*	2575	5040	*	*	*	*	*	5974	5093	*	4701	111
+       0	*	*	*	*	*	*	8599	0	0	
+
+T 112  3995	6274	5092	3928	5098	5309	5624	3861	2984	4272	6205	3807	*	4993	4788	2780	2891	4272	*	5452	112
+       14	6732	*	1000	1000	*	*	8753	1027	0	
+
+S 113  4828	*	4093	6209	6277	6739	*	2776	6972	3248	4954	3922	5231	5496	*	1841	2823	4515	*	*	113
+       43	*	5101	*	*	*	*	8756	0	0	
+
+K 114  4892	4214	5665	3918	6019	6085	*	5174	3594	4123	*	3500	*	4428	5350	2308	3046	3861	5733	4095	114
+       0	*	*	*	*	1596	579	8499	0	1075	
+
+L 115  4950	6038	4414	6261	4021	3846	3917	5144	4933	1627	5386	*	4917	5863	5073	5486	4388	4094	5401	4203	115
+       151	3998	4754	817	1210	0	*	8528	1171	1038	
+
+K 116  5471	4501	3605	4478	4711	5054	*	6427	4600	3019	*	5033	2354	3900	6953	3629	3897	3151	*	*	116
+       1746	697	3556	926	1078	463	1865	8190	1551	1065	
+
+S 117  5328	*	4821	*	5088	5013	4870	*	*	1830	*	2910	5111	4134	*	3831	3479	2769	*	4704	117
+       0	*	*	*	*	*	0	10314	0	1215	
+
+N 118  3650	*	5212	4865	*	2954	3326	4027	3757	2767	5424	4234	*	*	*	3205	3969	3331	*	*	118
+       71	5393	5387	1585	585	3042	187	11067	1003	1215	
+
+S 119  2826	*	5405	*	4898	*	*	4521	3503	3240	5351	5540	2873	3624	*	3133	3059	3907	*	*	119
+       98	*	3933	*	*	249	2660	11548	0	1226	
+
+T 120  2792	*	5491	4711	3570	*	5485	2783	4893	3458	5348	5585	4530	3997	5442	3741	3657	3468	*	*	120
+       142	3702	5872	950	1052	1111	897	10931	1127	1125	
+
+A 121  2082	*	*	*	5753	4842	4891	5053	3430	5021	*	5067	2833	3458	4809	2822	5208	4497	*	6212	121
+       31	*	5561	*	*	*	0	11840	0	1086	
+
+D 122  3379	4789	3294	4637	6514	4402	5118	*	4500	5710	*	8195	3865	4206	4834	1996	5840	3296	*	4501	122
+       75	*	4296	*	*	1057	945	7035	0	1131	
+
+A 123  1319	6054	4934	4867	5720	4437	*	*	*	3462	6582	6419	4776	4760	6336	3399	4605	3326	*	5826	123
+       178	4157	4065	1938	436	1708	527	6355	1173	1197	
+
+Q 124  3499	*	3543	2952	*	5005	5790	6294	*	6137	*	3556	3490	3384	5563	2633	2715	5970	*	*	124
+       105	3914	7922	645	1472	635	1490	6388	1208	1333	
+
+S 125  2611	4637	3317	4609	5787	5022	5574	4708	*	4683	*	5006	4044	5539	6794	2435	2890	3929	*	*	125
+       28	5725	*	2121	377	272	2542	6462	1036	1171	
+
+L 126  3459	*	3713	6888	3939	5511	*	3831	*	1712	*	6227	6764	*	6655	5578	2629	3106	*	5031	126
+       48	4933	*	1521	618	*	0	6586	1101	1000	
+
+H 127  4674	7062	3938	4271	5607	4604	4144	*	4648	5789	6655	4933	5821	3411	5182	1478	3850	5478	*	5191	127
+       31	*	5576	*	*	*	0	6586	0	1000	
+
+F 128  *	*	*	*	317	*	6194	5675	6852	4356	*	*	*	6467	*	*	*	6067	*	3643	128
+       0	*	*	*	*	*	0	6504	0	1074	
+
+T 129  *	*	4961	6467	*	*	*	3593	5014	4360	*	1576	9135	6252	5427	2249	3347	3259	*	7059	129
+       24	7130	6746	1000	1000	*	0	6504	1000	1074	
+
+F 130  *	5395	*	*	1005	*	6536	4561	8092	3572	6705	8221	6850	*	6184	*	6553	*	6922	1822	130
+       0	*	*	*	*	*	0	6500	0	1121	
+
+N 131  4990	*	3714	6109	*	4728	5639	6923	5726	*	*	1980	3065	4288	6850	2185	2921	*	*	6950	131
+       168	4004	4402	1552	602	*	0	6500	1225	1121	
+
+Q 132  *	*	4489	4525	5603	1856	*	*	4064	5397	*	3893	5465	5954	3765	1803	4180	*	*	6598	132
+       38	6833	5852	0	*	814	1214	6508	1000	1328	
+
+F 133  6147	*	6365	6177	277	*	*	*	6140	4324	*	6593	*	*	*	5232	6642	*	*	5391	133
+       216	4731	3305	0	*	2722	237	6524	1099	1198	
+
+S 134  4591	*	2849	4887	5419	4555	6915	5687	3931	*	*	2943	5966	4931	5045	2315	2622	4954	5510	*	134
+       184	3696	4553	989	1011	2565	267	6411	1243	1657	
+
+Q 135  3825	*	4149	3383	*	3167	5896	*	4087	5553	*	3979	3485	4112	5203	2197	3705	6661	*	5236	135
+       251	3984	3370	1496	631	1079	925	6388	1194	1715	
+
+S 136  2971	8062	3605	4305	*	4511	6372	*	4784	5320	6288	2661	4597	5547	4840	2510	2727	*	*	5416	136
+       521	3316	2303	1261	779	1387	695	6457	1302	1692	
+
+P 137  3047	*	3418	4140	*	4379	5444	*	5382	4403	5509	2921	3558	3421	6042	3066	4283	4591	*	5223	137
+       377	2681	3754	1179	841	1095	911	6277	1579	2084	
+
+K 138  3581	5979	3764	4885	6329	3266	6520	*	3216	5519	*	3997	3118	5204	4022	2561	3925	5413	*	6487	138
+       34	5421	*	588	1579	784	1254	6332	1040	1826	
+
+D 139  4752	*	1985	4385	*	3975	6514	4858	5169	5508	*	1708	6952	4462	5485	3305	5608	*	*	*	139
+       91	4038	*	1276	768	0	*	6470	1232	1335	
+
+L 140  6702	*	5559	*	3611	*	*	2210	*	1199	3641	5942	*	*	*	5384	4915	4058	7421	5941	140
+       0	*	*	*	*	*	*	6641	0	0	
+
+I 141  4124	*	*	4521	4140	*	4153	2611	4292	3676	*	6084	7421	4791	4615	3474	2638	3105	*	5116	141
+       24	7170	6694	0	*	*	*	6641	1000	0	
+
+L 142  5674	5961	*	8245	2352	*	*	3957	6380	1336	5203	*	*	6465	5678	5456	4639	3422	6407	3909	142
+       14	6738	*	1000	1000	0	*	6631	1027	1002	
+
+Q 143  6745	*	2940	2433	5071	5916	5231	5454	6088	3008	5912	3920	*	2080	7041	5147	5678	5603	*	4463	143
+       94	5341	4699	1747	510	*	*	6641	1082	0	
+
+G 144  5192	6630	4946	5383	6803	356	*	*	6807	*	*	6016	6559	*	4178	5298	*	*	*	*	144
+       13	*	6803	632	1495	313	2359	6607	1048	1163	
+
+D 145  3522	*	1357	4753	6514	4744	*	5385	6391	*	5987	3106	4563	5794	6373	3020	5032	5472	*	5596	145
+       23	*	5968	*	*	932	1072	6618	0	1044	
+
+A 146  404	*	5878	*	*	5037	*	*	*	*	*	*	6343	7994	*	3390	4235	4970	*	*	146
+       30	*	5613	*	*	631	1498	6647	0	1073	
+
+S 147  3404	*	6593	4414	4492	6165	5327	5055	3525	5892	6947	5222	*	5727	4040	2744	2396	3506	7414	3581	147
+       0	*	*	*	*	602	1551	6623	0	1077	
+
+T 148  7036	*	*	4920	3423	6446	*	1663	6687	2767	7193	6742	5600	*	*	4952	4821	2104	*	4472	148
+       305	7005	2453	0	*	*	0	6640	1000	1001	
+
+D 149  4070	*	3890	4666	6047	3061	4684	4688	7114	4107	6404	4313	4338	4501	4823	2530	2888	4500	*	6350	149
+       579	4503	1803	1488	636	219	2830	6267	1134	1752	
+
+S 150  3751	5464	3713	3966	5969	3912	6825	6245	4849	*	*	3087	2614	4243	4596	2227	6265	7152	*	6061	150
+       150	*	3344	*	*	91	4033	6421	0	2061	
+
+D 151  4424	*	2503	5351	5392	3460	4229	*	3290	*	*	1942	6195	5800	5133	3515	4857	4644	*	*	151
+       27	6885	6593	0	*	156	3289	6617	1003	1341	
+
+G 152  5440	*	3548	6933	*	640	*	*	5685	6161	*	4549	6372	6832	5561	4008	4632	5578	*	*	152
+       110	4106	6019	744	1311	956	1046	6632	1193	1043	
+
+N 153  2627	6670	5077	6513	*	5990	4881	3428	5939	2813	6773	5770	5572	6663	4185	2962	3657	3016	6770	4932	153
+       53	5619	5961	1096	910	602	1552	6749	1052	1077	
+
+L 154  *	*	*	*	6562	6236	*	1857	*	954	*	*	*	*	6186	*	6227	2673	*	*	154
+       0	*	*	*	*	1556	600	6732	0	1081	
+
+Q 155  4226	*	3861	3264	6862	5451	6917	*	3894	5112	*	4570	*	1772	2628	3736	4794	5061	*	*	155
+       0	*	*	2000	415	999	1001	6737	1001	1040	
+
+L 156  *	*	*	*	5069	*	*	4174	*	294	6583	*	*	*	*	*	5606	3869	*	*	156
+       81	5758	4797	694	1389	0	*	6740	1089	1001	
+
+T 157  3993	*	*	*	*	6919	6462	*	*	6573	*	3945	6147	*	*	3737	409	*	*	*	157
+       14	6682	*	0	*	1890	454	6712	1006	1137	
+
+R 158  5160	5035	3511	*	*	4750	6867	5382	2542	4992	6152	1971	3753	*	3138	3604	4579	*	*	*	158
+       298	6778	2494	0	*	*	0	6722	1001	1090	
+
+V 159  4370	*	2142	4528	*	4983	*	4811	4087	5395	*	2547	5388	*	4196	3744	4041	2767	*	*	159
+       279	*	2507	*	*	4225	79	6504	0	1822	
+
+S 160  6443	*	3752	3340	6081	3285	*	5753	4296	3570	*	3594	*	4818	*	2473	2408	4617	5876	*	160
+       826	2025	2394	135	3487	2848	216	6093	1698	2305	
+
+N 161  4083	*	4493	5053	*	5157	5768	3907	5170	3108	*	1806	5833	4216	6258	3257	3405	6010	*	5333	161
+       159	*	3256	*	*	1162	855	5858	0	2639	
+
+G 162  4300	*	2898	5448	6338	1485	*	*	4551	5540	*	2994	5097	5689	*	3988	3631	5262	6107	*	162
+       191	4753	3528	683	1407	3327	151	6173	1087	2150	
+
+S 163  4357	6300	4637	3776	5393	3060	*	4821	4139	4667	5217	3792	6207	5191	6501	2626	2726	3728	*	6585	163
+       256	4562	3058	470	1848	3910	99	6171	1085	2281	
+
+P 164  4639	*	*	*	5974	4516	5919	5767	3756	4020	*	3105	1608	3611	4308	3536	5464	4498	*	*	164
+       176	3376	5767	2019	409	1173	846	6021	1212	2524	
+
+Q 165  4907	5233	6162	5907	4596	5334	4694	4149	5329	3410	5109	5115	4374	3144	3461	3262	4998	3150	6529	4051	165
+       459	6182	1951	0	*	1299	752	6529	1002	1911	
+
+S 166  5115	4656	4806	5211	5052	4196	6470	4317	4212	5180	5159	3437	4153	6744	4618	4047	2240	3708	6002	4316	166
+       94	3993	*	1652	552	1785	494	6393	1236	2359	
+
+D 167  4812	6087	3094	5424	4143	3302	5442	*	5445	6547	*	2439	4866	5198	3211	2551	5369	*	6354	4893	167
+       80	5138	5273	0	*	454	1888	6523	1094	1977	
+
+S 168  4475	6660	*	*	*	3526	*	6485	3376	3457	*	5617	6337	3182	4571	1483	3849	4390	*	*	168
+       26	*	5806	*	*	2036	403	6691	0	1338	
+
+V 169  2863	*	4600	*	5113	5384	5306	3837	4309	4333	5064	5554	*	6832	*	2520	3148	2471	5638	5288	169
+       13	6771	*	0	*	314	2355	6725	1003	1329	
+
+G 170  6734	*	*	*	*	110	*	*	6545	*	*	*	*	*	*	4228	*	*	*	*	170
+       16	*	6545	*	*	*	0	6739	0	1034	
+
+R 171  6671	*	*	*	*	6155	2409	6637	4821	5526	*	*	*	4209	776	4595	5460	*	5745	*	171
+       0	*	*	*	*	*	0	6739	0	1085	
+
+A 172  783	5409	*	*	6938	6773	*	3860	*	5846	5083	*	*	*	*	6549	6628	2049	*	*	172
+       0	*	*	*	*	*	0	6739	0	1085	
+
+L 173  5049	6433	*	*	1791	*	*	4772	*	1677	4580	*	*	*	5065	3481	3644	4398	6155	5857	173
+       0	*	*	*	*	*	0	6739	0	1085	
+
+Y 174  6762	7129	*	6204	2658	*	4187	*	6604	3798	*	*	*	*	5844	6625	*	6667	6510	675	174
+       0	*	*	*	*	*	0	6710	0	1085	
+
+Y 175  4034	*	6204	6144	6568	4722	5971	*	3245	5741	6816	3580	2500	4988	4793	2057	3276	5153	*	6141	175
+       20	6196	*	0	*	0	*	6710	1018	1085	
+
+A 176  3476	5682	4839	3624	5160	6581	5609	5389	2824	4852	*	4248	5789	3131	3226	3487	3239	6545	*	5760	176
+       5	*	8192	*	*	*	*	6724	0	0	
+
+P 177  5189	*	7078	4530	*	*	*	6222	3840	5778	*	*	517	5279	4928	4607	6454	6543	*	*	177
+       51	5227	7012	486	1805	*	0	6722	1107	1000	
+
+V 178  *	5142	*	*	2950	*	*	1969	*	2510	5367	*	*	6157	*	5689	*	1500	*	*	178
+       0	*	*	*	*	*	0	6695	0	1069	
+
+H 179  5578	*	4655	*	6614	*	2751	*	3398	*	*	4649	2557	2454	2362	6437	4400	5708	*	5579	179
+       13	*	6819	*	*	*	0	6695	0	1069	
+
+I 180  *	*	*	*	1991	*	*	2868	*	1195	4624	*	*	*	*	4683	5679	3728	*	*	180
+       71	*	4376	*	*	*	0	6685	0	1109	
+
+W 181  6920	6548	*	*	4503	5525	5064	*	3028	3881	*	6685	*	6641	2999	5338	6660	5200	1193	4301	181
+       29	6597	6657	1028	973	2306	326	6479	1043	1340	
+
+D 182  6736	*	1251	3150	*	*	5451	*	5636	*	*	2621	5274	5559	5752	2714	6657	6163	*	6592	182
+       319	2480	5698	700	1379	869	1144	6648	1738	1345	
+
+K 183  3520	*	4272	5145	5236	5141	5878	*	2801	5722	*	4275	3847	4687	5149	1661	4456	4669	*	6745	183
+       851	1235	5585	218	2835	2708	240	6668	2709	1226	
+
+S 184  3701	*	4346	5191	*	3577	4948	*	5529	*	6151	3019	5655	4963	5206	2247	1828	*	*	*	184
+       169	3885	4549	1686	537	3034	188	6633	1277	1280	
+
+A 185  4727	*	5092	6638	*	1367	6773	4637	5077	6927	*	3641	7389	6342	3589	2901	3020	6738	*	*	185
+       261	2597	*	1084	920	1605	575	6593	1612	1405	
+
+V 186  4010	*	5546	3674	5673	3469	5723	6381	2564	*	*	2858	6312	5555	3522	3724	2783	4371	*	*	186
+       138	3598	6879	573	1610	646	1470	6655	1373	1261	
+
+V 187  3299	*	6695	4931	*	4995	*	4920	4806	2717	*	5057	4116	5625	5632	4463	4614	1361	*	*	187
+       97	4233	6426	859	1156	937	1066	6706	1193	1107	
+
+A 188  1126	6870	*	*	4744	6883	6668	*	*	4131	6540	4805	5845	5504	3927	2923	3558	4605	*	6522	188
+       45	*	5030	*	*	1325	735	6707	0	1077	
+
+S 189  6641	*	3001	5560	*	5420	*	*	*	*	*	4459	4685	*	*	498	6126	*	*	6162	189
+       0	*	*	*	*	1946	434	6436	0	1157	
+
+F 190  *	*	*	*	125	*	*	6123	*	4979	*	*	*	*	*	5731	*	*	5811	*	190
+       0	*	*	*	*	*	0	6611	0	1107	
+
+D 191  4535	*	5877	4921	6409	*	5052	*	6529	6754	*	3326	*	7102	5271	1249	2242	3849	*	6578	191
+       27	5731	*	0	*	*	0	6611	1038	1107	
+
+A 192  3534	*	*	*	*	*	5522	*	*	*	*	*	*	*	*	3145	407	5342	*	*	192
+       16	*	6499	*	*	*	0	6611	0	1107	
+
+T 193  4586	*	*	4017	5223	*	3179	6734	*	6162	6777	3897	*	4923	3920	1616	2571	5932	*	4322	193
+       0	*	*	*	*	*	0	6436	0	1157	
+
+F 194  *	*	*	*	131	*	5756	5668	*	4659	*	*	*	*	*	*	*	6835	*	*	194
+       40	*	5203	*	*	1369	706	6436	0	1157	
+
+T 195  4590	*	*	4360	6233	*	*	4311	6909	4960	6430	5191	*	4686	*	1690	2536	2026	*	*	195
+       0	*	*	2702	241	544	1670	6473	1040	1218	
+
+F 196  *	6454	*	*	304	*	*	3690	*	4154	*	*	*	*	*	*	*	5257	*	5744	196
+       13	6805	*	0	*	668	1432	6722	1003	1043	
+
+L 197  2305	6619	7237	*	5592	5343	*	3735	4151	4835	*	3134	*	4469	4724	2389	3754	3343	6873	*	197
+       0	*	*	*	*	*	0	6722	0	1000	
+
+I 198  6476	5218	*	*	5147	*	*	550	*	4132	3819	*	5552	*	*	*	7050	3412	*	*	198
+       54	4771	*	1068	935	*	0	6722	1128	1000	
+
+K 199  4214	*	3667	4705	4472	6917	4638	5353	4636	4669	*	3452	5261	4379	3758	4116	2520	3266	*	4158	199
+       93	4447	5944	495	1783	*	0	6722	1147	1000	
+
+S 200  3605	5671	6754	4774	6609	3835	5744	6203	4811	6832	6305	3828	1823	5180	3884	2826	3600	6513	*	*	200
+       319	2563	5090	124	3607	768	1277	6733	1828	1157	
+
+P 201  5373	*	4271	4143	5786	4384	5500	3936	3131	4089	*	2916	3130	4005	5249	3557	4287	4595	6724	5736	201
+       232	2868	6428	1137	875	2051	398	6448	1537	1172	
+
+D 202  4623	*	2581	5292	7158	4571	5797	6016	4545	5035	*	2406	3431	4978	4293	3126	4503	*	6720	3671	202
+       592	1727	4851	514	1737	2194	356	6430	2248	1215	
+
+R 203  4783	7327	4021	5047	*	2836	4866	6532	*	5123	*	2760	3610	6456	3976	2363	3293	5096	*	5530	203
+       353	2203	*	195	2986	3222	164	6373	1824	1324	
+
+E 204  3791	6325	5504	3819	5299	4516	4928	3621	6175	3387	6666	3726	4456	4671	3765	2984	3630	4159	6421	6486	204
+       118	3896	6465	227	2781	1148	866	6340	1238	1411	
+
+I 205  4360	5666	5084	5070	4877	2178	5126	4930	4302	5687	7004	6542	2831	4651	3889	3237	4643	*	*	3770	205
+       30	5604	*	0	*	157	3282	6493	1041	1251	
+
+A 206  2047	*	5141	*	*	703	*	5050	*	*	*	*	*	7155	5552	4799	6652	*	*	6473	206
+       35	*	5386	*	*	*	0	6722	0	1000	
+
+D 207  *	4972	1190	3152	5111	4220	2578	*	*	*	*	4418	5733	5520	*	5478	5547	*	*	4792	207
+       13	6789	*	0	*	355	2196	6666	1003	1099	
+
+G 208  5748	*	7264	*	*	67	*	*	*	*	*	*	*	*	6476	*	*	6810	*	*	208
+       16	*	6543	*	*	*	0	6722	0	1000	
+
+I 209  *	*	*	*	2724	*	*	2685	*	1231	2140	*	*	*	5548	*	*	*	5744	*	209
+       0	*	*	*	*	*	0	6722	0	1043	
+
+A 210  612	5810	6154	6573	*	*	*	6635	*	5744	*	*	*	*	*	4277	3141	3470	*	5678	210
+       28	5678	*	2000	415	*	0	6722	1038	1043	
+
+F 211  *	*	5678	*	152	5548	*	*	6154	4838	*	*	*	*	*	6621	*	*	*	*	211
+       0	*	*	*	*	668	1432	6722	0	1043	
+
+F 212  4458	*	*	*	1296	*	*	3587	*	3214	*	6492	*	*	*	6901	3724	2140	*	4871	212
+       28	*	5678	*	*	*	0	6722	0	1000	
+
+I 213  *	*	*	*	4932	*	*	1655	*	1079	4367	*	*	*	*	*	*	2965	*	*	213
+       0	*	*	0	*	1710	526	6717	1001	1090	
+
+A 214  1263	6564	*	4955	6996	4203	*	6484	6814	6864	6575	6696	5516	5295	*	2353	3453	3395	*	*	214
+       70	6858	4701	1000	1000	*	0	6691	1011	1051	
+
+N 215  4441	*	*	*	*	4109	5497	*	*	*	*	4586	690	*	*	2485	4897	*	*	*	215
+       105	4930	4750	0	*	655	1454	6646	1088	1204	
+
+T 216  4532	*	4751	4631	4987	5021	4584	6845	5813	4518	5601	3946	3280	6734	6506	2611	2893	3327	5727	3652	216
+       218	6749	2935	0	*	190	3020	6350	1000	1204	
+
+D 217  4294	*	2388	6859	*	2680	6898	*	3350	5376	5487	2991	3095	6446	4289	3310	4866	*	*	*	217
+       380	*	2112	*	*	183	3072	6327	0	1530	
+
+S 218  3499	*	5575	5641	4831	6437	6072	6747	4015	4608	*	5318	4301	*	6185	1683	2104	*	*	3981	218
+       37	*	5292	*	*	226	2786	6135	0	1852	
+
+S 219  4878	*	3245	3875	6202	4189	*	*	3878	6496	6109	2860	5066	2695	3613	3595	3676	4401	*	5768	219
+       173	4663	3770	0	*	1833	475	6317	1110	1194	
+
+I 220  5359	*	*	*	3568	7025	*	2328	*	1383	5018	6109	3391	6489	5756	4747	6398	3616	*	*	220
+       81	5447	4981	0	*	960	1041	6291	1044	1391	
+
+P 221  4996	*	5474	4886	*	4008	5577	*	5007	6661	5590	4813	915	5086	6813	3085	4909	6353	*	*	221
+       134	*	3500	*	*	913	1093	6260	0	1301	
+
+H 222  3062	*	3745	4431	*	3017	5599	5402	3907	5096	*	5681	2522	4158	4852	3707	3794	4703	*	5364	222
+       95	5918	4407	0	*	927	1077	6204	1038	1431	
+
+G 223  2013	6466	3983	5444	*	2059	6050	*	4541	6210	6685	2701	*	*	4474	4460	4477	5491	*	5506	223
+       42	5864	6415	0	*	103	3861	6293	1037	1391	
+
+S 224  4286	*	4721	6840	4701	3821	6776	5114	5561	3608	5293	4687	5490	5567	5459	1163	4966	5721	6366	6415	224
+       35	6454	6330	0	*	1501	629	6205	1003	1073	
+
+G 225  2465	6064	6384	5051	*	3491	5046	6527	4592	5036	6547	4889	2777	*	6693	2790	3503	5112	6102	3580	225
+       53	5098	7207	0	*	430	1957	6204	1092	1078	
+
+G 226  5037	6437	4432	4680	*	752	*	6415	*	6180	*	4060	6599	*	6893	3283	4340	*	*	5464	226
+       31	*	5572	1585	585	819	1207	6192	1001	1031	
+
+R 227  5566	*	*	5178	*	1074	5968	6885	6666	*	6856	5737	4430	1974	4603	4277	6408	6761	*	*	227
+       37	5297	*	0	*	1755	507	6172	1061	1077	
+
+L 228  5022	4683	6475	5924	2720	4969	4928	*	*	3898	*	3836	*	*	*	5230	5670	5922	3521	1326	228
+       0	*	*	*	*	*	0	6163	0	1043	
+
+L 229  *	*	*	*	3870	*	*	4742	*	206	5797	*	*	*	*	*	*	*	*	6712	229
+       0	*	*	*	*	*	0	6163	0	1043	
+
+G 230  4549	*	*	*	*	119	*	*	*	*	*	5480	*	*	*	6151	*	*	*	*	230
+       0	*	*	*	*	*	0	6163	0	1043	
+
+L 231  *	*	*	*	4588	*	*	3347	*	348	*	*	*	*	*	*	*	3996	6383	*	231
+       0	*	*	*	*	*	0	6119	0	1043	
+
+F 232  4435	*	*	*	1187	*	*	4297	*	2444	5043	*	4970	7031	*	*	3167	3340	*	*	232
+       24	*	5911	*	*	*	0	6136	0	1043	
+
+P 233  4841	*	3486	4164	*	5687	*	*	5436	*	6497	795	4402	*	6077	3605	4439	*	*	*	233
+       0	*	*	*	*	*	0	6073	0	1101	
+
+D 234  3514	*	4351	3304	6492	3657	*	5209	3953	6293	*	3587	2868	4741	3338	3147	4068	5455	*	5994	234
+       129	3547	*	0	*	660	1445	5983	1158	1101	
+
+A 235  3110	5115	5062	4233	*	4027	6008	5885	4364	*	*	4710	5498	5968	5343	1630	2281	*	*	*	235
+       0	*	*	*	*	0	*	5734	0	1013	
+
+N 236  *	*	2568	*	*	*	*	*	3995	*	*	722	*	*	*	*	2622	*	*	*	236
+       0	*	*	0	*	*	*	4327	0	0	
+
+//
+�HHsearch 1.5
+NAME  ff5c81bfb664296a11b43497a69645cc
+FAM   
+FILE  ff5c81bfb664296a11b43497a69645cc
+COM   /import/bc2/soft/app/hhsuite/2.0.16/Linux/bin/hhmake -i <118 characters> -o <118 characters> 
+DATE  Fri Sep  6 12:34:34 2013
+LENG  198 match states, 198 columns in multiple alignment
+FILT  10 out of 12 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  2.7 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCCCEEEEEEEECCCCEEEEECCEEEEEEEEEEECCCCEEEEEECCEEEEEEEEECCCHHHHCCCCCCCCCCCCCEEECCCCCCCEEEEECCCCCCCCC
+CCCEEEEECCCCCCCCCCCCCCCEEEEECCCCCCCCEEEECCCCEEEEECCEEHHHHHHHHCCCCCCCCCCCCCCEECCCCCCCHHHHHHHHCCCCCC
+>ss_conf PSIPRED confidence values
+9766646688841144137987996999987899649988999856759999998757412300456546677882260447856568870578410110
+49769998889888986833897898865788756257988898197242387889456545999757676874573353218678999874177689
+>Consensus
+xxxxNxvxVxGssxGSGgvftxxgxxvvvTAsHVlxxxxaxvxxvxxxrxxltFkxxGDyaeaxxxxxxxxGxxPxxxxaxxxxGrAYwxxxxGvexgxi
+gxxxxxxfTxxGDSGSPViexGxliGVHTGSnxxGxGxvTtxxGxtxxxxxvkLSemxxhyxGPxvxxxxklpxxiixDvxxVpxxLaxllxxxxxxe
+>ff5c81bfb664296a11b43497a69645cc
+KARGNVGFVAGSSYGTGSVWTRNNEVVVLTASHVVGRANMATLKIGDAMLTLTFKKNGDFAEAVTTQSELPGNWPQLHFAQPTTGPASWCTATGDEEGLL
+SGEVCLAWTTSGDSGSAVVQGDAVVGVHTGSNTSGVAYVTTPSGKLLGADTVTLSSLSKHFTGPLTSIPKDIPDNIIADVDAVPRSLAMLIDGLSNRE
+>gi|330895434|gb|AEC48046.1| polyprotein [Simian hemorrhagic fever virus]
+--ATNTRRICGEKVGVCGVFQRGVDHIIITASHVLGNGDVGVVEIEGQRREVTFKKTGDFAvGNITG---LKGAYPTYREAPNHIGRAYWLCANGVESGF
+VGTDGCVVYTGPGDSGSPVVtPSGDLIGIHTGSDTFGCGAISKSDGHVI-VGPVKLSEMARYYAGPLQKTPTKMPRNVVGDCENVPLTLARVIAD-----
+>gi|330895463|gb|AEC48058.1| polyprotein [Simian hemorrhagic fever virus]
+--TDNAVGVFGTSVGSGGLFNRNGKTIVVTASHVIGDRNEGYVDLAGIRTRVQFVKKGDFAEGEID---VPGTYPDFKPVTNYVGRAYWLCQNGVEAGFI
+APTGCVVFTGPGDSGSPIItPDGSFIGVHTGSDAKGCGAFTTISGETV-HGVVPLSVIAPHYDG-V-sTTVKHLPKNVVADVTTVPHSLANILEK-----
+>gi|62511096|sp|Q9WJB2.2|RPOA_PRRSR RecName: Full=Replicase polyprotein 1ab; AltName: Full=ORF1ab polyprotein; Contains: RecName: Full=Nsp1; Contains: RecName: Full=Nsp1-alpha papain-like cysteine proteinase; AltName: Full=PCP1-alpha; Contains: RecName: Full=Nsp1-beta papain-like cysteine proteinase; AltName: Full=PCP1-beta; Contains: RecName: Full=Nsp2 cysteine proteinase; AltName: Full=CP2; Short=CP; Contains: RecName: Full=Non-structural protein 3; Short=Nsp3; Contains: RecName: Full=3C-like serine proteinase; Short=3CLSP; AltName: Full=Nsp4; Contains: RecName: Full=Non-structural protein 5-6-7; Short=Nsp5-6-7; Contains: RecName: Full=Non-structural protein 8; Short=Nsp8; Contains: RecName: Full=RNA-directed RNA polymerase; Short=Pol; Short=RdRp; AltName: Full=Nsp9; Contains: RecName: Full=Helicase; Short=Hel; AltName: Full=Nsp10; Contains: RecName: Full=Non-structural protein 11; Short=Nsp11; Contains: RecName: Full=Non-structural protein 12; Short=Nsp12
+KPSLNTVNVIGSSMGSGGVFTIDGKVKCVTAAHVLTGNSARVSGVGFNQ-MLDFDVKGDF--AIADCPNWQGAAPKTQFCTDGwTGRAYWLTSSGVEPGV
+IGKGFAFCFTACGDSGSPVItEAGELVGVHTGSNKQGGGIVTRPSGQFCNVAPIKLSELSEFFAGPKVPLGDvKVGSHIIKDISEVPSDLCALLAAKPEL
+E
+>gi|302393818|sp|Q04561.3|RPOA_PRRSL RecName: Full=Replicase polyprotein 1ab; AltName: Full=ORF1ab polyprotein; Contains: RecName: Full=Nsp1; Contains: RecName: Full=Nsp1-alpha papain-like cysteine proteinase; AltName: Full=PCP1-alpha; Contains: RecName: Full=Nsp1-beta papain-like cysteine proteinase; AltName: Full=PCP1-beta; Contains: RecName: Full=Nsp2 cysteine proteinase; AltName: Full=CP2; Short=CP; Contains: RecName: Full=Non-structural protein 3; Short=Nsp3; Contains: RecName: Full=3C-like serine proteinase; Short=3CLSP; AltName: Full=Nsp4; Contains: RecName: Full=Non-structural protein 5-6-7; Short=Nsp5-6-7; Contains: RecName: Full=Non-structural protein 8; Short=Nsp8; Contains: RecName: Full=RNA-directed RNA polymerase; Short=Pol; Short=RdRp; AltName: Full=Nsp9; Contains: RecName: Full=Helicase; Short=Hel; AltName: Full=Nsp10; Contains: RecName: Full=Non-structural protein 11; Short=Nsp11; Contains: RecName: Full=Non-structural protein 12; Short=Nsp12
+KPCLNTVNVVGSSLGSGGVFTIDGRRTVVTAAHVLNGDTARVTGDSYNR-MHTFKTNGDY--AWSHADDWQGVAPVVKVAK-GyRGRAYWQTSTGVEPGI
+IGEGFAFCFTNCGDSGSPVIsESGDLIGIHTGSNKLGSGLVTTPEGETCTIKETKLSDLSRHFAGPSVPLGDiKLSPAIIPDVTSIPSDLASLLASVPVV
+E
+>gi|62510944|sp|Q06502.2|RPOA_LDVC RecName: Full=Replicase polyprotein 1ab; AltName: Full=ORF1ab polyprotein; Contains: RecName: Full=Nsp1-alpha papain-like cysteine proteinase; AltName: Full=PCP1-alpha; Contains: RecName: Full=Nsp1-beta papain-like cysteine proteinase; AltName: Full=PCP1-beta; Contains: RecName: Full=Nsp2 cysteine proteinase; AltName: Full=CP2; Short=CP; Contains: RecName: Full=Non-structural protein 3; Short=Nsp3; Contains: RecName: Full=3C-like serine proteinase; Short=3CLSP; AltName: Full=Nsp4; Contains: RecName: Full=Non-structural protein 5-6-7; Short=Nsp5-6-7; Contains: RecName: Full=Non-structural protein 8; Short=Nsp8; Contains: RecName: Full=RNA-directed RNA polymerase; Short=Pol; Short=RdRp; AltName: Full=Nsp9; Contains: RecName: Full=Helicase; Short=Hel; AltName: Full=Nsp10; Contains: RecName: Full=Non-structural protein 11; Short=Nsp11; Contains: RecName: Full=Non-structural protein 12; Short=Nsp12
+GCAKNVVSVFGSASGSGGVFTINGNPVVVTASHLLSDGKARVSCVGFSQ-CLDFKCAGDY--AFARVANWKGDAPKAELSH--rRGRAYCSPLVGLSLDL
+LGKNSAFCFTKCGDSGSPVVdEDGNLLGIHTGSNKRGSGMVTTHGGKTLGMANVKLSEMCPHYSGPGVPVSTvKLPKHLVVDVETVSSDLVAVVESLPAL
+E
+>gi|123432666|ref|YP_001008394.1| polyprotein 1ab [Lactate dehydrogenase-elevating virus]gi|62510951|sp|Q83017.2|RPOA_LDVP RecName: Full=Replicase polyprotein 1ab; AltName: Full=ORF1ab polyprotein; Contains: RecName: Full=Nsp1-alpha papain-like cysteine proteinase; AltName: Full=PCP1-alpha; Contains: RecName: Full=Nsp1-beta papain-like cysteine proteinase; AltName: Full=PCP1-beta; Contains: RecName: Full=Nsp2 cysteine proteinase; AltName: Full=CP2; Short=CP; Contains: RecName: Full=Non-structural protein 3; Short=Nsp3; Contains: RecName: Full=3C-like serine proteinase; Short=3CLSP; AltName: Full=Nsp4; Contains: RecName: Full=Non-structural protein 5-6-7; Short=Nsp5-6-7; Contains: RecName: Full=Non-structural protein 8; Short=Nsp8; Contains: RecName: Full=RNA-directed RNA polymerase; Short=Pol; Short=RdRp; AltName: Full=Nsp9; Contains: RecName: Full=Helicase; Short=Hel; AltName: Full=Nsp10; Contains: RecName: Full=Non-structural protein 11; Short=Nsp11; Contains: RecName: Full=Non-structural protein 12; Short=Nsp12
+GCAKNVVSVFGSASGSGGVFTIHGNPVVVTATHLLSDGKARVSCVGFSQ-CLTFKSVGDY--AFARVAEWKGDAPKVELSD--rRGRAYCSPQVEWSLVL
+LGPNTAFCFTKCGDSGSPVVdEDGNLIGVHTGSNKRGSGMITTHNGKTLGMSNVKLSEMCQHYGGSGVPVSTvRLPKHLIVDVEAVASDLVAVVESLPTP
+E
+>gi|262358357|gb|ACY56797.1| replicase polyprotein 1a [Porcine reproductive and respiratory syndrome virus]
+KPCLNTVNVVGSSLGSGGVFIIDGRKTIITATHVLNGDTARVTSDSYNR-MHTFRANGDY--AWSYADDWQGVAPAVKVAK-SyRGRAYWQTSSGVEPGV
+IGEGFALCFTNCGDSGSPVIsETGDLVGVHTGSNKLGSGLVTTPEGETCSIKETRLSDLSRYFAGPNVPLGDiKLSPAIIPDVTFVPSDLASLLASVPVV
+E
+>gi|62510949|sp|Q68772.3|RPOA_SHFV RecName: Full=Replicase polyprotein 1ab; AltName: Full=ORF1ab polyprotein; Contains: RecName: Full=Nsp1-alpha papain-like cysteine proteinase; AltName: Full=PCP1-alpha; Contains: RecName: Full=Nsp1-beta papain-like cysteine proteinase; AltName: Full=PCP1-beta; Contains: RecName: Full=Nsp2 cysteine proteinase; AltName: Full=CP2; Short=CP; Contains: RecName: Full=Non-structural protein 3; Short=Nsp3; Contains: RecName: Full=3C-like serine proteinase; Short=3CLSP; AltName: Full=Nsp4; Contains: RecName: Full=Non-structural protein 5-6-7; Short=Nsp5-6-7; Contains: RecName: Full=Non-structural protein 8; Short=Nsp8; Contains: RecName: Full=RNA-directed RNA polymerase; Short=Pol; Short=RdRp; AltName: Full=Nsp9; Contains: RecName: Full=Helicase; Short=Hel; AltName: Full=Nsp10; Contains: RecName: Full=Non-structural protein 11; Short=Nsp11; Contains: RecName: Full=Non-structural protein 12; Short=Nsp12
+---SNSVSVYGVTCGSGGLFSDGNNTVCLTATHVCGNNKAVVDYQGT-RYEAVFTTKGDYASAVVP---IPGAFPPLKFAPQSyTGRAYWYANTGVETGF
+VGTTGCLVFSGPGDSGSPIItPDGLIVGVHTGSDSKGSGAYTTPNGLTV-SGPLSLKEMGAHYEGPIVDVPTRLPRNVHNDTKSVPQPLARLLESSIN--
+>gi|22299180|ref|NP_682427.1| hypothetical protein tlr1637 [Thermosynechococcus elongatus BP-1]gi|22295362|dbj|BAC09189.1| tlr1637 [Thermosynechococcus elongatus BP-1]
+------------SHGSGILLQRHGNTyVILTAYHVIEKGGQYtVKTVDGQRYavrpssirrlpsvdlaTLEIESNRDYtlatlgnsGEAVEGMPVFVAGF
+PAQEASV--LGGIYQFTEGRLtanASRPIQDGYALVYSNptlPGMSGGPVLdENGRLIGIHGS-------------------------------------
+-------------------------------
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+K 1    *	*	*	*	*	1744	*	*	512	*	*	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	2090	0	0	
+
+A 2    1942	1744	*	*	*	*	*	*	*	*	*	*	1180	*	*	*	*	*	*	*	2
+       0	*	*	*	*	*	*	2090	0	0	
+
+R 3    1453	2359	*	*	*	*	*	*	*	*	*	*	*	*	2533	3074	2753	*	*	*	3
+       0	*	*	*	*	*	*	2537	0	0	
+
+G 4    *	*	3016	*	*	2700	*	*	2400	1847	*	*	*	*	*	3012	2930	*	*	*	4
+       0	*	*	*	*	*	*	2658	0	0	
+
+N 5    *	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	5
+       0	*	*	*	*	*	*	2658	0	0	
+
+V 6    3016	*	*	*	*	*	*	*	*	*	*	*	*	*	*	3012	1289	1542	*	*	6
+       0	*	*	*	*	*	*	2658	0	0	
+
+G 7    *	*	*	*	*	2700	*	*	*	*	*	*	*	*	2930	*	*	484	*	*	7
+       0	*	*	*	*	*	*	2658	0	0	
+
+F 8    *	*	*	*	2700	3016	*	*	*	*	*	1847	*	*	2930	1674	*	*	*	*	8
+       0	*	*	*	*	*	*	2658	0	0	
+
+V 9    *	*	*	*	*	*	*	2930	*	*	*	*	*	*	*	*	*	203	*	*	9
+       0	*	*	*	*	*	*	2658	0	0	
+
+A 10   2700	2930	*	*	1675	*	*	3251	*	*	*	*	*	*	*	*	*	2533	*	3012	10
+       0	*	*	*	*	*	*	2658	0	0	
+
+G 11   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	11
+       0	*	*	*	*	*	*	2658	0	0	
+
+S 12   *	*	*	2930	*	*	*	*	*	*	*	*	*	*	*	687	3016	3012	*	*	12
+       0	*	*	*	*	*	*	2658	0	0	
+
+S 13   2571	*	*	*	*	*	*	*	3071	*	*	*	*	*	*	733	3169	*	*	*	13
+       0	*	*	*	*	*	*	2811	0	0	
+
+Y 14   *	3169	*	*	*	*	3356	*	*	2685	3381	*	*	*	*	2571	*	2114	*	2833	14
+       0	*	*	*	*	*	*	2811	0	0	
+
+G 15   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	15
+       0	*	*	*	*	*	*	2811	0	0	
+
+T 16   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	433	2833	3071	*	*	16
+       0	*	*	*	*	*	*	2811	0	0	
+
+G 17   *	3071	*	*	*	183	*	*	*	*	*	*	*	*	*	*	*	*	*	*	17
+       0	*	*	*	*	*	*	2811	0	0	
+
+S 18   *	*	*	*	*	392	*	3356	*	*	*	*	*	*	*	2833	*	*	*	*	18
+       0	*	*	*	*	*	*	2811	0	0	
+
+V 19   *	*	*	*	*	*	*	*	*	1639	*	*	*	*	*	*	*	558	*	*	19
+       0	*	*	*	*	*	*	2811	0	0	
+
+W 20   *	*	*	*	392	*	*	*	*	3356	*	*	*	*	*	*	*	*	2833	*	20
+       0	*	*	*	*	*	*	2811	0	0	
+
+T 21   *	*	*	*	*	*	*	3667	*	*	*	3157	*	2207	*	3169	1055	*	*	*	21
+       0	*	*	*	*	*	*	2811	0	0	
+
+R 22   *	*	3169	*	*	*	*	1252	*	*	*	*	*	*	1092	*	*	*	*	*	22
+       0	*	*	*	*	*	*	2811	0	0	
+
+N 23   *	*	1992	*	*	2119	2449	*	*	*	*	1576	*	*	*	*	*	*	*	*	23
+       0	*	*	*	*	*	*	2811	0	0	
+
+N 24   *	*	*	*	*	668	*	*	*	*	*	1991	*	*	*	*	*	3071	*	*	24
+       0	*	*	*	*	*	*	2811	0	0	
+
+E 25   *	*	3071	2833	*	*	*	*	2265	*	*	1407	*	*	2685	*	*	*	*	*	25
+       0	*	*	*	*	*	*	2811	0	0	
+
+V 26   *	*	*	*	*	*	3071	*	3667	*	*	*	2571	*	3704	*	1639	2081	*	*	26
+       148	3356	*	0	*	*	*	2811	1068	0	
+
+V 27   *	*	*	*	*	*	*	2114	3381	*	*	*	*	*	*	*	2685	950	*	*	27
+       0	*	*	*	*	*	*	2811	0	0	
+
+V 28   *	2271	*	*	*	*	*	1759	*	*	*	*	*	*	*	*	*	1007	*	*	28
+       0	*	*	*	*	*	*	2811	0	0	
+
+L 29   *	*	*	*	*	*	*	2339	*	1518	*	*	*	*	*	*	*	1142	*	*	29
+       0	*	*	*	*	*	*	2811	0	0	
+
+T 30   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	30
+       0	*	*	*	*	*	*	2811	0	0	
+
+A 31   0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	31
+       0	*	*	*	*	*	*	2811	0	0	
+
+S 32   2534	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1138	1861	*	*	3356	32
+       0	*	*	*	*	*	*	2811	0	0	
+
+H 33   *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	33
+       0	*	*	*	*	*	*	2811	0	0	
+
+V 34   *	*	*	*	*	*	*	*	*	2571	*	*	*	*	*	*	*	266	*	*	34
+       0	*	*	*	*	*	*	2811	0	0	
+
+V 35   *	3169	*	*	*	*	*	2253	*	892	*	*	*	*	*	*	*	2833	*	*	35
+       0	*	*	*	*	*	*	2811	0	0	
+
+G 36   *	*	*	3356	*	1051	*	*	*	*	*	2685	*	*	*	2571	3381	*	*	*	36
+       0	*	*	*	*	*	*	2811	0	0	
+
+R 37   *	*	1834	*	*	1992	*	*	3356	*	*	2119	*	*	2833	*	*	*	*	*	37
+       0	*	*	*	*	*	*	2811	0	0	
+
+A 38   2833	*	2685	*	*	1377	*	*	*	*	*	2271	*	*	3157	*	*	*	*	*	38
+       0	*	*	*	*	*	*	2811	0	0	
+
+N 39   *	*	3071	*	*	3356	*	*	1839	*	*	1986	*	*	*	3381	2685	*	*	*	39
+       0	*	*	*	*	*	*	2811	0	0	
+
+M 40   913	*	*	3157	*	*	*	*	*	*	2833	*	*	3356	*	*	*	3071	*	*	40
+       0	*	*	*	*	*	*	2811	0	0	
+
+A 41   2833	*	*	*	*	2114	*	*	*	*	*	*	*	*	1252	*	*	3169	*	3356	41
+       148	3356	*	0	*	*	*	2811	1068	0	
+
+T 42   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2833	420	*	3157	42
+       0	*	*	*	*	*	*	2811	0	0	
+
+L 43   *	*	3169	*	*	*	*	*	3356	2833	*	*	*	*	*	1920	2685	2114	*	*	43
+       0	*	*	*	*	*	*	2811	0	0	
+
+K 44   *	2571	3157	3071	*	2534	*	*	2833	*	*	*	*	*	*	3667	3356	*	*	3169	44
+       0	*	*	*	*	*	*	2811	0	0	
+
+I 45   *	*	2685	*	*	*	*	1947	*	3157	*	*	*	3169	*	*	*	1466	*	*	45
+       0	*	*	*	*	*	*	2811	0	0	
+
+G 46   3157	*	3356	3071	*	955	*	*	*	*	*	*	*	*	*	2685	*	*	*	*	46
+       0	*	*	*	*	*	*	2811	0	0	
+
+D 47   *	*	2833	*	1920	1605	*	*	*	*	*	*	*	*	*	*	3169	*	*	2685	47
+       170	*	3169	*	*	*	*	2811	0	0	
+
+A 48   2679	*	*	*	*	*	*	3021	*	*	*	1981	*	1764	*	2532	*	*	*	*	48
+       0	*	*	*	*	0	*	2787	0	1013	
+
+M 49   *	*	*	*	*	*	*	*	*	*	2833	*	*	1920	748	*	*	*	*	*	49
+       785	*	1252	*	*	*	*	2811	0	0	
+
+L 50   *	*	*	*	*	*	*	*	*	2165	*	*	*	*	2518	*	2501	*	*	1232	50
+       413	2005	*	4000	93	0	*	2414	1068	1564	
+
+T 51   *	2571	*	2119	*	*	*	*	*	*	1992	*	*	*	3157	*	2071	*	*	*	51
+       0	*	*	*	*	*	*	2811	0	0	
+
+L 52   3169	*	*	*	*	*	2685	*	*	993	*	*	*	*	*	*	*	2114	*	*	52
+       0	*	*	*	*	*	*	2811	0	0	
+
+T 53   *	*	2483	3356	*	*	*	*	*	*	*	*	*	3157	*	*	1000	3169	*	*	53
+       0	*	*	*	*	*	*	2811	0	0	
+
+F 54   *	*	*	*	148	*	*	3356	*	*	*	*	*	*	*	*	*	*	*	*	54
+       0	*	*	*	*	*	*	2811	0	0	
+
+K 55   *	*	3381	3356	*	*	*	*	988	*	*	*	*	*	3667	*	3169	3157	*	*	55
+       0	*	*	*	*	*	*	2811	0	0	
+
+K 56   3667	3592	*	*	*	*	*	*	1429	*	*	*	*	*	*	2449	2412	3381	*	*	56
+       0	*	*	*	*	*	*	2811	0	0	
+
+N 57   3592	*	*	*	*	*	*	*	1647	*	*	1346	*	*	*	*	3071	3550	*	*	57
+       0	*	*	*	*	*	*	2811	0	0	
+
+G 58   *	*	*	*	*	148	*	*	*	*	*	*	*	*	3356	*	*	*	*	*	58
+       0	*	*	*	*	*	*	2811	0	0	
+
+D 59   *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	59
+       0	*	*	*	*	*	*	2811	0	0	
+
+F 60   *	*	*	*	1097	*	*	*	*	*	*	*	*	*	*	*	*	*	*	909	60
+       1051	3356	1252	3000	193	*	*	2811	1068	0	
+
+A 61   413	*	*	*	*	2005	*	*	*	*	*	*	*	*	*	*	*	*	*	*	61
+       277	2518	*	0	*	*	0	2414	1022	1564	
+
+E 62   *	*	*	624	*	2518	*	*	*	*	*	*	*	*	*	2501	*	*	*	*	62
+       0	*	*	*	*	0	*	2414	0	1564	
+
+A 63   379	*	*	*	*	3157	*	*	*	*	*	3071	*	*	*	*	*	*	*	*	63
+       0	*	*	*	*	*	*	2811	0	0	
+
+V 64   *	*	*	3157	2571	*	*	2218	*	*	*	*	*	*	*	*	*	1518	2685	*	64
+       0	*	*	*	*	*	*	2811	0	0	
+
+T 65   1920	*	*	3356	*	*	*	3157	*	*	*	*	*	*	*	2685	1947	3169	*	*	65
+       0	*	*	*	*	*	*	2811	0	0	
+
+T 66   *	*	2265	*	*	2207	3704	*	*	*	*	*	3169	*	2571	*	2833	*	*	3667	66
+       604	*	1547	*	*	*	*	2811	0	0	
+
+Q 67   2214	2990	*	*	*	*	*	*	*	*	2177	*	*	2218	*	*	*	2168	*	*	67
+       0	*	*	*	*	*	0	2445	0	1418	
+
+S 68   2168	*	2214	*	*	*	*	*	*	*	*	*	1527	*	*	2218	*	*	*	*	68
+       0	*	*	*	*	*	0	2445	0	1418	
+
+E 69   *	*	2214	1618	*	*	*	*	*	*	*	2074	*	*	*	*	*	2177	*	*	69
+       0	*	*	*	*	0	*	2445	0	1418	
+
+L 70   *	*	*	*	3356	*	*	3169	*	1947	*	*	*	*	*	*	*	3157	1252	*	70
+       0	*	*	*	*	*	*	2811	0	0	
+
+P 71   *	*	*	*	*	*	*	*	1799	*	*	*	1460	1992	*	*	*	3356	*	*	71
+       0	*	*	*	*	*	*	2811	0	0	
+
+G 72   3356	*	*	*	*	148	*	*	*	*	*	*	*	*	*	*	*	*	*	*	72
+       0	*	*	*	*	*	*	2811	0	0	
+
+N 73   1617	*	2571	*	*	3356	*	*	*	*	*	2833	*	*	*	*	3157	2685	*	*	73
+       0	*	*	*	*	*	*	2811	0	0	
+
+W 74   1252	*	*	*	2259	*	*	*	*	*	*	*	*	*	*	*	*	*	2833	2114	74
+       0	*	*	*	*	*	*	2811	0	0	
+
+P 75   *	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	75
+       0	*	*	*	*	*	*	2811	0	0	
+
+Q 76   2503	*	3157	*	*	*	*	*	1920	*	*	*	3169	2833	*	*	3071	3704	*	*	76
+       0	*	*	*	*	*	*	2811	0	0	
+
+L 77   3592	*	*	*	3157	*	*	*	*	1991	*	*	*	3356	*	*	3381	2054	*	3071	77
+       0	*	*	*	*	*	*	2811	0	0	
+
+H 78   *	*	*	1910	*	*	2833	*	1401	*	*	*	*	3381	3071	*	*	*	*	*	78
+       0	*	*	*	*	*	*	2811	0	0	
+
+F 79   3356	*	*	3071	1525	*	*	*	*	2571	*	*	3157	*	*	*	*	2685	*	*	79
+       0	*	*	*	*	*	*	2811	0	0	
+
+A 80   927	3381	*	*	*	*	*	*	*	*	*	*	*	*	*	1910	*	3157	*	*	80
+       0	*	*	*	*	*	*	2811	0	0	
+
+Q 81   *	*	3550	*	*	*	3592	*	2685	*	*	*	2119	2833	*	*	2265	3356	*	*	81
+       789	*	1247	*	*	*	*	2811	0	0	
+
+P 82   *	*	2224	*	*	*	*	*	*	*	*	1415	2163	2413	*	*	*	*	*	*	82
+       0	*	*	*	*	1589	583	2363	0	1641	
+
+T 83   *	*	*	*	*	2014	2662	*	*	*	*	*	*	*	*	1939	2440	*	*	2744	83
+       1025	976	*	0	*	0	*	2499	1752	1373	
+
+T 84   *	*	*	*	*	*	*	3071	*	3356	*	*	*	*	1627	*	1525	3157	*	*	84
+       0	*	*	*	*	*	*	2811	0	0	
+
+G 85   *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	85
+       0	*	*	*	*	*	*	2811	0	0	
+
+P 86   *	*	*	*	*	3356	*	*	*	*	*	*	2833	*	392	*	*	*	*	*	86
+       0	*	*	*	*	*	*	2811	0	0	
+
+A 87   148	*	*	*	*	*	*	3356	*	*	*	*	*	*	*	*	*	*	*	*	87
+       0	*	*	*	*	*	*	2811	0	0	
+
+S 88   *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2833	*	*	*	218	88
+       0	*	*	*	*	*	*	2811	0	0	
+
+W 89   *	2571	*	*	*	*	*	*	*	*	*	*	*	3356	*	*	*	*	446	*	89
+       0	*	*	*	*	*	*	2811	0	0	
+
+C 90   *	2833	*	*	3356	*	*	*	*	1612	*	*	*	2685	*	2571	*	*	*	3169	90
+       0	*	*	*	*	*	*	2811	0	0	
+
+T 91   3169	2114	*	*	*	*	*	*	*	*	*	*	2571	*	*	*	1031	*	*	*	91
+       0	*	*	*	*	*	*	2811	0	0	
+
+A 92   1947	*	*	3356	*	*	*	*	*	3592	*	3169	*	2340	*	1992	*	*	*	*	92
+       0	*	*	*	*	*	*	2811	0	0	
+
+T 93   *	*	*	*	*	3356	*	*	*	*	*	2114	*	*	*	2517	1607	2571	*	*	93
+       0	*	*	*	*	*	*	2811	0	0	
+
+G 94   *	*	*	3550	*	292	*	*	*	*	*	*	*	*	3356	*	*	*	*	*	94
+       0	*	*	*	*	*	*	2811	0	0	
+
+D 95   *	*	2833	*	*	*	*	*	*	2469	*	*	*	*	*	*	*	752	3550	*	95
+       148	3356	*	1585	585	*	*	2811	1068	0	
+
+E 96   3356	*	*	446	*	*	*	*	*	*	*	*	*	*	*	2571	*	*	*	*	96
+       0	*	*	*	*	*	*	2811	0	0	
+
+E 97   3157	*	*	2833	*	*	*	*	*	2571	*	*	1992	*	*	2207	3169	*	*	*	97
+       0	*	*	*	*	*	*	2811	0	0	
+
+G 98   *	*	3592	*	*	446	*	*	*	*	*	*	*	*	3356	*	*	3550	*	*	98
+       0	*	*	*	*	*	*	2811	0	0	
+
+L 99   *	*	*	*	1547	*	*	3704	*	1696	*	*	3356	*	*	*	*	2517	*	*	99
+       0	*	*	*	*	*	*	2811	0	0	
+
+L 100  *	*	*	*	*	*	*	1116	*	1696	*	*	*	*	*	*	*	2119	*	*	100
+       0	*	*	*	*	*	*	2811	0	0	
+
+S 101  3157	*	*	*	*	622	*	*	*	*	*	*	*	3356	*	2833	*	*	*	*	101
+       0	*	*	*	*	*	*	2811	0	0	
+
+G 102  *	*	3356	2685	*	2833	*	*	2483	*	*	*	2340	*	*	*	2119	*	*	*	102
+       0	*	*	*	*	*	*	2811	0	0	
+
+E 103  *	*	3071	2833	*	1518	*	*	*	*	*	2571	*	*	*	*	2163	*	*	*	103
+       0	*	*	*	*	*	*	2811	0	0	
+
+V 104  *	*	*	*	1992	1547	*	*	*	*	*	*	*	*	*	3592	3550	2833	*	3356	104
+       0	*	*	*	*	*	*	2811	0	0	
+
+C 105  951	1051	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	105
+       0	*	*	*	*	*	*	2811	0	0	
+
+L 106  *	*	*	*	1552	*	*	*	*	1225	*	*	*	*	*	*	*	2114	*	*	106
+       0	*	*	*	*	*	*	2811	0	0	
+
+A 107  2833	1252	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1185	*	*	107
+       0	*	*	*	*	*	*	2811	0	0	
+
+W 108  *	*	*	*	637	*	*	*	*	*	*	*	*	*	*	*	*	*	2833	2207	108
+       0	*	*	*	*	*	*	2811	0	0	
+
+T 109  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2259	338	*	*	*	109
+       0	*	*	*	*	*	*	2811	0	0	
+
+T 110  3381	*	*	*	*	1547	*	*	2571	*	*	1982	*	*	*	*	2833	*	*	*	110
+       148	3356	*	1585	585	*	*	2811	1068	0	
+
+S 111  *	1252	*	*	*	*	*	*	*	*	*	*	1185	*	*	2833	*	*	*	*	111
+       0	*	*	*	*	*	*	2811	0	0	
+
+G 112  *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	112
+       0	*	*	*	*	*	*	2811	0	0	
+
+D 113  *	*	148	*	*	*	*	*	*	*	3356	*	*	*	*	*	*	*	*	*	113
+       0	*	*	*	*	*	*	2811	0	0	
+
+S 114  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	114
+       0	*	*	*	*	*	*	2811	0	0	
+
+G 115  *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	115
+       0	*	*	*	*	*	*	2811	0	0	
+
+S 116  *	*	*	*	*	3356	*	*	*	*	*	*	*	*	*	148	*	*	*	*	116
+       0	*	*	*	*	*	*	2811	0	0	
+
+A 117  2833	*	*	*	*	*	*	*	*	*	*	*	218	*	*	*	*	*	*	*	117
+       0	*	*	*	*	*	*	2811	0	0	
+
+V 118  *	*	*	*	*	*	*	2163	*	*	*	*	*	*	*	*	*	365	*	*	118
+       0	*	*	*	*	*	*	2811	0	0	
+
+V 119  *	*	*	*	*	*	*	1075	*	3356	*	*	*	*	*	*	*	1226	*	*	119
+       2833	218	*	0	*	*	*	2811	2346	0	
+
+Q 120  *	*	*	951	*	*	*	*	*	*	*	*	1547	2833	*	*	*	*	*	*	120
+       0	*	*	*	*	*	*	2811	0	0	
+
+G 121  3381	*	1353	*	*	2833	*	*	*	*	*	3356	*	*	*	2353	3667	*	*	*	121
+       0	*	*	*	*	*	*	2811	0	0	
+
+D 122  *	*	2833	*	*	218	*	*	*	*	*	*	*	*	*	*	*	*	*	*	122
+       0	*	*	*	*	*	*	2811	0	0	
+
+A 123  2833	*	1866	3381	*	*	*	*	*	3169	*	2571	*	*	3356	3157	*	*	*	*	123
+       0	*	*	*	*	*	*	2811	0	0	
+
+V 124  *	*	*	*	3157	*	*	3169	*	652	*	*	*	*	*	*	*	2833	*	*	124
+       0	*	*	*	*	*	*	2811	0	0	
+
+V 125  *	*	*	*	*	*	*	1027	*	3592	*	*	*	*	*	*	*	1230	*	*	125
+       0	*	*	*	*	*	*	2811	0	0	
+
+G 126  *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	126
+       0	*	*	*	*	*	*	2811	0	0	
+
+V 127  *	*	*	*	*	*	*	1410	*	*	*	*	*	*	*	*	*	681	*	*	127
+       0	*	*	*	*	*	*	2811	0	0	
+
+H 128  *	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	128
+       0	*	*	*	*	*	*	2811	0	0	
+
+T 129  *	*	*	*	*	3356	*	*	*	*	*	*	*	*	*	*	148	*	*	*	129
+       0	*	*	*	*	*	*	2811	0	0	
+
+G 130  *	*	*	*	*	148	*	*	*	*	*	*	*	*	*	3356	*	*	*	*	130
+       0	*	*	*	*	*	*	2811	0	0	
+
+S 131  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	0	*	*	*	*	131
+       0	*	*	*	*	*	*	2658	0	0	
+
+N 132  *	*	1401	*	*	*	*	*	*	*	*	687	*	*	*	*	*	*	*	*	132
+       0	*	*	*	*	*	*	2658	0	0	
+
+T 133  3016	*	*	*	*	*	*	*	1097	*	*	*	*	*	*	3012	1811	*	*	*	133
+       0	*	*	*	*	*	*	2658	0	0	
+
+S 134  *	*	*	*	2930	*	*	*	2014	2533	*	*	*	3251	2400	2700	*	*	*	*	134
+       0	*	*	*	*	*	*	2658	0	0	
+
+G 135  *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	135
+       0	*	*	*	*	*	*	2658	0	0	
+
+V 136  *	1972	*	*	*	3251	*	*	*	*	*	*	*	*	*	1040	*	2700	*	*	136
+       0	*	*	*	*	*	*	2658	0	0	
+
+A 137  2700	*	*	*	*	241	*	*	*	*	*	*	*	*	*	*	*	*	*	*	137
+       0	*	*	*	*	*	*	2658	0	0	
+
+Y 138  1401	*	*	*	*	*	*	3251	*	2533	2400	*	*	*	*	*	*	*	*	2700	138
+       0	*	*	*	*	*	*	2658	0	0	
+
+V 139  *	*	*	*	3016	*	*	2135	*	*	*	*	*	*	*	*	*	930	*	3012	139
+       0	*	*	*	*	*	*	2658	0	0	
+
+T 140  *	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2930	203	*	*	*	140
+       0	*	*	*	*	*	*	2658	0	0	
+
+T 141  *	*	*	*	*	*	*	*	2930	*	*	*	*	*	3251	*	389	*	*	*	141
+       0	*	*	*	*	*	*	2658	0	0	
+
+P 142  *	*	*	*	*	*	2400	3016	*	*	*	*	848	*	*	2930	*	*	*	*	142
+       0	*	*	*	*	*	*	2658	0	0	
+
+S 143  *	*	2930	2533	*	3425	*	*	*	*	*	2182	*	*	*	1386	*	*	*	*	143
+       0	*	*	*	*	*	*	2658	0	0	
+
+G 144  *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	144
+       0	*	*	*	*	*	*	2658	0	0	
+
+K 145  *	*	*	1754	*	*	2930	*	1542	3012	*	*	*	3251	*	*	*	*	*	*	145
+       0	*	*	*	*	*	*	2658	0	0	
+
+L 146  *	*	*	*	3251	*	*	*	*	2700	*	*	*	*	*	*	713	2930	*	*	146
+       0	*	*	*	*	*	*	2658	0	0	
+
+L 147  *	1847	*	*	*	*	*	2930	*	1542	*	*	*	*	*	*	*	2014	*	*	147
+       687	*	1401	*	*	*	*	2658	0	0	
+
+G 148  *	*	*	*	*	840	*	*	*	*	*	2589	*	*	*	2828	2898	*	*	*	148
+       0	*	*	*	*	0	*	2090	0	1418	
+
+A 149  2700	*	*	*	*	*	3016	2533	*	*	2400	*	*	*	*	3012	*	2081	*	*	149
+       0	*	*	*	*	*	*	2658	0	0	
+
+D 150  2335	*	2700	*	*	1401	*	*	2533	*	*	*	*	*	*	3375	*	*	*	*	150
+       0	*	*	*	*	*	*	2658	0	0	
+
+T 151  *	*	*	2533	*	*	*	*	*	*	*	2400	1473	*	*	*	2700	3016	*	*	151
+       0	*	*	*	*	*	*	2658	0	0	
+
+V 152  *	*	*	*	*	*	*	3251	*	3012	*	*	*	*	*	*	2533	741	*	*	152
+       0	*	*	*	*	*	*	2658	0	0	
+
+T 153  *	*	*	*	*	*	*	*	969	*	*	*	3016	*	3511	3012	2700	*	*	*	153
+       0	*	*	*	*	*	*	2658	0	0	
+
+L 154  *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	154
+       0	*	*	*	*	*	*	2658	0	0	
+
+S 155  *	*	*	*	*	*	*	*	3012	*	*	*	*	*	*	191	*	*	*	*	155
+       0	*	*	*	*	*	*	2658	0	0	
+
+S 156  *	*	2533	863	*	*	*	*	*	*	*	*	*	*	*	2700	*	3016	*	*	156
+       0	*	*	*	*	*	*	2658	0	0	
+
+L 157  *	*	*	*	*	*	*	3016	*	1212	1169	*	*	*	*	*	*	*	*	*	157
+       0	*	*	*	*	*	*	2658	0	0	
+
+S 158  1972	2400	*	*	*	3012	*	*	*	*	*	*	*	*	*	1212	*	*	*	*	158
+       0	*	*	*	*	*	*	2658	0	0	
+
+K 159  3012	*	*	3251	*	*	*	*	2700	*	*	*	2206	3375	1718	*	*	*	*	*	159
+       0	*	*	*	*	*	*	2658	0	0	
+
+H 160  *	*	*	*	3251	*	565	*	*	*	*	*	*	*	*	*	*	*	*	2191	160
+       0	*	*	*	*	*	*	2658	0	0	
+
+F 161  *	*	*	*	1212	*	*	*	*	*	*	*	*	*	*	*	*	*	*	815	161
+       0	*	*	*	*	*	*	2658	0	0	
+
+T 162  1289	*	3016	3012	*	3375	*	*	*	*	*	*	*	*	*	3425	2700	*	*	*	162
+       0	*	*	*	*	*	*	2658	0	0	
+
+G 163  *	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	163
+       190	*	3016	*	*	*	*	2658	0	0	
+
+P 164  *	*	*	*	*	*	*	*	*	*	*	*	164	*	*	3220	*	*	*	*	164
+       0	*	*	*	*	0	*	2530	0	1013	
+
+L 165  *	*	*	*	*	2400	*	3012	3251	1811	*	3511	*	*	*	3555	*	3016	*	*	165
+       190	*	3016	*	*	*	*	2658	0	0	
+
+T 166  *	*	*	*	*	*	*	*	*	*	*	*	*	2660	*	*	2521	583	*	*	166
+       0	*	*	0	*	0	*	2530	1013	1013	
+
+S 167  *	*	3012	*	*	*	*	*	2930	*	*	*	1097	*	*	2700	3016	*	*	*	167
+       0	*	*	*	*	*	*	2658	0	0	
+
+I 168  *	*	*	*	*	*	*	2700	*	1847	*	*	*	*	*	*	1972	1674	*	*	168
+       0	*	*	*	*	*	*	2658	0	0	
+
+P 169  *	*	*	*	*	1847	*	*	*	*	*	*	1290	*	*	2400	*	3016	*	*	169
+       0	*	*	*	*	*	*	2658	0	0	
+
+K 170  *	*	1847	*	*	*	*	*	1850	*	*	*	*	*	*	*	1169	*	*	*	170
+       909	1097	*	0	*	*	*	2658	1564	0	
+
+D 171  *	*	2700	*	*	*	3016	*	994	*	*	*	*	*	2182	*	*	*	*	*	171
+       0	*	*	*	*	*	*	2658	0	0	
+
+I 172  *	*	*	*	*	*	*	2700	*	713	2930	*	*	*	*	*	*	3251	*	*	172
+       0	*	*	*	*	*	*	2658	0	0	
+
+P 173  *	*	*	*	*	3251	*	*	*	*	*	*	470	*	*	2533	*	*	*	*	173
+       0	*	*	*	*	*	*	2658	0	0	
+
+D 174  *	*	2700	*	*	*	*	*	1675	*	*	*	2533	*	1970	3251	*	*	*	*	174
+       0	*	*	*	*	*	*	2658	0	0	
+
+N 175  2533	*	*	*	*	*	1763	*	*	*	*	909	*	*	*	*	*	*	*	*	175
+       0	*	*	*	*	*	*	2658	0	0	
+
+I 176  *	*	*	*	*	*	*	1212	*	2400	*	*	*	*	*	*	*	1401	*	*	176
+       0	*	*	*	*	*	*	2658	0	0	
+
+I 177  *	*	*	*	*	*	3012	921	*	*	*	*	*	*	*	*	*	1523	*	*	177
+       0	*	*	*	*	*	*	2658	0	0	
+
+A 178  1850	*	*	*	*	2930	*	*	3251	*	*	3012	2533	*	*	*	*	2400	*	*	178
+       0	*	*	*	*	*	*	2658	0	0	
+
+D 179  *	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	179
+       0	*	*	*	*	*	*	2658	0	0	
+
+V 180  *	2930	*	*	*	*	*	3251	*	*	*	*	*	*	*	*	3012	644	*	*	180
+       0	*	*	*	*	*	*	2658	0	0	
+
+D 181  *	*	2700	1641	*	*	*	*	3012	*	*	*	*	*	*	3251	1754	*	*	*	181
+       0	*	*	*	*	*	*	2658	0	0	
+
+A 182  1999	*	*	3251	3511	*	*	*	*	*	*	2930	*	*	*	2258	2206	*	*	*	182
+       0	*	*	*	*	*	*	2658	0	0	
+
+V 183  *	*	*	*	*	*	*	3555	*	*	*	*	*	*	*	*	*	128	*	*	183
+       0	*	*	*	*	*	*	2658	0	0	
+
+P 184  3375	*	*	*	*	*	*	*	*	*	*	*	303	*	*	3425	*	*	*	*	184
+       0	*	*	*	*	*	*	2658	0	0	
+
+R 185  *	*	*	*	*	*	3016	*	*	2930	*	*	*	3012	2700	1097	*	*	*	*	185
+       0	*	*	*	*	*	*	2658	0	0	
+
+S 186  *	*	1097	*	*	*	*	*	*	*	*	*	3012	*	*	1850	2930	*	*	*	186
+       0	*	*	*	*	*	*	2658	0	0	
+
+L 187  *	*	*	*	*	*	*	*	*	0	*	*	*	*	*	*	*	*	*	*	187
+       0	*	*	*	*	*	*	2658	0	0	
+
+A 188  503	3251	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	2400	*	*	188
+       0	*	*	*	*	*	*	2658	0	0	
+
+M 189  1763	*	*	*	*	*	*	*	*	*	2700	3016	*	*	1970	2533	*	*	*	*	189
+       0	*	*	*	*	*	*	2658	0	0	
+
+L 190  *	*	*	*	*	*	*	3016	*	848	*	*	*	*	*	*	*	1641	*	*	190
+       0	*	*	*	*	*	*	2658	0	0	
+
+I 191  *	*	*	*	*	*	*	1811	*	928	*	*	*	*	*	*	*	2400	*	*	191
+       0	*	*	*	*	*	*	2658	0	0	
+
+D 192  1289	*	2700	1194	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	192
+       0	*	*	*	*	*	*	2658	0	0	
+
+G 193  3251	*	2930	*	*	2700	*	*	3016	*	*	*	*	*	*	1040	*	*	*	*	193
+       0	*	*	*	*	*	*	2658	0	0	
+
+L 194  *	*	*	*	*	*	*	*	2865	1145	*	*	*	*	*	2438	*	2147	*	*	194
+       0	*	*	*	*	*	*	2334	0	0	
+
+S 195  *	*	*	*	*	*	*	2438	*	*	*	*	718	*	*	2268	*	*	*	*	195
+       0	*	*	*	*	*	*	2334	0	0	
+
+N 196  3043	*	*	2865	*	*	*	*	*	*	*	1351	*	*	*	*	3019	2147	*	*	196
+       0	*	*	*	*	*	*	2334	0	0	
+
+R 197  *	*	*	*	*	*	*	*	*	1675	*	*	2722	*	1942	*	*	1863	*	*	197
+       0	*	*	*	*	*	*	2090	0	0	
+
+E 198  *	*	*	0	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	198
+       0	*	*	0	*	*	*	2090	0	0	
+
+//
+�
\ No newline at end of file
diff --git a/modules/bindings/tests/testfiles/hhblitsdb/hhblitsdb_hhm_db.index b/modules/bindings/tests/testfiles/hhblitsdb/hhblitsdb_hhm_db.index
new file mode 100644
index 0000000000000000000000000000000000000000..c0afc6b812ba3c42cac91d69ced8a6b4be1c1127
--- /dev/null
+++ b/modules/bindings/tests/testfiles/hhblitsdb/hhblitsdb_hhm_db.index
@@ -0,0 +1,200 @@
+02ae072bdd8d4b3cd3ddea7d7fd6accb���	0	24579
+049453f6b1ef191ef1f937c85980d483���	24579	8620
+07725759f4907c8886db21d514cb9b12���	33199	14361
+07e9709ec97fb9c893c6efa6db9e811b���	47560	39088
+0895791d132888554de0d758d179b7c7���	86648	37147
+094af3c04fcdf9bf04bb55a97a19581b���	123795	10219
+09ce670d46e49ba58915a7017daeb51d���	134014	39174
+0a209425cf52d1e9fc937e5aed5d7d69���	173188	24552
+0a407d4b0634f8fa863191382dd9ec39���	197740	34073
+0b91ebac43769ec865264a8281966ca6���	231813	18297
+0c68c5d75cc2ae618e6e5f1010b542af���	250110	16091
+0df5dbed0f36c37f3836e114a8b5c77b���	266201	10760
+0e5c9e30af579568c535c51a9a27f145���	276961	16388
+0f066235c0e8814be13f086538bfd823���	293349	14465
+0f0e0cc97063da4305095efeb6623b6b���	307814	17582
+0f1c654429f6f65b407c9e9dde84eba4���	325396	16177
+0f2381e4f46aa5af8618fb2c6a96974d���	341573	24171
+10cfcdaad4a10e98aec756d8a15574d9���	365744	22700
+1189797f72eb6f0e100dc3369ccd8ffa���	388444	19363
+11d0ff4d993e31f0a2ea189846a08655���	407807	10759
+13077d2b3643cabf3bccc22d84a0a439���	418566	31839
+14d53a48bb3d4cf83c4f637bd86d7e3e���	450405	9755
+17059f2501ae2a72fc19097f4d2b1341���	460160	13005
+19505167af9ebfb7eba762c056361c1f���	473165	38746
+1b2f6c29a7ee470020810a8013596703���	511911	35567
+1d1847456cd583e08ed67aaa11df98f2���	547478	8711
+203cc7f9db11472b54bca3769bfaf8df���	556189	30417
+2136b1cea2992a6bf1cf63cb4e484430���	586606	31871
+271643171bfa4abfd3da32e2d13e3392���	618477	31964
+2798277b8842d36de2206ba3ae8863fc���	650441	35295
+2a3d9802bfcbb4c8a6063b33f02f6538���	685736	19861
+2aaa64efe58cc449ac3f69c82cc966f0���	705597	23970
+2b78356947507e56ed56d054e1215b8c���	729567	21156
+2b86eaed0dd0462632e7bb6e0a56ceb8���	750723	20422
+2c276c7332b4ac4757cbea933e3f987e���	771145	14047
+2cf47989aa11bbeeda0f0b4af2c1f1ad���	785192	24640
+2dc7af2028fa424ea0f21cfb017ac190���	809832	23001
+2ebbe0783d204f9b6a288ba6e9641f90���	832833	20511
+2f38e0381f5a1497aa929335a94cdbc7���	853344	15810
+2f4c86088a47ef73c12ffc801e19fb3c���	869154	37471
+2ff05444e7145a5dd540ec42015fcba1���	906625	29777
+3067be314a806ff137315081e104742e���	936402	27525
+3155c91c2cbf7967cb4ba20d80ff989c���	963927	23849
+3472662a6001a05156368eef829706af���	987776	38160
+377b625a8e52f94cba9ef9a525219056���	1025936	23023
+37afc7acd88623f9df7bf8f423af00c0���	1048959	13053
+389317ac7330494edc8db3812c39f6d3���	1062012	15581
+38a44a0cf7d477bebe8b2606d936e643���	1077593	15095
+38dd9955ccfba0d5be1c28ca6ce0751d���	1092688	12529
+3b63735b431780c58c19dd032083016e���	1105217	30129
+3dddac6f1a46a0d944548b4f8648c5d1���	1135346	16828
+3e7b90809bd446a538f9eb1a1ca0e551���	1152174	25051
+3efa288e683aab27e0db9e3baf300765���	1177225	35891
+409d1b78279b50a32005612fe5003760���	1213116	33465
+4162710e327474bbbd96cdac5a602313���	1246581	26965
+4186931bf3bd591aa12aac05cbb54275���	1273546	12053
+448f640ce08539f9f492ab947cf5c879���	1285599	30393
+482b4b12963f255ad7693a467b7af4cc���	1315992	27783
+4939a1cdd4b26c7d9053b02c16db7e41���	1343775	16394
+497673b84b7766fe2450fe095360affb���	1360169	28368
+4bc967f8d6c71174670a6efb6d0861ff���	1388537	36618
+4c402988a256f524c3b41ec989161202���	1425155	11526
+4e1e30ab1e15c9c1545ff8328bcfebeb���	1436681	11310
+4f78b9c2edbc3ae2d8e9a0de15b7225f���	1447991	13953
+5039b5951b98074071f6c69dc58114cc���	1461944	21902
+52f7b42c2dd929be3683545ebc8d1362���	1483846	21534
+530957bbdb4e54c1b80f11ba55b52a90���	1505380	39295
+530b8b90a2b272c2660145f9c38cb283���	1544675	11644
+5364a334c335e7d706a5569fbc3f602d���	1556319	27696
+53ff759256b5d7f5f74b908ef8b7590f���	1584015	35304
+55e5f4d58d11858b673e58b73804fab3���	1619319	24937
+564c9b9e5d4cd66b1fd7f125a716af4e���	1644256	19694
+56a96aae83069ea95d56b56dc6e8cd1a���	1663950	27993
+5b39e5a7108ee75bcacb74b9050dfe57���	1691943	16186
+5b7549a440ece6efc515d1ecf5eab975���	1708129	14195
+5b8f9d914431e9d2b55e563b03e7b909���	1722324	27709
+5ce3a21f2652f5e4378c3552cceb2340���	1750033	20425
+5d895b2caff816955040ab755eaf5b19���	1770458	23627
+60dd783edaf524b39db3af7ecfd53a48���	1794085	18792
+61affadfde1fab540b7313adbf4ebfda���	1812877	33663
+61e58fd4d97efb70b78410488ce6cac8���	1846540	29600
+665b4706556bcfdcefa8812b17dc787c���	1876140	38474
+674c81cff4c6c504dd50e35c2bf78401���	1914614	20447
+679a9284ef0ef040ad53936c4c1e9d7d���	1935061	28500
+68a5857c951cd0795a2bfc79e65a0c63���	1963561	15969
+6a5d2aa2a4dfa511f1b7a6417307a0bf���	1979530	36271
+6dc27b301d7556991a74587deb3a9692���	2015801	38411
+6e235e11f9c330891bd4a7eac552e81b���	2054212	21231
+6f8bf45e3bf355ef54d788898343cb1c���	2075443	8631
+70185c53b564a6651b730e4dcf340af6���	2084074	9265
+717d981e28459396ae1133448788c53e���	2093339	31698
+71fdde7383f09a65b56a391c1db52e35���	2125037	15660
+74210cc330abf78ec4c1fa3592d2152d���	2140697	37063
+757d964661b62316dff0960e2a4a87ea���	2177760	32061
+75f1ddc04ebf9d5bc247ed264936c742���	2209821	27088
+79b1bbcf6f43d0235bc61bef7593bdbe���	2236909	26269
+79cba631d7059d8c2467baa2b9e42370���	2263178	14259
+7aa7e6eee43e1aae66ded2fce9550a54���	2277437	11069
+7bf67dbec14c0ea001ff88bc73dd7396���	2288506	32344
+7cff8b05889041a6d059231e4f4bc281���	2320850	27172
+7d7b394238d3b3e35f1bbacceedade0b���	2348022	35030
+7ec67cbbd85f59718803563580f1731b���	2383052	31162
+81e79b5741c9fbdcdbbebf2c8b14e32c���	2414214	26590
+8237cebaaa25ac6a2b0d49c9d5837da5���	2440804	25707
+84792f9cbc9eb5adabb41b1a904360bb���	2466511	8723
+86ed36c2fe7938800e5622d9b4acb515���	2475234	33687
+88117153c423d8f3cd1f072dcda24597���	2508921	19614
+8e30ca516d2b86076f51d1316fab39ad���	2528535	38367
+8fd273e25da1bf193a2bf90e2bc9fef0���	2566902	7693
+91ee985382113129d3975a1aa1210405���	2574595	34684
+9287755aa6aa27583da6be3b2408bfcc���	2609279	23125
+9343cd2395312266b68b016d74fb3c86���	2632404	13982
+93a4e2eb4447ccb72cf9476930f1f5df���	2646386	24279
+98b5ff80a113b7bb28949a2a5cd20879���	2670665	14072
+9ac9d2aa5d496091f1a6d71517f29360���	2684737	13689
+9b972e307eb0d9de3734ffdbf33ed781���	2698426	39675
+9c68b86897cc76a533b3376c5680b606���	2738101	19656
+9c7b8409c5da2a6bc10d796287eb4c1f���	2757757	26403
+9f519c37964061e00a9e9906f774552e���	2784160	12546
+a0a16d5fe9c52ade8dbd14d530daeeb8���	2796706	11381
+a1369bdee466c1364c07095750be3efc���	2808087	15316
+a1cf9299e65402da85fa1134c4159419���	2823403	33895
+a251ab96460cc372677a195a346bdc79���	2857298	14796
+a44d747376cfd87bd0f30749697bc63b���	2872094	33248
+a4ffb81039c95ec205e15ab0095774e5���	2905342	10350
+a58e5f77fe5c98ba022ce3bec19b5c22���	2915692	18854
+a7297e082b04c39b5ed5edf7a5889375���	2934546	37249
+a7d85b5797fc7c87d5f26fc1eaa87af7���	2971795	21565
+a9670fd5e42b822d83bb9b8a9eda5dc0���	2993360	21239
+aa7797cb86715b5f00dd396459cdd380���	3014599	30081
+abf7361a887c4e53ac97adc19e64234b���	3044680	35967
+ae209f299335d3708222d92bc2697502���	3080647	17967
+af5e37f6170ad6dd671732b9beb56903���	3098614	34004
+af828e69a5f2d0fd42a2a213e09eb64f���	3132618	22556
+b056b4c4d9017a19c3095e4c72f67a47���	3155174	32363
+b3693168b9f04cd2db237b30b4be5176���	3187537	26927
+b49b9cb98eb527401c12984cc1a2e18d���	3214464	30595
+b5e4c6287793467d8b047e64ec6f935b���	3245059	11363
+b6a8572284504b5d762ee82f90b16d91���	3256422	19826
+b903b162c87715ee7384e2af499c16cd���	3276248	17121
+b94e58bdb4361ef7c1237e2f79e9939a���	3293369	17594
+ba17a05f924bfd8ff94a6c5d73635b4a���	3310963	32038
+ba48b3cd7ebd29a9e2e367a37ac501cf���	3343001	19022
+bbd36c9292c799cc4a4733df8189699f���	3362023	32151
+bc4ef49e84c894acd9a656db73d52eeb���	3394174	17766
+bdf48b24c3f0fdeaa0d9654593ea6f0d���	3411940	27536
+be74be0e66ca7b4603630a5a17fef2a4���	3439476	10419
+c12ad1255bc3ed843ae21de938ab5f62���	3449895	28079
+c2c32c13af9575e387657a5ea9736806���	3477974	21173
+c5753ae3727f4c7fc5433d2395780f60���	3499147	18814
+c582c9c4daca574c1be2935ee4ecc45f���	3517961	9827
+c5863f5030b5a39b990f9179f7f8cfae���	3527788	21747
+c5af58a62688d809a1a0747990141890���	3549535	9672
+c5d10a25f4692ab6cc7c072c5ac3efcd���	3559207	36536
+c73204c4134fbbb074a65e8410643b7c���	3595743	22027
+c737dfcd8b440f4a80b15ef9f3c3a806���	3617770	16932
+cb13cb2555c5bacde1dc168618e48f3f���	3634702	30594
+cbc92a8a85651bd2fb2a8622778ceaf5���	3665296	33197
+cbf4a79de0130a2230da880af29a77c4���	3698493	32949
+cd06863eb01c4bcc5ae9b1817480cf17���	3731442	36819
+ced02dc66c62cb64fc91194b87a4189c���	3768261	17525
+cf096ff6881b75de1c34ab8525847a53���	3785786	7656
+cfe750d45ad9ea874e03be9e47fe8331���	3793442	12327
+d3011fec8513a3e2267bf4e15e08704b���	3805769	27554
+d330d1598fd712b741ae1a07a1797d37���	3833323	31431
+d5222617b3ccb99da7e3ec0bb92c4cb5���	3864754	25535
+d7be13700ed7588ca7b576ccd24889ab���	3890289	29812
+d973556a2b119e22f373f42b3ee50271���	3920101	32087
+da9c94dd81bbb9286cd73b3d2469179c���	3952188	17719
+db724bcc82eacb181edae3af47403f31���	3969907	8815
+dbea14172bdf1965e97ce49c46d0fd07���	3978722	21920
+dea447cd63c9d8c162d6bcafb1cbb851���	4000642	30069
+deee1e6a65f0898c57dcde00fc15c870���	4030711	19562
+e0ba85cb42b528cdde934e6e751de9b2���	4050273	24054
+e130d30836eaf714deba0688836fbaec���	4074327	38111
+e28b3a1dbc0f15f5e8575e6ca4f6ea00���	4112438	28861
+e2e8d293c6308e03168e6291d88b3e9e���	4141299	7958
+e3d87649b2f1632f153be8830af2c4ce���	4149257	21613
+e44a004fd43907d485810413e310dc01���	4170870	16321
+e69e1ac0a4b2554df25f2c2183b0fba0���	4187191	39048
+e8936c77146e6b67b02efb57e9f7dba3���	4226239	27753
+eb17077e5768f21bb26c456637a41be1���	4253992	37859
+eb75493f078d95ea52db97600717baa3���	4291851	12621
+ec6d5b33f2ae17f54335ee8fce56e790���	4304472	13347
+ee520d2fc85e5b54c5cab5b1125d8c3b���	4317819	42254
+f038453661ad6048b85e5011b6e6296a���	4360073	38906
+f10edaeff439be4afbba7757c8cac254���	4398979	10966
+f22915668ca1cb3ce6b2cdc5b2a8d88f���	4409945	17387
+f2a896c08302b679f64cd8e52af94835���	4427332	11781
+f2afa8933c4998c89a5c39f692e949bb���	4439113	32184
+f431126caeda0da6cffa83c7e49df465���	4471297	35545
+f56a6e550ea46518bc972010f973cfbd���	4506842	36741
+f72d3b0c4bbb6e49ce2af6496d1b71a0���	4543583	35382
+f7a5e37dc7250be9dd8e0efc7b40d3b7���	4578965	14920
+f82cb3c7c161ae904b70948cfd869920���	4593885	23789
+f9eb38ef6943149426b564b15c282045���	4617674	37096
+fb5bff21f8955d17ec9c9ef42e3fe2a1���	4654770	12908
+fc94ceafa368716b735a0cc814095abc���	4667678	28405
+fdfbd67ee8a6a80e1c49419316279395���	4696083	37630
+ff5c81bfb664296a11b43497a69645cc���	4733713	27287
diff --git a/modules/bindings/tests/testfiles/hhblitsdb/hhblitsdb_hhm_db.index.sizes b/modules/bindings/tests/testfiles/hhblitsdb/hhblitsdb_hhm_db.index.sizes
new file mode 100644
index 0000000000000000000000000000000000000000..08839f6bb296e888d311d8ea2f35f7ff82dd3f2d
--- /dev/null
+++ b/modules/bindings/tests/testfiles/hhblitsdb/hhblitsdb_hhm_db.index.sizes
@@ -0,0 +1 @@
+200
diff --git a/modules/bindings/tests/testfiles/test.hhr b/modules/bindings/tests/testfiles/test.hhr
new file mode 100644
index 0000000000000000000000000000000000000000..ff9f05a8dc7f32ad9db367374a967388f8865453
--- /dev/null
+++ b/modules/bindings/tests/testfiles/test.hhr
@@ -0,0 +1,101 @@
+Query         Test
+Match_columns 141
+No_of_seqs    253 out of 255
+Neff          9.4 
+Searched_HMMs 5
+Date          Mon Aug 31 16:45:45 2015
+Command       /import/bc2/apps/HH-suite/2.0.16-goolf-1.4.10/bin/hhblits -cpu 1 -n 1 -e 0.001 -Z 10000 -B 10000 -i /import/bc2/home/schwede/bienert/git/ost_newenv.git/modules/bindings/tests/testfiles/testali.a3m -o /scratch/tmp9E5dor/testali_cpu1_n1.hhr -d /import/bc2/home/schwede/bienert/git/ost_newenv.git/modules/bindings/tests/testfiles/hhblitsdb/hhblitsdb 
+
+ No Hit                             Prob E-value P-value  Score    SS Cols Query HMM  Template HMM
+  1 3e7b90809bd446a538f9eb1a1ca0e5 100.0 2.7E-42 6.9E-45  222.3  16.4  140    1-141     1-147 (153)
+  2 af828e69a5f2d0fd42a2a213e09eb6 100.0 1.5E-41 3.9E-44  215.7  17.2  141    1-141     1-141 (141)
+  3 9287755aa6aa27583da6be3b2408bf 100.0 3.8E-41 9.7E-44  215.1  16.5  138    1-141     2-146 (146)
+  4 e69e1ac0a4b2554df25f2c2183b0fb   0.6      64    0.16   12.6   2.6   21   93-113   176-196 (248)
+
+No 1  
+>3e7b90809bd446a538f9eb1a1ca0e551
+Probab=100.00  E-value=2.7e-42  Score=222.30  Aligned_cols=140  Identities=26%  Similarity=0.420  Sum_probs=135.4
+
+Q ss_pred             CCCHHHHHHHHHHHHHHhcCchhHHHHHHHHHHhhCccccccCCCC-CC-C----CCChhHHHHHHHHHHHHHHHHhccC
+Q Test              1 VLSPADKTNVKAAWGKVGAHAGEYGAEALERMFLSFPTTKTYFPHF-DL-S----HGSAQVKGHGKKVADALTNAVAHVD   74 (141)
+Q Consensus         1 ~lt~~~~~~i~~sW~~v~~~~~~~g~~~f~~lf~~~P~~~~~F~~~-~~-~----~~~~~~~~h~~~v~~~l~~~i~~ld   74 (141)
+                      |||++|+++|++||+.+.++.+++|..||.+||+.+|+++.+|+.| ++ +    .+|+.|++|+.+|+++|+.+|+++|
+T Consensus         1 ~lt~~e~~~i~~sW~~v~~~~~~~g~~~f~~lF~~~P~~~~~F~~f~~~~~~~~l~~~~~~~~h~~~v~~~l~~~i~~ld   80 (153)
+T 3e7b90809bd446    1 VLSEGEWQLVLHVWAKVEADVAGHGQDILIRLFKSHPETLEKFDRFKHLKTEAEMKASEDLKKHGVTVLTALGAILKKKG   80 (153)
+T ss_pred             CcCHHHHHHHHHHHHHHHhhHHHHHHHHHHHHHHHCccHHhhCccccccCcHHHHhcCHHHHHHHHHHHHHHHHHHHhhh
+Confidence            7999999999999999998889999999999999999999999999 77 4    6999999999999999999999999
+
+
+Q ss_pred             CHHHHHHHHHHHHhhh-cCCCHHHHHHHHHHHHHHHHHhcccCCCHHHHHHHHHHHHHHHHHHHhhcC
+Q Test             75 DMPNALSALSDLHAHK-LRVDPVNFKLLSHCLLVTLAAHLPAEFTPAVHASLDKFLASVSTVLTSKYR  141 (141)
+Q Consensus        75 ~~~~~l~~l~~~H~~~-~gv~~~~f~~~~~~l~~~l~~~lg~~~~~~~~~AW~~~~~~i~~~m~~~~~  141 (141)
+                      |++..+..||++|. . +||+|+||+.|+++|+++|++.+|+.||++++.||.+++++|++.|.++|+
+T Consensus        81 ~~~~~l~~lg~~H~-~~~gv~~~~f~~~~~~l~~~l~~~lg~~~t~~~~~AW~~~~~~i~~~~~~~~~  147 (153)
+T 3e7b90809bd446   81 HHEAELKPLAQSHA-TKHKIPIKYLEFISEAIIHVLHSRHPGDFGADAQGAMNKALELFRKDIAAKYK  147 (153)
+T ss_pred             hhHHHHHHHHHHHH-HHcCCCHHHHHHHHHHHHHHHHHHccccCCHHHHHHHHHHHHHHHHHHHHHHH
+Confidence            99999999999999 8 999999999999999999999999999999999999999999999999884
+
+
+No 2  
+>af828e69a5f2d0fd42a2a213e09eb64f
+Probab=100.00  E-value=1.5e-41  Score=215.69  Aligned_cols=141  Identities=100%  Similarity=1.413  Sum_probs=135.4
+
+Q ss_pred             CCCHHHHHHHHHHHHHHhcCchhHHHHHHHHHHhhCccccccCCCCCCCCCChhHHHHHHHHHHHHHHHHhccCCHHHHH
+Q Test              1 VLSPADKTNVKAAWGKVGAHAGEYGAEALERMFLSFPTTKTYFPHFDLSHGSAQVKGHGKKVADALTNAVAHVDDMPNAL   80 (141)
+Q Consensus         1 ~lt~~~~~~i~~sW~~v~~~~~~~g~~~f~~lf~~~P~~~~~F~~~~~~~~~~~~~~h~~~v~~~l~~~i~~ld~~~~~l   80 (141)
+                      |||++|+++|++||+.+.++.+++|..||.+||+.+|+++++|+.|+++++||+|++|+.+|+++|+.+|+++||++.++
+T Consensus         1 ~Lt~~~~~~i~~sW~~i~~~~~~~g~~~~~~lf~~~P~~~~~F~~~~~~~~~~~~~~h~~~~~~~l~~~i~~ld~~~~~~   80 (141)
+T af828e69a5f2d0    1 VLSPADKTNVKAAWGKVGAHAGEYGAEALERMFLSFPTTKTYFPHFDLSHGSAQVKGHGKKVADALTNAVAHVDDMPNAL   80 (141)
+T ss_pred             CcCHHHHHHHHHHHHHHHhhHHHHHHHHHHHHHHHChhHHHHcccccCCccCHHHHHHHHHHHHHHHHHHHhhccHHHHH
+Confidence            79999999999999999888899999999999999999999999986667899999999999999999999999999999
+
+
+Q ss_pred             HHHHHHHhhhcCCCHHHHHHHHHHHHHHHHHhcccCCCHHHHHHHHHHHHHHHHHHHhhcC
+Q Test             81 SALSDLHAHKLRVDPVNFKLLSHCLLVTLAAHLPAEFTPAVHASLDKFLASVSTVLTSKYR  141 (141)
+Q Consensus        81 ~~l~~~H~~~~gv~~~~f~~~~~~l~~~l~~~lg~~~~~~~~~AW~~~~~~i~~~m~~~~~  141 (141)
+                      ..|++.|.+++||+|+||+.++++|+.+|++.+|++||+++++||++++++|++.|.++|+
+T Consensus        81 ~~l~~~H~~~~gv~~~~f~~~~~~l~~~l~~~lg~~~~~~~~~AW~~~~~~i~~~~~~~y~  141 (141)
+T af828e69a5f2d0   81 SALSDLHAHKLRVDPVNFKLLSHCLLVTLAAHLPAEFTPAVHASLDKFLASVSTVLTSKYR  141 (141)
+T ss_pred             HHHHHHHHHhcCCCHHHHHHHHHHHHHHHHHHccccCCHHHHHHHHHHHHHHHHHHHHhcC
+Confidence            9999999636999999999999999999999999999999999999999999999999996
+
+
+No 3  
+>9287755aa6aa27583da6be3b2408bfcc
+Probab=100.00  E-value=3.8e-41  Score=215.11  Aligned_cols=138  Identities=45%  Similarity=0.799  Sum_probs=133.1
+
+Q ss_pred             CCCHHHHHHHHHHHHHHhcCchhHHHHHHHHHHhhCccccccCCCC-CCC-----CCChhHHHHHHHHHHHHHHHHhccC
+Q Test              1 VLSPADKTNVKAAWGKVGAHAGEYGAEALERMFLSFPTTKTYFPHF-DLS-----HGSAQVKGHGKKVADALTNAVAHVD   74 (141)
+Q Consensus         1 ~lt~~~~~~i~~sW~~v~~~~~~~g~~~f~~lf~~~P~~~~~F~~~-~~~-----~~~~~~~~h~~~v~~~l~~~i~~ld   74 (141)
+                      +||++|+++|++||+.+.  .+++|..||.+||+.+|+++.+|+.| +++     ++|+.+++|+.+|+++|+.+|+++|
+T Consensus         2 ~Ls~~~~~~i~~sW~~v~--~~~~g~~~~~~lf~~~P~~k~~F~~~~~~~~~~~l~~~~~~~~h~~~~~~~l~~~i~~l~   79 (146)
+T 9287755aa6aa27    2 HLTPEEKSAVTALWGKVN--VDEVGGEALGRLLVVYPWTQRFFESFGDLSTPDAVMGNPKVKAHGKKVLGAFSDGLAHLD   79 (146)
+T ss_pred             CCCHHHHHHHHHHHHHhh--hHHHHHHHHHHHHHHCHHHHHHcccccccCcHHHHhcCHHHHHHHHHHHHHHHHHHHhHh
+Confidence            699999999999999995  68999999999999999999999999 774     5899999999999999999999999
+
+
+Q ss_pred             CHHHHHHHHHHHHhhh-cCCCHHHHHHHHHHHHHHHHHhcccCCCHHHHHHHHHHHHHHHHHHHhhcC
+Q Test             75 DMPNALSALSDLHAHK-LRVDPVNFKLLSHCLLVTLAAHLPAEFTPAVHASLDKFLASVSTVLTSKYR  141 (141)
+Q Consensus        75 ~~~~~l~~l~~~H~~~-~gv~~~~f~~~~~~l~~~l~~~lg~~~~~~~~~AW~~~~~~i~~~m~~~~~  141 (141)
+                      ++...+..||+.|. . +||+|+||+.++++|++++++.+|++||+++++||++++++|++.|++||+
+T Consensus        80 ~l~~~l~~lg~~H~-~~~gv~~~~~~~~~~~l~~~l~~~lg~~~~~~~~~AW~~~~~~i~~~m~~~~~  146 (146)
+T 9287755aa6aa27   80 NLKGTFATLSELHC-DKLHVDPENFRLLGNVLVCVLAHHFGKEFTPPVQAAYQKVVAGVANALAHKYH  146 (146)
+T ss_pred             hHHHHHHHHHHHHH-HhcCCCHHHHHHHHHHHHHHHHHHccccCCHHHHHHHHHHHHHHHHHHHHhcC
+Confidence            99999999999999 8 999999999999999999999999999999999999999999999999996
+
+
+No 4  
+>e69e1ac0a4b2554df25f2c2183b0fba0
+Probab=0.56  E-value=64  Score=12.63  Aligned_cols=21  Identities=10%  Similarity=0.105  Sum_probs=13.9
+
+Q ss_pred             CCHHHHHHHHHHHHHHHHHhc
+Q Test             93 VDPVNFKLLSHCLLVTLAAHL  113 (141)
+Q Consensus        93 v~~~~f~~~~~~l~~~l~~~l  113 (141)
+                      .+|++.+.+-+.+-+.+.+..
+T Consensus       176 a~~e~i~~~~~~IR~~l~~~~  196 (248)
+T e69e1ac0a4b255  176 ATPEQAQLVHKEIRKIVKDTC  196 (248)
+T ss_pred             CCHHHHHHHHHHHHHHHHHhc
+Confidence            467777777776666665543
+
+
+Done!
diff --git a/modules/bindings/tests/testfiles/test.hmm b/modules/bindings/tests/testfiles/test.hmm
new file mode 100644
index 0000000000000000000000000000000000000000..d1cf2e521e6e678cf864e1308128d4b1620cd29b
--- /dev/null
+++ b/modules/bindings/tests/testfiles/test.hmm
@@ -0,0 +1,469 @@
+HHsearch 1.5
+NAME  Test
+FAM   
+FILE  test
+COM   /import/bc2/apps/HH-suite/2.0.16-goolf-1.4.10/bin/hhmake -i ../modules/bindings/tests/testfiles/testali.a3m -o test.hmm 
+DATE  Mon Aug 31 11:37:41 2015
+LENG  141 match states, 141 columns in multiple alignment
+FILT  112 out of 255 sequences passed filter (-id 90 -cov 0 -qid 0 -qsc -20.00 -diff 100)
+NEFF  9.3 
+SEQ
+>ss_pred PSIPRED predicted secondary structure
+CCCHHHHHHHHHHHHHHHCCCHHHHHHHHHHHHHHCCCCCCCCCCCCCCCCCHHHHHHHHHHHHHHHHHHHCCCCHHHHHHHHHHHHHHHCCCCHHHHHH
+HHHHHHHHHHHHCCCCCCHHHHHHHHHHHHHHHHHHHHHCC
+>ss_conf PSIPRED confidence values
+9999999999999988733915579999999986394411239877888888567889999999999987354777899999998876502999898998
+89999999997536679989999999999999999984329
+>Consensus
+xltxxxxxxixxsWxxvxxxxxxxgxxxxxxlfxxxPxxxxxFxxxxxxxxxxxxxxhxxxvxxxlxxxixxldxxxxxlxxlxxxHxxxxgvxxxxxxx
+xxxxlxxxlxxxxgxxxxxxxxxAWxxxxxxixxxmxxxyx
+>Test
+VLSPADKTNVKAAWGKVGAHAGEYGAEALERMFLSFPTTKTYFPHFDLSHGSAQVKGHGKKVADALTNAVAHVDDMPNALSALSDLHAHKLRVDPVNFKL
+LSHCLLVTLAAHLPAEFTPAVHASLDKFLASVSTVLTSKYR
+>gi|1170183|sp|P42511.1|LGB_CANLI RecName: Full=Leghemoglobingi|495289|gb|AAA18503.1| leghemoglobin [Canavalia lineata]
+-FSEKQESLVKSSWEAFKQNVPHHSAVFYTLILEKAPAAQNMFSFLSNGvdPNNPKLKAHAEKVFKMTVDSAVQLRAKGEVvlaDPTLGSVHV-QKGVLD
+PHFLVVKEALLKTFKEAVGDKWNDELGNAWEVAYDELAAAIKKAM-
+>gi|88813510|ref|ZP_01128744.1| hypothetical protein NB231_06775 [Nitrococcus mobilis Nb-231]gi|88789223|gb|EAR20356.1| hypothetical protein NB231_06775 [Nitrococcus mobilis Nb-231]
+--------LFNDSYERCIDnpNPPGFLQRFYKVFLSSSEEVAEKFKNT-------DFEKQTRVLKASLYYLMLScNGspEAMAHLRRIACLHSrKQLDIR
+PELYDLWLASLLQAAREYD-PRFDQQTETAWRQVLSHGIDFMKSRY-
+>gi|336324532|ref|YP_004604499.1| hypothetical protein Flexsi_2317 [Flexistipes sinusarabici DSM 4947]gi|336108113|gb|AEI15931.1| hypothetical protein Flexsi_2317 [Flexistipes sinusarabici DSM 4947]
+-VKESDLKELGSIWEQMSKYSDEFTTDMSAFVV-KNFKLPETYST-------EITDEYKAMLGKLYERVLsGRFNNDYvSFLIKFSEFNL-AYSINQEMV
+NSlisyARSWIHEKIFQNIPDDFQrKGILMMFHKIMDITGDIIISTYY
+>gi|289549194|ref|YP_003474182.1| hypothetical protein Thal_1426 [Thermocrinis albus DSM 14484]gi|289182811|gb|ADC90055.1| conserved hypothetical protein [Thermocrinis albus DSM 14484]
+-WTAEDEENLRSLSHLVPSWVEEFLES---------------IRK-------DEhDERCFQSIREWLIATFsGPHDERYvRKIHNMLQEHL-KAGCTLHH
+LQVllssVREFLLDKLTAQLGYSHQrDSLFRSVEKTLDLSLSIMLLSQK
+>gi|341887822|gb|EGT43757.1| CBN-GLB-25 protein [Caenorhabditis brenneri]
+----RDFFTLKNWWKSVDRKRVEASTYMFSRYLNDFPENKAFYAKLkNVnAqtvdmnCSDPGFEAMAAQYLKVFDDVITAveekPGDVQSacdRLSAVGK
+MHR-AkvSGagMESSMFQNMEEPFIQMVKYILQDRFNEKAEMLYRKFFQFCLKYLLEGF-
+>gi|17567933|ref|NP_509614.1| GLoBin family member (glb-17) [Caenorhabditis elegans]gi|3877381|emb|CAA86423.1| C. elegans protein F49E2.4a, partially confirmed by transcript evidence [Caenorhabditis elegans]
+-ITDEEVTAIRDVWRRA--KTDNVGKKILQTLIEKRPKFAEYFGIQsESlDiralNQSKEFHLQAHRIQNFLDTAVGSLGFcpissVFDMAHRIGQIHF-
+YRGVNfgADNWLVFKKVTVDQVTtgttdsskekedtnsngtangkvdtdaSLIPiadinNVYSGencLARLGWNKLMTVIVREMKRGFL
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+V 1    4902	4723	*	*	*	3431	3746	*	3837	*	5128	4860	1870	4923	4832	2670	5280	3268	*	*	1
+       44	5066	*	2000	415	*	*	6988	1000	0	
+
+L 2    *	*	*	*	3118	6092	*	3501	*	792	3848	*	*	*	*	*	6569	3621	4536	*	2
+       0	*	*	*	*	*	*	8826	0	0	
+
+S 3    6516	*	6204	*	*	*	6508	*	5652	*	*	3368	6238	6481	5972	1433	1325	4717	*	*	3
+       0	*	*	*	*	*	*	8861	0	0	
+
+P 4    3037	6170	2764	2586	*	4445	6630	5465	3966	4811	6242	*	2872	4851	4994	3922	5028	4835	*	5338	4
+       0	*	*	*	*	*	*	8912	0	0	
+
+A 5    2684	*	3384	2457	*	5021	6212	3905	2685	*	*	5386	4978	3661	4250	3499	*	*	*	5368	5
+       0	*	*	*	*	*	*	8946	0	0	
+
+D 6    6353	*	1855	1840	*	*	5446	6208	6634	6380	*	5599	*	1624	*	*	5141	*	*	*	6
+       0	*	*	*	*	*	*	8971	0	0	
+
+K 7    4798	6591	*	4398	5308	*	5441	2820	2041	3610	*	*	*	4776	2557	*	5226	2971	5746	6354	7
+       0	*	*	*	*	*	*	9237	0	0	
+
+T 8    2935	*	3662	2847	5479	6921	5604	5134	2313	5429	*	5576	6602	3209	4105	4257	5027	5543	*	4469	8
+       17	*	6376	*	*	*	*	9250	0	0	
+
+N 9    2579	*	5088	4363	7129	5773	5485	3082	5829	1592	*	3594	*	6552	5667	*	3839	4146	*	*	9
+       18	6337	*	0	*	0	*	9395	1049	1017	
+
+V 10   4999	*	*	*	5673	*	*	1706	*	1684	5250	*	*	*	*	*	5697	1807	*	*	10
+       0	*	*	*	*	*	*	9429	0	0	
+
+K 11   4282	*	5528	4776	*	5343	4720	5849	2459	3699	*	4481	*	2703	1771	*	4969	5148	*	*	11
+       14	*	6686	*	*	*	*	9429	0	0	
+
+A 12   3354	*	3142	3008	6297	4668	5790	*	3319	*	*	3482	*	3477	3812	2383	4628	*	*	6427	12
+       0	*	*	*	*	*	0	9415	0	1016	
+
+A 13   3828	6340	5053	*	6520	*	5571	4774	*	4054	6421	5620	*	6689	*	1162	2255	4380	6356	*	13
+       0	*	*	*	*	*	0	9415	0	1016	
+
+W 14   5645	*	*	6340	3125	6297	*	5166	*	5527	6671	*	*	*	*	6085	*	4853	528	4709	14
+       0	*	*	*	*	0	*	9415	0	1016	
+
+G 15   2813	6632	3972	2769	6609	4325	5523	6552	3445	7078	*	3444	3587	4198	4054	3274	4552	6711	*	*	15
+       0	*	*	*	*	*	*	9429	0	0	
+
+K 16   3244	*	7059	5967	5867	5117	5470	3398	2698	3402	5964	4598	4890	4009	3205	4184	4203	3652	*	6878	16
+       29	5643	*	1000	1000	*	*	9429	1188	0	
+
+V 17   3752	5102	6678	*	4196	*	*	2157	*	2304	3643	6616	7131	5873	5614	*	6685	1938	*	*	17
+       179	4214	3998	1249	788	*	*	9438	1879	0	
+
+G 18   3766	7049	4191	3306	4893	5031	5890	4759	2692	4858	4741	4350	6086	4777	3462	3210	5010	5578	5230	4618	18
+       258	4118	3235	850	1168	2935	202	9332	1827	2044	
+
+A 19   2910	6335	3373	3864	*	4053	5684	6256	2601	6505	6772	*	2997	3506	4283	3488	4498	6210	*	*	19
+       153	4100	4568	861	1154	1073	931	9175	1747	3490	
+
+H 20   5751	*	2174	4627	5269	3790	3644	5356	3245	4600	6471	2595	6360	4665	4498	5610	6922	5517	6021	4989	20
+       36	5355	*	1361	711	224	2795	9237	1215	2928	
+
+A 21   3777	*	4702	5615	5098	3888	5184	4467	2604	3226	5230	5612	3495	5298	5134	3728	4896	4066	5079	4665	21
+       127	3718	6923	1356	715	*	0	9433	2200	1153	
+
+G 22   3783	*	2784	2705	*	4650	5552	5227	4274	5447	7004	3897	3644	3149	4627	5558	3491	4379	*	*	22
+       77	4258	*	1618	569	1040	961	9433	1771	1462	
+
+E 23   3350	*	4160	1900	6504	3768	5221	5756	3864	5644	*	4326	5764	3864	3823	4167	3951	4980	*	*	23
+       0	*	*	*	*	0	*	9433	0	1153	
+
+Y 24   3321	5664	6994	*	2411	*	3896	3008	*	3301	5362	3574	5612	5695	*	6063	4739	3024	6603	4118	24
+       0	*	*	*	*	*	*	9438	0	0	
+
+G 25   2802	6446	6086	6979	4990	939	6603	*	6452	4925	6462	*	*	*	*	4419	3930	3627	*	6587	25
+       11	7014	*	3000	193	*	*	9438	1000	0	
+
+A 26   4114	6525	3406	4022	6462	6773	7035	4099	4022	3408	5885	4860	5762	3508	4219	3212	3042	3433	*	*	26
+       30	5622	*	2937	202	*	*	9438	1210	0	
+
+E 27   3127	6446	3489	2993	6462	4760	4961	3759	3026	4286	6553	3721	*	4443	4235	4442	4065	5164	*	6398	27
+       36	6586	6152	1585	585	*	*	9438	1020	0	
+
+A 28   4205	5115	*	*	1764	*	*	1998	*	2780	3482	*	*	*	*	6551	5856	3196	*	*	28
+       0	*	*	*	*	*	0	9386	0	1125	
+
+L 29   6513	*	*	*	1447	*	6474	*	*	2521	4310	*	*	*	*	5926	6576	5836	*	1548	29
+       0	*	*	*	*	*	0	9386	0	1125	
+
+E 30   3434	*	4076	3517	5038	4990	6344	3346	3022	3127	5363	5843	*	4437	3637	3947	4034	4966	*	5350	30
+       25	5856	*	4708	56	*	0	9386	1133	1125	
+
+R 31   4323	5020	5945	5130	5249	4881	5219	5126	2755	5624	6862	3533	*	4858	1655	5731	4423	5553	5225	5059	31
+       17	6448	*	3000	193	*	0	9386	1027	1125	
+
+M 32   6350	6363	*	*	2354	*	*	3639	*	1171	3502	*	*	*	*	*	6646	3751	5575	4011	32
+       0	*	*	*	*	*	0	9385	0	1125	
+
+F 33   4975	5448	*	6460	806	*	6457	4755	*	2246	4801	6653	*	5535	*	*	*	5304	6634	*	33
+       63	*	4558	*	*	*	0	9385	0	1125	
+
+L 34   3330	*	4459	2124	6279	*	*	6307	2936	5248	6733	3786	*	3717	4110	3393	3021	6810	*	*	34
+       0	*	*	*	*	463	1864	9210	0	1899	
+
+S 35   3265	6883	3754	3319	*	*	4232	4216	2663	3422	4454	4935	*	4498	3486	3684	4464	6359	*	7001	35
+       11	*	6977	*	*	*	0	9370	0	1125	
+
+F 36   3681	5226	3589	5133	3735	*	2930	6706	4746	6808	7014	2549	*	6741	3944	3809	6926	5219	*	2624	36
+       0	*	*	*	*	1509	624	9372	0	1290	
+
+P 37   4986	*	5115	4223	5927	*	7096	6485	6673	6374	*	*	436	6653	6640	4663	6452	7068	*	6396	37
+       0	*	*	*	*	*	0	9370	0	1125	
+
+T 38   4121	*	2286	1986	6452	4323	5194	*	4763	4981	5558	4418	*	3947	4459	3563	5740	5505	6359	6382	38
+       0	*	*	*	*	*	0	9370	0	1125	
+
+T 39   3830	5004	5876	6920	3804	*	*	3285	*	2396	3829	4439	*	*	6396	4376	3128	3070	6728	3479	39
+       0	*	*	*	*	*	0	9370	0	1125	
+
+K 40   3900	*	*	4772	*	6585	6577	4535	1889	3687	7155	6485	5927	2702	2176	6725	5604	4764	*	6907	40
+       0	*	*	*	*	*	0	9370	0	1125	
+
+T 41   3167	6352	3656	2806	*	6382	*	6071	3638	4801	*	3544	3741	4601	4568	2980	3329	5659	*	5566	41
+       0	*	*	*	*	*	0	9370	0	1125	
+
+Y 42   4364	*	*	*	3174	*	5228	3511	3000	2456	3190	*	5102	5173	5836	6883	5927	4155	*	2698	42
+       16	*	6485	*	*	0	*	9370	0	1125	
+
+F 43   *	*	*	*	246	*	*	5224	*	4507	6379	*	*	*	*	*	*	*	5256	4381	43
+       10	*	7184	*	*	*	0	9401	0	1043	
+
+P 44   4754	*	4359	5788	*	2876	4688	*	2799	6449	6923	4035	2580	5187	4618	2987	3796	4858	*	5126	44
+       109	*	3782	*	*	1241	794	9408	0	1207	
+
+H 45   5622	*	4692	4241	4747	3520	4388	5590	2472	5594	5876	4333	6840	3521	3268	3820	3778	4462	6729	5086	45
+       391	4616	2347	808	1222	1276	769	9335	1555	2381	
+
+F 46   3811	*	4827	6187	1414	*	6356	4681	*	2998	4009	6484	*	6302	5610	4757	3975	3846	6233	4701	46
+       1690	694	3802	168	3184	2346	316	8928	6906	4656	
+
+D 47   4386	*	2057	3487	6402	2414	5438	6412	3777	5797	*	2720	*	*	5362	3532	4838	*	*	*	47
+       154	4874	3903	668	1431	2398	304	8904	1339	4866	
+
+L 48   5399	5312	5218	6425	3694	*	5533	3883	3008	2047	4152	4211	5535	5471	5267	6292	4881	2824	*	6453	48
+       649	1736	4017	728	1335	3441	139	8868	4629	4852	
+
+S 49   4111	*	2584	3942	*	3932	*	6227	3198	5172	*	4699	2673	6486	*	2461	3700	6133	*	6014	49
+       2314	398	4643	2006	413	3053	185	8706	7555	5415	
+
+H 50   3304	5840	5887	4083	*	6033	6349	4019	2787	3248	5537	4987	3434	3713	3001	4216	4297	6096	*	*	50
+       144	3397	*	2052	398	2150	368	8593	1972	5743	
+
+G 51   3203	*	4126	4322	4568	4310	5421	6652	3509	*	*	3292	*	3435	4660	2294	3364	*	6538	5352	51
+       17	*	6406	*	*	2982	195	8806	0	4926	
+
+S 52   4926	*	2610	5957	6054	4934	5615	5282	*	6116	5459	2048	5331	6426	*	1753	4137	5358	*	*	52
+       40	6184	6230	0	*	1179	840	8884	1019	4639	
+
+A 53   3151	6250	4282	3262	6379	4708	5344	6550	3599	5403	*	4056	1811	5822	5681	3521	4385	*	*	6695	53
+       32	*	5505	*	*	809	1220	9252	0	3358	
+
+Q 54   3272	6501	2954	3304	5184	3754	6710	5916	3189	5161	6483	4640	6937	3604	3367	4097	5050	4900	6449	5818	54
+       52	5219	6838	0	*	1914	445	9350	1345	2329	
+
+V 55   4774	*	6129	6543	1648	*	*	3404	6782	2188	3177	6501	*	7125	*	6464	5940	3247	7038	5206	55
+       17	6412	*	1585	585	1400	687	9371	1034	2105	
+
+K 56   4547	6450	4826	3392	6778	4288	3868	5920	2492	4206	*	3967	*	3419	2528	4083	4767	*	*	6439	56
+       0	*	*	*	*	2419	299	9408	0	1638	
+
+G 57   2498	6326	4830	3699	6126	3564	4391	6455	3628	4032	*	4135	*	4569	2909	3988	5293	5168	6982	4576	57
+       13	*	6764	*	*	*	0	9409	0	1489	
+
+H 58   *	6139	*	*	6684	*	996	6794	5468	3712	5198	*	*	1884	6385	*	6552	6930	*	4729	58
+       29	*	5661	*	*	1345	722	9399	0	1658	
+
+G 59   1803	3789	*	5385	4751	2668	*	4963	3928	5346	5644	6561	5795	*	5702	3572	4341	3334	*	*	59
+       45	6461	5670	2322	322	1331	731	9386	1026	1703	
+
+K 60   3321	*	4508	3694	5494	4634	5614	4104	3050	3060	5705	4853	*	5546	3433	3896	3865	3555	*	6899	60
+       0	*	*	*	*	*	0	9373	0	1725	
+
+K 61   3583	6435	*	*	*	6348	5334	4178	3011	4667	4294	5401	*	4071	2050	3323	3082	4474	*	6552	61
+       23	5978	*	1948	433	1276	768	9373	1141	1725	
+
+V 62   *	*	*	*	2188	*	*	2332	*	2231	4254	*	*	*	*	6458	*	1817	*	5556	62
+       0	*	*	*	*	*	0	9400	0	1360	
+
+A 63   3024	5675	*	*	3641	4182	*	3882	6728	2272	2976	*	*	4538	5387	4379	4689	2957	6802	5695	63
+       0	*	*	*	*	1399	688	9400	0	1360	
+
+D 64   3620	5444	3823	2550	*	3549	6368	5829	3590	5078	4771	2909	*	3419	4088	4856	4307	6818	*	6561	64
+       0	*	*	*	*	0	*	9413	0	1157	
+
+A 65   2125	7471	*	6757	3747	3442	*	3967	6897	3201	4810	*	*	5315	4596	3331	4021	3466	4732	5873	65
+       0	*	*	*	*	*	*	9425	0	0	
+
+L 66   *	*	*	*	3355	*	*	2277	*	1220	4234	*	*	*	*	*	6747	2506	*	5147	66
+       0	*	*	*	*	*	*	9425	0	0	
+
+T 67   4311	6893	2064	3008	*	3252	5124	5509	5767	5354	6946	3170	6577	5063	7471	3539	3962	4385	*	5970	67
+       15	6577	*	4087	87	*	*	9425	1026	0	
+
+N 68   3853	5810	3461	3687	4231	6957	5929	5040	3138	4178	5125	3398	6385	5637	3872	3730	3686	4723	6734	4527	68
+       0	*	*	*	*	*	*	9425	0	0	
+
+A 69   2441	4834	*	*	3592	4566	*	2487	*	2497	4156	*	*	*	*	4757	5515	2723	5847	5944	69
+       0	*	*	*	*	*	*	9425	0	0	
+
+V 70   3525	6577	*	6712	4514	*	*	1706	*	3068	3883	*	*	*	*	6582	7000	1607	*	6734	70
+       119	3653	*	1455	654	*	*	9425	2384	0	
+
+A 71   5064	*	2849	2879	*	3033	6671	7035	2885	5820	5752	3334	*	4104	4531	3594	4114	4538	*	*	71
+       0	*	*	*	*	*	*	9425	0	0	
+
+H 72   3303	5864	6509	4452	5012	4870	3777	7424	3852	4273	*	2147	6168	5259	4084	2692	5257	5211	*	5197	72
+       134	3659	6712	1063	940	*	*	9425	2296	0	
+
+V 73   4636	5878	5223	7414	4601	*	6163	3414	5247	1190	3608	5815	4657	6413	6554	6715	5771	4219	*	4235	73
+       78	4477	7016	1162	854	0	*	9407	1719	1017	
+
+D 74   4768	6566	1212	3047	7415	2771	4798	*	5855	*	*	3860	5825	5147	6739	4783	5808	5949	*	*	74
+       53	4796	*	1419	676	*	0	9420	1539	1000	
+
+D 75   5762	*	1745	3181	5154	5798	4732	7290	3956	*	*	2023	5600	4593	5057	3924	6112	*	*	*	75
+       437	1936	*	1771	500	0	*	9420	5056	1000	
+
+M 76   3688	5873	4573	4433	4131	5321	5376	3747	5098	2138	4329	6629	2939	5831	4880	4485	5310	3870	*	*	76
+       75	4577	6809	3105	178	*	*	9425	1618	0	
+
+P 77   3472	*	2824	2430	6643	4570	4761	5087	3852	5196	5823	5195	5987	4604	4777	3475	4449	4268	*	4565	77
+       191	3014	*	1129	882	0	*	9423	3111	1000	
+
+N 78   3011	6705	5148	2566	6803	3870	5281	5499	3196	4604	*	3946	6938	4641	4631	3122	3756	4552	*	6810	78
+       298	2552	5956	1515	621	*	*	9425	3846	0	
+
+A 79   4608	*	7007	4521	3615	6807	5161	3323	4104	2120	3735	*	5803	5213	5554	5307	4067	3026	6590	4579	79
+       118	3669	*	1585	585	1327	734	9394	2275	1166	
+
+L 80   3910	5469	6730	*	4155	*	6840	2978	4771	1214	5212	*	*	*	5892	5102	*	2822	6013	6369	80
+       16	6504	*	1585	585	*	0	9396	1034	1027	
+
+S 81   3296	5856	4282	3929	*	7176	5375	4848	3074	4103	4710	3665	3918	3900	3580	3919	3900	4861	*	5658	81
+       10	7165	*	1585	585	0	*	9396	1000	1027	
+
+A 82   3086	*	3970	3012	5082	5555	5099	*	2717	5590	6493	4744	5296	3978	3132	4027	4907	4884	*	4018	82
+       16	6493	*	1585	585	*	*	9425	1034	0	
+
+L 83   5506	*	*	5582	4278	*	*	2353	6629	1214	3367	5309	*	5909	*	*	5703	3474	*	5594	83
+       39	5728	6946	964	1036	*	*	9425	1202	0	
+
+S 84   2425	6934	6726	4893	6474	1402	5848	5149	4967	5032	6696	4990	*	*	5016	3413	5621	3671	*	*	84
+       18	*	6368	*	*	0	*	9417	0	1000	
+
+D 85   3383	6738	4279	3223	*	4928	4406	5576	2558	5762	5491	4850	6609	2917	3220	4318	4813	5456	*	4983	85
+       0	*	*	*	*	*	0	9394	0	1104	
+
+L 86   5137	*	4741	5525	5227	6588	5537	4235	3117	2440	6469	5111	6869	6932	2666	3655	3429	3280	*	6455	86
+       213	2866	*	1575	590	0	*	9394	3228	1104	
+
+H 87   6572	*	*	6375	*	4357	199	*	*	*	*	5999	*	6635	*	6827	*	*	*	5428	87
+       0	*	*	*	*	*	*	9425	0	0	
+
+A 88   2536	5409	5241	5839	4449	6901	4839	4587	3189	3695	*	*	*	5716	2844	3759	5394	2563	6760	6933	88
+       2833	3693	354	993	1007	*	*	9425	2252	0	
+
+H 89   3653	4336	4648	2658	4500	*	4668	*	3460	*	4432	4473	*	4645	2592	*	2314	*	*	*	89
+       243	2689	*	1342	724	33	5457	6878	1372	8628	
+
+K 90   3245	6569	3874	4460	4623	3462	4748	6728	2677	7032	7070	3613	4250	4325	3054	4788	4190	6026	*	6630	90
+       190	3018	*	1057	945	887	1123	9407	3174	1184	
+
+L 91   4651	6412	6999	6310	3825	*	4785	4982	4859	2718	4337	5843	5254	7080	2127	4342	*	5106	*	2357	91
+       41	5147	*	1566	594	0	*	9417	1396	1000	
+
+R 92   7168	6861	4335	*	*	1066	5440	*	3466	*	*	3614	4710	3926	3791	3915	*	6708	6650	*	92
+       81	4197	*	1980	422	*	*	9425	1852	0	
+
+V 93   3931	5328	*	6375	3487	*	*	2053	*	2934	4200	*	5625	7016	*	*	*	1498	*	*	93
+       37	5318	*	0	*	*	*	9425	1329	0	
+
+D 94   4978	4977	3150	3462	*	3628	5313	6635	3195	6154	*	3582	4013	4785	4057	4744	2339	5883	*	*	94
+       14	6649	*	1000	1000	*	*	9425	1013	0	
+
+P 95   3278	*	5392	4650	6577	3743	5203	4254	4638	4148	5353	7015	1745	4551	4383	3355	5961	4752	*	*	95
+       0	*	*	*	*	*	*	9425	0	0	
+
+V 96   3394	*	2750	2017	5660	4495	3971	6886	3221	6884	*	6717	4786	3759	4525	5090	4454	5704	*	*	96
+       0	*	*	*	*	*	*	9422	0	0	
+
+N 97   5724	*	3940	5910	5162	6932	2092	5646	*	3207	3795	4874	*	3471	5643	4971	6958	5068	5845	2344	97
+       0	*	*	*	*	*	*	9422	0	0	
+
+F 98   6475	*	*	*	1307	*	*	3813	*	2920	4421	*	6373	*	*	*	*	4065	3106	2769	98
+       0	*	*	*	*	*	*	9422	0	0	
+
+K 99   3914	*	2607	2496	*	4023	*	6309	3632	4316	7028	3079	4361	3664	4409	5812	5375	5734	5774	7048	99
+       28	5709	*	1891	453	*	*	9422	1183	0	
+
+L 100  3161	*	3858	3687	5860	5865	7073	3889	4782	2651	4676	3771	3910	4228	6768	4876	5044	3183	7133	6187	100
+       79	4228	*	2000	415	*	*	9422	1899	0	
+
+L 101  4122	*	*	*	1907	5923	*	3571	*	2043	3166	*	*	*	*	6380	*	2556	5126	6586	101
+       0	*	*	*	*	*	*	9422	0	0	
+
+S 102  3126	5159	*	5608	4902	2054	*	4760	3130	3563	*	*	6074	4562	3068	3393	6951	5626	6677	5854	102
+       14	6703	*	0	*	*	*	9422	1001	0	
+
+H 103  4334	6647	3394	1978	*	4922	5248	6683	4142	*	*	3906	4034	4216	3483	3319	4771	4652	6581	7014	103
+       0	*	*	*	*	*	*	9422	0	0	
+
+C 104  1778	3778	6741	6929	5236	7023	*	3278	*	4710	7016	5479	4616	4791	*	3173	5247	2625	5996	5603	104
+       0	*	*	*	*	*	*	9422	0	0	
+
+L 105  5621	6309	*	*	2189	*	*	2758	*	1279	4319	*	*	*	*	6485	5503	3675	6703	5896	105
+       0	*	*	*	*	*	*	9422	0	0	
+
+L 106  5473	*	6745	7014	5661	5805	5318	2556	6570	1822	4304	*	5916	5041	4968	*	3881	2267	6706	5674	106
+       0	*	*	*	*	*	*	9422	0	0	
+
+V 107  3532	6453	3000	2256	4324	4080	5346	6742	4229	5357	6669	5862	5884	3840	4053	3584	5271	5792	5867	5126	107
+       0	*	*	*	*	*	*	9333	0	0	
+
+T 108  2621	5571	*	5083	4792	6906	5683	6379	5068	4262	4327	6664	*	6594	5498	4086	2272	2650	*	3164	108
+       0	*	*	*	*	*	*	9333	0	0	
+
+L 109  4799	5432	*	*	2921	*	*	2063	*	1621	3054	*	*	*	*	*	6379	3158	*	*	109
+       44	6313	5862	1585	585	*	*	9333	1087	0	
+
+A 110  3297	6683	6811	2783	5105	3885	6948	5301	2965	5385	*	4866	5373	3327	2914	3685	4264	4987	*	*	110
+       15	6579	*	4755	54	1003	997	9317	1013	1151	
+
+A 111  3161	6557	3409	2200	6771	5939	5522	*	3422	6532	*	3963	5218	3375	4458	3182	4550	5862	*	6444	111
+       69	6749	4735	1585	585	0	*	9322	1001	1000	
+
+H 112  3212	4845	*	4212	6614	5101	3751	4477	3410	3622	5667	5284	*	4282	3977	5539	4239	2674	6496	3900	112
+       106	7095	3972	0	*	0	*	9373	1000	1550	
+
+L 113  5352	4370	4151	6426	3697	4849	5735	3928	6239	1367	4703	5713	*	4978	*	5419	5779	3506	6311	5022	113
+       338	4663	2563	3331	151	1148	866	9264	1542	1963	
+
+P 114  4150	6214	*	4713	*	846	5704	*	3411	*	6380	*	3024	5434	6387	4673	*	6232	*	*	114
+       132	4508	4521	1381	699	955	1047	9189	1503	4041	
+
+A 115  3346	6541	2812	4965	*	3710	*	6588	3643	5091	*	3795	3178	4954	4391	3369	4013	3804	6361	6025	115
+       37	6250	6344	1000	1000	784	1254	9234	1046	3127	
+
+E 116  3538	5000	3160	3933	7119	3548	3929	*	3088	*	*	3738	5601	3780	3312	3338	5708	5001	*	6490	116
+       109	4272	5565	1382	698	1136	876	9259	1751	2035	
+
+F 117  4176	6733	6850	*	2041	*	5346	3977	5248	3220	4773	6686	5750	*	5409	4261	*	4766	2478	3251	117
+       33	5457	*	4186	82	1585	585	9288	1269	1855	
+
+T 118  4877	*	2285	5727	6561	5936	5528	*	4717	*	*	2982	6963	5020	5257	2534	1781	*	*	*	118
+       108	3962	6961	778	1263	914	1092	9370	2036	1521	
+
+P 119  2598	6300	2734	3577	6487	4057	4620	6920	4271	5586	6422	6112	3023	3673	4332	3496	5083	*	*	*	119
+       54	6552	5246	1585	585	1590	582	9389	1013	1317	
+
+A 120  3202	*	2745	1904	7038	4944	*	5417	3954	5569	*	4802	6905	3208	5671	3297	4594	6546	*	*	120
+       27	6614	6959	2000	415	*	0	9358	1002	1644	
+
+V 121  2588	5448	5835	5246	6759	7629	5903	3111	*	2828	5053	6329	*	3963	6445	4939	2516	2789	*	6770	121
+       0	*	*	*	*	2611	258	9353	0	1798	
+
+H 122  3479	*	4791	2168	6135	5731	6829	4176	2729	3657	5544	6606	6646	3768	3705	*	4199	3678	*	*	122
+       0	*	*	*	*	0	*	9358	0	1644	
+
+A 123  2950	*	3385	2361	*	3932	5625	6791	3549	4564	4793	4781	*	4136	3611	3995	3994	5567	*	*	123
+       12	6919	*	1585	585	*	*	9333	1000	0	
+
+S 124  723	*	*	5756	*	4665	*	4527	*	5009	5975	*	*	*	6677	2836	4178	4975	6759	*	124
+       11	7016	*	3000	193	*	*	9333	1000	0	
+
+L 125  5652	*	*	*	3969	*	*	*	*	4262	5034	*	*	*	*	*	*	5441	357	5057	125
+       0	*	*	*	*	*	*	9333	0	0	
+
+D 126  3795	*	3376	3576	*	4559	4916	4510	2934	4630	4979	3787	*	5121	2700	3799	3591	6011	*	*	126
+       0	*	*	*	*	*	*	9333	0	0	
+
+K 127  4016	5519	3926	3827	6541	4812	5734	5779	1446	4315	*	5253	*	4143	4090	4792	4130	4484	*	*	127
+       0	*	*	*	*	*	*	9333	0	0	
+
+F 128  2344	4789	*	*	2941	5045	*	3311	*	2003	4114	*	*	*	*	6723	3978	3095	*	6878	128
+       0	*	*	*	*	*	*	9333	0	0	
+
+L 129  6609	*	*	*	2250	5799	*	3505	*	1874	3431	5201	*	*	*	6680	5175	4267	4290	2832	129
+       14	6744	*	0	*	*	*	9333	1000	0	
+
+A 130  3258	*	2255	4171	*	3221	6959	*	3195	6778	6451	4511	6603	3967	3964	3035	3992	6604	6943	*	130
+       13	*	6817	*	*	*	*	9333	0	0	
+
+S 131  4190	5659	5971	4777	2794	5404	4955	3447	6769	3536	7272	4262	6646	6623	4517	4415	4363	2877	*	2923	131
+       10	7123	*	2000	415	*	0	9285	1000	1008	
+
+V 132  5083	5828	*	*	3010	5659	*	1725	*	2647	4814	6283	*	*	*	5279	4723	2137	7068	*	132
+       0	*	*	1585	585	0	*	9292	1008	1008	
+
+S 133  2672	4251	6697	5449	3979	3897	*	2654	*	3468	5786	5251	*	5726	4839	4137	4138	2908	*	4907	133
+       15	*	6571	*	*	*	*	9247	0	0	
+
+T 134  3243	6371	2143	3708	5671	4046	5018	5781	3728	5029	*	3580	5706	5260	4948	3907	3732	5983	*	5323	134
+       17	6406	*	0	*	0	*	9232	1014	1001	
+
+V 135  3056	6531	5849	4454	5747	4093	4646	3281	5097	3438	4550	*	6534	4346	3835	4945	3719	2842	*	4513	135
+       0	*	*	*	*	*	*	9223	0	0	
+
+L 136  6586	*	*	*	4363	*	6711	1952	*	1675	1668	*	*	6652	*	*	*	4824	*	*	136
+       15	6620	*	2000	415	*	*	9187	1000	0	
+
+T 137  3670	5671	5754	4564	4270	3863	*	3988	2197	3366	6501	7328	*	5195	3530	3698	4215	3638	*	*	137
+       0	*	*	*	*	*	*	9145	0	0	
+
+S 138  3032	*	4301	2873	6167	4852	4000	6243	4509	4502	*	5055	*	3868	4323	2107	5376	4017	*	6410	138
+       20	6167	*	2000	415	*	*	9050	1002	0	
+
+K 139  2586	*	*	3753	5978	1483	5001	6010	3707	5050	*	*	*	4364	5940	3818	4317	*	*	4435	139
+       0	*	*	*	*	*	*	8790	0	0	
+
+Y 140  4354	5611	*	*	2745	5871	*	4830	*	4204	3239	*	*	4680	*	5736	*	6341	5561	1066	140
+       0	*	*	*	*	*	*	8524	0	0	
+
+R 141  3833	*	4287	3877	*	*	4777	*	1861	3758	*	*	*	4873	2285	3881	*	4747	*	3635	141
+       0	*	*	0	*	*	*	7263	0	0	
+
+//
diff --git a/modules/bindings/tests/testfiles/test.seq219 b/modules/bindings/tests/testfiles/test.seq219
new file mode 100644
index 0000000000000000000000000000000000000000..52b76eda49f227d4aa7c14f77ba719a48a3bfc25
--- /dev/null
+++ b/modules/bindings/tests/testfiles/test.seq219
@@ -0,0 +1,3 @@
+>Test
+�EM��{���X��NJ��X����������dn��EG���$�����+��~����h����S��^���C���X��~܍������<���%�����X����[��
+����E���d��ׄ��[�����F#�m��X���\���f�
diff --git a/modules/bindings/tests/testfiles/testali.a3m b/modules/bindings/tests/testfiles/testali.a3m
new file mode 100644
index 0000000000000000000000000000000000000000..3e2dd453dd151db297723936ebec391d489da2d5
--- /dev/null
+++ b/modules/bindings/tests/testfiles/testali.a3m
@@ -0,0 +1,510 @@
+>ss_pred PSIPRED predicted secondary structure
+CCCHHHHHHHHHHHHHHHCCCHHHHHHHHHHHHHHCCCCCCCCCCCCCCCCCHHHHHHHHHHHHHHHHHHHCCCCHHHHHHHHHHHHHHHCCCCHHHHHHHHHHHHHHHHHHCCCCCCHHHHHHHHHHHHHHHHHHHHHCC
+>ss_conf PSIPRED confidence values
+999999999999998873391557999999998639441123987788888856788999999999998735477789999999887650299989899889999999997536679989999999999999999984329
+>Test
+VLSPADKTNVKAAWGKVGAHAGEYGAEALERMFLSFPTTKTYFPHFDLSHGSAQVKGHGKKVADALTNAVAHVDDMPNALSALSDLHAHKLRVDPVNFKLLSHCLLVTLAAHLPAEFTPAVHASLDKFLASVSTVLTSKYR
+>gi|118595805|sp|P02185.2|MYG_PHYCA RecName: Full=Myoglobingi|49259352|pdb|1UFP|A Chain A, Crystal Structure Of An Artificial Metalloprotein:fe(Iii)(3, 3'-Me2-Salophen)APO-Wild Type Myoglobingi|145579858|pdb|2JHO|A Chain A, Cyanomet Sperm Whale Myoglobin At 1.4a Resolutiongi|151567563|pdb|2EB8|A Chain A, Crystal Structure Of Cu(Ii)(Sal-Phe)APO-Myoglobingi|151567564|pdb|2EB9|A Chain A, Crystal Structure Of Cu(Ii)(Sal-Leu)APO-Myoglobingi|228311816|pdb|2W6W|A Chain A, Crystal Structure Of Recombinant Sperm Whale Myoglobin Under 1atm Of Xenongi|113374037|dbj|BAF03579.1| myoglobin [Physeter catodon]
+VLSEGEWQLVLHVWAKVEADVAGHGQDILIRLFKSHPETLEKFDRFkHLKTeaemkASEDLKKHGVTVLTALGAILKKKGHHEAELKPLAQSHATKHKIPIKYLEFISEAIIHVLHSRHPGDFGADAQGAMNKALELFRKDIAAKYK
+>gi|118595767|sp|P14398.2|MYG_GALJA RecName: Full=Myoglobin
+-----NWDKVNSVWSAVEQNITAIGQNILLRLFEQYPESEDYFPKLkN-KSlgelkDTADIKAQADTVLRALGNIVKKKGDHSQPVKALAATHITTHKIPPHYFTKITTIAVGVLSEMYPSEMNAQAQAAFSGAFKNICSDIEKEYK
+>gi|47226106|emb|CAG04480.1| unnamed protein product [Tetraodon nigroviridis]
+VWTDQERAIIDNIFSNL--DYEDVGSKALIRCLIVYPWTQRYFSSFgNLYnaeaiRNNPNVAKHGVTVLHGLDRALKNMDNIKEEYKKLS--ERAALREAARRPRQLCSLTA-----------------------------------
+>gi|5139299|gb|AAD40480.1|AF157494_1 hemoglobin [Myxine glutinosa]
+-TTEGERAAVRASWAVLMKDYEHAGVQILDKFFKANPAAKPFFTKMKdLhtlEdlASSADARWHVERIIQAVNFAVINIEDrekLSNKFVKLSQDHIEEFHVtDPQYFMILSQTILDEVEKRN---------GGlsgegksgWHKVMTIICKMLKSKY-
+>gi|74922327|sp|Q7SID0.1|GLBF1_EPTBU RecName: Full=Globin-F1gi|18655670|pdb|1IT2|A Chain A, Hagfish Deoxy Hemoglobingi|18655671|pdb|1IT2|B Chain B, Hagfish Deoxy Hemoglobingi|18655672|pdb|1IT3|A Chain A, Hagfish Co Ligand Hemoglobingi|18655673|pdb|1IT3|B Chain B, Hagfish Co Ligand Hemoglobingi|18655674|pdb|1IT3|C Chain C, Hagfish Co Ligand Hemoglobingi|18655675|pdb|1IT3|D Chain D, Hagfish Co Ligand Hemoglobin
+-LTDGDKKAINKIWPKIYKEYEQYSLNILLRFLKCFPQAQASFPKFS-tkkSnlEQDPEVKHQAVVIFNKVNEIINSMDNqeeIIKSLKDLSQKHKTVFKVDSIWFKELSSIFVSTI-DGG---------AEFEKLFSIICILLRSAY-
+>gi|157880060|pdb|1SCT|A Chain A, Scapharca Tetrameric Hemoglobin, Co-Stategi|157880061|pdb|1SCT|C Chain C, Scapharca Tetrameric Hemoglobin, Co-Stategi|157880062|pdb|1SCT|E Chain E, Scapharca Tetrameric Hemoglobin, Co-Stategi|157880063|pdb|1SCT|G Chain G, Scapharca Tetrameric Hemoglobin, Co-State
+CGSEAIKANLRRSWGVLSADIEATGLMLMSNLFTLRPDTKTYFTRLGDvqkGKANSKLRGHAITLTYALNNFVDSLDDPSRLKCVVEKFAVNHInrKISGDAFGAIVEPMKETLKARMGNYYSDDVAGAWAALVGVVQA-------
+>gi|29692328|gb|AAO89499.1| hemoglobin II [Phacoides pectinatus]gi|197726107|gb|ACH73203.1| hemoglobin II [Phacoides pectinatus]
+-LTNPQKAAIRSSWSKFMDNGVSNGQGFYMDLFKAHPETLTPFKSlFGGLTlaqlqDNPKMKAQSLVFCNGMSSFVDHLDDNDmlvVLIQKMAKLHN-NRGIRASDLRTAYDILIHYMEDH--NHMVGGAKDAWEVFVGFICKTLG----
+>gi|2055266|dbj|BAA19794.1| myoglobin [Aplysia juliana]
+-LSAADAGLLAQSWAPVFANSAANGDSFLVALFTQFPESANFFNDFKGKSladiqASPKLRDVSSRIFARLNEFVSNAADAGkmgSMLQQFATEHA-GFGVGSAQFQNVRSMFPGFVASL--SAPAG--DAAWNSLFGLIISALQ----
+>gi|74096493|ref|NP_001027700.1| globin [Ciona intestinalis]gi|34364572|emb|CAD68147.1| globin [Ciona intestinalis]
+-LTSEQVVLLRSSWQTIGKLGms-NVGLAVLHRLFNDVPETLPFFHSVLSPtqqteievlksnakvvrhasRVGL-----------SIDKIINLLDNGEELVKYLLFLgqvHV-KRSIPRKYFSAMGPVLLSVISAVLEKDLDAPVMQAWATAYGVIEQGI-----
+>gi|54027379|ref|YP_121621.1| hypothetical protein nfa54050 [Nocardia farcinica IFM 10152]gi|54018887|dbj|BAD60257.1| putative flavohemoprotein [Nocardia farcinica IFM 10152]
+--DSRSVALIRTTFKAVAADDagpDELARTFYAILFTDHPQIRDFFP--------AAMDVQRDRLVKAISYALDRLEEPDKLLPFLAQLGRdhRKYGVRREHYAAVADSLKAAVRRCAGTEmWTDEVDRAWDEGLALISDAMI----
+>gi|153873469|ref|ZP_02002042.1| Globin [Beggiatoa sp. PS]gi|152070062|gb|EDN67955.1| Globin [Beggiatoa sp. PS]
+-----NTELIGQSWDKLAGKHEEMVATFYDRFFDKFPHYRKFFPE--------SMEHQLKRMAETIALLARVTHETEVTHPHLVKVgsrHT-GYCLAREDLDNFKTIFVQVVGEYCGDDWNQEYQESWTEAFE--qhiIPYMMH---
+>gi|215764931|dbj|BAG86629.1| globin [Samia cynthia ricini]
+-LTRREIYAVQKSWAPVFANSIPNGAELLRRLFQTFPETKEFFKMIrKLPdeeyIQNPQFRAHVINLMTSLNLAVNNLNQPEVVaamMNKLGESHK-RRQIKERHFGDLKQVIVTMFIEVL--HLDGDTLTAWDKTVTFWYKHI-----
+>gi|340716694|ref|XP_003396830.1| PREDICTED: cytoglobin-2-like isoform 1 [Bombus terrestris]gi|340716696|ref|XP_003396831.1| PREDICTED: cytoglobin-2-like isoform 2 [Bombus terrestris]
+-LTNKEKRIIRETWGVLRANSVKVGVDIMISYFKRFPQHHRAFPPFkDIPaddlLDNKKFHAHCQGIMSTLNDAIDALDDVDLMnaiLHTTGKRHG-RRGQGRQEFIDLKGVVLDAMRGAFGSKFTTEVEVAWDKAIDVLFSKI-----
+>gi|307167439|gb|EFN61015.1| Globin [Camponotus floridanus]
+-MTEKQKRLVQNTWAIARKDEVSAGVAIMIALFKQYPEYQKQFKPFkDVPidelPKNKRFQAHCVNIISAISKLIEQMCDPELMqatLINLIEKHK-NRGQTQEQFENLRQLLAKLFPSLFGKQYTQEAEEAWKKLLDLMYSVI-----
+>gi|254463896|ref|ZP_05077307.1| globin [Rhodobacterales bacterium Y4I]gi|206684804|gb|EDZ45286.1| globin [Rhodobacterales bacterium Y4I]
+-MTDAELEQLRESYSKLKDEAVRDPAFFYDALFRHAPELRQLFRE--------DLEGQGMKFMTTLGVILAKLGDESAVDPHFQELgrkHA-SLGVQISHFAPMEEALVDSLRNALEDDFTPELEALWRRAFEEISARMIQ---
+>gi|15613621|ref|NP_241924.1| nitric oxide dioxygenase [Bacillus halodurans C-125]gi|52000645|sp|Q9RC40.1|HMP_BACHD RecName: Full=Flavohemoprotein; AltName: Full=Flavohemoglobin; AltName: Full=Hemoglobin-like protein; AltName: Full=Nitric oxide dioxygenase; Short=NO oxygenase; Short=NODgi|5822815|dbj|BAA83959.1| HMP [Bacillus halodurans]gi|10173673|dbj|BAB04777.1| flavohemoglobin [Bacillus halodurans C-125]
+TLSQETKQIVKATVPILAEHGEAITKHFYKRMFSHHPELLNIFNQ-----THQKQGRQPQALANSIYAAAEHIDNLEAILPVVSRIahkHR-SLNIKPEQYPIVGENLLAAMREVLGDAASDDVLEAWREAYELIADVFIQ---
+>gi|241959586|ref|XP_002422512.1| flavohemoprotein, putative; hemoglobin-like protein, putative; nitric oxide oxidoreductase, putative [Candida dubliniensis CD36]gi|223645857|emb|CAX40520.1| flavohemoprotein, putative [Candida dubliniensis CD36]
+PLTRSERKIIKDSIPILEYLDIQFGEKFFKRLVKRFPEYKPYFNE-----THLTLLRQPRSFHHCLLEFARNIDDLRPMKDFIMKIaskHV-ARQVSPDQYRVFGQILIGVMVDQFPKEfVDEEFVEAWTMAFRILANILI----
+>gi|254425852|ref|ZP_05039569.1| Globin domain protein [Synechococcus sp. PCC 7335]gi|196188275|gb|EDX83240.1| Globin domain protein [Synechococcus sp. PCC 7335]
+-LAVRQVELVQRSFAKVEPISEQVGKLFYEHLFETRPDFKPLFSS-------TDMETQQRKLMMTLATAVEGLRHPEEIISKVQALgrsHQ-GYGVKAEDYEAIGATLLWTLKEKLGDDFTPEVKRAWEVAFQFLSKIMIN---
+>gi|342859152|ref|ZP_08715806.1| hypothetical protein MCOL_09748 [Mycobacterium colombiense CECT 3035]gi|342133393|gb|EGT86596.1| hypothetical protein MCOL_09748 [Mycobacterium colombiense CECT 3035]
+---ADALRVLRDAFAPGaadsAGDPGGLVHRFYTHWFALDGSVRDLFP--------PEMAAQRLAFGHALHWVYGELvaRRAQEPVAFLAQLgrdHR-KYGVLPHHYDTLRRALLATLRTHLGAAWTDAVDEAATQSLNLITGVMSG---
+>gi|183980669|ref|YP_001848960.1| monooxygenase [Mycobacterium marinum M]gi|183173995|gb|ACC39105.1| monooxygenase [Mycobacterium marinum M]
+---RDALRVLRDAFAPQpdldhKTQSSELVRSFYTNWFSLDSSVRDLFP--------PEMSGQRAAFTRALHWVYSELvaQRAEEPIAFLAQLgrdHR-KYGVQPTQYETLRRALQTTLRSHLGSSWTDSVARAAEQSLNLIVGVMSG---
+>gi|120401655|ref|YP_951484.1| oxidoreductase FAD-binding subunit [Mycobacterium vanbaalenii PYR-1]gi|119954473|gb|ABM11478.1| Oxidoreductase FAD-binding domain protein [Mycobacterium vanbaalenii PYR-1]
+---RESMRILRDALDL-DLGSEALIGDFHTRWFAADLSARDLFP--------PDLEKQRQVFAQALCWLCDELiaQRAEEPVAFLAQLgrdHR-KYGVTQSHYATLQDALLTTLRKALVEQWDRRLAEAVDDVVQLVVGVMSG---
+>gi|119368204|sp|P15161.2|GLB1_PARCH RecName: Full=Globin-1; AltName: Full=Globin I
+-LTLAQKKIVRKTWHQLMRNKTSFVTDLFIRIFAYDPAAQNKFPQMaGMSAsqlrSSRQMQAHAIRVSSIMSEYIEELDSdiLPELLATLARTHD-LNKVGPAHYDLFAKVLMEALQAELGSDFNQKTRDSWAKAFSIVQAVLLVK--
+>gi|340378768|ref|XP_003387899.1| PREDICTED: neuroglobin-like [Amphimedon queenslandica]
+SLTSAQVALIESTWKVVKKDLQGAGNIMFLKLFQIDVSVRDKFPFRDVpyEelEDSESFLKHSLQVMETIDLAITLLlgGEMEKLVEALVDLgmaHA-MQGLKPEDFDHVGEALVHALGVALGKEFNDEAKKAWTLLYSVVTAKMKEGLK
+>gi|241146860|ref|XP_002405154.1| cytoglobin-1, putative [Ixodes scapularis]gi|215493696|gb|EEC03337.1| cytoglobin-1, putative [Ixodes scapularis]
+PLTARQIFSISKSWKAIARAMEPTGIEMFVRLFQEKEDLLDLFEKFqALRtkesqRESMELAQHASVVMTTLDEGINALDNLDYFMsylHNAGRLHY-KIKGfKKEYFWHIEGPFLAAVSDTLGDRYTDNIENIYKITIRFILQTLIE---
+>gi|327360040|emb|CBL51562.1| globin [Branchiostoma floridae]
+PLDAWQRFYLQKSWKTVARKSDQAARTVFLRMLQDNPGLRQKWPRIsLLTeeeiPTSPYIKFLGERIFDCLDYIIDNLGDLDHVIselTKLGRQHS-DMNVmTPEDVWAIEAAFLAGVQECLEDRFTIKYEEIYSRFIVFVIETMVI---
+>gi|255642839|gb|ACU21602.1| extracellular tetra-domain globin [Branchipolynoe seepensis]
+-ISSEQKAAIKTSWAGA--NLQAAGTGFYVHLAADAPAAYAVFN-LGANPHGAKAQAQGLKVMQFVDDCVKSLDDMAAVRDKLEVLahrHT-GYPAKKEYFGPGKACFLAGLADALGAKFTAEAKAAWATFYDIIAISLCQ---
+>gi|327360034|emb|CBL51559.1| globin [Branchiostoma floridae]
+SLSAADKKAVADSWAKMSkPSFQDAGERVFLKLLKK-DSTKAMFKKFkDIPrdrlAGNAALRDHGGKVVQALDDFIKGLDGsGHETVRNVGRIHK-AAGMTNDNINLMKPILLELLDEV-G--CG-DAKAAWDKLWNLFMTVHG----
+>gi|313502|emb|CAA23729.1| leghemoglobin [Glycine max]
+-FTEKQEALVNSSFEAFKANLPHHSVVFFNSILEKAPAAKNMFSFLGDAvdPKNPKLAGHAEKLFGLVRDSAVQLQTKGLVvaDATLGPIHT-QKGVTDLQFAVVKEALLKTIKEAVGDKWSEELSNPWEVAYDEIAAAIKKAM-
+>gi|1170183|sp|P42511.1|LGB_CANLI RecName: Full=Leghemoglobingi|495289|gb|AAA18503.1| leghemoglobin [Canavalia lineata]
+-FSEKQESLVKSSWEAFKQNVPHHSAVFYTLILEKAPAAQNMFSFLSNGvdPNNPKLKAHAEKVFKMTVDSAVQLRAKGEVvlaDPTLGSVHV-QKGVLDPHFLVVKEALLKTFKEAVGDKWNDELGNAWEVAYDELAAAIKKAM-
+>gi|163742519|ref|ZP_02149905.1| putative flavohemoprotein [Phaeobacter gallaeciensis 2.10]gi|161384104|gb|EDQ08487.1| putative flavohemoprotein [Phaeobacter gallaeciensis 2.10]
+-VSADDRTLIHRSVESERMELDHFVPLFYTKFFETCPDVRTFFPN--------DMAGQHEKLLTSLTYIIEALDHpekLSAILKHQGERHR-AIRITDAHFDGFIYSFTSALAETLGPEWSEDTHSAWRVFLTDVALNMN----
+>gi|254474495|ref|ZP_05087881.1| Globin, putative [Ruegeria sp. R11]gi|214028738|gb|EEB69573.1| Globin, putative [Ruegeria sp. R11]
+-VAPADRDLILASVESQKMELDQFVSLFYAKFFERCPDTRPMFPH--------DMSLQEEKLLMSLTHIIEALEHpakLRLILLDQGERHK-ALQINDDHFAGFIDSFTGALKDTLQEDWSEETRQAWLRFLQYVAYQMG----
+>gi|121228|sp|P15447.2|GLB4_GLYDI RecName: Full=Globin, monomeric component M-IV; AltName: Full=GMH4gi|159149|gb|AAA29162.1| hemoglobin IV [Glycera dibranchiata]
+GLSAAQRQVVASTWKDIAgsDNGAGVGKECFTKFLSAHHDIAAVFG-F--SgASDPGVADLGAKVLAQIGVAVSHLGDEGKMVAEMKAVGVRhkGYgykHIKAEYFEPLGASLLSAMEHRIGGKMTAAAKDAWAAAYADISGALISG--
+>gi|195110175|ref|XP_001999657.1| GI24641 [Drosophila mojavensis]gi|193916251|gb|EDW15118.1| GI24641 [Drosophila mojavensis]
+-MNSDELAMIKKTWEIPVATPTDSGAAILTAFFNRFPSALEKFP-FrDVPleelPANARFRAHAGRIIRVFDESIRVLgqEGdqekLDEIWTKVAVNHI-PRRISKESYNQLRGVILETLTAVC--NLDDSQQETWTKLVDHVYSII-----
+>gi|62990081|emb|CAI56309.1| haemoglobin B2 chain [Arenicola marina]
+--TTEDRKEVQTLWSEIWSAQftgrrVQVAQAVFEDLFRRDPESKNLFKRVNVdDMNSPEFHAHCIRVVNGLDTVIGLLDDPDTLKSQLEHLaqqHKERDGIHKTHFDEMSHAFGAVMPQVS-SCFNP---DAWNRCFGSIATKIASL--
+>gi|13810245|emb|CAC37410.1| globin [Sabella spallanzanii]
+--SMEDRQEVLNAWEALWSAEytgrrVMIAQAAFQKLFEKAPDSKALFTRVNVdNIGSPQFRAHCIRVTNGFDTIINMAFDTDVLEELLTHLgnqHTKYQGMRAAYLTHFRESFAEILPQAI-PCFNT---AAWNRCITAMQDKIGAS--
+>gi|34447132|dbj|BAC84992.1| globin D2 precursor [Haemadipsa zeylanica]
+--SIEDIRDIQHDWQFTWGDAsldarIVFGQAVFKKLIELDSSVVEPLKGVHVeDPNSLTFKNHVLRVLNGLDNLINLFDEQGVLVSQLNHLsqqHKERAGVNAAHFKAFARAFIDVLEVSG-NCPNL---DAWKGCLAALGHRISLQ--
+>gi|299757081|emb|CBN88274.1| hemoglobin [Carcinus maenas]
+-LTLRHRTAIYRTWDLVRPNPKLHGINLFLTMFQEEPVLQTRFKGFaGKSieelKNSKRLAAHGTTVVMAITAMVDNLEDVSVLVELLKNTganHR-DRGVPKGDFELLAPVLVRFLKDNLGSAWSPVAEEAWTQAMKVINAVIFTSY-
+>gi|156405932|ref|XP_001640985.1| predicted protein [Nematostella vectensis]gi|156228122|gb|EDO48922.1| predicted protein [Nematostella vectensis]
+PLSVAQKYLVRETWETIEQHSKAVGKKTFLrmfymssidfiysvvmeskgskdirvlglelafddvknsyrtwRFFEMNPDYQKLFPEFaTLDqvelEQANALHGHAKRVMKAVENAVSAMDDAESFAAYLENLGARhkARALKPAYLDAMQVAYTDTIQDLLKTQWTDGTAEAWNKLFRFIADTMKHG--
+>gi|114765375|ref|ZP_01444490.1| probable bacterial hemoglobin [Pelagibaca bermudensis HTCC2601]gi|114542218|gb|EAU45248.1| probable bacterial hemoglobin [Roseovarius sp. HTCC2601]
+--DNATKQQVLSSALRLRLASSALTRDFYDRLFDRAPELRAMFPA--------DMSAQSDKLFDMVLVLVQSLDHLQMLVAEIEALgvrHH-EYGVTEEQYALVSEVLLDTLEHHV-ADWSEVDRKAWALLLGYVCDLMIT---
+>gi|67463862|pdb|1X46|A Chain A, Crystal Structure Of A Hemoglobin Component (Ta-Vii) From Tokunagayusurika Akamusigi|409321|gb|AAB27064.1| hemoglobin component VII [Tokunagayusurika akamusi=midges, 4th-instar larva, Peptide, 150 aa]
+DMEAGDIALVKSSWAQIHD----KEVDILYNFFKSYPASQAKFSAFagkDLEslKDTAPFALHATRIVSVINEAIALMGVaenrpaLKNVLKQQGINHK-GRGVTAAHFEEFETALEAFLESHA--SgYNAGTKKAWDSAFNNMYSVVFP---
+>gi|321471887|gb|EFX82859.1| hemoglobin [Daphnia pulex]
+-LDCFDHSIIRNTWDQAKKNG-EFAPQVLLRFIKAHPEYQQMFGKFaSVPHynllRNGDFLAQAYTISAGLNVVIQSLSSQELLAAQFNLLgsaYQ-PRGVTPAMFEEFSVILEQVLEETLGSTFNVEARKAWNKGMVAIIAGIS----
+>gi|259418086|ref|ZP_05742005.1| globin [Silicibacter sp. TrichCH4B]gi|259346992|gb|EEW58806.1| globin [Silicibacter sp. TrichCH4B]
+-LHQIDAQLVKGSFRQVFARKAALTDKFYEYLFLEMPDTKAMFTG--------DFSHQKEMFASVLAAGVRSLGQDAEllaLIDRLLLRHR-HLGLTSGHMYMAQRALLLAFREVMGPHLTAAEVSAWGAAIRRLCQTLAA---
+>gi|99082334|ref|YP_614488.1| globin [Ruegeria sp. TM1040]gi|99038614|gb|ABF65226.1| globin [Ruegeria sp. TM1040]
+-LRQIEVQLIKVSFNRVFAQKAALAEKFYHHLFLELPDAEVMFTR--------DFSHQTEMFARVLTTGMQSLGRDREmmvLVDDLLQRHK-HLGLTLDQMYTAQRALHLAFCEVMQAELTAAEVSAWDNAIGRLCRALAA---
+>gi|86137140|ref|ZP_01055718.1| globin domain protein [Roseobacter sp. MED193]gi|85826464|gb|EAQ46661.1| globin domain protein [Roseobacter sp. MED193]
+---------MRSSFPTIFARKAELADRFYSHLFVHLPEVESLFGD--------DFSKQKEMFAAMLTYCLKGVANSQSlpqARAGLVKVHA-RFNLGPREMELAGKAVMAALEDVLGNDLSTKQREIWEQAISGVMQLLLA---
+>gi|301122887|ref|XP_002909170.1| Nitric oxide dioxygenase (Pi-NOD1) [Phytophthora infestans T30-4]gi|262099932|gb|EEY57984.1| Nitric oxide dioxygenase (Pi-NOD1) [Phytophthora infestans T30-4]
+PMSAKTIAILKATAPVVQEHGTEITSTMYGTMFSEFPEVQNLFNMShhRVAgatKggAPPGVSRQATALANAVIGFAANCDQLGNLgdaVPRMVHKHV-SLDIRAKHYPIVGGCLLRAIKTVLGDAATDEIIDAWKEAYWFLADLLI----
+>gi|114799562|ref|YP_759630.1| globin domain-containing protein [Hyphomonas neptunium ATCC 15444]gi|114739736|gb|ABI77861.1| globin domain protein [Hyphomonas neptunium ATCC 15444]
+---------iILSTFERAAQACADPAPLIYARLFELRPDFKPLFDM----DTDGGVRGS--MLETCFEAILGVIEGASSQrVIISAARfsHG-GYGVVDEEFDIMFASIRDVFRDLLGARWTGTEEAQWAILLKEIAAis-------
+>gi|8101728|gb|AAF72633.1|AF258616_1 hemoglobin P polymer precursor [Parartemia zietziana]
+-ITDAEKQLVQESWELLKPDLMGLGQKVFGRIFTKNPEYQTLFTRvgFgDTplTqlMANPAYGAHLIKVMRSFDFVIQNLGKPKTLLAYLKNVGADhiARNVERRHLQAFSESLIPVMQNELKAKLKPEAVAAWRKGLDRIIGVID----
+>gi|4020136|gb|AAC96002.1| hemoglobin T1 polymer precursor [Artemia salina]
+-ITDAEKALVQESWDLLKPDLLGLGRKIFTKVFTKHPDYQILFTRtgFgDTplTklDDNPAFGTHIIKVMRAFDHVIQILGKPKTLMAYLRSVGADhiARNVERRHFQAFSNALIPVMQHELKAQLRPDAVAAWRKGLDRIIGIID----
+>gi|291238614|ref|XP_002739227.1| PREDICTED: Globin D, coelomic, putative-like [Saccoglossus kowalevskii]
+-LTKEQKDTLIQTWQNLHADLERIGMLMFMGLFEHNPEIKEFFVGADsrdMKteelRYNEKLQEHGIRVMGLVEKIISSMGfedeKIDQMVVDLGKRHL-GYDVHIPFIDLFGRQFVFAIKPTLHTHWTANVEEAWTQLFKYIGYLMRYGYH
+>gi|57914327|ref|XP_555006.1| AGAP008434-PA [Anopheles gambiae str. PEST]gi|55237255|gb|EAL39570.1| AGAP008434-PA [Anopheles gambiae str. PEST]gi|85813752|emb|CAJ65692.1| globin 2 [Anopheles gambiae]
+-LTASEKITLFSAWGLIRKDLDVHGRNVLLLLFHKHPRYIAYFD-FtDDPnaqslVDNKSLYDQAIHVFKAVGALIEyGFKDPVLFdatLRKITRRHK-DRPVYTEDILTIGEVLLNYLEQALGRQMSDSLPDAFWKLFQTIAGRFP----
+>gi|284041096|ref|YP_003391026.1| nitric oxide synthase NOS [Spirosoma linguale DSM 74]gi|283820389|gb|ADB42227.1| Nitric oxide synthase NOS [Spirosoma linguale DSM 74]
+-LTPDMIRQMRQIGDELSANARVIGTDFYHALFQTHPEIIPYFNR-------TDLDSLTEHLMLAIGFLVRSLDNGLDItheLRELSQIHT-NFSVPPDAYPKLVDPLLTVLRKHVP-GFGTEQEQAWVILLNRVTNVLR----
+>gi|254426005|ref|ZP_05039722.1| Nitric oxide synthase, oxygenase domain protein [Synechococcus sp. PCC 7335]gi|196188428|gb|EDX83393.1| Nitric oxide synthase, oxygenase domain protein [Synechococcus sp. PCC 7335]
+-LPPALVQKMADSWQYFAPRKNEMGVEFYQTLFERYPQVLPIFGR-------ADMDYLSTHLFQSLEFIFLCLAEGSTerLmkeLRHLGRLHG-NAGVPSFAYGAISEVMISMFEKYVP-GFDEQLKEAWQVLIARVSNVIK----
+>gi|312385086|gb|EFR29666.1| hypothetical protein AND_01190 [Anopheles darlingi]
+PLTAKQKYTMVASWKGISRAMETTGITMFIKLFEEHADLLNMFAKFrELKTkeeqaTSEELQEHANKVMNTLDEGIRGLDDLDTFFEFIHQVgasHRRIPGFKQEYFWRIEEPFLTAVSTTLGDRYTQNVEGIYKLTIKFIIETLVAGY-
+>gi|74934410|sp|Q8T7J9.1|GLB_YOLEI RecName: Full=Globingi|19880109|gb|AAM00251.1|AF361744_1 hemoglobin [Yoldia eightsi]
+SFSAAQVDTVRSNWCSMTADIDAAGYRIFELLFQRNPDYQSKFKAFkGLavSalKGNPNAEKHIRIVLGGLGRILGALNTpeLDVIYKEMASNHK-PRGVMKQQFKDMGQAIVTALSEiqsKSGGSFD---RATWEALFESVANGIG----
+>gi|321473288|gb|EFX84256.1| hypothetical protein DAPPUDRAFT_223072 [Daphnia pulex]
+SygggygggeknkftegssgtsplmniLSENDISVLVNSWHILKKR-SDFAPKVFMRYFKAKPEAQKLFSEFaNVSvtdlPNNHDFLNAAYSCISSLEFILPHLRFqHPERCPALTDLK-NKYSV--VDLKRFVPIWMAAMQEEMGNAYSNEVRDVWKKAFSAFTDY------
+>gi|321457980|gb|EFX69056.1| hypothetical protein DAPPUDRAFT_301206 [Daphnia pulex]
+-rsLSDSDINLIVSSWNFLKKRLSSFAPKVFIGYLEARTDSKKMFPDFaHVNiaelATNVEFRSRACNCVASLNYIIPHLKRsFPVlQCPALKNLK-TKYNQHiD--iLKSLGIIWVKAMQEELDKk-iFTDDVRVVWKKLFSVLKEH------
+>gi|50897135|dbj|BAD34601.1| hemoglobin chain I [Calyptogena kaikoi]
+-VSASDIKNVQDTWTKLYDQWeAVHASKFYNKLFKDNEDISEAFVKAGT-GSGIAMKRQALVFGAILQEFVENLSDPTALSLKIKGLcatHK-TRGItNMELFAFALADLVAYMGTT--ISFTAAQKTSWTAVNDVILHQMSSY--
+>gi|156392484|ref|XP_001636078.1| predicted protein [Nematostella vectensis]gi|156223178|gb|EDO44015.1| predicted protein [Nematostella vectensis]
+-MTYEQKYLIRETVDNRECVNEkdflawRYVCELAAIFLNMHPGLQTYFSEFKhIKIDNiNGSHGHPRRLLMAIDNAVTALGDSDSFSAYLVELGRrhhgMNFRPGPTHFNDLRKCFLSVIKEILATAslWDFQVEEAWNRLFDSITAMML----
+>gi|298705122|emb|CBJ28565.1| hemoglobin [Ectocarpus siliculosus]
+---------VKRNWAMISEGPETQGsfngastslvalyDTFFARLFLLEPSMRSMFGD--------NMIRQSKFLVGLVNIIVKMEDMLKQGLSPLYSFAdrSVAMGARPEHYEVIAEVLPIALEACAGEGvWTPDIAGAWRDVMSFA---------
+>gi|212659295|ref|NP_001129874.1| hypothetical protein Y57G11B.97 [Caenorhabditis elegans]gi|189309807|emb|CAQ58126.1| C. elegans protein Y57G11B.97, partially confirmed by transcript evidence [Caenorhabditis elegans]
+-ITERQKHIFTETFPVIFKEYKRNGLVLFAKYFSEFPHYKNIWPQFrTLQdsalLASNELANHCSVYMSGLKEIVEVMDDEEKLtyfMARIARSHV-KWNINKYHITNMLEGVDVVLQRSFGDKLTDEIVNAYHTLYDVIGNLLD----
+>gi|150866030|ref|XP_001385495.2| hypothetical protein PICST_32831 [Scheffersomyces stipitis CBS 6054]gi|149387286|gb|ABN67466.2| hypothetical protein PICST_32831 [Scheffersomyces stipitis CBS 6054]
+HLTTSEISLIRYTWNKMLLDDpiekqstfrnipgaypveqeipkhkqpatsaSSiasslFCRQFYDNLLMSKPDLEEMFP---------SIRHQAVQFAGVMAMTISQLEDLTlmdEYLMKLGKRHSRVLGIGSDHFELMGEVLILTFQERFGTRFTQELAVLWIRLYLYLANTL-----
+>gi|312115464|ref|YP_004013060.1| globin [Rhodomicrobium vannielii ATCC 17100]gi|311220593|gb|ADP71961.1| globin [Rhodomicrobium vannielii ATCC 17100]
+---PNQLAALREFFSNIESDLPEIVSLMYERFFEAVPEAASLFKG--------DFAAQQMQFTSMLRSTIAltrssqlwPVDAeaGRASLPEIEYLglrHA-CVGVQPEHFAAMKWALARTLAEMYPRDFDRDIEDALSFIFDVVARA------
+>gi|149247543|ref|XP_001528180.1| hypothetical protein LELG_00700 [Lodderomyces elongisporus NRRL YB-4239]gi|146448134|gb|EDK42522.1| hypothetical protein LELG_00700 [Lodderomyces elongisporus NRRL YB-4239]
+-LSPVELHNLRTSWSKT--NQKEFFDKLYPNLLDQNRSLRRIFNNDD-----FVVKHHLEIFADCLQFVISNVQDASLVdeflYQFVQENQR-FASMAVQYLEPMGNAFITTFKQVLNTSWTSVLELVWIKVFVFIANSI-----
+>gi|321471887|gb|EFX82859.1| hemoglobin [Daphnia pulex]
+-LTRPQIRNVQRSWESMKSGRNSLVSAIFIKLFKETPRVQKHFAKFaNVPvdslRGNGDYIQQVALVADRLDTLISAMDDQLQLlgnINYLKYTHA-KRSIPRKTWEDFARLLVELLPTR---GVSASDVESWKGVTTVLVNGIA----
+>gi|321477132|gb|EFX88091.1| hemoglobin [Daphnia pulex]
+-LSGHMIGDVQRSWENIRGGRNAMVSDIFIKLFKETPRIQKFFAKFaTVAadalPGNADYEKQVALVADRVDTIISALDDKLQLlgnINYMRYTHT-ARSIPRGAWDDFGRLLVQSLAAK---GVSSDDLDSWKSVLSVLVNGIS----
+>gi|321477133|gb|EFX88092.1| hemoglobin [Daphnia pulex]
+-LTPQQIKEVQRTWASMRSDRNSIVSAIFIELFRENPRSQKYFAKFaSLPleslTSNTDFNQQVALVANRLDTIISAMGDKLQLlgnINYMRYSHEQriysPRNAVRDRFEDFGRLLLDTLIAK---GIAGDDLDSWKSVLKIFIDGIA----
+>gi|56753437|gb|AAW24922.1| SJCHGC09035 protein [Schistosoma japonicum]
+-INDEQLLLLQSSWSIVKQHIEKIGVITFLGIFEQHSDFRDAFTEFRKrkfvdVKHDPAMQVHGLRVLSIVDKMITRLPktdDIELKLMTIGSKHC-RYVPTIGLISSVSDQLWGAIEPVLKeeGSWSDELAVTWKTVLDYLTKT------
+>gi|332532408|ref|ZP_08408286.1| hypothetical protein PH505_af00140 [Pseudoalteromonas haloplanktis ANT/505]gi|332038051|gb|EGI74498.1| hypothetical protein PH505_af00140 [Pseudoalteromonas haloplanktis ANT/505]
+------QSALLNNLTIIKPNFHAFTAKFHSKLAQSSIEMNYP--------TALQFNEKSFTLFCVLERIVKHLDKPASVAPFLAHHlmYLKKSGASHSDIALLSNAFYETLEEHLGKHFTTESQLAWKKALRYF---------
+>gi|308480175|ref|XP_003102295.1| CRE-GLB-30 protein [Caenorhabditis remanei]gi|308262221|gb|EFP06174.1| CRE-GLB-30 protein [Caenorhabditis remanei]
+HLTPIDREILNKSWAIVSKDMQQVAVNIFQMIFEQAPDAKLMFSFMmkDYkeDKKSNEFIFHAVRFLQVIESTMTHLDDPSqldAVFLNLGKIHAkheEQLGFSAHYWSVFKECVLFHFRKAMKahNKFSkhkemsfAEIDSaiiLWREVLRFIIDRMKVGY-
+>gi|311279880|ref|YP_003942111.1| hypothetical protein Entcl_2577 [Enterobacter cloacae SCF1]gi|308749075|gb|ADO48827.1| hypothetical protein Entcl_2577 [Enterobacter cloacae SCF1]
+-------ELFNNSYARILPgdKGDRFFTHFYTLFTKSTDDETSAH------------svarrLEKQKIiyktf-FYmlsvanth-------IVA---DYLVKITRESNpQNLNLPPSAYALWRRAVLQTVRDLD-PECDEEIITAWAIVLAPGLEFMRR---
+>gi|94501577|ref|ZP_01308094.1| hypothetical protein RED65_08344 [Oceanobacter sp. RED65]gi|94426260|gb|EAT11251.1| hypothetical protein RED65_08344 [Oceanobacter sp. RED65]
+-------DLVFQSFGRSC-NNPAFFEDFYDNFMSKSDQIRAMFKQT-------NMEAQRGLlrggIMWLVMHARGMPD---NKIRALGESHSrKHMNIHPSHYNDWVDALMATLHKHD-PEFNDHMESVWRETIRPSIDLIKSMY-
+>gi|62990085|emb|CAI56311.1| intracellular haemoglobin [Alvinella pompejana]
+----DNIAAVR-------GDVSTHAMNIFVEYFKKFPQHQNAFADYKgKDPeslkSLPKFKTHTTKVVSKLLDIVEKASDSGalqSNCTTLAKMPQ-HKGLNQQQFADLGAVLVPYLQKALGGACD---SAAWEQAYN-----------
+>gi|150865287|ref|XP_001384437.2| hypothetical protein PICST_67553 [Scheffersomyces stipitis CBS 6054]gi|149386543|gb|ABN66408.2| hypothetical protein PICST_67553 [Scheffersomyces stipitis CBS 6054]
+-LTASEIKAIQTSWERLQSSNrkhkDHFTSRLYSNLVRSHPQFKTIFDDS------SVLKEHSTLFGEILSFIVLYKHDPEILNDFMYQFiHEnQRfANVTVLYLEPMGESLIDTFKQWLGDSvFTNEFESVWIKTYVFVANSL-----
+>gi|294659323|ref|XP_461690.2| DEHA2G03322p [Debaryomyces hansenii CBS767]gi|199433874|emb|CAG90138.2| DEHA2G03322p [Debaryomyces hansenii]
+-LSGEDIQKLTTCWSGLQANNkyhkDDFITRLFSNLVAANPKLRKVFHSE------SIIAEQSTLFGDLLSFTMLYLDDECTLNQCMNAFlREnPKfVIVGPEYLEPMGSALIVTFRQWLGQGkFNDQIQSLWVQVYLYIANCL-----
+>gi|82655305|emb|CAI26300.1| hemoglobin [Biomphalaria glabrata]
+-LSDNDREAIDSSWKKLRSGAggrRNAGIKLVQWMLRTIPNMRDRFNKFDAKqsdaalQRDPEFLAQVDRILGGVESLVNNVDDPVALKAAIDRLadaHLsFDPRVGLDYFGPLQTYIHDYIEEALGVGADSDEAKGWTDLFAAFNKVLKE---
+>gi|122733|sp|P06148.2|HBF1_URECA RecName: Full=Hemoglobin F-Igi|162545|gb|AAA30331.1| F-I globin precursor [Urechis caupo]
+-LTTAQIKAIQDHWFLNiKGCLQAAADSIFFKYLTAYPGDLAFFHKFSsVPlyglRSNPAYKAQTLTVINYLDKVVDALGGNAGALmKAKVPSHD-AMGITPKHFGQL----LKLVGGVFQEEFSadPTTVAAWGDAAGVLVAAM-----
+>gi|339250872|ref|XP_003374421.1| putative myoglobin [Trichinella spiralis]gi|164521930|gb|ABY60753.1| unknown [Trichinella spiralis]gi|316969271|gb|EFV53396.1| putative myoglobin [Trichinella spiralis]
+------CDLIKEQWAKIE-INNENGGELYKWFFTEKPEFATYFQLDNVNPaeiaKTERFQALGKAFLERVKKLVNVCDDEKKLKSEVTILkneHD-PRNVGLDQLKQVRPILVKFLQSKTG--LTDQQTSAWDEMLKKFEA-------
+>gi|91224749|ref|ZP_01260009.1| hypothetical protein V12G01_01110 [Vibrio alginolyticus 12G01]gi|91190295|gb|EAS76564.1| hypothetical protein V12G01_01110 [Vibrio alginolyticus 12G01]
+--------VFNDSYERCT-SDQEFFDLFYKNLWSKSANFRQKFDGI-------DMHQQVRMLRGSIVFFMMADTstEAHKMVEKYGKKHAsADIGIEPQDFDVWLESLLETVRQCD-SGYDADVETAWRTCFKTGLEVMKQEC-
+>gi|88813510|ref|ZP_01128744.1| hypothetical protein NB231_06775 [Nitrococcus mobilis Nb-231]gi|88789223|gb|EAR20356.1| hypothetical protein NB231_06775 [Nitrococcus mobilis Nb-231]
+--------LFNDSYERCIDnpNPPGFLQRFYKVFLSSSEEVAEKFKNT-------DFEKQTRVLKASLYYLMLScNGspEAMAHLRRIACLHSrKQLDIRPELYDLWLASLLQAAREYD-PRFDQQTETAWRQVLSHGIDFMKSRY-
+>gi|312095861|ref|XP_003148491.1| globin family protein [Loa loa]gi|307756344|gb|EFO15578.1| globin family protein [Loa loa]
+-LSKSQRITIENSWKRATKsNaREQVGIQLFGRILTARPEMKHLFGLQKIPEgrlkYDPRFRRHAIVFTKSFDYIVKNVAykeKLEQHFQALGERHTmlQGRGFNPEYWDTFSDCMRQTVS-LWGRDKDHKTTNTWQMLISFVLQNMK----
+>gi|339234991|ref|XP_003379050.1| putative globin [Trichinella spiralis]gi|316978322|gb|EFV61323.1| putative globin [Trichinella spiralis]
+-LTKSQRQNVVRSWEKV-PNKRALGEEIYIQIFMHKPMLKSLFPFRTVPvdqlRNNALFTRQAAIFADFIDCVVGYLaiDNG-NLIMELSERvgvnHAlmTSVNFDPEWWVLFANSVLDCIRQYCEPQficlpisrhITRKIMIAWRILLKEVVDRMSEAF-
+>gi|212642107|ref|NP_001129775.1| GLoBin family member (glb-18) [Caenorhabditis elegans]gi|193248121|emb|CAQ76478.1| C. elegans protein F52A8.4b, confirmed by transcript evidence [Caenorhabditis elegans]
+----YEKELLRRTWSDEFDNLYELGSAIYCYIFDHNPNCKQLFPFIsKYqgDewKESKEFRSQALKFVQTLAQVVKNIYHMERTESFLymvGQKHV-KfadRGFKHEYWDIFQDAMEFALEHRLS---------------------------
+>gi|221117199|ref|XP_002161790.1| PREDICTED: similar to globin X [Hydra magnipapillata]
+PLSHSDIYALQGTWLKVKARWFEICTIAFERWLVADPEIRTLFKGLpdDLHSkdlmKHNSLKKHACMIEKTLDQVLLILDKKKEFvntLIELGKLHY-RLGANHKYTKGLALSLQCAVCQEV--DIDISEESAWDSLFRFMLGLL-----
+>gi|325180197|emb|CCA14598.1| conserved hypothetical protein [Albugo laibachii Nc14]
+----------------------------------NAPELKPVFKT----------SKHARNvvlqhIVGGLRTMLAHDVHIER-VRALTRTHL-QFGVKMEYFDLLGQAVIFSMRHCSGSHWSSEIEEAWRRLYGHCSVIL-----
+>gi|29841203|gb|AAP06216.1| similar to trematode hemoglobin from Paramphistomum Epiclitum [Schistosoma japonicum]
+-VTQSQVDHlITELEPHVDteAHKLELGLKVYECFLKDRPEYICKFSRLqGLDAsnvaQSEGIKYYARTFVAAFVPMIQAAANKcelDKLCLEEAILHR-TRPVDEKIFQDSLPIFIKIFNNLI---KDQQNKETMSKILTYTFTMIGSQ--
+>gi|308506641|ref|XP_003115503.1| CRE-GLB-25 protein [Caenorhabditis remanei]gi|308256038|gb|EFO99990.1| CRE-GLB-25 protein [Caenorhabditis remanei]
+-----DFFTLKNWWKTVDRKRVEASGYMFSKYLNDFPENKNFYPKLkNVNaatvdmsCSDPGFESMALQYLKIFDDVITAVEekpgDVQTAcdrLSAVGKMHRQKvSGMTATQFQNMEEPFIQMVKYILSDRFNEKAEMLYRKFFQFCLKYLLEG--
+>gi|268552639|ref|XP_002634302.1| Hypothetical protein CBG17640 [Caenorhabditis briggsae]
+-LSSDEMQAVRDSWKRA--KEREIGKHILQALIERKPQFKDYFGIHvDEKKddvfSCREFQLQSHRIQNFLDTAVSSL-----GFCPIGNIHQMAYRIGQIHF-------------------------------------------
+>gi|339237741|ref|XP_003380425.1| putative globin [Trichinella spiralis]gi|316976730|gb|EFV59959.1| putative globin [Trichinella spiralis]
+-LNPKEVILTRNVWAALKeKHQHLVGMEIFRQIFNRRPDLKSLFGVSALDtemaLNSTRLHRHTMIFQDVIDILMVNISNVDVnIADSLIDLgaqHWvlTKRGFDPAYWLIFGDVLFDLVENvtrKLPSR--KRSTNAWRKTIAFMLDCMQIGY-
+>gi|319789164|ref|YP_004150797.1| hypothetical protein Theam_0183 [Thermovibrio ammonificans HB-1]gi|317113666|gb|ADU96156.1| hypothetical protein Theam_0183 [Thermovibrio ammonificans HB-1]
+-IREKDVQNLRFLGNILLPYKKEFADAFYDNLM-KFEDIKEYIPE-------EKLQRLKTTIQEWYEKLFsGKYDSEYlLYLLRIAKVHV-EEGIPPHYIIVamnfVSRFCTRRIaefFAKKAREFfehyrkeqdvvcdparaeilegfvleevfeRmEDLTRSLRKILALNEDVLVSYYV
+>gi|301061358|ref|ZP_07202138.1| conserved hypothetical protein [delta proteobacterium NaphS2]gi|300444535|gb|EFK08520.1| conserved hypothetical protein [delta proteobacterium NaphS2]
+-FTDQDEVLLKKMAELFMPIHDRFADDFYRYLQ-EDDYTAGYFRT-------DAaVNRRKETILQWLNEILtSKYDNRLlIKLVRIGKIHV-KIGLDGHYVNAamgfIRRYFQEHLNQVVSEPAKrEIMIETLDKALDISLDIMTSSYR
+>gi|336324532|ref|YP_004604499.1| hypothetical protein Flexsi_2317 [Flexistipes sinusarabici DSM 4947]gi|336108113|gb|AEI15931.1| hypothetical protein Flexsi_2317 [Flexistipes sinusarabici DSM 4947]
+-VKESDLKELGSIWEQMSKYSDEFTTDMSAFVV-KNFKLPETYST-------EITDEYKAMLGKLYERVLsGRFNNDYvSFLIKFSEFNL-AYSINQEMVNSlisyARSWIHEKIFQNIPDDFQrKGILMMFHKIMDITGDIIISTYY
+>gi|289549194|ref|YP_003474182.1| hypothetical protein Thal_1426 [Thermocrinis albus DSM 14484]gi|289182811|gb|ADC90055.1| conserved hypothetical protein [Thermocrinis albus DSM 14484]
+-WTAEDEENLRSLSHLVPSWVEEFLES---------------IRK-------DEhDERCFQSIREWLIATFsGPHDERYvRKIHNMLQEHL-KAGCTLHHLQVllssVREFLLDKLTAQLGYSHQrDSLFRSVEKTLDLSLSIMLLSQK
+>gi|238638045|gb|AAZ82851.2| Hypothetical protein B0361.4 [Caenorhabditis elegans]
+--------RIQQCFKAA---KPSIGDAIMKRAAASRAEMRTMLSKMN----EKQIECLGKQMFELITDAVENADKSEKVLTHARQLggtYAslCPLGFRPDLFAPLADAAIAECVKLDGVHKRCETLSAWSQLFSALFTGVRDGY-
+>gi|17509143|ref|NP_492188.1| GLoBin family member (glb-26) [Caenorhabditis elegans]gi|3880027|emb|CAA99921.1| C. elegans protein T22C1.2, confirmed by transcript evidence [Caenorhabditis elegans]
+-LNSYQKSIVRNAWRHMSQKGPsNCGSTITRRMMARKSTIGDILDR-------STLDYHNLQIVEFLQKVMQSLDEPDKIsklCQEIGQKHA-KYrrskGMKIDYWDKLGEAITETIREYQGWKIHRESLRAATVLVSYVVDQLRFGY-
+>gi|320170061|gb|EFW46960.1| predicted protein [Capsaspora owczarzaki ATCC 30864]
+------HAVMMATWKEATdaDSGERVLNGFFTRLQVNDPQASHIYETAD-----ARMRK--VIIWSAVTKILDCLENPRSLrkeLKPLAQSHA-HMGVTPQMIDAFGTSLCAVLKEVLQEKYTTEVDVVWRRCFRLFAAQ------
+>gi|320164492|gb|EFW41391.1| predicted protein [Capsaspora owczarzaki ATCC 30864]
+------HAVLHASWVKATegDNGDAVLTGFLVRLQSNNPQATLIYERAD-----PRMRK--VIIWTAVSKILDCMQNPRSLrkeLKPLGQSHA-KMGVTGPMLDSFGVALRAVLKDVLKARYTTETDMVWRRCYRLFSVQ------
+>gi|170573273|ref|XP_001892405.1| hypothetical protein Bm1_04635 [Brugia malayi]gi|158602064|gb|EDP38764.1| hypothetical protein Bm1_04635 [Brugia malayi]
+-LSEIQQELIRQSWQTISAKlevnEQNFGFFVYRRVFEHNPLLKRAFHVeeYDLLDSIP--REHSifrqmRLFTNLIALAVRHDNELETeIAPAVFRYGQRHYKFAAEYFNegtvrLFCSQVVCAVADLLEVDIDPACMEAWIDMMRFIGCRL-----
+>gi|157278270|ref|NP_001098237.1| cytoglobin-1 [Oryzias latipes]gi|82122237|sp|Q575T0.1|CYGB1_ORYLA RecName: Full=Cytoglobin-1gi|62176936|emb|CAG25610.1| cytoglobin-1 [Oryzias latipes]
+PLTDKERVMIQDSWAKVYQNCDDAGVAILVRLFVNFPSSKQYFSQFkHIeDaeelEKSSQLRKHARRVMNAINTLVESLDNsdkVSSVLNAVGKAHA-IrHKVDPVYFKILSGVILEVLGEAYPQVMTAEVASAWTNLLAILCCSIKAVYE
+>gi|147903264|ref|NP_001089155.1| globin Y [Xenopus laevis]gi|62176948|emb|CAG25618.1| globin Y [Xenopus laevis]
+DLTAADIENINEIWCKIYANPEESGKTVVIRLFTTYPQTKVYFKNLkNIaTleemQVNPGIRAHGKRVMGALNQVIQNLNdwEvVSSALTHLAQRHQ-DvHKVGVNNFQLL-fLVILTIFKEALGADFTPEHCKSWEKLFSITYNFLDSCYT
+>gi|45360951|ref|NP_988859.1| hemoglobin subunit beta-1 [Xenopus (Silurana) tropicalis]gi|122524|sp|P07429.2|HBB1_XENTR RecName: Full=Hemoglobin subunit beta-1; AltName: Full=Beta-1-globin; AltName: Full=Hemoglobin beta-1 chaingi|213983|gb|AAA49659.1| beta globin protein [Xenopus (Silurana) tropicalis]gi|56971743|gb|AAH88022.1| beta globin [Xenopus (Silurana) tropicalis]
+NLTAKERQLITGTWSKI--CAKTLGKQALGSMLYTYPWTQRYFSSFgNLsSieaiFHNAAVATHGEKVLTSIGEAIKHMDDIKGYYAQLSKYHS-EtLHVDPYNFKRFCSCTIISMAQTLQEDFTPELQAAFEKLFAAIADALGKGYH
+>gi|4929993|pdb|1CH4|A Chain A, Module-Substituted Chimera Hemoglobin Beta-Alpha (F133v)gi|4929994|pdb|1CH4|B Chain B, Module-Substituted Chimera Hemoglobin Beta-Alpha (F133v)gi|4929995|pdb|1CH4|C Chain C, Module-Substituted Chimera Hemoglobin Beta-Alpha (F133v)gi|4929996|pdb|1CH4|D Chain D, Module-Substituted Chimera Hemoglobin Beta-Alpha (F133v)
+HLTPEEKSAVTALWGKV--NVDEVGGEALGRLLVVYPWTQRFFESFgDLsTpdavMGNPKVKAHGKKVLGAFSDGLAHLDNLKGTFATLSELHC-DkLRVDPVNFKLLSHCLLVTLAAHLPAEFTPAVHASLDKVLASVSTVLTSKYR
+>gi|110825993|sp|P02209.2|GLB3_MYXGL RecName: Full=Globin-3; AltName: Full=Hemoglobin IIIgi|5924295|gb|AAD56539.1|AF184047_1 hemoglobin [Myxine glutinosa]
+-LSEGDKKAIRESWPQIYKNFEQNSLAVLLEFLKKFPKAQDSFPKFs--aKkshlEQDPAVKLQAEVIINAVNHTIGLMDKEAAmkkYLKDLSTKHS-TeFQVNPDMFKELSAVFVSTM-GGK---------AAYEKLFSIIATLLRSTY-
+>gi|118572332|sp|P0C227.1|GLB_NERAL RecName: Full=Globin; AltName: Full=Myoglobin
+-LSADQKAAIKSSWAAFAADITGNGSNVLVQFFKDYPGDQSYFKKFdGKKpdelKGDAQLATHASQVFGSLNNMIDSMDDPDKmvgLLCKNASDHI-PRGVRQQQYKELFSTLMNYMQSLpG-ANVAGDTKAAWDKALNAMANIIDAEQK
+>gi|154818214|gb|ABS87592.1| hemoglobin III [Phacoides pectinatus]gi|197320684|gb|ACH68470.1| hemoglobin III [Phacoides pectinatus]
+-LTGPQKAALKSSWSRFMDNAVTNGTNFYMDLFKAYPDTLTPFKSlFeDVSfnqmTDHPTMKAQALVFCNGMSSFVDNLDDHEVlvvLLQKMAKLHF-NRGIRIKELRDGYGVLLRYLED-H-CHVEGSTKNAWEDFIAYICRVQGDFMK
+>gi|121267|sp|P29287.1|GLB_BURLE RecName: Full=Globin; AltName: Full=Myoglobin
+-LSGAEADLLAKSWAPVFANKDANGDNFLIALFEAFPDSANFFGDFkGKSiadiRASPKLRSVSSRIVNRLNDFVGNAADAGKmagMLDQFSKEHV-GFGVGSQQFENVRSMFPGFVSS-V-AAPPAGADAAWGKLFGLIIDALKKAGK
+>gi|327360040|emb|CBL51562.1| globin [Branchiostoma floridae]
+---------LQKSWKTVARKSDQAARTVFLRMLQDNPGLRQKWPRIsLLtEeeiPTSPYIKFLGERIFDCLDYIIDNLGDLDHVISELTKLGR-QhSDMNV----------------------------------------------
+>gi|156390503|ref|XP_001635310.1| predicted protein [Nematostella vectensis]gi|156222402|gb|EDO43247.1| predicted protein [Nematostella vectensis]
+PLDAKETQLVRKTWAILGDRQVEVGKSLFLRFFEEHPTSKDLFPEFrNISnekiAESPALYGHARRVMKSVDNAVASieNVQvYSAYLYELGTRHQ-Tr-QLSEEQLKFMGGAFLFAMRLHLRKEWSRATSKAWEKIFSFMADAMMRGC-
+>gi|198424683|ref|XP_002119119.1| PREDICTED: hypothetical protein [Ciona intestinalis]
+PFTDEELKLLRNSWDEVKKLGmk-EVGLHIFTGLLNAAPSLRTLFYTIdLPdEeeltidvmrenkkvvahatRIAN-----------AISKFIKFLDQPEElekLLTSLGESHA-RRQVDPESFEYVAPVILSVIGGHLKLPSNSPTLQAWVKAYGVLRNGIVSAME
+>gi|316933010|ref|YP_004107992.1| globin [Rhodopseudomonas palustris DX-1]gi|315600724|gb|ADU43259.1| globin [Rhodopseudomonas palustris DX-1]
+SplatFSPADIHRVRTSFDLMWPRSTEMADQFYARLFEIAPDSRTLFRS--------DMTRMKDKFIQTLAVLVGSLDNLTGlyaVAGKLAVDHV-RYGVRPDHYAPVGEALLWSLGRQLAGFWDDDVEQSWRKVYAVISARMIGAAY
+>gi|37521141|ref|NP_924518.1| flavohemoprotein [Gloeobacter violaceus PCC 7421]gi|35212137|dbj|BAC89513.1| glr1572 [Gloeobacter violaceus PCC 7421]
+LmevtAMALQVKLLEQSFEGVKPNAHAFAASFYDNLFSDFPQTQALFAHS-------DMQAQQQKLLASLVLVVENLRQPQVlstALQDLGNRHA-GYGIVPEHYPMVGTSLLKTFETYLGDAWTPEVKQAWVDAYGAITGLMLTGAE
+>gi|307192580|gb|EFN75768.1| Globin [Harpegnathos saltator]
+-MSEKQKKLVQNTWAIVRKDDVSSGLAIMNAFFTRYPEYQDQFKSFkGIPfeelSKNKKFQAHCVSVIAGLSNVIDHIHNpelMEASLINLAERHK-NRGQTREHFQNLRYVLEDLIPSVFGKQYTQEVQEAWKKMFDYLFLILCQ---
+>gi|195054581|ref|XP_001994203.1| GH13816 [Drosophila grimshawi]gi|193896073|gb|EDV94939.1| GH13816 [Drosophila grimshawi]
+-MNNDEVQMIKKTWEIPVATPTDSGAAILTAFFNRHPSSLEKFP-FrDVPlaelPTNSRFRAHASRIIRVFDDSIRVLgqDDaeekLEEIWTKVAVNHI-PRQISKESYNNLKEVVLEVLTAAC--NLNESQVQSWTKLVNHVYDILFKSIN
+>gi|289741211|gb|ADD19353.1| hemoglobin-like flavoprotein [Glossina morsitans morsitans]
+-MNSDEVYEIKRTWEIPATTPTESGVAILIRFFTKYPSNLQKFSTFkDMTldelKNNPRFKAHANRIMKVFDDSIKTLDDncshLEEIWTKIAQSHF-NRQIEKQSFNELKEVILEVLVAAC--NLNDQQTEIWLKLLDFVYEIIFKTID
+>gi|83754459|pdb|2C0K|A Chain A, The Structure Of Hemoglobin From The Botfly Gasterophilus Intestinalisgi|83754460|pdb|2C0K|B Chain B, The Structure Of Hemoglobin From The Botfly Gasterophilus Intestinalisgi|3885490|gb|AAC80435.1| hemoglobin [Gasterophilus intestinalis]
+-MNSEEVNDIKRTWEVVAAKMTEAGVEMLKRYFKKYPHNLNHFPWFkEIPfddlPENARFKTHGTRILRQVDEGVKALsvDFgdkkFDDVWKKLAQTHH-EKKVERRSYNELKDIIIEVVCSCV--KLNEKQVHAYHKFFDRAYDIAFAEMA
+>gi|327360028|emb|CBL51556.1| globin [Branchiostoma floridae]
+SLSAADKKLVQESWDKVSkPSFADAGERVFLKLFRRNESTKAHFKKFkDIPsdqlAGQAVVRDHGEKVCKVLDDFIKGLDGsGDEAVKKVGRMHK-GLGMSNEQIDQMKGAIIEVLADA-G--F-GDAnyKGAWGKLWDRFMAVHR----
+>gi|336310636|ref|ZP_08565608.1| globin [Shewanella sp. HN-41]gi|335866366|gb|EGM71357.1| globin [Shewanella sp. HN-41]
+GLTEIEKEAITSSFSLINHQEQHFATIFYDCLFDMAPLIKPMFKRDrKLi----------EEHFYMIFCAAVDNIHHLDTirtILLELGARHR-NYGVKVLHFPIVKSALILAIQHELKGQSNASIENAWSHYYDVLAAIILEG--
+>gi|2155297|gb|AAB58934.1| globin XII [Chironomus thummi thummi]
+QFVEDQTEIIRASWNQVKH----NEVDILYSIFAANPDIQARFPQFaGKDlktlKSSSSFASHAGRIVGFFSKITELNPNdsgvsaAKTLINEVAASHK-GRGVSKAQFNAFRVSLTAYLADHV--TWNDNVAQAWEKGLDNVYFVLFSAF-
+>gi|2506460|sp|P02221.2|GLB1_CHITH RecName: Full=Globin CTT-I/CTT-IA; AltName: Full=Erythrocruorin; Flags: Precursorgi|540255|gb|AAA80189.1| hemoglobin I precursor [Chironomus thummi]
+GPSGDQIAAAKASWNTVKN----NQVDILYAVFKANPDIQTAFSQFaGKDldsiKGTPDFSKHAGRVVGLFSEVMDLLGNdantptILAKAKDFGKSHK-SR-ASPAQLDNFRKSLVVYLKGAT--KWDSAVESSWAPVLDFVFSTLKNEL-
+>gi|1805725|emb|CAA71646.1| globin Cpa 3-2 [Chironomus pallidivittatus]
+ALTADQISTVQASFDKVKG----DSVGILYAVFKADPSIQTKFTQFaGKDletiKGTTPFEAHANRIVGFFSKIISEL--pnIDADVDAFVATHK-PRSVTHDQLNNFRAGFVGYMKAHT--DYAGA-ESAWGATLDTFFGAIFAKM-
+>gi|291224997|ref|XP_002732490.1| PREDICTED: neuroglobin-like protein-like [Saccoglossus kowalevskii]
+-LTPSEAIAIQSTWLFVYEDKEENGVELFVKLFTEHPDYQALFGYLeGIvGieniKNVPFLRVHASHVLIYLNTMLESLNDgtiLVELLKTLGYTHV-GLNLTPEHFDALGPILISLLQEKGGDSFTPFAEKAWLKGWGVmksvIVGALENGYQ
+>gi|15080667|dbj|BAB62534.1| hemoglobin chain [Moina macrocopa]gi|15080672|dbj|BAB62537.1| hemoglobin chain [Moina macrocopa]
+-LSASDRAIIRKTWEQARKDG-DVAPQILFRFVKAHPEYQKLFRSFaSVPqdelLGNGNFLAQAYTILAGLNVVIQSLGSrelLANQLNALGGAHF-SRGATPVMFDEFGAIAMDVLAEELGSAFNAEAKAAWTTAVRGLNAGIVKTL-
+>gi|4589708|dbj|BAA76873.1| hemoglobin [Daphnia magna]gi|4589710|dbj|BAA76874.1| hemoglobin [Daphnia magna]gi|322229321|dbj|BAJ72728.1| 2-domain hemoglobin [Daphnia magna]
+-LSANERSLIRKTWDQAKKDG-DVAPQVLFRFIKAHPEYQKKFSKFaDVPqselLTNGNFLAQAYTILAGLNVVIQSLSSqelLANQLNVLGGAHQ-PRGVTPAMFEEFGVIVEQVLEEELGNGFSAEARQAWKHGIHALVAGVSKTL-
+>gi|321477133|gb|EFX88092.1| hemoglobin [Daphnia pulex]
+-LSTQERAIIRTTWNKARKDG-DVAPKLLFKFLKAYPEYQKKFSKFaDVPqsnlLSNGNFLAQAYTILAGLNVIVQSLSSqelMANQLNALGGAHQ-PRGVTTTILElkEFGVILIQVLEEEIGSAMTIDARQAWKNGIHELIGGLSQTL-
+>gi|121268|sp|P02214.1|GLB_BUSCA RecName: Full=Globin; AltName: Full=Myoglobin
+-LDGAQKTALKESWKVLGADGPtmmKNGSLLFGLLFKTYPDTKKHFKHFdDATfaamDTTGVGKAHGVAVFSGLGSMICSIDDddcVNGLAKKLSRNHL-ARGVSAADFKLLEAVFKEFLDEATQRKATDAQKDADGALLTMLIKA------
+>gi|162453361|ref|YP_001615728.1| flavohemoprotein [Sorangium cellulosum 'So ce 56']gi|161163943|emb|CAN95248.1| putative flavohemoprotein [Sorangium cellulosum 'So ce 56']
+------VGLLRESFELVIERAPNLTHRFYGILFSRYPQVKPLFGRNSQe--------QQEKMLTEALAAVIDRLEDASwleEKLMAMGAKHV-DYGVTDAMYPWVADALISAMAEVAAAEWSPAHQEAWTEALGAIASLMQRGAR
+>gi|34330143|dbj|BAC82446.1| hemoglobin, chain IIB [Macrobdella decora]
+--SIEDIRDVQHDWKFVWGDAsldarVVFGKAVFKKLQELDGSVVEPLKVVHVeDp-DSDEFKNHVLRVLNGLDNLINLFDEqgvLVSQLDHLAKQHK-ErPGVNASHFRAFAKAFLEVLEVS-GSCPNL---DAWRGCLYGLGVRITAQ--
+>gi|61680653|pdb|1YHU|D Chain D, Crystal Structure Of Riftia Pachyptila C1 Hemoglobin Reveals Novel Assembly Of 24 Subunits.gi|61680657|pdb|1YHU|H Chain H, Crystal Structure Of Riftia Pachyptila C1 Hemoglobin Reveals Novel Assembly Of 24 Subunits.gi|61680661|pdb|1YHU|L Chain L, Crystal Structure Of Riftia Pachyptila C1 Hemoglobin Reveals Novel Assembly Of 24 Subunits.gi|61680665|pdb|1YHU|P Chain P, Crystal Structure Of Riftia Pachyptila C1 Hemoglobin Reveals Novel Assembly Of 24 Subunits.gi|61680669|pdb|1YHU|T Chain T, Crystal Structure Of Riftia Pachyptila C1 Hemoglobin Reveals Novel Assembly Of 24 Subunits.gi|61680673|pdb|1YHU|X Chain X, Crystal Structure Of Riftia Pachyptila C1 Hemoglobin Reveals Novel Assembly Of 24 Subunits
+--TTEDRREMQLMWGNVWSAQftgrrIAIAQAVFKDLFANVPDAVGLFGAVKGdEv-NSNEFKAHCIRVVNGLDSSIGLLSDpatLNEQLSHLATQHK-ArSGVTKGGFSAIAQSFLRVMPQV-ASCFNP---DAWSRCFNRITTGMTEP--
+>gi|125661837|gb|ABN49927.1| hemoglobin [Myrica gale]
+-FSEDQEALVVKSWTVMKLNAGELALKFFLKIFEIAPTAQKLFSYLkDS-nvplERNSKLKSHATNVFMMTCEsAVQLrkAGKvtvTESSLKRIGDVHF-KLQVVDEHYEVTRFALLETIKEAVPEMWSPEMKNAWGEAYDQLVSAIKTEMK
+>gi|229500|prf||742505A hemoglobin zeta
+---------LKNAWGKISTDTTEIGTEALERLHLSFPTQK-LLSH-----GFAHVKAHGSKVAEALTSILGPVDSFKNAVGALSEVHA-Ki-------LRALSHCLGKSLZAHLYAZFTIGVBASLDKFLASVSTVLZSKYR
+>gi|255642835|gb|ACU21601.1| extracellular tetra-domain globin [Branchipolynoe seepensis]
+-VSDAQKAAIKASWAGA--DLQAAGTGFYVHLAAEAPAVYANF---NLg--ADPhgaKSQEQGLRVMKFVNQCVNSIDNMAIvqaKIDALAHRHM-SYNVKKSDFVPAKPCFLGALADALGGKFNADARAAWAGFYDIIAAGLST---
+>gi|326383372|ref|ZP_08205059.1| oxidoreductase FAD/NAD(P)-binding domain-containing protein [Gordonia neofelifaecis NRRL B-59395]gi|326197778|gb|EGD54965.1| oxidoreductase FAD/NAD(P)-binding domain-containing protein [Gordonia neofelifaecis NRRL B-59395]
+-MSEPEQPILA---RTRVLLAgdpDRFARNVFARMFAMRPSLREFFPA-E-------MGSLRSSFVDVLDHVLEAIEAPDghgelvEFLAQLGRDHR--kYGVVSEHYWLMYEALMSEFQFAFGRRWTPEVEETVGQAMLLTTGVMRG---
+>gi|115913844|ref|XP_001199205.1| PREDICTED: similar to polymeric globin [Strongylocentrotus purpuratus]gi|115965676|ref|XP_001197673.1| PREDICTED: similar to polymeric globin [Strongylocentrotus purpuratus]
+PLTSAQKELVKRTWQVLAPNPAKHGAVMFAKLLTRHPNVGKLFP-FgkeDLSyeqlLKHAQVQAHGKKVMEKVGDAVDGLDDLDLlvpILKELGGRHV-GYGVNKQLFEPVGEVLLETIKEALGDTFNEELRLAWTAVFKIISDTMSEPLN
+>gi|121399|sp|P23216.1|GLBP1_GLYDI RecName: Full=Globin, major polymeric component P1gi|9347|emb|CAA37995.1| globin P1 [Glycera dibranchiata]
+HLTADQVAALKASWPEVSagDGGAQLGLEMFTKYFHENPQMMFIFG-YsGR--TEalkhssk--LQHHGKVIIDQIGKAVAEMDNakqMAGTLHALGVRHK-GFgd-IRAEFFPALGMCLLDAMEEKVPG-----lNRTLWAAAYREISDACIAG--
+>gi|148908091|gb|ABR17163.1| unknown [Picea sitchensis]
+-FSEEQEALVKKSWNAMKPNAPQLGFKFFLRVFEIAPSAKRLFSFLqD-SdvpiEKNPKLKAHGLIVFKmTCESAVQLREKgtvtfSESNAKDMGKLHL-TYGVLDEHFDVVKFCLLETIKDAVPDIWSPEMKIAWDEAYTQLAEAIKSEMK
+>gi|170031919|ref|XP_001843831.1| globin 2 [Culex quinquefasciatus]gi|167871230|gb|EDS34613.1| globin 2 [Culex quinquefasciatus]
+-LTGKQKITLLSAWGLIKQDLDLHGRNIMLLIFREHPHFIPYFD-FsADpNntslSENRALQAHSLNLIMALGALIEYgLKTpkmFECTLAKLVKNHK-TRRVTSQDVKMFGEVILMYFAQVLGRQSASSLPTAFNRLIEQIAEAFEAA--
+>gi|229366652|gb|ACQ58306.1| Hemoglobin subunit alpha-D [Anoplopoma fimbria]
+MLSKKQKELIAEIWGRLTPVADDIGADALHRMFASYPGTKTYFSHLDIsP-RSAHMLSHGKKIVLANPARlpaPDRPDKLQGALARTSVRHQ-T---------------------------------------------------
+>gi|260827190|ref|XP_002608548.1| hypothetical protein BRAFLDRAFT_98914 [Branchiostoma floridae]gi|229293899|gb|EEN64558.1| hypothetical protein BRAFLDRAFT_98914 [Branchiostoma floridae]
+-LTPTQVRLLQQTWKVILLHKKQNGFLIFKILFTDYPMTKKLFKGIdKVDpeqyEKTTSMRAHVTRFINSFDSFMECLEDPEalkSLLYDTGKAHL-RHNTKPEHFDDLEVVMMKSLKAVLGLKFTESVEEAWRTAFAFFVVHLK----
+>gi|340356646|ref|ZP_08679288.1| nitric oxide dioxygenase [Sporosarcina newyorkensis 2681]gi|339620573|gb|EGQ25142.1| nitric oxide dioxygenase [Sporosarcina newyorkensis 2681]
+MLDQKTIHIIKSTVPVLEQHGKTITTVFYRNMFEAHPELLDIFN---H--ANQSQGRQQTALANTVYAAAQHIDDLGailPAVVQIAHKHV-SLGILPEHYPIVGEYLLGAIKEVLGDAATSEIIDAWAAAYGVIADAFIGleakMYD
+>gi|314933259|ref|ZP_07840624.1| putative flavohemoprotein [Staphylococcus caprae C87]gi|313653409|gb|EFS17166.1| putative flavohemoprotein [Staphylococcus caprae C87]
+MLTEKEKSIIKETVPVLQDKGEIITSHFYKRMFKQHPELKNMFN---Q--TNQQKGLQSTALAQSVLAAAVNIEHLEnimPVVKEIAYKHC-ALQVPPAGYDIVGENLIEAIKEVVGLDDDHEIIKTWKKAYQDIADVFISveqdIYS
+>gi|8101728|gb|AAF72633.1|AF258616_1 hemoglobin P polymer precursor [Parartemia zietziana]
+-LSEREVAVVKQTWNLVKPDLMGVGMRIFRSLFETFPAYRVVFPKFgDVPlnqlADIPAVGKHAIAVTAKLDQLIQTLDEPANlalLARQLGEDHI-VLQVNRPMFKNFGTVLVRLLENDLGQKFSNYASKAWHKAYNVITEYIEE---
+>gi|156405084|ref|XP_001640562.1| predicted protein [Nematostella vectensis]gi|156227697|gb|EDO48499.1| predicted protein [Nematostella vectensis]
+-LTERQIKLVQDTWRLLIPSQKKTAMIFYLKLFTLDPIFKEVFS-FHTeNegqlEQDERFLFQSRKFMEMINSAVDRLNDISllvMILKSLGEVHW-TkFKIKPEYYEPVGKALIYSISKGLGSLFNDEIGEAWQAMYDLMSGAMISGTK
+>gi|974720|dbj|BAA09964.1| two-domain chain of the polymeric hemoglobin (intracellular) [Barbatia lima]
+---SDNKSLIRETWEMIAGD-RKNGVELMALLFEMAPESKKEFRRLgDISpeniPNNRKLNGHGITLWYALTSFVDQLDNkndLEDLCRKFAVNHV-SRGVLNVKFGWIKEPLAELLRRKCGSRCEDRHINAWWKLIDVICAILEE---
+>gi|334704356|ref|ZP_08520222.1| globin [Aeromonas caviae Ae398]
+-MTFEQIELVQKAWGRVSALNNSYVQEVYEELFRLSPELRALFPPYqELPv----------AKVSDTLNTVITSLSQLDAlgfIIRDLGRRHQ-RFNVQPHQFALLKQALTQVLARRLGSGFTPALHS------------------
+>gi|255722886|ref|XP_002546377.1| conserved hypothetical protein [Candida tropicalis MYA-3404]gi|240130894|gb|EER30456.1| conserved hypothetical protein [Candida tropicalis MYA-3404]
+PLTARQIEIIHQSIPILESLDIRLGEKFYKRVVRRYDNLKPYFN---ETntklLRQPRAFAY------TILMYAKYIEDLSplqELLNRIISRHI-GLQVKPEQYPLLGEVFIETMADLFPPGvADDEFKEAWATAYGNLSNMLieaeRVEYA
+>gi|62183620|gb|AAX73248.1| myoglobin [Ophelia bicornis]
+---------VADTWATVSADSHKHGVAFFLDFFAAHPNYQDFFPKLeGKSgsalKGDPNMQAQADAVMAAIGQCVAAGGDkgaLAGPLGALAKTHL-PRGIKSAYFKDAFDSFVAYLGKS-GV-----STDGWPAAIDTIMEVLTAELK
+>gi|333988983|ref|YP_004521597.1| monooxygenase [Mycobacterium sp. JDM601]gi|333484951|gb|AEF34343.1| monooxygenase [Mycobacterium sp. JDM601]
+-----ALQALRNAFAVADGGGDSFVGRLFTRWFGTDPSARDLFPA-DL-------TAIRVAFAQAMNWVYGELvaQraqEPVAFLAQLGRDHR--kYGVTQHHYGTMGRVLYAALRDELAEDWTAAVEDAARESLNLIIGVMGGA--
+>gi|221117935|ref|XP_002162062.1| PREDICTED: similar to neuroglobin [Hydra magnipapillata]gi|221123757|ref|XP_002164731.1| PREDICTED: similar to neuroglobin [Hydra magnipapillata]
+PLSGKEIETLKKSWTTAKQFWNEICTCAFSRWFSTYPEIQSKFGVYgDNlTmnevLASESLCIHIRKSVELIEIIIKKVDErheLSEYLIELGKLHH-KFGAEQKYATALGSSFVFAISQIC-PNIDMITEGAWDSLFKYIVTHIKLGIR
+>gi|321477127|gb|EFX88086.1| hypothetical protein DAPPUDRAFT_96311 [Daphnia pulex]
+-LTPHQIRDVQTSWENLRSDRNSLVSAIFIKIFKETPRAQKHFTKFaNVAvdslSGNADYEKQIALVADRLDTIISAMNDKlqlLGNINYMRYSHqP-PRAIPRERFEDFARVLLDVLVSK---GVSADDMDSWKGVLTVFVNGVS----
+>gi|322229318|dbj|BAJ72725.1| 2-domain hemoglobin [Daphnia magna]
+-LTPHQIQDVQRSWENVRNGRNALISSIFVKLFKETPRIQKHFAKFgSVAvdslAGNAEYEKQIALVADRLDTMISAMDDKlqlLGNINYMRYTHT-ERGIPRAPWEDFSRLLLDVLGSK---GVSTDDLDSWKGVLAVFVNGVS----
+>gi|255080446|ref|XP_002503803.1| predicted protein [Micromonas sp. RCC299]gi|226519070|gb|ACO65061.1| predicted protein [Micromonas sp. RCC299]
+-WTERKRLVIQSSWAALLsahgNDRMATGSKIFRKLFTGDTAVLRLFP-FrH-QartlFVSAPFKLHAKLFVDTMTELIANLHDLEKverDVRELGKRHL-TYGVQPAHFDAMGEALIAVLDEscHHPSDevtLDKEERDAWLGFWGFIAKET-----
+>gi|198419488|ref|XP_002119301.1| PREDICTED: hypothetical protein [Ciona intestinalis]
+PLTEIEIEGVQESWEKVSSgGPKTTGLILMEKLFNTYPASIAVFSHLgIPsKpdgaitvsdlASIGGVSNHAVSLASRIGKLVGLLNNeteLKESSTEVGRIHV-KYGVTSEHVDLLGSVLLSVISENQGLSNTSELIGWWSKTWNIIGNYVKTGL-
+>gi|154252910|ref|YP_001413734.1| globin [Parvibaculum lavamentivorans DS-1]gi|154156860|gb|ABS64077.1| globin [Parvibaculum lavamentivorans DS-1]
+--TEQEKQLIEKSIERVADVAGDPASHVYARLFAQQPEMEAMFV---LD-TDGNVRGHM--LSEALDCVFDFLGPRAYapvLIQSELTNHS-NLGVPPAVFATFFRVVMETFRELLGAEWTAETDAAWAKLLGEFDTTIAEHAE
+>gi|119474700|ref|ZP_01615053.1| hypothetical protein GP2143_12811 [marine gamma proteobacterium HTCC2143]gi|119450903|gb|EAW32136.1| hypothetical protein GP2143_12811 [marine gamma proteobacterium HTCC2143]
+--DQ-----IVSCLEQVGDRCKDPTALVYERLFSANPEMKPLFI---MD-GNDAVKGQM--LFQVLDGIIDFVGDRRYaetLFLSELINHD-IIGVPPRVFSTFFRTIMETFRDIMGADWTAEFDQAWAQLLSDLDEMIREKAE
+>gi|67463861|pdb|1X3K|A Chain A, Crystal Structure Of A Hemoglobin Component (Ta-V) From Tokunagayusurika Akamusigi|220702318|pdb|2ZWJ|A Chain A, Crystal Structure Of A Hemoglobin Component V From Propsilocerus Akamusi (Ph4.6 Coordinates)gi|288562877|pdb|3A5A|A Chain A, Crystal Structure Of A Hemoglobin Component V From Propsilocerus Akamusi (Ph5.6 Coordinates)gi|288562878|pdb|3A5B|A Chain A, Crystal Structure Of A Hemoglobin Component V From Propsilocerus Akamusi (Ph6.5 Coordinates)gi|288562879|pdb|3A5G|A Chain A, Crystal Structure Of A Hemoglobin Component V From Propsilocerus Akamusi (Ph7.0 Coordinates)gi|291463432|pdb|3A9M|A Chain A, Crystal Structure Of A Hemoglobin Component V From Propsilocerus Akamusi (Ph9.0 Coordinates)gi|330689360|pdb|3ARJ|A Chain A, Cl- Binding Hemoglobin Component V Form Propsilocerus Akamusi Under 500 Mm Nacl At Ph 4.6gi|330689361|pdb|3ARK|A Chain A, Cl- Binding Hemoglobin Component V Form Propsilocerus Akamusi Under 1 M Nacl At Ph 4.6gi|330689362|pdb|3ARL|A Chain A, Cl- Binding Hemoglobin Component V Form Propsilocerus Akamusi Under 500 Mm Nacl At Ph 5.5gi|409322|gb|AAB27065.1| hemoglobin component V [Tokunagayusurika akamusi=midges, 4th-instar larva, Peptide, 152 aa]
+-LSDSEEKLVRDAWAPIHGDLQGTANTVFYNYLKKYPSNQDKFETLkGHPldevKDTANFKLIAGRIFTIFDNCVKNVGNDKgfqKVIADMSGPHV-ARPITHGSYNDLRGVIYDSM--HL----DSTHGAAWNKMMDNFF--------
+>gi|290462305|gb|ADD24200.1| Non-symbiotic hemoglobin 2 [Lepeophtheirus salmonis]
+----------------------------------------------------KKLKRHGGIVMKALGKLVGFLETgkiiaIVNTIKGIANSHS-KRGVLVQQFTPICDILLKYLGEAFGDQLSNEGTATWKKFLDIFVSVINEAYD
+>gi|260950945|ref|XP_002619769.1| hypothetical protein CLUG_00928 [Clavispora lusitaniae ATCC 42720]gi|238847341|gb|EEQ36805.1| hypothetical protein CLUG_00928 [Clavispora lusitaniae ATCC 42720]
+-FSPKEIALVRYTWNRMLVDDAEPKIslpGAFARpkkmaqssLHASSTFCTQLYSNLlSMDpeleQAFPSLRHQAVSMAGVMSLAVNSLDNLsslDAYLEQLGKRHS-RiLGIEPFQFEMMGEALVQTFVQRFGSKFTQQLEVLWIKFYMYLANTLL----
+>gi|254463661|ref|ZP_05077072.1| globin domain protein [Rhodobacterales bacterium Y4I]gi|206684569|gb|EDZ45051.1| globin domain protein [Rhodobacterales bacterium Y4I]
+-MTPQEVQHVQQSFAGVFARKADLAERFYVHLFTRLPQARGMFRG-NFvKqkamL------------TEMIAACVRNLDDpatLAELSARLVQDHA-HLDLGARESEAAKRALIAALRDVLGPALDPETETAWASAISRVAGTMARH--
+>gi|326434457|gb|EGD80027.1| hypothetical protein PTSG_10302 [Salpingoeca sp. ATCC 50818]
+------MKITQESWAMVEREIPNWTDIFYDKMFS-DPNIAKLFP-F--SagdfKTNEKFQTHTQKVRDTMHTAMTSIREFEklgPVLKKMGERHA-DYGVIPEHSVNFKEAFLHTLKTGYGDKWNEDLDDAWNQCVDALLEP------
+>gi|51773697|emb|CAH23231.1| hemoglobin [Biomphalaria glabrata]
+-VSDDDRRALQSSWSRLQsqaGNKQEAGIKLVTWLFDNVPNMRDQFSKFnAHsSdealRANNEFLRQVDVIVGGLDSLINNVDNSDNfqaAIERLVDVHL-HmsPSVGLEYFGPLQQNIRSYIQNALGVAADSAEARSWTNLFTAFNEFLA----
+>gi|196001585|ref|XP_002110660.1| predicted protein [Trichoplax adhaerens]gi|190586611|gb|EDV26664.1| predicted protein [Trichoplax adhaerens]
+-------------------------------------------------dlIKDPLVRSHGLRFMKAIETMLEIEFDSNGcifLFSAIGNRHC-SYGIEADYLDYVPQAFRFMLTKALGNNYTDKIASVWDEILSHIIKAMQDKVR
+>gi|50897143|dbj|BAD34605.1| hemoglobin III [Calyptogena nautilei]
+-VTIADVKNVQTSWNSIKDKWEtDHGLNFYTTLFDDVPEIKSAFVKAgNK--TDYQVKGQAVRFGRMVTEWIDNLDNEEAlvaKINGMCATHR-TRGItNVDLFEVALGELVKYIAGK--TSFTKAQRESWAVVNGCIIQTMRNYF-
+>gi|122733|sp|P06148.2|HBF1_URECA RecName: Full=Hemoglobin F-Igi|162545|gb|AAA30331.1| F-I globin precursor [Urechis caupo]
+-LTTAQIKAIQDHWFLNIKGcLQAAADSIFFKYLTAYPGDLAFFHKFsSVPlyglRSNPAYKAQTLTVINYLDKVVDALGGNAGaLMKAKVPSHD-AMGITPKHFGQLLKLVGGVFQEEFSA--DPTTVAAWGDAAGVLVAAM-----
+>gi|256080649|ref|XP_002576591.1| globin X [Schistosoma mansoni]gi|238661865|emb|CAZ32828.1| globin X, putative [Schistosoma mansoni]
+-FTNEQLLLLQTSWSIVKQHIEKIGVITFLGIFEQHSDFRDAFTEFrKRKfvdiKHDPAMQVHGLRVLSVVDKLITRlpkTDDIEKQLMMIGSKHC-R-YVPTIAlVssvsDQLWGAIEPVLKEE--GLWSADLAVTWKSILDYLTRT------
+>gi|153876610|ref|ZP_02003843.1| bacterial hemoglobin [Beggiatoa sp. PS]gi|152066926|gb|EDN66157.1| bacterial hemoglobin [Beggiatoa sp. PS]
+-------FEIQSTYEKILPHLDEFSRLFYQQLFEIKPAFKILFRQTDLrIq------KQMVIRMIEVVVQGINNLENFMSIIQRIHQRHY-ELHLKPEDYRLAGQALVLSLEKYFGDEFTPTLKKIWLDFYESIVATM-----
+>gi|1707914|sp|P51536.1|GLBC_NIPBR RecName: Full=Globin, cuticular isoform; Flags: Precursorgi|309617|gb|AAA65540.1| globin [Nippostrongylus brasiliensis]
+------KKHTVESMKAvpVGRDKAQNGIDFYKFFFTHHKDLRKFFKGAeNFGaddvQKSKRFEKQGTALLLAVHVLANVYDNqavFHGFVRELMNRHE-KRGVDPKLWKIFFdDVWVPFLESK-GAKLSGDAKAAWKELNKNF---------
+>gi|121251|sp|P27613.1|GLBH_TRICO RecName: Full=Globin-like host-protective antigen; Flags: Precursorgi|161675|gb|AAA30102.1| globin-like, host-protective antigen [Trichostrongylus colubriformis]
+------RKDALSALDVvpLgsTPEKLENGREFYKYFFTNHQDLRKYFKGAeTFTaddiAKSDRFKKLGNQLLLSVHLAADTYDNemiFRAFVRDTIDRHV-DRGLDPKLWKEFWSIYQKFLESK-GKTLSADQKAAFDAIGTRF---------
+>gi|110825998|sp|P80721.2|GLB_PAREP RecName: Full=Globin-3; AltName: Full=Myoglobin
+--------------------IVETGLGAYHALFTAHPQYIIHFSRLeGHTienvMQSEGIKHYARTLTEAIVHMLKEIsndAEVKKIAAQYGKDHT-SRKVTKDEFMSGEPIFTKYFQNLVK---DAEGKAAVEKFLKHVFPMMAAE--
+>gi|196001583|ref|XP_002110659.1| hypothetical protein TRIADDRAFT_54901 [Trichoplax adhaerens]gi|190586610|gb|EDV26663.1| hypothetical protein TRIADDRAFT_54901 [Trichoplax adhaerens]
+-------------------------------LIKLSPATKIYFHGVDFeKrdsylAKNTFLRNHAARFMEAINVIIGQdMDIfsVESYFRVVGSKHH-SYNLKLEHVQDISDAFLEMARNALKKKFTKSTEAAWRSFFQMVTDAIKNG--
+>gi|339235287|ref|XP_003379198.1| putative globin [Trichinella spiralis]gi|316978174|gb|EFV61187.1| putative globin [Trichinella spiralis]
+PLTPRECFLLIQNWRAISRKMVDTGIRTFInnnvDLLELFPTVKQEIQS----npesFDTEILEYHAQRVMSVLDQAIHLIGDADSffnLLHLYADYHA-KkQLFSPDFFWEIEPALVDSIKETLGDRYTENMANIYPKVFKLILSTLVQFCR
+>gi|170589934|ref|XP_001899728.1| hypothetical protein Bm1_41355 [Brugia malayi]gi|158592854|gb|EDP31450.1| hypothetical protein Bm1_41355 [Brugia malayi]
+-LSLEDRKLLHETFNLFEKDLTTNGLRIFLqlalitkfiylfcmRTLSENPDYKYFWPQFrAIPdsslISSSVLRNFAHTYMNALKKIVESLNNEQmpyEVLQRISAKHA-RHNIQMHHMQKMIKPLLENVRRALG-RHDENAERAWETLFQTVG-AIVEHYK
+>gi|320164492|gb|EFW41391.1| predicted protein [Capsaspora owczarzaki ATCC 30864]
+---HETRDVIKSTWALAIQKQDEADvtpvatfvNVFFGKLFELCPETRLVFGQ-DLsL-QGKS----LSSVLTGMLEFVVHPKKLTTQVKSLAVKHV-GLGITPDMFDAFGAALVYTIKTRIGKVWSPQTERVWVDAYGGVNNIITQQMS
+>gi|341887822|gb|EGT43757.1| CBN-GLB-25 protein [Caenorhabditis brenneri]
+----RDFFTLKNWWKSVDRKRVEASTYMFSRYLNDFPENKAFYAKLkNVnAqtvdmnCSDPGFEAMAAQYLKVFDDVITAveekPGDVQSacdRLSAVGKMHR-AkvSGagMESSMFQNMEEPFIQMVKYILQDRFNEKAEMLYRKFFQFCLKYLLEGF-
+>gi|242007866|ref|XP_002424739.1| hypothetical protein Phum_PHUM149070 [Pediculus humanus corporis]gi|212508232|gb|EEB12001.1| hypothetical protein Phum_PHUM149070 [Pediculus humanus corporis]
+--------VVLNDWPKIRKNYKKIFIDSFINYFAENPNYKLLFPSFsNVSeddlPFNHCFRLHCFAVYKAINFLMSNwLGEyeedDSKILPVIGKTHF-DRGITLEMMNLYKHSIVYSCNNHLKPN--LKRKLSWQTVFDHIFDyYLGSAY-
+>gi|17567933|ref|NP_509614.1| GLoBin family member (glb-17) [Caenorhabditis elegans]gi|3877381|emb|CAA86423.1| C. elegans protein F49E2.4a, partially confirmed by transcript evidence [Caenorhabditis elegans]
+-ITDEEVTAIRDVWRRA--KTDNVGKKILQTLIEKRPKFAEYFGIQsESlDiralNQSKEFHLQAHRIQNFLDTAVGSLGFcpissVFDMAHRIGQIHF-YRGVNfgADNWLVFKKVTVDQVTtgttdsskekedtnsngtangkvdtdaSLIPiadinNVYSGencLARLGWNKLMTVIVREMKRGFL
+>gi|341890740|gb|EGT46675.1| CBN-GLB-13 protein [Caenorhabditis brenneri]
+-LTRRERILLEQSWRKTRKtGADHIGSKIFFMVLTAQPDIKAIFGL-eKIPtgrlKYDPRFRQHALVYTKTLDFVIRNLDYpgkLEVYFENLGKRHV-AmqgRGFEPGYWETFAECMTQAAVEWE-ANRQRPTLGAWRNLISCIISFMRRGFD
+>gi|339235297|ref|XP_003379203.1| putative WAP-type 'four-disulfide core' [Trichinella spiralis]gi|316978179|gb|EFV61192.1| putative WAP-type 'four-disulfide core' [Trichinella spiralis]
+-LSVYDKRLIEESWCALR-DKDEVAKQIFLRVLTSNEKIRTIFDLH-TcPddelEENSAFQRHVKSLSLFLSICADSlsvsPDRLVSIARSIGEKHV-NfRWvsFDAEYWLLMKCAMVEVISSKQRPKISHLVNTAWNSLLSFVIFEIKHSFL
+>gi|9664871|gb|AAF97245.1|AF284381_1 dehaloperoxidase A [Amphitrite ornata]
+----------------IRGDLRTYAQDIFLAFLNKYPDERRYFKNYvGKSdqelKSMAKFGDHTEKVFNLMMEVADRATDCvplASdanTLVQM-KQHS---SLTTGNFEKLFVALVEYMRA-SGQSFDS---QSWDRFGKNLVSALSSA--
+>gi|308487955|ref|XP_003106172.1| CRE-GLB-28 protein [Caenorhabditis remanei]gi|308254162|gb|EFO98114.1| CRE-GLB-28 protein [Caenorhabditis remanei]
+-LVPDHHKLIRKSWGRI--PKTQFGKAALEAFIRISEVNHSIFGD--KeT-----ENRHIKYFVDLVQSSVDNLEDLEAsvkpWLDLIGRGHS-DFKITGKHWENFAESLLNTATEWNGPGrRHKETVRAWMLMTSFLADRLAHASR
+>gi|307179623|gb|EFN67896.1| hypothetical protein EAG_07959 [Camponotus floridanus]
+-FSAEEYALVKKVWSGIEINPQFHGNACLRSFCEIYPQYVKFFTQEsKLh-lSFDTRITVKFSIIMETMGYLLldfnkrpKQLDRLVG---YIAMVHK-DMQLDEQDMRNFATSLFQYLSRTYPTQMTAQCQEAMSKFMDSVIKELFV---
+>gi|194745446|ref|XP_001955199.1| GF16359 [Drosophila ananassae]gi|190628236|gb|EDV43760.1| GF16359 [Drosophila ananassae]
+-FTLSERLALRQAWNIVRPFTRRYGQEIFFNYLNDAYLRISKFKHTkGN--YLHVLHNHFRGFLCFIGSLIEEQDPvmFQLMLNDNNMTHS-RCKVGAAFILELAQAMTDYILKVFEKVSSASLESGFRKIVD-----------
+>gi|312115464|ref|YP_004013060.1| globin [Rhodomicrobium vannielii ATCC 17100]gi|311220593|gb|ADP71961.1| globin [Rhodomicrobium vannielii ATCC 17100]
+---PNQLAALREFFSNIESDLPEIVSLMYERFFEAVPEAASLFKG-DFAaqqmQFTSMLRST-----IALTRSSQLwPVDAEAgraslpEIEYLGLRHA-CVGVQPEHFAAMKWALARTLAEMYPRDFDRDIEDALSFIFDVVARA------
+>gi|84684315|ref|ZP_01012217.1| flavohemoprotein-like protein [Maritimibacter alkaliphilus HTCC2654]gi|84668068|gb|EAQ14536.1| flavohemoprotein-like protein [Rhodobacterales bacterium HTCC2654]
+---------IRACLSDLYSVRIEFSRRFYDRFFEQVPEARRLFVHNqDK-qalML----YAAVAMTMRG----MESGRDLDGELIEFGKRHA-RLGVKQDMFPIFGSTFLETLIEYLPHHDHPKIAKAWWGGFT-----------
+>gi|255724342|ref|XP_002547100.1| predicted protein [Candida tropicalis MYA-3404]gi|240134991|gb|EER34545.1| predicted protein [Candida tropicalis MYA-3404]
+-LSPFEIDQIQSSWNRIS-NKNNFYNELYLNLIEKNPNLGEIFNH-----DESVITHHAKTFGDCFNFVVSNIENveiIEEFIYSFVQENQ-RfSQMSTKYLEPMGNSLILTLKQFLRSYSTSVLELTWVKVYVYFANSIL----
+>gi|339256778|ref|XP_003370265.1| putative globin [Trichinella spiralis]gi|316965561|gb|EFV50254.1| putative globin [Trichinella spiralis]
+-FTDEEVELLARTWKKDDFDwLYRIGTDIYTCVFQLAPELKVFFPYVtECeKknqswESSKGFRTQALRFVQILGMAVEKTesrmkDDdshLHHRLYKLGETHR-RFalkGFTPTHWKGF--VIAVRVAMrraveAM-PNLTPAecetAIEAWDKLSRYVVHRMEEGYF
+>gi|298705122|emb|CBJ28565.1| hemoglobin [Ectocarpus siliculosus]
+--------GVKRNWAMISEGPETQGSfngastslvalydTFFARLFLLEPSMRSMFGD-NM-iRQ--------SKFLVGLVNIIVKMEDmLKQGLSPLysfADRSV-AMGARPEHYEVIAEVLPIALEACAGEGvWTPDIAGAWRDVMSFAILAVV----
+>gi|312080149|ref|XP_003142477.1| hypothetical protein LOAG_06894 [Loa loa]gi|307762359|gb|EFO21593.1| hypothetical protein LOAG_06894 [Loa loa]
+SLTSAQIHLVRNIWRQVYvtKGPTVIGSTLLHGIFFKSKKIKDQFFKcpFpHQfPn-RDSFNNAHAKAIGEMLDKIVDNLENLEsvsGYLFSIGAIHA-NlvrRQVSREIWNLMAETFIDCTLDWgDKKGRTEASRKAWAFIIAFVIEKIKR---
+>9287755aa6aa27583da6be3b2408bfcc
+HLTPEEKSAVTALWGKVN--VDEVGGEALGRLLVVYPWTQRFFESFgDLStpdavMGNPKVKAHGKKVLGAFSDGLAHLDNLKGTFATLSELHC-DkLHVDPENFRLLGNVLVCVLAHHFGKEFTPPVQAAYQKVVAGVANALAHKYH
+>gi|77917416|emb|CAG25614.2| cytoglobin-2 [Tetraodon nigroviridis]
+-LSDTEREMIRDAWGHVykN--CEDVGVSILIRFFVNFPSAKQYFSQFqDMEepeemERSSQLRHHACRVMNALNTVVENLHDpekVSSVLAVVGRAHA-VkHKVEPMYFKILSGVILEVLCEDFPEFFTADVQLVWSKLMATVYWHVTG---
+>gi|121270|sp|P09965.1|GLB_DOLAU RecName: Full=Globin; AltName: Full=Myoglobin
+ALSAAEAEVVAKSWGPVfaN--KDANGDNFLIALFEAYPDSPNFFADFkGK-siadiRASPKLRNVSSRIVSRLNEFVSSAADagkMAAMLDQFSKEHA-GFGVGSQQFQNVSAMFPGFVAS--IAAPPAGADAAWGKLFGLIIDAMK----
+>gi|156390503|ref|XP_001635310.1| predicted protein [Nematostella vectensis]gi|156222402|gb|EDO43247.1| predicted protein [Nematostella vectensis]
+PLDAKETQLVRKTWAILG--DRqvEVGKSLFLRFFEEHPTSKDLFPEFrNISnekiAESPALYGHARRVMKSVDNAVASIENVQVYSAYLYELGTRhQtRQLSEEQLKFMGGAFLFAMRLHLRKEWSRATSKAWEKIFSFMADAMMRG--
+>gi|156373757|ref|XP_001629477.1| predicted protein [Nematostella vectensis]gi|156216478|gb|EDO37414.1| predicted protein [Nematostella vectensis]
+PLSEAQKYLVRETWETIE--PQkqTVGKKAFLRFFDMNPDYQNLFPEFkSLSyeelQKANALHGHAKRVMKAVENAVMSIDDVMSFSAYLEELGRRhKtRALKPSYLEAMHGALMDTLRNLLQSQWTEETAEAWNKLFSFISTTMVRG--
+>gi|226304877|ref|YP_002764835.1| oxidoreductase [Rhodococcus erythropolis PR4]gi|226183992|dbj|BAH32096.1| putative oxidoreductase [Rhodococcus erythropolis PR4]
+SVDSQAISLVRSSFKSVAAVEdgpERLARTFYSILFARSPETREFFPA--------AMDVQRDRLVGAIAHVVERLDEsdaILEYLAQLGRDHR-KYGVTDEHYTAVGNALIEALETFGGAEmWTDEVDSAWRNALAIISAAMMD---
+>gi|111022476|ref|YP_705448.1| flavohemoprotein [Rhodococcus jostii RHA1]gi|110822006|gb|ABG97290.1| probable flavohemoprotein [Rhodococcus jostii RHA1]
+-MDSQAISLVRSSFKAIAAVPdgpQTLSRSFYALLFARYPDARDFFPA--------AMDAQRDRLISAVQYVIERLEEesgqILAYLAQLGRDHR-KYGIEDAHYVAVGNSLIAAVEQFPSTEpWTDELEQAWRDVLAVVAATMMD---
+>gi|119368208|sp|P80017.3|GLBD_CAUAR RecName: Full=Globin D, coelomic
+DLTPAEKDLIRSTWDQLmtH--RTGFVADVFIRIFHNDPTAQRKFPQMaGLSpaelRTSRQMHAHAIRVSALMTTYIDEMDTevLPELLATLTRTHD-KNHVGKKNYDLFGKVLMEAIKAELGVGFTKQVHDAWAKTFAIVQGVLITK--
+>gi|340378768|ref|XP_003387899.1| PREDICTED: neuroglobin-like [Amphimedon queenslandica]
+SLTSAQVALIESTWKVVK--KDLqgAGNIMFLKLFQIDVSVRDKFP-FrDV-pyeelEDSESFLKHSLQVMETIDLAITLLlgGemeKLVEALVDLGMAHA-MQGLKPEDFDHVGEALVHALGVALGKEFNDEAKKAWTLLYSVVTAKMKEGLK
+>gi|327360036|emb|CBL51560.1| globin [Branchiostoma floridae]
+ALSAAELATVKQAWAKLT--AssfEDAGEKVFLALLKD-PNIKANFKKFkDIPeaslPGNADMRAHGKKVCTVLDKFIKGDDG---AAKSTGTMHK-GLGMSNDQIGAMRGALVAVLNDA-G--E-GGAVPAWNKLFDHFMEVHKT---
+>gi|309274255|gb|ADO63769.1| hemoglobin [Branchinotogluma segonzaci]
+-VTAAQKAAIKDSWAGVD--LQVAGNAFYNQLQANAPDAYAVFN-Lg----SDSgKIAAQGLKVMTFIDGIVKGLDDMDGVkasIDTLGGRHT-SYGAKKVHFGPAGPCLLAALAEVCGGKFTPAAKDGWTALYGLISDGICA---
+>gi|321252935|ref|XP_003192569.1| flavohemoprotein (Hemoglobin-like protein) [Cryptococcus gattii WM276]gi|317459038|gb|ADV20782.1| Flavohemoprotein (Hemoglobin-like protein), putative [Cryptococcus gattii WM276]
+PLTEAQKDIIKSTAPVLEKHGVTITTHFYKNMILAHPELKDVFSES-----AQKLGHQPAALAAAVYAYalnIHDLTPMVPVVERIAHKHT-SLHITANQYGIVGKHLIQSIVDILGDAVTPEVADAWYNGYWNLAHIFIN---
+>gi|19639|emb|CAA32492.1| unnamed protein product [Medicago sativa]gi|166388|gb|AAA32657.1| leghemoglobin [Medicago sativa]
+SFTDKQEALVNSSWEAFKQNLPRYSVFFYTVILEKAPAAKGLFSFLkNS-aevQDSPQLQAHAEKVFGLVRDSAVQLRAtggVVLGDATLGAIHV-Rk-GVVDPHFVVVKEALLKTIKEAAGDKWSEELNTAWEVAYDALATAIKKAM-
+>gi|242247087|ref|NP_001156237.1| neuroglobin-like [Acyrthosiphon pisum]gi|239788583|dbj|BAH70964.1| ACYPI007228 [Acyrthosiphon pisum]
+SLSPLQISQLKDSWSVLaqD--PSQLASALVIRLFKENPEYQSLFKRLkNLSidelASNPQFMSHASKVGAALASTIDHLDKpeeLEKLLTNLGIKHK-KYGLSAKHFQVIGDVLIAMITEAIG-DSEPELLDLWKSSLTSVLSI------
+>gi|13810245|emb|CAC37410.1| globin [Sabella spallanzanii]
+--SMEDRQEVLNAWEALwS--AeytgrrVMIAQAAFQKLFEKAPDSKALFTRVNVDnIGSPQFRAHCIRVTNGFDTIINMAFDtdvLEELLTHLGNQHT-KyQGMRAAYLTHFRESFAEILPQA-IPCFNT---AAWNRCITAMQDKIGAS--
+>gi|241825972|ref|XP_002414692.1| cytoglobin-1, putative [Ixodes scapularis]gi|215508904|gb|EEC18357.1| cytoglobin-1, putative [Ixodes scapularis]
+GLSKRDTKLIRNSWSMLCKQHPKADQLIFKALFTKHPDFMALFQHFkDKDlgvvLSDPQFALHSSAIIQAFGTIIRSLDDPAGVVAlirKNATDHT-TrKGVQPSHFEAMLNVVLEVLQDKLGSRFKPEAITAWEKFIEV----------
+>gi|291238620|ref|XP_002739222.1| PREDICTED: Globin D, coelomic, putative-like [Saccoglossus kowalevskii]
+SLTDQHRVILLDSWKVIqeD--IAKVGVIMFMGLFETHPECKEVFMPFkELQgddlRWSSALKAHGLRVMAVIERVLARIDSdekIEEHLKALAKKHV-EYGANSDLVRLFGPQFIGSMKRQLHKSWSDEMQDAWTVLFDIIIYHMTT---
+>gi|322229316|dbj|BAJ72723.1| 2-domain hemoglobin [Daphnia magna]
+-LTANDRRIIRKTWDQAK--KdGDVPPQILFRFIKAHPEYQKMFKSFaDVPqaelLGNGNFLAQAYTILAGLNVVIQSLSSqelIANQINALGGAHK-PRGATPIMFEQFGAVTEEVLAEELGSSFNAEARQAWKNGMRALVTGIT----
+>gi|893363|dbj|BAA09588.1| hemoglobin (2 domain) [Barbatia lima]
+---PANKGLIRETWNIVA--GdRKNGVELMALLFEMAPDSKKEFRRLgDVSpaniPNNRKLNGHGITLWYALANFVDQLDNktdLEDVCRKFAVNHV-LRGVLDVKFAWIKEPLAELLKRKCGQRCTEKHVKAWWKLIDVVCAVLEEH--
+>gi|56405306|sp|P02226.2|GLB7A_CHITH RecName: Full=Globin CTT-VIIA; Flags: Precursorgi|2155293|gb|AAB58930.1| globin VIIA.1 [Chironomus thummi thummi]
+PLSADQAALVKSTWAQVR--NSEV--EILAAVFTAYPDIQARFPQFaGKDvasiKDTGAFATHAGRIVGFVSEIIALIGnesnapAVQTLVGQLAASHK-ARGISQAQFNEFRAGLVSYVSSNV--AWNAAAESAWTAGLDNIFGLLFA---
+>gi|13249109|gb|AAK16680.1|AF257469_1 globin chain a1 precursor [Eudistylia vancouveri]
+-----KRLKVKLQWAQSFGfenTREDFEDELFRNFFKRKPDAPEkFFTRVrGD-nIYSPEFRAFGMRVASGLDMVLSLSDDeaaFQAALAFLKAQHA-PLGIGAEFNLAFKEAVLDTVAAHVGRCFDK---DAWNACMEIIMTGIQS---
+>gi|121275|sp|P18202.1|GLB_TUBTU RecName: Full=Globin, extracellular monomeric
+-----QRFKVKHQWAEAFGtshHRLDFGLKLWNSIFRDAPEIRGLFKRVdGD-nAYSAEFEAHAERVLGGLDMTISLLDDqaaFDAQLAHLKSQHA-ERNIKADYYGVFVNELLAVLPDYLGTKLDF---KAWSECLGVITGAIHD---
+>gi|974720|dbj|BAA09964.1| two-domain chain of the polymeric hemoglobin (intracellular) [Barbatia lima]
+---PVNKSLIRQTWNMMA--GdSKNGVDLMALLFQIAPESKKEFTRLgDVSpeniPNNRKLNGHGITLWYALTSFVDQLDSpndLEDLCRKFAVNHV-ARGVLDVRFGWIKEPLAKLLRRNCGN-CDEAI-QAWWELIDVICAVVKE---
+>gi|74096499|ref|NP_001027701.1| globin [Ciona intestinalis]gi|34364574|emb|CAD89600.1| globin [Ciona intestinalis]
+--KRSDIINIQDSWNTLKGfGYETVGMLVLHRLFNDAPQTRYLFSQLSLSsnesftleqmRNNSRVVYHANRVARAVGRLVDLIElptNFTDHLVWLGQRHA-YHGVAPVNFDYMGPVLLETIKVNLELPSDSPTLSAWAKAYGVIKNGIK----
+>gi|342859152|ref|ZP_08715806.1| hypothetical protein MCOL_09748 [Mycobacterium colombiense CECT 3035]gi|342133393|gb|EGT86596.1| hypothetical protein MCOL_09748 [Mycobacterium colombiense CECT 3035]
+----DALRVLRDAFAPgaadsAgD--PGGLVHRFYTHWFALDGSVRDLFPP--------EMAAQRLAFGHALHWVYGELvarraQEPVAFLAQLGRDHR-KYGVLPHHYDTLRRALLATLRTHLGAAWTDAVDEAATQSLNLITGVMSG---
+>gi|183980669|ref|YP_001848960.1| monooxygenase [Mycobacterium marinum M]gi|183173995|gb|ACC39105.1| monooxygenase [Mycobacterium marinum M]
+----DALRVLRDAFAPqpdldhKtQ--SSELVRSFYTNWFSLDSSVRDLFPP--------EMSGQRAAFTRALHWVYSELvaqraEEPIAFLAQLGRDHR-KYGVQPTQYETLRRALQTTLRSHLGSSWTDSVARAAEQSLNLIVGVMSG---
+>gi|296167812|ref|ZP_06849998.1| oxidoreductase FAD-binding subunit [Mycobacterium parascrofulaceum ATCC BAA-614]gi|295897042|gb|EFG76662.1| oxidoreductase FAD-binding subunit [Mycobacterium parascrofulaceum ATCC BAA-614]
+----DALRVLRDAFAPdePgT--GNELVRRFYTHWFGLDVSVRDLFPP--------EMGAQRAAFAHALHYVYGELvaqraQEPVAFLAQLGRDHR-KYGVLPRHYDTLRRALLSTLRTSLGDSWTDSVAAAADQSLNLITGVMRG---
+>gi|196016934|ref|XP_002118316.1| hypothetical protein TRIADDRAFT_62364 [Trichoplax adhaerens]gi|190579092|gb|EDV19196.1| hypothetical protein TRIADDRAFT_62364 [Trichoplax adhaerens]
+-LNYQERQAIIDSWNAISTEKQKYGTILFLKLFELEPRVKSLFTIFdFNEplediIQSPHFRSHAMRFMQSLETGVlMGFDKesCDFLFKSLGSRHH-FYDLKSEFLDVIPECILHTIKKGCGNNWSNETADAWKIATKVLCELFRE---
+>gi|8101728|gb|AAF72633.1|AF258616_1 hemoglobin P polymer precursor [Parartemia zietziana]
+AFSAADIQAIQQTWALAK--PDLMgkGATVFRNLFNEHS-eYQPLFSNLvGY-evtalEGSPELNAHARNVMAQLDVFVRSLENsieLGRSLNQLGKDHV-PRKVNKIHFKEFAEDFVVLMKADLGEEFTPLAESAWKKVFDVMISTIEQG--
+>gi|56698153|ref|YP_168525.1| globin domain-containing protein [Ruegeria pomeroyi DSS-3]gi|56679890|gb|AAV96556.1| globin domain protein [Ruegeria pomeroyi DSS-3]
+-MKDEQIRLVQSSFARVfaR--KAELAERFYVHLFERLPDAKSLFRG-DFFaqke-----------MFATMLASTVRGMNDvqaFHTMGQALARSHA-RFNLRRDDLDKAAEALSAAFRDVFGDTLNAQEQEAWDVAMRRLTRMLAT---
+>gi|268561672|ref|XP_002638386.1| Hypothetical protein CBG18593 [Caenorhabditis briggsae]
+RLSDRQREILQKTFTSIEQDCVRNGLKIFVRLFAEYPRYKLIWPQFrAIPdsslMNAVELRRHASVYLKGLGKIIESMRDeeeLRKSMSRIALAHI-KWNVQRNHVIHMIEPVLEVVKECNGYQLDDETRQAWTVLYQVIANLIE----
+>gi|47115693|sp|Q7M416.1|GLB1_LIOJA RecName: Full=Globin-1; AltName: Full=Myoglobin Igi|298242|gb|AAB25285.1| myoglobin I [Liolophura japonica, Peptide, 145 aa]
+-ISADQAKALKDDIAVVaqN--PNGCGKALFIKMFEMNPGWVEKFPAWkGKSldeiKASDKITNHGGKVINELANWINNINSASGILKSQGTAHK-GRSIGIEYFENVLPVIDATFAQQMGGAYTAAMKDALKAAWtGVIVPGMKAGY-
+>gi|321473021|gb|EFX83989.1| hypothetical protein DAPPUDRAFT_223071 [Daphnia pulex]
+SFSQKDVDVIVNTWNTLK--RrGDFAPKVFIRYFKAKPESQKMFPAFaNVPitelPTNHDFLNSAYTCITSLNYLIPYLKFdHPERCPAFP-KHLKDkYNA--VDLKKLGSIWMTAMQEEMGNAFTNDVRDVWKKAVMAVIEYA-----
+>gi|153876610|ref|ZP_02003843.1| bacterial hemoglobin [Beggiatoa sp. PS]gi|152066926|gb|EDN66157.1| bacterial hemoglobin [Beggiatoa sp. PS]
+------IFEIQSTYEKIlpH--LDEFSRLFYQQLFEIKPAFKILFRQT-------DLRIQKQMVIRMIEvvvQGINNLENFMSIIQRIHQRHY-ELHLKPEDYRLAGQALVLSLEKYFGDEFTPTLKKIWLDFYESIVATM-----
+>gi|320170061|gb|EFW46960.1| predicted protein [Capsaspora owczarzaki ATCC 30864]
+---HETRDAIQSSWALAiQK-HDdhdvtpvaTFVNILFAKLFEVCPETRLVFGH-DMV-------RQGKSlssILTGMLEFVVHPKKLQSQVKRLAHMHV-GLGVTPDMFEAFGFSLLYTIRVRIGSAWNQQIERVWVDTYGGVSNILSQ---
+>gi|156392484|ref|XP_001636078.1| predicted protein [Nematostella vectensis]gi|156223178|gb|EDO44015.1| predicted protein [Nematostella vectensis]
+DMTYEQKYLIRETVDNRecvN--EkDflawRYVCELAAIFLNMHPGLQTYFSEFkHIKidniN---GSHGHPRRLLMAIDNAVTALGDsdsFSAYLVELGRRHH-GmnFRPGPTHFNDLRKCFLSVIKEILATAslWDFQVEEAWNRLFDSITAMMLR---
+>gi|149244943|ref|XP_001527010.1| hypothetical protein LELG_01839 [Lodderomyces elongisporus NRRL YB-4239]gi|146449404|gb|EDK43660.1| hypothetical protein LELG_01839 [Lodderomyces elongisporus NRRL YB-4239]
+NLSQHEIDMVRYTWNKML--MedksnrpNrmpgqfpDLgftpitetpncssvslslfCRQLYMNLLARDPELEKMFPSIkHQSi----S----FAGVMTLIVSQLENLSVLQSYFTSLAKKHS-RvLGIEPPQFELMGEALIQTFKERFGNQFTLELEILWIKVFLFLANSLM----
+>gi|50897135|dbj|BAD34601.1| hemoglobin chain I [Calyptogena kaikoi]
+-VSASDIKNVQDTWTKLY--DqweAVHASKFYNKLFKDNEDISEAFVKAgTG--SGIAMKRQALVFGAILQEFVENLSDptaLSLKIKGLCATHK-Tr-GItNMELFAFALADLVAYMGTT--ISFTAAQKTSWTAVNDVILHQMSS---
+>gi|18029239|gb|AAL56426.1|AF370721_1 cuticle globin [Syngamus trachea]
+------KKHVVDSLVNVplG--NDQTGKDFYKYFFTNHPDLRKYFKGFeTF-taddvQKSEKFRTLGNAFILAIHIVANTYDNepvFRAYVRDNIARHV-ERGLEPSLWKDFWKIWTAFLESK-GTTLSADDKAAWEALRD-----------
+>gi|326430027|gb|EGD75597.1| hypothetical protein PTSG_06664 [Salpingoeca sp. ATCC 50818]
+RLDMEQLKIALGSWTAVVELVPTWHEVFFAELFQAHPETERLLYSSDKSk--S-WNERHMARVGKSVGDVIKSLsnyDDVIEHLTALGTRHA-RYGLHVDQLDLFINAFLWTLGAGLGDSWDHSVKKAWMHVLPFILSPLKS---
+>gi|303271567|ref|XP_003055145.1| predicted protein [Micromonas pusilla CCMP1545]gi|226463119|gb|EEH60397.1| predicted protein [Micromonas pusilla CCMP1545]
+-WQKRKKRFVRQSWQAAceNApcGVDGVGDELLRRFFASHPGFVQLF-NFr---rarlLNSAAWRLHARSVARAIDDFVvvatagadpssSSFDNgawrrTKTALRELGGRHL-VaYKVTPAHYDAFGRALLATVEATArggggggdgggdggggdggGdGGFDRETLAAWTETWEGMRELM-----
+>gi|321477128|gb|EFX88087.1| hypothetical protein DAPPUDRAFT_230332 [Daphnia pulex]
+KLTPHQIHDVQRSWENIR--AnrNSLISAIFVKLFKETPRVQKHFVKFaNVAvdslSGNADYEKQIALVADRLDTIISAMDDklqLLGNINYMRYTHqP-PRAIPRQTFEDFARLLIDGLSAS---GVSGDDMDSWKGVLTIFVNGVS----
+>gi|241950916|ref|XP_002418180.1| conserved hypothetical protein [Candida dubliniensis CD36]gi|223641519|emb|CAX43480.1| conserved hypothetical protein [Candida dubliniensis CD36]
+SLNKIELNQIKSSWSKIN--PKEFYPELYENLFELNPQLRSIFNND-----DSVINYHCDIFGDLFNFIINNIEDdllLNEFLYQFvNENQR-FSSMISQYLEPMGNALIQTFKNELSGQFTSVLELIWIKIFVFVANLLL----
+>gi|82655305|emb|CAI26300.1| hemoglobin [Biomphalaria glabrata]
+GLSDNDREAIDSSWKKLR--SgaggrRNAGIKLVQWMLRTIPNMRDRFNKFdAKQsdaalQRDPEFLAQVDRILGGVESLVNNVDDpvaLKAAIDRLADAHL-SfdPRVGLDYFGPLQTYIHDYIEEALGVGADSDEAKGWTDLFAAFNKVLKE---
+>gi|47230183|emb|CAG10597.1| unnamed protein product [Tetraodon nigroviridis]
+KLSSKDKELIRGSWDSLGKNKVPHGVILFSRLFELDPELLNLFHYTtNCGstqdcLSSPEFLEHVTKVSETVPgeppprlhaeprsvipgDACDRRCSqppgrppLpgglfaqpgakasgsgsqttvvccmIHTVQLFRHLHI-FvHRkkkttcfftcllVCFGLLQMVGESLLYMLQCSLGQAYTASLRQAWLNMYSVVVASMSRGW-
+>gi|312094877|ref|XP_003148174.1| hypothetical protein LOAG_12613 [Loa loa]gi|307756662|gb|EFO15896.1| hypothetical protein LOAG_12613 [Loa loa]
+-----------------------------FRLFSDFPEYKQIWPQFrGIPdsliITANEVKGHGLVYMAGLKSIIDNIKNeekLVKTISKITLAHL-KWHICKDHIMNmLKEVIVILQAD--PHCQGRDVEEAWFTLFDVIGNLV-----
+>gi|20270894|gb|AAM18464.1|AF461710_1 myoglobin [Clonorchis sinensis]gi|23344091|gb|AAN28366.1| 17 kDa myoglobin [Clonorchis sinensis]
+PLSKDEVDaLFEELNPLVS--TteqrTEFGKAVYMALFSAYPEYIQLFTKMqGLTkdnvEASEGIKYYGQTFADSILEMLQCASDdgkLEAVLEKSGKEHI-TRNVTKQQFLSAEEVFIKHFSGVLT---KEENKQSMERFLKHIVPKVAGF--
+>gi|341884590|gb|EGT40525.1| CBN-GLB-28 protein [Caenorhabditis brenneri]
+CLSIEQQKIIKQSWNRIP--KAQFGRAVLNTFINTEGVGHNIFVDR--Dt-----KERHVRQIVDLVQSCVEHLDNLQTGVkpwlDLIGRGHA-NFRITGKHWENFAEALVTTASEWNGPGrRHKETGKAWLIMTSFLADRLAHA--
+>gi|17570331|ref|NP_510537.1| GLoBin family member (glb-28) [Caenorhabditis elegans]gi|6425266|emb|CAB60330.1| C. elegans protein Y15E3A.2, partially confirmed by transcript evidence [Caenorhabditis elegans]
+TISPEHQKLIKRSWNRIP--KAQFGRASLEAFITAAQVTHAIFVDK--Et-----ENRHVKYFVDLVQSCVDNLENLETGVkpwlDLIGRGHA-NFKITGKHWEKFGESLLTTATEWNGPGrRHKETVKAWMVMSSFLADRLAHA--
+>gi|339256778|ref|XP_003370265.1| putative globin [Trichinella spiralis]gi|316965561|gb|EFV50254.1| putative globin [Trichinella spiralis]
+KFTDEEVELLARTWKKDD--FDwlyRIGTDIYTCVFQLAPELKVFFPYVtECEkknqswESSKGFRTQALRFVQILGMAVEKTESrmkdddshLHHRLYKLGETHR-RfalKGFTPTHWKGFVIAVRVAMRRAVeaMPNLTPAecetAIEAWDKLSRYVVHRMEEGY-
+>gi|260903027|ref|ZP_05911422.1| conserved hypothetical protein [Vibrio parahaemolyticus AQ4037]gi|308108400|gb|EFO45940.1| conserved hypothetical protein [Vibrio parahaemolyticus AQ4037]gi|328470864|gb|EGF41775.1| hypothetical protein VP10329_08707 [Vibrio parahaemolyticus 10329]
+--------VFNDSYERCvL--SEHFFERFYAKFWSKGESFRQKFEGVDM-------QKQVRMLKGSIVFFMMTdtSSDARKMMEKYGKKHGIgNIGVKPEDIDIWFESLLETVQECD-YEYNSDVEKAWRACFKSGLEIMKREC-
+>gi|254786906|ref|YP_003074335.1| hypothetical protein TERTU_2953 [Teredinibacter turnerae T7901]gi|237685129|gb|ACR12393.1| conserved hypothetical protein [Teredinibacter turnerae T7901]
+--------LFNDSFEKCL--HGRystFFERFYRNFEQRQPEVRRMFQGTDV-------QRRYDMFEESILILVDYsaNGTASENLERLATLHT-SKGATPEMFDEWMDALIQTLREVD-PQFDDNAEFAWRDILSTGLEYLKNSA-
+>gi|90409683|ref|ZP_01217700.1| hypothetical protein P3TCK_02931 [Photobacterium profundum 3TCK]gi|90329036|gb|EAS45293.1| hypothetical protein P3TCK_02931 [Photobacterium profundum 3TCK]
+--------LYQASYQRCmG--NDDFLPLFYSLFINADIAIKDMFGSTDK-------EQQILTLKASLAMLQPAqdLITHEQLIKSIALRHK-KMNIAPHLFNVWFDCLMQAVKQYD-PQYNEDLHTIWREQLDFGIKLMTKES-
+>gi|339234991|ref|XP_003379050.1| putative globin [Trichinella spiralis]gi|316978322|gb|EFV61323.1| putative globin [Trichinella spiralis]
+-LTKSQRQNVVRSWEKVpN--KRALGEEIYIQIFMHKPMLKSLFP-FrTVPvdqlRNNALFTRQAAIFADFIDCVvgylaIDNGNLIMELSERVGVNHA-LmtsVNFDPEWWVLFANSVLDCIRQYCEPQFiclpisrhiTRKIMIAWRILLKEVVDRMSEAF-
+>gi|289208690|ref|YP_003460756.1| globin [Thioalkalivibrio sp. K90mix]gi|288944321|gb|ADC72020.1| globin [Thioalkalivibrio sp. K90mix]
+-------D-VHQSYGRCrR--AGDFVTRFYEHFLQADPRVKAAFGSTDFSqq---KRALGQA--ISTAISYAEGE-SFVASTMERMGQVHS-RegrVPVEPDLYPIWLDCMVRTAAEID-PRWEPRLEERWRGAMQPAIDLFVRLY-
+>gi|339237741|ref|XP_003380425.1| putative globin [Trichinella spiralis]gi|316976730|gb|EFV59959.1| putative globin [Trichinella spiralis]
+VLNPKEVILTRNVWAALK--EkhqHLVGMEIFRQIFNRRPDLKSLFGV-sALDtemal-NSTRLHRHTMIFQDVIdilMVNISNVDvNIADSLIDLGAQHWVlTkRGFDPAYWLIFGDVLFDLVENVTRKLPsRKRSTNAWRKTIAFMLDCMQIGY-
+>gi|119470819|ref|ZP_01613430.1| hypothetical protein ATW7_05751 [Alteromonadales bacterium TW-7]gi|119446046|gb|EAW27325.1| hypothetical protein ATW7_05751 [Alteromonadales bacterium TW-7]
+----------------------------------------------------------SYILYCTLERIIKNIDNPSSVAPFLSH-HLQflKkLNIQQSDIKPLTDIFYVTLVEHLGRFFNEESHLAWRKVLTYF---------
+>gi|268557836|ref|XP_002636908.1| Hypothetical protein CBG09371 [Caenorhabditis briggsae]
+-IVDDDFELARAHWIQLQK-SNKQGLAirgCFLTMLEKYPQVRPIWG-FgKRiegriDetwkpelVEDFYFRHHCASLQAALNMIIQNKDDrngMRRMLNEMGAHHF-FYDACEPHFEVFQDCLLESMRLVLngGDALDDEIEHSWICLLQTIRLHMGE---
+>gi|170573273|ref|XP_001892405.1| hypothetical protein Bm1_04635 [Brugia malayi]gi|158602064|gb|EDP38764.1| hypothetical protein Bm1_04635 [Brugia malayi]
+-LSEIQQELIRQSWQTIS--AklevneQNFGFFVYRRVFEHNPLLKRAFHVeeYDL-ldsiPREHSIFRQMRLFTNLIALAVRHDNELETeiapAVFRYGQRHY---KFAAEYFNegtvrLFCSQVVCAVADLLEVDIDPACMEAWIDMMRFIGCRLLDG--
+>gi|308466646|ref|XP_003095575.1| CRE-GLB-8 protein [Caenorhabditis remanei]gi|308245099|gb|EFO89051.1| CRE-GLB-8 protein [Caenorhabditis remanei]
+PLTCAQIHLVRALWRQVYTtkGPTVIGASIYHRLCFKNLMVKEQMKQVELPpkfqNRDNFIKAHCKAVAELIDQVVENldhLDNVTNELMRIGRVHA-KvLRgeLTGKLWNTVAETIIDCTLE-WGDrrCRSETVRKAWALIVAFVIEKIKAG--
+>gi|198452804|ref|XP_002137542.1| GA26483 [Drosophila pseudoobscura pseudoobscura]gi|198132084|gb|EDY68100.1| GA26483 [Drosophila pseudoobscura pseudoobscura]
+-FTLCEKVALRQAWNLIR--PreRRFGQDVFYTFLNEWYWSISKFKKGeDI--NIALLHAHALTFIRFVGALINESDPimFQVMINENNQTHS-RCRVGADYIAMLGQALTDYILKVLDKVRSPSLEQGLQRIVE-----------
+>gi|195454050|ref|XP_002074063.1| GK14442 [Drosophila willistoni]gi|194170148|gb|EDW85049.1| GK14442 [Drosophila willistoni]
+-FTLSERLALKQAWNQIK--PkeRRLGQEVFYRFLNEHYFAMYTFQSNeKL--DLHSLHSHARNFVHFIGDLINESDPtmFQFMVHDINQIHN-CRHVPKHYIEMLLQALTDAILKDLHKMTCPTLENGLKRLVD-----------
+>gi|308071704|emb|CBX25204.1| C. elegans protein Y17G7B.6a, partially confirmed by transcript evidence [Caenorhabditis elegans]
+NLSVKQKKLLRQSFNAMN--SGgtflKLMEKIFRRLETKCPDMRSIFLTtaFvnSLSrerQTPPLVkteYDHCKCMVGIFERLIENLENINEQLTMirhYGEKHA-QmaeSGFTGAMIEQFGEISVFVIGSQDVVKFNHETVKAWRLLLACVTDEMKVGF-
+>gi|322493086|emb|CBZ28370.1| adenylate cyclase-like protein [Leishmania mexicana MHOM/GT/2001/U1103]
+--------TVEGTWRILEDegMVEQFGQQLYDELLTRNRRLRVHFYGV-------DIEEQSKSLLRMVGTAVHFYQKpqlTVDMFTKAGARHR-GYGVNAEVFVEMRNAFMRVFSKFVGTDVFQAAEEEWQKFWKYVLDLLVH---
+>gi|341888892|gb|EGT44827.1| CBN-GLB-12 protein [Caenorhabditis brenneri]
+-LNKKDRTLLRETWQRLDE-PkDIVGLIFLDIVNDIEPDLKKVFGV-DRApraamLKMPKFGGHILRfyeFMEQLTSMLGTSENLTGAwqlVRKTGRSHV-KqgfleqnqNQMEKNYFEVVINVFIERLIPYLtgeqelppaegkeqkkvrfAQNYtTSQITDVWKKFLNTVISQMTDSF-
+>gi|206994324|emb|CAR81336.1| C. elegans protein C06H2.5a, partially confirmed by transcript evidence [Caenorhabditis elegans]
+HLSPHQVQLLTSTWPRIK--TqSSLFTQVFKVLMQRSPVCREMFQKMsivgGFSsn-SVCDLNSHTKLLCELLDSLMTDLHQPAkIVLakcQDVGAAHV-NMNekCCGVVFDQLGEAFTELITKVECVRSKREAVKSWMCVISYMADSIKSGY-
diff --git a/modules/config/base.hh b/modules/config/base.hh
index 02bdc2b4c97929fedc6b5742ec59860c1e7190e6..2019437b5b47828492ec8de2422a77287d650092 100644
--- a/modules/config/base.hh
+++ b/modules/config/base.hh
@@ -19,7 +19,6 @@
 #ifndef OST_BASE_HH
 #define OST_BASE_HH
 
-#include <string>
 #include <cmath>
 #include <math.h>
 #include <complex>
diff --git a/modules/conop/pymod/export_compound.cc b/modules/conop/pymod/export_compound.cc
index 3a9e4e6118867027b04db2bbf3eb3031878c44ed..661fa9db11019c805f6eb8d032aa06d8b50c9990 100644
--- a/modules/conop/pymod/export_compound.cc
+++ b/modules/conop/pymod/export_compound.cc
@@ -106,7 +106,7 @@ void export_Compound() {
     .def("GetAtomSpecs", &Compound::GetAtomSpecs,
          return_value_policy<copy_const_reference>())
     .add_property("bond_specs", make_function(&Compound::GetBondSpecs,
-         return_value_policy<copy_const_reference>()))         
+         return_value_policy<copy_const_reference>()))
     .add_property("atom_specs", make_function(&Compound::GetAtomSpecs,
          return_value_policy<copy_const_reference>()))
     .def("AddAtom", &Compound::AddAtom)
@@ -120,6 +120,12 @@ void export_Compound() {
                   &Compound::SetFormula)
     .add_property("dialect", &Compound::GetDialectAsString, 
                   &set_dialect)
+    .add_property("inchi",
+                  make_function(&Compound::GetInchi, 
+                                return_value_policy<copy_const_reference>()))
+    .add_property("inchi_key",
+                  make_function(&Compound::GetInchiKey, 
+                                return_value_policy<copy_const_reference>()))
   ;
   
   class_<AtomSpec>("AtomSpec", no_init)
diff --git a/modules/conop/src/CMakeLists.txt b/modules/conop/src/CMakeLists.txt
index 3709e846aa244c06bc2fbca34e8e848fe95d8d22..0185618ea4a9ebb02d917393670ce3f401ed494c 100644
--- a/modules/conop/src/CMakeLists.txt
+++ b/modules/conop/src/CMakeLists.txt
@@ -43,9 +43,13 @@ endif(WIN32)
 
 if (COMPOUND_LIB)
   if (EXISTS "${COMPOUND_LIB}")
-    copy_if_different("./" "${STAGE_DIR}/share/openstructure" 
-                      "${COMPOUND_LIB}" "COMPOUND_LIB" ost_conop)
-    install(FILES ${COMPOUND_LIB} DESTINATION "share/openstructure")
+    # this ensures that file is called 'compounds.chemlib' (as required)
+    set(TO "${STAGE_DIR}/share/openstructure/compounds.chemlib")
+    file(MAKE_DIRECTORY "${STAGE_DIR}/share/openstructure")
+    add_custom_command(TARGET "ost_conop" PRE_BUILD
+          DEPENDS "${COMPOUND_LIB}"
+          COMMAND ${CMAKE_COMMAND} -E copy_if_different ${COMPOUND_LIB} ${TO})
+    install(FILES ${TO} DESTINATION "share/openstructure")
   else()
     message(FATAL_ERROR "${COMPOUND_LIB} does not exist. \n"
             "Pass -DCOMPOUND_LIB=NONE if you would like to build "
diff --git a/modules/conop/src/compound.hh b/modules/conop/src/compound.hh
index e06dde4c3b15964fd191c64de25a6f673dd19ad7..9e2547bbfbd44c689483d91a5c50cd22154fbf9f 100644
--- a/modules/conop/src/compound.hh
+++ b/modules/conop/src/compound.hh
@@ -98,6 +98,7 @@ struct DLLEXPORT_OST_CONOP AtomSpec {
     return ordinal==rhs.ordinal && name==rhs.name && alt_name==rhs.alt_name &&
            element==rhs.element && is_leaving==rhs.is_leaving && 
            rhs.is_aromatic==rhs.is_aromatic;
+
   }
   bool operator!=(const AtomSpec& rhs) const {
     return !this->operator==(rhs);
@@ -146,6 +147,8 @@ public:
     tlc_(id),
     formula_(),
     name_(),
+    inchi_(),
+    inchi_key_(),
     atom_specs_(),
     bond_specs_(),
     chem_class_(),
@@ -236,11 +239,19 @@ public:
   const String& GetName() { return name_; }
   
   void SetName(const String& name) { name_=name; }
-  
+
   void SetFormula(const String& formula) { formula_=formula; }
 
   const String& GetFormula() { return formula_; }
-  
+
+  void SetInchi(const String& inchi) { inchi_=inchi; }
+
+  const String& GetInchi() { return inchi_; }
+
+  void SetInchiKey(const String& inchikey) { inchi_key_=inchikey; }
+
+  const String& GetInchiKey() { return inchi_key_; }
+
   const BondSpecList& GetBondSpecs() const {
     return bond_specs_;
   }
@@ -268,6 +279,8 @@ private:
   String                       tlc_;
   String                       formula_;
   String                       name_;
+  String                       inchi_;
+  String                       inchi_key_;
   AtomSpecList                 atom_specs_;
   BondSpecList                 bond_specs_;
   mol::ChemClass               chem_class_;
diff --git a/modules/conop/src/compound_lib.cc b/modules/conop/src/compound_lib.cc
index 35c60e0c3fa133d9cc11165273d30e760dd77790..e2cf22263aa88071b425f686cd0d7a9666ef112c 100644
--- a/modules/conop/src/compound_lib.cc
+++ b/modules/conop/src/compound_lib.cc
@@ -49,7 +49,9 @@ const char* CREATE_CMD[]={
 "  formula           VARCHAR(64) NOT NULL,                                      "
 "  pdb_initial       TIMESTAMP,                                                 "
 "  pdb_modified      TIMESTAMP,                                                 "
-"  name              VARCHAR(256)                                               " 
+"  name              VARCHAR(256),                                              "
+"  inchi_code        TEXT,                                                      "
+"  inchi_key         TEXT                                                       "
 ");",
 " CREATE UNIQUE INDEX IF NOT EXISTS commpound_tlc_index ON chem_compounds       "
 "                                  (tlc, dialect)",
@@ -85,8 +87,8 @@ const char* CREATE_CMD[]={
 
 
 const char* INSERT_COMPOUND_STATEMENT="INSERT INTO chem_compounds               "
-"        (tlc, olc, dialect, chem_class, chem_type, formula, pdb_initial, pdb_modified, name) "
-" VALUES (?, ?, ?, ?, ?, ?, DATE(?), DATE(?), ?)";
+"        (tlc, olc, dialect, chem_class, chem_type, formula, pdb_initial, pdb_modified, name, inchi_code, inchi_key) "
+" VALUES (?, ?, ?, ?, ?, ?, DATE(?), DATE(?), ?, ?, ?)";
 
 const char* INSERT_ATOM_STATEMENT="INSERT INTO atoms                            "
 "        (compound_id, name, alt_name, element, is_aromatic, stereo_conf,       "
@@ -220,8 +222,16 @@ void CompoundLib::AddCompound(const CompoundPtr& compound)
     Date modi_date=compound->GetModificationDate();
     crea_date_str=crea_date.ToString();
     modi_date_str=modi_date.ToString();
-    sqlite3_bind_text(stmt, 7, crea_date_str.c_str(), crea_date_str.length(), NULL);
-    sqlite3_bind_text(stmt, 8, modi_date_str.c_str(), modi_date_str.length(), NULL);
+    sqlite3_bind_text(stmt, 7, crea_date_str.c_str(), crea_date_str.length(),
+                      NULL);
+    sqlite3_bind_text(stmt, 8, modi_date_str.c_str(), modi_date_str.length(),
+                      NULL);
+    sqlite3_bind_text(stmt, 9, compound->GetName().c_str(),
+                      compound->GetName().length(), NULL);
+    sqlite3_bind_text(stmt, 10, compound->GetInchi().c_str(),
+                      compound->GetInchi().length(), NULL);
+    sqlite3_bind_text(stmt, 11, compound->GetInchiKey().c_str(),
+                      compound->GetInchiKey().length(), NULL);
   } else {
     LOG_ERROR(sqlite3_errmsg(conn_));
     sqlite3_finalize(stmt);
@@ -356,6 +366,12 @@ CompoundLibPtr CompoundLib::Load(const String& database, bool readonly)
                             static_cast<int>(aq.length()),
                             &stmt, NULL);
   lib->name_available_ = retval==SQLITE_OK;
+  // check if InChIs are available
+  aq="SELECT inchi_code FROM chem_compounds LIMIT 1";
+  retval=sqlite3_prepare_v2(lib->conn_, aq.c_str(),
+                            static_cast<int>(aq.length()),
+                            &stmt, NULL);
+  lib->inchi_available_ = retval==SQLITE_OK;
 
   lib->creation_date_ = lib->GetCreationDate();
   lib->ost_version_used_ = lib->GetOSTVersionUsed();
@@ -422,12 +438,18 @@ CompoundPtr CompoundLib::FindCompound(const String& id,
     return i->second;
   }
   String query="SELECT id, tlc, olc, chem_class, dialect, formula";
+  int col_offset = 0;
   if(chem_type_available_) {
     query+=", chem_type";
+    col_offset+=1;
     if(name_available_) {
       query+=", name";
+      col_offset+=1;
     }
   }
+  if(inchi_available_) {
+    query+=", inchi_code, inchi_key";
+  }
 
   query+=" FROM chem_compounds"
          " WHERE tlc='"+id+"' AND dialect='"+String(1, char(dialect))+"'";
@@ -459,6 +481,16 @@ CompoundPtr CompoundLib::FindCompound(const String& id,
           compound->SetName(name);
         }
       }
+      if (inchi_available_) {
+        const char* inchi_code=reinterpret_cast<const char*>(sqlite3_column_text(stmt, 6+col_offset));
+        if (inchi_code) {
+          compound->SetInchi(inchi_code);
+        }
+        const char* inchi_key=reinterpret_cast<const char*>(sqlite3_column_text(stmt, 6+col_offset+1));
+        if (inchi_key) {
+          compound->SetInchiKey(inchi_key);
+        }
+      }
       // Load atoms and bonds      
       this->LoadAtomsFromDB(compound, pk);
       this->LoadBondsFromDB(compound, pk);
@@ -482,6 +514,7 @@ CompoundLib::CompoundLib():
   conn_(NULL),
   chem_type_available_(false),
   name_available_(),
+  inchi_available_(),
   creation_date_(),
   ost_version_used_()
 {
diff --git a/modules/conop/src/compound_lib.hh b/modules/conop/src/compound_lib.hh
index fef48b1a766899cff3e4097fe68e70a0031291b8..8b6c444868de16503e4d2d37fd22297d467e3d3c 100644
--- a/modules/conop/src/compound_lib.hh
+++ b/modules/conop/src/compound_lib.hh
@@ -57,8 +57,9 @@ private:
 private:
   mutable CompoundMap       compound_cache_;
   sqlite3*                  conn_;
-  bool                      chem_type_available_; // weather pdbx_type is available in db
-  bool                      name_available_; // weather name is available in db
+  bool                      chem_type_available_; // wether pdbx_type is available in db
+  bool                      name_available_; // wether name is available in db
+  bool                      inchi_available_; //whether inchi is available in db
   Date                      creation_date_;
   String                    ost_version_used_;
 };
diff --git a/modules/conop/src/diag.cc b/modules/conop/src/diag.cc
index 470673bf73f3c6bcb7acc0836839c25c7d740336..cf7147ede8fab30eca26dbf22dfe977b6350ed51 100644
--- a/modules/conop/src/diag.cc
+++ b/modules/conop/src/diag.cc
@@ -79,7 +79,7 @@ String Diag::Format(bool colored) const
       char *end=NULL;
       long int id=strtol(start, &end, 10);
       assert(start!=end);
-      assert(id>=0 && id<strings.size());
+      assert(id>=0 && static_cast<unsigned long>(id)<strings.size());
       if (plural_s) {
         if (ints_[args_[id].index]!=1) {
           ss << "s";
diff --git a/modules/conop/src/nonstandard.hh b/modules/conop/src/nonstandard.hh
index 374694303e1d5d0f05626e7cc43d2f9c53139c5a..a57022def8ef7436889491c7ae6714c6e9a69d6e 100644
--- a/modules/conop/src/nonstandard.hh
+++ b/modules/conop/src/nonstandard.hh
@@ -31,9 +31,6 @@ namespace ost { namespace conop {
 
 
 /// \brief copies all atom of src_res to dst_res, gets compound lib from builder
-/// \param has_cbeta will be set to true if the src_res has a cbeta and the 
-///      dst_residue is not a glycine, it will be inserted if in the dst should
-///      be one and in src it was not present
 
                              
 bool DLLEXPORT_OST_CONOP CopyResidue(ost::mol::ResidueHandle src_res,
@@ -41,16 +38,16 @@ bool DLLEXPORT_OST_CONOP CopyResidue(ost::mol::ResidueHandle src_res,
                                      ost::mol::XCSEditor& edi);
 
 /// \brief copies all atom of src_res to dst_res, requires a compound lib 
-/// \param has_cbeta will be set to true if the src_res has a cbeta and the 
-///      dst_residue is not a glycine, it will be inserted if in the dst should
-///      be one and in src it was not present
 bool DLLEXPORT_OST_CONOP CopyResidue(ost::mol::ResidueHandle src_res,
                                      ost::mol::ResidueHandle dst_res,
                                      ost::mol::XCSEditor& edi, CompoundLibPtr lib);
 
                              
 /// \brief copies all atom of src_res to dst_res
-/// \param has_cbeta will be set to true if the src_res has a cbeta and the 
+/// \param src_res
+/// \param dst_res
+/// \param edi
+/// \param has_cbeta will be set to true if the src_res has a cbeta and the
 ///      dst_residue is not a glycine                             
 bool DLLEXPORT_OST_CONOP CopyIdentical(ost::mol::ResidueHandle src_res,
                                        ost::mol::ResidueHandle dst_res,
diff --git a/modules/conop/tests/CMakeLists.txt b/modules/conop/tests/CMakeLists.txt
index 29140807826e25e812d312371013f9ca96e2b3bd..a0c348ac5fb2337c3ed3a3e521c26e300d87404d 100644
--- a/modules/conop/tests/CMakeLists.txt
+++ b/modules/conop/tests/CMakeLists.txt
@@ -2,13 +2,15 @@ set(OST_CONOP_UNIT_TESTS
   test_heuristic_conop.cc
   tests.cc
   test_rule_based_conop.cc 
-  helper.cc 
-  test_compound.py
+  helper.cc
   test_cleanup.py
   test_processor.py
   test_nonstandard.py
 )
 
+if (COMPOUND_LIB)
+  list(APPEND OST_CONOP_UNIT_TESTS test_compound.py)
+endif()
+
 ost_unittest(MODULE conop
              SOURCES "${OST_CONOP_UNIT_TESTS}")
-
diff --git a/modules/conop/tests/test_compound.py b/modules/conop/tests/test_compound.py
index 700f52b286d6e7f842cd004c2dffff6006603436..fd480a54bc95dcb4958d635038ec43dde1c2db7e 100644
--- a/modules/conop/tests/test_compound.py
+++ b/modules/conop/tests/test_compound.py
@@ -1,30 +1,40 @@
 import unittest
+import os
+from ost import GetSharedDataPath, SetPrefixPath
 from ost import mol
 from ost import conop
 
+def setUpModule():
+    SetPrefixPath(os.path.abspath(os.path.join(conop.__path__[0], os.pardir,
+                                               os.pardir, os.pardir,
+                                               os.pardir, os.pardir)))
+    compound_lib_path = os.path.join(GetSharedDataPath(),
+                                     'compounds.chemlib')
+    compound_lib = conop.CompoundLib.Load(compound_lib_path)
+    conop.SetDefaultLib(compound_lib)
+
 class TestCompound(unittest.TestCase):
-  
-  def setUp(self):
-    self.compound_lib=conop.GetDefaultLib()
+    def setUp(self):
+        self.compound_lib=conop.GetDefaultLib()
 
-  def testFindCompound(self):
-    compound=self.compound_lib.FindCompound('***')
-    self.assertEqual(compound, None)
-    compound=self.compound_lib.FindCompound('ALA')
-    self.assertNotEqual(compound, None)
-    self.assertEqual(compound.id, 'ALA')
-    self.assertEqual(compound.three_letter_code, 'ALA')
-    self.assertEqual(compound.one_letter_code, 'A')
-    self.assertTrue(compound.IsPeptideLinking())
-    self.assertEqual(compound.dialect, 'PDB')
-    self.assertEqual(compound.formula, 'C3 H7 N O2')
-    self.assertEqual(compound.chem_class, mol.L_PEPTIDE_LINKING)
+    def testFindCompound(self):
+        compound=self.compound_lib.FindCompound('***')
+        self.assertEqual(compound, None)
+        compound=self.compound_lib.FindCompound('ALA')
+        self.assertNotEqual(compound, None)
+        self.assertEqual(compound.id, 'ALA')
+        self.assertEqual(compound.three_letter_code, 'ALA')
+        self.assertEqual(compound.one_letter_code, 'A')
+        self.assertTrue(compound.IsPeptideLinking())
+        self.assertEqual(compound.dialect, 'PDB')
+        self.assertEqual(compound.formula, 'C3 H7 N O2')
+        self.assertEqual(compound.chem_class, mol.L_PEPTIDE_LINKING)
+        self.assertEqual(compound.inchi,
+                        "1S/C3H7NO2/c1-2(4)3(5)6/h2H,4H2,1H3,(H,5,6)/t2-/m0/s1")
+        self.assertEqual(compound.inchi_key, "QNAYBMKLOCPYGJ-REOHCLBHSA-N")
 
      
 if __name__=='__main__':
-  if not conop.GetDefaultLib():
-    print 'No compound library available. ignoring compound unit tests'
-  else:
     from ost import testutils
     testutils.RunTests()
 
diff --git a/modules/doc/install.rst b/modules/doc/install.rst
index a0b36a3f12cfc3a305e8b5e553f16bdc824e07c8..76f6c465f02c47e1167e922a23a275f8a96a1354 100644
--- a/modules/doc/install.rst
+++ b/modules/doc/install.rst
@@ -28,8 +28,8 @@ Installing the Dependencies
 OpenStructure uses a bunch of OpenSource libraries. If you haven't already installed them, please install them now! Where appropriate the minimally required version is given in parantheses.
 
  * `CMake <http://cmake.org>`_ (2.6.4)
- * `Eigen2 <http://eigen.tuxfamily.org>`_ (2.0.6)
- * `Boost <http://boost.org>`_ (1.47)
+ * `Eigen3 <http://eigen.tuxfamily.org>`_ (3.2.0)
+ * `Boost <http://boost.org>`_ (1.53)
  * `libpng <http://www.libpng.org>`_ 
  * `Python <http://python.org>`_ (2.7)
  * `Qt <http://qt-project.org/>`_ (4.5)
diff --git a/modules/doc/newmodule.rst b/modules/doc/newmodule.rst
index 03822cb7e4cfe57e7df4e7946d5961d8d1ed80e1..8c4864cb4e0145f4ce8916f1384e7a92bf13f391 100644
--- a/modules/doc/newmodule.rst
+++ b/modules/doc/newmodule.rst
@@ -160,7 +160,7 @@ The Testing Framework
 The `tests` directory contains code for unit tests. The code is compiled and 
 executed when one invokes compilation using the 'make check' command.  Tests are 
 run by means of the `Boost Unitests Library 
-<http://www.boost.org/doc/libs/1_37_0/libs/test/doc/html/index.html>`_. Before coding the test routines, the required skeleton needs to be put in place.
+<http://www.boost.org/doc/libs/1_53_0/libs/test/doc/html/index.html>`_. Before coding the test routines, the required skeleton needs to be put in place.
 
 The main code is put into 'tests.cc', which will become the test executable. There are only 3 lines required
     
@@ -224,7 +224,7 @@ The Python Wrapper
 --------------------------------------------------------------------------------
 
 Finally, the module API is exported to Python using the `Boost Python 
-Library <http://www.boost.org/doc/libs/1_37_0/libs/python/doc/index.html>`_.
+Library <http://www.boost.org/doc/libs/1_53_0/libs/python/doc/index.html>`_.
 In `mod/pymod`, the wrapper code for the classes in the new module is put into a 
 file named `wrap\_mod.cc`:
 
diff --git a/modules/geom/pymod/export_vec3.cc b/modules/geom/pymod/export_vec3.cc
index 0df8101549767a5c3a7af43bdde4bd33da3b9dd2..8adf113fcfd5fb1ae09fd6bbb097212489a65ab5 100644
--- a/modules/geom/pymod/export_vec3.cc
+++ b/modules/geom/pymod/export_vec3.cc
@@ -24,6 +24,7 @@
 
 using namespace boost::python;
 
+
 const Real Vec3_getitem(const geom::Vec3& v, int i) {
   return v.At(i);
 }
@@ -51,6 +52,11 @@ list vec3_data(const geom::Vec3& v)
   return nrvo;
 }
 
+boost::python::tuple wrap_FitCylinder(const geom::Vec3List& vl,const geom::Vec3& initial_direction) {
+  std::pair<geom::Line3,Real> pair=vl.FitCylinder(initial_direction);
+  return boost::python::make_tuple<geom::Line3,Real>(pair.first,pair.second);
+}  
+
 void export_Vec3()
 {
   using namespace geom;
@@ -114,6 +120,6 @@ void export_Vec3()
     .add_property("inertia", &Vec3List::GetInertia)
     .add_property("principal_axes", &Vec3List::GetPrincipalAxes)
     .def("GetODRLine", &Vec3List::GetODRLine)
-    .def("FitCylinder", &Vec3List::FitCylinder)
+    .def("FitCylinder", wrap_FitCylinder,(arg("direction initial guess")))
   ;
 }
diff --git a/modules/geom/pymod/export_vecmat3_op.cc b/modules/geom/pymod/export_vecmat3_op.cc
index 5c06a2499ed7e2af0a5e73fe9ad5dd589b289a46..0cdc3e37358693f63215c0bb8fe05adf17b6617e 100644
--- a/modules/geom/pymod/export_vecmat3_op.cc
+++ b/modules/geom/pymod/export_vecmat3_op.cc
@@ -38,9 +38,13 @@ Real (*Mat3Comp)(const Mat3& m, unsigned int i, unsigned int j)       = &Comp;
 Real (*Mat3Minor)(const Mat3& m, unsigned int i, unsigned int j)      = &Minor;
 Vec3 (*Vec3Min)(const Vec3&, const Vec3&) = &Min;
 Vec3 (*Vec3Max)(const Vec3&, const Vec3&) = &Max;
+Real (*Vec3SignedAngle)(const Vec3& v1, const Vec3& v2, const Vec3& v3) = &SignedAngle;
 Real (*Vec3Distance2WithPBC)(const Vec3&, const Vec3&, const Vec3&)   = &Distance2WithPBC;
 Real (*Vec3DistanceWithPBC)(const Vec3&, const Vec3&, const Vec3&)    = &DistanceWithPBC;
-
+Vec3 (*wrap_vec3_1)(const Vec3&, const Vec3&, const Vec3&)               = &WrapVec3;
+Vec3 (*wrap_vec3_2)(const Vec3&, const Vec3&, const Vec3&, const Vec3&)  = &WrapVec3;
+Vec3List (*wrap_vec3list1)(const Vec3List&, const Vec3&, const Vec3&)               = &WrapVec3List;
+Vec3List (*wrap_vec3list2)(const Vec3List&, const Vec3&, const Vec3&, const Vec3&)  = &WrapVec3List;
 void export_VecMat3_op()
 {
   using namespace geom;
@@ -53,6 +57,7 @@ void export_VecMat3_op()
   def("Distance",Vec3Distance);  
   def("Equal",Mat3Equal, (arg("m1"), arg("m2"), arg("epsilon")=EPSILON));
   def("DihedralAngle", &DihedralAngle);
+  def("SignedAngle", Vec3SignedAngle, (arg("v1"), arg("v2"),arg("ref_normal")));
   def("Dot",Mat3Dot);
   def("Det",Mat3Det);
   def("Cross",Vec3Cross);
@@ -70,6 +75,8 @@ void export_VecMat3_op()
   def("MinDistance",MinDistance);
   def("MinDistanceIndices",MinDistanceIndices);
   def("MinDistanceWithPBC",MinDistanceWithPBC);
-  def("WrapVec3",WrapVec3);
-  def("WrapVec3List",WrapVec3List);
+  def("WrapVec3",wrap_vec3_1,(arg("vector"),arg("cell_center"),arg("cell_size")));
+  def("WrapVec3",wrap_vec3_2,(arg("vector"),arg("cell_center"),arg("cell_size"),arg("cell_angles")));
+  def("WrapVec3List",wrap_vec3list1,(arg("vector_list"),arg("cell_center"),arg("cell_size")));
+  def("WrapVec3List",wrap_vec3list2,(arg("vector_list"),arg("cell_center"),arg("cell_size"),arg("cell_angles")));  
 }
diff --git a/modules/geom/src/composite3.cc b/modules/geom/src/composite3.cc
index 3813fb668c31f0b52f7a03d5388de12857a45b1a..b2d795247fe3858c11fb2ee2262746aa9c495d1e 100644
--- a/modules/geom/src/composite3.cc
+++ b/modules/geom/src/composite3.cc
@@ -190,28 +190,28 @@ Real Rotation3::GetPhi() const
     return GetRotationAngle()*
         (q_.GetAxis().GetZ()/std::fabs(q_.GetAxis().GetZ()));
   }else{
-    return reduce_angle(M_PI-atan2(q_.GetAxis().GetX()*q_.GetAxis().GetZ()+
-                                   q_.GetAxis().GetY()*q_.GetAngle(),
-                                   q_.GetAxis().GetY()*q_.GetAxis().GetZ()-
-                                   q_.GetAxis().GetX()*q_.GetAngle()));
+    return reduce_angle(M_PI-atan2(q_.x*q_.z+
+                                   q_.y*q_.w,
+                                   q_.y*q_.z-
+                                   q_.x*q_.w));
   }
 }
 Real Rotation3::GetTheta() const
 {
-  return reduce_angle(acos(-q_.GetAxis().GetX()*q_.GetAxis().GetX()-
-                           q_.GetAxis().GetY()*q_.GetAxis().GetY()+
-                           q_.GetAxis().GetZ()*q_.GetAxis().GetZ()+
-                           q_.GetAngle()*q_.GetAngle()));
+  return reduce_angle(acos(-q_.x*q_.x-
+                           q_.y*q_.y+
+                           q_.z*q_.z+
+                           q_.w*q_.w));
 }
 Real Rotation3::GetPsi() const
 {
   if(GetTheta()<EPSILON){
     return 0.0;
   }else{
-    return reduce_angle(atan2(q_.GetAxis().GetX()*q_.GetAxis().GetZ()-
-                              q_.GetAxis().GetY()*q_.GetAngle(),
-                              q_.GetAxis().GetY()*q_.GetAxis().GetZ()+
-                              q_.GetAxis().GetX()*q_.GetAngle()));
+    return reduce_angle(atan2(q_.x*q_.z-
+                              q_.y*q_.w,
+                              q_.y*q_.z+
+                              q_.x*q_.w));
   }
 
 }
@@ -302,7 +302,7 @@ Vec3 Rotation3::find_invariant_vector(Mat3 rot)
   Real minors[9];
   for(int i=2;i>=0;--i){
     for(int j=2;j>=0;--j){
-      minors[3*i+j]=Minor(rot,i,j);
+      minors[3*(2-i)+(2-j)]=Minor(rot,i,j);
     }
   }
   Real* where = ::std::max_element(minors, minors+9);
@@ -328,7 +328,7 @@ Vec3 Rotation3::find_invariant_vector(Mat3 rot)
   case 2:
     result.SetX(1.0);
     result.SetY(-minors[1]/det);
-    result.SetZ(-minors[0]/det);
+    result.SetZ(minors[0]/det);
     break;
   case 3:
     result.SetZ(1.0);
@@ -338,7 +338,7 @@ Vec3 Rotation3::find_invariant_vector(Mat3 rot)
   case 4:
     result.SetY(1.0);
     result.SetX(-minors[5]/det);
-    result.SetZ(-minors[4]/det);
+    result.SetZ(-minors[3]/det);
     break;
   case 5:
     result.SetX(1.0);
diff --git a/modules/geom/src/vec3.cc b/modules/geom/src/vec3.cc
index 8909ce8b8648879741c01965ef13961614223e6b..a69b2682d7d53aaaf8970b165d068c1adb228988 100644
--- a/modules/geom/src/vec3.cc
+++ b/modules/geom/src/vec3.cc
@@ -60,7 +60,7 @@ Mat3 Vec3List::GetPrincipalAxes() const
   Mat3 inertia=this->GetInertia();  
   EMat3 inertia_mat(inertia.Data());
 
-  Eigen::SVD<EMat3> svd(inertia_mat);
+  Eigen::JacobiSVD<EMat3> svd(inertia_mat,Eigen::ComputeFullU);
   EMat3 rot=svd.matrixU();
   Mat3 axes(rot.data());
   return axes;
@@ -91,76 +91,96 @@ Plane Vec3List::GetODRPlane() const
   Vec3 normal=this->GetPrincipalAxes().GetRow(0);
   return Plane(origin,normal);
 }
-  
-Line3 Vec3List::FitCylinder(const Vec3& initial_direction, const Vec3& center) const
-{
-  Line3 axis=Line3(center,center+initial_direction), axis_old;
-  Real radius,res_sum_old,res_sum,delta_0=0.01,prec=0.0000001,err,norm,delta;
-  unsigned long n_step=1000, n_res=this->size();
-  Vec3 v,gradient;
-  
-  radius=0.0;
-  delta=delta_0;
-  for (Vec3List::const_iterator i=this->begin(),e=this->end(); i!=e; ++i) {
-    radius+=geom::Distance(axis,(*i));
-  }
-  radius/=Real(n_res);
-  res_sum=0.0;
-  for (Vec3List::const_iterator i=this->begin(),e=this->end(); i!=e; ++i) {
-    Real r=Distance(axis,(*i))-radius;
-    res_sum+=r*r;
-  }
-  unsigned long k=0;
-  err=2.0*prec;
-  while (err>prec && k<n_step) {
-    res_sum_old=res_sum;
-    axis_old=axis;
+
+std::pair<Line3, Real> Vec3List::FitCylinder(const Vec3& initial_direction) const
+  { 
+    Vec3 center=this->GetCenter();
+    Line3 axis=Line3(center,center+initial_direction), axis_old;
+    Real radius,res_sum_old,res_sum,delta_0=0.01,prec=0.0000001,err,norm,delta;
+    unsigned long n_step=1000, n_res=this->size();
+    Vec3 v,gradient_dir,gradient_center;
+    
     radius=0.0;
-    if (k>50) {
-      delta=delta_0*50.0*50.0/(k*k);
-    }
+    delta=delta_0;
     for (Vec3List::const_iterator i=this->begin(),e=this->end(); i!=e; ++i) {
-      radius+=Distance(axis,(*i));
+      radius+=geom::Distance(axis,(*i));
     }
     radius/=Real(n_res);
-    for (int j=0; j!=3; ++j){
-      res_sum=0.0;
-      v=Vec3(0.0,0.0,0.0);
-      v[j]=delta;
-      axis=Line3(axis_old.GetOrigin(),axis_old.GetOrigin()+axis_old.GetDirection()+v);
+    res_sum=0.0;
+    for (Vec3List::const_iterator i=this->begin(),e=this->end(); i!=e; ++i) {
+      Real r=Distance(axis,(*i))-radius;
+      res_sum+=r*r;
+    }
+    unsigned long k=0;
+    err=2.0*prec;
+    while (err>prec && k<n_step) {
+      res_sum_old=res_sum;
+      axis_old=axis;
+      //radius=0.0;
+      if (k>50) {
+        delta=delta_0*50.0*50.0/(k*k);
+      }
+      //for (Vec3List::const_iterator i=this->begin(),e=this->end(); i!=e; ++i) {
+      //  radius+=Distance(axis,(*i));
+      //}
+      radius/=Real(n_res);
+      for (int j=0; j!=3; ++j){
+        res_sum=0.0;
+        v=Vec3(0.0,0.0,0.0);
+        v[j]=delta;
+        axis=Line3(axis_old.GetOrigin(),axis_old.GetOrigin()+axis_old.GetDirection()+v);
+        radius=0.0;
+        for (Vec3List::const_iterator i=this->begin(),e=this->end(); i!=e; ++i) {
+          radius+=Distance(axis,(*i));
+        }
+        radius/=Real(n_res);
+        for (Vec3List::const_iterator i=this->begin(),e=this->end(); i!=e; ++i) {
+          Real r=Distance(axis,(*i))-radius;
+          res_sum+=r*r;
+        }
+        gradient_dir[j]=(res_sum-res_sum_old)/delta;
+      }
+      norm=Dot(gradient_dir,gradient_dir);
+      if (norm>1.) {
+        gradient_dir=Normalize(gradient_dir);
+      }
+      for (int j=0; j!=3; ++j){
+        res_sum=0.0;
+        v=Vec3(0.0,0.0,0.0);
+        v[j]=delta;
+        axis=Line3(axis_old.GetOrigin()+v,axis_old.GetOrigin()+axis_old.GetDirection()+v);
+        radius=0.0;
+        for (Vec3List::const_iterator i=this->begin(),e=this->end(); i!=e; ++i) {
+          radius+=Distance(axis,(*i));
+        }
+        radius/=Real(n_res);
+        for (Vec3List::const_iterator i=this->begin(),e=this->end(); i!=e; ++i) {
+          Real r=Distance(axis,(*i))-radius;
+          res_sum+=r*r;
+        }
+        gradient_center[j]=(res_sum-res_sum_old)/delta;
+      }
+      norm=Dot(gradient_center,gradient_center);
+      if (norm>1.) {
+        gradient_center=Normalize(gradient_center);
+      }      
+      axis=Line3(axis_old.GetOrigin()-50*delta*gradient_center,axis_old.GetOrigin()-50*delta*gradient_center+axis_old.GetDirection()-delta*gradient_dir);
       radius=0.0;
       for (Vec3List::const_iterator i=this->begin(),e=this->end(); i!=e; ++i) {
         radius+=Distance(axis,(*i));
       }
       radius/=Real(n_res);
+      res_sum=0.0;
       for (Vec3List::const_iterator i=this->begin(),e=this->end(); i!=e; ++i) {
         Real r=Distance(axis,(*i))-radius;
         res_sum+=r*r;
       }
-      gradient[j]=(res_sum-res_sum_old)/delta;
-    }
-    norm=Dot(gradient,gradient);
-    if (norm>1.) {
-      gradient=Normalize(gradient);
+      err=fabs((res_sum-res_sum_old)/float(n_res));
+      k++;
     }
-    axis=Line3(axis_old.GetOrigin(),axis_old.GetOrigin()+axis_old.GetDirection()-delta*gradient);
-    radius=0.0;
-    for (Vec3List::const_iterator i=this->begin(),e=this->end(); i!=e; ++i) {
-      radius+=Distance(axis,(*i));
+    if (err>prec) {
+      std::cout<<"axis fitting did not converge"<<std::endl;
     }
-    radius/=Real(n_res);
-    res_sum=0.0;
-    for (Vec3List::const_iterator i=this->begin(),e=this->end(); i!=e; ++i) {
-      Real r=Distance(axis,(*i))-radius;
-      res_sum+=r*r;
-    }
-    err=fabs((res_sum-res_sum_old)/float(n_res));
-    k++;
+    return std::make_pair(axis,radius);
   }
-  if (err>prec) {
-    std::cout<<"axis fitting did not converge"<<std::endl;
-  }
-  return axis;
-}
-
 }
diff --git a/modules/geom/src/vec3.hh b/modules/geom/src/vec3.hh
index 58e63b89258294462a34e9ab28311ddde59a9670..47137476eb9aa8c2a9d6286de9da7954a97f269b 100644
--- a/modules/geom/src/vec3.hh
+++ b/modules/geom/src/vec3.hh
@@ -195,6 +195,10 @@ inline Vec3 operator/(Real d, const Vec3& v)
   return nrvo;
 }
 
+// The following operator is among other things used to write vector
+// data into info files. If its format is changed, the string to
+// vector type cast in item_type_cast.hh has to be changed
+// accordingly.
 inline std::ostream& operator<<(std::ostream& os, const Vec3& v)
 {
   os << "[" << v.x << ", " << v.y << ", " << v.z << "]";
@@ -316,10 +320,13 @@ public:
   Plane GetODRPlane() const;
 
   //This function fits a cylinder to the positions in Vec3List
-  //It takes as argument an initial guess for the direction and the geometric
-  //center of the atoms. The center is not changed during optimisation as the
-  //best fitting cylinder can be shown to have its axis pass through the geometric center
-  Line3 FitCylinder(const Vec3& initial_direction, const Vec3& center) const;
+  //It takes as argument an initial guess for the direction.
+  //The center is set to the geometric centero of the atoms
+  //and is not changed during optimisation as the best fitting cylinder
+  //can be shown to have its axis pass through the geometric center
+  //It returns a pair containing a line3, giving the direction of the Cylinder
+  //and a Real containing the radius.
+  std::pair<Line3, Real> FitCylinder(const Vec3& initial_direction) const;
 };
 } // ns geom
 
diff --git a/modules/geom/src/vecmat3_op.cc b/modules/geom/src/vecmat3_op.cc
index 2653a081fc83a0bef9bb062d1f451d1a5996672c..3c5cbdea27e4da7b92180eb558856757aa5f535d 100644
--- a/modules/geom/src/vecmat3_op.cc
+++ b/modules/geom/src/vecmat3_op.cc
@@ -208,20 +208,20 @@ Real MinDistance(const Vec3List& l1, const Vec3List& l2)
   return std::sqrt(min);
 }
 
-Real MinDistanceWithPBC(const Vec3List& l1, const Vec3List& l2, Vec3& basis_vec)
+Real MinDistanceWithPBC(const Vec3List& l1, const Vec3List& l2, Vec3& ucell_size)
 { 
   // returns the minimal distance between two sets of points (Vec3List)
-  // given the periodic boundary condition along x,y,z given in the basis_vec
+  // given the periodic boundary condition along x,y,z given in the ucell_size
   if (l1.size()==0 || l2.size()==0){throw GeomException("cannot calculate minimal distance: empty Vec3List");}
   Real min=Length2(*l1.begin()-*l2.begin());
   Real d;
   Vec3 v;
   for (int i=0; i<3; i++) {
-    basis_vec[i]=std::fabs(basis_vec[i]);
+    ucell_size[i]=std::fabs(ucell_size[i]);
   }
   for (Vec3List::const_iterator p1=l1.begin(),e1=l1.end(); p1!=e1; p1++) {
     for (Vec3List::const_iterator p2=l2.begin(),e2=l2.end(); p2!=e2; p2++) {
-      d=Distance2WithPBC(*p1, *p2, basis_vec);
+      d=Distance2WithPBC(*p1, *p2, ucell_size);
       if (d<min) min=d;
     }
   }
@@ -250,26 +250,63 @@ std::vector<unsigned int> MinDistanceIndices(const Vec3List& l1, const Vec3List&
   }
   return il;
 }
+
+Vec3List CalculateUnitCellVectors(const Vec3& ucell_size, const Vec3& ucell_angles){
+  // Calculates the unit cell vectors from their sizes and angles.
+  // The angles are given as Vec3(gamma,beta,alpha)
+  geom::Vec3List ucell_vec;
+  geom::Vec3 ucell_vec1,ucell_vec2,ucell_vec3;
+  Real cosa=cos(ucell_angles[2]),cosb=cos(ucell_angles[1]);
+  Real cosg=cos(ucell_angles[0]),sing=sin(ucell_angles[0]);
+  ucell_vec1=geom::Vec3(ucell_size[0],0,0);
+  ucell_vec2=ucell_size[1]*geom::Vec3(cosg,sing,0);
+  ucell_vec3=ucell_size[2]*geom::Vec3(cosb,(cosa-cosb*cosg)/sing,\
+                                       pow(1-(cosa*cosa+cosb*cosb-2.*cosa*cosb*cosg)/(sing*sing),0.5));
+  ucell_vec.push_back(ucell_vec1);
+  ucell_vec.push_back(ucell_vec2);
+  ucell_vec.push_back(ucell_vec3);
+  return ucell_vec;  
+}
   
-Vec3 WrapVec3(const Vec3& v1,const Vec3& box_center,const Vec3& basis_vec){
+Vec3 WrapVec3(const Vec3& v1,const Vec3& box_center,const Vec3& ucell_size){
   Vec3 v;
   Real r;
   for (int i=0; i<3; i++) {
-    r=(v1[i]-box_center[i])/basis_vec[i];
+    r=(v1[i]-box_center[i])/ucell_size[i];
     r=(r > 0.0) ? std::floor(r + 0.5) : std::ceil(r - 0.5);
-    v[i]=v1[i]-basis_vec[i]*r;
+    v[i]=v1[i]-ucell_size[i]*r;
   }
   return v;
 }
 
-Vec3List WrapVec3List(const Vec3List& vl, const Vec3& box_center,const Vec3& basis_vec){
+Vec3List WrapVec3List(const Vec3List& vl, const Vec3& box_center,const Vec3& ucell_size){
   Vec3List vl_out;
   vl_out.reserve(vl_out.size());
   for (Vec3List::const_iterator v1=vl.begin(),e=vl.end();v1!=e ; v1++) {
-    vl_out.push_back(WrapVec3(*v1,box_center,basis_vec));
+    vl_out.push_back(WrapVec3(*v1,box_center,ucell_size));
   }
   return vl_out;
 }
   
+Vec3 WrapVec3(const Vec3& v1,const Vec3& box_center,const Vec3& ucell_size,const Vec3& ucell_angles){
+  Vec3List vl=CalculateUnitCellVectors(ucell_size,ucell_angles);
+  Vec3 v=v1-box_center,v_wrapped=v1,r;
+  for (int i=0; i<3; i++) {
+    r[2-i]=v[2-i]/vl[2-i][2-i];
+    v=v-r[2-i]*vl[2-i];
+    r[2-i]=(r[2-i] > 0.0) ? std::floor(r[2-i] + 0.5) : std::ceil(r[2-i] - 0.5);
+    v_wrapped=v_wrapped-vl[2-i]*r[2-i];
+  }
+  return v_wrapped;
+}
+
+Vec3List WrapVec3List(const Vec3List& vl, const Vec3& box_center,const Vec3& ucell_size,const Vec3& ucell_angles){
+  Vec3List vl_out;
+  vl_out.reserve(vl_out.size());
+  for (Vec3List::const_iterator v1=vl.begin(),e=vl.end();v1!=e ; v1++) {
+    vl_out.push_back(WrapVec3(*v1,box_center,ucell_size,ucell_angles));
+  }
+  return vl_out;
+}  
   
 } // ns
diff --git a/modules/geom/src/vecmat3_op.hh b/modules/geom/src/vecmat3_op.hh
index b4a18d3cb965e4d30cec4820cca9abb38c592472..fbaaec161b20ba7ddc9112c89bda93295a2ec407 100644
--- a/modules/geom/src/vecmat3_op.hh
+++ b/modules/geom/src/vecmat3_op.hh
@@ -195,35 +195,39 @@ inline Real Distance(const Vec3& p1, const Vec3& p2)
 }
 
 
-//! return the squared distance between two points with periodic boundaries in x,y,z given in basis_vec
-inline Real Distance2WithPBC(const Vec3& v1, const Vec3& v2, const Vec3& basis_vec){
+//! return the squared distance between two points with periodic boundaries in x,y,z given in ucell_size
+inline Real Distance2WithPBC(const Vec3& v1, const Vec3& v2, const Vec3& ucell_size){
   Vec3 v;
   v=v1-v2;
   for (int i=0; i<3; i++) {
-    if (std::fabs(v[i])>basis_vec[i]/2.){ 
-      v[i]=std::fabs(v[i])-basis_vec[i]*int(std::fabs(v[i])/basis_vec[i]+0.5);
+    if (std::fabs(v[i])>ucell_size[i]/2.){ 
+      v[i]=std::fabs(v[i])-ucell_size[i]*int(std::fabs(v[i])/ucell_size[i]+0.5);
     }
   }
   return Length2(v);
 }
-//! return the distance between two points with periodic boundaries in x,y,z given in basis_vec
-inline Real DistanceWithPBC(const Vec3& v1, const Vec3& v2, const Vec3& basis_vec){
-  return sqrt(Distance2WithPBC(v1, v2, basis_vec));
+//! return the distance between two points with periodic boundaries in x,y,z given in ucell_size
+inline Real DistanceWithPBC(const Vec3& v1, const Vec3& v2, const Vec3& ucell_size){
+  return sqrt(Distance2WithPBC(v1, v2, ucell_size));
 }
 //! returns the minimal distance between the points in two Vec3List
 Real DLLEXPORT_OST_GEOM MinDistance(const Vec3List& l1, const Vec3List& l2);
 //! returns the minimal distance between the points in two Vec3List 
-//  with periodic boundaries in x,y,z given in basis_vec
-Real DLLEXPORT_OST_GEOM MinDistanceWithPBC(const Vec3List& l1, const Vec3List& l2, Vec3& basis_vec);
+//  with periodic boundaries in x,y,z given in ucell_size
+Real DLLEXPORT_OST_GEOM MinDistanceWithPBC(const Vec3List& l1, const Vec3List& l2, Vec3& ucell_size);
 //! returns the indices index1, index2 corresponding to the points in
 //! the Vec3List l1 and l2 having the minimal distance.
 std::vector<unsigned int> DLLEXPORT_OST_GEOM MinDistanceIndices(const Vec3List& l1, const Vec3List& l2);
-  
+//! Calculates the Unit Cell Vectors from their sizes and angles (given as Vec3(gamma,beta,alpha)).
+Vec3List DLLEXPORT_OST_GEOM CalculateUnitCellVectors(const Vec3& ucell_size, const Vec3& ucell_angles);
 //!wraps a vector in a box with periodic boundaries
-Vec3 DLLEXPORT_OST_GEOM WrapVec3(const Vec3& v1,const Vec3& box_center,const Vec3& basis_vec);
-//!wraps all the verctors in a Vec3List in a box with periodic boundaries
-Vec3List DLLEXPORT_OST_GEOM WrapVec3List(const Vec3List& vl,const Vec3& box_center,const Vec3& basis_vec);
-
+Vec3 DLLEXPORT_OST_GEOM WrapVec3(const Vec3& v1,const Vec3& box_center,const Vec3& ucell_size);
+//!wraps all the vectors in a Vec3List in a box with periodic boundaries
+Vec3List DLLEXPORT_OST_GEOM WrapVec3List(const Vec3List& vl,const Vec3& box_center,const Vec3& ucell_size);
+//!wraps a vector in a non-rothogonal box with periodic boundaries
+Vec3 DLLEXPORT_OST_GEOM WrapVec3(const Vec3& v1,const Vec3& box_center,const Vec3& ucell_size,const Vec3& ucell_angles);
+//!wraps all the vectors in a Vec3List in a non-rothogonal box with periodic boundaries
+Vec3List DLLEXPORT_OST_GEOM WrapVec3List(const Vec3List& vl,const Vec3& box_center,const Vec3& ucell_size,const Vec3& ucell_angles);
   
 } // ns
 
diff --git a/modules/geom/tests/test_transform.cc b/modules/geom/tests/test_transform.cc
index ae27fd594b71432bfa271fbcf5fecce52c9e5594..8ac2ce97b579fe2e5c854c31b6a348e9e0a0910c 100644
--- a/modules/geom/tests/test_transform.cc
+++ b/modules/geom/tests/test_transform.cc
@@ -44,17 +44,6 @@ BOOST_AUTO_TEST_CASE(test_transform_essentials)
   tf.SetTrans(tra);
   tf.SetCenter(cen);
 
-  Mat4 tmat = 
-    geom::Mat4(1.0,0.0,0.0,tra[0],
-               0.0,1.0,0.0,tra[1],
-               0.0,0.0,1.0,tra[2],
-               0.0,0.0,0.0,1.0) *
-    geom::Mat4(rot) *
-    geom::Mat4(1.0,0.0,0.0,-cen[0],
-               0.0,1.0,0.0,-cen[1],
-               0.0,0.0,1.0,-cen[2],
-               0.0,0.0,0.0,1.0);
-
   BOOST_CHECK_EQUAL(tf.GetRot(), rot);
   BOOST_CHECK_EQUAL(tf.GetCenter(), cen);
   BOOST_CHECK_EQUAL(tf.GetTrans(), tra);
diff --git a/modules/gfx/pymod/__init__.py b/modules/gfx/pymod/__init__.py
index 7cb3cc51452eca9c2a1507b9e7b692e591ba2aa1..d1b59f1a7cd7e59807cd7d16b7c3ce5a68d623e8 100644
--- a/modules/gfx/pymod/__init__.py
+++ b/modules/gfx/pymod/__init__.py
@@ -407,3 +407,15 @@ def ColladaExporter(file,scale=1.0,to_origin=True):
   e.to_origin=to_origin
   return e
 
+def _go_get_vis(go):
+  return go.IsVisible()
+
+def _go_set_vis(go,flag):
+  if flag:
+    go.Show()
+  else:
+    go.Hide()
+
+GfxObj.visible=property(_go_get_vis,_go_set_vis)
+
+
diff --git a/modules/gfx/pymod/export_entity.cc b/modules/gfx/pymod/export_entity.cc
index d8ee109298405de304b4b7e178671b1f4388141f..0a3ca83624e815e57878fe8a92680d42e46912a6 100644
--- a/modules/gfx/pymod/export_entity.cc
+++ b/modules/gfx/pymod/export_entity.cc
@@ -236,6 +236,7 @@ void (Entity::*set_rm2)(RenderMode::Type)=&Entity::SetRenderMode;
 
 void (Entity::*set_vis1)(const mol::EntityView&, bool)=&Entity::SetVisible;
 void (Entity::*set_vis2)(const String&, bool)=&Entity::SetVisible;
+
 RenderOptionsPtr ent_trace_opts(Entity* ent)
 {
   return ent->GetOptions(RenderMode::TRACE);
@@ -339,7 +340,6 @@ void export_Entity()
     .def("SetBlurFactors",&Entity::SetBlurFactors)
     .def("SetBlur",&Entity::SetBlur)
     .def("GetBoundingBox",&Entity::GetBoundingBox)
-    .add_property("bounding_box",&Entity::GetBoundingBox)
     .def("SetSelection",&Entity::SetSelection)
     .def("GetSelection",&Entity::GetSelection)    
     .add_property("selection", &Entity::GetSelection, 
diff --git a/modules/gfx/pymod/export_map.cc b/modules/gfx/pymod/export_map.cc
index 6bfc908656f6f7f692a1a116556bd1ecc0d7e1b8..ea334ead8a8e3dc69808af841d26c1fee46d805a 100644
--- a/modules/gfx/pymod/export_map.cc
+++ b/modules/gfx/pymod/export_map.cc
@@ -47,6 +47,9 @@ void ms_color_by_04(MapSlab *s, const Color& c1, const Color& c2)
   s->ColorBy(c1,c2);
 }
 
+bool get_gds() {return MapIso::global_downsampling_flag;}
+void set_gds(bool f) {MapIso::global_downsampling_flag=f;}
+
 } // anon ns
 
 void export_Map()
@@ -82,6 +85,7 @@ void export_Map()
     .def("SetColor", &MapIso::SetColor)
     .def("GetColor", &MapIso::GetColor, return_value_policy<copy_const_reference>())
     .def("SetDebugOctree", &MapIso::SetDebugOctree)    
+    .add_static_property("global_downsampling_flag",get_gds,set_gds)
   ;
 
   class_<MapSlab, bases<GfxObj>, boost::shared_ptr<MapSlab>,
diff --git a/modules/gfx/src/bitmap_io.cc b/modules/gfx/src/bitmap_io.cc
index ab42f9de5a67242ee9edf51a705c6cec4a078121..4245c32ec0b7b70daf17f56f73349b10cd39dfa8 100644
--- a/modules/gfx/src/bitmap_io.cc
+++ b/modules/gfx/src/bitmap_io.cc
@@ -114,7 +114,7 @@ Bitmap import_png(const String& filename)
   int png_transforms;
   png_bytep *row_pointers;
   png_uint_32 row,column,chn;
-  png_uint_32 width,height,bpp;
+  png_uint_32 width,height;
   
   if((fp=fopen(filename.c_str(),"rb"))==NULL) {
     LOG_ERROR("error opening " << filename);
@@ -158,8 +158,7 @@ Bitmap import_png(const String& filename)
   
   width=(unsigned int)png_get_image_width(png_ptr, info_ptr);
   height=(unsigned int)png_get_image_height(png_ptr, info_ptr);
-  bpp=(unsigned int)png_get_bit_depth(png_ptr,info_ptr);
-
+ 
   boost::shared_array<unsigned char> data(new unsigned char[width*height*channels]);
   
   row_pointers = png_get_rows(png_ptr, info_ptr);
diff --git a/modules/gfx/src/entity.cc b/modules/gfx/src/entity.cc
index c14e4e16024055a383ae500611f58ae9d77e6f95..6b8468a249a469a4e256f62834d91ba74aae36d8 100644
--- a/modules/gfx/src/entity.cc
+++ b/modules/gfx/src/entity.cc
@@ -135,6 +135,10 @@ Entity::Entity(const String& name,
 }
 
 
+Entity::~Entity()
+{
+}
+
 impl::EntityRenderer* Entity::GetOrCreateRenderer(RenderMode::Type rm)
 {
   RendererMap::iterator rit = renderer_.find(rm);
@@ -186,11 +190,11 @@ void Entity::init(RenderMode::Type rm)
   render_mode_=rm;
   trace_.ResetView(this->GetView());
   sel_=this->GetView().CreateEmptyView();  
-  impl::EntityRenderer* r=this->GetOrCreateRenderer(rm);
-  if(!r) return;
 
-  r->AddView(this->GetView());
-  r->UpdateViews();
+  impl::EntityRenderer* renderer=this->GetOrCreateRenderer(rm);
+
+  renderer->AddView(this->GetView());
+  renderer->UpdateViews();
   set_static_max_rad();
   
   Rebuild();
@@ -297,13 +301,17 @@ bool Entity::UpdateIfNeeded() const
     for (RendererMap::iterator i=renderer_.begin(), 
            e=renderer_.end(); i!=e; ++i) {
       EntityRenderer* renderer =i->second;
-      if (renderer->IsEnabled() && renderer->HasDataToRender()) {
-        if (renderer->IsDirty()) {
-          renderer->PrepareRendering();
-          updated=true;
-        }
-        renderer->VA().SetOpacity(opacity_);
+      if (!renderer->IsEnabled())
+        continue;
+      renderer->UpdateViews();
+      if (!renderer->HasDataToRender())
+        continue;
+
+      if (renderer->IsDirty()) {
+        renderer->PrepareRendering();
+        updated=true;
       }
+      renderer->VA().SetOpacity(opacity_);
     }
     if (updated) {
       this->CacheBoundingBox();
@@ -1135,22 +1143,21 @@ bool Entity::GetSeqHack() const
 
 void Entity::do_update_view() const
 {
-  // also signals an update in positions
-  if (update_view_) {
-    update_view_=false;    
-    cached_view_=qv_.GetEntityView();
-    trace_.ResetView(cached_view_);
-    for (RendererMap::iterator i=renderer_.begin(), 
-           e=renderer_.end(); i!=e; ++i) {
-      impl::EntityRenderer* r=i->second;
-      if (r->IsEnabled() && r->HasDataToRender()) {
-        r->ClearViews();
-        r->AddView(cached_view_);
-        r->UpdateViews();
-        r->FlagPositionsDirty();
-        r->PrepareRendering();
-      }
-    }
+  if (!update_view_)
+    return;
+  update_view_=false;
+  cached_view_=qv_.GetEntityView();
+  trace_.ResetView(cached_view_);
+  for (RendererMap::iterator
+       i=renderer_.begin(), e=renderer_.end(); i!=e; ++i) {
+    impl::EntityRenderer* renderer=i->second;
+    if (!renderer->IsEnabled() || !renderer->HasDataToRender())
+      continue;
+    renderer->ClearViews();
+    renderer->AddView(cached_view_);
+    renderer->UpdateViews();
+    renderer->FlagPositionsDirty();
+    renderer->PrepareRendering();
   }
 }
 
diff --git a/modules/gfx/src/entity.hh b/modules/gfx/src/entity.hh
index a9687c81c6e5d2f7c8da4b3ac67210eb7285fc3d..9106e260769091b06aac55bc9f346514c73f5e8a 100644
--- a/modules/gfx/src/entity.hh
+++ b/modules/gfx/src/entity.hh
@@ -89,6 +89,7 @@ public:
   Entity(const String& name,
          RenderMode::Type m,
          const mol::EntityView& ev);
+  virtual ~Entity();
 
   virtual geom::AlignedCuboid GetBoundingBox(bool use_tf=false) const;
 
@@ -363,13 +364,13 @@ private:
 
 /// \example load_and_display.py
 /// 
-/// Shows how to  display one \ref Entity "entity" with several render modes
+/// Shows how to  display one \ref ost::gfx::Entity "entity" with several render modes
 /// at once. The sidechains  are displayed simple mode, whereas the backbone is 
 /// displayed with smooth lines.
 
 ///  \example rendermodes.py
 /// 
-/// Shows how to switch between different \ref RenderMode "render modes" and 
+/// Shows how to switch between different \ref ost::gfx::RenderMode "render modes" and
 /// explains some of the rendermode parameters.
 /// \sa \ref load_and_display.py "Loading and Displaying an Entity"
 
@@ -386,7 +387,7 @@ private:
 
 /// \example color_by_property.py
 /// 
-/// Color \ref Entity "graphical entity" by property using a gradient
+/// Color \ref ost::gfx::Entity "graphical entity" by property using a gradient
 /// \sa \ref gradient.py "Gradient Example"
 }} // ns
 
diff --git a/modules/gfx/src/entity_fw.hh b/modules/gfx/src/entity_fw.hh
index 5e00ae29cd7ffb15b3c67642cc176d341f6d1586..192ad391322da684abb6590365c8e2b89530ea56 100644
--- a/modules/gfx/src/entity_fw.hh
+++ b/modules/gfx/src/entity_fw.hh
@@ -20,11 +20,13 @@
 #define OST_GFX_ENTITY_FW_HH
 
 #include <boost/shared_ptr.hpp>
+#include <boost/weak_ptr.hpp>
 
 namespace ost { namespace gfx {
 
 class Entity;
 typedef boost::shared_ptr<Entity> EntityP;
+typedef boost::weak_ptr<Entity> EntityW;
 
 }}
 
diff --git a/modules/gfx/src/exporter.cc b/modules/gfx/src/exporter.cc
index 28dbd9b692365f4cfd1590d584a92a0ebbac7477..5100490c1d1ed852b9788f05d57ad3a05e38beaa 100644
--- a/modules/gfx/src/exporter.cc
+++ b/modules/gfx/src/exporter.cc
@@ -28,7 +28,6 @@ namespace ost { namespace gfx {
     normal_tf_=geom::Mat3();
     geom::Mat4 Tmat,Rmat,Smat,Cmat;
     if(to_origin_) {
-      geom::Vec3 trans=scene->GetTransform().GetTrans();
       geom::Vec3 cen=scene->GetTransform().GetCenter();
       vertex_tf_=geom::Mat4(scene->GetTransform().GetRot()) *
                  geom::Mat4(scale_, 0.0, 0.0, 0.0,
diff --git a/modules/gfx/src/gfx_node.cc b/modules/gfx/src/gfx_node.cc
index 59b44d162d991620c77bd58ad300f49f5d3fc8de..657068c9ef836eeb73db31a956fa627d1b1e321a 100644
--- a/modules/gfx/src/gfx_node.cc
+++ b/modules/gfx/src/gfx_node.cc
@@ -33,7 +33,8 @@ GfxNode::GfxNode(const String& name):
 {}
 
 GfxNode::~GfxNode()
-{}
+{
+}
 
 GfxNode::GfxNode(const GfxNode& o) {}
 
diff --git a/modules/gfx/src/impl/backbone_trace.cc b/modules/gfx/src/impl/backbone_trace.cc
index efcd761a5304f9f6c03ffe5362d7ee976dda8d2e..da56ae1796004e52c4ceca18cc8e1df287035be5 100644
--- a/modules/gfx/src/impl/backbone_trace.cc
+++ b/modules/gfx/src/impl/backbone_trace.cc
@@ -123,13 +123,15 @@ private:
 BackboneTrace::BackboneTrace():
   view_(),
   node_list_list_(),
-  seq_hack_(false)
+  seq_hack_(false),
+  twist_hack_(false)
 {}
 
 BackboneTrace::BackboneTrace(const mol::EntityView& ent):
   view_(ent),
   node_list_list_(),
-  seq_hack_(false)
+  seq_hack_(false),
+  twist_hack_(false)
 {
   Rebuild();
 }
@@ -210,8 +212,6 @@ void BackboneTrace::PrepList(NodeEntryList& nelist) const
   // start loop with the second residue
   unsigned int i=1;
   for(;i<nelist.size()-1;++i) {
-    geom::Vec3 p10=p0-p1;
-    geom::Vec3 p12=p2-p1;
     dir=geom::Normalize(p2-p0);
     e1->direction = dir;
     orth=geom::Normalize(geom::Cross(dir,e1->normal));
diff --git a/modules/gfx/src/impl/cartoon_renderer.cc b/modules/gfx/src/impl/cartoon_renderer.cc
index f9eee510679686554c1f7bfac9fd6550f7e3f837..00894483df3e7c0e3433463810fb403a80a84a46 100644
--- a/modules/gfx/src/impl/cartoon_renderer.cc
+++ b/modules/gfx/src/impl/cartoon_renderer.cc
@@ -23,10 +23,7 @@
 
 #include "cartoon_renderer.hh"
 
-#include <Eigen/Core>
-#include <Eigen/Array>
 #include <Eigen/SVD>
-#include <Eigen/LU>
 
 #include <ost/gfx/entity.hh>
 #include <ost/gfx/impl/tabulated_trig.hh>
@@ -138,7 +135,7 @@ namespace {
       A.row(i)=to_eigen(points[i]-cen);
     }
 
-    Eigen::SVD<EMatX> svd(A);
+    Eigen::JacobiSVD<EMatX> svd(A,Eigen::ComputeThinV);
     EMatX V=svd.matrixV();
     geom::Vec3 ax(V(0,0),V(1,0),V(2,0));
 
diff --git a/modules/gfx/src/impl/entity_detail.cc b/modules/gfx/src/impl/entity_detail.cc
index 407654cfcfa514cc379a240ac1a68bc6d131a077..7e7f65989bca37bfdbba9ef8c68e2208492cfec9 100644
--- a/modules/gfx/src/impl/entity_detail.cc
+++ b/modules/gfx/src/impl/entity_detail.cc
@@ -311,8 +311,6 @@ SplineEntryList Spline::Generate(const SplineEntryList& entry_list, int nsub, ui
   sublist.at(0).direction=geom::Normalize(p1-p0);
   unsigned int i=1;
   for(;i<sublist.size()-1;++i) {
-    geom::Vec3 p10 = p0-p1;
-    geom::Vec3 p12 = p2-p1;
     geom::Vec3 dir=geom::Normalize(p2-p0);
     sublist.at(i).direction=dir;
     geom::Vec3 orth=geom::Normalize(geom::Cross(dir,sublist[i].normal));
diff --git a/modules/gfx/src/map_iso.cc b/modules/gfx/src/map_iso.cc
index 7a2c5160c435badb6bd25267759c6fd9a119ebed..fdcf0a3fe95724e0d5082d144b25835fb2615378 100644
--- a/modules/gfx/src/map_iso.cc
+++ b/modules/gfx/src/map_iso.cc
@@ -59,6 +59,8 @@ namespace ost {
 
 namespace gfx {
 
+bool MapIso::global_downsampling_flag=true;
+
 MapIso::MapIso(const String& name, const img::MapHandle& mh, 
                float level, uint a):
   GfxObj(name),
@@ -71,7 +73,6 @@ MapIso::MapIso(const String& name, const img::MapHandle& mh,
   histogram_bin_count_(100),
   level_(level),
   normals_calculated_(false),
-  alg_(a),
   debug_octree_(false),
   color_(1.0,1.0,1.0),
   bb_(),
@@ -412,6 +413,7 @@ bool MapIso::IsDownsampledMapAvailable() const
 
 img::ImageHandle MapIso::DownsampleMap(const img::ImageHandle& mh)
 {
+  if(!MapIso::global_downsampling_flag) return mh;
   uint downsampling_fact = compute_downsampling_fact(mh);
   img:: ImageHandle ret_mh = mh;
   if (downsampling_fact != 1) {
diff --git a/modules/gfx/src/map_iso.hh b/modules/gfx/src/map_iso.hh
index bb47a129c1d0b04d223387dba693fc89031b12a0..cee9025fa6e60598d3a08df3642cf7c4fff8781b 100644
--- a/modules/gfx/src/map_iso.hh
+++ b/modules/gfx/src/map_iso.hh
@@ -144,6 +144,8 @@ public:
   /// \brief checks is the octree needs to be rebuilt
   bool IfOctreeDirty() const;
 
+  static bool global_downsampling_flag;
+
 protected:
   void UpdateRenderParams();
   void CalculateStat() const;
@@ -163,7 +165,6 @@ private:
   int histogram_bin_count_;
   float level_;
   bool normals_calculated_;
-  uint alg_;
   float smoothf_;
   float min_;
   float max_;
diff --git a/modules/gfx/src/render_options/render_options.cc b/modules/gfx/src/render_options/render_options.cc
index 0c5597b33648663ad1afc18f853700cbceabe2a6..5d8e7a72c5a1c11c034d1c2ac4e4a83667d8070f 100644
--- a/modules/gfx/src/render_options/render_options.cc
+++ b/modules/gfx/src/render_options/render_options.cc
@@ -30,33 +30,31 @@ RenderOptions::RenderOptions(){}
 
 bool RenderOptions::AddObserver(EntityP entity)
 {
-  if((std::find( this->observers_.begin(), this->observers_.end(), entity )) == this->observers_.end())
-  {
-    this->observers_.push_back( entity );
-    return true;
+  for (EntityWObservers::const_iterator
+       i = observers_.begin(), e = observers_.end(); i != e; ++i) {
+    if (i->lock() == entity)
+      return false;
   }
-  return false;
+  observers_.push_back(entity);
+  return true;
 }
 
 bool RenderOptions::RemoveObserver(EntityP entity)
 {
-  EntityPObservers::iterator found = std::find( this->observers_.begin(), this->observers_.end(), entity);
-  if( found != this->observers_.end() ){
-
-    this->observers_.erase(found);
-    return true;
+  for (EntityWObservers::iterator
+       i = observers_.begin(), e = observers_.end(); i != e; ++i) {
+    if (i->lock() == entity)
+      observers_.erase(i);
+      return true;
   }
   return false;
 }
 
 void RenderOptions::NotifyStateChange()
 {
-  InputEvent event = InputEvent(INPUT_DEVICE_MOUSE,INPUT_COMMAND_REBUILD,0);
-  EntityPObservers::const_iterator observers_it = this->observers_.begin() ;
-  while( observers_it != this->observers_.end() )
-  {
-    ( *observers_it )->OptionsChanged(this->GetRenderMode()) ;
-    observers_it++;
+  for (EntityWObservers::iterator
+       i = observers_.begin(), e = observers_.end(); i != e; ++i) {
+    i->lock()->OptionsChanged(this->GetRenderMode());
   }
 }
 
diff --git a/modules/gfx/src/render_options/render_options.hh b/modules/gfx/src/render_options/render_options.hh
index 0c2515bdb6ec8aa830d7dca2023deeac0e310858..ce9dfc60209876eea3a142f08599022c86e041a2 100644
--- a/modules/gfx/src/render_options/render_options.hh
+++ b/modules/gfx/src/render_options/render_options.hh
@@ -51,8 +51,8 @@ public:
   void NotifyStateChange();
 
 private:
-  typedef std::vector< EntityP > EntityPObservers;
-  EntityPObservers observers_;
+  typedef std::vector< EntityW > EntityWObservers;
+  EntityWObservers observers_;
 
 };
 
diff --git a/modules/gfx/src/scene.cc b/modules/gfx/src/scene.cc
index 5c96c47ad84bdbd9cc1198c0531f4669567e2a9a..5c1e9cbb7149115b219ceccc8e88698fa5e70e97 100644
--- a/modules/gfx/src/scene.cc
+++ b/modules/gfx/src/scene.cc
@@ -1058,7 +1058,7 @@ void Scene::Remove(const String& name)
   if(fn.node) {
     root_node_->Remove(name);
     if(GfxObjP go = dyn_cast<GfxObj>(fn.node)) {
-      this->NotifyObservers(bind(&SceneObserver::NodeRemoved, _1,go));
+      this->NotifyObservers(bind(&SceneObserver::NodeRemoved, _1, go));
     }
   }
 }
diff --git a/modules/gfx/src/scene.hh b/modules/gfx/src/scene.hh
index 89717de74999e157aeae36443d60333a9e479018..53a935c10f8ff5d21e959f231646d27e8b26c242 100644
--- a/modules/gfx/src/scene.hh
+++ b/modules/gfx/src/scene.hh
@@ -298,7 +298,6 @@ class DLLEXPORT_OST_GFX Scene {
   void Export(const String& fname, unsigned int w,
               unsigned int h, bool transparent=false);
   /// \brief export into bitmap, using multisample anti-aliasing
-  /// \ref Scene::StartOfffscreenMode(unsigned int, unsigned int, int) for more detail
   void Export(const String& fname, unsigned int w,
               unsigned int h, int max_samples, bool transparent=false);
 
@@ -308,7 +307,7 @@ class DLLEXPORT_OST_GFX Scene {
   /// \brief export scene into povray files named fname.pov and fname.inc
   void ExportPov(const std::string& fname, const std::string& wdir=".");
 
-  /// \rbrief export scene via exporter
+  /// \brief export scene via exporter
   void Export(Exporter* ex) const;
 
   //@}
diff --git a/modules/gfx/tests/test_ent_pov_export.cc b/modules/gfx/tests/test_ent_pov_export.cc
index b5c409f9628a110cdfb3f85880f29fb791c517a7..c7730806a1476ce02728b42bcc194c6353908b3d 100644
--- a/modules/gfx/tests/test_ent_pov_export.cc
+++ b/modules/gfx/tests/test_ent_pov_export.cc
@@ -22,7 +22,7 @@
  */
 
 #include <fstream>
-#include <ost/io/load_entity.hh>
+#include <ost/io/mol/load_entity.hh>
 #include <ost/gfx/scene.hh>
 #include <ost/gfx/entity.hh>
 
diff --git a/modules/gui/pymod/CMakeLists.txt b/modules/gui/pymod/CMakeLists.txt
index 87a9c63374927f743fdc21d2c03d9d80a1235a3e..3c9e13e8a806730b0452a1b56828ab94a8121ac1 100644
--- a/modules/gui/pymod/CMakeLists.txt
+++ b/modules/gui/pymod/CMakeLists.txt
@@ -79,7 +79,7 @@ set(OST_GUI_PYMOD_MODULES
   init_menubar.py
   init_spacenav.py
   init_splash.py
-  traj.py
+  trajectory_viewer.py
   helpwidget.py
   table.py
   gosty_startup.py
diff --git a/modules/gui/pymod/__init__.py b/modules/gui/pymod/__init__.py
index 7848916906ee02d47ef8d685c1551051a4e7fd21..227a0db3b969c4cf6f2b8ee91085874cb0b8d9ca 100644
--- a/modules/gui/pymod/__init__.py
+++ b/modules/gui/pymod/__init__.py
@@ -16,12 +16,13 @@
 # along with this library; if not, write to the Free Software Foundation, Inc.,
 # 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 #------------------------------------------------------------------------------
+import ost.gui.trajectory_viewer
 from _ost_gui import *
 import sip
 
 
 ## \brief Opens a DataViewer 
-# \sa \ref fft_li.py "View Fourier Transform Example" \sa \ref modulate_image.py "Modulate Image Example"
+# \sa \example fft_li.py "View Fourier Transform Example" \sa \ref modulate_image.py "Modulate Image Example"
 def _close_event_override_(event):
   print "close event"
 def _set_data_override_(data):
diff --git a/modules/gui/pymod/data_viewer_proxy.cc b/modules/gui/pymod/data_viewer_proxy.cc
index 9ee1c099aff32fdf1be85223af69f5bd4c89499e..d4d418e1f378588c09dfed18f7541788df47b07a 100644
--- a/modules/gui/pymod/data_viewer_proxy.cc
+++ b/modules/gui/pymod/data_viewer_proxy.cc
@@ -22,9 +22,9 @@
   Authors: Ansgar Philippsen, Andreas Schenk
 */
 
-#include <ost/message.hh>
 
 #include "data_viewer_proxy.hh"
+#include <ost/message.hh>
 
 namespace ost { namespace img { namespace gui {
 
@@ -154,6 +154,11 @@ void DataViewerProxy::ClearOverlays()
   viewer()->ClearOverlays();
 }
 
+void DataViewerProxy::ClearActiveOverlay()
+{
+  viewer()->ClearActiveOverlay();
+}
+
 OverlayManagerPtr DataViewerProxy::GetOverlayManager() const
 {
   return viewer()->GetOverlayManager();
@@ -185,6 +190,10 @@ void DataViewerProxy::Hide()
   viewer()->hide();
 }
 
+object DataViewerProxy::GetButtonGroup()
+{
+  return ost::gui::get_py_qobject<QButtonGroup>(viewer()->GetButtonGroup());
+}
 
 object DataViewerProxy::GetQObject(){
   return ost::gui::get_py_qobject<DataViewer>(viewer());
diff --git a/modules/gui/pymod/data_viewer_proxy.hh b/modules/gui/pymod/data_viewer_proxy.hh
index 49e764b65e15271db14331f2772c2f64969ead1c..096485b406fa07b36082936fa0c966e9e862e155 100644
--- a/modules/gui/pymod/data_viewer_proxy.hh
+++ b/modules/gui/pymod/data_viewer_proxy.hh
@@ -83,6 +83,7 @@ public:
   int AddOverlay(const OverlayPtr& ov, bool make_active=true);
   OverlayManagerPtr GetOverlayManager() const;
   void ClearOverlays();
+  void ClearActiveOverlay();
 
   void AddDockWidget(QWidget* w, const QString& name, bool shown=true, int area=2);
   void RemoveDockWidget(QWidget* w);
@@ -96,7 +97,7 @@ public:
   //Vec3 GetClickedPosition();
 
   void Hide();  
-
+  object GetButtonGroup();
   object GetQObject();
 protected:
   QPointer<DataViewer> viewer_ptr_;
diff --git a/modules/gui/pymod/export_data_viewer.cc b/modules/gui/pymod/export_data_viewer.cc
index e1b047d84cd09022b75a953bbeb25fdf631304d5..d5e03fe5e3888bd86c74ba531f5e01afdcc4c796 100644
--- a/modules/gui/pymod/export_data_viewer.cc
+++ b/modules/gui/pymod/export_data_viewer.cc
@@ -66,6 +66,7 @@ void export_data_viewer()
     .def("Renormalize",&DataViewerProxy::Renormalize)
     .def("AddOverlay",&DataViewerProxy::AddOverlay,o_AddOverlay())
     .def("ClearOverlays",&DataViewerProxy::ClearOverlays)
+    .def("ClearActiveOverlay",&DataViewerProxy::ClearActiveOverlay)
     .def("GetSelection",&DataViewerProxy::GetSelection)
     .def("SetSelection",&DataViewerProxy::SetSelection)
     .def("UpdateView",&DataViewerProxy::UpdateView)
@@ -99,6 +100,7 @@ void export_data_viewer()
     .def("SetOffset", &DataViewerProxy::SetOffset)
     .def("GetOffset", &DataViewerProxy::GetOffset)
     .add_property("offset", &DataViewerProxy::GetOffset, &DataViewerProxy::SetOffset)
+    .def("GetButtonGroup", &DataViewerProxy::GetButtonGroup)
     .def("GetQObject",&DataViewerProxy::GetQObject)
     .add_property("qobject",&DataViewerProxy::GetQObject)
 
diff --git a/modules/gui/pymod/export_gosty.cc b/modules/gui/pymod/export_gosty.cc
index adc5594a8454dfb71042755a10c28e1818229e5d..ef7ee6777b43c63ad6c0e8ce0e296b6a0c73c48c 100644
--- a/modules/gui/pymod/export_gosty.cc
+++ b/modules/gui/pymod/export_gosty.cc
@@ -54,8 +54,11 @@ DataViewerProxyPtr app_create_data_viewer2(GostyApp* app, const ost::img::ImageH
 {
   return DataViewerProxyPtr(new DataViewerProxy(app->CreateDataViewer(d)));
 }
+DataViewerProxyPtr app_create_data_viewer3(GostyApp* app, const ost::img::ImageHandle& d, const QString& name, int noparent)
+{
+  return DataViewerProxyPtr(new DataViewerProxy(app->CreateDataViewer(d,name,noparent)));
+}
 #endif
-
 }
 
 void app_add_widget_to_app_a(GostyApp* app, const QString& ident,
@@ -115,6 +118,7 @@ void export_Gosty()
      #if OST_IMG_ENABLED
     .def("CreateDataViewer", &app_create_data_viewer1)
     .def("CreateDataViewer", &app_create_data_viewer2)
+    .def("CreateDataViewer", &app_create_data_viewer3)
     #endif
     .def("ProcessEvents", &GostyApp::ProcessEvents)           
     .add_property("perspective", 
diff --git a/modules/gui/pymod/traj.py b/modules/gui/pymod/traj.py
deleted file mode 100644
index 1fcb1c77959528cdda00f05140f89902d4c86863..0000000000000000000000000000000000000000
--- a/modules/gui/pymod/traj.py
+++ /dev/null
@@ -1,143 +0,0 @@
-#-------------------------------------------------------------------------------
-# This file is part of the OpenStructure project <www.openstructure.org>
-#
-# Copyright (C) 2008-2011 by the OpenStructure authors
-#
-# This library is free software; you can redistribute it and/or modify it under
-# the terms of the GNU Lesser General Public License as published by the Free
-# Software Foundation; either version 3.0 of the License, or (at your option)
-# any later version.
-# This library is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-# FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
-# details.
-#
-# You should have received a copy of the GNU Lesser General Public License
-# along with this library; if not, write to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
-#-------------------------------------------------------------------------------
-from PyQt4.QtCore import *
-from PyQt4.QtGui import *
-from ost import *
-
-class TrajWidget(QWidget):
-  def __init__(self, traj=None, render_mode=gfx.SIMPLE, sel='', parent=None):
-    QWidget.__init__(self, parent, Qt.Tool)
-    self.render_mode=render_mode
-    vb=QVBoxLayout()
-    hb=QHBoxLayout()
-    hb2=QHBoxLayout() 
-    self.selection=sel
-    self.callback=None   
-    self._slider=QSlider(self)
-    self._slider.setOrientation(Qt.Horizontal)
-    self._speed_slider=QSlider(self)
-    self._speed_slider.setOrientation(Qt.Horizontal)
-    self._play=QToolButton(self)
-    self._repeat=QCheckBox(self)
-    self._frame=QLabel(self)
-    self._frameNo=QLabel(self)
-    self._frameEnd=QLabel(self)
-    self._repeat.setText('Repeat')
-    self._slider.setTracking(True)
-    self._play.setText('Play')
-    self._play.setCheckable(True)
-    self._frame.setText('Frame: ')
-    self._frameNo.setNum(0)
-    self._frameNo.setAlignment(Qt.AlignRight)
-    self._frameEnd.setText('/ '+ str(traj.GetFrameCount()-1))
-    self._frameEnd.setAlignment(Qt.AlignLeft)
-    self._speed_slider.setTracking(True)
-    self._speed_slider.setRange(-1000,-1)
-    self._speed_slider.value=-100
-    hb.addWidget(self._play)
-    hb.addWidget(self._repeat)
-    hb2.addWidget(self._frame)
-    hb2.addWidget(self._frameNo)
-    hb2.addWidget(self._frameEnd)
-    hb2.addWidget(self._speed_slider)
-    self.setLayout(vb)
-    vb.addLayout(hb)
-    vb.addWidget(self._slider)
-    vb.addLayout(hb2)
-    self.traj=traj
-    self.time=1
-    QObject.connect(self._play, SIGNAL('toggled(bool)'), 
-                    self._TogglePlay)
-    QObject.connect(self._slider, SIGNAL('valueChanged(int)'), 
-                    self._SliderValueChanged)
-    QObject.connect(self._speed_slider,SIGNAL('valueChanged(int)'),self._SpeedSliderValChanged)
-
-  def _SpeedSliderValChanged(self,speed_pos):
-    self.time=-speed_pos
-    if self._play.isChecked():
-      self._TogglePlay(False)
-      self._TogglePlay(True)
-  
-  def _SetTime(self,t):
-    self.time=t
-    self._speed_slider.setSliderPosition(-t)
-    if self._play.isChecked():
-      self._TogglePlay(False)
-      self._TogglePlay(True)
-  
-  def _SliderValueChanged(self, pos):
-    self.current_frame=pos
-    self._traj.CopyFrame(self.current_frame)
-    self.gfx_entity.UpdatePositions()
-
-  def _GetCurrentFrame(self):
-    return self._slider.sliderPosition()
-    
-  def _SetCurrentFrame(self, pos):
-    if self._slider.maximum()<pos:
-      if self._repeat.isChecked():
-        pos=0
-      else:
-        pos=self._slider.maximum()
-    self._slider.setSliderPosition(pos)
-    self._frameNo.setNum(pos)
-    
-  current_frame=property(_GetCurrentFrame, _SetCurrentFrame)
-  
-  def timerEvent(self, event):
-    self.gfx_entity.BlurSnapshot()
-    self.current_frame+=1
-    if self.callback:
-      self.callback(self.gfx_entity)
-    self.gfx_entity.UpdatePositions()
-  
-  def _TogglePlay(self, playing):
-    if playing:
-      self.timer_id_=self.startTimer(self.time)
-    else:
-      self.killTimer(self.timer_id_)
-
-  def _SetTraj(self, traj):
-    self._traj=traj
-    if self._traj:
-      ev=traj.GetEntity()
-      self.gfx_entity=gfx.Entity("mol",self.render_mode,
-                                 ev.Select(self.selection))
-      gfx.Scene().Add(self.gfx_entity)
-      gfx.Scene().CenterOn(self.gfx_entity)
-      # enable the blur effect
-      #self.gfx_entity.SetBlur(True)
-      self._slider.setMinimum(0)
-      self._slider.setMaximum(self._traj.GetFrameCount()-1)
-      self._slider.setSliderPosition(0)
-    else:
-      if self._traj:
-        del self._anim
-      self._traj=None
-  def _SetBlur(self, blur):
-    self.gfx_entity.SetBlur(blur)
-
-  def _GetBlur(self):
-    return self.gfx_entity.GetBlur()
-
-  def _GetTraj(self):
-    return self._traj
-
-  blur=property(_GetBlur, _SetBlur)
-  traj=property(_GetTraj, _SetTraj)
diff --git a/modules/gui/pymod/trajectory_viewer.py b/modules/gui/pymod/trajectory_viewer.py
new file mode 100644
index 0000000000000000000000000000000000000000..0741f98fb10214f3add38c767d24a3d647293f4c
--- /dev/null
+++ b/modules/gui/pymod/trajectory_viewer.py
@@ -0,0 +1,357 @@
+"""
+This module defines a widget used for visualization of trajectories.
+
+"""
+
+__all__=('TrajWidget','SetTimeUnit','AddTrajectory','RemoveTrajectory','SetSpeed','ReleaseGfxEntity','FixGfxEntity')
+
+#-------------------------------------------------------------------------------
+# This file is part of the OpenStructure project <www.openstructure.org>
+#
+# Copyright (C) 2008-2011 by the OpenStructure authors
+#
+# This library is free software; you can redistribute it and/or modify it under
+# the terms of the GNU Lesser General Public License as published by the Free
+# Software Foundation; either version 3.0 of the License, or (at your option)
+# any later version.
+# This library is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+# FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+# details.
+#
+# You should have received a copy of the GNU Lesser General Public License
+# along with this library; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+#-------------------------------------------------------------------------------
+#from PyQt4.QtCore import *
+#from PyQt4.QtGui import *
+import PyQt4 as _PyQt4
+from PyQt4.QtCore import Qt as _Qt
+from PyQt4.QtCore import QObject as _QObject
+from PyQt4.QtGui import QWidget as _QWidget
+from PyQt4.QtGui import QLabel as _QLabel
+from PyQt4.QtGui import QPushButton as _QPushButton
+from PyQt4.QtCore import SIGNAL as _SIGNAL
+from PyQt4.QtCore import QString as _QString
+import ost as _ost
+import math as _math
+
+
+class TrajWidget(_QWidget):
+  def __init__(self, trajlist=None, golist=None, parent=None,ref_index=0):
+    _QWidget.__init__(self, parent, _Qt.Tool)
+    self.setFocusPolicy(_Qt.ClickFocus)
+    self.ref_index_=ref_index
+    self.trajlist_=trajlist
+    self.golist_=golist
+    self.ehlist_=[go.GetView().handle for go in self.golist_]
+    self.index_dict={}
+    self.fix_dict={}
+    self.modifiers=None
+    for i,go in enumerate(self.golist_):
+      self.index_dict[go.name]=i
+    vb=_PyQt4.QtGui.QVBoxLayout()
+    hb=_PyQt4.QtGui.QHBoxLayout()
+    hb1=_PyQt4.QtGui.QHBoxLayout()
+    hb2=_PyQt4.QtGui.QHBoxLayout()
+    hb3=_PyQt4.QtGui.QHBoxLayout()
+    hb4=_PyQt4.QtGui.QHBoxLayout()
+    self.callback=None   
+    self._slider=_PyQt4.QtGui.QSlider(self)
+    self._slider.setOrientation(_Qt.Horizontal)
+    self._speed_slider=_PyQt4.QtGui.QSlider(self)
+    self._speed_slider.setOrientation(_Qt.Horizontal)
+    self._speedLabel=_QLabel(self)
+    self._speedLabel.setText('Speed:')
+    self._speedLabel.setAlignment(_Qt.AlignLeft)
+    self._play=_PyQt4.QtGui.QToolButton(self)
+    self._repeat=_PyQt4.QtGui.QCheckBox(self)
+    self._frame=_QLabel(self)
+    self._frameNo=_QLabel(self)
+    self._frameEnd=_QLabel(self)
+    self._repeat.setText('Repeat')
+    self._slider.setTracking(True)
+    self._play.setText('Play')
+    self._play.setCheckable(True)
+    self._frame.setText('Frame: ')
+    self._frameNo.setNum(0)
+    self._frameNo.setAlignment(_Qt.AlignRight)
+    self._frameEnd.setAlignment(_Qt.AlignLeft)
+    self._timeLabel=_QLabel(self)
+    self._timeNo=_QLabel(self)
+    self._timeEnd=_QLabel(self)
+    self._timeUnit=_QLabel(self)
+    self._timeLabel.setText('Time: ')
+    self._timeNo.setNum(0)
+    self._timeNo.setAlignment(_Qt.AlignRight)
+    self._timeEnd.setAlignment(_Qt.AlignLeft)
+    self._timeUnit.setAlignment(_Qt.AlignLeft)
+    self._speed_slider.setTracking(True)
+    self._speed_slider_min=-50
+    self._speed_slider_max=-10
+    self._speed_slider.setRange(self._speed_slider_min,self._speed_slider_max)
+    self._right_arrow=_QPushButton(">")
+    self._right_arrow2=_QPushButton(">>")
+    self._right_end=_QPushButton(">|")
+    self._left_arrow=_QPushButton("<")
+    self._left_arrow2=_QPushButton("<<")
+    self._left_end=_QPushButton("|<")
+    self._align_selection=_PyQt4.QtGui.QLineEdit()
+    self._align=_QPushButton("Align")
+    self._align_label=_QLabel(self)
+    self._align_label.setText('Selection:')
+    self._ref_entity_selection=_PyQt4.QtGui.QComboBox()
+    for go in self.golist_:self._ref_entity_selection.addItem(go.name)
+    self._ref_entity_selection_label=_QLabel(self)
+    self._ref_entity_selection_label.setText('Ref. Entity:')
+    hb.addWidget(self._play)
+    hb.addWidget(self._repeat)
+    hb.addWidget(self._ref_entity_selection_label)
+    hb.addWidget(self._ref_entity_selection)
+    hb1.addWidget(self._left_end)
+    hb1.addWidget(self._left_arrow2)
+    hb1.addWidget(self._left_arrow)
+    hb1.addWidget(self._right_arrow)
+    hb1.addWidget(self._right_arrow2)
+    hb1.addWidget(self._right_end)
+    hb2.addWidget(self._frame)
+    hb2.addWidget(self._frameNo)
+    hb2.addWidget(self._frameEnd)
+    hb2.addWidget(self._timeLabel)
+    hb2.addWidget(self._timeNo)
+    hb2.addWidget(self._timeEnd)
+    hb2.addWidget(self._timeUnit)
+    hb3.addWidget(self._speedLabel)
+    hb3.addWidget(self._speed_slider)
+    hb4.addWidget(self._align_label)
+    hb4.addWidget(self._align_selection)
+    hb4.addWidget(self._align)
+    self.setLayout(vb)
+    vb.addLayout(hb)
+    vb.addLayout(hb1)
+    vb.addWidget(self._slider)
+    vb.addLayout(hb2)
+    vb.addLayout(hb3)
+    vb.addLayout(hb4)
+    self._SetSpeedSliderPos(self._speed_slider_min+0.5*(self._speed_slider_max-self._speed_slider_min))
+    _QObject.connect(self._play, _SIGNAL('toggled(bool)'), 
+                    self._TogglePlay)
+    _QObject.connect(self._slider, _SIGNAL('valueChanged(int)'), 
+                    self._SliderValueChanged)
+    _QObject.connect(self._speed_slider,_SIGNAL('valueChanged(int)'),self._SpeedSliderValChanged)
+    _QObject.connect(self._right_end,_SIGNAL('clicked()'),self._RightEndClicked)
+    _QObject.connect(self._right_arrow2,_SIGNAL('clicked()'),self._Right2Clicked)
+    _QObject.connect(self._right_arrow,_SIGNAL('clicked()'),self._RightClicked)
+    _QObject.connect(self._left_arrow2,_SIGNAL('clicked()'),self._Left2Clicked)
+    _QObject.connect(self._left_arrow,_SIGNAL('clicked()'),self._LeftClicked)
+    _QObject.connect(self._left_end,_SIGNAL('clicked()'),self._LeftEndClicked)
+    _QObject.connect(self._align, _SIGNAL('clicked()'), self._AlignClicked)
+    _QObject.connect(self._ref_entity_selection, _SIGNAL('currentIndexChanged(int)'), self._EntitySelected)
+    self._slider.setMinimum(0)
+    self.frame_number_=self.traj_.GetFrameCount()-1
+    self.timestep_=self.traj_.GetDelta()
+    self.SetTimeUnit('ns')
+    self.SetReferenceIndex(0)
+    
+  def _p2u(self,u):
+    if u=="s":
+      return 1.0e-12
+    elif u=="ms":
+      return 1.0e-9
+    elif u=="us":
+      return 1.0e-6
+    elif u=="ns":
+      return 1.0e-3
+    elif u=="ps":
+      return 1.0
+    elif u=="fs":
+      return 1.0e3
+    raise RuntimeError("expected one of s,ms,us,ns,ps or fs for unit")
+
+  def SetTimeUnit(self,u):
+    self._time_prefactor=self._p2u(u)
+    self._timeEnd.setText('/ '+ str((self.frame_number_-1)*self.timestep_*self._time_prefactor))
+    self._timeNo.setNum(self.current_frame*self.timestep_*self._time_prefactor)
+    self._timeUnit.setText('['+u+']')
+  
+  def _SetSpeedSliderPos(self,pos):
+    self._speed_slider.setSliderPosition(pos)
+    self._SpeedSliderValChanged(pos)
+    
+  def _SpeedSliderValChanged(self,speed_pos):
+    self.time=_math.exp(-0.15*speed_pos)
+    if self._play.isChecked():
+      self._TogglePlay(False)
+      self._TogglePlay(True)
+  
+  def _SetTime(self,t):
+    self.time=t
+    self._speed_slider.setSliderPosition(-1./0.15*_math.log(t))
+    if self._play.isChecked():
+      self._TogglePlay(False)
+      self._TogglePlay(True)
+  
+  
+  def _SliderValueChanged(self, pos):
+    self.current_frame=pos
+    for traj,go in zip(self.trajlist_,self.golist_):
+      if go.name in self.fix_dict:continue
+      traj.CopyFrame(self.current_frame)
+      go.UpdatePositions()
+
+  def _GetCurrentFrame(self):
+    return self._slider.sliderPosition()
+    
+  def _SetCurrentFrame(self, pos):
+    if self._slider.maximum()<pos:
+      if self._repeat.isChecked():
+        pos=0
+      else:
+        pos=self._slider.maximum()
+    self._slider.setSliderPosition(pos)
+    self._frameNo.setNum(pos)
+    self._timeNo.setNum(pos*self.timestep_*self._time_prefactor)
+    
+  current_frame=property(_GetCurrentFrame, _SetCurrentFrame)
+  
+  def _GetReferenceTraj(self):
+    return self.trajlist_[self.ref_index_]
+  traj_=property(_GetReferenceTraj)
+  
+  def timerEvent(self, event):
+    #if self.callback:
+    #  self.callback(self.golist_)
+    self.current_frame+=1
+    for go in self.golist_:
+      if go.name in self.fix_dict:continue
+      go.BlurSnapshot()
+      go.UpdatePositions()
+  
+  def _TogglePlay(self, playing):
+    if playing:
+      self.timer_id_=self.startTimer(self.time)
+    else:
+      self.killTimer(self.timer_id_)
+  
+  def _LeftClicked(self):
+    if self.current_frame>0:
+      self.current_frame-=1
+  
+  def _RightClicked(self):
+    if self.current_frame<self.frame_number_-1:
+      self.current_frame+=1
+  
+  def _Left2Clicked(self):
+    if self.current_frame>=10:
+      self.current_frame-=10
+  
+  def _Right2Clicked(self):
+    if self.current_frame<self.frame_number_-10:
+      self.current_frame+=10
+  
+  def _LeftEndClicked(self):
+    if self.current_frame>0:
+      self.current_frame=0
+  
+  def _RightEndClicked(self):
+    if self.current_frame<self.frame_number_-1:
+      self.current_frame=self.frame_number_-1
+    
+  def _AlignClicked(self):
+    ref_eh=self.ehlist_[self.ref_index_]
+    ref_v=ref_eh.Select(str(self._align_selection.text()))
+    if ref_v.GetAtomCount()<=3:
+      print 'not enough atoms for alignment'
+      return
+    for i,t,eh in zip(range(len(self.trajlist_)),self.trajlist_,self.ehlist_):
+      t=_ost.mol.alg.SuperposeFrames(t,eh.Select(str(self._align_selection.text())),ref_v)
+      self.trajlist_[i]=t
+      
+  def _SetBlur(self, blur):
+    for go in self.golist_:
+      go.SetBlur(blur)
+
+  def _GetBlur(self):
+    return self.gfx_entity.GetBlur()
+
+  blur=property(_GetBlur, _SetBlur)
+
+  def SetReferenceIndex(self,ref_index):
+    if type(ref_index)==type(''):
+      self.ref_index_=self.index_dict[ref_index]
+    else:
+      self.ref_index_=ref_index
+    self.frame_number_=self.traj_.GetFrameCount()
+    self.timestep_=self.traj_.GetDelta()
+    self._slider.setMaximum(self.frame_number_-1)
+    self._frameEnd.setText('/ '+ str(self.frame_number_-1))
+    self._timeEnd.setText('/ '+ str((self.frame_number_-1)*self.timestep_*self._time_prefactor))
+    self._ref_entity_selection.setCurrentIndex(self.ref_index_)
+  
+  def _EntitySelected(self,index):
+    ref_index=self.index_dict[str(self._ref_entity_selection.currentText())]
+    self.SetReferenceIndex(ref_index)
+  
+  def keyPressEvent(self, event):
+    key=event.key()
+    if event.modifiers()==_Qt.ControlModifier:
+      self.modifiers=event.modifiers()
+    if self.modifiers==_Qt.ControlModifier:
+      if key==_Qt.Key_Left:
+        self._Left2Clicked()
+      elif key==_Qt.Key_Right:
+        self._Right2Clicked()
+    else:
+      if key==_Qt.Key_Left:
+        self._LeftClicked()
+      elif key==_Qt.Key_Right:
+        self._RightClicked()
+      elif key==_Qt.Key_Space:
+        self._play.setChecked(not self._play.isChecked())
+      else:
+        _QWidget.keyPressEvent(self, event)
+  
+  def keyReleaseEvent(self, event):
+    if event.key()==_Qt.Key_Control:
+      self.modifiers=None
+    else:
+      _QWidget.keyPressEvent(self, event)
+  
+  def FixGfxEntity(self,index,frame_number=None):
+    if not frame_number:frame_number=self.current_frame
+    if type(index)==type(''):
+      self.fix_dict[index]=frame_number
+      i=self.index_dict[index]
+    else:
+      i=index
+      self.fix_dict[self.golist_[i].name]=frame_number
+    self.trajlist_[i].CopyFrame(frame_number)
+    self.golist_[i].UpdatePositions()
+  
+  def ReleaseGfxEntity(self,index):
+    if type(index)==type(''):self.fix_dict.pop(index)
+    else:self.fix_dict.pop(self.golist_[index].name)
+  
+  def AddTrajectory(self,traj,go):
+    self.trajlist_.append(traj)
+    self.golist_.append(go)
+    self.ehlist_.append(go.GetView().handle)
+    self.index_dict[go.name]=len(self.golist_)-1
+  
+  def RemoveTrajectory(self,index):
+    if type(index)==type(''):
+      index=self.index_dict[index]
+    self.trajlist_.pop(index)
+    self.golist_.pop(index)
+    self.ehlist_.pop(index)
+  
+  def SetSpeed(self,val):
+  #Value should be between 0 and 1
+    if not (val<=1. and val >=0.):
+      print 'Speed should be set between 0 and 1'
+      return
+    else:
+      val=self._speed_slider_min-val*(self._speed_slider_min-self._speed_slider_max)
+      self._SetSpeedSliderPos(val)
+      print val
+      
diff --git a/modules/gui/pymod/wrap_gui.cc b/modules/gui/pymod/wrap_gui.cc
index a4474a6f861e427982f701581f852c2ea14c63bf..6e4baae550ea669ab9e9ee79781f1b2c86d4ea12 100644
--- a/modules/gui/pymod/wrap_gui.cc
+++ b/modules/gui/pymod/wrap_gui.cc
@@ -16,10 +16,10 @@
 // along with this library; if not, write to the Free Software Foundation, Inc.,
 // 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 //------------------------------------------------------------------------------
-#include <iostream>
 
 #include <boost/python.hpp>
 #include <QString>
+#include <iostream>
 #include <ost/config.hh>
 #include <ost/gui/admin.hh>
 using namespace boost::python;
diff --git a/modules/gui/src/data_viewer/data_viewer.cc b/modules/gui/src/data_viewer/data_viewer.cc
index 2c1966b4e7ccc73c973f3bafe67a67e310837416..5a75d518126e747a9ac98f8a9f1cf8314f90faf8 100644
--- a/modules/gui/src/data_viewer/data_viewer.cc
+++ b/modules/gui/src/data_viewer/data_viewer.cc
@@ -23,17 +23,17 @@
   Authors: Ansgar Philippsen, Andreas Schenk, Jeff Lovelace
 */
 
+#include <ost/gui/gosty_app.hh>
 #include <cassert>
 #include <iostream>
 //#include <cstring>
 //#include <sstream>
 
 
-//#include <ost/img/io/io_manager.hh>
+//#include <ost/io/io_manager.hh>
 #include <ost/message.hh>
 //#include <ost/img/alg/fft.hh>   
 #include <ost/img/alg/norm.hh>   
-#include <ost/gui/gosty_app.hh>
 #include <ost/gui/dock_widget.hh>
 
 #include <ost/gui/perspective.hh>
@@ -205,6 +205,11 @@ geom::Vec2 DataViewer::GetOffset() const
   return panel_->GetOffset();
 }
 
+QButtonGroup* DataViewer::GetButtonGroup(void)
+{
+  return ov_manager_gui_->GetButtonGroup();
+}
+
 int DataViewer::AddOverlay(const OverlayPtr& ov, bool make_active)
 {
   int retval= ov_manager_->AddOverlay(ov,make_active);
@@ -217,6 +222,11 @@ void DataViewer::ClearOverlays()
   ov_manager_->DeleteAllOverlays();
 }
 
+void DataViewer::ClearActiveOverlay()
+{
+  ov_manager_->DeleteActiveOverlay();
+}
+
 OverlayManagerPtr DataViewer::GetOverlayManager() const
 {
   return ov_manager_;
diff --git a/modules/gui/src/data_viewer/data_viewer.hh b/modules/gui/src/data_viewer/data_viewer.hh
index 902466a68c9b44ca0b7c4e1070b9dbf384de3c7d..ca6893edc34895fde6df19e2b1344ea11affcb98 100644
--- a/modules/gui/src/data_viewer/data_viewer.hh
+++ b/modules/gui/src/data_viewer/data_viewer.hh
@@ -95,6 +95,9 @@ public:
   //! remove all overlays
   void ClearOverlays();
 
+  //! remove the active overlay
+  void ClearActiveOverlay();
+
   //! return the overlay manager for this viewer
   OverlayManagerPtr GetOverlayManager() const;
 
@@ -142,6 +145,8 @@ public:
   //! get image offset
   geom::Vec2 GetOffset() const;
 
+  QButtonGroup* GetButtonGroup(void);
+
 signals:
   void released();
 
diff --git a/modules/gui/src/data_viewer/mask_overlay.cc b/modules/gui/src/data_viewer/mask_overlay.cc
index c0c0e6560344c59f75cb95031a1a372086aba0ad..dc18830debf329c45e6869def2f681b572e7952d 100644
--- a/modules/gui/src/data_viewer/mask_overlay.cc
+++ b/modules/gui/src/data_viewer/mask_overlay.cc
@@ -116,7 +116,7 @@ bool MaskOverlay::OnMouseEvent(QMouseEvent* e,  DataViewerPanel* dvp,
         new_poly_=geom::Polygon2();
         add_mode_=true;
       }
-      new_poly_.AddNode(mousepos);
+      new_poly_.AddNode(mousepos-shift_);
     } else {
       if(active_>=0){
         geom::Polygon2 pol=polygons_[active_];
diff --git a/modules/gui/src/data_viewer/overlay_manager.cc b/modules/gui/src/data_viewer/overlay_manager.cc
index a9bc950284806a530d92687412e398deb7edf3be..ac2a709fbff4888096c6877a08b919e3e1dbc93d 100644
--- a/modules/gui/src/data_viewer/overlay_manager.cc
+++ b/modules/gui/src/data_viewer/overlay_manager.cc
@@ -103,6 +103,18 @@ void OverlayManager::DeleteAllOverlays()
   ov_list_.clear();
 }
 
+void OverlayManager::DeleteActiveOverlay()
+{
+  OverlayList::iterator pos=find_ov(active_ov_);
+  if (pos!=ov_list_.end()) {
+    for(ObserverList::iterator xit=obs_list_.begin();xit!=obs_list_.end();++xit) {
+      (*xit)->OnRemoveOverlay(this, pos->id);
+    }
+  pos=ov_list_.erase(pos);
+  active_ov_.reset();
+  }
+  
+}
 
 void OverlayManager::ActivateOverlay(const String& name)
 {
@@ -351,4 +363,15 @@ OverlayManager::OverlayList::iterator OverlayManager::find_ov(const String& name
   return ov_list_.end();
 }
 
+OverlayManager::OverlayList::iterator OverlayManager::find_ov(OverlayPtr anoverlay)
+{
+  for(OverlayList::iterator it=ov_list_.begin();it!=ov_list_.end();++it) {
+    if(anoverlay==it->ov) {
+      return it;
+      break;
+    }
+  }
+  return ov_list_.end();
+}
+
 }}}  //ns
diff --git a/modules/gui/src/data_viewer/overlay_manager.hh b/modules/gui/src/data_viewer/overlay_manager.hh
index d1e9736093b20134e17ed2e573a4e001d44b8bd8..2a3bb76573b3052656a0533ec3798dc377bff1e6 100644
--- a/modules/gui/src/data_viewer/overlay_manager.hh
+++ b/modules/gui/src/data_viewer/overlay_manager.hh
@@ -110,6 +110,8 @@ public:
 
   void DeleteAllOverlays();
 
+  void DeleteActiveOverlay();
+
   void OnDraw(QPainter& pnt,  DataViewerPanel* dvp) const;
 
   bool OnMouseEvent(QMouseEvent* e,  DataViewerPanel* dvp, const QPoint& lastmouse) const;
@@ -138,6 +140,7 @@ private:
 
   OverlayList::iterator find_ov(int id);
   OverlayList::iterator find_ov(const String& name);
+  OverlayList::iterator find_ov(OverlayPtr anoverlay);
 };
 
 
diff --git a/modules/gui/src/data_viewer/overlay_manager_gui.cc b/modules/gui/src/data_viewer/overlay_manager_gui.cc
index ba9d884cbd88b0f603c670a93dcfb995eb168177..69bb6a5dd91f740aec70fea1a4684fcbaed7a2da 100644
--- a/modules/gui/src/data_viewer/overlay_manager_gui.cc
+++ b/modules/gui/src/data_viewer/overlay_manager_gui.cc
@@ -209,6 +209,11 @@ void OverlayManagerGUI::OnEventMenu(QAction* e)
 {
 }
 
+QButtonGroup* OverlayManagerGUI::GetButtonGroup(void)
+{
+  return active_group_;
+}
+
 void OverlayManagerGUI::UpdateView()
 {
 }
diff --git a/modules/gui/src/data_viewer/overlay_manager_gui.hh b/modules/gui/src/data_viewer/overlay_manager_gui.hh
index 437b0c3b72617d6ad2d213be3feadee2cf34997c..13ba39f87dedfcdeb5c78bdb5e633dd2ed7a77d6 100644
--- a/modules/gui/src/data_viewer/overlay_manager_gui.hh
+++ b/modules/gui/src/data_viewer/overlay_manager_gui.hh
@@ -120,6 +120,8 @@ public:
   void OnEventMenuPopup(QAction* e);
   void OnEventMenu(QAction* e);
 
+  QButtonGroup* GetButtonGroup(void);
+
 public slots:
   void SetInfoText(const QString& t);
 
diff --git a/modules/gui/src/file_loader.hh b/modules/gui/src/file_loader.hh
index 23419b613eb851fb9aeeec56ce8c9efe91701050..8e2e50758643ae67df2ea8f9d668f2e0128b7bde 100644
--- a/modules/gui/src/file_loader.hh
+++ b/modules/gui/src/file_loader.hh
@@ -26,11 +26,11 @@
 #include <ost/gui/module_config.hh>
 
 #include <ost/io/io_exception.hh>
-#include <ost/io/entity_io_handler.hh>
-#include <ost/io/sequence_io_handler.hh>
-#include <ost/io/surface_io_handler.hh>
+#include <ost/io/mol/entity_io_handler.hh>
+#include <ost/io/seq/sequence_io_handler.hh>
+#include <ost/io/mol/surface_io_handler.hh>
 #if OST_IMG_ENABLED
-#include <ost/io/map_io_handler.hh>
+#  include <ost/io/img/map_io_handler.hh>
 #endif
 
 #include <QString>
diff --git a/modules/gui/src/file_type_dialog.hh b/modules/gui/src/file_type_dialog.hh
index 4cd7746afb32d17f843b9d4680e07e5aaa2c8fd6..f1fe6ce5e5fc6e856b15c091b65d03e41309bda2 100644
--- a/modules/gui/src/file_type_dialog.hh
+++ b/modules/gui/src/file_type_dialog.hh
@@ -27,11 +27,11 @@
 
 
 
-#include <ost/io/entity_io_handler.hh>
-#include <ost/io/sequence_io_handler.hh>
-#include <ost/io/surface_io_handler.hh>
+#include <ost/io/mol/entity_io_handler.hh>
+#include <ost/io/seq/sequence_io_handler.hh>
+#include <ost/io/mol/surface_io_handler.hh>
 #if OST_IMG_ENABLED
-#include <ost/io/map_io_handler.hh>
+#include <ost/io/img/map_io_handler.hh>
 #endif
 
 #include <QDialog>
diff --git a/modules/gui/src/gl_canvas.cc b/modules/gui/src/gl_canvas.cc
index f94bff0458c4fbfe746c489e424ebc467c9137d2..9e39789b90bbf9d57dbf04f1da02f8563de73215 100644
--- a/modules/gui/src/gl_canvas.cc
+++ b/modules/gui/src/gl_canvas.cc
@@ -16,11 +16,11 @@
 // along with this library; if not, write to the Free Software Foundation, Inc.,
 // 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 //------------------------------------------------------------------------------
+#include <ost/gui/python_shell/python_interpreter.hh>
 #ifndef _MSC_VER
 #include <sys/time.h>
 #endif
 
-#include <ost/gui/python_shell/python_interpreter.hh>
 #include "gl_canvas.hh"
 #include "gl_win.hh"
 
diff --git a/modules/gui/src/gosty.cc b/modules/gui/src/gosty.cc
index a767d1b9f06f68b58fc66faee54d6de7c2f9d00a..b5275bb3e694c37359aad5eb2d5140544aae58f8 100644
--- a/modules/gui/src/gosty.cc
+++ b/modules/gui/src/gosty.cc
@@ -16,23 +16,23 @@
 // along with this library; if not, write to the Free Software Foundation, Inc.,
 // 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 //------------------------------------------------------------------------------
-#include <utility>
-#include <vector>
-#include <signal.h>
-#include <iostream>
-#include <sstream>
-#include <ctime>
 
-#include <ost/gui/module_config.hh>
-#include <ost/log.hh>
-#include <ost/platform.hh>
 #include <ost/gui/python_shell/text_logger.hh>
 #include <ost/gui/python_shell/python_shell.hh>
 #include <ost/gui/python_shell/python_interpreter.hh>
 #include "gl_win.hh"
 #include "widget_state_saver.hh"
 #include "gosty.hh"
+#include <ost/log.hh>
+#include <ost/platform.hh>
+#include <ost/gui/module_config.hh>
 
+#include <utility>
+#include <vector>
+#include <signal.h>
+#include <iostream>
+#include <sstream>
+#include <ctime>
 // must come last
 #include <QApplication>
 #include <QResource>
diff --git a/modules/gui/src/gosty_app.cc b/modules/gui/src/gosty_app.cc
index 66c612e94cb2484d17f51b8510d9276646298e81..949c764910e16d957ccec9bd1edba5e9c24b6ec5 100644
--- a/modules/gui/src/gosty_app.cc
+++ b/modules/gui/src/gosty_app.cc
@@ -109,20 +109,30 @@ SequenceViewer* GostyApp::GetSequenceViewer()
 }
 
 #if OST_IMG_ENABLED
-ost::img::gui::DataViewer* GostyApp::CreateDataViewer(const ost::img::ImageHandle& d, const QString& name)
+ost::img::gui::DataViewer* GostyApp::CreateDataViewer(const ost::img::ImageHandle& d, const QString& name, const int noparent)
 {
-  ost::img::gui::DataViewer* viewer=new ost::img::gui::DataViewer(main_,d,name);
-  QMdiSubWindow* mdi=new QMdiSubWindow(this->GetPerspective()->GetMainArea());
-  mdi->setWindowTitle(name);
-  mdi->setWidget(viewer);
-  mdi->setFocusProxy(viewer);
-  viewer->setAttribute(Qt::WA_DeleteOnClose);
-  mdi->setAttribute(Qt::WA_DeleteOnClose);
-  viewer->setParent(mdi);
-  this->GetPerspective()->GetMainArea()->addSubWindow(mdi);
-  mdi->showMaximized();
-  connect(viewer,SIGNAL(released()),mdi,SLOT(close()));
-  return viewer; 
+  ost::img::gui::DataViewer* viewer=NULL;
+  if (noparent)
+  {
+    viewer=new ost::img::gui::DataViewer(NULL,d,name);
+  }
+  else
+  {
+    viewer=new ost::img::gui::DataViewer(main_,d,name);
+    QMdiSubWindow* mdi=new QMdiSubWindow(this->GetPerspective()->GetMainArea());
+    mdi->setWindowTitle(name);
+    mdi->setWidget(viewer);
+    mdi->setFocusProxy(viewer);
+    viewer->setAttribute(Qt::WA_DeleteOnClose);
+    mdi->setAttribute(Qt::WA_DeleteOnClose);
+    viewer->setParent(mdi);
+    this->GetPerspective()->GetMainArea()->addSubWindow(mdi);
+    mdi->showMaximized();
+    connect(viewer,SIGNAL(released()),mdi,SLOT(close()));
+  }
+
+  return viewer;
+
 }
 #endif
   
diff --git a/modules/gui/src/gosty_app.hh b/modules/gui/src/gosty_app.hh
index a635c407ae9cd3e75570101b73aeb3948f0f5910..47b0f23fadfe151a262e25f39910b5da9eda1c24 100644
--- a/modules/gui/src/gosty_app.hh
+++ b/modules/gui/src/gosty_app.hh
@@ -25,8 +25,8 @@
 
 
 #include <ost/config.hh>
-#include <ost/gui/module_config.hh>
 #include <ost/gui/main.hh>
+#include <ost/gui/module_config.hh>
 #include <ost/gui/widget_geom_handler.hh>
 
 
@@ -124,7 +124,7 @@ public:
 #if OST_IMG_ENABLED
   /// \brief create new DataViewer
   /// 
-  ost::img::gui::DataViewer* CreateDataViewer(const ost::img::ImageHandle& d, const QString& name="");
+  ost::img::gui::DataViewer* CreateDataViewer(const ost::img::ImageHandle& d, const QString& name="", const int noparent=0);
 #endif
 
   /// \brief give the application time to run the mainloop and process events
diff --git a/modules/gui/src/main.hh b/modules/gui/src/main.hh
index deee0797264437d5b47f041fe712fe8da19c9c88..86105fb96e78180d0b56c17058bf1348ea5ca26d 100644
--- a/modules/gui/src/main.hh
+++ b/modules/gui/src/main.hh
@@ -19,11 +19,11 @@
 #ifndef OST_GUI_OST_MAIN_HH
 #define OST_GUI_OST_MAIN_HH
 
-#include <map>
-#include <boost/shared_ptr.hpp>
 
-#include <ost/gui/module_config.hh>
 #include <ost/gui/python_shell/text_logger.hh>
+#include <boost/shared_ptr.hpp>
+#include <ost/gui/module_config.hh>
+#include <map>
 
 #include "widget_state_saver.hh"
 
diff --git a/modules/gui/src/panels/panel_bar_widget_holder.cc b/modules/gui/src/panels/panel_bar_widget_holder.cc
index a9789cb2abd90498be2a7798aeec8cb3d143c720..358f86eef565b82f586c3b1003b49f58a40e3ad4 100644
--- a/modules/gui/src/panels/panel_bar_widget_holder.cc
+++ b/modules/gui/src/panels/panel_bar_widget_holder.cc
@@ -16,7 +16,6 @@
 // along with this library; if not, write to the Free Software Foundation, Inc.,
 // 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 //------------------------------------------------------------------------------
-#include <cassert>
 
 
 #include <ost/gui/gosty_app.hh>
@@ -30,6 +29,7 @@
 #include "panel_bar.hh"
 #include "panel_bar_widget_holder.hh"
 
+#include <cassert>
 #include <QApplication>
 #include <QMenu>
 #include <QHBoxLayout>
diff --git a/modules/gui/src/python_shell/gutter.cc b/modules/gui/src/python_shell/gutter.cc
index bb8cb98ee3748e8ecccc22396bc2a0725715127b..eed96f4573cc1b8ea35d5d5e51cd8de0ae1c257e 100644
--- a/modules/gui/src/python_shell/gutter.cc
+++ b/modules/gui/src/python_shell/gutter.cc
@@ -49,7 +49,7 @@ void Gutter::paintEvent(QPaintEvent* paint_event)
   QPainter painter(this);
   painter.setPen(QPen(Qt::black));
   painter.fillRect(paint_event->rect(), QBrush(Qt::lightGray));
-  for (GutterBlockList::const_iterator it=blocks.begin(); 
+  for (GutterBlockList::const_iterator it=blocks.begin();
        it!=blocks.end(); ++it) {
     if (it->type & BLOCKTYPE_ACTIVE) {
       QColor green(Qt::green);
diff --git a/modules/gui/src/python_shell/python_completer.cc b/modules/gui/src/python_shell/python_completer.cc
index 9ec41df66d7a4e57fdf61a5a30809a5b3a596504..af7f93d380726b0d520f496645a2f519f2fd09b8 100644
--- a/modules/gui/src/python_shell/python_completer.cc
+++ b/modules/gui/src/python_shell/python_completer.cc
@@ -20,10 +20,10 @@
   Authors: Marco Biasini, Andreas Schenk
  */
 
-#include <iostream>
 
 #include "python_completer.hh"
 #include "python_namespace_tree_model.hh"
+#include <iostream>
 #include <QStringList>
 
 
diff --git a/modules/gui/src/python_shell/python_context_parser.hh b/modules/gui/src/python_shell/python_context_parser.hh
index ddc2c93ddd19b9bf65169fb062dac94a0999ba93..0e5df593f494fb57edb1c3dc188ca5e5b32533b6 100644
--- a/modules/gui/src/python_shell/python_context_parser.hh
+++ b/modules/gui/src/python_shell/python_context_parser.hh
@@ -23,10 +23,10 @@
   Author: Marco Biasini
 */
 
+#include "python_tokenizer.hh"
 #include <vector>
 #include <iostream>
 
-#include "python_tokenizer.hh"
 
 namespace ost { namespace gui {
     
diff --git a/modules/gui/src/python_shell/python_interpreter.hh b/modules/gui/src/python_shell/python_interpreter.hh
index 5f12d6bbde982697f00350bcf2a1160992000e73..3cbe055cbb6dc0afd060a19b1c54b495e4372bb2 100644
--- a/modules/gui/src/python_shell/python_interpreter.hh
+++ b/modules/gui/src/python_shell/python_interpreter.hh
@@ -27,14 +27,11 @@
 #ifndef PYTHON_INTERPRETER_HH
 #define PYTHON_INTERPRETER_HH
 
-#include <vector>
 
-#include <ost/gui/module_config.hh>
-
-#include <ost/gui/module_config.hh>
 #include "python_interpreter_worker.hh"
 #include "output_redirector.hh"
 #include "main_thread_runner.hh"
+#include <ost/gui/module_config.hh>
 
 #include <QQueue>
 #include <QMetaType>
diff --git a/modules/gui/src/python_shell/python_interpreter_worker.cc b/modules/gui/src/python_shell/python_interpreter_worker.cc
index 68f38a247f0026555ee87ff9d12da4b41579c217..e75f484600f3b749756042783316ece6697991fb 100644
--- a/modules/gui/src/python_shell/python_interpreter_worker.cc
+++ b/modules/gui/src/python_shell/python_interpreter_worker.cc
@@ -1,3 +1,23 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2014 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+
 #include "python_interpreter_worker.hh"
 #include "python_interpreter.hh"
 
diff --git a/modules/gui/src/python_shell/python_interpreter_worker.hh b/modules/gui/src/python_shell/python_interpreter_worker.hh
index ed80f6fe78b308f1269a5a723bffe46883fbe35b..557604900e046dee0c46fec77550a4b1e2292ad4 100644
--- a/modules/gui/src/python_shell/python_interpreter_worker.hh
+++ b/modules/gui/src/python_shell/python_interpreter_worker.hh
@@ -1,14 +1,34 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2014 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+
 #ifndef PYTHON_INTERPRETER_WORKER_HH
 #define PYTHON_INTERPRETER_WORKER_HH
 
-#include <csignal>
-#include <utility>
 // workaround for QTBUG-22829: https://bugreports.qt-project.org/browse/QTBUG-22829
 #ifndef Q_MOC_RUN
   #include <boost/python.hpp>
   #include <boost/shared_ptr.hpp>
 #endif
 #include "output_redirector.hh"
+#include <csignal>
+#include <utility>
 #include <QObject>
 #include <QQueue>
 
diff --git a/modules/gui/src/python_shell/python_namespace_tree_item.cc b/modules/gui/src/python_shell/python_namespace_tree_item.cc
index b3e2960901f91b003c3fed8184f5d9e39a6313e6..5c59e235810eb61c730cc36b11989aa416c46901 100644
--- a/modules/gui/src/python_shell/python_namespace_tree_item.cc
+++ b/modules/gui/src/python_shell/python_namespace_tree_item.cc
@@ -17,9 +17,9 @@
 // 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 //------------------------------------------------------------------------------
 
+#include "python_namespace_tree_item.hh"
 #include <ost/base.hh>
 
-#include "python_namespace_tree_item.hh"
 
 
 
@@ -107,13 +107,9 @@ void PythonNamespaceTreeItem::FetchMore()
       continue;
     }
     bp::object child_namespace;
-    bool found=false;
     try{
       String keystring=bp::extract<String>(keys[i]);
       child_namespace=namespace_.attr(keystring.c_str());
-      if (bp::len(dir(child_namespace))>0) {
-        found=true;
-      }      
     } catch(bp::error_already_set) {
       PyErr_Clear();
     }
diff --git a/modules/gui/src/python_shell/python_shell.cc b/modules/gui/src/python_shell/python_shell.cc
index cdd9c28c3315058b54bcfa4c9e1a206b4a20fcbc..b651747b8d522c10eb3b9514491c4997539ff627 100644
--- a/modules/gui/src/python_shell/python_shell.cc
+++ b/modules/gui/src/python_shell/python_shell.cc
@@ -21,11 +21,11 @@
   Author: Marco Biasini
  */
 
+#include "python_shell_widget.hh"
+#include "python_shell.hh"
 #include <ost/gui/gosty_app.hh>
 #include <ost/gui/widget_registry.hh>
 
-#include "python_shell.hh"
-#include "python_shell_widget.hh"
 
 #include <QVBoxLayout>
 namespace ost { namespace gui {
diff --git a/modules/gui/src/python_shell/python_shell_fw.hh b/modules/gui/src/python_shell/python_shell_fw.hh
index d70eb83d841be3ab6e26fe941e81702c0bd41177..9abb7cae16532955fe0d1177fab66a4988b91492 100644
--- a/modules/gui/src/python_shell/python_shell_fw.hh
+++ b/modules/gui/src/python_shell/python_shell_fw.hh
@@ -23,7 +23,6 @@
   Author: Andreas Schenk
  */
 
-#include <vector>
 namespace ost { namespace gui {
 
 // fw decl
@@ -51,7 +50,6 @@ struct GutterBlock{
   BlockType type;
 };
 
-typedef std::vector<GutterBlock> GutterBlockList;
 
 }}//ns
 
diff --git a/modules/gui/src/python_shell/python_shell_widget.cc b/modules/gui/src/python_shell/python_shell_widget.cc
index 9adafdd7c764e8727f3a7dab0912c4b82347bbd3..9c816f5dcb6585bfba7af6ec202bae17e08ad75a 100644
--- a/modules/gui/src/python_shell/python_shell_widget.cc
+++ b/modules/gui/src/python_shell/python_shell_widget.cc
@@ -20,21 +20,20 @@
   Authors: Marco Biasini, Andreas Schenk
  */
 
-#include <iostream>
 
 
 #include "python_shell_widget.hh"
-
+#include "state_machine.hh"
+#include "state.hh"
 #include "gutter.hh"
-
 #include "string_literal_positions.hh"
-
 #include "python_shell_text_document_layout.hh"
-
 #include "python_completer.hh"
 #include "path_completer.hh"
 #include "transition.hh"
 
+#include <iostream>
+
 #include <QApplication>
 #include <QFontMetrics>
 #include <QClipboard>
diff --git a/modules/gui/src/python_shell/python_shell_widget.hh b/modules/gui/src/python_shell/python_shell_widget.hh
index f2b2dbcedefc22696a6b5f1d7cf0b0f4753f0fdf..090272bbbd00e3b5155a917e2fc566c2c41cfc44 100644
--- a/modules/gui/src/python_shell/python_shell_widget.hh
+++ b/modules/gui/src/python_shell/python_shell_widget.hh
@@ -25,13 +25,11 @@
 #define OST_GUI_PYTHON_SHELL_WIDGET_HH
 
 
-#include <ost/gui/module_config.hh>
 #include "python_interpreter.hh"
 #include "shell_history.hh"
 #include  "python_shell_fw.hh"
 #include "python_syntax_highlighter.hh"
-#include "state_machine.hh"
-#include "state.hh"
+#include <ost/gui/module_config.hh>
 
 #include <QPlainTextEdit>
 #include <QHash>
@@ -41,7 +39,10 @@ namespace ost { namespace gui {
 class Gutter;
 class PythonCompleter;
 class PathCompleter;
+class State;
+class StateMachine;
 
+typedef std::vector<GutterBlock> GutterBlockList;
 
 class DLLEXPORT_OST_GUI PythonShellWidget : public QPlainTextEdit {
 
diff --git a/modules/gui/src/python_shell/python_syntax_highlighter.cc b/modules/gui/src/python_shell/python_syntax_highlighter.cc
index cca2c0b8b088550a007c4aacf7c6789961a279ad..72ab4be2a096a3cab15fc0849eff8fcbb42dbc6d 100644
--- a/modules/gui/src/python_shell/python_syntax_highlighter.cc
+++ b/modules/gui/src/python_shell/python_syntax_highlighter.cc
@@ -20,14 +20,13 @@
   Authors: Marco Biasini, Andreas Schenk
  */
 
-#include <iostream>
 
 #include "python_shell.hh"
 #include "string_literal_positions.hh"
-
 #include "python_syntax_highlighter.hh"
 #include "python_context_parser.hh"
 
+#include <iostream>
 
 #include <QDebug>
 #include <QTextCursor>
diff --git a/modules/gui/src/python_shell/shell_history.hh b/modules/gui/src/python_shell/shell_history.hh
index 20e0405afe4aec3b1d17b7533b9750c0b50af57e..87e082af623c137959144216a5778698a545630d 100644
--- a/modules/gui/src/python_shell/shell_history.hh
+++ b/modules/gui/src/python_shell/shell_history.hh
@@ -22,8 +22,8 @@
   Author: Andreas Schenk
  */
 
-#include <vector>
 #include "python_shell_fw.hh"
+#include <vector>
 #include <QString>
 
 namespace ost { namespace gui {
diff --git a/modules/gui/src/python_shell/state.cc b/modules/gui/src/python_shell/state.cc
index 381fffff4d120cf891fa2b5e552258cdfafc5274..f5b7c522306c5f96df8b0817005f30f02a70800a 100644
--- a/modules/gui/src/python_shell/state.cc
+++ b/modules/gui/src/python_shell/state.cc
@@ -1,7 +1,26 @@
-#include <cassert>
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2014 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
 #include "transition.hh"
 #include "state.hh"
 #include "state_machine.hh"
+#include <cassert>
 
 namespace ost { namespace gui {
 
diff --git a/modules/gui/src/python_shell/state.hh b/modules/gui/src/python_shell/state.hh
index a6c05c36b3b6fc94db8498caf41a0fa71f90323f..679542078d8a17086c099b0dfa6e9df04173ae68 100644
--- a/modules/gui/src/python_shell/state.hh
+++ b/modules/gui/src/python_shell/state.hh
@@ -1,3 +1,22 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2014 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
 #ifndef PYTHON_SHELL_STATE_HH
 #define PYTHON_SHELL_STATE_HH
 
diff --git a/modules/gui/src/python_shell/state_machine.cc b/modules/gui/src/python_shell/state_machine.cc
index 9ce3f37bc85946686bcb1d34f3593b37789336ce..048ed68eb83a0bdd2324d451e7f4f6f7aea65ed2 100644
--- a/modules/gui/src/python_shell/state_machine.cc
+++ b/modules/gui/src/python_shell/state_machine.cc
@@ -1,3 +1,22 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2014 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
 #include <QEvent>
 #include <QKeyEvent>
 #include <QMouseEvent>
diff --git a/modules/gui/src/python_shell/state_machine.hh b/modules/gui/src/python_shell/state_machine.hh
index ac265dfd91e898d3af9ef483de11076a846cafdb..8db26c10a64f521ab5e27021e78e4db391b7b245 100644
--- a/modules/gui/src/python_shell/state_machine.hh
+++ b/modules/gui/src/python_shell/state_machine.hh
@@ -1,3 +1,22 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2014 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
 #ifndef PYTHON_SHELL_STATE_MACHINE_HH
 #define PYTHON_SHELL_STATE_MACHINE_HH
 
diff --git a/modules/gui/src/python_shell/transition.cc b/modules/gui/src/python_shell/transition.cc
index b2a07eb6b724273523dbf78121b768f260977f12..9916657713fe9be0a0c56913cffaf5dc312b468c 100644
--- a/modules/gui/src/python_shell/transition.cc
+++ b/modules/gui/src/python_shell/transition.cc
@@ -1,7 +1,26 @@
-#include <cassert>
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2014 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
 #include "python_shell_widget.hh"
 #include "transition.hh"
 #include "state.hh"
+#include <cassert>
 #include <QKeyEvent>
 #include <QMouseEvent>
 
diff --git a/modules/gui/src/python_shell/transition.hh b/modules/gui/src/python_shell/transition.hh
index a17b38ee5c55b85b2915651bb2b1e9e28020fae0..a3550f4280f8f186023f5750aeb7feee8fb5da92 100644
--- a/modules/gui/src/python_shell/transition.hh
+++ b/modules/gui/src/python_shell/transition.hh
@@ -1,12 +1,31 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2014 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
 #ifndef PYTHON_SHELL_TRANSITION_HH
 #define PYTHON_SHELL_TRANSITION_HH
 
-#include <utility>
 #include <ost/gui/python_shell/python_interpreter.hh>
+#include "transition_guard.hh"
+#include <utility>
 
 #include <QObject>
 #include <QEvent>
-#include "transition_guard.hh"
 //fw decl
 class QKeyEvent;
 class QMouseEvent;
diff --git a/modules/gui/src/python_shell/transition_guard.cc b/modules/gui/src/python_shell/transition_guard.cc
index 940d5bba15a96f7605ffa90348cf6f64933f9994..acf6ff2c95a35cef4b689c22a3c22822e82ff7c0 100644
--- a/modules/gui/src/python_shell/transition_guard.cc
+++ b/modules/gui/src/python_shell/transition_guard.cc
@@ -1,7 +1,27 @@
-#include <iostream>
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2014 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+
 #include "transition_guard.hh"
 #include "python_shell_widget.hh"
 #include "shell_history.hh"
+#include <iostream>
 
 namespace ost { namespace gui {
 
diff --git a/modules/gui/src/python_shell/transition_guard.hh b/modules/gui/src/python_shell/transition_guard.hh
index 5a2906481c36da41fc7ef1d5aefecfc853d76ad9..c3b20201a7d5f7a3b0e1c2d21c34f819a7294ac3 100644
--- a/modules/gui/src/python_shell/transition_guard.hh
+++ b/modules/gui/src/python_shell/transition_guard.hh
@@ -1,3 +1,22 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2014 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
 #ifndef TRANSITION_GUARD_HH
 #define TRANSITION_GUARD_HH
 
diff --git a/modules/gui/src/scene_menu.cc b/modules/gui/src/scene_menu.cc
index ef02a2aee2807a00034228fc451a2763d73bdde1..bedcf0df437f5feb57243056dbbebd2bd1ebd02e 100644
--- a/modules/gui/src/scene_menu.cc
+++ b/modules/gui/src/scene_menu.cc
@@ -16,9 +16,9 @@
 // along with this library; if not, write to the Free Software Foundation, Inc.,
 // 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 //------------------------------------------------------------------------------
+#include <ost/gui/gosty_app.hh>
 #include <ost/dyn_cast.hh>
 #include <ost/mol/view_op.hh>
-#include <ost/gui/gosty_app.hh>
 #include <ost/gfx/scene.hh>
 #include <ost/gfx/entity.hh>
 
diff --git a/modules/gui/src/scene_selection.cc b/modules/gui/src/scene_selection.cc
index 2faa79d6c09bbe1c5e3092126cf42a2acbe03bfb..be66a839918dcaa10d6f71db4bcc99ff989f89b6 100644
--- a/modules/gui/src/scene_selection.cc
+++ b/modules/gui/src/scene_selection.cc
@@ -103,6 +103,7 @@ void SceneSelection::CenterOnObjects() {
         geom::AlignedCuboid pair = obj->GetBoundingBox();
         min = geom::Min(min, pair.GetMin());
         max = geom::Max(max, pair.GetMax());
+        std::cerr << obj->GetName() << " " << min << " " << max << std::endl;
         changed=true;
       }
     }
diff --git a/modules/gui/src/scene_win/context_menu.cc b/modules/gui/src/scene_win/context_menu.cc
index 370800556aa052a3f11460a4c0578dfb2935c157..70a8c2bdcd088308fa5073fa6a8093df7fb9fbf6 100644
--- a/modules/gui/src/scene_win/context_menu.cc
+++ b/modules/gui/src/scene_win/context_menu.cc
@@ -199,16 +199,15 @@ void ContextMenu::ShowMenu(const QPoint& pos)
       flags &= ~SINGLE;
     }
     QMenu* menu = new QMenu();
-    QMapIterator<QAction*, ContextActionTypes> i(actions_);
+    QVectorIterator<std::pair<QAction*, ContextActionTypes> > i(actions_);
     flags ^= NOT_VISIBLE;
     flags ^= NOT_HIDDEN;
     while (i.hasNext()) {
-        i.next();
-        if (i.value() == (i.value() & flags)){
-          menu->addAction(i.key());
-        }
+      const std::pair<QAction*, ContextActionTypes>& value = i.next();
+      if (value.second == (value.second & flags)){
+        menu->addAction(value.first);
+      }
     }
-
     if(! menu->actions().empty()){
       menu->popup(pos);
     }
@@ -216,7 +215,7 @@ void ContextMenu::ShowMenu(const QPoint& pos)
 }
 
 void ContextMenu::AddAction(QAction* action,ContextActionTypes type){
-  actions_[action] = type;
+  actions_.push_back(std::make_pair(action, type));
 }
 
 void ContextMenu::AddView(){
diff --git a/modules/gui/src/scene_win/context_menu.hh b/modules/gui/src/scene_win/context_menu.hh
index c145164d7c3303ccca24d447497ffb465252070b..56ca0929a2693f65756584341463c24dfa09f26f 100644
--- a/modules/gui/src/scene_win/context_menu.hh
+++ b/modules/gui/src/scene_win/context_menu.hh
@@ -28,7 +28,7 @@
 #include <ost/gui/scene_win/scene_win_model.hh>
 
 #include <QFlags>
-#include <QMap>
+#include <QVector>
 #include <QAbstractItemModel>
 #include <QTreeView>
 namespace ost { namespace gui {
@@ -53,6 +53,7 @@ enum ContextActionType
   MAP_DSAMPLED_AVAIL=0x4000
 #endif
 };
+
 Q_DECLARE_FLAGS(ContextActionTypes, ContextActionType)
 
 
@@ -73,7 +74,7 @@ private slots:
   void DeleteView();
 
 private:
-  QMap<QAction*, ContextActionTypes> actions_;
+  QVector<std::pair<QAction*, ContextActionTypes> > actions_;
 
   QTreeView* view_;
   SceneWinModel* model_;
diff --git a/modules/gui/src/scene_win/entity_node.cc b/modules/gui/src/scene_win/entity_node.cc
index 02dc97c54f8396bc2e986b208c727a4a52144b43..1fa74f165a1318011fb6ede4708485723469fdc7 100644
--- a/modules/gui/src/scene_win/entity_node.cc
+++ b/modules/gui/src/scene_win/entity_node.cc
@@ -72,7 +72,9 @@ EntityNode::EntityNode(gfx::EntityP& entity, SceneNode* parent):
   custom_view_ = new LabelNode("Custom Views", this);
   model->AddNode(this, custom_view_);
 
-  node = new EntityPartNode("Full View", entity, mol::QueryViewWrapper(entity->GetView()), this);
+  node = new EntityPartNode("Full View", entity,
+                            mol::QueryViewWrapper(entity->GetView()),
+                            this);
   model->AddNode(this, node);
 
   node = new CurrentSelectionNode(entity, this);
diff --git a/modules/gui/src/scene_win/gfx_scene_node.cc b/modules/gui/src/scene_win/gfx_scene_node.cc
index 2b7255f25c663152d5d6eb1e3a247b99bddf131b..ca06e19c844a54e5fc36bd75c627d0cd9d042d5c 100644
--- a/modules/gui/src/scene_win/gfx_scene_node.cc
+++ b/modules/gui/src/scene_win/gfx_scene_node.cc
@@ -25,12 +25,15 @@
 #include <QFont>
 namespace ost { namespace gui {
 
-GfxSceneNode::GfxSceneNode(gfx::GfxNodeP gfx_node, SceneNode* parent):SceneNode(parent),gfx_node_(gfx_node){}
+GfxSceneNode::GfxSceneNode(gfx::GfxNodeP gfx_node, SceneNode* parent):
+  SceneNode(parent), gfx_node_(gfx_node) { }
 
-GfxSceneNode::GfxSceneNode(gfx::GfxNodeP gfx_node, QObject* parent):SceneNode(parent),gfx_node_(gfx_node){}
+GfxSceneNode::GfxSceneNode(gfx::GfxNodeP gfx_node, QObject* parent):
+  SceneNode(parent), gfx_node_(gfx_node) { }
 
 QVariant GfxSceneNode::GetData(int column, int role){
-  if(column<0 || column > 2)return QVariant();
+  if (column<0 || column > 2)
+    return QVariant();
 
   if (role==Qt::CheckStateRole && column==0) {
     return QVariant(gfx_node_->IsVisible() ? Qt::Checked : Qt::Unchecked);
@@ -52,7 +55,8 @@ int GfxSceneNode::GetColumnCount() const{
   return 2;
 }
 
-bool GfxSceneNode::SetData(int column, const QVariant& value, int role){
+bool GfxSceneNode::SetData(int column, const QVariant& value, int role)
+{
   if (column==0 && role == Qt::CheckStateRole) {
     if (value.toBool()) {
      this->GetParent()->SetData(0,value,Qt::CheckStateRole);
diff --git a/modules/gui/src/scene_win/label_node.cc b/modules/gui/src/scene_win/label_node.cc
index f6d2d72f549b124ca55395fbbe0f97489334ea4a..f71c832680aa5b0a8f601d61173b4f4aa6befbbe 100644
--- a/modules/gui/src/scene_win/label_node.cc
+++ b/modules/gui/src/scene_win/label_node.cc
@@ -52,7 +52,7 @@ bool LabelNode::SetData(int column, const QVariant& value, int role){
     if (value.toBool()) {
       this->GetParent()->SetData(0,value,Qt::CheckStateRole);
     } else {
-      for(int i = 0; i<this->GetChildCount(); i++){
+      for(int i = 0; i<this->children().size(); i++){
         this->GetChild(i)->SetData(0,value,Qt::CheckStateRole);
       }
     }
diff --git a/modules/gui/src/scene_win/scene_node.cc b/modules/gui/src/scene_win/scene_node.cc
index 347b529a59f6d5ec8a03e3ca91fb91de231a455d..3e99b51ccfbdcef37d0ddaeaf08bd558ac8b6c43 100644
--- a/modules/gui/src/scene_win/scene_node.cc
+++ b/modules/gui/src/scene_win/scene_node.cc
@@ -29,56 +29,31 @@ SceneNode::SceneNode(QObject* parent):QObject(parent){
   parent_ = NULL;
 }
 
-SceneNode* SceneNode::GetParent() const{
-  return parent_;
-}
-
-void SceneNode::AddChild(SceneNode* node){
-  nodes_.append(node);
-}
-
-void SceneNode::RemoveChild(SceneNode* node){
-  nodes_.removeAll(node);
-}
-
-int SceneNode::GetChildRow(const SceneNode* node) const{
-  for(int i = 0; i < nodes_.size(); i++){
-    if(nodes_[i] == node)return i;
+int SceneNode::GetChildRow(const SceneNode* node) const {
+  for(int i = 0; i < this->children().size(); i++){
+    if (this->children()[i] == node)
+      return i;
   }
   return -1;
 }
 
-int SceneNode::GetChildCount() const{
-  return nodes_.size();
+SceneNode::~SceneNode() {
 }
 
 int SceneNode::GetRow() const{
-  if(parent_){
+  if (parent_) {
     return parent_->GetChildRow(this);
   }
   return 0;
 }
 
-bool SceneNode::IsParent(SceneNode* node) const{
-  if(node == this)return true;
-  for(int i = 0; i< nodes_.size(); i++){
-    if(nodes_[i]==node){
-      return true;
-    }
-    if(nodes_[i]->IsParent(node))
-      return true;
-  }
-  return false;
-}
-
-SceneNode* SceneNode::GetChild(int row) const{
-  if(row>=0 && row<nodes_.size()){
-    return nodes_[row];
-  }
-  return NULL;
+SceneNode* SceneNode::GetChild(int row) const
+{
+  return dynamic_cast<SceneNode*>(this->children()[row]);
 }
 
-QVariant SceneNode::GetData(int column, int role){
+QVariant SceneNode::GetData(int column, int role)
+{
   return QVariant();
 }
 
diff --git a/modules/gui/src/scene_win/scene_node.hh b/modules/gui/src/scene_win/scene_node.hh
index f701e67b5508d7b3486b8d0cb05dc912803a3258..6b183788d5e336f97e9e44e257e752d3f98905c0 100644
--- a/modules/gui/src/scene_win/scene_node.hh
+++ b/modules/gui/src/scene_win/scene_node.hh
@@ -39,13 +39,13 @@ class DLLEXPORT_OST_GUI SceneNode : public QObject {
 public:
   SceneNode(SceneNode* node_parent);
   SceneNode(QObject* parent=0);
+  virtual ~SceneNode();
 
-  SceneNode* GetParent() const;
-  virtual void AddChild(SceneNode* node);
-  virtual void RemoveChild(SceneNode* node);
-  virtual bool IsParent(SceneNode* node) const;
+  SceneNode* GetParent() const { return dynamic_cast<SceneNode*>(this->parent()); }
+  void AddChild(SceneNode* node) {
+    node->setParent(this);
+  }
   virtual SceneNode* GetChild(int row) const;
-  virtual int GetChildCount() const;
   virtual int GetChildRow(const SceneNode* node) const;
   virtual int GetRow() const;
   virtual QVariant GetData(int column, int role);
@@ -54,7 +54,6 @@ public:
   virtual int GetColumnCount() const;
 private:
   SceneNode* parent_;
-  SceneNodeList nodes_;
 };
 
 }}
diff --git a/modules/gui/src/scene_win/scene_win_model.cc b/modules/gui/src/scene_win/scene_win_model.cc
index 08cebc4491118b5656a74443be5a1c8aa1a29b7d..2acc15eb393a8abc7b55669caf08faa1b5235572 100644
--- a/modules/gui/src/scene_win/scene_win_model.cc
+++ b/modules/gui/src/scene_win/scene_win_model.cc
@@ -114,21 +114,23 @@ void SceneWinModel::Update()
 QModelIndex SceneWinModel::index(int row, int col, 
                                  const QModelIndex& parent) const
 {
+  if (!hasIndex(row, col, parent)){
+    return QModelIndex();
+  }
   SceneNode* parent_node = GetItem(parent);
 
-  SceneNode* child_node = parent_node->GetChild(row);
-  if (child_node) {
-    return createIndex(row, col, child_node);
-  } else {
-    return QModelIndex();    
-  }
+  if (parent_node->children().size() <= row)
+    return QModelIndex();
+  return createIndex(row, col, parent_node->GetChild(row));
 }
 
 QModelIndex SceneWinModel::parent(const QModelIndex& index) const
 {
-  if(!index.isValid())return QModelIndex();
-
+  if(!index.isValid())
+    return QModelIndex();
   SceneNode* node = GetItem(index);
+  if (!node)
+    return QModelIndex();
   assert(node);
   SceneNode* parent_node = node->GetParent();
 
@@ -141,7 +143,7 @@ int SceneWinModel::rowCount(const QModelIndex& parent) const
 {
   SceneNode* parent_node = GetItem(parent);
 
-  return parent_node->GetChildCount();
+  return parent_node->children().size();
 }
 
 int SceneWinModel::columnCount(const QModelIndex& parent) const
@@ -270,8 +272,8 @@ void SceneWinModel::SelectionChanged(const gfx::GfxObjP& obj,
 
 void SceneWinModel::RenderModeChanged(const gfx::GfxNodeP& node)
 {
-  if(render_observers_.contains(node)){
-    render_observers_[node]->RenderModeChanged();
+  if(render_observers_.contains(node.get())){
+    render_observers_[node.get()]->RenderModeChanged();
   }
 }
 
@@ -288,7 +290,7 @@ bool SceneWinModel::AddNode(SceneNode* parent, SceneNode* child)
 {
   QModelIndex parent_index=this->GetIndexOf(parent);
   if(parent_index.isValid()){
-    int row = parent->GetChildCount();
+    int row = parent->children().size();
     this->beginInsertRows(parent_index,row,row);
     parent->AddChild(child);
     this->endInsertRows();
@@ -305,7 +307,7 @@ bool SceneWinModel::RemoveNode(SceneNode* node)
     QModelIndex parent_index =this->GetIndexOf(parent);
     int row = node->GetRow();
     this->beginRemoveRows(parent_index,row,row);
-    parent->RemoveChild(node);
+    delete node;
     this->endRemoveRows();
     return true;
   }
@@ -315,13 +317,13 @@ bool SceneWinModel::RemoveNode(SceneNode* node)
 
 void SceneWinModel::AttachRenderModeObserver(RenderModesNode* node)
 {
-  render_observers_.insert(node->GetGfxNode(),node);
+  render_observers_.insert(node->GetGfxNode().get(),node);
 }
 
 void SceneWinModel::DetachRenderModeObserver(RenderModesNode* node)
 {
-  if(render_observers_.contains(node->GetGfxNode())){
-    render_observers_.remove(node->GetGfxNode());
+  if(render_observers_.contains(node->GetGfxNode().get())){
+    render_observers_.remove(node->GetGfxNode().get());
   }
 }
 
@@ -351,7 +353,7 @@ QModelIndex SceneWinModel::GetIndex(SceneNode* node, QModelIndex parent,
   if(parent.isValid()){
     SceneNode* parent_node =reinterpret_cast<SceneNode*>(parent.internalPointer());
     if (parent_node == node) return parent;
-    for (int i=parent_node->GetChildCount()-1; i>=0; --i) {
+    for (int i=parent_node->children().size()-1; i>=0; --i) {
       SceneNode* child = parent_node->GetChild(i);
       if(child == node){
         if(column<child->GetColumnCount())
diff --git a/modules/gui/src/scene_win/scene_win_model.hh b/modules/gui/src/scene_win/scene_win_model.hh
index c476b16f2c1b14d8fa5fed73546a51cd172b2f38..3382331640b0e9b74166d784cb43be15095ee349 100644
--- a/modules/gui/src/scene_win/scene_win_model.hh
+++ b/modules/gui/src/scene_win/scene_win_model.hh
@@ -106,7 +106,7 @@ private:
   SceneNode* root_node_;
   SceneNode* scene_node_;
 
-  QMap<gfx::GfxNodeP, RenderModesNode*> render_observers_;
+  QMap<gfx::GfxNode*, RenderModesNode*>    render_observers_;
   QMap<gfx::GfxNode*, SceneNode*>       node_map_;
 };
 
diff --git a/modules/gui/src/widget_geom_handler.cc b/modules/gui/src/widget_geom_handler.cc
index 431fd8ff1903a5e04f456528b1ab86640e3f58d2..efb6d752a83c802fd6339e1be26c338d9242f8d0 100644
--- a/modules/gui/src/widget_geom_handler.cc
+++ b/modules/gui/src/widget_geom_handler.cc
@@ -34,7 +34,6 @@ void WidgetGeomHandler::LoadGeom(const QString& prefix)
   settings.beginGroup(prefix+this->objectName());
   if (settings.contains("pos") && settings.contains("size")) {
     QPoint pos = settings.value("pos").toPoint();
-    QSize size = settings.value("size").toSize();
     Qt::WindowStates state = Qt::WindowStates(settings.value("state").toInt());
     widget_->move(pos);
     widget_->setWindowState(state);
diff --git a/modules/img/alg/src/CMakeLists.txt b/modules/img/alg/src/CMakeLists.txt
index a49b80125f11de0531412e7fd2929577669aa647..5df3fd55852d08aad58d14147fdf1b7d7c9ec0da 100644
--- a/modules/img/alg/src/CMakeLists.txt
+++ b/modules/img/alg/src/CMakeLists.txt
@@ -59,7 +59,6 @@ gaussian.hh
 gaussian_laplacian.hh
 highest_peak_search_3d.hh
 histogram.hh
-levenberg_marquardt.h
 line_iterator.hh
 local_sigma_threshold.hh
 mask_image.hh
@@ -70,7 +69,6 @@ normalizer.hh
 norm_linear.hh
 norm_log.hh
 norm_od.hh
-numeric.h
 power_spectrum.hh
 randomize.hh
 smooth_mask_image.hh
diff --git a/modules/img/alg/src/dft.hh b/modules/img/alg/src/dft.hh
index 32dcf022ea747211bf6a69b78e6b7cc2a239dc0c..8265dcc102c961595c428ae2b65ebd6a3ab65cb4 100644
--- a/modules/img/alg/src/dft.hh
+++ b/modules/img/alg/src/dft.hh
@@ -30,7 +30,7 @@ namespace ost { namespace img { namespace alg {
 /// \brief Computes Fourier Trasnform honoring the origin of the image
 ///
 ///  \sa \ref view_phase_diff.py "View Phase Diference Example"
-///  \sa \ref fft_li.py "View Fourier Transform Example"
+///  \sa \example fft_li.py "View Fourier Transform Example"
 class DLLEXPORT_IMG_ALG DFT: public ConstModOPAlgorithm {
 public:
   DFT();
diff --git a/modules/img/alg/src/discrete_shrink.cc b/modules/img/alg/src/discrete_shrink.cc
index ba01ae54635d9c4bab555b1772f38f5c43b1129b..6aef59bcfa03c4c6bbd1332d1254916b73a3e465 100644
--- a/modules/img/alg/src/discrete_shrink.cc
+++ b/modules/img/alg/src/discrete_shrink.cc
@@ -49,7 +49,6 @@ void do_shrink(const ImageStateImpl<T,D>& isi, T& dest, const Extent& inner_ext)
   T sum(0);
   Real count=0.0;
   for(ExtentIterator bit(inner_ext);!bit.AtEnd();++bit) {
-    LOG_VERBOSE("inner extent point:" << Point(bit)<<","<<isi.GetExtent().Contains(Point(bit)));
     sum+=isi.Value(bit);
     count+=1.0;
   }
diff --git a/modules/img/alg/src/fft.cc b/modules/img/alg/src/fft.cc
index 955f218346844dedbb6e816606664be9f864169b..61cc3199c645e37f8d17a9daab0b9fd8c286858d 100644
--- a/modules/img/alg/src/fft.cc
+++ b/modules/img/alg/src/fft.cc
@@ -267,6 +267,10 @@ ImageStateBasePtr FFTFnc::VisitState(const ImageStateImpl<T,D>& s) const
   throw FFTException(ostr.str());
 }
 
+// force explicit instantiation to make intel compiler happy
+template ImageStateBasePtr FFTFnc::VisitState<Real,FrequencyDomain>(const ImageStateImpl<Real,FrequencyDomain>& ) const;
+template ImageStateBasePtr FFTFnc::VisitState<unsigned short,SpatialDomain>(const ImageStateImpl<unsigned short,SpatialDomain>& ) const;
+
 }  //alg ns
 
 template class TEMPLATE_DEF_EXPORT image_state::ImageStateConstModOPAlgorithm<alg::FFTFnc>;
diff --git a/modules/img/alg/src/levenberg_marquardt.h b/modules/img/alg/src/levenberg_marquardt.h
deleted file mode 100644
index f2e50c8c1be237b2ebc73a76f6244a079025a369..0000000000000000000000000000000000000000
--- a/modules/img/alg/src/levenberg_marquardt.h
+++ /dev/null
@@ -1,178 +0,0 @@
-// Copyright (c) 2007, 2008, 2009 libmv authors.
-//
-// Permission is hereby granted, free of charge, to any person obtaining a copy
-// of this software and associated documentation files (the "Software"), to
-// deal in the Software without restriction, including without limitation the
-// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
-// sell copies of the Software, and to permit persons to whom the Software is
-// furnished to do so, subject to the following conditions:
-//
-// The above copyright notice and this permission notice shall be included in
-// all copies or substantial portions of the Software.
-//
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
-// IN THE SOFTWARE.
-//
-// A simple implementation of levenberg marquardt.
-//
-// [1] K. Madsen, H. Nielsen, O. Tingleoff. Methods for Non-linear Least
-// Squares Problems.
-// http://www2.imm.dtu.dk/pubdb/views/edoc_download.php/3215/pdf/imm3215.pdf
-//
-// TODO(keir): Cite the Lourakis' dogleg paper.
-
-#ifndef LIBMV_NUMERIC_LEVENBERG_MARQUARDT_H
-#define LIBMV_NUMERIC_LEVENBERG_MARQUARDT_H
-
-#include <cmath>
-
-#include <ost/img/alg/numeric.h>
-
-namespace ost { namespace img { namespace alg {
-
-template<typename Function,
-         typename Jacobian,
-         typename Solver = Eigen::SVD<
-           Matrix<typename Function::FMatrixType::RealScalar,
-                  Function::XMatrixType::RowsAtCompileTime,
-                  Function::XMatrixType::RowsAtCompileTime> > >
-class LevenbergMarquardt {
- public:
-  typedef typename Function::XMatrixType::RealScalar Scalar;
-  typedef typename Function::FMatrixType FVec;
-  typedef typename Function::XMatrixType Parameters;
-  typedef Matrix<typename Function::FMatrixType::RealScalar,
-                 Function::FMatrixType::RowsAtCompileTime,
-                 Function::XMatrixType::RowsAtCompileTime> JMatrixType;
-  typedef Matrix<typename JMatrixType::RealScalar,
-                 JMatrixType::ColsAtCompileTime,
-                 JMatrixType::ColsAtCompileTime> AMatrixType;
-
-  // TODO(keir): Some of these knobs can be derived from each other and
-  // removed, instead of requiring the user to set them.
-  enum Status {
-    RUNNING,
-    GRADIENT_TOO_SMALL,            // eps > max(J'*f(x))
-    RELATIVE_STEP_SIZE_TOO_SMALL,  // eps > ||dx|| / ||x||
-    ERROR_TOO_SMALL,               // eps > ||f(x)||
-    HIT_MAX_ITERATIONS,
-  };
-
-  LevenbergMarquardt(const Function &f)
-      : f_(f), df_(f) {}
-
-  struct SolverParameters {
-   SolverParameters()
-       : gradient_threshold(1e-20),
-         relative_step_threshold(1e-20),
-         error_threshold(1e-16),
-         initial_scale_factor(1e-3),
-         max_iterations(200) {}
-    Scalar gradient_threshold;       // eps > max(J'*f(x))
-    Scalar relative_step_threshold;  // eps > ||dx|| / ||x||
-    Scalar error_threshold;          // eps > ||f(x)||
-    Scalar initial_scale_factor;     // Initial u for solving normal equations.
-    int    max_iterations;           // Maximum number of solver iterations.
-  };
-
-  struct Results {
-    Scalar error_magnitude;     // ||f(x)||
-    Scalar gradient_magnitude;  // ||J'f(x)||
-    int    iterations;
-    Status status;
-  };
-
-  Status Update(const Parameters &x, const SolverParameters &params,
-                JMatrixType *J, AMatrixType *A, FVec *error, Parameters *g) {
-    *J = df_(x);
-    *A = (*J).transpose() * (*J);
-    *error = -f_(x);
-    *g = (*J).transpose() * *error;
-    if (g->cwise().abs().maxCoeff() < params.gradient_threshold) {
-      return GRADIENT_TOO_SMALL;
-    } else if (error->norm() < params.error_threshold) {
-      return ERROR_TOO_SMALL;
-    }
-    return RUNNING;
-  }
-
-  Results minimize(Parameters *x_and_min) {
-    SolverParameters params;
-    minimize(params, x_and_min);
-  }
-
-  Results minimize(const SolverParameters &params, Parameters *x_and_min) {
-    Parameters &x = *x_and_min;
-    JMatrixType J;
-    AMatrixType A;
-    FVec error;
-    Parameters g;
-
-    Results results;
-    results.status = Update(x, params, &J, &A, &error, &g);
-
-    Scalar u = Scalar(params.initial_scale_factor*A.diagonal().maxCoeff());
-    Scalar v = 2;
-
-    Parameters dx, x_new;
-    int i;
-    for (i = 0; results.status == RUNNING && i < params.max_iterations; ++i) {
-//      LOG(INFO) << "iteration: " << i;
-//      LOG(INFO) << "||f(x)||: " << f_(x).norm();
-//      LOG(INFO) << "max(g): " << g.cwise().abs().maxCoeff();
-//      LOG(INFO) << "u: " << u;
-//      LOG(INFO) << "v: " << v;
-
-      AMatrixType A_augmented = A + u*AMatrixType::Identity(J.cols(), J.cols());
-      Solver solver(A_augmented);
-      bool solved = solver.solve(g, &dx);
-//      if (!solved) LOG(ERROR) << "Failed to solve";
-      if (solved && dx.norm() <= params.relative_step_threshold * x.norm()) {
-          results.status = RELATIVE_STEP_SIZE_TOO_SMALL;
-          break;
-      }
-      if (solved) {
-        x_new = x + dx;
-        // Rho is the ratio of the actual reduction in error to the reduction
-        // in error that would be obtained if the problem was linear.
-        // See [1] for details.
-        Scalar rho((error.squaredNorm() - f_(x_new).squaredNorm())
-                   / dx.dot(u*dx + g));
-        if (rho > 0) {
-          // Accept the Gauss-Newton step because the linear model fits well.
-          x = x_new;
-          results.status = Update(x, params, &J, &A, &error, &g);
-          Scalar tmp = Scalar(2*rho-1);
-          u = u*std::max(Real(1/3.), 1 - (tmp*tmp*tmp));
-          v = 2;
-          continue;
-        }
-      }
-      // Reject the update because either the normal equations failed to solve
-      // or the local linear model was not good (rho < 0). Instead, increase u
-      // to move closer to gradient descent.
-      u *= v;
-      v *= 2;
-    }
-    if (results.status == RUNNING) {
-      results.status = HIT_MAX_ITERATIONS;
-    }
-    results.error_magnitude = error.norm();
-    results.gradient_magnitude = g.norm();
-    results.iterations = i;
-    return results;
-  }
-
- private:
-  const Function &f_;
-  Jacobian df_;
-};
-
-}}}  // namespace mv
-
-#endif  // LIBMV_NUMERIC_LEVENBERG_MARQUARDT_H
diff --git a/modules/img/alg/src/numeric.h b/modules/img/alg/src/numeric.h
deleted file mode 100644
index cbd5711c0884e8a3e54cde2cc4f95a4c8b66a87a..0000000000000000000000000000000000000000
--- a/modules/img/alg/src/numeric.h
+++ /dev/null
@@ -1,441 +0,0 @@
-// Copyright (c) 2007, 2008 libmv authors.
-//
-// Permission is hereby granted, free of charge, to any person obtaining a copy
-// of this software and associated documentation files (the "Software"), to
-// deal in the Software without restriction, including without limitation the
-// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
-// sell copies of the Software, and to permit persons to whom the Software is
-// furnished to do so, subject to the following conditions:
-//
-// The above copyright notice and this permission notice shall be included in
-// all copies or substantial portions of the Software.
-//
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
-// IN THE SOFTWARE.
-//
-// Matrix and vector classes, based on Eigen2.
-//
-// Avoid using Eigen2 classes directly; instead typedef them here.
-
-#ifndef LIBMV_NUMERIC_NUMERIC_H
-#define LIBMV_NUMERIC_NUMERIC_H
-
-#include <Eigen/Array>
-#include <Eigen/Cholesky>
-#include <Eigen/Core>
-#include <Eigen/Geometry>
-#include <Eigen/LU>
-#include <Eigen/SVD>
-
-#include <ost/base.hh>
-
-#include <iostream>
-
-#if _WIN32 || __APPLE__
-  void static sincos (Real x, Real *sinx, Real *cosx) {
-    *sinx = sin(x);
-    *cosx = cos(x);
-  }
-#endif //_WIN32 || __APPLE__
-
-// #if _WIN32
-  // inline long lround(double d) {
-    // return (long)(d>0 ? d+0.5 : ceil(d-0.5));
-  // }
-  // inline int round(double d) {
-    // return (d>0) ? int(d+0.5) : int(d-0.5);
-  // }
-  // typedef unsigned int uint;
-// #endif //_WIN32
-
-namespace ost { namespace img { namespace alg {
-
-typedef Eigen::MatrixXf Mat;
-typedef Eigen::VectorXf Vec;
-
-typedef Eigen::MatrixXf Matf;
-typedef Eigen::VectorXf Vecf;
-
-typedef Eigen::Matrix<unsigned int, Eigen::Dynamic, Eigen::Dynamic> Matu;
-typedef Eigen::Matrix<unsigned int, Eigen::Dynamic, 1> Vecu;
-
-typedef Eigen::Matrix<Real, 2, 2> Mat2;
-typedef Eigen::Matrix<Real, 2, 3> Mat23;
-typedef Eigen::Matrix<Real, 3, 3> Mat3;
-typedef Eigen::Matrix<Real, 3, 4> Mat34;
-typedef Eigen::Matrix<Real, 3, 5> Mat35;
-typedef Eigen::Matrix<Real, 4, 3> Mat43;
-typedef Eigen::Matrix<Real, 4, 4> Mat4;
-typedef Eigen::Matrix<Real, 4, 6> Mat46;
-typedef Eigen::Matrix<float, 2, 2> Mat2f;
-typedef Eigen::Matrix<float, 2, 3> Mat23f;
-typedef Eigen::Matrix<float, 3, 3> Mat3f;
-typedef Eigen::Matrix<float, 3, 4> Mat34f;
-typedef Eigen::Matrix<float, 3, 5> Mat35f;
-typedef Eigen::Matrix<float, 4, 3> Mat43f;
-typedef Eigen::Matrix<float, 4, 4> Mat4f;
-typedef Eigen::Matrix<float, 4, 6> Mat46f;
-
-typedef Eigen::Matrix<Real, 3, 3, Eigen::RowMajor> RMat3;
-
-typedef Eigen::Matrix<Real, 2, Eigen::Dynamic> Mat2X;
-typedef Eigen::Matrix<Real, 3, Eigen::Dynamic> Mat3X;
-typedef Eigen::Matrix<Real, 4, Eigen::Dynamic> Mat4X;
-typedef Eigen::Matrix<Real, Eigen::Dynamic, 2> MatX2;
-typedef Eigen::Matrix<Real, Eigen::Dynamic, 3> MatX3;
-typedef Eigen::Matrix<Real, Eigen::Dynamic, 4> MatX4;
-typedef Eigen::Matrix<Real, Eigen::Dynamic, 9> MatX9;
-
-typedef Eigen::Vector2f Vec2;
-typedef Eigen::Vector3f Vec3;
-typedef Eigen::Vector4f Vec4;
-typedef Eigen::Matrix<Real, 5, 1> Vec5;
-typedef Eigen::Matrix<Real, 6, 1> Vec6;
-typedef Eigen::Matrix<Real, 7, 1> Vec7;
-typedef Eigen::Matrix<Real, 8, 1> Vec8;
-typedef Eigen::Matrix<Real, 9, 1> Vec9;
-typedef Eigen::Matrix<Real, 10, 1> Vec10;
-typedef Eigen::Matrix<Real, 13, 1> Vec13;
-
-typedef Eigen::Vector2f Vec2f;
-typedef Eigen::Vector3f Vec3f;
-typedef Eigen::Vector4f Vec4f;
-
-typedef Eigen::VectorXi VecXi;
-
-typedef Eigen::Vector2i Vec2i;
-typedef Eigen::Vector3i Vec3i;
-typedef Eigen::Vector4i Vec4i;
-
-typedef Eigen::Matrix<float,
-                      Eigen::Dynamic,
-                      Eigen::Dynamic,
-                      Eigen::RowMajor> RMatf;
-
-using Eigen::Map;
-using Eigen::Dynamic;
-using Eigen::Matrix;
-
-// Find U, s, and VT such that
-//
-//   A = U * diag(s) * VT
-//
-template <typename TMat, typename TVec>
-inline void SVD(TMat *A, Vec *s, Mat *U, Mat *VT) {
-  assert(0);
-}
-
-// Solve the linear system Ax = 0 via SVD. Store the solution in x, such that
-// ||x|| = 1.0. Return the singluar value corresponding to the solution.
-// Destroys A and resizes x if necessary.
-// TODO(maclean): Take the SVD of the transpose instead of this zero padding.
-template <typename TMat, typename TVec>
-Real Nullspace(TMat *A, TVec *nullspace) {
-  if (A->rows() >= A->cols()) {
-    Eigen::SVD<TMat> svd(*A);
-    (*nullspace) = svd.matrixV().col(A->cols()-1);
-    return svd.singularValues()(A->cols()-1);
-  }
-  // Extend A with rows of zeros to make it square. It's a hack, but is
-  // necessary until Eigen supports SVD with more columns than rows.
-  Mat A_extended(A->cols(), A->cols());
-  A_extended.block(A->rows(), 0, A->cols() - A->rows(), A->cols()).setZero();
-  A_extended.block(0,0, A->rows(), A->cols()) = (*A);
-  return Nullspace(&A_extended, nullspace);
-}
-
-// Solve the linear system Ax = 0 via SVD. Finds two solutions, x1 and x2, such
-// that x1 is the best solution and x2 is the next best solution (in the L2
-// norm sense). Store the solution in x1 and x2, such that ||x|| = 1.0. Return
-// the singluar value corresponding to the solution x1.  Destroys A and resizes
-// x if necessary.
-template <typename TMat, typename TVec1, typename TVec2>
-Real Nullspace2(TMat *A, TVec1 *x1, TVec2 *x2) {
-  if (A->rows() >= A->cols()) {
-    Eigen::SVD<TMat> svd(*A);
-    Mat V = svd.matrixV();
-    *x1 = V.col(A->cols() - 1);
-    *x2 = V.col(A->cols() - 2);
-    return svd.singularValues()(A->cols()-1);
-  }
-  // Extend A with rows of zeros to make it square. It's a hack, but is
-  // necessary until Eigen supports SVD with more columns than rows.
-  Mat A_extended(A->cols(), A->cols());
-  A_extended.block(A->rows(), 0, A->cols() - A->rows(), A->cols()).setZero();
-  A_extended.block(0,0, A->rows(), A->cols()) = (*A);
-  return Nullspace2(&A_extended, x1, x2);
-}
-
-// In place transpose for square matrices.
-template<class TA>
-inline void TransposeInPlace(TA *A) {
-  *A = A->transpose().eval();
-}
-
-template<typename TVec>
-inline Real NormL1(const TVec &x) {
-  return x.cwise().abs().sum();
-}
-
-template<typename TVec>
-inline Real NormL2(const TVec &x) {
-  return x.norm();
-}
-
-template<typename TVec>
-inline Real NormLInfinity(const TVec &x) {
-  return x.cwise().abs().maxCoeff();
-}
-
-template<typename TVec>
-inline Real DistanceL1(const TVec &x, const TVec &y) {
-  return (x - y).cwise().abs().sum();
-}
-
-template<typename TVec>
-inline Real DistanceL2(const TVec &x, const TVec &y) {
-  return (x - y).norm();
-}
-template<typename TVec>
-inline Real DistanceLInfinity(const TVec &x, const TVec &y) {
-  return (x - y).cwise().abs().maxCoeff();
-}
-
-// Normalize a vector with the L1 norm, and return the norm before it was
-// normalized.
-template<typename TVec>
-inline Real NormalizeL1(TVec *x) {
-  Real norm = NormL1(*x);
-  *x /= norm;
-  return norm;
-}
-
-// Normalize a vector with the L2 norm, and return the norm before it was
-// normalized.
-template<typename TVec>
-inline Real NormalizeL2(TVec *x) {
-  Real norm = NormL2(*x);
-  *x /= norm;
-  return norm;
-}
-
-// Normalize a vector with the L^Infinity norm, and return the norm before it
-// was normalized.
-template<typename TVec>
-inline Real NormalizeLInfinity(TVec *x) {
-  Real norm = NormLInfinity(*x);
-  *x /= norm;
-  return norm;
-}
-
-// Return the square of a number.
-template<typename T>
-inline T Square(T x) {
-  return x * x;
-}
-
-Mat3 RotationAroundX(Real angle);
-Mat3 RotationAroundY(Real angle);
-Mat3 RotationAroundZ(Real angle);
-
-// Returns the rotation matrix of a rotation of angle |axis| around axis.
-// This is computed using the Rodrigues formula, see:
-//  http://mathworld.wolfram.com/RodriguesRotationFormula.html
-Mat3 RotationRodrigues(const Vec3 &axis);
-
-// Make a rotation matrix such that center becomes the direction of the
-// positive z-axis, and y is oriented close to up.
-Mat3 LookAt(Vec3 center);
-
-// Return a diagonal matrix from a vector containg the diagonal values.
-template <typename TVec>
-inline Mat Diag(const TVec &x) {
-  return x.asDiagonal();
-}
-
-template<typename TMat>
-inline Real FrobeniusNorm(const TMat &A) {
-  return sqrt(A.cwise().abs2().sum());
-}
-
-template<typename TMat>
-inline Real FrobeniusDistance(const TMat &A, const TMat &B) {
-  return FrobeniusNorm(A - B);
-}
-
-inline Vec3 CrossProduct(const Vec3 &x, const Vec3 &y) {
-  return x.cross(y);
-}
-
-Mat3 CrossProductMatrix(const Vec3 &x);
-
-void MeanAndVarianceAlongRows(const Mat &A,
-                              Vec *mean_pointer,
-                              Vec *variance_pointer);
-
-#if _WIN32
-  // TODO(bomboze): un-#if this for both platforms once tested under Windows
-  /* This solution was extensively discussed here http://forum.kde.org/viewtopic.php?f=74&t=61940 */
-  #define SUM_OR_DYNAMIC(x,y) (x==Eigen::Dynamic||y==Eigen::Dynamic)?Eigen::Dynamic:(x+y)
-
-  template<typename Derived1, typename Derived2>
-  struct hstack_return {
-    typedef typename Derived1::Scalar Scalar;
-    enum {
-         RowsAtCompileTime = Derived1::RowsAtCompileTime,
-         ColsAtCompileTime = SUM_OR_DYNAMIC(Derived1::ColsAtCompileTime, Derived2::ColsAtCompileTime),
-         Options = Derived1::Flags&Eigen::RowMajorBit ? Eigen::RowMajor : 0,
-         MaxRowsAtCompileTime = Derived1::MaxRowsAtCompileTime,
-         MaxColsAtCompileTime = SUM_OR_DYNAMIC(Derived1::MaxColsAtCompileTime, Derived2::MaxColsAtCompileTime)
-    };
-    typedef Eigen::Matrix<Scalar,
-                RowsAtCompileTime,
-                ColsAtCompileTime,
-                Options,
-                MaxRowsAtCompileTime,
-                MaxColsAtCompileTime> type;
-  };
-
-  template<typename Derived1, typename Derived2>
-  typename hstack_return<Derived1,Derived2>::type
-  HStack (const Eigen::MatrixBase<Derived1>& lhs, const Eigen::MatrixBase<Derived2>& rhs) {
-    typename hstack_return<Derived1,Derived2>::type res;
-    res.resize(lhs.rows(), lhs.cols()+rhs.cols());
-    res << lhs, rhs;
-    return res;
-  };
-
-
-  template<typename Derived1, typename Derived2>
-  struct vstack_return {
-    typedef typename Derived1::Scalar Scalar;
-    enum {
-         RowsAtCompileTime = SUM_OR_DYNAMIC(Derived1::RowsAtCompileTime, Derived2::RowsAtCompileTime),
-         ColsAtCompileTime = Derived1::ColsAtCompileTime,
-         Options = Derived1::Flags&Eigen::RowMajorBit ? Eigen::RowMajor : 0,
-         MaxRowsAtCompileTime = SUM_OR_DYNAMIC(Derived1::MaxRowsAtCompileTime, Derived2::MaxRowsAtCompileTime),
-         MaxColsAtCompileTime = Derived1::MaxColsAtCompileTime
-    };
-    typedef Eigen::Matrix<Scalar,
-                RowsAtCompileTime,
-                ColsAtCompileTime,
-                Options,
-                MaxRowsAtCompileTime,
-                MaxColsAtCompileTime> type;
-  };
-
-  template<typename Derived1, typename Derived2>
-  typename vstack_return<Derived1,Derived2>::type
-  VStack (const Eigen::MatrixBase<Derived1>& lhs, const Eigen::MatrixBase<Derived2>& rhs) {
-    typename vstack_return<Derived1,Derived2>::type res;
-    res.resize(lhs.rows()+rhs.rows(), lhs.cols());
-    res << lhs, rhs;
-    return res;
-  };
-
-
-#else //_WIN32
-
-  // Since it is not possible to typedef privately here, use a macro.
-  // Always take dynamic columns if either side is dynamic.
-  #define COLS \
-    ((ColsLeft == Eigen::Dynamic || ColsRight == Eigen::Dynamic) \
-     ? Eigen::Dynamic : (ColsLeft + ColsRight))
-
-  // Same as above, except that prefer fixed size if either is fixed.
-  #define ROWS \
-    ((RowsLeft == Eigen::Dynamic && RowsRight == Eigen::Dynamic) \
-     ? Eigen::Dynamic \
-     : ((RowsLeft == Eigen::Dynamic) \
-        ? RowsRight \
-        : RowsLeft \
-       ) \
-    )
-
-  // TODO(keir): Add a static assert if both rows are at compiletime.
-  template<typename T, int RowsLeft, int RowsRight, int ColsLeft, int ColsRight>
-  Eigen::Matrix<T, ROWS, COLS>
-  HStack(const Eigen::Matrix<T, RowsLeft,  ColsLeft>  &left,
-         const Eigen::Matrix<T, RowsRight, ColsRight> &right) {
-    assert(left.rows() == right.rows());
-    int n = left.rows();
-    int m1 = left.cols();
-    int m2 = right.cols();
-
-    Eigen::Matrix<T, ROWS, COLS> stacked(n, m1 + m2);
-    stacked.block(0, 0,  n, m1) = left;
-    stacked.block(0, m1, n, m2) = right;
-    return stacked;
-  }
-
-  // Reuse the above macros by swapping the order of Rows and Cols. Nasty, but
-  // the duplication is worse.
-  // TODO(keir): Add a static assert if both rows are at compiletime.
-  // TODO(keir): Mail eigen list about making this work for general expressions
-  // rather than only matrix types.
-  template<typename T, int RowsLeft, int RowsRight, int ColsLeft, int ColsRight>
-  Eigen::Matrix<T, COLS, ROWS>
-  VStack(const Eigen::Matrix<T, ColsLeft,  RowsLeft>  &top,
-         const Eigen::Matrix<T, ColsRight, RowsRight> &bottom) {
-    assert(top.cols() == bottom.cols());
-     int n1 = top.rows();
-    int n2 = bottom.rows();
-    int m = top.cols();
-
-    Eigen::Matrix<T, COLS, ROWS> stacked(n1 + n2, m);
-    stacked.block(0,  0, n1, m) = top;
-    stacked.block(n1, 0, n2, m) = bottom;
-    return stacked;
-  }
-  #undef COLS
-  #undef ROWS
-#endif //_WIN32
-
-
-
-void HorizontalStack(const Mat &left, const Mat &right, Mat *stacked);
-
-template<typename TTop, typename TBot, typename TStacked>
-void VerticalStack(const TTop &top, const TBot &bottom, TStacked *stacked) {
-  assert(top.cols() == bottom.cols());
-  int n1 = top.rows();
-  int n2 = bottom.rows();
-  int m = top.cols();
-
-  stacked->resize(n1 + n2, m);
-  stacked->block(0,  0, n1, m) = top;
-  stacked->block(n1, 0, n2, m) = bottom;
-}
-
-void MatrixColumn(const Mat &A, int i, Vec2 *v);
-void MatrixColumn(const Mat &A, int i, Vec3 *v);
-void MatrixColumn(const Mat &A, int i, Vec4 *v);
-
-template <typename TMat, typename TCols>
-TMat ExtractColumns(const TMat &A, const TCols &columns) {
-  TMat compressed(A.rows(), columns.size());
-  for (int i = 0; i < columns.size(); ++i) {
-    compressed.col(i) = A.col(columns[i]);
-  }
-  return compressed;
-}
-
-template <typename TMat, typename TDest>
-void reshape(const TMat &a, int rows, int cols, TDest *b) {
-  assert(a.rows()*a.cols() == rows*cols);
-  b->resize(rows, cols);
-  for (int i = 0; i < rows; i++) {
-    for (int j = 0; j < cols; j++) {
-      (*b)(i, j) = a[cols*i + j];
-    }
-  }
-}
-
-}}}  // namespace mv
-
-#endif  // LIBMV_NUMERIC_NUMERIC_H
diff --git a/modules/img/alg/src/stat_accumulator.hh b/modules/img/alg/src/stat_accumulator.hh
index 53399f8be99c0cb4e1a445b38aabfd7252bb4c41..cb4530eac56c0c133d58581359b19540d25c685d 100644
--- a/modules/img/alg/src/stat_accumulator.hh
+++ b/modules/img/alg/src/stat_accumulator.hh
@@ -20,183 +20,231 @@
 #ifndef OST_STAT_ACCUMULATOR_HH
 #define OST_STAT_ACCUMULATOR_HH
 
+#include <limits>
+#include <boost/math/special_functions/binomial.hpp>
 #include <ost/base.hh>
 #include <ost/message.hh>
 #include <ost/img/alg/module_config.hh>
 
 namespace ost { namespace img { namespace alg {
 
-template<unsigned int MAX_MOMENT=4>
+namespace {
+
+template<class D>
+struct MinMax{
+  static bool less_cmp_(const D& v1, const D& v2){return v1<v2;}
+};
+template<>
+struct MinMax<Complex>{
+  static bool less_cmp_(const Complex& v1, const Complex& v2){return abs(v1)<abs(v2);}
+};
+
+} //anon ns
+
+template<unsigned int MAX_MOMENT=4,typename DATATYPE=Real>
 class  StatAccumulator
 {
 public:
   StatAccumulator():
-    mean_(0.0),
     sum_(0.0),
     sum2_(0.0),
-    m2_(0.0),
-    m3_(0.0),
-    m4_(0.0),
-    n_(1)
-  {}
-
-  void operator()(Real val)
+    max_(-std::numeric_limits<DATATYPE>::max()),
+    min_(std::numeric_limits<DATATYPE>::max()),
+    m_(),
+    w_(0.0),
+    n_(0)
   {
-    Real delta,delta_n,delta_n2,term;
-    if(MAX_MOMENT>0){
-      delta = val - mean_;
-      delta_n = delta / n_;
-    }
-    if(MAX_MOMENT>3){
-      delta_n2 = delta_n * delta_n;
-    }
-    if(MAX_MOMENT>1){
-      term = delta * delta_n * (n_-1);
-    }
-    if(MAX_MOMENT>3){
-      m4_ += term * delta_n2 * (n_*n_ - 3*n_ + 3) + 6 * delta_n2 * m2_ - 4 * delta_n * m3_;
-    }
-    if(MAX_MOMENT>2){
-      m3_ += term * delta_n * (n_ - 2) - 3 * delta_n * m2_;
-    }
-    if(MAX_MOMENT>1){
-      m2_ += term;
+    for(unsigned int i=0;i<MAX_MOMENT;++i){
+      m_[i]=0.0;
     }
+
+  }
+
+  StatAccumulator(DATATYPE val, Real w=1.0):
+    sum_(val),
+    sum2_(val*val),
+    max_(val),
+    min_(val),
+    m_(),
+    w_(w),
+    n_(1)
+  {
     if(MAX_MOMENT>0){
-      mean_ += delta_n;
+      m_[0]=val;
+      for(unsigned int i=1;i<MAX_MOMENT;++i){
+        m_[i]=0.0;
+      }
     }
-    n_+=1;
-    sum_+=val;
-    sum2_+=val*val;
   }
 
-  StatAccumulator<MAX_MOMENT> operator+(const StatAccumulator<MAX_MOMENT>& acc2) const
+  void operator()(DATATYPE val, Real w=1.0)
   {
-    StatAccumulator<MAX_MOMENT> acc(acc2);
+    *this+=StatAccumulator(val,w);
+  }
+
+  StatAccumulator<MAX_MOMENT,DATATYPE> operator+(const StatAccumulator<MAX_MOMENT,DATATYPE>& acc2) const
+  {
+    StatAccumulator<MAX_MOMENT,DATATYPE> acc(acc2);
     acc+=*this;
     return acc;
   }
 
-  StatAccumulator<MAX_MOMENT>& operator+=(const StatAccumulator<MAX_MOMENT>& acc)
+  StatAccumulator<MAX_MOMENT,DATATYPE>& operator+=(const StatAccumulator<MAX_MOMENT,DATATYPE>& acc)
   {
-    if(acc.n_==1){
+    if(0.0>=w_){
+      *this=acc;
       return *this;
     }
-    if(n_==1){
-      mean_=acc.mean_;
-      sum_=acc.sum_;
-      sum2_=acc.sum2_;
-      m2_=acc.m2_;
-      m3_=acc.m3_;
-      m4_=acc.m4_;
-      n_=acc.n_;
+    if(0.0>=acc.w_){
       return *this;
     }
-    Real delta,delta_n,delta_n2,na,nanb;
-    Real nb=acc.n_-1;
-    if(MAX_MOMENT>0){
-      na=n_-1;
-      delta = acc.mean_ - mean_;
-      delta_n = delta / (na+nb);
-    }
-    if(MAX_MOMENT>1){
-      nanb=na*nb;
-    }
-    if(MAX_MOMENT>2){
-      delta_n2 = delta_n * delta_n;
-    }
-    if(MAX_MOMENT>3){
-      m4_+=acc.m4_+delta*delta_n*delta_n2*nanb*(na*na-nanb+nb*nb)+6.0*delta_n2*(na*na*acc.m2_+nb*nb*m2_)+4.0*delta_n*(na*acc.m3_-nb*m3_);
-    }
-    if(MAX_MOMENT>2){
-      m3_+=acc.m3_+delta*delta_n2*nanb*(na-nb)+3.0*delta_n*(na*acc.m2_-nb*m2_);
-    }
-    if(MAX_MOMENT>1){
-      m2_ += acc.m2_+delta*delta_n*nanb;
-    }
-    if(MAX_MOMENT>0){
-      mean_ += nb*delta_n;
-    }
+    n_+=acc.n_;
+    Real wn=w_+acc.w_;
+
     sum_+=acc.sum_;
     sum2_+=acc.sum2_;
-    n_+=nb;
+    max_=std::max<DATATYPE>(max_,acc.max_,MinMax<DATATYPE>::less_cmp_);
+    min_=std::min<DATATYPE>(min_,acc.min_,MinMax<DATATYPE>::less_cmp_);
+    if(MAX_MOMENT>0){
+      DATATYPE delta=acc.m_[0]-m_[0];
+      DATATYPE delta_w=delta/wn;
+      if(MAX_MOMENT>2){
+        DATATYPE w1w2_delta_w=w_*acc.w_*delta_w;
+        DATATYPE w1w2_delta_wp=w1w2_delta_w*w1w2_delta_w;
+        Real iw2=1.0/acc.w_;
+        Real iw2pm1=iw2;
+        Real miw1=-1.0/w_;
+        Real miw1pm1=miw1;
+        DATATYPE mn[MAX_MOMENT]; // only MAX_MOMENT-2 values needed but overdimensioned to allow compilation for MAX_MOMENT==0 (even though it gets kicked out in the end by the dead code elimination)
+        for(unsigned int p=3;p<=MAX_MOMENT;++p){
+          w1w2_delta_wp*=w1w2_delta_w;
+          iw2pm1*=iw2;
+          miw1pm1*=miw1;
+          DATATYPE delta_wk=1.0;
+          DATATYPE s=0.0;
+          Real mw2k=1.0;
+          Real w1k=1.0;
+          for(unsigned int k=1;k<=p-2;++k){
+            w1k*=w_;
+            mw2k*=-acc.w_;
+            delta_wk*=delta_w;
+            s+=boost::math::binomial_coefficient<Real>(p, k)*(mw2k*m_[p-k-1]+w1k*acc.m_[p-k-1])*delta_wk;
+          }
+          mn[p-3]=acc.m_[p-1]+s+w1w2_delta_wp*(iw2pm1-miw1pm1);
+        }
+        for(unsigned int p=3;p<=MAX_MOMENT;++p){
+          m_[p-1]+=mn[p-3];
+        }
+      }
+      if(MAX_MOMENT>1){
+        m_[1]+=acc.m_[1]+delta_w*delta*acc.w_*w_;
+      }
+      m_[0]+=delta_w*acc.w_;
+      w_=wn;
+    }
     return *this;
   }
 
   Real GetNumSamples() const
   {
-    return n_-1.0;
+    return n_;
+  }
+
+  DATATYPE GetMaximum() const
+  {
+    return max_;
+  }
+
+  DATATYPE GetMinimum() const
+  {
+    return min_;
+  }
+
+  Real GetWeight() const
+  {
+    return w_;
+  }
+
+  DATATYPE GetMoment(unsigned int i) const
+  {
+    if(1>i){
+      throw Error("Invalid moment.");
+    }
+    if(MAX_MOMENT<i){
+      throw Error("Moment was not calculated.");
+    }
+    return m_[i-1];
   }
 
-  Real GetMean() const
+  DATATYPE GetMean() const
   {
     if(MAX_MOMENT<1){
       throw Error("Mean was not calculated.");
     }
-    return mean_;
+    return m_[0];
   }
 
-  Real GetSum() const
+  DATATYPE GetSum() const
   {
     return sum_;
   }
 
-  Real GetVariance() const
+  DATATYPE GetVariance() const
   {
     if(MAX_MOMENT<2){
       throw Error("Variance was not calculated.");
     }
-    if(n_==1.0){
+    if(n_==0.0){
       return 0.0;
     }
-    return m2_/(n_-1);
+    return m_[1]/(w_);
   }
 
-  Real GetStandardDeviation() const
+  DATATYPE GetStandardDeviation() const
   {
     return sqrt(GetVariance());
   }
 
-  Real GetRootMeanSquare() const
+  DATATYPE GetRootMeanSquare() const
   {
-    if(n_==1.0){
+    if(n_==0.0){
       return 0.0;
     }
-    return sqrt(sum2_/(n_-1));
+    return sqrt(sum2_/(w_));
   }
 
-  Real GetSkewness() const
+  DATATYPE GetSkewness() const
   {
     if(MAX_MOMENT<3){
       throw Error("Skewness was not calculated.");
     }
-    if(m2_<1e-20){
+    if(m_[1]<1e-20){
       return 0.0;
     }else{
-      return m3_/sqrt(m2_*m2_*m2_);
+      return m_[2]/sqrt(m_[1]*m_[1]*m_[1]);
     }
   }
 
-  Real GetKurtosis() const
+  DATATYPE GetKurtosis() const
   {
     if(MAX_MOMENT<4){
       throw Error("Kurtosis was not calculated.");
     }
-    if(m2_<1e-20){
+    if(m_[1]<1e-20){
       return 0.0;
     }else{
-      return ((n_-1)*m4_) / (m2_*m2_);
+      return w_*m_[3] / (m_[1]*m_[1]);
     }
   }
 
 private:
-  Real mean_;
-  Real sum_;
-  Real sum2_;
-  Real m2_;
-  Real m3_;
-  Real m4_;
-  Real n_;
+  DATATYPE sum_;
+  DATATYPE sum2_;
+  DATATYPE max_;
+  DATATYPE min_;
+  DATATYPE m_[MAX_MOMENT];
+  Real w_;
+  unsigned int n_;
 };
 
 }}} //ns
diff --git a/modules/img/alg/tests/test_stat.cc b/modules/img/alg/tests/test_stat.cc
index b736c6bd93d30aebbcc2eb05616e70c4d0d19f7e..7e202193f37dcc42a6929a777dc9e37a26c4fca0 100644
--- a/modules/img/alg/tests/test_stat.cc
+++ b/modules/img/alg/tests/test_stat.cc
@@ -86,6 +86,51 @@ void test() {
   BOOST_CHECK_CLOSE(acc_c.GetStandardDeviation(),Real(2.58198889747),Real(0.0001));
   BOOST_CHECK_CLOSE(acc_c.GetSkewness()+Real(0.5),Real(0.5),Real(0.0001));
   BOOST_CHECK_CLOSE(acc_c.GetKurtosis(),Real(1.77),Real(0.0001));
+
+  // check accumulator template for restriction to lower order moments
+  StatAccumulator<3> acc4;
+  for(int u=0;u<3;++u) {
+    for(int v=0;v<3;++v) {
+      acc4(val[u][v]);
+    }
+  }
+  BOOST_CHECK_CLOSE(acc4.GetMean(),Real(5.0),Real(0.0001));
+  BOOST_CHECK_CLOSE(acc4.GetStandardDeviation(),Real(2.58198889747),Real(0.0001));
+  BOOST_CHECK_CLOSE(acc4.GetSkewness()+Real(0.5),Real(0.5),Real(0.0001));
+  BOOST_CHECK_THROW(acc4.GetKurtosis(),ost::Error);
+
+  StatAccumulator<2> acc5;
+  for(int u=0;u<3;++u) {
+    for(int v=0;v<3;++v) {
+      acc5(val[u][v]);
+    }
+  }
+  BOOST_CHECK_CLOSE(acc5.GetMean(),Real(5.0),Real(0.0001));
+  BOOST_CHECK_CLOSE(acc5.GetStandardDeviation(),Real(2.58198889747),Real(0.0001));
+  BOOST_CHECK_THROW(acc5.GetSkewness(),ost::Error);
+  BOOST_CHECK_THROW(acc5.GetKurtosis(),ost::Error);
+
+  StatAccumulator<1> acc6;
+  for(int u=0;u<3;++u) {
+    for(int v=0;v<3;++v) {
+      acc6(val[u][v]);
+    }
+  }
+  BOOST_CHECK_CLOSE(acc6.GetMean(),Real(5.0),Real(0.0001));
+  BOOST_CHECK_THROW(acc6.GetStandardDeviation(),ost::Error);
+  BOOST_CHECK_THROW(acc6.GetSkewness(),ost::Error);
+  BOOST_CHECK_THROW(acc6.GetKurtosis(),ost::Error);
+
+  StatAccumulator<0> acc7;
+  for(int u=0;u<3;++u) {
+    for(int v=0;v<3;++v) {
+      acc7(val[u][v]);
+    }
+  }
+  BOOST_CHECK_THROW(acc7.GetMean(),ost::Error);
+  BOOST_CHECK_THROW(acc7.GetStandardDeviation(),ost::Error);
+  BOOST_CHECK_THROW(acc7.GetSkewness(),ost::Error);
+  BOOST_CHECK_THROW(acc7.GetKurtosis(),ost::Error);
 }
 
 } // namespace
diff --git a/modules/img/base/src/image_state/binop.cc b/modules/img/base/src/image_state/binop.cc
index 16ff05ea217adc5a7f2e414a091902a27507dde4..dc3339aa2939b1f6b1974b0fceadc584eb7b93ab 100644
--- a/modules/img/base/src/image_state/binop.cc
+++ b/modules/img/base/src/image_state/binop.cc
@@ -103,7 +103,20 @@ template struct fnc_paste_ip<Word,SpatialDomain,Complex,HalfFrequencyDomain>;
 template struct fnc_paste_ip<Real,FrequencyDomain,Complex,HalfFrequencyDomain>;
 template struct fnc_paste_ip<Complex,FrequencyDomain,Complex,HalfFrequencyDomain>;
 template struct fnc_paste_ip<Complex,HalfFrequencyDomain,Complex,HalfFrequencyDomain>;
-
+template struct fnc_paste_ip<Real,FrequencyDomain,Complex,SpatialDomain>;
+template struct fnc_paste_ip<Real,FrequencyDomain,unsigned short,SpatialDomain>;
+template struct fnc_paste_ip<Complex,FrequencyDomain,unsigned short,SpatialDomain>;
+template struct fnc_paste_ip<Complex,HalfFrequencyDomain,unsigned short,SpatialDomain>;
+template struct fnc_paste_ip<Complex,HalfFrequencyDomain,Real,SpatialDomain>;
+template struct fnc_paste_ip<Complex,HalfFrequencyDomain,Complex,SpatialDomain>;
+template struct fnc_paste_ip<Complex,FrequencyDomain,Complex,SpatialDomain>;
+template struct fnc_paste_ip<Complex,FrequencyDomain,Real,SpatialDomain>;
+template struct fnc_paste_ip<Real,FrequencyDomain,Real,SpatialDomain>;
+
+template struct fnc_add_ip<Real,SpatialDomain,Real,SpatialDomain>;
+template struct fnc_sub_ip<Real,SpatialDomain,Real,SpatialDomain>;
+template struct fnc_mul_ip<Real,SpatialDomain,Real,SpatialDomain>;
+template struct fnc_div_ip<Real,SpatialDomain,Real,SpatialDomain>;
 }
 
 template struct dispatch::binary_dispatch_ip<binop::fnc_add_ip>;
diff --git a/modules/img/base/src/image_state/image_state_visitor.hh b/modules/img/base/src/image_state/image_state_visitor.hh
index d1808be7bf9d4cec4871ba9247d9d5ede941dc94..64fdadb3f29cb2344f02b689bd113f80eeac48ab 100644
--- a/modules/img/base/src/image_state/image_state_visitor.hh
+++ b/modules/img/base/src/image_state/image_state_visitor.hh
@@ -197,8 +197,8 @@ public:
          const P6& p6,                           \
          const P7& p7,                           \
          const P8& p8,                           \
-         const P8& p9,                           \
-         const P9& pa):                          \
+         const P9& p9,                           \
+         const PA& pa):                          \
     FNC(p0,p1,p2,p3,p4,p5,p6,p7,p8,p9,pa) {}     \
   /* 12 params */                                \
   template <class P0,                            \
@@ -222,9 +222,9 @@ public:
          const P6& p6,                           \
          const P7& p7,                           \
          const P8& p8,                           \
-         const P8& p9,                           \
-         const P8& pa,                           \
-         const P9& pb):                          \
+         const P9& p9,                           \
+         const PA& pa,                           \
+         const PB& pb):                          \
     FNC(p0,p1,p2,p3,p4,p5,p6,p7,p8,p9,pa,pb) {}
 
 
diff --git a/modules/img/base/tests/test_value_holder.cc b/modules/img/base/tests/test_value_holder.cc
index f5b09f938f0bd48ba09e0701631d10ab67f4e8c4..bd0cacbd6ba76084ea7933717ff47a308dc15136 100644
--- a/modules/img/base/tests/test_value_holder.cc
+++ b/modules/img/base/tests/test_value_holder.cc
@@ -91,8 +91,6 @@ test_suite* CreateValueHolderTest()
 {
   using namespace value_holder_test;
   
-  typedef boost::mpl::vector<Real, Complex> values;
-
   test_suite* ts=BOOST_TEST_SUITE("ValueHolder Test");
 
   ts->add( BOOST_TEST_CASE(ReadWrite<Real>) );
diff --git a/modules/index.rst b/modules/index.rst
index f8b688fa05414f021b9efbb9150d6c25a244f907..f664be809700225a527c9c342483d6ed7c7b18e9 100644
--- a/modules/index.rst
+++ b/modules/index.rst
@@ -43,7 +43,7 @@ For Starters
 Molecules
 --------------------------------------------------------------------------------
 
-**Overview**: :doc:`molecules intro <intro-01>` | :doc:`mol overview <mol/base/mol>` | :doc:`graphical entity<gfx/entity>` | :doc:`entity <mol/base/entity>` | :doc:`queries <mol/base/query>` | :doc:`algorithms <mol/alg/molalg>`
+**Overview**: :doc:`molecules intro <intro-01>` | :doc:`mol overview <mol/base/mol>` | :doc:`graphical entity<gfx/entity>` | :doc:`entity <mol/base/entity>` | :doc:`queries <mol/base/query>` | :doc:`algorithms <mol/alg/molalg>` | :doc:`mm <mol/mm/molmm>`
 
 **Trajectories**: :doc:`basics <mol/base/traj>` | :ref:`analysis <traj-analysis>`
 
@@ -96,7 +96,7 @@ Varia
 
 **Datasets:** :doc:`tabular data <table>`
 
-**Supported File Formats:** :doc:`structure formats<io/structure_formats>` | :doc:`sequence formats <io/sequence_formats>` | :doc:`image formats <io/image_formats>`
+**Supported File Formats:** :doc:`structure formats<io/structure_formats>` | :doc:`sequence formats <io/sequence_formats>` | :doc:`sequence profile formats <io/sequence_profile_formats>` | :doc:`image formats <io/image_formats>`
 
 **Users** :doc:`Reporting a problem <users>`
 
diff --git a/modules/info/src/item_type_cast.hh b/modules/info/src/item_type_cast.hh
index 33caf38679e92ebb10e1734118c953e5ef0254e4..0b364d575a31737eec8e0f6fa775d5b1a14956dd 100644
--- a/modules/info/src/item_type_cast.hh
+++ b/modules/info/src/item_type_cast.hh
@@ -99,7 +99,7 @@ template <> void set_new_type<IT_STRING,IT_BOOL>(EleImpl& item)
 template <> void set_new_type<IT_STRING,IT_VECTOR>(EleImpl& item)
 {
   static String num("[-+]?[0-9]*\\.?[0-9]+([eE][-+]?[0-9]+)?");
-  boost::regex expression("\\(("+num+"),("+num+"),("+num+")\\)");
+  boost::regex expression("\\[ *("+num+") *, *("+num+") *, *("+num+") *\\]");
   boost::cmatch what;
 
   if(boost::regex_match(item.GetStringRepr().c_str(), what, expression)) { 
diff --git a/modules/io/doc/io.dox b/modules/io/doc/io.dox
index e89777217a2d449f1c91edbf0e4c52946fc22609..b266c977afdc96f07ecd37bdffb06d660e7038f6 100644
--- a/modules/io/doc/io.dox
+++ b/modules/io/doc/io.dox
@@ -6,7 +6,7 @@ namespace ost { namespace io {
 
 The io module deals with input and output of \ref mol::EntityHandle "entities",
 \ref seq::AlignmentHandle "multiple sequence alignments" and 
-\ref iplt::ImageHandle "map data". Importers for common file formats such as PDB, 
+\ref ost::img::ImageHandle "map data". Importers for common file formats such as PDB, 
 SDF, FASTA, CLUSTAL W, DX and the CHARMM files are available. 
 
 
@@ -28,7 +28,7 @@ control over the exact loading behaviour.
 
 Some of the file formats for molecules do not explicitly define bonds. The
 IO handlers for these file formats make use of the conop module to infer
-connectivity information (see \ref ost::conop::Builder "Builder"). 
+connectivity information.
 
 \subsection io_handler IO Handlers
 
diff --git a/modules/io/doc/io.rst b/modules/io/doc/io.rst
index 8d6cee55047692afa3ff20b6f1734fb5266c0e43..9b40234d5084fec0f9a8d58d8ab48bba5a0ef926 100644
--- a/modules/io/doc/io.rst
+++ b/modules/io/doc/io.rst
@@ -157,16 +157,49 @@ Loading sequence or alignment files
 
 .. function:: LoadSequenceList(filename, format='auto')
 
-  For a desription of how to use :func:`LoadSequenceList` please refer to 
+  For a description of how to use :func:`LoadSequenceList` please refer to 
   :func:`LoadSequence`. For a list of file formats supported by
   :func:`LoadSequenceList` see :doc:`sequence_formats`.
 
 .. function:: LoadAlignment(filename, format='auto')
 
-  For a desription of how to use :func:`LoadAlignment` please refer to 
+  For a description of how to use :func:`LoadAlignment` please refer to 
   :func:`LoadSequence`. For a list of file formats supported by 
   :func:`LoadAlignment` see :doc:`sequence_formats`.
+
+.. function:: LoadSequenceProfile(filename, format='auto')
+
+  Load sequence profile data from disk. If format is set to 'auto', the function
+  guesses the filetype based on the extension of the file. Files ending in
+  '.hhm' (output of HHblits) and '.pssm' (ASCII Table (PSSM) output of PSI-BLAST
+  as generated with blastpgp and flag -Q) will automatically be loaded.
+  
+  For files with non-standard extensions, the format can be set explicitly 
+  specifying the `format` parameter. 
+  
+  .. code-block:: python
+
+    # recognizes hhm file by file extension
+    myprof = io.LoadSequenceProfile('myhmm.hhm')
+    # recognizes pssm file by file extension
+    myprof = io.LoadSequenceProfile('myprof.pssm')
+
+    # to override format
+    myprof = io.LoadSequenceProfile('myfile', format='hhm')
+    myprof = io.LoadSequenceProfile('myfile', format='pssm')
+    
+  For a list of file formats supported by :func:`LoadSequenceProfile` see
+  :doc:`sequence_profile_formats`.
+  
+  :rtype: :class:`~ost.seq.ProfileHandle`
+
+  :raises: :exc:`~ost.io.IOUnknownFormatException` if the format string supplied 
+      is not recognized or the file format can not be detected based on the 
+      file extension.
       
+      :exc:`~ost.io.IOException` if the import fails due to an erroneous or 
+      inexistent file.
+
 Saving Sequence Data
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
@@ -247,7 +280,7 @@ Loading Density Maps
     # recognizes mrc file by file extension
     ent = io.LoadImage('file.mrc')
 
-    # it is always possible to explicitely set the image format
+    # it is always possible to explicitly set the image format
     # DAT file explicitly
     ent = io.LoadImage('file', Dat())
 
diff --git a/modules/io/doc/sequence_profile_formats.rst b/modules/io/doc/sequence_profile_formats.rst
new file mode 100644
index 0000000000000000000000000000000000000000..8c14c7d7f8ad7f5003d700d7edc060b48da119ec
--- /dev/null
+++ b/modules/io/doc/sequence_profile_formats.rst
@@ -0,0 +1,23 @@
+Supported Sequence Profile File Formats
+================================================================================
+
+HHblits output
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+*Recognized File Extensions*
+  .hhm, .hhm.gz
+  
+*Format Name*
+  hhm
+  
+
+PSI-BLAST output
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+ASCII Table (PSSM) output of PSI-BLAST as generated with blastpgp and flag -Q.
+
+*Recognized File Extensions*
+  .pssm, .pssm.gz
+  
+*Format Name*
+  pssm
diff --git a/modules/io/pymod/__init__.py b/modules/io/pymod/__init__.py
index b64e0d23d1be9eefc2c75833d49e90b70604b395..9d6536d9efd7ace2d39917cb26d507ae5c344419 100644
--- a/modules/io/pymod/__init__.py
+++ b/modules/io/pymod/__init__.py
@@ -210,7 +210,7 @@ except ImportError:
   pass
 
  ## loads several images and puts them in an ImageList
- # \sa \ref fft_li.py "View Fourier Transform Example"
+ # \sa \example fft_li.py "View Fourier Transform Example"
 def LoadImageList (files):
   image_list=img.ImageList()
   for file in files:
diff --git a/modules/io/pymod/export_map_io.cc b/modules/io/pymod/export_map_io.cc
index 4d49dad7f6f2e08de62a1fa39a65146d8cecd7bd..ab195ef2dc25f8323f27f08de82e31b4f8363980 100644
--- a/modules/io/pymod/export_map_io.cc
+++ b/modules/io/pymod/export_map_io.cc
@@ -112,8 +112,10 @@ void export_map_io()
     .def("GetEndianessOnSave", &Spider::GetEndianessOnSave)
   ;
 
-  class_<MRC, bases<ImageFormatBase> >("MRC", init<bool,Subformat,Endianess>
-           ((arg("normalize_on_save") = false,arg("subformat")=MRC_AUTO_FORMAT,arg("endianess_on_save")=OST_LOCAL_ENDIAN)))
+  class_<MRC, bases<ImageFormatBase> >("MRC", init<bool,Subformat,Endianess,Format>
+           ((arg("normalize_on_save") = false,arg("subformat")=MRC_AUTO_FORMAT,arg("endianess_on_save")=OST_LOCAL_ENDIAN,arg("format")=OST_DEFAULT_FORMAT)))
+    .def("SetBitDepth", &MRC::SetBitDepth)
+    .def("GetBitDepth", &MRC::GetBitDepth)
     .def("SetNormalizeOnSave", &MRC::SetNormalizeOnSave)
     .def("GetNormalizeOnSave", &MRC::GetNormalizeOnSave)
     .def("SetSubformat", &MRC::SetSubformat)
@@ -122,8 +124,8 @@ void export_map_io()
     .def("GetEndianessOnSave", &MRC::GetEndianessOnSave)
   ;
 
-  class_<CCP4, bases<MRC> >("CCP4", init<bool,Endianess>
-           ((arg("normalize_on_save") = false,arg("endianess_on_save")=OST_LOCAL_ENDIAN)))
+  class_<CCP4, bases<MRC> >("CCP4", init<bool,Endianess,Format>
+           ((arg("normalize_on_save") = false,arg("endianess_on_save")=OST_LOCAL_ENDIAN,arg("format")=OST_DEFAULT_FORMAT)))
   ;
 
   class_<DM3, bases<ImageFormatBase> >("DM3", init<>())
diff --git a/modules/io/pymod/export_mmcif_io.cc b/modules/io/pymod/export_mmcif_io.cc
index 824d70340208f61ac9959cddcff4902833f1bed4..7c6a5b69750a362f01842ad13c52b555353b017a 100644
--- a/modules/io/pymod/export_mmcif_io.cc
+++ b/modules/io/pymod/export_mmcif_io.cc
@@ -99,7 +99,6 @@ void export_mmcif_io()
                   &MMCifInfoCitation::SetAuthorList)
   ;
 
-  typedef std::vector<MMCifInfoCitation> MMCifInfoCitationList;
   class_<std::vector<MMCifInfoCitation> >("MMCifInfoCitationList", init<>())
     .def(vector_indexing_suite<std::vector<MMCifInfoCitation> >())
   ;
@@ -124,7 +123,6 @@ void export_mmcif_io()
                   &MMCifInfoTransOp::SetMatrix)
   ;
 
-  typedef std::vector<MMCifInfoTransOp> MMCifInfoTransOpList;
   class_<std::vector<MMCifInfoTransOp> >("MMCifInfoTransOpList", init<>())
     .def(vector_indexing_suite<std::vector<MMCifInfoTransOp> >())
   ;
@@ -134,7 +132,6 @@ void export_mmcif_io()
     .def(vector_indexing_suite<std::vector<MMCifInfoTransOpPtr>, true >())
   ;
 
-  typedef std::vector<MMCifInfoTransOpPtrList > MMCifInfoTransOpPtrListList;
   class_<std::vector<MMCifInfoTransOpPtrList > >("MMCifInfoTransOpPtrListList",
                                                 init<>())
     .def(vector_indexing_suite<std::vector<MMCifInfoTransOpPtrList >, true >())
@@ -228,7 +225,6 @@ void export_mmcif_io()
   class_<MMCifInfoStructRefSeqDifs>("MMCifInfoStructRefSeqDifs", init<>())
   	.def(vector_indexing_suite<MMCifInfoStructRefSeqDifs, true>())
   ;
-  typedef std::vector<MMCifInfoBioUnit> MMCifInfoBioUnitList;
   class_<std::vector<MMCifInfoBioUnit> >("MMCifInfoBioUnitList", init<>())
     .def(vector_indexing_suite<std::vector<MMCifInfoBioUnit> >())
   ;
diff --git a/modules/io/pymod/export_pdb_io.cc b/modules/io/pymod/export_pdb_io.cc
index 237b2918c4e0188c1af301d212e073195266d87f..752647f67fd2aa3652c09c1fbee4aa6db8189b40 100644
--- a/modules/io/pymod/export_pdb_io.cc
+++ b/modules/io/pymod/export_pdb_io.cc
@@ -1,7 +1,7 @@
 //------------------------------------------------------------------------------
 // This file is part of the OpenStructure project <www.openstructure.org>
 //
-// Copyright (C) 2008-2011 by the OpenStructure authors
+// Copyright (C) 2008-2015 by the OpenStructure authors
 //
 // This library is free software; you can redistribute it and/or modify it under
 // the terms of the GNU Lesser General Public License as published by the Free
@@ -22,6 +22,8 @@ using namespace boost::python;
 #include <ost/io/mol/io_profile.hh>
 #include <ost/io/mol/pdb_reader.hh>
 #include <ost/io/mol/pdb_writer.hh>
+#include <ost/io/mol/pdb_str.hh>
+
 using namespace ost;
 using namespace ost::io;
 
@@ -33,6 +35,9 @@ BOOST_PYTHON_FUNCTION_OVERLOADS(load_PDB_ov, LoadPDB, 1, 2)
 void (PDBWriter::*write_a)(const mol::EntityHandle&)=&PDBWriter::Write;
 void (PDBWriter::*write_b)(const mol::EntityView&)=&PDBWriter::Write;
 
+String (*pdb_str_a)(const mol::EntityHandle&, const IOProfile&)=&EntityToPDBString;
+String (*pdb_str_b)(const mol::EntityView&, const IOProfile&)=&EntityToPDBString;
+
 void remove_profiles() {
   IOProfileRegistry::RemoveProfiles();
 }
@@ -88,6 +93,12 @@ void export_pdb_io()
                   &PDBWriter::SetWriteMultiModel)
     .def("Write", write_b)    
   ;
+  def("EntityToPDBStr", pdb_str_a,
+      (arg("entity"), arg("profile")=IOProfile()));
+  def("EntityToPDBStr", pdb_str_b,
+      (arg("entity"), arg("profile")=IOProfile()));
+
+  def("PDBStrToEntity", &PDBStringToEntity, (arg("pdb_string"),arg("profile")=IOProfile()));
 
   // we need to make sure there are no pending references to Python objects
   // tied to the IOProfileRegistry singleton. The destructor of 
diff --git a/modules/io/pymod/wrap_io.cc b/modules/io/pymod/wrap_io.cc
index 1e2b5186906a5f94cd11526f9837aa74c6af5fca..6d16af3e91192a6b47c39a3f4d770e2be94cd260 100644
--- a/modules/io/pymod/wrap_io.cc
+++ b/modules/io/pymod/wrap_io.cc
@@ -99,6 +99,9 @@ BOOST_PYTHON_MODULE(_ost_io)
   def("SequenceListFromString", &SequenceListFromString);
   def("SequenceFromString", &SequenceFromString);  
   def("SaveAlignment", &SaveAlignment, arg("format")="auto");
+  
+  def("LoadSequenceProfile", &LoadSequenceProfile, arg("format")="auto");
+
   def("LoadSurface",LoadSurface,load_surface_ov());
   def("LoadManagedSurface",LoadManagedSurface,load_msurface_ov());
 
diff --git a/modules/io/src/CMakeLists.txt b/modules/io/src/CMakeLists.txt
index 58470a33136c2b794668dc2b39effab39cd2f805..13d6e3c6adef7c8adbe30aa0494d2668ce7242d7 100644
--- a/modules/io/src/CMakeLists.txt
+++ b/modules/io/src/CMakeLists.txt
@@ -38,12 +38,18 @@ if (ENABLE_IMG)
   foreach(fname ${OST_IO_IMG_SOURCES})
     set(OST_IO_SOURCES ${OST_IO_SOURCES} img/${fname})
   endforeach(fname ${OST_IO_IMG_SOURCES})
-
-  foreach(fname ${OST_IO_IMG_HEADERS})
-    set(OST_IO_HEADERS ${OST_IO_HEADERS} img/${fname})
-  endforeach(fname ${OST_IO_IMG_HEADERS})
 endif()
 
+####################################
+# Add headers in subfolders (additionally) to OST_IO_HEADERS.
+# In the end, we will have two copies (!) of each header in the subfolders.
+# One copy in ost/io/<SUB> and one in ost/io.
+
+# As it's silly to have duplicate headers, this behavior might be removed in the
+# future. So please always include the headers in the subfolders.
+# (e.g. use "#include <ost/io/mol/load_entity.hh>"
+#       instead of #include <ost/io/load_entity.hh>)
+# For compatibility reasons, we keep it for now (dates back to 2010).
 foreach(fname ${OST_IO_MOL_HEADERS})
   set(OST_IO_HEADERS ${OST_IO_HEADERS} mol/${fname})
 endforeach(fname ${OST_IO_MOL_HEADERS})
@@ -52,6 +58,12 @@ foreach(fname ${OST_IO_SEQ_HEADERS})
   set(OST_IO_HEADERS ${OST_IO_HEADERS} seq/${fname})
 endforeach(fname ${OST_IO_SEQ_HEADERS})
 
+if (ENABLE_IMG)
+  foreach(fname ${OST_IO_IMG_HEADERS})
+    set(OST_IO_HEADERS ${OST_IO_HEADERS} img/${fname})
+  endforeach(fname ${OST_IO_IMG_HEADERS})
+endif()
+####################################
 
 set(OST_IO_DEPENDENCIES ost_base;ost_conop;ost_seq)
 if (ENABLE_IMG)
diff --git a/modules/io/src/converting_streams.hh b/modules/io/src/converting_streams.hh
index fb6b3b82d103aee36cb298be7956dfb52269027a..b451769185cd823c7f66cd465242b935dfd24078 100644
--- a/modules/io/src/converting_streams.hh
+++ b/modules/io/src/converting_streams.hh
@@ -204,6 +204,10 @@ public:
   {
     return read_helper(value,n);
   }
+  BinaryIStream& read(int8_t* value,std::streamsize n)
+  {
+    return read_helper(value,n);
+  }
   BinaryIStream& read(int16_t* value,std::streamsize n)
   {
     return read_helper(value,n);
diff --git a/modules/io/src/img/map_io_dx_handler.cc b/modules/io/src/img/map_io_dx_handler.cc
index 4509d327d51187961802658a214d69c8b8bdf245..5ecaab90479a1f878a151ccf3af10e6f2da14bca 100644
--- a/modules/io/src/img/map_io_dx_handler.cc
+++ b/modules/io/src/img/map_io_dx_handler.cc
@@ -108,9 +108,11 @@ void MapIODxHandler::Import(img::MapHandle& mh, std::istream& infile, const Imag
   }
 
   String line;
-  int u_size,v_size,w_size;
-  Real x_orig=0, y_orig=0, z_orig=0;
-  Real u_spacing=0, v_spacing=0, w_spacing=0;
+  int u_size=0,v_size=0,w_size=0;
+  Real x_orig=0.0, y_orig=0.0, z_orig=0.0;
+  Real u_spacing=1.0, v_spacing=1.0, w_spacing=1.0;
+  size_t delta_count=0;
+  Real deltas[][3]={{1.0,0.0,0.0},{0.0,1.0,0.0},{0.0,0.0,1.0}};
   int num_gridpoints;
   img::MapHandle mh2;
   std::vector<String> tokens;
@@ -120,6 +122,7 @@ void MapIODxHandler::Import(img::MapHandle& mh, std::istream& infile, const Imag
     }
     // read gridpoints line
     if (boost::iequals(line.substr(0,35), "object 1 class gridpositions counts")) {
+      LOG_DEBUG("DXImport: reading gridpoints line [" << line << "]");
       boost::split(tokens, line, boost::is_any_of(" "), boost::token_compress_on);
       int tokens_size = (int)tokens.size();
       if(tokens_size < 3) {
@@ -137,6 +140,7 @@ void MapIODxHandler::Import(img::MapHandle& mh, std::istream& infile, const Imag
     }
     // read grid origin line
     else if (boost::iequals(line.substr(0,6), "origin")) {
+      LOG_DEBUG("DXImport: reading origin line [" << line << "]");
       boost::split(tokens, line, boost::is_any_of(" "), boost::token_compress_on);
       int tokens_size = (int)tokens.size();
       if(tokens_size < 3) {
@@ -154,42 +158,24 @@ void MapIODxHandler::Import(img::MapHandle& mh, std::istream& infile, const Imag
     }
     // read grid spacing line
     else if (boost::iequals(line.substr(0,5), "delta")) {
-      boost::split(tokens, line, boost::is_any_of(" "), boost::token_compress_on);
-      int tokens_size = (int)tokens.size();
-      if(tokens_size < 3) {
-        String msg="Bad spacing line: Can't read spacing of grid points";
+      LOG_DEBUG("DXImport: reading delta line [" << line << "]");
+      boost::split(tokens, line, boost::is_any_of("\t "), boost::token_compress_on);
+      if(tokens.size() < 4) {
+        String msg="DXImport: expected delta line with 3 floats";
         throw IOException(msg);
       }
       try {
-        Real tmp;
-        tmp = boost::lexical_cast<Real>(boost::trim_copy(tokens[tokens_size-3]));
-        if(tmp != 0) {
-          u_spacing=tmp;
-        } else if(tmp == 0) {
-          tmp = boost::lexical_cast<Real>(boost::trim_copy(tokens[tokens_size-2]));
-          if(tmp != 0) {
-            v_spacing=tmp;
-          } else if(tmp == 0) {
-            tmp = boost::lexical_cast<Real>(boost::trim_copy(tokens[tokens_size-1]));
-            if(tmp != 0) {
-              w_spacing=tmp;
-            } else {
-              String msg="Bad spacing line: Can't read spacing of grid points";
-              throw IOException(msg);
-            }
+        if(delta_count<3) {
+          for(size_t i=0;i<3;++i) {
+            deltas[delta_count][i] = boost::lexical_cast<Real>(tokens[i+1]);
           }
+          ++delta_count;
         }
       } catch(boost::bad_lexical_cast&) {
-        format fmer= format("Bad spacing line: Can't convert String of origin"
-                   " '%s' to Real constant.") % line;
+        format fmer= format("Bad spacing line: Can't convert String of delta"
+                   " '%s' to Real constants.") % line;
         throw IOException(fmer.str());
       }
-      // create map handle
-      if(u_spacing != 0 && v_spacing != 0 && w_spacing != 0) {
-        mh2 = CreateMap(img::Size(u_size,v_size,w_size));
-        mh2.SetAbsoluteOrigin(geom::Vec3(x_orig, y_orig, z_orig));
-        mh2.SetSpatialSampling(geom::Vec3(u_spacing,v_spacing,w_spacing));
-      }
     }
     // read number of data points
     if (boost::iequals(line.substr(0,25), "object 3 class array type")) {
@@ -207,6 +193,25 @@ void MapIODxHandler::Import(img::MapHandle& mh, std::istream& infile, const Imag
         throw IOException(fmer.str());
       }
 
+      // at this point enough info should be available to create map
+      if(u_size>1e5 || v_size>1e5 || w_size>1e5) {
+        format fmer=format("DXImport: nonsense mapsize read (%d %d %d)") % u_size % v_size % w_size;
+        throw IOException(fmer.str());
+      }
+      LOG_DEBUG("DXImport: creating map of size " << img::Size(u_size,v_size,w_size));
+      LOG_DEBUG("          at absolute origin " << geom::Vec3(x_orig, y_orig, z_orig));
+      mh2 = CreateMap(img::Size(u_size,v_size,w_size));
+      mh2.SetAbsoluteOrigin(geom::Vec3(x_orig, y_orig, z_orig));
+      if(delta_count==3) {
+        u_spacing=deltas[0][0];
+        v_spacing=deltas[1][1];
+        w_spacing=deltas[2][2];
+        LOG_DEBUG("          and spatial sampling " << geom::Vec3(u_spacing,v_spacing,w_spacing));
+        mh2.SetSpatialSampling(geom::Vec3(u_spacing,v_spacing,w_spacing));
+      } 
+
+      // and read in the values
+      // TODO: this is glacially slow
       Real value=0;
       for(int i=0; i<num_gridpoints; i+=3) {
         std::getline(infile,line);
@@ -226,6 +231,7 @@ void MapIODxHandler::Import(img::MapHandle& mh, std::istream& infile, const Imag
   mh.Swap(mh2);
 }
 
+
 void MapIODxHandler::Export(const img::MapHandle& mh2,
                                   const bf::path& loc,const ImageFormatBase& formatstruct) const
 {
diff --git a/modules/io/src/img/map_io_mrc_handler.cc b/modules/io/src/img/map_io_mrc_handler.cc
index c80ec39aba853070679aefdfd7b890cd5b876de0..9d1740abbd6a1b0b20e463ee166514af472d477a 100644
--- a/modules/io/src/img/map_io_mrc_handler.cc
+++ b/modules/io/src/img/map_io_mrc_handler.cc
@@ -74,7 +74,7 @@ u v w x . . .     d*c*b*a b c d   3
 #include <ost/base.hh>
 
 #include <ost/img/image_state.hh>
-#include <ost/img/alg/stat.hh>
+#include <ost/img/alg/stat_accumulator.hh>
 #include <ost/img/alg/normalizer_factory.hh>
 #include <ost/img/util.hh>
 #include <ost/img/progress.hh>
@@ -94,13 +94,24 @@ namespace ost { namespace io {
 String MRC::FORMAT_STRING = "defined_mrc";
 
 
-MRC::MRC(bool normalize_on_save, Subformat subformat,Endianess endianess_on_save):
+MRC::MRC(bool normalize_on_save, Subformat subformat,Endianess endianess_on_save, Format bit_depth):
   ImageFormatBase(FORMAT_STRING),
   subformat_(subformat),
   normalize_on_save_(normalize_on_save),
-  endianess_on_save_(endianess_on_save)
+  endianess_on_save_(endianess_on_save),
+  bit_depth_(bit_depth)
 {
 }
+Format MRC::GetBitDepth() const
+{
+  return bit_depth_;
+}
+
+void MRC::SetBitDepth (Format bitdepth)
+{
+  bit_depth_ = bitdepth;
+}
+
 
 Endianess MRC::GetEndianessOnSave() const
 {
@@ -132,8 +143,8 @@ void MRC::SetNormalizeOnSave(bool normalize_on_save)
   normalize_on_save_ = normalize_on_save;
 }
 
-CCP4::CCP4(bool normalize_on_save, Endianess endianess_on_save):
-  MRC(normalize_on_save,MRC_NEW_FORMAT,endianess_on_save)
+CCP4::CCP4(bool normalize_on_save, Endianess endianess_on_save, Format bit_depth):
+  MRC(normalize_on_save,MRC_NEW_FORMAT,endianess_on_save,bit_depth)
 {}
 
 
@@ -223,7 +234,7 @@ public:
       label[i]=' ';
     }
   }
-  header_base(const img::ConstImageHandle& im):
+  header_base(const img::ConstImageHandle& im, Format bit_depth):
     nc(),
     nr(static_cast<int>(im.GetExtent().GetSize().GetHeight())),
     ns(static_cast<int>(im.GetExtent().GetSize().GetDepth())),
@@ -247,22 +258,55 @@ public:
   {
     if(im.GetType()==img::REAL){
       nc=static_cast<int>(im.GetExtent().GetSize().GetWidth());
-      mode=2;
+      switch(bit_depth){
+      case OST_BIT8_FORMAT:
+        mode=0;
+        break;
+      case OST_BIT16_FORMAT:
+        mode=1;
+        break;
+      case OST_FLOAT_FORMAT:
+      case OST_DEFAULT_FORMAT:
+        mode=2;
+        break;
+      default:
+        throw(IOException("MRC/CCP4 export: Bit depth not supported."));
+        break;
+      }
       x=im.GetExtent().GetSize().GetWidth()*im.GetSpatialSampling()[0];
       y=im.GetExtent().GetSize().GetHeight()*im.GetSpatialSampling()[1];
       z=im.GetExtent().GetSize().GetDepth()*im.GetSpatialSampling()[2];
     }else{
       nc=static_cast<int>(im.GetExtent().GetSize().GetWidth()/2 +1);
-      mode=4;
+      switch(bit_depth){
+      case OST_BIT16_FORMAT:
+        mode=3;
+        break;
+      case OST_FLOAT_FORMAT:
+      case OST_DEFAULT_FORMAT:
+        mode=4;
+        break;
+      default:
+        throw(IOException("MRC/CCP4 export: Bit depth not supported."));
+        break;
+      }
       x=1.0;
       y=1.0;
       z=1.0;
     }
-    ost::img::alg::Stat stat;
-    im.Apply(stat);
-    amin=stat.GetMinimum();
-    amax=stat.GetMaximum();
-    amean=stat.GetMean();
+    ost::img::alg::StatAccumulator<1> acc;
+    if(im.GetType()==img::REAL) {
+      img::image_state::RealSpatialImageState *isr=dynamic_cast<img::image_state::RealSpatialImageState*>(im.ImageStatePtr().get());
+      if(! isr){
+        throw(IOException("MRC/CCP4 export: dynamic cast failed in header base."));
+      }
+      for(Real* ptr = isr->Data().GetData(); ptr<isr->Data().GetEnd(); ++ptr) {
+        acc(*ptr);
+      }
+      amin=acc.GetMinimum();
+      amax=acc.GetMaximum();
+      amean=acc.GetMean();
+    }
     for(unsigned int i=0;i<800;++i)
     {
       label[i]=' ';
@@ -342,8 +386,8 @@ public:
     yorigin(0.0)
   {
   }
-  mrc_header(const img::ConstImageHandle& im):
-    header_base(im),
+  mrc_header(const img::ConstImageHandle& im, Format bit_depth):
+    header_base(im,bit_depth),
     xorigin(0.0), // todo determine origin
     yorigin(0.0)
   {
@@ -435,8 +479,8 @@ public:
     arms()
   {
   }
-  ccp4_header(const img::ConstImageHandle& im):
-    header_base(im),
+  ccp4_header(const img::ConstImageHandle& im, Format bit_depth):
+    header_base(im,bit_depth),
     lskflag(),
     skwmat(),
     skwtrn(),
@@ -703,15 +747,17 @@ void real_dumper(BinaryOStream<CONVERSIONTYPE>& f, header_base& header, const Co
   char this_dummy; //create dummy variable to give to Progress as this
   Progress::Instance().Register(&this_dummy,header.ns*header.nr,100);
   for(int ss=0;ss<header.ns;++ss) {
+    std::vector<B> buffer(header.nr*header.nc);
     pnt[maps]=header.nsstart+ss;
     for(int sr=0;sr<header.nr;++sr) {
       pnt[mapr]=header.nrstart+sr;
       for(int sc=0;sc<header.nc;++sc) {
         pnt[mapc]=header.ncstart+sc;
-        f << static_cast<B>(norm.Convert(isr->Value(pnt)));
+        buffer[header.nc*sr+sc]=img::Val2Val<Real,B>(norm.Convert(isr->Value(pnt)));
       }
       Progress::Instance().AdvanceProgress(&this_dummy);
     }
+    f.write(&buffer[0],header.nr*header.nc);
   }
   Progress::Instance().DeRegister(&this_dummy);
 }
@@ -795,7 +841,7 @@ void import_helper(img::MapHandle& image, std::istream& in,const MRC& formatmrc)
     } else {
       throw IOException("internal error in MRC io: expected ComplexHalfFrequencyImageState");
     }
-  } else if (header.mode>=0 && header.mode<=2) {
+  } else if (header.mode==0 || header.mode==2 || header.mode==5 || header.mode==6 || header.mode==7) {
     img::Size msize;
     msize[header.mapc-1]=header.nc;
     msize[header.mapr-1]=header.nr;
@@ -815,11 +861,15 @@ void import_helper(img::MapHandle& image, std::istream& in,const MRC& formatmrc)
     LOG_INFO("resulting image extent: " << image.GetExtent());
     if(img::image_state::RealSpatialImageState *rs=dynamic_cast<img::image_state::RealSpatialImageState*>(image.ImageStatePtr().get())) {
       if(header.mode==0) {
-        detail::real_filler<uchar,CONVERSIONTYPE>(*rs,f,header);
-      } else if(header.mode==1) {
-        detail::real_filler<unsigned short,CONVERSIONTYPE>(*rs,f,header);
+        detail::real_filler<int8_t,CONVERSIONTYPE>(*rs,f,header);
+      } else if(header.mode==1 || header.mode==5) {
+        detail::real_filler<int16_t,CONVERSIONTYPE>(*rs,f,header);
       } else if(header.mode==2) {
         detail::real_filler<float,CONVERSIONTYPE>(*rs,f,header);
+      } else if(header.mode==6) {
+        detail::real_filler<uint16_t,CONVERSIONTYPE>(*rs,f,header);
+      } else if(header.mode==7) {
+        detail::real_filler<int32_t,CONVERSIONTYPE>(*rs,f,header);
       }
     } else {
       throw IOException("internal error in MRC/CCP4 io: expected RealSpatialImageState");
@@ -857,14 +907,39 @@ void export_helper(const img::MapHandle& image,
                                     const MRC& formatmrc)
 {
   BinaryOStream<CONVERSIONTYPE> f(out);
-  HEADER header(image);
+  HEADER header(image,formatmrc.GetBitDepth());
 
   f << header;
   if(image.GetType()==img::REAL) {
-    detail::real_dumper<float,CONVERSIONTYPE>(f,header,image,formatmrc);
+    switch(formatmrc.GetBitDepth()){
+    case OST_BIT8_FORMAT:
+      detail::real_dumper<int8_t,CONVERSIONTYPE>(f,header,image,formatmrc);
+      break;
+    case OST_BIT16_FORMAT:
+      detail::real_dumper<int16_t,CONVERSIONTYPE>(f,header,image,formatmrc);
+      break;
+    case OST_FLOAT_FORMAT:
+    case OST_DEFAULT_FORMAT:
+      detail::real_dumper<float,CONVERSIONTYPE>(f,header,image,formatmrc);
+      break;
+    default:
+      throw(IOException("MRC/CCP4 export: Bit depth not supported."));
+      break;
+    }
   } else {
     if(image.GetDomain()==img::HALF_FREQUENCY){
-      detail::complex_dumper<float,CONVERSIONTYPE>(f,header,image,formatmrc);
+      switch(formatmrc.GetBitDepth()){
+        case OST_BIT16_FORMAT:
+          detail::complex_dumper<int16_t,CONVERSIONTYPE>(f,header,image,formatmrc);
+          break;
+        case OST_FLOAT_FORMAT:
+        case OST_DEFAULT_FORMAT:
+          detail::complex_dumper<float,CONVERSIONTYPE>(f,header,image,formatmrc);
+          break;
+        default:
+          throw(IOException("MRC/CCP4 export: Bit depth not supported."));
+          break;
+      }
     } else {
       throw(IOException("MRC/CCP4 export: full complex export not supported."));
     }
diff --git a/modules/io/src/img/map_io_mrc_handler.hh b/modules/io/src/img/map_io_mrc_handler.hh
index c12096b68ff711366e597118aea85f5e0550fc21..d8e2e9710dfa15eb688bd8594fb055923e3d1c11 100644
--- a/modules/io/src/img/map_io_mrc_handler.hh
+++ b/modules/io/src/img/map_io_mrc_handler.hh
@@ -28,7 +28,10 @@ class DLLEXPORT_OST_IO MRC: public ImageFormatBase
 {
  public:
 
-  MRC(bool normalize_on_save = false, Subformat subformat = MRC_AUTO_FORMAT ,Endianess endianness_on_save = OST_LOCAL_ENDIAN);
+  MRC(bool normalize_on_save = false, Subformat subformat = MRC_AUTO_FORMAT ,Endianess endianness_on_save = OST_LOCAL_ENDIAN, Format bit_depth = OST_DEFAULT_FORMAT);
+
+  Format GetBitDepth() const;
+  void SetBitDepth ( Format bitdepth);
 
   Endianess GetEndianessOnSave() const;
   void SetEndianessOnSave(Endianess end);
@@ -46,12 +49,13 @@ class DLLEXPORT_OST_IO MRC: public ImageFormatBase
   Subformat subformat_;
   bool normalize_on_save_;
   Endianess endianess_on_save_;
+  Format bit_depth_;
 };
 
 class DLLEXPORT_OST_IO CCP4: public MRC
 {
  public:
-  CCP4(bool normalize_on_save = false, Endianess endianness_on_save = OST_LOCAL_ENDIAN);
+  CCP4(bool normalize_on_save = false, Endianess endianness_on_save = OST_LOCAL_ENDIAN, Format bit_depth = OST_DEFAULT_FORMAT);
 };
 
 typedef CCP4 MAP;
diff --git a/modules/io/src/img/map_io_png_handler.cc b/modules/io/src/img/map_io_png_handler.cc
index d77db114b4d20c72d026d10e3f6e2435a8737b06..61156a58b2121bb00b698455906a9733125f3907 100644
--- a/modules/io/src/img/map_io_png_handler.cc
+++ b/modules/io/src/img/map_io_png_handler.cc
@@ -111,7 +111,7 @@ void MapIOPngHandler::Import(img::MapHandle& image, std::istream& f,const ImageF
   png_bytep *row_pointers;
   png_uint_32 row,column;
   png_byte *png_data;
-  png_uint_32 width,height,bpp;
+  png_uint_32 width,height;
   std::ostringstream mesg;
 
   PNG form;
@@ -156,7 +156,6 @@ void MapIOPngHandler::Import(img::MapHandle& image, std::istream& f,const ImageF
 
   width=(unsigned int)png_get_image_width(png_ptr, info_ptr);
   height=(unsigned int)png_get_image_height(png_ptr, info_ptr);
-  bpp=(unsigned int)png_get_bit_depth(png_ptr,info_ptr);
 
   // TODO 16 bit greyscale
 
diff --git a/modules/io/src/img/map_io_tiff_handler.cc b/modules/io/src/img/map_io_tiff_handler.cc
index 4be8a815e335f4c17ff75ad2f57241cffad24430..cd0ad364c112f65118498e292194cc1749f9e422 100644
--- a/modules/io/src/img/map_io_tiff_handler.cc
+++ b/modules/io/src/img/map_io_tiff_handler.cc
@@ -324,6 +324,7 @@ void MapIOTiffHandler::do_export(const img::MapHandle& image,TIFF* tfile,TIF& fo
   TIFFSetField(tfile,TIFFTAG_YRESOLUTION,yreso);
   TIFFSetField(tfile,TIFFTAG_PLANARCONFIG,1);
   TIFFSetField(tfile,TIFFTAG_ORIENTATION,ORIENTATION_TOPLEFT);
+  TIFFSetField(tfile,TIFFTAG_PHOTOMETRIC,1); // 1=zero is black
   if(image.GetDomain()!=img::SPATIAL){
     throw IOException("Frequency export not implemented.");
   }
diff --git a/modules/io/src/io_manager.cc b/modules/io/src/io_manager.cc
index 6edc7fe430dd928159152bed7ebea0bde53aeb44..cfd288c75ea302e8c6ece75af15593c92a74dad8 100644
--- a/modules/io/src/io_manager.cc
+++ b/modules/io/src/io_manager.cc
@@ -25,6 +25,8 @@
 #include <ost/io/seq/fasta_io_handler.hh>
 #include <ost/io/seq/pir_io_handler.hh>
 #include <ost/io/seq/promod_io_handler.hh>
+#include <ost/io/seq/hhm_io_handler.hh>
+#include <ost/io/seq/pssm_io_handler.hh>
 #include <ost/io/mol/surface_io_msms_handler.hh>
 #include <ost/io/seq/clustal_io_handler.hh>
 #if OST_IMG_ENABLED
@@ -50,10 +52,12 @@ IOManager::IOManager()
   RegisterFactory(EntityIOHandlerFactoryBaseP(new EntityIOCRDHandlerFactory));
   RegisterFactory(EntityIOHandlerFactoryBaseP(new EntityIOSDFHandlerFactory));
   RegisterFactory(EntityIOHandlerFactoryBaseP(new EntityIOMAEHandlerFactory));
-  RegisterFactory(SequenceIOHandlerFactoryBasePtr(new FastaIOHandlerFactory));  
+  RegisterFactory(SequenceIOHandlerFactoryBasePtr(new FastaIOHandlerFactory));
   RegisterFactory(SequenceIOHandlerFactoryBasePtr(new PirIOHandlerFactory));
-  RegisterFactory(SequenceIOHandlerFactoryBasePtr(new ClustalIOHandlerFactory));  
-  RegisterFactory(SequenceIOHandlerFactoryBasePtr(new PromodIOHandlerFactory));    
+  RegisterFactory(SequenceIOHandlerFactoryBasePtr(new ClustalIOHandlerFactory));
+  RegisterFactory(SequenceIOHandlerFactoryBasePtr(new PromodIOHandlerFactory));
+  RegisterFactory(ProfileIOHandlerFactoryBasePtr(new HhmIOHandlerFactory));
+  RegisterFactory(ProfileIOHandlerFactoryBasePtr(new PssmIOHandlerFactory));
   RegisterFactory(SurfaceIOHandlerFactoryBasePtr(new SurfaceIOMSMSHandlerFactory));
 #if OST_IMG_ENABLED  
   RegisterFactory(MapIOHandlerFactoryBasePtr(new MapIODxHandlerFactory));
@@ -103,7 +107,7 @@ EntityIOHandlerP IOManager::FindEntityExportHandler(const String& filename,
 }
 
 SequenceIOHandlerPtr IOManager::FindAlignmentImportHandler(const String& filename,
-                                                        const String& format) {
+                                                           const String& format) {
   for(AlignmentIOFList::const_iterator it=alignment_io_list_.begin();
       it!=alignment_io_list_.end();++it) {
     if( (*it)->ProvidesImport(filename,format)) {
@@ -114,7 +118,7 @@ SequenceIOHandlerPtr IOManager::FindAlignmentImportHandler(const String& filenam
 }
 
 SequenceIOHandlerPtr IOManager::FindAlignmentExportHandler(const String& filename,
-                                                 const String& format)
+                                                           const String& format)
 {
   for(AlignmentIOFList::const_iterator it=alignment_io_list_.begin();
       it!=alignment_io_list_.end();++it) {
@@ -125,6 +129,29 @@ SequenceIOHandlerPtr IOManager::FindAlignmentExportHandler(const String& filenam
   throw IOUnknownFormatException("no suitable alignment io handler found for "+filename);
 }
 
+ProfileIOHandlerPtr IOManager::FindProfileImportHandler(const String& filename,
+                                                        const String& format) {
+  for(ProfileIOFList::const_iterator it=profile_io_list_.begin();
+      it!=profile_io_list_.end();++it) {
+    if( (*it)->ProvidesImport(filename,format)) {
+      return (*it)->Create();
+    }
+  }
+  throw IOUnknownFormatException("no suitable profile io handler found for "+filename);
+}
+
+ProfileIOHandlerPtr IOManager::FindProfileExportHandler(const String& filename,
+                                                        const String& format)
+{
+  for(ProfileIOFList::const_iterator it=profile_io_list_.begin();
+      it!=profile_io_list_.end();++it) {
+    if( (*it)->ProvidesExport(filename,format)) {
+      return (*it)->Create();
+    }
+  }
+  throw IOUnknownFormatException("no suitable profile io handler found for "+filename);
+}
+
 SurfaceIOHandlerPtr IOManager::FindSurfaceImportHandler(const String& filename,
                                                         const String& format)
 {
@@ -267,6 +294,11 @@ void IOManager::RegisterFactory(const SequenceIOHandlerFactoryBasePtr& f)
   alignment_io_list_.push_back(f);
 }
 
+void IOManager::RegisterFactory(const ProfileIOHandlerFactoryBasePtr& f) 
+{
+  profile_io_list_.push_back(f);
+}
+
 void IOManager::RegisterFactory(const SurfaceIOHandlerFactoryBasePtr& f) 
 {
   surface_io_list_.push_back(f);
@@ -282,6 +314,11 @@ const AlignmentIOFList& IOManager::GetAvailableAlignmentHandler() const
   return alignment_io_list_;
 }
 
+const ProfileIOFList& IOManager::GetAvailableProfileHandler() const
+{
+  return profile_io_list_;
+}
+
 const SurfaceIOFList& IOManager::GetAvailableSurfaceHandler() const
 {
   return surface_io_list_;
diff --git a/modules/io/src/io_manager.hh b/modules/io/src/io_manager.hh
index bfebe32bdb476e41d5b69f675476509d9fab6881..18297af6d03fda77784aca5593c2d6a0d2f63012 100644
--- a/modules/io/src/io_manager.hh
+++ b/modules/io/src/io_manager.hh
@@ -26,6 +26,7 @@
 
 #include <ost/io/mol/entity_io_handler.hh>
 #include <ost/io/seq/sequence_io_handler.hh>
+#include <ost/io/seq/profile_io_handler.hh>
 #include <ost/io/mol/surface_io_handler.hh>
 
 #if OST_IMG_ENABLED
@@ -33,10 +34,12 @@
 #endif
 
 #include <ost/io/io_exception.hh>
+
 namespace ost { namespace io {
 
 typedef std::vector<EntityIOHandlerFactoryBaseP> EntityIOHFList;
 typedef std::vector<SequenceIOHandlerFactoryBasePtr> AlignmentIOFList;
+typedef std::vector<ProfileIOHandlerFactoryBasePtr> ProfileIOFList;
 typedef std::vector<SurfaceIOHandlerFactoryBasePtr> SurfaceIOFList;
 
 #if OST_IMG_ENABLED
@@ -77,11 +80,17 @@ public:
   /// \brief get sequence io handler that is able to import the given file.
   /// \sa FindEntityImportHandler(filename)       
   SequenceIOHandlerPtr FindAlignmentImportHandler(const String& filename,
-                                                   const String& format="auto");
+                                                  const String& format="auto");
                                                    
   SequenceIOHandlerPtr FindAlignmentExportHandler(const String& filename,
-                                                   const String& format="auto");                                                   
-  
+                                                  const String& format="auto");
+
+  ProfileIOHandlerPtr FindProfileImportHandler(const String& filename,
+                                               const String& format="auto");
+                                                   
+  ProfileIOHandlerPtr FindProfileExportHandler(const String& filename,
+                                               const String& format="auto");
+
   SurfaceIOHandlerPtr FindSurfaceImportHandler(const String& filename,
                                                const String& format="auto");
   //@}
@@ -90,7 +99,10 @@ public:
   void RegisterFactory(const EntityIOHandlerFactoryBaseP&);
   /// \brief register aligment io handler factory
   /// \sa adding_io_handler
-  void RegisterFactory(const SequenceIOHandlerFactoryBasePtr&);  
+  void RegisterFactory(const SequenceIOHandlerFactoryBasePtr&);
+  /// \brief register profile io handler factory
+  /// \sa adding_io_handler
+  void RegisterFactory(const ProfileIOHandlerFactoryBasePtr&);
   /// \brief register surface io handler factory
   /// \sa adding_io_handler
   void RegisterFactory(const SurfaceIOHandlerFactoryBasePtr&);  
@@ -101,6 +113,9 @@ public:
   /// \brief Get a list with all available AlignmentHandler
   const AlignmentIOFList& GetAvailableAlignmentHandler() const;
 
+  /// \brief Get a list with all available ProfileHandler
+  const ProfileIOFList& GetAvailableProfileHandler() const;
+
   /// \brief Get a list with all available SurfaceHandler
   const SurfaceIOFList& GetAvailableSurfaceHandler() const;
 
@@ -137,6 +152,7 @@ private:
 
   EntityIOHFList entity_iohf_list_;
   AlignmentIOFList alignment_io_list_;
+  ProfileIOFList profile_io_list_;
   SurfaceIOFList surface_io_list_;
 
 #if OST_IMG_ENABLED
diff --git a/modules/io/src/mol/CMakeLists.txt b/modules/io/src/mol/CMakeLists.txt
index e7b729cb67c2361636103b86e1cb02f225db4c66..e0792e93ee64ec6038451cad5a283a5c5c12144c 100644
--- a/modules/io/src/mol/CMakeLists.txt
+++ b/modules/io/src/mol/CMakeLists.txt
@@ -19,6 +19,7 @@ dcd_io.cc
 star_parser.cc
 mmcif_reader.cc
 mmcif_info.cc
+pdb_str.cc
 PARENT_SCOPE
 )
 
@@ -45,5 +46,6 @@ load_entity.hh
 surface_io_handler.hh
 load_surface.hh
 surface_io_msms_handler.hh
+pdb_str.hh
 PARENT_SCOPE
 )
diff --git a/modules/io/src/mol/chemdict_parser.cc b/modules/io/src/mol/chemdict_parser.cc
index 654204dcd6591d31267b67bbde7b14ddabea19b4..47f7f6f2d369a9e446a4929ec6a914fa6aa179d4 100644
--- a/modules/io/src/mol/chemdict_parser.cc
+++ b/modules/io/src/mol/chemdict_parser.cc
@@ -38,6 +38,11 @@ bool ChemdictParser::OnBeginLoop(const StarLoopDesc& header)
     indices_[ATOM_ID2]=header.GetIndex("atom_id_2");
     indices_[BOND_ORDER]=header.GetIndex("value_order");
     return true;
+  } else if (header.GetCategory()=="pdbx_chem_comp_descriptor") {
+    loop_type_=DESC_SPEC;
+    indices_[DESC_TYPE]=header.GetIndex("type");
+    indices_[DESC]=header.GetIndex("descriptor");
+    return true;
   }
   loop_type_=DONT_KNOW;
   return false;
@@ -68,6 +73,19 @@ void ChemdictParser::OnDataRow(const StarLoopDesc& header,
       std::swap(bond.atom_one, bond.atom_two);
     }
     compound_->AddBond(bond);
+  } else if (loop_type_==DESC_SPEC) {
+    if (columns[indices_[DESC_TYPE]] == StringRef("InChI", 5)) {
+      // for type InChi check prefix 'InChI='
+      if (columns[indices_[DESC]].substr(0, 6) != StringRef("InChI=", 6)) {
+        std::cout << "InChI problem: compound " << compound_->GetID()
+                  << " has an InChI descriptor not starting with the "
+                     "'InChI=' prefix." << std::endl;
+        return;
+      }
+      compound_->SetInchi(columns[indices_[DESC]].substr(6).str());
+    } else if (columns[indices_[DESC_TYPE]] == StringRef("InChIKey", 8)) {
+      compound_->SetInchiKey(columns[indices_[DESC]].str());
+    }
   }
 }
 
@@ -160,8 +178,12 @@ void ChemdictParser::InitTypeMap()
   if (!tm_.empty())
     return;
   tm_["L-PEPTIDE COOH CARBOXY TERMINUS"]=mol::ChemClass(mol::ChemClass::L_PEPTIDE_LINKING);
-  tm_["L-PEPTIDE NH3 AMINO TERMINUS"]=mol::ChemClass(mol::ChemClass::L_PEPTIDE_LINKING);   
+  tm_["L-PEPTIDE NH3 AMINO TERMINUS"]=mol::ChemClass(mol::ChemClass::L_PEPTIDE_LINKING);
+  tm_["L-GAMMA-PEPTIDE, C-DELTA LINKING"]=mol::ChemClass(mol::ChemClass::L_PEPTIDE_LINKING);
+  tm_["L-BETA-PEPTIDE, C-GAMMA LINKING"]=mol::ChemClass(mol::ChemClass::L_PEPTIDE_LINKING);
   tm_["D-PEPTIDE NH3 AMINO TERMINUS"]=mol::ChemClass(mol::ChemClass::D_PEPTIDE_LINKING);
+  tm_["D-BETA-PEPTIDE, C-GAMMA LINKING"]=mol::ChemClass(mol::ChemClass::D_PEPTIDE_LINKING);
+  tm_["D-GAMMA-PEPTIDE, C-DELTA LINKING"]=mol::ChemClass(mol::ChemClass::D_PEPTIDE_LINKING);
   tm_["L-SACCHARIDE 1,4 AND 1,4 LINKING"]=mol::ChemClass(mol::ChemClass::L_SACCHARIDE);
   tm_["D-SACCHARIDE 1,4 AND 1,4 LINKING"]=mol::ChemClass(mol::ChemClass::D_SACCHARIDE);
   tm_["L-SACCHARIDE"]=mol::ChemClass(mol::ChemClass::L_SACCHARIDE);
@@ -182,6 +204,7 @@ void ChemdictParser::InitTypeMap()
   tm_["PEPTIDE-LINKING"]=mol::ChemClass(mol::ChemClass::PEPTIDE_LINKING);  
   tm_["NON-POLYMER"]=mol::ChemClass(mol::ChemClass::NON_POLYMER);
   tm_["RNA OH 3 PRIME TERMINUS"]=mol::ChemClass(mol::ChemClass::RNA_LINKING);
+  tm_["RNA OH 5 PRIME TERMINUS"]=mol::ChemClass(mol::ChemClass::RNA_LINKING);
   tm_["?"]=mol::ChemClass(mol::ChemClass::UNKNOWN);  
   tm_["WATER"]=mol::ChemClass(mol::ChemClass::WATER);
 }
diff --git a/modules/io/src/mol/chemdict_parser.hh b/modules/io/src/mol/chemdict_parser.hh
index 51142744c37de1e419f39395db04edc926801982..16c968252faf07a0dc9ba3efcde81e9ef18d2dcc 100644
--- a/modules/io/src/mol/chemdict_parser.hh
+++ b/modules/io/src/mol/chemdict_parser.hh
@@ -34,6 +34,7 @@ namespace ost { namespace io {
 typedef enum {
   ATOM_SPEC,
   BOND_SPEC,
+  DESC_SPEC,
   DONT_KNOW
 } LoopType;
 
@@ -77,7 +78,9 @@ private:
     STEREO_CONF=6,
     ATOM_ID1=0,
     ATOM_ID2=1,
-    BOND_ORDER=2
+    BOND_ORDER=2,
+    DESC_TYPE=0,
+    DESC=1
   } PropIndex;
   char                                    last_;
   int                                     indices_[10];
diff --git a/modules/io/src/mol/entity_io_sdf_handler.cc b/modules/io/src/mol/entity_io_sdf_handler.cc
index 31ba544b0214906993ae1fced35ebf1cbd6feffb..e99933ec3044f97dbcc2715f66bb2a411a168e95 100644
--- a/modules/io/src/mol/entity_io_sdf_handler.cc
+++ b/modules/io/src/mol/entity_io_sdf_handler.cc
@@ -21,8 +21,8 @@
  */
 
 #include <ost/log.hh>
-#include <ost/io/sdf_writer.hh>
-#include <ost/io/sdf_reader.hh>
+#include <ost/io/mol/sdf_writer.hh>
+#include <ost/io/mol/sdf_reader.hh>
 
 #include "entity_io_sdf_handler.hh"
 
diff --git a/modules/io/src/mol/mmcif_info.hh b/modules/io/src/mol/mmcif_info.hh
index ca8da62036b5151ff38cbefe65645515be2b0851..8087e7e0718972ddc1343899af4d69696fda1f3e 100644
--- a/modules/io/src/mol/mmcif_info.hh
+++ b/modules/io/src/mol/mmcif_info.hh
@@ -180,7 +180,9 @@ public:
 
   /// \brief Set the translational vector
   ///
-  /// \param 
+  /// \param x
+  /// \param y
+  /// \param z
   void SetVector(Real x, Real y, Real z)
   {
     translation_.SetX(x);
@@ -194,7 +196,15 @@ public:
 
   /// \brief Set the rotational matrix
   ///
-  /// \param 
+  /// \param i00
+  /// \param i01
+  /// \param i02
+  /// \param i10
+  /// \param i11
+  /// \param i12
+  /// \param i20
+  /// \param i21
+  /// \param i22
   void SetMatrix(Real i00, Real i01, Real i02,
                  Real i10, Real i11, Real i12,
                  Real i20, Real i21, Real i22)
@@ -266,7 +276,7 @@ public:
 
   /// \brief Set method details
   ///
-  /// \param method details
+  /// \param method_details
   void SetMethodDetails(String method_details) {
     method_details_ = method_details;
   }
@@ -435,7 +445,7 @@ public:
 
   /// \brief Set the start page for a publication
   ///
-  /// \param start
+  /// \param first
   void SetPageFirst(String first) { page_first_ = first; }
 
   /// \brief Get the start page of a publication
@@ -445,7 +455,7 @@ public:
 
   /// \brief Set the end page for a publication
   ///
-  /// \param end
+  /// \param last
   void SetPageLast(String last) { page_last_ = last; }
 
   /// \brief Get the last page of a publication
diff --git a/modules/io/src/mol/mmcif_reader.cc b/modules/io/src/mol/mmcif_reader.cc
index 93807f921e50c1457dc3cf7d0cc890375900183f..3df667baf15fdcd215cef2c63cac5222c5b4232c 100644
--- a/modules/io/src/mol/mmcif_reader.cc
+++ b/modules/io/src/mol/mmcif_reader.cc
@@ -374,9 +374,9 @@ bool MMCifReader::ParseAtomIdent(const std::vector<StringRef>& columns,
     return false;
   } 
 
-  std::pair<bool, int> a_num = this->TryGetInt(columns[indices_[AS_ID]],
-                                               "atom_site.id",
-                                          profile_.fault_tolerant); // unit test
+  this->TryGetInt(columns[indices_[AS_ID]],
+                  "atom_site.id",
+                  profile_.fault_tolerant); // unit test
 
   alt_loc = columns[indices_[LABEL_ALT_ID]][0];
   res_name = columns[indices_[LABEL_COMP_ID]];
diff --git a/modules/io/src/mol/mmcif_reader.hh b/modules/io/src/mol/mmcif_reader.hh
index 15cc727ad76d4a86b2952970bbfb3c4321fbb733..a8e35f52cf543ca6f744224d88723caef4d16b42 100644
--- a/modules/io/src/mol/mmcif_reader.hh
+++ b/modules/io/src/mol/mmcif_reader.hh
@@ -61,18 +61,22 @@ public:
   /// \brief create a MMCifReader
   ///
   /// \param stream input stream
+  /// \param ent_handle
+  /// \param profile
+
   MMCifReader(std::istream& stream, mol::EntityHandle& ent_handle,
               const IOProfile& profile);
 
   /// \brief create a MMCifReader
   ///
   /// \param filename input file
+  /// \param ent_handle
+  /// \param profile
   MMCifReader(const String& filename, mol::EntityHandle& ent_handle,
               const IOProfile& profile);
 
   /// \brief Initialise the reader.
   ///
-  /// \param loc Location of the file
   void Init();
 
   /// \brief Set up a fresh instance
@@ -193,8 +197,9 @@ protected:
   /// \brief fetch values identifying atoms
   ///
   /// \param[in]  columns data row
-  /// \param[out] chain_name takes atom_site.label_asym_id or, if
+  /// \param[out] auth_chain_name takes atom_site.label_asym_id or, if
   ///             auth_chain_id_ is set, atom_site.auth_asym_id as a chain name
+  /// \param[out] cif_chain_name
   /// \param[out] res_name fetches atom_site.label_comp_id
   /// \param[out] resnum gets atom_site.label_seq_id if available, consecutive
   ///             numbers, otherwise
diff --git a/modules/io/src/mol/pdb_str.cc b/modules/io/src/mol/pdb_str.cc
new file mode 100644
index 0000000000000000000000000000000000000000..7168dfb16fb3d8d304ae58b747d125668600883e
--- /dev/null
+++ b/modules/io/src/mol/pdb_str.cc
@@ -0,0 +1,48 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2011 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+#include <sstream>
+#include <ost/io/mol/pdb_str.hh>
+#include <ost/io/mol/pdb_writer.hh>
+#include <ost/io/mol/pdb_reader.hh>
+
+namespace ost { namespace io {
+
+String EntityToPDBString(const mol::EntityHandle& ent, const IOProfile& profile) {
+  std::stringstream stream;
+  PDBWriter writer(stream, profile);
+  writer.Write(ent);
+  return stream.str();
+}
+
+String EntityToPDBString(const mol::EntityView& ent, const IOProfile& profile) {
+  std::stringstream stream;
+  PDBWriter writer(stream, profile);
+  writer.Write(ent);
+  return stream.str();
+}
+
+mol::EntityHandle PDBStringToEntity(const String& pdb, const IOProfile& profile) {
+  std::stringstream stream(pdb);
+  PDBReader reader(stream, profile);
+  mol::EntityHandle ent = mol::CreateEntity();
+  reader.Import(ent);
+  return ent;
+}
+
+}}
diff --git a/modules/io/src/mol/pdb_str.hh b/modules/io/src/mol/pdb_str.hh
new file mode 100644
index 0000000000000000000000000000000000000000..d376dce59dce243ac9783c09d2dad6b9ade24ad8
--- /dev/null
+++ b/modules/io/src/mol/pdb_str.hh
@@ -0,0 +1,41 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2011 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+#ifndef OST_IO_PDB_STR_HH
+#define OST_IO_PDB_STR_HH
+
+#include <ost/io/module_config.hh>
+#include <ost/mol/entity_view.hh>
+#include <ost/mol/entity_handle.hh>
+#include <ost/io/mol/io_profile.hh>
+
+namespace ost { namespace io {
+
+// Saves an entity to a string in PDB format.
+String DLLEXPORT_OST_IO
+EntityToPDBString(const mol::EntityHandle& ent, const IOProfile& profile=IOProfile());
+
+String DLLEXPORT_OST_IO
+EntityToPDBString(const mol::EntityView& ent, const IOProfile& profile=IOProfile());
+
+mol::EntityHandle DLLEXPORT_OST_IO
+PDBStringToEntity(const String& pdb, const IOProfile& profile=IOProfile());
+
+}}
+
+#endif
diff --git a/modules/io/src/mol/star_parser.hh b/modules/io/src/mol/star_parser.hh
index c5febf7fb3c2672c2381cdac72c178e9e93beb9a..53e170e72b6e7f2b0fdfe55b2679c72d10b5ad34 100644
--- a/modules/io/src/mol/star_parser.hh
+++ b/modules/io/src/mol/star_parser.hh
@@ -114,7 +114,7 @@ public:
   /// \brief create a StarParser
   ///
   /// \param stream input stream
-  /// \param item_as_row if true, data-items are first gathered (identifier as
+  /// \param items_as_row if true, data-items are first gathered (identifier as
   ///                    header, values as row) and then parsed like a loop
   ///                    (OnBeginLoop(), OnDataRow(), OnEndLoop())
   explicit StarParser(std::istream& stream, bool items_as_row=false);
diff --git a/modules/io/src/seq/CMakeLists.txt b/modules/io/src/seq/CMakeLists.txt
index 9dd14b52abbaf97d83967c2660e48e4438dfce76..605eb9546d40541406b64459ff02e6d82e65bff4 100644
--- a/modules/io/src/seq/CMakeLists.txt
+++ b/modules/io/src/seq/CMakeLists.txt
@@ -5,6 +5,8 @@ save.cc
 fasta_io_handler.cc
 pir_io_handler.cc
 promod_io_handler.cc
+hhm_io_handler.cc
+pssm_io_handler.cc
 PARENT_SCOPE
 )
 
@@ -13,6 +15,9 @@ sequence_io_handler.hh
 fasta_io_handler.hh
 pir_io_handler.hh
 promod_io_handler.hh
+profile_io_handler.hh
+hhm_io_handler.hh
+pssm_io_handler.hh
 clustal_io_handler.hh
 load.hh
 save.hh
diff --git a/modules/io/src/seq/hhm_io_handler.cc b/modules/io/src/seq/hhm_io_handler.cc
new file mode 100644
index 0000000000000000000000000000000000000000..395c97bd1f48c0bb6bdc0829497f0846afaadb78
--- /dev/null
+++ b/modules/io/src/seq/hhm_io_handler.cc
@@ -0,0 +1,179 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+/*
+  Author: Gerardo Tauriello, Gabriel Studer
+ */
+  
+#include "hhm_io_handler.hh"
+
+#include <boost/algorithm/string/predicate.hpp>
+#include <boost/filesystem/convenience.hpp>
+#include <boost/filesystem/fstream.hpp>
+#include <boost/iostreams/filter/gzip.hpp>
+#include <boost/iostreams/filtering_stream.hpp>
+
+#include <ost/string_ref.hh>
+#include <ost/io/io_exception.hh>
+#include <ost/io/io_utils.hh>
+
+namespace ost { namespace io {
+
+namespace {
+// reset pc with freqs in chunks[i+offset] (i in [0,20[)
+// checks for consistency of chunks and values read
+seq::ProfileColumn GetColumn(const std::vector<ost::StringRef>& chunks,
+                             const uint offset, const char* olcs,
+                             const String& exception) {
+  // check chunks size
+  if (chunks.size() < offset+20) {
+    throw IOException(exception);
+  }
+  // reset pc
+  seq::ProfileColumn pc; // all 0
+  for (uint i = 0; i < 20; ++i) {
+    if (chunks[i+offset] != ost::StringRef("*", 1)) {
+      std::pair<bool, int> pbi = chunks[i+offset].to_int();
+      if (!pbi.first) {
+        throw IOException(exception);
+      }
+      pc.SetFreq(olcs[i], pow(2.0, -0.001 * pbi.second));
+    }
+  }
+  return pc;
+}
+} // anon ns
+
+void HhmIOHandler::Import(seq::ProfileHandle& prof,
+                          const boost::filesystem::path& loc) {
+  // open it up
+  boost::iostreams::filtering_stream<boost::iostreams::input> in;
+  boost::filesystem::ifstream stream(loc);
+  if (!stream) {
+    throw IOException("Could not open " + loc.string());
+  }
+  // add unzip if necessary
+  if (boost::iequals(".gz", boost::filesystem::extension(loc))) {
+    in.push(boost::iostreams::gzip_decompressor());
+  }
+  in.push(stream);
+
+  // reset profile
+  prof.clear();
+  
+  // tmp. storage
+  std::string line;
+  ost::StringRef sline;
+  std::string null_line;
+  char olcs[20];
+  std::vector<ost::StringRef> chunks;
+
+  // read line-by-line looking for NULL
+  bool null_found = false;
+  while (std::getline(in, line)) {
+    sline = ost::StringRef(line.c_str(), line.length());
+    if (sline.length()>4 && 
+        sline.substr(0, 5) == ost::StringRef("NULL ", 5)) {
+      null_line = line;
+      null_found = true;
+      break;
+    }
+  }
+  if (!null_found) {
+    throw IOException("No NULL found in file " + loc.string());
+  }
+
+  // read until we hit HMM, extract olcs, then skip 2 more lines
+  bool hmm_found = false;
+  while (std::getline(in, line)) {
+    sline = ost::StringRef(line.c_str(), line.length());
+    chunks = sline.split();
+    if (chunks[0] == ost::StringRef("HMM", 3)) {
+      // extract olcs
+      if (chunks.size() != 21) {
+        throw IOException("Badly formatted HMM line in " + loc.string());
+      }
+      for (uint i = 1; i < 21; ++i) {
+        if (chunks[i].length() != 1) {
+          throw IOException("Badly formatted HMM line in " + loc.string());
+        }
+        olcs[i-1] = chunks[i][0];
+      }
+      // skip 2 lines and get out
+      std::getline(in, line);
+      std::getline(in, line);
+      hmm_found = true;
+      break;
+    }
+  }
+  if (!hmm_found) {
+    throw IOException("No HMM found in file " + loc.string());
+  }
+
+  // set null model
+  chunks = ost::StringRef(null_line.c_str(), null_line.length()).split();
+  prof.SetNullModel(GetColumn(chunks, 1, olcs, "Badly formatted NULL line\n"
+                              + null_line + "\n in " + loc.string()));
+
+  // set columns
+  String seqres;
+  while (std::getline(in, line)) {
+    sline = ost::StringRef(line.c_str(), line.length());
+    if (sline.trim().empty()) continue;
+    if (sline.trim() == ost::StringRef("//", 2)) break;
+    chunks = sline.split();
+    // one letter code
+    seqres += chunks[0][0];
+    // frequencies
+    prof.push_back(GetColumn(chunks, 2, olcs, "Badly formatted line\n"
+                             + line + "\n in " + loc.string()));
+    // skip line (trans. matrix)
+    std::getline(in, line);
+  }
+  prof.SetSequence(seqres);
+}
+
+void HhmIOHandler::Export(const seq::ProfileHandle& prof,
+                          const boost::filesystem::path& loc) const {
+  throw IOException("Cannot write hhm files.");
+}
+
+bool HhmIOHandler::ProvidesImport(const boost::filesystem::path& loc, 
+                                  const String& format) {
+  if (format=="auto") {
+    String match_suf_string = loc.string();
+    std::transform(match_suf_string.begin(), match_suf_string.end(),
+                   match_suf_string.begin(), tolower);
+    if (   detail::FilenameEndsWith(match_suf_string,".hhm")
+        || detail::FilenameEndsWith(match_suf_string,".hhm.gz")) {
+      return true;
+    }
+  } else if (format == "hhm") {
+    return true;
+  }
+  return false;
+}
+
+bool HhmIOHandler::ProvidesExport(const boost::filesystem::path& loc, 
+                                  const String& format) {
+  // no writers here
+  return false;
+}
+
+}}
diff --git a/modules/io/src/seq/hhm_io_handler.hh b/modules/io/src/seq/hhm_io_handler.hh
new file mode 100644
index 0000000000000000000000000000000000000000..a3acd275c1e7feff6ca57692efa2bbaddcc02532
--- /dev/null
+++ b/modules/io/src/seq/hhm_io_handler.hh
@@ -0,0 +1,52 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+/*
+  Author: Gerardo Tauriello
+ */
+
+#ifndef OST_HHM_IO_HANDLER_HH
+#define OST_HHM_IO_HANDLER_HH
+
+#include <ost/io/module_config.hh>
+#include "profile_io_handler.hh"
+
+namespace ost { namespace io {
+
+class DLLEXPORT_OST_IO HhmIOHandler : public ProfileIOHandler {
+public:
+  virtual void Import(seq::ProfileHandle& prof,
+                      const boost::filesystem::path& loc);
+  virtual void Export(const seq::ProfileHandle& prof,
+                      const boost::filesystem::path& loc) const;         
+
+  static bool ProvidesImport(const boost::filesystem::path& loc, 
+                             const String& format="auto");
+  static bool ProvidesExport(const boost::filesystem::path& loc, 
+                             const String& format="auto");
+
+  static String GetFormatName() { return String("HHM"); }
+  static String GetFormatDescription() { return String("HHM output of HHblits"); }
+};
+
+typedef ProfileIOHandlerFactory<HhmIOHandler> HhmIOHandlerFactory; 
+
+}}
+
+#endif
diff --git a/modules/io/src/seq/load.cc b/modules/io/src/seq/load.cc
index 896c5fa970ef5de0abc04565dbf972647c71bebc..9bca49efef18b341e107f0653ca1506af7e401ab 100644
--- a/modules/io/src/seq/load.cc
+++ b/modules/io/src/seq/load.cc
@@ -101,4 +101,14 @@ seq::SequenceHandle SequenceFromString(const String& data,
  return get_one_seq(SequenceListFromString(data, format));
 }
 
+seq::ProfileHandlePtr LoadSequenceProfile(const String& file_name,
+                                          const String& format)
+{
+  seq::ProfileHandlePtr prof(new seq::ProfileHandle);
+  IOManager& m = IOManager::Instance();
+  ProfileIOHandlerPtr prof_io = m.FindProfileImportHandler(file_name, format);
+  prof_io->Import(*prof, file_name);
+  return prof;
+}
+
 }}
diff --git a/modules/io/src/seq/load.hh b/modules/io/src/seq/load.hh
index 485fef1d8ba525853cc1aeeffd5d08150b5a0bb2..a72cee4b297615fbf8900fc7bdf9df8e0285d810 100644
--- a/modules/io/src/seq/load.hh
+++ b/modules/io/src/seq/load.hh
@@ -26,8 +26,9 @@
 #include <ost/io/module_config.hh>
 #include <ost/seq/sequence_list.hh>
 #include <ost/seq/alignment_handle.hh>
-namespace ost { namespace io {
+#include <ost/seq/profile_handle.hh>
 
+namespace ost { namespace io {
 
 seq::AlignmentHandle DLLEXPORT_OST_IO 
 LoadAlignment(const String& file_name, const String& format="auto");
@@ -57,6 +58,9 @@ SequenceFromStream(std::istream&  stream, const String& format);
 seq::SequenceHandle DLLEXPORT_OST_IO 
 SequenceFromString(const String& data, const String& format);
 
+seq::ProfileHandlePtr DLLEXPORT_OST_IO 
+LoadSequenceProfile(const String& file_name, const String& format="auto");
+
 }}
 
 #endif
diff --git a/modules/io/src/seq/profile_io_handler.hh b/modules/io/src/seq/profile_io_handler.hh
new file mode 100644
index 0000000000000000000000000000000000000000..783d697620164263cc71af8bddfc3bd029accd87
--- /dev/null
+++ b/modules/io/src/seq/profile_io_handler.hh
@@ -0,0 +1,93 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+/*
+  Author: Gerardo Tauriello
+ */
+
+#ifndef OST_IO_PROFILE_IO_HANDLER_HH
+#define OST_IO_PROFILE_IO_HANDLER_HH
+
+#include <boost/shared_ptr.hpp>
+#include <boost/filesystem/operations.hpp>
+
+#include <ost/io/module_config.hh>
+#include <ost/io/io_utils.hh>
+#include <ost/seq/profile_handle.hh>
+
+namespace ost { namespace io {
+
+//! pure abstract base class for profile io handlers
+class DLLEXPORT_OST_IO ProfileIOHandler {
+public:
+  virtual ~ProfileIOHandler() {}
+
+  virtual void Import(seq::ProfileHandle& prof,
+                      const boost::filesystem::path& loc) = 0;
+
+  virtual void Export(const seq::ProfileHandle& prof,
+                      const boost::filesystem::path& loc) const = 0;
+};
+
+typedef boost::shared_ptr<ProfileIOHandler> ProfileIOHandlerPtr;
+
+//! pure abstract base class for creation of a specfic io handler
+class DLLEXPORT_OST_IO ProfileIOHandlerFactoryBase {
+public:
+  virtual ~ProfileIOHandlerFactoryBase() {}
+  virtual bool ProvidesImport(const boost::filesystem::path& loc, 
+                              const String& format="auto") const = 0;
+  virtual bool ProvidesExport(const boost::filesystem::path& loc, 
+                              const String& format="auto") const = 0;
+  virtual ProfileIOHandlerPtr Create() const = 0;
+  virtual String GetFormatName() const =0;
+  virtual String GetFormatDescription() const =0;
+};
+
+typedef boost::shared_ptr<ProfileIOHandlerFactoryBase> ProfileIOHandlerFactoryBasePtr;
+
+template <class HANDLER>
+class ProfileIOHandlerFactory: public ProfileIOHandlerFactoryBase {
+  virtual bool ProvidesImport(const boost::filesystem::path& loc, 
+                              const String& format="auto") const {
+    return HANDLER::ProvidesImport(loc, format);
+  }
+
+  virtual bool ProvidesExport(const boost::filesystem::path& loc, 
+                              const String& format="auto") const {
+    return HANDLER::ProvidesExport(loc, format);
+  }
+
+  virtual ProfileIOHandlerPtr Create() const {
+    return ProfileIOHandlerPtr(new HANDLER);
+  }
+
+  virtual String GetFormatName() const {
+     return HANDLER::GetFormatName();
+  }
+
+  virtual String GetFormatDescription() const {
+     return HANDLER::GetFormatDescription();
+  }
+
+};
+
+}} // ns
+
+#endif
diff --git a/modules/io/src/seq/pssm_io_handler.cc b/modules/io/src/seq/pssm_io_handler.cc
new file mode 100644
index 0000000000000000000000000000000000000000..4b16ed6cb94cede54755a4c22ac95a56b6b9f0a3
--- /dev/null
+++ b/modules/io/src/seq/pssm_io_handler.cc
@@ -0,0 +1,147 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+/*
+  Author: Gerardo Tauriello
+ */
+
+#include "pssm_io_handler.hh"
+
+#include <boost/algorithm/string/predicate.hpp>
+#include <boost/filesystem/convenience.hpp>
+#include <boost/filesystem/fstream.hpp>
+#include <boost/iostreams/filter/gzip.hpp>
+#include <boost/iostreams/filtering_stream.hpp>
+
+#include <ost/string_ref.hh>
+#include <ost/io/io_exception.hh>
+#include <ost/io/io_utils.hh>
+
+namespace ost { namespace io {
+
+void PssmIOHandler::Import(seq::ProfileHandle& prof,
+                          const boost::filesystem::path& loc) {
+  // open it up
+  boost::iostreams::filtering_stream<boost::iostreams::input> in;
+  boost::filesystem::ifstream stream(loc);
+  if (!stream) {
+    throw IOException("Could not open " + loc.string());
+  }
+  // add unzip if necessary
+  if (boost::iequals(".gz", boost::filesystem::extension(loc))) {
+    in.push(boost::iostreams::gzip_decompressor());
+  }
+  in.push(stream);
+
+  // reset profile
+  prof.clear();
+
+  // set null model
+  prof.SetNullModel(seq::ProfileColumn::BLOSUMNullModel());
+
+  // tmp. storage
+  std::string line;
+  ost::StringRef sline;
+  char olcs[20];
+  std::vector<ost::StringRef> chunks;
+
+  // read line-by-line looking for table
+  // -> start = line with 40 1-char tokens
+  bool table_found = false;
+  while (std::getline(in, line)) {
+    sline = ost::StringRef(line.c_str(), line.length());
+    chunks = sline.split();
+    if (chunks.size() == 40) {
+      bool got_it = true;
+      for (uint i = 0; i < 40; ++i) {
+        if (chunks[i].length() != 1) {
+          got_it = false;
+          break;
+        }
+        if (i >= 20) {
+          olcs[i-20] = chunks[i][0];
+        }
+      }
+      if (got_it) {
+        table_found = true;
+        break;
+      }
+    }
+  }
+  if (!table_found) {
+    throw IOException("No ASCII table found in file " + loc.string());
+  }
+
+  // parse table (assume: index olc 20xscore 20xfreq)
+  String seqres;
+  while (std::getline(in, line)) {
+    sline = ost::StringRef(line.c_str(), line.length());
+    chunks = sline.split();
+    // stop if not enough entries
+    if (chunks.size() < 42) break;
+    // parse row (freq in % as integers)
+    seqres += chunks[1][0];
+    Real sum_freq = 0;
+    Real freqs[20];
+    for (uint i = 22; i < 42; ++i) {
+      std::pair<bool, int> pbi = chunks[i].to_int();
+      if (!pbi.first) {
+        throw IOException("Badly formatted line\n" + line + "\n in " + loc.string());
+      }
+      sum_freq += pbi.second;
+      freqs[i-22] = pbi.second;
+    }
+    // fill normalized frequencies
+    seq::ProfileColumn pc;
+    for (uint i = 0; i < 20; ++i) {
+      pc.SetFreq(olcs[i], freqs[i]/sum_freq);
+    }
+    prof.push_back(pc);
+  }
+  prof.SetSequence(seqres);
+}
+
+void PssmIOHandler::Export(const seq::ProfileHandle& prof,
+                          const boost::filesystem::path& loc) const {
+  throw IOException("Cannot write pssm files.");
+}
+
+bool PssmIOHandler::ProvidesImport(const boost::filesystem::path& loc, 
+                                  const String& format) {
+  if (format=="auto") {
+    String match_suf_string = loc.string();
+    std::transform(match_suf_string.begin(), match_suf_string.end(),
+                   match_suf_string.begin(), tolower);
+    if (   detail::FilenameEndsWith(match_suf_string,".pssm")
+        || detail::FilenameEndsWith(match_suf_string,".pssm.gz")) {
+      return true;
+    }
+  } else if (format == "pssm") {
+    return true;
+  }
+  return false;
+}
+
+bool PssmIOHandler::ProvidesExport(const boost::filesystem::path& loc, 
+                                  const String& format) {
+  // no writers here
+  return false;
+}
+
+}}
diff --git a/modules/io/src/seq/pssm_io_handler.hh b/modules/io/src/seq/pssm_io_handler.hh
new file mode 100644
index 0000000000000000000000000000000000000000..87a00673bdab1f8ad242b43c3c6818b0f7b8e7a5
--- /dev/null
+++ b/modules/io/src/seq/pssm_io_handler.hh
@@ -0,0 +1,54 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+/*
+  Author: Gerardo Tauriello
+ */
+
+#ifndef OST_PSSM_IO_HANDLER_HH
+#define OST_PSSM_IO_HANDLER_HH
+
+#include <ost/io/module_config.hh>
+#include "profile_io_handler.hh"
+
+namespace ost { namespace io {
+
+class DLLEXPORT_OST_IO PssmIOHandler : public ProfileIOHandler {
+public:
+  virtual void Import(seq::ProfileHandle& prof,
+                      const boost::filesystem::path& loc);
+  virtual void Export(const seq::ProfileHandle& prof,
+                      const boost::filesystem::path& loc) const;         
+
+  static bool ProvidesImport(const boost::filesystem::path& loc, 
+                             const String& format="auto");
+  static bool ProvidesExport(const boost::filesystem::path& loc, 
+                             const String& format="auto");
+
+  static String GetFormatName() { return String("PSSM"); }
+  static String GetFormatDescription() {
+    return String("ASCII Table (PSSM) output of PSI-BLAST (flag -Q)");
+  }
+};
+
+typedef ProfileIOHandlerFactory<PssmIOHandler> PssmIOHandlerFactory; 
+
+}}
+
+#endif
diff --git a/modules/io/tests/CMakeLists.txt b/modules/io/tests/CMakeLists.txt
index 64a31041525e12f4c1c0bc2ba906284b1a424a5e..0efbc1058f2112d8385017d3e63734b64cb80fe3 100644
--- a/modules/io/tests/CMakeLists.txt
+++ b/modules/io/tests/CMakeLists.txt
@@ -6,6 +6,7 @@ set(OST_IO_UNIT_TESTS
   test_io_crd.cc
   test_io_dcd.cc
   test_io_sdf.cc
+  test_io_sequence_profile.cc
   test_pir.cc
   test_iomanager.cc
   tests.cc
diff --git a/modules/io/tests/test_exceptions.cc b/modules/io/tests/test_exceptions.cc
index 2ed51ce3e61239424f4d3ce8b9ce2f77a3825b24..27d9ea661822b6d4879f6b47a1fc204194fa677f 100644
--- a/modules/io/tests/test_exceptions.cc
+++ b/modules/io/tests/test_exceptions.cc
@@ -25,7 +25,7 @@
 #include <boost/test/unit_test.hpp>
 #include <boost/test/auto_unit_test.hpp>
 
-#include <ost/io/load_map.hh>
+#include <ost/io/img/load_map.hh>
 #include <ost/img/image.hh>
 #include <ost/io/io_exception.hh>
 
diff --git a/modules/io/tests/test_io_crd.cc b/modules/io/tests/test_io_crd.cc
index b317e936bce58126c130f2260c318af8112a7422..4cde64f327c6a0bcd9710d0468db5399edc7f250 100644
--- a/modules/io/tests/test_io_crd.cc
+++ b/modules/io/tests/test_io_crd.cc
@@ -23,7 +23,7 @@
 #include <ost/test_utils/compare_files.hh>
 #include <ost/mol/mol.hh>
 #include <ost/io/mol/entity_io_crd_handler.hh>
-#include <ost/io/save_entity.hh>
+#include <ost/io/mol/save_entity.hh>
 
 using namespace ost;
 using namespace ost::io;
diff --git a/modules/io/tests/test_io_dcd.cc b/modules/io/tests/test_io_dcd.cc
index 016555e696f569175ff066ffef96ed43abdddb52..fb95e6e83d3f161ebdbd1ae0e21f4a9e34a860ce 100644
--- a/modules/io/tests/test_io_dcd.cc
+++ b/modules/io/tests/test_io_dcd.cc
@@ -74,7 +74,7 @@ BOOST_AUTO_TEST_CASE(test_io_dcd_charmm_frames)
   SaveCHARMMTraj(cg,"test_io_dcd_out.pdb","test_io_dcd_out.dcd");
   mol::CoordGroupHandle cg2=LoadCHARMMTraj(eh,"test_io_dcd_out.dcd");
   BOOST_CHECK_EQUAL(cg2.GetAtomCount(),natoms);
-  BOOST_CHECK_EQUAL(cg2.GetFrameCount(),1);
+  BOOST_CHECK_EQUAL(cg2.GetFrameCount(),uint(1));
 
   mol::CoordFramePtr cf2 = cg2.GetFrame(0);
   BOOST_CHECK(geom::Distance(cf2->GetCellSize(),cell_size)<1e-6);
diff --git a/modules/io/tests/test_io_img.cc b/modules/io/tests/test_io_img.cc
index 78093264b4b204fd095152fff381ae0ac5419512..411201a97e167be7235c1aa9ab041c43e98c95c9 100644
--- a/modules/io/tests/test_io_img.cc
+++ b/modules/io/tests/test_io_img.cc
@@ -21,7 +21,7 @@
 #include <boost/test/auto_unit_test.hpp>
 
 #include <map>
-#include <ost/io/load_map.hh>
+#include <ost/io/img/load_map.hh>
 #include <ost/img/image_factory.hh>
 #include <ost/img/alg/randomize.hh>
 #include  <ost/io/img/map_io_df3_handler.hh>
diff --git a/modules/io/tests/test_io_pdb.cc b/modules/io/tests/test_io_pdb.cc
index 7d33d8bce38ecc45702b190cbb37439b2b94960d..ff4d3a8dbdfb70988274a0611802cc7413bded60 100644
--- a/modules/io/tests/test_io_pdb.cc
+++ b/modules/io/tests/test_io_pdb.cc
@@ -32,8 +32,8 @@ using boost::unit_test_framework::test_suite;
 #include <ost/conop/heuristic.hh>
 
 #include <ost/io/mol/entity_io_pdb_handler.hh>
-#include <ost/io/pdb_reader.hh>
-#include <ost/io/pdb_writer.hh>
+#include <ost/io/mol/pdb_reader.hh>
+#include <ost/io/mol/pdb_writer.hh>
 #include <ost/log.hh>
 
 #include <ost/io/io_exception.hh>
diff --git a/modules/io/tests/test_io_sdf.cc b/modules/io/tests/test_io_sdf.cc
index 289bdfea3a7a79247a762cb7a300eab4c6957910..c90b80b30f4efc571412222d4b7ca7e36fdf4f2c 100644
--- a/modules/io/tests/test_io_sdf.cc
+++ b/modules/io/tests/test_io_sdf.cc
@@ -27,7 +27,7 @@ using boost::unit_test_framework::test_suite;
 #include <ost/test_utils/compare_files.hh>
 #include <ost/mol/mol.hh>
 #include <ost/io/mol/entity_io_sdf_handler.hh>
-#include <ost/io/save_entity.hh>
+#include <ost/io/mol/save_entity.hh>
 #include <ost/io/io_exception.hh>
 
 using namespace ost;
diff --git a/modules/io/tests/test_io_sequence_profile.cc b/modules/io/tests/test_io_sequence_profile.cc
new file mode 100644
index 0000000000000000000000000000000000000000..85d2dc60201ba74d6627b0ed45c1c3acad738448
--- /dev/null
+++ b/modules/io/tests/test_io_sequence_profile.cc
@@ -0,0 +1,261 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+/*
+  Author: Gerardo Tauriello, Gabriel Studer
+ */
+
+#define BOOST_TEST_DYN_LINK
+#include <boost/test/unit_test.hpp>
+#include <boost/test/auto_unit_test.hpp>
+#include <iostream>
+
+#include <ost/seq/profile_handle.hh>
+#include <ost/io/seq/load.hh>
+#include <ost/io/seq/hhm_io_handler.hh>
+#include <ost/io/seq/pssm_io_handler.hh>
+
+using namespace ost::seq;
+using namespace ost::io;
+
+BOOST_AUTO_TEST_SUITE( io );
+
+// helper to compare profiles element by element (with delta)
+// delta given in % !
+template <typename T, typename T2>
+void compareProfiles(T& t, T2& t2, Real delta = 0) {
+  BOOST_REQUIRE_EQUAL(t.size(), t2.size());
+  BOOST_CHECK_EQUAL(t.GetSequence(), t2.GetSequence());
+  BOOST_CHECK_CLOSE(t.GetAverageEntropy(), t2.GetAverageEntropy(), delta*20);
+  const Real* f = t.GetNullModel().freqs_begin();
+  const Real* f2 = t2.GetNullModel().freqs_begin();
+  for (uint j = 0; j < 20; ++j) {
+    BOOST_CHECK_CLOSE(f[j], f2[j], delta);
+  }
+  uint N = t.size();
+  for (uint i = 0; i < N; ++i) {
+    f = t[i].freqs_begin();
+    f2 = t2[i].freqs_begin();
+    for (uint j = 0; j < 20; ++j) {
+      BOOST_CHECK_CLOSE(f[j], f2[j], delta);
+    }
+  }
+}
+
+BOOST_AUTO_TEST_CASE(hhm_loading)
+{
+  // check hhm factory
+  ProfileIOHandlerFactoryBasePtr fac(new HhmIOHandlerFactory);
+  BOOST_CHECK_EQUAL(fac->ProvidesImport("test.hhm"),     true);
+  BOOST_CHECK_EQUAL(fac->ProvidesImport("test.hhm.gz"),  true);
+  BOOST_CHECK_EQUAL(fac->ProvidesImport("test.pssm"),    false);
+  BOOST_CHECK_EQUAL(fac->ProvidesImport("test.pssm.gz"), false);
+  BOOST_CHECK_EQUAL(fac->ProvidesImport("test", "hhm"),  true);
+  BOOST_CHECK_EQUAL(fac->ProvidesExport("test.hhm"),     false);
+  BOOST_CHECK_EQUAL(fac->ProvidesExport("test.hhm.gz"),  false);
+  BOOST_CHECK_EQUAL(fac->ProvidesExport("test", "hhm"),  false);
+  ProfileIOHandlerPtr io_handler = fac->Create();
+
+  // load file
+  ProfileHandlePtr prof(new ProfileHandle);
+  io_handler->Import(*prof, "testfiles/test_hmm.hhm");
+  BOOST_CHECK_EQUAL(prof->size(), size_t(5));
+  BOOST_CHECK_EQUAL(prof->GetSequence(), "ETGSP");
+
+  // we first check, whether the null model has been read correctly
+  // and then randomly pick a column to check
+
+  ProfileColumn null_model = prof->GetNullModel();
+
+  String olc = "ACDEFGHIKLMNPQRSTVWY";
+
+  Real correct_aa_freqs[] = {pow(2.0,-0.001*3706), pow(2.0,-0.001*5728), 
+                             pow(2.0,-0.001*4211), pow(2.0,-0.001*4064), 
+                             pow(2.0,-0.001*4839), pow(2.0,-0.001*3729),  
+                             pow(2.0,-0.001*4763), pow(2.0,-0.001*4308), 
+                             pow(2.0,-0.001*4069), pow(2.0,-0.001*3323), 
+                             pow(2.0,-0.001*5509), pow(2.0,-0.001*4640),  
+                             pow(2.0,-0.001*4464), pow(2.0,-0.001*4937), 
+                             pow(2.0,-0.001*4285), pow(2.0,-0.001*4423), 
+                             pow(2.0,-0.001*3815), pow(2.0,-0.001*3783),  
+                             pow(2.0,-0.001*6325), pow(2.0,-0.001*4665)};
+
+  for (int i = 0; i < 20; ++i) {
+    BOOST_CHECK_CLOSE(null_model.GetFreq(olc[i]), correct_aa_freqs[i],
+                      Real(1e-5));
+  }
+
+  // let's check, whether a particular column has been read correctly  
+  ProfileColumn col = (*prof)[2];
+
+  memset(correct_aa_freqs, 0, 20*sizeof(Real));
+  correct_aa_freqs[0] = pow(2.0,-0.001*3676);
+  correct_aa_freqs[1] = pow(2.0,-0.001*2597);
+  correct_aa_freqs[5] = pow(2.0,-0.001*5359);
+  correct_aa_freqs[6] = pow(2.0,-0.001*3275);
+  correct_aa_freqs[11] = pow(2.0,-0.001*3292);
+  correct_aa_freqs[12] = pow(2.0,-0.001*5077);
+  correct_aa_freqs[13] = pow(2.0,-0.001*3826);
+  correct_aa_freqs[15] = pow(2.0,-0.001*2409);
+  correct_aa_freqs[16] = pow(2.0,-0.001*3733);
+  correct_aa_freqs[17] = pow(2.0,-0.001*4503);
+  correct_aa_freqs[19] = pow(2.0,-0.001*3070);
+
+  for(int i = 0; i < 20; ++i){
+    BOOST_CHECK_CLOSE(col.GetFreq(olc[i]), correct_aa_freqs[i], Real(1e-5));
+  }
+
+  // check, whether the entropy of the column above gets correctly calculated
+  Real entropy = 0.0;
+  entropy -= correct_aa_freqs[0] * log(correct_aa_freqs[0]);
+  entropy -= correct_aa_freqs[1] * log(correct_aa_freqs[1]);
+  entropy -= correct_aa_freqs[5] * log(correct_aa_freqs[5]);
+  entropy -= correct_aa_freqs[6] * log(correct_aa_freqs[6]);
+  entropy -= correct_aa_freqs[11] * log(correct_aa_freqs[11]);
+  entropy -= correct_aa_freqs[12] * log(correct_aa_freqs[12]);
+  entropy -= correct_aa_freqs[13] * log(correct_aa_freqs[13]);
+  entropy -= correct_aa_freqs[15] * log(correct_aa_freqs[15]);
+  entropy -= correct_aa_freqs[16] * log(correct_aa_freqs[16]);
+  entropy -= correct_aa_freqs[17] * log(correct_aa_freqs[17]);
+  entropy -= correct_aa_freqs[19] * log(correct_aa_freqs[19]);
+  BOOST_CHECK_CLOSE((*prof)[2].GetEntropy(), entropy, Real(1e-5));
+
+  // look at avg entropy...
+  BOOST_CHECK_CLOSE(prof->GetAverageEntropy(), 1.48704, Real(1e-2));
+
+  // reload with LoadSequenceProfile
+  ProfileHandlePtr prof2 = LoadSequenceProfile("testfiles/test_hmm.hhm");
+  BOOST_CHECK(*prof == *prof2);
+
+  // reload
+  io_handler->Import(*prof2, "testfiles/test_hmm.hhm");
+  BOOST_CHECK(*prof == *prof2);
+}
+
+BOOST_AUTO_TEST_CASE(pssm_loading)
+{
+  // check pssm factory
+  ProfileIOHandlerFactoryBasePtr fac(new PssmIOHandlerFactory);
+  BOOST_CHECK_EQUAL(fac->ProvidesImport("test.hhm"),     false);
+  BOOST_CHECK_EQUAL(fac->ProvidesImport("test.hhm.gz"),  false);
+  BOOST_CHECK_EQUAL(fac->ProvidesImport("test.pssm"),    true);
+  BOOST_CHECK_EQUAL(fac->ProvidesImport("test.pssm.gz"), true);
+  BOOST_CHECK_EQUAL(fac->ProvidesImport("test", "pssm"), true);
+  BOOST_CHECK_EQUAL(fac->ProvidesExport("test.pssm"),    false);
+  BOOST_CHECK_EQUAL(fac->ProvidesExport("test.pssm.gz"), false);
+  BOOST_CHECK_EQUAL(fac->ProvidesExport("test", "pssm"), false);
+  ProfileIOHandlerPtr io_handler = fac->Create();
+
+  // load file
+  ProfileHandlePtr prof(new ProfileHandle);
+  io_handler->Import(*prof, "testfiles/test_pssm.pssm");
+
+  // compare manually
+  ProfileHandle prof_pssm_ref;
+  prof_pssm_ref.SetSequence("RRSPP");
+  prof_pssm_ref.SetNullModel(ProfileColumn::BLOSUMNullModel());
+  ProfileColumn pc1, pc2, pc3, pc4, pc5;
+  pc1.SetFreq('R', 0.74);
+  pc1.SetFreq('Q', 0.01);
+  pc1.SetFreq('K', 0.25);
+
+  pc2.SetFreq('A', 0.02/0.99);
+  pc2.SetFreq('R', 0.61/0.99);
+  pc2.SetFreq('N', 0.03/0.99);
+  pc2.SetFreq('Q', 0.02/0.99);
+  pc2.SetFreq('E', 0.02/0.99);
+  pc2.SetFreq('G', 0.02/0.99);
+  pc2.SetFreq('H', 0.01/0.99);
+  pc2.SetFreq('I', 0.01/0.99);
+  pc2.SetFreq('L', 0.01/0.99);
+  pc2.SetFreq('K', 0.13/0.99);
+  pc2.SetFreq('P', 0.03/0.99);
+  pc2.SetFreq('S', 0.06/0.99);
+  pc2.SetFreq('T', 0.01/0.99);
+  pc2.SetFreq('V', 0.01/0.99);
+  pc3.SetFreq('A', 0.17/0.99);
+  pc3.SetFreq('R', 0.07/0.99);
+  pc3.SetFreq('N', 0.03/0.99);
+
+  pc3.SetFreq('A', 0.17);
+  pc3.SetFreq('R', 0.07);
+  pc3.SetFreq('N', 0.03);
+  pc3.SetFreq('D', 0.02);
+  pc3.SetFreq('C', 0.01);
+  pc3.SetFreq('Q', 0.03);
+  pc3.SetFreq('E', 0.02);
+  pc3.SetFreq('G', 0.03);
+  pc3.SetFreq('L', 0.02);
+  pc3.SetFreq('K', 0.04);
+  pc3.SetFreq('M', 0.01);
+  pc3.SetFreq('F', 0.01);
+  pc3.SetFreq('P', 0.06);
+  pc3.SetFreq('S', 0.37);
+  pc3.SetFreq('T', 0.08);
+  pc3.SetFreq('V', 0.03);
+
+  pc4.SetFreq('A', 0.11/0.98);
+  pc4.SetFreq('R', 0.06/0.98);
+  pc4.SetFreq('D', 0.01/0.98);
+  pc4.SetFreq('Q', 0.02/0.98);
+  pc4.SetFreq('E', 0.02/0.98);
+  pc4.SetFreq('I', 0.01/0.98);
+  pc4.SetFreq('L', 0.03/0.98);
+  pc4.SetFreq('K', 0.04/0.98);
+  pc4.SetFreq('F', 0.01/0.98);
+  pc4.SetFreq('P', 0.58/0.98);
+  pc4.SetFreq('S', 0.03/0.98);
+  pc4.SetFreq('T', 0.05/0.98);
+  pc4.SetFreq('V', 0.01/0.98);
+
+  pc5.SetFreq('A', 0.04);
+  pc5.SetFreq('R', 0.01);
+  pc5.SetFreq('N', 0.02);
+  pc5.SetFreq('D', 0.03);
+  pc5.SetFreq('Q', 0.02);
+  pc5.SetFreq('E', 0.03);
+  pc5.SetFreq('H', 0.01);
+  pc5.SetFreq('I', 0.01);
+  pc5.SetFreq('L', 0.04);
+  pc5.SetFreq('K', 0.05);
+  pc5.SetFreq('M', 0.01);
+  pc5.SetFreq('F', 0.01);
+  pc5.SetFreq('P', 0.63);
+  pc5.SetFreq('S', 0.03);
+  pc5.SetFreq('T', 0.02);
+  pc5.SetFreq('V', 0.04);
+
+  prof_pssm_ref.push_back(pc1);
+  prof_pssm_ref.push_back(pc2);
+  prof_pssm_ref.push_back(pc3);
+  prof_pssm_ref.push_back(pc4);
+  prof_pssm_ref.push_back(pc5);
+
+  compareProfiles(*prof, prof_pssm_ref, 1e-3);
+
+  // reload with LoadSequenceProfile
+  ProfileHandlePtr prof2 = LoadSequenceProfile("testfiles/test_pssm.pssm");
+  BOOST_CHECK(*prof == *prof2);
+
+  // reload
+  io_handler->Import(*prof2, "testfiles/test_pssm.pssm");
+  BOOST_CHECK(*prof == *prof2);
+}
+
+BOOST_AUTO_TEST_SUITE_END();
diff --git a/modules/io/tests/test_mae_standalone.cc b/modules/io/tests/test_mae_standalone.cc
index 10395fb69d479d11a80be64f53ac2832f30b90c7..48d19c3da2ebf6f50a6591b8fe1c706673de0ccc 100644
--- a/modules/io/tests/test_mae_standalone.cc
+++ b/modules/io/tests/test_mae_standalone.cc
@@ -1,6 +1,6 @@
 #include <ost/log.hh>
 #include <ost/conop/conop.hh>
-#include <ost/io/entity_io_mae_handler.hh>
+#include <ost/io/mol/entity_io_mae_handler.hh>
 
 using namespace ost;
 
diff --git a/modules/io/tests/test_mmcif_reader.cc b/modules/io/tests/test_mmcif_reader.cc
index 3a1906df9ea7c8f7ffc0dae6f79fcc9a54b7972e..40f81cd8c441801df9412d60f9b562610b18498a 100644
--- a/modules/io/tests/test_mmcif_reader.cc
+++ b/modules/io/tests/test_mmcif_reader.cc
@@ -644,14 +644,14 @@ BOOST_AUTO_TEST_CASE(mmcif_struct_ref)
   MMCifReader mmcif_p(s, eh, profile);
   mmcif_p.Parse();
   MMCifInfoStructRefs refs=mmcif_p.GetInfo().GetStructRefs();
-  BOOST_CHECK_EQUAL(refs.size(), 1);
+  BOOST_CHECK_EQUAL(refs.size(), size_t(1));
   MMCifInfoStructRefPtr sr1=refs[0];
   BOOST_CHECK_EQUAL(sr1->GetDBName(), "UNP");
   BOOST_CHECK_EQUAL(sr1->GetDBID(), "BLA2_BACCE");
   BOOST_CHECK_EQUAL(sr1->GetDBAccess(), "P04190");
   BOOST_CHECK_EQUAL(sr1->GetID(), "1");
   MMCifInfoStructRefSeqs seqs=sr1->GetAlignedSeqs();
-  BOOST_CHECK_EQUAL(seqs.size(), 2);
+  BOOST_CHECK_EQUAL(seqs.size(), size_t(2));
   BOOST_CHECK_EQUAL(seqs[0]->GetID(), "1");
   BOOST_CHECK_EQUAL(seqs[0]->GetChainName(), "A");
   BOOST_CHECK_EQUAL(seqs[0]->GetSeqBegin(), 1);
@@ -665,7 +665,7 @@ BOOST_AUTO_TEST_CASE(mmcif_struct_ref)
   BOOST_CHECK_EQUAL(seqs[1]->GetDBBegin(), 31);
   BOOST_CHECK_EQUAL(seqs[1]->GetDBEnd(), 49);
   MMCifInfoStructRefSeqDifs diffs=seqs[0]->GetDifs();
-  BOOST_CHECK_EQUAL(diffs.size(), 1);
+  BOOST_CHECK_EQUAL(diffs.size(), size_t(1));
   BOOST_CHECK_EQUAL(diffs[0]->GetSeqRNum(), 91);
   BOOST_CHECK_EQUAL(diffs[0]->GetDetails(), "ENGINEERED MUTATION");
 }
diff --git a/modules/io/tests/test_star_parser.cc b/modules/io/tests/test_star_parser.cc
index 4d611807830aabf0b7b24725a708f3f99d81af04..40cdf674f81a7da4a33f3dadab18f3330d338a75 100644
--- a/modules/io/tests/test_star_parser.cc
+++ b/modules/io/tests/test_star_parser.cc
@@ -137,19 +137,19 @@ public:
     BOOST_CHECK_EQUAL(columns[0].size(), static_cast<size_t>(1));
     ++cur_char_;
     BOOST_CHECK_EQUAL(columns[1][0], cur_char_);
-    BOOST_CHECK_EQUAL(columns[1].size(), 1);
+    BOOST_CHECK_EQUAL(columns[1].size(), static_cast<size_t>(1));
     ++cur_char_;
     BOOST_CHECK_EQUAL(columns[2][0], cur_char_);
-    BOOST_CHECK_EQUAL(columns[2].size(), 1);    
+    BOOST_CHECK_EQUAL(columns[2].size(), static_cast<size_t>(1));    
     ++cur_char_;
     BOOST_CHECK_EQUAL(columns[3][0], cur_char_);
-    BOOST_CHECK_EQUAL(columns[3].size(), 1);    
+    BOOST_CHECK_EQUAL(columns[3].size(), static_cast<size_t>(1));    
     ++cur_char_;
     BOOST_CHECK_EQUAL(columns[4][0], cur_char_);
-    BOOST_CHECK_EQUAL(columns[4].size(), 1);    
+    BOOST_CHECK_EQUAL(columns[4].size(), static_cast<size_t>(1));    
     ++cur_char_;
     BOOST_CHECK_EQUAL(columns[5][0], cur_char_);
-    BOOST_CHECK_EQUAL(columns[5].size(), 1);
+    BOOST_CHECK_EQUAL(columns[5].size(), static_cast<size_t>(1));
     ++cur_char_;
   }
   
diff --git a/modules/io/tests/testfiles/test_hmm.hhm b/modules/io/tests/testfiles/test_hmm.hhm
new file mode 100644
index 0000000000000000000000000000000000000000..1b9a665d1e1ce09e89efa6f38f1648a38bdbe529
--- /dev/null
+++ b/modules/io/tests/testfiles/test_hmm.hhm
@@ -0,0 +1,31 @@
+HHsearch 1.5
+I don't get parsed
+I don't get parsed
+I don't get parsed
+I don't get parsed
+I don't get parsed
+I don't get parsed
+I don't get parsed
+I don't get parsed
+I don't get parsed
+#
+NULL   3706	5728	4211	4064	4839	3729	4763	4308	4069	3323	5509	4640	4464	4937	4285	4423	3815	3783	6325	4665	
+HMM    A	C	D	E	F	G	H	I	K	L	M	N	P	Q	R	S	T	V	W	Y	
+       M->M	M->I	M->D	I->M	I->I	D->M	D->D	Neff	Neff_I	Neff_D
+       0	*	*	0	*	0	*	*	*	*	
+E 1    1780	*	*	497	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	1
+       0	*	*	*	*	*	*	1610	0	0	
+
+T 2    1615	*	*	*	*	2652	*	*	*	*	*	*	*	*	*	*	3992	1147	*	*	2
+       0	*	*	*	*	*	*	2652	0	0	
+
+G 3    3676	2597	*	*	*	5359	3275	*	*	*	*	3292	5077	3826	*	2409	3733	4503	*	3070	3
+       46	4979	*	2006	413	*	*	3076	1097	0	
+
+S 4    2579	*	*	*	*	*	*	*	*	4320	*	4532	3895	4519	*	951	5140	3595	*	*	4
+       58	4660	*	2833	218	*	*	3050	1146	0	
+
+P 5    2585	*	4184	*	*	2345	4748	*	*	*	*	*	2839	1766	5056	3635	*	*	*	*	5
+       0	*	*	*	*	*	*	3036	0	0		
+
+//
diff --git a/modules/io/tests/testfiles/test_pssm.pssm b/modules/io/tests/testfiles/test_pssm.pssm
new file mode 100644
index 0000000000000000000000000000000000000000..e3f72045cb33946a47d75db70ceb21dffedb3849
--- /dev/null
+++ b/modules/io/tests/testfiles/test_pssm.pssm
@@ -0,0 +1,14 @@
+
+Last position-specific scoring matrix computed, weighted observed percentages rounded down, information per position, and relative weight of gapless real matches to pseudocounts
+           A  R  N  D  C  Q  E  G  H  I  L  K  M  F  P  S  T  W  Y  V   A   R   N   D   C   Q   E   G   H   I   L   K   M   F   P   S   T   W   Y   V
+    1 R   -4  7 -3 -4 -7 -1 -3 -5 -3 -6 -5  4 -4 -6 -5 -4 -4 -6 -5 -6    0  74   0   0   0   1   0   0   0   0   0  25   0   0   0   0   0   0   0   0  1.96 0.65
+    2 R   -2  7  0 -4 -6  0 -1 -3 -1 -4 -4  2 -4 -6 -1  0 -3 -6 -5 -4    2  61   3   0   0   2   2   2   1   1   1  13   0   0   3   6   1   0   0   1  1.22 0.52
+    3 S    2  1  0 -1 -2  0 -1 -1 -2 -4 -3  0 -2 -2  1  4  1 -5 -4 -2   17   7   3   2   1   3   2   3   0   0   2   4   1   1   6  37   8   0   0   3  0.42 0.31
+    4 P    1  0 -5 -3 -6 -2 -3 -5 -3 -4 -3 -1 -5 -3  7 -1  0 -3 -6 -4   11   6   0   1   0   2   2   0   0   1   3   4   0   1  58   3   5   0   0   1  1.42 0.62
+    5 P   -1 -3 -2 -2 -7 -2 -2 -6 -3 -4 -2  0 -2 -4  7 -2 -2 -7 -6 -1    4   1   2   3   0   2   3   0   1   1   4   5   1   1  63   3   2   0   0   4  1.56 0.71
+
+                      K         Lambda
+Standard Ungapped    0.1342     0.3155
+Standard Gapped      0.0410     0.2670
+PSI Ungapped         0.1607     0.3175
+PSI Gapped           0.0492     0.2670
diff --git a/modules/mol/CMakeLists.txt b/modules/mol/CMakeLists.txt
index d417b44124dae1b87b844ec98109a7856b796e32..ac68189a49e54e7d4512519f238c88c4a30b6762 100644
--- a/modules/mol/CMakeLists.txt
+++ b/modules/mol/CMakeLists.txt
@@ -1,2 +1,5 @@
 add_subdirectory(base)
 add_subdirectory(alg)
+if (ENABLE_MM)
+  add_subdirectory(mm)
+endif()
diff --git a/modules/mol/alg/doc/lddt.rst b/modules/mol/alg/doc/lddt.rst
index 47e033501bce8acb1609573a2275866e950f6dec..3d3e862c3fbc61682eb880fe3e738365b8cb1501 100644
--- a/modules/mol/alg/doc/lddt.rst
+++ b/modules/mol/alg/doc/lddt.rst
@@ -2,9 +2,9 @@
 lDDT
 ======
 
-------------
+-------------------------------------
 Where can I find the lDDT executable? 
-------------
+-------------------------------------
 
 The lDDT executable can be found at <YOUR-OST-STAGE-DIR>/bin/
 
@@ -179,4 +179,4 @@ For example:
     lddt -v 1 -f -p stereo_chemical_params.txt mdl1.pdb ref.pdb
 
 WARNING: Verbosity levels 1 and 2 can generate a large amount of output text, 
-especially with large structures and multiple models being evaluated. 
\ No newline at end of file
+especially with large structures and multiple models being evaluated. 
diff --git a/modules/mol/alg/pymod/CMakeLists.txt b/modules/mol/alg/pymod/CMakeLists.txt
index 000e754817bce15b4e118a6ad65de253d9af8763..7efbf88165105ae87c97d3b9aacd23e923e29060 100644
--- a/modules/mol/alg/pymod/CMakeLists.txt
+++ b/modules/mol/alg/pymod/CMakeLists.txt
@@ -4,6 +4,7 @@ set(OST_MOL_ALG_PYMOD_SOURCES
   export_clash.cc
   export_trajectory_analysis.cc
   export_structure_analysis.cc
+  export_contact_overlap.cc
 )
 
 set(OST_MOL_ALG_PYMOD_MODULES
@@ -13,6 +14,7 @@ set(OST_MOL_ALG_PYMOD_MODULES
   trajectory_analysis.py
   structure_analysis.py
   helix_kinks.py
+  hbond.py
 )
 
 if (ENABLE_IMG)
diff --git a/modules/mol/alg/pymod/__init__.py b/modules/mol/alg/pymod/__init__.py
index b8c09d51d67b99b606ddc9c99af55afe37823dd4..73d5bd802ce28765d309e65b7eed4f65374abdfb 100644
--- a/modules/mol/alg/pymod/__init__.py
+++ b/modules/mol/alg/pymod/__init__.py
@@ -4,6 +4,7 @@ from ost.mol.alg.superpose import *
 import ost.mol.alg.trajectory_analysis
 import ost.mol.alg.structure_analysis
 import ost.mol.alg.helix_kinks
+import ost.mol.alg.hbond
 
 # Fills a list of reference clashing distances from a file (requires a path to the file)
 def FillClashingDistancesFromFile(filename):
diff --git a/modules/mol/alg/pymod/export_contact_overlap.cc b/modules/mol/alg/pymod/export_contact_overlap.cc
new file mode 100644
index 0000000000000000000000000000000000000000..0f7c56c5feda9f18ea71ff7c0860686e1e75f113
--- /dev/null
+++ b/modules/mol/alg/pymod/export_contact_overlap.cc
@@ -0,0 +1,102 @@
+#include <boost/python.hpp>
+#include <boost/python/suite/indexing/vector_indexing_suite.hpp>
+
+#include <ost/mol/alg/contact_overlap.hh>
+#include <ost/mol/alg/domain_find.hh>
+
+using namespace boost::python;
+using namespace ost;
+using namespace ost::mol::alg;
+
+SimilarityMatrix (*com_a)(const ost::seq::AlignmentHandle&,
+                          Real, int, int)=&ContactOverlapMap;
+SimilarityMatrix (*com_b)(const ost::seq::AlignmentHandle&,
+                          Real, OverlapMode, Real)=&ContactOverlapMap;
+SimilarityMatrix (*com_c)(const DistanceMatrix&, const DistanceMatrix&,
+                          Real, OverlapMode, Real)=&ContactOverlapMap;
+
+void export_contact_overlap()
+{
+  class_<SimilarityMatrix>("SimilarityMatrix", init<int, Real>())
+    .def("Get", &SimilarityMatrix::Get,
+         return_value_policy<copy_const_reference>())
+    .def("Set", &SimilarityMatrix::Set)
+    .def("GetSize", &SimilarityMatrix::GetSize)
+    .add_property("size", &SimilarityMatrix::GetSize)
+    .def("AsImage", &SimilarityMatrix::AsImage)
+    .def("Save", &SimilarityMatrix::Save)
+    .def("Load", &SimilarityMatrix::Load).staticmethod("Load")
+  ;
+
+  class_<DistanceMatrix, DistanceMatrixPtr>("DistanceMatrix", no_init)
+    .def("Create", &DistanceMatrix::Create).staticmethod("Create")
+    .def("FromAln", &DistanceMatrix::FromAln,
+        (arg("aln"), arg("index")=1)).staticmethod("FromAln")
+    .def("Get", &DistanceMatrix::Get,
+         return_value_policy<copy_const_reference>())
+    .def("Set", &DistanceMatrix::Set)
+
+    .def("GetSize", &DistanceMatrix::GetSize)
+    .add_property("size", &DistanceMatrix::GetSize)
+  ;
+
+  enum_<OverlapMode>("OverlapMode")
+    .value("OM_RELATIVE", OM_RELATIVE)
+    .value("OM_ABSOLUTE", OM_ABSOLUTE)
+    .export_values()
+  ;
+
+  def("DomainsFromCOM", &DomainsFromCOM, (arg("idx_a")=-1, arg("idx_b")=-1));
+
+  def("ContactOverlap", &ContactOverlap, (arg("dist_mat_a"), arg("dist_mat_b"),
+                                          arg("tolerance")=0.1,
+                                          arg("mode")=OM_RELATIVE,
+                                          arg("max_dist")=1e6));
+  class_<ContactList>("ContactList", init<>())
+    .def(vector_indexing_suite<ContactList>())
+  ;
+  
+  def("Contacts", &Contacts);
+  def("CalcContactNodeDegree", &CalcContactNodeDegree);
+  def("LocalDistanceTest", &LocalDistanceTest);
+  def("ContactOverlapMap", com_a);
+  def("ContactOverlapMap", com_b, (arg("mode")=OM_RELATIVE,
+      arg("max_dist")=1e6));
+  def("ContactOverlapMap", com_c, (arg("mode")=OM_RELATIVE,
+      arg("max_dist")=1e6));
+  class_<Domain>("Domain", no_init)
+    .def_readwrite("views", &Domain::views)
+    .def_readwrite("views", &Domain::views)
+    .def_readwrite("inter_s", &Domain::inter_s)
+    .def_readwrite("inter_d", &Domain::inter_d)
+    .def_readwrite("intra_s", &Domain::intra_s)
+    .def_readwrite("intra_d", &Domain::intra_d)
+  ;
+  class_<std::vector<Domain> >("DomainList", init<>())
+    .def(vector_indexing_suite<std::vector<Domain> >())
+  ;
+
+  class_<Domains, DomainsPtr>("Domains", no_init)
+    .def("FromCOM", Domains::FromCOM, 
+         (arg("sim"), arg("aln"), arg("idx_a")=-1, 
+          arg("idx_b")=-1)).staticmethod("FromCOM")
+    .def("FromAln", Domains::FromAln,
+         (arg("aln"), arg("tolerance")=1.5,
+          arg("radius")=1e6, arg("threshold")=0.5, arg("idx_a")=0, arg("idx_b")=1)).staticmethod("FromAln")
+    .def("FromDistMats", Domains::FromDistMats,
+         (arg("dmat_a"), arg("dmat_b"), arg("tolerance")=1.5, 
+          arg("radius")=1e6, arg("threshold")=0.5, 
+          arg("num_threads")=1,
+          arg("defined_only")=true,
+          arg("adj_map")=false)).staticmethod("FromDistMats")
+    .add_property("domains", make_function(&Domains::GetDomains,
+                  return_value_policy<copy_const_reference>()))
+    .add_property("components", make_function(&Domains::GetComponents,
+                  return_value_policy<copy_const_reference>()))
+    .add_property("adj_map", &Domains::GetAdjMap)
+    .add_property("num_free", &Domains::GetNumFreeResidues)
+    .add_property("free_d", &Domains::GetFreeD)
+    .add_property("free_s", &Domains::GetFreeS)
+  ;
+}
+
diff --git a/modules/mol/alg/pymod/export_structure_analysis.cc b/modules/mol/alg/pymod/export_structure_analysis.cc
index f9f58347d1313d30d7a6d71f20e9733c2df243bc..2714f5847ea4e40bd1ec5c63faec3ea317b57336 100644
--- a/modules/mol/alg/pymod/export_structure_analysis.cc
+++ b/modules/mol/alg/pymod/export_structure_analysis.cc
@@ -24,6 +24,9 @@ using namespace boost::python;
 using namespace ost;
 using namespace ost::mol::alg;
 
+std::vector< std::vector<Real> > (*pair_dist1)(const mol::EntityView&) = PariwiseDistanceMatrix;
+std::vector< std::vector<Real> > (*pair_dist2)(const mol::EntityView&,const mol::EntityView&) = PariwiseDistanceMatrix;
+
 void export_StructureAnalysis()
 {
   def("GetPosListFromView",&GetPosListFromView, (arg("view")));
@@ -31,5 +34,9 @@ void export_StructureAnalysis()
   def("CalculateAverageAgreementWithDensityMap",&CalculateAverageAgreementWithDensityMap,(arg("pos_list"),arg("density_map")));
   def("CalculateAgreementWithDensityMap",&CalculateAgreementWithDensityMap,(arg("pos_list"),arg("density_map")));
 #endif
-  def("WrapEntityInPeriodicCell",&WrapEntityInPeriodicCell,(arg("Entity"),arg("cell_center"),arg("basis_vec"),arg("group_res")=true));
+  def("WrapEntityInPeriodicCell",&WrapEntityInPeriodicCell,(arg("Entity"),arg("cell_center"),arg("ucell_size"),arg("ucell_angles")=geom::Vec3(),arg("group_res")=true,arg("follow_bonds")=false));
+  
+
+  def("PariwiseDistanceMatrix",pair_dist2,(arg("EntityView1"),arg("EntityView2")));
+  def("PariwiseDistanceMatrix",pair_dist1,(arg("EntityView")));
 }
diff --git a/modules/mol/alg/pymod/export_svd_superpose.cc b/modules/mol/alg/pymod/export_svd_superpose.cc
index d5f942fe756731899f62c9d3ffd0d5a570355040..87e4cbbc76af199a357155261c729676528b7b29 100644
--- a/modules/mol/alg/pymod/export_svd_superpose.cc
+++ b/modules/mol/alg/pymod/export_svd_superpose.cc
@@ -35,9 +35,9 @@ using namespace ost::mol::alg;
 void export_svdSuperPose()
 {
   SuperpositionResult (*sup1)(const mol::EntityView&,const mol::EntityView&,bool) = SuperposeSVD;
-  SuperpositionResult (*sup2)(const std::vector<geom::Vec3>&,const std::vector<geom::Vec3>& ) = SuperposeSVD;
+  SuperpositionResult (*sup2)(const geom::Vec3List&,const geom::Vec3List& ) = SuperposeSVD;
   SuperpositionResult (*sup3)(const mol::EntityView&,const mol::EntityView&, int, Real, bool) = IterativeSuperposeSVD;
-  SuperpositionResult (*sup4)(const std::vector<geom::Vec3>&,const std::vector<geom::Vec3>&, int, Real) = IterativeSuperposeSVD;
+  SuperpositionResult (*sup4)(const geom::Vec3List&,const geom::Vec3List&, int, Real) = IterativeSuperposeSVD;
   class_<SuperpositionResult>("SuperpositionResult", init<>())
     .def_readwrite("ncycles", &SuperpositionResult::ncycles)
     .def_readwrite("rmsd", &SuperpositionResult::rmsd)
diff --git a/modules/mol/alg/pymod/hbond.py b/modules/mol/alg/pymod/hbond.py
new file mode 100644
index 0000000000000000000000000000000000000000..33545bd2f5430aac82e65cbb9023bece29608634
--- /dev/null
+++ b/modules/mol/alg/pymod/hbond.py
@@ -0,0 +1,443 @@
+import ost as _ost
+import ost.geom as _geom
+
+"""
+Module written by Niklaus Johner (niklaus.johner@a3.epfl.ch) 2012
+
+This module is a flexible rewrite of HBPlus, allowing to calculate hbond
+conservation between different structures or over a trajectory. 
+It uses customizable dictionaries to define donors and acceptors and can
+account for equivalent HBonds such as involving for example either oxygen atom
+of an Aspartic Acid.
+"""
+__all__=('HBondDonor','HBondAcceptor','BuildCHARMMHBondDonorAcceptorDict','AreHBonded','GetHbondDonorAcceptorList',\
+         'GetHbondListFromDonorAcceptorLists','GetHbondListFromView','GetHbondListFromTraj','GetHbondListBetweenViews'\
+         'CalculateHBondScore','AnalyzeHBondScore')
+         
+         
+class HBondableAtoms:
+	def __init__(self,donors=[],acceptors=[]):
+		self.donors=donors
+		self.acceptors=acceptors
+    
+def BuildCHARMMHBondDonorAcceptorDict():
+  hb_da_dict={}
+  bb_donors=[['N','HN']]
+  bb_acceptors=[['O',['C']]]
+  
+  #hydrophobic
+  hb_da_dict['ALA']=HBondableAtoms(bb_donors,bb_acceptors)
+  hb_da_dict['GLY']=HBondableAtoms(bb_donors,bb_acceptors)
+  hb_da_dict['ILE']=HBondableAtoms(bb_donors,bb_acceptors)
+  hb_da_dict['LEU']=HBondableAtoms(bb_donors,bb_acceptors)
+  hb_da_dict['PHE']=HBondableAtoms(bb_donors,bb_acceptors)
+  hb_da_dict['MET']=HBondableAtoms(bb_donors,bb_acceptors)
+  hb_da_dict['VAL']=HBondableAtoms(bb_donors,bb_acceptors)
+  #special case
+  hb_da_dict['PRO']=HBondableAtoms([],bb_acceptors)
+  
+  #sidechain donors
+  ne=[['NE','HE']]
+  cz=[['NH1','HH11'],['NH1','HH12'],['NH2','HH21'],['NH2','HH22']]
+  hb_da_dict['ARG']=HBondableAtoms(bb_donors+ne+cz,bb_acceptors)
+  nz=[['NZ','HZ1'],['NZ','HZ2'],['NZ','HZ3']]
+  hb_da_dict['LYS']=HBondableAtoms(bb_donors+nz,bb_acceptors)
+  ne1=[['NE1','HE1']]
+  hb_da_dict['TRP']=HBondableAtoms(bb_donors+ne1,bb_acceptors)
+  sg=[['SG','HG1']]
+  hb_da_dict['CYS']=HBondableAtoms(bb_donors+sg,bb_acceptors)
+  
+  #sidechain acceptors
+  od12=[['OD1',['CG']],['OD2',['CG']]]
+  hb_da_dict['ASP']=HBondableAtoms(bb_donors,bb_acceptors+od12)
+  oe12=[['OE1',['CD']],['OE2',['CD']]]
+  hb_da_dict['GLU']=HBondableAtoms(bb_donors,bb_acceptors+oe12)
+  
+  #sidechain donor and acceptor
+  od1=[['OD1',['CG']]]
+  nd2=[['ND2','HD21'],['ND2','HD22']]
+  hb_da_dict['ASN']=HBondableAtoms(bb_donors+nd2,bb_acceptors+od1)
+  ne2=[['NE2','HE21'],['NE2','HE22']]
+  oe1=[['OE1',['CD']]]
+  hb_da_dict['GLN']=HBondableAtoms(bb_donors+ne2,bb_acceptors+oe1)
+  og_d=[['OG','HG1']]
+  og_a=[['OG',['CB']]]
+  hb_da_dict['SER']=HBondableAtoms(bb_donors+og_d,bb_acceptors+og_a)
+  og1_d=[['OG1','HG1']]
+  og1_a=[['OG1',['CB']]]
+  hb_da_dict['THR']=HBondableAtoms(bb_donors+og1_d,bb_acceptors+og1_a)
+  oh_d=[['OH','HH']]
+  oh_a=[['OH',['CZ']]]
+  hb_da_dict['TYR']=HBondableAtoms(bb_donors+oh_d,bb_acceptors+oh_a)
+  #histidine
+  nd1_d=[['ND1','HD1']]
+  ne2_a=[['NE2',['CD2','CE1']]]
+  hb_da_dict['HSD']=HBondableAtoms(bb_donors+nd1_d,bb_acceptors+ne2_a)
+  ne2_d=[['NE2','HE2']]
+  nd1_a=[['ND1',['CG','CE1']]]
+  hb_da_dict['HSE']=HBondableAtoms(bb_donors+ne2_d,bb_acceptors+nd1_a)
+  hb_da_dict['HSP']=HBondableAtoms(bb_donors+nd1_d+ne2_d,bb_acceptors)
+  #non-standard protonation state:
+  oe12=[['OE1',['CD']],['OE2',['CD']]]
+  oe2=[['OE2','HE2']]
+  hb_da_dict['GLUP']=HBondableAtoms(bb_donors+oe2,bb_acceptors+oe12)
+  od12=[['OD1',['CG']],['OD2',['CG']]]
+  od2=[['OD2','HD2']]
+  hb_da_dict['ASPP']=HBondableAtoms(bb_donors+od2,bb_acceptors+od12)
+  return hb_da_dict
+
+def BuildCHARMMHBondDonorEquivalenceDict():
+  donor_swap_dict={}
+  donor_swap_dict['ARG']=[[['NH1','HH11'],['NH1','HH12'],['NH2','HH21'],['NH2','HH22']]]
+  donor_swap_dict['ASN']=[[['ND2','HD21'],['ND2','HD22']]]
+  donor_swap_dict['GLN']=[[['NE2','HE21'],['NE2','HE22']]]
+  donor_swap_dict['LYS']=[[['NZ','HZ1'],['NZ','HZ2'],['NZ','HZ3']]]
+  return donor_swap_dict
+
+def BuildCHARMMHBondAcceptorEquivalenceDict():
+  acceptor_swap_dict={}
+  acceptor_swap_dict['ASP']=[[['OD1',['CG']],['OD2',['CG']]]]
+  acceptor_swap_dict['GLU']=[[['OE1',['CD']],['OE2',['CD']]]]
+  return acceptor_swap_dict
+
+def ListEquivalentDonors(donor,donor_swap_dict):
+  if not donor.heavy_atom.residue.name in donor_swap_dict:return [donor]
+  donor_list=[donor]
+  donor_atom_names=[donor.heavy_atom.name,donor.hydrogen.name]
+  res=donor.heavy_atom.residue
+  for equivalence_list in donor_swap_dict[donor.heavy_atom.residue.name]:
+    if not donor_atom_names in equivalence_list:continue
+    for atom_names in equivalence_list:
+      if atom_names==donor_atom_names:continue
+      else:donor_list.append(HBondDonor.FromResidue(res,atom_names[0],atom_names[1]))
+  return donor_list
+
+def ListEquivalentAcceptors(acceptor,acceptor_swap_dict):
+  if not acceptor.atom.residue.name in acceptor_swap_dict:return [acceptor]
+  acceptor_list=[acceptor]
+  acceptor_atom_names=[acceptor.atom.name,[a.name for a in acceptor.antecedent_list]]
+  res=acceptor.atom.residue
+  for equivalence_list in acceptor_swap_dict[acceptor.atom.residue.name]:
+    if not acceptor_atom_names in equivalence_list:continue
+    for atom_names in equivalence_list:
+      if atom_names==acceptor_atom_names:continue
+      else:acceptor_list.append(HBondAcceptor.FromResidue(res,atom_names[0],atom_names[1]))
+  return acceptor_list
+
+  
+class HBondDonor:
+  def __init__(self,donor,hydrogen):
+    self.heavy_atom=donor
+    self.hydrogen=hydrogen
+  def __eq__(self,hbd):
+    if not isinstance(hbd,HBondDonor):return False
+    else:return self.heavy_atom==hbd.heavy_atom and self.hydrogen==hbd.hydrogen
+  def __hash__(self):
+    return hash((self.heavy_atom,self.hydrogen))
+  @classmethod
+  def FromResidue(cls,res,donor_name,hydrogen_name,verbose=True):
+    _donor=res.FindAtom(donor_name).handle
+    _hydrogen=res.FindAtom(hydrogen_name).handle
+    if not _donor.IsValid():
+      if verbose:print 'Could not find '+donor_name+' in residue '+str(res)
+      return
+    if not _hydrogen.IsValid():
+      if verbose:print 'Could not find '+hydrogen_name+' in residue '+str(res)
+      return
+    return cls(_donor,_hydrogen)
+  
+  def IsHBondedTo(self,acceptor):
+    return AreHBonded(self,acceptor)
+
+
+class HBondAcceptor:
+  def __init__(self,acceptor,antecedent_list):
+    self.atom=acceptor
+    self.antecedent_list=antecedent_list
+  def __eq__(self,hba):
+    if not isinstance(hba,HBondAcceptor):return False
+    else:return self.atom==hba.atom
+  def __hash__(self):
+    return hash(self.atom)
+  @classmethod
+  def FromResidue(cls,res,acceptor_name,antecedent_name_list,verbose=True):
+    _acceptor=res.FindAtom(acceptor_name).handle
+    _antecedent_list=_ost.mol.AtomHandleList([res.FindAtom(name).handle for name in antecedent_name_list])
+    if not _acceptor.IsValid():
+      if verbose:print 'Could not find '+acceptor_name+' in residue '+str(res)
+      return
+    for i,a in enumerate(_antecedent_list):
+      if not a.IsValid():
+        if verbose:print 'Could not find '+antecedent_name_list[i]+' in residue '+str(res)
+        return
+    return cls(_acceptor,_antecedent_list)
+  
+  def IsHBondedTo(self,donor):
+    return AreHBonded(donor,self)
+
+class HBond:
+  def __init__(self,donor,acceptor):
+    self.donor=donor
+    self.acceptor=acceptor
+  def __eq__(self,hb):
+    if not isinstance(hb,HBond):return False
+    else:return self.acceptor==hb.acceptor and self.donor==hb.donor
+  def __hash__(self):
+    return hash((self.donor,self.acceptor))
+  def IsFormed(self):return AreHBonded(self.donor,self.acceptor)
+  def DonorAcceptorDistance(self):return _geom.Distance(self.donor.heavy_atom.pos,self.acceptor.atom.pos)
+  def HydrogenAcceptorDistance(self):return _geom.Distance(self.donor.hydrogen.pos,self.acceptor.atom.pos)
+  def DonorHydrogenAcceptorAngle(self):
+    dp=self.donor.heavy_atom.pos;ap=self.acceptor.atom.pos;hp=self.donor.hydrogen.pos
+    return _geom.Angle(dp-hp,ap-hp)
+  def DonorAcceptorAcceptorAntecedentAngle(self):
+    dp=self.donor.heavy_atom.pos;ap=self.acceptor.atom.pos
+    a=min([_geom.Angle(aa.pos-ap,dp-ap) for aa in self.acceptor.antecedent_list])
+    return a
+  def HydrogenAcceptorAcceptorAntecedentAngle(self):
+    hp=self.donor.hydrogen.pos;ap=self.acceptor.atom.pos
+    a=min([_geom.Angle(aa.pos-ap,hp-ap) for aa in acceptor.antecedent_list])
+    return a
+
+    
+def AreHBonded(donor,acceptor,da_dist=3.9,ha_dist=2.5,dha_angle=1.57,daaa_angle=1.57,haaa_angle=1.57):
+  """
+  determines if a donor/acceptor pair is hydrogen bonded or not
+  """
+  dp=donor.heavy_atom.pos
+  ap=acceptor.atom.pos
+  if _geom.Distance(dp,ap)>da_dist:return False
+  hp=donor.hydrogen.pos
+  if _geom.Distance(hp,ap)>ha_dist:return False
+  if _geom.Angle(dp-hp,ap-hp)<dha_angle:return False
+  a=min([_geom.Angle(aa.pos-ap,dp-ap) for aa in acceptor.antecedent_list])
+  if a<daaa_angle:return False
+  a=min([_geom.Angle(aa.pos-ap,hp-ap) for aa in acceptor.antecedent_list])
+  if a<haaa_angle:return False
+  return True
+
+def GetHbondDonorAcceptorList(eh,hbond_donor_acceptor_dict={},verbose=True):
+  """
+  returns a list of hydrogen-bond donors and acceptors from an Entity or EntityView.
+  It relies on atom names to determine the list of H-bond donors and acceptors.
+  These names are given in a dictionary, which defaults to CHARMM.
+  """
+  if not hbond_donor_acceptor_dict:
+    print 'Using default CHARMM atom namings'
+    hbond_donor_acceptor_dict=BuildCHARMMHBondDonorAcceptorDict()
+  donor_list=[]
+  acceptor_list=[]
+  for r in eh.residues:
+    if not r.name in hbond_donor_acceptor_dict:
+      print 'donors and acceptors for',r,'are not defined in the dictionary and will not be included'
+      continue
+    res_da_dict=hbond_donor_acceptor_dict[r.name]
+    for acceptor in res_da_dict.acceptors:
+      a=HBondAcceptor.FromResidue(r,acceptor[0],acceptor[1],verbose)
+      if not a==None:acceptor_list.append(a)
+    for donor in res_da_dict.donors:
+      d=HBondDonor.FromResidue(r,donor[0],donor[1],verbose)
+      if not d==None:donor_list.append(d)
+  return [donor_list,acceptor_list]  
+  
+  
+def GetHbondListFromDonorAcceptorLists(donor_list,acceptor_list):
+  """
+  return a list of hydrogen bonds between donors and acceptors from
+  a list of donors and a list of acceptors.
+  """
+  hbond_list=[]
+  for donor in donor_list:
+    for acceptor in acceptor_list:
+      if AreHBonded(donor,acceptor):hbond_list.append(HBond(donor,acceptor))
+  return hbond_list
+
+def GetHbondListFromView(eh,hbond_donor_acceptor_dict={},verbose=True):
+  """
+  return a list of hydrogen bonds from an Entity or EntityView.
+  if no dictionary for the hbond donors and acceptors is specified
+  it will use the standard CHARMM names to determine them
+  """
+  [donor_list,acceptor_list]=GetHbondDonorAcceptorList(eh,hbond_donor_acceptor_dict,verbose)
+  hbond_list=[]
+  for donor in donor_list:
+    for acceptor in acceptor_list:
+      if AreHBonded(donor,acceptor):hbond_list.append(HBond(donor,acceptor))
+  return hbond_list
+
+def GetHbondListFromTraj(t,eh,cutoff=0.7,stride=1,swap=False,donor_swap_dict={},acceptor_swap_dict={},hbond_donor_acceptor_dict={},verbose=True):
+  """
+  return a list of hydrogen bonds from an Entity or EntityView that are
+  present in a fraction of the frames larger than *cutoff*.
+  if no dictionary for the hbond donors and acceptors is specified
+  it will use the standard CHARMM names to determine them
+  """
+  if swap:
+    if not donor_swap_dict:
+      print 'use of standard CHARMM HBond donor swap dictionary'
+      donor_swap_dict=BuildCHARMMHBondDonorEquivalenceDict()
+    if not acceptor_swap_dict:
+      print 'use of standard CHARMM HBond acceptor swap dictionary'  
+      acceptor_swap_dict=BuildCHARMMHBondAcceptorEquivalenceDict()
+  [donor_list,acceptor_list]=GetHbondDonorAcceptorList(eh,hbond_donor_acceptor_dict,verbose)
+  hb_list=[]
+  hb_score=[]
+  nframes=0
+  for i in range(0,t.GetFrameCount(),stride):
+    t.CopyFrame(i)
+    nframes+=1
+    hbond_list=GetHbondListFromDonorAcceptorLists(donor_list,acceptor_list)
+    if swap:
+      hbond_list=GetEquivalentHBonds(hbond_list,eh,swap,donor_swap_dict,acceptor_swap_dict,verbose)
+      for hb in hbond_list:
+        if hb in hbond_list[hbond_list.index(hb)+1:]:hbond_list.pop(hbond_list.index(hb))
+    for hb in hbond_list:
+      if hb in hb_list:hb_score[hb_list.index(hb)]+=1
+      else:
+        hb_score.append(1)
+        hb_list.append(hb)
+  hbond_list=[]
+  hbond_score=[]
+  for hb,s in zip(hb_list,hb_score):
+    if s/float(nframes)>=cutoff:
+      if swap:hbond_list.append(list(hb)[0])
+      else:hbond_list.append(hb)
+      hbond_score.append(s/float(nframes))
+  return (hbond_list,hbond_score)
+
+def GetHbondListBetweenViews(eh1,eh2,hbond_donor_acceptor_dict={},verbose=True):
+  """
+  return the list of hydrogen bonds formed between two Entity or EntityView.
+  if no dictionary for the hbond donors and acceptors is specified
+  it will use the standard CHARMM names to determine them
+  """
+  [donor_list1,acceptor_list1]=GetHbondDonorAcceptorList(eh1,hbond_donor_acceptor_dict,verbose)
+  [donor_list2,acceptor_list2]=GetHbondDonorAcceptorList(eh2,hbond_donor_acceptor_dict,verbose)
+  hbond_list=[]
+  for donor in donor_list1:
+    for acceptor in acceptor_list2:
+      if AreHBonded(donor,acceptor):
+        hb=HBond(donor,acceptor)
+        if hb in hbond_list:continue
+        hbond_list.append(hb)
+  for donor in donor_list2:
+    for acceptor in acceptor_list1:
+      if AreHBonded(donor,acceptor):
+        hb=HBond(donor,acceptor)
+        if hb in hbond_list:continue
+        hbond_list.append(hb)
+  return hbond_list
+
+def GetEquivalentHBonds(ref_hbond_list,eh,swap=False,donor_swap_dict={},acceptor_swap_dict={},verbose=True):
+  hbond_list=[]
+  if not swap:
+    for hbond in ref_hbond_list:
+      res1=eh.FindResidue(hbond.donor.heavy_atom.chain.name,hbond.donor.heavy_atom.residue.number.num)
+      res2=eh.FindResidue(hbond.acceptor.atom.chain.name,hbond.acceptor.atom.residue.number.num)
+      donor=HBondDonor.FromResidue(res1,hbond.donor.heavy_atom.name,hbond.donor.hydrogen.name,verbose)
+      acceptor=HBondAcceptor.FromResidue(res2,hbond.acceptor.atom.name,[a.name for a in hbond.acceptor.antecedent_list],verbose)
+      hbond_list.append(set([HBond(donor,acceptor)]))
+  else:
+    if not donor_swap_dict:
+      print 'use of standard CHARMM HBond donor swap dictionary'
+      donor_swap_dict=BuildCHARMMHBondDonorEquivalenceDict()
+    if not acceptor_swap_dict:
+      print 'use of standard CHARMM HBond acceptor swap dictionary'  
+      acceptor_swap_dict=BuildCHARMMHBondAcceptorEquivalenceDict()
+    for hbond in ref_hbond_list:
+      res1=eh.FindResidue(hbond.donor.heavy_atom.chain.name,hbond.donor.heavy_atom.residue.number.num)
+      res2=eh.FindResidue(hbond.acceptor.atom.chain.name,hbond.acceptor.atom.residue.number.num)
+      donor=HBondDonor.FromResidue(res1,hbond.donor.heavy_atom.name,hbond.donor.hydrogen.name,verbose)
+      acceptor=HBondAcceptor.FromResidue(res2,hbond.acceptor.atom.name,[a.name for a in hbond.acceptor.antecedent_list],verbose)
+      donor_list=ListEquivalentDonors(donor,donor_swap_dict)
+      acceptor_list=ListEquivalentAcceptors(acceptor,acceptor_swap_dict)
+      hbond_list.append(set([HBond(d,a) for d in donor_list for a in acceptor_list]))
+  return hbond_list
+    
+    
+def CalculateHBondScore(ref_eh,eh2,ref_eh2=None,hbond_donor_acceptor_dict={},swap=False,donor_swap_dict={},acceptor_swap_dict={},verbose=True):
+  """
+  Returns the fraction of H-bonds from ref_eh that are also present in eh2.
+  If ref_eh2 is specified, it uses as reference the Hbonds between ref_eh and ref_eh2. 
+  This allows to look at H-bonds between specific parts of proteins or so.
+  Alternatively ref_eh can be a list of H-bonds.
+  This function relies on atom names to determine the list of H-bond donors and acceptors.
+  These names are given in a dictionary, which defaults to CHARMM.
+  If swap is set to True, a dictionary for equivalent donors and one for equivalent acceptors
+  (defaults to CHARMM) is used to check for equivalent HBonds in eh2.
+  If swap is set to True, if two equivalent hydrogen bonds are present in the reference entity 
+  (for example both oxygens of ASP H-bonding the same atom), it suffices that on of these bonds is
+  present in eh2 for both of them to be counted as present in eh2.
+  """
+  if ref_eh2:hbond_list1=GetHbondListBetweenViews(ref_eh,ref_eh2,hbond_donor_acceptor_dict,verbose)
+  elif type(ref_eh)==list:hbond_list1=ref_eh
+  else:hbond_list1=GetHbondListFromView(ref_eh,hbond_donor_acceptor_dict,verbose)
+  nbonds=float(len(hbond_list1))
+  if nbonds==0:
+    print 'No HBonds in reference view'
+    return None
+  hbond_list2=GetEquivalentHBonds(hbond_list1,eh2,swap,donor_swap_dict,acceptor_swap_dict,verbose)
+  c=0
+  for hl in hbond_list2:
+    for hbond in hl:
+      if HBond(hbond.donor,hbond.acceptor).IsFormed():
+        c+=1
+        break
+  return c/float(len(hbond_list1))
+
+
+def AnalyzeHBondScore(ref_eh,t,eh2,ref_eh2=None,hbond_donor_acceptor_dict={},swap=False,donor_swap_dict={},acceptor_swap_dict={},first=0,last=-1,stride=1,verbose=True):
+  """
+  Returns the same score as CalculateHBondScore, but for a trajectory.
+  """
+  if swap:
+    if not donor_swap_dict:
+      print 'use of standard CHARMM HBond donor swap dictionary'
+      donor_swap_dict=BuildCHARMMHBondDonorEquivalenceDict()
+    if not acceptor_swap_dict:
+      print 'use of standard CHARMM HBond acceptor swap dictionary'  
+      acceptor_swap_dict=BuildCHARMMHBondAcceptorEquivalenceDict()
+  if ref_eh2:hbond_list1=GetHbondListBetweenViews(ref_eh,ref_eh2,hbond_donor_acceptor_dict,verbose)
+  elif type(ref_eh)==list:hbond_list1=ref_eh
+  else:hbond_list1=GetHbondListFromView(ref_eh,hbond_donor_acceptor_dict,verbose)
+  nbonds=float(len(hbond_list1))
+  if nbonds==0:
+    print 'No HBonds in reference view'
+    return None
+  print 'number of hbonds in ref_eh:',nbonds
+  hbond_list2=GetEquivalentHBonds(hbond_list1,eh2,swap,donor_swap_dict,acceptor_swap_dict,verbose)
+  if last==-1:last=t.GetFrameCount()
+  score=FloatList()
+  for f in range(first,last,stride):
+    t.CopyFrame(f)
+    c=0
+    for hl in hbond_list2:
+      for hbond in hl:
+        if hbond.IsFormed():
+          c+=1
+          break
+    score.append(c/nbonds)
+  return score
+
+
+def GetHBondListIntersection(ref_hbond_list,ref_eh,hbond_list,swap=False,donor_swap_dict={},acceptor_swap_dict={}):
+  if swap:
+    if not donor_swap_dict:
+      print 'use of standard CHARMM HBond donor swap dictionary'
+      donor_swap_dict=BuildCHARMMHBondDonorEquivalenceDict()
+    if not acceptor_swap_dict:
+      print 'use of standard CHARMM HBond acceptor swap dictionary'  
+      acceptor_swap_dict=BuildCHARMMHBondAcceptorEquivalenceDict()
+  hbond_list=GetEquivalentHBonds(hbond_list,ref_eh,swap,donor_swap_dict,acceptor_swap_dict)
+  ref_hbond_list=GetEquivalentHBonds(ref_hbond_list,ref_eh,swap,donor_swap_dict,acceptor_swap_dict)
+  out_hbond_list=[]
+  for hb in ref_hbond_list:
+    if hb in hbond_list:
+      out_hbond_list.append(hb)
+  return out_hbond_list
+
+  
+  
+  
+  
+  
diff --git a/modules/mol/alg/pymod/helix_kinks.py b/modules/mol/alg/pymod/helix_kinks.py
index eac71f4777c854d9ef2e78625809538291cb44e4..3a45a20dc0264e56ef83a7177d7ad344ddd73fb2 100644
--- a/modules/mol/alg/pymod/helix_kinks.py
+++ b/modules/mol/alg/pymod/helix_kinks.py
@@ -77,7 +77,7 @@ def AnalyzeHelixKink(t,sele,proline=False):
   """
   This function calculates the bend,wobble and face-shift angles
   in an alpha-helix over a trajectory. The determination is more stable if
-  there are at least 4 residues on each side (8 is even better) of the prolin around which
+  there are at least 4 residues on each side (8 is even better) of the proline around which
   the helix is kinked. The selection should contain all residues in the correct
   order and with no gaps and no missing C-alphas.
   
@@ -108,9 +108,9 @@ def AnalyzeHelixKink(t,sele,proline=False):
   ca3_pos=ost.mol.alg.AnalyzeAtomPos(t,ca_3.GetHandle())
   ca4_pos=ost.mol.alg.AnalyzeAtomPos(t,ca_4.GetHandle())
   #Now we calculate the bend angle
-  bend_angle=[]
-  face_shift=[]
-  wobble_angle=[]
+  bend_angle=ost.FloatList()
+  face_shift=ost.FloatList()
+  wobble_angle=ost.FloatList()
   for i in range(n_frames):
     bend_angle.append(__CalculateBendAngle(pre_proline_axis[i],post_proline_axis[i]))
     face_shift.append(__CalculateFaceShift(pre_proline_axis[i],post_proline_axis[i],pre_proline_centers[i],post_proline_centers[i],proline_pos[i],ca3_pos[i],ca4_pos[i],bend_angle[i]))
@@ -154,4 +154,4 @@ def CalculateHelixKink(sele,proline=False):
   
   
   
-  
\ No newline at end of file
+  
diff --git a/modules/mol/alg/pymod/structure_analysis.py b/modules/mol/alg/pymod/structure_analysis.py
index 4a2cb0dae47a4717a34127a628306aec6e9fcb8b..75ae223e1203e6116bccc487341d00e7d52d80a0 100644
--- a/modules/mol/alg/pymod/structure_analysis.py
+++ b/modules/mol/alg/pymod/structure_analysis.py
@@ -150,7 +150,7 @@ def CalculateHelixAxis(sele1):
     return
   eh=sele1.GetHandle()
   f=GetFrameFromEntity(eh)
-  return f.FitCylinder(sele1)
+  return f.FitCylinder(sele1)[0]
 
 
 def CalculateDistanceDifferenceMatrix(sele1,sele2):
@@ -180,10 +180,10 @@ def CalculateDistanceDifferenceMatrix(sele1,sele2):
   n_atoms=sele1.GetAtomCount()
   M=npy.zeros([n_atoms,n_atoms])
   for i,a1 in enumerate(sele1.atoms):
-    for j,a2 in enumerate(sele2.atoms):
+    for j,a2 in enumerate(sele1.atoms):
       if i>=j:continue
-      d1=geom.Distance(a1.pos,a2.pos)
-      d2=geom.Distance(sele2.atoms[i].pos,sele2.atoms[j].pos)
+      d1=ost.geom.Distance(a1.pos,a2.pos)
+      d2=ost.geom.Distance(sele2.atoms[i].pos,sele2.atoms[j].pos)
       M[i,j]=d2-d1
       M[j,i]=d2-d1
   return M
diff --git a/modules/mol/alg/pymod/trajectory_analysis.py b/modules/mol/alg/pymod/trajectory_analysis.py
index 709d6793fbca050994d06f3157488b02161eb596..2d71b5a4d533c8a14a066176311c2da99e5b84d5 100644
--- a/modules/mol/alg/pymod/trajectory_analysis.py
+++ b/modules/mol/alg/pymod/trajectory_analysis.py
@@ -55,7 +55,7 @@ def smooth(vec,n):
 From here on the module needs numpy
 """
 
-def RMSD_Matrix_From_Traj(t,sele,first=0,last=-1):
+def RMSD_Matrix_From_Traj(t,sele,first=0,last=-1,align=True,align_sele=None):
   """
   This function calculates a matrix M such that M[i,j] is the
   RMSD (calculated on **sele**) between frames i and j of the trajectory **t**
@@ -73,14 +73,16 @@ def RMSD_Matrix_From_Traj(t,sele,first=0,last=-1):
   :return: Returns a numpy N\ :subscript:`frames`\ xN\ :subscript:`frames` matrix, 
    where N\ :subscript:`frames` is the number of frames.
   """
+  if not align_sele:align_sele=sele
   try:
     import numpy as npy
     if last==-1:last=t.GetFrameCount()
     n_frames=last-first
     rmsd_matrix=npy.identity(n_frames)
     for i in range(n_frames):
-      t=ost.mol.alg.SuperposeFrames(t,sele,begin=first,end=last,ref=i)
-      eh=t.GetEntity()
+      if align:
+        t=ost.mol.alg.SuperposeFrames(t,align_sele,begin=first,end=last,ref=i)
+        eh=t.GetEntity()
       t.CopyFrame(i)
       rmsd_matrix[i,:]=ost.mol.alg.AnalyzeRMSD(t,sele,sele)
       if i==0:
@@ -253,10 +255,35 @@ def AverageDistanceMatrixFromTraj(t,sele,first=0,last=-1):
   M=npy.zeros([n_atoms,n_atoms])
   for i,a1 in enumerate(sele.atoms):
     for j,a2 in enumerate(sele.atoms):
+      if j>i:continue
       d=ost.mol.alg.AnalyzeDistanceBetwAtoms(t,a1.GetHandle(),a2.GetHandle())[first:last]
       M[i,j]=npy.mean(d)
       M[j,i]=npy.mean(d)
   return M
 
-
+def AnalyzeDistanceFluctuationMatrix(t,sele,first=0,last=-1):
+  try:
+    import numpy as npy
+  except ImportError:
+    LogError("Function needs numpy, but I could not import it.")
+    raise
+  n_atoms=sele.GetAtomCount()
+  M=npy.zeros([n_atoms,n_atoms])
+  for i,a1 in enumerate(sele.atoms):
+    for j,a2 in enumerate(sele.atoms):
+      if i>j:continue
+      d=ost.mol.alg.AnalyzeDistanceBetwAtoms(t,a1.GetHandle(),a2.GetHandle())[first:last]
+      M[j,i]=npy.std(d)
+      M[i,j]=npy.std(d)
+  return M
+  
+def IterativeSuperposition(t,sele,threshold=1.0,initial_sele=None,iterations=5,ref_frame=0):
+  if initial_sele:current_sele=initial_sele
+  else: current_sele=sele
+  for i in range(iterations):
+    t=ost.mol.alg.SuperposeFrames(t,current_sele,ref=ref_frame)
+    al=[a for a in sele.atoms if ost.mol.alg.AnalyzeRMSF(t,ost.mol.CreateViewFromAtoms([a]))<threshold]
+    if len(al)==0:return
+    current_sele=ost.mol.CreateViewFromAtoms(al)
+  return current_sele
     
\ No newline at end of file
diff --git a/modules/mol/alg/pymod/wrap_mol_alg.cc b/modules/mol/alg/pymod/wrap_mol_alg.cc
index 909f41d711b987afccd82319cbe10575ed7dca5f..acd951f1a6413536d26ef05c08d957f75c953ab1 100644
--- a/modules/mol/alg/pymod/wrap_mol_alg.cc
+++ b/modules/mol/alg/pymod/wrap_mol_alg.cc
@@ -27,9 +27,11 @@
 #include <ost/mol/alg/filter_clashes.hh>
 #include <ost/mol/alg/consistency_checks.hh>
 #include <ost/mol/alg/pdbize.hh>
+#include <ost/mol/alg/contact_overlap.hh>
 #include <ost/export_helper/pair_to_tuple_conv.hh>
 #include <ost/export_helper/vec_to_list_conv.hh>
 
+
 using namespace boost::python;
 using namespace ost;
 
@@ -37,6 +39,7 @@ void export_svdSuperPose();
 void export_TrajectoryAnalysis();
 void export_StructureAnalysis();
 void export_Clash();
+void export_contact_overlap();
 #if OST_IMG_ENABLED
 void export_entity_to_density();
 #endif
@@ -105,6 +108,7 @@ BOOST_PYTHON_MODULE(_ost_mol_alg)
   export_TrajectoryAnalysis();
   export_StructureAnalysis();
   export_Clash();
+  export_contact_overlap();
   #if OST_IMG_ENABLED
   export_entity_to_density();
   #endif
@@ -120,8 +124,6 @@ BOOST_PYTHON_MODULE(_ost_mol_alg)
   def("CreateDistanceList",&mol::alg::CreateDistanceList);
   def("CreateDistanceListFromMultipleReferences",&create_distance_list_from_multiple_references);
 
-  def("DistanceRMSDTest", &mol::alg::DistanceRMSDTest, (arg("sequence_separation")=0,arg("local_lddt_property_string")=""));
-
   def("SuperposeFrames", superpose_frames1, 
       (arg("source"), arg("sel")=ost::mol::EntityView(), arg("begin")=0, 
        arg("end")=-1, arg("ref")=-1));
@@ -261,6 +263,7 @@ BOOST_PYTHON_MODULE(_ost_mol_alg)
     .def(map_indexing_suite<mol::alg::GlobalRDMap,true>())
   ;
 
-  def("DRMSD",&mol::alg::DRMSD);
+  def("DRMSD",&mol::alg::DRMSD,(arg("view"),arg("distance_list"),
+                                arg("cap_distance")=5.0,arg("sequence_separation")=0));
 
 }
diff --git a/modules/mol/alg/src/CMakeLists.txt b/modules/mol/alg/src/CMakeLists.txt
index b6a7f28922257cd548acd6355a0d8387a4a9f8d6..8f2038f96f4ab2dc03bcb9bd4624ca78a3f2003f 100644
--- a/modules/mol/alg/src/CMakeLists.txt
+++ b/modules/mol/alg/src/CMakeLists.txt
@@ -13,6 +13,11 @@ set(OST_MOL_ALG_HEADERS
   structure_analysis.hh
   consistency_checks.hh
   pdbize.hh
+  adjacency_bitmap.hh
+  consistency_checks.hh
+  contact_overlap.hh
+  domain_find.hh
+  similarity_matrix.hh
 )
 
 set(OST_MOL_ALG_SOURCES
@@ -29,6 +34,11 @@ set(OST_MOL_ALG_SOURCES
   structure_analysis.cc
   consistency_checks.cc
   pdbize.cc
+  adjacency_bitmap.cc
+  consistency_checks.cc
+  contact_overlap.cc
+  domain_find.cc
+  similarity_matrix.cc
 )
 
 set(MOL_ALG_DEPS ost_mol ost_seq)
@@ -44,7 +54,7 @@ if (ENABLE_IMG)
     entity_to_density.cc
   )
 
-  set(MOL_ALG_DEPS ${MOL_ALG_DEPS} ost_img ost_img_alg)
+  set(MOL_ALG_DEPS ${MOL_ALG_DEPS} ost_img ost_img_alg ost_seq_alg)
 endif()
 
 executable(NAME lddt SOURCES lddt.cc 
@@ -54,7 +64,7 @@ module(NAME mol_alg SOURCES ${OST_MOL_ALG_SOURCES}
        HEADERS ${OST_MOL_ALG_HEADERS}
        HEADER_OUTPUT_DIR ost/mol/alg
        DEPENDS_ON ${MOL_ALG_DEPS}
-       LINK ${BOOST_PROGRAM_OPTIONS})
+       LINK ${BOOST_PROGRAM_OPTIONS} ${BOOST_THREAD})
 
 copy_if_different("${CMAKE_CURRENT_SOURCE_DIR}" "${STAGE_DIR}/share/openstructure"
                   "atom_scattering_properties.txt" "ATOM_SCATTERING_PROPS"
diff --git a/modules/mol/alg/src/adjacency_bitmap.cc b/modules/mol/alg/src/adjacency_bitmap.cc
new file mode 100644
index 0000000000000000000000000000000000000000..e117e08645d8acad456df2b102a4650e57ea304c
--- /dev/null
+++ b/modules/mol/alg/src/adjacency_bitmap.cc
@@ -0,0 +1,105 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2011 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+#include <ost/img/image_factory.hh>
+#include <ost/mol/atom_view.hh>
+#include <ost/mol/residue_view.hh>
+#include <ost/mol/residue_handle.hh>
+#include <ost/mol/residue_view.hh>
+#include "adjacency_bitmap.hh"
+
+namespace ost { namespace mol { namespace alg {
+
+const uint8_t AdjacencyBitmap::NUMBER_OF_BITS_SET[] = {
+  0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 2, 
+  0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 2, 
+  0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 2, 
+  1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 2, 2, 2, 3, 
+  0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 2, 
+  0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 2, 
+  0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 2, 
+  1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 2, 2, 2, 3, 
+  0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 2, 
+  0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 2, 
+  0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 2, 
+  1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 2, 2, 2, 3, 
+  1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 2, 2, 2, 3, 
+  1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 2, 2, 2, 3, 
+  1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 2, 2, 2, 3, 
+  2, 2, 2, 3, 2, 2, 2, 3, 2, 2, 2, 3, 3, 3, 3, 4 
+};
+
+const uint8_t AdjacencyBitmap::NUMBER_OF_EDGES_SET[] = {
+  0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 2, 2, 1, 1, 2, 2, 
+  0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 2, 2, 1, 1, 2, 2, 
+  1, 1, 2, 2, 1, 1, 2, 2, 2, 2, 3, 3, 2, 2, 3, 3, 
+  1, 1, 2, 2, 1, 1, 2, 2, 2, 2, 3, 3, 2, 2, 3, 3, 
+  0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 2, 2, 1, 1, 2, 2, 
+  0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 2, 2, 1, 1, 2, 2, 
+  1, 1, 2, 2, 1, 1, 2, 2, 2, 2, 3, 3, 2, 2, 3, 3, 
+  1, 1, 2, 2, 1, 1, 2, 2, 2, 2, 3, 3, 2, 2, 3, 3, 
+  1, 1, 2, 2, 1, 1, 2, 2, 2, 2, 3, 3, 2, 2, 3, 3, 
+  1, 1, 2, 2, 1, 1, 2, 2, 2, 2, 3, 3, 2, 2, 3, 3, 
+  2, 2, 3, 3, 2, 2, 3, 3, 3, 3, 4, 4, 3, 3, 4, 4, 
+  2, 2, 3, 3, 2, 2, 3, 3, 3, 3, 4, 4, 3, 3, 4, 4, 
+  1, 1, 2, 2, 1, 1, 2, 2, 2, 2, 3, 3, 2, 2, 3, 3, 
+  1, 1, 2, 2, 1, 1, 2, 2, 2, 2, 3, 3, 2, 2, 3, 3, 
+  2, 2, 3, 3, 2, 2, 3, 3, 3, 3, 4, 4, 3, 3, 4, 4, 
+  2, 2, 3, 3, 2, 2, 3, 3, 3, 3, 4, 4, 3, 3, 4, 4
+};
+
+OverlapResult AdjacencyBitmap::Overlap(size_t vert_i, size_t vert_j) const {
+  // To determine the union of the direct neighbors of vert_i and vert_j,
+  // we calculated the bitwise or of the edge_bits and combine it with
+  // the union of the defined bits. For that purpose, we will need a mask
+  // for the edge bits. In binary the mask looks like 0101010101.
+  uint64_t edge_mask =  0x5555555555555555;
+  uint64_t* pi = data_+storage_size_*vert_i; 
+  uint64_t* ei = pi + storage_size_;
+  uint64_t* pj = data_+storage_size_*vert_j; 
+  size_t nominator = 0;
+  size_t denominator = 0;
+  size_t edges_set = 0;
+  for (; pi != ei; ++pi, ++pj) {
+    uint64_t intersection_ij = *pi &  *pj;
+    uint64_t union_ij = ((*pi | *pj) & edge_mask) | intersection_ij;
+    for (size_t i = 0; i < sizeof(uint64_t); ++i) {
+      nominator += NUMBER_OF_BITS_SET[(intersection_ij >> 8*i) & 0xff];
+      edges_set += NUMBER_OF_EDGES_SET[(intersection_ij >> 8*i) & 0xff];
+      denominator += NUMBER_OF_BITS_SET[(union_ij >> 8*i) & 0xff];
+    }
+  }
+  return OverlapResult(nominator, denominator, edges_set);
+}
+
+void AdjacencyBitmap::dump() const {
+
+  for (size_t i=0; i<this->size(); i+=10) {
+    for (size_t j=0;j<this->size(); j+=10) {
+      if (this->defined(i, j)) {
+        std::cout << (this->get(i, j) ? '*' : '.');
+      } else {
+        std::cout << 'u';
+      }
+    }
+    std::cout << std::endl;
+  }
+}
+
+}}}
+
diff --git a/modules/mol/alg/src/adjacency_bitmap.hh b/modules/mol/alg/src/adjacency_bitmap.hh
new file mode 100644
index 0000000000000000000000000000000000000000..69eee65f22f26d45244adab63611cbf75ea7d530
--- /dev/null
+++ b/modules/mol/alg/src/adjacency_bitmap.hh
@@ -0,0 +1,165 @@
+#ifndef OST_MOL_ALG_ADJACENCY_BITMAP_HH
+#define OST_MOL_ALG_ADJACENCY_BITMAP_HH
+
+#include <cstring>
+#include <boost/shared_ptr.hpp>
+#include <ost/img/image_handle.hh>
+#include <ost/tri_matrix.hh>
+#include <ost/seq/sequence_handle.hh>
+#include <ost/seq/alignment_handle.hh>
+#include "similarity_matrix.hh"
+#include "contact_overlap.hh"
+#include "module_config.hh"
+
+namespace ost { namespace mol { namespace alg {
+
+
+struct OverlapResult {
+  OverlapResult(uint16_t nom, uint16_t denom, uint16_t def): 
+    nominator(nom), denominator(denom), defined(def) {}
+  OverlapResult(): nominator(0), denominator(0), defined(0) {}
+  uint16_t nominator;
+  uint16_t denominator;
+  uint16_t defined;
+};
+
+// A highly optimized representation of the adjacency matrix
+class AdjacencyBitmap {
+public:
+  explicit AdjacencyBitmap(size_t n_vertices): 
+    num_vertices_(n_vertices),
+    storage_size_(StorageSize(n_vertices))
+  { 
+    data_ = static_cast<uint64_t*>(malloc(this->num_bytes()));
+    end_ = data_+storage_size_*num_vertices_;
+    memset(data_, 0, this->num_bytes());
+  }
+
+  AdjacencyBitmap(const DistanceMatrix& dmat_a, 
+                  const DistanceMatrix& dmat_b,
+                  Real threshold, Real radius,
+                  int start, int end):
+    num_vertices_(end-start),
+    storage_size_(StorageSize(end-start)),
+    data_(static_cast<uint64_t*>(malloc(this->num_bytes()))),
+    end_(data_+storage_size_*num_vertices_) {
+
+    for (int i = start; i < end; ++i) {
+      this->set(i-start, i-start, false, false);
+      for (int j = i+1; j < end; ++j) {
+        Real da = dmat_a.Get(i, j);
+        Real db = dmat_b.Get(i, j);
+        bool defined = da>=0 && db>=0 && (db < radius || da < radius);
+        bool agree = false;
+        if (defined) {
+          agree = std::abs(da-db)<threshold;
+        }
+        this->set(i-start, j-start, agree, defined);
+        this->set(j-start, i-start, agree, defined);
+      }
+    }
+  }
+
+  AdjacencyBitmap(const SimilarityMatrix& sim, Real threshold):
+    num_vertices_(sim.GetSize()),
+    storage_size_(StorageSize(sim.GetSize())),
+    data_(static_cast<uint64_t*>(malloc(this->num_bytes()))),
+    end_(data_+storage_size_*num_vertices_) {
+    memset(data_, 0, this->num_bytes());
+    for (int i = 0; i < sim.GetSize(); ++i) {
+      this->set(i, i, false, false);
+      for (int j = i+1; j < sim.GetSize(); ++j) {
+        this->set(i, j, sim.Get(i, j)>threshold, sim.Get(i, j)>=0.0);
+        this->set(j, i, sim.Get(i, j)>threshold, sim.Get(i, j)>=0.0);
+      }
+    }
+  }
+
+  AdjacencyBitmap(const AdjacencyBitmap& rhs):
+    num_vertices_(rhs.num_vertices_),
+    storage_size_(rhs.storage_size_),
+    data_(static_cast<uint64_t*>(malloc(this->num_bytes()))),
+    end_(data_+storage_size_*num_vertices_) {
+     memcpy(data_, rhs.data_, this->num_bytes());
+  }
+
+  ~AdjacencyBitmap() { 
+    if (data_)
+      free(data_);
+  }
+
+  // calculates the overlap between the direct neighbours of vertex i 
+  // and j using pure awesomeness and some bit trickery.
+  OverlapResult Overlap(size_t vert_i, size_t vert_j) const; 
+
+  void set(size_t i, size_t j, bool val, bool defined=true) {
+    size_t byte_index = i*storage_size_ + j/(4*sizeof(uint64_t));
+    assert(byte_index < this->num_bytes());
+    size_t bit_index = (2*j) % BITS;
+    // the following two variables are required to force use of 
+    // 64 bit integer for bit operations.
+    uint64_t one = 1;
+    uint64_t two = 2;
+    assert(bit_index < sizeof(uint64_t)*8);
+
+    if (val) {
+      data_[byte_index] |=  (one << bit_index);
+    } else {
+      data_[byte_index] &= ~(one << bit_index);
+    }
+
+    if (defined) {
+      data_[byte_index] |=  (two << bit_index);
+     } else {
+      data_[byte_index] &= ~(two << bit_index);
+     }
+  }
+
+  bool get(size_t i, size_t j) const {
+    uint64_t one = 1;
+    size_t byte_index = i*storage_size_ + j/(4*sizeof(uint64_t));
+    assert(byte_index < storage_size_*num_vertices_);
+    size_t bit_index = (2*j) % BITS;
+    assert(bit_index < sizeof(uint64_t)*8);
+    return data_[byte_index] & (one << bit_index);
+  }
+
+  bool defined(size_t i, size_t j) const {
+    uint64_t two = 2;
+    size_t byte_index = i*storage_size_ + j/(4*sizeof(uint64_t));
+    assert(byte_index < storage_size_*num_vertices_);
+    size_t bit_index = (2*j) % BITS;
+    assert(bit_index < sizeof(uint64_t)*8);
+    return data_[byte_index] & (two << bit_index);
+  }
+
+  size_t size() const {
+    return num_vertices_;
+  }
+
+  size_t num_bytes() const {
+    return storage_size_*num_vertices_*sizeof(uint64_t);
+  }
+  void dump() const;
+private:
+
+  AdjacencyBitmap();
+  AdjacencyBitmap& operator=(const AdjacencyBitmap&);
+
+  const static size_t BITS=sizeof(uint64_t)*8;
+  size_t   num_vertices_;
+  size_t   storage_size_;
+  uint64_t* data_;
+  uint64_t* end_;
+
+  static const uint8_t NUMBER_OF_BITS_SET[];
+  static const uint8_t NUMBER_OF_EDGES_SET[];
+  static size_t StorageSize(size_t verts) { 
+    return verts/(4*sizeof(uint64_t)) + (verts % (sizeof(uint64_t)*4) ? 1 : 0);
+  }
+};
+
+
+}}}
+#endif
+
diff --git a/modules/mol/alg/src/contact_overlap.cc b/modules/mol/alg/src/contact_overlap.cc
new file mode 100644
index 0000000000000000000000000000000000000000..89246d9db9ca5c3d55664b024606c19208c727fa
--- /dev/null
+++ b/modules/mol/alg/src/contact_overlap.cc
@@ -0,0 +1,461 @@
+#include <ost/log.hh>
+#include <ost/mol/mol.hh>
+#include <ost/seq/alignment_handle.hh>
+#include <ost/seq/alg/merge_pairwise_alignments.hh>
+#include "contact_overlap.hh"
+
+using namespace ost;
+using namespace ost::mol;
+using namespace ost::seq;
+
+namespace ost { namespace mol { namespace alg {
+
+ContactList Contacts(const ost::mol::EntityView& ent, Real min_dist,
+                     Real max_dist)
+{
+  Real min_sqr=min_dist*min_dist;
+  Real max_sqr=max_dist*max_dist;
+  ContactList contacts;
+  ResidueViewList residues=ent.GetResidueList();
+  for (ResidueViewList::const_iterator
+    i=residues.begin(), e=residues.end(); i!=e; ++i) {
+    AtomView atom_a=i->FindAtom("CA");
+    if (!atom_a.IsValid()) {
+      continue;
+    }
+    for (ResidueViewList::const_iterator
+         j=i+1, e2=residues.end(); j!=e2; ++j) {
+      AtomView atom_b=j->FindAtom("CA");
+      if (!atom_b.IsValid()) {
+        continue;
+      }
+      Real d=geom::Length2(atom_a.GetPos()-atom_b.GetPos());
+      if (min_sqr<d && max_sqr>d) {
+        contacts.push_back(Contact(atom_a.GetHandle(), atom_b.GetHandle()));
+      }
+    }
+
+  }
+  return contacts;
+}
+
+namespace {
+
+struct AtomHashCmp {
+  bool operator()(const AtomHandle& a,
+                  const AtomHandle& b) const {
+    return a.GetHashCode()<b.GetHashCode();
+  }
+};
+
+}
+
+void CalcContactNodeDegree(const ContactList& contacts)
+{
+  std::map<AtomHandle, int, AtomHashCmp> degrees;
+  for (ContactList::const_iterator
+       i=contacts.begin(), e=contacts.end(); i!=e; ++i) {
+    // yes, this is sane. upon first accessing a key, the value is initialised
+    // to 0 and *then* incremented.
+    degrees[i->atom_a]+=1;
+    degrees[i->atom_b]+=1;
+  }
+  for (std::map<AtomHandle, int>::iterator
+       i=degrees.begin(), e=degrees.end(); i!=e; ++i) {
+    AtomHandle atom=i->first;
+    atom.SetIntProp("degree", i->second);
+  }
+}
+
+Real Reward(Real ref_dist, Real obs_dist, Real tolerance,
+            OverlapMode mode=OM_RELATIVE) {
+  assert(ref_dist>0.0);
+  Real norm_diff=mode==OM_RELATIVE ?
+                       std::abs((obs_dist-ref_dist)/sqrt(obs_dist+ref_dist)) :
+                       std::abs(ref_dist-obs_dist);
+  if (norm_diff<tolerance*0.5) {
+    return 1.0;
+  }
+  Real one_over_tol=0.5/tolerance;
+  return std::max(0.0, 1.0-(norm_diff-tolerance*0.5)*one_over_tol);
+}
+
+Real LocalDistanceTest(const EntityView& mdl, const EntityView& ref,
+                       Real max_dist, Real tolerance, bool only_complete)
+{
+  Real max_sqr=pow(max_dist+max_dist*tolerance, 2);
+  ContactList contacts;
+  ResidueViewList residues=ref.GetResidueList();
+  Real in_ref=0.0;
+  Real in_mdl=0.0;
+  for (ResidueViewList::const_iterator
+    i=residues.begin(), e=residues.end(); i!=e; ++i) {
+    AtomView atom_a=i->FindAtom("CA");
+    if (!atom_a.IsValid()) {
+      continue;
+    }
+    for (ResidueViewList::const_iterator
+         j=i+1, e2=residues.end(); j!=e2; ++j) {
+      AtomView atom_b=j->FindAtom("CA");
+      if (!atom_b.IsValid()) {
+        continue;
+      }
+      Real d=geom::Length2(atom_a.GetPos()-atom_b.GetPos());
+      if (max_sqr<d) {
+        continue;
+      }
+      if (!only_complete) {
+        in_ref+=1.0;
+      }
+
+      AtomView atom_c=mdl.FindAtom(atom_a.GetResidue().GetChain().GetName(),
+                                   atom_a.GetResidue().GetNumber(), "CA");
+      if (!atom_c.IsValid()) {
+        continue;
+      }
+      AtomView atom_d=mdl.FindAtom(atom_b.GetResidue().GetChain().GetName(),
+                                   atom_b.GetResidue().GetNumber(), "CA");
+      if (!atom_d.IsValid()) {
+        continue;
+      }
+      if (only_complete) {
+        in_ref+=1.0;
+      }
+      in_mdl+=Reward(sqrt(d), geom::Length(atom_c.GetPos()-atom_d.GetPos()),
+                     tolerance);
+    }
+  }
+  if (in_ref==0.0) {
+    return 0.0;
+  }
+  return in_mdl/in_ref;
+}
+
+namespace {
+void calculate_com(const ost::seq::AlignmentHandle& target_tpl_aln,
+                   Real tolerance, int idx_a, int idx_b,
+                   SimilarityMatrix& overlap, OverlapMode mode,
+                   Real max_dist)
+{
+  ConstSequenceHandle s1=target_tpl_aln.GetSequence(idx_a);
+  ConstSequenceHandle s2=target_tpl_aln.GetSequence(idx_b);
+  if (!(s1.HasAttachedView() && s2.HasAttachedView())) {
+    throw Error("Both sequences must have a view attached");
+  }
+  EntityView av=s1.GetAttachedView();
+  for (int x=0; x<s1.GetLength(); ++x) {
+    if (s1[x]=='-' || s2[x]=='-') {
+      continue;
+    }
+    ResidueView res_a=s1.GetResidue(x);
+    if (!res_a) {
+      continue;
+    }
+    AtomView ca_a=res_a.FindAtom("CA");
+    if (!ca_a) {
+      continue;
+    }
+    for (int y=x+1; y<s1.GetLength(); ++y) {
+      if (s1[y]=='-' || s2[y]=='-') {
+        continue;
+      }
+      ResidueView res_b=s1.GetResidue(y);
+      AtomView ca_b=res_b.FindAtom("CA");
+      if (!ca_b.IsValid()) {
+        continue;
+      }
+      ResidueView res_c=s2.GetResidue(x);
+      AtomView ca_c=res_c.FindAtom("CA");
+      if (!ca_c.IsValid()) {
+        continue;
+      }
+      ResidueView res_d=s2.GetResidue(y);
+      AtomView ca_d=res_d.FindAtom("CA");
+      if (!ca_d.IsValid()) {
+        continue;
+      }
+      Real da=geom::Length(ca_a.GetPos()-ca_b.GetPos());
+      Real db=geom::Length(ca_c.GetPos()-ca_d.GetPos());
+      if (da>max_dist && db>max_dist) {
+        continue;
+      }
+      Real reward=Reward(da, db, tolerance, mode);
+      if (overlap.Get(x, y)>=0) {
+        reward=std::min(reward, overlap.Get(x, y));
+      }
+      overlap.Set(x, y, reward);
+    }
+  }
+}
+
+}
+DistanceMatrixPtr DistanceMatrix::FromAln(const AlignmentHandle& aln,
+                                          int index) {
+  if (!aln.GetSequence(index).HasAttachedView()) {
+    throw Error("Sequence must have a view attached");
+  }
+  return DistanceMatrixPtr(new DistanceMatrix(aln, index));
+
+}
+
+DistanceMatrixPtr DistanceMatrix::Create(const ConstSequenceHandle& s)
+{
+  if (!s.HasAttachedView()) {
+    throw Error("Sequence must have a view attached");
+  }
+  return DistanceMatrixPtr(new DistanceMatrix(s));
+}
+
+SimilarityMatrix ContactOverlapMap(const DistanceMatrix& dmat1,
+                                   const DistanceMatrix& dmat2,
+                                   Real tolerance, OverlapMode mode,
+                                   Real max_dist)
+{
+  if (dmat1.GetSize()!=dmat2.GetSize()) {
+    throw Error("Distance matrices must have equal size");
+  }
+  SimilarityMatrix sim(dmat1.GetSize(), -1.0);
+  for (int i=0; i<dmat1.GetSize(); ++i) {
+    for (int j=i+1; j<dmat1.GetSize(); ++j) {
+      Real a=dmat1.Get(i, j);
+      Real b=dmat2.Get(i, j);
+      if ((a<0 || b<0.0) || (a>max_dist && a>max_dist)) {
+        continue;
+      }
+      sim(i, j)=Reward(a, b, tolerance, mode);
+    }
+  }
+  return sim;
+}
+
+DistanceMatrix::DistanceMatrix(const AlignmentHandle& a, int index):
+  ost::TriMatrix<Real>(a.GetSequence(0).GetGaplessString().size(), -1.0)
+{
+   EntityView av=a.GetSequence(index).GetAttachedView();
+   ConstSequenceHandle trg_seq = a.GetSequence(0);
+   ConstSequenceHandle tpl_seq = a.GetSequence(index);
+   for (int x=0; x<a.GetLength(); ++x) {
+     if (trg_seq[x]=='-' || tpl_seq[x]=='-') {
+       continue;
+     }
+     ResidueView res_a=tpl_seq.GetResidue(x);
+     if (!res_a) {
+       continue;
+     }
+     AtomView ca_a=res_a.FindAtom("CA");
+     if (!ca_a) {
+       continue;
+     }
+     for (int y=x; y<a.GetLength(); ++y) {
+       if (trg_seq[y]=='-' || tpl_seq[y] =='-') {
+         continue;
+       }
+       ResidueView res_b=tpl_seq.GetResidue(y);
+       if (!res_b.IsValid()) {
+         continue;
+       }
+       AtomView ca_b=res_b.FindAtom("CA");
+       if (!ca_b.IsValid()) {
+         continue;
+       }
+       this->Set(trg_seq.GetResidueIndex(x), 
+                 trg_seq.GetResidueIndex(y), 
+                 geom::Length(ca_a.GetPos()-ca_b.GetPos()));
+     }
+   }
+}
+
+DistanceMatrix::DistanceMatrix(const ConstSequenceHandle& s):
+  ost::TriMatrix<Real>(s.GetLength(), -1.0)
+{
+   EntityView av=s.GetAttachedView();
+   for (int x=0; x<s.GetLength(); ++x) {
+     if (s[x]=='-') {
+       continue;
+     }
+     ResidueView res_a=s.GetResidue(x);
+     if (!res_a) {
+       continue;
+     }
+     AtomView ca_a=res_a.FindAtom("CA");
+     if (!ca_a) {
+       continue;
+     }
+     for (int y=x; y<s.GetLength(); ++y) {
+       if (s[y]=='-') {
+         continue;
+       }
+       ResidueView res_b=s.GetResidue(y);
+       if (!res_b.IsValid()) {
+         continue;
+       }
+       AtomView ca_b=res_b.FindAtom("CA");
+       if (!ca_b.IsValid()) {
+         continue;
+       }
+       this->Set(x, y, geom::Length(ca_a.GetPos()-ca_b.GetPos()));
+     }
+   }
+}
+
+SimilarityMatrix ContactOverlapMap(const AlignmentHandle& target_tpl_aln,
+                                   Real tolerance, OverlapMode mode, Real max_dist)
+{
+  SimilarityMatrix overlap(target_tpl_aln.GetLength(), -1.0);
+  for (int i=1; i<target_tpl_aln.GetCount(); ++i) {
+    calculate_com(target_tpl_aln, tolerance, 0, i, overlap, mode, max_dist);
+  }
+  return overlap;
+}
+
+SimilarityMatrix ContactOverlapMap(const AlignmentHandle& target_tpl_aln,
+                                   Real tolerance,
+                                   int idx_a, int idx_b)
+{
+    SimilarityMatrix overlap(target_tpl_aln.GetLength(), -1.0);
+    calculate_com(target_tpl_aln, tolerance, idx_a, idx_b, overlap,
+                  OM_ABSOLUTE, 1e6);
+    return overlap;
+}
+
+
+Real ContactOverlap(const DistanceMatrixPtr& lhs,
+                    const DistanceMatrixPtr& rhs,
+                    Real tolerance, OverlapMode mode,
+                    Real dist_limit)
+{
+  Real nom=0.0, denom=0.0;
+  for (int i=0; i<lhs->GetSize(); ++i) {
+    for (int j=i+1; j<lhs->GetSize(); ++j) {
+      Real a=lhs->Get(i, j);
+      Real b=rhs->Get(i, j);
+      if (a>dist_limit && b>dist_limit) {
+        continue;
+      }
+      if (a>=0.0 && b>=0.0) {
+        denom+=1.0;
+        nom+=Reward(a, b, tolerance, mode);
+      }
+    }
+  }
+  return denom>0 ? nom/denom : 0.0;
+}
+
+int LabelComponents(const SimilarityMatrix& sim, std::vector<int>& components,
+                     int x, int comp_id, Real tolerance)
+{
+  int count=1;
+  components[x]=comp_id;
+  for (int y=x+1; y<sim.GetSize(); ++y) {
+    if (sim.Get(x, y)<tolerance || components[y]>-1) {
+      continue;
+    }
+    count+=LabelComponents(sim, components, y, comp_id, tolerance);
+  }
+  return count;
+}
+
+
+//img::ImageHandle 
+void DomainsFromCOM(const SimilarityMatrix& sim,
+                                AlignmentHandle aln,
+                                Real tolerance, int idx_a, int idx_b)
+{
+  const static int MAX_ITERATIONS=20;
+  const static Real EPSILON=1e-6;
+  SimilarityMatrix sim1=sim;
+  SimilarityMatrix sim2(sim1.GetSize(), 0.0);
+  SimilarityMatrix* sim1p=&sim1;
+  SimilarityMatrix* sim2p=&sim2;
+  img::ImageHandle im/*=img::CreateImage(img::Size(sim1.GetSize(),
+                                                 sim1.GetSize(), MAX_ITERATIONS+1))*/;
+
+  /*for (int i=0; i<sim.GetSize(); ++i) {
+   for (int j=i+1; j<sim.GetSize(); ++j) {
+     im.SetReal(img::Point(i, j, MAX_ITERATIONS), sim1.Get(i, j));
+   }
+  }*/
+  // iteratively update similarity based on direct neighbours
+  int n=MAX_ITERATIONS;
+  std::vector<bool> fixed_residues(sim1.GetSize(), false);
+  Real last_error=0.0;
+  while (n>0) {
+    --n;
+    Real error=0.0;
+    for (int i=0; i<sim.GetSize(); ++i) {
+      /*if (fixed_residues[i]) {
+        continue;
+      }*/
+      fixed_residues[i]=true;
+      for (int j=i+1; j<sim.GetSize(); ++j) {
+        int nom=0, denom=0;
+        for (int k=0; k<sim.GetSize(); ++k) {
+          Real ik=sim1p->Get(i, k);
+          Real jk=sim1p->Get(j, k);
+          if (jk<0 || ik <0) {
+            continue;
+          }
+          if (ik>tolerance) {
+            denom+=1;
+            if (jk>tolerance) {
+              nom+=1;
+            }
+          } else if (jk>tolerance) {
+            denom+=1;
+          }
+        }
+        if (denom) {
+          Real newval=Real(nom)/denom;
+          if (!(newval>0.95 || newval<0.05)) {
+            fixed_residues[i]=false;
+          }
+          sim2p->Set(i, j, newval);
+        } else {
+          sim2p->Set(i, j, 0);
+        }
+        error+=std::abs(sim2p->Get(i, j)-sim1p->Get(i, j));
+        //sim.SetReal(img::Point(i, j, n), sim2p->Get(i, j));
+      }
+    }
+    error/=sim.GetSize()*(sim.GetSize()-1)/2;
+    std::swap(sim1p, sim2p);
+    if (std::abs(error-last_error)<EPSILON) {
+      break;
+    }
+    last_error=error;
+  }
+  // run connected component algorithm on similarity matrix to identify
+  // conserved domains.
+  std::vector<int> components(sim.GetSize(), -1);
+  int comp_id=0;
+  for (int i=0; i<sim.GetSize(); ++i) {
+    if (components[i]!=-1)  {
+      continue;
+    }
+    if (LabelComponents(*sim2p, components, i, comp_id, tolerance)>1) {
+      comp_id+=1;
+    } {
+      components[i]=-1;
+    }
+  }
+
+  for (int i=0; i<aln.GetLength(); ++i) {
+    if (idx_a>=0 && idx_b>=0) {
+      if (ResidueView r=aln.GetResidue(idx_a, i)) {
+        r.SetIntProp("comp_id", components[i]);
+      }
+      if (ResidueView r=aln.GetResidue(idx_b, i)) {
+        r.SetIntProp("comp_id", components[i]);
+      }
+    } else {
+      for (int j=0; j<aln.GetCount(); ++j) {
+        if (ResidueView r=aln.GetResidue(j, i)) {
+          r.SetIntProp("comp_id", components[i]);
+        }
+      }
+    }
+
+  }
+}
+
+}}}
diff --git a/modules/mol/alg/src/contact_overlap.hh b/modules/mol/alg/src/contact_overlap.hh
new file mode 100644
index 0000000000000000000000000000000000000000..e7c470656e36fa5284207367fd4a592467a9bfe5
--- /dev/null
+++ b/modules/mol/alg/src/contact_overlap.hh
@@ -0,0 +1,108 @@
+#ifndef OST_MOL_ALG_CONTACT_HH
+#define OST_MOL_ALG_CONTACT_HH
+
+#include <boost/shared_ptr.hpp>
+
+#include <ost/mol/entity_view.hh>
+#include <ost/img/image.hh>
+#include <ost/seq/alignment_handle.hh>
+
+
+#include "module_config.hh"
+#include "similarity_matrix.hh"
+
+namespace ost { namespace mol { namespace alg {
+
+struct Contact {
+  Contact(): atom_a(), atom_b() {}
+  Contact(ost::mol::AtomHandle a, ost::mol::AtomHandle b):
+    atom_a(a), atom_b(b)
+  { }
+  ost::mol::AtomHandle atom_a;
+  ost::mol::AtomHandle atom_b;
+
+  bool operator==(const Contact& rhs) const
+  {
+    return atom_a==rhs.atom_a && atom_b==rhs.atom_b;
+  }
+
+  bool operator!=(const Contact& rhs) const
+  {
+    return !this->operator==(rhs);
+  }
+};
+
+typedef std::vector<Contact> ContactList;
+
+/// \brief returns a a list of contacts between C-alpha atoms
+ContactList DLLEXPORT_OST_MOL_ALG
+Contacts(const ost::mol::EntityView& ent, Real min_dist,
+         Real max_dist);
+
+typedef enum {
+ OM_RELATIVE,
+ OM_ABSOLUTE
+} OverlapMode;
+/// \brief calculates and assigns the contact node degree as the int
+///   property 'degree' for each atom
+void DLLEXPORT_OST_MOL_ALG CalcContactNodeDegree(const ContactList& contacts);
+
+struct LDT {
+  Real ha;
+  Real ma;
+  Real la;
+};
+
+class DistanceMatrix;
+
+typedef boost::shared_ptr<DistanceMatrix> DistanceMatrixPtr;
+
+class DLLEXPORT_OST_MOL_ALG DistanceMatrix: public ost::TriMatrix<Real> {
+public:
+  static DistanceMatrixPtr Create(const ost::seq::ConstSequenceHandle& s);
+  static DistanceMatrixPtr FromAln(const ost::seq::AlignmentHandle& a,
+                                   int index=1);
+private:
+  DistanceMatrix(const ost::seq::ConstSequenceHandle& sequence);
+  DistanceMatrix(const ost::seq::AlignmentHandle& aln, int index);
+
+};
+
+
+Real DLLEXPORT_OST_MOL_ALG ContactOverlap(const DistanceMatrixPtr& lhs,
+                              const DistanceMatrixPtr& rhs,
+                              Real tolerance,
+                              OverlapMode mode=OM_RELATIVE,
+                              Real dist_limit=1e6);
+
+
+Real DLLEXPORT_OST_MOL_ALG
+LocalDistanceTest(const ost::mol::EntityView& mdl,
+                  const ost::mol::EntityView& ref,
+                  Real max_dist,
+                  Real tolerance=0.02,
+                  bool only_complete=false);
+
+SimilarityMatrix DLLEXPORT_OST_MOL_ALG
+ContactOverlapMap(const ost::seq::AlignmentHandle& target_tpl_aln,
+                  Real tolerance, int idx_a, int idx_b);
+
+SimilarityMatrix DLLEXPORT_OST_MOL_ALG
+ContactOverlapMap(const ost::seq::AlignmentHandle& target_tpl_aln,
+                  Real tolerance, OverlapMode mode=OM_RELATIVE,
+                  Real max_dist=1e6);
+
+SimilarityMatrix DLLEXPORT_OST_MOL_ALG
+ContactOverlapMap(const DistanceMatrix& dmat1, const DistanceMatrix& dmat2,
+                  Real tolerance, OverlapMode mode=OM_RELATIVE,
+                  Real max_dist=1e6);
+
+
+//ost::img::ImageHandle 
+void DLLEXPORT_OST_MOL_ALG
+DomainsFromCOM(const SimilarityMatrix& sim, ost::seq::AlignmentHandle aln,
+               Real tolerance, int idx_a=-1, int idx_b=-1);
+
+}}}
+
+#endif
diff --git a/modules/mol/alg/src/distance_rmsd_test.cc b/modules/mol/alg/src/distance_rmsd_test.cc
index 1411c1806f779563f621e17956443233a5a8202a..6bb500e36eb34a398272141a229807dfa81b3150 100644
--- a/modules/mol/alg/src/distance_rmsd_test.cc
+++ b/modules/mol/alg/src/distance_rmsd_test.cc
@@ -8,117 +8,176 @@ namespace ost { namespace mol { namespace alg {
 
 namespace {
 
-std::pair<Real, long int> calc_rmsd(const ResidueRDMap& res_distance_list, const ResNum& rnum,
-                                    ChainView mdl_chain, int sequence_separation, Real cap_distance,
-                                    bool only_fixed, bool swap, std::vector<std::pair<Real, long int> >& local_rmsd_data_list, bool log )
-{
-  std::pair<Real, long int> rmsd_data(0, 0);
-  ResidueView mdl_res=mdl_chain.FindResidue(rnum);
-  for (ResidueRDMap::const_iterator ai=res_distance_list.begin(); ai!=res_distance_list.end(); ++ai) {
-    const UAtomIdentifiers& uais = ai->first;
-    const std::pair <Real,Real>& values = ai->second;
-    const UniqueAtomIdentifier& first_atom=uais.first;
-    const UniqueAtomIdentifier& second_atom=uais.second;
-    String name=swap ? SwappedName(first_atom.GetAtomName()) : first_atom.GetAtomName();
-    AtomView av1=mdl_res ? mdl_res.FindAtom(name) : AtomView();
-
-    if (only_fixed) {
-       if (std::abs(first_atom.GetResNum().GetNum()-second_atom.GetResNum().GetNum())<=sequence_separation) {
-          continue;
-        }
-      if (Swappable(second_atom.GetResidueName(), second_atom.GetAtomName())) {
-          continue;
-      }
-    }
-    if (!only_fixed) {
-      if (first_atom.GetResNum().GetNum()<=(second_atom.GetResNum().GetNum()+sequence_separation)) {
-        continue;
+
+Real calc_squared_diff(const std::vector<geom::Vec3>& pos_one,
+                       const std::vector<geom::Vec3>& pos_two,
+                       const std::vector<Real>& exp_dist,
+                       Real cap){
+  //expect all all vectors to have the same length...
+  Real squared_diff = 0.0;
+  Real diff;
+  for(uint i = 0; i < pos_one.size(); ++i){
+    diff = std::min(std::abs(geom::Distance(pos_one[i],pos_two[i]) - exp_dist[i]),cap);
+    squared_diff += diff*diff;
+  }
+  return squared_diff;
+}
+
+void fill_residue_positions(const ResidueRDMap& res_dist_list, const ResidueView& res, 
+                            const ChainView& mdl_chain, Real cap_distance, int sequence_separation, 
+                            std::map<String,geom::Vec3>& positions){
+
+  AtomViewList atom_list = res.GetAtomList();
+  //let's already fill in the positions and check later on whether a swap is necessary
+  for(AtomViewList::const_iterator i = atom_list.begin(); 
+      i != atom_list.end(); ++i){
+    positions[i->GetName()] = i->GetPos();
+  }
+
+  String rname = res.GetName();
+  if(!(rname=="GLU" || rname=="ASP" || rname=="VAL" || rname=="TYR" ||
+      rname=="PHE" || rname=="LEU" || rname=="ARG")){
+    return; //no ambiguity check necessary for all other amino acids 
+  }
+
+  std::map<String,geom::Vec3> original_positions;
+  std::map<String,geom::Vec3> swapped_positions;
+  AtomView atom;
+  for(AtomViewList::const_iterator i = atom_list.begin(); i !=atom_list.end(); ++i){
+    if(Swappable(rname,i->GetName())){
+      atom = res.FindAtom(SwappedName(i->GetName()));
+      if(atom){ //both atoms are valid => note, that only in this case a swap is possible
+        original_positions[i->GetName()] = i->GetPos();
+        swapped_positions[i->GetName()] = atom.GetPos();
       }
     }
-    ResidueView rv2=mdl_chain.FindResidue(second_atom.GetResNum());
-    rmsd_data.second+=1;
-    int rindex2=0;
-    int rindex1=mdl_res ? mdl_res.GetIndex() : -1;
-    if (!only_fixed && rindex1!=-1)
-      local_rmsd_data_list[rindex1].second+=1;
-    if (!rv2) {
-      rmsd_data.first+=(cap_distance*cap_distance);
-      local_rmsd_data_list[rindex1].first+=(cap_distance*cap_distance);
-      continue;
-    }
-    rindex2=rv2.GetIndex();
-    if (!only_fixed)
-      local_rmsd_data_list[rindex2].second+=1;
-    AtomView av2=rv2.FindAtom(second_atom.GetAtomName());
-    if (!(av1 && av2)) {
-      rmsd_data.first+=(cap_distance*cap_distance);
-      local_rmsd_data_list[rindex1].first+=(cap_distance*cap_distance);
-      local_rmsd_data_list[rindex2].first+=(cap_distance*cap_distance);
-      continue;
-    }
-    Real mdl_dist=geom::Length(av1.GetPos()-av2.GetPos());
-    Real diff = mdl_dist-values.first;
-    if (diff > cap_distance) {
-        diff = cap_distance;
-    }
-    if (log) {
-      LOG_VERBOSE("drmsd:" << " " << av1.GetResidue().GetChain() << " " << av1.GetResidue().GetName() << " " << av1.GetResidue().GetNumber() << " " << av1.GetName()
-                  << " " << av2.GetResidue().GetChain() << " " << av2.GetResidue().GetName() << " " << av2.GetResidue().GetNumber() << " " << av2.GetName() << " "
-                  << mdl_dist << " " << values.first << " " <<  diff)
-    }
-    rmsd_data.first+=(diff*diff);
-    if (!only_fixed) {
-      local_rmsd_data_list[rindex1].first+=(diff*diff);
-      local_rmsd_data_list[rindex2].first+=(diff*diff);
-    }
   }
-  return rmsd_data;
-}
 
+  std::vector<geom::Vec3> or_positions;
+  std::vector<geom::Vec3> sw_positions;
+  std::vector<geom::Vec3> other_positions;
+  std::vector<Real> expected_dist;
+  ResidueView other_residue;
+
+  for(ResidueRDMap::const_iterator i = res_dist_list.begin(); 
+      i != res_dist_list.end(); ++i){
+    //check whether first atom is one of the swappables
+    const UniqueAtomIdentifier& first_atom = i->first.first;
+    if(original_positions.find(first_atom.GetAtomName()) == original_positions.end()) continue;
+    //we only check the second atom of the distance if it is NOT swappable
+    const UniqueAtomIdentifier& second_atom = i->first.second;
+    if(Swappable(second_atom.GetResidueName(),second_atom.GetAtomName())) continue;
+    //check whether other atom is valid and check the sequence separation
+    other_residue = mdl_chain.FindResidue(second_atom.GetResNum());
+    if(!other_residue) continue;
+    if(std::abs(res.GetNumber().GetNum() - other_residue.GetNumber().GetNum()) <= sequence_separation) continue;
+    atom = other_residue.FindAtom(second_atom.GetAtomName());
+    if(!atom) continue;   
+
+    or_positions.push_back(original_positions[first_atom.GetAtomName()]);
+    sw_positions.push_back(swapped_positions[first_atom.GetAtomName()]);
+    expected_dist.push_back(i->second.first);
+    other_positions.push_back(atom.GetPos());
+  }
 
-void drmsdt_check_and_swap(const GlobalRDMap& glob_dist_list, const EntityView& mdl, int sequence_separation,  Real cap_distance, std::vector<std::pair<Real, long int> > local_rmsd_data_list)
-{
-  ChainView mdl_chain=mdl.GetChainList()[0];
-  XCSEditor edi=mdl.GetHandle().EditXCS(BUFFERED_EDIT);
-  for (GlobalRDMap::const_iterator i=glob_dist_list.begin(); i!=glob_dist_list.end(); ++i) {
-    ResNum rnum =  i->first;
-    if (i->second.size()==0) {
-      continue;
+  Real diff_orig = calc_squared_diff(or_positions,other_positions,expected_dist, cap_distance);
+  Real diff_swapped = calc_squared_diff(sw_positions,other_positions,expected_dist, cap_distance);
+  //finally swap the stuff if necessary
+  if(diff_swapped < diff_orig){
+    for(std::map<String,geom::Vec3>::iterator i = swapped_positions.begin();
+        i != swapped_positions.end(); ++i){
+      positions[i->first] = i->second;
     }
-    ResidueView mdl_res=mdl_chain.FindResidue(rnum);
-    if (!mdl_res) {
-      continue;
+  }
+}
+
+void fill_positions(const GlobalRDMap& glob_dist_list, const ChainView& mdl_chain,
+                    Real cap_distance, int sequence_separation,
+                    std::map<ResNum, std::map<String, geom::Vec3> >& positions){
+
+  ResidueView actual_res;
+  for(GlobalRDMap::const_iterator i = glob_dist_list.begin(); 
+      i != glob_dist_list.end(); ++i){
+    actual_res = mdl_chain.FindResidue(i->first);
+    if(actual_res){
+      std::map<String,geom::Vec3> residue_positions;
+      fill_residue_positions(i->second, actual_res, mdl_chain,
+                             cap_distance, sequence_separation,
+                             residue_positions);
+      if(!residue_positions.empty()) positions[i->first] = residue_positions;
     }
-    String rname = mdl_res.GetName();
-    if (!(rname=="GLU" || rname=="ASP" || rname=="VAL" || rname=="TYR" ||
-          rname=="PHE" || rname=="LEU" || rname=="ARG")) {
+  }
+}
+
+void fill_values(const GlobalRDMap& glob_dist_list, 
+                 const std::map<ResNum, std::map<String, geom::Vec3> >& positions,
+                 Real cap_distance, int sequence_separation,
+                 std::map<ResNum, std::pair<Real,long int> >& drmsd_values){
+
+  ResNum rnum_one, rnum_two;
+  std::vector<geom::Vec3> positions_one, positions_two;
+  std::vector<Real> expected_distances;
+  std::map<ResNum, std::map<String, geom::Vec3> >::const_iterator res_positions_one, res_positions_two;
+  std::map<String,geom::Vec3>::const_iterator pos_one, pos_two;
+  int penalties;
+  Real squared_diff;
+  int num_interactions;
+  Real squared_cap_distance = cap_distance * cap_distance;
+
+  for(GlobalRDMap::const_iterator i = glob_dist_list.begin(); 
+      i != glob_dist_list.end(); ++i){
+    rnum_one = i->first;
+    res_positions_one = positions.find(rnum_one);
+    if(res_positions_one == positions.end()){
+      //this residue is missing, so we give it the full penalty
+      drmsd_values[rnum_one] = std::make_pair(i->second.size()*squared_cap_distance,i->second.size());
       continue;
     }
-    std::pair<long int, long int> ov1=calc_rmsd(i->second, rnum,mdl_chain, sequence_separation,
-                                            cap_distance, true, false, local_rmsd_data_list,true);
-
-    std::pair<long int, long int> ov2=calc_rmsd(i->second, rnum, mdl_chain, sequence_separation,
-                                            cap_distance, true, true, local_rmsd_data_list,true);
 
-
-    if (std::sqrt(ov1.first/static_cast<Real>(ov1.second))>(std::sqrt(ov2.first/static_cast<Real>(ov2.second)))) {
-
-      AtomViewList atoms=mdl_res.GetAtomList();
-      for (AtomViewList::iterator j=atoms.begin(), e2=atoms.end(); j!=e2; ++j) {
-        if (Swappable(rname, j->GetName())) {
-          edi.RenameAtom(j->GetHandle(), SwappedName(j->GetName()));
-        }
+    positions_one.clear();
+    positions_two.clear();
+    expected_distances.clear();
+    penalties = 0;
+    
+    for(ResidueRDMap::const_iterator j = i->second.begin(); j != i->second.end(); ++j){
+      //check sequence separation
+      rnum_two = j->first.second.GetResNum();
+      if(std::abs(rnum_one.GetNum() - rnum_two.GetNum()) <= sequence_separation) continue;
+      //if residue is not present in the positions map, the positions are also missing in the
+      //model => penalty
+      res_positions_two = positions.find(rnum_two);
+      if(res_positions_two == positions.end()){
+        ++penalties;
+        continue;
       }
+      //check whether both positions are present in the positions map
+      pos_one = res_positions_one->second.find(j->first.first.GetAtomName());
+      pos_two = res_positions_two->second.find(j->first.second.GetAtomName());
+      if(pos_one == res_positions_one->second.end() || pos_two == res_positions_two->second.end()){
+        ++penalties; //one of the atoms is missing
+        continue;
+      }
+      positions_one.push_back(pos_one->second);
+      positions_two.push_back(pos_two->second);
+      expected_distances.push_back(j->second.first);
+    }
+    squared_diff = calc_squared_diff(positions_one, positions_two,
+                                     expected_distances, cap_distance);
+    num_interactions = positions_one.size();
+    //add the penalty values
+    if(penalties > 0){
+      squared_diff += squared_cap_distance*penalties;
+      num_interactions += penalties;
     }
+    drmsd_values[rnum_one] = std::make_pair(squared_diff,num_interactions);
   }
 }
 
-
-}
+}//ns
 
 std::pair<Real,long int> DistanceRMSDTest(const EntityView& mdl, const GlobalRDMap& glob_dist_list,
-                           Real cap_distance, int sequence_separation, const String& local_drmsdt_property_string)
-{
+                                          Real cap_distance, int sequence_separation, 
+                                          const String& local_drmsdt_property_string){
   if (!mdl.GetResidueCount()) {
     LOG_WARNING("model structures doesn't contain any residues");
     return std::make_pair<long int,long int>(0,0);
@@ -127,53 +186,47 @@ std::pair<Real,long int> DistanceRMSDTest(const EntityView& mdl, const GlobalRDM
     LOG_WARNING("global reference list is empty");
     return std::make_pair<long int,long int>(0,0);
   }
-  std::vector<std::pair<Real, long int> > local_rmsd_data_list(mdl.GetResidueCount(), std::pair<Real, long int>(0, 0));
-  drmsdt_check_and_swap(glob_dist_list,mdl,sequence_separation, cap_distance, local_rmsd_data_list);
+  
+  //every residue gets a map of positions
+  std::map<ResNum, std::map<String, geom::Vec3> > positions;
+  //every residue will have a sum of squared distances and number of distances
+  std::map<ResNum, std::pair<Real,long int> > drmsd_values;
+  //currently we're only looking at the first chain
   ChainView mdl_chain=mdl.GetChainList()[0];
-  local_rmsd_data_list.clear();
-  std::pair<Real, long int> total_ov(0, 0);
-  for (GlobalRDMap::const_iterator i=glob_dist_list.begin(), e=glob_dist_list.end(); i!=e; ++i) {
-    ResNum rn = i->first;
-    if (i->second.size()!=0) {
-      std::pair<Real, long int> ov1=calc_rmsd(i->second, rn, mdl_chain, sequence_separation, cap_distance, false, false, local_rmsd_data_list,true);
-      total_ov.first+=ov1.first;
-      total_ov.second+=ov1.second;
-     }
-  }
 
-
-  for (GlobalRDMap::const_iterator i=glob_dist_list.begin(),
-       e=glob_dist_list.end();i!=e; ++i) {
-    ResNum rn = i->first;
-    if(local_drmsdt_property_string!="") {
-      ResidueView mdlr=mdl_chain.FindResidue(rn);
-      if (mdlr.IsValid()) {
-        int mdl_res_index =mdlr.GetIndex();
-        Real local_rmsd=sqrt(local_rmsd_data_list[mdl_res_index].first/(static_cast<Real>(local_rmsd_data_list[mdl_res_index].second) ? static_cast<Real>(local_rmsd_data_list[mdl_res_index].second) : 1));
-        mdlr.SetFloatProp(local_drmsdt_property_string, local_rmsd);
-        mdlr.SetFloatProp(local_drmsdt_property_string+"_sum", local_rmsd_data_list[mdl_res_index].first);
-        mdlr.SetIntProp(local_drmsdt_property_string+"_count", local_rmsd_data_list[mdl_res_index].second);
-      }
+  fill_positions(glob_dist_list, mdl_chain, cap_distance, 
+                 sequence_separation,positions);
+  fill_values(glob_dist_list, positions, cap_distance, 
+              sequence_separation, drmsd_values);
+
+  Real total_squared_diff = 0.0;
+  long int total_num_interactions = 0;
+  Real drmsd;
+  std::pair<Real, long int> residue_data;
+  ResidueView actual_residue;
+  for(GlobalRDMap::const_iterator i = glob_dist_list.begin();
+      i != glob_dist_list.end(); ++i){
+    residue_data = drmsd_values[i->first];
+    total_squared_diff += residue_data.first;
+    total_num_interactions += residue_data.second;
+    actual_residue = mdl_chain.FindResidue(i->first);
+    if(actual_residue){
+      drmsd = residue_data.second > 0 ? std::sqrt(residue_data.first/residue_data.second) : 0;
+      actual_residue.SetFloatProp(local_drmsdt_property_string, drmsd);
+      actual_residue.SetFloatProp(local_drmsdt_property_string+"_sum",residue_data.first);
+      actual_residue.SetFloatProp(local_drmsdt_property_string+"_count",residue_data.second);
     }
   }
-  local_rmsd_data_list.clear();
-  return std::make_pair<Real,long int>(total_ov.first,total_ov.second);
+  drmsd = total_num_interactions > 0 ? std::sqrt(total_squared_diff/total_num_interactions) : 0;
+  return std::make_pair(drmsd,total_num_interactions);
 }
 
 
 Real DRMSD(const EntityView& v, const GlobalRDMap& global_dist_list, Real cap_distance, int sequence_separation)
 {
     String label="localdrmsd";
-    std::pair<Real,long int> total_ov=alg::DistanceRMSDTest(v, global_dist_list, cap_distance, sequence_separation, label);
-
-    Real calcdrmsd = static_cast<Real>(total_ov.first)/(static_cast<Real>(total_ov.second) ? static_cast<Real>(total_ov.second) : 1);
-
-    return std::sqrt(calcdrmsd);
+    std::pair<Real,long int> result=alg::DistanceRMSDTest(v, global_dist_list, cap_distance, sequence_separation, label);
+    return result.first;
 }
 
-
-
-
-
-
-}}}
+}}} //ns
diff --git a/modules/mol/alg/src/distance_rmsd_test.hh b/modules/mol/alg/src/distance_rmsd_test.hh
index 12e4ec86646d7241aa6649f19b512f54cb95df17..bd583ed0210a8f3e276432ba5e75162d6f3ffc85 100644
--- a/modules/mol/alg/src/distance_rmsd_test.hh
+++ b/modules/mol/alg/src/distance_rmsd_test.hh
@@ -52,7 +52,7 @@ namespace ost { namespace mol { namespace alg {
 /// If a string is provided as an argument to the function, residue-per-residue statistics are stored as 
 /// residue properties. Specifically, the local residue-based Distance RMSD score is stored in a float property 
 /// as the provided string, while the residue-based sum of squared distances and the number of distances checked 
-/// are saved in two properties named <string>_sum (a float property) and <string>_count (an int property).
+/// are saved in two properties named [string]_sum (a float property) and [string]_count (an int property).
 std::pair<Real,long int> DLLEXPORT_OST_MOL_ALG 
 DistanceRMSDTest(const EntityView& mdl,
                  const GlobalRDMap& glob_dist_list,
diff --git a/modules/mol/alg/src/domain_find.cc b/modules/mol/alg/src/domain_find.cc
new file mode 100644
index 0000000000000000000000000000000000000000..0d5d9ba6147f42521a8e38b4f33a6a16f336d4d5
--- /dev/null
+++ b/modules/mol/alg/src/domain_find.cc
@@ -0,0 +1,383 @@
+#include <boost/thread.hpp>
+
+#include <ost/img/image_factory.hh>
+#include <ost/mol/atom_view.hh>
+#include <ost/mol/residue_view.hh>
+#include <ost/mol/residue_handle.hh>
+#include <ost/img/image_handle.hh>
+#include <ost/mol/residue_view.hh>
+#include <ost/seq/alignment_handle.hh>
+#include <ost/mol/alg/domain_find.hh>
+#include <ost/mol/alg/adjacency_bitmap.hh>
+
+using namespace ost::seq;
+using namespace ost::mol;
+using namespace ost::img;
+using namespace ost;
+
+namespace ost { namespace mol { namespace alg {
+
+int clear_component(const AdjacencyBitmap& bmap, std::vector<int>& components,
+                     int x, int comp_id, int offset) {
+  int count=1;
+  components[offset+x]=-1;
+  for (size_t y=x+1; y<bmap.size(); ++y) {
+    if (components[offset+y]==comp_id && bmap.get(x, y) && bmap.defined(x, y)) {
+      count+=clear_component(bmap, components, y, comp_id, offset);
+    }
+  }
+  return count;
+}
+
+int label_component(const AdjacencyBitmap& bmap, std::vector<int>& components,
+                    int x, int comp_id, int offset) {
+  int count=1;
+  components[offset+x]=comp_id;
+  for (size_t y=x+1; y<bmap.size(); ++y) {
+    if (components[offset+y]==-2 && bmap.get(x, y) && bmap.defined(x, y)) {
+      count+=label_component(bmap, components, y, comp_id, offset);
+    }
+  }
+  return count;
+}
+
+// use template to force generation of two loops, one without image update
+// and one with image update. we for sure don't want to have the image update 
+// when running DomainFind in fast mode
+//
+// this is the single-threaded variant
+template <bool update_img>
+void update_edge_weights_st(AdjacencyBitmap* adj1p, 
+                            AdjacencyBitmap* adj2p,
+                            img::ImageHandle& im,
+                            int n, Real tolerance,
+                            int offset) {
+  for (size_t i=0; i<adj1p->size(); ++i) {
+    for (size_t j=i+1; j<adj1p->size(); ++j) {
+      OverlapResult ov = adj1p->Overlap(i, j);
+      if (ov.defined>10) {
+        // fixme: avoid promotion to float. totally unneccessary.
+        Real set = (static_cast<Real>(ov.nominator)/
+                    static_cast<Real>(ov.denominator ? ov.denominator : 1));
+        adj2p->set(i, j, set>=tolerance);
+        adj2p->set(j, i, set>=tolerance);
+        if (update_img) {
+          im.SetReal(img::Point(i+offset, j+offset, n), set);
+          im.SetReal(img::Point(j+offset, i+offset, n), set);
+        }
+      } else {
+        adj2p->set(i, j, false, false);
+        adj2p->set(j, i, false, false);
+        if (update_img) {
+          im.SetReal(img::Point(i+offset, j+offset, n), 0);
+          im.SetReal(img::Point(j+offset, i+offset, n), 0);
+        }
+      }
+    }
+  }
+}
+
+template <bool update_img>
+struct update_edge_weights_mt {
+
+  AdjacencyBitmap* adj1p;
+  AdjacencyBitmap* adj2p;
+  Real tolerance;
+  size_t start;
+  size_t end;
+
+  img::ImageHandle im;
+  int n;
+  int offset;
+  update_edge_weights_mt(AdjacencyBitmap* a1p, AdjacencyBitmap* a2p,
+                         Real tol, size_t s, size_t e,
+                         img::ImageHandle i, int nth,
+                         int o):
+    adj1p(a1p), adj2p(a2p), tolerance(tol), start(s), 
+    end(std::min(a1p->size(), e)), im(i), n(nth),
+    offset(o) {}
+
+  void operator()() {
+    for (size_t i=start; i<end; ++i) {
+      for (size_t j=0; j<adj1p->size(); ++j) {
+        if (i==j) continue;
+        OverlapResult ov = adj1p->Overlap(i, j);
+        if (ov.defined>10) {
+          // fixme: avoid promotion to float. totally unneccessary.
+          Real set = (static_cast<Real>(ov.nominator)/
+                      static_cast<Real>(ov.denominator ? ov.denominator : 1));
+          adj2p->set(i, j, set>=tolerance);
+          if (update_img) {
+            im.SetReal(img::Point(i+offset, j+offset, n), set);
+          }
+        } else {
+          adj2p->set(i, j, false, false);
+          if (update_img) {
+            im.SetReal(img::Point(i+offset, j+offset, n), 0.0);
+          }
+        }
+      }
+    }
+  }
+};
+
+AdjacencyBitmap optimize_domains(AdjacencyBitmap adj1, Real tolerance,
+                                 img::ImageHandle& im, 
+                                 bool update_img,
+                                 int num_threads,
+                                 int offset,
+                                 int full_size) {
+
+  const static int MAX_ITERATIONS=10;
+  AdjacencyBitmap adj2(adj1.size());
+
+  AdjacencyBitmap* adj1p=&adj1;
+  AdjacencyBitmap* adj2p=&adj2;
+  int n=MAX_ITERATIONS;
+  if (update_img) {
+    im = img::CreateImage(img::Size(full_size, full_size, n+1));
+    for (size_t i=0;i<adj1.size();++i) {
+      for (size_t j=0;j<adj1.size();++j) {
+        if (i==j) {
+          im.SetReal(img::Point(i+offset, j+offset, n), 0.0);
+        } else {
+          im.SetReal(img::Point(i+offset, j+offset, n), 
+                     adj1.get(i, j));
+        }
+      }
+    }
+  }
+
+  if (num_threads>1) {
+    while (n>0) {
+      --n;
+      boost::thread_group tg;
+      int rows_per_thread= ((adj1p->size()+1)/num_threads);
+      int adj_rows_per_thread = rows_per_thread;
+      if (int modulo = rows_per_thread % 64) {
+        adj_rows_per_thread = adj_rows_per_thread+64-modulo;
+      }
+      for (int i=0;i<num_threads;++i) {
+        if (size_t(i*adj_rows_per_thread) > adj1p->size()) {
+          continue;
+        }
+        if (update_img) {
+          tg.create_thread(update_edge_weights_mt<true>(adj1p, adj2p, tolerance,
+                                                  (i+0)*adj_rows_per_thread, 
+                                                  (i+1)*adj_rows_per_thread,
+                                                  im, n, offset));
+        } else {
+          tg.create_thread(update_edge_weights_mt<false>(adj1p, adj2p, tolerance,
+                                                  (i+0)*adj_rows_per_thread, 
+                                                  (i+1)*adj_rows_per_thread,
+                                                  im, n, offset));
+        }
+      }
+      tg.join_all();
+      std::swap(adj1p, adj2p);
+    }
+    return *adj1p;
+  }
+  while (n>0) {
+    --n;
+    if (update_img) {
+      update_edge_weights_st<true>(adj1p, adj2p, im, n, tolerance, offset);
+    } else {
+      update_edge_weights_st<false>(adj1p, adj2p, im, n, tolerance, offset);
+    }
+    std::swap(adj1p, adj2p);
+  }
+  return *adj1p;
+}
+
+void connected_components(const AdjacencyBitmap& adj_bitmap,
+                         std::vector<int>& components, int offset) {
+  int comp_id=0;
+  for (int i=0; i<offset; ++i) {
+    components[i] = -1;
+  }
+  for (size_t i=0; i<adj_bitmap.size(); ++i) {
+    if (components[offset+i]!=-2)  {
+      continue;
+    }
+    int count = label_component(adj_bitmap, components, i, comp_id, offset);
+    if (count>16) {
+      comp_id+=1;
+    } else {
+      clear_component(adj_bitmap, components, i, comp_id, offset);
+    }
+  }
+  for (size_t i=offset+adj_bitmap.size(); i<components.size(); ++i) {
+    components[i] = -1;
+  }
+}
+
+DomainsPtr Domains::FromAln(ost::seq::AlignmentHandle aln,
+                            Real tolerance, Real radius, Real threshold,
+                            int idx_a, int idx_b) {
+  SimilarityMatrix sim = ContactOverlapMap(aln, tolerance, OM_ABSOLUTE,
+                                           radius);
+  return Domains::FromCOM(sim, aln, threshold, idx_a, idx_b);
+}
+
+DomainsPtr Domains::FromCOM(const SimilarityMatrix& sim, AlignmentHandle aln,
+                            Real tolerance, int idx_a, int idx_b)
+{
+  bool update_img = false;
+  AdjacencyBitmap adj1(sim, 0.5);
+  img::ImageHandle im;
+
+  AdjacencyBitmap final_adj(optimize_domains(adj1, tolerance, im, 
+                                             update_img, 1, 0,
+                                             adj1.size()));
+
+  // identify connected components in the graph
+  std::vector<int> components(adj1.size(), -2);
+  connected_components(final_adj, components, 0);
+
+  DomainsMap domains_map;
+  if (idx_a>=0 && idx_b>=0) {
+    for (int i=0; i<aln.GetLength(); ++i) {
+      if (components[i]==-1) {
+        continue;
+      }
+      DomainsMap::iterator k = domains_map.find(components[i]);
+      if (k == domains_map.end()) {
+        std::pair<DomainsMap::iterator, bool> k2;
+        k2 = domains_map.insert(std::make_pair(components[i], 
+                                               Domain(EntityViewList())));
+        k = k2.first;
+        k->second.views.push_back(aln.GetSequence(idx_a).GetAttachedView().CreateEmptyView());
+        k->second.views.push_back(aln.GetSequence(idx_b).GetAttachedView().CreateEmptyView());
+      }
+      if (ResidueView r=aln.GetResidue(idx_a, i)) {
+        k->second.views[0].AddResidue(r.GetHandle(), ViewAddFlag::INCLUDE_ALL);
+      }
+      if (ResidueView r=aln.GetResidue(idx_b, i)) {
+        k->second.views[1].AddResidue(r.GetHandle(), ViewAddFlag::INCLUDE_ALL);
+      }
+    }
+  }
+
+  int num_free = 0;
+
+  Real free_d = 0, free_s = 0;
+
+  for (size_t i=0; i<adj1.size(); ++i) {
+    if (components[i]==-1) {
+      num_free+=1;
+    }
+    for (size_t j=i+1; j<adj1.size(); ++j) {
+      if (!final_adj.defined(i, j)) {
+        continue;
+      }
+      if (components[i] == -1 || components[j] == -1) {
+       free_d+=1;
+       if (sim.Get(i, j)>=0)
+          free_s+=sim.Get(i, j);
+        continue;
+      }
+      Real s = sim.Get(i, j);
+      if (s<0) {
+        continue;
+      }
+      if (components[i] == components[j]) {
+        domains_map.find(components[i])->second.intra_s+= adj1.get(i, j);
+        domains_map.find(components[i])->second.intra_d+= 1;
+      } else {
+        domains_map.find(components[i])->second.inter_s+=adj1.get(i, j);
+        domains_map.find(components[i])->second.inter_d+= 1;
+        domains_map.find(components[j])->second.inter_s+= adj1.get(i, j);
+        domains_map.find(components[j])->second.inter_d+= 1;
+      }
+    }
+  }
+
+  DomainsPtr domains(new Domains);
+  for (DomainsMap::iterator i = domains_map.begin(), 
+       e = domains_map.end(); i!=e; ++i) {
+    domains->domains_.push_back(i->second);
+  }
+  domains->num_free_ = num_free;
+  domains->components_ = components;
+  domains->free_d_ = free_d;
+  domains->free_s_ = free_s;
+  if (im.IsValid())
+     domains->adj_map_ = im;
+  return domains;
+}
+
+
+std::pair<int, int> get_defined_region(const DistanceMatrix& dmat_a,
+                                       const DistanceMatrix& dmat_b) {
+  int start = 0;
+  for (int i=0; i<dmat_a.GetSize(); ++i) {
+    if (dmat_a.Get(i, i)>=0.0 && dmat_b.Get(i, i)>=0.0) {
+      break;
+    }
+    start++;
+  }
+  if (start == dmat_a.GetSize()) {
+    // the two don't have an overlap
+    return std::make_pair(start, start);
+  }
+  int end = dmat_a.GetSize();
+  for (int i=dmat_a.GetSize()-1; i>=0; --i) {
+    if (dmat_a.Get(i, i)>=0.0 && dmat_b.Get(i, i)>=0.0) {
+      break;
+    }
+    end--;
+  }
+  return std::make_pair(start, end);
+}
+
+DomainsPtr Domains::FromDistMats(const DistanceMatrix& dmat_a, 
+                                 const DistanceMatrix& dmat_b,
+                                 Real tolerance, Real radius, 
+                                 Real threshold, int num_threads,
+                                 bool defined_only,
+                                 bool update_img)
+{
+  // for distance matrices derived from target-template alignments, C-
+  // and N-terminal regions of the distance map are undefined, since
+  // they are not covered in the alignment. To avoid doing a full-blown
+  // O(n^3) update on the full distance matrix, we first identify regions
+  // of the distance map which are defined and perform the update only on
+  // that part of the map.
+  std::pair<int, int> region(0, dmat_a.GetSize());
+  if (defined_only)
+    region = get_defined_region(dmat_a, dmat_b);
+
+  DomainsPtr domains(new Domains);
+
+  if (region.first == region.second) {
+    // there is no overlap whatsoever between the two distance matrices.
+    // all present residues will thus be assigned to the unassigned
+    // component (designated as -1).
+    domains->components_.resize(dmat_a.GetSize(), -1);
+    return domains;
+  }
+
+  // derive initial connectivity bitmap from the two distance matrices
+  AdjacencyBitmap adj1(dmat_a, dmat_b, tolerance, radius, region.first,
+                       region.second);
+
+  img::ImageHandle im;
+
+  // optimize domains
+  AdjacencyBitmap final_adj(optimize_domains(adj1, threshold, im, 
+                                             update_img, num_threads,
+                                             region.first,
+                                             dmat_a.GetSize()));
+  // identify connected components in the graph
+  std::vector<int> components(dmat_a.GetSize(), -2);
+  connected_components(final_adj, components, region.first);
+  domains->components_ = components;
+  if (im.IsValid())
+     domains->adj_map_ = im;
+  return domains;
+
+}
+
+}}}
+
diff --git a/modules/mol/alg/src/domain_find.hh b/modules/mol/alg/src/domain_find.hh
new file mode 100644
index 0000000000000000000000000000000000000000..f3ce2b0ddd19a8b0c3bc3af9362b74469da5fa41
--- /dev/null
+++ b/modules/mol/alg/src/domain_find.hh
@@ -0,0 +1,81 @@
+#ifndef OST_MOL_ALG_DOMAIN_FIND_HH
+#define OST_MOL_ALG_DOMAIN_FIND_HH
+
+#include <ost/seq/alignment_handle.hh>
+
+#include "module_config.hh"
+#include "contact_overlap.hh"
+
+namespace ost { namespace mol { namespace alg {
+
+struct Domain {
+  Domain(const ost::mol::EntityViewList& v): 
+    inter_s(0), inter_d(0), intra_s(0), intra_d(0), views(v) {}
+  Domain(): inter_s(0), inter_d(0), intra_s(0), intra_d(0) {}
+
+  Real             inter_s;
+  Real             inter_d;
+  Real             intra_s;
+  Real             intra_d;
+
+  bool operator==(const Domain& rhs) const {
+    return views==rhs.views && inter_s == rhs.inter_s &&
+           inter_d == rhs.inter_d && intra_s == rhs.intra_s &&
+           intra_d == rhs.intra_d;
+  }
+  ost::mol::EntityViewList   views;
+};
+
+
+class Domains;
+
+typedef boost::shared_ptr<Domains> DomainsPtr;
+
+class DLLEXPORT_OST_MOL_ALG Domains {
+public:
+
+  static DomainsPtr FromAln(ost::seq::AlignmentHandle aln,
+                            Real tolerance, Real radius, Real threshold,
+                            int idx_a=-1, int idx_b=-1);
+
+  static DomainsPtr FromCOM(const SimilarityMatrix& sim, 
+                            ost::seq::AlignmentHandle aln,
+                            Real tolerance, int idx_a=-1, int idx_b=-1);
+
+  // version of domain find which operates on two distances matrices
+  // we on purpose only return the connected components, since the
+  // distance matrices may not need to correpsond to an actual
+  // entity view.
+  static DomainsPtr FromDistMats(const DistanceMatrix& dmat_a,
+                                 const DistanceMatrix& dmat_b,
+                                 Real tolerance,
+                                 Real radius,
+                                 Real threshold,
+                                 int num_threads,
+                                 bool defined_only,
+                                 bool adj_map);
+  size_t GetNumFreeResidues() const { return num_free_; }
+
+  Real GetFreeD() const { return free_d_; }
+  Real GetFreeS() const { return free_s_; }
+
+  const std::vector<Domain>& GetDomains() const { return domains_; }
+  const std::vector<int>& GetComponents() const { return components_; }
+
+  ost::img::ImageHandle GetAdjMap() const { return adj_map_; }
+private:
+  Domains(): num_free_(0), free_s_(0), free_d_(0) {}
+  // holds the steps of the algorithm. mainly for debuggin purposes
+  ost::img::ImageHandle     adj_map_;
+  int                       num_free_;
+  Real                      free_s_;
+  Real                      free_d_;
+  std::vector<Domain>       domains_;
+  std::vector<int>          components_;
+};
+
+typedef std::map<int, Domain> DomainsMap;
+
+}}}
+#endif
+
diff --git a/modules/mol/alg/src/lddt.cc b/modules/mol/alg/src/lddt.cc
index 2509a0af9371ef15d6ec18d9d744bc916340893d..90c6819dfb6974e902ca02ef908aad8492f8fac2 100644
--- a/modules/mol/alg/src/lddt.cc
+++ b/modules/mol/alg/src/lddt.cc
@@ -18,7 +18,9 @@
 //------------------------------------------------------------------------------
 #include <iomanip>
 #if defined (_MSC_VER)
-#define BOOST_ALL_DYN_LINK 1
+  #define BOOST_ALL_DYN_LINK 1
+  #include <BaseTsd.h>
+  typedef SSIZE_T ssize_t;
 #endif
 #include <boost/program_options.hpp>
 #include <boost/filesystem/fstream.hpp>
@@ -142,9 +144,13 @@ CompoundLibPtr load_compound_lib(const String& custom_path)
   if (!_NSGetExecutablePath(result, &size)) {
     exe_path=String(result); 
   }
-  #else 
-  ssize_t count = readlink( "/proc/self/exe", result, 1024 );
-  exe_path = std::string( result, (count > 0) ? count : 0 );
+  #else
+    #if defined (_MSC_VER)
+      // todo find exe path on Windows
+    #else
+      ssize_t count = readlink( "/proc/self/exe", result, 1024 );
+      exe_path = std::string( result, (count > 0) ? count : 0 );
+    #endif
   #endif
   if (exe_path.empty()) { 
     std::cerr << "Could not determine the path of the molck executable. Will only "
@@ -506,7 +512,6 @@ int main (int argc, char **argv)
         ResNum rnum = ritv.GetNumber();
         bool assessed = false;
         String assessed_string="No";
-        bool quality_problems = false;
         String quality_problems_string="No";
         Real lddt_local = -1;
         String lddt_local_string="-";
@@ -519,12 +524,10 @@ int main (int argc, char **argv)
         }
         if (ritv.HasProp("stereo_chemical_violation_sidechain") || 
             ritv.HasProp("steric_clash_sidechain")) {
-          quality_problems = true;
           quality_problems_string="Yes";
         }
         if (ritv.HasProp("stereo_chemical_violation_backbone") || 
             ritv.HasProp("steric_clash_backbone")) {
-          quality_problems = true;
           quality_problems_string="Yes+";
         }
 
diff --git a/modules/mol/alg/src/local_dist_diff_test.hh b/modules/mol/alg/src/local_dist_diff_test.hh
index f9013c97566e4edb261bb3ee4e0a2b8be90f53a4..9dd2f230617ac1b0b795ec6a7e467a80c1485655 100644
--- a/modules/mol/alg/src/local_dist_diff_test.hh
+++ b/modules/mol/alg/src/local_dist_diff_test.hh
@@ -45,7 +45,7 @@ namespace ost { namespace mol { namespace alg {
 /// If a string is provided as an argument to the function, residue-per-residue statistics are stored as 
 /// residue properties. Specifically, the local residue-based lddt score is stored in a float property named
 /// as the provided string, while the residue-based number of conserved and total distances are saved in two 
-/// int properties named <string>_conserved and <string>_total.
+/// int properties named [string]_conserved and [string]_total.
 std::pair<long int,long int> DLLEXPORT_OST_MOL_ALG 
 LocalDistDiffTest(const EntityView& mdl, const GlobalRDMap& dist_list,
                   std::vector<Real> cutoff_list, int sequence_separation = 0, 
@@ -67,7 +67,7 @@ LocalDistDiffTest(const EntityView& mdl, const GlobalRDMap& dist_list,
 /// If a string is provided as an argument to the function, residue-per-residue statistics are stored as 
 /// residue properties. Specifically, the local residue-based lddt score is stored in a float property named
 /// as the provided string, while the residue-based number of conserved and total distances are saved in two 
-/// int properties named <string>_conserved and <string>_total.
+/// int properties named [string]_conserved and [string]_total.
 Real DLLEXPORT_OST_MOL_ALG LocalDistDiffTest(const EntityView& mdl,
                                          const EntityView& target,
                                          Real cutoff, 
diff --git a/modules/mol/alg/src/pdbize.cc b/modules/mol/alg/src/pdbize.cc
index e99366831c01bf2f4c8e4b422a4d617c1722d654..e9265312c6f07be3752229ed4eb8348fb736df1a 100644
--- a/modules/mol/alg/src/pdbize.cc
+++ b/modules/mol/alg/src/pdbize.cc
@@ -29,9 +29,9 @@
 
 namespace ost { namespace mol { namespace alg {
 
-DLLEXPORT const char* POLYPEPTIDE_CHAIN_NAMES="ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz";
-DLLEXPORT const char* LIGAND_CHAIN_NAME="_";
-DLLEXPORT const char* WATER_CHAIN_NAME="-";
+const char* POLYPEPTIDE_CHAIN_NAMES="ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz";
+const char* LIGAND_CHAIN_NAME="_";
+const char* WATER_CHAIN_NAME="-";
 
 
 namespace {
diff --git a/modules/mol/alg/src/similarity_matrix.cc b/modules/mol/alg/src/similarity_matrix.cc
new file mode 100644
index 0000000000000000000000000000000000000000..e44ef5f67d4ed4b8240c7a009320c3c85b65f62f
--- /dev/null
+++ b/modules/mol/alg/src/similarity_matrix.cc
@@ -0,0 +1,41 @@
+#include "similarity_matrix.hh"
+
+namespace ost { namespace mol { namespace alg {
+
+
+ost::img::ImageHandle SimilarityMatrix::AsImage(bool full) const
+{
+  ost::img::Size img_size(this->GetSize(), this->GetSize());
+  ost::img::ImageHandle im=ost::img::CreateImage(img_size);
+  for (int i=0; i<this->GetSize(); ++i) {
+
+    for (int j=full ? 0 : i+1; j<this->GetSize(); ++j) {
+      im.SetReal(ost::img::Point(i, j), this->Get(i, j));
+      im.SetReal(ost::img::Point(j, i), this->Get(i, j));
+    }
+  }
+  return im;
+}
+
+SimilarityMatrix SimilarityMatrix::Load(const String& filename)
+{
+  std::ifstream istream(filename.c_str(), std::ios::binary);
+  size_t the_size;
+  istream.read(reinterpret_cast<char*>(&the_size), sizeof(size_t));
+  SimilarityMatrix sim(the_size);
+  istream.read(reinterpret_cast<char*>(&sim.Data().front()),
+    sizeof(Real)*sim.Data().size());
+  return sim;
+}
+
+void SimilarityMatrix::Save(const String& filename)
+{
+  std::ofstream of(filename.c_str(), std::ios::binary);
+  size_t the_size=this->GetSize();
+  of.write(reinterpret_cast<const char*>(&the_size), sizeof(size_t));
+  of.write(reinterpret_cast<const char*>(&this->Data().front()),
+    sizeof(Real)*this->Data().size());
+}
+
+}}}
+
diff --git a/modules/mol/alg/src/similarity_matrix.hh b/modules/mol/alg/src/similarity_matrix.hh
new file mode 100644
index 0000000000000000000000000000000000000000..f871485863d7299701bf69757263275e1dd7db1a
--- /dev/null
+++ b/modules/mol/alg/src/similarity_matrix.hh
@@ -0,0 +1,36 @@
+#ifndef OST_MOL_ALG_SIMILARITY_MATRIX_HH
+#define OST_MOL_ALG_SIMILARITY_MATRIX_HH
+
+#include <limits>
+#include <fstream>
+#include <ost/tri_matrix.hh>
+#include <ost/img/image.hh>
+#include "module_config.hh"
+
+namespace ost { namespace mol { namespace alg {
+
+// triangular distance matrix
+class DLLEXPORT_OST_MOL_ALG SimilarityMatrix : public ost::TriMatrix<Real> {
+public:
+  /// \brief initialise similarity matrix with n datapoints.
+  ///
+  /// The distances are initialised with the default value
+  ///
+  /// \param n is the number of datapoints
+  /// \param def_val is the default similarity
+  SimilarityMatrix(int n, Real def_val=std::numeric_limits<Real>::min()):
+    ost::TriMatrix<Real>(n, def_val)
+  { }
+
+  ost::img::ImageHandle AsImage(bool full=false) const;
+
+  static SimilarityMatrix Load(const String& filename);
+
+  void Save(const String& filename);
+
+};
+
+}}}
+
+#endif
+
diff --git a/modules/mol/alg/src/structure_analysis.cc b/modules/mol/alg/src/structure_analysis.cc
index c2d02f0ad7fc7657fdce9523def4f1a5788fa09a..b561b0a7fb7d7607217190317c18d643aedd62ea 100644
--- a/modules/mol/alg/src/structure_analysis.cc
+++ b/modules/mol/alg/src/structure_analysis.cc
@@ -59,10 +59,42 @@ Real CalculateAverageAgreementWithDensityMap(const geom::Vec3List& vl, img::MapH
   }
   return sum/float(vl.size());
 }
+  
+std::vector< std::vector<Real> > PariwiseDistanceMatrix(const EntityView& view1, const EntityView& view2){
+  std::vector< std::vector<Real> > dist_mat;
+  unsigned int n1=view1.GetAtomCount(),n2=view2.GetAtomCount();
+  dist_mat.resize(n1,std::vector<Real>(n2,0));
+  AtomViewList atoms1=view1.GetAtomList(),atoms2=view2.GetAtomList();
+  for (unsigned int i=0; i!=n1; ++i){
+    for (unsigned int j=0; j!=n2; ++j) {
+      dist_mat[i][j]=geom::Distance(atoms1[i].GetPos(),atoms2[j].GetPos());
+    }
+  }
+  return dist_mat;
+}
 
+std::vector< std::vector<Real> > PariwiseDistanceMatrix(const EntityView& view){
+  std::vector< std::vector<Real> > dist_mat;
+  unsigned int n=view.GetAtomCount();
+  //dist_mat.resize(n,std::vector<Real>(n,0));
+  AtomViewList atoms1=view.GetAtomList(),atoms2=view.GetAtomList();
+  for (unsigned int i=0; i!=n; ++i){
+    dist_mat.push_back(std::vector<Real>(n-i-1,0));
+    for (unsigned int j=i+1; j!=n; ++j) {
+      dist_mat[i][j-i-1]=geom::Distance(atoms1[i].GetPos(),atoms2[j].GetPos());
+    }
+  }
+  return dist_mat;
+}
+  
+  
 #endif
-void DLLEXPORT_OST_MOL_ALG WrapEntityInPeriodicCell(EntityHandle eh, const geom::Vec3 cell_center, const geom::Vec3 basis_vec, bool group_residues){
+void DLLEXPORT_OST_MOL_ALG WrapEntityInPeriodicCell(EntityHandle eh, const geom::Vec3 cell_center, const geom::Vec3 ucell_size, \
+                                                    const geom::Vec3 ucell_angles, bool group_residues,bool follow_bonds){
   mol::XCSEditor edi=eh.EditXCS(mol::BUFFERED_EDIT);
+  bool orthogonal;
+  if (ucell_angles==geom::Vec3()){ orthogonal=true; }
+  else { orthogonal=false; }
   if (group_residues) {
     geom::Vec3 cm,wrapped_cm,shift;
     ResidueHandleList residues=eh.GetResidueList();
@@ -71,14 +103,43 @@ void DLLEXPORT_OST_MOL_ALG WrapEntityInPeriodicCell(EntityHandle eh, const geom:
       ResidueHandle r=residues[i];
       AtomHandleList atoms=r.GetAtomList();
       geom::Vec3 ref_pos=atoms[0].GetPos();
-      for (AtomHandleList::iterator a=atoms.begin(), e=atoms.end(); a!=e; ++a) {
-        edi.SetAtomPos((*a),geom::WrapVec3((*a).GetPos(),ref_pos,basis_vec));
-      }
+      if (follow_bonds) {
+        int natoms=r.GetAtomCount(),n=1,cycles=1;
+        AtomHandle a=atoms[0];
+        AtomHandleList wrapped_atoms;
+        wrapped_atoms.reserve(natoms);
+        wrapped_atoms.push_back(a);
+        while (n<natoms and cycles<natoms) {
+          ++cycles;
+          for (AtomHandleList::iterator a=wrapped_atoms.begin(), e=wrapped_atoms.end(); a!=e; ++a) {
+            AtomHandleList al=(*a).GetBondPartners();
+            ref_pos=(*a).GetPos();
+            for (AtomHandleList::iterator a2=al.begin(), e2=al.end(); a2!=e2; ++a2) {
+              if (std::find(wrapped_atoms.begin(),wrapped_atoms.end(), *a2) !=wrapped_atoms.end()){
+                continue;
+              } else {
+                ++n;
+                wrapped_atoms.push_back(*a2);
+                if (orthogonal) {
+                    edi.SetAtomPos((*a2),geom::WrapVec3((*a2).GetPos(),ref_pos,ucell_size));
+                } else {
+                  edi.SetAtomPos((*a2),geom::WrapVec3((*a2).GetPos(),ref_pos,ucell_size,ucell_angles));
+          }}}}}
+      } else {
+        if (orthogonal) {
+          for (AtomHandleList::iterator a=atoms.begin(), e=atoms.end(); a!=e; ++a) {
+            edi.SetAtomPos((*a),geom::WrapVec3((*a).GetPos(),ref_pos,ucell_size));
+          }}
+        else {
+          for (AtomHandleList::iterator a=atoms.begin(), e=atoms.end(); a!=e; ++a) {
+            edi.SetAtomPos((*a),geom::WrapVec3((*a).GetPos(),ref_pos,ucell_size,ucell_angles));
+        }}}
     }
     for (unsigned int i=0; i<n_residues; ++i) {
       ResidueHandle r=residues[i];
       cm=r.GetCenterOfMass();
-      wrapped_cm=geom::WrapVec3(cm,cell_center,basis_vec);
+      if (orthogonal) {wrapped_cm=geom::WrapVec3(cm,cell_center,ucell_size);}
+      else {wrapped_cm=geom::WrapVec3(cm,cell_center,ucell_size,ucell_angles);}
       if (wrapped_cm==cm) continue;
       AtomHandleList atoms=r.GetAtomList();
       unsigned int n_atoms=r.GetAtomCount();
@@ -90,9 +151,14 @@ void DLLEXPORT_OST_MOL_ALG WrapEntityInPeriodicCell(EntityHandle eh, const geom:
   }
   else {
     AtomHandleList atoms=eh.GetAtomList();
-    for (AtomHandleList::iterator a=atoms.begin(), e=atoms.end(); a!=e; ++a) {
-      edi.SetAtomPos((*a),geom::WrapVec3((*a).GetPos(),cell_center,basis_vec));
-    }
+    if (orthogonal){
+      for (AtomHandleList::iterator a=atoms.begin(), e=atoms.end(); a!=e; ++a) {
+        edi.SetAtomPos((*a),geom::WrapVec3((*a).GetPos(),cell_center,ucell_size));
+      }}
+    else {
+      for (AtomHandleList::iterator a=atoms.begin(), e=atoms.end(); a!=e; ++a) {
+        edi.SetAtomPos((*a),geom::WrapVec3((*a).GetPos(),cell_center,ucell_size,ucell_angles));
+      }}
   }
 }
 
diff --git a/modules/mol/alg/src/structure_analysis.hh b/modules/mol/alg/src/structure_analysis.hh
index 7ad8ad575cb0ebdb448e800748408f251fd69c49..2f450f6924fb9d0f50e558e2da1d54d1dce5606b 100644
--- a/modules/mol/alg/src/structure_analysis.hh
+++ b/modules/mol/alg/src/structure_analysis.hh
@@ -37,6 +37,8 @@ namespace ost { namespace mol { namespace alg {
   std::vector<Real> DLLEXPORT_OST_MOL_ALG CalculateAgreementWithDensityMap(const geom::Vec3List& vl, img::MapHandle& density_map);
   Real DLLEXPORT_OST_MOL_ALG CalculateAverageAgreementWithDensityMap(const geom::Vec3List& vl, img::MapHandle& density_map);
 #endif
-  void DLLEXPORT_OST_MOL_ALG WrapEntityInPeriodicCell(EntityHandle eh, const geom::Vec3 cell_center, const geom::Vec3 basis_vec, bool group_res=true);
+  void DLLEXPORT_OST_MOL_ALG WrapEntityInPeriodicCell(EntityHandle eh, const geom::Vec3 cell_center, const geom::Vec3 ucell_size, const geom::Vec3 ucell_angles=geom::Vec3(), bool group_res=true, bool follow_bond=true);
+  std::vector< std::vector<Real> > DLLEXPORT_OST_MOL_ALG PariwiseDistanceMatrix(const EntityView& view1, const EntityView& view2);
+  std::vector< std::vector<Real> > DLLEXPORT_OST_MOL_ALG PariwiseDistanceMatrix(const EntityView& view);
 }}}//ns
 #endif
diff --git a/modules/mol/alg/src/superpose_frames.cc b/modules/mol/alg/src/superpose_frames.cc
index f5cbba61073416b7c47dd05393c9104f4ee0b0b2..ef8ebe9216de6d6cbc69b918509e6c37d044367b 100644
--- a/modules/mol/alg/src/superpose_frames.cc
+++ b/modules/mol/alg/src/superpose_frames.cc
@@ -17,10 +17,7 @@
 // 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 //------------------------------------------------------------------------------
 
-#include <Eigen/Core>
-#include <Eigen/Array>
-#include <Eigen/SVD>
-#include <Eigen/LU>
+#include <Eigen/Eigenvalues>
 #include <ost/message.hh>
 #include <ost/mol/mol.hh>
 #include <ost/mol/alg/superpose_frames.hh>
@@ -100,7 +97,7 @@ void AddSuperposedFrame(CoordGroupHandle& superposed, EMatX3& ref_mat,EMatX3& re
   frame_center=frame_mat.rowwise().sum()/frame_mat.cols();
   frame_centered=row_sub(frame_mat, frame_center);
   //single value decomposition
-  Eigen::SVD<EMat3> svd(frame_centered*ref_centered);
+  Eigen::JacobiSVD<EMat3> svd(frame_centered*ref_centered,Eigen::ComputeFullU | Eigen::ComputeFullV);
   EMat3 matrixVT=svd.matrixV().transpose();
   //determine rotation
   Real detv=matrixVT.determinant();
diff --git a/modules/mol/alg/src/svd_superpose.cc b/modules/mol/alg/src/svd_superpose.cc
index fbc69cd1df4bf5a0c0b65709311bad34318cf735..89d6fcfdb50ef748af8c97c5a7a5041359efc8f7 100644
--- a/modules/mol/alg/src/svd_superpose.cc
+++ b/modules/mol/alg/src/svd_superpose.cc
@@ -21,10 +21,8 @@
 #include <iostream>
 #include <boost/bind.hpp>
 
-#include <Eigen/Core>
-#include <Eigen/Array>
 #include <Eigen/SVD>
-#include <Eigen/LU>
+#include <Eigen/Geometry>
 
 #include <ost/base.hh>
 #include <ost/geom/vec3.hh>
@@ -94,7 +92,7 @@ Real calc_rmsd_for_ematx(const EMatX& atoms1,
                          const EMatX& atoms2,
                          const EMat4& transformation)
 {
-  EMatX transformed_atoms1 = EMatX::Zero(atoms1.rows(), 3);
+  EMatX transformed = EMatX::Zero(atoms1.rows(), 3);
 
   EMatX vector = EMatX::Zero(4,1);
   EMatX transformed_vector = EMatX::Zero(4,1);
@@ -103,17 +101,12 @@ Real calc_rmsd_for_ematx(const EMatX& atoms1,
   for(int i=0;i<atoms1.rows();++i){
     vector.block<3,1>(0,0)=atoms1.block<1,3>(i,0).transpose();
     transformed_vector = transformation*vector;
-    transformed_atoms1.block<1,3>(i,0)=transformed_vector.block<3,1>(0,0).transpose();
+    transformed.block<1,3>(i,0)=transformed_vector.block<3,1>(0,0).transpose();
   }
 
-  EMatX diff = EMatX::Zero(atoms1.rows(),atoms1.cols());
-  EMatX squared_dist = EMatX::Zero(atoms1.rows(),1);
-
-  diff = transformed_atoms1-atoms2;
-  squared_dist = (diff.cwise()*diff).rowwise().sum(); 
-
-  return sqrt(squared_dist.sum()/squared_dist.rows());
-
+  transformed = transformed - atoms2;
+  transformed = transformed.array()*transformed.array();
+  return sqrt(transformed.rowwise().sum().sum()/atoms1.rows());
 }
 
 Real CalculateRMSD(const mol::EntityView& ev1,
@@ -204,7 +197,8 @@ public:
 
   EMatX TransformEMatX(const EMatX& mat, const EMat4& transformation) const;
 
-  std::vector<int> CreateMatchingSubsets(const EMatX& atoms, const EMatX& atoms_ref, Real distance_threshold) const;
+  void CreateMatchingSubsets(std::vector<int>& matching_subset, const EMatX& atoms, 
+                             const EMatX& atoms_ref, Real distance_threshold) const;
 
   SuperpositionResult IterativeMinimize(int ncycles, Real distance_threshold) const;
 
@@ -287,7 +281,7 @@ SuperpositionResult MeanSquareMinimizerImpl::IterativeMinimize(int max_cycles, R
   for(;cycles<max_cycles;++cycles){
 
     transformed_atoms = this->TransformEMatX(atoms1_, transformation_matrix);
-    matching_indices = this->CreateMatchingSubsets(transformed_atoms, atoms2_, distance_threshold);
+    this->CreateMatchingSubsets(matching_indices, transformed_atoms, atoms2_, distance_threshold);
 
     if(matching_indices.size()<3){
       std::stringstream ss;
@@ -312,7 +306,7 @@ SuperpositionResult MeanSquareMinimizerImpl::IterativeMinimize(int max_cycles, R
 
     diff = transformation_matrix_old-transformation_matrix;
 
-    if(diff.cwise().abs().sum()<0.0001){
+    if(diff.array().abs().sum()<0.0001){
       ++cycles;
       break;
     }
@@ -348,24 +342,25 @@ EMatX MeanSquareMinimizerImpl::TransformEMatX(const EMatX& mat, const EMat4& tra
   return transformed_mat;
 }
 
-std::vector<int> MeanSquareMinimizerImpl::CreateMatchingSubsets(const EMatX& atoms, const EMatX& atoms_ref, Real distance_threshold) const{
+void MeanSquareMinimizerImpl::CreateMatchingSubsets(std::vector<int>& matching_subset, 
+                                                    const EMatX& atoms, const EMatX& atoms_ref, 
+                                                    Real distance_threshold) const{
 
 
-  std::vector<int> return_vec;
+  matching_subset.clear();
   EMatX diff = EMatX::Zero(atoms.rows(),atoms.cols());
   EMatX dist = EMatX::Zero(atoms.rows(),1);
 
   diff = atoms-atoms_ref;
-  dist = (diff.cwise()*diff).rowwise().sum(); 
-  dist = dist.cwise().sqrt();
+  dist = (diff.array()*diff.array()).rowwise().sum(); 
+
+  Real squared_dist_threshold = distance_threshold * distance_threshold;
   
   for(int i=0; i<dist.rows(); ++i){
-    if(dist(i,0) <= distance_threshold){
-      return_vec.push_back(i);
+    if(dist(i,0) <= squared_dist_threshold){
+      matching_subset.push_back(i);
     }
   }
-
-  return return_vec;
 }
 
 
@@ -381,7 +376,7 @@ SuperpositionResult MeanSquareMinimizerImpl::Minimize(const EMatX& atoms, const
   EMatX atoms_ref_shifted = MatrixShiftedBy(atoms_ref, avg_ref).transpose();
 
   // determine rotational component
-  Eigen::SVD<EMat3> svd(atoms_ref_shifted*atoms_shifted);
+  Eigen::JacobiSVD<EMat3> svd(atoms_ref_shifted*atoms_shifted,Eigen::ComputeFullU | Eigen::ComputeFullV);
   EMatX matrixVT=svd.matrixV().transpose();
 
   //determine rotation
@@ -469,8 +464,8 @@ SuperpositionResult SuperposeSVD(const mol::EntityView& ev1,
   return result;
 }
 
-SuperpositionResult SuperposeSVD(const std::vector<geom::Vec3>& pl1,
-                                 const std::vector<geom::Vec3>& pl2)
+SuperpositionResult SuperposeSVD(const geom::Vec3List& pl1,
+                                 const geom::Vec3List& pl2)
 {
   MeanSquareMinimizer msm = MeanSquareMinimizer::FromPointLists(pl1, pl2);
   SuperpositionResult result = msm.MinimizeOnce();
@@ -505,8 +500,8 @@ SuperpositionResult IterativeSuperposeSVD(const mol::EntityView& ev,
   return result;
 }
 
-SuperpositionResult IterativeSuperposeSVD(const std::vector<geom::Vec3>& pl1,
-                                          const std::vector<geom::Vec3>& pl2,
+SuperpositionResult IterativeSuperposeSVD(const geom::Vec3List& pl1,
+                                          const geom::Vec3List& pl2,
                                           int max_cycles,
                                           Real distance_threshold){
 
diff --git a/modules/mol/alg/src/svd_superpose.hh b/modules/mol/alg/src/svd_superpose.hh
index 28ee7a0d4fea5312de3937416f6af63e6410a870..72719c2e66c5f49f7ae16917ef59be76f05c9334 100644
--- a/modules/mol/alg/src/svd_superpose.hh
+++ b/modules/mol/alg/src/svd_superpose.hh
@@ -92,8 +92,8 @@ SuperpositionResult DLLEXPORT_OST_MOL_ALG SuperposeSVD(const mol::EntityView& ev
                                                     bool apply_transform);
 
 /// \brief superposes two pointlists
-SuperpositionResult DLLEXPORT_OST_MOL_ALG SuperposeSVD(const std::vector<geom::Vec3>& pl1,
-                                                       const std::vector<geom::Vec3>& pl2);
+SuperpositionResult DLLEXPORT_OST_MOL_ALG SuperposeSVD(const geom::Vec3List& pl1,
+                                                       const geom::Vec3List& pl2);
 
 /// \brief iterative superposition
 SuperpositionResult DLLEXPORT_OST_MOL_ALG IterativeSuperposeSVD(const mol::EntityView& ev1,
@@ -103,8 +103,8 @@ SuperpositionResult DLLEXPORT_OST_MOL_ALG IterativeSuperposeSVD(const mol::Entit
                                                                 bool apply_transform);
 
 /// \brief iterative superposition of two point lists
-SuperpositionResult DLLEXPORT_OST_MOL_ALG IterativeSuperposeSVD(const std::vector<geom::Vec3>& pl1,
-                                                                const std::vector<geom::Vec3>& pl2,
+SuperpositionResult DLLEXPORT_OST_MOL_ALG IterativeSuperposeSVD(const geom::Vec3List& pl1,
+                                                                const geom::Vec3List& pl2,
                                                                 int max_cycles,
                                                                 Real distance_threshold);
 
diff --git a/modules/mol/alg/src/trajectory_analysis.cc b/modules/mol/alg/src/trajectory_analysis.cc
index 96dd5fabb0599b77fb68fa4d9ca8dea94a8de313..359530f7cf63f18778acb40507c251df01a81567 100644
--- a/modules/mol/alg/src/trajectory_analysis.cc
+++ b/modules/mol/alg/src/trajectory_analysis.cc
@@ -242,6 +242,7 @@ std::vector<Real> AnalyzeAromaticRingInteraction(const CoordGroupHandle& traj, c
       throw Error("EntityView is empty");
     }
     std::vector<unsigned long> indices_ca;
+    std::pair<geom::Line3, Real> cylinder;
     geom::Line3 axis;
     Real sign;
     directions.reserve(ceil(traj.GetFrameCount()/float(stride)));
@@ -250,7 +251,8 @@ std::vector<Real> AnalyzeAromaticRingInteraction(const CoordGroupHandle& traj, c
     unsigned int n_atoms=indices_ca.size();
     for (size_t i=0; i<traj.GetFrameCount(); i+=stride) {
       CoordFramePtr frame=traj.GetFrame(i);
-      axis=frame->FitCylinder(indices_ca);
+      cylinder=frame->FitCylinder(indices_ca);
+      axis=cylinder.first;
       sign=geom::Dot(axis.GetDirection(),(*frame)[indices_ca[n_atoms-1]]-axis.GetOrigin());
       sign=sign/fabs(sign);
       directions.push_back(sign*axis.GetDirection());
diff --git a/modules/mol/alg/tests/CMakeLists.txt b/modules/mol/alg/tests/CMakeLists.txt
index 8258cb3d1398734c19b1e1f73051444dc87711ab..10397c0d8e3414633ebd9a679a4d90a6fe289397 100644
--- a/modules/mol/alg/tests/CMakeLists.txt
+++ b/modules/mol/alg/tests/CMakeLists.txt
@@ -4,6 +4,7 @@ set(OST_MOL_ALG_UNIT_TESTS
   test_consistency_checks.cc
   test_pdbize.py
   test_convenient_superpose.py
+  test_hbond.py
 )
 
 ost_unittest(MODULE mol_alg SOURCES "${OST_MOL_ALG_UNIT_TESTS}")
diff --git a/modules/mol/alg/tests/test_hbond.py b/modules/mol/alg/tests/test_hbond.py
new file mode 100644
index 0000000000000000000000000000000000000000..dfef424412c5557c34c5f1b9202616076b4ccd86
--- /dev/null
+++ b/modules/mol/alg/tests/test_hbond.py
@@ -0,0 +1,25 @@
+from ost import io,mol
+import unittest
+import os
+
+class TestHBond(unittest.TestCase):
+  
+  def setUp(self):
+    p=io.IOProfile(dialect='CHARMM')
+    self.eh1=io.LoadPDB(os.path.join("testfiles","hbond1.pdb"),profile=p)
+    self.eh2=io.LoadPDB(os.path.join("testfiles","hbond2.pdb"),profile=p)
+    self.hb_da_dict=mol.alg.hbond.BuildCHARMMHBondDonorAcceptorDict()
+  
+  def testHBondList(self):
+    hbl1=mol.alg.hbond.GetHbondListFromView(self.eh1.Select('cname=PROA'),self.hb_da_dict)
+    for hb in hbl1:self.assertTrue(hb.IsFormed())
+    hbl=mol.alg.hbond.GetHbondListBetweenViews(self.eh1,self.eh2,self.hb_da_dict)
+    self.assertEqual(len(hbl),1)
+    
+  def testHBondScore(self):
+    self.assertEqual(mol.alg.hbond.CalculateHBondScore(self.eh1,self.eh2,hbond_donor_acceptor_dict=self.hb_da_dict),0.8)
+  
+
+if __name__ == "__main__":
+  from ost import testutils
+  testutils.RunTests()
diff --git a/modules/mol/alg/tests/testfiles/hbond1.pdb b/modules/mol/alg/tests/testfiles/hbond1.pdb
new file mode 100644
index 0000000000000000000000000000000000000000..657a7721657b735840bc71ccebfec1302dad8ae6
--- /dev/null
+++ b/modules/mol/alg/tests/testfiles/hbond1.pdb
@@ -0,0 +1,153 @@
+CRYST1    0.000    0.000    0.000  90.00  90.00  90.00 P 1           1
+ATOM      1  N   VAL X 365      11.618   5.729   5.041  1.00  0.00      PROA  
+ATOM      2  HN  VAL X 365      12.357   5.874   5.695  1.00  0.00      PROA  
+ATOM      3  CA  VAL X 365      11.817   4.614   4.057  1.00  0.00      PROA  
+ATOM      4  HA  VAL X 365      12.120   5.063   3.123  1.00  0.00      PROA  
+ATOM      5  CB  VAL X 365      12.880   3.638   4.555  1.00  0.00      PROA  
+ATOM      6  HB  VAL X 365      12.758   3.271   5.597  1.00  0.00      PROA  
+ATOM      7  CG1 VAL X 365      12.923   2.493   3.581  1.00  0.00      PROA  
+ATOM      8 HG11 VAL X 365      13.769   1.825   3.851  1.00  0.00      PROA  
+ATOM      9 HG12 VAL X 365      13.253   2.820   2.572  1.00  0.00      PROA  
+ATOM     10 HG13 VAL X 365      11.981   1.905   3.547  1.00  0.00      PROA  
+ATOM     11  CG2 VAL X 365      14.252   4.368   4.370  1.00  0.00      PROA  
+ATOM     12 HG21 VAL X 365      15.034   3.769   4.883  1.00  0.00      PROA  
+ATOM     13 HG22 VAL X 365      14.264   5.327   4.931  1.00  0.00      PROA  
+ATOM     14 HG23 VAL X 365      14.509   4.512   3.299  1.00  0.00      PROA  
+ATOM     15  C   VAL X 365      10.530   3.823   3.977  1.00  0.00      PROA  
+ATOM     16  O   VAL X 365       9.878   3.644   2.985  1.00  0.00      PROA  
+ATOM     17  N   VAL X 366      10.051   3.478   5.122  1.00  0.00      PROA  
+ATOM     18  HN  VAL X 366      10.696   3.723   5.842  1.00  0.00      PROA  
+ATOM     19  CA  VAL X 366       8.835   2.700   5.461  1.00  0.00      PROA  
+ATOM     20  HA  VAL X 366       8.796   1.776   4.904  1.00  0.00      PROA  
+ATOM     21  CB  VAL X 366       8.746   2.433   7.004  1.00  0.00      PROA  
+ATOM     22  HB  VAL X 366       9.106   3.359   7.502  1.00  0.00      PROA  
+ATOM     23  CG1 VAL X 366       7.329   1.969   7.489  1.00  0.00      PROA  
+ATOM     24 HG11 VAL X 366       7.144   0.966   7.048  1.00  0.00      PROA  
+ATOM     25 HG12 VAL X 366       6.516   2.720   7.398  1.00  0.00      PROA  
+ATOM     26 HG13 VAL X 366       7.439   1.826   8.585  1.00  0.00      PROA  
+ATOM     27  CG2 VAL X 366       9.782   1.385   7.527  1.00  0.00      PROA  
+ATOM     28 HG21 VAL X 366      10.802   1.644   7.170  1.00  0.00      PROA  
+ATOM     29 HG22 VAL X 366       9.494   0.418   7.061  1.00  0.00      PROA  
+ATOM     30 HG23 VAL X 366       9.859   1.344   8.635  1.00  0.00      PROA  
+ATOM     31  C   VAL X 366       7.586   3.380   4.923  1.00  0.00      PROA  
+ATOM     32  O   VAL X 366       6.625   2.754   4.429  1.00  0.00      PROA  
+ATOM     33  N   SER X 367       7.487   4.721   5.110  1.00  0.00      PROA  
+ATOM     34  HN  SER X 367       8.179   5.195   5.649  1.00  0.00      PROA  
+ATOM     35  CA  SER X 367       6.337   5.546   4.756  1.00  0.00      PROA  
+ATOM     36  HA  SER X 367       5.563   4.863   5.073  1.00  0.00      PROA  
+ATOM     37  CB  SER X 367       6.182   6.894   5.600  1.00  0.00      PROA  
+ATOM     38  HB1 SER X 367       5.344   7.513   5.212  1.00  0.00      PROA  
+ATOM     39  HB2 SER X 367       7.029   7.611   5.544  1.00  0.00      PROA  
+ATOM     40  OG  SER X 367       5.775   6.479   6.922  1.00  0.00      PROA  
+ATOM     41  HG1 SER X 367       6.559   6.323   7.455  1.00  0.00      PROA  
+ATOM     42  C   SER X 367       6.198   5.925   3.285  1.00  0.00      PROA  
+ATOM     43  O   SER X 367       5.073   5.984   2.834  1.00  0.00      PROA  
+ATOM     44  N   MET X 368       7.342   6.011   2.516  1.00  0.00      PROA  
+ATOM     45  HN  MET X 368       8.222   5.956   2.983  1.00  0.00      PROA  
+ATOM     46  CA  MET X 368       7.428   6.146   1.069  1.00  0.00      PROA  
+ATOM     47  HA  MET X 368       6.557   6.750   0.862  1.00  0.00      PROA  
+ATOM     48  CB  MET X 368       8.820   6.736   0.716  1.00  0.00      PROA  
+ATOM     49  HB1 MET X 368       8.940   6.324  -0.309  1.00  0.00      PROA  
+ATOM     50  HB2 MET X 368       9.600   6.202   1.300  1.00  0.00      PROA  
+ATOM     51  CG  MET X 368       9.114   8.160   0.683  1.00  0.00      PROA  
+ATOM     52  HG1 MET X 368       8.970   8.637   1.676  1.00  0.00      PROA  
+ATOM     53  HG2 MET X 368       8.370   8.708   0.066  1.00  0.00      PROA  
+ATOM     54  SD  MET X 368      10.854   8.414   0.112  1.00  0.00      PROA  
+ATOM     55  CE  MET X 368      10.429   8.518  -1.623  1.00  0.00      PROA  
+ATOM     56  HE1 MET X 368       9.988   7.542  -1.920  1.00  0.00      PROA  
+ATOM     57  HE2 MET X 368      11.252   8.736  -2.337  1.00  0.00      PROA  
+ATOM     58  HE3 MET X 368       9.589   9.226  -1.790  1.00  0.00      PROA  
+ATOM     59  C   MET X 368       7.275   4.776   0.395  1.00  0.00      PROA  
+ATOM     60  O   MET X 368       7.019   4.790  -0.788  1.00  0.00      PROA  
+ATOM     61  N   THR X 369       7.214   3.623   1.096  1.00  0.00      PROA  
+ATOM     62  HN  THR X 369       7.600   3.536   2.011  1.00  0.00      PROA  
+ATOM     63  CA  THR X 369       6.846   2.309   0.543  1.00  0.00      PROA  
+ATOM     64  HA  THR X 369       6.730   2.329  -0.531  1.00  0.00      PROA  
+ATOM     65  CB  THR X 369       7.907   1.155   0.795  1.00  0.00      PROA  
+ATOM     66  HB  THR X 369       7.533   0.164   0.462  1.00  0.00      PROA  
+ATOM     67  OG1 THR X 369       8.262   1.067   2.193  1.00  0.00      PROA  
+ATOM     68  HG1 THR X 369       9.002   1.674   2.272  1.00  0.00      PROA  
+ATOM     69  CG2 THR X 369       9.178   1.518   0.004  1.00  0.00      PROA  
+ATOM     70 HG21 THR X 369       9.671   2.472   0.289  1.00  0.00      PROA  
+ATOM     71 HG22 THR X 369       8.889   1.546  -1.069  1.00  0.00      PROA  
+ATOM     72 HG23 THR X 369       9.937   0.734   0.209  1.00  0.00      PROA  
+ATOM     73  C   THR X 369       5.462   1.772   0.950  1.00  0.00      PROA  
+ATOM     74  O   THR X 369       4.930   0.735   0.605  1.00  0.00      PROA  
+ATOM     75  N   THR X 370       4.854   2.524   1.837  1.00  0.00      PROA  
+ATOM     76  HN  THR X 370       5.428   3.274   2.153  1.00  0.00      PROA  
+ATOM     77  CA  THR X 370       3.475   2.307   2.319  1.00  0.00      PROA  
+ATOM     78  HA  THR X 370       3.360   3.216   2.891  1.00  0.00      PROA  
+ATOM     79  CB  THR X 370       2.240   2.301   1.374  1.00  0.00      PROA  
+ATOM     80  HB  THR X 370       1.254   2.317   1.885  1.00  0.00      PROA  
+ATOM     81  OG1 THR X 370       2.242   1.131   0.613  1.00  0.00      PROA  
+ATOM     82  HG1 THR X 370       3.158   1.140   0.326  1.00  0.00      PROA  
+ATOM     83  CG2 THR X 370       2.369   3.574   0.385  1.00  0.00      PROA  
+ATOM     84 HG21 THR X 370       3.203   3.523  -0.347  1.00  0.00      PROA  
+ATOM     85 HG22 THR X 370       2.338   4.553   0.910  1.00  0.00      PROA  
+ATOM     86 HG23 THR X 370       1.474   3.574  -0.273  1.00  0.00      PROA  
+ATOM     87  C   THR X 370       3.265   1.190   3.381  1.00  0.00      PROA  
+ATOM     88  O   THR X 370       2.139   0.782   3.712  1.00  0.00      PROA  
+ATOM     89  N   VAL X 371       4.303   0.659   4.032  1.00  0.00      PROA  
+ATOM     90  HN  VAL X 371       5.248   0.913   3.842  1.00  0.00      PROA  
+ATOM     91  CA  VAL X 371       4.174  -0.341   5.080  1.00  0.00      PROA  
+ATOM     92  HA  VAL X 371       3.441  -1.080   4.793  1.00  0.00      PROA  
+ATOM     93  CB  VAL X 371       5.481  -1.050   5.302  1.00  0.00      PROA  
+ATOM     94  HB  VAL X 371       6.237  -0.236   5.308  1.00  0.00      PROA  
+ATOM     95  CG1 VAL X 371       5.466  -1.885   6.550  1.00  0.00      PROA  
+ATOM     96 HG11 VAL X 371       6.411  -2.466   6.596  1.00  0.00      PROA  
+ATOM     97 HG12 VAL X 371       4.716  -2.694   6.420  1.00  0.00      PROA  
+ATOM     98 HG13 VAL X 371       5.106  -1.485   7.523  1.00  0.00      PROA  
+ATOM     99  CG2 VAL X 371       5.853  -2.056   4.210  1.00  0.00      PROA  
+ATOM    100 HG21 VAL X 371       6.761  -2.619   4.515  1.00  0.00      PROA  
+ATOM    101 HG22 VAL X 371       6.035  -1.600   3.213  1.00  0.00      PROA  
+ATOM    102 HG23 VAL X 371       5.121  -2.885   4.106  1.00  0.00      PROA  
+ATOM    103  C   VAL X 371       3.496   0.214   6.320  1.00  0.00      PROA  
+ATOM    104  O   VAL X 371       2.650  -0.424   6.942  1.00  0.00      PROA  
+ATOM    105  N   GLY X 372       3.947   1.347   6.802  1.00  0.00      PROA  
+ATOM    106  HN  GLY X 372       4.595   1.901   6.287  1.00  0.00      PROA  
+ATOM    107  CA  GLY X 372       3.520   1.972   8.032  1.00  0.00      PROA  
+ATOM    108  HA1 GLY X 372       2.723   2.649   7.763  1.00  0.00      PROA  
+ATOM    109  HA2 GLY X 372       4.361   2.574   8.344  1.00  0.00      PROA  
+ATOM    110  C   GLY X 372       3.136   1.234   9.276  1.00  0.00      PROA  
+ATOM    111  O   GLY X 372       1.970   1.231   9.629  1.00  0.00      PROA  
+ATOM    112  N   TYR X 373       4.173   0.790   9.993  1.00  0.00      PROA  
+ATOM    113  HN  TYR X 373       5.105   0.907   9.660  1.00  0.00      PROA  
+ATOM    114  CA  TYR X 373       4.103   0.124  11.289  1.00  0.00      PROA  
+ATOM    115  HA  TYR X 373       3.395  -0.690  11.244  1.00  0.00      PROA  
+ATOM    116  CB  TYR X 373       5.483  -0.396  11.768  1.00  0.00      PROA  
+ATOM    117  HB1 TYR X 373       5.336  -1.033  12.666  1.00  0.00      PROA  
+ATOM    118  HB2 TYR X 373       6.131   0.393  12.207  1.00  0.00      PROA  
+ATOM    119  CG  TYR X 373       6.167  -1.214  10.741  1.00  0.00      PROA  
+ATOM    120  CD1 TYR X 373       7.308  -0.793  10.077  1.00  0.00      PROA  
+ATOM    121  HD1 TYR X 373       7.643   0.203  10.326  1.00  0.00      PROA  
+ATOM    122  CE1 TYR X 373       8.073  -1.689   9.309  1.00  0.00      PROA  
+ATOM    123  HE1 TYR X 373       8.917  -1.335   8.734  1.00  0.00      PROA  
+ATOM    124  CZ  TYR X 373       7.697  -2.975   9.180  1.00  0.00      PROA  
+ATOM    125  OH  TYR X 373       8.377  -3.851   8.259  1.00  0.00      PROA  
+ATOM    126  HH  TYR X 373       7.688  -4.382   7.853  1.00  0.00      PROA  
+ATOM    127  CD2 TYR X 373       5.680  -2.561  10.477  1.00  0.00      PROA  
+ATOM    128  HD2 TYR X 373       4.788  -3.024  10.874  1.00  0.00      PROA  
+ATOM    129  CE2 TYR X 373       6.480  -3.382   9.648  1.00  0.00      PROA  
+ATOM    130  HE2 TYR X 373       6.226  -4.418   9.483  1.00  0.00      PROA  
+ATOM    131  C   TYR X 373       3.617   1.013  12.496  1.00  0.00      PROA  
+ATOM    132  O   TYR X 373       3.034   0.496  13.423  1.00  0.00      PROA  
+ATOM    133  N   GLY X 374       3.825   2.267  12.445  1.00  0.00      PROA  
+ATOM    134  HN  GLY X 374       4.376   2.631  11.698  1.00  0.00      PROA  
+ATOM    135  CA  GLY X 374       3.328   3.182  13.462  1.00  0.00      PROA  
+ATOM    136  HA1 GLY X 374       2.305   2.898  13.661  1.00  0.00      PROA  
+ATOM    137  HA2 GLY X 374       3.435   4.173  13.045  1.00  0.00      PROA  
+ATOM    138  C   GLY X 374       3.994   3.245  14.868  1.00  0.00      PROA  
+ATOM    139  O   GLY X 374       3.441   3.506  15.895  1.00  0.00      PROA  
+ATOM    140  N   ASP X 375       5.321   2.894  14.810  1.00  0.00      PROA  
+ATOM    141  HN  ASP X 375       5.795   2.561  13.998  1.00  0.00      PROA  
+ATOM    142  CA  ASP X 375       6.199   2.731  15.953  1.00  0.00      PROA  
+ATOM    143  HA  ASP X 375       5.607   2.484  16.822  1.00  0.00      PROA  
+ATOM    144  CB  ASP X 375       7.318   1.659  15.729  1.00  0.00      PROA  
+ATOM    145  HB1 ASP X 375       6.916   0.639  15.553  1.00  0.00      PROA  
+ATOM    146  HB2 ASP X 375       7.905   1.600  16.671  1.00  0.00      PROA  
+ATOM    147  CG  ASP X 375       8.095   1.992  14.492  1.00  0.00      PROA  
+ATOM    148  OD1 ASP X 375       7.527   2.389  13.446  1.00  0.00      PROA  
+ATOM    149  OD2 ASP X 375       9.333   1.825  14.541  1.00  0.00      PROA  
+ATOM    150  C   ASP X 375       6.890   4.164  16.143  1.00  0.00      PROA  
+ATOM    151  O   ASP X 375       7.375   4.508  17.268  1.00  0.00      PROA  
+END
diff --git a/modules/mol/alg/tests/testfiles/hbond2.pdb b/modules/mol/alg/tests/testfiles/hbond2.pdb
new file mode 100644
index 0000000000000000000000000000000000000000..2f1f7395b6721639c3137b8f54497e95ca636448
--- /dev/null
+++ b/modules/mol/alg/tests/testfiles/hbond2.pdb
@@ -0,0 +1,153 @@
+CRYST1    0.000    0.000    0.000  90.00  90.00  90.00 P 1           1
+ATOM    152  N   VAL X 365      -5.554  10.917   5.263  1.00  0.00      PROA  
+ATOM    153  HN  VAL X 365      -5.487  11.435   6.112  1.00  0.00      PROA  
+ATOM    154  CA  VAL X 365      -4.443  11.069   4.295  1.00  0.00      PROA  
+ATOM    155  HA  VAL X 365      -4.843  10.903   3.305  1.00  0.00      PROA  
+ATOM    156  CB  VAL X 365      -3.524  12.340   4.423  1.00  0.00      PROA  
+ATOM    157  HB  VAL X 365      -3.253  12.456   5.494  1.00  0.00      PROA  
+ATOM    158  CG1 VAL X 365      -2.216  12.278   3.596  1.00  0.00      PROA  
+ATOM    159 HG11 VAL X 365      -1.525  11.626   4.173  1.00  0.00      PROA  
+ATOM    160 HG12 VAL X 365      -1.831  13.320   3.602  1.00  0.00      PROA  
+ATOM    161 HG13 VAL X 365      -2.437  11.945   2.559  1.00  0.00      PROA  
+ATOM    162  CG2 VAL X 365      -4.425  13.546   3.950  1.00  0.00      PROA  
+ATOM    163 HG21 VAL X 365      -5.359  13.460   4.546  1.00  0.00      PROA  
+ATOM    164 HG22 VAL X 365      -4.691  13.416   2.879  1.00  0.00      PROA  
+ATOM    165 HG23 VAL X 365      -3.990  14.518   4.268  1.00  0.00      PROA  
+ATOM    166  C   VAL X 365      -3.585   9.847   4.444  1.00  0.00      PROA  
+ATOM    167  O   VAL X 365      -3.242   9.204   3.452  1.00  0.00      PROA  
+ATOM    168  N   VAL X 366      -3.285   9.472   5.670  1.00  0.00      PROA  
+ATOM    169  HN  VAL X 366      -3.775   9.952   6.394  1.00  0.00      PROA  
+ATOM    170  CA  VAL X 366      -2.467   8.371   5.951  1.00  0.00      PROA  
+ATOM    171  HA  VAL X 366      -1.507   8.470   5.466  1.00  0.00      PROA  
+ATOM    172  CB  VAL X 366      -2.075   8.398   7.434  1.00  0.00      PROA  
+ATOM    173  HB  VAL X 366      -3.000   8.654   7.994  1.00  0.00      PROA  
+ATOM    174  CG1 VAL X 366      -1.681   7.006   7.930  1.00  0.00      PROA  
+ATOM    175 HG11 VAL X 366      -1.042   6.384   7.268  1.00  0.00      PROA  
+ATOM    176 HG12 VAL X 366      -2.625   6.443   8.094  1.00  0.00      PROA  
+ATOM    177 HG13 VAL X 366      -1.257   7.106   8.952  1.00  0.00      PROA  
+ATOM    178  CG2 VAL X 366      -0.899   9.358   7.612  1.00  0.00      PROA  
+ATOM    179 HG21 VAL X 366      -1.114  10.376   7.223  1.00  0.00      PROA  
+ATOM    180 HG22 VAL X 366      -0.054   8.930   7.031  1.00  0.00      PROA  
+ATOM    181 HG23 VAL X 366      -0.616   9.392   8.686  1.00  0.00      PROA  
+ATOM    182  C   VAL X 366      -3.008   6.988   5.448  1.00  0.00      PROA  
+ATOM    183  O   VAL X 366      -2.313   6.111   4.893  1.00  0.00      PROA  
+ATOM    184  N   SER X 367      -4.332   6.886   5.581  1.00  0.00      PROA  
+ATOM    185  HN  SER X 367      -4.703   7.664   6.082  1.00  0.00      PROA  
+ATOM    186  CA  SER X 367      -5.141   5.772   5.060  1.00  0.00      PROA  
+ATOM    187  HA  SER X 367      -4.643   4.849   5.316  1.00  0.00      PROA  
+ATOM    188  CB  SER X 367      -6.518   5.685   5.729  1.00  0.00      PROA  
+ATOM    189  HB1 SER X 367      -7.163   4.883   5.311  1.00  0.00      PROA  
+ATOM    190  HB2 SER X 367      -7.072   6.633   5.560  1.00  0.00      PROA  
+ATOM    191  OG  SER X 367      -6.416   5.557   7.171  1.00  0.00      PROA  
+ATOM    192  HG1 SER X 367      -5.984   6.307   7.585  1.00  0.00      PROA  
+ATOM    193  C   SER X 367      -5.415   5.859   3.562  1.00  0.00      PROA  
+ATOM    194  O   SER X 367      -5.270   4.884   2.894  1.00  0.00      PROA  
+ATOM    195  N   MET X 368      -5.730   7.029   2.940  1.00  0.00      PROA  
+ATOM    196  HN  MET X 368      -5.866   7.929   3.348  1.00  0.00      PROA  
+ATOM    197  CA  MET X 368      -5.795   7.114   1.519  1.00  0.00      PROA  
+ATOM    198  HA  MET X 368      -6.548   6.394   1.235  1.00  0.00      PROA  
+ATOM    199  CB  MET X 368      -6.380   8.511   1.170  1.00  0.00      PROA  
+ATOM    200  HB1 MET X 368      -6.326   8.686   0.074  1.00  0.00      PROA  
+ATOM    201  HB2 MET X 368      -5.876   9.300   1.768  1.00  0.00      PROA  
+ATOM    202  CG  MET X 368      -7.924   8.541   1.385  1.00  0.00      PROA  
+ATOM    203  HG1 MET X 368      -8.032   8.383   2.479  1.00  0.00      PROA  
+ATOM    204  HG2 MET X 368      -8.330   7.620   0.915  1.00  0.00      PROA  
+ATOM    205  SD  MET X 368      -8.865   9.874   0.776  1.00  0.00      PROA  
+ATOM    206  CE  MET X 368      -9.036   9.409  -0.929  1.00  0.00      PROA  
+ATOM    207  HE1 MET X 368      -9.695   8.515  -0.956  1.00  0.00      PROA  
+ATOM    208  HE2 MET X 368      -8.087   9.204  -1.470  1.00  0.00      PROA  
+ATOM    209  HE3 MET X 368      -9.547  10.168  -1.559  1.00  0.00      PROA  
+ATOM    210  C   MET X 368      -4.566   6.781   0.700  1.00  0.00      PROA  
+ATOM    211  O   MET X 368      -4.593   6.129  -0.321  1.00  0.00      PROA  
+ATOM    212  N   THR X 369      -3.408   7.154   1.181  1.00  0.00      PROA  
+ATOM    213  HN  THR X 369      -3.323   7.498   2.112  1.00  0.00      PROA  
+ATOM    214  CA  THR X 369      -2.039   6.822   0.741  1.00  0.00      PROA  
+ATOM    215  HA  THR X 369      -2.031   7.105  -0.301  1.00  0.00      PROA  
+ATOM    216  CB  THR X 369      -0.913   7.602   1.451  1.00  0.00      PROA  
+ATOM    217  HB  THR X 369       0.129   7.288   1.229  1.00  0.00      PROA  
+ATOM    218  OG1 THR X 369      -1.048   7.538   2.896  1.00  0.00      PROA  
+ATOM    219  HG1 THR X 369      -1.786   8.110   3.119  1.00  0.00      PROA  
+ATOM    220  CG2 THR X 369      -0.882   9.067   0.993  1.00  0.00      PROA  
+ATOM    221 HG21 THR X 369      -0.022   9.636   1.405  1.00  0.00      PROA  
+ATOM    222 HG22 THR X 369      -1.903   9.483   1.130  1.00  0.00      PROA  
+ATOM    223 HG23 THR X 369      -0.623   9.074  -0.087  1.00  0.00      PROA  
+ATOM    224  C   THR X 369      -1.678   5.341   0.902  1.00  0.00      PROA  
+ATOM    225  O   THR X 369      -1.000   4.641   0.135  1.00  0.00      PROA  
+ATOM    226  N   THR X 370      -2.257   4.809   2.001  1.00  0.00      PROA  
+ATOM    227  HN  THR X 370      -2.900   5.255   2.619  1.00  0.00      PROA  
+ATOM    228  CA  THR X 370      -2.193   3.436   2.374  1.00  0.00      PROA  
+ATOM    229  HA  THR X 370      -3.085   3.344   2.976  1.00  0.00      PROA  
+ATOM    230  CB  THR X 370      -2.419   2.272   1.319  1.00  0.00      PROA  
+ATOM    231  HB  THR X 370      -2.680   1.365   1.904  1.00  0.00      PROA  
+ATOM    232  OG1 THR X 370      -1.216   2.089   0.500  1.00  0.00      PROA  
+ATOM    233  HG1 THR X 370      -1.051   3.016   0.312  1.00  0.00      PROA  
+ATOM    234  CG2 THR X 370      -3.679   2.581   0.484  1.00  0.00      PROA  
+ATOM    235 HG21 THR X 370      -3.498   3.399  -0.246  1.00  0.00      PROA  
+ATOM    236 HG22 THR X 370      -4.289   3.016   1.304  1.00  0.00      PROA  
+ATOM    237 HG23 THR X 370      -4.118   1.612   0.164  1.00  0.00      PROA  
+ATOM    238  C   THR X 370      -1.029   3.093   3.264  1.00  0.00      PROA  
+ATOM    239  O   THR X 370      -0.716   1.894   3.397  1.00  0.00      PROA  
+ATOM    240  N   VAL X 371      -0.363   4.083   3.837  1.00  0.00      PROA  
+ATOM    241  HN  VAL X 371      -0.669   4.976   3.515  1.00  0.00      PROA  
+ATOM    242  CA  VAL X 371       0.627   3.921   4.891  1.00  0.00      PROA  
+ATOM    243  HA  VAL X 371       1.450   3.259   4.667  1.00  0.00      PROA  
+ATOM    244  CB  VAL X 371       1.338   5.277   5.130  1.00  0.00      PROA  
+ATOM    245  HB  VAL X 371       0.594   6.103   5.108  1.00  0.00      PROA  
+ATOM    246  CG1 VAL X 371       2.304   5.414   6.306  1.00  0.00      PROA  
+ATOM    247 HG11 VAL X 371       3.003   4.559   6.434  1.00  0.00      PROA  
+ATOM    248 HG12 VAL X 371       1.759   5.579   7.260  1.00  0.00      PROA  
+ATOM    249 HG13 VAL X 371       2.814   6.399   6.357  1.00  0.00      PROA  
+ATOM    250  CG2 VAL X 371       2.294   5.484   3.901  1.00  0.00      PROA  
+ATOM    251 HG21 VAL X 371       3.148   4.775   3.948  1.00  0.00      PROA  
+ATOM    252 HG22 VAL X 371       2.613   6.548   3.904  1.00  0.00      PROA  
+ATOM    253 HG23 VAL X 371       1.822   5.394   2.899  1.00  0.00      PROA  
+ATOM    254  C   VAL X 371       0.037   3.426   6.191  1.00  0.00      PROA  
+ATOM    255  O   VAL X 371       0.538   2.690   7.003  1.00  0.00      PROA  
+ATOM    256  N   GLY X 372      -1.232   3.937   6.416  1.00  0.00      PROA  
+ATOM    257  HN  GLY X 372      -1.498   4.659   5.782  1.00  0.00      PROA  
+ATOM    258  CA  GLY X 372      -2.162   3.544   7.487  1.00  0.00      PROA  
+ATOM    259  HA1 GLY X 372      -2.714   2.680   7.149  1.00  0.00      PROA  
+ATOM    260  HA2 GLY X 372      -2.750   4.408   7.761  1.00  0.00      PROA  
+ATOM    261  C   GLY X 372      -1.600   3.218   8.845  1.00  0.00      PROA  
+ATOM    262  O   GLY X 372      -1.643   2.102   9.319  1.00  0.00      PROA  
+ATOM    263  N   TYR X 373      -1.031   4.202   9.564  1.00  0.00      PROA  
+ATOM    264  HN  TYR X 373      -1.181   5.155   9.311  1.00  0.00      PROA  
+ATOM    265  CA  TYR X 373      -0.306   3.990  10.850  1.00  0.00      PROA  
+ATOM    266  HA  TYR X 373       0.450   3.300  10.505  1.00  0.00      PROA  
+ATOM    267  CB  TYR X 373       0.222   5.228  11.603  1.00  0.00      PROA  
+ATOM    268  HB1 TYR X 373       0.710   4.995  12.573  1.00  0.00      PROA  
+ATOM    269  HB2 TYR X 373      -0.581   5.976  11.773  1.00  0.00      PROA  
+ATOM    270  CG  TYR X 373       1.290   5.928  10.866  1.00  0.00      PROA  
+ATOM    271  CD1 TYR X 373       1.293   7.331  10.766  1.00  0.00      PROA  
+ATOM    272  HD1 TYR X 373       0.456   7.864  11.191  1.00  0.00      PROA  
+ATOM    273  CE1 TYR X 373       2.140   8.027   9.936  1.00  0.00      PROA  
+ATOM    274  HE1 TYR X 373       1.928   9.084   9.870  1.00  0.00      PROA  
+ATOM    275  CZ  TYR X 373       3.187   7.395   9.338  1.00  0.00      PROA  
+ATOM    276  OH  TYR X 373       4.021   8.140   8.369  1.00  0.00      PROA  
+ATOM    277  HH  TYR X 373       4.637   7.538   7.945  1.00  0.00      PROA  
+ATOM    278  CD2 TYR X 373       2.341   5.259  10.196  1.00  0.00      PROA  
+ATOM    279  HD2 TYR X 373       2.410   4.189  10.323  1.00  0.00      PROA  
+ATOM    280  CE2 TYR X 373       3.305   5.961   9.450  1.00  0.00      PROA  
+ATOM    281  HE2 TYR X 373       4.168   5.521   8.972  1.00  0.00      PROA  
+ATOM    282  C   TYR X 373      -1.188   3.298  11.900  1.00  0.00      PROA  
+ATOM    283  O   TYR X 373      -0.739   2.394  12.589  1.00  0.00      PROA  
+ATOM    284  N   GLY X 374      -2.486   3.742  12.054  1.00  0.00      PROA  
+ATOM    285  HN  GLY X 374      -2.925   4.399  11.446  1.00  0.00      PROA  
+ATOM    286  CA  GLY X 374      -3.364   3.172  13.072  1.00  0.00      PROA  
+ATOM    287  HA1 GLY X 374      -3.231   2.117  13.263  1.00  0.00      PROA  
+ATOM    288  HA2 GLY X 374      -4.362   3.397  12.726  1.00  0.00      PROA  
+ATOM    289  C   GLY X 374      -3.137   3.860  14.374  1.00  0.00      PROA  
+ATOM    290  O   GLY X 374      -3.327   3.323  15.446  1.00  0.00      PROA  
+ATOM    291  N   ASP X 375      -2.716   5.132  14.258  1.00  0.00      PROA  
+ATOM    292  HN  ASP X 375      -2.592   5.517  13.347  1.00  0.00      PROA  
+ATOM    293  CA  ASP X 375      -2.706   6.055  15.382  1.00  0.00      PROA  
+ATOM    294  HA  ASP X 375      -2.052   5.529  16.061  1.00  0.00      PROA  
+ATOM    295  CB  ASP X 375      -1.922   7.358  15.033  1.00  0.00      PROA  
+ATOM    296  HB1 ASP X 375      -0.878   7.053  14.806  1.00  0.00      PROA  
+ATOM    297  HB2 ASP X 375      -1.902   8.008  15.933  1.00  0.00      PROA  
+ATOM    298  CG  ASP X 375      -2.464   8.125  13.886  1.00  0.00      PROA  
+ATOM    299  OD1 ASP X 375      -3.290   7.631  13.085  1.00  0.00      PROA  
+ATOM    300  OD2 ASP X 375      -1.993   9.254  13.689  1.00  0.00      PROA  
+ATOM    301  C   ASP X 375      -4.051   6.331  16.038  1.00  0.00      PROA  
+ATOM    302  O   ASP X 375      -4.171   6.341  17.271  1.00  0.00      PROA  
+END
diff --git a/modules/mol/base/pymod/export_coord_frame.cc b/modules/mol/base/pymod/export_coord_frame.cc
index e3e269e7d7054817d18a3ae642c0e3065846186c..566f0a43c0c3562830401f339ea62865631d757f 100644
--- a/modules/mol/base/pymod/export_coord_frame.cc
+++ b/modules/mol/base/pymod/export_coord_frame.cc
@@ -43,7 +43,11 @@ Real (CoordFrame::*get_min_dist)(const mol::EntityView&, const mol::EntityView&)
 Real (CoordFrame::*get_alpha)(const mol::EntityView&) const = &CoordFrame::GetAlphaHelixContent;
 geom::Line3 (CoordFrame::*get_odr_line)(const mol::EntityView&) const = &CoordFrame::GetODRLine;
 geom::Plane (CoordFrame::*get_odr_plane)(const mol::EntityView&) const = &CoordFrame::GetODRPlane;
-geom::Line3 (CoordFrame::*fit_cylinder)(const mol::EntityView&) const = &CoordFrame::FitCylinder;
+boost::python::tuple wrap_FitCylinder(const CoordFrame& f,const mol::EntityView& ev) {
+  std::pair<geom::Line3,Real> pair=f.FitCylinder(ev);
+  return boost::python::make_tuple<geom::Line3,Real>(pair.first,pair.second);
+}  
+
 // TODO: move to geom
 geom::Line3 (CoordFrame::*get_odr_line2)() const = &geom::Vec3List::GetODRLine;
 
@@ -69,6 +73,7 @@ void export_CoordFrame()
     .def("SetCellAngles",&CoordFrame::SetCellAngles)
     .def("GetCellAngles",&CoordFrame::GetCellAngles)
     .add_property("cell_angles",&CoordFrame::GetCellAngles,&CoordFrame::SetCellAngles)
+    .def("GetCellVectors",&CoordFrame::GetCellVectors)
     .def("GetAtomPos", get_atom_pos)
     .def("GetDistanceBetwAtoms", get_dist_atom)
     .def("GetAngle", get_angle)
@@ -82,7 +87,7 @@ void export_CoordFrame()
     .def("GetODRLine",get_odr_line)
     .def("GetODRLine",get_odr_line2)
     .def("GetAlphaHelixContent",get_alpha)
-    .def("FitCylinder",fit_cylinder)
+    .def("FitCylinder",wrap_FitCylinder)
   ;
   def("CreateCoordFrame",create_coord_frame1);
   def("CreateCoordFrame",create_coord_frame2);
diff --git a/modules/mol/base/pymod/export_editors.cc b/modules/mol/base/pymod/export_editors.cc
index 6a659d286e095a8436dc338b9f9492f70e857f45..cd7b326fdbcc88581feb24e2af2deb838ff435b0 100644
--- a/modules/mol/base/pymod/export_editors.cc
+++ b/modules/mol/base/pymod/export_editors.cc
@@ -243,6 +243,8 @@ void export_Editors()
     .def("DeleteResidue", &EditorBase::DeleteResidue)
     .def("DeleteChain", &EditorBase::DeleteChain)
     .def("DeleteAtom", &EditorBase::DeleteAtom)
+    .def("DeleteBond", &EditorBase::DeleteBond)
+    .def("DeleteBonds", &EditorBase::DeleteBonds)
     .def("InsertResidueBefore", &EditorBase::InsertResidueBefore)
     .def("InsertResidueAfter", &EditorBase::InsertResidueAfter)
     .def("AppendResidue", append_a)
diff --git a/modules/mol/base/pymod/export_surface.cc b/modules/mol/base/pymod/export_surface.cc
index 874ab51d5c8b9c741a46eba69f47a9b0fdc35a4a..f569d3e403ba59adf4dd362ebcaf39abcd3b792a 100644
--- a/modules/mol/base/pymod/export_surface.cc
+++ b/modules/mol/base/pymod/export_surface.cc
@@ -49,6 +49,11 @@ void export_Surface()
     .def_readwrite("Normal", &SurfaceVertex::normal)
     .def_readwrite("Atom", &SurfaceVertex::atom)   
   ;
+  class_<SurfaceTri>("SurfaceTri", init<>())
+    .def_readwrite("v0", &SurfaceTri::v0)
+    .def_readwrite("v1", &SurfaceTri::v1)
+    .def_readwrite("v2", &SurfaceTri::v2)
+  ;
   class_<SurfaceTriIDList>("SurfaceTriIDList", init<>())
     .def(vector_indexing_suite<SurfaceTriIDList>())
   ;
@@ -60,8 +65,9 @@ void export_Surface()
     .def("Attach",attach2)
     .def("GetVertexIDList", &SurfaceHandle::GetVertexIDList)
     .def("GetTriIDList", &SurfaceHandle::GetTriIDList)    
-    .def("GetVertex", &SurfaceHandle::GetVertex)    
-    .def("FindWithin", &SurfaceHandle::FindWithin)    
+    .def("GetVertex", &SurfaceHandle::GetVertex)
+    .def("GetTri", &SurfaceHandle::GetTri)
+    .def("FindWithin", &SurfaceHandle::FindWithin)
     .def("Invert",&SurfaceHandle::Invert)
     .def("IsValid",&SurfaceHandle::IsValid)
   ;
diff --git a/modules/mol/base/src/atom_base.hh b/modules/mol/base/src/atom_base.hh
index 4ddc13f2f46cea4c19c0e0372bb313b936d51386..c3ec3777d53e836b43d16b9ddd7dfe83f2886226 100644
--- a/modules/mol/base/src/atom_base.hh
+++ b/modules/mol/base/src/atom_base.hh
@@ -33,10 +33,6 @@ namespace ost { namespace mol {
 ///
 /// Groups common functionality for AtomView and AtomHandle.
 ///
-/// Most of the atom properties such as temperature factor, element, radius
-/// and charge can be accessed with #GetAtomProps() that returns an object of
-/// type AtomProp.
-///
 /// Like \ref ResidueBase residues, \ref ChainBase "chains" and 
 /// \ref EntityBase "entities" atoms are generic property containers and may as 
 /// such store \ref generic_properties "custom properties".
diff --git a/modules/mol/base/src/bounding_box.cc b/modules/mol/base/src/bounding_box.cc
index 4b70f78172ecdfde25af3d612944823423b46138..85c40ed1acbb0832893da76f57af96815a3829cc 100644
--- a/modules/mol/base/src/bounding_box.cc
+++ b/modules/mol/base/src/bounding_box.cc
@@ -22,7 +22,7 @@
  */
 
 #include <limits>
-#include <Eigen/QR>
+#include <Eigen/Eigenvalues>
 #include <ost/mol/mol.hh>
 #include <ost/mol/bounding_box.hh>
 namespace ost { namespace mol {
diff --git a/modules/mol/base/src/coord_frame.cc b/modules/mol/base/src/coord_frame.cc
index 8ba7963054d04416b464e70f254f307a6082003d..49c294fcee0fc4ac784e79cd02935d4d4f66e2c6 100644
--- a/modules/mol/base/src/coord_frame.cc
+++ b/modules/mol/base/src/coord_frame.cc
@@ -48,6 +48,11 @@ namespace ost { namespace mol {
     }
   }
 
+  geom::Vec3List CoordFrame::GetCellVectors() const
+  {
+    return geom::CalculateUnitCellVectors(ucell_size_,ucell_angles_);
+  }
+  
   geom::Vec3 CoordFrame::GetAtomPos(const AtomHandle& atom) const 
   {
     return this->GetAtomPos(atom.GetIndex());
@@ -230,7 +235,7 @@ namespace ost { namespace mol {
     return this->GetODRPlane(indices);
   }  
   
-  geom::Line3 CoordFrame::FitCylinder(std::vector<unsigned long>& indices_ca) const {
+  std::pair<geom::Line3, Real> CoordFrame::FitCylinder(std::vector<unsigned long>& indices_ca) const {
     geom::Vec3List atoms_pos_list;
     int n_atoms=indices_ca.size();
     atoms_pos_list.reserve(n_atoms);
@@ -238,7 +243,7 @@ namespace ost { namespace mol {
       atoms_pos_list.push_back((*this)[*i1]);
     }
     //Initial guess
-    geom::Vec3 initial_axis=geom::Vec3(0.0,0.0,0.0),center=geom::Vec3(0.0,0.0,0.0);
+    geom::Vec3 initial_axis=geom::Vec3(0.0,0.0,0.0);
     if (n_atoms<5) {
       initial_axis=atoms_pos_list[n_atoms-1]-atoms_pos_list[0];
     }
@@ -247,14 +252,10 @@ namespace ost { namespace mol {
         initial_axis+=(*(i+4))-(*i);
       }
     }
-    for (geom::Vec3List::const_iterator i=atoms_pos_list.begin(),e=atoms_pos_list.end(); i!=e; ++i) {
-      center+=(*i);
-    }
-    center/=atoms_pos_list.size();
-    return atoms_pos_list.FitCylinder(initial_axis,center);
+    return atoms_pos_list.FitCylinder(initial_axis);
   }
 
-  geom::Line3 CoordFrame::FitCylinder(const mol::EntityView& view1) const {
+  std::pair<geom::Line3, Real> CoordFrame::FitCylinder(const mol::EntityView& view1) const {
     CheckHandleValidity(view1);
     std::vector<unsigned long> indices_ca;
     GetCaIndices(view1, indices_ca);
diff --git a/modules/mol/base/src/coord_frame.hh b/modules/mol/base/src/coord_frame.hh
index e624ebf87065849c87c169249f7994a892e1bf75..33d24d1d402999d3c0e24bc4afa0a587d047e377 100644
--- a/modules/mol/base/src/coord_frame.hh
+++ b/modules/mol/base/src/coord_frame.hh
@@ -77,7 +77,9 @@ public:
   geom::Vec3 GetCellAngles() const {
     return this->ucell_angles_;
   }
-
+  
+  geom::Vec3List GetCellVectors() const;
+  
   geom::Vec3 GetAtomPos(const AtomHandle& atom) const;
   geom::Vec3 GetAtomPos(int atom_index) const;
   Real GetDistanceBetwAtoms(const AtomHandle& a1, const AtomHandle& a2) const;
@@ -180,10 +182,10 @@ public:
     It is assumed that we fit an alpha-helix and that the CA atoms are oredered sequentially
     This is used for the initial guess of the helix axis
   */
-  geom::Line3 FitCylinder(std::vector<unsigned long>& indices_ca) const;
+  std::pair<geom::Line3, Real> FitCylinder(std::vector<unsigned long>& indices_ca) const;
 
   //! see FitCylinder(std::vector<unsigned long>&)
-  geom::Line3 FitCylinder(const mol::EntityView& view1) const;
+  std::pair<geom::Line3, Real> FitCylinder(const mol::EntityView& view1) const;
 
   /*!
     Returns the percentage of residues in the EntityView (segment) that are in an alpha-helix
diff --git a/modules/mol/base/src/coord_group.cc b/modules/mol/base/src/coord_group.cc
index 1edd38b4542f2b03be5d561c59b7f66a948d5e42..3ab9ec3dbf7077bf88c56a62aa582984833e0a70 100644
--- a/modules/mol/base/src/coord_group.cc
+++ b/modules/mol/base/src/coord_group.cc
@@ -146,7 +146,8 @@ void CoordGroupHandle::AddFrames(const CoordGroupHandle& cg)
       throw IntegrityError("Atom number don't match");
     }
     for (size_t i=0; i<cg.GetFrameCount(); ++i) {
-      source_->AddFrame(*cg.GetFrame(i));
+      CoordFramePtr p = cg.GetFrame(i);
+      source_->AddFrame(*p,p->GetCellSize(),p->GetCellAngles());
     }
   } else {
     throw IntegrityError("Can't add frame to immutable CoordGroup");
@@ -256,7 +257,7 @@ CoordGroupHandle CoordGroupHandle::Filter(const EntityView& selected, int first,
          j=indices.begin(), e2=indices.end(); j!=e2; ++j) {
       vecs[j-indices.begin()]=(*frame)[*j];
     }
-    filtered_cg.AddFrame(vecs);
+    filtered_cg.AddFrame(vecs,(*frame).GetCellSize(),(*frame).GetCellAngles());
   }
   return filtered_cg;
 }
diff --git a/modules/mol/base/src/coord_group.hh b/modules/mol/base/src/coord_group.hh
index c9ea57e4efef9f7e07a5f9e868220f50587d050b..754330d6c3b703809ee734e79e53f2afe58558bc 100644
--- a/modules/mol/base/src/coord_group.hh
+++ b/modules/mol/base/src/coord_group.hh
@@ -64,7 +64,7 @@ public:
   /// \brief start time in ps, default 0.0
   float GetStartTime() const;
 
-  /// \rbrief set start time in ps
+  /// \brief set start time in ps
   void SetStartTime(float t);
 
   /// \brief assign positions to the given frame - order and count must match 
diff --git a/modules/mol/base/src/editor_base.cc b/modules/mol/base/src/editor_base.cc
index 76e41f216e989e543d577a80e18527e2170febe3..364ea0be0bbbd07f44073d6e65b9723e1039e25f 100644
--- a/modules/mol/base/src/editor_base.cc
+++ b/modules/mol/base/src/editor_base.cc
@@ -193,6 +193,19 @@ void EditorBase::DeleteAtom(const AtomHandle& atom_handle)
   atom_handle.GetResidue().Impl()->DeleteAtom(atom_handle.Impl());
 }
 
+void EditorBase::DeleteBond(const BondHandle& bond)
+{
+  bond.GetFirst().Impl()->DeleteConnector(bond.Impl(),true);
+}
+
+void EditorBase::DeleteBonds(const BondHandleList& bond_list)
+{
+  for(BondHandleList::const_iterator i = bond_list.begin();
+      i != bond_list.end(); ++i){
+    i->GetFirst().Impl()->DeleteConnector(i->Impl(),true);
+  }
+}
+
 void EditorBase::DeleteResidue(const ResidueHandle& residue_handle) 
 {
   CheckHandleValidity(residue_handle);
diff --git a/modules/mol/base/src/editor_base.hh b/modules/mol/base/src/editor_base.hh
index 255390c29dc3f3e7e286ad5ea966748b75ab72b2..c45036072670958e5eeef9cadb9f23c6def955be 100644
--- a/modules/mol/base/src/editor_base.hh
+++ b/modules/mol/base/src/editor_base.hh
@@ -153,7 +153,11 @@ public:
   ///     algorithms as well as most builders in the conop module rely on proper 
   ///     naming.
   /// \param pos is the position of the atom in global coordinates
-  AtomHandle InsertAtom(ResidueHandle residue, const String& name, 
+  /// \param ele
+  /// \param occupancy
+  /// \param b_factor
+  /// \param is_hetatm
+  AtomHandle InsertAtom(ResidueHandle residue, const String& name,
                         const geom::Vec3& pos, const String& ele="",
                         Real occupancy=1.0, Real b_factor=0.0, 
                         bool is_hetatm=false);
@@ -194,6 +198,8 @@ public:
   ///     Error will be thrown.
   /// \param position
   ///         is the alternative position
+  /// \param occ
+  /// \param b_factor
   /// \sa EditorBase::InsertAltAtom(), ResidueHandle
   void AddAltAtomPos(const String& group, const AtomHandle& atom, 
                      const geom::Vec3& position, Real occ=1.0,
@@ -248,6 +254,20 @@ public:
   ///
   /// All associated torsions and bonds will be removed as well
   void DeleteAtoms(const AtomHandleList& atoms);
+
+  /// \ brief Delete bond
+  ///
+  /// \param bond
+  ///         Is the bond to remove. If no such bond exists, this method will
+  ///         have no effect
+  void DeleteBond(const BondHandle& bond);
+
+  /// \ brief Delete a set of bond
+  ///
+  /// \param bonds
+  ///         bonds to remove. If no such bonds exist, this method will
+  ///         have no effect
+  void DeleteBonds(const BondHandleList& bonds);
   
   /// \brief Add named torsion to entity
   TorsionHandle AddTorsion(const String& name, const AtomHandle& a1,
@@ -287,7 +307,7 @@ public:
 
   /// \brief renumber residues of one chain
   ///
-  /// \param name
+  /// \param chain
   ///           All residues of this chain will be renumbered according to the
   ///           parameters start and keep_spacing
   ///
diff --git a/modules/mol/base/src/entity_base.hh b/modules/mol/base/src/entity_base.hh
index fb23974d1e346f51862c9ec998d92e7d80049c27..b00ac720e9847e18419786a929d5e869735b0724 100644
--- a/modules/mol/base/src/entity_base.hh
+++ b/modules/mol/base/src/entity_base.hh
@@ -41,7 +41,7 @@ public:
 
   /// \brief Set entity name
   ///
-  /// \param entity_name is the new entity name.
+  /// \param ent_name is the new entity name.
   ///
   /// \sa      EntityBase::GetName
   void SetName(const String& ent_name);
diff --git a/modules/mol/base/src/entity_handle.hh b/modules/mol/base/src/entity_handle.hh
index 5cb26134bb181c3055bc73bed2a71ac23c0a45a4..cb0ab5f0f2f6d694daac83694df3dc3af10d83a1 100644
--- a/modules/mol/base/src/entity_handle.hh
+++ b/modules/mol/base/src/entity_handle.hh
@@ -250,11 +250,9 @@ public:
   void FixTransform();
 
   /// \brief get complete list of residues
-  /// \sa #ResiduesBegin, #ResiduesEnd
   ResidueHandleList GetResidueList() const;
   
   /// \brief get complete list of atoms
-  /// \sa #AtomsBegin, #AtomsEnd
   AtomHandleList GetAtomList() const;
   
   /// \brief get complete list of atom positions
diff --git a/modules/mol/base/src/impl/atom_impl.cc b/modules/mol/base/src/impl/atom_impl.cc
index 3a2b4d013f2c14e82f345e55241aa911d0809ffe..7bc585b14662360f400d241ca77e4a48ee8b1184 100644
--- a/modules/mol/base/src/impl/atom_impl.cc
+++ b/modules/mol/base/src/impl/atom_impl.cc
@@ -355,20 +355,29 @@ void AtomImpl::DeleteAllTorsions() {
   EntityImplPtr e=this->GetEntity();
   TorsionImplMap::iterator i;
   std::vector<TorsionImplMap::iterator> t_rm_vec;
+  std::set<ResidueImpl*> involved_residues;
   for (i=e->GetTorsionMap().begin(); i!=e->GetTorsionMap().end(); ++i) {
      if (i->second->IsAtomInvolved(shared_from_this())) {
         t_rm_vec.push_back(i);
+        involved_residues.insert(i->second->GetFirst()->GetResidue().get());
+        involved_residues.insert(i->second->GetSecond()->GetResidue().get());
+        involved_residues.insert(i->second->GetThird()->GetResidue().get());
+        involved_residues.insert(i->second->GetFourth()->GetResidue().get());
      }
   }
   std::vector<TorsionImplMap::iterator>::iterator it_rm;
   for (it_rm=t_rm_vec.begin(); it_rm!=t_rm_vec.end(); ++it_rm) {
      e->GetTorsionMap().erase(*it_rm);
   }
-  TorsionImplList& l=this->GetResidue()->GetTorsionList();
-  TorsionImplList::iterator j;
-  j=std::remove_if(l.begin(), l.end(),
-                   bind(&TorsionImpl::IsAtomInvolved, _1, shared_from_this()));
-  l.erase(j, l.end());
+  
+  for(std::set<ResidueImpl*>::iterator i = involved_residues.begin(); 
+      i != involved_residues.end(); ++i){
+    TorsionImplList& l = (*i)->GetTorsionList();
+    TorsionImplList::iterator j;
+    j=std::remove_if(l.begin(), l.end(),
+                     bind(&TorsionImpl::IsAtomInvolved, _1, shared_from_this()));
+    l.erase(j, l.end());
+  }
 }
 
 }}} // ns
diff --git a/modules/mol/base/src/impl/query_ast.cc b/modules/mol/base/src/impl/query_ast.cc
index ea96a485877b9c01226f4acdfa94e69c526fcb99..26e99bed2bfaca2a1d026f758cdd7a11b9c8d32f 100644
--- a/modules/mol/base/src/impl/query_ast.cc
+++ b/modules/mol/base/src/impl/query_ast.cc
@@ -199,7 +199,7 @@ void SelNode::Dump(int level) const{
   String op = CompOPToString(op_);
   switch(sel_.type) {
     case Prop::STRING:
-      std::cout << sel_.GetName()<< " " << op << " " << boost::get<String>(param_) << std::endl;
+      std::cout << sel_.GetName()<< " " << op << " " << boost::get<StringOrRegexParam>(param_).str() << std::endl;
       break;
   case Prop::FLOAT:
     std::cout << sel_.GetName()<< " " << op << " " << boost::get<float>(param_) << std::endl;
diff --git a/modules/mol/base/src/residue_base.hh b/modules/mol/base/src/residue_base.hh
index 993683cb223aaf661704ce0c08c81d16f55f1bbf..30e174b24f80da16914b740e946f54c28f38e6ca 100644
--- a/modules/mol/base/src/residue_base.hh
+++ b/modules/mol/base/src/residue_base.hh
@@ -62,8 +62,6 @@ namespace ost { namespace mol {
 /// amino acids, co-enzymes, water coordinated ions, drugs, solvents) as obtained
 /// from the PDB.
 ///
-/// When loading an entity from file, the one-letter and chemical class of a
-/// residue are assigned by the \ref conop::Builder "default builder".
 class DLLEXPORT_OST_MOL ResidueBase: 
    public GenericPropContainer<ResidueBase> {
 public:
diff --git a/modules/mol/base/src/spatial_organizer.hh b/modules/mol/base/src/spatial_organizer.hh
index 8876473aa60ed477511029d00617401ff085a418..0e9dce74005141d9103453a806a475704d0ba2b2 100644
--- a/modules/mol/base/src/spatial_organizer.hh
+++ b/modules/mol/base/src/spatial_organizer.hh
@@ -117,7 +117,8 @@ public:
     Real dist2=dist*dist;
     Index imin = Index::Max(min_, gen_index(pos-VEC(dist,dist,dist)));
     Index imax = Index::Min(max_, gen_index(pos+VEC(dist,dist,dist)));
-    if ((imax.u-imin.u+1)*(imax.v-imin.v+1)*(imax.w-imin.w+1)>map_.size()) {
+    const size_t tmp = (imax.u-imin.u+1)*(imax.v-imin.v+1)*(imax.w-imin.w+1);
+    if (tmp > map_.size()) {
       return this->has_within_all_buckets(pos, dist2);
     }
     for(int wc=imin.w;wc<=imax.w;++wc) {
diff --git a/modules/mol/base/src/view_op.hh b/modules/mol/base/src/view_op.hh
index 1774b289dc7689166f075500f2ee3c96026e3a35..dea7c29ab58f11f2f70c9c864554c69884592c89 100644
--- a/modules/mol/base/src/view_op.hh
+++ b/modules/mol/base/src/view_op.hh
@@ -73,7 +73,7 @@ EntityView DLLEXPORT_OST_MOL CreateViewFromAtomList(const AtomViewList& atoms);
 /// \throw IntegrityError if trying to compare two views that do not point to
 ///     the same entity.
 /// \return a pair of views. \c first contains the elements that are in \p view1,
-///     but not in \p view2, \second contains the elements that are in \p view2
+///     but not in \p view2, \c second contains the elements that are in \p view2
 ///     but not in \p view1
 std::pair<EntityView, EntityView> DLLEXPORT_OST_MOL 
 CompareViews(const EntityView& view1, const EntityView& view2);
diff --git a/modules/mol/mm/CMakeLists.txt b/modules/mol/mm/CMakeLists.txt
new file mode 100644
index 0000000000000000000000000000000000000000..4468b05a8c86e042baeebb9b56f19468d9f2e4b5
--- /dev/null
+++ b/modules/mol/mm/CMakeLists.txt
@@ -0,0 +1,3 @@
+add_subdirectory(src)
+add_subdirectory(pymod)
+add_subdirectory(tests)
diff --git a/modules/mol/mm/doc/buildingblock.rst b/modules/mol/mm/doc/buildingblock.rst
new file mode 100644
index 0000000000000000000000000000000000000000..c9dbcfd7d936986f5ed18ffa1a3905e852fe6918
--- /dev/null
+++ b/modules/mol/mm/doc/buildingblock.rst
@@ -0,0 +1,459 @@
+Blocks
+================================================================================
+
+.. currentmodule:: ost.mol
+
+The most basic type of residue description is the BuildingBlock. It contains
+information on atom names and their corresponding types, charges and
+optionally also their masses. Interactions for all particles can also
+be defined even though they are optional, except the bonds giving
+information about the connectivity. 
+You often need to manipulate building blocks or
+the residues they refer to in an automated manner. That's where the 
+BlockModifiers come in, with the GromacsBlockModifier as a specific
+implementation. As a special case there also exist HydrogenConstructors.
+
+
+The BuildingBlock Class
+--------------------------------------------------------------------------------
+
+.. class:: BuildingBlock
+
+  .. method:: Match(residue, [,match_connectivity=True])
+
+    Checks, whether the given residue matches the atom names in the 
+    BuildingBlock. The connectivity gets checked optionally.
+
+    :param residue:    
+    :param match_connectivity: If set to true, the function checks the bonds
+                               in the residue with the defined bonds in the
+                               BuildingBlock 
+
+    :type residue:    :class:`ResidueHandle`
+    :type match_connectivity:    :class:`bool`
+
+    :returns: :class:`bool`
+
+  .. method:: Connect(residue, editor)
+
+    Connects atoms of **residue** based on the bond definitions of the 
+    BuildingBlock.
+
+    :param residue:     Residue to be connected
+    :param editor:      Editor associated to the residue's entity
+
+    :type residue:      :class:`ResidueHandle`
+    :type editor:       :class:`XCSEditor`
+
+    :raises:            :class:`RuntimeError` when required atom can not be found in 
+                        residue
+
+
+  .. method:: AddAtom(name, type, charge,[,mass = None])
+
+    :param name:        Name of atom
+    :param type:        Its corresponding forcefield type
+    :param charge:      Its charge
+    :param mass:        Its mass
+
+    :type name:         :class:`str`
+    :type type:         :class:`str`
+    :type charge:       :class:`float`
+    :type mass:         :class:`float`
+
+
+
+  .. method:: RemoveAtom(name)
+
+    Removes atom from BuildingBlock with all its associated values and 
+    interactions
+
+    :param name:        Name of atom to be removed
+
+    :type name:         :class:`str`
+
+
+
+  .. method:: ReplaceAtom(name, new_name, new_type, new_charge, [,new_mass = None])
+
+    Replace given atom by resetting name, type, charge and mass. All interactions
+    containing that atom get adapted as well
+
+    :param name:        Name of atom to be replaced
+    :param new_name:    New name of atom
+    :param new_type:    New type of atom
+    :param new_charge:  New charge of atom
+    :param new_mass:    New mass of atom
+
+    :type name:         :class:`str`
+    :type new_name:     :class:`str`
+    :type new_type:     :class:`str`
+    :type new_charge:   :class:`float`
+    :type new_mass:     :class:`float`
+
+
+
+  .. method:: RemoveInteractionsToPrev()
+
+    Removes all interactions associated to an atom of a previous residues.
+    This gets indicated in the :class:`BuildingBlock` by an atom name prefixed by a *-*
+
+
+  .. method:: RemoveInteractionsToNext()
+
+    Removes all interactions associated to an atom of a next residues.
+    This gets indicated in the :class:`BuildingBlock` by an atom name prefixed by a *+*
+
+
+  .. method:: AddBond(bond, [,replace_existing = False])
+
+    :param bond:        Bond to be added
+    :param replace_existing: Whether potentially already existing bond for the
+                             same atoms should be replaced.
+
+    :type bond:         :class:`Interaction`
+    :type replace_existing: :class:`bool`
+
+
+  .. method:: AddAngle(angle, [,replace_existing = False])
+
+    :param angle:       Angle to be added
+    :param replace_existing: Whether a potentially already existing angle for the
+                             same atoms should be replaced.
+
+    :type angle:         :class:`Interaction`
+    :type replace_existing: :class:`bool`
+
+
+  .. method:: AddDihedral(dihedral, [,replace_existing = False])
+
+    :param dihedral:    Dihedral to be added
+    :param replace_existing: Whether potentially already existing dihedral for the
+                             same atoms should be replaced.
+
+    :type dihedral:     :class:`Interaction`
+    :type replace_existing: :class:`bool`
+
+
+  .. method:: AddImproper(improper, [,replace_existing = False])
+
+    :param improper:    Improper to be added
+    :param replace_existing: Whether potentially already existing improper for the
+                             same atoms should be replaced.
+
+    :type improper:     :class:`Interaction`
+    :type replace_existing: :class:`bool`
+
+
+  .. method:: AddExclusion(exclusion, [,replace_existing = False])
+
+    :param exclusion:        Exclusion to be added
+    :param replace_existing: Whether potentially already existing Exclusion for the
+                             same atoms should be replaced.
+
+    :type exclusion:         :class:`Interaction`
+    :type replace_existing: :class:`bool`
+
+
+  .. method:: AddCMap(cmap, [,replace_existing = False])
+
+    :param cmap:        CMap to be added
+    :param replace_existing: Whether potentially already existing cmap for the
+                             same atoms should be replaced.
+
+    :type cmap:         :class:`Interaction`
+    :type replace_existing: :class:`bool`
+
+
+  .. method:: AddConstraint(constraint, [,replace_existing = False])
+
+    :param constraint:  Constraint to be added
+    :param replace_existing: Whether potentially already existing constraint for the
+                             same atoms should be replaced.
+
+    :type constraint:         :class:`Interaction`
+    :type replace_existing: :class:`bool` 
+
+
+  .. method:: GetType(name)
+
+    Gets forcefield type from atom with given name
+
+    :param name:        Name of atom you want the type from
+
+    :type name:         :class:`str`
+
+    :returns: :class:`str`
+
+    :raises:            :class:`RuntimeError` when atom can not be found in 
+                        BuildingBlock    
+
+  .. method:: GetCharge(name)
+
+    Gets charge from atom with given name
+
+    :param name:        Name of atom you want the charge from
+
+    :type name:         :class:`str`
+
+    :returns: :class:`float`
+
+    :raises: :class:`RuntimeError` when atom can not be found in 
+                                   BuildingBlock 
+
+
+  .. method:: GetMass(name)
+
+    Gets mass from atom with given name
+
+    :param name:        Name of atom you want the mass from
+
+    :type name:         :class:`str`
+
+    :returns: :class:`float`
+    
+    :raises: :class:`RuntimeError` when atom can not be found in 
+                                   BuildingBlock 
+
+  .. method:: GetAtoms()
+
+    :returns: :class:`list` of all atom names
+
+  .. method:: GetTypes()
+
+    :returns: :class:`list` of all atom types
+
+  .. method:: GetCharges()
+
+    :returns: :class:`list` of all charges
+
+  .. method:: GetMasses()
+
+    :returns: :class:`list` of all masses
+
+  .. method:: GetBonds()
+
+    :returns: :class:`list` of all bonds
+
+
+  .. method:: GetAngles()
+
+    :returns: :class:`list` of all angles
+
+
+  .. method:: GetDihedrals()
+
+    :returns: :class:`list` of all dihedrals
+
+
+  .. method:: GetImpropers()
+
+    :returns: :class:`list` of all impropers
+
+
+  .. method:: GetCMaps()
+
+    :returns: :class:`list` of all cmaps
+
+
+  .. method:: GetExclusions()
+
+    :returns: :class:`list` of all exlusions
+
+
+  .. method:: GetConstraints()
+
+    :returns: :class:`list` of all constraints
+
+Block Modifiers
+--------------------------------------------------------------------------------
+.. class:: BlockModifier
+  
+  Basis class. Block modifiers are used to change building blocks or residues.
+  See :class:`GromacsBlockModifier` for a specific example.
+
+.. class:: GromacsBlockModifier
+
+  .. method:: ApplyOnBuildingBlock(block)
+
+    Applies all defined rules on the given :class:`BuildingBlock`
+
+    :param block:       BuildingBlock to be modified
+    :type block:        :class:`BuildingBlock`
+
+  .. method:: ApplyOnResidue(residue)
+
+    Applies all defined rules on the given :class:`ResidueHandle`
+
+    :param residue:     Residue to be modified
+    :type residue:      :class:`ResidueHandle`
+
+  .. method:: AddReplaceRule(name, new_name, new_type, new_charge)
+
+    Rule, that basically renames an atom and also resets its type and charge
+    in a :class:`BuildingBlock`. A simple renaming occurs in a :class:`ResidueHandle`.
+
+    :param name:        Name of the atom to be changed
+    :param new_name:    Its new name
+    :param new_type:    Its new type
+    :param new_charge:  Its new charge
+
+    :type name:         :class:`str`
+    :type new_name:     :class:`str`
+    :type new_type:     :class:`str`
+    :type new_charge:   :class:`float`
+
+  .. method:: AddAddRule(number, method, atom_names, anchors, type, charge)
+
+    A rule to add new atoms the Gromacs way, see
+    `Gromacs Manual <http://www.gromacs.org/Documentation/Manual>`_ 
+    for the exact definition of the parameters. A :class:`BuildingBlock`
+    gets modified by adding the new atom definitions and also the
+    corresponding bonds describing the connectivity. In case of 
+    :class:`ResidueHandle` the new Atoms with connectivity get added with 
+    their positions as defined by the Gromacs adding rule. 
+
+    :param number:      Number of atoms to be added
+    :param method:      Gromacs adding rule
+    :param atom_names:  Strings containing the new atom names
+    :param anchors:     Strings containing atom names used as anchor
+    :param type:        The type the atoms will have
+    :param charge:      The charge the atoms will have
+
+    :type number:      :class:`int`
+    :type method:      :class:`int` 
+    :type atom_names:  :class:`list`
+    :type anchors:     :class:`list`
+    :type type:        :class:`str`
+    :type charge:      :class:`float`
+
+  .. method:: AddDeleteAtom(name)
+
+    Defines an atom that has to be removed. In case of the 
+    :class:`BuildingBlock` this removes this particular atom plus all 
+    interactions connected to it, in case of :class:`ResidueHandle`, the
+    atom simply gets deleted.
+
+    :param name:        Atom to be deleted
+
+    :type name:         :class:`str`
+
+  .. method:: AddBond(bond)
+
+    Adds a bond, this only has effect on :class:`BuildingBlock`, not
+    on :class:`ResidueHandle` when the corresponding Apply function gets 
+    called
+
+    :param bond:        Bond to be added
+    :type bond:         :class:`Interaction`
+
+  .. method:: AddAngle(angle)
+
+    Adds an angle, this only has effect on :class:`BuildingBlock`, not
+    on :class:`ResidueHandle` when the corresponding Apply function gets 
+    called
+
+    :param angle:        Angle to be added
+    :type angle:        :class:`Interaction`
+
+  .. method:: AddDihedral(dihedral)
+
+    Adds a dihedral, this only has effect on :class:`BuildingBlock`, not
+    on :class:`ResidueHandle` when the corresponding Apply function gets 
+    called
+
+    :param dihedral:    Dihedral to be added
+    :type dihedral:     :class:`Interaction`
+
+  .. method:: AddImproper(improper)
+
+    Adds an improper, this only has effect on :class:`BuildingBlock`, not
+    on :class:`ResidueHandle` when the corresponding Apply function gets 
+    called
+
+    :param improper:    Improper to be added
+    :type improper:     :class:`Interaction`
+
+  .. method:: AddCMap(cmap)
+
+    Adds a cmap, this only has effect on :class:`BuildingBlock`, not
+    on :class:`ResidueHandle` when the corresponding Apply function gets 
+    called
+
+    :param cmap:        CMap to be added
+    :type cmap:        :class:`Interaction`
+
+
+Hydrogen Constructors
+--------------------------------------------------------------------------------
+
+.. class:: HydrogenConstructor
+
+  Basis class. Hydrogen constructors are used to add hydrogens to residues.
+
+
+.. class:: GromacsHydrogenConstructor
+
+  The :class:`GromacsHydrogenConstructor` is the Gromacs way of adding
+  hydrogens to a structure.
+
+  .. method:: ApplyOnBuildingBlock(block)
+
+    Guess what it does: !!ABSOLUTELY NOTHING!! just there for consistency
+
+    :param block:       Block that won't be changed at all!
+                        Isn't that awesome?
+
+    :type block:        :class:`BuildingBlock`
+
+  .. method:: ApplyOnResidue(residue)
+
+    Constructs hydrogens based on the defined hydrogen addition rules
+
+    :param residue:     Residue to be modified
+
+    :type residue:      :class:`ResidueHandle`
+
+  .. method:: AddHydrogenRule(number, method, hydrogen_names, anchors)
+
+    Adds a hydrogen building rule as defined in 
+    `Gromacs Manual <http://www.gromacs.org/Documentation/Manual>`_ 
+    
+    :param number:      Number of hydrogens to be added
+    :param method:      Gromacs adding rule
+    :param hydrogen_names:  Strings containing the hydrogen names
+    :param anchors:     Strings containing atom names used as anchor
+
+    :type number:       :class:`int`
+    :type method:       :class:`int`
+    :type hydrogen_names:  :class:`list`
+    :type anchors:      :class:`list`
+
+.. class:: HeuristicHydrogenConstructor(block)
+
+  As soon as we leave the well defined world of Gromacs residue definitions,
+  we have to find new ways for constructing hydrogens. The 
+  :class:`HeuristicHydrogenConstructor` takes a :class:`BuildingBlock` at
+  initialization and builds heuristic rules to build hydrogens based on 
+  the connecticity defined in the given block.
+
+  :param block:         :class:`BuildingBlock` from which the connectivity
+                        information for hydrogen construction is extracted
+
+  .. method:: ApplyOnBuildingBlock(block)
+
+    Guess what it does: !!ABSOLUTELY NOTHING!! Just there for consistency
+
+    :param block:       Block that won't be changed at all!
+                        Isn't that awesome?
+
+    :type block:        :class:`BlockModifier`
+
+  .. method:: ApplyOnResidue(residue)
+
+    Constructs hydrogen based on heuristic rules
+
+    :param residue:     Residue to be modified
+
+    :type residue:      :class:`ResidueHandle`
+
diff --git a/modules/mol/mm/doc/forcefield.rst b/modules/mol/mm/doc/forcefield.rst
new file mode 100644
index 0000000000000000000000000000000000000000..9c5754152381c0712e176100ffe0d42a8cbb4f3b
--- /dev/null
+++ b/modules/mol/mm/doc/forcefield.rst
@@ -0,0 +1,677 @@
+Forcefields
+================================================================================
+
+.. currentmodule:: ost.mol
+
+The forcefields are a dump for interactions with their parameters, but also
+for atom specific information or residue definitions in the form of a 
+:class:`BuildingBlock`. Objects for modifying residues can be set in form of 
+:class:`BlockModifier` or :class:`HydrogenConstructor`.
+They're also involved in dealing with the naming mess we're observing in the molecular mechanics
+community and contain definable renaming rules that can be applied on an
+:class:`EntityHandle` for renaming from e.g. PDB standard to the forcefield
+specific standard. The standard forcefields in OpenStructure are loaded from
+the files provided by Gromacs and the "standard" naming is therefore the same.
+This has implications for controlling the protonation states for histidine.
+If you e.g. want to enforce a d-protonated histidine you have to name
+it HISD. Further reading can be found in the 
+`Gromacs Manual <http://www.gromacs.org/Documentation/Manual>`_ 
+
+Loading the standard forcefields provided by OpenStructure
+--------------------------------------------------------------------------------
+
+.. function:: LoadCHARMMForcefield()
+
+   Loads the CHARMM27 forcefield read from Gromacs
+   
+   :returns: The loaded :class:`Forcefield`
+
+
+.. function:: LoadAMBERForcefield()
+
+   Loads the AMBER03 forcefield read from Gromacs
+   
+   :returns: The loaded :class:`Forcefield`
+
+
+Reading forcefields
+--------------------------------------------------------------------------------
+The :class:`FFReader` object is rather experimental. It has nevertheless been 
+thoroughly tested for loading the CHARMM and AMBER forcefields in the
+Gromacs format. The reader is capable of resolving the preprocessor statements
+as they are used in Gromacs.
+
+
+.. class:: FFReader(base_dir)
+
+  :param base_dir:      Base path of the reader.
+                        All loaded files must be defined relative to this base 
+                        path.
+
+  :type base_dir:       :class:`str`
+
+  The :class:`FFReader` builds up a :class:`Forcefield`, that gets updated with
+  every call to the read functions. If the read files contain preprocessor 
+  statements as they are used in Gromacs, they will be applied to all
+  subsequent lines read in. Parsed preprocessor statements are:
+  #include, #define, #ifdef, #ifndef, #else and #endif
+
+  .. method:: ReadGromacsForcefield()
+
+    Searches and reads the forcefield.itp and atomtypes.atp files 
+    in the **base_dir** given at initialization. All atom specific 
+    informations and bonded as well as nonbonded forces are read 
+    this way.
+
+  .. method:: ReadResidueDatabase(basename)
+
+    Searches and reads all files belonging the the residue database
+    defined by **basename**. With *basename=aminoacids* this function
+    searches and reads all files in the **base_dir** matching *aminoacids.x*
+    where *x* is *.rtp .arn .hdb .n.tdb .c.tdb .vsd .r2b*.
+    Only the rtp file is mandatory, all others are neglected if not present.
+
+    :param basename:    Basename of residue database to be loaded
+
+    :type basename:     :class:`str`
+
+  .. method:: ReadITP(basename)
+
+    Searches and reads the itp file in the **base_dir**. *basename=amazing_ion*
+    would therefore load the file *amazing_ion.itp*
+
+    :param basename:    Basename of itp file to be loaded
+
+    :type basename:     :class:`str`
+
+  .. method:: SetForcefield(forcefield)
+
+    Resets reader internal forcefield. Everything read so far is lost,
+    except the already read preprocessor statements.
+
+    :param forcefield:  Forcefield to be set
+
+    :type forcefield:   :class:`Forcefield`
+
+  .. method:: GetForcefield()
+
+    Get the forcefield with everything read so far.
+
+    :returns: The reader internal :class:`Forcefield` 
+
+
+
+
+  .. code-block:: python
+    
+    path = "path_to_gromacs/share/top/charmm27.ff"
+    reader = FFReader(path)
+
+    #read in the data given in forcefield.itp and atomtypes.atp
+    reader.ReadGromacsForcefield()
+
+    #we also want to read several residue databases
+    reader.Read("aminoacids")
+    reader.Read("rna")
+    reader.Read("dna")
+
+    #ions and water are also nice to have, they're stored in itp files
+    reader.ReadITP("tip3p")
+    reader.ReadITP("ions")
+
+    #let's finally get the reader internal forcefield out
+    ff = reader.GetForcefield()
+
+    #there is also an amazing ion definition in some other directory
+    new_reader = FFReader("path/to/directory/with/itp/files")
+
+    #we want to modify the previously read forcefield
+    new_reader.SetForcefield(ff)
+
+    #and read the amazing ion definition from an itp file
+    #note, that any previously defined preprocessor statements
+    #from the previous reader are lost 
+    new_reader.ReadITP("amazing_ion")
+
+    #the new forcefield finally contains everything we need, lets
+    #extract it and save it down
+    ff = new_reader.GetForcefield()
+    ff.Save("charmm_forcefield.dat")
+
+The Forcefield Class
+--------------------------------------------------------------------------------
+
+.. class:: Forcefield
+
+
+  .. method:: Save(filename)
+
+    Dumps forcefield into a binary file on disk
+
+    :param filename:    Filename of the saved forcefield
+
+    :type filename:     :class:`str` 
+
+
+
+  .. method:: Load(filename)
+
+    reads in binary forcefield file
+
+    :param filename:    Filename of the forcefield to be loaded
+
+    :type filename:     :class:`str`
+
+    :returns:           loaded :class:`Forcefield`
+
+    :raises:            :class:`RuntimeError` when **filename** can't be found
+
+
+
+  .. method:: AddBond(bond)
+
+    :param bond:        Bond to be added
+
+    :type bond:         :class:`Interaction`
+
+    :raises:            :class:`RuntimeError` when given interaction has
+                                              no bond specific FuncType
+
+
+
+  .. method:: AddAngle(angle)
+
+    :param angle:       Angle to be added
+
+    :type angle:        :class:`Interaction`
+
+    :raises:            :class:`RuntimeError` when given interaction has
+                                              no angle specific FuncType
+
+
+  .. method:: AddDihedral(dihedral)
+
+    :param dihedral:    Dihedral to be added
+
+    :type dihedral:     :class:`Interaction`     
+
+    :raises:            :class:`RuntimeError` when given interaction has
+                                              no dihedral specific FuncType
+
+
+  .. method:: AddImproper(improper)
+
+    :param improper:    Improper to be added
+
+    :type improper:     :class:`Interaction`     
+
+    :raises:            :class:`RuntimeError` when given interaction has
+                                              no improper specific FuncType
+
+
+  .. method:: AddCMap(cmap)
+
+    :param cmap:        CMap to be added
+
+    :type cmap:         :class:`Interaction`     
+
+    :raises:            :class:`RuntimeError` when given interaction has
+                                              no cmap specific FuncType
+
+
+  .. method:: AddImplicitGenborn(gb)
+
+    :param gb:          GB to be added
+
+    :type gb:           :class:`Interaction`     
+
+    :raises:            :class:`RuntimeError` when given interaction has
+                                              no gb specific FuncType
+
+
+  .. method:: AddLJ(lj)
+
+    :param lj:          LJ to be added
+
+    :type lj:           :class:`Interaction`     
+
+    :raises:            :class:`RuntimeError` when given interaction has
+                                              no lj specific FuncType
+
+
+  .. method:: AddLJPair(lj_pair)
+
+    :param lj_pair:     LJPair to be added
+
+    :type lj_pair:      :class:`Interaction`     
+
+    :raises:            :class:`RuntimeError` when given interaction has
+                                              no lj_pair specific FuncType
+
+
+  .. method:: AddConstraint(constraint)
+
+    :param constraint:  Constraint to be added
+
+    :type constraint:   :class:`Interaction`     
+
+    :raises:            :class:`RuntimeError` when given interaction has
+                                              no constraint specific FuncType
+
+
+  .. method:: AddMass(type, mass)
+
+    :param type:        Type of atom
+    :param mass:        Its mass
+
+    :type type:         :class:`str`
+    :type mass:         :class:`float`
+
+  .. method:: SetFudgeLJ(factor)
+
+    :param factor:      Factor with which the 1,4 Lennard Jones term
+                        should be dampened
+
+    :type factor:       :class:`float`
+
+
+  .. method:: SetFudgeQQ(factor)
+
+    :param factor:      Factor with which the 1,4 electrostatic term
+                        should be dampened
+
+    :type factor:       :class:`float`
+
+
+  .. method:: SetGenPairs(gen_pairs)
+
+    :param gen_pairs:   If set to false, all 1,4 interactions must be set
+                        with AddLJPair. The Lorentz-Berthelot rule gets
+                        used otherwise. 
+
+    :type gen_pairs:    :class:`bool`
+
+
+  .. method:: AddResidueRenamingRule(name, ff_main_name, ff_n_ter_name, ff_c_ter_name, ff_two_ter_name)
+
+    :param name:        Original name of the residue 
+                        (e.g. PDB/Gromacs standard)
+    :param ff_main_name: Forcefield specific residue name
+    :param ff_n_ter_name: Forcefield specific name if the residue
+                          is N-Terminal
+    :param ff_c_ter_name: Forcefield specific name if the residue
+                                       is C-Terminal
+    :param ff_two_ter_name: Forcefield specific name if the residue
+                            is N- and C-Terminal
+
+    :type name:            :class:`str`
+    :type ff_main_name:    :class:`str`
+    :type ff_n_ter_name:   :class:`str`
+    :type ff_c_ter_name:   :class:`str`
+    :type ff_two_ter_name: :class:`str`
+
+
+
+  .. method:: AddAtomRenamingRule(res_name, old_atom_name, new_atom_name)
+
+    :param res_name:    Forcefield specific name of the residue the
+                                     atom belongs to
+
+    :param old_atom_name: Atom name in PDB/Gromacs standard
+
+    :param new_atom_name: FF specific atom name
+
+    :type res_name:      :class:`str`
+    :type old_atom_name: :class:`str`
+    :type new_atom_name: :class:`str`
+
+
+  .. method:: AddBuildingBlock(name, block)
+
+    :param name:        Name of residue this :class:`BuildingBlock` 
+                        is supposed to be related to
+
+    :param block:       BuildingBlock to be added
+
+    :type block:        :class:`BuildingBlock`
+    :type name:         :class:`str`
+
+
+  .. method:: AddHydrogenConstructor(name, h_constructor)
+
+    :param name:        Name of residue this 
+                        :class:`HydrogenConstructor` 
+                        is supposed to be related to
+
+    :param h_constructor: HydrogenConstructor to be added
+
+    :type name:          :class:`str`
+    :type h_constructor: :class:`HydrogenConstructor`
+
+
+  .. method:: AddBlockModifier(name, modifier)
+
+    :param name:        Name of residue this 
+                        :class:`BlockModifier` 
+                        is supposed to be related to
+
+    :param modifier:    BlockModifier to be added
+
+    :type name:         :class:`str`
+    :type modifier:     :class:`BlockModifier`
+
+
+  .. method:: SetStandardCTer(res_name, ter_name)
+
+    Setting a standard CTer influences the behaviour of the GetCTerModifier 
+    function. If no specific block modifier is defined there, this is the
+    one that gets returned.
+
+    :param res_name:    Forcefield specific residue name this block 
+                        modifier is supposed to be related to
+
+    :param ter_name:    Name of the default c-terminal block 
+                        modifier for this residue
+
+    :type res_name:     :class:`str`
+    :type ter_name:     :class:`str`
+
+
+  .. method:: SetStandardNTer(res_name, ter_name)
+
+    Setting a standard NTer incluences the behaviour of the GetNTerModifier 
+    function. If no specific block modifier is defined there, this is the
+    one that gets returned.
+
+    :param res_name:    Forcefield specific residue name this block 
+                        modifier is supposed to be related to
+
+    :param ter_name:    Name of the default n-terminal block 
+                        modifier for this residue
+
+    :type res_name:     :class:`str`
+    :type ter_name:     :class:`str`
+    
+
+
+  .. method:: AssignFFSpecificNames(ent,[,reverse = False])
+
+    This function does the forcefield specific renaming magic. It takes
+    the given :class:`EntityHandle` and applies the rules set in
+    AddResidueRenamingRule and AddAtomRenamingRule.
+
+    :param ent:         Entity to be renamed
+
+    :param reverse:     If False, the function does the renaming
+                        from PDB/Gromacs naming to the forcefield
+                        specific naming.
+                        If True, the opposite happens.
+
+    :type ent:          :class:`EntityHandle`
+    :type reverse:      :class:`bool`
+
+
+  .. method:: GetBond(type1, type2)
+
+    :param type1:       Type of interacting particle 1
+    :param type2:       Type of interacting particle 2
+
+    :type type1:        :class:`str`
+    :type type2:        :class:`str`
+
+    :returns: an :class:`Interaction` with a bond FuncType
+
+    :raises:            :class:`RuntimeError` when no :class:`Interaction`
+                                              matching given types can be found
+
+
+  .. method:: GetAngle(type1, type2, type3)
+
+    :param type1:       Type of interacting particle 1
+    :param type2:       Type of interacting particle 2
+    :param type3:       Type of interacting particle 3
+
+    :type type1:        :class:`str`
+    :type type2:        :class:`str`
+    :type type3:        :class:`str`
+
+    :returns: an :class:`Interaction` with a angle FuncType
+
+    :raises:            :class:`RuntimeError` when no :class:`Interaction`
+                                              matching given types can be found
+
+
+  .. method:: GetDihedrals(type1, type2, type3, type4)
+
+    Several dihedral definitions can be merged to one dihedral function.
+    This function therefore returns a list. 
+    In a first step all dihedrals matching the given types are gathered
+    and returned.
+    If no dihedrals can be found, the search continues by including
+    wildcard characters in the atom types (X). All found dihedrals
+    matching with all possible combinations of wildcards are then gathered
+    and returned.
+
+    :param type1:       Type of interacting particle 1
+    :param type2:       Type of interacting particle 2
+    :param type3:       Type of interacting particle 3
+    :param type4:       Type of interacting particle 4
+
+    :type type1:        :class:`str`
+    :type type2:        :class:`str`
+    :type type3:        :class:`str`
+    :type type4:        :class:`str`
+
+    :returns: a :class:`list` of :class:`Interaction` objects with dihedral 
+              FuncType matching given types
+
+    :raises:            :class:`RuntimeError` when no :class:`Interaction`
+                                              matching given types can be found
+
+
+
+  .. method:: GetImpropers(type1, type2, type3, type4)
+
+    The same search strategy as in GetDihedrals is used to extract 
+    the impropers.
+
+    :param type1:       Type of interacting particle 1
+    :param type2:       Type of interacting particle 2
+    :param type3:       Type of interacting particle 3
+    :param type4:       Type of interacting particle 4
+
+    :type type1:        :class:`str`
+    :type type2:        :class:`str`
+    :type type3:        :class:`str`
+    :type type4:        :class:`str`
+
+    :returns: a :class:`list` of :class:`Interaction` objects with improper
+              FuncType matching given types
+
+    :raises:            :class:`RuntimeError` when no :class:`Interaction`
+                                              matching given types can be found
+
+
+  .. method:: GetCMap(type1, type2, type3, type4, type5)
+
+    :param type1:       Type of interacting particle 1
+    :param type2:       Type of interacting particle 2
+    :param type3:       Type of interacting particle 3
+    :param type4:       Type of interacting particle 4
+    :param type5:       Type of interacting particle 5
+
+    :type type1:        :class:`str`
+    :type type2:        :class:`str`
+    :type type3:        :class:`str`
+    :type type4:        :class:`str`
+    :type type5:        :class:`str`
+
+    :returns: an :class:`Interaction` with a cmap FuncType
+
+    :raises:            :class:`RuntimeError` when no :class:`Interaction`
+                                              matching given types can be found
+
+
+  .. method:: GetImplicitGenborn(type)
+
+    :param type:        Type of particle
+
+    :type type:         :class:`str`
+
+    :returns: an :class:`Interaction` with a gb FuncType
+
+    :raises:            :class:`RuntimeError` when no :class:`Interaction`
+                                              matching given type can be found
+
+
+  .. method:: GetLJ(type)
+
+    :param type:        Type of particle
+
+    :type type:         :class:`str`
+
+    :returns: an :class:`Interaction` with a lj FuncType
+
+    :raises:            :class:`RuntimeError` when no :class:`Interaction`
+                                              matching given type can be found
+
+
+  .. method:: GetLJ(type1, type2,[,pair=False])
+
+    :param type1:        Type of interacting particle 1
+    :param type2:        Type of interacting particle 2
+    :param pair:         If set to true, the interaction is
+                         assumed to be a 1,4-interaction and
+                         the set lj_pairs are first searched
+                         for matches. In case of no success,
+                         the function uses the Lorentz-Berthelot
+                         rule to combine the sigma and epsilon 
+                         parameters.
+                         If set to false, the Lorentz-Berthelot
+                         rule is applied directly.
+
+    :type type1:        :class:`str`
+    :type type2:        :class:`str`
+    :type pair:         :class:`bool`
+
+
+    :raises:            :class:`RuntimeError` when no :class:`Interaction`
+                                              matching given types can be found
+                                              or when pair is true and no 
+                                              appropriate lj_pair is set 
+                                              despite gen_pair flag being false.
+
+
+  .. method:: GetConstraint(type1, type2)
+
+    :param type1:       Type of interacting particle 1
+    :param type2:       Type of interacting particle 2
+
+    :type type1:        :class:`str`
+    :type type2:        :class:`str`
+
+    :returns: an :class:`Interaction` with a constraint FuncType
+
+    :raises:            :class:`RuntimeError` when no :class:`Interaction`
+                                              matching given types can be found
+
+
+  .. method:: GetMass(type)
+
+    :param type:        Type of particle
+
+    :type type:         :class:`str`
+
+    :returns:           :class:`float` - the mass
+
+    :raises:            :class:`RuntimeError` if no mass has been set for this 
+                        atom type
+
+
+  .. method:: GetFudgeLJ()
+
+    :returns:  :class:`float` - Factor with which the 1,4 Lennard Jones 
+                term should be dampened
+
+  .. method:: GetFudgeQQ()
+
+    :returns:  :class:`float` - Factor with which the 1,4 
+                electrostatic term should be dampened
+
+
+  .. method:: GetAtomType(res_name, atom_name)
+
+    :param res_name:    Forcefield specific residue name
+
+    :param atom_name:   Forcefield specific atom name belonging
+                        to that residue
+
+    :type res_name:     :class:`str`
+    :type atom_name:    :class:`str`
+
+    :returns:           :class:`str` - atom type
+
+    :raises:            :class:`RuntimeError` if forcefield has no such
+                        :class:`BuildingBlock` or when atom is not present 
+                        in that :class:`BuildingBlock`   
+
+
+  .. method:: GetHydrogenConstructor(res_name)
+
+    :param res_name:    Name of residue
+    :type res_name:     :class:`str`
+
+    :returns: :class:`HydrogenConstructor` for this name, invalid if it can't
+              be found
+
+
+  .. method:: GetBuildingBlock(res_name)
+
+    :param res_name:    Name of residue
+    :type res_name:     :class:`str`
+
+    :returns:  :class:`BuildingBlock` for this name, invalid if it can't be 
+               found
+
+
+  .. method:: GetBlockModifier(res_name)
+
+    :param res_name:    Name of residue
+    :type res_name:     :class:`str`
+
+    :returns: :class:`BlockModifier` for this name, invalid if it can't
+              be found
+
+
+  .. method:: GetNTerModifier(res_name,[,ter_name=""])
+
+    :param res_name:    Name of residue
+
+    :param ter_name:    If not set, the ter_name
+                        defined by SetStandardNTer gets used
+
+    :type res_name:     :class:`str`
+    :type ter_name:     :class:`str`
+
+
+    :returns: :class:`BlockModifier` for this name, invalid if it can't
+              be found
+
+
+  .. method:: GetCTerModifier(name,[,ter_name=""])
+
+    :param res_name:    Name of residue
+
+    :param ter_name:    If not set, the ter_name
+                        defined by SetStandardCTer gets used
+
+    :type res_name:     :class:`str`
+    :type ter_name:     :class:`str`
+
+    :returns: :class:`BlockModifier` for this name, invalid if it can't
+              be found
+
+
+
+
+    
diff --git a/modules/mol/mm/doc/integrators.rst b/modules/mol/mm/doc/integrators.rst
new file mode 100644
index 0000000000000000000000000000000000000000..ed94d86955d0046806e872480146bf05a38393d3
--- /dev/null
+++ b/modules/mol/mm/doc/integrators.rst
@@ -0,0 +1,179 @@
+Integrators
+================================================================================
+
+.. currentmodule:: ost.mol
+
+.. class:: Integrator
+
+  The :class:`Integrator` are a wrapper around the integrators provided by OpenMM and
+  have to be attached to the :class:`Settings` when setting up a simulation.
+  They define the algorithm used to integrate the equations of motion of the system.
+
+
+
+Verlet Dynamics
+--------------------------------------------------------------------------------
+
+.. class:: VerletIntegrator(step_size)
+
+  Implementation of Verlet dynamics
+
+  :param step_size:     Defining timestep in ps
+  :type step_size:      :class:`float`
+
+
+.. class:: VariableVerletIntegrator(error_tol)
+
+  Implementation of Verlet dynamics with variable time steps
+
+  :param error_tol:     Error tolerance
+  :type error_tol:      :class:`float`
+
+  .. method:: GetErrorTolerance()
+
+    :returns:           :class:`float`
+
+  .. method:: SetErrorTolerance(tol)
+
+    :param tol:         Error tolerance
+    :type tol:          :class:`float`
+
+
+Langevin Dynamics
+--------------------------------------------------------------------------------
+
+.. class:: LangevinIntegrator(temperature, friction_coeff, step_size)
+
+  Implementation of the Langevin dynamics
+
+  :param temperature:   Temperature of heat bath in K
+  :param friction_coeff: Friction coefficient coupling the
+                         system to the heat bath in 1/ps
+  :param step_size:     Defining timestep in ps
+
+  :type temperature:    :class:`float`
+  :type friction_coeff: :class:`float`
+  :type step_size:      :class:`float`
+
+  .. method:: GetTemperature()
+
+    :returns:         :class:`float` - the temperature in K
+
+  .. method:: SetTemperature(temperature)
+
+    :param temperature: Temperature in K
+    :type temperature:  :class:`float` 
+
+  .. method:: GetFriction()
+
+    :returns:           :class:`float` - the friction in 1/ps
+
+  .. method:: SetFriction(friction)
+
+    :param friction:    Friction in 1/ps
+    :type friction:     :class:`float`
+
+  .. method:: GetRandomNumberSeed()
+
+    :returns:          :class:`int`
+
+  .. method:: SetRandomNumberSeed(seed)
+
+    :param seed:        Random number seed
+    :type seed:         :class:`int`
+
+
+
+
+.. class:: VariableLangevinIntegrator(temperature, friction_coeff, error_tol)
+
+  Implementation of Langevin dynamics with variable time steps
+
+  :param temperature:   Temperature of heat bath in K
+  :param friction_coeff: Friction coefficient coupling the
+                         system to the heat bath in 1/ps
+  :param error_tol:     Error tolerance
+
+  :type temperature:    :class:`float`
+  :type friction_coeff: :class:`float`
+  :type error_tolerance: :class:`float`
+
+  .. method:: GetTemperature()
+
+    :returns:         :class:`float` - the temperature in K
+
+  .. method:: SetTemperature(temperature)
+
+    :param temperature: Temperature in K
+    :type temperature:  :class:`float`
+
+  .. method:: GetFriction()
+
+    :returns:           :class:`float` - the friction in 1/ps
+
+  .. method:: SetFriction(friction)
+
+    :param friction:    Friction in 1/ps
+    :type friction:     :class:`float`
+
+  .. method:: GetRandomNumberSeed()
+
+    :returns:          :class:`int`
+
+  .. method:: SetRandomNumberSeed(seed)
+
+    :param seed:        Random number seed
+    :type seed:         :class:`int`
+
+  .. method:: GetErrorTolerance()
+
+    :returns:           :class:`float`
+
+  .. method:: SetErrorTolerance(tol)
+
+    :param tol:         Error tolerance
+    :type tol:          :class:`float`
+
+
+Brownian Dynamics
+--------------------------------------------------------------------------------
+
+.. class:: BrownianIntegrator(temperature, friction_coeff, step_size)
+
+  Implementation of Brownian dynamics
+
+  :param temperature:   Temperature of heat bath in K
+  :param friction_coeff: Friction coefficient coupling the
+                         system to the heat bath in 1/ps
+  :param step_size:     Defining timestep in ps.
+
+  :type temperature:    :class:`float`
+  :type friction_coeff:    :class:`float`
+  :type step_size:    :class:`float`
+
+  .. method:: GetTemperature()
+
+    :returns:           :class:`float` - the temperature in K
+
+  .. method:: SetTemperature(temperature)
+
+    :param temperature: Temperature in K
+    :type temperature:  :class:`float`
+
+  .. method:: GetFriction()
+
+    :returns:           :class:`float` - the friction in 1/ps
+
+  .. method:: SetFriction(friction)
+
+    :param friction:    Friction in 1/ps
+    :type friction:     :class:`float`
+
+  .. method:: GetRandomNumberSeed()
+
+    :returns:          :class:`int`
+
+  .. method:: SetRandomNumberSeed(seed)
+
+    :param seed:        Random number seed
+    :type seed:         :class:`int`
diff --git a/modules/mol/mm/doc/interaction.rst b/modules/mol/mm/doc/interaction.rst
new file mode 100644
index 0000000000000000000000000000000000000000..95d193e1a9e64b9e312590033bc3214d1b198fc9
--- /dev/null
+++ b/modules/mol/mm/doc/interaction.rst
@@ -0,0 +1,267 @@
+Interactions
+================================================================================
+
+.. currentmodule:: ost.mol
+
+The :class:`Interaction` object is intended to build a basic container that can 
+be used
+in various scenarios. At the initialization a FuncType has to be defined.
+Whenever names, types or parameters are set, the number of parameters
+gets checked according to the FuncType. A name or type can also consist of
+a wildcard expressed as X.
+
+
+The FuncType enum
+--------------------------------------------------------------------------------
+
+Every Interaction is linked to one particular *FuncType* describing the types 
+of interactions supported by OpenStructure. There are 15 possible values with
+Invalid defining an unknown interaction:
+
+  HarmonicBond, HarmonicAngle, UreyBradleyAngle, PeriodicDihedral, 
+  PeriodicImproper, HarmonicImproper, CMap, LJ, LJPair, GBSA, 
+  DistanceConstraint, Exclusion, HarmonicPositionRestraint,
+  HarmonicDistanceRestraint, Invalid
+
+The implementation guarantees that the parameter related to atom types,
+names, parameters are checked regarding their dimension (e.g. 3 atoms and 2 
+parameters for a harmonic angle) 
+
+
+Interaction Parametrization
+--------------------------------------------------------------------------------
+
+* HarmonicBond, Interacting Particles: 2, Num Parameters: 2
+
+  #. :class:`float` bond length in nm
+  #. :class:`float` force constant in kJ/mol/nm^2
+
+* HarmonicAngle, Interacting Particles: 3, Num Parameters: 2 
+
+  #. :class:`float` angle in radians
+  #. :class:`float` force constant in kJ/mol/radian^2 
+
+* UreyBradleyAngle, Interacting Particles: 3, Num Parameters: 4
+
+  #. :class:`float` angle in radians
+  #. :class:`float` angle force constant in kJ/mol/radian^2
+  #. :class:`float` bond length in nm
+  #. :class:`float` bond force constant in kJ/mol/nm^2 
+
+* PeriodicDihedral, Interacting Particles: 4, Num Parameters: 3
+
+  #. :class:`int` multiplicity
+  #. :class:`float` phase in radians
+  #. :class:`float` force constant in kJ/mol/radian^2
+
+* PeriodicImproper, Interacting Particles: 4, Num Parameters: 3
+
+  #. :class:`int` multiplicity
+  #. :class:`float` phase in radians
+  #. :class:`float` force constant in kJ/mol/radian^2
+
+* HarmonicImproper, Interacting Particles: 4, Num Parameters: 2
+
+  #. :class:`float` angle in radians
+  #. :class:`float` force constant in kJ/mol/radian^2
+
+* CMap, Interacting Particles: 5, Num Parameters: n*n+1 
+
+  #. :class:`list` of :class:`float` of size n*n+1, first value describes the dimension n of the cmap, the other n*n values describe the correction map in kJ/mol in the ordering (phi1,psi1),(phi1,psi2)... and torsion angles in [-pi,pi] (will be converted to the format OpenMM prefers)
+
+* LJ, Interacting Particles: 1, Num Parameters: 2
+
+  #. :class:`float` sigma in nm
+  #. :class:`float` epsilon in kJ/mol
+
+* LJPair, Interacting Particles: 2, Num Parameters: 2
+
+  #. :class:`float` sigma in nm
+  #. :class:`float` epsilon in kJ/mol
+
+* GBSA, Interacting Particles: 1, Num Parameters: 2
+
+  #. :class:`float` GBSA radius in nm
+  #. :class:`float` OBC scaling factor
+
+* DistanceConstraint, Interacting Particles: 2, Num Parameters: 1
+
+  #. :class:`float` constraint distance
+
+* Exclusion, Interacting Particles: 2, Num Parameters: 0
+
+* HarmonicPositionRestraint, Interacting Particles: 1, Num Parameters: 7
+
+  #. :class:`float` ref pos x
+  #. :class:`float` ref pos y
+  #. :class:`float` ref pos z
+  #. :class:`float` force constant
+  #. :class:`float` x_scale
+  #. :class:`float` y_scale
+  #. :class:`float` z_scale
+
+
+* HarmonicDistanceRestraint, Interacting Particles: 2, Num Parameters: 2
+
+  #. :class:`float` restraint length
+  #. :class:`float` force constant
+
+
+
+The Interaction Class
+--------------------------------------------------------------------------------
+
+.. class:: Interaction (func_type)
+
+  :param func_type:     :class:`FuncType` defining a particular interaction
+
+
+  .. method:: SetTypes(types)
+
+    Sets the forcefield specific atom types.
+
+    :param types:       Strings describing the force field specific atom types.
+    :type types:        :class:`list`
+
+    :raises:            :class:`RuntimeError` when size of input is not consistent with
+                        the interactions functype
+
+
+  .. method:: SetNames(names)
+
+    Sets atom names
+
+    :param names:       Strings describing the atom names
+    :type names:        :class:`list`
+
+    :raises:            :class:`RuntimeError` when size of input is not 
+                        consistent with the interactions functype
+
+
+  .. method:: SetParam(param)
+
+    Sets interaction specific parameters.
+
+    :param param:       Float values .
+    :type param:        :class:`list`
+
+    :raises: :class:`RuntimeError` when size of input is not consistent with
+             the interactions functype
+
+
+  .. method:: GetTypes()
+
+    Get previously set types
+
+    :returns:      :class:`list`
+
+
+
+  .. method:: GetNames()
+
+    Get previously set names
+
+    :returns:      :class:`list`
+
+
+  .. method:: GetParam()
+
+    Get previously set parameters
+
+    :returns:      :class:`list`
+
+
+  .. method:: GetAtoms(residue)
+
+    Returns an :class:`AtomHandleList` containing the atoms in residue matching
+    the atom names of the interaction
+
+    :param residue:     Residue from which atoms are extracted
+    :type residue:      :class:`ResidueHandle`
+
+    :returns:           :class:`AtomHandleList`
+
+    :raises:            :class:`RuntimeError` when an atom cannot be found in 
+                        **residue**
+
+  .. method:: GetFuncType()
+
+    Returns the functype enum of the interaction
+
+    :returns:      :class:`FuncType`  
+
+
+  .. method:: ReplaceAtom(name, new_name, new_type)
+
+    Searches for given atom name. If found, this particular atom name
+    gets changed to new_name. If the atom types are set as well, the
+    associated atom type gets also reset to new_type.
+
+    :param name:        Name of atom to be replaces
+    :param new_name:    Its new name
+    :param new_type:    Its new type
+
+    :type name:         :class:`str`
+    :type new_name:     :class:`str`
+    :type new_type:     :class:`str`
+
+    :returns:           :class:`bool` whether replacement was successful or not
+
+
+  .. method:: MatchTypes(atom_types)
+
+    Checks, whether the given types match the internal types. The match
+    can be "as is" or in reversed order
+
+    :param atom_types:  Atom types to be matched
+    :type atom_types:   :class:`list`
+    :returns:           :class:`bool`
+
+
+  .. method:: MatchNames(atom_names)
+
+    Checks, whether the given names match the internal names. The match
+    can be "as is" or in reversed order
+
+    :param atom_names:  Atom names to be matched
+    :type atom_names:   :class:`list`
+    :returns:           :class:`bool`
+
+
+  .. method:: HasName(name)
+
+    Checks, whether the given name is present in the internal names
+
+    :param name:        Name to be checked
+    :type name:         :class:`str`
+    :returns:           :class:`bool`
+
+
+  .. method:: HasType(type)
+
+    Checks, whether the given type is present in the internal types
+
+    :param type:        Type to be checked
+    :type type:         :class:`str`
+    :returns:           :class:`bool`
+
+
+  .. method:: IsParametrized()
+
+    Checks, whether the parameters have been set
+
+    :returns:           :class:`bool`
+
+
+  .. method:: HasTypeWildcard()
+
+    Checks, whether one of the types is a wildcard ('X')
+
+    :returns:           :class:`bool`
+
+
+  .. method:: HasNameWildcard()
+
+    Checks, whether one of the names is a wildcard ('X')
+
+    :returns:           :class:`bool`
diff --git a/modules/mol/mm/doc/molmm.rst b/modules/mol/mm/doc/molmm.rst
new file mode 100644
index 0000000000000000000000000000000000000000..f243b7dfb4869e7123ccb0757479745fc3a85b8b
--- /dev/null
+++ b/modules/mol/mm/doc/molmm.rst
@@ -0,0 +1,93 @@
+The mm Module
+================================================================================
+
+.. currentmodule:: ost.mol
+
+Introduction
+--------------------------------------------------------------------------------
+
+The mol.mm module provides a wrapper around the 
+`OpenMM <http://openmm.org>`_ molecular mechanics library to provide
+basic molecular dynamics (MD) capabilities fully embedded into the OpenStructure universe.
+The heart of every simulation is the :class:`Topology` describing how the 
+particles of an :class:`EntityHandle` interact. The :class:`Simulation` class connects the :class:`EntityHandle` with a :class:`Topology` and allows you to perform energy minimizations 
+or move the simulation through time using an :class:`Integrator`. 
+A :class:`Topology` can either be built from scratch by adding
+one interaction after the other or automatically using the
+:class:`TopologyCreator`. The process of :class:`Topology` building
+and setting up a :class:`Simulation` gets controlled with the :class:`Settings`.
+
+Latest Publication of `OpenMM <http://openmm.org>`_:
+P. Eastman, M. S. Friedrichs, J. D. Chodera, R. J. Radmer, C. M. Bruns, J. P. Ku, K. A. Beauchamp, T. J. Lane, L.-P. Wang, D. Shukla, T. Tye, M. Houston, T. Stich, C. Klein, M. R. Shirts, and V. S. Pande. "OpenMM 4: A Reusable, Extensible, Hardware Independent Library for High Performance Molecular Simulation." J. Chem. Theor. Comput. 9(1):461-469. (2013)
+
+
+
+
+Installation
+--------------------------------------------------------------------------------
+
+OpenStructure does not come by default with 
+`OpenMM <http://openmm.org>`_ support.
+You have to install it as an additional dependency and
+recompile OpenStructure to dive into the amazing world of GPU accelerated
+molecular mechanics. Once installed, you have to pass cmake additional
+flags to allow compilation with OpenMM support. e.g.:
+
+  .. code-block:: bash
+    
+    cmake . -DENABLE_MM=1 -DOPEN_MM_INCLUDE_DIR=/path/to/openmm/include
+            -DOPEN_MM_LIBRARY=/path/to/openmm/lib/libOpenMM.so
+            -DOPEN_MM_PLUGIN_DIR=/path/to/openmm/lib/plugins
+
+
+Setting up a simple simulation
+--------------------------------------------------------------------------------
+
+
+  .. code-block:: python
+    
+    from ost.mol import mm
+
+    prot=io.LoadPDB('1crn',remote=True)
+
+    #set up the simulation
+    settings = mm.Settings()
+    settings.integrator = mm.LangevinIntegrator(310,1,0.002)
+    settings.forcefield = mm.LoadCHARMMForcefield()
+    sim = mm.Simulation(prot,settings)
+
+    #minimize it
+    sim.ApplySD(tolerance = 1.0, max_iterations = 200)
+
+    #create a trajectory observer and register it to the simulation
+    #every 10 steps, the actual positions will be written down to disk
+    observer = mm.TrajWriter(10,"example_traj.pdb","example_traj.dcd")
+    sim.Register(observer)
+
+    #run the simulation
+    sim.Steps(10000)
+
+    #Trajectory Observer needs to finalize, otherwise you might get a corrupt dcd file
+    observer.Finalize()
+
+
+Doing more sophisticated stuff
+--------------------------------------------------------------------------------
+
+You want to create your own :class:`BuildingBlock` to parameterize custom 
+residues? Or even generate your own custom :class:`Forcefield`? 
+Check out the mm dir in the examples/code_fragments directory. 
+
+Documentation
+--------------------------------------------------------------------------------
+
+.. toctree::
+  interaction
+  buildingblock
+  forcefield
+  settings
+  topology
+  observers
+  integrators
+  simulation
+
diff --git a/modules/mol/mm/doc/observers.rst b/modules/mol/mm/doc/observers.rst
new file mode 100644
index 0000000000000000000000000000000000000000..1aecc69fed3ff22253aef5f7a8ddfa8e31df1bbd
--- /dev/null
+++ b/modules/mol/mm/doc/observers.rst
@@ -0,0 +1,55 @@
+Observers
+================================================================================
+
+.. currentmodule:: ost.mol
+
+Observers can be registered to a :class:`Simulation` and get called at a 
+defined interval.
+
+
+Trajectory observers
+--------------------------------------------------------------------------------
+
+.. class:: TrajObserver(rhythm) 
+
+  Stores and updates the md trajectory produced by a :class:`Simulation`
+  in memory
+
+  :param rhythm:        Frequency, at which the observer gets
+                        notified by the simulation
+  :type rhythm:         :class:`int`
+
+  .. method:: GetTraj()
+
+    Get current Trajectory
+
+    :returns:           :class:`ost.mol.CoordGroupHandle`
+
+  .. method:: Rhythm()
+
+    :returns:           :class:`int` calling rythm
+
+
+.. class:: TrajWriter(rythm, pdb_filename, dcd_filename)
+
+  Writes the MD trajectory produced by a :class:`Simulation` directly to
+  disk in dcd format 
+
+  :param rythm:         Frequency, at which the observer gets
+                        notified by the simulation
+  :param pdb_filename:  Name of produced pdb file
+  :param dcd_filename:  Name of produced dcd file
+
+  :type rythm:          :class:`int`
+  :type pdb_filename:   :class:`str`
+  :type dcd_filename:   :class:`str`
+
+  .. method:: Rhythm()
+
+    :returns:           :class:`int` calling rhythm
+
+  .. method:: Finalize()
+
+    Obligatory function to be called after the last simulation step to
+    write missing information into the dcd header
+
diff --git a/modules/mol/mm/doc/settings.rst b/modules/mol/mm/doc/settings.rst
new file mode 100644
index 0000000000000000000000000000000000000000..648be8bcc11b04995057433bf2644eedc679a94d
--- /dev/null
+++ b/modules/mol/mm/doc/settings.rst
@@ -0,0 +1,277 @@
+The Molecular Mechanics Settings
+================================================================================
+
+.. currentmodule:: ost.mol
+
+The :class:`Settings` define all parameters to control the buildup of a 
+:class:`Topology` in the :class:`TopologyCreator` and the final setup
+of the :class:`Simulation` object.
+
+.. class:: Settings
+
+  .. attribute::        add_bonds  
+
+    Flag, whether bonds should be parametrized
+    in :class:`TopologyCreator`. default: True
+
+  .. attribute::        add_angles 
+
+    Flag, whether angles should be parametrized
+    in :class:`TopologyCreator`. default: True
+
+  .. attribute::        add_dihedrals 
+
+    Flag, whether dihedrals should be parametrized
+    in :class:`TopologyCreator`. default: True
+
+  .. attribute::        add_impropers 
+
+    Flag, whether impropers should be parametrized
+    in :class:`TopologyCreator`. default: True
+
+  .. attribute::        add_cmaps 
+
+    Flag, whether cmaps should be parametrized
+    in :class:`TopologyCreator`. default: True
+
+  .. attribute::        add_exclusions 
+
+    Flag, whether exclusions should be parametrized
+    in :class:`TopologyCreator`. default: True
+
+  .. attribute::        add_nonbonded
+
+    Flag, whether nonbonded interactions should be parametrized
+    in :class:`TopologyCreator`. default: True
+
+  .. attribute::        add_gbsa 
+
+    Flag, whether GBSA interactions should be parametrized
+    in :class:`TopologyCreator`. default: False
+
+  .. attribute::        constrain_hbonds
+
+    Flag, whether bonds involving hydrogens should be constrained
+    in :class:`TopologyCreator`. default: False
+
+  .. attribute::        constrain_bonds
+
+    Flag, whether all bonds should be constrained in 
+    :class:`TopologyCreator`. default: False
+
+  .. attribute::        rigid_water
+
+    Flag, whether water molecules should be made rigid in
+    :class:`TopologyCreator`. This is achieved by adding
+    a distance constraint on the O-H bonds and an additional
+    one between the two hydrogens. default: False
+
+  .. attribute::        strict_interactions
+
+    Makes sure that an error is thrown when a particular interaction cannot
+    be parametrized with the given forcefield in the :class:`TopologyCreator`. 
+    By setting it to False, these cases just get ignored. default: True
+
+  .. attribute::        ideal_bond_length_constraints
+
+    Flag, whether the ideal bond length from the :class:`Forcefield` should be
+    taken for distance constraints in the :class:`TopologyCreator`. 
+    The actual distances from the :class:`EntityHandle` get taken otherwise. 
+    default: True
+
+  .. attribute::        fix_heavy_atoms
+
+    Flag, whether all heavy atom positions (non hydrogens) should be fixed in
+    space in the :class:`TopologyCreator`. default: False
+
+  .. attribute::        kill_electrostatics
+
+    Flag, whether all charges should just be set to zero in the
+    :class:`TopologyCreator`. default: False
+
+  .. attribute::        generate_disulfid_bonds
+
+    Flag, whether disulfid bonds based on a simple geometric criterion 
+    (SG-SG dist < 2.5A) should be built in :class:`TopologyCreator`. 
+    default: True
+
+  .. attribute::        nonbonded_method
+
+    Nonbonded method set up at the creation of the :class:`Simulation`.
+    Must be one of mm.NoCutoff, mm.CutoffNonPeriodic, mm.CutoffPeriodic
+    mm.Ewald or mm.PME. default: mm.NoCutoff
+
+  .. attribute::        nonbonded_cutoff
+
+    Nonbonded cutoff set when simulation is set up. default: 10.0
+
+  .. attribute::        remove_cmm_motion
+
+    Whether a center of mass remover object should be attached to the
+    :class:`Simulation`. default: True
+
+  .. attribute::        cmm_frequency
+
+    Frequency regarding simulation steps when the cmm remover should be applied.
+    default: 1
+
+  .. attribute::        periodic_box_extent
+
+    :class:`ost.geom.Vec3` describing the X,Y and Z extents of the rectangular
+    simulation_box defined when setting up the :class:`Simulation`. 
+    default: (0,0,0)
+
+  .. attribute::        init_temperature
+
+    Initial simulation velocities get set according to a Boltzman distribution
+    controlled by init_temperature(Kelvin). default: 0.0
+
+  .. attribute::        forcefield
+
+    :class:`Forcefield` that is used in :class:`TopologyCreator`. default: None
+
+  .. attribute::        termini_exceptions
+
+    Use termini other than the defaults set in the :class:`Forcefield` when
+    using :class:`TopologyCreator`. Has to be a :class:`TerminiExceptions`
+    object. default: None
+
+  .. attribute::        platform
+
+    Platform used by OpenMM to do the calculations. Must be one of mm.Reference,
+    mm.CPU, mm.CUDA or mm.OpenCL. If anything else than the reference platform 
+    is used, the attribute openmm_plugin_directory has to be set accordingly.
+    default: mm.Reference
+
+  .. attribute::        reference_properties
+
+    :class:`dict` of OpenMM specific properties that can be set for the 
+    reference platform.
+       
+  .. attribute::        cpu_properties
+
+    :class:`dict` of OpenMM specific properties that can be set for the 
+    cpu platform.
+
+  .. attribute::        opencl_properties
+
+    :class:`dict` of OpenMM specific properties that can be set for the 
+    opencl platform.
+
+  .. attribute::        cuda_properties
+
+    :class:`dict` of OpenMM specific properties that can be set for the 
+    cuda platform.
+
+  .. attribute::        add_thermostat
+
+    Flag, whether an Andersen thermostat should be attached when settings up
+    the :class:`Simulation`. default: False
+
+  .. attribute::        thermostat_temperature
+
+    Temperature for the Andersen thermostat in K. default: NaN
+
+  .. attribute::        thermostat_collision_frequency
+
+    Collision frequency of the Andersen thermostat in 1/ps. default: NaN
+
+  .. attribute::        add_barostat
+
+    Flag, whether an  MonteCarlo barostat should be attached when setting up
+    the :class:`Simulation`. default: False
+
+  .. attribute::        barostat_temperature
+
+    Temperature for the MonteCarlo Barostat in K. default: NaN
+
+  .. attribute::        barostat_pressure
+
+    Pressure for the MonteCarlo Barostat in bar. default: NaN
+
+  .. attribute::        barostat_frequency
+
+    Frequency of the MonteCarlo Barostat. default: 25
+
+  .. attribute::        integrator
+
+    Integrator to move the simulation forward in time. OpenMM offers following
+    Integrators: :class:`VerletIntegrator`, :class:`BrownianIntegrator`,
+    :class:`LangevinIntegrator`, :class:`VariableVerletIntegrator` and
+    :class:`VariableLangevinIntegrator`. default: None
+
+  .. attribute::        solvent_dielectric
+
+    Solvent dielectric constant. This is used for the GBSA force when the 
+    :class:`Simulation` gets set up. default: 78.3
+
+  ..  attribute::       solute_dielectric
+
+    Solute dielectric constant. This is used for the GBSA force when the
+    :class:`Simulation` gets set up. default: 1.0
+
+  .. attribute::        reaction_field_dielecric
+
+    Sets the reaction field dielectric for the Nonbonded Force when setting
+    up the :class:`Simulation`. default: 78.3
+
+  .. attribute::        use_dispersion_correction
+
+    Flag, whether the dispersion correction should be used when setting
+    up the Nonbonded Force in the :class:`Simulation`. default: True
+
+  .. attribute::        keep_ff_specific_naming
+
+    When running through the :class:`TopologyCreator`, the given entity gets 
+    renamed to the forcefield specific naming. If set to true, the naming
+    stays like that, if not the entity gets renamed to PDB standard.
+    default: True
+
+  .. attribute::        openmm_plugin_directory
+
+    Path where OpenMM specific plugins are searched. If you want
+    to use other platforms than Reference, this has to be set.
+    default: "/usr/local/openmm/lib/plugins"
+
+  .. attribute::        custom_plugin_directory
+
+    Path where custom plugins are searched for. 
+    default: "/usr/local/openmm/lib/plugins"
+
+
+
+
+.. class:: TerminiExceptions
+  
+  Can be used to define exceptions from the standard assignments
+  assigned in the :class:`Forcefield`. 
+
+  .. method::           SetException(residue, exception_name)
+
+    :param residue:     Residue for which the exception
+                        should be set.
+    :param exception_name: Name of the
+                        Blockmodifier in the forcefield that should be
+                        applied in case of a termini
+
+    :type residue:      :class:`ResidueHandle`
+    :type exception_name: :class:`str`
+
+  .. method::           HasException(residue)
+
+    :param residue:     Residue that should be checked for 
+                        exceptions
+    :type residue:      :class:`ResidueHandle`
+
+    :returns:           :class:`bool` True if **residue** has an exception
+
+  .. method::           GetException(residue)
+
+    :param residue:     Residue containing the exception
+    :type residue:      :class:`ResidueHandle`
+
+    :raises:            :class:`RuntimeError` if **residue** has no associated exception
+
+    :returns:           :class:`str` describing the name of the Blockmodifier in
+                        the forcefield that should be applied in case of a 
+                        terminal residue
diff --git a/modules/mol/mm/doc/simulation.rst b/modules/mol/mm/doc/simulation.rst
new file mode 100644
index 0000000000000000000000000000000000000000..217c1cc7df013f3b0c427586e62144c1d681e6b9
--- /dev/null
+++ b/modules/mol/mm/doc/simulation.rst
@@ -0,0 +1,447 @@
+Simulation
+================================================================================
+
+.. currentmodule:: ost.mol
+
+The simulation finally connects a :class:`Topology` with an 
+:class:`EntityHandle`. While applying minimization or
+md tasks, the current positions of the simulation object can be
+mapped back to the attached structure at any time.
+
+
+
+.. class:: Simulation(entity, settings)
+
+  First constructor that takes an :class:`ost.mol.EntityHandle` as an input
+  and automatically constructs an internal :class:`Topology` according
+  to the provided **settings**. Be aware, that the **entity** will be altered
+  depending on hydrogen/termini definitions in the :class:`Forcefield` attached
+  to the **settings**
+
+  :param entity:        Entity from which a default
+                        :class:`Topology` will be created according to the
+                        **settings**
+  :param settings:      Controls the parametrization of
+                        the :class:`Simulation` and the buildup of the
+                        internal :class:`Topology`
+
+  :type entity:         :class:`EntityHandle` 
+  :type settings:       :class:`Settings` 
+
+  :raises:              :class:`RuntimeError` when construction of 
+                        :class:`Topology` fails
+
+.. class:: Simulation(topology,entity,settings)
+
+  Second constructor that takes a :class:`Topology`, a consistent
+  :class:`ost.mol.EntityHandle` and a :class:`Settings` as input.
+
+  :param topology:      Topology to initialize the :class:`Simulation`
+  :param entity:        Entity that is consistent with
+                        the provided **topology**
+  :param settings:      Controls the parametrization of
+                        the :class:`Simulation`
+
+  :type topology:       :class:`Topology`
+  :type entity:         :class:`EntityHandle`
+  :type settings:       :class:`Settings` 
+
+  :raises:              :class:`RuntimeException` when number of atoms in 
+                        **entity** is not equal the number of particles
+                        in **topology**
+
+
+  .. method:: Save(filename, settings)
+
+    Dumps current status of the simulation with its connected **entity** onto 
+    disk. All informations from the **entity** except plain chains, residues, 
+    atoms and bonds are lost.
+
+    :param filename:    Filename
+    :type filename:     :class:`str`
+
+  .. method:: Load(filename)
+
+    Loads a dumped simulation from disk. You have to make sure, that the provided 
+    settings are consistent with those from the saved simulation. Undefined 
+    behaviour must be expected otherwise. 
+
+    :param filename: Filename
+    :param settings: Settings to reparametrize loaded simulation
+
+    :type filename:     :class:`str`
+    :type settings:     :class:`Settings`
+
+  .. method:: ApplyLBFGS([tolerance=1.0,max_iterations=1000])
+
+    Run minimization using the Limited-memory Broyden–Fletcher–Goldfarb–Shanno 
+    (L-BFGS) method.
+   
+    :param tolerance:   Tolerance describing abort criteria of minimization.
+                        The tolerance is interpreted as the root mean square
+                        value of all force components.
+    :param max_iterations: Maximum number of minimization iterations
+
+    :type tolerance:    :class:`float`
+    :type max_iterations: :class:`int`
+  
+
+  .. method:: ApplySD([tolerance=100,max_iterations=1000])
+
+    Run minimization using the steepest descend method.
+   
+    :param tolerance:  Tolerance describing abort criteria of minimization.
+                       The tolerance is interpreted as the norm of the maximum 
+                       force acting onto the particles.
+    :param max_iterations:  Maximum number of minimization iterations
+
+    :type tolerance:    :class:`float`
+    :type max_iterations: :class:`int`
+
+    :returns:           :class:`bool` whether tolerance has been reached
+
+  .. method:: Steps(steps)
+
+    Runs the simulation for **steps** number of steps.
+   
+    :param steps:       Number of steps to perform
+    :type steps:        :class:`int`
+
+  .. method:: GetPositions([enforce_periodic_box = false, in_angstrom = true])
+
+    :param enforce_periodic_box: True if periodic box has to be enforced
+    :param in_angstrom: True if positions should be in Angstrom, they're in nm
+                        otherwise
+
+    :type enforce_periodic_box: :class:`bool`
+    :type in_angstrom: :class:`bool`
+
+    :returns: A :class:`ost.geom.Vec3List` of all the positions of the atoms in the Entity.
+
+  .. method:: SetPositions(positions,[,in_angstrom = true])
+
+    :param positions: Positions to be set
+    :param in_angstrom: True if **positions** are in Angstrom, they're expected
+                        to be in nm otherwise
+
+    :type positions:    :class:`ost.geom.Vec3List`
+    :type in_angstrom:  :class:`bool`
+
+  .. method:: UpdatePositions([enforce_periodic_box=false])
+
+    Sets the positions of the atoms in the :class:`EntityHandle` to the current positions of the simulation.
+
+    :param enforce_periodic_box: True if periodic box should be enforced
+    :type enforce_periodic_box:  :class:`bool`
+
+  .. method:: GetVelocities()
+
+    :returns: A :class:`~ost.geom.Vec3List` of all the velocities of the atoms in the Entity.
+  
+  .. method:: GetForces()
+
+    :returns: A :class:`~ost.geom.Vec3List` of all the resulting forces for each atom in the Entity.
+
+  .. method:: SetVelocities(velocities)
+
+    :param velocities:  Velocities to be set
+    :type velocities:   :class:`ost.geom.Vec3List`
+
+  .. method:: GetEntity()
+
+    :returns: :class:`EntityHandle` attached to the simulation
+
+  .. method:: GetEnergy()
+
+    :returns: :class:`float` *Potential + Kinetic* energy in kJ/mol of current 
+              simulation state
+
+  .. method:: GetPotentialEnergy()
+
+    :returns: :class:`float` *Potential* energy in kJ/mol of current simulation 
+              state
+
+  .. method:: GetKineticEnergy()
+
+    :returns: :class:`float` *Kinetic* energy in kJ/mol of current simulation 
+              state
+
+  .. method:: GetTopology()
+
+    :returns: :class:`Topology` attached to the simulation
+
+  .. method:: GetPeriodicBoxExtents()
+
+    :returns: :class:`~ost.geom.Vec3` Extents of the periodic box
+
+  .. method:: SetPeriodicBoxExtents(vec)
+
+    :param vec:         Periodic box extents in A
+    :type vec:          :class:`ost.geom.Vec3`
+
+  .. method:: Register(observer)
+
+    Adds an observer to the simulation object. This can be used for example to write out the trajectory during the simulation.
+
+    :param observer:    Observer to be attached
+    :type observer:     :class:`Observer`
+
+  .. method:: AddPositionConstraint(index)
+
+    Fixes the position of the particle with index given in the argument.
+
+    :param index:       Particle to be fixed
+    :type index:        :class:`int`
+
+    :raises:            :class:`RuntimeError` when **index** exceeds
+                        number of particles
+
+  .. method:: AddPositionConstraints(indices)
+
+    Fixes the position of the atoms with the indices given in in the argument.
+
+    :param indices:     Particles to be fixed
+    :type indices:      :class:`list`
+
+    :raises:            :class:`RuntimeError` when an index in **indices** 
+                        exceeds number of particles
+
+  .. method:: ResetPositionConstraints()
+
+    Removes all position constraints.
+
+  .. method:: ResetHarmonicBond(index, bond_length, force_constant)
+
+    Update of the harmonic bond parameters in the simulation **and**
+    in the attached :class:`Topology`
+
+    :param index:       Harmonic Bond to be reset
+    :param bond_length: New bond length in nm
+    :param force_constant: New force constant in kJ/mol/nm^2
+
+    :type index:        :class:`int`
+    :type bond_length:  :class:`float`
+    :type force_constant: :class:`float`
+
+    :raises:            :class:`RuntimeError` when **index** exceeds
+                        number of harmonic bonds
+
+  .. method:: ResetHarmonicAngle()
+
+    Update of the harmonic angle parameters in the simulation **and**
+    in the attached :class:`Topology`
+
+    :param index: Harmonic Angle to be reset
+    :param angle: New Angle in radians
+    :param force_constant: New force constant in kJ/mol/radian^2 
+
+    :type index:        :class:`int`
+    :type angle:        :class:`float`
+    :type force_constant: :class:`float`
+
+    :raises:            :class:`RuntimeError` when **index** exceeds
+                        number of harmonic angles
+
+  .. method:: ResetUreyBradleyAngle(index, angle, angle_force_constant, bond_length, bond_force_constant)
+
+    Update of the Urey-Bradley angle parameters in the simulation **and**
+    in the attached :class:`Topology`
+
+    :param index: Urey-Bradley angle that has to be reset
+    :param angle: New angle in radians
+    :param angle_force_constant: New angle force constant kJ/mol/radian^2 
+    :param bond_length: New bond length in nm
+    :param bond_force_constant: New bond force constant in kJ/mol/nm^2 
+
+    :type index:        :class:`int`
+    :type angle:        :class:`float`
+    :type angle_force_constant: :class:`float`
+    :type bond_length:  :class:`float`
+    :type bond_force_constant: :class:`float`
+
+    :raises:            :class:`RuntimeError` when **index** exceeds
+                        number of urey-bradley angles
+
+  .. method:: ResetPeriodicDihedral(index, multiplicity, phase, force_constant)
+
+    Update of the periodic dihedral parameters in the simulation **and**
+    in the attached :class:`Topology`
+
+    :param index:       Periodic dihedral to be reset
+    :param multiplicity: New Multiplicity
+    :param phase:       New phase in radians
+    :param force_constant: New force constant in kJ/mol/radian^2 
+
+    :type index:        :class:`int`
+    :type multiplicity: :class:`int`
+    :type phase:        :class:`float`
+    :type force_constant: :class:`float`
+
+    :raises:            :class:`RuntimeError` when **index** exceeds
+                        number of periodic dihedrals
+
+
+  .. method:: ResetPeriodicImproper(index, multiplicity, phase, force_constant)
+
+    Update of the periodic improper parameters in the simulation **and**
+    in the attached :class:`Topology`
+
+    :param index:       Periodic improper to be reset
+    :param multiplicity: New multiplicity
+    :param phase:       New phase in radians
+    :param force_constant: New force constant kJ/mol/radian^2 
+
+    :type index:        :class:`int`
+    :type multiplicity: :class:`int`
+    :type phase:        :class:`float`
+    :type force_constant: :class:`float`
+
+    :raises:            :class:`RuntimeError` when **index** exceeds
+                        number of periodic impropers
+
+  .. method:: ResetHarmonicImproper(index, phase, force_constant)
+
+    Update of the harmonic improper parameters in the simulation **and**
+    in the attached :class:`Topology`
+
+    :param index: Harmonic improper to be reset
+    :param phase: New phase in radians
+    :param force_constant: New force constant kJ/mol/radian^2 
+
+    :type index:        :class:`int`
+    :type phase:        :class:`float`
+    :type force_constant: :class:`float`
+
+    :raises:            :class:`RuntimeError` when **index** exceeds
+                        number of harmonic impropers
+
+  .. method:: ResetLJPair(index,sigma,epsilon)
+
+    Update of the LJ pair parameters in the simulation **and**
+    in the attached :class:`Topology`
+
+    :param index:       LJ pair to be reset
+    :param sigma:       New sigma in nm
+    :param epsilon:     New epsilon in kJ/mol
+
+    :type index:        :class:`int`
+    :type sigma:        :class:`float`
+    :type epsilon:      :class:`float`
+
+    :raises:            :class:`RuntimeError` when **index** exceeds
+                        number of LJ pairs
+
+
+  .. method:: ResetDistanceConstraint(index, constraint_length)
+
+    Update of the distance constraint parameters in the simulation **and**
+    in the attached :class:`Topology`
+    
+    :param index:       Distance constraint to be reset
+    :param constraint_length: New constraint length in nm
+
+    :type index:        :class:`int`
+    :type constraint_length: :class:`float` 
+
+    :raises:            :class:`RuntimeError` when **index** exceeds
+                        number of distance constraints
+
+  .. method:: ResetHarmonicPositionRestraint(index,ref_position, force_constant,x_scale,y_scale,z_scale)
+
+    Update of the harmonic position restraint parameters in the simulation **and**
+    in the attached :class:`Topology`
+
+    :param index: Harmonic position restraint to be reset
+    :param ref_position: New reference position in nm
+    :param force_constant: New force constant in kJ/mol/nm^2 
+    :param x_scale:     New x-scale
+    :param y_scale:     New y-scale
+    :param z_scale:     New z-scale
+
+    :type index:        :class:`int`
+    :type ref_position:  :class:`ost.geom.Vec3`
+    :type force_constant: :class:`float`
+    :type x_scale:      :class:`float`
+    :type y_scale:      :class:`float`
+    :type z_scale:      :class:`float`
+
+    :raises:            :class:`RuntimeError` when **index** exceeds
+                        number of harmonic position restraints
+
+  .. method:: ResetHarmonicDistanceRestraint(index, length, force_constant)
+
+    Update of the harmonic distance restraint parameters in the simulation **and**
+    in the attached :class:`Topology`
+
+    :param index:       Harmonic distance restraint to be reset
+    :param length:      New restraint length in nm
+    :param force_constant: New force constant kJ/mol/nm^2 
+
+    :type index:        :class:`int`
+    :type length:       :class:`float`
+    :type force_constant: :class:`float`
+
+    :raises:            :class:`RuntimeError` when **index** exceeds
+                        number of harmonic distance restraints
+
+  .. method:: ResetLJ(index,sigma,epsilon)
+
+    Update of the lj parameters in the simulation **and**
+    in the attached :class:`Topology`
+
+    :param index:       LJ to be reset
+    :param sigma:       New sigma in nm
+    :param epsilon:     New epsilon in kJ/mol
+
+    :type index:        :class:`int`
+    :type sigma:        :class:`float`
+    :type epsilon:        :class:`float`
+
+    :raises:            :class:`RuntimeError` when **index** exceeds
+                        number of particles
+
+  .. method:: ResetGBSA(index,radius,scaling)
+
+    Update of the GBSA parameters in the simulation **and**
+    in the attached :class:`Topology`
+
+    :param index: :     GB to be reset
+    :param radius:      New radius in nm
+    :param scaling:     New OBC scaling
+
+    :type index:        :class:`int`
+    :type radius:       :class:`float`
+    :type scaling:      :class:`float`
+    :raises:            :class:`RuntimeError` when **index** exceeds
+                        number of particles
+
+  .. method:: ResetCharge(index,charge)
+
+    Update of the charge in the simulation **and**
+    in the attached :class:`Topology`
+
+    :param index:       Charge to be reset
+    :param charge:      New Charge
+
+    :type index:        :class:`int`
+    :type charge:       :class:`float`
+    :raises:            :class:`RuntimeError` when **index** exceeds
+                        number of particles
+
+
+  .. method:: ResetMass(index,mass)
+
+    Update of the mass in the simulation **and**
+    in the attached :class:`Topology`
+
+    :param index:       Mass to be reset
+    :param mass:        New mass
+
+    :type index:        :class:`int`
+    :type mass:         :class:`float`
+
+    :raises:            :class:`RuntimeError` when **index** exceeds
+                        number of particles
+
+
+
diff --git a/modules/mol/mm/doc/topology.rst b/modules/mol/mm/doc/topology.rst
new file mode 100644
index 0000000000000000000000000000000000000000..421be2fe9cf5d95ea3cd89352994f5e67bdcbbe6
--- /dev/null
+++ b/modules/mol/mm/doc/topology.rst
@@ -0,0 +1,1387 @@
+Topology
+================================================================================
+
+.. currentmodule:: ost.mol
+
+The :class:`Topology` object is an abstract representation of a protein 
+structure or any combination of particles that interact with each other in 
+some way. Being initialized with a list of masses representing the particles, 
+the topology allows to define arbitrary forces between these particles. The 
+:class:`Topology` gets internally translated to a molecular mechanics system 
+as soon as a :class:`Simulation` is set up. To make setting up a 
+:class:`Topology` more convenient, the :class:`TopologyCreator` class allows 
+to create a :class:`Topology` based on an mm :class:`Settings` object, 
+that should suffice for most needs.
+
+Automatically create topologies
+--------------------------------------------------------------------------------
+
+.. class:: TopologyCreator
+
+  .. method:: Create(entity, settings)
+
+    Creates a topology given an :class:`EntityHandle` and a :class:`Settings`
+    object. Note, that the :class:`EntityHandle` is passed by reference
+    and gets altered by rebuilding bonds, adding hydrogens and modification of 
+    terminal residues based on the information given by the 
+    :class:`Settings`/:class:`Forcefield`.
+    The Topology Creation process consists of:
+
+    #. Rename to the Gromacs standard
+    
+    #. Kill all bonds
+    
+    #. Build difulfide bonds if flag is set in **settings**
+    
+    #. Rename residues/atoms to the standard defined in the forcefield
+    
+    #. Extract the building blocks from the forcefield for every residue
+    
+    #. Apply BlockModifiers on termini and reconstruct hydrogens with HydrogenConstructors
+    
+    #. Reconnect based on the connectivity definitions in the building blocks
+    
+    #. Check, whether the residues match with the building blocks
+    
+    #. Extract bonds/angles etc. based on the flags in the **settings**
+
+    #. Impropers and CMaps get only extracted when they are defined in the :class:`BuildingBlock`
+    
+    #. Add Parametrization from :class:`Forcefield` to the :class:`Topology`. Note, that you can override the :class:`Forcefield` parametrization if you add this particular :class:`Interaction` in a parameterized form in the :class:`BuildingBlock`
+    
+    #. Rename entity back to PDB naming if flag is set accordingly in **settings**
+
+    :param entity:      Entity for which to create :class:`Topology`
+    :param settings:    Settings to control :class:`Topology` buildup
+
+    :type entity:       :class:`ost.mol.EntityHandle`
+    :type settings:     :class:`Settings`
+
+
+    :raises:            :class:`RuntimeError` if settings has no 
+                        :class:`Forcefield` assigned
+
+    :raises:            :class:`RuntimeError` if there is a residue with no
+                        appropriate :class:`BuildingBlock` in the 
+                        :class:`Forcefield`
+
+    :raises:            :class:`RuntimeError` if there is a 
+                        :class:`ResidueHandle` not matching the
+                        :class:`BuildingBlock` definition in the
+                        :class:`Forcefield`
+
+    :raises:            :class:`RuntimeError` if there is an interaction
+                        that has no parameters in the forcefield. This 
+                        :class:`RuntimeError` can be supressed by setting the 
+                        appropriate flag in the :class:`Settings` object.
+
+
+The Topology Class
+--------------------------------------------------------------------------------
+
+.. class:: Topology(masses)
+
+  :param masses:        :class:`list` of the particles'masses
+
+  .. method:: Save(filename)
+
+    Dump Toplogy into binary file
+
+    :param filename:    Name of file
+    :type filename:     :class:`str`
+
+
+  .. method:: Load(filename)
+
+    Load binary topology from disk
+
+    :param filename:    Name of file
+    :type filename:     :class:`str`
+
+    :returns:           loaded :class:`Topology`
+
+    :raises:            :class:`RuntimeError` when file can't be found
+
+
+  .. method:: Merge(other)
+
+    Merges in another :class:`Topology` and adds all their particles and interactions.
+    Assuming the actual :class:`Topology` containing n particles, the indexing of the
+    other :class:`Topology` gets altered by adding n everywhere.
+
+    :param other:       Topology to merge in
+    :type other:        :class:`Topology`
+
+    :raises:            :class:`RuntimeError` if fudge parameters are not consistent
+
+    :raises:            :class:`RuntimeError` if current :class:`Topology` 
+                        contains charges but the **other** not
+
+    :raises:            :class:`RuntimeError` if current :class:`Topology` 
+                        contains sigmas but the **other** not
+
+    :raises:            :class:`RuntimeError` if current :class:`Topology` 
+                        contains epsilons but the **other** not
+
+    :raises:            :class:`RuntimeError` if current :class:`Topology` 
+                        contains GBSA Radii but the **other** not
+
+    :raises:            :class:`RuntimeError` if current :class:`Topology` 
+                        contains OBC scalings but the **other** not
+
+  .. method:: Merge(ent, other, other_ent)
+
+    Merges in another :class:`Topology` and adds all their particles and 
+    interactions. Assuming the actual :class:`Topology` contains n particles, 
+    the indexing of the other :class:`Topology` gets altered by adding n 
+    everywhere. This version of the Merge function assumes the current topology 
+    describes the :class:`EntityHandle` ent and the other :class:`Topology`
+    describes the :class:`EntityHandle` other_ent. During merging, all
+    chains, residues, atoms and bonds from **other_ent** are pulled into **ent** in
+    a way, that the current :class:`Topology` is consistent with the
+    :class:`EntityHandle` **ent**.
+
+    :param ent:         Entity consistent with current topology
+    :param other:       Topology to merge in
+    :param other_ent:   Entity consistent with **other**
+
+    :type ent:          :class:`ost.mol.EntityHandle`
+    :type other:        :class:`Topology`
+    :type other_ent:    :class:`ost.mol.EntityHandle`
+
+    :raises:            :class:`RuntimeError` if fudge parameters are not consistent
+
+    :raises:            :class:`RuntimeError` if current :class:`Topology` 
+                        contains charges but the other not
+
+    :raises:            :class:`RuntimeError` if current :class:`Topology` 
+                        contains sigmas but the other not
+
+    :raises:            :class:`RuntimeError` if current :class:`Topology` 
+                        contains epsilons but the other not
+
+    :raises:            :class:`RuntimeError` if current :class:`Topology` 
+                        contains GBSA Radii but the other not
+
+    :raises:            :class:`RuntimeError` if current :class:`Topology` 
+                        contains OBC scalings but the other not
+
+    :raises:            :class:`RuntimeError` if the number of atoms in one
+                        of the entities is not consistent with their related
+                        topologies.
+
+    :raises:            :class:`RuntimeError` other_ent contains a chain with
+                        a name already present in **ent**.
+
+
+  .. method:: AddHarmonicBond(index_one, index_two, bond_length, force_constant)
+
+    :param index_one:   Index of particle 1
+    :param index_two:   Index of particle 2
+    :param bond_length: Bond length in nm
+    :param force_constant: Force constant in kJ/mol/nm^2
+
+    :type index_one:    :class:`int`
+    :type index_two:    :class:`int`
+    :type bond_length:  :class:`float`
+    :type force_constant: :class:`float`
+
+
+    :returns:           :class:`int` index of added interaction
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         particles
+
+
+
+  .. method:: AddHarmonicAngle(index_one, index_two, index_three, angle, 
+                               force_constant)
+
+    :param index_one:   Index of particle 1
+    :param index_two:   Index of particle 2
+    :param index_three: Index of particle 3
+    :param angle:       Angle in radians
+    :param force_constant: Force constant in kJ/mol/radian^2 
+
+    :type index_one:    :class:`int`
+    :type index_two:    :class:`int`
+    :type index_three:  :class:`int`
+    :type angle:        :class:`float`
+    :type force_constant: :class:`float`
+
+    :returns:           :class:`int` index of added interaction
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         particles
+
+
+  .. method:: AddUreyBradleyAngle(index_one, index_two, index_three, 
+                                  angle, angle_force_constant,
+                                  bond_length, bond_force_constant)
+
+    :param index_one:   Index of particle 1
+    :param index_two:   Index of particle 2
+    :param index_three: Index of particle 3
+    :param angle:       Angle in radians
+    :param angle_force_constant: Angle force constant kJ/mol/radian^2 
+    :param bond_length: Bond length in nm
+    :param bond_force_constant: Bond force constant kJ/mol/nm^2 
+
+    :type index_one:    :class:`int`
+    :type index_two:    :class:`int`
+    :type index_three:  :class:`int`
+    :type angle:        :class:`float`
+    :type angle_force_constant: :class:`float`
+    :type bond:         :class:`float`
+    :type bond_force_constant: :class:`float`
+
+    :returns:           :class:`int` index of added interaction
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         particles
+
+
+  .. method:: AddPeriodicDihedral(index_one, index_two, index_three, index_four,
+                                  multiplicity, phase, force_constant)
+
+    :param index_one:   Index of particle 1
+    :param index_two:   Index of particle 2
+    :param index_three: Index of particle 3
+    :param index_four:  Index of particle 4
+    :param multiplicity: Multiplicity
+    :param phase:       Phase in radians
+    :param force_constant: Force constant in kJ/mol/radian^2 
+
+    :type index_one:    :class:`int`
+    :type index_two:    :class:`int`
+    :type index_three:  :class:`int`
+    :type index_four:   :class:`int`
+    :type multiplicity: :class:`int`
+    :type phase:        :class:`float`
+    :type force_constant: :class:`float`
+
+    :returns:           :class:`int` index of added interaction
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         particles
+
+
+  .. method:: AddPeriodicImproper(index_one, index_two, index_three, index_four,
+                                  multiplicity, phase, force_constant)
+
+    :param index_one:   Index of particle 1
+    :param index_two:   Index of particle 2
+    :param index_three: Index of particle 3
+    :param index_four:  Index of particle 4
+    :param multiplicity: Multiplicity
+    :param phase:       Phase in radians
+    :param force_constant: Force constant in kJ/mol/radian^2 
+
+    :type index_one:    :class:`int`
+    :type index_two:    :class:`int`
+    :type index_three:  :class:`int`
+    :type index_four:   :class:`int`
+    :type multiplicity: :class:`int`
+    :type phase:        :class:`float`
+    :type force_constant: :class:`float`
+
+    :returns:           :class:`int` index of added interaction
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         particles
+
+
+  .. method:: AddHarmonicImproper(index_one, index_two, index_three, index_four,
+                                  angle, force_constant)
+
+    :param index_one:   Index of particle 1
+    :param index_two:   Index of particle 2
+    :param index_three: Index of particle 3
+    :param index_four:  Index of particle 4
+    :param angle:       Angle in radians
+    :param force_constant: Force constant kJ/mol/radian^2 
+
+    :type index_one:    :class:`int`
+    :type index_two:    :class:`int`
+    :type index_three:  :class:`int`
+    :type index_four:   :class:`int`
+    :type angle:        :class:`float`
+    :type force_constant: :class:`float`
+
+    :returns:           :class:`int` index of added interaction
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         particles
+
+
+  .. method:: AddCMap(index_one, index_two, index_three, index_four,
+                      index_five, dimension, values)
+
+    :param index_one:   Index of particle 1
+    :param index_two:   Index of particle 2
+    :param index_three: Index of particle 3
+    :param index_four:  Index of particle 4
+    :param index_five:  Index of particle 5
+    :param dimension:   Dimension of CMap
+    :param values:      Map of size 
+                        **dimension** * **dimension** describing the correction
+                        map in kJ/mol. The values have to be ordered like
+                        (phi1,psi1),(phi1,psi2)...(phi1,psin),
+                        (phi2,psi1),(phi2,psi2)...(phi2,psin),
+                        ...(phin,psin).
+                        the range for phi and psi are [-pi,pi[
+
+    :type index_one:    :class:`int`
+    :type index_two:    :class:`int`
+    :type index_three:  :class:`int`
+    :type index_four:   :class:`int`
+    :type index_five:   :class:`int`
+    :type dimension:    :class:`int`
+    :type values:       :class:`list`
+
+    :returns:           :class:`int` index of added interaction
+
+    :raises:            :class:`RuntimeError` when size of values is not 
+                        **dimension** * **dimension** or index exceeds number of 
+                        particles.
+
+
+  .. method:: AddLJPair(index_one, index_two, sigma, epsilon)
+
+    :param index_one:   Index of particle 1
+    :param index_two:   Index of particle 2
+    :param sigma:       Sigma in nm
+    :param epsilon:     Epsilon in kJ/mol
+
+    :type index_one:    :class:`int`
+    :type index_two:    :class:`int`
+    :type sigma:        :class:`float`
+    :type epsiolon:     :class:`float`
+
+
+    :returns:           :class:`int` index of added interaction
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         particles or when particular LJPair is already 
+                         parameterized
+
+
+  .. method:: AddDistanceConstraint(index_one, index_two, distance)
+
+    :param index_one:   Index of particle 1
+    :param index_two:   Index of particle 2
+    :param distance:    Constraint distance in nm
+
+    :type index_one:    :class:`int`
+    :type index_two:    :class:`int`
+    :type distance:     :class:`float`    
+
+    :returns:           :class:`int` index of added interaction
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         particles or when particular distance constraint
+                         is already parameterized
+
+
+  .. method:: AddExclusion(index_one, index_two)
+
+    :param index_one:   Index of particle 1
+    :param index_two:   Index of particle 2
+
+    :type index_one:    :class:`int`
+    :type index_two:    :class:`int`
+
+    :returns:           :class:`int` index of added interaction
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         particles or when particular exclusion is already set
+
+
+  .. method:: AddPositionConstraint(index)
+
+    :param index:       Index of particle to be constrained
+
+    :type index:        :class:`int`
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         particles
+
+
+  .. method:: AddHarmonicPositionRestraint(index, reference_pos, force_constant,
+                                           x_scale=1.0, y_scale=1.0, z_scale=1.0)
+
+    Adds a harmonic position restraint for a particle in the form:
+    force_constant*(x_scale*(x-x0)^2+y_scale*(y-y0)^2+z_scale*(z-z0)^2)
+
+    :param index:       Index of particle to be constrained
+    :param reference_pos: Reference position in nm
+    :param force_constant: Force constant in kJ/mol/nm^2 
+    :param x_scale:     X-scale
+    :param y_scale:     Y-scale
+    :param z_scale:     Z-scale
+
+    :type index:        :class:`int`
+    :type reference_pos: :class:`ost.geom.Vec3`
+    :type force_constant: :class:`float`
+    :type x_scale:      :class:`float`
+    :type y_scale:      :class:`float`
+    :type z_scale:      :class:`float`
+
+    :returns:           :class:`int` index of added interaction
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         particles
+
+
+  .. method:: AddHarmonicDistanceRestraint(index_one, index_two, length, force_constant)
+
+    Adds a force between two particles in the form:
+    force_constant * (b-b0)^2
+
+    :param index_one:   Index of particle 1
+    :param index_two:   Index of particle 2
+    :param length:      Restraint length in nm
+    :param force_constant: Force constant in kJ/mol/nm^2 
+
+    :type index_one:    :class:`int`
+    :type index_two:    :class:`int`
+    :type length:       :class:`float`
+    :type force_constant: :class:`float`
+
+    :returns:           :class:`int` index of added interaction
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         particles
+
+
+  .. method:: ResetPositionConstraints()
+
+    Removes all position constraints
+
+
+  .. method:: ResetExclusions()
+
+    Removes all set exclusions
+
+
+  .. method:: SetSigmas(sigmas)
+
+    :param sigmas:      Sigma parameters for all particles in nm
+
+    :type sigmas:       :class:`list` (:class:`float`)
+   
+    :raises:            :class:`RuntimeError` when list size is inconsistent
+                        with number of particles
+
+
+  .. method:: SetSigma(index, sigma)
+
+    :param index:       Index of particle in nm
+    :param sigma:        Sigma
+
+    :type index:        :class:`int`
+    :type sigma:        :class:`float`
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         particles
+
+
+  .. method:: SetEpsilons(epsilons)
+
+    :param epsilons:    Epsilon parameters for all particles in kJ/mol
+
+    :type epsilons:     :class:`list` (:class:`float`)
+   
+    :raises:            :class:`RuntimeError` when list size is inconsistent
+                        with number of particles
+
+
+  .. method:: SetEpsilon(index, epsilon)
+
+    :param index:       Index of particle 
+    :param epsilon:     Epsilon in kJ/mol
+
+    :type index:        :class:`int`      
+    :type epsilon:      :class:`float`      
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         particles
+
+
+  .. method:: SetGBSARadii(radii)
+
+    :param radii:       GBSA radii for all particles in nm
+
+    :type radii:        :class:`list` (:class:`float`)
+   
+    :raises:            :class:`RuntimeError` when list size is inconsistent
+                        with number of particles
+
+
+  .. method:: SetGBSARadius(index, radius)
+
+    :param index:       Index of particle
+    :param radius:      GBSA radius in nm
+
+    :type index:        :class:`int`
+    :type radius:       :class:`float`
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         particles
+
+
+  .. method:: SetOBCScalings(scalings)
+
+    :param scalings:    OBC scaling factors for all particles
+   
+    :type scalings:     :class:`list` (:class:`float`)
+
+    :raises:            :class:`RuntimeError` when list size is inconsistent
+                        with number of particles
+
+
+  .. method:: SetOBCScaling(index, scaling)
+
+    :param index:       Index of particle
+    :param scaling:     OBC scaling factor
+
+    :type index:        Index of particle
+    :type scaling:      :class:`float`
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         particles
+
+
+  .. method:: SetCharges(charges)
+
+    :param charges:     Charges for all particles
+
+    :type charges:      :class:`list` (:class:`float`)
+   
+    :raises:            :class:`RuntimeError` when list size is inconsistent
+                        with number of particles
+
+
+  .. method:: SetCharge(index, charge)
+
+    :param index:       Index of particle
+    :param charge:      Charge
+
+    :type index:        :class:`int`
+    :type charge:       :class:`float`
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         particles
+
+  .. method:: SetMasses(masses)
+
+    :param masses:      Masses for all particles
+    :type masses:       :class:`list` (:class:`float`)
+   
+    :raises:            :class:`RuntimeError` when list size is inconsistent
+                        with number of particles
+
+
+  .. method:: SetMass(index, mass)
+
+    :param index:       Index of particle
+    :param mass:        Mass
+
+    :type index:        :class:`int`
+    :type mass:         :class:`float`
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         particles
+
+
+  .. method:: SetFudgeQQ(fudge)
+
+    :param fudge:       Dampening factor for electrostatic 1,4 interactions
+    :type fudge:        :class:`float`
+
+  .. method:: SetFudgeLJ(fudge)
+
+    :param fudge:       Dampening factor for LJ 1,4 interactions       
+    :type fudge:        :class:`float`
+
+
+  .. method:: GetHarmonicBondParameters(index)
+
+    :param index:       Index of harmonic bond
+    :type index:        :class:`int`
+
+    :returns:           :class:`tuple` containing the indices of the involved
+                        particles and the set parameters
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         set harmonic bonds
+
+
+  .. method:: GetHarmonicAngleParameters(index)
+
+    :param index:       Index of harmonic angle
+    :type index:        :class:`int`
+
+    :returns:           :class:`tuple` containing the indices of the involved
+                        particles and the set parameters
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         set harmonic angles
+
+  .. method:: GetUreyBradleyAngleParameters(index)
+
+    :param index:       Index of Urey-Bradley angle
+    :type index:        :class:`int`
+
+    :returns:           :class:`tuple` containing the indices of the involved
+                        particles and the set parameters
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         set Urey-Bradley angles
+
+  .. method:: GetPeriodicDiheralParameters(index)
+
+    :param index:       Index of periodic dihedral
+    :type index:        :class:`int`
+
+    :returns:           :class:`tuple` containing the indices of the involved
+                        particles and the set parameters
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         set periodic dihedrals
+
+  .. method:: GetPeriodicImproperParameters(index)
+
+    :param index:       Index of periodic improper
+    :type index:        :class:`int`
+
+    :returns:           :class:`tuple` containing the indices of the involved
+                        particles and the set parameters
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         set periodic impropers
+
+  .. method:: GetHarmonicImproperParameters(index)
+
+    :param index:       Index of harmonic improper
+    :type index:        :class:`int`
+
+    :returns:           :class:`tuple` containing the indices of the involved
+                        particles and the set parameters
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         set harmonic impropers
+
+
+  .. method:: GetCMapParameters(index)
+
+    :param index:       Index of CMap
+    :type index:        :class:`int`
+
+    :returns:           :class:`tuple` containing the indices of the involved
+                        particles and the set parameters
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         set cmaps
+
+
+  .. method:: GetLJPairParameters(index)
+
+    :param index:       Index of LJ pair
+    :type index:        :class:`int`
+
+    :returns:           :class:`tuple` containing the indices of the involved
+                        particles and the set parameters
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         set lj pairs
+
+
+  .. method:: GetDistanceConstraintParameters(index)
+
+    :param index:       Index of distance constraint
+    :type index:        :class:`int`
+
+    :returns:           :class:`tuple` containing the indices of the involved
+                        particles and the set parameters
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         set distance constraints
+
+
+  .. method:: GetHarmonicPositionRestraintParameters(index)
+
+    :param index:       Index of harmonic position restraint
+    :type index:        :class:`int`
+
+    :returns:           :class:`tuple` containing the indices of the involved
+                        particles and the set parameters
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         set harmonic position restraints
+
+
+  .. method:: GetHarmonicDistanceRestraintParameters(index)
+
+    :param index:       Index of harmonic distance restraint
+    :type index:        :class:`int`
+
+    :returns:           :class:`tuple` containing the indices of the involved
+                        particles and the set parameters
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         set harmonic distance restraints
+
+
+  .. method:: SetHarmonicBondParameters(index, bond_length, force_constant)
+
+    Replaces existing parameters for particular interaction
+
+    :param index:       Index of harmonic bond
+    :param bond_length: New bond length in nm
+    :param force_constant: New force constant in kJ/mol/nm^2
+
+    :type index:        :class:`int`
+    :type bond_length:  :class:`float`
+    :type force_constant: :class:`float`
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         set harmonic bonds
+
+
+  .. method:: SetHarmonicAngleParameters(index, angle, force_constant)
+
+    Replaces existing parameters for particular interaction
+
+    :param index:       Index of harmonic angle
+    :param angle:       New angle in radians
+    :param force_constant: New force constant kJ/mol/radian^2
+
+    :type index:        :class:`int`
+    :type angle:        :class:`float`
+    :type force_constant: :class:`float`
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         set harmonic angles
+
+  .. method:: SetUreyBradleyAngleParameters(index, angle, angle_force_constant,
+                                            bond_length, bond_force_constant)
+
+    Replaces existing parameters for particular interaction
+
+    :param index:       Index of Urey-Bradley angle
+    :param angle:       New angle in radians 
+    :param angle_force_constant: New angle force constant in kJ/mol/radian^2
+    :param bond_length: New bond length in nm
+    :param bond_force_constant: New bond force constant in kJ/mol/nm^2
+
+    :type index:        :class:`int`
+    :type angle:        :class:`float`
+    :type angle_force_constant: :class:`float`
+    :type bond_length:  :class:`float`
+    :type bond_force_constant: :class:`float`
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         set Urey-Bradley angles
+
+  .. method:: SetPeriodicDiheralParameters(index, multiplicity, phase, force_constant)
+
+    Replaces existing parameters for a particular interaction
+
+    :param index:       Index of periodic dihedral
+    :param multiplicity: New periodicity
+    :param phase:       New phase in radians
+    :param force_constant: New force constant in kJ/mol/radian^2
+
+    :type index:        :class:`int`
+    :type multiplicity: :class:`int`
+    :type phase:        :class:`float`
+    :type force_constant: :class:`float`
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         set periodic dihedrals
+
+  .. method:: SetPeriodicImproperParameters(index, multiplicity, phase, force_constant)
+
+    Replaces existing parameters for a particular interaction
+
+    :param index:       Index of periodic improper
+    :param multiplicity: New multiplicity
+    :param phase:       New phase in radians
+    :param force_constant: New force constant kJ/mol/radian^2
+
+    :type  index:       :class:`int`
+    :type  multiplicity: :class:`int`
+    :type  phase:       :class:`float`
+    :type  force_constant: :class:`float`
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         set periodic impropers
+
+  .. method:: SetHarmonicImproperParameters(index, angle, force_constant)
+
+    Replaces existing parameters for a particular interaction
+
+    :param index:       Index of harmonic improper
+    :param angle:       New angle in radians
+    :param force_constant: New force constant kJ/mol/radian^2
+
+    :type index:        :class:`int`
+    :type angle:        :class:`float`
+    :type force_constant: :class:`float`
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         set harmonic impropers
+
+
+  .. method:: SetCMapParameters(index, dimension, map)
+
+    Replaces existing parameters for a particular interaction
+
+    :param index:       Index of CMap
+    :param dimension:   New dimension
+    :param map:         New CMap of format described in the AddCMap function.
+
+    :type index:        :class:`int`
+    :type dimension:    :class:`int`
+    :type map:          :class:`list` 
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         set cmaps or size of map is not dimension*dimension
+
+
+  .. method:: SetLJPairParameters(index, sigma, epsilon)
+
+    Replaces existing parameters for a particular interaction
+
+    :param index:       Index of LJ pair
+    :param sigma:       New sigma in nm
+    :param epsilon:     New epsilon in kJ/mol
+
+    :type index:        :class:`int`
+    :type sigma:        :class:`float`
+    :type epsilon:      :class:`float`
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         set lj pairs
+
+
+  .. method:: SetDistanceConstraintParameters(index, distance)
+
+    Replaces existing parameters for a particular interaction
+
+    :param index:       Index of distance constraint
+    :param distance:    New constraint distance in nm
+
+    :type index:        :class:`int`
+    :type distance:     :class:`float`
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         set distance constraints
+
+
+  .. method:: SetHarmonicPositionRestraintParameters(index, ref_position, k,[,
+                                                     x_scale=1.0, y_scale=1.0, z_scale=1.0])
+
+    Replaces existing parameters for a particular interaction
+
+    :param index:       Index of harmonic position constraint
+    :param ref_position: New reference position in nm
+    :param k:           New force constant in kJ/mol/nm^2
+    :param x_scale:     New x-scale
+    :param y_scale:     New y-scale 
+    :param z_scale:     New z-scale
+
+    :type index:        :class:`int`
+    :type ref_position: :class:`ost.geom.Vec3`
+    :type k:            :class:`float`
+    :type x_scale:      :class:`float`
+    :type y_scale:      :class:`float`
+    :type z_scale:      :class:`float`
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         set harmonic position restraints
+
+
+  .. method:: SetHarmonicDistanceRestraintParameters(index, length, k)
+
+    Replaces existing parameters for a particular interaction
+
+    :param index:       Index of harmonic distance restraint
+    :param length:      New restraint distance in nm
+    :param k:           New force constant in kJ/mol/nm^2
+
+    :type index:       :class:`int`
+    :type length:      :class:`float`
+    :type k:           :class:`float`
+
+    :raises:            :class:`RuntimeError` when index exceeds number of 
+                         set harmonic distance restraints
+
+
+  .. method:: GetSigmas()
+
+    :returns:           :class:`list` of :class:`float` with previously set 
+                        sigmas
+
+
+  .. method:: GetEpsilons()
+
+    :returns:           :class:`list` of :class:`float` with previously set 
+                        epsilons
+
+
+  .. method:: GetGBSARadii()
+
+    :returns:           :class:`list` of :class:`float` with previously set 
+                        GBSA radii
+
+
+  .. method:: GetOBCScalings()
+
+    :returns:           :class:`list` of :class:`float` with previously set 
+                        OBC scalings
+
+
+  .. method:: GetCharges()
+
+    :returns:           :class:`list` of :class:`float` with previously set 
+                        charges
+
+
+  .. method:: GetMasses()
+
+    :returns:           :class:`list` of :class:`float` with previously set 
+                        masses
+
+
+  .. method:: GetSigma(particle_index)
+
+    :param particle_index: Index of particle
+    :type particle_index: :class:`int`
+
+    :returns:           :class:`float`
+
+    :raises:            :class:`RuntimeError` when particle_index exceeds
+                        number of particles or sigmas have not been set
+
+
+  .. method:: GetEpsilon(particle_index)
+
+    :param particle_index: Index of particle
+    :type particle_index: :class:`int`
+
+    :returns:           :class:`float`
+
+    :raises:            :class:`RuntimeError` when particle_index exceeds
+                        number of particles or epsilons have not been set
+
+
+
+  .. method:: GetGBSARadius(particle_index)
+
+    :param particle_index: Index of particle
+    :type particle_index: :class:`int`
+
+    :returns:          :class:`float`
+
+    :raises:            :class:`RuntimeError` when particle_index exceeds
+                        number of particles or gbsa_radii have not been set
+
+
+  .. method:: GetOBCScaling(particle_index)
+
+    :param particle_index: Index of particle
+    :type particle_index: :class:`int`
+
+    :returns:           :class:`float`
+
+    :raises:            :class:`RuntimeError` when particle_index exceeds
+                        number of particles or obc scalings have not been set
+
+
+  .. method:: GetCharge(particle_index)
+
+    :param particle_index: Index of particle
+    :type particle_index: :class:`float`
+
+    :returns:           :class:`float`
+
+    :raises:            :class:`RuntimeError` when particle_index exceeds
+                        number of particles or charges have not been set
+
+
+  .. method:: GetMass(particle_index)
+
+    :param particle_index: Index of particle
+    :type particle_index: :class:`int`
+
+    :returns:           :class:`float`
+
+    :raises:            :class:`RuntimeError` when particle_index exceeds
+                        number of particles
+
+
+  .. method:: GetHarmonicBondIndices(index_one, index_two)
+
+    :param index_one:   Index of particle 1
+    :param index_one:   Index of particle 2
+
+    :type index_one:    :class:`int`
+    :type index_one:    :class:`int`
+
+    :returns:           :class:`list` of :class:`int` - Indices of 
+                        all harmonic bonds acting on given particle pair
+
+    :raises:            :class:`RuntimeError` when an index exceeds
+                        number of particles in topology
+
+
+  .. method:: GetHarmonicAngleIndices(index_one, index_two, index_three)
+
+    :param index_one:   Index of particle 1
+    :param index_two:   Index of particle 2
+    :param index_three: Index of particle 3
+
+    :type index_one:    :class:`int`
+    :type index_two:    :class:`int`
+    :type index_three:  :class:`int`
+
+    :returns:           :class:`list` of :class:`int` - Indices of all harmonic
+                        angles acting on given particles
+
+    :raises:            :class:`RuntimeError` when an index exceeds
+                        number of particles in topology
+
+
+  .. method:: GetUreyBradleyAngleIndices(index_one, index_two, index_three)
+
+    :param index_one:   Index of particle 1
+    :param index_two:   Index of particle 2
+    :param index_three: Index of particle 3
+
+    :type index_one:    :class:`int`
+    :type index_two:    :class:`int`
+    :type index_three:  :class:`int`
+
+    :returns:           :class:`list` of :class:`int` - Indices of all 
+                        Urey-Bradley angles acting on given particles
+
+    :raises:            :class:`RuntimeError` when an index exceeds
+                        number of particles in topology
+
+
+  .. method:: GetPeriodicDihedralIndices(index_one, index_two, index_three,
+                                         index_four)
+
+    :param index_one:   Index of particle 1
+    :param index_two:   Index of particle 2
+    :param index_three: Index of particle 3
+    :param index_four: Index of particle 4
+
+    :type index_one:    :class:`int`
+    :type index_two:    :class:`int`
+    :type index_three:  :class:`int`
+    :type index_four:  :class:`int`
+
+    :returns:           :class:`list` of :class:`int` - Indices of all periodic
+                        dihedrals acting on given particles
+
+    :raises:            :class:`RuntimeError` when an index exceeds
+                        number of particles in topology
+
+
+  .. method:: GetPeriodicImpropersIndices(index_one, index_two, index_three,
+                                          index_four)
+
+    :param index_one:   Index of particle 1
+    :param index_two:   Index of particle 2
+    :param index_three: Index of particle 3
+    :param index_four: Index of particle 4
+
+    :type index_one:    :class:`int`
+    :type index_two:    :class:`int`
+    :type index_three:  :class:`int`
+    :type index_four:  :class:`int`
+
+    :returns:           :class:`list` of :class:`int` - Indices of all periodic
+                        impropers acting on given particles
+
+    :raises:            :class:`RuntimeError` when an index exceeds
+                        number of particles in topology
+
+
+  .. method:: GetHarmonicImpropersIndices(index_one, index_two, index_three,
+                                          index_four)
+
+    :param index_one:   Index of particle 1
+    :param index_two:   Index of particle 2
+    :param index_three: Index of particle 3
+    :param index_four: Index of particle 4
+
+    :type index_one:    :class:`int`
+    :type index_two:    :class:`int`
+    :type index_three:  :class:`int`
+    :type index_four:  :class:`int`
+
+    :returns:           :class:`list` of :class:`int` - Indices of all harmonic
+                        impropers acting on given particles
+
+    :raises:            :class:`RuntimeError` when an index exceeds
+                        number of particles in topology
+
+
+  .. method:: GetCMapIndices(index_one, index_two, index_three,
+                             index_four, index_five)
+
+    :param index_one:   Index of particle 1
+    :param index_two:   Index of particle 2
+    :param index_three: Index of particle 3
+    :param index_four: Index of particle 4
+    :param index_five: Index of particle 5
+
+    :type index_one:    :class:`int`
+    :type index_two:    :class:`int`
+    :type index_three:  :class:`int`
+    :type index_four:  :class:`int`
+    :type index_five:  :class:`int`
+
+    :returns:           :class:`list` of :class:`int` - Indices of all cmaps
+                        acting on given particles
+
+    :raises:            :class:`RuntimeError` when an index exceeds
+                        number of particles in topology
+
+
+  .. method:: GetLJPairIndex(index_one, index_two)
+
+    :param index_one:   Index of particle 1
+    :param index_two:   Index of particle 2
+
+    :type index_one:    :class:`int`
+    :type index_two:    :class:`int`
+
+    :returns:           :class:`int` Index of LJPair acting on particles,
+                        -1 if there is none
+
+    :raises:            :class:`RuntimeError` when an index exceeds
+                        number of particles in topology
+
+
+  .. method:: GetDistanceConstraintIndex(index_one, index_two)
+
+    :param index_one:   Index of particle 1
+    :param index_one:   Index of particle 2
+
+    :type index_one:    :class:`int`
+    :type index_one:    :class:`int`
+
+    :returns:           :class:`int` - Index of distance constraint acting on 
+                        particles, -1 if there is none
+
+    :raises:            :class:`RuntimeError` when an index exceeds
+                        number of particles in topology
+
+
+  .. method:: GetHarmonicBondIndices(index)
+
+    :param index:       Index of particle
+    :type index:        :class:`int`
+
+    :returns:           :class:`list` of :class:`int` - Indices of all harmonic
+                        bonds this particular particle is involved in
+
+    :raises:            :class:`RuntimeError` when index exceeds
+                        number of particles in topology
+
+
+  .. method:: GetHarmonicAngleIndices(index)
+
+    :param index:       Index of particle
+    :type index:        :class:`int`
+
+    :returns:           :class:`list` of :class:`int` - Indices of all harmonic
+                        angles this particular particle is involved in
+
+    :raises:            :class:`RuntimeError` when index exceeds
+                        number of particles in topology
+
+
+  .. method:: GetUreyBradleyAngleIndices(index)
+
+    :param index:       Index of particle
+    :type index:        :class:`int`
+
+    :returns:           :class:`list` of :class:`int` - Indices of all 
+                        Urey-Bradley angles this particular particle 
+                        is involved in
+
+    :raises:            :class:`RuntimeError` when index exceeds
+                        number of particles in topology
+
+
+  .. method:: GetPeriodicDihedralIndices(index)
+
+    :param index:       Index of particle
+    :type index:        :class:`int`
+
+    :returns:           :class:`list` of :class:`int` - Indices of all periodic
+                        dihedrals this particular particle is involved in
+
+    :raises:            :class:`RuntimeError` when index exceeds
+                        number of particles in topology
+
+
+  .. method:: GetPeriodicImproperIndices(index)
+
+    :param index:       Index of particle
+    :type index:        :class:`int`
+
+    :returns:           :class:`list` of :class:`int` - Indices of all periodic
+                        impropers this particular particle is involved in
+
+    :raises:            :class:`RuntimeError` when index exceeds
+                        number of particles in topology
+
+  .. method:: GetHarmonicImproperIndices(index)
+
+    :param index:       Index of particle
+    :type index:        :class:`int`
+
+    :returns:           :class:`list` of :class:`int` - Indices of all harmonic
+                        impropers this particular particle is involved in
+
+    :raises:            :class:`RuntimeError` when index exceeds
+                        number of particles in topology
+
+
+  .. method:: GetCMapIndices(index)
+
+    :param index:       Index of particle
+    :type index:        :class:`int`
+
+    :returns:           :class:`list` of :class:`int` - Indices of all cmaps
+                        this particular particle is involved in
+
+    :raises:            :class:`RuntimeError` when index exceeds
+                        number of particles in topology
+
+
+  .. method:: GetLJPairIndices(index)
+
+    :param index:       Index of particle
+    :type index:        :class:`int`
+
+    :returns:           :class:`list` of :class:`int` - Indices of all LJ pairs
+                        this particular particle is involved in
+
+    :raises:            :class:`RuntimeError` when index exceeds
+                        number of particles in topology
+
+
+  .. method:: GetDistanceConstraintIndices(index)
+
+    :param index:       Index of particle
+    :type index:        :class:`int`
+
+    :returns:           :class:`list` of :class:`int` - Indices of all distance
+                        constraints this particular particle is involved in
+
+    :raises:            :class:`RuntimeError` when index exceeds
+                        number of particles in topology
+
+
+  .. method:: GetHarmonicPositionRestraintIndices(index)
+
+    :param index:       Index of particle
+    :type index:        :class:`int`
+
+    :returns:           :class:`list` of :class:`int` - Indices of all harmonic
+                        position restraints this particular particle is 
+                        involved in
+
+    :raises:            :class:`RuntimeError` when index exceeds
+                        number of particles in topology
+  
+
+  .. method:: GetHarmonicDistanceRestraintIndices(index)
+
+    :param index:       Index of particle
+    :type index:        :class:`int`
+
+    :returns:           :class:`list` of :class:`int` - Indices of all harmonic
+                        distance restraints this particular particle is 
+                        involved in
+
+    :raises:            :class:`RuntimeError` when index exceeds
+                        number of particles in topology
+
+
+  .. method:: GetNumParticles()
+
+    :returns:           :class:`int`
+
+
+  .. method:: GetNumHarmonicBonds()
+
+    :returns:           :class:`int`
+
+
+  .. method:: GetNumHarmonicAngles()
+
+    :returns:           :class:`int`
+
+
+  .. method:: GetNumUreyBradleyAngles()
+
+    :returns:           :class:`int`
+
+
+  .. method:: GetNumPeriodicDihedrals()
+
+    :returns:           :class:`int`
+
+
+  .. method:: GetNumPeriodicImpropers()
+
+    :returns:           :class:`int`
+
+
+  .. method:: GetNumHarmonicImpropers()
+
+    :returns:           :class:`int`
+
+
+  .. method:: GetNumCMaps()
+
+    :returns:           :class:`int`
+
+
+  .. method:: GetNumLJPairs()
+
+    :returns:           :class:`int`
+
+
+  .. method:: GetNumDistanceConstraints()
+
+    :returns:           :class:`int`
+
+
+  .. method:: GetNumPositionConstraints()
+
+    :returns:           :class:`int`
+
+
+  .. method:: GetNumHarmonicPositionRestraints()
+
+    :returns:           :class:`int`
+
+
+  .. method:: GetNumHarmonicDistanceRestraints()
+
+    :returns:           :class:`int`
+
+
+  .. method:: GetNumExclusions()
+
+    :returns:           :class:`int`
\ No newline at end of file
diff --git a/modules/mol/mm/pymod/CMakeLists.txt b/modules/mol/mm/pymod/CMakeLists.txt
new file mode 100644
index 0000000000000000000000000000000000000000..3156429e1c24cf25b6c7685fd6507254a02e0f8f
--- /dev/null
+++ b/modules/mol/mm/pymod/CMakeLists.txt
@@ -0,0 +1,23 @@
+set(OST_MOL_MM_PYMOD_SOURCES
+  export_forcefield.cc
+  export_settings.cc
+  export_simulation.cc
+  export_openmm.cc
+  export_observers.cc
+  export_ff_reader.cc
+  export_interaction.cc
+  export_buildingblock.cc
+  export_block_modifiers.cc
+  export_topology.cc
+  export_modeller.cc
+  wrap_mol_mm.cc
+)
+
+set(OST_MOL_MM_PYMOD_MODULES
+  "__init__.py"
+)
+
+if (NOT ENABLE_STATIC)
+  pymod(NAME mol_mm OUTPUT_DIR ost/mol/mm CPP ${OST_MOL_MM_PYMOD_SOURCES}
+        PY ${OST_MOL_MM_PYMOD_MODULES})
+endif()
diff --git a/modules/mol/mm/pymod/__init__.py b/modules/mol/mm/pymod/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..5c1138cd0354113ea8d1744912a0cc0868202d2b
--- /dev/null
+++ b/modules/mol/mm/pymod/__init__.py
@@ -0,0 +1,9 @@
+import os.path
+from _ost_mol_mm import *
+import ost	
+
+def LoadAMBERForcefield():
+  return Forcefield.Load(os.path.join(ost.GetSharedDataPath(),'forcefields','AMBER03.dat'))
+
+def LoadCHARMMForcefield():
+  return Forcefield.Load(os.path.join(ost.GetSharedDataPath(),'forcefields','CHARMM27.dat'))
diff --git a/modules/mol/mm/pymod/export_block_modifiers.cc b/modules/mol/mm/pymod/export_block_modifiers.cc
new file mode 100644
index 0000000000000000000000000000000000000000..a6570e3aa5e342ae3724c54f827ec6b822e0d0c6
--- /dev/null
+++ b/modules/mol/mm/pymod/export_block_modifiers.cc
@@ -0,0 +1,100 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <boost/python.hpp>
+#include <ost/mol/mm/block_modifiers.hh>
+#include <ost/mol/mm/gromacs_block_modifiers.hh>
+#include <ost/mol/mm/heuristic_block_modifiers.hh>
+
+using namespace boost::python;
+
+namespace{
+
+template<typename T>
+std::vector<T> ListToVec(const boost::python::list& l){
+  std::vector<T> vec;
+  for (int i = 0; i < boost::python::len(l); ++i){
+    vec.push_back(boost::python::extract<T>(l[i]));
+  }
+  return vec;
+}
+
+void WrapAddAddRule(ost::mol::mm::GromacsBlockModifierPtr p,
+                    int number, int method, 
+                    const boost::python::list& atom_names,
+                    const boost::python::list& anchors, 
+                    const String& type, Real new_charge){
+  std::vector<String> v_atom_names = ListToVec<String>(atom_names);
+  std::vector<String> v_anchors = ListToVec<String>(anchors);
+
+  p->AddAddRule(number,method,v_atom_names,v_anchors,type,new_charge);
+
+}
+
+void WrapAddHydrogenRule(ost::mol::mm::GromacsHydrogenConstructorPtr p, int number, int method, 
+                         const boost::python::list& hydrogen_names, 
+                         const boost::python::list& anchors){
+  std::vector<String> v_hydrogen_names = ListToVec<String>(hydrogen_names);
+  std::vector<String> v_anchors = ListToVec<String>(anchors);
+  p->AddHydrogenRule(number,method,v_hydrogen_names,v_anchors);
+}
+
+
+}
+
+
+void export_BlockModifiers()
+{
+
+  class_<ost::mol::mm::HydrogenConstructor, boost::noncopyable>("HydrogenConstructor",no_init);
+  boost::python::register_ptr_to_python<ost::mol::mm::HydrogenConstructorPtr>();
+
+  class_<ost::mol::mm::BlockModifier, boost::noncopyable>("BlockModifier",no_init);
+  boost::python::register_ptr_to_python<ost::mol::mm::BlockModifierPtr>();
+
+  class_<ost::mol::mm::GromacsHydrogenConstructor, bases<ost::mol::mm::HydrogenConstructor> >("GromacsHydrogenConstructor", init<>())
+    .def("ApplyOnBuildingBlock",&ost::mol::mm::GromacsHydrogenConstructor::ApplyOnBuildingBlock,(arg("block")))
+    .def("ApplyOnResidue",&ost::mol::mm::GromacsHydrogenConstructor::ApplyOnResidue,(arg("residue"),arg("editor")))
+    .def("AddHydrogenRule",&WrapAddHydrogenRule,(arg("number"),arg("method"),arg("hydrogen_names"),arg("anchors")))
+  ;
+
+  class_<ost::mol::mm::GromacsBlockModifier, bases<ost::mol::mm::BlockModifier> >("GromacsBlockModifier", init<>())
+    .def("ApplyOnBuildingBlock",&ost::mol::mm::GromacsBlockModifier::ApplyOnBuildingBlock,(arg("block")))
+    .def("ApplyOnResidue",&ost::mol::mm::GromacsBlockModifier::ApplyOnResidue,(arg("residue"),arg("editor")))
+    .def("AddReplaceRule",&ost::mol::mm::GromacsBlockModifier::AddReplaceRule,(arg("name"),arg("new_name"),arg("new_type"),arg("new_charge")))
+    .def("AddAddRule",&WrapAddAddRule,(arg("number"),arg("method"),arg("atom_names"),arg("anchors"),arg("type"),arg("charge")))
+    .def("AddBond",&ost::mol::mm::GromacsBlockModifier::AddBond,(arg("bond")))
+    .def("AddAngle",&ost::mol::mm::GromacsBlockModifier::AddAngle,(arg("angle")))
+    .def("AddDihedral",&ost::mol::mm::GromacsBlockModifier::AddDihedral,(arg("dihedral")))
+    .def("AddImproper",&ost::mol::mm::GromacsBlockModifier::AddImproper,(arg("improper")))
+    .def("AddCMap",&ost::mol::mm::GromacsBlockModifier::AddCMap,(arg("cmap")))
+    .def("AddDeleteAtom",&ost::mol::mm::GromacsBlockModifier::AddDeleteAtom,(arg("name")))
+  ;
+ 
+  class_<ost::mol::mm::HeuristicHydrogenConstructor, bases<ost::mol::mm::HydrogenConstructor> >("HeuristicHydrogenConstructor", init<ost::mol::mm::BuildingBlockPtr>())
+  .def("ApplyOnBuildingBlock",&ost::mol::mm::HeuristicHydrogenConstructor::ApplyOnBuildingBlock,(arg("block")))
+  .def("ApplyOnResidue",&ost::mol::mm::HeuristicHydrogenConstructor::ApplyOnResidue,(arg("residue"),arg("editor")))
+  ;
+
+  boost::python::register_ptr_to_python<ost::mol::mm::GromacsHydrogenConstructorPtr>();
+  boost::python::register_ptr_to_python<ost::mol::mm::GromacsBlockModifierPtr>();
+  boost::python::register_ptr_to_python<ost::mol::mm::HeuristicHydrogenConstructorPtr>();
+  
+}
+
diff --git a/modules/mol/mm/pymod/export_buildingblock.cc b/modules/mol/mm/pymod/export_buildingblock.cc
new file mode 100644
index 0000000000000000000000000000000000000000..514b7919b86cc9462921ba8f5cc5073251660786
--- /dev/null
+++ b/modules/mol/mm/pymod/export_buildingblock.cc
@@ -0,0 +1,109 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <limits>
+#include <boost/python.hpp>
+#include <ost/mol/mm/buildingblock.hh>
+#include <ost/log.hh>
+#include <vector>
+
+using namespace boost::python;
+
+namespace{
+
+template<typename T>
+boost::python::list VecToList(std::vector<T>& vec){
+  boost::python::list l;
+  for(typename std::vector<T>::iterator it=vec.begin();it!=vec.end();++it){
+    l.append(*it);
+  }
+  return l;
+}
+
+bool WrapMatch(ost::mol::mm::BuildingBlockPtr p, const ost::mol::ResidueHandle& res, bool match_connectivity){
+  String match_fail_info;
+  bool match = p->Match(res,match_connectivity,match_fail_info);
+  if(!match){
+    std::stringstream ss;
+    ss << "Residue "<< res.GetQualifiedName() << " does not match the building";
+    ss << "block. "<<match_fail_info;
+    LOG_INFO(ss.str());
+  }
+  return match;
+}
+
+boost::python::list WrapGetAtoms(ost::mol::mm::BuildingBlockPtr p){
+  std::vector<String> atoms = p->GetAtoms();
+  return VecToList<String>(atoms);
+}
+
+boost::python::list WrapGetTypes(ost::mol::mm::BuildingBlockPtr p){
+    std::vector<String> types = p->GetTypes();
+  return VecToList<String>(types);
+}
+
+boost::python::list WrapGetCharges(ost::mol::mm::BuildingBlockPtr p){
+  std::vector<Real> charges = p->GetCharges();
+  return VecToList<Real>(charges);
+}
+
+boost::python::list WrapGetMasses(ost::mol::mm::BuildingBlockPtr p){
+  std::vector<Real> masses = p->GetMasses();
+  return VecToList<Real>(masses);
+}
+
+
+}
+
+void export_Buildingblock()
+{
+  class_<ost::mol::mm::BuildingBlock>("BuildingBlock",init<>())
+    .def("Match",&WrapMatch,(arg("res"),arg("match_connectivity")=true))
+    .def("Connect",&ost::mol::mm::BuildingBlock::Connect,(arg("residue"),arg("xcs_editor")))
+    .def("GetAtoms",&WrapGetAtoms)
+    .def("GetTypes",&WrapGetTypes)
+    .def("GetCharges",&WrapGetCharges)
+    .def("GetMasses",&WrapGetMasses)
+    .def("GetType",&ost::mol::mm::BuildingBlock::GetType,(arg("name")))
+    .def("GetCharge",&ost::mol::mm::BuildingBlock::GetCharge,(arg("name")))
+    .def("GetMass",&ost::mol::mm::BuildingBlock::GetMass,(arg("name")))
+    .def("GetBonds",&ost::mol::mm::BuildingBlock::GetBonds)
+    .def("GetAngles",&ost::mol::mm::BuildingBlock::GetAngles)
+    .def("GetDihedrals",&ost::mol::mm::BuildingBlock::GetDihedrals)
+    .def("GetImpropers",&ost::mol::mm::BuildingBlock::GetImpropers)
+    .def("GetCMaps",&ost::mol::mm::BuildingBlock::GetCMaps)
+    .def("GetExclusions",&ost::mol::mm::BuildingBlock::GetExclusions)
+    .def("GetConstraints",&ost::mol::mm::BuildingBlock::GetConstraints)
+    .def("AddAtom",&ost::mol::mm::BuildingBlock::AddAtom,(arg("name"),arg("type"),arg("charge"),arg("mass")=std::numeric_limits<Real>::quiet_NaN()))
+    .def("AddBond",&ost::mol::mm::BuildingBlock::AddBond,(arg("bond"),arg("replace_existing")=false))
+    .def("AddAngle",&ost::mol::mm::BuildingBlock::AddAngle,(arg("angle"),arg("replace_existing")=false))
+    .def("AddDihedral",&ost::mol::mm::BuildingBlock::AddDihedral,(arg("dihedral"),arg("replace_existing")=false))
+    .def("AddImproper",&ost::mol::mm::BuildingBlock::AddImproper,(arg("improper"),arg("replace_existing")=false))
+    .def("AddExclusion",&ost::mol::mm::BuildingBlock::AddExclusion,(arg("exclusion"),arg("replace_existing")=false))
+    .def("AddCMap",&ost::mol::mm::BuildingBlock::AddCMap,(arg("cmap"),arg("replace_existing")=false))
+    .def("AddConstraint",&ost::mol::mm::BuildingBlock::AddConstraint,(arg("constraint"),arg("replace_existing")=false))
+    .def("RemoveAtom",&ost::mol::mm::BuildingBlock::RemoveAtom,(arg("name")))
+    .def("ReplaceAtom",&ost::mol::mm::BuildingBlock::ReplaceAtom,(arg("name"),arg("new_name"),arg("new_type"),arg("new_charge"),arg("new_mass")=std::numeric_limits<Real>::quiet_NaN()))
+    .def("RemoveInteractionsToNext",&ost::mol::mm::BuildingBlock::RemoveInteractionsToNext)
+    .def("RemoveInteractionsToPrev",&ost::mol::mm::BuildingBlock::RemoveInteractionsToPrev)
+  ;
+
+  boost::python::register_ptr_to_python<ost::mol::mm::BuildingBlockPtr>();
+
+}
diff --git a/modules/mol/mm/pymod/export_ff_reader.cc b/modules/mol/mm/pymod/export_ff_reader.cc
new file mode 100644
index 0000000000000000000000000000000000000000..b8a4fa6a894f9635a50d37c4b7c550941ecdd631
--- /dev/null
+++ b/modules/mol/mm/pymod/export_ff_reader.cc
@@ -0,0 +1,42 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <boost/python.hpp>
+#include <ost/mol/mm/ff_reader.hh>
+#include <ost/mol/residue_handle.hh>
+
+using namespace boost::python;
+using namespace ost::mol::mm;
+
+
+void export_FFReader()
+{
+  class_<ost::mol::mm::FFReader>("FFReader",init<String>())
+    .def("ReadGromacsForcefield",&ost::mol::mm::FFReader::ReadGromacsForcefield)
+    .def("SetPreprocessorDefinition",&ost::mol::mm::FFReader::SetPreprocessorDefinition,(arg("definition")))
+    .def("GetForcefield",&ost::mol::mm::FFReader::GetForcefield)
+    .def("SetForcefield",&ost::mol::mm::FFReader::SetForcefield,(arg("forcefield")))
+    .def("ReadResidueDatabase",&ost::mol::mm::FFReader::ReadResidueDatabase,(arg("basename")))
+    .def("ReadITP",&ost::mol::mm::FFReader::ReadITP,(arg("basename")))   
+    .def("ReadCHARMMPRM",&ost::mol::mm::FFReader::ReadCHARMMPRM,(arg("basename"))) 
+    .def("ReadCHARMMRTF",&ost::mol::mm::FFReader::ReadCHARMMRTF,(arg("basename")))                                                                      
+  ;
+
+  boost::python::register_ptr_to_python<ost::mol::mm::FFReaderPtr>();
+}
\ No newline at end of file
diff --git a/modules/mol/mm/pymod/export_forcefield.cc b/modules/mol/mm/pymod/export_forcefield.cc
new file mode 100644
index 0000000000000000000000000000000000000000..096b6eef433b075dd3e47ab0d08791103f44a879
--- /dev/null
+++ b/modules/mol/mm/pymod/export_forcefield.cc
@@ -0,0 +1,93 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <boost/python.hpp>
+#include <boost/shared_ptr.hpp>
+#include <ost/mol/mm/forcefield.hh>
+
+using namespace boost::python;
+
+namespace{
+
+
+  ost::mol::mm::InteractionPtr GetLJOneType(ost::mol::mm::ForcefieldPtr p, String type){
+    return p->GetLJ(type);
+  }
+
+  ost::mol::mm::InteractionPtr GetLJTwoTypes(ost::mol::mm::ForcefieldPtr p, String type1, String type2, bool pair){
+    return p->GetLJ(type1,type2,pair);
+  }
+
+}
+
+
+void export_Forcefield()
+{
+
+  class_<ost::mol::mm::Forcefield>("Forcefield", init<>())
+    .def("Load",&ost::mol::mm::Forcefield::Load,(arg("filename"))).staticmethod("Load")
+    .def("Save",&ost::mol::mm::Forcefield::Save,(arg("filename")))
+    .def("GetBuildingBlock",&ost::mol::mm::Forcefield::GetBuildingBlock,(arg("name")))
+    .def("GetBlockModifier",&ost::mol::mm::Forcefield::GetBlockModifier,(arg("name")))
+    .def("GetAtomType",&ost::mol::mm::Forcefield::GetAtomType,(arg("res_name"),arg("atom_name")))
+    .def("GetHydrogenConstructor",&ost::mol::mm::Forcefield::GetHydrogenConstructor,(arg("name")))
+    .def("GetNTerModifier",&ost::mol::mm::Forcefield::GetNTerModifier,(arg("residue_name"),arg("ter_name")=""))
+    .def("GetCTerModifier",&ost::mol::mm::Forcefield::GetCTerModifier,(arg("residue_name"),arg("ter_name")=""))
+    .def("GetBond",&ost::mol::mm::Forcefield::GetBond,(arg("atom_type_1"),arg("atom_type_2")))
+    .def("GetAngle",&ost::mol::mm::Forcefield::GetAngle,(arg("atom_type_1"),arg("atom_type_2"),arg("atom_type_3")))
+    .def("GetDihedrals",&ost::mol::mm::Forcefield::GetDihedrals,(arg("atom_type_1"),arg("atom_type_2"),arg("atom_type_3"),arg("atom_type_4")))
+    .def("GetImpropers",&ost::mol::mm::Forcefield::GetImpropers,(arg("atom_type_1"),arg("atom_type_2"),arg("atom_type_3"),arg("atom_type_4")))
+    .def("GetCMap",&ost::mol::mm::Forcefield::GetCMap,(arg("atom_type_1"),arg("atom_type_2"),arg("atom_type_3"),arg("atom_type_4"),arg("atom_type_5")))
+    .def("GetImplicitGenborn",&ost::mol::mm::Forcefield::GetImplicitGenborn,(arg("atom_type")))
+    .def("GetLJ",&GetLJOneType,(arg("atom_type")))
+    .def("GetLJ",&GetLJTwoTypes,(arg("atom_type_1"),arg("atom_type_2")))
+    .def("GetConstraint",&ost::mol::mm::Forcefield::GetConstraint,(arg("atom_type_1"),arg("atom_type_2")))
+    .def("GetMass",&ost::mol::mm::Forcefield::GetMass,(arg("atom_type")))
+    .def("GetFudgeLJ",&ost::mol::mm::Forcefield::GetFudgeLJ)
+    .def("GetFudgeQQ",&ost::mol::mm::Forcefield::GetFudgeQQ)
+    .def("AddBuildingBlock",&ost::mol::mm::Forcefield::AddBuildingBlock,(arg("name"),arg("block")))
+    .def("AddBond",&ost::mol::mm::Forcefield::AddBond,(arg("bond"))) 
+    .def("AddAngle",&ost::mol::mm::Forcefield::AddAngle,(arg("angle"))) 
+    .def("AddDihedral",&ost::mol::mm::Forcefield::AddDihedral,(arg("dihedral"))) 
+    .def("AddImproper",&ost::mol::mm::Forcefield::AddImproper,(arg("improper"))) 
+    .def("AddCMap",&ost::mol::mm::Forcefield::AddCMap,(arg("cmap"))) 
+    .def("AddImplicitGenborn",&ost::mol::mm::Forcefield::AddImplicitGenborn,(arg("implicit_genborn"))) 
+    .def("AddLJ",&ost::mol::mm::Forcefield::AddLJ,(arg("lj"))) 
+    .def("AddLJPair",&ost::mol::mm::Forcefield::AddLJPair,(arg("lj_pair"))) 
+    .def("AddMass",&ost::mol::mm::Forcefield::AddMass,(arg("mass"))) 
+    .def("AddResidueRenamingRule",&ost::mol::mm::Forcefield::AddResidueRenamingRule,(arg("name"),arg("main_name"),arg("n_ter_name"),arg("c_ter_name"),arg("two_ter_name"))) 
+    .def("AddAtomRenamingRule",&ost::mol::mm::Forcefield::AddAtomRenamingRule,(arg("res_name"),arg("old_atom_name"),arg("new_atom_name"))) 
+    .def("AddHydrogenConstructor",&ost::mol::mm::Forcefield::AddHydrogenConstructor,(arg("name"),arg("hydrogen_constructor"))) 
+    .def("AddBlockModifier",&ost::mol::mm::Forcefield::AddBlockModifier,(arg("name"),arg("modifier"))) 
+    .def("SetStandardCTer",&ost::mol::mm::Forcefield::SetStandardCTer,(arg("res_name"),arg("ter_name")))
+    .def("SetStandardNTer",&ost::mol::mm::Forcefield::SetStandardNTer,(arg("res_name"),arg("ter_name")))
+    .def("SetFudgeLJ",&ost::mol::mm::Forcefield::SetFudgeLJ,(arg("fudge_factor"))) 
+    .def("SetFudgeQQ",&ost::mol::mm::Forcefield::SetFudgeQQ,(arg("fudge_factor"))) 
+    .def("SetGenPairs",&ost::mol::mm::Forcefield::SetGenPairs,(arg("set_gen_pairs_flag"))) 
+    .def("GetResidueRenamingMain",&ost::mol::mm::Forcefield::GetResidueRenamingMain,(arg("res_name")))
+    .def("GetResidueRenamingNTer",&ost::mol::mm::Forcefield::GetResidueRenamingNTer,(arg("res_name")))
+    .def("GetResidueRenamingCTer",&ost::mol::mm::Forcefield::GetResidueRenamingCTer,(arg("res_name")))
+    .def("GetResidueRenamingTwoTer",&ost::mol::mm::Forcefield::GetResidueRenamingTwoTer,(arg("res_name")))
+    .def("GetAtomRenaming",&ost::mol::mm::Forcefield::GetAtomRenaming,(arg("res_name"),arg("atom_name")))
+    .def("AssignFFSpecificNames",&ost::mol::mm::Forcefield::AssignFFSpecificNames,(arg("ent"),arg("reverse")=false))
+  ;
+
+  boost::python::register_ptr_to_python<ost::mol::mm::ForcefieldPtr>();
+  
+}
diff --git a/modules/mol/mm/pymod/export_index.cc b/modules/mol/mm/pymod/export_index.cc
new file mode 100644
index 0000000000000000000000000000000000000000..240f22f4b10c698d11377e49ae76888894aec78a
--- /dev/null
+++ b/modules/mol/mm/pymod/export_index.cc
@@ -0,0 +1,74 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <boost/python.hpp>
+#include <ost/mol/mm/index.hh>
+
+using namespace boost::python;
+
+namespace{
+
+template<typename T>
+int Get(T index, uint i){
+  return index[i];
+}
+
+template<typename T>
+void Set(T& index, uint i, uint v){
+  index[i] = v;
+}
+}
+
+void export_Index()
+{
+  class_<ost::mol::mm::Index<1> >("Index1", init<uint>())
+    .def("__getitem__",Get<ost::mol::mm::Index<1> >)
+    .def("__setitem__",Set<ost::mol::mm::Index<1> >)
+  ;
+
+  class_<ost::mol::mm::Index<2> >("Index2", init<uint, uint>())
+    .def("__getitem__",Get<ost::mol::mm::Index<2> >)
+    .def("__setitem__",Set<ost::mol::mm::Index<2> >)
+  ;
+
+  class_<ost::mol::mm::Index<3> >("Index3", init<uint, uint, uint>())
+    .def("__getitem__",Get<ost::mol::mm::Index<3> >)
+    .def("__setitem__",Set<ost::mol::mm::Index<3> >)
+  ;
+
+  class_<ost::mol::mm::Index<4> >("Index4", init<uint, uint, uint,uint>())
+    .def("__getitem__",Get<ost::mol::mm::Index<4> >)
+    .def("__setitem__",Set<ost::mol::mm::Index<4> >)
+  ;
+
+  class_<ost::mol::mm::Index<5> >("Index5", init<uint, uint, uint, uint, uint>())
+    .def("__getitem__",Get<ost::mol::mm::Index<5> >)
+    .def("__setitem__",Set<ost::mol::mm::Index<5> >)
+  ;
+
+  class_<ost::mol::mm::Index<6> >("Index6", init<uint, uint, uint, uint, uint, uint>())
+    .def("__getitem__",Get<ost::mol::mm::Index<6> >)
+    .def("__setitem__",Set<ost::mol::mm::Index<6> >)
+  ;
+
+  class_<ost::mol::mm::Index<7> >("Index7", init<uint, uint, uint, uint, uint, uint, uint>())
+    .def("__getitem__",Get<ost::mol::mm::Index<7> >)
+    .def("__setitem__",Set<ost::mol::mm::Index<7> >)
+  ;
+}
diff --git a/modules/mol/mm/pymod/export_interaction.cc b/modules/mol/mm/pymod/export_interaction.cc
new file mode 100644
index 0000000000000000000000000000000000000000..57dc7a911b8fe67996fdc7355024265c8e370595
--- /dev/null
+++ b/modules/mol/mm/pymod/export_interaction.cc
@@ -0,0 +1,127 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <boost/python.hpp>
+#include <boost/python/suite/indexing/vector_indexing_suite.hpp>
+
+#include <ost/mol/mm/interaction.hh>
+
+#include <vector>
+
+using namespace boost::python;
+
+namespace{
+
+template<typename T>
+boost::python::list VecToList(std::vector<T>& vec){
+  boost::python::list l;
+  for(typename std::vector<T>::iterator it=vec.begin();it!=vec.end();++it){
+    l.append(*it);
+  }
+  return l;
+}
+
+template<typename T>
+std::vector<T> ListToVec(boost::python::list& l){
+  std::vector<T> vec;
+  for (int i = 0; i < boost::python::len(l); ++i){
+    vec.push_back(boost::python::extract<T>(l[i]));
+  }
+  return vec;
+}
+
+boost::python::list WrapGetNames(ost::mol::mm::InteractionPtr p){
+  std::vector<String> names = p->GetNames();
+  return VecToList<String>(names);
+}
+
+boost::python::list WrapGetTypes(ost::mol::mm::InteractionPtr p){
+    std::vector<String> types = p->GetTypes();
+  return VecToList<String>(types);
+}
+
+boost::python::list WrapGetParam(ost::mol::mm::InteractionPtr p){
+  std::vector<Real> param = p->GetParam();
+  return VecToList<Real>(param);
+}
+
+void WrapSetNames(ost::mol::mm::InteractionPtr p, boost::python::list l){
+  std::vector<String> names = ListToVec<String>(l);
+  p->SetNames(names); 
+}
+
+void WrapSetTypes(ost::mol::mm::InteractionPtr p, boost::python::list l){
+  std::vector<String> types = ListToVec<String>(l);
+  p->SetTypes(types); 
+}
+
+void WrapSetParam(ost::mol::mm::InteractionPtr p, boost::python::list l){
+  std::vector<Real> param = ListToVec<Real>(l);
+  p->SetParam(param); 
+}
+
+}
+
+void export_Interaction()
+{
+
+  enum_<ost::mol::mm::FuncType>("FuncType")
+    .value("Invalid", ost::mol::mm::Invalid)
+    .value("HarmonicBond", ost::mol::mm::HarmonicBond)
+    .value("HarmonicAngle", ost::mol::mm::HarmonicAngle)
+    .value("UreyBradleyAngle", ost::mol::mm::UreyBradleyAngle)
+    .value("PeriodicDihedral", ost::mol::mm::PeriodicDihedral)
+    .value("PeriodicImproper", ost::mol::mm::PeriodicImproper)
+    .value("HarmonicImproper", ost::mol::mm::HarmonicImproper)
+    .value("CMap", ost::mol::mm::CMap)
+    .value("LJ", ost::mol::mm::LJ)
+    .value("LJPair", ost::mol::mm::LJPair)
+    .value("GBSA", ost::mol::mm::GBSA)
+    .value("DistanceConstraint", ost::mol::mm::DistanceConstraint)
+    .value("Exclusion", ost::mol::mm::Exclusion)
+    .value("HarmonicPositionRestraint", ost::mol::mm::HarmonicPositionRestraint)
+    .value("HarmonicDistanceRestraint", ost::mol::mm::HarmonicDistanceRestraint)
+  ;
+
+  class_<ost::mol::mm::Interaction>("Interaction",init<ost::mol::mm::FuncType>())
+    .def("SetTypes",&WrapSetTypes,(arg("types")))
+    .def("SetNames",&WrapSetNames,(arg("names")))
+    .def("SetParam",&WrapSetParam,(arg("parameters")))
+    .def("GetTypes",&WrapGetTypes)
+    .def("GetNames",&WrapGetNames)
+    .def("GetParam",&WrapGetParam)
+    .def("GetAtoms",&ost::mol::mm::Interaction::GetAtoms,(arg("residue")))
+    .def("GetFuncType",&ost::mol::mm::Interaction::GetFuncType)
+    .def("ReplaceAtom",&ost::mol::mm::Interaction::ReplaceAtom,(arg("name"),arg("new_name"),arg("new_type")))
+    .def("MatchTypes",&ost::mol::mm::Interaction::MatchTypes,(arg("types")))
+    .def("MatchNames",&ost::mol::mm::Interaction::MatchNames,(arg("names")))
+    .def("HasName",&ost::mol::mm::Interaction::HasName,(arg("name")))
+    .def("HasType",&ost::mol::mm::Interaction::HasType,(arg("type")))
+    .def("IsParametrized",&ost::mol::mm::Interaction::IsParametrized)
+    .def("HasTypeWildcard",&ost::mol::mm::Interaction::HasTypeWildcard)
+    .def("HasNameWildcard",&ost::mol::mm::Interaction::HasNameWildcard)    
+  ;
+
+  boost::python::register_ptr_to_python<ost::mol::mm::InteractionPtr>();
+
+  class_<std::vector<ost::mol::mm::InteractionPtr> >("InteractionList", init<>())
+    .def(vector_indexing_suite<std::vector<ost::mol::mm::InteractionPtr>, true>())
+  ;
+
+}
diff --git a/modules/mol/mm/pymod/export_modeller.cc b/modules/mol/mm/pymod/export_modeller.cc
new file mode 100644
index 0000000000000000000000000000000000000000..c0f71609d11a1bc5f2b1a40cb98c9cababee0d00
--- /dev/null
+++ b/modules/mol/mm/pymod/export_modeller.cc
@@ -0,0 +1,36 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <boost/python.hpp>
+#include <ost/mol/mm/block_modifiers.hh>
+#include <ost/mol/mm/modeller.hh>
+
+using namespace boost::python;
+
+
+void export_Modeller()
+{
+
+  class_<ost::mol::mm::Modeller>("MMModeller", no_init)
+    .def("GenerateDisulfidBonds",&ost::mol::mm::Modeller::GenerateDisulfidBonds,(arg("ent"))).staticmethod("GenerateDisulfidBonds")
+    .def("AssignPDBNaming",&ost::mol::mm::Modeller::AssignPDBNaming,(arg("ent"))).staticmethod("AssignPDBNaming")
+    .def("AssignGromacsNaming",&ost::mol::mm::Modeller::AssignGromacsNaming,(arg("ent"))).staticmethod("AssignGromacsNaming")
+  ;
+  
+}
\ No newline at end of file
diff --git a/modules/mol/mm/pymod/export_observers.cc b/modules/mol/mm/pymod/export_observers.cc
new file mode 100644
index 0000000000000000000000000000000000000000..47a0236125a4033bc8529d10c5107d62c290c1e0
--- /dev/null
+++ b/modules/mol/mm/pymod/export_observers.cc
@@ -0,0 +1,44 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <boost/python.hpp>
+#include <boost/shared_ptr.hpp>
+#include <ost/mol/mm/observer.hh>
+
+using namespace boost::python;
+
+
+void export_Observers()
+{
+
+  class_<ost::mol::mm::Observer, boost::noncopyable>("Observer", no_init);
+
+  class_<ost::mol::mm::TrajObserver, bases<ost::mol::mm::Observer> >("TrajObserver", init<int>())
+    .def("GetTraj", &ost::mol::mm::TrajObserver::GetTraj)
+  ;
+
+  //noncopyable, because TrajWriter contains a unique ofstream
+  class_<ost::mol::mm::TrajWriter, boost::noncopyable, bases<ost::mol::mm::Observer> >("TrajWriter", init<int, String, String>())
+    .def("Finalize", &ost::mol::mm::TrajWriter::Finalize)
+  ;
+
+  boost::python::register_ptr_to_python<ost::mol::mm::ObserverPtr>();
+  boost::python::register_ptr_to_python<ost::mol::mm::TrajObserverPtr>();
+  boost::python::register_ptr_to_python<ost::mol::mm::TrajWriterPtr>();
+}
\ No newline at end of file
diff --git a/modules/mol/mm/pymod/export_openmm.cc b/modules/mol/mm/pymod/export_openmm.cc
new file mode 100644
index 0000000000000000000000000000000000000000..38a09d305b51edd0df5278644832633f2100498e
--- /dev/null
+++ b/modules/mol/mm/pymod/export_openmm.cc
@@ -0,0 +1,71 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <boost/python.hpp>
+#include <OpenMM.h>
+
+using namespace boost::python;
+
+
+
+void export_OpenMM()
+{
+
+  //we have to tell boost, that the Integrator class is around...
+  class_<OpenMM::Integrator, boost::noncopyable>("Integrator",no_init)
+    .def("GetConstraintTolerance",&OpenMM::Integrator::getConstraintTolerance)
+    .def("SetConstraintTolerance",&OpenMM::Integrator::setConstraintTolerance,(arg("tolerance")))
+  ;
+
+  class_<OpenMM::VerletIntegrator, bases<OpenMM::Integrator> >("VerletIntegrator", init<double>());
+
+  class_<OpenMM::BrownianIntegrator, bases<OpenMM::Integrator> >("BrownianIntegrator", init<double,double,double>())
+    .def("GetTemperature",&OpenMM::BrownianIntegrator::getTemperature)
+    .def("SetTemperature",&OpenMM::BrownianIntegrator::setTemperature,(arg("temperature")))
+    .def("GetFriction",&OpenMM::BrownianIntegrator::getFriction)
+    .def("SetFriction",&OpenMM::BrownianIntegrator::setFriction,(arg("friction")))
+    .def("GetRandomNumberSeed",&OpenMM::BrownianIntegrator::getRandomNumberSeed)
+    .def("SetRandomNumberSeed",&OpenMM::BrownianIntegrator::setRandomNumberSeed,(arg("seed")))
+  ;
+
+  class_<OpenMM::LangevinIntegrator, bases<OpenMM::Integrator> >("LangevinIntegrator", init<double,double,double>())
+    .def("GetTemperature",&OpenMM::LangevinIntegrator::getTemperature)
+    .def("SetTemperature",&OpenMM::LangevinIntegrator::setTemperature,(arg("temperature")))
+    .def("GetFriction",&OpenMM::LangevinIntegrator::getFriction)
+    .def("SetFriction",&OpenMM::LangevinIntegrator::setFriction,(arg("friction")))
+    .def("GetRandomNumberSeed",&OpenMM::LangevinIntegrator::getRandomNumberSeed)
+    .def("SetRandomNumberSeed",&OpenMM::LangevinIntegrator::setRandomNumberSeed,(arg("seed")))
+  ;
+
+  class_<OpenMM::VariableVerletIntegrator, bases<OpenMM::Integrator> >("VariableVerletIntegrator",init<double>())
+    .def("GetErrorTolerance", &OpenMM::VariableVerletIntegrator::getErrorTolerance)
+    .def("SetErrorTolerance", &OpenMM::VariableVerletIntegrator::setErrorTolerance,(arg("tolerance")))
+  ;
+
+  class_<OpenMM::VariableLangevinIntegrator, bases<OpenMM::Integrator> >("VaribaleLangevinIntegrator", init<double,double,double>())
+    .def("GetTemperature",&OpenMM::VariableLangevinIntegrator::getTemperature)
+    .def("SetTemperature",&OpenMM::VariableLangevinIntegrator::setTemperature,(arg("temperature")))
+    .def("GetFriction",&OpenMM::VariableLangevinIntegrator::getFriction)
+    .def("SetFriction",&OpenMM::VariableLangevinIntegrator::setFriction,(arg("friction")))
+    .def("GetRandomNumberSeed",&OpenMM::VariableLangevinIntegrator::getRandomNumberSeed)
+    .def("SetRandomNumberSeed",&OpenMM::VariableLangevinIntegrator::setRandomNumberSeed,(arg("seed")))
+    .def("GetErrorTolerance",&OpenMM::VariableLangevinIntegrator::getErrorTolerance)
+    .def("SetErrorTolerance",&OpenMM::VariableLangevinIntegrator::setErrorTolerance,(arg("tolerance")))
+  ;
+}
diff --git a/modules/mol/mm/pymod/export_settings.cc b/modules/mol/mm/pymod/export_settings.cc
new file mode 100644
index 0000000000000000000000000000000000000000..7e38401d68d3888b89e0cd9d021e07077b9b7c9b
--- /dev/null
+++ b/modules/mol/mm/pymod/export_settings.cc
@@ -0,0 +1,110 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <boost/python.hpp>
+#include <ost/mol/mm/settings.hh>
+#include <OpenMM.h> //for definition of Integrator
+#include <boost/python/suite/indexing/map_indexing_suite.hpp>
+
+using namespace boost::python;
+
+
+void export_Settings()
+{
+
+  enum_<ost::mol::mm::Platform>("Platform")
+    .value("Reference", ost::mol::mm::Reference)
+    .value("OpenCL", ost::mol::mm::OpenCL)
+    .value("CUDA", ost::mol::mm::CUDA)
+    .value("CPU", ost::mol::mm::CPU)
+  ;
+
+  enum_<ost::mol::mm::NonbondedMethod>("NonbondedMethod")
+    .value("NoCutoff", ost::mol::mm::NoCutoff)
+    .value("CutoffNonPeriodic", ost::mol::mm::CutoffNonPeriodic)
+    .value("CutoffPeriodic", ost::mol::mm::CutoffPeriodic)
+    .value("Ewald", ost::mol::mm::Ewald)
+    .value("PME", ost::mol::mm::PME)
+  ;
+
+  //export the termini exceptions object
+  class_<ost::mol::mm::TerminiExceptions>("TerminiExceptions",init<>())
+    .def("SetException", &ost::mol::mm::TerminiExceptions::SetException)
+    .def("HasException", &ost::mol::mm::TerminiExceptions::HasException)
+    .def("GetException", &ost::mol::mm::TerminiExceptions::GetException)
+  ;
+
+  //export the settings
+
+  class_<ost::mol::mm::Settings>("Settings",init<>())
+    .def_readwrite("add_bonds",&ost::mol::mm::Settings::add_bonds)
+    .def_readwrite("add_angles",&ost::mol::mm::Settings::add_angles)
+    .def_readwrite("add_dihedrals",&ost::mol::mm::Settings::add_dihedrals)
+    .def_readwrite("add_impropers",&ost::mol::mm::Settings::add_impropers)
+    .def_readwrite("add_cmaps",&ost::mol::mm::Settings::add_cmaps)
+    .def_readwrite("add_exclusions",&ost::mol::mm::Settings::add_exclusions)
+    .def_readwrite("add_nonbonded",&ost::mol::mm::Settings::add_nonbonded)
+    .def_readwrite("add_gbsa",&ost::mol::mm::Settings::add_gbsa)
+    .def_readwrite("constrain_hbonds",&ost::mol::mm::Settings::constrain_hbonds)
+    .def_readwrite("constrain_bonds",&ost::mol::mm::Settings::constrain_bonds)
+    .def_readwrite("rigid_water",&ost::mol::mm::Settings::rigid_water)
+    .def_readwrite("strict_interactions",&ost::mol::mm::Settings::strict_interactions)
+    .def_readwrite("ideal_bond_length_constraints",&ost::mol::mm::Settings::ideal_bond_length_constraints)
+    .def_readwrite("fix_heavy_atoms",&ost::mol::mm::Settings::fix_heavy_atoms)
+    .def_readwrite("kill_electrostatics",&ost::mol::mm::Settings::kill_electrostatics)
+    .def_readwrite("generate_disulfid_bonds",&ost::mol::mm::Settings::generate_disulfid_bonds)
+    .def_readwrite("nonbonded_method",&ost::mol::mm::Settings::nonbonded_method)
+    .def_readwrite("nonbonded_cutoff",&ost::mol::mm::Settings::nonbonded_cutoff)
+    .def_readwrite("remove_cmm_motion",&ost::mol::mm::Settings::remove_cmm_motion)
+    .def_readwrite("periodic_box_extents",&ost::mol::mm::Settings::periodic_box_extents)
+    .def_readwrite("init_temperature",&ost::mol::mm::Settings::init_temperature)
+    .def_readwrite("forcefield",&ost::mol::mm::Settings::forcefield)
+    .def_readwrite("termini_exceptions",&ost::mol::mm::Settings::termini_exceptions)
+    .def_readwrite("platform",&ost::mol::mm::Settings::platform)
+    .def_readwrite("reference_properties",&ost::mol::mm::Settings::reference_properties)
+    .def_readwrite("cpu_properties",&ost::mol::mm::Settings::cpu_properties)
+    .def_readwrite("cuda_properties",&ost::mol::mm::Settings::cuda_properties)
+    .def_readwrite("opencl_properties",&ost::mol::mm::Settings::opencl_properties)
+    .def_readwrite("add_thermostat",&ost::mol::mm::Settings::add_thermostat)
+    .def_readwrite("thermostat_temperature",&ost::mol::mm::Settings::thermostat_temperature)
+    .def_readwrite("thermostat_collision_frequency",&ost::mol::mm::Settings::thermostat_collision_frequency)
+    .def_readwrite("add_barostat",&ost::mol::mm::Settings::add_barostat)
+    .def_readwrite("barostat_temperature",&ost::mol::mm::Settings::barostat_temperature)
+    .def_readwrite("barostat_pressure",&ost::mol::mm::Settings::barostat_pressure)
+    .def_readwrite("barostat_frequency",&ost::mol::mm::Settings::barostat_frequency)
+    .def_readwrite("integrator",&ost::mol::mm::Settings::integrator)
+    .def_readwrite("solvent_dielectric",&ost::mol::mm::Settings::solvent_dielectric)
+    .def_readwrite("solute_dielectric",&ost::mol::mm::Settings::solute_dielectric)
+    .def_readwrite("reaction_field_dielectric",&ost::mol::mm::Settings::reaction_field_dielectric)
+    .def_readwrite("use_dispersion_correction",&ost::mol::mm::Settings::use_dispersion_correction)
+    .def_readwrite("keep_ff_specific_naming",&ost::mol::mm::Settings::keep_ff_specific_naming)
+    .def_readwrite("openmm_plugin_directory",&ost::mol::mm::Settings::openmm_plugin_directory)
+    .def_readwrite("custom_plugin_directory",&ost::mol::mm::Settings::custom_plugin_directory)
+
+  ;
+
+  class_<ost::mol::mm::PropertyMap>("PropertyMap", no_init)
+    .def(map_indexing_suite<ost::mol::mm::PropertyMap>()) 
+  ;
+
+  boost::python::register_ptr_to_python<ost::mol::mm::SettingsPtr>();
+  boost::python::register_ptr_to_python<ost::mol::mm::TerminiExceptionsPtr>();
+
+}
+
diff --git a/modules/mol/mm/pymod/export_simulation.cc b/modules/mol/mm/pymod/export_simulation.cc
new file mode 100644
index 0000000000000000000000000000000000000000..a5d3cae349e83f51c84bc2f95c3b3b052b0b03d4
--- /dev/null
+++ b/modules/mol/mm/pymod/export_simulation.cc
@@ -0,0 +1,93 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <boost/python.hpp>
+#include <ost/mol/mm/simulation.hh>
+
+using namespace boost::python;
+
+
+
+namespace{
+
+
+template<typename T>
+std::vector<T> ListToVec(const boost::python::list& l){
+  std::vector<T> vec;
+
+  for (int i = 0; i < boost::python::len(l); ++i){
+    vec.push_back(boost::python::extract<T>(l[i]));
+  }
+  return vec;
+}
+
+void WrapAddPositionConstraints(ost::mol::mm::SimulationPtr p, const boost::python::list& l){
+  std::vector<uint> vec  = ListToVec<uint>(l);
+  p->AddPositionConstraints(vec);
+}
+
+}
+
+
+void export_Simulation()
+{
+
+  class_<ost::mol::mm::Simulation>("Simulation",no_init)
+    .def(init<const ost::mol::EntityHandle, const ost::mol::mm::SettingsPtr>())
+    .def(init<const ost::mol::mm::TopologyPtr,const ost::mol::EntityHandle&,const ost::mol::mm::SettingsPtr>())
+    .def("Save",&ost::mol::mm::Simulation::Save,(arg("filename")))
+    .def("Load",&ost::mol::mm::Simulation::Load,(arg("filename"))).staticmethod("Load")
+    .def("Steps",&ost::mol::mm::Simulation::Steps,(arg("steps")))
+    .def("GetPositions",&ost::mol::mm::Simulation::GetPositions,(arg("enforce_periodic_box")=false, arg("in_angstrom")=true))
+    .def("GetVelocities",&ost::mol::mm::Simulation::GetVelocities)
+    .def("GetForces",&ost::mol::mm::Simulation::GetForces)
+    .def("SetPositions",&ost::mol::mm::Simulation::SetPositions,(arg("positions"),arg("in_angstrom")=true))
+    .def("SetVelocities",&ost::mol::mm::Simulation::SetVelocities)
+    .def("GetEntity",&ost::mol::mm::Simulation::GetEntity)
+    .def("ApplySD",&ost::mol::mm::Simulation::ApplySD, (arg("tolerance")=100.0,arg("max_iterations")=1000))
+    .def("ApplyLBFGS",&ost::mol::mm::Simulation::ApplyLBFGS,(arg("tolerance")=1.0,arg("max_iterations")=1000))
+    .def("GetEnergy",&ost::mol::mm::Simulation::GetEnergy)                                                                             
+    .def("GetPotentialEnergy",&ost::mol::mm::Simulation::GetPotentialEnergy)                                                                             
+    .def("GetKineticEnergy",&ost::mol::mm::Simulation::GetKineticEnergy) 
+    .def("Register",&ost::mol::mm::Simulation::Register) 
+    .def("UpdatePositions",&ost::mol::mm::Simulation::UpdatePositions, (arg("enforce_periodic_box")=false))
+    .def("GetTopology",&ost::mol::mm::Simulation::GetTopology)
+    .def("ResetHarmonicBond",&ost::mol::mm::Simulation::ResetHarmonicBond,(arg("bond_idx"),arg("bond_length"),arg("force_constant"))) 
+    .def("ResetHarmonicAngle",&ost::mol::mm::Simulation::ResetHarmonicAngle,(arg("angle_idx"),arg("angle"),arg("force_constant")))
+    .def("ResetUreyBradleyAngle",&ost::mol::mm::Simulation::ResetUreyBradleyAngle,(arg("angle_idx"),arg("angle"),arg("angle_force_constant"),arg("bond_length"),arg("bond_force_constant")))
+    .def("ResetPeriodicDihedral",&ost::mol::mm::Simulation::ResetPeriodicDihedral,(arg("dihedral_idx"),arg("multiplicity"),arg("phase"),arg("force_constant")))
+    .def("ResetPeriodicImproper",&ost::mol::mm::Simulation::ResetPeriodicImproper,(arg("improper_idx"),arg("multiplicity"),arg("phase"),arg("force_constant")))
+    .def("ResetHarmonicImproper",&ost::mol::mm::Simulation::ResetHarmonicImproper,(arg("improper_idx"),arg("phase"),arg("force_constant")))
+    .def("ResetLJPair",&ost::mol::mm::Simulation::ResetLJPair,(arg("ljpair_idx"),arg("sigma"),arg("epsilon")))
+    .def("ResetDistanceConstraint",&ost::mol::mm::Simulation::ResetDistanceConstraint,(arg("constraint_idx"),arg("length")))  
+    .def("ResetHarmonicPositionRestraint",&ost::mol::mm::Simulation::ResetHarmonicPositionRestraint,(arg("restraint_idx"),arg("ref_position"),arg("k"),arg("x_scale")=1.0,arg("y_scale")=1.0,arg("z_scale")=1.0))                                                                     
+    .def("ResetHarmonicDistanceRestraint",&ost::mol::mm::Simulation::ResetHarmonicDistanceRestraint,(arg("restraint_idx"),arg("length"),arg("force_constant")))
+    .def("ResetLJ",&ost::mol::mm::Simulation::ResetLJ,(arg("particle_idx"),arg("sigma"),arg("epsilon")))
+    .def("ResetGBSA",&ost::mol::mm::Simulation::ResetGBSA,(arg("particle_idx"),arg("radius"),arg("scaling")))
+    .def("ResetCharge",&ost::mol::mm::Simulation::ResetCharge,(arg("particle_idx"),arg("charge")))
+    .def("ResetMass",&ost::mol::mm::Simulation::ResetMass,(arg("particle_idx"),arg("mass")))
+    .def("AddPositionConstraint",&ost::mol::mm::Simulation::AddPositionConstraint,(arg("particle_idx")))
+    .def("AddPositionConstraints",&WrapAddPositionConstraints,(arg("particle_idx")))
+    .def("ResetPositionConstraints",&ost::mol::mm::Simulation::ResetPositionConstraints)
+    .def("GetPeriodicBoxExtents",&ost::mol::mm::Simulation::GetPeriodicBoxExtents)
+    .def("SetPeriodicBoxExtents",&ost::mol::mm::Simulation::SetPeriodicBoxExtents,(arg("extents")))
+  ;
+
+  boost::python::register_ptr_to_python<ost::mol::mm::SimulationPtr>();
+}
diff --git a/modules/mol/mm/pymod/export_topology.cc b/modules/mol/mm/pymod/export_topology.cc
new file mode 100644
index 0000000000000000000000000000000000000000..c104fbf8c7de6fbe8f85fd6b259193c7bb2f8a58
--- /dev/null
+++ b/modules/mol/mm/pymod/export_topology.cc
@@ -0,0 +1,506 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <boost/python.hpp>
+#include <ost/mol/mm/topology.hh>
+#include <ost/mol/mm/topology_creator.hh>
+#include <ost/mol/entity_handle.hh>
+#include <vector>
+
+using namespace boost::python;
+namespace{
+
+  template<typename T>
+  int Get(T index, int i){
+    return index[i];
+  }
+
+  template<typename T>
+  void Set(T& index, int i, int v){
+    index[i] = v;
+  }
+
+  template<typename T>
+  std::vector<T> ListToVec(const boost::python::list& l){
+
+    std::vector<T> vec;
+    for (int i = 0; i < boost::python::len(l); ++i){
+      vec.push_back(boost::python::extract<T>(l[i]));
+    }
+    return vec;
+  }
+
+  template<typename T>
+  boost::python::list VecToList(std::vector<T>& vec){
+    boost::python::list l;
+    for(typename std::vector<T>::iterator it=vec.begin();it!=vec.end();++it){
+      l.append(*it);
+    }
+    return l;
+  }
+
+  ost::mol::mm::TopologyPtr WrapTopologyConstructor(const boost::python::list& masses_list){
+    std::vector<Real> masses_vector = ListToVec<Real>(masses_list);
+    ost::mol::mm::TopologyPtr p(new ost::mol::mm::Topology(masses_vector));
+    return p;
+  }
+
+  void WrapAddCMap(ost::mol::mm::TopologyPtr p, int index_one, int index_two, int index_three,
+                   int index_four, int index_five, uint dimension, const boost::python::list& l){
+    std::vector<Real> v = ListToVec<Real>(l);
+    p->AddCMap(index_one,index_two,index_three,index_four,index_five,dimension,v);
+  }
+
+  void WrapSetSigmas(ost::mol::mm::TopologyPtr p, const boost::python::list& l){
+    std::vector<Real> v = ListToVec<Real>(l);
+    p->SetSigmas(v);
+  }
+
+  void WrapSetEpsilons(ost::mol::mm::TopologyPtr p, const boost::python::list& l){
+    std::vector<Real> v = ListToVec<Real>(l);
+    p->SetEpsilons(v);
+  }
+
+  void WrapSetGBSARadii(ost::mol::mm::TopologyPtr p, const boost::python::list& l){
+    std::vector<Real> v = ListToVec<Real>(l);
+    p->SetGBSARadii(v);
+  }
+
+  void WrapSetOBCScalings(ost::mol::mm::TopologyPtr p, const boost::python::list& l){
+    std::vector<Real> v = ListToVec<Real>(l);
+    p->SetOBCScalings(v);
+  }
+
+  void WrapSetCharges(ost::mol::mm::TopologyPtr p, const boost::python::list& l){
+    std::vector<Real> v = ListToVec<Real>(l);
+    p->SetCharges(v);
+  }
+
+  void WrapSetMasses(ost::mol::mm::TopologyPtr p, const boost::python::list& l){
+    std::vector<Real> v = ListToVec<Real>(l);
+    p->SetMasses(v);
+  }
+
+
+  boost::python::list WrapGetSigmas(ost::mol::mm::TopologyPtr p){
+    std::vector<Real> v = p->GetSigmas();
+    boost::python::list l = VecToList<Real>(v);
+    return l;
+  }
+
+  boost::python::list WrapGetEpsilons(ost::mol::mm::TopologyPtr p){
+    std::vector<Real> v = p->GetEpsilons();
+    boost::python::list l = VecToList<Real>(v);
+    return l;
+  }
+
+  boost::python::list WrapGetGBSARadii(ost::mol::mm::TopologyPtr p){
+    std::vector<Real> v = p->GetGBSARadii();
+    boost::python::list l = VecToList<Real>(v);
+    return l;
+  }
+
+  boost::python::list WrapGetOBCScalings(ost::mol::mm::TopologyPtr p){
+    std::vector<Real> v = p->GetOBCScalings();
+    boost::python::list l = VecToList<Real>(v);
+    return l;
+  }
+
+  boost::python::list WrapGetCharges(ost::mol::mm::TopologyPtr p){
+    std::vector<Real> v = p->GetCharges();
+    boost::python::list l = VecToList<Real>(v);
+    return l;
+  }
+
+  boost::python::list WrapGetMasses(ost::mol::mm::TopologyPtr p){
+    std::vector<Real> v = p->GetMasses();
+    boost::python::list l = VecToList<Real>(v);
+    return l;
+  }
+
+
+  boost::python::tuple WrapGetHarmonicBondParam(ost::mol::mm::TopologyPtr p,uint index){
+    uint i1,i2;
+    Real b,k;
+    p->GetHarmonicBondParameters(index,i1,i2,b,k);
+    return boost::python::make_tuple(i1,i2,b,k);
+  }
+
+  boost::python::tuple WrapGetHarmonicAngleParam(ost::mol::mm::TopologyPtr p,uint index){
+    uint i1,i2,i3;
+    Real a,k;
+    p->GetHarmonicAngleParameters(index,i1,i2,i3,a,k);
+    return boost::python::make_tuple(i1,i2,i3,a,k);
+  }
+
+  boost::python::tuple WrapGetUreyBradleyAngleParam(ost::mol::mm::TopologyPtr p,uint index){
+    uint i1,i2,i3;
+    Real a,a_k,b,b_k;
+    p->GetUreyBradleyAngleParameters(index,i1,i2,i3,a,a_k,b,b_k);
+    return boost::python::make_tuple(i1,i2,i3,a,a_k,b,b_k);
+  }
+
+  boost::python::tuple WrapGetPeriodicDihedralParam(ost::mol::mm::TopologyPtr p,uint index){
+    uint i1,i2,i3,i4;
+    int m;
+    Real ph,k;
+    p->GetPeriodicDihedralParameters(index,i1,i2,i3,i4,m,ph,k);
+    return boost::python::make_tuple(i1,i2,i3,i4,m,ph,k);
+  }
+
+  boost::python::tuple WrapGetPeriodicImproperParam(ost::mol::mm::TopologyPtr p,uint index){
+    uint i1,i2,i3,i4;
+    int m;
+    Real ph,k;
+    p->GetPeriodicImproperParameters(index,i1,i2,i3,i4,m,ph,k);
+    return boost::python::make_tuple(i1,i2,i3,i4,m,ph,k);
+  }
+
+  boost::python::tuple WrapGetHarmonicImproperParam(ost::mol::mm::TopologyPtr p,uint index){
+    uint i1,i2,i3,i4;
+    Real a,k;
+    p->GetHarmonicImproperParameters(index,i1,i2,i3,i4,a,k);
+    return boost::python::make_tuple(i1,i2,i3,i4,a,k);
+  }
+
+  boost::python::tuple WrapGetCMapParam(ost::mol::mm::TopologyPtr p, uint index){
+    std::vector<Real> map;
+    int dimension;
+    uint i1,i2,i3,i4,i5;
+    p->GetCMapParameters(index,i1,i2,i3,i4,i5,dimension,map);
+    boost::python::list l = VecToList<Real>(map);
+    return boost::python::make_tuple(i1,i2,i3,i4,i5,dimension,l);
+  }
+
+  boost::python::tuple WrapGetLJPairParam(ost::mol::mm::TopologyPtr p, uint index){
+    uint i1,i2;
+    Real s,e;
+    p->GetLJPairParameters(index,i1,i2,s,e);
+    return boost::python::make_tuple(i1,i2,s,e);
+  }
+
+  boost::python::tuple WrapGetDistanceConstraintParam(ost::mol::mm::TopologyPtr p,uint index){
+    uint i1,i2;
+    Real d;
+    p->GetDistanceConstraintParameters(index,i1,i2,d);
+    return boost::python::make_tuple(i1,i2,d);
+  }
+
+  boost::python::tuple WrapGetHarmonicPositionRestraintParam(ost::mol::mm::TopologyPtr p,uint index){
+    uint atom_index;
+    geom::Vec3 ref_pos;
+    Real k;
+    Real x_scale, y_scale, z_scale;
+    p->GetHarmonicPositionRestraintParameters(index,atom_index,ref_pos,k,x_scale,y_scale,z_scale);
+    return boost::python::make_tuple(atom_index,ref_pos,k,x_scale,y_scale,z_scale);
+  }
+
+  boost::python::tuple WrapGetHarmonicDistanceRestraintParam(ost::mol::mm::TopologyPtr p,uint index){
+    uint i1,i2;
+    Real l,k;
+    p->GetHarmonicDistanceRestraintParameters(index,i1,i2,l,k);
+    return boost::python::make_tuple(i1,i2,l,k);
+  }
+
+  boost::python::tuple WrapGetFGMDHBondDonorParam(ost::mol::mm::TopologyPtr p, uint index){
+    uint i1, i2;
+    Real d,k_d,a,k_a,b,k_b;
+    p->GetFGMDHBondDonorParameters(index,i1,i2,d,k_d,a,k_a,b,k_b);
+    return boost::python::make_tuple(i1,i2,d,k_d,a,k_a,b,k_b);
+  }
+
+  boost::python::tuple WrapGetFGMDHBondAcceptorParam(ost::mol::mm::TopologyPtr p, uint index){
+    uint i1, i2;
+    p->GetFGMDHBondAcceptorParameters(index,i1,i2);
+    return boost::python::make_tuple(i1,i2);
+  }
+
+  void WrapSetCMapParameters(ost::mol::mm::TopologyPtr p, uint index, int dimension, boost::python::list l){
+    std::vector<Real> v = ListToVec<Real>(l);
+    p->SetCMapParameters(index,dimension,v);
+  }
+
+  boost::python::list GetHarmonicBondIndices(ost::mol::mm::TopologyPtr p, uint i1, uint i2){
+    std::vector<uint> return_vec = p->GetHarmonicBondIndices(i1,i2);
+    return VecToList<uint>(return_vec);
+  }
+
+  boost::python::list GetHarmonicBondIndicesSingleIndex(ost::mol::mm::TopologyPtr p, int i){
+    std::vector<uint> return_vec = p->GetHarmonicBondIndices(i); 
+    return VecToList<uint>(return_vec);
+  }
+
+  boost::python::list GetHarmonicAngleIndices(ost::mol::mm::TopologyPtr p, uint i1, uint i2, uint i3){
+    std::vector<uint> return_vec = p->GetHarmonicAngleIndices(i1,i2,i3);
+    return VecToList<uint>(return_vec);
+  }
+
+  boost::python::list GetHarmonicAngleIndicesSingleIndex(ost::mol::mm::TopologyPtr p, uint i){
+    std::vector<uint> return_vec = p->GetHarmonicAngleIndices(i);
+    return VecToList<uint>(return_vec);
+  }
+
+  boost::python::list GetUreyBradleyAngleIndices(ost::mol::mm::TopologyPtr p, uint i1, uint i2, uint i3){
+    std::vector<uint> return_vec = p->GetUreyBradleyAngleIndices(i1,i2,i3);
+    return VecToList<uint>(return_vec);
+  }
+
+  boost::python::list GetUreyBradleyAngleIndicesSingleIndex(ost::mol::mm::TopologyPtr p, uint i){
+    std::vector<uint> return_vec = p->GetUreyBradleyAngleIndices(i);
+    return VecToList<uint>(return_vec);
+  }
+
+  boost::python::list GetPeriodicDihedralIndices(ost::mol::mm::TopologyPtr p, uint i1, uint i2, uint i3, int i4){
+    std::vector<uint> return_vec = p->GetPeriodicDihedralIndices(i1,i2,i3,i4);
+    return VecToList<uint>(return_vec);
+  }
+
+  boost::python::list GetPeriodicDihedralIndicesSingleIndex(ost::mol::mm::TopologyPtr p, uint i){
+    std::vector<uint> return_vec = p->GetPeriodicDihedralIndices(i);
+    return VecToList<uint>(return_vec);
+  }
+
+  boost::python::list GetPeriodicImproperIndices(ost::mol::mm::TopologyPtr p, uint i1, uint i2, uint i3, uint i4){
+    std::vector<uint> return_vec = p->GetPeriodicImproperIndices(i1,i2,i3,i4);
+    return VecToList<uint>(return_vec);
+  }
+
+  boost::python::list GetPeriodicImproperIndicesSingleIndex(ost::mol::mm::TopologyPtr p, uint i){
+    std::vector<uint> return_vec = p->GetPeriodicImproperIndices(i);
+    return VecToList<uint>(return_vec);
+  }
+
+  boost::python::list GetHarmonicImproperIndices(ost::mol::mm::TopologyPtr p, uint i1, uint i2, uint i3, uint i4){
+    std::vector<uint> return_vec = p->GetHarmonicImproperIndices(i1,i2,i3,i4);
+    return VecToList<uint>(return_vec);
+  }
+
+  boost::python::list GetHarmonicImproperIndicesSingleIndex(ost::mol::mm::TopologyPtr p, uint i){
+    std::vector<uint> return_vec = p->GetHarmonicImproperIndices(i);
+    return VecToList<uint>(return_vec);
+  }
+
+  boost::python::list GetCMapIndices(ost::mol::mm::TopologyPtr p, uint i1, uint i2, uint i3, uint i4, uint i5){
+    std::vector<uint> return_vec = p->GetCMapIndices(i1,i2,i3,i4,i5);
+    return VecToList<uint>(return_vec);
+  }
+
+  boost::python::list GetCMapIndicesSingleIndex(ost::mol::mm::TopologyPtr p, uint i){
+    std::vector<uint> return_vec = p->GetCMapIndices(i);
+    return VecToList<uint>(return_vec);
+  }
+
+  boost::python::list GetLJPairIndicesSingleIndex(ost::mol::mm::TopologyPtr p, uint i){
+    std::vector<uint> return_vec = p->GetLJPairIndices(i);
+    return VecToList<uint>(return_vec);
+  }
+
+  boost::python::list GetDistanceConstraintIndicesSingleIndex(ost::mol::mm::TopologyPtr p, uint i){
+    std::vector<uint> return_vec = p->GetDistanceConstraintIndices(i);
+    return VecToList<uint>(return_vec);
+  }
+
+  boost::python::list GetHarmonicDistanceRestraintIndices(ost::mol::mm::TopologyPtr p, uint i1, uint i2){
+    std::vector<uint> return_vec = p->GetHarmonicDistanceRestraintIndices(i1,i2);
+    return VecToList<uint>(return_vec);
+  }
+
+  boost::python::list GetHarmonicDistanceRestraintIndicesSingleIndex(ost::mol::mm::TopologyPtr p, uint i){
+    std::vector<uint> return_vec = p->GetHarmonicDistanceRestraintIndices(i);
+    return VecToList<uint>(return_vec);
+  }
+
+  boost::python::list GetFGMDHBondDonorIndices(ost::mol::mm::TopologyPtr p, uint i1, uint i2){
+    std::vector<uint> return_vec = p->GetFGMDHBondDonorIndices(i1,i2);
+    return VecToList<uint>(return_vec);
+  }
+
+  boost::python::list GetFGMDHBondDonorIndicesSingleIndex(ost::mol::mm::TopologyPtr p, uint i){
+    std::vector<uint> return_vec = p->GetFGMDHBondDonorIndices(i);
+    return VecToList<uint>(return_vec);
+  }
+
+  boost::python::list GetHarmonicPositionRestraintIndicesSingleIndex(ost::mol::mm::TopologyPtr p, uint i){
+  std::vector<uint> return_vec = p->GetHarmonicPositionRestraintIndices(i);
+    return VecToList<uint>(return_vec);
+  }
+
+  boost::python::list GetFGMDHBondAcceptorIndices(ost::mol::mm::TopologyPtr p, uint i1, uint i2){
+    std::vector<uint> return_vec = p->GetFGMDHBondAcceptorIndices(i1,i2);
+    return VecToList<uint>(return_vec);
+  }
+
+  boost::python::list GetFGMDHBondAcceptorIndicesSingleIndex(ost::mol::mm::TopologyPtr p, uint i){
+    std::vector<uint> return_vec = p->GetFGMDHBondAcceptorIndices(i);
+    return VecToList<uint>(return_vec);
+  }
+
+
+  void MergeTop(ost::mol::mm::TopologyPtr top, ost::mol::mm::TopologyPtr other){
+    top->Merge(other);
+  }
+
+  void MergeTopEnt(ost::mol::mm::TopologyPtr top, ost::mol::EntityHandle& ent, 
+                   ost::mol::mm::TopologyPtr other, ost::mol::EntityHandle& other_ent){
+    top->Merge(ent,other,other_ent);
+  }
+}
+
+void export_Topology()
+{
+
+  class_<ost::mol::mm::TopologyCreator>("TopologyCreator",no_init)
+    .def("Create",&ost::mol::mm::TopologyCreator::Create).staticmethod("Create")
+  ;
+
+  class_<ost::mol::mm::Topology>("Topology",no_init)
+
+    .def("__init__",make_constructor(&WrapTopologyConstructor))
+    .def("Save",&ost::mol::mm::Topology::Save,(arg("filename")))
+    .def("Load",&ost::mol::mm::Topology::Load,(arg("filename"))).staticmethod("Load")
+ 
+    //interaction adding functions
+    .def("AddHarmonicBond",&ost::mol::mm::Topology::AddHarmonicBond,(arg("idx_one"),arg("idx_two"),arg("bond_length"),arg("force_constant")))
+    .def("AddHarmonicAngle",&ost::mol::mm::Topology::AddHarmonicAngle,(arg("idx_one"),arg("idx_two"),arg("idx_three"),arg("angle"),arg("force_constant")))
+    .def("AddUreyBradleyAngle",&ost::mol::mm::Topology::AddUreyBradleyAngle,(arg("idx_one"),arg("idx_two"),arg("idx_three"),arg("angle"),arg("angle_force_constant"),arg("bond_length"),arg("bond_force_constant")))
+    .def("AddPeriodicDihedral",&ost::mol::mm::Topology::AddPeriodicDihedral,(arg("idx_one"),arg("idx_two"),arg("idx_three"),arg("idx_four"),arg("multiplicity"),arg("phase"),arg("force_constant")))
+    .def("AddPeriodicImproper",&ost::mol::mm::Topology::AddPeriodicImproper,(arg("idx_one"),arg("idx_two"),arg("idx_three"),arg("idx_four"),arg("multiplicity"),arg("phase"),arg("force_constant")))
+    .def("AddHarmonicImproper",&ost::mol::mm::Topology::AddHarmonicImproper,(arg("idx_one"),arg("idx_two"),arg("idx_three"),arg("idx_four"),arg("angle"),arg("force_constant")))
+    .def("AddCMap",&WrapAddCMap,(arg("idx_one"),arg("idx_two"),arg("idx_three"),arg("idx_four"),arg("idx_five"),arg("dimension"),arg("map")))
+    .def("AddLJPair",&ost::mol::mm::Topology::AddLJPair,(arg("idx_one"),arg("idx_two"),arg("sigma"),arg("epsilon")))
+    .def("AddDistanceConstraint",&ost::mol::mm::Topology::AddDistanceConstraint,(arg("idx_one"),arg("idx_two"),arg("distance")))
+    .def("AddExclusion",&ost::mol::mm::Topology::AddExclusion,(arg("idx_one"),arg("idx_two")))
+    .def("AddPositionConstraint",&ost::mol::mm::Topology::AddPositionConstraint,(arg("idx")))
+    .def("ResetPositionConstraints",&ost::mol::mm::Topology::ResetPositionConstraints)
+    .def("ResetExclusions",&ost::mol::mm::Topology::ResetExclusions)
+    .def("AddHarmonicPositionRestraint",&ost::mol::mm::Topology::AddHarmonicPositionRestraint,(arg("idx"),arg("ref_position"),arg("k"),arg("x_scale")=1.0,arg("y_scale")=1.0,arg("z_scale")=1.0))
+    .def("AddHarmonicDistanceRestraint",&ost::mol::mm::Topology::AddHarmonicDistanceRestraint,(arg("idx_one"),arg("idx_two"),arg("length"),arg("force_constant")))
+    .def("AddFGMDHBondDonor",&ost::mol::mm::Topology::AddFGMDHBondDonor,(arg("idx_one"),arg("idx_two"),arg("length"),arg("k_length"),arg("alpha"),arg("k_alpha"),arg("beta"),arg("k_beta")))
+    .def("AddFGMDHBondAcceptor",&ost::mol::mm::Topology::AddFGMDHBondAcceptor,(arg("idx_one"),arg("idx_two")))
+ 
+    //single atom parameter getter and setter functions
+    .def("SetSigmas",&WrapSetSigmas,(arg("sigmas")))
+    .def("SetSigma",&ost::mol::mm::Topology::SetSigma,(arg("particle_idx"),arg("sigma")))
+    .def("SetEpsilons",&WrapSetEpsilons,(arg("epsilons")))
+    .def("SetEpsilon",&ost::mol::mm::Topology::SetEpsilon,(arg("particle_idx"),arg("epsilon")))
+    .def("SetGBSARadii",&WrapSetGBSARadii,(arg("gbsa_radii")))
+    .def("SetGBSARadius",&ost::mol::mm::Topology::SetGBSARadius,(arg("particle_idx"),arg("radius")))
+    .def("SetOBCScalings",&WrapSetOBCScalings,(arg("obc_scalings")))
+    .def("SetOBCScaling",&ost::mol::mm::Topology::SetOBCScaling,(arg("particle_idx"),arg("obc_scaling")))
+    .def("SetCharges",&WrapSetCharges,(arg("charges")))
+    .def("SetCharge",&ost::mol::mm::Topology::SetCharge,(arg("particle_idx"),arg("charge")))
+    .def("SetMasses",&WrapSetMasses,(arg("masses")))
+    .def("SetMass",&ost::mol::mm::Topology::SetMass,(arg("particle_idx"),arg("mass")))
+    .def("GetSigmas",&WrapGetSigmas)
+    .def("GetEpsilons",&WrapGetEpsilons)
+    .def("GetGBSARadii",&WrapGetGBSARadii)
+    .def("GetOBCScalings",&WrapGetOBCScalings)
+    .def("GetCharges",&WrapGetCharges)
+    .def("GetMasses",&WrapGetMasses)
+    .def("GetCharge",&ost::mol::mm::Topology::GetCharge,(arg("particle_idx")))
+    .def("GetMass",&ost::mol::mm::Topology::GetMass,(arg("particle_idx")))
+    .def("GetOBCScaling",&ost::mol::mm::Topology::GetOBCScaling,(arg("particle_idx")))
+    .def("GetGBSARadius",&ost::mol::mm::Topology::GetGBSARadius,(arg("particle_idx")))
+
+    //getter and setter functions for nonbonded fudge parameters
+    .def("SetFudgeLJ",&ost::mol::mm::Topology::SetFudgeLJ,(arg("fudge_param")))
+    .def("SetFudgeQQ",&ost::mol::mm::Topology::SetFudgeQQ,(arg("fudge_param")))
+    .def("GetFudgeLJ",&ost::mol::mm::Topology::GetFudgeLJ)
+    .def("GetFudgeQQ",&ost::mol::mm::Topology::GetFudgeQQ)
+ 
+    //getter functions for interaction parameters
+    .def("GetHarmonicBondParameters",&WrapGetHarmonicBondParam,(arg("interaction_idx")))
+    .def("GetHarmonicAngleParameters",&WrapGetHarmonicAngleParam,(arg("interaction_idx")))
+    .def("GetUreyBradleyAngleParameters",&WrapGetUreyBradleyAngleParam,(arg("interaction_idx")))
+    .def("GetPeriodicDihedralParameters",&WrapGetPeriodicDihedralParam,(arg("interaction_idx")))
+    .def("GetPeriodicImproperParameters",&WrapGetPeriodicImproperParam,(arg("interaction_idx")))
+    .def("GetHarmonicImproperParameters",&WrapGetHarmonicImproperParam,(arg("interaction_idx")))
+    .def("GetCMapParameters",&WrapGetCMapParam,(arg("interaction_idx")))
+    .def("GetLJPairParameters",&WrapGetLJPairParam,(arg("interaction_idx")))
+    .def("GetDistanceConstraintParameters",&WrapGetDistanceConstraintParam,(arg("interaction_idx")))
+    .def("GetHarmonicPositionRestraintParameters",&WrapGetHarmonicPositionRestraintParam,(arg("interaction_idx")))
+    .def("GetHarmonicDistanceRestraintParameters",&WrapGetHarmonicDistanceRestraintParam,(arg("interaction_idx")))
+    .def("GetFGMDHBondDonorParameters",&WrapGetFGMDHBondDonorParam,(arg("interaction_idx")))
+    .def("GetFGMDHBondAcceptorParameters",&WrapGetFGMDHBondAcceptorParam,(arg("interaction_idx")))
+
+    //setter functions for interaction parameters
+    .def("SetHarmonicBondParameters",&ost::mol::mm::Topology::SetHarmonicBondParameters,(arg("interaction_idx"),arg("bond_length"),arg("force_constant")))
+    .def("SetHarmonicAngleParameters",&ost::mol::mm::Topology::SetHarmonicAngleParameters,(arg("interaction_idx"),arg("angle"),arg("force_constant")))
+    .def("SetUreyBradleyAngleParameters",&ost::mol::mm::Topology::SetUreyBradleyAngleParameters,(arg("interaction_idx"),arg("angle"),arg("angle_force_constant"),arg("bond_length"),arg("bond_force_constant")))
+    .def("SetPeriodicDihedralParameters",&ost::mol::mm::Topology::SetPeriodicDihedralParameters,(arg("interaction_idx"),arg("multiplicity"),arg("phase"),arg("force_constant")))
+    .def("SetPeriodicImproperParameters",&ost::mol::mm::Topology::SetPeriodicImproperParameters,(arg("interaction_idx"),arg("multiplicity"),arg("phase"),arg("force_constant")))
+    .def("SetHarmonicImproperParameters",&ost::mol::mm::Topology::SetHarmonicImproperParameters,(arg("interaction_idx"),arg("angle"),arg("force_constant")))
+    .def("SetCMapParameters",&WrapSetCMapParameters,(arg("interaction_idx"),arg("map")))
+    .def("SetLJPairParameters",&ost::mol::mm::Topology::SetLJPairParameters,(arg("interaction_idx"),arg("sigma"),arg("epsilon")))
+    .def("SetDistanceConstraintParameters",&ost::mol::mm::Topology::SetDistanceConstraintParameters,(arg("interaction_idx"),arg("distance")))
+    .def("SetHarmonicPositionRestraintParameters",&ost::mol::mm::Topology::SetHarmonicPositionRestraintParameters,(arg("interaction_idx"),arg("ref_position"),arg("k"),arg("x_scale")=1.0,arg("y_scale")=1.0,arg("z_scale")=1.0))
+    .def("SetHarmonicDistanceRestraintParameters",&ost::mol::mm::Topology::SetHarmonicDistanceRestraintParameters,(arg("interaction_idx"),arg("length"),arg("force_constant")))
+    .def("SetFGMDHBondDonorParameters",&ost::mol::mm::Topology::SetFGMDHBondDonorParameters,(arg("interaction_idx"),arg("length"),arg("k_length"),arg("alpha"),arg("k_alpha"),arg("beta"),arg("k_beta")))
+
+    //functions to find interactions certain atoms are involved in
+    .def("GetHarmonicBondIndices",&GetHarmonicBondIndices,(arg("idx_one"),arg("idx_two")))
+    .def("GetHarmonicBondIndices",&GetHarmonicBondIndicesSingleIndex,(arg("idx")))
+    .def("GetHarmonicAngleIndices",&GetHarmonicAngleIndices,(arg("idx_one"),arg("idx_two"),arg("idx_three")))
+    .def("GetHarmonicAngleIndices",&GetHarmonicAngleIndicesSingleIndex,(arg("idx")))
+    .def("GetUreyBradleyAngleIndices",&GetUreyBradleyAngleIndices,(arg("idx_one"),arg("idx_two"),arg("idx_three")))
+    .def("GetUreyBradleyAngleIndices",&GetUreyBradleyAngleIndicesSingleIndex,(arg("idx")))
+    .def("GetPeriodicDihedralIndices",&GetPeriodicDihedralIndices,(arg("idx_one"),arg("idx_two"),arg("idx_three"),arg("idx_four")))
+    .def("GetPeriodicDihedralIndices",&GetPeriodicDihedralIndicesSingleIndex,(arg("idx")))
+    .def("GetPeriodicImproperIndices",&GetPeriodicImproperIndices,(arg("idx_one"),arg("idx_two"),arg("idx_three"),arg("idx_four")))
+    .def("GetPeriodicImproperIndices",&GetPeriodicImproperIndicesSingleIndex,(arg("idx")))
+    .def("GetHarmonicImproperIndices",&GetHarmonicImproperIndices,(arg("idx_one"),arg("idx_two"),arg("idx_three"),arg("idx_four")))
+    .def("GetHarmonicImproperIndices",&GetHarmonicImproperIndicesSingleIndex,(arg("idx")))
+    .def("GetDistanceConstraintIndex",&ost::mol::mm::Topology::GetDistanceConstraintIndex,(arg("idx_one"),arg("idx_two")))
+    .def("GetDistanceConstraintIndices",&GetDistanceConstraintIndicesSingleIndex,(arg("idx")))    
+    .def("GetCMapIndices",&GetCMapIndices,(arg("idx_one"),arg("idx_two"),arg("idx_three"),arg("idx_four"),arg("idx_five")))
+    .def("GetCMapIndices",&GetCMapIndicesSingleIndex,(arg("idx")))
+    .def("GetLJPairIndex",&ost::mol::mm::Topology::GetLJPairIndex,(arg("idx_one"),arg("idx_two")))
+    .def("GetLJPairIndices",&GetLJPairIndicesSingleIndex,(arg("idx")))
+    .def("GetHarmonicDistanceRestraintIndices",&GetHarmonicDistanceRestraintIndices,(arg("idx_one"),arg("idx_two")))
+    .def("GetHarmonicDistanceRestraintIndices",&GetHarmonicDistanceRestraintIndicesSingleIndex,(arg("idx")))
+    .def("GetHarmonicPositionRestraintIndices",&GetHarmonicPositionRestraintIndicesSingleIndex,(arg("idx")))
+    .def("GetFGMDHBondDonorIndices",&GetFGMDHBondDonorIndices,(arg("idx_one"),arg("idx_two")))
+    .def("GetFGMDHBondDonorIndices",&GetFGMDHBondDonorIndicesSingleIndex,(arg("idx")))
+    .def("GetFGMDHBondAcceptorIndices",&GetFGMDHBondAcceptorIndices,(arg("idx_one"),arg("idx_two")))
+    .def("GetFGMDHBondAcceptorIndices",&GetFGMDHBondAcceptorIndicesSingleIndex,(arg("idx")))
+
+
+    //functions to get amount of data in topology
+    .def("GetNumParticles",&ost::mol::mm::Topology::GetNumParticles)
+    .def("GetNumHarmonicBonds",&ost::mol::mm::Topology::GetNumHarmonicBonds)
+    .def("GetNumHarmonicAngles",&ost::mol::mm::Topology::GetNumHarmonicAngles)
+    .def("GetNumPeriodicDihedrals",&ost::mol::mm::Topology::GetNumPeriodicDihedrals)
+    .def("GetNumPeriodicImpropers",&ost::mol::mm::Topology::GetNumPeriodicImpropers)
+    .def("GetNumHarmonicImpropers",&ost::mol::mm::Topology::GetNumHarmonicImpropers)
+    .def("GetNumCMaps",&ost::mol::mm::Topology::GetNumCMaps)
+    .def("GetNumLJPairs",&ost::mol::mm::Topology::GetNumLJPairs)
+    .def("GetNumDistanceConstraints",&ost::mol::mm::Topology::GetNumDistanceConstraints)
+    .def("GetNumExclusions",&ost::mol::mm::Topology::GetNumExclusions)
+    .def("GetNumHarmonicPositionRestraints",&ost::mol::mm::Topology::GetNumHarmonicPositionRestraints)
+    .def("GetNumHarmonicDistanceRestraints",&ost::mol::mm::Topology::GetNumHarmonicDistanceRestraints)  
+    .def("GetNumFGMDHBondDonors",&ost::mol::mm::Topology::GetNumFGMDHBondDonors)  
+    .def("GetNumFGMDHBondAcceptors",&ost::mol::mm::Topology::GetNumFGMDHBondAcceptors)  
+
+    .def("Merge",&MergeTop,(arg("other_topology")))
+    .def("Merge",&MergeTopEnt,(arg("ent"),arg("other_topology"),arg("other_ent")))                                                           
+  ;
+
+
+  boost::python::register_ptr_to_python<ost::mol::mm::TopologyPtr>();
+}
diff --git a/modules/mol/mm/pymod/wrap_mol_mm.cc b/modules/mol/mm/pymod/wrap_mol_mm.cc
new file mode 100644
index 0000000000000000000000000000000000000000..32e36e04b3bff7e01e4d50dda9a6c1a2f98a6173
--- /dev/null
+++ b/modules/mol/mm/pymod/wrap_mol_mm.cc
@@ -0,0 +1,52 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <boost/python.hpp>
+
+
+using namespace boost::python;
+
+
+void export_Settings();
+void export_Simulation();
+void export_OpenMM();
+void export_Observers();
+void export_FFReader();
+void export_Interaction();
+void export_Buildingblock();
+void export_Forcefield();
+void export_BlockModifiers();
+void export_Topology();
+void export_Modeller();
+
+
+BOOST_PYTHON_MODULE(_ost_mol_mm)
+{
+  export_Forcefield();
+  export_Settings();
+  export_Simulation();
+  export_OpenMM();
+  export_Observers();
+  export_FFReader();
+  export_Interaction();
+  export_Buildingblock();
+  export_BlockModifiers();
+  export_Topology();
+  export_Modeller();
+}
diff --git a/modules/mol/mm/src/AMBER03.dat b/modules/mol/mm/src/AMBER03.dat
new file mode 100644
index 0000000000000000000000000000000000000000..69e7d22171f447229ce354d731773876fcba7bd4
Binary files /dev/null and b/modules/mol/mm/src/AMBER03.dat differ
diff --git a/modules/mol/mm/src/CHARMM27.dat b/modules/mol/mm/src/CHARMM27.dat
new file mode 100644
index 0000000000000000000000000000000000000000..9a9459fb0c9882ff4db05a70560389124a73f2e6
Binary files /dev/null and b/modules/mol/mm/src/CHARMM27.dat differ
diff --git a/modules/mol/mm/src/CMakeLists.txt b/modules/mol/mm/src/CMakeLists.txt
new file mode 100644
index 0000000000000000000000000000000000000000..f5d7ba62c87a26d480e10cd969fa0ac896f14c79
--- /dev/null
+++ b/modules/mol/mm/src/CMakeLists.txt
@@ -0,0 +1,64 @@
+set(OST_MOL_MM_HEADERS
+  forcefield.hh
+  ff_reader.hh
+  buildingblock.hh
+  block_modifiers.hh
+  gromacs_block_modifiers.hh
+  heuristic_block_modifiers.hh
+  interaction.hh
+  settings.hh
+  simulation.hh 
+  modeller.hh
+  observer.hh
+  state_extractor.hh
+  system_creator.hh
+  topology_creator.hh
+  index.hh
+  topology.hh
+  steep.hh
+
+)
+
+set(OST_MOL_MM_SOURCES
+  forcefield.cc
+  ff_reader.cc
+  buildingblock.cc
+  gromacs_block_modifiers.cc
+  heuristic_block_modifiers.cc
+  interaction.cc
+  simulation.cc
+  modeller.cc
+  state_extractor.cc
+  observer.cc
+  system_creator.cc
+  topology_creator.cc
+  topology.cc
+  steep.cc
+)
+
+# create settings.hh as configurational header, needed to set the plugins path
+set(config_hh_generator "CMake")
+set(SETTINGS_HH_FILE "${CMAKE_CURRENT_SOURCE_DIR}/settings.hh")
+configure_file(settings.hh.in ${SETTINGS_HH_FILE})
+
+
+set(MOL_MM_DEPS ost_mol ost_io)
+
+
+module(NAME mol_mm SOURCES ${OST_MOL_MM_SOURCES}
+       HEADERS ${OST_MOL_MM_HEADERS}
+       HEADER_OUTPUT_DIR ost/mol/mm
+       DEPENDS_ON ${MOL_MM_DEPS}
+       LINK ${BOOST_PROGRAM_OPTIONS})
+
+target_link_libraries(ost_mol_mm ${OPEN_MM_LIBRARIES})
+
+copy_if_different("${CMAKE_CURRENT_SOURCE_DIR}" "${STAGE_DIR}/share/openstructure/forcefields"
+                  "AMBER03.dat" "AMBER_03_FORCEFIELD"
+                  "ost_mol_mm")
+install(FILES "AMBER03.dat" DESTINATION "share/openstructure/forcefields/")
+
+copy_if_different("${CMAKE_CURRENT_SOURCE_DIR}" "${STAGE_DIR}/share/openstructure/forcefields"
+                  "CHARMM27.dat" "CHARMM_27_FORCEFIELD"
+                  "ost_mol_mm")
+install(FILES "CHARMM27.dat" DESTINATION "share/openstructure/forcefields/")
diff --git a/modules/mol/mm/src/block_modifiers.hh b/modules/mol/mm/src/block_modifiers.hh
new file mode 100644
index 0000000000000000000000000000000000000000..4212e496bb65d5133816f019025369441ecc6ade
--- /dev/null
+++ b/modules/mol/mm/src/block_modifiers.hh
@@ -0,0 +1,78 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2011 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#ifndef OST_MM_BLOCK_MODIFIERS
+#define OST_MM_BLOCK_MODIFIERS
+
+#include <ost/mol/residue_handle.hh>
+#include <ost/mol/mm/buildingblock.hh>
+#include <boost/shared_ptr.hpp>
+#include <ost/mol/xcs_editor.hh>
+#include <ost/io/binary_data_source.hh>
+#include <ost/io/binary_data_sink.hh>
+
+namespace ost{ namespace mol{ namespace mm{
+
+class HydrogenConstructor;
+class TerminiConstructor;
+class BlockModifier;
+
+typedef boost::shared_ptr<HydrogenConstructor> HydrogenConstructorPtr;
+typedef boost::shared_ptr<TerminiConstructor> TerminiConstructorPtr;
+typedef boost::shared_ptr<BlockModifier> BlockModifierPtr;
+
+typedef enum {
+  GromacsBlockModifiers,
+  HeuristicBlockModifiers
+} BlockModifierType;
+
+class HydrogenConstructor{
+public:
+  HydrogenConstructor() { }
+  virtual ~HydrogenConstructor() { }
+  virtual void ApplyOnBuildingBlock(BuildingBlockPtr p) = 0;
+  virtual void ApplyOnResidue(ost::mol::ResidueHandle& res, ost::mol::XCSEditor& ed) = 0;
+  virtual void OnSave(ost::io::BinaryDataSink& ds) = 0;
+  virtual BlockModifierType GetBlockModifierType() = 0;
+};
+
+class TerminiConstructor{
+public:
+  TerminiConstructor() { }
+  virtual ~TerminiConstructor() { }
+  virtual void ApplyOnBuildingBlock(BuildingBlockPtr p) = 0;
+  virtual void ApplyOnResidue(ost::mol::ResidueHandle& res, ost::mol::XCSEditor& ed) = 0;
+  virtual void OnSave(ost::io::BinaryDataSink& ds) = 0;
+  virtual BlockModifierType GetBlockModifierType() = 0;
+};
+
+class BlockModifier{
+public:
+  BlockModifier() { }
+  virtual ~BlockModifier() { }
+  virtual void ApplyOnBuildingBlock(BuildingBlockPtr p) = 0;
+  virtual void ApplyOnResidue(ost::mol::ResidueHandle& res, ost::mol::XCSEditor& ed) = 0;
+  virtual void OnSave(ost::io::BinaryDataSink& ds) = 0;
+  virtual BlockModifierType GetBlockModifierType() = 0;
+};
+
+
+}}} //ns
+
+#endif
diff --git a/modules/mol/mm/src/buildingblock.cc b/modules/mol/mm/src/buildingblock.cc
new file mode 100644
index 0000000000000000000000000000000000000000..2077880c7eb0e58c3096ec0f545197a43d966f3c
--- /dev/null
+++ b/modules/mol/mm/src/buildingblock.cc
@@ -0,0 +1,706 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <ost/mol/mm/buildingblock.hh>
+
+namespace ost{ namespace mol{ namespace mm{
+
+BuildingBlock::BuildingBlock(const BuildingBlock& block){
+
+  atoms_ = block.GetAtoms();
+  types_ = block.GetTypes();
+  charges_ = block.GetCharges();
+  masses_ = block.GetMasses();
+
+  //We have to force to create new interactions with new!!!
+  //There would be to danger to mess around with an interaction,
+  //that is associated with another building block.
+
+  std::vector<InteractionPtr> bonds = block.GetBonds();
+  std::vector<InteractionPtr> angles = block.GetAngles();
+  std::vector<InteractionPtr> dihedrals = block.GetDihedrals();
+  std::vector<InteractionPtr> impropers = block.GetImpropers();
+  std::vector<InteractionPtr> exclusions = block.GetExclusions();
+  std::vector<InteractionPtr> cmaps = block.GetCMaps();
+  std::vector<InteractionPtr> constraints = block.GetConstraints();
+
+  for(std::vector<InteractionPtr>::iterator i = bonds.begin();
+      i != bonds.end(); ++i){
+    bonds_.push_back(InteractionPtr(new Interaction(**i)));
+  }
+  for(std::vector<InteractionPtr>::iterator i = angles.begin();
+      i != angles.end(); ++i){
+    angles_.push_back(InteractionPtr(new Interaction(**i)));
+  }
+  for(std::vector<InteractionPtr>::iterator i = dihedrals.begin();
+      i != dihedrals.end(); ++i){
+    dihedrals_.push_back(InteractionPtr(new Interaction(**i)));
+  }
+  for(std::vector<InteractionPtr>::iterator i = impropers.begin();
+      i != impropers.end(); ++i){
+    impropers_.push_back(InteractionPtr(new Interaction(**i)));
+  }
+  for(std::vector<InteractionPtr>::iterator i = exclusions.begin();
+      i != exclusions.end(); ++i){
+    exclusions_.push_back(InteractionPtr(new Interaction(**i)));
+  }
+  for(std::vector<InteractionPtr>::iterator i = cmaps.begin();
+      i != cmaps.end(); ++i){
+    cmaps_.push_back(InteractionPtr(new Interaction(**i)));
+  }
+  for(std::vector<InteractionPtr>::iterator i = constraints.begin();
+      i != constraints.end(); ++i){
+    constraints_.push_back(InteractionPtr(new Interaction(**i)));
+  }
+}
+
+int BuildingBlock::GetAtomIndex(const String& atom_name) const{
+
+  uint ind = std::find(atoms_.begin(),atoms_.end(),atom_name) - atoms_.begin();
+  
+  if(ind<atoms_.size()){
+    return ind;
+  }
+  return -1;
+}
+
+bool BuildingBlock::Match(const ost::mol::ResidueHandle& handle, bool match_connectivity, String& info) const{
+
+  //check for size
+  if(uint(handle.GetAtomCount()) != atoms_.size()){
+    std::stringstream ss;
+    ss << "Expected "<<atoms_.size()<<" atoms, got "<<handle.GetAtomCount();
+    info = ss.str();
+    return false;
+  }
+
+  //check for presence of particular atoms
+  for(std::vector<String>::const_iterator i = atoms_.begin(); i!=atoms_.end(); ++i){
+    if(!handle.FindAtom(*i).IsValid()){
+      std::stringstream ss;
+      ss << "Buildingblock has atom of name " << *i;
+      ss << ", which is not present in residue";
+      info = ss.str();
+      return false;
+    }
+  }
+
+  if(!match_connectivity) return true;
+
+  //check connectivity by extracting all unique bonds from handle,
+  //also bonds to other residues.
+  std::set<std::pair<String,String> > raw_bonds_handle;
+  std::vector<InteractionPtr> bonds_handle;
+  ost::mol::AtomHandleList atom_list = handle.GetAtomList();
+  ost::mol::ResidueHandle prev = handle.GetPrev();
+  ost::mol::ResidueHandle next = handle.GetNext();
+  ost::mol::AtomHandle atom_one;
+  ost::mol::AtomHandle atom_two;
+  String name_one;
+  String name_two;
+  std::vector<String> names;
+  names.push_back("");
+  names.push_back("");
+  ost::mol::BondHandleList bond_list;
+
+  for(ost::mol::AtomHandleList::iterator i = atom_list.begin();
+      i != atom_list.end(); ++i){
+    bond_list = i->GetBondList();
+    for(ost::mol::BondHandleList::iterator j = bond_list.begin(); 
+        j != bond_list.end(); ++j){
+      atom_one = j->GetFirst();
+      atom_two = j->GetSecond();
+      name_one = atom_one.GetName();
+      name_two = atom_two.GetName();
+
+      if(atom_one.GetResidue() == prev) name_one = "-"+name_one;
+      else if(atom_one.GetResidue() == next) name_one = "+"+name_one;
+      else if(atom_one.GetResidue() != handle) continue; //in the building block
+                                                         //there can only be atoms
+                                                         //to previous or subsequent
+                                                         //residues. So we don't check
+                                                         //cases as they occur for example
+                                                         //in disulfid bridges
+      if(atom_two.GetResidue() == prev) name_two = "-"+name_two;
+      else if(atom_two.GetResidue() == next) name_two = "+"+name_two;
+      else if(atom_two.GetResidue() != handle) continue; //dito
+
+      if(atom_one.GetIndex()<atom_two.GetIndex()) raw_bonds_handle.insert(std::make_pair(name_one,name_two));
+      else raw_bonds_handle.insert(std::make_pair(name_two,name_one)); 
+
+    }
+  }
+
+  for(std::set<std::pair<String,String> >::iterator i = raw_bonds_handle.begin();
+      i != raw_bonds_handle.end(); ++i){
+    InteractionPtr p(new Interaction(HarmonicBond));
+    names[0] = i->first;
+    names[1] = i->second;
+    p->SetNames(names);
+    bonds_handle.push_back(p);
+  }
+
+  bool found;
+  //let's first check for bonds
+  for(std::vector<InteractionPtr>::const_iterator i = bonds_.begin();
+      i!=bonds_.end(); ++i){
+    found = false;
+    for(std::vector<InteractionPtr>::iterator j = bonds_handle.begin();
+        j != bonds_handle.end(); ++j){
+      if((*j)->MatchNames((*i)->GetNames())){
+        found = true;
+        std::vector<String> names = (*j)->GetNames();
+        raw_bonds_handle.erase(std::make_pair(names[0],names[1]));
+        break;
+      }
+    }
+    if(!found){
+      std::stringstream ss;
+      std::vector<String> names_for_info = (*i)->GetNames();
+      ss << "Buildingblock defines bond between \"" <<names_for_info[0];
+      ss << "\" and \"" << names_for_info[1] << "\". Those atoms are not connected in your residue";
+      info = ss.str();
+      return false;
+    }
+  }
+  //If there is a distance constraint matching a remaining raw bond, we also
+  //remove it from raw bonds
+  for(std::vector<InteractionPtr>::const_iterator i = constraints_.begin();
+      i != constraints_.end(); ++i){
+    for(std::vector<InteractionPtr>::iterator j = bonds_handle.begin();
+        j != bonds_handle.end(); ++j){
+      if((*j)->MatchNames((*i)->GetNames())){
+        std::vector<String> names = (*j)->GetNames();
+        raw_bonds_handle.erase(std::make_pair(names[0],names[1]));
+        break;
+      }
+    }
+  }
+  //we finally check whether there is an additional internal bond in the
+  //residue. Note, that a remaining bond to another residue (starting with +/-)
+  //is not a criterium for failing the match procedure
+  for(std::set<std::pair<String,String> >::iterator i = raw_bonds_handle.begin();
+      i != raw_bonds_handle.end(); ++i){
+    if( i->first.at(0) == '+' || i->first.at(0) == '-') continue;
+    if( i->second.at(0) == '+' || i->second.at(0) == '-') continue;
+    std::stringstream ss;
+    ss << "Your residue has a bond between atoms of name \"" << i->first << "\" and \"";
+    ss << i->second << "\", which is not defined in the buildingblock";
+    info = ss.str(); 
+    return false;
+  }
+  return true;
+}
+
+void BuildingBlock::Connect(ost::mol::ResidueHandle& handle, ost::mol::XCSEditor& ed){
+
+  if(!handle.IsValid()) throw ost::Error("Invalid Residue encountered in connecting procedure!");
+
+  ost::mol::ResidueHandle prev = handle.GetPrev();
+  ost::mol::ResidueHandle next = handle.GetNext();
+
+  //Let's build the connectivity
+  ost::mol::AtomHandle atom1,atom2;
+  std::vector<String> names;
+  String name1, name2;
+
+
+  for(std::vector<InteractionPtr>::iterator i = bonds_.begin();
+      i != bonds_.end(); ++i){
+
+    names = (*i)->GetNames();
+    name1 = names[0];
+    name2 = names[1];
+
+    if(name1[0] == '-'){
+      if(!prev.IsValid()) throw ost::Error("Cannot access previous residue in connecting procedure!");
+      atom1 = prev.FindAtom(name1.substr(1));
+    }
+    else if(name1[0] == '+'){
+      if(!next.IsValid()) throw ost::Error("Cannot access next residue in connecting procedure!");
+      atom1 = next.FindAtom(name1.substr(1));
+    }
+    else{
+      atom1 = handle.FindAtom(name1);
+    }
+
+    if(name2[0] == '-'){
+      if(!prev.IsValid()) throw ost::Error("Cannot access previous residue in connecting procedure!");
+      atom2 = prev.FindAtom(name2.substr(1));
+    }
+    else if(name2[0] == '+'){
+      if(!next.IsValid()) throw ost::Error("Cannot access next residue in connecting procedure!");
+      atom2 = next.FindAtom(name2.substr(1));
+    }
+    else{
+      atom2 = handle.FindAtom(name2);
+    }
+
+    if(!atom1.IsValid() || !atom2.IsValid()) throw ost::Error("Could not find required atom in connecting procedure!");
+   
+    ed.Connect(atom1,atom2);
+  }
+}
+
+String BuildingBlock::GetType(const String& name) const{
+  int index = this->GetAtomIndex(name);
+  if(index!=-1) return types_[index];
+  std::stringstream ss;
+  ss << "Could not find requested atom of name \""<<name;
+  ss << "\" in buildingblock!";
+  throw ost::Error(ss.str());
+}
+
+Real BuildingBlock::GetCharge(const String& name) const{
+  int index = this->GetAtomIndex(name);
+  if(index!=-1) return charges_[index];
+  std::stringstream ss;
+  ss << "Could not find requested atom of name \""<<name;
+  ss << "\" in buildingblock!";
+  throw ost::Error(ss.str());
+}
+
+Real BuildingBlock::GetMass(const String& name) const{
+  int index = this->GetAtomIndex(name);
+  if(index!=-1) return masses_[index];
+  std::stringstream ss;
+  ss << "Could not find requested atom of name \""<<name;
+  ss << "\" in buildingblock!";
+  throw ost::Error(ss.str());
+}
+
+
+void BuildingBlock::AddBond(InteractionPtr p, bool replace_existing){
+  this->CheckInteractionToAdd(p);
+  if(replace_existing){
+    std::vector<String> names = p->GetNames();
+    for(uint i = 0; i < bonds_.size(); ++i){
+      if(bonds_[i]->MatchNames(names)){
+        bonds_.erase(bonds_.begin() + i);
+        --i;
+      }
+    }
+  }
+  bonds_.push_back(p);
+}
+
+void BuildingBlock::AddAngle(InteractionPtr p, bool replace_existing){
+  this->CheckInteractionToAdd(p);
+  if(replace_existing){
+    std::vector<String> names = p->GetNames();
+    for(uint i = 0; i < angles_.size(); ++i){
+      if(angles_[i]->MatchNames(names)){
+        angles_.erase(angles_.begin() + i);
+        --i;
+      }
+    }
+  }
+  angles_.push_back(p);
+}
+
+void BuildingBlock::AddDihedral(InteractionPtr p, bool replace_existing){
+  this->CheckInteractionToAdd(p);
+  if(replace_existing){
+    std::vector<String> names = p->GetNames();
+    for(uint i = 0; i < dihedrals_.size(); ++i){
+      if(dihedrals_[i]->MatchNames(names)){
+        dihedrals_.erase(dihedrals_.begin() + i);
+        --i;
+      }
+    }
+  }
+  dihedrals_.push_back(p);
+}
+
+void BuildingBlock::AddImproper(InteractionPtr p, bool replace_existing){
+  this->CheckInteractionToAdd(p);
+  if(replace_existing){
+    std::vector<String> names = p->GetNames();
+    for(uint i = 0; i < impropers_.size(); ++i){
+      if(impropers_[i]->MatchNames(names)){
+        impropers_.erase(impropers_.begin() + i);
+        --i;
+      }
+    }
+  }
+  impropers_.push_back(p);
+}
+
+void BuildingBlock::AddExclusion(InteractionPtr p, bool replace_existing){
+  this->CheckInteractionToAdd(p);
+  if(replace_existing){
+    std::vector<String> names = p->GetNames();
+    for(uint i = 0; i < exclusions_.size(); ++i){
+      if(exclusions_[i]->MatchNames(names)){
+        exclusions_.erase(exclusions_.begin() + i);
+        --i;
+      }
+    }
+  }
+  exclusions_.push_back(p);
+}
+
+void BuildingBlock::AddCMap(InteractionPtr p, bool replace_existing){
+  this->CheckInteractionToAdd(p);
+  if(replace_existing){
+    std::vector<String> names = p->GetNames();
+    for(uint i = 0; i < cmaps_.size(); ++i){
+      if(cmaps_[i]->MatchNames(names)){
+        cmaps_.erase(cmaps_.begin() + i);
+        --i;
+      }
+    }
+  }
+  cmaps_.push_back(p);
+}
+
+void BuildingBlock::AddConstraint(InteractionPtr p, bool replace_existing){
+  this->CheckInteractionToAdd(p);
+  if(replace_existing){
+    std::vector<String> names = p->GetNames();
+    for(uint i = 0; i < constraints_.size(); ++i){
+      if(constraints_[i]->MatchNames(names)){
+        constraints_.erase(constraints_.begin() + i);
+        --i;
+      }
+    }
+  }
+  constraints_.push_back(p);
+}
+
+void BuildingBlock::RemoveAtom(const String& name){
+  int index = this->GetAtomIndex(name);
+  if(index != -1){
+    atoms_.erase(atoms_.begin()+index);
+    types_.erase(types_.begin()+index);
+    charges_.erase(charges_.begin()+index);
+    masses_.erase(masses_.begin()+index);
+  }
+
+  //All interactions, that contain this atom get deleted as well
+  //note, that we're looking at all interactions independently whether tere
+  //really is such an atom in the building block
+  for(uint i = 0; i < bonds_.size(); ++i){
+    if(bonds_[i]->HasName(name)){
+      bonds_.erase(bonds_.begin()+i);
+      --i;
+    }
+  }
+  for(uint i = 0; i < angles_.size(); ++i){
+    if(angles_[i]->HasName(name)){
+      angles_.erase(angles_.begin()+i);
+      --i;
+    }
+  }
+  for(uint i = 0; i < dihedrals_.size(); ++i){
+    if(dihedrals_[i]->HasName(name)){
+      dihedrals_.erase(dihedrals_.begin()+i);
+      --i;
+    }
+  }
+  for(uint i = 0; i < impropers_.size(); ++i){
+    if(impropers_[i]->HasName(name)){
+      impropers_.erase(impropers_.begin()+i);
+      --i;
+    }
+  }
+  for(uint i = 0; i < exclusions_.size(); ++i){
+    if(exclusions_[i]->HasName(name)){
+      exclusions_.erase(exclusions_.begin()+i);
+      --i;
+    }
+  }
+  for(uint i = 0; i < cmaps_.size(); ++i){
+    if(cmaps_[i]->HasName(name)){
+      cmaps_.erase(cmaps_.begin()+i);
+      --i;
+    }
+  }
+  for(uint i = 0; i < constraints_.size(); ++i){
+    if(constraints_[i]->HasName(name)){
+      constraints_.erase(constraints_.begin()+i);
+      --i;
+    }
+  }
+}
+
+void BuildingBlock::ReplaceAtom(const String& name,const String& new_name,
+                                const String& new_type, Real new_charge, Real new_mass){
+
+  int index = this->GetAtomIndex(name);
+  if(index != -1){
+    atoms_[index] = new_name;
+    types_[index] = new_type;
+    charges_[index] = new_charge;
+    masses_[index] = new_mass;
+
+    //we don't want to search every interaction associated with this
+    //atom, so we call the ReplaceAtom method for every interaction
+    //nothing will happen, if the atom of interest is not part of
+    //that interaction.
+
+    for(std::vector<InteractionPtr>::iterator i = bonds_.begin();
+        i!=bonds_.end(); ++i){
+      (*i)->ReplaceAtom(name, new_name, new_type);
+    }
+
+    for(std::vector<InteractionPtr>::iterator i = angles_.begin();
+        i!=angles_.end(); ++i){
+      (*i)->ReplaceAtom(name, new_name, new_type);
+    }
+
+    for(std::vector<InteractionPtr>::iterator i = dihedrals_.begin();
+        i!=dihedrals_.end(); ++i){
+      (*i)->ReplaceAtom(name, new_name, new_type);
+    }
+
+    for(std::vector<InteractionPtr>::iterator i = impropers_.begin();
+        i!=impropers_.end(); ++i){
+      (*i)->ReplaceAtom(name, new_name, new_type);
+    }
+
+    for(std::vector<InteractionPtr>::iterator i = exclusions_.begin();
+        i!=exclusions_.end(); ++i){
+      (*i)->ReplaceAtom(name, new_name, new_type);
+    }
+
+    for(std::vector<InteractionPtr>::iterator i = cmaps_.begin();
+        i!=cmaps_.end(); ++i){
+      (*i)->ReplaceAtom(name, new_name, new_type);
+    }
+  }
+}
+
+void BuildingBlock::AddAtom(const String& name, const String& type, Real charge, Real mass){
+  if (std::find(atoms_.begin(),atoms_.end(),name) != atoms_.end()) return;
+  atoms_.push_back(name);
+  types_.push_back(type);
+  charges_.push_back(charge);
+  masses_.push_back(mass);
+}
+
+void BuildingBlock::RemoveInteractionsToPrev(){
+  std::vector<String> names;
+  bool has_prev_atom;
+
+  for(uint i = 0; i < bonds_.size(); ++i){
+    has_prev_atom = false;
+    names = bonds_[i]->GetNames();
+    for(std::vector<String>::iterator j = names.begin();
+        j != names.end(); ++j){
+      if((*j)[0] == '-'){
+        has_prev_atom = true;
+        break;
+      }
+    }
+    if(has_prev_atom){
+      bonds_.erase(bonds_.begin()+i);
+      --i;
+    }
+  }
+
+  for(uint i = 0; i < angles_.size(); ++i){
+    has_prev_atom = false;
+    names = angles_[i]->GetNames();
+    for(std::vector<String>::iterator j = names.begin();
+        j != names.end(); ++j){
+      if((*j)[0] == '-'){
+        has_prev_atom = true;
+        break;
+      }
+    }
+    if(has_prev_atom){
+      angles_.erase(angles_.begin()+i);
+      --i;
+    }
+  }
+
+  for(uint i = 0; i < dihedrals_.size(); ++i){
+    has_prev_atom = false;
+    names = dihedrals_[i]->GetNames();
+    for(std::vector<String>::iterator j = names.begin();
+        j != names.end(); ++j){
+      if((*j)[0] == '-'){
+        has_prev_atom = true;
+        break;
+      }
+    }
+    if(has_prev_atom){
+      dihedrals_.erase(dihedrals_.begin()+i);
+      --i;
+    }
+  }
+
+  for(uint i = 0; i < impropers_.size(); ++i){
+    has_prev_atom = false;
+    names = impropers_[i]->GetNames();
+    for(std::vector<String>::iterator j = names.begin();
+        j != names.end(); ++j){
+      if((*j)[0] == '-'){
+        has_prev_atom = true;
+        break;
+      }
+    }
+    if(has_prev_atom){
+      impropers_.erase(impropers_.begin()+i);
+      --i;
+    }
+  }
+
+  for(uint i = 0; i < exclusions_.size(); ++i){
+    has_prev_atom = false;
+    names = exclusions_[i]->GetNames();
+    for(std::vector<String>::iterator j = names.begin();
+        j != names.end(); ++j){
+      if((*j)[0] == '-'){
+        has_prev_atom = true;
+        break;
+      }
+    }
+    if(has_prev_atom){
+      exclusions_.erase(exclusions_.begin()+i);
+      --i;
+    }
+  }
+
+  for(uint i = 0; i < cmaps_.size(); ++i){
+    has_prev_atom = false;
+    names = cmaps_[i]->GetNames();
+    for(std::vector<String>::iterator j = names.begin();
+        j != names.end(); ++j){
+      if((*j)[0] == '-'){
+        has_prev_atom = true;
+        break;
+      }
+    }
+    if(has_prev_atom){
+      cmaps_.erase(cmaps_.begin()+i);
+      --i;
+    }
+  }
+}
+
+void BuildingBlock::RemoveInteractionsToNext(){
+  std::vector<String> names;
+  bool has_next_atom;
+
+  for(uint i = 0; i < bonds_.size(); ++i){
+    has_next_atom = false;
+    names = bonds_[i]->GetNames();
+    for(std::vector<String>::iterator j = names.begin();
+        j != names.end(); ++j){
+      if((*j)[0] == '+'){
+        has_next_atom = true;
+        break;
+      }
+    }
+    if(has_next_atom){
+      bonds_.erase(bonds_.begin()+i);
+      --i;
+    }
+  }
+
+  for(uint i = 0; i < angles_.size(); ++i){
+    has_next_atom = false;
+    names = angles_[i]->GetNames();
+    for(std::vector<String>::iterator j = names.begin();
+        j != names.end(); ++j){
+      if((*j)[0] == '+'){
+        has_next_atom = true;
+        break;
+      }
+    }
+    if(has_next_atom){
+      angles_.erase(angles_.begin()+i);
+      --i;
+    }
+  }
+
+  for(uint i = 0; i < dihedrals_.size(); ++i){
+    has_next_atom = false;
+    names = dihedrals_[i]->GetNames();
+    for(std::vector<String>::iterator j = names.begin();
+        j != names.end(); ++j){
+      if((*j)[0] == '+'){
+        has_next_atom = true;
+        break;
+      }
+    }
+    if(has_next_atom){
+      dihedrals_.erase(dihedrals_.begin()+i);
+      --i;
+    }
+  }
+
+  for(uint i = 0; i < impropers_.size(); ++i){
+    has_next_atom = false;
+    names = impropers_[i]->GetNames();
+    for(std::vector<String>::iterator j = names.begin();
+        j != names.end(); ++j){
+      if((*j)[0] == '+'){
+        has_next_atom = true;
+        break;
+      }
+    }
+    if(has_next_atom){
+      impropers_.erase(impropers_.begin()+i);
+      --i;
+    }
+  }
+
+  for(uint i = 0; i < exclusions_.size(); ++i){
+    has_next_atom = false;
+    names = exclusions_[i]->GetNames();
+    for(std::vector<String>::iterator j = names.begin();
+        j != names.end(); ++j){
+      if((*j)[0] == '+'){
+        has_next_atom = true;
+        break;
+      }
+    }
+    if(has_next_atom){
+      exclusions_.erase(exclusions_.begin()+i);
+      --i;
+    }
+  }
+
+  for(uint i = 0; i < cmaps_.size(); ++i){
+    has_next_atom = false;
+    names = cmaps_[i]->GetNames();
+    for(std::vector<String>::iterator j = names.begin();
+        j != names.end(); ++j){
+      if((*j)[0] == '+'){
+        has_next_atom = true;
+        break;
+      }
+    }
+    if(has_next_atom){
+      cmaps_.erase(cmaps_.begin()+i);
+      --i;
+    }
+  }
+}
+
+void BuildingBlock::CheckInteractionToAdd(InteractionPtr p) const{
+  if(p->GetNames().empty()){
+    throw ost::Error("Expect interaction to have names properly set!");
+  }
+}
+
+}}}//ns
diff --git a/modules/mol/mm/src/buildingblock.hh b/modules/mol/mm/src/buildingblock.hh
new file mode 100644
index 0000000000000000000000000000000000000000..aa28327d4b03f278665b3fe9d4ff9307d9298e40
--- /dev/null
+++ b/modules/mol/mm/src/buildingblock.hh
@@ -0,0 +1,267 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#ifndef OST_MM_BUILDING_BLOCK_HH
+#define OST_MM_BUILDING_BLOCK_HH
+
+#include <vector>
+#include <limits>
+#include <set>
+
+#include <boost/shared_ptr.hpp>
+
+#include <ost/mol/mm/interaction.hh>
+#include <ost/message.hh>
+#include <ost/mol/bond_handle.hh>
+#include <ost/mol/residue_handle.hh>
+#include <ost/mol/atom_handle.hh>
+#include <ost/mol/xcs_editor.hh>
+#include <ost/geom/vec3.hh>
+
+
+namespace ost { namespace mol{ namespace mm{
+
+class BuildingBlock;
+typedef boost::shared_ptr<BuildingBlock> BuildingBlockPtr;
+
+class BuildingBlock{
+public:
+  BuildingBlock() { }
+
+  //copy constructor needs to be defined explicitely, since the forces
+  //have to be newly created
+  BuildingBlock(const BuildingBlock& block); 
+
+  bool Match(const ost::mol::ResidueHandle& handle, bool match_connectivity, String& info) const;
+
+  void Connect(ost::mol::ResidueHandle& handle, ost::mol::XCSEditor& ed);
+
+  //getter functionality for all buildingblock members
+
+  std::vector<String> GetAtoms() const { return atoms_; }
+
+  std::vector<String> GetTypes() const { return types_; }
+
+  std::vector<Real> GetCharges() const { return charges_; }
+
+  std::vector<Real> GetMasses() const { return masses_; }
+
+  String GetType(const String& name) const;
+
+  Real GetCharge(const String& name) const;
+
+  Real GetMass(const String& name) const;
+
+  std::vector<InteractionPtr> GetBonds() const { return bonds_; }
+
+  std::vector<InteractionPtr> GetAngles() const { return angles_; }
+
+  std::vector<InteractionPtr> GetDihedrals() const { return dihedrals_; }
+
+  std::vector<InteractionPtr> GetImpropers() const { return impropers_; }
+
+  std::vector<InteractionPtr> GetCMaps() const { return cmaps_; }
+
+  std::vector<InteractionPtr> GetExclusions() const { return exclusions_; }
+
+  std::vector<InteractionPtr> GetConstraints() const { return constraints_;}
+
+  //Add data to building block
+
+  void AddAtom(const String& name, const String& type, Real charge, Real mass = std::numeric_limits<Real>::quiet_NaN());
+
+  void AddBond(InteractionPtr p, bool replace_existing = false);
+
+  void AddAngle(InteractionPtr p, bool replace_existing = false);
+
+  void AddDihedral(InteractionPtr p, bool replace_existing = false);
+
+  void AddImproper(InteractionPtr p, bool replace_existing = false);
+
+  void AddExclusion(InteractionPtr p, bool replace_existing = false);
+
+  void AddCMap(InteractionPtr p, bool replace_existing = false);
+
+  void AddConstraint(InteractionPtr p, bool replace_existing = false);
+
+  //modifiers
+
+  //removes atom and all interactions associated to it
+  void RemoveAtom(const String& name);
+
+  //replaces atom in all interactions
+  void ReplaceAtom(const String& name,const String& new_name,
+                   const String& new_type, Real new_charge, 
+                   Real new_mass = std::numeric_limits<Real>::quiet_NaN());
+
+
+  //remove all interactions to previous or next residue
+  void RemoveInteractionsToPrev();
+
+  void RemoveInteractionsToNext();
+
+  template <typename DS>
+  void Serialize(DS& ds){
+    int num_atoms = atoms_.size();
+    ds & num_atoms;
+
+    if(ds.IsSource()){
+      atoms_ = std::vector<String>(num_atoms);
+      types_ = std::vector<String>(num_atoms);
+      charges_ = std::vector<Real>(num_atoms);
+      masses_ = std::vector<Real>(num_atoms);
+    }
+
+    for(int i = 0; i < num_atoms; ++i){
+      ds & atoms_[i];
+      ds & types_[i];
+      ds & charges_[i];
+      ds & masses_[i];
+    }
+
+    int num_bonds = bonds_.size();
+    int num_angles = angles_.size();
+    int num_dihedrals = dihedrals_.size();
+    int num_impropers = impropers_.size();
+    int num_exclusions = exclusions_.size();
+    int num_cmaps = cmaps_.size();
+    int num_constraints = constraints_.size();
+
+    ds & num_bonds;
+    ds & num_angles;
+    ds & num_dihedrals;
+    ds & num_impropers;
+    ds & num_exclusions;
+    ds & num_cmaps;
+    ds & num_constraints;
+
+    for(int i = 0; i < num_bonds; ++i){
+      int func_type;
+      if(ds.IsSource()){
+        ds & func_type;
+        bonds_.push_back(InteractionPtr(new Interaction(FuncType(func_type))));
+      }
+      else{
+        func_type = bonds_[i]->GetFuncType();
+        ds & func_type;
+      }
+      ds & *(bonds_[i]);
+    }
+
+    for(int i = 0; i < num_angles; ++i){
+      int func_type;
+      if(ds.IsSource()){
+        ds & func_type;
+        angles_.push_back(InteractionPtr(new Interaction(FuncType(func_type))));
+      }
+      else{
+        func_type = angles_[i]->GetFuncType();
+        ds & func_type;
+      }
+      ds & *(angles_[i]);
+    }
+
+    for(int i = 0; i < num_dihedrals; ++i){
+      int func_type;
+      if(ds.IsSource()){
+        ds & func_type;
+        dihedrals_.push_back(InteractionPtr(new Interaction(FuncType(func_type))));
+      }
+      else{
+        func_type = dihedrals_[i]->GetFuncType();
+        ds & func_type;
+      }
+      ds & *(dihedrals_[i]);
+    }
+
+    for(int i = 0; i < num_impropers; ++i){
+      int func_type;
+      if(ds.IsSource()){
+        ds & func_type;
+        impropers_.push_back(InteractionPtr(new Interaction(FuncType(func_type))));
+      }
+      else{
+        func_type = impropers_[i]->GetFuncType();
+        ds & func_type;
+      }
+      ds & *(impropers_[i]);
+    }
+
+    for(int i = 0; i < num_exclusions; ++i){
+      int func_type;
+      if(ds.IsSource()){
+        ds & func_type;
+        exclusions_.push_back(InteractionPtr(new Interaction(FuncType(func_type))));
+      }
+      else{
+        func_type = exclusions_[i]->GetFuncType();
+        ds & func_type;
+      }
+      ds & *(exclusions_[i]);
+    }
+
+    for(int i = 0; i < num_cmaps; ++i){
+      int func_type;
+      if(ds.IsSource()){
+        ds & func_type;
+        cmaps_.push_back(InteractionPtr(new Interaction(FuncType(func_type))));
+      }
+      else{
+        func_type = cmaps_[i]->GetFuncType();
+        ds & func_type;
+      }
+      ds & *(cmaps_[i]);
+    }
+
+    for(int i = 0; i < num_constraints; ++i){
+      int func_type;
+      if(ds.IsSource()){
+        ds & func_type;
+        constraints_.push_back(InteractionPtr(new Interaction(FuncType(func_type))));
+      }
+      else{
+        func_type = constraints_[i]->GetFuncType();
+        ds & func_type;
+      }
+      ds & *(constraints_[i]);
+    }
+  }
+
+
+private:
+
+  int GetAtomIndex(const String& atom_name) const;
+  void CheckInteractionToAdd(InteractionPtr p) const;
+
+  std::vector<String> atoms_;
+  std::vector<String> types_;
+  std::vector<Real> charges_;
+  std::vector<Real> masses_;
+  std::vector<InteractionPtr> bonds_;
+  std::vector<InteractionPtr> angles_;
+  std::vector<InteractionPtr> dihedrals_;
+  std::vector<InteractionPtr> impropers_;
+  std::vector<InteractionPtr> exclusions_;
+  std::vector<InteractionPtr> cmaps_;
+  std::vector<InteractionPtr> constraints_;
+};
+
+}}}
+
+#endif
diff --git a/modules/mol/mm/src/ff_reader.cc b/modules/mol/mm/src/ff_reader.cc
new file mode 100644
index 0000000000000000000000000000000000000000..dd14426c8f13145fdf66ee32e07c5d89130e18ce
--- /dev/null
+++ b/modules/mol/mm/src/ff_reader.cc
@@ -0,0 +1,2088 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <ost/mol/mm/ff_reader.hh>
+
+
+namespace ost { namespace mol{ namespace mm {
+
+
+GromacsData::GromacsData(){
+  keyword_map_["atoms"] = 0;
+  keyword_map_["bonds"] = 1;
+  keyword_map_["angles"] = 2;
+  keyword_map_["impropers"] = 3;
+  keyword_map_["dihedrals"] = 4;
+  keyword_map_["exclusions"] = 5;
+  keyword_map_["cmap"] = 6;
+  keyword_map_["replace"] = 7;
+  keyword_map_["moleculetype"] = 8;
+  keyword_map_["add"] = 9;
+  keyword_map_["delete"] = 10;
+  keyword_map_["bondtypes"] = 11;
+  keyword_map_["constrainttypes"] = 12;
+  keyword_map_["angletypes"] = 13;
+  keyword_map_["dihedraltypes"] = 14;
+  keyword_map_["atomtypes"] = 15;
+  keyword_map_["implicit_genborn_params"] = 16;
+  keyword_map_["pairtypes"] = 17;
+  keyword_map_["nonbond_params"] = 18;
+  keyword_map_["defaults"] = 19;
+  keyword_map_["cmaptypes"] = 20;
+  keyword_map_["pairs"] = 21;
+  keyword_map_["settles"] = 22;
+
+
+  renaming_to_standard_["ILE"] = std::vector<std::pair<String,String> >();
+  renaming_to_standard_["HOH"] = std::vector<std::pair<String,String> >();
+  renaming_to_standard_["HO4"] = std::vector<std::pair<String,String> >();
+  renaming_to_standard_["HO5"] = std::vector<std::pair<String,String> >();
+  renaming_to_standard_["HEME"] = std::vector<std::pair<String,String> >();
+  renaming_to_standard_["protein"] = std::vector<std::pair<String,String> >();
+
+  renaming_to_standard_["ILE"].push_back(std::make_pair("CD1","CD"));
+  renaming_to_standard_["ILE"].push_back(std::make_pair("HD11","HD1"));
+  renaming_to_standard_["ILE"].push_back(std::make_pair("HD12","HD2"));
+  renaming_to_standard_["ILE"].push_back(std::make_pair("HD13","HD3"));
+
+  renaming_to_standard_["HOH"].push_back(std::make_pair("O","OW"));
+  renaming_to_standard_["HOH"].push_back(std::make_pair("OW1","OW"));
+  renaming_to_standard_["HO4"].push_back(std::make_pair("O","OW"));
+  renaming_to_standard_["HO4"].push_back(std::make_pair("OW1","OW"));
+  renaming_to_standard_["HO5"].push_back(std::make_pair("O","OW"));
+  renaming_to_standard_["HO5"].push_back(std::make_pair("OW1","OW"));
+
+  renaming_to_standard_["HEME"].push_back(std::make_pair("N_A","NA"));
+  renaming_to_standard_["HEME"].push_back(std::make_pair("N_B","NB"));
+  renaming_to_standard_["HEME"].push_back(std::make_pair("N_C","NC"));
+  renaming_to_standard_["HEME"].push_back(std::make_pair("N_D","ND"));
+
+  renaming_to_standard_["protein"].push_back(std::make_pair("O1","O"));
+  renaming_to_standard_["protein"].push_back(std::make_pair("O2","OXT"));
+  renaming_to_standard_["protein"].push_back(std::make_pair("OT1","O"));
+  renaming_to_standard_["protein"].push_back(std::make_pair("OT2","OXT"));
+  renaming_to_standard_["protein"].push_back(std::make_pair("OT","OXT"));
+  renaming_to_standard_["protein"].push_back(std::make_pair("O'","O"));
+  renaming_to_standard_["protein"].push_back(std::make_pair("O''","OXT"));
+  renaming_to_standard_["protein"].push_back(std::make_pair("OC1","O"));
+  renaming_to_standard_["protein"].push_back(std::make_pair("OC2","OXT"));
+  renaming_to_standard_["protein"].push_back(std::make_pair("HN","H"));
+  renaming_to_standard_["protein"].push_back(std::make_pair("HT1","H1"));
+  renaming_to_standard_["protein"].push_back(std::make_pair("HT2","H2"));
+  renaming_to_standard_["protein"].push_back(std::make_pair("HT3","H3"));
+}
+
+int GromacsData::GetKeywordIndex(const String& keyword){
+  String lowercase_keyword = keyword;
+  boost::algorithm::to_lower(lowercase_keyword);
+  if(keyword_map_.find(lowercase_keyword) == keyword_map_.end()) return -1;
+  else return keyword_map_[lowercase_keyword];
+}
+
+String GromacsData::ConvertToStandard(const String& res_name, const String& atom_name){
+  
+  if(renaming_to_standard_.find(res_name) == renaming_to_standard_.end()) return atom_name;
+  for(std::vector<std::pair<String,String> >::iterator i = renaming_to_standard_[res_name].begin();
+      i != renaming_to_standard_[res_name].end(); ++i){
+    if(i->first == atom_name) return i->second;
+  }
+  return  atom_name;
+}
+
+bool GromacsData::ConversionExists(const String& res_name){
+  return renaming_to_standard_.find(res_name) != renaming_to_standard_.end();
+}
+
+GromacsDataPtr GromacsData::Instance(){
+  if(!instance_){
+    instance_ = GromacsDataPtr(new GromacsData);
+  }
+  return instance_;
+}
+
+GromacsDataPtr GromacsData::instance_ = GromacsDataPtr();
+
+CHARMMData::CHARMMData() {
+
+  keyword_map_["atoms"] = 0;
+  keyword_map_["bonds"] = 1;
+  keyword_map_["angles"] = 2;
+  keyword_map_["dihedrals"] = 3;
+  keyword_map_["improper"] = 4;
+  keyword_map_["cmap"] = 5;
+  keyword_map_["nonbonded"] = 6;
+  keyword_map_["hbond"] = 7;
+  keyword_map_["end"] = 8;
+  keyword_map_["mass"] = 9;
+  keyword_map_["decl"] = 10;
+  keyword_map_["defa"] = 11;
+  keyword_map_["auto"] = 12;
+  keyword_map_["resi"] = 13;
+  keyword_map_["pres"] = 14;
+  keyword_map_["atom"] = 15;
+  keyword_map_["group"] = 16;
+  keyword_map_["bond"] = 17;
+  keyword_map_["angle"] = 18;
+  keyword_map_["dihe"] = 19;
+  keyword_map_["impr"] = 20;
+  keyword_map_["donor"] = 21;
+  keyword_map_["acceptor"] = 22;
+  keyword_map_["ic"] = 23;
+  keyword_map_["patching"] = 24;
+  keyword_map_["print"] = 25;
+  keyword_map_["double"] = 26;
+}
+
+int CHARMMData::GetKeywordIndex(const String& keyword){
+  String lowercase_keyword = keyword;
+  boost::algorithm::to_lower(lowercase_keyword);
+  if(keyword_map_.find(lowercase_keyword) == keyword_map_.end()) return -1;
+  else return keyword_map_[lowercase_keyword];
+}
+
+
+CHARMMDataPtr CHARMMData::Instance(){
+  if(!instance_){
+    instance_ = CHARMMDataPtr(new CHARMMData);
+  }
+  return instance_;
+}
+
+CHARMMDataPtr CHARMMData::instance_ = CHARMMDataPtr();
+
+std::vector<std::vector<String> > MMPreprocessor::Process(const String& filename){
+
+  std::vector<std::vector<String> > file_content = this->ReadFile(filename);
+  std::vector<std::vector<String> > temp;
+  std::vector<std::vector<String> > return_file;
+
+  //we first resolve all include statements
+  String include_file_name;
+  for(uint i = 0; i<file_content.size(); ++i){
+    if(file_content[i][0] ==  "#include"){
+      if(file_content[i].size() != 2){
+        std::stringstream ss;
+        ss<<"Can only evaluate include statement in combination with a filename.";
+        ss<<"Also more stuff in the same line blows the thing up...";
+        throw ost::io::IOException(ss.str());
+      }
+      String include_filename = file_content[i][1].substr(1,file_content[i][1].size()-2);
+      temp = this->ReadFile(include_filename);
+      //directly delete the line with the
+      //include statement and fill in the full content
+      file_content.insert(file_content.erase(file_content.begin()+i), temp.begin(), temp.end());
+    }
+  }
+
+  //let's resolve all definitions
+  std::map<String,std::vector<String> >::iterator definitions_it;
+  for(uint i=0; i<file_content.size(); ++i){
+    //resolve definition
+    if(file_content[i][0] == "#define"){
+      if(file_content[i].size()==2){
+        defines_.insert(file_content[i][1]);
+        file_content.erase(file_content.begin()+i);
+        if(i == file_content.size()) break;
+        --i;
+        continue;
+      }
+      definitions_[file_content[i][1]] = std::vector<String>(file_content[i].begin()+2,file_content[i].end());
+      file_content.erase(file_content.begin()+i);
+      if(i == file_content.size()) break;
+      --i;
+      continue;
+    }
+    //resolve ifdef
+    if(file_content[i][0] == "#ifdef" || file_content[i][0] == "#ifndef"){
+      this->ResolveIFDEF(file_content,i);
+      --i;
+      continue;
+    }
+    //check whether a word in current line corresponds to a found definition
+    for(uint j = 0; j<file_content[i].size(); ++j){
+      definitions_it = definitions_.find(file_content[i][j]);
+      if(definitions_it!=definitions_.end()){
+        file_content[i].insert(file_content[i].erase(file_content[i].begin()+j),definitions_it->second.begin(),definitions_it->second.end());
+      }
+    }
+  }
+  return file_content;
+}
+
+void MMPreprocessor::ResolveIFDEF(std::vector<std::vector<String> >& file_content, int line_counter){
+
+  String ifdef_statement = file_content[line_counter][1];
+  bool logical_outcome;
+  if(file_content[line_counter][0] == "#ifdef"){
+    logical_outcome = defines_.find(ifdef_statement) != defines_.end();
+  }
+  else if(file_content[line_counter][0] == "#ifndef"){
+    logical_outcome = defines_.find(ifdef_statement) == defines_.end();
+  }
+  else{
+    throw ost::Error("Invalid preprocessor statement observed in ResolveIFDEF function!");
+  }
+
+  bool has_else = true;
+  uint else_position = line_counter+1;
+  while(true){
+    if(else_position >= file_content.size()){
+      throw ost::io::IOException("Invalid ifdef statement encountered!");
+    }
+    if(file_content[else_position][0] == "#ifdef" || file_content[else_position][0] == "#ifndef"){
+      this->ResolveIFDEF(file_content,else_position);
+    }
+    if(file_content[else_position][0] == "#else") break;
+    if(file_content[else_position][0] == "#endif"){
+      has_else = false;
+      break;
+    }
+    ++else_position;
+  }
+
+  uint endif_position = else_position+1;
+  while(true && has_else){
+    if(endif_position >= file_content.size()){
+      throw ost::io::IOException("Invalid ifdef statement encountered!");
+    }
+    if(file_content[endif_position][0] == "#ifdef" || file_content[endif_position][0] == "#ifndef"){
+      this->ResolveIFDEF(file_content,endif_position);
+    }
+    if(file_content[endif_position][0] == "#endif") break;
+    ++endif_position;
+  }
+
+  if(has_else){
+    if(logical_outcome){
+      //delete part after else
+      file_content.erase(file_content.begin()+else_position, file_content.begin()+endif_position+1);
+      file_content.erase(file_content.begin()+line_counter);
+    }
+    else{
+      //delete part before else
+      file_content.erase(file_content.begin()+line_counter,file_content.begin()+else_position+1);
+      file_content.erase(file_content.begin()+line_counter+(endif_position-else_position)-1);
+    }
+  }
+  else{
+    if(logical_outcome){//only delete ifdef and endif 
+      file_content.erase(file_content.begin()+else_position);
+      file_content.erase(file_content.begin()+line_counter);
+    }
+    else{//it's not defined => delete whole block
+      file_content.erase(file_content.begin()+line_counter,file_content.begin()+else_position+1);
+    }
+  }
+}
+
+std::vector<std::vector<String> > MMPreprocessor::ReadFile(const String& filename){
+
+  boost::filesystem::path file_path = basepath_ / filename;
+  std::ifstream file;
+  file.open((file_path.string()).c_str());
+
+  if(!file){
+    std::stringstream ss;
+    ss<<"Could not read file. File '";
+    ss<<filename<<"' does not exist!";
+    throw ost::io::IOException(ss.str());
+  }
+
+  std::vector<String> file_content;
+  std::vector<std::vector<String> > split_file_content;
+  String string_line;
+  ost::StringRef stringref_line;
+  std::vector<ost::StringRef> data;
+  std::vector<String> fill_data;
+
+  while(file.good()){
+    std::getline(file,string_line);
+    file_content.push_back(string_line);
+  }
+
+  //splitting the stuff up. Everything in a line coming after an element starting
+  //with a colon or exclamation mark, is neglected. (wont neglect anything of: 
+  //ab! c, but will neglect the second item of: ab !c)
+  for(std::vector<String>::iterator i = file_content.begin(); 
+      i!=file_content.end(); ++i){
+    stringref_line = ost::StringRef(i->c_str(),i->length());
+    data = stringref_line.split();
+    if(data.empty()) continue;
+    fill_data.clear();
+    for(std::vector<ost::StringRef>::iterator j = data.begin();
+        j!=data.end(); ++j){
+      //if(*(j->begin()) == ';' || *(j->begin()) == '*'){
+      if(*(j->begin()) == ';' || *(j->begin()) == '!'){
+        break;
+      }
+     fill_data.push_back(j->str());
+    } 
+    if(fill_data.empty()) continue;
+    split_file_content.push_back(fill_data);
+  }
+
+  //handling linebreaks ("\")
+  for(uint i = 0; i != split_file_content.size(); ++i){
+    if(*split_file_content[i].back().rbegin() == '\\'){
+      if(i < split_file_content.size() - 1){
+        if(split_file_content[i].back() == "\\"){
+          split_file_content[i].pop_back();
+        }
+        else{
+          split_file_content[i].back() = split_file_content[i].back().substr(0,split_file_content[i].back().size()-1);
+        }
+        if(split_file_content[i].empty()){
+          throw io::IOException("Observed single linebreak (\\) in one line of input file!");
+        }
+        for(std::vector<String>::iterator j = split_file_content[i+1].begin();
+            j != split_file_content[i+1].end(); ++j){
+          split_file_content[i].push_back(*j);
+        }
+        split_file_content.erase(split_file_content.begin()+i+1);
+        --i;
+      }
+    }
+  }
+  
+  return split_file_content;
+}
+
+FFReader::FFReader(const String& base_dir): preprocessor_(base_dir),
+                                                      ff_(new Forcefield)
+{ 
+  for(int i = 0; i < 4; ++i){
+    ff_bonded_types_.push_back(Invalid);
+    bonded_types_.push_back(Invalid);
+  }
+}
+
+void FFReader::ReadGromacsForcefield(){
+
+  //read in the forcefield
+  if(!boost::filesystem::exists(preprocessor_.GetBasedir() / "forcefield.itp")){
+    throw io::IOException("directory must contain forcefield.itp file!");
+  }
+  if(!boost::filesystem::exists(preprocessor_.GetBasedir() / "atomtypes.atp")){
+    throw io::IOException("directory must contain atomtypes.atp file!");
+  }
+  std::vector<std::vector<String> > content = preprocessor_.Process("forcefield.itp");
+  this->ParseForcefield(content);
+  content = preprocessor_.Process("atomtypes.atp");
+  this->ParseAtomTypes(content);
+}
+
+void FFReader::ReadResidueDatabase(const String& basename){
+  std::vector<std::vector<String> > data = preprocessor_.Process(basename+".rtp");
+  this->ParseRTP(data);
+
+  try{
+    data = preprocessor_.Process(basename+".arn");
+    this->ParseARN(data);
+  }catch(ost::io::IOException e) { }
+
+  try{
+    data = preprocessor_.Process(basename+".hdb");
+    this->ParseHDB(data);
+  }catch(ost::io::IOException e) { }
+
+  try{
+    data = preprocessor_.Process(basename+".n.tdb");
+    this->ParseNTDB(data);
+  }catch(ost::io::IOException e) { }
+
+  try{
+    data = preprocessor_.Process(basename+".c.tdb");
+    this->ParseCTDB(data);
+  }catch(ost::io::IOException e) { }
+
+  try{
+    data = preprocessor_.Process(basename+".vsd");
+    this->ParseVSD(data);
+  }catch(ost::io::IOException e) { }
+
+  try{
+    data = preprocessor_.Process(basename+".r2b");
+    this->ParseRtoB(data);
+  }catch(ost::io::IOException e) { }
+}
+
+void FFReader::ReadCHARMMPRM(const String& filename){
+  std::vector<std::vector<String> > data = preprocessor_.Process(filename);
+  this->ParseCHARMMPRM(data);
+}
+
+void FFReader::ReadCHARMMRTF(const String& filename){
+  std::vector<std::vector<String> > data = preprocessor_.Process(filename);
+  this->ParseCHARMMRTF(data);
+}
+
+void FFReader::ParseForcefield(std::vector<std::vector<String> >& content){
+
+  int keyword_id = -1;
+  std::vector<String> current_line;
+
+  for(uint line_counter = 0; line_counter<content.size(); ++line_counter){
+    current_line = content[line_counter];
+    if(current_line[0] == "["){
+      keyword_id = GromacsData::Instance()->GetKeywordIndex(current_line[1]);
+      if(keyword_id == -1){
+        std::stringstream ss;
+        ss << "Unknown keyword '"<<current_line[1];
+        ss << "' in forcefield file."<<std::endl;
+        throw io::IOException(ss.str());
+      }
+      continue;
+    }
+
+    switch(keyword_id){
+      case 11:{
+        InteractionPtr bond = this->ParseBond(current_line,true);
+        ff_->AddBond(bond);
+        ff_bonded_types_[0] = bond->GetFuncType();
+        break;
+      }
+      case 12:{
+        InteractionPtr constraint = this->ParseConstraint(current_line,true);
+        ff_->AddConstraint(constraint);
+        break;
+      }
+      case 13:{
+        InteractionPtr angle = this->ParseAngle(current_line,true);
+        ff_->AddAngle(angle);
+        ff_bonded_types_[1] = angle->GetFuncType();
+        break;
+      }
+      case 14:{
+
+        InteractionPtr p = this->ParseDihedral(current_line,true);
+        FuncType functype = p->GetFuncType();
+
+        if(functype == PeriodicDihedral){
+          ff_->AddDihedral(p);
+          ff_bonded_types_[2] = functype;
+        }
+        else if(functype == PeriodicImproper || functype == HarmonicImproper){
+          ff_->AddImproper(p);
+          ff_bonded_types_[3] = functype;
+        }
+        break;
+      }
+      case 15:{
+        InteractionPtr lj = this->ParseLJ(current_line,true);
+        ff_->AddLJ(lj);
+        break;
+      }
+      case 16:{
+        InteractionPtr genborn = this->ParseGenborn(current_line,true);
+        ff_->AddImplicitGenborn(genborn);
+        break;
+      }
+      case 17:{
+        InteractionPtr lj_pair = this->ParseLJPair(current_line,true);
+        ff_->AddLJPair(lj_pair);
+        break;
+      }
+      case 18:{
+        std::stringstream ss;
+        ss << "Observerd nonbond_params in forcefield file. Only forcefields with ";
+        ss << "combining rules for sigma epsilon calculations are supported!"<<std::endl;
+        throw ost::Error(ss.str());
+        break;
+      }
+      case 19:{
+        bool gen_pairs;
+        Real fudge_lj, fudge_qq;
+        if(current_line[2] == "yes") gen_pairs = true;
+        else if(current_line[2] == "no") gen_pairs = false;
+        else throw io::IOException("Only \"yes\" and \"no\" are supported for gen_pairs parameter!");
+      
+        fudge_lj = boost::lexical_cast<Real>(current_line[3]);
+        fudge_qq = boost::lexical_cast<Real>(current_line[4]);
+
+        ff_->SetGenPairs(gen_pairs);
+        ff_->SetFudgeLJ(fudge_lj);
+        ff_->SetFudgeQQ(fudge_qq);
+        break;
+      }
+      case 20:{
+        InteractionPtr cmap = this->ParseCMap(current_line,true);
+        ff_->AddCMap(cmap);
+        break;
+      }
+      default: break;
+    }
+  }
+}
+
+void FFReader::ParseAtomTypes(std::vector<std::vector<String> >& content){
+  for(std::vector<std::vector<String> >::iterator i = content.begin();
+      i!=content.end(); ++i){
+    ff_->AddMass((*i)[0],boost::lexical_cast<Real>((*i)[1]));
+  }
+}
+
+void FFReader::ParseRTP(std::vector<std::vector<String> >& content){
+ 
+  read_residues_.clear();
+
+  //we assume, that at the beginning is the keyword 'bondedtypes'
+  //we neglect anything before that...
+  uint line_counter = 0;
+  for(; line_counter<content.size(); ++line_counter){
+    if(content[line_counter].size()>1){
+      if(content[line_counter][1] == "bondedtypes"){
+        ++line_counter;
+        //we're interested in the next line
+        if(content[line_counter].size() < 4){
+          throw ost::Error("Error in parsing bondedtypes section of RTP file!");
+        }
+        int gromacs_functype;
+        //first element defines the bonds
+        gromacs_functype = boost::lexical_cast<int>(content[line_counter][0]);
+        if(gromacs_functype == 1){
+          bonded_types_[0] = HarmonicBond;
+        }
+        else{
+          std::stringstream ss;
+          ss << "Not supported gromacs function type \""<<gromacs_functype<<"\"";
+          ss << " for bond in bondedtypes section of rtp file!";
+          throw ost::Error(ss.str());
+        }
+        //second element defines angle
+        gromacs_functype = boost::lexical_cast<int>(content[line_counter][1]);
+        if(gromacs_functype == 5) bonded_types_[1] = UreyBradleyAngle;
+        else if(gromacs_functype == 1) bonded_types_[1] = HarmonicAngle;
+        else{
+          std::stringstream ss;
+          ss << "Not supported gromacs function type \""<<gromacs_functype<<"\"";
+          ss << " for angle in bondedtypes section of rtp file!";
+          throw ost::Error(ss.str());
+        }
+        //third element defines the dihedral
+        gromacs_functype = boost::lexical_cast<int>(content[line_counter][2]);
+        if(gromacs_functype == 9 || gromacs_functype == 1) bonded_types_[2] = PeriodicDihedral;
+        else{
+          std::stringstream ss;
+          ss << "Not supported gromacs function type \""<<gromacs_functype<<"\"";
+          ss << " for dihedral in bondedtypes section of rtp file!";
+          throw ost::Error(ss.str());
+        }
+        //fourth elemend defines improper dihedral
+        gromacs_functype = boost::lexical_cast<int>(content[line_counter][3]);
+        if(gromacs_functype == 4) bonded_types_[3] = PeriodicImproper;
+        else if(gromacs_functype == 2) bonded_types_[3] = HarmonicImproper;
+        else{
+          std::stringstream ss;
+          ss << "Not supported gromacs function type \""<<gromacs_functype<<"\"";
+          ss << " for dihedral!";
+          throw ost::Error(ss.str());
+        }
+        ++line_counter;
+        break;
+      }
+    }
+  }
+
+  //data for specific residue will be filled in here and passed
+  //in the residue_building block Parse function
+  std::vector<std::vector<String> > residue_data;
+  String residue_name;
+  for(; line_counter < content.size(); ++line_counter){
+    if(content[line_counter][0] == "["){
+      //I there is a keyword (start with [) not defined above,
+      //we assume, that it is a new residue
+      if(GromacsData::Instance()->GetKeywordIndex(content[line_counter][1]) == -1){
+        //parse the old residue and set new residue name
+        if(!residue_data.empty()){
+          ff_->AddBuildingBlock(residue_name, this->BlockFromRTP(residue_data));
+          read_residues_.push_back(residue_name);
+        }
+        residue_data.clear();
+        residue_name = content[line_counter][1];
+        continue;
+      }
+    }
+    residue_data.push_back(content[line_counter]);
+  }
+  //we probably missed the last residue
+  if(!residue_data.empty()){
+    ff_->AddBuildingBlock(residue_name, this->BlockFromRTP(residue_data));
+    read_residues_.push_back(residue_name);
+  }
+  
+
+  //It could be, that certain bondedtypes in the forcefield are not defined yet,
+  //since all forces are defined in the building blocks...
+  //We assume, that the whole stuff is consistent across all forcefield and rtp
+  //files... If not, you'll get errors when setting up your system
+  for(int i = 0; i < 4; ++i){
+    if(ff_bonded_types_[i] == Invalid) ff_bonded_types_[i] = bonded_types_[i];
+  }
+
+}
+
+void FFReader::ParseARN(std::vector<std::vector<String> >& content){
+  String res_name, a_one, a_two;
+
+  for(std::vector<std::vector<String> >::iterator i = content.begin();
+      i!=content.end(); ++i){
+    res_name = (*i)[0];
+    a_one = (*i)[1];
+    a_two = (*i)[2];
+    if(res_name == "*"){
+      // * is wildcard... valid for all residues in the previously read rtp file
+      for(std::vector<String>::iterator j = read_residues_.begin();
+          j != read_residues_.end(); ++j){
+        ff_->AddAtomRenamingRule(*j,a_one,a_two);
+      }
+    }
+    else{
+      ff_->AddAtomRenamingRule(res_name, a_one, a_two); 
+    }
+  }
+}
+
+void FFReader::ParseHDB(std::vector<std::vector<String> >& content){
+
+  std::vector<std::vector<String> > residue_data;
+  String residue_name;
+  for(uint line_counter = 0; line_counter<content.size(); ++line_counter){
+    if(content[line_counter].size() == 2){
+      if(!residue_data.empty()){
+        GromacsHydrogenConstructor* p = new GromacsHydrogenConstructor;
+        for(std::vector<std::vector<String> >::iterator i = residue_data.begin();
+            i != residue_data.end(); ++i){
+          this->ParseHydrogenRule(*i,*p);
+        }
+        ff_->AddHydrogenConstructor(residue_name,HydrogenConstructorPtr(p));
+      }
+      residue_data.clear();
+      residue_name = content[line_counter][0];
+      continue;
+    }
+    residue_data.push_back(content[line_counter]);
+  }
+  //we probably missed the last residue
+  if(!residue_data.empty()){
+    GromacsHydrogenConstructor* p = new GromacsHydrogenConstructor;
+    for(std::vector<std::vector<String> >::iterator i = residue_data.begin();
+        i != residue_data.end(); ++i){
+      this->ParseHydrogenRule(*i,*p);
+    }
+    ff_->AddHydrogenConstructor(residue_name,HydrogenConstructorPtr(p));
+  }
+}
+
+void FFReader::ParseHydrogenRule(const std::vector<String>& data, 
+                                      GromacsHydrogenConstructor& constructor){
+
+  if(data.size() < 4){
+    throw ost::Error("Require at least four items when parsing hydrogen rule!");
+  }
+
+  int number = boost::lexical_cast<int>(data[0]);
+  int method = boost::lexical_cast<int>(data[1]);
+  String prefix = data[2];
+  std::vector<String> anchors;
+  std::vector<String> hydrogen_names;
+
+  for(uint i=3; i<data.size(); ++i){
+    anchors.push_back(data[i]);
+  } 
+
+  switch(number){
+    case 1:{
+      hydrogen_names.push_back(prefix);
+      break;
+    }
+    case 2:{
+      hydrogen_names.push_back(prefix+"1");
+      hydrogen_names.push_back(prefix+"2");
+      break;
+    }
+    case 3:{
+      hydrogen_names.push_back(prefix+"1");
+      hydrogen_names.push_back(prefix+"2");
+      hydrogen_names.push_back(prefix+"3");
+      break;
+    }
+    default:{
+      break;
+    }
+  }
+
+  constructor.AddHydrogenRule(number,method,hydrogen_names, anchors);
+}
+
+
+void FFReader::ParseTerminiReplaceRule(const std::vector<String>& data, 
+                                            GromacsBlockModifier& modifier){
+
+  String name;
+  String new_name;
+  String new_type;
+  Real new_charge;
+  if(data.size() == 5 && data.back() != "0"){
+    name = data[0];
+    new_name = data[1];
+    new_type = data[2];
+    new_charge = boost::lexical_cast<Real>(data[4]);
+  }
+  else{
+    name = data[0];
+    new_name = name;
+    new_type = data[1];
+    new_charge = boost::lexical_cast<Real>(data[3]);
+  }
+ 
+  modifier.AddReplaceRule(name, new_name, new_type, new_charge);
+  //we neglect the mass! This will be read from the forcefield itself!
+}
+
+void FFReader::ParseTerminiAddRule(const std::vector<String>& data1, 
+                                        const std::vector<String>& data2,
+                                        GromacsBlockModifier& modifier){
+
+  int number = boost::lexical_cast<int>(data1[0]);
+  int method = boost::lexical_cast<int>(data1[1]);
+  String prefix = data1[2];
+
+  std::vector<String> anchors;
+  for(uint i = 3; i < data1.size(); ++i){
+    anchors.push_back(data1[i]);
+  }
+
+  String type = data2[0];
+  Real charge = boost::lexical_cast<Real>(data2[2]);
+  //we again neglect the masses...
+
+  std::vector<String> names;
+
+  switch(number){
+    case 1:{
+      names.push_back(prefix);
+      break;
+    }
+    case 2:{
+      names.push_back(prefix+"1");
+      names.push_back(prefix+"2");
+      break;
+    }
+    case 3:{
+      names.push_back(prefix+"1");
+      names.push_back(prefix+"2");
+      names.push_back(prefix+"3");
+      break;
+    }
+    default:{
+      std::stringstream ss;
+      ss<<"Can only add one, two or three atoms at one position.";
+      ss<<"The provided force field file seems to tell something different";
+      throw ost::Error(ss.str());
+    }
+  }
+
+  modifier.AddAddRule(number, method, names, anchors, type, charge);
+
+}
+
+
+void FFReader::ParseNTDB(std::vector<std::vector<String> >& content){
+
+  //Besided general termini constructors, there are also residue 
+  //specific constructors => custom constructors
+  std::vector<String> termini;
+  std::map<String,std::vector<String> > custom_termini;
+
+  std::vector<std::vector<String> > data;
+  String name;
+
+  for(uint line_counter = 0; line_counter < content.size(); ++line_counter){
+    if(content[line_counter][0] == "["){
+      //I there is a keyword (start with [) not defined above,
+      //we assume, that it is a new residue
+      if(GromacsData::Instance()->GetKeywordIndex(content[line_counter][1]) == -1){
+        //parse the old residue and set new residue name
+        if(!data.empty()){
+          BlockModifierPtr p = this->ParseBlockModifier(data);
+          ff_->AddBlockModifier(name,p);
+          size_t minus_pos = name.find("-");
+          if(minus_pos != String::npos && minus_pos < (name.size()-1)){
+            String a = name.substr(0,minus_pos);
+            if(custom_termini.find(a) == custom_termini.end()){
+              custom_termini[a] = std::vector<String>();
+            }
+            custom_termini[a].push_back(name); 
+          }
+          else{
+            termini.push_back(name);
+          }
+        }
+        data.clear();
+        name = content[line_counter][1];
+        continue;
+      }
+    }
+    data.push_back(content[line_counter]);
+  }
+
+  if(!data.empty()){
+    BlockModifierPtr p = this->ParseBlockModifier(data);
+    ff_->AddBlockModifier(name,p);
+    size_t minus_pos = name.find("-");
+    if(minus_pos != String::npos && minus_pos < (name.size()-1)){
+      String a = name.substr(0,minus_pos);
+      if(custom_termini.find(a) == custom_termini.end()){
+        custom_termini[a] = std::vector<String>();
+      }
+      custom_termini[a].push_back(name);
+    }
+    else{
+      termini.push_back(name);
+    }
+  }
+
+  for(std::vector<String>::iterator i = read_residues_.begin(); 
+      i != read_residues_.end(); ++i){
+    if(custom_termini.find(*i) != custom_termini.end()){
+      if(!custom_termini[*i].empty()) ff_->SetStandardNTer(*i,custom_termini[*i][0]);
+      continue;
+    }
+    if(!termini.empty()) ff_->SetStandardNTer(*i,termini[0]);
+  }
+}
+
+void FFReader::ParseCTDB(std::vector<std::vector<String> >& content){
+
+  //Besided general termini constructors, there are also residue 
+  //specific constructors => custom constructors
+  std::vector<String> termini;
+  std::map<String,std::vector<String> > custom_termini;
+
+  std::vector<std::vector<String> > data;
+  String name;
+
+  for(uint line_counter = 0; line_counter < content.size(); ++line_counter){
+    if(content[line_counter][0] == "["){
+      //I there is a keyword (start with [) not defined above,
+      //we assume, that it is a new residue
+      if(GromacsData::Instance()->GetKeywordIndex(content[line_counter][1]) == -1){
+        //parse the old residue and set new residue name
+        if(!data.empty()){
+          BlockModifierPtr p = this->ParseBlockModifier(data);
+          ff_->AddBlockModifier(name,p);
+          size_t minus_pos = name.find("-");
+          if(minus_pos != String::npos && minus_pos < (name.size()-1)){
+            String a = name.substr(0,minus_pos);
+            if(custom_termini.find(a) == custom_termini.end()){
+              custom_termini[a] = std::vector<String>();
+            }
+            custom_termini[a].push_back(name); 
+          }
+          else{
+            termini.push_back(name);
+          }
+        }
+        data.clear();
+        name = content[line_counter][1];
+        continue;
+      }
+    }
+    data.push_back(content[line_counter]);
+  }
+
+  if(!data.empty()){
+    BlockModifierPtr p = this->ParseBlockModifier(data);
+    ff_->AddBlockModifier(name,p);
+    size_t minus_pos = name.find("-");
+    if(minus_pos != String::npos && minus_pos < (name.size()-1)){
+      String a = name.substr(0,minus_pos);
+      if(custom_termini.find(a) == custom_termini.end()){
+        custom_termini[a] = std::vector<String>();
+      }
+      custom_termini[a].push_back(name);
+    }
+    else{
+      termini.push_back(name);
+    }
+  }
+
+  for(std::vector<String>::iterator i = read_residues_.begin(); 
+      i != read_residues_.end(); ++i){
+    if(custom_termini.find(*i) != custom_termini.end()){
+      if(!custom_termini[*i].empty()) ff_->SetStandardCTer(*i,custom_termini[*i][0]);
+      continue;
+    }
+    if(!termini.empty()) ff_->SetStandardCTer(*i,termini[0]);
+  }
+}
+
+void FFReader::ParseVSD(std::vector<std::vector<String> >& content){
+
+}
+
+void FFReader::ParseRtoB(std::vector<std::vector<String> >& content){
+
+  //there are two versions of this file, either with two or five
+  //columns further instructions can be found in the gromacs manual
+
+  String res_name, main, n_ter, c_ter, two_ter;
+
+  for(std::vector<std::vector<String> >::iterator i = content.begin();
+      i != content.end(); ++i){
+    if((*i).size() == 2){
+      res_name = (*i)[0];
+      main = (*i)[1];
+      n_ter = main;
+      c_ter = main;
+      two_ter = main;
+      ff_->AddResidueRenamingRule(res_name,main,n_ter,c_ter,two_ter);
+      continue;
+    }
+    if((*i).size() == 5){
+      res_name = (*i)[0];
+      main = (*i)[1];
+      n_ter = (*i)[2];
+      c_ter = (*i)[3];
+      two_ter = (*i)[4];
+      ff_->AddResidueRenamingRule(res_name,main,n_ter,c_ter,two_ter);
+      continue;
+    }
+    throw io::IOException("Entries in r2b files must contain 2 or 5 columns");
+  }
+}
+
+void FFReader::ReadITP(const String& basename){
+  std::vector<std::vector<String> > content = preprocessor_.Process(basename + ".itp");
+  this->ParseITP(content);
+}
+
+void FFReader::ParseITP(std::vector<std::vector<String> >& content){
+
+  std::vector<std::vector<String> > residue_data;
+  String residue_name;
+  for(uint line_counter = 0; line_counter < content.size(); ++line_counter){
+    if(content[line_counter][0] == "["){
+      if(GromacsData::Instance()->GetKeywordIndex(content[line_counter][1]) == 8){
+        //parse the old residue and set new residue name
+        if(!residue_data.empty()){
+          BuildingBlockPtr p = this->BlockFromITP(residue_data);
+          ff_->AddBuildingBlock(residue_name, p);
+        }
+        residue_data.clear();
+        residue_name = content[++line_counter][0];
+        continue;
+      }
+    }
+    residue_data.push_back(content[line_counter]);
+  }
+  //we probably missed the last residue
+  if(!residue_data.empty()){
+    BuildingBlockPtr p = this->BlockFromITP(residue_data);
+    ff_->AddBuildingBlock(residue_name, p);
+  }
+}
+
+BuildingBlockPtr FFReader::BlockFromRTP(const std::vector<std::vector<String> >& data){  
+
+  if(bonded_types_.size()<4){
+    std::stringstream ss;
+    ss << "There must be at least 4 parameters in the bondedtypes section of";
+    ss << ".rtp file";
+    throw io::IOException(ss.str());
+  }
+
+  if(data[0][1] != "atoms"){
+    std::stringstream ss;
+    ss << "Expect residue definition to start with the atom keyword!"; 
+    throw io::IOException(ss.str());
+  }
+
+  int keyword_index = 0;
+  BuildingBlockPtr p(new BuildingBlock);
+
+  for(uint i=1;i<data.size(); ++i){
+    if(data[i].size()>1){
+      if(data[i][0]=="["){
+        keyword_index = GromacsData::Instance()->GetKeywordIndex(data[i][1]);
+        continue;
+      }
+    }
+
+    switch(keyword_index){
+      case 0:{
+        p->AddAtom(data[i][0],
+                   data[i][1],
+                   boost::lexical_cast<Real>(data[i][2]));
+        break;
+      }
+      case 1:{
+        p->AddBond(this->ParseBond(data[i],false,bonded_types_[0]));
+        break;
+      }
+      case 2:{
+        p->AddAngle(this->ParseAngle(data[i],false,bonded_types_[1]));
+        break;
+      }
+      case 3:{
+        p->AddImproper(this->ParseDihedral(data[i],false,bonded_types_[3]));
+        break;
+      }
+      case 4:{
+        p->AddDihedral(this->ParseDihedral(data[i],false,bonded_types_[2]));
+        break;
+      }
+      case 5:{
+        p->AddExclusion(this->ParseExclusion(data[i],false)); 
+        break;
+      }
+      case 6:{
+        p->AddCMap(this->ParseCMap(data[i],false));
+        break;
+      }
+      default:{
+        std::stringstream ss;
+        ss << "Encountered invalid keyword while parsing rtp file: " << data[i-1][1];
+        throw ost::io::IOException(ss.str());
+      }
+    }
+  }
+  return p;
+}
+
+BuildingBlockPtr FFReader::BlockFromITP(const std::vector<std::vector<String> >& data){
+
+  int keyword_index;
+
+  if(data[0][1] != "atoms"){
+    std::stringstream ss;
+    ss << "Expect residue definition to start with the atom keyword!"; 
+    throw io::IOException(ss.str());
+  }
+
+  std::map<int,String> index_name_mapper;
+  keyword_index = 0;
+  BuildingBlockPtr p(new BuildingBlock);
+  std::vector<String> current_line;
+
+  for(uint i=1;i<data.size(); ++i){
+    if(data[i].size()>1){
+      if(data[i][0]=="["){
+        keyword_index = GromacsData::Instance()->GetKeywordIndex(data[i][1]);
+        continue;
+      }
+    }
+    current_line = data[i];
+    switch(keyword_index){
+      case 0:{
+        p->AddAtom(current_line[4],
+                   current_line[1],
+                   boost::lexical_cast<Real>(current_line[6]));
+        index_name_mapper[boost::lexical_cast<int>(current_line[0])] = current_line[4];
+        break;
+      }
+      case 1:{
+        current_line[0] = index_name_mapper[boost::lexical_cast<int>(current_line[0])];
+        current_line[1] = index_name_mapper[boost::lexical_cast<int>(current_line[1])];
+        p->AddBond(this->ParseBond(current_line,false));
+        break;
+      }
+      case 2:{
+        current_line[0] = index_name_mapper[boost::lexical_cast<int>(current_line[0])];
+        current_line[1] = index_name_mapper[boost::lexical_cast<int>(current_line[1])];       
+        current_line[2] = index_name_mapper[boost::lexical_cast<int>(current_line[2])];     
+        p->AddAngle(this->ParseAngle(current_line,false));
+        break;
+      }
+      case 4:{
+        //there must be a function type, otherwise we can't distinguish
+        //between dihedrals and impropers
+        current_line[0] = index_name_mapper[boost::lexical_cast<int>(current_line[0])];
+        current_line[1] = index_name_mapper[boost::lexical_cast<int>(current_line[1])];       
+        current_line[2] = index_name_mapper[boost::lexical_cast<int>(current_line[2])];
+        current_line[3] = index_name_mapper[boost::lexical_cast<int>(current_line[3])];
+
+        InteractionPtr int_ptr = this->ParseDihedral(current_line,false);
+        FuncType functype = int_ptr->GetFuncType();
+
+        if(functype == PeriodicDihedral){
+          p->AddDihedral(int_ptr);
+        }
+        else if(functype == PeriodicImproper || functype == HarmonicImproper){
+          p->AddImproper(int_ptr);
+        }
+        break;
+      }
+      case 5:{
+        //current_line[0] = index_name_mapper[boost::lexical_cast<int>(current_line[0])];
+        //current_line[1] = index_name_mapper[boost::lexical_cast<int>(current_line[1])];
+        //p->exclusions_.push_back(Interaction::ParseExclusion(current_line,false)); 
+        break;
+      }
+      case 6:{
+        current_line[0] = index_name_mapper[boost::lexical_cast<int>(current_line[0])];
+        current_line[1] = index_name_mapper[boost::lexical_cast<int>(current_line[1])];       
+        current_line[2] = index_name_mapper[boost::lexical_cast<int>(current_line[2])];
+        current_line[3] = index_name_mapper[boost::lexical_cast<int>(current_line[3])];
+        current_line[4] = index_name_mapper[boost::lexical_cast<int>(current_line[4])];
+        p->AddCMap(this->ParseCMap(current_line,false));
+        break;
+      }
+      case 21:{
+        //we extract pairs manually...
+        break;
+      }
+      case 22:{
+        std::vector<String> block_atom_names = p->GetAtoms();
+        if(block_atom_names.size() < 3){
+          throw ost::Error("Molecule with settles keyword must contain at least 3 atoms!");
+        }
+        std::vector<Real> parameters;
+        std::vector<String> names;
+
+
+        InteractionPtr p1(new Interaction(DistanceConstraint));
+        InteractionPtr p2(new Interaction(DistanceConstraint));
+        InteractionPtr p3(new Interaction(DistanceConstraint));
+
+        //first constraint dist => O - H
+        parameters.push_back(boost::lexical_cast<Real>(current_line[2]));
+        names.push_back(block_atom_names[0]);
+        names.push_back(block_atom_names[1]);
+        p1->SetNames(names);
+        p1->SetParam(parameters);
+        p->AddConstraint(p1);
+
+        //second constraint dist => O - H
+        names[1] = block_atom_names[2];
+        p2->SetNames(names);
+        p2->SetParam(parameters);
+        p->AddConstraint(p2);
+
+        //third constraint dist => H - H
+        names[0] = block_atom_names[1];
+        parameters[0] = boost::lexical_cast<Real>(current_line[3]);
+        p3->SetNames(names);
+        p3->SetParam(parameters);
+        p->AddConstraint(p3);
+
+        break;
+      }
+      default:{
+        std::stringstream ss;
+        ss << "Encountered invalid keyword while parsing itp file: " << data[i-1][1];
+        throw ost::io::IOException(ss.str());
+      }
+    }
+  } 
+  return p;
+}
+
+
+BlockModifierPtr FFReader::ParseBlockModifier(const std::vector<std::vector<String> >& data){
+
+
+  int keyword_index = -1;
+
+  if(data[0].size() > 0){
+    keyword_index = GromacsData::Instance()->GetKeywordIndex(data[0][1]);
+    if(keyword_index == -1){
+      throw ost::io::IOException("Expect termini data to start with a valid keyword!");
+    }
+  }
+
+  GromacsBlockModifier* p = new GromacsBlockModifier; 
+
+  for(uint i = 1; i < data.size(); ++i){
+    if(data[i].size()>1){
+      if(data[i][0] == "["){
+        keyword_index = GromacsData::Instance()->GetKeywordIndex(data[i][1]);
+        continue;
+      }
+    }
+    switch(keyword_index){
+      case 7:{
+        this->ParseTerminiReplaceRule(data[i],*p);
+        break;
+      }
+      case 9:{
+        std::vector<String> line1 = data[i];
+        std::vector<String> line2 = data[++i];
+        this->ParseTerminiAddRule(line1, line2, *p);
+        break;
+      }
+      case 10:{
+        p->AddDeleteAtom(data[i][0]);
+        break;
+      }
+      case 1:{
+        p->AddBond(this->ParseBond(data[i],false,bonded_types_[0]));
+        break;
+      }
+      case 2:{
+        p->AddAngle(this->ParseAngle(data[i],false,bonded_types_[1]));
+        break;
+      }
+      case 4:{
+        p->AddDihedral(this->ParseDihedral(data[i],false,bonded_types_[2]));
+        break;
+      }
+      case 3:{
+        p->AddImproper(this->ParseDihedral(data[i],false,bonded_types_[3]));
+        break;
+      }
+      case 6:{
+        p->AddCMap(this->ParseCMap(data[i],false));
+        break;
+      }
+
+      default:{
+        std::stringstream ss;
+        ss << "Encountered invalid keyword while parsing termini: " << data[i-1][1];
+        throw ost::io::IOException(ss.str());
+      }
+    }
+  }
+
+  return BlockModifierPtr(p);
+}
+
+
+InteractionPtr FFReader::ParseBond(const std::vector<String>& data, 
+                                                 bool type_definition,
+                                                 FuncType functype){
+
+  if(data.size() < 2){
+    throw ost::io::IOException("Require at least 2 arguments in parsing bond!");
+  }
+
+  if(functype == Invalid){
+    if(data.size() == 2){
+      throw ost::Error("Error in determining bond function type!");
+    }
+    int gromacs_functype;
+    try{ gromacs_functype = boost::lexical_cast<int>(data[2]); } catch(std::exception& e){
+      throw ost::io::IOException("Could not cast function type into int while parsing bond!");
+    }
+    if(gromacs_functype == 1){
+      functype = HarmonicBond;
+    }
+    else{
+      std::stringstream ss;
+      ss << "Not supported gromacs function type \""<<gromacs_functype<<"\"";
+      ss << " for bond!";
+      throw ost::Error(ss.str());
+    }
+  }
+
+  std::vector<String> atom_definition;
+  atom_definition.push_back(data[0]);
+  atom_definition.push_back(data[1]);
+
+  InteractionPtr p(new Interaction(functype));
+
+  if(type_definition) p->SetTypes(atom_definition);
+  else p->SetNames(atom_definition);
+
+  try{
+    if(data.size() > 3){
+      std::vector<Real> parameters;
+      parameters.push_back(boost::lexical_cast<Real>(data[data.size()-2]));         
+      parameters.push_back(boost::lexical_cast<Real>(data[data.size()-1]));
+     
+      p->SetParam(parameters);
+    }
+  }catch(std::exception& e){ 
+    throw ost::io::IOException("Could not cast bond parameters into real type!");
+  }
+  return p;
+}
+
+InteractionPtr FFReader::ParseAngle(const std::vector<String>& data, 
+                                           bool type_definition,
+                                           FuncType functype){
+
+  if(data.size() < 3){
+    throw ost::io::IOException("Require at least 3 arguments in parsing angle!");
+  }
+
+  if(functype == Invalid){
+    if(data.size() == 3){
+      throw ost::Error("Error in determining angle function type!");
+    }
+    int gromacs_functype;
+    try{ gromacs_functype = boost::lexical_cast<int>(data[3]); } catch(std::exception& e){
+      throw ost::io::IOException("Could not cast function type into int while parsing angle!");
+    }
+    if(gromacs_functype == 5) functype = UreyBradleyAngle;
+    else if(gromacs_functype == 1) functype = HarmonicAngle;
+    else{
+      std::stringstream ss;
+      ss << "Not supported gromacs function type \""<<gromacs_functype<<"\"";
+      ss << " for angle!";
+      throw ost::Error(ss.str());
+    }
+  }
+
+  std::vector<String> atom_definition;
+  atom_definition.push_back(data[0]);
+  atom_definition.push_back(data[1]);
+  atom_definition.push_back(data[2]);
+
+  InteractionPtr p(new Interaction(functype));
+
+  if(type_definition) p->SetTypes(atom_definition);
+  else p->SetNames(atom_definition);
+
+  try{
+    if(data.size() > 4){
+      std::vector<Real> parameters;
+      if(functype == UreyBradleyAngle){
+        parameters.push_back(boost::lexical_cast<Real>(data[data.size()-4])/360*2*M_PI);         
+        parameters.push_back(boost::lexical_cast<Real>(data[data.size()-3]));
+        parameters.push_back(boost::lexical_cast<Real>(data[data.size()-2]));         
+        parameters.push_back(boost::lexical_cast<Real>(data[data.size()-1]));
+
+      }
+      else{
+        parameters.push_back(boost::lexical_cast<Real>(data[data.size()-2])/360*2*M_PI);         
+        parameters.push_back(boost::lexical_cast<Real>(data[data.size()-1]));
+      }
+      p->SetParam(parameters);
+    }
+  }catch(std::exception& e){
+      throw ost::io::IOException("Could not cast angle parameters into real type!");
+  }
+  return p;
+}
+
+InteractionPtr FFReader::ParseDihedral(const std::vector<String>& data, 
+                                              bool type_definition,
+                                              FuncType functype){
+  if(data.size() < 4){
+    throw ost::io::IOException("Require at least 4 arguments in parsing dihedral/improper!");
+  }
+
+  if(functype == Invalid){
+    if(data.size() == 4){
+      throw ost::Error("Error in determining angle function type!");
+    }
+    int gromacs_functype;
+    try{ gromacs_functype = boost::lexical_cast<int>(data[4]); } catch(std::exception& e){
+      throw ost::io::IOException("Could not cast function type into int while parsing dihedral!");
+    }
+    if(gromacs_functype == 9 || gromacs_functype == 1) functype = PeriodicDihedral;
+    else if(gromacs_functype == 4) functype = PeriodicImproper;
+    else if(gromacs_functype == 2) functype = HarmonicImproper;
+    else{
+      std::stringstream ss;
+      ss << "Not supported gromacs function type \""<<gromacs_functype<<"\"";
+      ss << " for dihedral!";
+      throw ost::Error(ss.str());
+    }
+  }
+
+  std::vector<String> atom_definition;
+  atom_definition.push_back(data[0]);
+  atom_definition.push_back(data[1]);
+  atom_definition.push_back(data[2]);
+  atom_definition.push_back(data[3]);
+
+  InteractionPtr p(new Interaction(functype));
+
+  if(type_definition) p->SetTypes(atom_definition);
+  else p->SetNames(atom_definition);
+
+  try{
+    if(data.size() > 5){
+      std::vector<Real> parameters;
+      if(functype == HarmonicImproper){
+        parameters.push_back(boost::lexical_cast<Real>(data[data.size()-2])/360*2*M_PI);         
+        parameters.push_back(boost::lexical_cast<Real>(data[data.size()-1]));
+      }
+      else{
+        parameters.push_back(boost::lexical_cast<Real>(data[data.size()-1]));
+        parameters.push_back(boost::lexical_cast<Real>(data[data.size()-3])/360*2*M_PI);
+        parameters.push_back(boost::lexical_cast<Real>(data[data.size()-2]));         
+      }
+      p->SetParam(parameters);
+    }
+  }catch(std::exception& e){
+      throw ost::io::IOException("Could not cast dihedral/improper parameters into real type!");
+  }
+  return p;
+}
+
+InteractionPtr FFReader::ParseCMap(const std::vector<String>& data, 
+                                                   bool type_definition,
+                                                   FuncType functype){
+  if(data.size() < 5){
+    throw ost::io::IOException("Require at least 5 arguments in parsing cmap!");
+  }
+
+  if(functype == Invalid){
+    functype = CMap;  //well, there is only this possibility
+  }
+
+  std::vector<String> atom_definition;
+  atom_definition.push_back(data[0]);
+  atom_definition.push_back(data[1]);
+  atom_definition.push_back(data[2]);
+  atom_definition.push_back(data[3]);
+  atom_definition.push_back(data[4]);
+
+  InteractionPtr p(new Interaction(functype));
+
+  if(type_definition) p->SetTypes(atom_definition);
+  else p->SetNames(atom_definition);
+
+  if(data.size() > 6){
+    uint a,b;
+    try{
+      a = boost::lexical_cast<uint>(data[6]);
+      b = boost::lexical_cast<uint>(data[7]);
+    }catch(std::exception& e){
+      throw ost::io::IOException("Failed to parse size of the cmap!");
+    }
+    if(a != b){
+      throw ost::io::IOException("Expect cmap to have equal extension into both dimensions!");
+    }
+
+    if((8+a*b) > data.size()){
+      throw ost::io::IOException("Expected more data to fill cmap!");
+    }
+    try{
+      std::vector<Real> parameters;
+      parameters.push_back(Real(a));
+      for(uint i = 0; i < a*a; ++i){
+        parameters.push_back(boost::lexical_cast<Real>(data[8+i]));
+      }
+      p->SetParam(parameters);
+    }catch(std::exception& e){
+      throw ost::io::IOException("Failed to cast cmap values into real type!");
+    }
+  }
+  return p;
+}
+
+
+InteractionPtr FFReader::ParseLJ(const std::vector<String>& data, 
+                                        bool type_definition,
+                                        FuncType functype){
+
+  if(data.size() < 1){
+    throw ost::io::IOException("Require at least 1 arguments in parsing LJ!");
+  }
+
+  if(functype == Invalid){
+    functype = LJ;  //well, there is only this possibility
+  }
+
+  std::vector<String> atom_definition;
+  atom_definition.push_back(data[0]);
+
+  InteractionPtr p(new Interaction(functype));
+
+  if(type_definition) p->SetTypes(atom_definition);
+  else p->SetNames(atom_definition);
+
+  try{
+    if(data.size() > 2){
+      std::vector<Real> parameters;
+      parameters.push_back(boost::lexical_cast<Real>(data[data.size()-2])); 
+      parameters.push_back(boost::lexical_cast<Real>(data[data.size()-1]));
+      p->SetParam(parameters);
+    }
+  }catch(std::exception& e){ 
+    throw ost::io::IOException("Could not cast atomtype parameters into real type!");
+  }
+  return p;
+}
+
+
+InteractionPtr FFReader::ParseLJPair(const std::vector<String>& data, 
+                                            bool type_definition,
+                                            FuncType functype){
+
+  if(data.size() < 2){
+    throw ost::io::IOException("Require at least 2 arguments in parsing nonbonded parameters!");
+  }
+
+  if(functype == Invalid){
+    if(data.size() == 2){
+      throw ost::Error("Error in determining LJ Pair function type!");
+    }
+    int gromacs_functype;
+    try{ gromacs_functype = boost::lexical_cast<int>(data[2]); } catch(std::exception& e){
+      throw ost::io::IOException("Could not cast function type into int while parsing lj pair!");
+    }
+    if(gromacs_functype == 1){
+      functype = LJPair;
+    }
+    else{
+      std::stringstream ss;
+      ss << "Not supported gromacs function type \""<<gromacs_functype<<"\"";
+      ss << " for LJ Pair!";
+      throw ost::Error(ss.str());
+    }
+  }
+
+  std::vector<String> atom_definition;
+  atom_definition.push_back(data[0]);
+  atom_definition.push_back(data[1]);
+
+  InteractionPtr p(new Interaction(functype));
+
+  if(type_definition) p->SetTypes(atom_definition);
+  else p->SetNames(atom_definition);
+
+  try{
+    if(data.size() > 3){
+      std::vector<Real> parameters;
+      parameters.push_back(boost::lexical_cast<Real>(data[data.size()-2]));         
+      parameters.push_back(boost::lexical_cast<Real>(data[data.size()-1]));
+      p->SetParam(parameters);
+    }
+  }catch(std::exception& e){ 
+    throw ost::io::IOException("Could not cast nonbonded parameters into real type!");
+  }
+  return p;
+}
+
+InteractionPtr FFReader::ParseConstraint(const std::vector<String>& data, 
+                                                bool type_definition,
+                                                FuncType functype){
+
+  if(data.size() < 2){
+    throw ost::io::IOException("Require at least 2 arguments in parsing nonbonded parameters!");
+  }
+
+  if(functype == Invalid){
+    if(data.size() == 2){
+      throw ost::Error("Error in determining constraint function type!");
+    }
+    int gromacs_functype;
+    try{ gromacs_functype = boost::lexical_cast<int>(data[2]); } catch(std::exception& e){
+      throw ost::io::IOException("Could not cast function type into int while parsing constraint!");
+    }
+    if(gromacs_functype == 1 || gromacs_functype == 2){
+      functype = DistanceConstraint;
+    }
+    else{
+      std::stringstream ss;
+      ss << "Not supported gromacs function type \""<<gromacs_functype<<"\"";
+      ss << " for constraint!";
+      throw ost::Error(ss.str());
+    }
+  }
+
+  std::vector<String> atom_definition;
+  atom_definition.push_back(data[0]);
+  atom_definition.push_back(data[1]);
+
+  InteractionPtr p(new Interaction(functype));
+
+  if(type_definition) p->SetTypes(atom_definition);
+  else p->SetNames(atom_definition);
+
+  try{
+    if(data.size() > 3){
+      std::vector<Real> parameters;
+      parameters.push_back(boost::lexical_cast<Real>(data[data.size()-1]));
+      p->SetParam(parameters);
+    }
+  }catch(std::exception& e){ 
+    throw ost::io::IOException("Could not cast constraint parameters into real type!");
+  }
+  return p;
+}
+
+InteractionPtr FFReader::ParseGenborn(const std::vector<String>& data,
+                                             bool type_definition,
+                                             FuncType functype){
+
+
+  if(data.size() < 1){
+    throw ost::io::IOException("Require at least 1 argument in parsing genborn parameters!");
+  }
+
+  std::vector<String> atom_definition;
+  atom_definition.push_back(data[0]);
+
+  functype = GBSA; //bit hacky, I know, but there is only one type for gbsa anyway....
+
+  InteractionPtr p(new Interaction(functype));
+
+  if(type_definition) p->SetTypes(atom_definition);
+  else p->SetNames(atom_definition);
+
+  try{
+    if(data.size() > 1){
+      std::vector<Real> parameters;
+      parameters.push_back(boost::lexical_cast<Real>(data[4]));
+      parameters.push_back(boost::lexical_cast<Real>(data[5]));
+      p->SetParam(parameters);
+    }
+  }catch(std::exception& e){ 
+    throw ost::io::IOException("Could not cast genborn parameters into real type!");
+  }
+  return p;
+}
+
+
+InteractionPtr FFReader::ParseExclusion(const std::vector<String>& data,
+                                               bool type_definition,
+                                               FuncType functype){
+
+  if(data.size() < 2){
+    throw ost::io::IOException("Require at least 2 argument in parsing exclusion parameters!");
+  }
+
+  functype = Exclusion; //bit hacky, I know, but there is only one type for exclusion anyway....
+
+  std::vector<String> atom_definition;
+  atom_definition.push_back(data[0]);
+  atom_definition.push_back(data[1]);
+
+  InteractionPtr p(new Interaction(functype));
+
+  if(type_definition) p->SetTypes(atom_definition);
+  else p->SetNames(atom_definition);
+
+  return p;
+}
+
+void FFReader::ParseCHARMMPRM(std::vector<std::vector<String> >& content){
+
+
+  int keyword_id = -1;
+  std::vector<String> current_line;
+
+  //will be used to calculate all pairwise 1,4 lj parameters later on
+  std::vector<String> lj_14_types;
+  std::vector<Real> lj_14_sigmas;
+  std::vector<Real> lj_14_epsilons;
+  std::vector<String> lj_types;
+  std::vector<Real> lj_sigmas;
+  std::vector<Real> lj_epsilons;
+
+  for(uint line_counter = 0; line_counter<content.size(); ++line_counter){
+    current_line = content[line_counter];
+    if(CHARMMData::Instance()->GetKeywordIndex(current_line[0]) != -1){
+      keyword_id = CHARMMData::Instance()->GetKeywordIndex(current_line[0]);
+      continue;
+    }
+
+    if(keyword_id == 8) break;
+
+    switch(keyword_id){
+      case 0:{ //atoms keyword
+        ff_->AddMass(current_line[2],boost::lexical_cast<Real>(current_line[3]));
+        break;
+      }
+      case 1:{ //bonds
+        InteractionPtr p(new Interaction(HarmonicBond));
+        std::vector<String> types;
+        std::vector<Real> parameters;
+        types.push_back(current_line[0]);
+        types.push_back(current_line[1]);
+        try{
+          parameters.push_back(0.1 * boost::lexical_cast<Real>(current_line[3]));
+          parameters.push_back(418.4*2 * boost::lexical_cast<Real>(current_line[2]));
+        }catch(std::exception& e){
+          throw ost::io::IOException("Could not cast bond parameters into real type!");
+        }
+        p->SetTypes(types);
+        p->SetParam(parameters);
+        ff_->AddBond(p);
+        break;
+      }
+      case 2:{ //angles
+        InteractionPtr p(new Interaction(UreyBradleyAngle));
+        std::vector<String> types;
+        std::vector<Real> parameters;
+        types.push_back(current_line[0]);
+        types.push_back(current_line[1]);
+        types.push_back(current_line[2]);
+        try{
+          parameters.push_back(boost::lexical_cast<Real>(current_line[4])/360*2*M_PI);         
+          parameters.push_back(boost::lexical_cast<Real>(current_line[3])*4.184*2);
+          if(current_line.size() > 5){
+            parameters.push_back(boost::lexical_cast<Real>(current_line[6])*0.1);
+            parameters.push_back(boost::lexical_cast<Real>(current_line[5])*418.4*2);
+          }
+          else{
+            parameters.push_back(0.0);
+            parameters.push_back(0.0);
+          }
+        }catch(std::exception& e){
+          throw ost::io::IOException("Could not cast angle parameters into real type!");
+        }
+        p->SetTypes(types);
+        p->SetParam(parameters);
+        ff_->AddAngle(p);
+        break;
+      }
+      case 3:{ //diherals
+        InteractionPtr p(new Interaction(PeriodicDihedral));
+        std::vector<String> types;
+        std::vector<Real> parameters;
+        types.push_back(current_line[0]);
+        types.push_back(current_line[1]);
+        types.push_back(current_line[2]);
+        types.push_back(current_line[3]);
+        try{
+          parameters.push_back(boost::lexical_cast<Real>(current_line[5]));
+          parameters.push_back(boost::lexical_cast<Real>(current_line[6])/360*2*M_PI);
+          parameters.push_back(boost::lexical_cast<Real>(current_line[4])*4.184);
+        }catch(std::exception& e){
+          throw ost::io::IOException("Could not cast bond parameters into real type!");
+        }
+        p->SetTypes(types);
+        p->SetParam(parameters);
+        ff_->AddDihedral(p);
+        break;
+      }
+      case 4:{ //improper
+        InteractionPtr p(new Interaction(HarmonicImproper));
+        std::vector<String> types;
+        std::vector<Real> parameters;
+        types.push_back(current_line[0]);
+        types.push_back(current_line[1]);
+        types.push_back(current_line[2]);
+        types.push_back(current_line[3]);
+        try{
+          parameters.push_back(boost::lexical_cast<Real>(current_line[6])/360*2*M_PI);
+          parameters.push_back(boost::lexical_cast<Real>(current_line[4])*4.184*2);
+        }catch(std::exception& e){
+          throw ost::io::IOException("Could not cast bond parameters into real type!");
+        }
+        p->SetTypes(types);
+        p->SetParam(parameters);
+        ff_->AddImproper(p);
+        break;
+      }
+      case 5:{ //cmap
+        std::vector<String> types;
+        std::vector<Real> parameters;
+        types.push_back(current_line[0]);
+        types.push_back(current_line[1]);
+        types.push_back(current_line[2]);
+        types.push_back(current_line[3]);
+        types.push_back(current_line[7]);
+        uint dim = boost::lexical_cast<uint>(current_line[8]);
+        parameters.push_back(Real(dim));
+
+        ++line_counter;
+
+        while(true){
+          if(line_counter >= content.size()){
+            throw ost::io::IOException("Not enough data to fill cmap!");
+          }
+          if(parameters.size() > dim*dim+1){
+            std::stringstream ss;
+            ss << "Expect cmap values to fit exactly into a grid with dim ";
+            ss << dim << " x " << dim;
+            throw ost::io::IOException(ss.str());
+          }
+          if(parameters.size() == dim*dim+1){
+            InteractionPtr p(new Interaction(CMap));
+            p->SetTypes(types);
+            p->SetParam(parameters);
+            ff_->AddCMap(p);
+            --line_counter;
+            break;
+          }
+
+          for(std::vector<String>::iterator i = content[line_counter].begin();
+              i != content[line_counter].end(); ++i){
+            parameters.push_back(boost::lexical_cast<Real>(*i)*4.184);
+          }
+          ++line_counter;
+        }
+
+        break;
+      }
+      case 6:{ //nonbonded
+        if(current_line[0] == "cutnb") break;
+        std::vector<String> types;
+        std::vector<Real> parameters;
+        types.push_back(current_line[0]);
+        try{
+          parameters.push_back(boost::lexical_cast<Real>(current_line[3])*0.1/(std::pow(2,1.0/6.0))*2);
+          parameters.push_back(std::abs(boost::lexical_cast<Real>(current_line[2])*4.184));
+        }catch(std::exception& e){ 
+          throw ost::io::IOException("Could not cast LJ parameters into real type!");
+        }
+        InteractionPtr p(new Interaction(LJ));
+        p->SetTypes(types);
+        p->SetParam(parameters);
+        ff_->AddLJ(p);
+
+        if(current_line.size() >= 7){
+          try{
+          lj_14_types.push_back(current_line[0]);
+          lj_14_sigmas.push_back(boost::lexical_cast<Real>(current_line[6])*0.1/(std::pow(2,1.0/6.0))*2);
+          lj_14_epsilons.push_back(std::abs(boost::lexical_cast<Real>(current_line[5])*4.184));
+          }catch(std::exception& e){
+            throw ost::io::IOException("Could not cast LJ parameters into real type!");
+          }
+        }else{
+          lj_types.push_back(types[0]);
+          lj_sigmas.push_back(parameters[0]);
+          lj_epsilons.push_back(parameters[1]);
+        }
+
+        break;
+      }
+      case 7:{ //hbond
+        //we don't implement any things regarding hbonds in CHARMM
+        break;
+      }
+    }
+  }
+  //let's add all possible pairwise 1,4 interactions, where both interaction partners
+  //have explicitely defined 1,4 interactions
+  for(uint i = 0; i < lj_14_types.size(); ++i){
+    for(uint j = i; j < lj_14_types.size(); ++j){
+      InteractionPtr p(new Interaction(LJPair));
+      std::vector<String> types;
+      std::vector<Real> parameters;
+      types.push_back(lj_14_types[i]);
+      types.push_back(lj_14_types[j]);
+      parameters.push_back(0.5 * (lj_14_sigmas[i] + lj_14_sigmas[j]));
+      parameters.push_back(sqrt(lj_14_epsilons[i] * lj_14_epsilons[j]));
+      p->SetTypes(types);
+      p->SetParam(parameters);
+      ff_->AddLJPair(p);
+    }
+  }
+  //let's add all pairwise 1,4 interactions, where only one partner has explicitely defined 1,4 interactions
+  for(uint i = 0; i < lj_14_types.size(); ++i){
+    for(uint j = 0; j < lj_types.size(); ++j){
+      InteractionPtr p(new Interaction(LJPair));
+      std::vector<String> types;
+      std::vector<Real> parameters;
+      types.push_back(lj_14_types[i]);
+      types.push_back(lj_types[j]);
+      parameters.push_back(0.5 * (lj_14_sigmas[i] + lj_sigmas[j]));
+      parameters.push_back(sqrt(lj_14_epsilons[i] * lj_epsilons[j]));
+      p->SetTypes(types);
+      p->SetParam(parameters);
+      ff_->AddLJPair(p);
+    }
+  }
+
+
+}
+
+void FFReader::ParseCHARMMRTF(std::vector<std::vector<String> >& content){
+
+  bool in_block = false;
+
+  BuildingBlockPtr actual_block;
+
+  String actual_block_name = "";
+
+  int keyword_id = -1;
+  std::vector<String> current_line;
+  bool line_read = false;
+
+  for(uint line_counter = 0; line_counter < content.size(); ++line_counter){
+    current_line = content[line_counter];
+    std::cerr<<current_line[0]<<std::endl;
+    if(CHARMMData::Instance()->GetKeywordIndex(current_line[0]) != -1){
+      keyword_id = CHARMMData::Instance()->GetKeywordIndex(current_line[0]);
+    }
+    if(keyword_id == -1) continue;
+
+    
+
+    if(in_block){
+      line_read = false;
+      switch(keyword_id){
+        case 15:{ //atom
+          actual_block->AddAtom(current_line[1],current_line[2],boost::lexical_cast<Real>(current_line[3]));
+          line_read=true;
+          break;
+        }
+        case 16:{//group
+          line_read=true;
+          break;
+        }
+        case 17:{//bond
+          int num_bonds = (current_line.size()-1) / 2;
+          for(int i = 0; i < num_bonds; ++i){
+            InteractionPtr p(new Interaction(HarmonicBond));
+            std::vector<String> names;
+            names.push_back(current_line[i*2+1]);
+            names.push_back(current_line[i*2+2]);
+            p->SetNames(names);
+            actual_block->AddBond(p);
+          }
+          line_read=true;
+          break;
+        }
+        case 18:{//angle
+          int num_angles = (current_line.size()-1) / 3;
+          for(int i = 0; i < num_angles; ++i){
+            InteractionPtr p(new Interaction(UreyBradleyAngle));
+            std::vector<String> names;
+            names.push_back(current_line[i*3+1]);
+            names.push_back(current_line[i*3+2]);
+            names.push_back(current_line[i*3+3]);
+            p->SetNames(names);
+            actual_block->AddAngle(p);
+          }
+          line_read=true;
+          break;
+        }
+        case 19:{//dihedral
+          int num_dihedrals = (current_line.size()-1) / 4;
+          for(int i = 0; i < num_dihedrals; ++i){
+            InteractionPtr p(new Interaction(PeriodicDihedral));
+            std::vector<String> names;
+            names.push_back(current_line[i*4+1]);
+            names.push_back(current_line[i*4+2]);
+            names.push_back(current_line[i*4+3]);
+            names.push_back(current_line[i*4+4]);
+            p->SetNames(names);
+            actual_block->AddDihedral(p);
+          }
+          line_read=true;
+          break;
+        }
+        case 20:{//improper
+          int num_impropers = (current_line.size()-1) / 4;
+          for(int i = 0; i < num_impropers; ++i){
+            InteractionPtr p(new Interaction(HarmonicImproper));
+            std::vector<String> names;
+            names.push_back(current_line[i*4+1]);
+            names.push_back(current_line[i*4+2]);
+            names.push_back(current_line[i*4+3]);
+            names.push_back(current_line[i*4+4]);
+            p->SetNames(names);
+            actual_block->AddImproper(p);
+          }
+          line_read=true;
+          break;
+        }
+        case 5:{//cmap
+          int num_cmaps = (current_line.size()-1) / 8;
+          for(int i = 0; i < num_cmaps; ++i){
+            InteractionPtr p(new Interaction(CMap));
+            std::vector<String> names;
+            names.push_back(current_line[i*4+1]);
+            names.push_back(current_line[i*4+2]);
+            names.push_back(current_line[i*4+3]);
+            names.push_back(current_line[i*4+4]);
+            names.push_back(current_line[i*4+8]);
+            p->SetNames(names);
+            actual_block->AddCMap(p);
+          }
+          line_read=true;
+          break;
+        }
+        case 21:{ //donor
+          line_read=true;
+          break; //I don't think. that this will ever be read...
+        }
+        case 22:{//acceptor
+          line_read=true;
+          break; //I don't think. that this will ever be read...
+        }
+        case 23:{// ic
+          line_read=true;
+          break;
+        }
+        case 24:{ //patching
+          line_read=true;
+          break;
+        }
+        case 25:{ //print
+          line_read=true;
+          break;
+        }
+        case 26:{ //double =>basically a bond
+          int num_bonds = (current_line.size()-1) / 2;
+          for(int i = 0; i < num_bonds; ++i){
+            InteractionPtr p(new Interaction(HarmonicBond));
+            std::vector<String> names;
+            names.push_back(current_line[i*2+1]);
+            names.push_back(current_line[i*2+2]);
+            p->SetNames(names);
+            actual_block->AddBond(p);
+          }
+          line_read=true;
+          break;
+        }
+      }
+    }
+
+    if(line_read) continue;
+
+    switch(keyword_id){
+      case 9:{
+        try {ff_->AddMass(current_line[2],boost::lexical_cast<Real>(current_line[3]));}
+        catch(std::exception& e){
+          throw ost::io::IOException("Could not cast mass into real type!"); 
+        }
+        break;
+      }
+      case 10:{
+        break; //we don't read that for now....
+      }
+      case 11:{//we don't allow patches for now
+        break;
+      }
+      case 12:{
+        break; //we don't read that for now
+      }
+      case 13:{
+        //check, whether there is an "open block"
+        if(in_block){
+          ff_->AddBuildingBlock(actual_block_name,actual_block);
+          std::cerr<<"added building block: "<<actual_block_name<<std::endl;
+        }
+        actual_block_name = current_line[1];
+        actual_block = BuildingBlockPtr(new BuildingBlock);
+        in_block = true;
+        std::cerr<<actual_block_name<<std::endl;
+        break;
+      }
+      case 14:{
+        //check, whether there is an "open block"
+        if(in_block){
+          ff_->AddBuildingBlock(actual_block_name,actual_block);
+          in_block = false;
+        }
+        break;
+      }
+
+
+    }
+
+  }
+
+  //add last building block if necessary
+  if(in_block) ff_->AddBuildingBlock(actual_block_name,actual_block);
+
+}
+
+}}}
diff --git a/modules/mol/mm/src/ff_reader.hh b/modules/mol/mm/src/ff_reader.hh
new file mode 100644
index 0000000000000000000000000000000000000000..957e4457922c6a017c4a6983accc733a412f786f
--- /dev/null
+++ b/modules/mol/mm/src/ff_reader.hh
@@ -0,0 +1,213 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#ifndef OST_MM_FORCEFIELD_READER_HH
+#define OST_MM_FORCEFIELD_READER_HH
+
+#include <fstream>
+
+#include <boost/filesystem.hpp>
+#include <boost/algorithm/string.hpp>
+#include <boost/lexical_cast.hpp>
+#include <boost/unordered_map.hpp>
+
+#include <ost/base.hh>
+#include <ost/io/io_exception.hh>
+#include <ost/mol/mm/forcefield.hh>
+#include <ost/mol/mm/interaction.hh>
+#include <ost/mol/mm/gromacs_block_modifiers.hh>
+
+
+namespace ost { namespace mol{ namespace mm{
+
+class GromacsData;
+class CHARMMData;
+class FFReader;
+typedef boost::shared_ptr<GromacsData> GromacsDataPtr;
+typedef boost::shared_ptr<FFReader> FFReaderPtr;
+typedef boost::shared_ptr<CHARMMData> CHARMMDataPtr;
+
+class GromacsData{
+public:
+  static GromacsDataPtr Instance();
+  int GetKeywordIndex(const String& keyword);
+  String ConvertToStandard(const String& res_name, const String& atom_name);
+  bool ConversionExists(const String& res_name);
+
+private:
+  GromacsData();
+  GromacsData(const GromacsData&);
+  GromacsDataPtr operator=(const GromacsDataPtr&);
+  static GromacsDataPtr instance_;
+  boost::unordered_map<String,int> keyword_map_;
+  boost::unordered_map<String, std::vector<std::pair<String,String> > > renaming_to_standard_;
+
+};
+
+class CHARMMData{
+public:
+  static CHARMMDataPtr Instance();
+  int GetKeywordIndex(const String& keyword);
+
+private:
+  CHARMMData();
+  CHARMMData(const CHARMMData&);
+  CHARMMDataPtr operator=(const CHARMMDataPtr&);
+  static CHARMMDataPtr instance_;
+  boost::unordered_map<String,int> keyword_map_;
+};
+
+class MMPreprocessor{
+
+public:
+
+  MMPreprocessor(const String& basepath): basepath_(basepath) { }
+
+  std::vector<std::vector<String> > Process(const String& filename);
+
+  void SetDefinition(const String& def) { defines_.insert(def); }
+
+  boost::filesystem::path GetBasedir() { return basepath_; }
+
+private:
+
+  //function, that can recursively resolve ifdef / ifndef statements
+  void ResolveIFDEF(std::vector<std::vector<String> >& file_content, int line_counter);
+
+  //simply reads a file, cuts it into pieces and removes comments marked by '*' and ';'
+  std::vector<std::vector<String> > ReadFile(const String& filename);
+
+  std::map<String,std::vector<String> > definitions_;
+  std::set<String> defines_;
+  boost::filesystem::path basepath_;
+};
+
+
+class FFReader {
+public:
+
+  FFReader(const String& base_dir);
+
+  void SetPreprocessorDefinition(const String& def) { preprocessor_.SetDefinition(def); }
+
+  void ReadGromacsForcefield();
+
+  ForcefieldPtr GetForcefield() { return ff_;}
+
+  void SetForcefield(ForcefieldPtr ff) { ff_ = ff; }
+
+  void ReadResidueDatabase(const String& basename);
+
+  void ReadITP(const String& basename);
+
+  void ReadCHARMMPRM(const String& basename);
+
+  void ReadCHARMMRTF(const String& basename);
+
+private:
+
+  InteractionPtr ParseBond(const std::vector<String>& data, 
+                             bool type_definition, 
+                             FuncType functype = Invalid);
+
+  InteractionPtr ParseAngle(const std::vector<String>& data, 
+                              bool type_definition, 
+                              FuncType functype = Invalid);
+
+  InteractionPtr ParseDihedral(const std::vector<String>& data, 
+                                 bool type_definition, 
+                                 FuncType functype = Invalid);
+
+  InteractionPtr ParseCMap(const std::vector<String>& data, 
+                             bool type_definition, 
+                             FuncType functype = Invalid);
+
+  InteractionPtr ParseLJ(const std::vector<String>& data, 
+                           bool type_definition, 
+                           FuncType functype = Invalid);
+
+  InteractionPtr ParseLJPair(const std::vector<String>& data, 
+                               bool type_definition, 
+                               FuncType functype = Invalid);
+
+  InteractionPtr ParseConstraint(const std::vector<String>& data, 
+                                   bool type_definition, 
+                                   FuncType functype = Invalid);
+
+  InteractionPtr ParseGenborn(const std::vector<String>& data, 
+                                bool type_definition, 
+                                FuncType functype = Invalid);
+
+  InteractionPtr ParseExclusion(const std::vector<String>& data,
+                                  bool type_definition,
+                                  FuncType functype = Invalid);
+
+  BuildingBlockPtr BlockFromRTP(const std::vector<std::vector<String> >& data);
+
+  BuildingBlockPtr BlockFromITP(const std::vector<std::vector<String> >& data);
+
+  TerminiConstructorPtr ParseTermini(const std::vector<std::vector<String> >& data);
+
+  BlockModifierPtr ParseBlockModifier(const std::vector<std::vector<String> >& data);
+
+  void ParseHydrogenRule(const std::vector<String>& data, GromacsHydrogenConstructor& constructor);
+
+  void ParseTerminiReplaceRule(const std::vector<String>& data, GromacsBlockModifier& constructor);
+
+  void ParseTerminiAddRule(const std::vector<String>& data1, const std::vector<String>& data2,
+                           GromacsBlockModifier& constructor);
+
+  //Reader functions for the mandatory forcefield files
+  void ParseForcefield(std::vector<std::vector<String> >& content);
+  void ParseAtomTypes(std::vector<std::vector<String> >& content);
+
+  //Reader functions for CHARMM stuff
+  void ParseCHARMMPRM(std::vector<std::vector<String> >& content);
+
+  void ParseCHARMMRTF(std::vector<std::vector<String> >& content);
+
+  //Reader functions for all different residue database files
+  void ParseRTP(std::vector<std::vector<String> >& content);
+  void ParseARN(std::vector<std::vector<String> >& content);
+  void ParseHDB(std::vector<std::vector<String> >& content);
+  void ParseNTDB(std::vector<std::vector<String> >& content);
+  void ParseCTDB(std::vector<std::vector<String> >& content);
+  void ParseVSD(std::vector<std::vector<String> >& content);
+  void ParseRtoB(std::vector<std::vector<String> >& content);
+  //Reader function for single molecule itp files
+  void ParseITP(std::vector<std::vector<String> >& content);
+
+  boost::unordered_map<String, std::vector<std::pair<String,String> > > atom_renaming_ff_specific_;
+  boost::unordered_map<String, ResidueNamesPtr> res_renaming_ff_specific_;
+
+  std::vector<FuncType> ff_bonded_types_;
+
+  MMPreprocessor preprocessor_;
+  ForcefieldPtr ff_;
+
+  //following part is ugly...
+  //data that is read during the residue datababase parsing process gets stored in there
+  std::vector<FuncType> bonded_types_;
+  std::vector<String> read_residues_;
+};
+
+
+}}}//ns
+
+#endif
diff --git a/modules/mol/mm/src/forcefield.cc b/modules/mol/mm/src/forcefield.cc
new file mode 100644
index 0000000000000000000000000000000000000000..5e1b1ac7102f9fbb32841016a6a4d179078a146a
--- /dev/null
+++ b/modules/mol/mm/src/forcefield.cc
@@ -0,0 +1,1042 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <ost/mol/mm/forcefield.hh>
+
+namespace ost{ namespace mol{ namespace mm{
+
+ForcefieldPtr Forcefield::Load(const String& filename){
+
+
+  if (!boost::filesystem::exists(filename)) {
+    std::stringstream ss;
+    ss << "Could not open forcefield. File '"
+       << filename << "' does not exist";
+    throw ost::io::IOException(ss.str());
+  }
+
+  std::ifstream stream(filename.c_str(), std::ios_base::binary);
+  ost::io::BinaryDataSource ds(stream);
+  ForcefieldPtr ff_p(new Forcefield);
+
+  bool gen_pairs;
+  Real fudge_LJ;
+  Real fudge_QQ;
+  ds & gen_pairs;
+  ds & fudge_LJ;
+  ds & fudge_QQ;
+
+  ff_p->SetGenPairs(gen_pairs);
+  ff_p->SetFudgeLJ(fudge_LJ);
+  ff_p->SetFudgeQQ(fudge_QQ);
+
+  int num_atom_masses;
+  ds & num_atom_masses;
+
+  String atom_name;
+  Real mass;
+  for(int i = 0; i < num_atom_masses; ++i){
+    ds & atom_name;
+    ds & mass;
+    ff_p->AddMass(atom_name,mass);
+  }
+
+  int num_building_blocks;
+  ds & num_building_blocks;
+  String block_name;
+  for(int i = 0; i < num_building_blocks; ++i){
+    ds & block_name;
+    BuildingBlockPtr p(new BuildingBlock);
+    ds & *p;
+    ff_p->AddBuildingBlock(block_name,p);
+  }
+  
+  int func_type;
+  int num_bonds;
+  ds & num_bonds;
+  for(int i = 0; i < num_bonds; ++i){
+    ds & func_type;
+    InteractionPtr p(new Interaction(FuncType(func_type)));
+    ds & *p;
+    ff_p->AddBond(p);
+  }
+
+  int num_angles;
+  ds & num_angles;
+  for(int i = 0; i < num_angles; ++i){
+    ds & func_type;
+    InteractionPtr p(new Interaction(FuncType(func_type)));
+    ds & *p;
+    ff_p->AddAngle(p);
+  }
+  
+  int num_lj_pairs;
+  ds & num_lj_pairs;
+  for(int i = 0; i < num_lj_pairs; ++i){
+    ds & func_type;
+    InteractionPtr p(new Interaction(FuncType(func_type)));
+    ds & *p;
+    ff_p->AddLJPair(p);
+  }
+
+  int num_constraints;
+  ds & num_constraints;
+  for(int i = 0; i < num_constraints; ++i){
+    ds & func_type;
+    InteractionPtr p(new Interaction(FuncType(func_type)));
+    ds & *p;
+    ff_p->AddConstraint(p);
+  }
+  
+  int num_cmaps;
+  ds & num_cmaps;
+  for(int i = 0; i < num_cmaps; ++i){
+    ds & func_type;
+    InteractionPtr p(new Interaction(FuncType(func_type)));
+    ds & *p;
+    ff_p->AddCMap(p);
+  }
+
+  int num_genborn;
+  ds & num_genborn;
+  for(int i = 0; i < num_genborn; ++i){
+    ds & func_type;
+    InteractionPtr p(new Interaction(FuncType(func_type)));
+    ds & *p;
+    ff_p->AddImplicitGenborn(p);
+  }
+
+  int num_ljs;
+  ds & num_ljs;
+  for(int i = 0; i < num_ljs; ++i){
+    ds & func_type;
+    InteractionPtr p(new Interaction(FuncType(func_type)));
+    ds & *p;
+    ff_p->AddLJ(p);
+  }
+
+
+  int num_dihedrals;
+  ds & num_dihedrals;
+  int temp_num;
+  for(int i = 0; i < num_dihedrals; ++i){
+    ds & temp_num;
+    for(int j = 0; j < temp_num; ++j){
+      ds & func_type;
+      InteractionPtr p(new Interaction(FuncType(func_type)));
+      ds & *p;
+      ff_p->AddDihedral(p);
+    }
+  }
+
+  int num_impropers;
+  ds & num_impropers;
+  for(int i = 0; i < num_impropers; ++i){
+    ds & temp_num;
+    for(int j = 0; j < temp_num; ++j){
+      ds & func_type;
+      InteractionPtr p(new Interaction(FuncType(func_type)));
+      ds & *p;
+      ff_p->AddImproper(p);
+    }
+  }
+
+  int num_atom_renamings;
+  ds & num_atom_renamings;
+  String res_name, old_name, new_name;
+  for(int i = 0; i < num_atom_renamings; ++i){
+    ds & res_name;
+    ds & temp_num;
+    for(int j = 0; j < temp_num; ++j){
+      ds & old_name;
+      ds & new_name;
+      ff_p->AddAtomRenamingRule(res_name,old_name,new_name);
+    }
+  }
+
+  int num_res_renaming;
+  ds & num_res_renaming;
+  for(int i = 0; i < num_res_renaming; ++i){
+    ds & res_name;
+    ResidueNamesPtr p(new ResidueNames);
+    ds & *p;
+    ff_p->AddResidueRenamingRule(res_name, p->main, p->nter, p->cter, p->twoter);
+  }
+
+  int num_hydrogen_constructors;
+  int block_modifier_type;
+  String block_modifier_name;
+  ds & num_hydrogen_constructors;
+  for(int i = 0; i < num_hydrogen_constructors; ++i){
+    ds & block_modifier_type;
+    ds & block_modifier_name;
+    switch(block_modifier_type){
+      case GromacsBlockModifiers:{
+        GromacsHydrogenConstructorPtr p(new GromacsHydrogenConstructor);
+        ds & *p;
+        ff_p->AddHydrogenConstructor(block_modifier_name,p);
+        break;
+      }
+      default:{
+        throw ost::Error("Invalid Block Modifier type encountered when loading hydrogen constructor!");
+      }
+
+    }
+  }
+
+  int num_block_modifiers;
+  ds & num_block_modifiers;
+  String modifier_name;
+
+  for(int i = 0; i < num_block_modifiers; ++i){
+    ds & block_modifier_type;
+    switch(block_modifier_type){
+      case GromacsBlockModifiers:{
+        GromacsBlockModifierPtr p(new GromacsBlockModifier);
+        ds & modifier_name;
+        ds & *p;
+        ff_p->AddBlockModifier(modifier_name,p);
+        break;
+      }
+      default:{
+        throw ost::Error("Invalid Block Modifier type encountered when loading!");
+      }
+    }
+    
+  }
+
+  int num_standard_n_termini;
+  int num_standard_c_termini;
+
+  ds & num_standard_n_termini;
+  ds & num_standard_c_termini;
+
+  for(int i = 0; i < num_standard_n_termini; ++i){
+    ds & res_name;
+    ds & modifier_name;
+    ff_p->SetStandardNTer(res_name,modifier_name);
+  }
+
+  for(int i = 0; i < num_standard_c_termini; ++i){
+    ds & res_name;
+    ds & modifier_name;
+    ff_p->SetStandardCTer(res_name,modifier_name);
+  }
+
+  return ff_p;
+}
+
+void Forcefield::Save(const String& filename){
+  std::ofstream stream(filename.c_str(), std::ios_base::binary);
+  io::BinaryDataSink ds(stream);
+
+
+  ds & gen_pairs_;
+  ds & fudge_LJ_;
+  ds & fudge_QQ_;
+
+  int num_atom_masses = atom_masses_.size();
+  ds & num_atom_masses;
+  for(boost::unordered_map<String,Real>::iterator i = atom_masses_.begin();
+      i != atom_masses_.end(); ++i){
+    ds & i->first;
+    ds & i->second;
+  }
+  
+  int num_building_blocks = building_blocks_.size();
+  ds & num_building_blocks;
+  for(boost::unordered_map<String,BuildingBlockPtr>::iterator i = building_blocks_.begin();
+      i != building_blocks_.end(); ++i){
+    ds & i->first;
+    ds & *(i->second);
+  }
+
+  
+  int func_type;
+  int num_bonds = bonds_.size();
+  ds & num_bonds;
+  for(boost::unordered_map<String,InteractionPtr>::iterator i = bonds_.begin();
+      i != bonds_.end(); ++i){
+    func_type = int(i->second->GetFuncType());
+    ds & func_type;
+    ds & *(i->second);
+  }
+  
+  int num_angles = angles_.size();
+  ds & num_angles;
+  for(boost::unordered_map<String,InteractionPtr>::iterator i = angles_.begin();
+      i != angles_.end(); ++i){
+    func_type = int(i->second->GetFuncType());
+    ds & func_type;
+    ds & *(i->second);
+  }
+
+  int num_lj_pairs = lj_14_pairs_.size();
+  ds & num_lj_pairs;
+  for(boost::unordered_map<String,InteractionPtr>::iterator i = lj_14_pairs_.begin();
+      i != lj_14_pairs_.end(); ++i){
+    func_type = int(i->second->GetFuncType());
+    ds & func_type;
+    ds & *(i->second);
+  }
+  
+  int num_constraints = constraints_.size();
+  ds & num_constraints;
+  for(boost::unordered_map<String,InteractionPtr>::iterator i = constraints_.begin();
+      i != constraints_.end(); ++i){
+    func_type = int(i->second->GetFuncType());
+    ds & func_type;
+    ds & *(i->second);
+  }
+
+  int num_cmaps = cmaps_.size();
+  ds & num_cmaps;
+  for(boost::unordered_map<String,InteractionPtr>::iterator i = cmaps_.begin();
+      i != cmaps_.end(); ++i){
+    func_type = int(i->second->GetFuncType());
+    ds & func_type;
+    ds & *(i->second);
+  }
+  
+  int num_genborn = implicit_genborn_.size();
+  ds & num_genborn;
+  for(boost::unordered_map<String,InteractionPtr>::iterator i = implicit_genborn_.begin();
+      i != implicit_genborn_.end(); ++i){
+    func_type = int(i->second->GetFuncType());
+    ds & func_type;
+    ds & *(i->second);
+  }
+  
+  int num_ljs = ljs_.size();
+  ds & num_ljs;
+  for(boost::unordered_map<String,InteractionPtr>::iterator i = ljs_.begin();
+      i != ljs_.end(); ++i){
+    func_type = int(i->second->GetFuncType());
+    ds & func_type;
+    ds & *(i->second);
+  }
+  
+  int num_dihedrals = dihedrals_.size();
+  int vector_size;
+  ds & num_dihedrals;
+  for(boost::unordered_map<String,std::vector<InteractionPtr> >::iterator i = dihedrals_.begin();
+      i != dihedrals_.end(); ++i){
+    vector_size = i->second.size();
+    ds & vector_size;
+    for(std::vector<InteractionPtr>::iterator j = i->second.begin();
+        j != i->second.end(); ++j){
+      func_type = int((*j)->GetFuncType());
+      ds & func_type;
+      ds & **j;
+    }
+  }
+
+  int num_impropers = improper_dihedrals_.size();
+  ds & num_impropers;
+  for(boost::unordered_map<String,std::vector<InteractionPtr> >::iterator i = improper_dihedrals_.begin();
+      i != improper_dihedrals_.end(); ++i){
+    vector_size = i->second.size();
+    ds & vector_size;
+    for(std::vector<InteractionPtr>::iterator j = i->second.begin();
+        j != i->second.end(); ++j){
+      func_type = int((*j)->GetFuncType());
+      ds & func_type;
+      ds & **j;
+    }
+  }
+  
+
+  int num_atom_renamings = atom_renaming_ff_specific_.size();
+  ds & num_atom_renamings;
+  for(boost::unordered_map<String,std::vector<std::pair<String,String> > >::iterator i = atom_renaming_ff_specific_.begin();
+      i != atom_renaming_ff_specific_.end(); ++i){
+    ds & i->first;
+    vector_size = i->second.size();
+    ds & vector_size;
+    for(std::vector<std::pair<String,String> >::iterator j = i->second.begin();
+        j != i->second.end(); ++j){
+      ds & j->first;
+      ds & j->second;
+    }
+  }
+
+  int num_res_renaming = res_renaming_ff_specific_.size();
+  ds & num_res_renaming;
+  for(boost::unordered_map<String,ResidueNamesPtr>::iterator i = res_renaming_ff_specific_.begin();
+      i != res_renaming_ff_specific_.end(); ++i){
+    ds & i->first;
+    ds & *(i->second);
+  }
+
+  int num_hydrogen_constructors = hydrogen_constructors_.size();
+  ds & num_hydrogen_constructors;
+  for(boost::unordered_map<String,HydrogenConstructorPtr>::iterator i = hydrogen_constructors_.begin();
+      i != hydrogen_constructors_.end(); ++i){
+    func_type = int(i->second->GetBlockModifierType());
+    ds & func_type;
+    ds & i->first;
+    i->second->OnSave(ds);
+  }
+
+  int num_block_modifiers = block_modifiers_.size();
+  ds & num_block_modifiers;
+  for(boost::unordered_map<String,BlockModifierPtr>::iterator i = block_modifiers_.begin();
+      i != block_modifiers_.end(); ++i){
+    func_type = int(i->second->GetBlockModifierType());
+    ds & func_type;
+    ds & i->first;
+    i->second->OnSave(ds);
+  }
+
+  int num_standard_n_termini = standard_c_termini_.size();
+  int num_standard_c_termini = standard_n_termini_.size();
+  ds & num_standard_n_termini;
+  ds & num_standard_c_termini;
+
+  for(boost::unordered_map<String, String>::iterator i = standard_n_termini_.begin();
+      i != standard_n_termini_.end(); ++i){
+    ds & i->first;
+    ds & i->second;
+  }
+
+  for(boost::unordered_map<String, String>::iterator i = standard_c_termini_.begin();
+      i != standard_c_termini_.end(); ++i){
+    ds & i->first;
+    ds & i->second;
+  }
+
+}
+
+BuildingBlockPtr Forcefield::GetBuildingBlock(const String& name) const{
+  boost::unordered_map<String,BuildingBlockPtr>::const_iterator i = building_blocks_.find(name);
+  if(i == building_blocks_.end()){
+    std::stringstream ss;
+    ss << "Forcefield does not contain requested building block ";
+    ss << "\"" << name << "\"";
+    throw ost::Error(ss.str());
+  }
+  BuildingBlockPtr ff_p = i->second;
+  //let's create a new building block to avoid messing around with the
+  //force field building blocks
+  BuildingBlockPtr p(new BuildingBlock(*ff_p));
+  return p;
+}
+
+BlockModifierPtr Forcefield::GetBlockModifier(const String& modifier_name) const{
+  boost::unordered_map<String,BlockModifierPtr>::const_iterator i = block_modifiers_.find(modifier_name);
+  if(i == block_modifiers_.end()) return BlockModifierPtr();
+  return i->second;
+}
+
+String Forcefield::GetAtomType(const String& res_name, const String& atom_name) const{
+  BuildingBlockPtr block = this->GetBuildingBlock(res_name);
+  if(!block){
+    std::stringstream ss;
+    ss << "There is no building block for " << res_name;
+    ss << "in the forcefield!";
+    throw ost::Error(ss.str());
+  }
+  return block->GetType(atom_name);
+}
+
+HydrogenConstructorPtr Forcefield::GetHydrogenConstructor(const String& name) const{
+  boost::unordered_map<String,HydrogenConstructorPtr>::const_iterator i = hydrogen_constructors_.find(name);
+  if(i != hydrogen_constructors_.end()) return i->second;
+  return HydrogenConstructorPtr();
+}
+
+BlockModifierPtr Forcefield::GetNTerModifier(const String& res_name, const String& ter_name) const{
+  String temp = ter_name;
+  if(temp == ""){
+    boost::unordered_map<String,String>::const_iterator it = standard_n_termini_.find(res_name);
+    if(it != standard_n_termini_.end()) temp = it->second;
+    else return BlockModifierPtr();
+  }
+  return this->GetBlockModifier(temp);
+}
+
+BlockModifierPtr Forcefield::GetCTerModifier(const String& res_name, const String& ter_name) const{
+  String temp = ter_name;
+  if(temp == ""){
+    boost::unordered_map<String,String>::const_iterator it = standard_c_termini_.find(res_name);
+    if(it != standard_c_termini_.end()) temp = it->second;
+    else return BlockModifierPtr();
+  }
+  return this->GetBlockModifier(temp);
+}
+
+InteractionPtr Forcefield::GetBond(const String& type1, const String& type2) const{
+  std::vector<String> types;
+  types.push_back(type1);
+  types.push_back(type2);
+  boost::unordered_map<String,InteractionPtr>::const_iterator i = 
+    bonds_.find(this->AtomTypesToKeyword(types));
+  if(i != bonds_.end()) return i->second;
+  throw ost::Error("Forcefield does not contain bond for requested atom types!");
+}
+
+InteractionPtr Forcefield::GetAngle(const String& type1, const String& type2,
+                                      const String& type3) const{
+  std::vector<String> types;
+  types.push_back(type1);
+  types.push_back(type2);
+  types.push_back(type3);
+  boost::unordered_map<String,InteractionPtr>::const_iterator i = 
+    angles_.find(this->AtomTypesToKeyword(types));
+  if(i != angles_.end()) return i->second;
+  throw ost::Error("Forcefield does not contain angle for requested atom types!");
+}
+
+std::vector<InteractionPtr> Forcefield::GetDihedrals(const String& type1,
+                                                       const String& type2,
+                                                       const String& type3,
+                                                       const String& type4) const{
+  std::vector<String> types;
+  types.push_back(type1);
+  types.push_back(type2);
+  types.push_back(type3);
+  types.push_back(type4);
+
+  boost::unordered_map<String,std::vector<InteractionPtr> >::const_iterator i = 
+    dihedrals_.find(this->AtomTypesToKeyword(types));
+
+  if(i != dihedrals_.end()) return i->second;
+
+  //if we reach this point, we have to look for all dihedrals with wildcards...
+  std::vector<InteractionPtr> dihedrals;
+  std::vector<String> types_with_wildcards;
+  
+  //lets first check single wildcards
+  for(int i = 0; i < 4; ++i){
+    types_with_wildcards = types;
+    types_with_wildcards[i] = "X";
+    boost::unordered_map<String,std::vector<InteractionPtr> >::const_iterator j = 
+      dihedrals_.find(this->AtomTypesToKeyword(types_with_wildcards));
+    if(j != dihedrals_.end()) dihedrals.insert(dihedrals.end(),j->second.begin(),j->second.end());
+  }
+
+  //we check for two wildcards
+  for(int i = 0; i < 4; ++i){
+    for(int j = i+1; j < 4; ++j){
+      types_with_wildcards = types;
+      types_with_wildcards[i] = "X";
+      types_with_wildcards[j] = "X";
+      boost::unordered_map<String,std::vector<InteractionPtr> >::const_iterator k = 
+        dihedrals_.find(this->AtomTypesToKeyword(types_with_wildcards));
+      if(k != dihedrals_.end()) dihedrals.insert(dihedrals.end(),k->second.begin(),k->second.end());
+    }
+  }
+
+  //as stupid as it may sound, we also look for dihedrals with 3 wildcards
+  std::vector<String> all_wildcards;
+  for(int i = 0; i < 4; ++i){
+    all_wildcards.push_back("X");
+  }
+  for(int i = 0; i < 4; ++i){
+    types_with_wildcards = all_wildcards;
+    types_with_wildcards[i] = types[i];
+    boost::unordered_map<String,std::vector<InteractionPtr> >::const_iterator j = 
+      dihedrals_.find(this->AtomTypesToKeyword(types_with_wildcards));
+    if(j != dihedrals_.end()) dihedrals.insert(dihedrals.end(),j->second.begin(),j->second.end());
+  }  
+
+  if(!dihedrals.empty()) return dihedrals;
+  throw ost::Error("Forcefield does not contain any dihedrals for requested atom types!");
+}
+
+std::vector<InteractionPtr> Forcefield::GetImpropers(const String& type1,
+                                                       const String& type2,
+                                                       const String& type3,
+                                                       const String& type4) const{
+  std::vector<String> types;
+  types.push_back(type1);
+  types.push_back(type2);
+  types.push_back(type3);
+  types.push_back(type4);
+
+  boost::unordered_map<String,std::vector<InteractionPtr> >::const_iterator i = 
+    improper_dihedrals_.find(this->AtomTypesToKeyword(types));
+
+  if(i != improper_dihedrals_.end()) return i->second;
+
+  //if we reach this point, we have to look for all dihedrals with wildcards...
+  std::vector<InteractionPtr> impropers;
+  std::vector<String> types_with_wildcards;
+  
+  //lets first check single wildcards
+  for(int i = 0; i < 4; ++i){
+    types_with_wildcards = types;
+    types_with_wildcards[i] = "X";
+    boost::unordered_map<String,std::vector<InteractionPtr> >::const_iterator j = 
+      improper_dihedrals_.find(this->AtomTypesToKeyword(types_with_wildcards));
+    if(j != improper_dihedrals_.end()) impropers.insert(impropers.end(),j->second.begin(),j->second.end());
+  }
+
+  //we check for two wildcards
+  for(int i = 0; i < 4; ++i){
+    for(int j = i+1; j < 4; ++j){
+      types_with_wildcards = types;
+      types_with_wildcards[i] = "X";
+      types_with_wildcards[j] = "X";
+      boost::unordered_map<String,std::vector<InteractionPtr> >::const_iterator k = 
+        improper_dihedrals_.find(this->AtomTypesToKeyword(types_with_wildcards));
+      if(k != improper_dihedrals_.end()) impropers.insert(impropers.end(),k->second.begin(),k->second.end());
+    }
+  }
+
+  //as stupid as it may sound, we also look for dihedrals with 3 wildcards
+  std::vector<String> all_wildcards;
+  for(int i = 0; i < 4; ++i){
+    all_wildcards.push_back("X");
+  }
+  for(int i = 0; i < 4; ++i){
+    types_with_wildcards = all_wildcards;
+    types_with_wildcards[i] = types[i];
+    boost::unordered_map<String,std::vector<InteractionPtr> >::const_iterator j = 
+      improper_dihedrals_.find(this->AtomTypesToKeyword(types_with_wildcards));
+    if(j != improper_dihedrals_.end()) impropers.insert(impropers.end(),j->second.begin(),j->second.end());
+  }  
+
+  if(!impropers.empty()) return impropers;
+
+  throw ost::Error("Forcefield does not contain any impropers for requested atom types!");
+}
+
+InteractionPtr Forcefield::GetCMap(const String& type1, const String& type2,
+                                     const String& type3, const String& type4, 
+                                     const String& type5) const{
+
+  std::vector<String> types;
+  types.push_back(type1);
+  types.push_back(type2);
+  types.push_back(type3);
+  types.push_back(type4);
+  types.push_back(type5);
+  boost::unordered_map<String,InteractionPtr>::const_iterator i = 
+    cmaps_.find(this->AtomTypesToKeyword(types,false));
+  if(i != cmaps_.end()) return i->second;
+
+  throw ost::Error("Forcefield does not contain cmap for requested atom types!");
+}
+
+InteractionPtr Forcefield::GetImplicitGenborn(const String& type) const{
+
+  boost::unordered_map<String,InteractionPtr>::const_iterator i = 
+    implicit_genborn_.find(type);
+  if(i != implicit_genborn_.end()) return i->second;
+  throw ost::Error("Forcefield does not contain implicit genborn parameters for requested atom type!");
+}
+
+InteractionPtr Forcefield::GetLJ(const String& type) const{
+
+  boost::unordered_map<String,InteractionPtr>::const_iterator i = 
+    ljs_.find(type);
+
+  if(i != ljs_.end()){
+    return i->second;
+  }
+  throw ost::Error("Forcefield does not contain lennard jones parameters for requested atom types!");
+}
+
+InteractionPtr Forcefield::GetLJ(const String& type1, 
+                                       const String& type2,
+                                       bool pair) const{
+  std::vector<String> types;
+  types.push_back(type1);
+  types.push_back(type2);
+
+  if(pair){
+    boost::unordered_map<String,InteractionPtr>::const_iterator i = 
+      lj_14_pairs_.find(this->AtomTypesToKeyword(types));
+    if(i == lj_14_pairs_.end()){
+      if(!gen_pairs_){
+        std::stringstream ss;
+        ss << "was not able to find lj parameters between atoms of type ";
+        ss << type1 << " and " << type2 << " with gen_pairs ";
+        ss << "set to no!";
+        throw ost::Error(ss.str());
+      }
+    }
+    else{
+      return i->second;
+    }
+  }
+  
+  InteractionPtr temp1, temp2;
+  temp1 = this->GetLJ(type1);
+  temp2 = this->GetLJ(type2);
+  if(temp1 && temp2){
+    InteractionPtr return_ptr(new Interaction(LJPair));
+    std::vector<Real> param1, param2, param;
+    param1 = temp1->GetParam();
+    param2 = temp2->GetParam();
+    param.push_back(0.5*(param1[0]+param2[0]));
+    param.push_back(sqrt(param1[1]*param2[1]));
+    return_ptr->SetTypes(types);
+    return_ptr->SetParam(param);
+    return return_ptr;
+  }
+  
+  throw ost::Error("Forcefield does not contain lennard jones parameters for requested atom types!");
+
+}
+
+InteractionPtr Forcefield::GetConstraint(const String& type1,
+                                           const String& type2){
+  std::vector<String> types;
+  types.push_back(type1);
+  types.push_back(type2);
+  boost::unordered_map<String,InteractionPtr>::const_iterator i = 
+    constraints_.find(this->AtomTypesToKeyword(types));
+  if(i != constraints_.end()) return i->second;
+  throw ost::Error("Forcefield does not contain constraint for requested atom types!");
+}
+
+Real Forcefield::GetMass(const String& atom_type) const{
+  boost::unordered_map<String,Real>::const_iterator it = atom_masses_.find(atom_type);
+  if(it == atom_masses_.end()){
+    std::stringstream ss;
+    ss << "There is no mass defined for atom of type " << atom_type;
+    throw ost::Error(ss.str());
+  }
+  return it->second;
+}
+
+void Forcefield::AddBond(InteractionPtr p){
+  this->CheckInteractionToAdd(p,"BOND");
+  std::vector<String> types = p->GetTypes();
+  bonds_[this->AtomTypesToKeyword(types)] = p;
+}
+
+void Forcefield::AddAngle(InteractionPtr p){
+  this->CheckInteractionToAdd(p,"ANGLE");
+  std::vector<String> types = p->GetTypes();
+  angles_[this->AtomTypesToKeyword(types)] = p;
+}
+
+void Forcefield::AddDihedral(InteractionPtr p){
+  this->CheckInteractionToAdd(p,"DIHEDRAL");
+  std::vector<String> types = p->GetTypes();
+  String keyword = this->AtomTypesToKeyword(types);
+  if(dihedrals_.find(keyword) == dihedrals_.end()){
+    dihedrals_[keyword] = std::vector<InteractionPtr>();
+  }
+  dihedrals_[keyword].push_back(p);
+}
+
+void Forcefield::AddImproper(InteractionPtr p){
+  this->CheckInteractionToAdd(p,"IMPROPER");
+  std::vector<String> types = p->GetTypes();
+  String keyword = this->AtomTypesToKeyword(types);
+  if(improper_dihedrals_.find(keyword) == improper_dihedrals_.end()){
+    improper_dihedrals_[keyword] = std::vector<InteractionPtr>();
+  }
+  improper_dihedrals_[keyword].push_back(p);
+}
+
+void Forcefield::AddCMap(InteractionPtr p){
+  this->CheckInteractionToAdd(p,"CMAP");
+  std::vector<String> types = p->GetTypes();
+  cmaps_[this->AtomTypesToKeyword(types,false)] = p;
+}
+
+void Forcefield::AddImplicitGenborn(InteractionPtr p){
+  this->CheckInteractionToAdd(p,"IMPLICIT_GENBORN");
+  std::vector<String> types = p->GetTypes();
+  implicit_genborn_[this->AtomTypesToKeyword(types)] = p;
+}
+
+void Forcefield::AddLJ(InteractionPtr p){
+  this->CheckInteractionToAdd(p,"LJ");
+  std::vector<String> types = p->GetTypes();
+  ljs_[types[0]] = p;
+}
+
+void Forcefield::AddLJPair(InteractionPtr p){
+  this->CheckInteractionToAdd(p,"LJ_PAIR");
+  std::vector<String> types = p->GetTypes();
+  lj_14_pairs_[this->AtomTypesToKeyword(types)] = p;
+}
+
+void Forcefield::AddConstraint(InteractionPtr p){
+  this->CheckInteractionToAdd(p,"CONSTRAINT");
+  std::vector<String> types = p->GetTypes();
+  constraints_[this->AtomTypesToKeyword(types)] = p;
+}
+
+void Forcefield::AddResidueRenamingRule(const String& name,
+                                        const String& ff_main_name,
+                                        const String& ff_n_ter_name,
+                                        const String& ff_c_ter_name,
+                                        const String& ff_two_ter_name){
+  ResidueNamesPtr p(new ResidueNames(ff_main_name,
+                                     ff_n_ter_name,
+                                     ff_c_ter_name,
+                                     ff_two_ter_name));
+  res_renaming_ff_specific_[name] = p;
+}
+
+void Forcefield::AddAtomRenamingRule(const String& res_name,
+                                     const String& old_atom_name,
+                                     const String& new_atom_name){
+  if(atom_renaming_ff_specific_.find(res_name) == atom_renaming_ff_specific_.end()){
+    std::vector<std::pair<String,String> > new_vec;
+    atom_renaming_ff_specific_[res_name] = new_vec;
+  }
+
+  atom_renaming_ff_specific_[res_name].push_back(std::make_pair(old_atom_name,new_atom_name));
+}
+
+String Forcefield::GetResidueRenamingMain(const String& name) const{
+  boost::unordered_map<String, ResidueNamesPtr>::const_iterator i = res_renaming_ff_specific_.find(name);
+  if(i == res_renaming_ff_specific_.end()){
+    return name;
+  }
+  return i->second->main;  
+}
+
+String Forcefield::GetResidueRenamingNTer(const String& name) const{
+  boost::unordered_map<String, ResidueNamesPtr>::const_iterator i = res_renaming_ff_specific_.find(name);
+  if(i == res_renaming_ff_specific_.end()){
+    return name;
+  }
+  return i->second->nter;  
+}
+
+
+String Forcefield::GetResidueRenamingCTer(const String& name) const{
+  boost::unordered_map<String, ResidueNamesPtr>::const_iterator i = res_renaming_ff_specific_.find(name);
+  if(i == res_renaming_ff_specific_.end()){
+    return name;
+  }
+  return i->second->cter;  
+}
+
+String Forcefield::GetResidueRenamingTwoTer(const String& name) const{
+  boost::unordered_map<String, ResidueNamesPtr>::const_iterator i = res_renaming_ff_specific_.find(name);
+  if(i == res_renaming_ff_specific_.end()){
+    return name;
+  }
+  return i->second->twoter;  
+}
+
+String Forcefield::GetAtomRenaming(const String& res_name, const String& atom_name) const{
+  boost::unordered_map<String,std::vector<std::pair<String,String> > >::const_iterator i = atom_renaming_ff_specific_.find(res_name);
+  if(i == atom_renaming_ff_specific_.end()) return atom_name;
+  for(std::vector<std::pair<String,String> >::const_iterator j = i->second.begin(), e = i->second.end();
+      j != e; ++j){
+    if(atom_name == j->first) return j->second; 
+  } 
+  return atom_name;
+}
+
+void Forcefield::AssignFFSpecificNames(ost::mol::EntityHandle& handle, bool reverse) const{
+
+  //the whole FF specific renaming procedure assumes a standard naming,
+  //in our case the gromacs defined standard naming
+
+  ost::mol::XCSEditor ed = handle.EditXCS();
+  ost::mol::ResidueHandleList res_list = handle.GetResidueList();
+  ost::mol::AtomHandleList atom_list;
+  ost::mol::AtomHandle atom;
+  ost::mol::ResidueHandle residue;
+
+  if(!reverse){
+
+    ost::mol::ResidueHandle next,prev;
+    bool n_ter,c_ter; 
+    //ost::mol::AtomHandle peptide_n,peptide_c,nucleotide_p,nucleotide_o; 
+
+    for(ost::mol::ResidueHandleList::iterator i = res_list.begin(); 
+        i != res_list.end(); ++i){
+
+      if(res_renaming_ff_specific_.find(i->GetName()) == res_renaming_ff_specific_.end()){
+        continue;
+      }
+
+      n_ter = false;
+      c_ter = false;
+
+      //peptide_n = i->FindAtom("N");
+      //nucleotide_p = i->FindAtom("P");
+
+      prev = i->GetPrev();
+      next = i->GetNext();
+
+      if(!prev.IsValid()){
+        n_ter = true;
+      }
+      //else{
+        //peptide_c = prev.FindAtom("C");
+        //nucleotide_o = prev.FindAtom("O3");
+
+        //if(!ost::mol::BondExists(peptide_n,peptide_c) && !ost::mol::BondExists(nucleotide_p,nucleotide_o)){
+          //n_ter = true;
+        //}
+      //}
+
+      if(!next.IsValid()){
+        c_ter = true;
+      }
+      //else{
+        //peptide_n = next.FindAtom("N");
+        //peptide_c = i->FindAtom("C");
+        //nucleotide_p = next.FindAtom("P");
+        //nucleotide_o = i->FindAtom("O3");
+
+        //if(!ost::mol::BondExists(peptide_n,peptide_c) && !ost::mol::BondExists(nucleotide_p,nucleotide_o)){
+          //c_ter = true;
+        //}
+      //}
+      if(c_ter && n_ter){
+        ed.RenameResidue(*i,res_renaming_ff_specific_.find(i->GetName())->second->twoter);
+        continue;
+      }
+      if(n_ter){
+        ed.RenameResidue(*i,res_renaming_ff_specific_.find(i->GetName())->second->nter);
+        continue;
+      }
+      if(c_ter){
+        ed.RenameResidue(*i,res_renaming_ff_specific_.find(i->GetName())->second->cter);
+        continue;
+      }
+      ed.RenameResidue(*i,res_renaming_ff_specific_.find(i->GetName())->second->main);
+    }
+
+    for(ost::mol::ResidueHandleList::iterator i = res_list.begin();i!=res_list.end();++i){
+      boost::unordered_map<String,std::vector<std::pair<String,String> > >::const_iterator map_it = atom_renaming_ff_specific_.find(i->GetName());
+      if(map_it!=atom_renaming_ff_specific_.end()){
+        for(std::vector<std::pair<String,String> >::const_iterator j = map_it->second.begin();
+            j!=map_it->second.end();++j){
+          atom = i->FindAtom(j->first);
+          if(atom.IsValid()) ed.RenameAtom(atom,j->second); 
+        }
+      }
+    }  
+    return;
+  }
+
+  //it seems, that we have to do the reverse ff renaming => ff specific to gromacs standard
+
+  for(ost::mol::ResidueHandleList::iterator i = res_list.begin();i!=res_list.end();++i){
+    boost::unordered_map<String,std::vector<std::pair<String,String> > >::const_iterator map_it = atom_renaming_ff_specific_.find(i->GetName());
+    if(map_it!=atom_renaming_ff_specific_.end()){
+      for(std::vector<std::pair<String,String> >::const_iterator j = map_it->second.begin();
+          j!=map_it->second.end();++j){
+        atom = i->FindAtom(j->second);
+        if(atom.IsValid()) ed.RenameAtom(atom,j->first); 
+      }
+    }
+  }  
+
+  for(ost::mol::ResidueHandleList::iterator i = res_list.begin(); i != res_list.end(); ++i){
+    for(boost::unordered_map<String,ResidueNamesPtr>::const_iterator j = res_renaming_ff_specific_.begin();
+        j != res_renaming_ff_specific_.end(); ++j){
+      if(j->second->Contains(i->GetName())){
+        ed.RenameResidue(*i,j->first);
+        break;
+      }
+    }
+  }
+}
+
+String Forcefield::AtomTypesToKeyword(std::vector<String>& types, bool allow_reordering) const{
+  bool revert = false;
+  int num_types = types.size();
+
+  int comparisons = num_types/2; //integer division => truncate
+  for(int i = 0; i < comparisons; ++i){
+    //note, that in case of equality the next iteration gets entered
+    if(types[i] < types[num_types - i - 1]) break;
+    else if(types[i] > types[num_types - i - 1]){
+      revert = true;
+      break;
+    }
+  }
+
+  if(revert && allow_reordering) std::reverse(types.begin(),types.end());
+  std::stringstream ss;
+  std::vector<String>::iterator i = types.begin();
+  ss << *i++;
+  for (; i != types.end(); ++i) {
+      ss << "_" << *i;
+  }
+  return ss.str();
+}
+
+void Forcefield::CheckInteractionToAdd(InteractionPtr p, const String& interaction_type) const{
+  bool valid = true;
+  if(p->GetTypes().empty()) valid = false;
+  if(!p->IsParametrized()) valid = false;
+  if(!valid){
+    throw ost::Error("Expect interaction to have types and parameters properly set!");
+  }
+  if(interaction_type == "BOND"){
+    if(p->GetFuncType() != HarmonicBond){
+      throw ost::Error("Invalid function type encountered when adding bond!");
+    } return;
+  }
+  if(interaction_type == "ANGLE"){
+    if(p->GetFuncType() != HarmonicAngle && p->GetFuncType() != UreyBradleyAngle){
+      throw ost::Error("Invalid function type encountered when adding angle!");  
+    } return;
+  }
+  if(interaction_type == "DIHEDRAL"){
+    if(p->GetFuncType() != PeriodicDihedral){       
+      throw ost::Error("Invalid function type encountered when adding dihedral!");  
+    } return;
+  }
+  if(interaction_type == "IMPROPER"){
+    if(p->GetFuncType() != PeriodicImproper && p->GetFuncType() != HarmonicImproper){       
+      throw ost::Error("Invalid function type encountered when adding improper!"); 
+    } return;
+  }
+  if(interaction_type == "CMAP"){
+    if(p->GetFuncType() != CMap){       
+      throw ost::Error("Invalid function type encountered when adding cmap!");  
+    } return;
+  }
+  if(interaction_type == "IMPLICIT_GENBORN"){
+    if(p->GetFuncType() != GBSA){       
+      throw ost::Error("Invalid function type encountered when adding implicit genborn!");  
+    } return;
+  }
+  if(interaction_type == "LJ"){
+    if(p->GetFuncType() != LJ){       
+      throw ost::Error("Invalid function type encountered when adding lj!");  
+    } return;
+  }
+  if(interaction_type == "LJ_PAIR"){
+    if(p->GetFuncType() != LJPair){       
+      throw ost::Error("Invalid function type encountered when adding lj pair!");  
+    } return;
+  }
+  if(interaction_type == "CONSTRAINT"){
+    if(p->GetFuncType() != DistanceConstraint){       
+      throw ost::Error("Invalid function type encountered when adding constraint!");  
+    } return;
+  }
+
+  std::stringstream ss;
+  ss << "Cannot validate added interaction of type "<< interaction_type << "!";  
+  throw ost::Error(ss.str());
+
+}
+
+}}}//ns
diff --git a/modules/mol/mm/src/forcefield.hh b/modules/mol/mm/src/forcefield.hh
new file mode 100644
index 0000000000000000000000000000000000000000..3c65e37fea4673f5f7f4dba2dae582e3871ad269
--- /dev/null
+++ b/modules/mol/mm/src/forcefield.hh
@@ -0,0 +1,233 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#ifndef OST_MM_FORCE_FIELD_HH
+#define OST_MM_FORCE_FIELD_HH
+
+#include <vector>
+#include <algorithm>
+
+
+#include <boost/shared_ptr.hpp>
+#include <boost/unordered_map.hpp>
+
+#include <ost/message.hh>
+#include <ost/mol/mm/buildingblock.hh>
+#include <ost/mol/mm/interaction.hh>
+#include <ost/mol/mm/block_modifiers.hh>
+#include <ost/mol/mm/gromacs_block_modifiers.hh>
+
+namespace ost { namespace mol{ namespace mm{
+
+struct ResidueNames;
+class Forcefield;
+
+typedef boost::shared_ptr<ResidueNames> ResidueNamesPtr;
+typedef boost::shared_ptr<ost::mol::mm::Forcefield> ForcefieldPtr;
+
+struct ResidueNames{
+
+  ResidueNames() { };
+
+  ResidueNames(String a, String b, String c, String d):
+               main(a),nter(b),cter(c),twoter(d) { }
+
+  String main;
+  String nter;
+  String cter;
+  String twoter;
+
+  bool Contains(const String& name){
+    return name == main || name == nter || name == cter || name == twoter;
+  }
+
+  template <typename DS>
+  void Serialize(DS& ds){
+    ds & main;
+    ds & nter;
+    ds & cter;
+    ds & twoter;
+  }
+};
+
+
+class Forcefield {
+public:
+
+  Forcefield(): gen_pairs_(true), fudge_LJ_(1.0),fudge_QQ_(1.0) { }
+
+  static ForcefieldPtr Load(const String& filename);
+
+  void Save(const String& filename);
+
+  //Getter functions
+
+  BuildingBlockPtr GetBuildingBlock(const String& name) const;
+
+  BlockModifierPtr GetBlockModifier(const String& modifier_name) const;
+
+  String GetAtomType(const String& res_name, const String& atom_name) const;
+
+  HydrogenConstructorPtr GetHydrogenConstructor(const String& name) const;
+
+  BlockModifierPtr GetNTerModifier(const String& res_name, const String& ter_name = "") const;
+
+  BlockModifierPtr GetCTerModifier(const String& res_name, const String& ter_name = "") const;
+
+  InteractionPtr GetBond(const String& type1, 
+                           const String& type2) const;
+
+  InteractionPtr GetAngle(const String& type1, 
+                            const String& type2,
+                            const String& type3) const;
+
+  std::vector<InteractionPtr> GetDihedrals(const String& type1,
+                                             const String& type2,
+                                             const String& type3,
+                                             const String& type4) const;
+
+  std::vector<InteractionPtr> GetImpropers(const String& type1,
+                                             const String& type2,
+                                             const String& type3,
+                                             const String& type4) const;
+
+  InteractionPtr GetCMap(const String& type1,
+                           const String& type2,
+                           const String& type3,
+                           const String& type4,
+                           const String& type5) const;
+
+  InteractionPtr GetImplicitGenborn(const String& type1) const;
+
+  InteractionPtr GetLJ(const String& type1, 
+                             const String& type2, 
+                             bool pair=false) const;
+
+  InteractionPtr GetLJ(const String& type) const;
+
+  InteractionPtr GetConstraint(const String& type1,
+                                 const String& type2);
+
+  Real GetMass(const String& type) const;
+
+  Real GetFudgeLJ() const { return fudge_LJ_; }
+
+  Real GetFudgeQQ() const { return fudge_QQ_; }
+
+  //functions to add interactions and settings
+
+  void AddBuildingBlock(const String& name, BuildingBlockPtr p) { building_blocks_[name] = p; }
+
+  void AddBond(InteractionPtr p);
+
+  void AddAngle(InteractionPtr p);
+
+  void AddDihedral(InteractionPtr p);
+
+  void AddImproper(InteractionPtr p);
+
+  void AddCMap(InteractionPtr p);
+
+  void AddImplicitGenborn(InteractionPtr p);
+
+  void AddLJ(InteractionPtr p);
+
+  void AddLJPair(InteractionPtr p);
+
+  void AddConstraint(InteractionPtr p);
+
+  void AddMass(const String& type, Real mass) { atom_masses_[type] = mass; }
+
+  void SetFudgeLJ(Real f_lj) { fudge_LJ_ = f_lj; }
+
+  void SetFudgeQQ(Real f_qq) { fudge_QQ_ = f_qq; }
+
+  void SetGenPairs(bool gen_pairs) { gen_pairs_ = gen_pairs; }
+
+  void AddResidueRenamingRule(const String& name,
+                              const String& ff_main_name,
+                              const String& ff_n_ter_name,
+                              const String& ff_c_ter_name,
+                              const String& ff_two_ter_name);
+
+  void AddAtomRenamingRule(const String& res_name,
+                           const String& old_atom_name,
+                           const String& new_atom_name);
+
+  String GetResidueRenamingMain(const String& name) const;
+
+  String GetResidueRenamingNTer(const String& name) const;
+
+  String GetResidueRenamingCTer(const String& name) const;
+
+  String GetResidueRenamingTwoTer(const String& name) const;
+
+  String GetAtomRenaming(const String& res_name, const String& atom_name) const;
+
+  void AddHydrogenConstructor(const String& residue_name, HydrogenConstructorPtr p){
+    hydrogen_constructors_[residue_name] = p;
+  }
+
+  void AddBlockModifier(const String& modifier_name,
+                        BlockModifierPtr p) { block_modifiers_[modifier_name] = p; }
+
+  void SetStandardCTer(const String& res_name, const String& ter_name) { standard_c_termini_[res_name] = ter_name; }
+
+  void SetStandardNTer(const String& res_name, const String& ter_name) { standard_n_termini_[res_name] = ter_name; }
+
+
+  //Renaming to the forcefield specific names (residues/atoms)
+  void AssignFFSpecificNames(ost::mol::EntityHandle& handle, bool reverse=false) const;
+
+private:
+
+  String AtomTypesToKeyword(std::vector<String>& types, bool allow_reordering = true) const;
+  void CheckInteractionToAdd(InteractionPtr p, const String& interaction_type) const;
+
+  //this is all nonbonded stuff
+  bool gen_pairs_;
+  Real fudge_LJ_;
+  Real fudge_QQ_;
+
+  boost::unordered_map<String, Real> atom_masses_;
+  boost::unordered_map<String, BuildingBlockPtr> building_blocks_;
+  boost::unordered_map<String, BlockModifierPtr> block_modifiers_;
+
+  //the standard interactions
+  boost::unordered_map<String,InteractionPtr> bonds_;
+  boost::unordered_map<String,InteractionPtr> angles_;
+  boost::unordered_map<String,InteractionPtr> lj_14_pairs_; 
+  boost::unordered_map<String,InteractionPtr> constraints_;
+  boost::unordered_map<String,InteractionPtr> cmaps_;
+  boost::unordered_map<String,InteractionPtr> implicit_genborn_;
+  boost::unordered_map<String,InteractionPtr> ljs_; 
+  boost::unordered_map<String,std::vector<InteractionPtr> > dihedrals_;
+  boost::unordered_map<String,std::vector<InteractionPtr> > improper_dihedrals_;
+
+  boost::unordered_map<String, std::vector<std::pair<String,String> > > atom_renaming_ff_specific_;
+  boost::unordered_map<String, ResidueNamesPtr> res_renaming_ff_specific_;
+
+  boost::unordered_map<String, HydrogenConstructorPtr> hydrogen_constructors_;
+  boost::unordered_map<String, String> standard_n_termini_;
+  boost::unordered_map<String, String> standard_c_termini_;
+};
+
+}}}//ns
+
+#endif
diff --git a/modules/mol/mm/src/gromacs_block_modifiers.cc b/modules/mol/mm/src/gromacs_block_modifiers.cc
new file mode 100644
index 0000000000000000000000000000000000000000..b74b567ea03ff4c8f6737fb42e5ae79400927e32
--- /dev/null
+++ b/modules/mol/mm/src/gromacs_block_modifiers.cc
@@ -0,0 +1,487 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <ost/mol/mm/gromacs_block_modifiers.hh>
+
+namespace ost{ namespace mol{ namespace mm{
+
+std::vector<geom::Vec3> GromacsPositionRuleEvaluator::EvaluatePosRule(int rule, 
+                                                                      int number,
+                                                                      const std::vector<geom::Vec3>& anchors){
+
+  std::vector<geom::Vec3> positions;
+
+  switch(rule){
+
+    case 1:{
+      geom::Vec3 i_j = geom::Normalize(anchors[0]-anchors[1]);
+      geom::Vec3 i_k = geom::Normalize(anchors[0]-anchors[2]);
+      geom::Vec3 temp = geom::Normalize(i_j+i_k);
+      positions.push_back(anchors[0]+temp);
+      break;
+    }
+
+    case 2:{
+      Real x = 0.333806859234;
+      Real y = 0.942641491092;
+
+      geom::Vec3 i = anchors[0];
+      geom::Vec3 j = anchors[1];
+      geom::Vec3 k = anchors[2];
+
+      geom::Vec3 j_i = geom::Normalize(i-j);
+      geom::Vec3 q = geom::Normalize(geom::Cross(geom::Cross(k-j,j_i),j_i));
+
+      positions.push_back(i+x*j_i+y*q);
+      break;
+    }
+
+    case 3:{
+      Real x = 0.5;
+      Real y = 0.866025403784;
+
+      geom::Vec3 i = anchors[0];
+      geom::Vec3 j = anchors[1];
+      geom::Vec3 k = anchors[2];
+      
+      geom::Vec3 j_i = geom::Normalize(i-j);
+      geom::Vec3 q = geom::Normalize(geom::Cross(geom::Cross(k-j,j_i),j_i));
+
+      positions.push_back(i+x*j_i-y*q);
+      positions.push_back(i+x*j_i+y*q);
+      break;
+    }
+
+    case 4:{
+      Real x = 0.333313247568;
+      Real y = 0.942816142732;
+      Real z = 0.866025403784;
+
+
+      geom::Vec3 i = anchors[0];
+      geom::Vec3 j = anchors[1];
+      geom::Vec3 k = anchors[2];
+      
+      geom::Vec3 j_i = geom::Normalize(i-j);
+      geom::Vec3 q = geom::Normalize(geom::Cross(geom::Cross(k-j,j_i),j_i));
+
+      geom::Vec3 n1 = i+x*j_i+y*q;
+
+      geom::Vec3 temp = geom::Normalize(geom::Cross(j_i,n1-i));
+
+      geom::Vec3 n2 = i+x*j_i-0.5*q+z*temp;
+      geom::Vec3 n3 = i+x*j_i-0.5*q-z*temp;
+
+      positions.push_back(n1);
+      positions.push_back(n2);
+      if(number==3) positions.push_back(n3);
+      break;
+    }
+
+    case 5:{
+      geom::Vec3 i = anchors[0];
+      geom::Vec3 i_j = geom::Normalize(i-anchors[1]);
+      geom::Vec3 i_k = geom::Normalize(i-anchors[2]);
+      geom::Vec3 i_l = geom::Normalize(i-anchors[3]);
+      geom::Vec3 temp = geom::Normalize(i_j+i_k+i_l);
+      positions.push_back(i+temp);
+      break;
+    }
+
+    case 6:{
+      Real x = 0.81649043092;
+      Real y = 0.577358966516;
+
+      geom::Vec3 i = anchors[0];
+      geom::Vec3 i_j = geom::Normalize(i-anchors[1]);
+      geom::Vec3 i_k = geom::Normalize(i-anchors[2]);
+      geom::Vec3 temp_one = geom::Normalize(i_j+i_k);
+      geom::Vec3 temp_two = geom::Normalize(geom::Cross(i_j,i_k));
+      positions.push_back(i+y*temp_one+x*temp_two);
+      positions.push_back(i+y*temp_one-x*temp_two);
+      break;
+    }
+
+    case 7:{
+      //not implemented yet, do nothing
+      break;
+    }
+
+    case 8:{
+      Real x = 1.36*0.522498564716;
+      Real y = 1.36*0.852640164354;
+
+      geom::Vec3 i = anchors[0];
+      geom::Vec3 j = anchors[1];
+      geom::Vec3 k = anchors[2];
+      
+      geom::Vec3 j_i = geom::Normalize(i-j);
+      geom::Vec3 q = geom::Normalize(geom::Cross(geom::Cross(k-j,j_i),j_i));
+
+      positions.push_back(i+x*j_i-y*q);
+      positions.push_back(i+x*j_i+y*q);
+      break;
+    }
+
+    case 9:{
+      Real x1 = 1.23*0.51503807491;
+      Real x2 = 1.25*0.422618261741;
+      Real y1 = 1.23*0.857167300702;
+      Real y2 = 1.25*0.906307787037;
+
+      geom::Vec3 i = anchors[0];
+      geom::Vec3 j = anchors[1];
+      geom::Vec3 k = anchors[2];
+      
+      geom::Vec3 j_i = geom::Normalize(i-j);
+      geom::Vec3 q = geom::Normalize(geom::Cross(geom::Cross(k-j,j_i),j_i));
+
+      positions.push_back(i+x1*j_i-y1*q);
+      positions.push_back(i+x2*j_i+y2*q);
+
+      //we have to construct a third position hanging at the second one...
+
+      Real x = 0.333806859234;
+      Real y = 0.942641491092;
+
+      std::vector<geom::Vec3> new_anchors;
+      new_anchors.push_back(positions[2]);
+      new_anchors.push_back(anchors[0]);
+      new_anchors.push_back(anchors[1]);
+
+      i = new_anchors[0];
+      j = new_anchors[1];
+      k = new_anchors[2];
+
+      j_i = geom::Normalize(i-j);
+      q = geom::Normalize(geom::Cross(geom::Cross(k-j,j_i),j_i));
+
+      positions.push_back(i+x*j_i+y*q);
+      break;
+    }
+
+    case 10:{
+      //not implemented yet, do nothing
+      break;
+    }
+
+    case 11:{
+      //not implemented yet, do nothing
+      break;
+    }
+
+    default:{
+      break;
+    }
+  }
+  return positions;
+}
+
+
+void GromacsHydrogenConstructor::ApplyOnBuildingBlock(BuildingBlockPtr p){
+  //we assume, that the hydrogens are already correct in the building block...
+}
+
+void GromacsHydrogenConstructor::ApplyOnResidue(ost::mol::ResidueHandle& res, ost::mol::XCSEditor& ed){
+
+  if(!res.IsValid()) return;
+
+  int number;
+  int method;
+  String prefix;
+
+  std::vector<String> anchor_names;
+  ost::mol::AtomHandleList anchor_atoms;
+
+  std::vector<String> hydrogen_names;
+  std::vector<geom::Vec3> hydrogen_positions;
+  std::vector<geom::Vec3> anchor_positions;
+
+  for(uint a=0;a<add_number_.size();++a){
+
+    hydrogen_names = hydrogen_names_[a];
+
+    number = add_number_[a];
+    method = methods_[a];
+    anchor_names = anchor_atom_names_[a];
+
+    hydrogen_positions.clear();
+    anchor_positions.clear();
+    anchor_atoms.clear();
+
+    String atom_name;
+    ost::mol::ResidueHandle temp_res;
+    ost::mol::AtomHandle atom;
+    bool found_anchors = true;
+
+    for(std::vector<String>::iterator it = anchor_names.begin();it!=anchor_names.end();++it){
+
+      temp_res = res;
+      atom_name = *it;
+
+      if(atom_name[0] == '-'){
+        atom_name.erase(0,1);
+        temp_res = res.GetPrev();
+        if(!temp_res.IsValid()){
+          //happens in case of termini... In this case the adding definitions
+          //are taken from the termini database...
+          found_anchors = false;
+          break;
+        }
+      }
+      if(atom_name[0] == '+'){
+        atom_name.erase(0,1);
+        temp_res = res.GetNext();
+        if(!temp_res.IsValid()){
+          //happens in case of termini... In this case the adding definitions
+          //are taken from the termini database...
+          found_anchors = false;
+          break;
+        }
+      }
+
+      atom = temp_res.FindAtom(atom_name);
+      if(!atom.IsValid()){
+        std::stringstream ss;
+        ss << "cannot find required anchor atom " << atom_name << " in residue ";
+        ss << res.GetQualifiedName() << " to add hydrogen!";
+        throw ost::Error(ss.str());
+      }
+      
+      anchor_atoms.push_back(atom);
+      anchor_positions.push_back(atom.GetPos());
+    }
+    
+    if(!found_anchors){
+      continue;
+    }
+    
+    hydrogen_positions = GromacsPositionRuleEvaluator::EvaluatePosRule(method,
+                                                                       number, 
+                                                                       anchor_positions);
+
+    for(int b=0;b<number;++b){
+      //only add hydrogen if not already present!
+      atom = res.FindAtom(hydrogen_names[b]);
+      if(!atom.IsValid()) atom = ed.InsertAtom(res,hydrogen_names[b],hydrogen_positions[b],"H");
+      else ed.SetAtomPos(atom,hydrogen_positions[b]);  
+    }
+  }
+}
+
+
+void GromacsHydrogenConstructor::AddHydrogenRule(uint number, int method, 
+                                                 const std::vector<String>& hydrogen_names, 
+                                                 const std::vector<String>& anchors){
+
+  if(number != hydrogen_names.size()){
+    std::stringstream ss;
+    ss << "Tried to add hydrogen rule to hydrogen constructor with add number ";
+    ss << number << ", but "<< hydrogen_names.size() << "hydrogen names";
+  }
+
+  hydrogen_names_.push_back(hydrogen_names);
+  add_number_.push_back(number);
+  methods_.push_back(method);
+  anchor_atom_names_.push_back(anchors);
+}
+
+void GromacsBlockModifier::AddReplaceRule(const String& name, const String& new_name,
+                                               const String& new_type, Real new_charge){
+  replace_old_atom_name_.push_back(name);
+  replace_new_atom_name_.push_back(new_name);
+  replace_new_atom_type_.push_back(new_type);
+  replace_new_charge_.push_back(new_charge);
+}
+
+void GromacsBlockModifier::AddAddRule(int number, int method, 
+                                           const std::vector<String>& atom_names,
+                                           const std::vector<String>& anchors,
+                                           const String& type, Real charge){
+  add_add_number_.push_back(number);
+  add_methods_.push_back(method);
+  add_atom_names_.push_back(atom_names);
+  add_anchor_atom_names_.push_back(anchors);
+  add_atom_types_.push_back(type);
+  add_charges_.push_back(charge);
+}
+
+void GromacsBlockModifier::ApplyOnBuildingBlock(BuildingBlockPtr p){
+
+  //let's resolve the replace statement
+  for(uint i = 0; i < replace_old_atom_name_.size(); ++i){
+    p->ReplaceAtom(replace_old_atom_name_[i], replace_new_atom_name_[i],
+                   replace_new_atom_type_[i], replace_new_charge_[i]);
+
+  }
+  //let's resolve the add statement
+  for(uint i = 0; i < add_add_number_.size(); ++i){
+    String type = add_atom_types_[i];
+    Real charge = add_charges_[i];
+    std::vector<String> anchor_atoms = add_anchor_atom_names_[i];
+    std::vector<String> names = add_atom_names_[i];
+
+    //let's add the stuff to the buildingblock
+    for(std::vector<String>::iterator j = names.begin();
+        j != names.end(); ++j){
+      p->AddAtom(*j,type,charge);
+      //the bond, that connects the newly added atom to its anchor is not necessarily
+      //defined. Let's add it here. Note, that nothing happens, if this specific bond
+      //is already part of the building block.
+      InteractionPtr b_p(new Interaction(p->GetBonds()[0]->GetFuncType()));
+      std::vector<String> bond_names;
+      std::vector<String> bond_types;
+      bond_names.push_back(anchor_atoms[0]);
+      bond_names.push_back(*j);
+      bond_types.push_back(p->GetType(anchor_atoms[0]));
+      bond_types.push_back(type);
+      b_p->SetNames(bond_names);
+      b_p->SetTypes(bond_types);
+      p->AddBond(b_p);
+    }
+  }
+
+  //let's resolve the delete statement
+  for(std::vector<String>::iterator i = delete_atom_names_.begin();
+      i != delete_atom_names_.end(); ++i){
+    p->RemoveAtom(*i);
+  }
+ 
+  //we simply add the new interactions to the building block
+  for(std::vector<InteractionPtr>::iterator i = bonds_.begin();
+      i != bonds_.end(); ++i){
+    p->AddBond(*i, true);
+  }
+
+  for(std::vector<InteractionPtr>::iterator i = angles_.begin();
+      i != angles_.end(); ++i){
+    p->AddAngle(*i, true);
+  }
+
+  for(std::vector<InteractionPtr>::iterator i = dihedrals_.begin();
+      i != dihedrals_.end(); ++i){
+    p->AddDihedral(*i, true);
+  }
+
+  for(std::vector<InteractionPtr>::iterator i = impropers_.begin();
+      i != impropers_.end(); ++i){
+    p->AddImproper(*i, true);
+  }
+
+  for(std::vector<InteractionPtr>::iterator i = cmaps_.begin();
+      i != cmaps_.end(); ++i){
+    p->AddCMap(*i, true);
+  } 
+}
+
+void GromacsBlockModifier::ApplyOnResidue(ost::mol::ResidueHandle& res, ost::mol::XCSEditor& ed){
+
+  //let's resolve the replace statement
+  for(uint i = 0; i < replace_old_atom_name_.size(); ++i){
+    ost::mol::AtomHandle at = res.FindAtom(replace_old_atom_name_[i]);
+    if(at.IsValid()){
+      ed.RenameAtom(at,replace_new_atom_name_[i]);
+    }
+  }
+
+
+  //let's resolve the add statement
+  for(uint i = 0; i < add_add_number_.size(); ++i){
+    int number = add_add_number_[i];
+    int method = add_methods_[i];
+    std::vector<String> anchor_names = add_anchor_atom_names_[i];
+    //String type = add_atom_types_[i];
+    std::vector<geom::Vec3> anchor_positions;
+    ost::mol::AtomHandleList anchor_atoms;
+    std::vector<String> names = add_atom_names_[i];
+
+    for(std::vector<String>::iterator j = anchor_names.begin();
+        j != anchor_names.end(); ++j){
+      ost::mol::AtomHandle at = res.FindAtom(*j);
+      if(!at.IsValid()){
+        std::stringstream ss;
+        ss << "Cannot find anchor atom required to construct termini";
+        ss << " in provided residue!";
+        throw ost::Error(ss.str());
+      }
+      anchor_positions.push_back(at.GetPos());
+      anchor_atoms.push_back(at);
+    }
+    std::vector<geom::Vec3> positions = GromacsPositionRuleEvaluator::EvaluatePosRule(method,
+                                                                                      number,
+                                                                                      anchor_positions);
+
+    String ele = "H";
+    if(method == 8 || method == 9){
+      ele = "O";
+    }
+    for(int j=0; j<number; ++j){
+      ost::mol::AtomHandle at = res.FindAtom(names[j]);
+      if(!at.IsValid()) at = ed.InsertAtom(res,names[j],positions[j],ele);
+      else ed.SetAtomPos(at,positions[j]);
+      ed.Connect(at, anchor_atoms[0]);
+    }
+  }
+  //let's resolve the delete statement
+  for(std::vector<String>::iterator i = delete_atom_names_.begin();
+      i != delete_atom_names_.end(); ++i){
+    ost::mol::AtomHandle at = res.FindAtom(*i);
+    if(at.IsValid()){
+      ed.DeleteAtom(at);
+    }
+  }
+}
+
+
+void GromacsBlockModifier::CheckInteractionToAdd(InteractionPtr p, const String& interaction_type) const{
+  if(p->GetNames().empty()) throw ost::Error("Expect interaction to have names properly set!");
+
+  if(interaction_type == "BOND"){
+    if(p->GetFuncType() != HarmonicBond){
+      throw ost::Error("Invalid function type encountered when adding bond!");
+    } return;
+  }
+  if(interaction_type == "ANGLE"){
+    if(p->GetFuncType() != HarmonicAngle && p->GetFuncType() != UreyBradleyAngle){
+      throw ost::Error("Invalid function type encountered when adding angle!");  
+    } return;
+  }
+  if(interaction_type == "DIHEDRAL"){
+    if(p->GetFuncType() != PeriodicDihedral){       
+      throw ost::Error("Invalid function type encountered when adding dihedral!");  
+    } return;
+  }
+  if(interaction_type == "IMPROPER"){
+    if(p->GetFuncType() != PeriodicImproper && p->GetFuncType() != HarmonicImproper){       
+      throw ost::Error("Invalid function type encountered when adding improper!"); 
+    } return;
+  }
+  if(interaction_type == "CMAP"){
+    if(p->GetFuncType() != CMap){       
+      throw ost::Error("Invalid function type encountered when adding cmap!");  
+    } return;
+  }
+
+  std::stringstream ss;
+  ss << "Cannot validate added interaction of type "<< interaction_type << "!";  
+  throw ost::Error(ss.str());
+
+}
+
+}}}//ns
diff --git a/modules/mol/mm/src/gromacs_block_modifiers.hh b/modules/mol/mm/src/gromacs_block_modifiers.hh
new file mode 100644
index 0000000000000000000000000000000000000000..af8fbbdc2ade9a8d9fcaf65d286fe68e3589c068
--- /dev/null
+++ b/modules/mol/mm/src/gromacs_block_modifiers.hh
@@ -0,0 +1,328 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#ifndef OST_MM_GROMCACS_BLOCK_MODIFIERS_HH
+#define OST_MM_GROMCACS_BLOCK_MODIFIERS_HH
+
+
+#include <boost/shared_ptr.hpp>
+
+#include <ost/message.hh>
+#include <ost/mol/bond_handle.hh>
+#include <ost/mol/residue_handle.hh>
+#include <ost/mol/entity_handle.hh>
+#include <ost/mol/atom_handle.hh>
+#include <ost/mol/xcs_editor.hh>
+#include <ost/geom/vec3.hh>
+#include <ost/mol/mm/block_modifiers.hh>
+#include <ost/mol/mm/buildingblock.hh>
+
+
+namespace ost{ namespace mol{ namespace mm{
+
+class GromacsHydrogenConstructor;
+class GromacsTerminiConstructor;
+class GromacsBlockModifier;
+
+typedef boost::shared_ptr<GromacsHydrogenConstructor> GromacsHydrogenConstructorPtr;
+typedef boost::shared_ptr<GromacsTerminiConstructor> GromacsTerminiConstructorPtr;
+typedef boost::shared_ptr<GromacsBlockModifier> GromacsBlockModifierPtr; 
+
+class GromacsPositionRuleEvaluator{
+
+public:
+  static std::vector<geom::Vec3> EvaluatePosRule(int rule, int number,
+                                                 const std::vector<geom::Vec3>& anchors);
+};
+
+class GromacsHydrogenConstructor : public HydrogenConstructor{
+
+public:
+
+  GromacsHydrogenConstructor() { }
+
+  virtual void ApplyOnBuildingBlock(BuildingBlockPtr);
+
+  virtual void ApplyOnResidue(ost::mol::ResidueHandle& res, ost::mol::XCSEditor& ed);
+
+  void AddHydrogenRule(uint number, int method, 
+                       const std::vector<String>& hydrogen_names, 
+                       const std::vector<String>& anchors);
+
+  virtual void OnSave(ost::io::BinaryDataSink& ds) { ds << *this; }
+
+  virtual BlockModifierType GetBlockModifierType() { return GromacsBlockModifiers; }
+
+  template <typename DS>
+  void Serialize(DS& ds){
+    int num_hydrogen_add_rules = add_number_.size();
+    ds & num_hydrogen_add_rules;
+
+    if(ds.IsSource()){
+      add_number_ = std::vector<int>(num_hydrogen_add_rules);
+      methods_ = std::vector<int>(num_hydrogen_add_rules);
+      hydrogen_names_ = std::vector<std::vector<String> >(num_hydrogen_add_rules);
+      anchor_atom_names_ = std::vector<std::vector<String> >(num_hydrogen_add_rules);
+    }
+
+    for(int i = 0; i < num_hydrogen_add_rules; ++i){
+      ds & add_number_[i];
+      ds & methods_[i];
+      int num_hydrogen_names = hydrogen_names_[i].size();
+      int num_anchor_names = anchor_atom_names_[i].size();
+      ds & num_hydrogen_names;
+      ds & num_anchor_names;
+      if(ds.IsSource()){
+        hydrogen_names_[i] = std::vector<String>(num_hydrogen_names);
+        anchor_atom_names_[i] = std::vector<String>(num_anchor_names);
+      }
+
+      for(int j = 0; j < num_hydrogen_names; ++j){
+        ds & hydrogen_names_[i][j];
+      }
+      for(int j = 0; j < num_anchor_names; ++j){
+        ds & anchor_atom_names_[i][j];
+      }
+    }
+  }
+
+private:
+  std::vector<int> add_number_;
+  std::vector<int> methods_;
+  std::vector<std::vector<String> > hydrogen_names_;
+  std::vector<std::vector<String> > anchor_atom_names_;
+};
+
+
+class GromacsBlockModifier : public BlockModifier{
+
+public:
+
+  GromacsBlockModifier() { }
+
+  virtual void ApplyOnBuildingBlock(BuildingBlockPtr p);
+
+  virtual void ApplyOnResidue(ost::mol::ResidueHandle& res, ost::mol::XCSEditor& ed);
+
+  void AddReplaceRule(const String& name, const String& new_name,
+                                 const String& new_type, Real new_charge);
+
+  void AddAddRule(int number, int method, 
+                  const std::vector<String>& atom_names,
+                  const std::vector<String>& anchors,
+                  const String& type, Real charge);
+
+  void AddBond(InteractionPtr p) { this->CheckInteractionToAdd(p,"BOND");
+                                     bonds_.push_back(p); }
+
+  void AddAngle(InteractionPtr p) { this->CheckInteractionToAdd(p,"ANGLE");
+                                      angles_.push_back(p); }
+
+  void AddDihedral(InteractionPtr p) { this->CheckInteractionToAdd(p,"DIHEDRAL");
+                                         dihedrals_.push_back(p); }
+
+  void AddImproper(InteractionPtr p) { this->CheckInteractionToAdd(p,"IMPROPER");
+                                         impropers_.push_back(p); }
+
+  void AddCMap(InteractionPtr p) { this->CheckInteractionToAdd(p,"CMAP");
+                                     cmaps_.push_back(p); }
+
+  void AddDeleteAtom(const String& atom_name) { delete_atom_names_.push_back(atom_name); }
+
+  virtual void OnSave(ost::io::BinaryDataSink& ds) { ds << *this; }
+
+  virtual BlockModifierType GetBlockModifierType() { return GromacsBlockModifiers; }
+
+  template <typename DS>
+  void Serialize(DS& ds){
+
+    int num_bonds = bonds_.size();
+    int num_angles = angles_.size();
+    int num_dihedrals = dihedrals_.size();
+    int num_impropers = impropers_.size();
+    int num_cmaps = cmaps_.size();
+
+    ds & num_bonds;
+    ds & num_angles;
+    ds & num_dihedrals;
+    ds & num_impropers;
+    ds & num_cmaps;
+
+    for(int i = 0; i < num_bonds; ++i){
+      int func_type;
+      if(ds.IsSource()){
+        ds & func_type;
+        bonds_.push_back(InteractionPtr(new Interaction(FuncType(func_type))));
+      }
+      else{
+        func_type = bonds_[i]->GetFuncType();
+        ds & func_type;
+      }
+      ds & *(bonds_[i]);
+    }
+
+    for(int i = 0; i < num_angles; ++i){
+      int func_type;
+      if(ds.IsSource()){
+        ds & func_type;
+        angles_.push_back(InteractionPtr(new Interaction(FuncType(func_type))));
+      }
+      else{
+        func_type = angles_[i]->GetFuncType();
+        ds & func_type;
+      }
+      ds & *(angles_[i]);
+    }
+
+    for(int i = 0; i < num_dihedrals; ++i){
+      int func_type;
+      if(ds.IsSource()){
+        ds & func_type;
+        dihedrals_.push_back(InteractionPtr(new Interaction(FuncType(func_type))));
+      }
+      else{
+        func_type = dihedrals_[i]->GetFuncType();
+        ds & func_type;
+      }
+      ds & *(dihedrals_[i]);
+    }
+
+    for(int i = 0; i < num_impropers; ++i){
+      int func_type;
+      if(ds.IsSource()){
+        ds & func_type;
+        impropers_.push_back(InteractionPtr(new Interaction(FuncType(func_type))));
+      }
+      else{
+        func_type = impropers_[i]->GetFuncType();
+        ds & func_type;
+      }
+      ds & *(impropers_[i]);
+    }
+
+    for(int i = 0; i < num_cmaps; ++i){
+      int func_type;
+      if(ds.IsSource()){
+        ds & func_type;
+        cmaps_.push_back(InteractionPtr(new Interaction(FuncType(func_type))));
+      }
+      else{
+        func_type = cmaps_[i]->GetFuncType();
+        ds & func_type;
+      }
+      ds & *(cmaps_[i]);
+    }
+
+    int num_replace_atoms = replace_old_atom_name_.size();
+    ds & num_replace_atoms;
+
+    if(ds.IsSource()){
+      replace_old_atom_name_ = std::vector<String>(num_replace_atoms);
+      replace_new_atom_name_ = std::vector<String>(num_replace_atoms);
+      replace_new_atom_type_ = std::vector<String>(num_replace_atoms);
+      replace_new_charge_ = std::vector<Real>(num_replace_atoms);
+    }
+
+    for(int i = 0; i < num_replace_atoms; ++i){
+      ds & replace_old_atom_name_[i];
+      ds & replace_new_atom_name_[i];
+      ds & replace_new_atom_type_[i];
+      ds & replace_new_charge_[i];
+    }
+
+    int num_add_atoms = add_add_number_.size();
+    ds & num_add_atoms;
+
+    if(ds.IsSource()){
+      add_add_number_ = std::vector<int>(num_add_atoms);
+      add_methods_ = std::vector<int>(num_add_atoms);
+      add_atom_names_ = std::vector<std::vector<String> >(num_add_atoms);
+      add_anchor_atom_names_ = std::vector<std::vector<String> >(num_add_atoms);
+      add_atom_types_ = std::vector<String>(num_add_atoms);
+      add_charges_ = std::vector<Real>(num_add_atoms);
+    }
+
+    for(int i = 0; i < num_add_atoms; ++i){
+      ds & add_add_number_[i];
+      ds & add_methods_[i];
+      ds & add_atom_types_[i];
+      ds & add_charges_[i];
+      int num_add_atom_names = add_atom_names_[i].size();
+      int num_add_anchor_atom_names = add_anchor_atom_names_[i].size();
+      ds & num_add_atom_names;
+      ds & num_add_anchor_atom_names;
+      if(ds.IsSource()){
+        add_atom_names_[i] = std::vector<String>(num_add_atom_names);
+        add_anchor_atom_names_[i] = std::vector<String>(num_add_anchor_atom_names);
+      }
+      for(int j = 0; j < num_add_atom_names; ++j){
+        ds & add_atom_names_[i][j];
+      }
+      for(int j = 0; j < num_add_anchor_atom_names; ++j){
+        ds & add_anchor_atom_names_[i][j];
+      }
+    }
+
+    int num_delete_atoms = delete_atom_names_.size();
+    ds & num_delete_atoms;
+    if(ds.IsSource()){
+      delete_atom_names_ = std::vector<String>(num_delete_atoms);
+    }
+    for(int i = 0; i < num_delete_atoms; ++i){
+      ds & delete_atom_names_[i];
+    }
+  }
+
+private:
+
+  void CheckInteractionToAdd(InteractionPtr p, const String& interaction_type) const;
+
+  //Atoms, that will be added to the building block
+
+  //Interactions, that will be added to the building block
+  std::vector<InteractionPtr> bonds_;
+  std::vector<InteractionPtr> angles_;
+  std::vector<InteractionPtr> dihedrals_;
+  std::vector<InteractionPtr> impropers_;
+  std::vector<InteractionPtr> cmaps_;
+
+  //paramters we need for the replace statement
+  std::vector<String> replace_old_atom_name_;
+  std::vector<String> replace_new_atom_name_;
+  std::vector<String> replace_new_atom_type_;
+  std::vector<Real> replace_new_charge_;
+
+  //parameters we need for the add statement => gromacs dependent rules!
+  std::vector<int> add_add_number_;
+  std::vector<int> add_methods_;
+  std::vector<std::vector<String> > add_atom_names_;
+  std::vector<std::vector<String> > add_anchor_atom_names_;
+  std::vector<String> add_atom_types_;
+  std::vector<Real> add_charges_;
+
+  //parameters we need for the delete statement
+  std::vector<String> delete_atom_names_;
+};
+
+
+
+
+}}}
+
+#endif
diff --git a/modules/mol/mm/src/heuristic_block_modifiers.cc b/modules/mol/mm/src/heuristic_block_modifiers.cc
new file mode 100644
index 0000000000000000000000000000000000000000..09734d1dcf716d0f690f74dd7387f4fb3a20eab2
--- /dev/null
+++ b/modules/mol/mm/src/heuristic_block_modifiers.cc
@@ -0,0 +1,214 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <ost/mol/mm/heuristic_block_modifiers.hh>
+#include <ost/geom/geom.hh>
+#include <math.h>
+
+namespace ost{ namespace mol{ namespace mm{
+
+
+void HeuristicHydrogenConstructor::ApplyOnBuildingBlock(BuildingBlockPtr p){
+  //we assume, that the hydrogens are already correct in the building block...
+}
+
+HeuristicHydrogenConstructor::HeuristicHydrogenConstructor(BuildingBlockPtr block){
+  std::vector<String> atom_names = block->GetAtoms();
+  std::vector<InteractionPtr> bonds = block->GetBonds();
+
+  for(std::vector<String>::iterator aname = atom_names.begin(); 
+      aname != atom_names.end(); ++aname){
+    if((*aname)[0] == 'H') continue; //it's a hydrogen
+
+    std::vector<String> antecedent_names, hydrogen_names;
+    String aname_other;
+
+    for (std::vector<InteractionPtr>::iterator i = bonds.begin() ; 
+         i != bonds.end(); ++i){
+
+      std::vector<String> bond_names=(*i)->GetNames();
+
+      if (*aname!=bond_names[0] && *aname!=bond_names[1]) continue;//bond has nothing to do
+                                                                   //with current atom
+      if (*aname==bond_names[0]) aname_other=bond_names[1];
+      else aname_other=bond_names[0]; 
+
+      //check whether it's a hydrogen
+      if (aname_other[0] == 'H') {
+        hydrogen_names.push_back(aname_other);
+      }
+      else{
+        antecedent_names.push_back(aname_other);
+      }
+    }
+    if(!hydrogen_names.empty()){
+      if(antecedent_names.empty()){
+        std::stringstream ss;
+        ss << "Can only reconstruct hydrogens when at least one ";
+        ss << "antecedent atom is present!";
+        throw ost::Error(ss.str());
+      }
+      if(antecedent_names.size() + hydrogen_names.size() > 4){
+        std::stringstream ss;
+        ss << "Antecedent and hydrogen atoms sum up to more than four ";
+        ss << "around anchor atom "<<*aname<<". This is not possible with ";
+        ss << "the used block modifier implementation!";
+        throw ost::Error(ss.str());
+      }
+      anchor_atom_names_.push_back(*aname);
+      antecedent_names_.push_back(antecedent_names);
+      hydrogen_names_.push_back(hydrogen_names);
+    }
+  } 
+}
+
+void HeuristicHydrogenConstructor::ApplyOnResidue(ost::mol::ResidueHandle& res, ost::mol::XCSEditor& edi){
+
+  if(!res.IsValid()) return;
+
+  for(uint i = 0; i < anchor_atom_names_.size(); ++i){
+
+    ost::mol::AtomHandle anchor_atom = res.FindAtom(anchor_atom_names_[i]);
+    if(!anchor_atom.IsValid()){
+      std::stringstream ss;
+      ss << "Anchor atom of name " << anchor_atom_names_[i];
+      ss << " cannot be found in residue "<<res.GetQualifiedName()<<"!";
+      throw ost::Error(ss.str());
+    }
+
+    geom::Vec3List antecedent_positions;
+    for(std::vector<String>::iterator j = antecedent_names_[i].begin();
+        j != antecedent_names_[i].end(); ++j){
+      ost::mol::AtomHandle at = res.FindAtom(*j);
+      if(!at.IsValid()){
+        std::stringstream ss;
+        ss << "Cannot find required antecedent atom of name "<<*j;
+        ss << " in residue "<<res.GetQualifiedName()<<"!";
+        throw ost::Error(ss.str());
+      }
+      antecedent_positions.push_back(at.GetPos());
+    }
+
+    Real bond_length=1.08;
+    String ele(1,'H');
+    geom::Vec3 antecedents_cm=antecedent_positions.GetCenter();
+    geom::Vec3 pa=anchor_atom.GetPos();
+    geom::Vec3 v=geom::Normalize(pa-antecedents_cm);
+    geom::Vec3 n=geom::OrthogonalVector(v),direction=geom::Vec3(),hpos=geom::Vec3();
+    geom::Mat3 R=geom::Mat3();
+    Real bond_angle;
+    AtomHandle ha=mol::AtomHandle();
+
+    switch (hydrogen_names_[i].size()){
+      case 1:{  
+        if (antecedent_names_[i].size()==1){
+          bond_angle=0.4*M_PI;
+        }
+        else {
+          bond_angle=0.0;
+        }
+        R=geom::AxisRotation(n,bond_angle);
+        direction=R*v;
+        hpos=pa+bond_length*direction;
+        ha = res.FindAtom(hydrogen_names_[i][0]);
+        if(!ha.IsValid()) ha=edi.InsertAtom(res,hydrogen_names_[i][0],hpos,ele);
+        else edi.SetAtomPos(ha,hpos);
+        break;
+      }
+      case 2:{
+        if (antecedent_names_[i].size()==1){
+          bond_angle=M_PI/3.;
+        }
+        else {
+          bond_angle = 0.4*M_PI;
+          n=geom::Normalize(antecedent_positions[0]-antecedent_positions[1]);
+        }
+
+        R=geom::AxisRotation(n,bond_angle);
+        direction=R*v;
+        hpos=pa+bond_length*direction;
+        ha = res.FindAtom(hydrogen_names_[i][0]);
+        if(!ha.IsValid()) ha=edi.InsertAtom(res,hydrogen_names_[i][0],hpos,ele);
+        else edi.SetAtomPos(ha,hpos);
+
+        R=geom::AxisRotation(v,M_PI);
+        direction=R*direction;
+        hpos=pa+bond_length*direction;
+        ha = res.FindAtom(hydrogen_names_[i][1]);
+        if(!ha.IsValid()) ha=edi.InsertAtom(res,hydrogen_names_[i][1],hpos,ele);
+        else edi.SetAtomPos(ha,hpos);
+
+        break;
+      }
+      case 3:{
+        bond_angle=0.4*M_PI;
+
+        R=geom::AxisRotation(n,bond_angle);
+        direction=R*v;
+        hpos=pa+bond_length*direction;
+        ha = res.FindAtom(hydrogen_names_[i][0]);
+        if(!ha.IsValid()) ha=edi.InsertAtom(res,hydrogen_names_[i][0],hpos,ele);
+        else edi.SetAtomPos(ha,hpos);
+
+        R=geom::AxisRotation(v,2.*M_PI/3.);
+        direction=R*direction;
+        hpos=pa+bond_length*direction;
+        ha = res.FindAtom(hydrogen_names_[i][1]);
+        if(!ha.IsValid()) ha=edi.InsertAtom(res,hydrogen_names_[i][1],hpos,ele);
+        else edi.SetAtomPos(ha,hpos);
+
+        direction=R*direction;
+        hpos=pa+bond_length*direction;
+        ha = res.FindAtom(hydrogen_names_[i][2]);
+        if(!ha.IsValid()) ha=edi.InsertAtom(res,hydrogen_names_[i][2],hpos,ele);
+        else edi.SetAtomPos(ha,hpos);
+        break;
+      }
+    }
+  }
+}
+
+void HeuristicBlockModifier::ApplyOnBuildingBlock(BuildingBlockPtr p){
+
+}
+
+void HeuristicBlockModifier::ApplyOnResidue(ost::mol::ResidueHandle& res, ost::mol::XCSEditor& ed){
+
+}
+
+
+}}}//ns
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/modules/mol/mm/src/heuristic_block_modifiers.hh b/modules/mol/mm/src/heuristic_block_modifiers.hh
new file mode 100644
index 0000000000000000000000000000000000000000..facf818e52cf0290761cc1fd076c0f7fb62e617d
--- /dev/null
+++ b/modules/mol/mm/src/heuristic_block_modifiers.hh
@@ -0,0 +1,157 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#ifndef OST_MM_HEURISTIC_BLOCK_MODIFIERS_HH
+#define OST_MM_HEURISTIC_BLOCK_MODIFIERS_HH
+
+
+#include <boost/shared_ptr.hpp>
+
+#include <ost/message.hh>
+#include <ost/mol/bond_handle.hh>
+#include <ost/mol/residue_handle.hh>
+#include <ost/mol/entity_handle.hh>
+#include <ost/mol/atom_handle.hh>
+#include <ost/mol/xcs_editor.hh>
+#include <ost/geom/vec3.hh>
+#include <ost/mol/mm/block_modifiers.hh>
+#include <ost/mol/mm/buildingblock.hh>
+
+
+namespace ost{ namespace mol{ namespace mm{
+
+class HeuristicHydrogenConstructor;
+class HeuristicTerminiConstructor;
+class HeuristicBlockModifier;
+
+typedef boost::shared_ptr<HeuristicHydrogenConstructor> HeuristicHydrogenConstructorPtr;
+typedef boost::shared_ptr<HeuristicTerminiConstructor> HeuristicTerminiConstructorPtr;
+typedef boost::shared_ptr<HeuristicBlockModifier> HeuristicBlockModifierPtr; 
+
+
+class HeuristicHydrogenConstructor : public HydrogenConstructor{
+
+public:
+
+  HeuristicHydrogenConstructor(BuildingBlockPtr block);
+
+  virtual void ApplyOnBuildingBlock(BuildingBlockPtr);
+
+  virtual void ApplyOnResidue(ost::mol::ResidueHandle& res, ost::mol::XCSEditor& ed);
+
+  virtual void OnSave(ost::io::BinaryDataSink& ds) { ds << *this; }
+
+  virtual BlockModifierType GetBlockModifierType() { return HeuristicBlockModifiers; }
+  
+  template <typename DS>
+  
+  void Serialize(DS& ds){
+
+    if(ds.IsSource()){
+      int num_anchor_atoms = 0;
+      int num_antecendents = 0;
+      int num_hydrogens = 0;
+      String loaded_string;
+
+      ds & num_anchor_atoms;
+
+      for(int i = 0; i < num_anchor_atoms; ++i){
+        ds & num_antecendents;
+        ds & num_hydrogens;
+
+        ds & loaded_string;
+        anchor_atom_names_.push_back(loaded_string);
+
+        antecedent_names_.push_back(std::vector<String>());
+        for(int j = 0; j < num_antecendents; ++j){
+          ds & loaded_string;
+          antecedent_names_[i].push_back(loaded_string);
+        }
+
+        hydrogen_names_.push_back(std::vector<String>());
+        for(int j = 0; j < num_hydrogens; ++j){
+          ds & loaded_string;
+          hydrogen_names_[i].push_back(loaded_string);
+        }
+      }
+    }
+    else{
+      int num_anchor_atoms = anchor_atom_names_.size();
+      int num_antecendents = 0;
+      int num_hydrogens = 0;
+
+      ds & num_anchor_atoms;
+
+      for(int i = 0; i < num_anchor_atoms; ++i){
+
+        num_antecendents = antecedent_names_[i].size();
+        num_hydrogens = hydrogen_names_[i].size();
+        ds & num_antecendents;
+        ds & num_hydrogens;
+        ds & anchor_atom_names_[i];
+
+
+        for(std::vector<String>::iterator j = antecedent_names_[i].begin();
+            j != antecedent_names_[i].end(); ++j){
+          ds & *j;
+        }
+
+        for(std::vector<String>::iterator j = hydrogen_names_[i].begin();
+            j != hydrogen_names_[i].end(); ++j){
+          ds & *j;
+        }
+      }
+
+    }
+  }
+
+private:
+  std::vector<String> anchor_atom_names_;
+  std::vector<std::vector<String> > antecedent_names_;
+  std::vector<std::vector<String> > hydrogen_names_;
+};
+
+
+class HeuristicBlockModifier : public BlockModifier{
+
+public:
+
+  HeuristicBlockModifier() { }
+
+  virtual void ApplyOnBuildingBlock(BuildingBlockPtr p);
+
+  virtual void ApplyOnResidue(ost::mol::ResidueHandle& res, ost::mol::XCSEditor& ed);
+
+  virtual BlockModifierType GetBlockModifierType() { return HeuristicBlockModifiers; }
+  
+  virtual void OnSave(ost::io::BinaryDataSink& ds) { ds << *this; }
+
+  template <typename DS>
+  
+  void Serialize(DS& ds){
+    
+  }
+
+};
+
+
+
+}}}
+
+#endif
diff --git a/modules/mol/mm/src/index.hh b/modules/mol/mm/src/index.hh
new file mode 100644
index 0000000000000000000000000000000000000000..93e9d2311b48c39fc950f23f16aa68c7426172ba
--- /dev/null
+++ b/modules/mol/mm/src/index.hh
@@ -0,0 +1,241 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#ifndef OST_MM_INDEX_HH
+#define OST_MM_INDEX_HH
+
+/*
+  Author: Marco Biasini
+ */ 
+
+#include <algorithm>
+
+#include <cstring>
+
+namespace ost { namespace mol{ namespace mm{
+
+namespace impl {
+template <uint D>
+class IndexBase {
+public:
+  enum { Dimension = D };
+   IndexBase(const IndexBase& rhs) {
+    memcpy(data_, rhs.data_, sizeof(uint[D]));
+  }
+  IndexBase() {
+    memset(data_, 0, sizeof(uint[D]));
+  }
+
+  IndexBase& operator=(const IndexBase& rhs) {
+    memcpy(data_, rhs.data_, sizeof(uint[D]));
+    return *this;
+  }
+  uint operator[](uint idx) const {
+    assert(idx < D);
+    return data_[idx];
+  }
+  uint& operator[](uint idx) {
+    assert(idx < D);
+    return data_[idx];
+  } 
+  //allows index to be inserted into set
+  inline bool operator < (const IndexBase<D>& rhs) const{
+    return std::lexicographical_compare(data_, data_+D, rhs.data_, rhs.data_+D);
+  } 
+
+  inline bool operator==(const IndexBase<D>& rhs) const{
+    return std::equal(data_,data_+D,rhs.data_);
+  }
+
+  inline bool operator!=(const IndexBase<D>& rhs) const{
+    return !(*this == rhs);
+  }
+  
+private:
+  uint data_[D];   
+};
+
+} // namespace impl
+
+template <uint D>
+class Index;
+
+template <>
+class Index<1> : public impl::IndexBase<1> {
+public:
+  Index() : impl::IndexBase<1>() {}
+  Index(uint a) {
+    (*this)[0]=a;
+  }
+  template <typename DS>
+  void Serialize(DS& ds){
+    ds & (*this)[0];    
+  }
+};
+template <>
+class Index<2> : public impl::IndexBase<2> {
+public:
+  Index() : impl::IndexBase<2>() {}
+  Index(uint a, uint b) {
+    (*this)[0]=a;
+    (*this)[1]=b;    
+  }
+  template <typename DS>
+  void Serialize(DS& ds){
+    ds & (*this)[0];    
+    ds & (*this)[1];    
+  }
+};
+template <>
+class Index<3> : public impl::IndexBase<3> {
+public:
+  Index() : impl::IndexBase<3>() {}
+  Index(uint a, uint b, uint c) {
+    (*this)[0]=a;
+    (*this)[1]=b;    
+    (*this)[2]=c;        
+  }
+  template <typename DS>
+  void Serialize(DS& ds){
+    ds & (*this)[0];    
+    ds & (*this)[1];    
+    ds & (*this)[2];    
+  }
+};
+template <>
+class Index<4> : public impl::IndexBase<4> {
+public:
+  Index() : impl::IndexBase<4>() {}
+  Index(uint a, uint b, uint c, uint d) {
+    (*this)[0]=a;
+    (*this)[1]=b;    
+    (*this)[2]=c;        
+    (*this)[3]=d;            
+  }
+  template <typename DS>
+  void Serialize(DS& ds){
+    ds & (*this)[0];    
+    ds & (*this)[1];    
+    ds & (*this)[2];    
+    ds & (*this)[3];    
+  }
+};
+template <>
+class Index<5> : public impl::IndexBase<5> {
+public:
+  Index() : impl::IndexBase<5>() {}
+  Index(uint a, uint b, uint c, uint d, uint e) {
+    (*this)[0]=a;
+    (*this)[1]=b;    
+    (*this)[2]=c;        
+    (*this)[3]=d;            
+    (*this)[4]=e;                
+  }
+  template <typename DS>
+  void Serialize(DS& ds){
+    ds & (*this)[0];    
+    ds & (*this)[1];    
+    ds & (*this)[2];    
+    ds & (*this)[3];    
+    ds & (*this)[4];    
+  }
+};
+template <>
+class Index<6> : public impl::IndexBase<6> {
+public:
+  Index() : impl::IndexBase<6>() {}
+  Index(uint a, uint b, uint c, uint d, uint e, uint f) {
+    (*this)[0]=a;
+    (*this)[1]=b;    
+    (*this)[2]=c;        
+    (*this)[3]=d;            
+    (*this)[4]=e;
+    (*this)[5]=f;    
+  }
+  template <typename DS>
+  void Serialize(DS& ds){
+    ds & (*this)[0];    
+    ds & (*this)[1];    
+    ds & (*this)[2];    
+    ds & (*this)[3];    
+    ds & (*this)[4];    
+    ds & (*this)[5];    
+  }
+};
+template <>
+class Index<7> : public impl::IndexBase<7> {
+public:
+  Index() : impl::IndexBase<7>() {}
+  Index(uint a, uint b, uint c, uint d, uint e, uint f, uint g) {
+    (*this)[0]=a;
+    (*this)[1]=b;    
+    (*this)[2]=c;        
+    (*this)[3]=d;            
+    (*this)[4]=e;
+    (*this)[5]=f;    
+    (*this)[6]=g;        
+  }
+  template <typename DS>
+  void Serialize(DS& ds){
+    ds & (*this)[0];    
+    ds & (*this)[1];    
+    ds & (*this)[2];    
+    ds & (*this)[3];    
+    ds & (*this)[4];    
+    ds & (*this)[5];    
+    ds & (*this)[6];    
+  }
+};
+template<uint D>
+class IndexIterator {
+public:
+  typedef Index<D>  IndexType;
+  IndexIterator(const IndexType& s, const IndexType& e)
+    : start_(s), end_(e), current_(s) {
+    
+  }  
+  
+  IndexIterator<D>& operator++() {
+    uint current_it=0;
+    while (++current_[current_it] > end_[current_it]) {
+      current_it++;
+      if (current_it < D) {
+        current_[current_it-1] = start_[current_it-1];
+      } else {
+        break;
+      }
+    }
+    return *this;
+  }
+  const IndexType& operator *() const {
+    return current_;
+  }
+  bool AtEnd() {
+    return current_[D-1] > end_[D-1];
+  }
+private:
+  IndexType  start_;
+  IndexType  end_;
+  IndexType  current_;
+
+};
+
+}}}
+
+#endif
diff --git a/modules/mol/mm/src/interaction.cc b/modules/mol/mm/src/interaction.cc
new file mode 100644
index 0000000000000000000000000000000000000000..72f6ba8f01b54f5c33b2dd364bc204611f5b818a
--- /dev/null
+++ b/modules/mol/mm/src/interaction.cc
@@ -0,0 +1,213 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <ost/mol/mm/interaction.hh>
+
+namespace ost { namespace mol{ namespace mm{
+
+Interaction::Interaction(FuncType func_type): func_type_(func_type), 
+                                              set_parameters_(false), 
+                                              has_type_wildcard_(false),
+                                              has_name_wildcard_(false){ }
+
+
+void Interaction::SetTypes(std::vector<String> types){
+  if(!this->CheckSetNamesTypes(types)){
+    throw ost::Error("Tried to set invalid number of types to interaction!");
+  }
+  atom_types_ = types;
+  if(std::find(atom_types_.begin(),atom_types_.end(),"X") != atom_types_.end()){
+    has_type_wildcard_ = true;
+  }
+  else has_type_wildcard_ = false;
+}
+
+void Interaction::SetNames(std::vector<String> names){
+  if(!this->CheckSetNamesTypes(names)){
+    throw ost::Error("Tried to set invalid number of names to interaction!");
+  }
+  atom_names_ = names;
+  if(std::find(atom_names_.begin(),atom_names_.end(),"X") != atom_names_.end()){
+    has_name_wildcard_ = true;
+  }
+  else has_name_wildcard_ = false;
+}
+
+void Interaction::SetParam(std::vector<Real>& parameters){
+  if(!this->CheckSetParam(parameters)){
+    throw ost::Error("Tried to set invalid number of parameters to interaction!");
+  }  
+  parameters_ = parameters;
+  set_parameters_ = true;
+}
+
+ost::mol::AtomHandleList Interaction::GetAtoms(const ost::mol::ResidueHandle& res) const{
+
+  ost::mol::AtomHandleList return_list;
+  ost::mol::ResidueHandle prev = res.GetPrev();
+  ost::mol::ResidueHandle next = res.GetNext();
+  String atom_name;
+  ost::mol::AtomHandle atom;
+
+  for(std::vector<String>::const_iterator i = atom_names_.begin();
+      i != atom_names_.end(); ++i){
+    atom_name = (*i);
+    if(atom_name[0] == '+'){
+      atom_name = atom_name.substr(1);
+      if(!next.IsValid()){
+        throw ost::Error("Access to nonexistent next residue requested!");
+      }
+      atom = next.FindAtom(atom_name);
+      if(atom.IsValid()){
+        return_list.push_back(atom);
+        continue;
+      }
+      throw ost::Error("Could not find required atom "+*i+"!");
+    }
+    if(atom_name[0] == '-'){
+      atom_name = atom_name.substr(1);
+      if(!prev.IsValid()){
+        throw ost::Error("Access to nonexistent previous residue requested!");
+      }
+      atom = prev.FindAtom(atom_name);
+      if(atom.IsValid()){
+        return_list.push_back(atom);
+        continue;
+      }
+      throw ost::Error("Could not find required atom "+*i+"!");
+    }
+    atom = res.FindAtom(atom_name);
+    if(atom.IsValid()){
+      return_list.push_back(atom);
+      continue;
+    }
+    throw ost::Error("Could not find required atom "+*i+"!");
+  }
+
+  return return_list;
+}
+
+bool Interaction::MatchTypes(const std::vector<String>& atom_types) const {
+
+  if(atom_types_.size() == 0) return false;
+  if(atom_types.size() != atom_types_.size()) return false;
+
+  bool match = true;
+  bool reverse_match = true;
+
+  uint i,j;
+
+  for(i = 0, j = atom_types_.size()-1; i < atom_types_.size(); ++i,--j){
+    if((atom_types[i] != atom_types_[i]) && (atom_types_[i] != "X")) match = false;
+    if((atom_types[i] != atom_types_[j]) && (atom_types_[j] != "X")) reverse_match = false;
+  }
+
+  return match || reverse_match;
+}
+
+bool Interaction::MatchNames(const std::vector<String>& atom_names) const {
+
+  if(atom_names_.size() == 0) return false;
+  if(atom_names.size() != atom_names_.size()) return false;
+
+  bool match = true;
+  bool r_match = true;
+
+  uint i,j;
+
+  for(i = 0, j = atom_names_.size()-1; i < atom_names_.size(); ++i,--j){
+    if((atom_names[i] != atom_names_[i]) && (atom_names_[i] != "X")) match = false;
+    if((atom_names[i] != atom_names_[j]) && (atom_names_[j] != "X")) r_match = false;
+  }
+
+  return match || r_match;
+}
+
+bool Interaction::ReplaceAtom(const String& name, const String& new_name, const String& new_type){
+
+  for(uint i = 0; i < atom_names_.size(); ++i){
+    if(atom_names_[i] == name){
+      atom_names_[i] = new_name;
+      if(i < atom_types_.size()) atom_types_[i] = new_type;
+      //it could be, that wildcard stuff has changed
+      has_type_wildcard_ = std::find(atom_types_.begin(),atom_types_.end(),"X") != atom_types_.end();
+      has_name_wildcard_ = std::find(atom_names_.begin(),atom_names_.end(),"X") != atom_names_.end();
+      return true;
+    }
+  }
+  return false;
+}
+
+bool Interaction::HasName(const String& name) const{
+  return std::find(atom_names_.begin(),atom_names_.end(),name) != atom_names_.end();
+}
+
+bool Interaction::HasType(const String& type) const{
+  return std::find(atom_types_.begin(),atom_types_.end(),type) != atom_types_.end();
+}
+
+bool Interaction::CheckSetNamesTypes(std::vector<String>& types){
+
+  switch(func_type_){
+    case HarmonicBond: return types.size() == 2;
+    case HarmonicAngle: return types.size() == 3;
+    case UreyBradleyAngle: return types.size() == 3;
+    case PeriodicDihedral: return types.size() == 4;
+    case PeriodicImproper: return types.size() == 4;
+    case HarmonicImproper: return types.size() == 4;
+    case CMap: return types.size() == 5;
+    case LJ: return types.size() == 1;
+    case LJPair: return types.size() == 2;
+    case GBSA: return types.size() == 1;
+    case DistanceConstraint: return types.size() == 2;
+    case Exclusion: return types.size() == 2;
+    case HarmonicPositionRestraint: return types.size() == 1;
+    case HarmonicDistanceRestraint: return types.size() == 2;
+    default: return false;
+  }
+}
+
+bool Interaction::CheckSetParam(std::vector<Real>& param){
+
+  switch(func_type_){
+    case HarmonicBond: return param.size() == 2;
+    case HarmonicAngle: return param.size() == 2;
+    case UreyBradleyAngle: return param.size() == 4;
+    case PeriodicDihedral: return param.size() == 3;
+    case PeriodicImproper: return param.size() == 3;
+    case HarmonicImproper: return param.size() == 2;
+    case CMap:{
+      int num_param = param.size();
+      if(num_param < 1) return false;
+      int x = param[0];
+      return num_param == (x*x + 1);
+    }
+    case LJ: return param.size() == 2;
+    case LJPair: return param.size() == 2;
+    case GBSA: return param.size() == 2;
+    case DistanceConstraint: return param.size() == 1;
+    case Exclusion: return param.empty();
+    case HarmonicPositionRestraint: return param.size() == 7;
+    case HarmonicDistanceRestraint: return param.size() == 2;
+    default: return false;
+  }
+  
+}
+
+}}} //ns
\ No newline at end of file
diff --git a/modules/mol/mm/src/interaction.hh b/modules/mol/mm/src/interaction.hh
new file mode 100644
index 0000000000000000000000000000000000000000..12762e244b1c608a795ef47421960a73fee37763
--- /dev/null
+++ b/modules/mol/mm/src/interaction.hh
@@ -0,0 +1,165 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#ifndef OST_MM_INTERACTION_HH
+#define OST_MM_INTERACTION_HH
+
+#include <vector>
+#include <fstream>
+
+#include <boost/shared_ptr.hpp>
+#include <boost/filesystem.hpp>
+
+#include <ost/io/binary_data_source.hh>
+#include <ost/io/binary_data_sink.hh>
+#include <ost/io/io_exception.hh>
+#include <ost/message.hh>
+#include <ost/mol/atom_handle.hh>
+#include <ost/mol/residue_handle.hh>
+
+
+namespace ost { namespace mol{ namespace mm{
+
+class Interaction;
+typedef boost::shared_ptr<Interaction> InteractionPtr;
+
+enum FuncType{
+  Invalid,
+  HarmonicBond,
+  HarmonicAngle,
+  UreyBradleyAngle,
+  PeriodicDihedral,
+  PeriodicImproper,
+  HarmonicImproper,
+  CMap,
+  LJ,
+  LJPair,
+  GBSA,
+  DistanceConstraint,
+  Exclusion,
+  HarmonicPositionRestraint,
+  HarmonicDistanceRestraint
+};
+
+class Interaction{
+
+public:
+  Interaction(FuncType func_type);
+
+  void SetTypes(std::vector<String> types);
+
+  void SetNames(std::vector<String> names);
+
+  void SetParam(std::vector<Real>& parameters);
+
+  std::vector<String> GetTypes() const { return atom_types_; }
+
+  std::vector<String> GetNames() const { return atom_names_; }
+
+  std::vector<Real> GetParam() const { return parameters_; }
+
+  ost::mol::AtomHandleList GetAtoms(const ost::mol::ResidueHandle& res) const;
+
+  FuncType GetFuncType() const { return func_type_; }
+
+  bool ReplaceAtom(const String& name, const String& new_name, const String& new_type);
+
+  bool MatchTypes(const std::vector<String>& atom_types) const;
+
+  bool MatchNames(const std::vector<String>& atom_names) const;
+
+  bool HasName(const String& name) const;
+
+  bool HasType(const String& type) const;
+
+  bool IsParametrized() const { return set_parameters_; }
+
+  bool HasTypeWildcard() const { return has_type_wildcard_; }
+
+  bool HasNameWildcard() const { return has_name_wildcard_; }
+
+  template <typename DS>
+  void Serialize(DS& ds){
+    ds & set_parameters_;
+    ds & has_type_wildcard_;
+    ds & has_name_wildcard_;
+
+    if(ds.IsSource()){
+      int num_types = 0;
+      int num_names = 0;
+      int num_param = 0;
+      ds & num_types;
+      ds & num_names;
+      ds & num_param;
+      for(int i = 0; i < num_types; ++i){
+        String type;
+        ds & type;
+        atom_types_.push_back(type);
+      }
+      for(int i = 0; i < num_names; ++i){
+        String name;
+        ds & name;
+        atom_names_.push_back(name);
+      }
+      for(int i = 0; i < num_param; ++i){
+        Real param;
+        ds & param;
+        parameters_.push_back(param);
+      }
+    }
+    else{
+      int atom_types_size = atom_types_.size();
+      int atom_names_size = atom_names_.size();
+      int parameters_size = parameters_.size();
+      ds & atom_types_size;
+      ds & atom_names_size;
+      ds & parameters_size;
+
+      for(std::vector<String>::iterator i = atom_types_.begin();
+          i != atom_types_.end(); ++i){
+        ds & *i;
+      }
+      for(std::vector<String>::iterator i = atom_names_.begin();
+          i != atom_names_.end(); ++i){
+        ds & *i;
+      }
+      for(std::vector<Real>::iterator i = parameters_.begin();
+          i != parameters_.end(); ++i){
+        ds & *i;
+      }
+    }
+  }
+
+private:
+
+  bool CheckSetNamesTypes(std::vector<String>& types);
+  bool CheckSetParam(std::vector<Real>& param);
+
+  FuncType func_type_;
+  bool set_parameters_;
+  bool has_type_wildcard_;
+  bool has_name_wildcard_;
+  std::vector<Real> parameters_;
+  std::vector<String> atom_types_;
+  std::vector<String> atom_names_;
+};
+
+}}} //ns
+
+#endif
diff --git a/modules/mol/mm/src/modeller.cc b/modules/mol/mm/src/modeller.cc
new file mode 100644
index 0000000000000000000000000000000000000000..1a9da309452b9c0926fd3e1d27dff00dc6120f89
--- /dev/null
+++ b/modules/mol/mm/src/modeller.cc
@@ -0,0 +1,269 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <ost/mol/mm/modeller.hh>
+
+namespace{
+
+bool IsCysteine(const ost::mol::ResidueHandle& res){
+  String res_name = res.GetName();
+  if(res_name[0] == 'C'){
+    if(res_name == "CYS" || res_name == "CYX" || 
+      res_name == "CYS2" || res_name == "CYM"){
+      return true;
+    }
+  }
+  return false;
+}
+
+bool BoundToSG(const ost::mol::AtomHandle& atom){
+  ost::mol::AtomHandleList bound_atoms = atom.GetBondPartners();
+  for(ost::mol::AtomHandleList::iterator i = bound_atoms.begin();
+      i != bound_atoms.end(); ++i){
+    if(i->GetResidue() == atom.GetResidue()) continue;
+    if(i->GetName() != "SG") continue;
+    if(IsCysteine(i->GetResidue())) return true;
+  }
+  return false;
+}
+
+}
+
+
+namespace ost{ namespace mol{ namespace mm{
+
+void Modeller::GenerateDisulfidBonds(ost::mol::EntityHandle& handle){
+
+  ost::mol::ResidueHandleList res_list = handle.GetResidueList();
+  ost::mol::XCSEditor ed = handle.EditXCS();
+
+  for(ost::mol::ResidueHandleList::iterator i = res_list.begin();
+      i != res_list.end(); ++i){
+
+    if(!IsCysteine(*i)) continue;
+    ost::mol::AtomHandle s = i->FindAtom("SG");
+    if(!s.IsValid()) continue;
+    if(BoundToSG(s)) continue; //it's already connected to another sulfur
+
+    //we have now a cysteine gamma-sulfur and can look around for potential
+    //disulfid bridges...
+    ost::mol::AtomHandleList in_reach = handle.FindWithin(s.GetPos(),2.5);
+    for(ost::mol::AtomHandleList::iterator j = in_reach.begin();
+        j != in_reach.end(); ++j){
+      if(j->GetResidue() != *i && j->GetName() == "SG" &&
+         IsCysteine(j->GetResidue())){
+        //the other atom is a gamma-sulfur as well!
+        if(BoundToSG(*j)) continue; //it's already connected to another sulfur
+        if(!ost::mol::BondExists(s,*j)){
+          ed.Connect(s,*j);
+        }
+        ed.RenameResidue(*i,"CYS2");
+        ed.RenameResidue(j->GetResidue(),"CYS2");
+        break; //sg can only be bound to one other sg
+      }
+    } 
+  }
+}
+
+void Modeller::LowerPrecision(ost::mol::EntityHandle& handle){
+
+  ost::mol::AtomHandleList atom_list = handle.GetAtomList();
+  ost::mol::XCSEditor ed = handle.EditXCS(ost::mol::BUFFERED_EDIT);
+  geom::Vec3 pos;
+  geom::Vec3 truncated_pos;
+
+  for(ost::mol::AtomHandleList::iterator i = atom_list.begin();
+      i != atom_list.end(); ++i){
+    pos = i->GetPos();
+    truncated_pos[0] = Real(round(pos[0]*100))/100;
+    truncated_pos[1] = Real(round(pos[1]*100))/100;
+    truncated_pos[2] = Real(round(pos[2]*100))/100;
+    ed.SetAtomPos(*i,truncated_pos);
+  }
+  ed.UpdateICS();
+}
+
+void Modeller::AssignPDBNaming(ost::mol::EntityHandle& handle){
+
+  std::map<String,String> gromacs_to_pdb;
+  gromacs_to_pdb["ARGN"] = "ARG";
+  gromacs_to_pdb["ASPH"] = "ASP";
+  gromacs_to_pdb["CYS2"] = "CYS";
+  gromacs_to_pdb["GLUH"] = "GLU";
+  gromacs_to_pdb["HISD"] = "HIS";
+  gromacs_to_pdb["HISE"] = "HIS";
+  gromacs_to_pdb["HISH"] = "HIS";
+  gromacs_to_pdb["HIS1"] = "HIS";
+  gromacs_to_pdb["LYSN"] = "LYS";
+  gromacs_to_pdb["HEME"] = "HEM";
+
+  ost::mol::XCSEditor ed = handle.EditXCS();
+  ost::mol::ResidueHandleList res_list = handle.GetResidueList();
+  String res_name;
+  ost::mol::AtomHandle atom;
+
+  for(ost::mol::ResidueHandleList::iterator i = res_list.begin(); 
+      i != res_list.end(); ++i){
+    res_name = i->GetName();
+    if(gromacs_to_pdb.find(res_name) != gromacs_to_pdb.end()){
+      ed.RenameResidue(*i,gromacs_to_pdb[res_name]);
+    }
+    //this is nasty hardcoded stuff
+    //in case of ILE gromacs seems to define wrong standard naming
+    //we have to keep this wrong standard naming to remain consistent
+    //with the namings in the forcefields.
+    //to avoid errors in loading a pdb structure with these namings
+    //we have to hardcode a correct conversion
+    if(res_name == "ILE"){
+      atom = i->FindAtom("CD");
+      if(atom.IsValid()){
+        ed.RenameAtom(atom,"CD1");
+      }
+      atom = i->FindAtom("HD1");
+      if(atom.IsValid()){
+        ed.RenameAtom(atom,"HD11");
+      }      
+      atom = i->FindAtom("HD2");
+      if(atom.IsValid()){
+        ed.RenameAtom(atom,"HD12");
+      }
+      atom = i->FindAtom("HD3");
+      if(atom.IsValid()){
+        ed.RenameAtom(atom,"HD13");
+      }
+    }
+  }
+}
+
+void Modeller::AssignGromacsNaming(ost::mol::EntityHandle& handle){
+
+  ost::mol::XCSEditor ed = handle.EditXCS();
+
+  //Let's first rename as much as possible to the gromacs standard
+  std::map<String,String> residue_renaming;
+
+  //a proper solution should be found for that (assign proper protonation)
+  residue_renaming["HIS"] = "HISE";
+  //this is awful....
+
+
+  residue_renaming["HID"] = "HISD";
+  residue_renaming["HIE"] = "HISE";
+  residue_renaming["HSP"] = "HISH";
+  residue_renaming["LSN"] = "LYSN";
+  residue_renaming["ASPP"] = "ASPH";
+  residue_renaming["GLUP"] = "GLUH";
+  residue_renaming["HOH"] = "SOL";
+  residue_renaming["TIP3"] = "SOL";
+  residue_renaming["HOH"] = "SOL";
+  residue_renaming["HEME"] = "HEM";
+  //following stuff are required to rename the charmm names that are different,
+  //as it for example comes from CHARMM GUI
+  residue_renaming["POT"] = "K";
+  residue_renaming["CLA"] = "CL";
+  residue_renaming["SOD"] = "NA";
+  residue_renaming["CAL"] = "CA";
+  residue_renaming["CES"] = "CS";
+  residue_renaming["ZN2"] = "ZN";
+
+  ost::mol::ResidueHandleList res_list = handle.GetResidueList();
+  for(ost::mol::ResidueHandleList::iterator i = res_list.begin();
+      i != res_list.end(); ++i){
+    if(residue_renaming.find(i->GetName()) != residue_renaming.end()){
+      ed.RenameResidue(*i,residue_renaming[i->GetName()]);
+    }
+  }
+
+  //this data is taken from the gromacs xlateat.dat file
+  std::map<String, std::map<String, String> > renaming_to_standard;
+  renaming_to_standard["ILE"] = std::map<String,String>();
+  renaming_to_standard["HOH"] = std::map<String,String>();
+  renaming_to_standard["HO4"] = std::map<String,String>();
+  renaming_to_standard["HO5"] = std::map<String,String>();
+  renaming_to_standard["HEME"] = std::map<String,String>();
+  renaming_to_standard["protein"] = std::map<String,String>();
+
+  renaming_to_standard["ILE"]["CD1"] = "CD";
+  renaming_to_standard["ILE"]["HD11"] = "HD1";
+  renaming_to_standard["ILE"]["HD12"] = "HD2";
+  renaming_to_standard["ILE"]["HD13"] = "HD3";
+
+  renaming_to_standard["SOL"]["O"] = "OW";
+  renaming_to_standard["SOL"]["OW1"] = "OW";
+  renaming_to_standard["SOL"]["OH2"] = "OW"; //specific for CHARMM-GUI
+  renaming_to_standard["SOL"]["H1"] = "HW1"; //specific for CHARMM-GUI
+  renaming_to_standard["SOL"]["H2"] = "HW2"; //specific for CHARMM-GUI
+
+  renaming_to_standard["HEM"]["N_A"] = "NA";
+  renaming_to_standard["HEM"]["N_B"] = "NB";
+  renaming_to_standard["HEM"]["N_C"] = "NC";
+  renaming_to_standard["HEM"]["N_D"] = "ND";
+
+  renaming_to_standard["protein"]["O1"] = "O";
+  renaming_to_standard["protein"]["O2"] = "OXT";
+  renaming_to_standard["protein"]["OT1"] = "O";
+  renaming_to_standard["protein"]["OT2"] = "OXT";
+  renaming_to_standard["protein"]["OT"] = "OXT";
+  renaming_to_standard["protein"]["O'"] = "O";
+  renaming_to_standard["protein"]["O''"] = "OXT";
+  renaming_to_standard["protein"]["OC1"] = "O";
+  renaming_to_standard["protein"]["OC2"] = "OXT";
+  renaming_to_standard["protein"]["HN"] = "H";
+  renaming_to_standard["protein"]["HT1"] = "H1";
+  renaming_to_standard["protein"]["HT2"] = "H2";
+  renaming_to_standard["protein"]["HT3"] = "H3";
+
+  //again CHARMM specific stuff
+  renaming_to_standard["K"]["POT"] = "K";
+  renaming_to_standard["CL"]["CLA"] = "CL";
+  renaming_to_standard["NA"]["SOD"] = "NA";
+  renaming_to_standard["CA"]["CAL"] = "CA";
+  renaming_to_standard["CS"]["CES"] = "CS";
+
+
+
+  //let's apply the explicit residue names definition of aboves weird data structure
+  ost::mol::AtomHandleList renaming_atom_list;
+  String res_name;
+  for(ost::mol::ResidueHandleList::iterator i = res_list.begin();
+      i != res_list.end(); ++i){
+    res_name = i->GetName();
+    if(renaming_to_standard.find(res_name) == renaming_to_standard.end()) continue;
+    renaming_atom_list = i->GetAtomList();
+    for(ost::mol::AtomHandleList::iterator j = renaming_atom_list.begin();
+        j != renaming_atom_list.end(); ++j){
+      if(renaming_to_standard[res_name].find(j->GetName()) == renaming_to_standard[res_name].end()) continue;
+      ed.RenameAtom(*j,renaming_to_standard[res_name][j->GetName()]);
+    }
+  }
+
+  //entries with of name protein have to be applied on all peptide residues
+  for(ost::mol::ResidueHandleList::iterator i = res_list.begin();
+      i != res_list.end(); ++i){
+    if(!i->IsPeptideLinking()) continue;
+    renaming_atom_list = i->GetAtomList();
+    for(ost::mol::AtomHandleList::iterator j = renaming_atom_list.begin();
+        j != renaming_atom_list.end(); ++j){
+      if(renaming_to_standard["protein"].find(j->GetName()) == renaming_to_standard["protein"].end()) continue;
+      ed.RenameAtom(*j,renaming_to_standard["protein"][j->GetName()]);
+    }
+  }
+}
+
+}}}
diff --git a/modules/mol/mm/src/modeller.hh b/modules/mol/mm/src/modeller.hh
new file mode 100644
index 0000000000000000000000000000000000000000..2ec09e194825a93ddbd36e988477b812c3dc0d45
--- /dev/null
+++ b/modules/mol/mm/src/modeller.hh
@@ -0,0 +1,73 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#ifndef OST_MM_MODELLER_HH
+#define OST_MM_MODELLER_HH
+
+
+#include <vector>
+#include <set>
+
+#include <ost/platform.hh>
+#include <ost/io/mol/pdb_reader.hh>
+#include <ost/mol/entity_handle.hh>
+#include <ost/mol/residue_handle.hh>
+#include <ost/mol/atom_handle.hh>
+#include <ost/geom/vec3.hh>
+#include <ost/geom/composite.hh>
+#include <ost/geom/transform.hh>
+#include <ost/mol/xcs_editor.hh>
+#include <ost/mol/bond_handle.hh>
+#include <ost/message.hh>
+#include <ost/mol/bounding_box.hh>
+#include <ost/mol/mm/buildingblock.hh>
+#include <ost/mol/mm/forcefield.hh>
+#include <ost/mol/mm/settings.hh>
+#include <ost/mol/mm/index.hh>
+#include <ost/mol/mm/topology.hh>
+#include <ost/conop/heuristic.hh>
+#include <ost/mol/spatial_organizer.hh>
+
+
+namespace ost { namespace mol{ namespace mm{
+
+class Modeller{
+public:
+
+  static void GenerateDisulfidBonds(ost::mol::EntityHandle& handle);
+
+  //may sound pretty stupid...
+  //But this is necessary if we want to compare our energies with
+  //the energies calculated by gromacs. When ost writes and entity
+  //down to disk, it uses 3 digits precision.
+  //If we feed this into gromacs, it also produces a topology
+  //with three digits precision. The problem is, that gromacs
+  //uses nm, therefore the precision gets lowered tenfold.
+  //To take care of that it is necessary to lower our precision...
+  static void LowerPrecision(ost::mol::EntityHandle& handle);
+
+  static void AssignPDBNaming(ost::mol::EntityHandle& handle);
+
+  static void AssignGromacsNaming(ost::mol::EntityHandle& handle);
+};
+
+
+}}}
+
+#endif
diff --git a/modules/mol/mm/src/observer.cc b/modules/mol/mm/src/observer.cc
new file mode 100644
index 0000000000000000000000000000000000000000..0364715c42d4a3d551b99cb19bbe5b1ae891bbe3
--- /dev/null
+++ b/modules/mol/mm/src/observer.cc
@@ -0,0 +1,207 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <ost/mol/mm/observer.hh>
+#include <OpenMM.h>
+
+namespace ost { namespace mol{ namespace mm{
+
+void TrajObserver::Init(boost::shared_ptr<OpenMM::Context> c, 
+                        TopologyPtr top,
+                        ost::mol::EntityHandle& ent){
+
+  if(registered_){
+    throw ost::Error("Can register observer to only one simulation!");
+  }
+
+  registered_ = true;
+
+  context_ = c;
+  c_group_ = ost::mol::CreateCoordGroup(ent.GetAtomList());
+}
+
+void TrajObserver::Notify(){
+
+  geom::Vec3List positions;
+  StateExtractor::ExtractPositions(context_,positions,true);
+  c_group_.AddFrame(positions);
+}
+
+
+void TrajWriter::Init(boost::shared_ptr<OpenMM::Context> c, 
+                      TopologyPtr top,
+                      ost::mol::EntityHandle& ent){
+
+  if(registered_){
+    throw ost::Error("Can register observer to only one simulation!");
+  }
+
+  registered_ = true;
+
+  context_ = c;
+  ost::io::IOProfile profile("CHARMM",false,false,false,false,false);
+  ost::io::PDBWriter writer(pdb_filename_, profile);
+  writer.Write(ent.GetAtomList());
+
+  stream_.open(dcd_filename_.c_str(), std::ios::binary);
+
+  x.resize(top->GetNumParticles());
+  y.resize(top->GetNumParticles());
+  z.resize(top->GetNumParticles());
+
+
+  // size of first header block in bytes
+  int32_t magic_number=84;
+  stream_.write(reinterpret_cast<char*>(&magic_number), 4);
+
+  // magic string
+  char crd[]={'C', 'O', 'R', 'D'};
+  stream_.write(crd, 4);
+
+  // icntrl[0], NSET, number of frames
+  // we don't know the number of frames yet, will be written
+  // when the finalize function is called.
+  int32_t zero=0;
+  stream_.write(reinterpret_cast<char*>(&zero), 4);
+
+  // icntrl[1], ISTART, starting timestep
+  stream_.write(reinterpret_cast<char*>(&zero), 4);
+
+  // icntrl[2], NSAVC, timesteps between DCD saves
+  int32_t one=1;
+  stream_.write(reinterpret_cast<char*>(&one), 4);
+
+  // icntrl[3] to icntrl[7], unused
+  for (int i=3; i<=7; ++i) {
+    stream_.write(reinterpret_cast<char*>(&zero), 4);
+  }
+
+  // icntrl[8], NAMNF, number of fixed atoms
+  stream_.write(reinterpret_cast<char*>(&zero), 4);
+
+  // icntrl[9], DELTA, timestep as float for CHARMM format
+  float delta=1.0;
+  stream_.write(reinterpret_cast<char*>(&delta), 4);
+
+  // icntrl[10], CHARMM format: ucell per frame
+  stream_.write(reinterpret_cast<char*>(&one), 4);
+
+  // icntrl[11] to icntrl[18], unused
+  for (int i=11; i<=18; ++i) {
+    stream_.write(reinterpret_cast<char*>(&zero), 4);
+  }
+
+  // icntrl[19], charmm version
+  int32_t charmm_version=24;
+  stream_.write(reinterpret_cast<char*>(&charmm_version), 4);
+  // bracket first header block
+  stream_.write(reinterpret_cast<char*>(&magic_number), 4);
+
+  //  no titles in title block
+  int32_t four=4;
+  stream_.write(reinterpret_cast<char*>(&four), 4);
+  stream_.write(reinterpret_cast<char*>(&zero), 4);
+  stream_.write(reinterpret_cast<char*>(&four), 4);
+
+  // atom count block
+  stream_.write(reinterpret_cast<char*>(&four), 4);
+  int32_t atom_count=top->GetNumParticles();  
+  stream_.write(reinterpret_cast<char*>(&atom_count), 4);
+  stream_.write(reinterpret_cast<char*>(&four), 4);
+}
+
+void TrajWriter::Notify(){
+
+  if(!registered_){
+    throw ost::Error("Trajectory writer is not registered to any simulation!");
+  }
+
+  if(!stream_){
+    throw ost::Error("Trajectory writer does not contain open filestream. Did you already call the finalize funciton before?");
+  }
+
+  geom::Vec3List positions;
+  StateExtractor::ExtractPositions(context_,positions,true,true);
+  OpenMM::State openmm_state = context_->getState(0); //create minimal state
+                                                      //to only extract periodic
+                                                      //box information
+  OpenMM::Vec3 ucell_a,ucell_b,ucell_c;
+
+  openmm_state.getPeriodicBoxVectors(ucell_a,ucell_b,ucell_c);
+
+  int32_t out_n=positions.size()*4;
+
+  // ucell
+  int32_t bsize=48; // ucell block size, 6 doubles
+
+  double a_length = 10 * sqrt(ucell_a.dot(ucell_a)); //directly transform
+  double b_length = 10 * sqrt(ucell_b.dot(ucell_b)); //stuff to Angstrom
+  double c_length = 10 * sqrt(ucell_c.dot(ucell_c));
+
+  //note, that following angles have a compatibility issue
+  //CHARMM seems to write out the cosines of the actual 
+  //unit cell angles, while NAMD seems to write the angles itself...
+  //we stick with the CHARMM way of doing things
+
+  double alpha = ucell_b.dot(ucell_c)/(b_length*c_length);
+  double beta = ucell_c.dot(ucell_a)/(c_length*a_length);
+  double gamma = ucell_a.dot(ucell_b)/(a_length*b_length);
+
+  double ucell[]={a_length, alpha, b_length,
+                  beta, gamma, c_length};
+
+  stream_.write(reinterpret_cast<char*>(&bsize),4);
+  stream_.write(reinterpret_cast<char*>(ucell),bsize);
+  stream_.write(reinterpret_cast<char*>(&bsize),4);
+
+  int k=0;
+  for (geom::Vec3List::iterator i=positions.begin(); 
+       i!=positions.end(); ++i, ++k) {
+    x[k]=float((*i)[0]);
+    y[k]=float((*i)[1]);
+    z[k]=float((*i)[2]);
+  }
+  stream_.write(reinterpret_cast<char*>(&out_n), 4);
+  stream_.write(reinterpret_cast<char*>(&x[0]), out_n);
+  stream_.write(reinterpret_cast<char*>(&out_n), 4);
+  stream_.write(reinterpret_cast<char*>(&out_n), 4);
+  stream_.write(reinterpret_cast<char*>(&y[0]), out_n);
+  stream_.write(reinterpret_cast<char*>(&out_n), 4);
+  stream_.write(reinterpret_cast<char*>(&out_n), 4);
+  stream_.write(reinterpret_cast<char*>(&z[0]), out_n);
+  stream_.write(reinterpret_cast<char*>(&out_n), 4);
+
+  ++frames_;
+
+  stream_.seekp(8,std::ios_base::beg);
+  stream_.write(reinterpret_cast<char*>(&frames_),4);
+  stream_.seekp(0,std::ios_base::end);
+}
+
+void TrajWriter::Finalize(){
+  if(!registered_){
+    throw ost::Error("Trajectory writer is not registered to any simulation!");
+  }
+  if(!stream_){
+    throw ost::Error("Trajectory writer does not contain open filestream. Did you already call the finalize function before?");
+  }
+  stream_.close();
+}
+
+}}}// ns
diff --git a/modules/mol/mm/src/observer.hh b/modules/mol/mm/src/observer.hh
new file mode 100644
index 0000000000000000000000000000000000000000..d36229a9c4ef07177ca78c0d1787db1e0c3db899
--- /dev/null
+++ b/modules/mol/mm/src/observer.hh
@@ -0,0 +1,132 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#ifndef OST_MM_OBSERVER_HH
+#define OST_MM_OBSERVER_HH
+
+
+#include <boost/shared_ptr.hpp>
+
+#include <ost/io/mol/io_profile.hh>
+#include <ost/io/mol/pdb_writer.hh>
+#include <ost/mol/entity_handle.hh>
+#include <ost/mol/coord_frame.hh>
+#include <ost/mol/coord_group.hh>
+#include <ost/mol/mm/state_extractor.hh>
+#include <ost/mol/mm/topology.hh>
+#include <ost/mol/mm/modeller.hh>
+
+namespace OpenMM{
+  class Context; //hacky way of telling the Context is around.
+                 //will be included in source file to avoid
+                 //dependencies on external libraries
+}
+
+namespace ost { namespace mol{ namespace mm{
+
+class Observer;
+class TrajObserver;
+class TrajWriter;
+typedef boost::shared_ptr<Observer> ObserverPtr;
+typedef boost::shared_ptr<TrajObserver> TrajObserverPtr;
+typedef boost::shared_ptr<TrajWriter> TrajWriterPtr;
+
+
+class Observer{
+public:
+
+  virtual void Notify() = 0;
+
+  virtual void Init(boost::shared_ptr<OpenMM::Context> c,
+                    TopologyPtr top,
+                    ost::mol::EntityHandle& ent) = 0;
+
+  virtual int Rhythm() = 0;
+
+};
+
+
+class TrajObserver : public Observer{
+
+public:  
+
+  TrajObserver(int rhythm): rhythm_(rhythm), registered_(false) { }
+
+  void Init(boost::shared_ptr<OpenMM::Context> c, 
+            TopologyPtr top,
+            ost::mol::EntityHandle& ent);
+
+  void Notify();
+
+  int Rhythm() { return rhythm_; }
+
+  CoordGroupHandle GetTraj() { return c_group_; }
+
+private:
+
+  ost::mol::CoordGroupHandle c_group_;
+  boost::shared_ptr<OpenMM::Context> context_;
+  int rhythm_;
+  bool registered_;
+};
+
+class TrajWriter : public Observer{
+
+//Note, that this code is highly redundant to the code in io/mol/dcd_io.hh!!!
+
+public:
+
+  TrajWriter(int rhythm, const String& pdb_filename, const String& dcd_filename): rhythm_(rhythm),
+                                                                                  pdb_filename_(pdb_filename),
+                                                                                  dcd_filename_(dcd_filename),
+                                                                                  stream_(),
+                                                                                  registered_(false),
+                                                                                  frames_(0) { }
+
+  void Init(boost::shared_ptr<OpenMM::Context> c, 
+            TopologyPtr top,
+            ost::mol::EntityHandle& ent);
+
+  void Notify();
+
+  int Rhythm() { return rhythm_; }
+
+  void Finalize();
+
+private:
+
+  TrajWriter(const TrajWriter& writer) { } //output filestream is unique!
+
+
+  boost::shared_ptr<OpenMM::Context> context_;
+  int rhythm_;
+  String pdb_filename_;
+  String dcd_filename_;
+  std::ofstream stream_;
+  bool registered_;
+  uint32_t frames_;
+  std::vector<float> x;
+  std::vector<float> y;
+  std::vector<float> z;
+};
+
+
+}}}//ns
+
+#endif
diff --git a/modules/mol/mm/src/settings.hh.in b/modules/mol/mm/src/settings.hh.in
new file mode 100644
index 0000000000000000000000000000000000000000..b3f5511a1d65f35e3f54bd8f4559549f3fdda4ba
--- /dev/null
+++ b/modules/mol/mm/src/settings.hh.in
@@ -0,0 +1,197 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#ifndef OST_MM_SETTINGS_HH
+#define OST_MM_SETTINGS_HH
+
+/*
+  DO NOT EDIT, automatically generated by @config_hh_generator@
+*/
+
+#include <vector>
+
+#include <boost/shared_ptr.hpp>
+#include <limits>
+#include <ost/mol/residue_handle.hh>
+#include <ost/mol/mm/forcefield.hh>
+
+namespace OpenMM{
+  class Integrator;//hacky way of telling the Integrator us around
+                   //will be included in source file to avoid
+                   //dependencies on external libraries
+}
+
+namespace ost { namespace mol{ namespace mm{
+
+struct Settings;
+class TerminiExceptions;
+typedef boost::shared_ptr<Settings> SettingsPtr;
+typedef boost::shared_ptr<TerminiExceptions> TerminiExceptionsPtr;
+
+enum Platform{
+  Reference,
+  OpenCL,
+  CUDA,
+  CPU
+};
+
+enum NonbondedMethod{
+  NoCutoff,
+  CutoffNonPeriodic,
+  CutoffPeriodic,
+  Ewald,
+  PME
+};
+
+class TerminiExceptions{
+
+public:
+
+  TerminiExceptions(){ }
+
+  void SetException(const ost::mol::ResidueHandle& res, const String& exception_name){
+    exceptions_[res.GetHashCode()] =  exception_name;
+  }
+
+  bool HasException(const ost::mol::ResidueHandle& res) const{
+    return exceptions_.find(res.GetHashCode()) != exceptions_.end();
+  }
+
+  String GetException(const ost::mol::ResidueHandle& res) const {
+    if(!this->HasException(res)){
+      std::stringstream ss;
+      ss<<"Tried to get termini exceptions of res "<<res<<" without defined exception!";
+      throw ost::Error(ss.str());
+    }
+    std::map<unsigned long, String>::const_iterator i = exceptions_.find(res.GetHashCode());
+    return i->second;
+  }
+private:
+  std::map<unsigned long, String> exceptions_;
+
+};
+
+typedef std::map<String,String> PropertyMap;
+
+struct Settings{
+
+  Settings(): add_bonds(true),
+                add_angles(true),
+                add_dihedrals(true),
+                add_impropers(true),
+                add_cmaps(true),
+                add_exclusions(true),
+                add_nonbonded(true),
+                add_gbsa(false),
+                constrain_hbonds(false),
+                constrain_bonds(false),
+                rigid_water(false),
+                strict_interactions(true),
+                ideal_bond_length_constraints(true),
+                fix_heavy_atoms(false),
+                kill_electrostatics(false),
+                generate_disulfid_bonds(true),
+                nonbonded_method(NoCutoff),
+                nonbonded_cutoff(10.0),
+                remove_cmm_motion(true),
+                cmm_frequency(1),
+                periodic_box_extents(0,0,0),
+                init_temperature(0.0),
+                forcefield(), //note, that we don't create an empty forcefield at this point =>force the user
+                              //to assign a forcefield
+                termini_exceptions(new TerminiExceptions),
+                platform(Reference),
+                reference_properties(),
+                cpu_properties(),
+                opencl_properties(),
+                cuda_properties(),
+                add_thermostat(false),
+                thermostat_temperature(std::numeric_limits<Real>::quiet_NaN()),
+                thermostat_collision_frequency(std::numeric_limits<Real>::quiet_NaN()),
+                add_barostat(false),
+                barostat_temperature(std::numeric_limits<Real>::quiet_NaN()),
+                barostat_pressure(std::numeric_limits<Real>::quiet_NaN()),
+                barostat_frequency(25),
+                integrator(),
+                solvent_dielectric(78.3), //this is for GBSA
+                solute_dielectric(1.0), //this is for GBSA
+                reaction_field_dielectric(78.3),
+                use_dispersion_correction(true),
+                keep_ff_specific_naming(true),
+                openmm_plugin_directory("@OPEN_MM_PLUGIN_DIR@"),
+                custom_plugin_directory("@OPEN_MM_PLUGIN_DIR@")
+
+                  {   }
+
+  //
+  bool add_bonds;
+  bool add_angles;
+  bool add_dihedrals;
+  bool add_impropers;
+  bool add_cmaps;
+  bool add_exclusions;
+  bool add_nonbonded;
+  bool add_gbsa;
+  bool constrain_hbonds;
+  bool constrain_bonds;
+  bool rigid_water;
+  bool strict_interactions;
+  bool ideal_bond_length_constraints;
+  bool fix_heavy_atoms;
+  //set all charges to zero
+  bool kill_electrostatics;
+  //automatically generate disulfid bonds
+  bool generate_disulfid_bonds;
+  //see export_openmm.cc for all possibilities
+  NonbondedMethod nonbonded_method;
+  Real nonbonded_cutoff;
+  bool remove_cmm_motion;
+  int cmm_frequency;
+  //currently only boxes defined by base vectors are supported 
+  geom::Vec3 periodic_box_extents;
+  //at the beginning of the simulation, the initial velociities are
+  //randomly set according to a boltzmann distribution
+  Real init_temperature;
+  ForcefieldPtr forcefield;
+  TerminiExceptionsPtr termini_exceptions;
+  Platform platform;
+  PropertyMap reference_properties;
+  PropertyMap cpu_properties;
+  PropertyMap opencl_properties;
+  PropertyMap cuda_properties;
+  bool add_thermostat;
+  Real thermostat_temperature;
+  Real thermostat_collision_frequency;
+  bool add_barostat;
+  Real barostat_temperature;
+  Real barostat_pressure;
+  int barostat_frequency;
+  boost::shared_ptr<OpenMM::Integrator> integrator;
+  Real solvent_dielectric;
+  Real solute_dielectric;
+  Real reaction_field_dielectric;
+  bool use_dispersion_correction;
+  bool keep_ff_specific_naming;
+  String openmm_plugin_directory;
+  String custom_plugin_directory;
+};
+
+}}} //namespace
+
+#endif
diff --git a/modules/mol/mm/src/simulation.cc b/modules/mol/mm/src/simulation.cc
new file mode 100644
index 0000000000000000000000000000000000000000..830b9bd5b6a1b14f92fdaf99248c95c279158dbb
--- /dev/null
+++ b/modules/mol/mm/src/simulation.cc
@@ -0,0 +1,870 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <ost/mol/mm/simulation.hh>
+#include <OpenMM.h>
+
+namespace ost{ namespace mol{ namespace mm{
+
+Simulation::Simulation(const ost::mol::EntityHandle& handle, 
+                       const SettingsPtr settings){
+
+  //note, that ent_ will be "completed" inside this function!
+  //(hydrogens and shit)
+
+  ent_ = handle.Copy();
+  TopologyPtr top = TopologyCreator::Create(ent_,settings);
+  this->Init(top, settings);
+}
+
+Simulation::Simulation(const TopologyPtr top,
+                       const ost::mol::EntityHandle& handle,
+                       const SettingsPtr settings){
+
+  if(static_cast<uint>(handle.GetAtomCount()) != top->GetNumParticles()){
+    throw ost::Error("Number of atoms in entity must be consistent with number of particles in topology!");
+  }
+  ent_ = handle.Copy();
+  this->Init(top, settings);
+}
+
+void Simulation::Save(const String& filename){
+  std::ofstream stream(filename.c_str(), std::ios_base::binary);
+  io::BinaryDataSink ds(stream);
+  ds << *top_;
+  geom::Vec3List positions = this->GetPositions(false,false);
+  for(geom::Vec3List::iterator i = positions.begin(); 
+      i != positions.end(); ++i){
+    ds & (*i)[0];
+    ds & (*i)[1];
+    ds & (*i)[2];
+  }
+
+  uint num_chains;
+  uint num_residues;
+  uint num_atoms;
+  uint num_bonded_atoms;
+  Real bfac;
+  Real occ;
+  bool is_hetatm;
+  String chain_name;
+  String res_name;
+  int resnum_num;
+  char resnum_code;
+  String atom_name;
+  String atom_element;
+  uint atom_index;
+
+  num_chains = ent_.GetChainCount();
+  ds & num_chains;
+  ost::mol::ChainHandleList chain_list = ent_.GetChainList();
+  for(ost::mol::ChainHandleList::iterator i = chain_list.begin();
+      i != chain_list.end(); ++i){
+    chain_name = i->GetName();
+    num_residues = i->GetResidueCount();
+    ds & chain_name;
+    ds & num_residues;
+    ost::mol::ResidueHandleList res_list = i->GetResidueList();
+    for(ost::mol::ResidueHandleList::iterator j = res_list.begin();
+        j != res_list.end(); ++j){
+      res_name = j->GetKey();
+      resnum_num = j->GetNumber().GetNum();
+      resnum_code = j->GetNumber().GetInsCode(); 
+      num_atoms = j->GetAtomCount();
+      ds & res_name;
+      ds & resnum_num;
+      ds & resnum_code;
+      ds & num_atoms;
+      ost::mol::AtomHandleList atom_list = j->GetAtomList();
+      for(ost::mol::AtomHandleList::iterator k = atom_list.begin();
+          k != atom_list.end(); ++k){
+        atom_name = k->GetName();
+        atom_element = k->GetElement();
+        geom::Vec3 pos = k->GetPos();
+        bfac = k->GetBFactor();
+        occ = k->GetOccupancy();
+        is_hetatm = k->IsHetAtom();
+        ds & atom_name;
+        ds & atom_element;
+        ds & pos[0];
+        ds & pos[1];
+        ds & pos[2];
+        ds & bfac;
+        ds & occ;
+        ds & is_hetatm;
+      }
+    }
+  }
+
+  ost::mol::AtomHandleList atom_list = ent_.GetAtomList();
+  ost::mol::AtomHandleList bonded_atoms;
+
+  std::map<long,int> atom_indices;
+  int actual_index = 0;
+  for(ost::mol::AtomHandleList::const_iterator i = atom_list.begin(), e = atom_list.end(); 
+      i != e; ++i){
+    atom_indices[i->GetHashCode()] = actual_index;
+    ++actual_index;
+  }
+
+  for(ost::mol::AtomHandleList::iterator i = atom_list.begin();
+      i != atom_list.end(); ++i){
+    bonded_atoms = i->GetBondPartners();
+    num_bonded_atoms = bonded_atoms.size();
+    ds & num_bonded_atoms;
+    for(ost::mol::AtomHandleList::iterator j = bonded_atoms.begin();
+        j != bonded_atoms.end(); ++j){
+      atom_index = atom_indices[j->GetHashCode()];
+      ds & atom_index;
+    }
+  }
+
+  context_->createCheckpoint(stream);  
+}
+
+SimulationPtr Simulation::Load(const String& filename, SettingsPtr settings){
+  if (!boost::filesystem::exists(filename)) {
+    std::stringstream ss;
+    ss << "Could not open simulation File '"
+       << filename << "' does not exist";
+    throw ost::io::IOException(ss.str());
+  }
+
+  SimulationPtr sim_ptr(new Simulation);
+
+  std::ifstream stream(filename.c_str(), std::ios_base::binary);
+  io::BinaryDataSource ds(stream);
+  TopologyPtr top_p(new Topology);
+  ds >> *top_p;
+
+  sim_ptr->top_ = top_p;
+
+  sim_ptr->system_ = SystemCreator::Create(sim_ptr->top_,settings,
+                                       sim_ptr->system_force_mapper_);
+
+  sim_ptr->integrator_ = settings->integrator;
+
+  OpenMM::Platform::loadPluginsFromDirectory (settings->openmm_plugin_directory);
+  OpenMM::Platform* platform;
+
+  switch(settings->platform){
+    case Reference:{
+      platform = &OpenMM::Platform::getPlatformByName("Reference");
+      break;
+    }
+    case OpenCL:{
+      platform = &OpenMM::Platform::getPlatformByName("OpenCL");
+      break;
+    }
+    case CUDA:{
+      platform = &OpenMM::Platform::getPlatformByName("CUDA");
+      break;
+    }
+    case CPU:{
+      platform = &OpenMM::Platform::getPlatformByName("CPU");
+      break;
+    }
+    default:{
+      throw ost::Error("Invalid Platform when Loading simulation!");
+    }
+  }
+
+  sim_ptr->context_ = ContextPtr(new OpenMM::Context(*(sim_ptr->system_),
+                                                     *(sim_ptr->integrator_),
+                                                     *platform));
+
+  std::vector<OpenMM::Vec3> positions;
+  OpenMM::Vec3 open_mm_vec;
+  Real a,b,c;
+  for(int i = 0; i < sim_ptr->system_->getNumParticles(); ++i){
+    ds & a;
+    ds & b;
+    ds & c;
+    open_mm_vec[0] = a;
+    open_mm_vec[1] = b;
+    open_mm_vec[2] = c;
+    positions.push_back(open_mm_vec);
+  }
+  sim_ptr->context_->setPositions(positions);
+
+  uint num_chains;
+  uint num_residues;
+  uint num_atoms;
+  uint num_bonded_atoms;
+  Real x_pos;
+  Real y_pos;
+  Real z_pos;
+  Real bfac;
+  Real occ;
+  bool is_hetatm;
+  String chain_name;
+  String res_name;
+  int resnum_num;
+  char resnum_code;
+  String atom_name;
+  String atom_element;
+  uint atom_index;
+
+  ost::mol::EntityHandle ent = ost::mol::CreateEntity();
+  ost::mol::XCSEditor ed = ent.EditXCS();
+  ds & num_chains;
+  for(uint i = 0; i < num_chains; ++i){
+    ds & chain_name;
+    ds & num_residues;
+    ost::mol::ChainHandle chain = ed.InsertChain(chain_name);
+    for(uint j = 0; j < num_residues; ++j){
+      ds & res_name;
+      ds & resnum_num;
+      ds & resnum_code;
+      ds & num_atoms;
+      ost::mol::ResNum num(resnum_num,resnum_code);
+      ost::mol::ResidueHandle res = ed.AppendResidue(chain,res_name,num);
+      for(uint k = 0; k < num_atoms; ++k){
+        ds & atom_name;
+        ds & atom_element;
+        ds & x_pos;
+        ds & y_pos;
+        ds & z_pos;
+        ds & bfac;
+        ds & occ;
+        ds & is_hetatm;
+        geom::Vec3 pos(x_pos,y_pos,z_pos);
+        ed.InsertAtom(res,atom_name,pos,atom_element,occ,bfac,is_hetatm);
+      }
+    }
+  }
+  ost::mol::AtomHandleList atom_list = ent.GetAtomList();
+  for(uint i = 0; i < atom_list.size(); ++i){
+    ds & num_bonded_atoms;
+    for(uint j = 0; j < num_bonded_atoms; ++j){
+      ds & atom_index;
+      ed.Connect(atom_list[i],atom_list[atom_index]);
+    }
+  }
+
+  sim_ptr->ent_ = ent;
+
+  sim_ptr->context_->loadCheckpoint(stream);
+
+  return sim_ptr;
+}
+
+
+
+void Simulation::Init(const TopologyPtr top,
+                      const SettingsPtr settings){
+
+
+  top_ = top;
+
+  if(!settings->integrator){
+    //user did not specify an integrator, so let's just use a standard integrator
+    settings->integrator = IntegratorPtr(new OpenMM::VerletIntegrator(0.001));
+  }
+  integrator_ = settings->integrator;
+
+  system_ = SystemCreator::Create(top_,settings,system_force_mapper_); 
+
+  //setting up the context, which combines the system with an integrator
+  //to proceed in time, but first we have to load the proper platform
+
+  OpenMM::Platform::loadPluginsFromDirectory (settings->openmm_plugin_directory);
+  OpenMM::Platform* platform;
+  std::map<String,String> context_properties;
+
+  switch(settings->platform){
+    case Reference:{
+      platform = &OpenMM::Platform::getPlatformByName("Reference");
+      for(PropertyMap::iterator i = settings->reference_properties.begin();
+          i != settings->reference_properties.end(); ++i){
+        context_properties[i->first] = i->second;
+      }
+      break;
+    }
+    case OpenCL:{
+      platform = &OpenMM::Platform::getPlatformByName("OpenCL");
+      for(PropertyMap::iterator i = settings->opencl_properties.begin();
+          i != settings->opencl_properties.end(); ++i){
+        context_properties[i->first] = i->second;
+      }
+      break;
+    }
+    case CUDA:{
+      platform = &OpenMM::Platform::getPlatformByName("CUDA");
+      for(PropertyMap::iterator i = settings->cuda_properties.begin();
+          i != settings->cuda_properties.end(); ++i){
+        context_properties[i->first] = i->second;
+      }
+      break;
+    }
+    case CPU:{
+      platform = &OpenMM::Platform::getPlatformByName("CPU");
+      for(PropertyMap::iterator i = settings->cpu_properties.begin();
+          i != settings->cpu_properties.end(); ++i){
+        context_properties[i->first] = i->second;
+      }
+      break;
+    }
+    default:{
+      throw ost::Error("Invalid platform encountered when settings up simualation!");
+    }
+  }
+
+  context_ = ContextPtr(new OpenMM::Context(*system_,*integrator_,*platform,context_properties));
+
+  ost::mol::AtomHandleList atom_list = ent_.GetAtomList();
+  std::vector<OpenMM::Vec3> positions;
+  geom::Vec3 ost_vec;
+  OpenMM::Vec3 open_mm_vec;
+  for(ost::mol::AtomHandleList::iterator i = atom_list.begin();
+      i!=atom_list.end();++i){
+    ost_vec = i->GetPos();
+    open_mm_vec[0] = ost_vec[0]/10;
+    open_mm_vec[1] = ost_vec[1]/10;
+    open_mm_vec[2] = ost_vec[2]/10;
+    positions.push_back(open_mm_vec);
+  }
+
+  context_->setPositions(positions);
+
+  //make sure the context satisfies the distance constraints
+  context_->applyConstraints(0.00001);
+
+  if(settings->init_temperature > 0.0){
+    context_->setVelocitiesToTemperature(settings->init_temperature);
+  }
+}
+
+geom::Vec3List Simulation::GetPositions(bool enforce_periodic_box, bool in_angstrom){
+  geom::Vec3List return_vec;
+  StateExtractor::ExtractPositions(context_,return_vec, enforce_periodic_box, in_angstrom);
+  return return_vec;
+}
+
+geom::Vec3List Simulation::GetVelocities(){
+  geom::Vec3List return_vec;
+  StateExtractor::ExtractVelocities(context_, return_vec);
+  return return_vec;
+}
+
+geom::Vec3List Simulation::GetForces(){
+  geom::Vec3List return_vec;
+  StateExtractor::ExtractForces(context_, return_vec);
+  return return_vec;
+}
+
+void Simulation::SetPositions(const geom::Vec3List& positions, bool in_angstrom){
+  if(top_->GetNumParticles() != positions.size()){
+    throw ost::Error("Number of positions does not correspond to number of particles in topology!");
+  }
+  std::vector<OpenMM::Vec3> openmm_positions(top_->GetNumParticles());
+  OpenMM::Vec3* actual_pos = &openmm_positions[0];
+  if(in_angstrom){
+    for(geom::Vec3List::const_iterator i = positions.begin();
+        i != positions.end(); ++i){
+      (*actual_pos)[0] = (*i)[0]*0.1;
+      (*actual_pos)[1] = (*i)[1]*0.1;
+      (*actual_pos)[2] = (*i)[2]*0.1;
+      ++actual_pos;
+    }
+  }
+  else{
+    for(geom::Vec3List::const_iterator i = positions.begin();
+        i != positions.end(); ++i){
+      (*actual_pos)[0] = (*i)[0];
+      (*actual_pos)[1] = (*i)[1];
+      (*actual_pos)[2] = (*i)[2];
+      ++actual_pos;
+    }
+  }
+  context_->setPositions(openmm_positions);
+}
+
+void Simulation::SetVelocities(geom::Vec3List& velocities){
+  if(top_->GetNumParticles() != velocities.size()){
+    throw ost::Error("Number of velocities does not correspond to number of particles in topology!");
+  }
+  std::vector<OpenMM::Vec3> openmm_velocities(top_->GetNumParticles());
+  OpenMM::Vec3* actual_vel = &openmm_velocities[0];
+  for(geom::Vec3List::iterator i = velocities.begin();
+      i != velocities.end(); ++i){
+    (*actual_vel)[0] = (*i)[0];
+    (*actual_vel)[1] = (*i)[1];
+    (*actual_vel)[2] = (*i)[2];
+    ++actual_vel;
+  }
+  context_->setVelocities(openmm_velocities);
+}
+
+void Simulation::UpdatePositions(bool enforce_periodic_box){
+  if(top_->GetNumParticles() != static_cast<uint>(ent_.GetAtomCount())){
+    throw ost::Error("Num particles in topology and num atoms in entity are not consistent!");
+  }
+  geom::Vec3List positions = this->GetPositions(enforce_periodic_box, true);
+  ost::mol::XCSEditor ed = ent_.EditXCS(ost::mol::BUFFERED_EDIT);
+  ost::mol::AtomHandleList atom_list = ent_.GetAtomList();
+  ost::mol::AtomHandleList::iterator a = atom_list.begin();
+  ost::mol::AtomHandleList::iterator ae = atom_list.end();
+  geom::Vec3List::iterator v = positions.begin();
+  for(; a != ae; ++a, ++v){
+    ed.SetAtomPos(*a,*v);
+  }
+}
+
+bool Simulation::ApplySD(Real tolerance, int max_iterations){
+  return Steep::Minimize(*context_,tolerance, max_iterations);
+}
+
+void Simulation::ApplyLBFGS(Real tolerance, int max_iterations){
+  OpenMM::LocalEnergyMinimizer::minimize(*context_, tolerance, max_iterations);
+}
+
+void Simulation::Steps(int steps){
+
+  int time_to_next_notification;
+
+  while(steps > 0){
+    time_to_next_notification = this->TimeToNextNotification();
+    //we can just do the remaining steps and subtract them from
+    //time_to_notify_
+    if(steps < time_to_next_notification){
+      integrator_->step(steps);
+      for(std::vector<int>::iterator i = time_to_notify_.begin();
+          i != time_to_notify_.end(); ++i){
+        (*i) -= steps;
+      } 
+      steps = 0;
+    }else{
+      integrator_->step(time_to_next_notification);
+      for(std::vector<int>::iterator i = time_to_notify_.begin();
+          i != time_to_notify_.end(); ++i){
+        (*i) -= time_to_next_notification;
+      } 
+      for(uint i = 0; i < time_to_notify_.size(); ++i){
+        if(time_to_notify_[i] == 0){
+          observers_[i]->Notify();
+          time_to_notify_[i] = observers_[i]->Rhythm();
+        }
+      }
+      steps -= time_to_next_notification;
+    }
+  }
+}
+
+Real Simulation::GetEnergy(){
+  Real energy;
+  StateExtractor::ExtractEnergy(context_,energy);
+  return energy; 
+}
+
+Real Simulation::GetKineticEnergy(){
+  Real energy;
+  StateExtractor::ExtractKineticEnergy(context_,energy);
+  return energy;
+}
+
+Real Simulation::GetPotentialEnergy(){
+  Real energy;
+  StateExtractor::ExtractPotentialEnergy(context_,energy);
+  return energy;
+}
+
+void Simulation::Register(ObserverPtr o){
+  observers_.push_back(o);
+  time_to_notify_.push_back(o->Rhythm());
+  o->Init(context_,top_,ent_);
+}
+
+int Simulation::TimeToNextNotification(){
+  if(observers_.empty()){
+    return std::numeric_limits<int>::max();
+  }
+  int minimal_time = std::numeric_limits<int>::max();
+  for(std::vector<int>::iterator i = time_to_notify_.begin();
+      i != time_to_notify_.end(); ++i){
+    if(*i < minimal_time){
+      minimal_time = *i;
+    }
+  }
+  return minimal_time;
+}
+
+void Simulation::ResetHarmonicBond(uint index, Real bond_length, Real force_constant){
+  if(system_force_mapper_.find(HarmonicBond) == system_force_mapper_.end()){
+    throw ost::Error("There is no harmonic bond force in the simulation!");
+  }
+  uint force_index = system_force_mapper_[HarmonicBond];
+  OpenMM::Force& force = system_->getForce(force_index);
+  OpenMM::HarmonicBondForce* bond_force_ptr = reinterpret_cast<OpenMM::HarmonicBondForce*>(&force); 
+  if(index >= uint(bond_force_ptr->getNumBonds())){
+    throw ost::Error("Provided bond index exceeds number of bonds!");
+  }
+  double dummy_one, dummy_two;
+  int particle1, particle2;
+  //we know the parameters, but not the atom indices in the force object, we have to extract it from
+  //the force itself
+  bond_force_ptr->getBondParameters(index,particle1,particle2,dummy_one,dummy_two);
+  bond_force_ptr->setBondParameters(index,particle1,particle2,bond_length,force_constant);
+  bond_force_ptr->updateParametersInContext(*context_);
+  top_->SetHarmonicBondParameters(index,bond_length,force_constant);
+}
+
+void Simulation::ResetHarmonicAngle(uint index, Real angle, Real force_constant){
+  if(system_force_mapper_.find(HarmonicAngle) == system_force_mapper_.end()){
+    throw ost::Error("There is no harmonic angle force in the simulation!");
+  }
+  uint force_index = system_force_mapper_[HarmonicAngle];
+  OpenMM::Force& force = system_->getForce(force_index);
+  OpenMM::HarmonicAngleForce* angle_force_ptr = reinterpret_cast<OpenMM::HarmonicAngleForce*>(&force); 
+  if(index >= uint(angle_force_ptr->getNumAngles())){
+    throw ost::Error("Provided angle index exceeds number of angles!");
+  }
+  double dummy_one, dummy_two;
+  int particle1, particle2, particle3;
+  //we know the parameters, but not the atom indices in the force object, we have to extract it from
+  //the force itself
+  angle_force_ptr->getAngleParameters(index,particle1,particle2,particle3,dummy_one,dummy_two);
+  angle_force_ptr->setAngleParameters(index,particle1,particle2,particle3,angle,force_constant);
+  angle_force_ptr->updateParametersInContext(*context_);
+  top_->SetHarmonicAngleParameters(index, angle, force_constant);
+}
+
+void Simulation::ResetUreyBradleyAngle(uint index, Real angle, Real angle_force_constant, Real bond_length, Real bond_force_constant){
+  if(system_force_mapper_.find(UreyBradleyAngle) == system_force_mapper_.end()){
+    throw ost::Error("There is no urey bradley angle force in the simulation!");
+  }
+  uint force_index = system_force_mapper_[UreyBradleyAngle];
+  OpenMM::Force& angle_force = system_->getForce(force_index);
+  OpenMM::Force& bond_force = system_->getForce(force_index+1);
+
+  OpenMM::HarmonicAngleForce* angle_force_ptr = reinterpret_cast<OpenMM::HarmonicAngleForce*>(&angle_force); 
+  OpenMM::HarmonicBondForce* bond_force_ptr = reinterpret_cast<OpenMM::HarmonicBondForce*>(&bond_force); 
+  if(index >= uint(angle_force_ptr->getNumAngles())){
+    throw ost::Error("Provided angle index exceeds number of angles!");
+  }
+  double dummy_one, dummy_two;
+  int particle1, particle2, particle3;
+  //we know the parameters, but not the atom indices in the force object, we have to extract it from
+  //the force itself
+  angle_force_ptr->getAngleParameters(index,particle1,particle2,particle3,dummy_one,dummy_two);
+  angle_force_ptr->setAngleParameters(index,particle1,particle2,particle3,angle,angle_force_constant);
+  bond_force_ptr->setBondParameters(index,particle1,particle3,bond_length,bond_force_constant);
+  angle_force_ptr->updateParametersInContext(*context_);
+  bond_force_ptr->updateParametersInContext(*context_);
+  top_->SetUreyBradleyAngleParameters(index,angle,angle_force_constant,bond_length,bond_force_constant);
+}
+
+void Simulation::ResetPeriodicDihedral(uint index, int multiplicity, Real phase, Real force_constant){
+  if(system_force_mapper_.find(PeriodicDihedral) == system_force_mapper_.end()){
+    throw ost::Error("There is no periodic dihedral force in the simulation!");
+  }
+  uint force_index = system_force_mapper_[PeriodicDihedral];
+  OpenMM::Force& force = system_->getForce(force_index);
+  OpenMM::PeriodicTorsionForce* dihedral_force_ptr = reinterpret_cast<OpenMM::PeriodicTorsionForce*>(&force); 
+  if(index >= uint(dihedral_force_ptr->getNumTorsions())){
+    throw ost::Error("Provided dihedral index exceeds number of dihedrals!");
+  }
+  int dummy_one;
+  double dummy_two, dummy_three;
+  int particle1, particle2, particle3, particle4;
+  //we know the parameters, but not the atom indices in the force object, we have to extract it from
+  //the force itself
+  dihedral_force_ptr->getTorsionParameters(index,particle1,particle2,particle3,particle4,dummy_one,dummy_two,dummy_three);
+  dihedral_force_ptr->setTorsionParameters(index,particle1,particle2,particle3,particle4,multiplicity,phase,force_constant);
+  dihedral_force_ptr->updateParametersInContext(*context_);
+  top_->SetPeriodicDihedralParameters(index, multiplicity, phase, force_constant);
+}
+
+void Simulation::ResetPeriodicImproper(uint index, int multiplicity, Real phase, Real force_constant){
+  if(system_force_mapper_.find(PeriodicImproper) == system_force_mapper_.end()){
+    throw ost::Error("There is no periodic improper force in the simulation!");
+  }
+  uint force_index = system_force_mapper_[PeriodicImproper];
+  OpenMM::Force& force = system_->getForce(force_index);
+  OpenMM::PeriodicTorsionForce* improper_ptr = reinterpret_cast<OpenMM::PeriodicTorsionForce*>(&force); 
+  if(index >= uint(improper_ptr->getNumTorsions())){
+    throw ost::Error("Provided improper index exceeds number of impropers!");
+  }
+  int dummy_one;
+  double dummy_two, dummy_three;
+  int particle1, particle2, particle3, particle4;
+  //we know the parameters, but not the atom indices in the force object, we have to extract it from
+  //the force itself
+  improper_ptr->getTorsionParameters(index,particle1,particle2,particle3,particle4,dummy_one,dummy_two,dummy_three);
+  improper_ptr->setTorsionParameters(index,particle1,particle2,particle3,particle4,multiplicity,phase,force_constant);
+  improper_ptr->updateParametersInContext(*context_);
+  top_->SetPeriodicImproperParameters(index, multiplicity, phase, force_constant);
+}
+
+void Simulation::ResetHarmonicImproper(uint index, Real phase, Real force_constant){
+  if(system_force_mapper_.find(HarmonicImproper) == system_force_mapper_.end()){
+    throw ost::Error("There is no harmonic improper force in the simulation!");
+  }
+  uint force_index = system_force_mapper_[HarmonicImproper];
+  OpenMM::Force& force = system_->getForce(force_index);
+  OpenMM::CustomTorsionForce* improper_ptr = reinterpret_cast<OpenMM::CustomTorsionForce*>(&force); 
+  if(index >= uint(improper_ptr->getNumTorsions())){
+    throw ost::Error("Provided improper index exceeds number of impropers!");
+  }
+  std::vector<double> parameters;
+  parameters.push_back(0.0);
+  parameters.push_back(0.0);
+  int particle1, particle2, particle3, particle4;
+  //we know the parameters, but not the atom indices in the force object, we have to extract it from
+  //the force itself
+  improper_ptr->getTorsionParameters(index,particle1,particle2,particle3,particle4,parameters);
+  parameters[0] = phase;
+  parameters[1] = force_constant;
+  improper_ptr->setTorsionParameters(index,particle1,particle2,particle3,particle4,parameters);
+  improper_ptr->updateParametersInContext(*context_);
+  top_->SetHarmonicImproperParameters(index, phase, force_constant);
+}
+
+void Simulation::ResetLJPair(uint index, Real sigma, Real epsilon){
+  if(system_force_mapper_.find(LJ) == system_force_mapper_.end()){
+    throw ost::Error("There is no nonbonded force in the simulation!");
+  }
+  uint force_index = system_force_mapper_[LJ];
+  OpenMM::Force& force = system_->getForce(force_index);
+  OpenMM::NonbondedForce* nonbonded_ptr = reinterpret_cast<OpenMM::NonbondedForce*>(&force); 
+  if(index >= uint(nonbonded_ptr->getNumExceptions())){
+    throw ost::Error("Provided index exceeds number of defined pairs!");
+  }
+  double charge_prod, dummy_one, dummy_two;
+  int particle1, particle2;
+  //we know the parameters, but not the atom indices in the force object, we have to extract it from
+  //the force itself
+  nonbonded_ptr->getExceptionParameters(index,particle1,particle2,charge_prod,dummy_one,dummy_two);
+  nonbonded_ptr->setExceptionParameters(index,particle1,particle2,charge_prod,sigma,epsilon);
+  nonbonded_ptr->updateParametersInContext(*context_);
+  top_->SetLJPairParameters(index, sigma, epsilon);
+}
+
+void Simulation::ResetDistanceConstraint(uint index, Real constraint_length){
+  if(index >= uint(system_->getNumConstraints())){
+    throw ost::Error("Provided index exceeds number of defined constraints!");
+  }
+  double dummy;
+  int particle1, particle2;
+  system_->getConstraintParameters(index,particle1,particle2,dummy);
+  system_->setConstraintParameters(index,particle1,particle2,constraint_length);
+  context_->reinitialize();
+  top_->SetDistanceConstraintParameters(index, constraint_length);
+}
+
+void Simulation::AddPositionConstraint(uint index){
+  if(index >= top_->GetNumParticles()){
+    throw ost::Error("Provided index exceeds number of atoms!");
+  }
+  system_->setParticleMass(index,0.0);
+  context_->reinitialize();
+  top_->AddPositionConstraint(index);
+}
+
+void Simulation::AddPositionConstraints(const std::vector<uint>& index){
+
+  for(std::vector<uint>::const_iterator i = index.begin(); 
+      i != index.end(); ++i){
+    if(*i >= top_->GetNumParticles()){
+      throw ost::Error("Provided index exceeds number of atoms!");
+    }
+    system_->setParticleMass(*i,0.0);
+    top_->AddPositionConstraint(*i);
+  }
+  context_->reinitialize();
+}
+
+void Simulation::ResetPositionConstraints(){
+  std::vector<Real> original_masses = top_->GetMasses();
+  for(uint i = 0; i < original_masses.size(); ++i){
+    system_->setParticleMass(i,original_masses[i]);
+  }
+  top_->ResetPositionConstraints();
+  context_->reinitialize();
+}
+
+void Simulation::ResetHarmonicPositionRestraint(uint index, const geom::Vec3& ref_position, Real k,
+                                                Real x_scale, Real y_scale, Real z_scale){
+  if(index >= uint(top_->GetNumHarmonicPositionRestraints())){
+    throw ost::Error("Provided index exceeds number of defined harmonic position restraints!");
+  }
+  if(system_force_mapper_.find(HarmonicPositionRestraint) == system_force_mapper_.end()){
+    throw ost::Error("There is no harmonic position restraint in the simulation!");
+  }
+  uint force_index = system_force_mapper_[HarmonicPositionRestraint];
+  OpenMM::Force& force = system_->getForce(force_index);
+  OpenMM::CustomExternalForce* restraint_ptr = reinterpret_cast<OpenMM::CustomExternalForce*>(&force); 
+  if(index >= uint(restraint_ptr->getNumParticles())){
+    throw ost::Error("Provided index exceeds number of defined harmonic position restraints!");
+  }
+  int particle;
+  std::vector<double> parameters;
+  restraint_ptr->getParticleParameters(index,particle,parameters);
+  parameters[0] = ref_position[0];
+  parameters[1] = ref_position[1];
+  parameters[2] = ref_position[2];
+  parameters[3] = k;
+  parameters[4] = x_scale;
+  parameters[5] = y_scale;
+  parameters[6] = z_scale;
+  restraint_ptr->setParticleParameters(index,particle,parameters);
+  restraint_ptr->updateParametersInContext(*context_);
+  top_->SetHarmonicPositionRestraintParameters(index,ref_position,k,x_scale,y_scale,z_scale);
+}
+
+void Simulation::ResetHarmonicDistanceRestraint(uint index, Real length, Real force_constant){
+  if(index >= top_->GetNumHarmonicDistanceRestraints()){
+    throw ost::Error("Provided index exceeds number of defined harmonic distance restraints!");
+  }
+  if(system_force_mapper_.find(HarmonicDistanceRestraint) == system_force_mapper_.end()){
+    throw ost::Error("There is no harmonic distance restraint in the simulation!");
+  }
+  uint force_index = system_force_mapper_[HarmonicDistanceRestraint];
+  OpenMM::Force& force = system_->getForce(force_index);
+  OpenMM::HarmonicBondForce* restraint_ptr = reinterpret_cast<OpenMM::HarmonicBondForce*>(&force); 
+  if(index >= uint(restraint_ptr->getNumBonds())){
+    throw ost::Error("Provided index exceeds number of defined harmonic distance restraints!");
+  }
+  int particle_one,particle_two;
+  double dummy_one, dummy_two;
+  restraint_ptr->getBondParameters(int(index),particle_one,particle_two,dummy_one,dummy_two);
+  restraint_ptr->setBondParameters(int(index),particle_one,particle_two,length,2*force_constant);
+  restraint_ptr->updateParametersInContext(*context_);
+  top_->SetHarmonicDistanceRestraintParameters(index,length,force_constant);
+}
+
+void Simulation::ResetLJ(uint index, Real sigma, Real epsilon){
+  if(index >= top_->GetNumParticles()){
+    throw ost::Error("Provided index exceeds number of atoms!");
+  }
+  if(system_force_mapper_.find(LJ) == system_force_mapper_.end()){
+    throw ost::Error("There is no nonbonded force in the simulation!");
+  }
+  uint force_index = system_force_mapper_[LJ];
+  OpenMM::Force& force = system_->getForce(force_index);
+  OpenMM::NonbondedForce* nonbonded_ptr = reinterpret_cast<OpenMM::NonbondedForce*>(&force); 
+
+  double charge, dummy_one, dummy_two;
+
+  nonbonded_ptr->getParticleParameters(index,charge,dummy_one,dummy_two);
+  nonbonded_ptr->setParticleParameters(index,charge,sigma,epsilon);
+  nonbonded_ptr->updateParametersInContext(*context_);
+  top_->SetSigma(index, sigma);
+  top_->SetEpsilon(index, epsilon);
+}
+
+void Simulation::ResetGBSA(uint index, Real radius, Real scaling){
+  if(index >= top_->GetNumParticles()){
+    throw ost::Error("Provided index exceeds number of atoms!");
+  }
+  if(system_force_mapper_.find(GBSA) == system_force_mapper_.end()){
+    throw ost::Error("There is no gbsa force in the simulation!");
+  }
+  uint force_index = system_force_mapper_[GBSA];
+  OpenMM::Force& force = system_->getForce(force_index);
+  OpenMM::GBSAOBCForce* gbsa_ptr = reinterpret_cast<OpenMM::GBSAOBCForce*>(&force); 
+
+  double charge, dummy_one, dummy_two;
+
+  gbsa_ptr->getParticleParameters(index,charge,dummy_one,dummy_two);
+  gbsa_ptr->setParticleParameters(index,charge,radius,scaling);
+  gbsa_ptr->updateParametersInContext(*context_);
+  top_->SetGBSARadius(index, radius);
+  top_->SetOBCScaling(index, scaling);
+}
+
+void Simulation::ResetCharge(uint index, Real charge){
+  if(index >= top_->GetNumParticles()){
+    throw ost::Error("Provided index exceeds number of atoms!");
+  }
+  if(system_force_mapper_.find(LJ) == system_force_mapper_.end()){
+    throw ost::Error("There is no nonbonded force in the simulation!");
+  }
+  uint force_index = system_force_mapper_[LJ];
+  OpenMM::Force& force = system_->getForce(force_index);
+  OpenMM::NonbondedForce* nonbonded_ptr = reinterpret_cast<OpenMM::NonbondedForce*>(&force); 
+
+  double dummy, sigma, epsilon;
+
+  //first update the parameters of the single particle
+  nonbonded_ptr->getParticleParameters(index,dummy,sigma,epsilon);
+  nonbonded_ptr->setParticleParameters(index,charge,sigma,epsilon);
+  
+  //the charge product has to be updated in the exceptions (1,4 interactions)
+   std::vector<uint> lj_pair_indices = top_->GetLJPairIndices(index);
+   Real old_charge = top_->GetCharge(index);
+   double charge_prod;
+   Real new_charge_prod;
+   int particle_one, particle_two;
+
+  for(std::vector<uint>::iterator i = lj_pair_indices.begin();
+      i != lj_pair_indices.end(); ++i){
+    nonbonded_ptr->getExceptionParameters(*i,particle_one,particle_two,charge_prod,sigma,epsilon);
+    new_charge_prod = charge_prod/old_charge*charge; // fudge_qq * q1 * q2
+    nonbonded_ptr->setExceptionParameters(*i,particle_one,particle_two,new_charge_prod,sigma,epsilon);
+  } 
+
+  nonbonded_ptr->updateParametersInContext(*context_);
+  top_->SetCharge(index, charge);
+
+  //the charge also affects gbsa force...
+  if(system_force_mapper_.find(GBSA) != system_force_mapper_.end()){
+    force_index = system_force_mapper_[GBSA];
+    OpenMM::Force& force = system_->getForce(force_index);
+    OpenMM::GBSAOBCForce* gbsa_ptr = reinterpret_cast<OpenMM::GBSAOBCForce*>(&force); 
+
+    double radius,scaling;
+
+    gbsa_ptr->getParticleParameters(index,dummy,radius,scaling);
+    gbsa_ptr->setParticleParameters(index,charge,radius,scaling);
+    gbsa_ptr->updateParametersInContext(*context_); 
+  }
+}
+
+void Simulation::ResetMass(uint index, Real mass){
+  if(index >= top_->GetNumParticles()){
+    throw ost::Error("Provided index exceeds number of atoms!");
+  }
+  system_->setParticleMass(index,mass);
+  context_->reinitialize();
+  top_->SetMass(index,mass);
+}
+
+geom::Vec3 Simulation::GetPeriodicBoxExtents(){
+  geom::Vec3 vec;
+  OpenMM::Vec3 ucell_a, ucell_b, ucell_c;
+  OpenMM::State openmm_state = context_->getState(0); //create minimal state
+                                                      //to only extract periodic
+                                                      //box information
+  openmm_state.getPeriodicBoxVectors(ucell_a,ucell_b,ucell_c);
+  vec[0] = 10 * sqrt(ucell_a.dot(ucell_a));
+  vec[1] = 10 * sqrt(ucell_a.dot(ucell_b));
+  vec[2] = 10 * sqrt(ucell_a.dot(ucell_c));
+  return vec;
+}
+
+void Simulation::SetPeriodicBoxExtents(geom::Vec3& vec){
+  OpenMM::Vec3 ucell_a(vec[0]/10.0,0.0,0.0);
+  OpenMM::Vec3 ucell_b(0.0,vec[1]/10.0,0.0);
+  OpenMM::Vec3 ucell_c(0.0,0.0,vec[2]/10.0);
+  context_->setPeriodicBoxVectors(ucell_a,ucell_b,ucell_c);
+}
+
+}}}
+
diff --git a/modules/mol/mm/src/simulation.hh b/modules/mol/mm/src/simulation.hh
new file mode 100644
index 0000000000000000000000000000000000000000..9abe038bdf533ffcf788210198f18edf094617a1
--- /dev/null
+++ b/modules/mol/mm/src/simulation.hh
@@ -0,0 +1,160 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#ifndef OST_MM_SIMULATION_HH
+#define OST_MM_SIMULATION_HH
+
+#include <vector>
+#include <map>
+
+#include <ost/mol/mol.hh>
+#include <ost/mol/mm/system_creator.hh>
+#include <ost/mol/mm/topology.hh>
+#include <ost/mol/mm/topology_creator.hh>
+#include <ost/mol/mm/settings.hh>
+#include <ost/mol/mm/modeller.hh>
+#include <ost/geom/vec3.hh>
+#include <ost/mol/mm/observer.hh>
+#include <ost/mol/mm/state_extractor.hh>
+#include <ost/mol/mm/steep.hh>
+
+#include <time.h>
+
+namespace OpenMM{
+  class Integrator;
+  class Context;//hacky way of telling the Context and Integrator 
+                //are around.
+                //will be included in source file to avoid
+                //dependencies on external libraries
+}
+
+namespace ost { namespace mol{ namespace mm{
+
+class Simulation;
+
+typedef boost::shared_ptr<OpenMM::Integrator> IntegratorPtr;
+typedef boost::shared_ptr<OpenMM::Context> ContextPtr;
+typedef boost::shared_ptr<Simulation> SimulationPtr;
+
+class Simulation {
+
+public:
+
+  Simulation(const ost::mol::EntityHandle& handle, 
+             const SettingsPtr settings);
+
+  Simulation(const ost::mol::mm::TopologyPtr top,
+             const ost::mol::EntityHandle& handle,
+             const SettingsPtr settings);
+
+  void Save(const String& filename);
+
+  static SimulationPtr Load(const String& filename, SettingsPtr settings);
+
+  ost::mol::EntityHandle GetEntity() { return ent_; }
+
+  geom::Vec3List GetPositions(bool enforce_periodic_box = false, bool in_angstrom = true);
+
+  geom::Vec3List GetVelocities();
+
+  geom::Vec3List GetForces();
+
+  void SetPositions(const geom::Vec3List& positions, bool in_angstrom = true);
+
+  void SetVelocities(geom::Vec3List& velocities);
+
+  void UpdatePositions(bool enforce_periodic_box = false);
+
+  bool ApplySD(Real tolerance = 100, int max_iterations = 1000);
+
+  void ApplyLBFGS(Real tolerance = 1, int max_iterations = 1000);
+
+  Real GetEnergy();
+
+  Real GetPotentialEnergy();
+
+  Real GetKineticEnergy();
+
+  TopologyPtr GetTopology() { return top_; }
+
+  void Steps(int steps);
+
+  void Register(ObserverPtr o);
+
+  void ResetHarmonicBond(uint index, Real bond_length, Real force_constant);
+
+  void ResetHarmonicAngle(uint index, Real angle, Real force_constant);
+
+  void ResetUreyBradleyAngle(uint index, Real angle, Real angle_force_constant, Real bond_length, Real bond_force_constant);
+
+  void ResetPeriodicDihedral(uint index, int multiplicity, Real phase, Real force_constant);
+
+  void ResetPeriodicImproper(uint index, int multiplicity, Real phase, Real force_constant);
+
+  void ResetHarmonicImproper(uint index, Real phase, Real force_constant);
+
+  void ResetLJPair(uint index, Real sigma, Real epsilon);
+
+  void ResetDistanceConstraint(uint index, Real constraint_length);
+
+  void ResetHarmonicPositionRestraint(uint index, const geom::Vec3& ref_position, Real k,
+                                      Real x_scale = 1.0, Real y_scale = 1.0, Real z_scale = 1.0);
+
+  void ResetHarmonicDistanceRestraint(uint index, Real length, Real force_constant);
+
+  void ResetLJ(uint index, Real sigma, Real epsilon);
+
+  void ResetGBSA(uint index, Real radius, Real scaling);
+
+  void ResetCharge(uint index, Real charge);
+
+  void ResetMass(uint index, Real mass);
+
+  void AddPositionConstraint(uint index);
+
+  void AddPositionConstraints(const std::vector<uint>& index);
+
+  void ResetPositionConstraints();
+
+  geom::Vec3 GetPeriodicBoxExtents();
+
+  void SetPeriodicBoxExtents(geom::Vec3& vec);
+
+private:
+
+  Simulation() { } //hidden constructor... 
+
+  void Init(const ost::mol::mm::TopologyPtr top, 
+            const SettingsPtr settings);
+
+  int TimeToNextNotification();
+
+  SystemPtr system_;
+  IntegratorPtr integrator_;
+  ContextPtr context_;
+  TopologyPtr top_;
+  std::vector<ObserverPtr> observers_;
+  std::vector<int> time_to_notify_;
+  std::map<FuncType,uint> system_force_mapper_;
+  ost::mol::EntityHandle ent_;
+};
+
+}}} //ns
+
+#endif
diff --git a/modules/mol/mm/src/state_extractor.cc b/modules/mol/mm/src/state_extractor.cc
new file mode 100644
index 0000000000000000000000000000000000000000..478174f7f37cb9ac591094c5a0d0fab70807e34e
--- /dev/null
+++ b/modules/mol/mm/src/state_extractor.cc
@@ -0,0 +1,88 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <ost/mol/mm/state_extractor.hh>
+#include <OpenMM.h>
+
+namespace ost { namespace mol{ namespace mm{
+
+void StateExtractor::ExtractPotentialEnergy(boost::shared_ptr<OpenMM::Context> context,
+  	                                        Real& energy){
+
+  OpenMM::State s = context->getState(OpenMM::State::Energy);
+  energy = s.getPotentialEnergy();
+}
+
+void StateExtractor::ExtractKineticEnergy(boost::shared_ptr<OpenMM::Context> context,
+	                                        Real& energy){
+
+  OpenMM::State s = context->getState(OpenMM::State::Energy);
+  energy = s.getKineticEnergy();
+}
+
+void StateExtractor::ExtractEnergy(boost::shared_ptr<OpenMM::Context> context,
+	                                 Real& energy){
+
+  OpenMM::State s = context->getState(OpenMM::State::Energy);
+  energy = s.getKineticEnergy() + s.getPotentialEnergy();
+}
+
+void StateExtractor::ExtractPositions(boost::shared_ptr<OpenMM::Context> context,
+	                                    geom::Vec3List& positions, bool enforce_periodic_box, 
+                                      bool in_angstrom){
+
+  positions.resize(context->getSystem().getNumParticles());
+  OpenMM::State s = context->getState(OpenMM::State::Positions, enforce_periodic_box);
+  const std::vector<OpenMM::Vec3>& p = s.getPositions();
+  int actual_index = 0;
+  for(std::vector<OpenMM::Vec3>::const_iterator i = p.begin(); i != p.end(); ++i){
+    positions[actual_index] = geom::Vec3((*i)[0],(*i)[1],(*i)[2]);
+    ++actual_index;
+  }
+  if(in_angstrom) positions*=10.0;
+}
+
+void StateExtractor::ExtractVelocities(boost::shared_ptr<OpenMM::Context> context,
+	                                     geom::Vec3List& velocities){
+
+  velocities.resize(context->getSystem().getNumParticles());
+  OpenMM::State s = context->getState(OpenMM::State::Velocities);
+  const std::vector<OpenMM::Vec3>& v = s.getVelocities();
+  int actual_index = 0;
+  for(std::vector<OpenMM::Vec3>::const_iterator i = v.begin(); i != v.end(); ++i){
+    velocities[actual_index] = geom::Vec3((*i)[0],(*i)[1],(*i)[2]);
+    ++actual_index;
+  }
+}
+
+void StateExtractor::ExtractForces(boost::shared_ptr<OpenMM::Context> context,
+	                                 geom::Vec3List& forces){
+
+  forces.resize(context->getSystem().getNumParticles());
+  OpenMM::State s = context->getState(OpenMM::State::Forces);
+  const std::vector<OpenMM::Vec3>& f = s.getForces();
+  int actual_index = 0;
+  for(std::vector<OpenMM::Vec3>::const_iterator i = f.begin(); i != f.end(); ++i){
+    forces[actual_index] = geom::Vec3((*i)[0],(*i)[1],(*i)[2]);
+    ++actual_index;
+  }
+}
+
+
+}}} //ns
diff --git a/modules/mol/mm/src/state_extractor.hh b/modules/mol/mm/src/state_extractor.hh
new file mode 100644
index 0000000000000000000000000000000000000000..38ecece645c0e343ce5812d3379ecbafa53a9290
--- /dev/null
+++ b/modules/mol/mm/src/state_extractor.hh
@@ -0,0 +1,66 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#ifndef OST_MM_STATE_EXTRACTOR_HH
+#define OST_MM_STATE_EXTRACTOR_HH
+
+#include <vector>
+
+#include <boost/shared_ptr.hpp>
+#include <ost/geom/vec3.hh>
+
+namespace OpenMM{
+  class Context; //hacky way of telling the Context is around.
+                 //will be included in source file to avoid
+                 //dependencies on external libraries
+
+}
+
+namespace ost { namespace mol{ namespace mm{
+
+class StateExtractor{
+
+public:
+
+  static void ExtractPotentialEnergy(boost::shared_ptr<OpenMM::Context> context,
+  	                                 Real& energy);
+
+  static void ExtractKineticEnergy(boost::shared_ptr<OpenMM::Context> context,
+  	                               Real& energy);
+
+  static void ExtractEnergy(boost::shared_ptr<OpenMM::Context> context,
+  	                        Real& energy);
+
+  static void ExtractPositions(boost::shared_ptr<OpenMM::Context> context,
+  	                           geom::Vec3List& positions,
+                               bool enforce_periodic_box = false,
+                               bool in_angstrom = true);
+
+  static void ExtractVelocities(boost::shared_ptr<OpenMM::Context> context,
+  	                            geom::Vec3List& velocities);
+
+  static void ExtractForces(boost::shared_ptr<OpenMM::Context> context,
+  	                        geom::Vec3List& forces);
+
+};
+
+
+}}} //ns
+
+#endif
diff --git a/modules/mol/mm/src/steep.cc b/modules/mol/mm/src/steep.cc
new file mode 100644
index 0000000000000000000000000000000000000000..94d987d2c7ee8d568f51cb3a469a614ab0bfae72
--- /dev/null
+++ b/modules/mol/mm/src/steep.cc
@@ -0,0 +1,92 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <ost/mol/mm/steep.hh>
+#include <OpenMM.h>
+
+namespace ost{ namespace mol{ namespace mm{
+
+bool Steep::Minimize(OpenMM::Context& context, double tolerance, uint max_iterations) {
+  const OpenMM::System& system = context.getSystem();
+  if(system.getNumConstraints() > 0){
+    throw ost::Error("Cannot handle constraints in steepest descent, use lbgfs instead!");
+  }
+  if( tolerance <= 0.0 ){
+    throw ost::Error("tolerance value must be greater 0.0!"); //also important to avoid zero division error when calculating normalization factor for forces
+  }
+
+  bool converged = false;
+
+  OpenMM::State state = context.getState(OpenMM::State::Energy | OpenMM::State::Forces | OpenMM::State::Positions);
+  std::vector<OpenMM::Vec3> positions = state.getPositions();
+  std::vector<OpenMM::Vec3> new_positions = positions;
+  std::vector<OpenMM::Vec3> normalized_forces = state.getForces();
+  double energy = state.getPotentialEnergy();
+  double h = 0.01; 
+  double new_energy,max_length,factor;
+  bool normalize_forces = true;
+  std::vector<uint> non_zero_mass_particles;
+  for(int i = 0; i < system.getNumParticles(); ++i){
+    if(system.getParticleMass(i) != 0){
+      non_zero_mass_particles.push_back(i);
+    }
+  }
+  for(uint i = 0; i < max_iterations; ++i){
+    if(normalize_forces){
+      const std::vector<OpenMM::Vec3>& forces = state.getForces();
+      max_length = 0.0;
+      for(std::vector<uint>::iterator j  = non_zero_mass_particles.begin(); 
+          j != non_zero_mass_particles.end(); ++j){
+        normalized_forces[*j] = forces[*j];
+        max_length = std::max(max_length,forces[*j].dot(forces[*j]));
+      }
+      max_length = sqrt(max_length);
+      if(max_length <= tolerance){
+        converged = true;
+        break;
+      }
+      factor = 1.0/max_length;
+      for(std::vector<uint>::iterator j = non_zero_mass_particles.begin(); 
+          j != non_zero_mass_particles.end(); ++j){
+        normalized_forces[*j] *= factor;
+      }
+    }
+    for(std::vector<uint>::iterator j = non_zero_mass_particles.begin(); 
+        j != non_zero_mass_particles.end(); ++j){
+      new_positions[*j] = positions[*j] + normalized_forces[*j] * h;
+    }
+    context.setPositions(new_positions);
+    //context.computeVirtualSites();
+    state = context.getState(OpenMM::State::Forces | OpenMM::State::Energy);
+    new_energy = state.getPotentialEnergy();
+    if(new_energy < energy){
+      std::swap(positions,new_positions);
+      energy = new_energy;
+      h *= 1.2;
+      normalize_forces = true;
+    }
+    else {
+      h *= 0.5;
+      normalize_forces = false;
+    }  
+  }
+  context.setPositions(positions);
+  return converged;
+}
+}}}//ns
diff --git a/modules/mol/mm/src/steep.hh b/modules/mol/mm/src/steep.hh
new file mode 100644
index 0000000000000000000000000000000000000000..1d58267104a74be5ddece2b2c8c03bafd285c254
--- /dev/null
+++ b/modules/mol/mm/src/steep.hh
@@ -0,0 +1,49 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#ifndef OST_MM_STEEP_HH
+#define OST_MM_STEEP_HH
+
+#include <ost/base.hh>
+#include <cmath>
+#include <sstream>
+#include <vector>
+#include <iostream>
+#include <cstdio>
+#include <ctime>
+
+#include <ost/message.hh>
+
+namespace OpenMM{
+  class Context; //hacky way of telling the Context is around.
+                 //will be included in source file to avoid
+                 //dependencies on external libraries
+}
+
+namespace ost { namespace mol { namespace mm{
+
+
+class Steep {
+public:
+  static bool Minimize(OpenMM::Context& context, double tolerance = 100, uint maxIterations = 1000);
+};
+
+}}}
+
+#endif 
diff --git a/modules/mol/mm/src/system_creator.cc b/modules/mol/mm/src/system_creator.cc
new file mode 100644
index 0000000000000000000000000000000000000000..2912a5dcab88240f5d0c254bcc4659aa3ba922af
--- /dev/null
+++ b/modules/mol/mm/src/system_creator.cc
@@ -0,0 +1,442 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <ost/mol/mm/system_creator.hh>
+#include <OpenMM.h>
+
+namespace ost{ namespace mol{ namespace mm{
+
+SystemPtr SystemCreator::Create(const TopologyPtr top, 
+                                const SettingsPtr settings,
+                                std::map<FuncType,uint>& mapper){
+
+  uint mapper_index = 0;
+
+  SystemPtr sys(new OpenMM::System);
+
+  //add particles to the system
+  std::vector<Real> masses = top->GetMasses();
+
+  //set masses of position constraints to zero
+  const std::vector<uint>& position_constraints = top->GetPositionConstraints();
+  if(!position_constraints.empty()){
+    for(std::vector<uint>::const_iterator i = position_constraints.begin();
+        i != position_constraints.end(); ++i){
+      masses[*i] = 0.0;
+    }
+  }  
+
+  for(std::vector<Real>::iterator i = masses.begin(); i != masses.end(); ++i){
+    sys->addParticle(*i);
+  }
+
+  //parameters of all added interactions will temporarily be stored in here
+  std::vector<Real> parameters;
+
+  const std::vector<std::pair<Index<2>,std::vector<Real> > >& harmonic_bonds = top->GetHarmonicBonds();
+  if(!harmonic_bonds.empty()){
+    OpenMM::HarmonicBondForce& harmonic_bond_force = *new OpenMM::HarmonicBondForce();
+    sys->addForce(&harmonic_bond_force);
+    mapper[HarmonicBond] = mapper_index++;
+    for(std::vector<std::pair<Index<2>,std::vector<Real> > >::const_iterator i = harmonic_bonds.begin();
+        i != harmonic_bonds.end(); ++i){
+      harmonic_bond_force.addBond(i->first[0],i->first[1],i->second[0],i->second[1]);
+    }
+  }
+
+  const std::vector<std::pair<Index<3>, std::vector<Real> > >& harmonic_angles = top->GetHarmonicAngles();
+  if(!harmonic_angles.empty()){
+    OpenMM::HarmonicAngleForce& harmonic_angle_force = *new OpenMM::HarmonicAngleForce();
+    sys->addForce(&harmonic_angle_force);
+    mapper[HarmonicAngle] = mapper_index++;
+    for(std::vector<std::pair<Index<3>,std::vector<Real> > >::const_iterator i = harmonic_angles.begin();
+        i != harmonic_angles.end(); ++i){
+      harmonic_angle_force.addAngle(i->first[0],i->first[1],i->first[2],
+                                    i->second[0],i->second[1]);
+    }
+  }
+  
+  const std::vector<std::pair<Index<3>,std::vector<Real> > >& urey_bradley_angles = top->GetUreyBradleyAngles();
+  if(!urey_bradley_angles.empty()){
+    //urey bradley is a mixture between a harmonic angle and harmonic bond term,
+    //that gets split up
+    OpenMM::HarmonicAngleForce& urey_angle_force = *new OpenMM::HarmonicAngleForce();
+    OpenMM::HarmonicBondForce& urey_bond_force = *new OpenMM::HarmonicBondForce();
+    sys->addForce(&urey_angle_force);
+    sys->addForce(&urey_bond_force);
+    mapper[UreyBradleyAngle] = mapper_index++;
+    ++mapper_index;
+    for(std::vector<std::pair<Index<3>,std::vector<Real> > >::const_iterator i = urey_bradley_angles.begin();
+        i != urey_bradley_angles.end(); ++i){
+      urey_angle_force.addAngle(i->first[0],i->first[1],i->first[2],
+                                i->second[0],i->second[1]);
+      urey_bond_force.addBond(i->first[0],i->first[2],i->second[2],i->second[3]);
+    }
+  }
+
+  const std::vector<std::pair<Index<4>,std::vector<Real> > >& periodic_dihedrals = top->GetPeriodicDihedrals();
+  if(!periodic_dihedrals.empty()){
+    OpenMM::PeriodicTorsionForce& periodic_torsion_force = *new OpenMM::PeriodicTorsionForce();
+    sys->addForce(&periodic_torsion_force);
+    mapper[PeriodicDihedral] = mapper_index++;
+    for(std::vector<std::pair<Index<4>,std::vector<Real> > >::const_iterator i = periodic_dihedrals.begin();
+        i != periodic_dihedrals.end(); ++i){
+      periodic_torsion_force.addTorsion(i->first[0],i->first[1],i->first[2],i->first[3],
+                                        i->second[0],i->second[1],i->second[2]);
+    }
+  }
+
+  const std::vector<std::pair<Index<4>,std::vector<Real> > >& periodic_impropers = top->GetPeriodicImpropers();
+  if(!periodic_impropers.empty()){
+    OpenMM::PeriodicTorsionForce& periodic_improper_force = *new OpenMM::PeriodicTorsionForce();       
+    sys->addForce(&periodic_improper_force);
+    mapper[PeriodicImproper] = mapper_index++;
+    for(std::vector<std::pair<Index<4>,std::vector<Real> > >::const_iterator i = periodic_impropers.begin();
+        i != periodic_impropers.end(); ++i){
+      periodic_improper_force.addTorsion(i->first[0],i->first[1],i->first[2],i->first[3],
+                                        i->second[0],i->second[1],i->second[2]);
+    }
+  }
+
+  const std::vector<std::pair<Index<4>,std::vector<Real> > >& harmonic_impropers = top->GetHarmonicImpropers();
+  if(!harmonic_impropers.empty()){
+    std::vector<double> custom_parameters;
+    custom_parameters.push_back(0.0);
+    custom_parameters.push_back(0.0);
+    OpenMM::CustomTorsionForce& harmonic_improper_force = *new OpenMM::CustomTorsionForce("0.5*k*(theta-b)^2");
+    harmonic_improper_force.addPerTorsionParameter("b");
+    harmonic_improper_force.addPerTorsionParameter("k"); 
+    sys->addForce(&harmonic_improper_force);
+    mapper[HarmonicImproper] = mapper_index++;
+    for(std::vector<std::pair<Index<4>,std::vector<Real> > >::const_iterator i = harmonic_impropers.begin();
+        i != harmonic_impropers.end(); ++i){
+      custom_parameters[0] = i->second[0];
+      custom_parameters[1] = i->second[1];
+      harmonic_improper_force.addTorsion(i->first[0],i->first[1],i->first[2],i->first[3],
+                                         custom_parameters);
+    }
+  }
+
+  const std::vector<std::pair<Index<5>,std::vector<Real> > >& cmaps = top->GetCMaps();
+  if(!cmaps.empty()){
+    std::vector<std::vector<Real> > unique_cmap_parameters;
+    std::vector<Real> current_parameters;
+    std::vector<int> map_indices;
+    bool cmap_present;
+
+    for(std::vector<std::pair<Index<5>,std::vector<Real> > >::const_iterator i = cmaps.begin();
+        i != cmaps.end(); ++i){
+      cmap_present = false;
+      current_parameters = i->second;
+      for(uint j = 0; j < unique_cmap_parameters.size(); ++j){
+        if(current_parameters == unique_cmap_parameters[j]){
+          cmap_present = true;
+          map_indices.push_back(j);
+          break;
+        }
+      }
+      if(!cmap_present){
+        unique_cmap_parameters.push_back(current_parameters);
+        map_indices.push_back(unique_cmap_parameters.size()-1);
+      }
+    } 
+
+    OpenMM::CMAPTorsionForce& cmap_force = *new OpenMM::CMAPTorsionForce();       
+    sys->addForce(&cmap_force);
+    mapper[CMap] = mapper_index++;
+
+    for(std::vector<std::vector<Real> >::iterator u_cmap = unique_cmap_parameters.begin();
+        u_cmap != unique_cmap_parameters.end(); ++u_cmap){
+      uint size = sqrt(u_cmap->size());
+      if(size * size != u_cmap->size()){
+        throw ost::Error("Expect cmap to be quadratic!");
+      }
+
+      //in charmm/gromacs the cmap has the following order regarding angle bins:
+      //(phi1,psi1),(phi1,psi2)...
+      //openmm requires following order:
+      //(phi1,psi1),(phi2,psi1)...
+
+      //in charmm/gromacs the range of the angles in the map is [-180,180],[-pi,pi]
+      //respectively
+      //openmm requires the range to be [0,2pi], the map has to be shifted...
+
+      //=>we need basically two "transformation"
+
+      std::vector<double> transformed_map;
+      for(uint i = 0; i < size; ++i){
+        for(uint j = 0; j < size; ++j){
+          transformed_map.push_back((*u_cmap)[size*((j+size/2)%size) + ((i+size/2)%size)]);
+        }
+      }
+      cmap_force.addMap(size, transformed_map);
+    }
+
+    //add the cmaps
+    int atom1,atom2,atom3,atom4,atom5;
+    for(uint i = 0; i < cmaps.size(); ++i){
+      atom1 = cmaps[i].first[0];
+      atom2 = cmaps[i].first[1];
+      atom3 = cmaps[i].first[2];
+      atom4 = cmaps[i].first[3];
+      atom5 = cmaps[i].first[4];
+      cmap_force.addTorsion(map_indices[i],atom1,atom2,atom3,atom4,atom2,atom3,atom4,atom5);
+    }
+  }
+
+  const std::vector<std::pair<Index<1>,std::vector<Real> > >& harmonic_position_restraints = top->GetHarmonicPositionRestraints();
+  if(!harmonic_position_restraints.empty()){
+    OpenMM::CustomExternalForce& position_restraint_force = *new OpenMM::CustomExternalForce("k_force*(x_scale*(x-x0)^2+y_scale*(y-y0)^2+z_scale*(z-z0)^2)");
+    position_restraint_force.addPerParticleParameter("x0");
+    position_restraint_force.addPerParticleParameter("y0");
+    position_restraint_force.addPerParticleParameter("z0");
+    position_restraint_force.addPerParticleParameter("k_force");
+    position_restraint_force.addPerParticleParameter("x_scale");
+    position_restraint_force.addPerParticleParameter("y_scale");
+    position_restraint_force.addPerParticleParameter("z_scale");
+    sys->addForce(&position_restraint_force);
+    mapper[HarmonicPositionRestraint] = mapper_index++;
+    for(std::vector<std::pair<Index<1>,std::vector<Real> > >::const_iterator i = harmonic_position_restraints.begin();
+        i != harmonic_position_restraints.end(); ++i){
+      //stupid cast
+      std::vector<double> parameters;
+      for(std::vector<Real>::const_iterator j = i->second.begin();
+          j != i->second.end(); ++j){
+        parameters.push_back(*j);
+      }
+      position_restraint_force.addParticle(i->first[0], parameters);
+    }
+  } 
+
+  const std::vector<std::pair<Index<2>,std::vector<Real> > > harmonic_distance_restraints = top->GetHarmonicDistanceRestraints();
+  if(!harmonic_distance_restraints.empty()){
+    OpenMM::HarmonicBondForce& harmonic_distance_restraint_force = *new OpenMM::HarmonicBondForce();
+    sys->addForce(&harmonic_distance_restraint_force);
+    mapper[HarmonicDistanceRestraint] = mapper_index++;
+    for(std::vector<std::pair<Index<2>,std::vector<Real> > >::const_iterator i = harmonic_distance_restraints.begin();
+        i != harmonic_distance_restraints.end(); ++i){
+      //note, that the restraint formula is k(b-b0)^2 instead of 1/2*k(b-b0)^2 => multiply by two!
+      harmonic_distance_restraint_force.addBond(i->first[0],i->first[1],i->second[0],2*i->second[1]);
+    }
+  }
+
+  const std::vector<std::pair<Index<2>,std::vector<Real> > > fgmd_hbond_donors = top->GetFGMDHBondDonors();
+  const std::vector<Index<2> > fgmd_hbond_acceptors = top->GetFGMDHBondAcceptors();
+  if(!fgmd_hbond_donors.empty() && !fgmd_hbond_acceptors.empty()){
+    String distance_term = "k_length*(distance(a1,d1)-k_length)^2";
+    String alpha_term = "k_alpha*(angle(d2,d1,a1)-alpha)^2";
+    String beta_term = "k_beta*(angle(d1,a1,a2)-beta)^2";
+    String f = distance_term + "+" + alpha_term + "+" + beta_term; 
+    OpenMM::CustomHbondForce& fgmd_hbond_force = *new OpenMM::CustomHbondForce(f);
+
+    fgmd_hbond_force.addPerDonorParameter("length");
+    fgmd_hbond_force.addPerDonorParameter("k_length");
+    fgmd_hbond_force.addPerDonorParameter("alpha");
+    fgmd_hbond_force.addPerDonorParameter("k_alpha");
+    fgmd_hbond_force.addPerDonorParameter("beta");
+    fgmd_hbond_force.addPerDonorParameter("k_beta");
+
+    fgmd_hbond_force.setCutoffDistance(3.0);
+    fgmd_hbond_force.setNonbondedMethod(OpenMM::CustomHbondForce::CutoffPeriodic);
+
+    switch(settings->nonbonded_method){
+      case NoCutoff:{
+        fgmd_hbond_force.setNonbondedMethod(OpenMM::CustomHbondForce::NoCutoff);
+        break;
+      }
+      case CutoffNonPeriodic:{
+        fgmd_hbond_force.setNonbondedMethod(OpenMM::CustomHbondForce::CutoffNonPeriodic);
+        break;        
+      }
+      case CutoffPeriodic:{
+        fgmd_hbond_force.setNonbondedMethod(OpenMM::CustomHbondForce::CutoffPeriodic);
+        break;        
+      }
+      case Ewald:{
+        fgmd_hbond_force.setNonbondedMethod(OpenMM::CustomHbondForce::CutoffPeriodic);
+        break;        
+      }
+      case PME:{
+        fgmd_hbond_force.setNonbondedMethod(OpenMM::CustomHbondForce::CutoffPeriodic);
+        break;        
+      }
+    }
+
+    for(std::vector<std::pair<Index<2>,std::vector<Real> > >::const_iterator i = fgmd_hbond_donors.begin();
+        i != fgmd_hbond_donors.end(); ++i){
+      //stupid cast
+      std::vector<double> parameters;
+      for(std::vector<Real>::const_iterator j = i->second.begin();
+          j != i->second.end(); ++j){
+        parameters.push_back(*j);
+      }
+      fgmd_hbond_force.addDonor(i->first[0],i->first[1],-1, parameters);
+    }
+    std::vector<double> dummy_vec;
+    for(std::vector<Index<2> >::const_iterator i = fgmd_hbond_acceptors.begin();
+        i != fgmd_hbond_acceptors.end(); ++i){
+      fgmd_hbond_force.addAcceptor((*i)[0],(*i)[1],-1,dummy_vec);
+    }
+    sys->addForce(&fgmd_hbond_force);
+  }
+
+  std::vector<Real> sigmas = top->GetSigmas();
+  std::vector<Real> epsilons = top->GetEpsilons();
+  std::vector<Real> charges = top->GetCharges();
+  if(!sigmas.empty() && !epsilons.empty() && !charges.empty()){
+    OpenMM::NonbondedForce& nonbonded_force = *new OpenMM::NonbondedForce();
+    switch(settings->nonbonded_method){
+      case NoCutoff:{
+        nonbonded_force.setNonbondedMethod(OpenMM::NonbondedForce::NoCutoff);
+        break;
+      }
+      case CutoffNonPeriodic:{
+        nonbonded_force.setNonbondedMethod(OpenMM::NonbondedForce::CutoffNonPeriodic);
+        break;        
+      }
+      case CutoffPeriodic:{
+        nonbonded_force.setNonbondedMethod(OpenMM::NonbondedForce::CutoffPeriodic);
+        break;        
+      }
+      case Ewald:{
+        nonbonded_force.setNonbondedMethod(OpenMM::NonbondedForce::Ewald);
+        break;        
+      }
+      case PME:{
+        nonbonded_force.setNonbondedMethod(OpenMM::NonbondedForce::PME);
+        break;        
+      }
+    }
+    //we can set the cutoff in any case, since it will have no effect when
+    //nonbonded method is NoCutoff
+    nonbonded_force.setCutoffDistance(settings->nonbonded_cutoff/10.0);
+    nonbonded_force.setReactionFieldDielectric(settings->reaction_field_dielectric);
+    nonbonded_force.setUseDispersionCorrection(settings->use_dispersion_correction);
+    sys->addForce(&nonbonded_force);
+    mapper[LJ] = mapper_index++;
+
+    //we first add all single particles to the force
+    for(uint i = 0; i < charges.size(); ++i){
+      nonbonded_force.addParticle(charges[i], sigmas[i], epsilons[i]);
+    }
+    //take care of the 1-4 interactions
+    const std::vector<std::pair<Index<2>,std::vector<Real> > >& lj_pairs = top->GetLJPairs();
+    if(!lj_pairs.empty()){
+      Real fudge_lj = top->GetFudgeLJ();
+      Real fudge_qq = top->GetFudgeQQ();
+      Real charge;
+      for(std::vector<std::pair<Index<2>,std::vector<Real> > >::const_iterator i = lj_pairs.begin();
+          i != lj_pairs.end(); ++i){
+        charge = fudge_qq * charges[i->first[0]] * charges[i->first[1]];
+        nonbonded_force.addException(i->first[0],i->first[1],charge,
+                                     i->second[0],fudge_lj*i->second[1]);
+      }
+    }
+    //take care of the exclusions
+    const std::vector<Index<2> >& exclusions = top->GetExclusions();
+    if(!exclusions.empty()){
+      for(std::vector<Index<2> >::const_iterator i = exclusions.begin(); i != exclusions.end(); ++i){
+        nonbonded_force.addException((*i)[0],(*i)[1],0.0,1.0,0.0);
+      }
+    }
+  }
+  std::vector<Real> gbsa_radii = top->GetGBSARadii();
+  std::vector<Real> gbsa_scaling = top->GetOBCScalings();
+  if(!gbsa_radii.empty() && !gbsa_scaling.empty()){
+    std::vector<Real> charges = top->GetCharges();
+    if(charges.empty())
+      throw ost::Error("GBSA force requires atom charges to be set!");
+    OpenMM::GBSAOBCForce& gbsa_force = *new OpenMM::GBSAOBCForce();
+    sys->addForce(&gbsa_force);
+    if(settings->nonbonded_method == NoCutoff){
+      gbsa_force.setNonbondedMethod(OpenMM::GBSAOBCForce::NoCutoff);
+    }
+    else if(settings->nonbonded_method == CutoffNonPeriodic){
+      gbsa_force.setNonbondedMethod(OpenMM::GBSAOBCForce::CutoffNonPeriodic);
+    }
+    else if(settings->nonbonded_method == CutoffPeriodic){
+      gbsa_force.setNonbondedMethod(OpenMM::GBSAOBCForce::CutoffPeriodic);
+    }
+    else{
+      throw ost::Error("Can only use Nonbonded methods NoCutoff, CutoffNonPeriodic,CutoffPeriodic when using GBSA");
+    }
+    mapper[GBSA] = mapper_index++;
+    gbsa_force.setCutoffDistance(settings->nonbonded_cutoff/10);
+    gbsa_force.setSolventDielectric(settings->solvent_dielectric);
+    gbsa_force.setSoluteDielectric(settings->solute_dielectric);
+    //it should be guaranteed from the topology object, that the vectors have the same size 
+    for(uint i = 0; i < gbsa_radii.size(); ++i){
+      gbsa_force.addParticle(charges[i],
+                             gbsa_radii[i],
+                             gbsa_scaling[i]);
+    }
+  }
+  //set constraints
+  std::vector<std::pair<Index<2>,std::vector<Real> > > distance_constraints = top->GetDistanceConstraints();
+  if(!distance_constraints.empty()){
+    for(std::vector<std::pair<Index<2>,std::vector<Real> > >::iterator i = distance_constraints.begin();
+        i != distance_constraints.end(); ++i){
+      sys->addConstraint(i->first[0],i->first[1],i->second[0]);
+    }
+  }
+  //set periodic box extents
+  if(geom::Length(settings->periodic_box_extents) > 0){
+    OpenMM::Vec3 x_vec(settings->periodic_box_extents[0]/10,0.0,0.0);
+    OpenMM::Vec3 y_vec(0.0,settings->periodic_box_extents[1]/10,0.0);
+    OpenMM::Vec3 z_vec(0.0,0.0,settings->periodic_box_extents[2]/10);
+    sys->setDefaultPeriodicBoxVectors(x_vec,y_vec,z_vec);
+  }
+  else if(settings->add_nonbonded && 
+           !(settings->nonbonded_method == NoCutoff ||
+            settings->nonbonded_method == CutoffNonPeriodic)){
+    throw ost::Error("Chosen nonbonded method requires to define the periodic box extents!");
+  }
+  //set the CMMMotion removing force if required
+  if(settings->remove_cmm_motion){
+    if(settings->cmm_frequency != settings->cmm_frequency){
+      throw ost::Error("Cannot set CMM Remover without valid cmm_frequency set!");
+    }
+    sys->addForce(new OpenMM::CMMotionRemover(settings->cmm_frequency));
+  }
+  if(settings->add_thermostat){
+    if(settings->thermostat_temperature != settings->thermostat_temperature ||
+       settings->thermostat_collision_frequency != settings->thermostat_collision_frequency){
+      throw ost::Error("Cannot set thermostat without defined temperature and collision frequency!");
+    }
+    OpenMM::AndersenThermostat& thermostat = *new OpenMM::AndersenThermostat(settings->thermostat_temperature, 
+                                                                             settings->thermostat_collision_frequency);
+    sys->addForce(&thermostat);
+  }
+  if(settings->add_barostat){
+    if(geom::Length(settings->periodic_box_extents) == 0){
+      throw ost::Error("If you set a barostat, you also have to set nonzero periodic box extents!");
+    }
+    if(settings->barostat_temperature != settings->barostat_temperature ||
+       settings->barostat_pressure != settings->barostat_pressure ||
+       settings->barostat_frequency != settings->barostat_frequency){
+      throw ost::Error("Cannot set barostat without defined temperature, pressure, and frequency parameters!");
+    }
+    OpenMM::MonteCarloBarostat& barostat = *new OpenMM::MonteCarloBarostat(settings->barostat_pressure,
+                                                                           settings->barostat_temperature,
+                                                                           settings->barostat_frequency);
+    sys->addForce(&barostat);
+  }
+  return sys;
+}
+}}} //ns
diff --git a/modules/mol/mm/src/system_creator.hh b/modules/mol/mm/src/system_creator.hh
new file mode 100644
index 0000000000000000000000000000000000000000..274c9453b3c56e8bb928749f36fdb6e767f53949
--- /dev/null
+++ b/modules/mol/mm/src/system_creator.hh
@@ -0,0 +1,64 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#ifndef OST_MM_SYSTEM_CREATOR_HH
+#define OST_MM_SYSTEM_CREATOR_HH
+
+#include <vector>
+#include <map>
+#include <set>
+
+#include <ost/message.hh>
+#include <ost/mol/entity_handle.hh>
+#include <ost/mol/residue_handle.hh>
+#include <ost/mol/atom_handle.hh>
+#include <ost/mol/mm/forcefield.hh>
+#include <ost/mol/mm/buildingblock.hh>
+#include <ost/mol/mm/block_modifiers.hh>
+#include <ost/mol/mm/settings.hh>
+#include <ost/mol/mm/modeller.hh>
+#include <ost/mol/mm/index.hh>
+#include <ost/mol/mm/topology.hh>
+
+
+#include <time.h>
+
+
+namespace OpenMM{
+  class System;  //hacky way of telling the System is around.
+                 //will be included in source file to avoid
+                 //dependencies on external libraries
+}
+
+namespace ost { namespace mol{ namespace mm{
+
+typedef boost::shared_ptr<OpenMM::System> SystemPtr;
+
+class SystemCreator {
+public:
+  static SystemPtr Create(const TopologyPtr top, 
+                          const SettingsPtr settings,
+                          std::map<FuncType,uint>& mapper);
+
+};
+
+
+}}}//ns
+
+#endif
\ No newline at end of file
diff --git a/modules/mol/mm/src/topology.cc b/modules/mol/mm/src/topology.cc
new file mode 100644
index 0000000000000000000000000000000000000000..448e25490f6b8486b60f44b1e34bb55750d2fbcc
--- /dev/null
+++ b/modules/mol/mm/src/topology.cc
@@ -0,0 +1,1384 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <ost/mol/mm/topology.hh>
+
+
+namespace ost{ namespace mol{ namespace mm{
+
+
+
+Topology::Topology(const std::vector<Real>& masses){
+  num_particles_ = masses.size();
+  atom_masses_ = masses;
+  fudge_lj_ = 1.0;
+  fudge_qq_ = 1.0;
+}
+
+TopologyPtr Topology::Load(const String& filename){
+
+  if (!boost::filesystem::exists(filename)) {
+    std::stringstream ss;
+    ss << "Could not open topology. File '"
+       << filename << "' does not exist";
+    throw ost::io::IOException(ss.str());
+  }
+
+  std::ifstream stream(filename.c_str(), std::ios_base::binary);
+  io::BinaryDataSource ds(stream);
+  TopologyPtr top_p(new Topology);
+  ds >> *top_p;
+  return top_p;
+}
+
+void Topology::Save(const String& filename){
+  std::ofstream stream(filename.c_str(), std::ios_base::binary);
+  io::BinaryDataSink ds(stream);
+  ds << *this;  
+}
+
+uint Topology::AddHarmonicBond(uint index_one,
+                               uint index_two, 
+                               Real bond_length,
+                               Real force_constant){
+
+  if(index_one >= num_particles_ || index_two >= num_particles_){
+    throw ost::Error("Index of bond particle exceeds number of particles present in topology!");
+  }
+  Index<2> index(index_one,index_two);
+  std::vector<Real> parameters;
+  parameters.push_back(bond_length);
+  parameters.push_back(force_constant);
+  harmonic_bonds_.push_back(std::make_pair(index,parameters));
+  return harmonic_bonds_.size()-1;
+}
+
+uint Topology::AddHarmonicAngle(uint index_one,
+                                uint index_two,
+                                uint index_three,
+                                Real angle,
+                                Real force_constant){
+
+  if(uint(index_one) >= num_particles_ || uint(index_two) >= num_particles_ || 
+     uint(index_three) >= num_particles_){
+    throw ost::Error("Index of angle particle exceeds number of particles present in topology!");
+  }
+  Index<3> index(index_one,index_two,index_three); 
+  std::vector<Real> parameters;
+  parameters.push_back(angle);
+  parameters.push_back(force_constant);
+  harmonic_angles_.push_back(std::make_pair(index,parameters));
+  return harmonic_angles_.size()-1;
+}
+
+uint Topology::AddUreyBradleyAngle(uint index_one,
+                                   uint index_two,
+                                   uint index_three,
+                                   Real angle,
+                                   Real angle_force_constant,
+                                   Real bond_length,
+                                   Real bond_force_constant){
+
+  if(index_one >= num_particles_ || index_two >= num_particles_ || 
+     index_three >= num_particles_){
+    throw ost::Error("Index of angle particle exceeds number of particles present in topology!");
+  }
+  Index<3> index(index_one,index_two,index_three); 
+  std::vector<Real> parameters;
+  parameters.push_back(angle);
+  parameters.push_back(angle_force_constant);
+  parameters.push_back(bond_length);
+  parameters.push_back(bond_force_constant);
+  urey_bradley_angles_.push_back(std::make_pair(index,parameters));
+  return urey_bradley_angles_.size()-1;
+}
+
+uint Topology::AddPeriodicDihedral(uint index_one,
+                                   uint index_two,
+                                   uint index_three,
+                                   uint index_four,
+                                   int multiplicity,
+                                   Real phase,
+                                   Real force_constant){
+
+  if(index_one >= num_particles_ || index_two >= num_particles_||
+     index_three >= num_particles_ || index_four >= num_particles_){
+    throw ost::Error("Index of dihedral particle exceeds number of particles present in topology!");
+  }
+  Index<4> index(index_one,index_two,index_three,index_four);
+  std::vector<Real> parameters;
+  parameters.push_back(multiplicity);
+  parameters.push_back(phase);
+  parameters.push_back(force_constant);
+  periodic_dihedrals_.push_back(std::make_pair(index,parameters));
+  return periodic_dihedrals_.size()-1;
+}
+
+uint Topology::AddPeriodicImproper(uint index_one,
+                                   uint index_two,
+                                   uint index_three,
+                                   uint index_four,
+                                   int multiplicity,
+                                   Real phase,
+                                   Real force_constant){
+
+  if(index_one >= num_particles_ || index_two >= num_particles_||
+     index_three >= num_particles_ || index_four >= num_particles_){
+    throw ost::Error("Index of improper particle exceeds number of particles present in topology!");
+  }
+  Index<4> index(index_one,index_two,index_three,index_four);
+  std::vector<Real> parameters;
+  parameters.push_back(multiplicity);
+  parameters.push_back(phase);
+  parameters.push_back(force_constant);
+  periodic_impropers_.push_back(std::make_pair(index,parameters));
+  return periodic_impropers_.size()-1;
+}
+
+uint Topology::AddHarmonicImproper(uint index_one,
+                                   uint index_two,
+                                   uint index_three,
+                                   uint index_four,
+                                   Real angle,
+                                   Real force_constant){
+
+  if(index_one >= num_particles_ || index_two >= num_particles_||
+     index_three >= num_particles_ || index_four >= num_particles_){
+    throw ost::Error("Index of improper particle exceeds number of particles present in topology!");
+  }
+  Index<4> index(index_one,index_two,index_three,index_four);
+  std::vector<Real> parameters;
+  parameters.push_back(angle);
+  parameters.push_back(force_constant);
+  harmonic_impropers_.push_back(std::make_pair(index,parameters));
+  return harmonic_impropers_.size()-1;
+}
+
+uint Topology::AddCMap(uint index_one,
+                       uint index_two,
+                       uint index_three,
+                       uint index_four,
+                       uint index_five,
+                       int dimension,
+                       std::vector<Real> values){
+
+  if(index_one >= num_particles_ || index_two >= num_particles_ ||
+     index_three >= num_particles_ || index_four >= num_particles_ ||
+     index_five >= num_particles_){
+    throw ost::Error("Index of cmap particle exceeds number of particles present in topology!");
+  }
+  if(uint(dimension * dimension) != values.size()){
+    throw ost::Error("Dimension of CMap is inconsistent with its values!");
+  }
+  Index<5> index(index_one,index_two,index_three,index_four,index_five);
+  cmaps_.push_back(std::make_pair(index,values));
+  return cmaps_.size()-1;
+}
+
+uint Topology::AddLJPair(uint index_one, 
+                         uint index_two,
+                         Real sigma,
+                         Real epsilon){
+
+  if(index_one >= num_particles_ || index_two >= num_particles_){
+    throw ost::Error("Index of lj pair particle exceeds number of particles present in topology!");
+  }
+  Index<2> index(index_one,index_two);
+  Index<2> reverse_index(index_two,index_one);
+  if(added_lj_pairs_.find(index) != added_lj_pairs_.end() || added_lj_pairs_.find(reverse_index) != added_lj_pairs_.end()){
+    throw ost::Error("This particular lj 1,4-interaction is already parametrized!");
+  }
+  added_lj_pairs_.insert(index);
+  std::vector<Real> parameters;
+  parameters.push_back(sigma);
+  parameters.push_back(epsilon);
+  lj_pairs_.push_back(std::make_pair(index,parameters));
+  return lj_pairs_.size()-1;
+}
+
+uint Topology::AddExclusion(uint index_one,
+                            uint index_two){
+  Index<2> index(index_one,index_two);
+  Index<2> reverse_index(index_two,index_one);
+  if(index_one >= num_particles_ || index_two >= num_particles_){
+    throw ost::Error("Index of exclusion particle exceeds number of particles present in topology!");
+  }
+  if(added_exclusions_.find(index) != added_exclusions_.end() || added_exclusions_.find(reverse_index) != added_exclusions_.end()){
+    throw ost::Error("This particular exclusion has already been set!");
+  }
+  added_exclusions_.insert(index);
+  exclusions_.push_back(index);
+  return exclusions_.size()-1;
+}
+
+uint Topology::AddDistanceConstraint(uint index_one, 
+                                     uint index_two,
+                                     Real distance){
+
+  if(index_one >= num_particles_ || index_two >= num_particles_){
+    throw ost::Error("Index of distance constraint atom exceeds number of particles present in topology!");
+  }
+  Index<2> index(index_one,index_two);
+  Index<2> reverse_index(index_two,index_one);
+  if(added_distance_constraints_.find(index) != added_distance_constraints_.end() || added_distance_constraints_.find(reverse_index) != added_distance_constraints_.end()){
+    throw ost::Error("This particular distance constraint is already parametrized!");
+  }
+  added_distance_constraints_.insert(index);
+  std::vector<Real> parameters;
+  parameters.push_back(distance);
+  distance_constraints_.push_back(std::make_pair(index,parameters));
+  return distance_constraints_.size()-1;
+}
+
+void Topology::AddPositionConstraint(uint index){
+  if(index >= num_particles_){
+    throw ost::Error("Index of position constraint exceeds number of particles present in topology!");
+  }
+  std::vector<uint>::iterator it = std::find(position_constraints_.begin(),position_constraints_.end(),index);
+  if(it != position_constraints_.end()) return; //already present
+  position_constraints_.push_back(index);
+}
+
+uint Topology::AddHarmonicPositionRestraint(uint ind, const geom::Vec3& ref_position, Real k, 
+                                            Real x_scale, Real y_scale, Real z_scale){
+  if(ind >= num_particles_){
+    throw ost::Error("Index of harmonic distance constraint exceeds number of particles present in topology!");
+  }
+  Index<1> index(ind);
+  std::vector<Real> parameters;
+  parameters.push_back(ref_position[0]);
+  parameters.push_back(ref_position[1]);
+  parameters.push_back(ref_position[2]);
+  parameters.push_back(k);
+  parameters.push_back(x_scale);
+  parameters.push_back(y_scale);
+  parameters.push_back(z_scale);
+
+  harmonic_position_restraints_.push_back(std::make_pair(index,parameters));
+  return harmonic_position_restraints_.size()-1;
+}
+
+uint Topology::AddHarmonicDistanceRestraint(uint index_one, uint index_two,
+                                            Real length, Real force_constant){
+  if(index_one >= num_particles_ || index_two >= num_particles_){
+    throw ost::Error("Index of distance restraint atom exceeds number of particles present in topology!");
+  }
+  Index<2> index(index_one,index_two);
+  std::vector<Real> parameters;
+  parameters.push_back(length);
+  parameters.push_back(force_constant);
+  harmonic_distance_restraints_.push_back(std::make_pair(index,parameters));
+  return harmonic_distance_restraints_.size()-1;
+}
+
+uint Topology::AddFGMDHBondDonor(uint index_one, uint index_two,
+                                 Real length, Real k_length, Real alpha, 
+                                 Real k_alpha, Real beta, Real k_beta){
+  if(index_one >= num_particles_ || index_two >= num_particles_){
+    throw ost::Error("Index of fgmd hbond donor atom exceeds number of particles present in topology!");
+  }
+  Index<2> index(index_one,index_two);
+  std::vector<Real> parameters;
+  parameters.push_back(length);
+  parameters.push_back(k_length);
+  parameters.push_back(alpha);
+  parameters.push_back(k_alpha);
+  parameters.push_back(beta);
+  parameters.push_back(k_beta);
+  fgmd_hbond_donors_.push_back(std::make_pair(index,parameters));
+  return fgmd_hbond_donors_.size()-1;
+}
+
+uint Topology::AddFGMDHBondAcceptor(uint index_one, uint index_two){
+  if(index_one >= num_particles_ || index_two >= num_particles_){
+    throw ost::Error("Index of fgmd hbond acceptor atom exceeds number of particles present in topology!");
+  }
+  Index<2> index(index_one,index_two);
+  fgmd_hbond_acceptors_.push_back(index);
+  return fgmd_hbond_acceptors_.size()-1;
+}
+
+void Topology::SetSigmas(const std::vector<Real>& sigmas){
+  if(sigmas.size() != num_particles_){
+    throw ost::Error("Expect the same number of sigma parameters than particles!");
+  }
+  sigmas_ = sigmas;
+}
+
+void Topology::SetSigma(uint index, Real sigma){
+  if(sigmas_.empty()){
+    throw ost::Error("Modification of sigma parameter requires initial assignment of sigma parameters in globo!");
+  }
+  if(index >= num_particles_){
+    throw ost::Error("Given particle index exceeds number of available particles!");
+  }
+  sigmas_[index] = sigma;
+}
+
+void Topology::SetEpsilons(const std::vector<Real>& epsilons){
+  if(epsilons.size() != num_particles_){
+    throw ost::Error("Expect the same number of epsilon parameters than particles!");
+  }
+  epsilons_ = epsilons;
+}
+
+void Topology::SetEpsilon(uint index, Real epsilon){
+  if(epsilons_.empty()){
+    throw ost::Error("Modification of epsilon parameter requires initial assignment of epsilon parameters in globo!");
+  }
+  if(index >= num_particles_){
+    throw ost::Error("Given particle index exceeds number of available particles!");
+  }
+  epsilons_[index] = epsilon;
+}
+
+void Topology::SetGBSARadii(const std::vector<Real>& gbsa_radii){
+  if(gbsa_radii.size() != num_particles_){
+    throw ost::Error("Expect the same number of gbsa parameters than particles!");
+  }
+  gbsa_radii_ = gbsa_radii;
+}
+
+void Topology::SetGBSARadius(uint index, Real radius){
+  if(gbsa_radii_.empty()){
+    throw ost::Error("Modification of gbsa radius requires initial assignment of gbsa radii in globo!");
+  }
+  if(index >= num_particles_){
+    throw ost::Error("Given particle index exceeds number of available particles!");
+  }
+  gbsa_radii_[index] = radius;
+}
+
+void Topology::SetOBCScalings(const std::vector<Real>& obc_scaling){
+  if(obc_scaling.size() != num_particles_){
+    throw ost::Error("Expect the same number of gbsa parameters than particles!");
+  }
+  obc_scaling_ = obc_scaling;
+}
+
+void Topology::SetOBCScaling(uint index, Real scaling){
+  if(obc_scaling_.empty()){
+    throw ost::Error("Modification of obc scaling parameter requires initial assignment of obc scaling parameters in globo!");
+  }
+  if(index >= num_particles_){
+    throw ost::Error("Given particle index exceeds number of available particles!");
+  }
+  obc_scaling_[index] = scaling;
+}
+
+void Topology::SetCharges(const std::vector<Real>& charges){
+  if(charges.size() != num_particles_){
+    throw ost::Error("Expect the same number of charges than particles!");
+  }
+  charges_ = charges;
+}
+
+void Topology::SetCharge(uint index, Real charge){
+  if(charges_.empty()){
+    throw ost::Error("Modification of charge parameter requires initial assignment of charges in globo!");
+  }
+  if(index >= num_particles_){
+    throw ost::Error("Given particle index exceeds number of available particles!");
+  }
+  charges_[index] = charge;  
+}
+
+void Topology::SetMasses(const std::vector<Real>& masses){
+  if(masses.size() != num_particles_){
+    throw ost::Error("Expect masses vector to have the same number of elements than particles in the topologies entity!");
+  }
+  atom_masses_ = masses;
+}
+
+void Topology::SetMass(uint index, Real mass){
+  if(atom_masses_.empty()){
+    throw ost::Error("Modification of mass parameter requires initial assignment of masses in globo!");
+  }
+  if(index >= num_particles_){
+    throw ost::Error("Given particle index exceeds number of available particles!");
+  }
+  atom_masses_[index] = mass;
+
+}
+
+
+void Topology::GetHarmonicBondParameters(uint index, uint& index_one, uint& index_two,
+                                         Real& bond_length, Real& force_constant) const{
+  if(index >= harmonic_bonds_.size()){
+    throw ost::Error("Provided index exceeds number of harmonic bonds present in topology!");
+  }
+  bond_length = harmonic_bonds_[index].second[0];
+  force_constant = harmonic_bonds_[index].second[1];
+  index_one = harmonic_bonds_[index].first[0];
+  index_two = harmonic_bonds_[index].first[1];
+}
+
+void Topology::GetHarmonicAngleParameters(uint index, uint& index_one, uint& index_two, uint& index_three,
+                                          Real& angle, Real& force_constant) const{
+  if(index >= harmonic_angles_.size()){
+    throw ost::Error("Provided index exceeds number of harmonic angles present in topology!");
+  }
+  angle = harmonic_angles_[index].second[0];
+  force_constant = harmonic_angles_[index].second[1];
+  index_one = harmonic_angles_[index].first[0];
+  index_two = harmonic_angles_[index].first[1];
+  index_three = harmonic_angles_[index].first[2];
+}
+
+void Topology::GetUreyBradleyAngleParameters(uint index, uint& index_one, uint& index_two, uint& index_three,
+                                             Real& angle, Real& angle_force_constant, Real& bond_length, Real& bond_force_constant) const{
+  if(index >= urey_bradley_angles_.size()){
+    throw ost::Error("Provided index exceeds number of urey_bradley angles present in topology!");
+  }
+  angle = urey_bradley_angles_[index].second[0];
+  angle_force_constant = urey_bradley_angles_[index].second[1];
+  bond_length = urey_bradley_angles_[index].second[2];
+  bond_force_constant = urey_bradley_angles_[index].second[3];
+  index_one = urey_bradley_angles_[index].first[0];
+  index_two = urey_bradley_angles_[index].first[1];
+  index_three = urey_bradley_angles_[index].first[2];
+}
+
+void Topology::GetPeriodicDihedralParameters(uint index, uint& index_one, uint& index_two, uint& index_three, uint& index_four,
+                                             int& multiplicity, Real& phase, Real& force_constant) const{
+  if(index >= periodic_dihedrals_.size()){
+    throw ost::Error("Provided index exceeds number of periodic dihedrals present in topology!");
+  }
+  multiplicity = int(periodic_dihedrals_[index].second[0]);
+  phase = periodic_dihedrals_[index].second[1];
+  force_constant = periodic_dihedrals_[index].second[2];
+  index_one = periodic_dihedrals_[index].first[0];
+  index_two = periodic_dihedrals_[index].first[1];
+  index_three = periodic_dihedrals_[index].first[2];
+  index_four = periodic_dihedrals_[index].first[3];
+}
+
+void Topology::GetPeriodicImproperParameters(uint index, uint& index_one, uint& index_two, uint& index_three, uint& index_four,
+                                             int& multiplicity, Real& phase, Real& force_constant) const{
+  if(index >= periodic_impropers_.size()){
+    throw ost::Error("Provided index exceeds number of periodic impropers present in topology!");
+  }
+  multiplicity = int(periodic_impropers_[index].second[0]);
+  phase = periodic_impropers_[index].second[1];
+  force_constant = periodic_impropers_[index].second[2];
+  index_one = periodic_impropers_[index].first[0];
+  index_two = periodic_impropers_[index].first[1];
+  index_three = periodic_impropers_[index].first[2];
+  index_four = periodic_impropers_[index].first[3];
+}
+
+void Topology::GetHarmonicImproperParameters(uint index, uint& index_one, uint& index_two, uint& index_three, uint& index_four,
+                                             Real& angle, Real& force_constant) const{
+  if(index >= harmonic_impropers_.size()){
+    throw ost::Error("Provided index exceeds number of harmonic impropers present in topology!");
+  }
+  angle = harmonic_impropers_[index].second[0];
+  force_constant = harmonic_impropers_[index].second[1];
+  index_one = harmonic_impropers_[index].first[0];
+  index_two = harmonic_impropers_[index].first[1];
+  index_three = harmonic_impropers_[index].first[2];
+  index_four = harmonic_impropers_[index].first[3];
+}
+
+void Topology::GetCMapParameters(uint index, uint& index_one, uint& index_two, uint& index_three, uint& index_four, uint& index_five,
+                                 int& dimension, std::vector<Real>& map) const{
+  if(index >= cmaps_.size()){
+    throw ost::Error("Provided index exceeds number of cmaps present in topology!");
+  }
+  dimension = int(sqrt(cmaps_[index].second.size()));
+  map = cmaps_[index].second;
+  index_one = cmaps_[index].first[0];
+  index_two = cmaps_[index].first[1];
+  index_three = cmaps_[index].first[2];
+  index_four = cmaps_[index].first[3];
+  index_five = cmaps_[index].first[4];
+  
+}
+
+void Topology::GetLJPairParameters(uint index, uint& index_one, uint& index_two,
+                                   Real& sigma, Real& epsilon) const{
+  if(index >= lj_pairs_.size()){
+    throw ost::Error("Provided index exceeds number of lj pairs present in topology!");
+  }
+  sigma = lj_pairs_[index].second[0];
+  epsilon = lj_pairs_[index].second[1];
+  index_one = lj_pairs_[index].first[0];
+  index_two = lj_pairs_[index].first[1];
+}
+
+void Topology::GetDistanceConstraintParameters(uint index, uint& index_one, uint& index_two,
+                                               Real& distance) const{
+  if(index >= distance_constraints_.size()){
+    throw ost::Error("Provided index exceeds number of distance_constraints present in topology!");
+  }
+  distance = distance_constraints_[index].second[0];
+  index_one = distance_constraints_[index].first[0];
+  index_two = distance_constraints_[index].first[1];
+}
+
+void Topology::GetHarmonicPositionRestraintParameters(uint index, uint& atom_index, geom::Vec3& ref_position,
+                                               Real& k, Real& x_scale, Real& y_scale, Real& z_scale) const{
+  if(index >= harmonic_position_restraints_.size()){
+    throw ost::Error("Provided index exceeds numnber of harmonic position constraints present in topology!");
+  }
+  atom_index = harmonic_position_restraints_[index].first[0];
+  ref_position[0] = harmonic_position_restraints_[index].second[0];
+  ref_position[1] = harmonic_position_restraints_[index].second[1];
+  ref_position[2] = harmonic_position_restraints_[index].second[2];
+  k = harmonic_position_restraints_[index].second[3];
+  x_scale = harmonic_position_restraints_[index].second[4];
+  y_scale = harmonic_position_restraints_[index].second[5];
+  z_scale = harmonic_position_restraints_[index].second[6];
+}
+
+void Topology::GetHarmonicDistanceRestraintParameters(uint index, uint& atom_one, uint& atom_two, Real& length,
+                                            Real& force_constant) const{
+  if(index >= harmonic_distance_restraints_.size()){
+    throw ost::Error("Provided index exceeds number of harmonic distance restraints present in topology!");
+  }
+  atom_one = harmonic_distance_restraints_[index].first[0];
+  atom_two = harmonic_distance_restraints_[index].first[1];
+  length = harmonic_distance_restraints_[index].second[0];
+  force_constant = harmonic_distance_restraints_[index].second[1];
+}
+
+void Topology::GetFGMDHBondDonorParameters(uint index, uint& atom_one, uint& atom_two, Real& length,
+                                           Real& k_length, Real& alpha, Real& k_alpha,
+                                           Real& beta, Real& k_beta) const{
+  if(index >= fgmd_hbond_donors_.size()){
+    throw ost::Error("Provided index exceeds number of fgmd hbond donors present in topology!");
+  }
+  atom_one = harmonic_distance_restraints_[index].first[0];
+  atom_two = harmonic_distance_restraints_[index].first[1];
+  length = fgmd_hbond_donors_[index].second[0];
+  k_length = fgmd_hbond_donors_[index].second[1];  
+  alpha = fgmd_hbond_donors_[index].second[2];
+  k_alpha = fgmd_hbond_donors_[index].second[3];
+  beta = fgmd_hbond_donors_[index].second[4];
+  k_beta = fgmd_hbond_donors_[index].second[5];
+}
+
+void Topology::GetFGMDHBondAcceptorParameters(uint index, uint& atom_one, uint& atom_two) const{
+  if(index >= fgmd_hbond_acceptors_.size()){
+    throw ost::Error("Provided index exceeds number of fgmd hbond acceptors present in topology!");
+  }
+  atom_one = fgmd_hbond_acceptors_[index][0];
+  atom_two = fgmd_hbond_acceptors_[index][1];
+}
+
+void Topology::SetHarmonicBondParameters(uint index, const Real bond_length, const Real force_constant){
+  if(index >= harmonic_bonds_.size()){
+    throw ost::Error("Provided index exceeds number of harmonic bonds present in topology!");
+  }
+  harmonic_bonds_[index].second[0] = bond_length;
+  harmonic_bonds_[index].second[1] = force_constant;
+}
+
+void Topology::SetHarmonicAngleParameters(uint index, const Real angle, const Real force_constant){
+  if(index >= harmonic_angles_.size()){
+    throw ost::Error("Provided index exceeds number of harmonic angles present in topology!");
+  }
+  harmonic_angles_[index].second[0] = angle;
+  harmonic_angles_[index].second[1] = force_constant;
+}
+
+void Topology::SetUreyBradleyAngleParameters(uint index, const Real angle, const Real angle_force_constant, const Real bond_length, const Real bond_force_constant){
+  if(index >= urey_bradley_angles_.size()){
+    throw ost::Error("Provided index exceeds number of urey_bradley angles present in topology!");
+  }
+  urey_bradley_angles_[index].second[0] = angle;
+  urey_bradley_angles_[index].second[1] = angle_force_constant;
+  urey_bradley_angles_[index].second[2] = bond_length;
+  urey_bradley_angles_[index].second[3] = bond_force_constant;
+}
+
+void Topology::SetPeriodicDihedralParameters(uint index, const int multiplicity, const Real phase, const Real force_constant){
+  if(index >= periodic_dihedrals_.size()){
+    throw ost::Error("Provided index exceeds number of periodic dihedrals present in topology!");
+  }
+  periodic_dihedrals_[index].second[0] = multiplicity;
+  periodic_dihedrals_[index].second[1] = phase;
+  periodic_dihedrals_[index].second[2] = force_constant;
+}
+
+void Topology::SetPeriodicImproperParameters(uint index, const int multiplicity, const Real phase, const Real force_constant){
+  if(index >= periodic_impropers_.size()){
+    throw ost::Error("Provided index exceeds number of periodic impropers present in topology!");
+  }
+  periodic_impropers_[index].second[0] = multiplicity;
+  periodic_impropers_[index].second[1] = phase;
+  periodic_impropers_[index].second[2] = force_constant;
+}
+
+void Topology::SetHarmonicImproperParameters(uint index, const Real angle, const Real force_constant){
+  if(index >= harmonic_impropers_.size()){
+    throw ost::Error("Provided index exceeds number of harmonic impropers present in topology!");
+  }
+  harmonic_impropers_[index].second[0] = angle;
+  harmonic_impropers_[index].second[1] = force_constant;
+}
+
+void Topology::SetCMapParameters(uint index, const int dimension, const std::vector<Real>& map){
+  if(index >= cmaps_.size()){
+    throw ost::Error("Provided index exceeds number of cmaps present in topology!");
+  }
+  if(uint(dimension * dimension) != map.size()){
+    throw ost::Error("Provided dimension and map are inconsistent!");
+  }
+  cmaps_[index].second = map;
+}
+
+void Topology::SetLJPairParameters(uint index, const Real sigma, const Real epsilon){
+  if(index >= lj_pairs_.size()){
+    throw ost::Error("Provided index exceeds number of lj pairs present in topology!");
+  }
+  lj_pairs_[index].second[0] = sigma;
+  lj_pairs_[index].second[1] = epsilon;
+}
+
+void Topology::SetDistanceConstraintParameters(uint index, const Real distance){
+  if(index >= distance_constraints_.size()){
+    throw ost::Error("Provided index exceeds number of distance_constraints present in topology!");
+  }
+  distance_constraints_[index].second[0] = distance;
+}
+
+void Topology::SetHarmonicPositionRestraintParameters(uint index, const geom::Vec3& ref_position, Real k, 
+                                                      Real x_scale, Real y_scale, Real z_scale){
+  if(index >= harmonic_position_restraints_.size()){
+    throw ost::Error("Provided index exceeds number of harmonic position restraints present in topology!");
+  }
+  harmonic_position_restraints_[index].second[0] = ref_position[0];
+  harmonic_position_restraints_[index].second[1] = ref_position[1];
+  harmonic_position_restraints_[index].second[2] = ref_position[2];
+  harmonic_position_restraints_[index].second[3] = k;
+  harmonic_position_restraints_[index].second[4] = x_scale;
+  harmonic_position_restraints_[index].second[5] = y_scale;
+  harmonic_position_restraints_[index].second[6] = z_scale;
+}
+
+void Topology::SetHarmonicDistanceRestraintParameters(uint index, Real length, 
+                                                      Real force_constant){
+  if(index >= harmonic_distance_restraints_.size()){
+    throw ost::Error("Provided index exceeds number of harmonic distance restraints present in topology!");
+  }
+  harmonic_distance_restraints_[index].second[0] = length;
+  harmonic_distance_restraints_[index].second[1] = force_constant; 
+}
+
+void Topology::SetFGMDHBondDonorParameters(uint index, Real length, Real k_length, 
+                                           Real alpha, Real k_alpha, Real beta, Real k_beta){
+  if(index >= fgmd_hbond_donors_.size()){
+    throw ost::Error("Provided index exceeds number of fgmd donors present in topology!");
+  }
+  fgmd_hbond_donors_[index].second[0] = length;
+  fgmd_hbond_donors_[index].second[1] = k_length;
+  fgmd_hbond_donors_[index].second[2] = alpha; 
+  fgmd_hbond_donors_[index].second[3] = k_alpha; 
+  fgmd_hbond_donors_[index].second[4] = beta; 
+  fgmd_hbond_donors_[index].second[5] = k_beta; 
+}
+
+Real Topology::GetMass(uint index) const{
+  if(index >= num_particles_) throw ost::Error("Provided index exceeds number of particles present in topology!");
+  return atom_masses_[index];
+}
+
+Real Topology::GetSigma(uint index) const{
+  if(index >= num_particles_) throw ost::Error("Provided index exceeds number of particles present in topology!");
+  if(sigmas_.empty()) throw ost::Error("No sigmas set!");
+  return sigmas_[index];
+}
+
+Real Topology::GetEpsilon(uint index) const{
+  if(index >= num_particles_) throw ost::Error("Provided index exceeds number of particles present in topology!");
+  if(epsilons_.empty()) throw ost::Error("No epsilons set!");
+  return epsilons_[index];
+}
+
+Real Topology::GetGBSARadius(uint index) const{
+  if(index >= num_particles_) throw ost::Error("Provided index exceeds number of particles present in topology!");
+  if(gbsa_radii_.empty()) throw ost::Error("No gbsa radii set!");
+  return gbsa_radii_[index];
+}
+
+Real Topology::GetOBCScaling(uint index) const{
+  if(index >= num_particles_) throw ost::Error("Provided index exceeds number of particles present in topology!");
+  if(obc_scaling_.empty()) throw ost::Error("No obc scalings set!");
+  return obc_scaling_[index];
+}
+
+
+Real Topology::GetCharge(uint index) const{
+  if(index >= num_particles_) throw ost::Error("Provided index exceeds number of particles present in topology!");
+  if(charges_.empty()) throw ost::Error("No charges set!");
+  return charges_[index];
+}
+
+std::vector<uint> Topology::GetHarmonicBondIndices(uint index_one,
+                                                    uint index_two) const{
+  Index<2> index(index_one,index_two);
+  Index<2> reverse_index(index_two,index_one);
+  std::vector<uint> return_indices;
+  for(uint i = 0; i < harmonic_bonds_.size(); ++i){
+    if(index == harmonic_bonds_[i].first || reverse_index == harmonic_bonds_[i].first){
+      return_indices.push_back(i);
+    }
+  }
+  return return_indices;
+}
+
+std::vector<uint> Topology::GetHarmonicAngleIndices(uint index_one,
+                                                     uint index_two,
+                                                     uint index_three) const{
+  Index<3> index(index_one,index_two,index_three);
+  Index<3> reverse_index(index_three,index_two,index_one);
+  std::vector<uint> return_indices;
+  for(uint i = 0; i < harmonic_angles_.size(); ++i){
+    if(index == harmonic_angles_[i].first || reverse_index == harmonic_angles_[i].first){
+      return_indices.push_back(i);
+    }
+  }
+  return return_indices;
+}
+
+std::vector<uint> Topology::GetUreyBradleyAngleIndices(uint index_one,
+                                                        uint index_two,
+                                                        uint index_three) const{
+  Index<3> index(index_one,index_two,index_three);
+  Index<3> reverse_index(index_three,index_two,index_one);
+  std::vector<uint> return_indices;
+  for(uint i = 0; i < urey_bradley_angles_.size(); ++i){
+    if(index == urey_bradley_angles_[i].first || reverse_index == urey_bradley_angles_[i].first){
+      return_indices.push_back(i);
+    }
+  }
+  return return_indices;
+}
+
+std::vector<uint> Topology::GetPeriodicDihedralIndices(uint index_one,
+                                                        uint index_two,
+                                                        uint index_three,
+                                                        uint index_four) const{
+  Index<4> index(index_one,index_two,index_three,index_four);
+  Index<4> reverse_index(index_four,index_three,index_two,index_one);
+  std::vector<uint> return_indices;
+  for(uint i = 0; i < periodic_dihedrals_.size(); ++i){
+    if(index == periodic_dihedrals_[i].first || reverse_index == periodic_dihedrals_[i].first){
+      return_indices.push_back(i);
+    }
+  }
+  return return_indices;
+}
+
+std::vector<uint> Topology::GetPeriodicImproperIndices(uint index_one,
+                                                        uint index_two,
+                                                        uint index_three,
+                                                        uint index_four) const{
+  Index<4> index(index_one,index_two,index_three,index_four);
+  Index<4> reverse_index(index_four,index_three,index_two,index_one);
+  std::vector<uint> return_indices;
+  for(uint i = 0; i < periodic_impropers_.size(); ++i){
+    if(index == periodic_impropers_[i].first || reverse_index == periodic_impropers_[i].first){
+      return_indices.push_back(i);
+    }
+  }
+  return return_indices;
+}
+
+std::vector<uint> Topology::GetHarmonicImproperIndices(uint index_one,
+                                                        uint index_two,
+                                                        uint index_three,
+                                                        uint index_four) const{
+  Index<4> index(index_one,index_two,index_three,index_four);
+  Index<4> reverse_index(index_four,index_three,index_two,index_one);
+  std::vector<uint> return_indices;
+  for(uint i = 0; i < harmonic_impropers_.size(); ++i){
+    if(index == harmonic_impropers_[i].first || reverse_index == harmonic_impropers_[i].first){
+      return_indices.push_back(i);
+    }
+  }
+  return return_indices;
+}
+
+std::vector<uint> Topology::GetCMapIndices(uint index_one,
+                                            uint index_two,
+                                            uint index_three,
+                                            uint index_four,
+                                            uint index_five) const{
+  //note, that in case of cmaps the order of the atoms matters
+  Index<5> index(index_one,index_two,index_three,index_four,index_five);
+  std::vector<uint> return_indices;
+  for(uint i = 0; i < cmaps_.size(); ++i){
+    if(index == cmaps_[i].first){
+      return_indices.push_back(i);
+    }
+  }
+  return return_indices;
+}
+
+int Topology::GetLJPairIndex(uint index_one,
+                                             uint index_two) const{
+  Index<2> index(index_one,index_two);
+  Index<2> reverse_index(index_two,index_one);
+  for(uint i = 0; i < lj_pairs_.size(); ++i){
+    if(index == lj_pairs_[i].first || reverse_index == lj_pairs_[i].first){
+      return i;
+    }
+  }
+  return -1;
+}
+
+int Topology::GetDistanceConstraintIndex(uint index_one,
+                                         uint index_two) const{
+  Index<2> index(index_one,index_two);
+  Index<2> reverse_index(index_two,index_one);
+  for(uint i = 0; i < distance_constraints_.size(); ++i){
+    if(index == distance_constraints_[i].first || reverse_index == distance_constraints_[i].first){
+      return i;
+    }
+  }
+  return -1;
+}
+
+std::vector<uint> Topology::GetHarmonicPositionRestraintIndices(uint atom_index) const{
+  Index<1> index(atom_index);
+  std::vector<uint> return_indices;
+  for(uint i = 0; i < harmonic_position_restraints_.size(); ++i){
+    if(index == harmonic_position_restraints_[i].first){
+      return_indices.push_back(i);
+    }
+  }
+  return return_indices;
+}
+
+std::vector<uint> Topology::GetHarmonicDistanceRestraintIndices(uint index_one, uint index_two) const{
+
+  Index<2> index(index_one,index_two);
+  Index<2> reverse_index(index_two,index_one);
+  std::vector<uint> return_indices;
+  for(uint i = 0; i < harmonic_distance_restraints_.size(); ++i){
+    if(index == harmonic_distance_restraints_[i].first || reverse_index == harmonic_distance_restraints_[i].first){
+      return_indices.push_back(i);
+    }
+  }
+  return return_indices;
+}
+
+std::vector<uint> Topology::GetFGMDHBondDonorIndices(uint index_one, uint index_two) const{
+
+  Index<2> index(index_one,index_two);
+  Index<2> reverse_index(index_two,index_one);
+  std::vector<uint> return_indices;
+  for(uint i = 0; i < fgmd_hbond_donors_.size(); ++i){
+    if(index == fgmd_hbond_donors_[i].first || reverse_index == fgmd_hbond_donors_[i].first){
+      return_indices.push_back(i);
+    }
+  }
+  return return_indices;
+}
+
+std::vector<uint> Topology::GetFGMDHBondAcceptorIndices(uint index_one, uint index_two) const{
+
+  Index<2> index(index_one,index_two);
+  Index<2> reverse_index(index_two,index_one);
+  std::vector<uint> return_indices;
+  for(uint i = 0; i < fgmd_hbond_acceptors_.size(); ++i){
+    if(index == fgmd_hbond_acceptors_[i] || reverse_index == fgmd_hbond_acceptors_[i]){
+      return_indices.push_back(i);
+    }
+  }
+  return return_indices;
+}
+
+std::vector<uint> Topology::GetHarmonicBondIndices(uint atom_index) const{
+  std::vector<uint> return_indices;
+  for(uint i = 0; i < harmonic_bonds_.size(); ++i){
+    if(harmonic_bonds_[i].first[0] == atom_index || harmonic_bonds_[i].first[1] == atom_index){
+      return_indices.push_back(i);
+    }
+  }
+  return return_indices;
+}
+
+std::vector<uint> Topology::GetHarmonicAngleIndices(uint atom_index) const{
+  std::vector<uint> return_indices;
+  for(uint i = 0; i < harmonic_angles_.size(); ++i){
+    if(harmonic_angles_[i].first[0] == atom_index || harmonic_angles_[i].first[1] == atom_index ||
+       harmonic_angles_[i].first[2] == atom_index){
+      return_indices.push_back(i);
+    }
+  }
+  return return_indices;
+}
+
+std::vector<uint> Topology::GetUreyBradleyAngleIndices(uint atom_index) const{
+  std::vector<uint> return_indices;
+  for(uint i = 0; i < urey_bradley_angles_.size(); ++i){
+    if(urey_bradley_angles_[i].first[0] == atom_index || urey_bradley_angles_[i].first[1] == atom_index ||
+       urey_bradley_angles_[i].first[2] == atom_index){
+      return_indices.push_back(i);
+    }
+  }
+  return return_indices;
+}
+
+std::vector<uint> Topology::GetPeriodicDihedralIndices(uint atom_index) const{
+  std::vector<uint> return_indices;
+  for(uint i = 0; i < periodic_dihedrals_.size(); ++i){
+    if(periodic_dihedrals_[i].first[0] == atom_index || periodic_dihedrals_[i].first[1] == atom_index ||
+       periodic_dihedrals_[i].first[2] == atom_index || periodic_dihedrals_[i].first[3] == atom_index){
+      return_indices.push_back(i);
+    }
+  }
+  return return_indices;
+}
+
+std::vector<uint> Topology::GetPeriodicImproperIndices(uint atom_index) const{
+  std::vector<uint> return_indices;
+  for(uint i = 0; i < periodic_impropers_.size(); ++i){
+    if(periodic_impropers_[i].first[0] == atom_index || periodic_impropers_[i].first[1] == atom_index ||
+       periodic_impropers_[i].first[2] == atom_index || periodic_impropers_[i].first[3] == atom_index){
+      return_indices.push_back(i);
+    }
+  }
+  return return_indices;
+}
+
+std::vector<uint> Topology::GetHarmonicImproperIndices(uint atom_index) const{
+  std::vector<uint> return_indices;
+  for(uint i = 0; i < harmonic_impropers_.size(); ++i){
+    if(harmonic_impropers_[i].first[0] == atom_index || harmonic_impropers_[i].first[1] == atom_index ||
+       harmonic_impropers_[i].first[2] == atom_index || harmonic_impropers_[i].first[3] == atom_index){
+      return_indices.push_back(i);
+    }
+  }
+  return return_indices;
+}
+
+std::vector<uint> Topology::GetCMapIndices(uint atom_index) const{
+  std::vector<uint> return_indices;
+  for(uint i = 0; i < cmaps_.size(); ++i){
+    if(cmaps_[i].first[0] == atom_index || cmaps_[i].first[1] == atom_index ||
+       cmaps_[i].first[2] == atom_index || cmaps_[i].first[3] == atom_index ||
+       cmaps_[i].first[4] == atom_index){
+      return_indices.push_back(i);
+    }
+  }
+  return return_indices;
+}
+
+std::vector<uint> Topology::GetLJPairIndices(uint atom_index) const{
+  std::vector<uint> return_indices;
+  for(uint i = 0; i < lj_pairs_.size(); ++i){
+    if(lj_pairs_[i].first[0] == atom_index || lj_pairs_[i].first[1] == atom_index){
+      return_indices.push_back(i);
+    }
+  }
+  return return_indices;
+}
+
+std::vector<uint> Topology::GetDistanceConstraintIndices(uint atom_index) const{
+  std::vector<uint> return_indices;
+  for(uint i = 0; i < distance_constraints_.size(); ++i){
+    if(distance_constraints_[i].first[0] == atom_index || distance_constraints_[i].first[1] == atom_index){
+      return_indices.push_back(i);
+    }
+  }
+  return return_indices;
+}
+
+std::vector<uint> Topology::GetHarmonicDistanceRestraintIndices(uint atom_index) const{
+  std::vector<uint> return_indices;
+  for(uint i = 0; i < harmonic_distance_restraints_.size(); ++i){
+    if(harmonic_distance_restraints_[i].first[0] == atom_index || harmonic_distance_restraints_[i].first[1] == atom_index){
+      return_indices.push_back(i);
+    }
+  }
+  return return_indices;
+}
+
+std::vector<uint> Topology::GetFGMDHBondDonorIndices(uint atom_index) const{
+  std::vector<uint> return_indices;
+  for(uint i = 0; i < fgmd_hbond_donors_.size(); ++i){
+    if(fgmd_hbond_donors_[i].first[0] == atom_index || fgmd_hbond_donors_[i].first[1] == atom_index){
+      return_indices.push_back(i);
+    }
+  }
+  return return_indices;
+}
+
+std::vector<uint> Topology::GetFGMDHBondAcceptorIndices(uint atom_index) const{
+  std::vector<uint> return_indices;
+  for(uint i = 0; i < fgmd_hbond_acceptors_.size(); ++i){
+    if(fgmd_hbond_acceptors_[i][0] == atom_index || fgmd_hbond_acceptors_[i][1] == atom_index){
+      return_indices.push_back(i);
+    }
+  }
+  return return_indices;
+}
+
+void Topology::Merge(ost::mol::EntityHandle& ent, TopologyPtr other, 
+                     const ost::mol::EntityHandle& other_ent){
+
+  this->CheckEntToAdd(ent,other,other_ent);
+  this->CheckTopToAdd(other);
+  this->MergeEnt(ent, other_ent);
+  this->MergeTop(other);
+}
+
+void Topology::Merge(TopologyPtr other){
+
+  this->CheckTopToAdd(other);
+  this->MergeTop(other);
+}
+
+void Topology::MergeTop(TopologyPtr other){
+
+  uint old_num_particles = num_particles_;
+  num_particles_ = num_particles_ + other->GetNumParticles();
+
+  //let's map over masses
+  atom_masses_.resize(old_num_particles + other->GetNumParticles());
+  memcpy(&atom_masses_[old_num_particles],&other->atom_masses_[0],other->GetNumParticles() * sizeof(Real));
+
+  //let's map over the other per atom parameters if they're defined in the destination topology
+  if(!charges_.empty()){
+    charges_.resize(old_num_particles + other->GetNumParticles());
+    memcpy(&charges_[old_num_particles],&other->charges_[0],other->GetNumParticles() * sizeof(Real));
+  }
+
+  if(!sigmas_.empty()){
+    sigmas_.resize(old_num_particles + other->GetNumParticles());
+    memcpy(&sigmas_[old_num_particles],&other->sigmas_[0],other->GetNumParticles() * sizeof(Real));
+  }
+
+  if(!epsilons_.empty()){
+    epsilons_.resize(old_num_particles + other->GetNumParticles());
+    memcpy(&epsilons_[old_num_particles],&other->epsilons_[0],other->GetNumParticles() * sizeof(Real));
+  }
+
+  if(!gbsa_radii_.empty()){
+    gbsa_radii_.resize(old_num_particles + other->GetNumParticles());
+    memcpy(&gbsa_radii_[old_num_particles],&other->gbsa_radii_[0],other->GetNumParticles() * sizeof(Real));
+  }
+
+  if(!obc_scaling_.empty()){
+    obc_scaling_.resize(old_num_particles + other->GetNumParticles());
+    memcpy(&obc_scaling_[old_num_particles],&other->obc_scaling_[0],other->GetNumParticles() * sizeof(Real));
+  }
+
+  //finally, all the interactions get mapped over
+
+  const std::vector<std::pair<Index<2>, std::vector<Real> > >& harmonic_bonds = other->GetHarmonicBonds();
+  if(!harmonic_bonds.empty()){
+    for(std::vector<std::pair<Index<2>, std::vector<Real> > >::const_iterator i = harmonic_bonds.begin();
+        i != harmonic_bonds.end(); ++i){
+      this->AddHarmonicBond(old_num_particles + i->first[0],
+                            old_num_particles + i->first[1],
+                            i->second[0],i->second[1]);
+    }
+  }
+
+  const std::vector<std::pair<Index<3>, std::vector<Real> > >& harmonic_angles = other->GetHarmonicAngles();
+  if(!harmonic_angles.empty()){
+    for(std::vector<std::pair<Index<3>, std::vector<Real> > >::const_iterator i = harmonic_angles.begin();
+        i != harmonic_angles.end(); ++i){
+      this->AddHarmonicAngle(old_num_particles + i->first[0],
+                             old_num_particles + i->first[1],
+                             old_num_particles + i->first[2],
+                             i->second[0],i->second[1]);
+    }
+  }
+
+  const std::vector<std::pair<Index<3>, std::vector<Real> > >& urey_bradley_angles = other->GetUreyBradleyAngles();
+  if(!urey_bradley_angles.empty()){
+    for(std::vector<std::pair<Index<3>, std::vector<Real> > >::const_iterator i = urey_bradley_angles.begin();
+        i != urey_bradley_angles.end(); ++i){
+      this->AddUreyBradleyAngle(old_num_particles + i->first[0],
+                                old_num_particles + i->first[1],
+                                old_num_particles + i->first[2],
+                                i->second[0],i->second[1],
+                                i->second[2],i->second[3]);
+    }
+  }
+
+  const std::vector<std::pair<Index<4>, std::vector<Real> > >& periodic_dihedrals = other->GetPeriodicDihedrals();
+  if(!periodic_dihedrals.empty()){
+    for(std::vector<std::pair<Index<4>, std::vector<Real> > >::const_iterator i = periodic_dihedrals.begin();
+        i != periodic_dihedrals.end(); ++i){
+      this->AddPeriodicDihedral(old_num_particles + i->first[0],
+                                old_num_particles + i->first[1],
+                                old_num_particles + i->first[2],
+                                old_num_particles + i->first[3],
+                                int(i->second[0]),i->second[1],i->second[2]);
+    }
+  }
+
+  const std::vector<std::pair<Index<4>, std::vector<Real> > >& periodic_impropers = other->GetPeriodicImpropers();
+  if(!periodic_impropers.empty()){
+    for(std::vector<std::pair<Index<4>, std::vector<Real> > >::const_iterator i = periodic_impropers.begin();
+        i != periodic_impropers.end(); ++i){
+      this->AddPeriodicImproper(old_num_particles + i->first[0],
+                                old_num_particles + i->first[1],
+                                old_num_particles + i->first[2],
+                                old_num_particles + i->first[3],
+                                int(i->second[0]),i->second[1],i->second[2]);
+    }
+  }
+
+  const std::vector<std::pair<Index<4>, std::vector<Real> > >& harmonic_impropers = other->GetHarmonicImpropers();
+  if(!harmonic_impropers.empty()){
+    for(std::vector<std::pair<Index<4>, std::vector<Real> > >::const_iterator i = harmonic_impropers.begin();
+        i != harmonic_impropers.end(); ++i){
+      this->AddHarmonicImproper(old_num_particles + i->first[0],
+                                old_num_particles + i->first[1],
+                                old_num_particles + i->first[2],
+                                old_num_particles + i->first[3],
+                                i->second[0],i->second[1]);
+    }
+  }
+
+  const std::vector<std::pair<Index<5>, std::vector<Real> > >& cmaps = other->GetCMaps();
+  if(!cmaps.empty()){
+    for(std::vector<std::pair<Index<5>, std::vector<Real> > >::const_iterator i = cmaps.begin();
+        i != cmaps.end(); ++i){
+      uint dimension = sqrt(i->second.size());
+      this->AddCMap(old_num_particles + i->first[0],
+                    old_num_particles + i->first[1],
+                    old_num_particles + i->first[2],
+                    old_num_particles + i->first[3],
+                    old_num_particles + i->first[4],
+                    dimension,i->second);
+    }
+  }
+
+  const std::vector<std::pair<Index<2>, std::vector<Real> > >& ljpairs = other->GetLJPairs();
+  if(!ljpairs.empty()){
+    for(std::vector<std::pair<Index<2>, std::vector<Real> > >::const_iterator i = ljpairs.begin();
+        i != ljpairs.end(); ++i){
+      this->AddLJPair(old_num_particles + i->first[0],
+                      old_num_particles + i->first[1],
+                      i->second[0],i->second[1]);
+    }
+  }
+
+
+  const std::vector<std::pair<Index<2>, std::vector<Real> > >& distance_constraints = other->GetDistanceConstraints();
+  if(!distance_constraints.empty()){
+    for(std::vector<std::pair<Index<2>, std::vector<Real> > >::const_iterator i = distance_constraints.begin();
+        i != distance_constraints.end(); ++i){
+      this->AddDistanceConstraint(old_num_particles + i->first[0],
+                                  old_num_particles + i->first[1],
+                                  i->second[0]);
+    }
+  }
+
+  const std::vector<Index<2> >& exclusions = other->GetExclusions();
+  if(!exclusions.empty()){
+    for(std::vector<Index<2> >::const_iterator i = exclusions.begin();
+        i != exclusions.end(); ++i){
+      this->AddExclusion(old_num_particles + (*i)[0],
+                         old_num_particles + (*i)[1]);
+    }
+  }
+
+  const std::vector<std::pair<Index<1>,std::vector<Real> > >& harmonic_position_restraints = other->GetHarmonicPositionRestraints();
+  if(!harmonic_position_restraints.empty()){
+    for(std::vector<std::pair<Index<1>,std::vector<Real> > >::const_iterator i = harmonic_position_restraints.begin();
+        i != harmonic_position_restraints.end(); ++i){
+      geom::Vec3 ref_pos(i->second[0],i->second[1],i->second[2]);
+      this->AddHarmonicPositionRestraint(old_num_particles + i->first[0],
+                                         ref_pos,
+                                         i->second[3],
+                                         i->second[4],
+                                         i->second[5],
+                                         i->second[6]);
+    }
+  }
+
+  const std::vector<std::pair<Index<2>,std::vector<Real> > >& harmonic_distance_restraints = other->GetHarmonicDistanceRestraints();
+  if(!harmonic_distance_restraints.empty()){
+    for(std::vector<std::pair<Index<2>,std::vector<Real> > >::const_iterator i = harmonic_distance_restraints.begin();
+        i != harmonic_distance_restraints.end(); ++i){
+      this->AddHarmonicDistanceRestraint(old_num_particles + i->first[0],
+                                         old_num_particles + i->first[1],
+                                         i->second[0],
+                                         i->second[1]);
+    }
+  }
+
+  const std::vector<std::pair<Index<2>,std::vector<Real> > >& donors = other->GetFGMDHBondDonors();
+  if(!donors.empty()){
+    for(std::vector<std::pair<Index<2>,std::vector<Real> > >::const_iterator i = donors.begin();
+        i != donors.end(); ++i){
+      this->AddFGMDHBondDonor(old_num_particles + i->first[0],
+                              old_num_particles + i->first[1],
+                              i->second[0],
+                              i->second[1],
+                              i->second[2],
+                              i->second[3],
+                              i->second[4],
+                              i->second[5]);
+    }
+  }
+
+  const std::vector<Index<2> >& acceptors = other->GetFGMDHBondAcceptors();
+  if(!acceptors.empty()){
+    for(std::vector<Index<2> >::const_iterator i = acceptors.begin();
+        i != acceptors.end(); ++i){
+      this->AddFGMDHBondAcceptor(old_num_particles + (*i)[0],
+                                 old_num_particles + (*i)[1]);
+    }
+  }
+
+  const std::vector<uint>& position_constraints = other->GetPositionConstraints();
+  if(!position_constraints.empty()){
+    for(std::vector<uint>::const_iterator i = position_constraints.begin();
+        i != position_constraints.end(); ++i){
+      this->AddPositionConstraint(old_num_particles + (*i));
+    }
+  }
+
+  for(std::set<Index<2> >::iterator i = other->added_lj_pairs_.begin();
+      i != other->added_lj_pairs_.end(); ++i){
+    added_lj_pairs_.insert(Index<2>(old_num_particles + (*i)[0],
+                                    old_num_particles + (*i)[1]));
+  }
+
+  for(std::set<Index<2> >::iterator i = other->added_distance_constraints_.begin();
+      i != other->added_distance_constraints_.end(); ++i){
+    added_distance_constraints_.insert(Index<2>(old_num_particles + (*i)[0],
+                                                old_num_particles + (*i)[1]));
+  }
+
+  for(std::set<Index<2> >::iterator i = other->added_exclusions_.begin();
+      i != other->added_exclusions_.end(); ++i){
+    added_exclusions_.insert(Index<2>(old_num_particles + (*i)[0],
+                                      old_num_particles + (*i)[1]));
+  }
+
+
+
+}
+
+void Topology::MergeEnt(ost::mol::EntityHandle& ent, const ost::mol::EntityHandle& other_ent){
+
+  //mapper of hashcode from source atom to index in added_atom list
+  std::map<long,int> index_mapper;
+  ost::mol::AtomHandleList added_atoms;
+
+  ost::mol::ChainHandleList other_chains = other_ent.GetChainList();
+
+  //let's create an editor to copy over all chains, residues and atoms
+  //from the other topologies entity
+  ost::mol::XCSEditor ed = ent.EditXCS(ost::mol::BUFFERED_EDIT);
+  for(ost::mol::ChainHandleList::iterator i = other_chains.begin(),
+      e = other_chains.end(); i != e; ++i){
+    ost::mol::ResidueHandleList res_list = i->GetResidueList();
+    ost::mol::ChainHandle added_chain = ed.InsertChain(i->GetName());
+
+    for(ost::mol::ResidueHandleList::iterator j = res_list.begin();
+        j != res_list.end(); ++j){
+      ost::mol::AtomHandleList atom_list = j->GetAtomList();
+      ost::mol::ResidueHandle added_residue = ed.AppendResidue(added_chain,*j);
+
+      for(ost::mol::AtomHandleList::iterator k = atom_list.begin();
+          k != atom_list.end(); ++k){
+        index_mapper[k->GetHashCode()] = added_atoms.size();
+        added_atoms.push_back(ed.InsertAtom(added_residue,*k));
+      }
+    }
+  }
+
+  //let's rebuild the connectivity
+  ost::mol::BondHandleList bond_list = other_ent.GetBondList();
+  for(ost::mol::BondHandleList::iterator i = bond_list.begin();
+      i != bond_list.end(); ++i){
+    ed.Connect(added_atoms[index_mapper[i->GetFirst().GetHashCode()]],
+               added_atoms[index_mapper[i->GetSecond().GetHashCode()]]);
+  }
+  ed.UpdateICS();
+}
+
+
+void Topology::CheckTopToAdd(TopologyPtr other){
+
+  if(other->fudge_lj_ != fudge_lj_ || other->fudge_qq_ != fudge_qq_){
+    throw ost::Error("Expect the fudge parameters of source topology to consistent with the fudge parameters from the destination topology!");
+  }
+
+  if(!charges_.empty()){
+    if(other->charges_.empty()){
+      throw ost::Error("Cannot merge topology without charges into a topology with defined charges!");
+    }
+  }
+
+  if(!sigmas_.empty()){
+    if(other->sigmas_.empty()){
+      throw ost::Error("Cannot merge topology without lj sigmas into a topology with defined sigmas!");
+    }
+  }
+
+  if(!epsilons_.empty()){
+    if(other->epsilons_.empty()){
+      throw ost::Error("Cannot merge topology without lj epsilons into a topology with defined epsilons!");
+    }
+  }
+
+  if(!gbsa_radii_.empty()){
+    if(other->gbsa_radii_.empty()){
+      throw ost::Error("Cannot merge topology without gbsa radii into a topology with defined radii!");
+    }
+  }
+
+  if(!obc_scaling_.empty()){
+    if(other->obc_scaling_.empty()){
+      throw ost::Error("Cannot merge topology without obc scaling into a topology with defined scaling!");
+    }
+  }
+}
+
+void Topology::CheckEntToAdd(ost::mol::EntityHandle& ent, TopologyPtr other,
+                             const ost::mol::EntityHandle& other_ent){
+
+  //check whether the particle numbers match
+  if(num_particles_ != static_cast<uint>(ent.GetAtomCount())){
+    throw ost::Error("Num Particles is not consistent with num atoms of provided ent!");
+  }
+
+  if(other->GetNumParticles() != static_cast<uint>(other_ent.GetAtomCount())){
+    throw ost::Error("Num Particles is not consistent with num atoms of provided other_ent!");
+  } 
+
+  //check whether there is a chain from the new entity is already 
+  //present in the actual entity 
+  ost::mol::ChainHandleList other_chains = other_ent.GetChainList();
+  for(ost::mol::ChainHandleList::iterator i = other_chains.begin(), 
+      e = other_chains.end(); i != e; ++i){
+    if(ent.FindChain(i->GetName()).IsValid()){
+      std::stringstream ss;
+      ss << "Chain with name \"" << i->GetName() << "\" from other topology";
+      ss << "is already present in destination topology!";
+      throw ost::Error(ss.str());
+    }
+  }
+}
+
+}}}//ns
diff --git a/modules/mol/mm/src/topology.hh b/modules/mol/mm/src/topology.hh
new file mode 100644
index 0000000000000000000000000000000000000000..e578e42001b8c7e56a9eef1a0aa0571b097ac8fc
--- /dev/null
+++ b/modules/mol/mm/src/topology.hh
@@ -0,0 +1,804 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#ifndef OST_MM_TOPOLOGY_HH
+#define OST_MM_TOPOLOGY_HH
+
+#include <vector>
+#include <map>
+#include <set>
+
+#include <boost/shared_ptr.hpp>
+
+#include <ost/message.hh>
+#include <ost/mol/atom_handle.hh>
+#include <ost/mol/residue_handle.hh>
+#include <ost/mol/entity_handle.hh>
+#include <ost/mol/mm/index.hh>
+#include <ost/mol/mm/buildingblock.hh>
+#include <ost/mol/mm/block_modifiers.hh>
+#include <ost/mol/mm/forcefield.hh>
+#include <ost/mol/mm/index.hh>
+#include <ost/mol/xcs_editor.hh>
+#include <ost/mol/bond_handle.hh>
+#include <ost/mol/residue_prop.hh>
+
+#include <time.h>
+
+
+
+namespace ost { namespace mol{ namespace mm{
+
+class Topology;
+typedef boost::shared_ptr<Topology> TopologyPtr;
+
+
+class Topology{
+
+public:
+
+  Topology(const std::vector<Real>& masses);
+
+  Topology() { } //should not be accessible from Python to avoid messing around
+                 //with empty topology
+
+  static TopologyPtr Load(const String& filename);
+
+  void Save(const String& filename);
+
+  uint AddHarmonicBond(uint index_one,
+                       uint index_two, 
+                       Real bond_length,
+                       Real force_constant);
+
+  uint AddHarmonicAngle(uint index_one,
+                        uint index_two,
+                        uint index_three,
+                        Real angle,
+                        Real force_constant);
+
+  uint AddUreyBradleyAngle(uint index_one,
+                           uint index_two,
+                           uint index_three,
+                           Real angle,
+                           Real angle_force_constant,
+                           Real bond_length,
+                           Real bond_force_constant);
+
+  uint AddPeriodicDihedral(uint index_one,
+                           uint index_two,
+                           uint index_three,
+                           uint index_four,
+                           int multiplicity,
+                           Real phase,
+                           Real force_constant);
+
+  uint AddPeriodicImproper(uint index_one,
+                           uint index_two,
+                           uint index_three,
+                           uint index_four,
+                           int multiplicity,
+                           Real phase,
+                           Real force_constant);
+
+  uint AddHarmonicImproper(uint index_one,
+                           uint index_two,
+                           uint index_three,
+                           uint index_four,
+                           Real angle,
+                           Real force_constant);
+
+  uint AddCMap(uint index_one,
+               uint index_two,
+               uint index_three,
+               uint index_four,
+               uint index_five,
+               int dimension,
+               std::vector<Real> values);
+
+  uint AddLJPair(uint index_one, 
+                 uint index_two,
+                 Real sigma,
+                 Real epsilon);
+
+
+  uint AddDistanceConstraint(uint index_one, 
+                             uint index_two,
+                             Real distance);
+
+  uint AddExclusion(uint index_one,
+                    uint index_two);
+
+  void AddPositionConstraint(uint index);
+
+  void ResetPositionConstraints() { position_constraints_.clear(); }
+
+  void ResetExclusions() { exclusions_.clear(); }
+
+  uint AddHarmonicPositionRestraint(uint index, const geom::Vec3& ref_position, Real k, 
+                                    Real x_scale = 1.0, Real y_scale = 1.0, Real z_scale = 1.0);
+
+  uint AddHarmonicDistanceRestraint(uint index_one, uint index_two, 
+                                    Real length, Real force_constant);
+
+  uint AddFGMDHBondDonor(uint index_one, uint index_two,
+                         Real length, Real k_length, Real alpha, 
+                         Real k_alpha, Real beta, Real k_beta);
+
+  uint AddFGMDHBondAcceptor(uint index_one, uint index_two);
+
+  //Single atom parameters are expected to be set at once...
+  void SetSigmas(const std::vector<Real>& sigmas);
+
+  void SetSigma(uint index, Real sigma);
+
+  void SetEpsilons(const std::vector<Real>& epsilons);
+
+  void SetEpsilon(uint index, Real epsilon);
+
+  void SetGBSARadii(const std::vector<Real>& gbsa_radii);
+
+  void SetGBSARadius(uint index, Real radius);
+
+  void SetOBCScalings(const std::vector<Real>& obc_scaling);
+
+  void SetOBCScaling(uint index, Real scaling);
+
+  void SetCharges(const std::vector<Real>& charges);
+
+  void SetCharge(uint index, Real charge);
+
+  void SetMasses(const std::vector<Real>& masses);
+
+  void SetMass(uint index, Real mass);
+
+  void SetFudgeQQ(Real fudge) { fudge_qq_ = fudge; }
+
+  void SetFudgeLJ(Real fudge) { fudge_lj_ = fudge;} 
+
+
+  void GetHarmonicBondParameters(uint index, uint& index_one, uint& index_two,
+                                 Real& bond_length, Real& force_constant) const;
+
+  void GetHarmonicAngleParameters(uint index, uint& index_one, uint& index_two, uint& index_three,
+                                  Real& angle, Real& force_constant) const;
+
+  void GetUreyBradleyAngleParameters(uint index, uint& index_one, uint& index_two, uint& index_three,
+                                     Real& angle, Real& angle_force_constant, Real& bond_length, Real& bond_force_constant) const;
+
+  void GetPeriodicDihedralParameters(uint index, uint& index_one, uint& index_two, uint& index_three, uint& index_four,
+                                     int& multiplicity, Real& phase, Real& force_constant) const;
+
+  void GetPeriodicImproperParameters(uint index, uint& index_one, uint& index_two, uint& index_three, uint& index_four,
+                                     int& multiplicity, Real& phase, Real& force_constant) const;
+
+  void GetHarmonicImproperParameters(uint index, uint& index_one, uint& index_two, uint& index_three, uint& index_four,
+                                     Real& angle, Real& force_constant) const;
+
+  void GetCMapParameters(uint index, uint& index_one, uint& index_two, uint& index_three, uint& index_four, uint& index_five,
+                         int& dimension, std::vector<Real>& map) const;
+
+  void GetLJPairParameters(uint index, uint& index_one, uint& index_two,
+                           Real& sigma, Real& epsilon) const;
+
+  void GetDistanceConstraintParameters(uint index, uint& index_one, uint& index_two,
+                                       Real& distance) const;
+
+  void GetHarmonicPositionRestraintParameters(uint index, uint& atom_index, geom::Vec3& ref_position,
+                                              Real& k, Real& x_scale, Real& y_scale, Real& z_scale) const;
+
+  void GetHarmonicDistanceRestraintParameters(uint index, uint& atom_one, uint& atom_two, Real& length,
+                                              Real& force_constant) const;
+
+  void GetFGMDHBondDonorParameters(uint index, uint& index_one, uint& index_two,
+                                   Real& length, Real& k_length, Real& alpha, 
+                                   Real& k_alpha, Real& beta, Real& k_beta) const;
+
+  void GetFGMDHBondAcceptorParameters(uint index, uint& index_one, uint& index_two) const;
+
+  void SetHarmonicBondParameters(uint index, const Real bond_length, const Real force_constant);
+
+  void SetHarmonicAngleParameters(uint index, const Real angle, const Real force_constant);
+
+  void SetUreyBradleyAngleParameters(uint index, const Real angle, const Real angle_force_constant, 
+                                     const Real bond_length, const Real bond_force_constant);
+
+  void SetPeriodicDihedralParameters(uint index, const int multiplicity, 
+                                     const Real phase, const Real force_constant);
+
+  void SetPeriodicImproperParameters(uint index, const int multiplicity, const Real phase, 
+                                     const Real force_constant);
+
+  void SetHarmonicImproperParameters(uint index, const Real angle, const Real force_constant);
+
+  void SetCMapParameters(uint index, const int dimension, const std::vector<Real>& map);
+
+  void SetLJPairParameters(uint index, const Real sigma, const Real epsilon);
+
+  void SetDistanceConstraintParameters(uint index, const Real distance);
+
+  void SetHarmonicPositionRestraintParameters(uint index, const geom::Vec3& ref_position, Real k, 
+                                               Real x_scale = 1.0, Real y_scale = 1.0, Real z_scale = 1.0);
+
+  void SetHarmonicDistanceRestraintParameters(uint index, Real length, Real force_constant);
+
+  void SetFGMDHBondDonorParameters(uint index, Real length, Real k_length, 
+                                   Real alpha, Real k_alpha, Real beta, 
+                                   Real k_beta);
+
+  const std::vector<std::pair<Index<2>, std::vector<Real> > >& GetHarmonicBonds() const { return harmonic_bonds_; }
+ 
+  const std::vector<std::pair<Index<3>, std::vector<Real> > >& GetHarmonicAngles() const { return harmonic_angles_; }
+ 
+  const std::vector<std::pair<Index<3>, std::vector<Real> > >& GetUreyBradleyAngles() const { return urey_bradley_angles_; }
+ 
+  const std::vector<std::pair<Index<4>, std::vector<Real> > >& GetPeriodicDihedrals() const { return periodic_dihedrals_; }
+ 
+  const std::vector<std::pair<Index<4>, std::vector<Real> > >& GetPeriodicImpropers() const { return periodic_impropers_; }
+ 
+  const std::vector<std::pair<Index<4>, std::vector<Real> > >& GetHarmonicImpropers() const { return harmonic_impropers_; }
+ 
+  const std::vector<std::pair<Index<5>, std::vector<Real> > >& GetCMaps() const { return cmaps_; }
+ 
+  const std::vector<std::pair<Index<2>, std::vector<Real> > >& GetLJPairs() const { return lj_pairs_; }
+ 
+  const std::vector<std::pair<Index<2>, std::vector<Real> > >& GetDistanceConstraints() const { return distance_constraints_; }
+
+  const std::vector<std::pair<Index<1>, std::vector<Real> > >& GetHarmonicPositionRestraints() const { return harmonic_position_restraints_; }
+ 
+  const std::vector<std::pair<Index<2>, std::vector<Real> > >& GetHarmonicDistanceRestraints() const{ return harmonic_distance_restraints_; }
+
+  const std::vector<Index<2> >& GetExclusions() const { return exclusions_; }
+ 
+  const std::vector<uint>& GetPositionConstraints() const { return position_constraints_; }
+
+  const std::vector<std::pair<Index<2>, std::vector<Real> > >& GetFGMDHBondDonors() const { return fgmd_hbond_donors_; }
+
+  const std::vector<Index<2> >& GetFGMDHBondAcceptors() const { return fgmd_hbond_acceptors_; }
+
+  std::vector<Real> GetSigmas() const { return sigmas_; }
+
+  std::vector<Real> GetEpsilons() const { return epsilons_; }
+ 
+  std::vector<Real> GetGBSARadii() const { return gbsa_radii_; }
+
+  std::vector<Real> GetOBCScalings() const { return obc_scaling_; }
+ 
+  std::vector<Real> GetCharges() const { return charges_; }
+
+  Real GetCharge(uint index) const;
+
+  Real GetMass(uint index) const;
+
+  Real GetSigma(uint index) const;
+
+  Real GetEpsilon(uint index) const;
+
+  Real GetGBSARadius(uint index) const;
+
+  Real GetOBCScaling(uint index) const;
+
+  std::vector<Real> GetMasses() const { return atom_masses_; }
+
+  Real GetFudgeQQ() const { return fudge_qq_; }
+
+  Real GetFudgeLJ() const { return fudge_lj_; }
+
+  std::vector<uint> GetHarmonicBondIndices(uint index_one,
+                                            uint index_two) const;
+
+  std::vector<uint> GetHarmonicAngleIndices(uint index_one,
+                                             uint index_two,
+                                             uint index_three) const;
+
+  std::vector<uint> GetUreyBradleyAngleIndices(uint index_one,
+                                                uint index_two,
+                                                uint index_three) const;
+
+  std::vector<uint> GetPeriodicDihedralIndices(uint index_one,
+                                                uint index_two,
+                                                uint index_three,
+                                                uint index_four) const;
+
+  std::vector<uint> GetPeriodicImproperIndices(uint index_one,
+                                                uint index_two,
+                                                uint index_three,
+                                                uint index_four) const;
+
+  std::vector<uint> GetHarmonicImproperIndices(uint index_one,
+                                                uint index_two,
+                                                uint index_three,
+                                                uint index_four) const;
+
+  std::vector<uint> GetCMapIndices(uint index_one,
+                                    uint index_two,
+                                    uint index_three,
+                                    uint index_four,
+                                    uint index_five) const;
+
+  int GetLJPairIndex(uint index_one,
+                     uint index_two) const;
+
+  int GetDistanceConstraintIndex(uint index_one,
+                                 uint index_two) const;
+
+
+
+  std::vector<uint> GetHarmonicDistanceRestraintIndices(uint index_one,
+                                                        uint index_two) const;
+
+  std::vector<uint> GetFGMDHBondDonorIndices(uint index_one,
+                                             uint index_two) const;
+
+  std::vector<uint> GetFGMDHBondAcceptorIndices(uint index_one,
+                                                uint index_two) const;
+
+  std::vector<uint> GetHarmonicBondIndices(uint atom_index) const;
+
+  std::vector<uint> GetHarmonicAngleIndices(uint atom_index) const;
+
+  std::vector<uint> GetUreyBradleyAngleIndices(uint atom_index) const;
+
+  std::vector<uint> GetPeriodicDihedralIndices(uint atom_index) const;
+
+  std::vector<uint> GetPeriodicImproperIndices(uint atom_index) const;
+
+  std::vector<uint> GetHarmonicImproperIndices(uint atom_index) const;
+
+  std::vector<uint> GetCMapIndices(uint atom_index) const;
+
+  std::vector<uint> GetLJPairIndices(uint atom_index) const;
+
+  std::vector<uint> GetDistanceConstraintIndices(uint atom_index) const;
+
+  std::vector<uint> GetHarmonicPositionRestraintIndices(uint atom_index) const;
+
+  std::vector<uint> GetHarmonicDistanceRestraintIndices(uint atom_index) const;
+
+  std::vector<uint> GetFGMDHBondDonorIndices(uint atom_index) const;
+
+  std::vector<uint> GetFGMDHBondAcceptorIndices(uint atom_index) const;
+
+  uint GetNumParticles() { return num_particles_; }
+
+  uint GetNumHarmonicBonds() { return harmonic_bonds_.size(); }
+
+  uint GetNumHarmonicAngles() { return harmonic_angles_.size(); }
+
+  uint GetNumUreyBradleyAngles() { return urey_bradley_angles_.size(); }
+
+  uint GetNumPeriodicDihedrals() { return periodic_dihedrals_.size(); }
+
+  uint GetNumPeriodicImpropers() { return periodic_impropers_.size(); }
+
+  uint GetNumHarmonicImpropers() { return harmonic_impropers_.size(); }
+
+  uint GetNumCMaps() { return cmaps_.size(); }
+
+  uint GetNumLJPairs() { return lj_pairs_.size(); }
+
+  uint GetNumDistanceConstraints() { return distance_constraints_.size(); }
+
+  uint GetNumPositionConstraints() { return position_constraints_.size(); }
+
+  uint GetNumHarmonicPositionRestraints() { return harmonic_position_restraints_.size(); }
+
+  uint GetNumHarmonicDistanceRestraints() { return harmonic_distance_restraints_.size();}
+
+  uint GetNumExclusions() { return exclusions_.size(); }
+
+  uint GetNumFGMDHBondDonors() { return fgmd_hbond_donors_.size(); }
+
+  uint GetNumFGMDHBondAcceptors() { return fgmd_hbond_acceptors_.size(); }
+
+  void Merge(ost::mol::EntityHandle& ent, TopologyPtr other, const ost::mol::EntityHandle& other_ent);
+
+  void Merge(TopologyPtr other);
+
+  template <typename DS>
+  void Serialize(DS& ds){
+
+
+    uint num_items = 0;
+    Index<2> actual_index;
+
+    ds & num_particles_;
+    ds & fudge_qq_;
+    ds & fudge_lj_;
+
+    if(ds.IsSource()){
+      ds & num_items;
+      atom_masses_ = std::vector<Real>(num_items);
+      ds & num_items;
+      sigmas_ = std::vector<Real>(num_items);
+      ds & num_items;
+      epsilons_ = std::vector<Real>(num_items);
+      ds & num_items;
+      gbsa_radii_ = std::vector<Real>(num_items);
+      ds & num_items;
+      obc_scaling_ = std::vector<Real>(num_items);
+      ds & num_items;
+      charges_ = std::vector<Real>(num_items);
+      ds & num_items;
+      position_constraints_ = std::vector<uint>(num_items);
+    }
+    else{
+      num_items = atom_masses_.size();
+      ds & num_items;
+      num_items = sigmas_.size();
+      ds & num_items;
+      num_items = epsilons_.size();
+      ds & num_items;
+      num_items = gbsa_radii_.size();
+      ds & num_items;
+      num_items = obc_scaling_.size();
+      ds & num_items;
+      num_items = charges_.size();
+      ds & num_items;
+      num_items = position_constraints_.size();
+      ds & num_items;
+    }
+
+    for(std::vector<Real>::iterator i = atom_masses_.begin();
+        i != atom_masses_.end(); ++i){
+      ds & *i;
+    }
+
+    for(std::vector<Real>::iterator i = sigmas_.begin();
+        i != sigmas_.end(); ++i){
+      ds & *i;
+    }
+
+    for(std::vector<Real>::iterator i = epsilons_.begin();
+        i != epsilons_.end(); ++i){
+      ds & *i;
+    }
+
+    for(std::vector<Real>::iterator i = gbsa_radii_.begin();
+        i != gbsa_radii_.end(); ++i){
+      ds & *i;
+    }
+
+    for(std::vector<Real>::iterator i = obc_scaling_.begin();
+        i != obc_scaling_.end(); ++i){
+      ds & *i;
+    }
+
+    for(std::vector<Real>::iterator i = charges_.begin();
+        i != charges_.end(); ++i){
+      ds & *i;
+    }
+
+    for(std::vector<uint>::iterator i = position_constraints_.begin();
+        i != position_constraints_.end(); ++i){
+      ds & *i;
+    }
+
+    if(ds.IsSource()){
+      ds & num_items;
+      for(uint i = 0; i < num_items; ++i){
+        harmonic_bonds_.push_back(std::make_pair(Index<2>(),std::vector<Real>(2)));
+      }
+
+      ds & num_items;
+      for(uint i = 0; i < num_items; ++i){
+        harmonic_angles_.push_back(std::make_pair(Index<3>(),std::vector<Real>(2)));
+      }
+
+      ds & num_items;
+      for(uint i = 0; i < num_items; ++i){
+        urey_bradley_angles_.push_back(std::make_pair(Index<3>(),std::vector<Real>(4)));
+      }
+
+      ds & num_items;
+      for(uint i = 0; i < num_items; ++i){
+        periodic_dihedrals_.push_back(std::make_pair(Index<4>(),std::vector<Real>(3)));
+      }
+
+      ds & num_items;
+      for(uint i = 0; i < num_items; ++i){
+        periodic_impropers_.push_back(std::make_pair(Index<4>(),std::vector<Real>(3)));
+      }
+
+      ds & num_items;
+      for(uint i = 0; i < num_items; ++i){
+        harmonic_impropers_.push_back(std::make_pair(Index<4>(),std::vector<Real>(2)));
+      }
+
+      ds & num_items;
+      for(uint i = 0; i < num_items; ++i){
+        uint num_values = 0;
+        ds & num_values;
+        cmaps_.push_back(std::make_pair(Index<5>(),std::vector<Real>(num_values)));
+      }
+
+      ds & num_items;
+      for(uint i = 0; i < num_items; ++i){
+        lj_pairs_.push_back(std::make_pair(Index<2>(),std::vector<Real>(2)));
+      } 
+
+      ds & num_items;
+      for(uint i = 0; i < num_items; ++i){
+        distance_constraints_.push_back(std::make_pair(Index<2>(),std::vector<Real>(1)));
+      }
+
+      ds & num_items;
+      exclusions_ = std::vector<Index<2> >(num_items);
+
+      ds & num_items;
+      for(uint i = 0; i < num_items; ++i){
+        harmonic_position_restraints_.push_back(std::make_pair(Index<1>(),std::vector<Real>(7)));
+      }
+
+      ds & num_items;
+      for(uint i = 0; i < num_items; ++i){
+        harmonic_distance_restraints_.push_back(std::make_pair(Index<2>(),std::vector<Real>(2)));
+      }
+
+      ds & num_items;
+      for(uint i = 0; i < num_items; ++i){
+        fgmd_hbond_donors_.push_back(std::make_pair(Index<2>(),std::vector<Real>(6)));
+      }
+
+      ds & num_items;
+      for(uint i = 0; i < num_items; ++i){
+        fgmd_hbond_acceptors_.push_back(Index<2>());
+      }
+    }
+    else{
+      num_items = harmonic_bonds_.size();
+      ds & num_items;
+      num_items = harmonic_angles_.size();
+      ds & num_items;
+      num_items = urey_bradley_angles_.size();
+      ds & num_items;
+      num_items = periodic_dihedrals_.size();
+      ds & num_items;
+      num_items = periodic_impropers_.size();
+      ds & num_items;
+      num_items = harmonic_impropers_.size();
+      ds & num_items;
+      num_items = cmaps_.size();
+      ds & num_items;
+      for(uint i = 0; i < cmaps_.size(); ++i){
+        num_items = cmaps_[i].second.size();
+        ds & num_items;
+      }
+      num_items = lj_pairs_.size();
+      ds & num_items;
+      num_items = distance_constraints_.size();
+      ds & num_items;
+      num_items = exclusions_.size();
+      ds & num_items;
+      num_items = harmonic_position_restraints_.size();
+      ds & num_items;
+      num_items = harmonic_distance_restraints_.size();
+      ds & num_items;
+      num_items = fgmd_hbond_donors_.size();
+      ds & num_items;
+      num_items = fgmd_hbond_acceptors_.size();
+      ds & num_items;
+    }
+
+    for(std::vector<std::pair<Index<2>,std::vector<Real> > >::iterator i = harmonic_bonds_.begin();
+        i != harmonic_bonds_.end(); ++i){
+      ds & i->first;
+      ds & i->second[0];
+      ds & i->second[1];
+    }
+
+    for(std::vector<std::pair<Index<3>,std::vector<Real> > >::iterator i = harmonic_angles_.begin();
+        i != harmonic_angles_.end(); ++i){
+      ds & i->first;
+      ds & i->second[0];
+      ds & i->second[1];
+    }
+
+    for(std::vector<std::pair<Index<3>,std::vector<Real> > >::iterator i = urey_bradley_angles_.begin();
+        i != urey_bradley_angles_.end(); ++i){
+      ds & i->first;
+      ds & i->second[0];
+      ds & i->second[1];
+      ds & i->second[2];
+      ds & i->second[3];
+    }
+
+    for(std::vector<std::pair<Index<4>,std::vector<Real> > >::iterator i = periodic_dihedrals_.begin();
+        i != periodic_dihedrals_.end(); ++i){
+      ds & i->first;
+      ds & i->second[0];
+      ds & i->second[1];
+      ds & i->second[2];
+    }
+
+    for(std::vector<std::pair<Index<4>,std::vector<Real> > >::iterator i = periodic_impropers_.begin();
+        i != periodic_impropers_.end(); ++i){
+      ds & i->first;
+      ds & i->second[0];
+      ds & i->second[1];
+      ds & i->second[2];
+    }
+
+    for(std::vector<std::pair<Index<4>,std::vector<Real> > >::iterator i = harmonic_impropers_.begin();
+        i != harmonic_impropers_.end(); ++i){
+      ds & i->first;
+      ds & i->second[0];
+      ds & i->second[1];
+    }
+
+    for(std::vector<std::pair<Index<5>,std::vector<Real> > >::iterator i = cmaps_.begin();
+        i != cmaps_.end(); ++i){
+      ds & i->first;
+      for(std::vector<Real>::iterator j = i->second.begin();
+          j != i->second.end(); ++j){
+        ds & (*j);
+      }
+    }
+
+    for(std::vector<std::pair<Index<2>,std::vector<Real> > >::iterator i = lj_pairs_.begin();
+        i != lj_pairs_.end(); ++i){
+      ds & i->first;
+      ds & i->second[0];
+      ds & i->second[1];
+    }
+
+    for(std::vector<std::pair<Index<2>,std::vector<Real> > >::iterator i = distance_constraints_.begin();
+        i != distance_constraints_.end(); ++i){
+      ds & i->first;
+      ds & i->second[0];
+    }
+
+    for(std::vector<Index<2> >::iterator i = exclusions_.begin();
+        i != exclusions_.end(); ++i){
+      ds & (*i);
+    }
+
+    for(std::vector<std::pair<Index<1>,std::vector<Real> > >::iterator i = harmonic_position_restraints_.begin();
+        i != harmonic_position_restraints_.end(); ++i){
+      ds & i->first;
+      ds & i->second[0];
+      ds & i->second[1];
+      ds & i->second[2];
+      ds & i->second[3];
+      ds & i->second[4];
+      ds & i->second[5];
+      ds & i->second[6];
+    }
+
+    for(std::vector<std::pair<Index<2>,std::vector<Real> > >::iterator i = harmonic_distance_restraints_.begin();
+        i != harmonic_distance_restraints_.end(); ++i){
+      ds & i->first;
+      ds & i->second[0];
+      ds & i->second[1];
+    }
+
+    for(std::vector<std::pair<Index<2>,std::vector<Real> > >::iterator i = fgmd_hbond_donors_.begin();
+        i != fgmd_hbond_donors_.end(); ++i){
+      ds & i->first;
+      ds & i->second[0];
+      ds & i->second[1];
+      ds & i->second[2];
+      ds & i->second[3];
+      ds & i->second[4];
+      ds & i->second[5];
+    }
+
+    for(std::vector<Index<2> >::iterator i = fgmd_hbond_acceptors_.begin();
+        i != fgmd_hbond_acceptors_.end(); ++i){
+      ds & (*i);
+    }
+
+    if(ds.IsSource()){
+      ds & num_items;
+      for(uint i = 0; i < num_items; ++i){
+        ds & actual_index;
+        added_lj_pairs_.insert(actual_index);
+      }
+
+      ds & num_items;
+      for(uint i = 0; i < num_items; ++i){
+        ds & actual_index;
+        added_distance_constraints_.insert(actual_index);
+      }
+
+      ds & num_items;
+      for(uint i = 0; i < num_items; ++i){
+        ds & actual_index;
+        added_exclusions_.insert(actual_index);
+      }
+    }
+    else{
+      num_items = added_lj_pairs_.size();
+      ds & num_items;
+      for(std::set<Index<2> >::iterator i = added_lj_pairs_.begin(); 
+          i != added_lj_pairs_.end(); ++i){
+        actual_index = *i;
+        ds & actual_index;
+      }
+      num_items = added_distance_constraints_.size();
+      ds & num_items;
+      for(std::set<Index<2> >::iterator i = added_distance_constraints_.begin(); 
+          i != added_distance_constraints_.end(); ++i){
+        actual_index = *i;
+        ds & actual_index;
+      }
+      num_items = added_exclusions_.size();
+      ds & num_items;
+      for(std::set<Index<2> >::iterator i = added_exclusions_.begin(); 
+          i != added_exclusions_.end(); ++i){
+        actual_index = *i;
+        ds & actual_index;
+      }
+    }
+  }
+
+private:
+
+  void MergeTop(TopologyPtr other);
+
+  void MergeEnt(ost::mol::EntityHandle& ent, const ost::mol::EntityHandle& other_ent);
+
+  void CheckTopToAdd(TopologyPtr other);
+
+  void CheckEntToAdd(ost::mol::EntityHandle& ent, TopologyPtr other, 
+                     const ost::mol::EntityHandle& other_ent);
+
+  uint num_particles_;
+
+  //fudge parameters for lj 1,4 pairs
+  Real fudge_qq_;
+  Real fudge_lj_;
+
+  //single atom parameters
+  std::vector<Real> atom_masses_;
+  std::vector<Real> sigmas_;
+  std::vector<Real> epsilons_;
+  std::vector<Real> gbsa_radii_;
+  std::vector<Real> obc_scaling_;
+  std::vector<Real> charges_;
+  std::vector<uint> position_constraints_;
+
+  //interactions with multiple atoms involved
+  std::vector<std::pair<Index<2>,std::vector<Real> > > harmonic_bonds_;
+  std::vector<std::pair<Index<3>,std::vector<Real> > > harmonic_angles_;
+  std::vector<std::pair<Index<3>,std::vector<Real> > > urey_bradley_angles_;
+  std::vector<std::pair<Index<4>,std::vector<Real> > > periodic_dihedrals_;
+  std::vector<std::pair<Index<4>,std::vector<Real> > > periodic_impropers_;
+  std::vector<std::pair<Index<4>,std::vector<Real> > > harmonic_impropers_;
+  std::vector<std::pair<Index<5>,std::vector<Real> > > cmaps_;
+  std::vector<std::pair<Index<2>,std::vector<Real> > > lj_pairs_;
+  std::vector<std::pair<Index<2>,std::vector<Real> > > distance_constraints_;
+  std::vector<Index<2> > exclusions_;
+  std::vector<std::pair<Index<1>,std::vector<Real> > > harmonic_position_restraints_;
+  std::vector<std::pair<Index<2>,std::vector<Real> > > harmonic_distance_restraints_;
+  std::vector<std::pair<Index<2>,std::vector<Real> > > fgmd_hbond_donors_;
+  std::vector<Index<2> > fgmd_hbond_acceptors_;
+
+  //the atoms of the interactions, that should be unique get tracked in here
+  //note, that this is waste of memory, needs better implementation
+  std::set<Index<2> > added_lj_pairs_;
+  std::set<Index<2> > added_distance_constraints_;
+  std::set<Index<2> > added_exclusions_;
+
+};
+
+
+}}} //ns
+
+#endif
diff --git a/modules/mol/mm/src/topology_creator.cc b/modules/mol/mm/src/topology_creator.cc
new file mode 100644
index 0000000000000000000000000000000000000000..bb1c418f685ca488d13f564d77a7142cf649b71f
--- /dev/null
+++ b/modules/mol/mm/src/topology_creator.cc
@@ -0,0 +1,980 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <ost/mol/mm/topology_creator.hh>
+#include <ost/mol/mm/modeller.hh>
+
+namespace{
+
+int GetAtomIndex(uint residue_index, 
+                 ost::mol::ResidueHandleList& res_list, 
+                 std::map<long,int>& atom_indices,
+                 const String& atom_name){
+
+  if(atom_name[0] == '+'){
+    ost::mol::ResidueHandle actual_res = res_list[residue_index];
+    ost::mol::ResidueHandle next_residue = actual_res.GetNext();
+    if(!next_residue){
+      throw ost::Error("Could not find required atom when settings up topology!");
+    }
+    String next_atom_name = atom_name.substr(1);
+    ost::mol::AtomHandle at = next_residue.FindAtom(next_atom_name);
+    if(!at.IsValid()){
+      throw ost::Error("Could not find required atom when settings up topology!");      
+    }
+    return atom_indices[at.GetHashCode()];
+  }
+
+  if(atom_name[0] == '-'){
+    ost::mol::ResidueHandle actual_res = res_list[residue_index];
+    ost::mol::ResidueHandle prev_residue = actual_res.GetPrev();
+    if(!prev_residue){
+      throw ost::Error("Could not find required atom when settings up topology!");
+    }
+    String prev_atom_name = atom_name.substr(1);
+    ost::mol::AtomHandle at = prev_residue.FindAtom(prev_atom_name);
+    if(!at.IsValid()){
+      throw ost::Error("Could not find required atom when settings up topology!");      
+    }
+    return atom_indices[at.GetHashCode()];
+  }
+
+  ost::mol::AtomHandle at = res_list[residue_index].FindAtom(atom_name);
+  if(!at.IsValid()){
+    throw ost::Error("Could not find required atom when settings up topology!");      
+  }
+  return atom_indices[at.GetHashCode()];
+}
+
+
+
+
+
+
+}
+
+namespace ost{ namespace mol{ namespace mm{
+
+TopologyPtr TopologyCreator::Create(ost::mol::EntityHandle& ent, 
+                                    const SettingsPtr settings){
+
+
+  ost::mol::ResidueHandleList res_list = ent.GetResidueList();
+  ost::mol::XCSEditor ed = ent.EditXCS(ost::mol::BUFFERED_EDIT);
+
+  //rename all the stuff to the gromacs naming...
+  Modeller::AssignGromacsNaming(ent);
+
+  //even if not reconnected yet, it gets assumed, that
+  //peptide or nucleotide bonds are correctly set in the input entity
+  //to allow the identification and tagging of terminal residues
+  //note, that only nucleotides or aminoacids are allowed to build termini...
+  //this should be enough for most needs
+
+  ost::mol::ResidueHandle next,prev;
+  bool n_ter,c_ter; 
+  ost::mol::AtomHandle peptide_n,peptide_c,nucleotide_p,nucleotide_o; 
+
+  for(ost::mol::ResidueHandleList::iterator i = res_list.begin(); 
+      i != res_list.end(); ++i){
+
+    n_ter = false;
+    c_ter = false;
+
+    peptide_n = i->FindAtom("N");
+    nucleotide_p = i->FindAtom("P");
+
+    if(!peptide_n.IsValid() && !nucleotide_p.IsValid()) continue;
+    //in this case the residue is neither a peptide nor a nucleotide.
+    //There won't be a termini anyway...
+
+    prev = i->GetPrev();
+    next = i->GetNext();
+
+    if(!prev.IsValid()){
+      n_ter = true;
+    }
+    else{
+      peptide_c = prev.FindAtom("C");
+      nucleotide_o = prev.FindAtom("O3");
+
+      if(!ost::mol::BondExists(peptide_n,peptide_c) && !ost::mol::BondExists(nucleotide_p,nucleotide_o)){
+        n_ter = true;
+      }
+    }
+
+    if(!next.IsValid()){
+      c_ter = true;
+    }
+    else{
+      peptide_n = next.FindAtom("N");
+      peptide_c = i->FindAtom("C");
+      nucleotide_p = next.FindAtom("P");
+      nucleotide_o = i->FindAtom("O3");
+
+      if(!ost::mol::BondExists(peptide_n,peptide_c) && !ost::mol::BondExists(nucleotide_p,nucleotide_o)){
+        c_ter = true;
+      }
+    }
+
+    if(n_ter) i->SetBoolProp("n_ter",true);
+    if(c_ter) i->SetBoolProp("c_ter",true);
+  }
+
+
+  ForcefieldPtr ff = settings->forcefield;
+  if(!ff){
+    throw ost::Error("You have to assign a valid forcefield to the settings object when creating a topology!");
+  }
+  //The full parametrization procedure relies on the naming, that is force field specific
+  
+  ost::mol::BondHandleList bond_list = ent.GetBondList();
+  ed.DeleteBonds(bond_list);
+  ed.UpdateICS();
+
+  if(settings->generate_disulfid_bonds){
+    Modeller::GenerateDisulfidBonds(ent);
+  }
+
+  ff->AssignFFSpecificNames(ent);
+
+  //we first generate the building blocks and directly construct hydrogens/termini and stuff
+  std::vector<BuildingBlockPtr> building_blocks;
+
+  for(ost::mol::ResidueHandleList::iterator i = res_list.begin(); 
+      i != res_list.end(); ++i){
+    BuildingBlockPtr block = ff->GetBuildingBlock(i->GetName());
+    HydrogenConstructorPtr hc = ff->GetHydrogenConstructor(i->GetName());
+    if(hc){
+      hc->ApplyOnBuildingBlock(block);
+      hc->ApplyOnResidue(*i,ed);
+    }
+    //check for n terminus
+    if(i->HasProp("n_ter")){
+      String exception_name = "";
+      if(settings->termini_exceptions->HasException(*i)){
+        exception_name = settings->termini_exceptions->GetException(*i);
+      }
+      BlockModifierPtr bm = ff->GetNTerModifier(i->GetName(), exception_name);
+      if(bm){
+        bm->ApplyOnBuildingBlock(block);
+        bm->ApplyOnResidue(*i,ed);
+        block->RemoveInteractionsToPrev();
+      }
+    }
+    if(i->HasProp("c_ter")){
+      String exception_name = "";
+      if(settings->termini_exceptions->HasException(*i)){
+        exception_name = settings->termini_exceptions->GetException(*i);
+      }
+      BlockModifierPtr bm = ff->GetCTerModifier(i->GetName(), exception_name);
+      if(bm){
+        bm->ApplyOnBuildingBlock(block);
+        bm->ApplyOnResidue(*i,ed);
+        block->RemoveInteractionsToNext();
+      }
+    }
+    block->Connect(*i,ed);
+    building_blocks.push_back(block);
+  }
+
+  //The editor won't be needed anymore, let's update the internal coordinate system
+  ed.UpdateICS();
+
+
+  //check, whether all building blocks match now with the previously applied modifications
+  String match_fail_info;
+  for(unsigned int i = 0; i < building_blocks.size(); ++i){
+    if(!building_blocks[i]->Match(res_list[i], false, match_fail_info)){
+      std::stringstream ss;
+      ss << "Residue "<< res_list[i].GetQualifiedName() << " does not match the force field ";
+      ss << "definition. "<<match_fail_info;
+      throw ost::Error(ss.str());
+    }
+  }
+
+  std::vector<Real> initial_masses(ent.GetAtomCount());
+
+  TopologyPtr top = TopologyPtr(new Topology(initial_masses));
+
+  ost::mol::AtomHandleList atom_list = ent.GetAtomList();
+
+  std::map<long,int> atom_indices;
+  std::map<long,int> residue_indices;
+  int actual_index = 0;
+
+  for(ost::mol::AtomHandleList::const_iterator i = atom_list.begin(), e = atom_list.end(); 
+      i != e; ++i){
+    atom_indices[i->GetHashCode()] = actual_index;
+    ++actual_index;
+  }
+
+  actual_index = 0;
+  for(ost::mol::ResidueHandleList::const_iterator i = res_list.begin(), e = res_list.end(); 
+      i != e; ++i){
+    residue_indices[i->GetHashCode()] = actual_index;
+    ++actual_index;
+  }
+
+
+  //let's extract atom specific informations
+  //extract information about single atoms
+  std::vector<std::vector<uint> > bound_to;
+  std::vector<String> atom_types;
+  std::vector<Real> atom_charges;
+  std::vector<String> atom_names;
+  std::vector<Real> atom_masses;
+  std::vector<String> residue_names_of_atoms;
+  ost::mol::AtomHandleList bonded_atoms;
+  std::vector<uint> temp;
+  int residue_index;
+
+  //extract masses, types, charges and bondpartners
+
+  for(ost::mol::AtomHandleList::iterator i = atom_list.begin();
+      i!=atom_list.end();++i){
+    residue_index = residue_indices[i->GetResidue().GetHashCode()];
+    residue_names_of_atoms.push_back(i->GetResidue().GetName());
+    atom_types.push_back(building_blocks[residue_index]->GetType(i->GetName()));
+    atom_charges.push_back(building_blocks[residue_index]->GetCharge(i->GetName()));
+    atom_masses.push_back(ff->GetMass(atom_types.back()));
+    bonded_atoms = i->GetBondPartners();
+    temp.clear();
+    for(ost::mol::AtomHandleList::iterator j = bonded_atoms.begin();
+        j!=bonded_atoms.end();++j){
+      temp.push_back(atom_indices[j->GetHashCode()]);
+    }
+    bound_to.push_back(temp);
+  }
+
+  //let's set the proper masses
+  top->SetMasses(atom_masses);
+
+
+  //we simply set all charges to zero if we want to kill the electrostatics
+  if(settings->kill_electrostatics){
+    for(std::vector<Real>::iterator i = atom_charges.begin();
+        i != atom_charges.end(); ++i){
+      *i = 0;
+    }
+  }
+
+  top->SetCharges(atom_charges);
+
+  //the interaction read from the structure will be stored in here
+  std::set<Index<2> > bonds;
+  std::set<Index<3> > angles;
+  std::set<Index<4> > dihedrals;
+  std::set<Index<4> > impropers;
+  std::set<Index<5> > cmaps;
+  std::set<Index<2> > exclusions;
+  std::set<Index<2> > pairs_14;
+  std::set<Index<2> > distance_constraints;
+  //per atom parameters
+  std::vector<InteractionPtr> ljs;
+  std::vector<InteractionPtr> gbsa;
+  //extract all bonded interactions directly from the structure itself,
+  //except the impropers, cmaps and exclusions. Those two get read from the building
+  //blocks.
+  //Note, that the bonds build the basis to build angles and the angles 
+  //build the basis to build dihedrals... so we have to extract bonds 
+  //even when only dihedrals have to be added.
+  //Another special case is when nonbonded terms have to be added.
+  //They often exclude interactions originating from closely bonded
+  //atoms. We will use the bonds, angles and dihedrals later on to
+  //define these closely bonded atoms, so if nonbonded terms have to
+  //added, we also need to get the bonds, angles and dihedrals.
+  if(settings->add_bonds || settings->add_angles || 
+     settings->add_dihedrals || settings->add_nonbonded){
+    //build all bonds
+    for(uint i=0 ; i<bound_to.size() ;++i){
+      for(uint j = 0; j<bound_to[i].size(); ++j){
+        bonds.insert(Index<2>(std::min(i,bound_to[i][j]),std::max(i,bound_to[i][j])));
+      }
+    }
+  }
+  if(settings->add_angles || settings->add_dihedrals || 
+     settings->add_nonbonded){
+    //build all angles
+    for(std::set<Index<2> >::iterator i = bonds.begin();
+        i!=bonds.end();++i){
+      uint atom_1 = (*i)[0];
+      uint atom_2 = (*i)[1];
+      
+      for(std::vector<uint>::iterator j = bound_to[atom_1].begin();
+          j!=bound_to[atom_1].end(); ++j){
+        if((*j) != atom_2){
+          angles.insert(Index<3>(std::min((*j),atom_2),atom_1,std::max((*j),atom_2)));
+        }
+      }
+      for(std::vector<uint>::iterator j = bound_to[atom_2].begin();
+          j!=bound_to[atom_2].end(); ++j){
+        if((*j) != atom_1){
+          angles.insert(Index<3>(std::min((*j),atom_1),atom_2,std::max((*j),atom_1)));
+        }
+      }
+    }
+  }
+  if(settings->add_dihedrals || settings->add_nonbonded){
+    //build all dihedrals
+    for(std::set<Index<3> >::iterator i = angles.begin();
+        i!=angles.end();++i){
+      uint atom_1 = (*i)[0];
+      uint atom_2 = (*i)[1];
+      uint atom_3 = (*i)[2];
+      for(std::vector<uint>::iterator j = bound_to[atom_1].begin();
+          j!=bound_to[atom_1].end();++j){
+        if((*j)!=atom_2){
+          if((*j)<atom_3) dihedrals.insert(Index<4>(*j,atom_1,atom_2,atom_3));
+          else dihedrals.insert(Index<4>(atom_3,atom_2,atom_1,*j)); 
+        }
+      }
+      for(std::vector<uint>::iterator j = bound_to[atom_3].begin();
+          j!=bound_to[atom_3].end();++j){
+        if((*j)!=atom_2){
+          if((*j)<atom_1) dihedrals.insert(Index<4>(*j,atom_3,atom_2,atom_1));
+          else dihedrals.insert(Index<4>(atom_1,atom_2,atom_3,*j));
+        }
+      }
+    }
+  }
+  //impropers exclusions and cmaps get read from residuetemplates!
+  std::vector<InteractionPtr> interaction_list;
+  std::vector<String> interaction_atom_names;
+
+  if(settings->add_impropers){
+    for(uint i = 0; i < building_blocks.size(); ++i){
+      interaction_list = building_blocks[i]->GetImpropers();
+      for(std::vector<InteractionPtr>::iterator j = interaction_list.begin();
+          j != interaction_list.end(); ++j){
+        interaction_atom_names = (*j)->GetNames();
+        Index<4> improper_index;
+        for(uint k = 0; k < 4; ++k){
+          improper_index[k] = GetAtomIndex(i,res_list,atom_indices,interaction_atom_names[k]);
+        }
+        impropers.insert(improper_index);
+      }
+    }
+  }
+
+  if(settings->add_cmaps){
+    for(uint  i = 0; i < building_blocks.size(); ++i){
+      interaction_list = building_blocks[i]->GetCMaps();
+      for(std::vector<InteractionPtr>::iterator j = interaction_list.begin();
+          j != interaction_list.end(); ++j){
+        interaction_atom_names = (*j)->GetNames();
+        Index<5> cmap_index;
+        for(uint k = 0; k < 5; ++k){
+          cmap_index[k] = GetAtomIndex(i,res_list,atom_indices,interaction_atom_names[k]);
+        }
+        cmaps.insert(cmap_index);
+      }
+    }
+  }
+  
+  if(settings->add_nonbonded && settings->add_exclusions){
+    for(uint i = 0; i < building_blocks.size(); ++i){
+      interaction_list = building_blocks[i]->GetExclusions();
+      for(std::vector<InteractionPtr>::iterator j = interaction_list.begin();
+          j != interaction_list.end(); ++j){
+        interaction_atom_names = (*j)->GetNames();
+        uint one = GetAtomIndex(i,res_list,atom_indices,interaction_atom_names[0]);
+        uint two = GetAtomIndex(i,res_list,atom_indices,interaction_atom_names[1]);
+        exclusions.insert(Index<2>(std::min(one,two),std::max(one,two)));
+      }
+    }
+  }
+  if(settings->add_nonbonded){
+
+    //find exclusions and excpetions based on connectivity
+    //add exclusions using previously extracted bonds => 1,2 interactions
+    for(std::set<Index<2> >::iterator i = bonds.begin();
+        i!=bonds.end(); ++i){
+      exclusions.insert(*i);
+    }
+    //add exclusions using previously extracted angles => 1,3 interactions
+    for(std::set<Index<3> >::iterator i = angles.begin();
+        i!=angles.end(); ++i){
+      exclusions.insert(Index<2>((*i)[0],(*i)[2]));
+    }
+    //add exclusions using previously extracted dihedrals => 1,4 interactions
+    for(std::set<Index<4> >::iterator i = dihedrals.begin();
+        i!=dihedrals.end(); ++i){
+      pairs_14.insert(Index<2>((*i)[0],(*i)[3]));
+    }
+
+    //remove all exclusions from the 1,4 interactions
+    for(std::set<Index<2> >::iterator i = exclusions.begin();
+        i != exclusions.end(); ++i){
+      pairs_14.erase(*i);
+    }
+  }
+
+  //we will need this goddamn variable in a lot of places...
+  std::vector<Real> parameters;
+
+
+  //add constraints from building blocks
+  //note, that the constraints are in some cases parametrized.
+  //If there is no constraint distance specified, the actual distance
+  //between the corresponding atoms is taken.
+  //if there are several constraints on the same atom pair,
+  //only the first is added to avoid contradicting constraints
+  for(uint i = 0; i < building_blocks.size(); ++i){
+    interaction_list = building_blocks[i]->GetConstraints();
+    for(std::vector<InteractionPtr>::iterator j = interaction_list.begin();
+        j != interaction_list.end(); ++j){
+      interaction_atom_names = (*j)->GetNames();
+      uint one = GetAtomIndex(i,res_list,atom_indices,interaction_atom_names[0]);
+      uint two = GetAtomIndex(i,res_list,atom_indices,interaction_atom_names[1]);
+      Index<2> index(std::min(one,two),std::max(one,two));
+      //we don't want contradicting constraints!
+      if(distance_constraints.find(index) != distance_constraints.end()) continue;
+      distance_constraints.insert(index);
+      Real distance;
+      if((*j)->IsParametrized()){
+        parameters = (*j)->GetParam();
+        distance = parameters[0];
+      }
+      else distance = geom::Distance(atom_list[one].GetPos(),atom_list[two].GetPos())/10;
+      top->AddDistanceConstraint(one,two,distance);
+    }
+  }
+
+  std::set<String> water_res_names;
+  water_res_names.insert("SOL");
+  water_res_names.insert("HOH");
+  water_res_names.insert("TIP3");
+
+  //add distance constrains given the corresponding settings
+  if(settings->constrain_bonds || settings->constrain_hbonds || settings->rigid_water){
+    for(std::set<Index<2> >::iterator i = bonds.begin();
+        i != bonds.end(); ++i){
+      if(settings->constrain_bonds){
+        if(distance_constraints.find(*i) != distance_constraints.end()) continue;
+        distance_constraints.insert(*i);
+        Real distance;
+        if(settings->ideal_bond_length_constraints){
+          InteractionPtr bond_ptr = ff->GetBond(atom_types[(*i)[0]],atom_types[(*i)[1]]);
+          parameters = bond_ptr->GetParam();
+          distance = parameters[0];
+        }
+        else distance = geom::Distance(atom_list[(*i)[0]].GetPos(),atom_list[(*i)[1]].GetPos())/10;
+        top->AddDistanceConstraint((*i)[0],(*i)[1],distance);
+        continue;
+      }
+      if(settings->constrain_hbonds){
+        if(atom_names[(*i)[0]][0] == 'H' || atom_names[(*i)[1]][0] == 'H'){
+          if(distance_constraints.find(*i) != distance_constraints.end()) continue;
+          distance_constraints.insert(*i);
+          Real distance;
+          if(settings->ideal_bond_length_constraints){
+            InteractionPtr bond_ptr = ff->GetBond(atom_types[(*i)[0]],atom_types[(*i)[1]]);
+            parameters = bond_ptr->GetParam();
+            distance = parameters[0];            
+          }
+          else distance = geom::Distance(atom_list[(*i)[0]].GetPos(),atom_list[(*i)[1]].GetPos())/10;
+          top->AddDistanceConstraint((*i)[0],(*i)[1],distance);
+          continue;
+        }
+      }
+      if(settings->rigid_water){
+        if(water_res_names.find(residue_names_of_atoms[(*i)[0]]) != water_res_names.end() && 
+           water_res_names.find(residue_names_of_atoms[(*i)[1]]) != water_res_names.end()){
+          if(distance_constraints.find(*i) != distance_constraints.end()) continue;
+          distance_constraints.insert(*i);
+          Real distance;
+          if(settings->ideal_bond_length_constraints) distance = 0.09572; //OH bond length in water in CHARMM forcefield...
+          else distance = geom::Distance(atom_list[(*i)[0]].GetPos(),atom_list[(*i)[1]].GetPos())/10;
+          top->AddDistanceConstraint((*i)[0],(*i)[1],distance);
+          continue;        
+        }
+      }
+    }
+  }
+
+  //set angle constraints given the corresponding settings
+  std::set<Index<3> > constrained_angles;
+  if(settings->rigid_water){
+    for(std::set<Index<3> >::iterator i = angles.begin();
+        i != angles.end(); ++i){
+      if(water_res_names.find(residue_names_of_atoms[(*i)[0]]) != water_res_names.end() && 
+         water_res_names.find(residue_names_of_atoms[(*i)[1]]) != water_res_names.end() &&
+         water_res_names.find(residue_names_of_atoms[(*i)[2]]) != water_res_names.end()){
+        //we only have to add the H-H distance constant, the O-H distance is already
+        //constrained above
+        Real distance;
+        if(settings->ideal_bond_length_constraints) distance = 0.15139; //HH distance taken from CHARMM      
+        else distance = geom::Distance(atom_list[(*i)[0]].GetPos(),atom_list[(*i)[2]].GetPos())/10;
+        top->AddDistanceConstraint((*i)[0],(*i)[2],distance);
+        constrained_angles.insert(*i); 
+      }
+    }
+  }
+  
+  //remove all constraints from the bonds and angles
+  for(std::set<Index<2> >::iterator i = distance_constraints.begin();
+      i != distance_constraints.end(); ++i){
+    bonds.erase(*i);
+  }
+
+  for(std::set<Index<3> >::iterator i = constrained_angles.begin(); 
+      i!= constrained_angles.end(); ++i){
+    angles.erase(*i);
+  }
+
+
+  //the force definitions from the forcefield can be overwritten by parameters
+  //defined in the residue building blocks.
+  //We therefore check which forces have been defined in the building blocks
+  //and don't search them any more in the forcefield forces.
+  std::vector<String> types;
+  if(settings->add_bonds){
+    //handle bonds
+    for(uint i = 0; i < res_list.size(); ++i){
+      interaction_list = building_blocks[i]->GetBonds();
+      for(std::vector<InteractionPtr>::iterator j = interaction_list.begin();
+          j != interaction_list.end(); ++j){
+        if((*j)->IsParametrized()){
+          interaction_atom_names = (*j)->GetNames();
+          uint one = GetAtomIndex(i,res_list,atom_indices,interaction_atom_names[0]);
+          uint two = GetAtomIndex(i,res_list,atom_indices,interaction_atom_names[1]); 
+          Index<2> bond_index(std::min(one,two),std::max(one,two));
+          bonds.erase(bond_index);
+          //There are only harmonic bonds supported
+          parameters = (*j)->GetParam();
+          top->AddHarmonicBond(one,two,parameters[0],parameters[1]);
+        }
+      }
+    }
+    //add pointers of bond definitions, that are not already parametrized
+    //in the building blocks
+    for(std::set<Index<2> >::iterator i = bonds.begin();
+        i!=bonds.end(); ++i){    
+
+      InteractionPtr bond_ptr;
+      try{
+        bond_ptr = ff->GetBond(atom_types[(*i)[0]],atom_types[(*i)[1]]);
+      } catch(ost::Error& e){
+        if(settings->strict_interactions){
+          std::stringstream ss;
+          ss << "Failed to parametrize bond between: " << atom_list[(*i)[0]];
+          ss << " and "<<atom_list[(*i)[1]] << ". ";
+          ss << "To ignore these things, set strict_interactions in the settings";
+          ss << " object to False (not recommended).";
+          throw ost::Error(ss.str());
+        }
+        continue;  // ignore it and continue with next interaction
+      }
+
+      parameters = bond_ptr->GetParam();
+      top->AddHarmonicBond((*i)[0],(*i)[1],parameters[0],parameters[1]);
+    }
+  }
+
+  if(settings->add_angles){
+    //handle angles
+    for(uint i = 0; i < res_list.size(); ++i){
+      interaction_list = building_blocks[i]->GetAngles();
+      for(std::vector<InteractionPtr>::iterator j = interaction_list.begin();
+          j != interaction_list.end(); ++j){
+        if((*j)->IsParametrized()){
+          interaction_atom_names = (*j)->GetNames();
+          uint one = GetAtomIndex(i,res_list,atom_indices,interaction_atom_names[0]);
+          uint two = GetAtomIndex(i,res_list,atom_indices,interaction_atom_names[1]); 
+          uint three = GetAtomIndex(i,res_list,atom_indices,interaction_atom_names[2]);
+          Index<3> angle_index(std::min(one,three),two,std::max(one,three));
+          if(angles.find(angle_index) == angles.end()){
+            std::stringstream ss;
+            ss << "Building block for residue " << res_list[i].GetQualifiedName();
+            ss << " defines angle, that doesn't exist!";
+            throw ost::Error(ss.str());
+          }
+          angles.erase(angle_index);
+          parameters = (*j)->GetParam();
+          switch((*j)->GetFuncType()){
+            case HarmonicAngle:{
+              top->AddHarmonicAngle(angle_index[0],angle_index[1],angle_index[2],
+                                     parameters[0], parameters[1]);
+              break;
+            }
+            case UreyBradleyAngle:{
+              top->AddUreyBradleyAngle(angle_index[0],angle_index[1],angle_index[2],
+                                        parameters[0], parameters[1], parameters[2],
+                                        parameters[3]);
+              break;
+            }
+            default:{
+              throw ost::Error("Observed unknown function type for angle interaction!");
+            }
+          }
+        }
+      }
+    }
+    //add pointers of angle definitions, that are not already parametrized
+    //in the building blocks
+    for(std::set<Index<3> >::iterator i = angles.begin();
+        i!=angles.end(); ++i){
+
+      InteractionPtr angle_ptr;
+      try{
+        angle_ptr = ff->GetAngle(atom_types[(*i)[0]],
+                                 atom_types[(*i)[1]],
+                                 atom_types[(*i)[2]]);
+      } catch(ost::Error& e){
+        if(settings->strict_interactions){
+          std::stringstream ss;
+          ss << "Failed to parametrize angle between: " << atom_list[(*i)[0]];
+          ss << ", "<<atom_list[(*i)[1]] << " and " << atom_list[(*i)[2]] << ".";
+          ss << "To ignore these things, set strict_interactions in the settings";
+          ss << " object to False (not recommended).";
+          throw ost::Error(ss.str());
+        }
+        continue;  // ignore it and continue with next interaction
+      }
+
+      parameters = angle_ptr->GetParam();
+      switch(angle_ptr->GetFuncType()){
+        case HarmonicAngle:{
+          top->AddHarmonicAngle((*i)[0],(*i)[1],(*i)[2],
+                                 parameters[0],parameters[1]);
+          break;
+        }
+        case UreyBradleyAngle:{
+          top->AddUreyBradleyAngle((*i)[0],(*i)[1],(*i)[2],
+                                    parameters[0],parameters[1],
+                                    parameters[2],parameters[3]);
+          break;
+        }
+        default:{
+          throw ost::Error("Observed invalid function type for angle interaction!");
+        }
+      }
+    }
+  }
+
+  if(settings->add_dihedrals){
+    //handle dihedrals
+    std::set<Index<4> > dihedrals_to_delete;
+    for(uint i = 0; i < res_list.size(); ++i){
+      interaction_list = building_blocks[i]->GetDihedrals();
+      for(std::vector<InteractionPtr>::iterator j = interaction_list.begin();
+          j != interaction_list.end(); ++j){
+        if((*j)->IsParametrized()){
+          interaction_atom_names = (*j)->GetNames();
+          uint one = GetAtomIndex(i,res_list,atom_indices,interaction_atom_names[0]);
+          uint two = GetAtomIndex(i,res_list,atom_indices,interaction_atom_names[1]); 
+          uint three = GetAtomIndex(i,res_list,atom_indices,interaction_atom_names[2]);
+          uint four = GetAtomIndex(i,res_list,atom_indices,interaction_atom_names[3]);
+          Index<4> dihedral_index;
+          if(one<four){
+            dihedral_index[0] = one;
+            dihedral_index[1] = two;
+            dihedral_index[2] = three;
+            dihedral_index[3] = four;
+          }
+          else{
+            dihedral_index[0] = four;
+            dihedral_index[1] = three;
+            dihedral_index[2] = two;
+            dihedral_index[3] = one;
+          }
+          if(dihedrals.find(dihedral_index) == dihedrals.end()){
+            std::stringstream ss;
+            ss << "Building block for residue " << res_list[i].GetQualifiedName();
+            ss << "defines dihedral, that doesn't exist!";
+            throw ost::Error(ss.str());
+          }
+          
+          dihedrals_to_delete.insert(dihedral_index);
+          //only periodic dihedrals are supported... 
+          parameters = (*j)->GetParam();
+          top->AddPeriodicDihedral(one,two,three,four,
+                                   parameters[0],parameters[1],parameters[2]);
+        }
+      }
+    }
+    
+    for(std::set<Index<4> >::iterator i = dihedrals_to_delete.begin();
+        i != dihedrals_to_delete.end(); ++i){
+      dihedrals.erase(*i);
+    }
+
+    //add pointers of dihedrals definitions, that are not already parametrized
+    //in the building blocks
+    for(std::set<Index<4> >::iterator i = dihedrals.begin();
+        i!=dihedrals.end(); ++i){
+
+      std::vector<InteractionPtr> dihedral_ptr;
+
+      try{
+        dihedral_ptr = ff->GetDihedrals(atom_types[(*i)[0]],
+                                        atom_types[(*i)[1]],
+                                        atom_types[(*i)[2]],
+                                        atom_types[(*i)[3]]);
+      } catch(ost::Error& e){
+        if(settings->strict_interactions){
+          std::stringstream ss;
+          ss << "Failed to parametrize dihedral between: " << atom_list[(*i)[0]];
+          ss << ", "<<atom_list[(*i)[1]] << ", " << atom_list[(*i)[2]] << " and ";
+          ss << atom_list[(*i)[3]] << ".";
+          ss << "To ignore these things, set strict_interactions in the settings";
+          ss << " object to False (not recommended).";
+          throw ost::Error(ss.str());
+        }
+        continue;  // ignore it and continue with next interaction
+      }
+
+      for(std::vector<InteractionPtr>::iterator j = dihedral_ptr.begin();
+          j != dihedral_ptr.end(); ++j){
+        parameters = (*j)->GetParam();
+        top->AddPeriodicDihedral((*i)[0],(*i)[1],(*i)[2],(*i)[3],
+                                  parameters[0],parameters[1],parameters[2]);
+      }
+    }
+  }
+
+  if(settings->add_impropers){
+    //handle impropers
+    std::set<Index<4> > impropers_to_delete;
+    for(uint i = 0; i < building_blocks.size(); ++i){
+      interaction_list = building_blocks[i]->GetImpropers();
+      for(std::vector<InteractionPtr>::iterator j = interaction_list.begin();
+          j != interaction_list.end(); ++j){
+        if((*j)->IsParametrized()){
+          //we do not have to care about the ordering, since we extracted the
+          //impropers from the building block => they will have the same ordering 
+          //anyway  (or at least hopefully ;) 
+          interaction_atom_names = (*j)->GetNames();
+          uint one = GetAtomIndex(i,res_list,atom_indices,interaction_atom_names[0]);
+          uint two = GetAtomIndex(i,res_list,atom_indices,interaction_atom_names[1]); 
+          uint three = GetAtomIndex(i,res_list,atom_indices,interaction_atom_names[2]);
+          uint four = GetAtomIndex(i,res_list,atom_indices,interaction_atom_names[3]);
+          Index<4> improper_index(one,two,three,four);
+          impropers_to_delete.insert(improper_index);
+          parameters = (*j)->GetParam();
+          switch((*j)->GetFuncType()){
+            case PeriodicImproper:{
+              top->AddPeriodicImproper(one,two,three,four,
+                                       parameters[0],parameters[1],parameters[2]);
+              break;
+            }
+            case HarmonicImproper:{
+              top->AddHarmonicImproper(one,two,three,four,
+                                       parameters[0],parameters[1]);
+              break;
+            }
+            default:{
+              throw ost::Error("Observed invalid function type when adding improper interaction!");
+            }
+          }
+        }
+      }
+    }
+    
+    for(std::set<Index<4> >::iterator i = impropers_to_delete.begin();
+        i != impropers_to_delete.end(); ++i){
+      impropers.erase(*i);
+    }
+    
+    //add pointers of improper definitions, that are not already parametrized
+    //in the building blocks
+
+    for(std::set<Index<4> >::iterator i = impropers.begin();
+        i!=impropers.end(); ++i){
+
+      std::vector<InteractionPtr> improper_ptr;
+
+      try{
+        improper_ptr = ff->GetImpropers(atom_types[(*i)[0]],
+                                        atom_types[(*i)[1]],
+                                        atom_types[(*i)[2]],
+                                        atom_types[(*i)[3]]);
+      } catch(ost::Error& e){
+        if(settings->strict_interactions){
+          std::stringstream ss;
+          ss << "Failed to parametrize improper between: " << atom_list[(*i)[0]];
+          ss << ", "<<atom_list[(*i)[1]] << ", " << atom_list[(*i)[2]] << " and ";
+          ss << atom_list[(*i)[3]] << ".";
+          ss << "To ignore these things, set strict_interactions in the settings";
+          ss << " object to False (not recommended).";
+          throw ost::Error(ss.str());
+        }
+        continue;  // ignore it and continue with next interaction
+      }
+
+      for(std::vector<InteractionPtr>::iterator j = improper_ptr.begin();
+          j != improper_ptr.end(); ++j){
+        parameters = (*j)->GetParam();
+        switch((*j)->GetFuncType()){
+          case PeriodicImproper:{
+            top->AddPeriodicImproper((*i)[0],(*i)[1],(*i)[2],(*i)[3],
+                                      parameters[0],parameters[1],parameters[2]);
+            break;
+          }
+          case HarmonicImproper:{
+            top->AddHarmonicImproper((*i)[0],(*i)[1],(*i)[2],(*i)[3],
+                                      parameters[0],parameters[1]);
+            break;
+          }
+          default:{
+            throw ost::Error("Observed invalid function type when adding improper interaction!");
+          }
+        }
+      }
+    }
+  }
+
+  if(settings->add_cmaps){
+    //handle cmaps
+    for(uint i = 0; i < res_list.size(); ++i){
+      interaction_list = building_blocks[i]->GetCMaps();
+      for(std::vector<InteractionPtr>::iterator j = interaction_list.begin();
+          j != interaction_list.end(); ++j){
+        if((*j)->IsParametrized()){
+          //we do not have to care about the ordering, since we extracted the
+          //cmaps from the building block => they will have the same ordering 
+          //anyway
+          interaction_atom_names = (*j)->GetNames();
+          uint one = GetAtomIndex(i,res_list,atom_indices,interaction_atom_names[0]);
+          uint two = GetAtomIndex(i,res_list,atom_indices,interaction_atom_names[1]); 
+          uint three = GetAtomIndex(i,res_list,atom_indices,interaction_atom_names[2]);
+          uint four = GetAtomIndex(i,res_list,atom_indices,interaction_atom_names[3]);
+          uint five = GetAtomIndex(i,res_list,atom_indices,interaction_atom_names[4]);
+          Index<5> cmap_index(one,two,three,four,five);
+          cmaps.erase(cmap_index);
+          parameters = (*j)->GetParam();
+          int dimension = int(parameters[0]);
+          parameters.erase(parameters.begin());
+          top->AddCMap(cmap_index[0],cmap_index[1],cmap_index[2],cmap_index[3],
+                       cmap_index[4],dimension,parameters);
+        }
+      }
+    }
+
+    //add pointers of cmap definitions, that are not already parametrized
+    //in the building blocks
+    for(std::set<Index<5> >::iterator i = cmaps.begin();
+        i!=cmaps.end(); ++i){
+
+      InteractionPtr cmap_ptr;
+
+      try{
+        cmap_ptr = ff->GetCMap(atom_types[(*i)[0]],
+                               atom_types[(*i)[1]],
+                               atom_types[(*i)[2]],
+                               atom_types[(*i)[3]],
+                               atom_types[(*i)[4]]);
+      } catch(ost::Error& e){
+        if(settings->strict_interactions){
+          std::stringstream ss;
+          ss << "Failed to parametrize cmap between: " << atom_list[(*i)[0]];
+          ss << ", "<<atom_list[(*i)[1]] << ", " << atom_list[(*i)[2]] << ", ";
+          ss << atom_list[(*i)[3]] << " and " << atom_list[(*i)[4]] << ".";
+          ss << "To ignore these things, set strict_interactions in the settings";
+          ss << " object to False (not recommended).";
+          throw ost::Error(ss.str());
+        }
+        continue;  // ignore it and continue with next interaction
+      }
+      parameters = cmap_ptr->GetParam();
+      int dimension = int(parameters[0]);
+      parameters.erase(parameters.begin());
+      top->AddCMap((*i)[0],(*i)[1],(*i)[2],(*i)[3],(*i)[4],dimension,parameters);
+    }
+  }
+
+  if(settings->add_nonbonded){
+
+    InteractionPtr lj_interaction;
+    std::vector<Real> sigmas;
+    std::vector<Real> epsilons;
+
+    for(std::vector<String>::iterator i = atom_types.begin();
+        i != atom_types.end(); ++i){
+      lj_interaction = ff->GetLJ(*i);
+      if(!lj_interaction){
+        std::stringstream ss;
+        ss << "Failed to find LJ parametrization for type \""<<*i<<"\"";
+        ss << " in given forcefield!";
+        throw ost::Error(ss.str());
+      }
+      parameters = lj_interaction->GetParam();
+      sigmas.push_back(parameters[0]);
+      epsilons.push_back(parameters[1]);
+    }
+    top->SetSigmas(sigmas);
+    top->SetEpsilons(epsilons);
+    //take care of the 1-4 interactions
+    for(std::set<Index<2> >::iterator i = pairs_14.begin();
+        i != pairs_14.end(); ++i){
+      //we can be sure, that the parameters are valid, since we found all single
+      //parameters. The forcefield can therefore build the new parametrization with
+      //the combination rules... Except: gen_pairs_ is set to no, but then an error
+      // is thrown anyway
+      lj_interaction = ff->GetLJ(atom_types[(*i)[0]], 
+                                 atom_types[(*i)[1]],
+                                 true);
+      parameters = lj_interaction->GetParam();
+      top->AddLJPair((*i)[0],(*i)[1],parameters[0],parameters[1]);
+    }
+    //take care of the exclusions
+    for(std::set<Index<2> >::iterator i = exclusions.begin();
+        i != exclusions.end(); ++i){
+      top->AddExclusion((*i)[0],(*i)[1]);
+    }
+  }
+  if(settings->add_gbsa){
+    std::vector<Real> radii;
+    std::vector<Real> scaling;
+    for(uint i = 0; i < atom_list.size(); ++i){
+      InteractionPtr gbsa_ptr = ff->GetImplicitGenborn(atom_types[i]);
+      if(!gbsa_ptr){
+        std::stringstream ss;
+        ss << "Structure contains atom of type " << types[i] << " which is not";
+        ss << "parametrized in the forcefield!"<<std::endl;
+        throw ost::Error(ss.str());
+      }
+      parameters = gbsa_ptr->GetParam();
+      radii.push_back(parameters[0]);
+      scaling.push_back(parameters[1]);
+    }
+    top->SetGBSARadii(radii);
+    top->SetOBCScalings(scaling);
+  }
+
+  top->SetFudgeQQ(ff->GetFudgeQQ());
+  top->SetFudgeLJ(ff->GetFudgeLJ());
+
+  if(!settings->keep_ff_specific_naming){
+    //let's rename to the pdb standard!
+    //first, we rename to the gromacs standars...
+    ff->AssignFFSpecificNames(ent,true);
+    //still call the assign gromacs names function...
+    Modeller::AssignGromacsNaming(ent);
+    //let's finally do the renaming to PDB standard
+    Modeller::AssignPDBNaming(ent);
+  }
+
+
+  return top;
+
+}
+
+}}}//ns
diff --git a/modules/mol/mm/src/topology_creator.hh b/modules/mol/mm/src/topology_creator.hh
new file mode 100644
index 0000000000000000000000000000000000000000..026abdc5cd4ba660c1f63848bf49b39157f0f2d7
--- /dev/null
+++ b/modules/mol/mm/src/topology_creator.hh
@@ -0,0 +1,57 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#ifndef OST_MM_TOPOLOGY_CREATOR_HH
+#define OST_MM_TOPOLOGY_CREATOR_HH
+
+#include <vector>
+#include <map>
+#include <set>
+#include <math.h>
+
+#include <ost/message.hh>
+#include <ost/mol/entity_handle.hh>
+#include <ost/mol/residue_handle.hh>
+#include <ost/mol/atom_handle.hh>
+#include <ost/mol/mm/forcefield.hh>
+#include <ost/mol/mm/buildingblock.hh>
+#include <ost/mol/mm/block_modifiers.hh>
+#include <ost/mol/mm/interaction.hh>
+#include <ost/mol/mm/settings.hh>
+#include <ost/mol/mm/modeller.hh>
+#include <ost/mol/mm/index.hh>
+#include <ost/mol/mm/topology.hh>
+
+
+namespace ost { namespace mol{ namespace mm{
+
+class TopologyCreator;
+typedef boost::shared_ptr<TopologyCreator> TopologyCreatorPtr;
+
+class TopologyCreator {
+public:
+  static TopologyPtr Create(ost::mol::EntityHandle& ent, 
+                            const SettingsPtr settings);
+
+};
+
+
+}}}//ns
+
+#endif
diff --git a/modules/mol/mm/tests/1CRN.pdb b/modules/mol/mm/tests/1CRN.pdb
new file mode 100644
index 0000000000000000000000000000000000000000..13ca618d438ae60a55a8ce1c532cd23bf545e200
--- /dev/null
+++ b/modules/mol/mm/tests/1CRN.pdb
@@ -0,0 +1,329 @@
+ATOM      1  N   THR A   1      17.047  14.099   3.625  1.00 13.79           N  
+ATOM      2  CA  THR A   1      16.967  12.784   4.338  1.00 10.80           C  
+ATOM      3  C   THR A   1      15.685  12.755   5.133  1.00  9.19           C  
+ATOM      4  O   THR A   1      15.268  13.825   5.594  1.00  9.85           O  
+ATOM      5  CB  THR A   1      18.170  12.703   5.337  1.00 13.02           C  
+ATOM      6  OG1 THR A   1      19.334  12.829   4.463  1.00 15.06           O  
+ATOM      7  CG2 THR A   1      18.150  11.546   6.304  1.00 14.23           C  
+ATOM      8  N   THR A   2      15.115  11.555   5.265  1.00  7.81           N  
+ATOM      9  CA  THR A   2      13.856  11.469   6.066  1.00  8.31           C  
+ATOM     10  C   THR A   2      14.164  10.785   7.379  1.00  5.80           C  
+ATOM     11  O   THR A   2      14.993   9.862   7.443  1.00  6.94           O  
+ATOM     12  CB  THR A   2      12.732  10.711   5.261  1.00 10.32           C  
+ATOM     13  OG1 THR A   2      13.308   9.439   4.926  1.00 12.81           O  
+ATOM     14  CG2 THR A   2      12.484  11.442   3.895  1.00 11.90           C  
+ATOM     15  N   CYS A   3      13.488  11.241   8.417  1.00  5.24           N  
+ATOM     16  CA  CYS A   3      13.660  10.707   9.787  1.00  5.39           C  
+ATOM     17  C   CYS A   3      12.269  10.431  10.323  1.00  4.45           C  
+ATOM     18  O   CYS A   3      11.393  11.308  10.185  1.00  6.54           O  
+ATOM     19  CB  CYS A   3      14.368  11.748  10.691  1.00  5.99           C  
+ATOM     20  SG  CYS A   3      15.885  12.426  10.016  1.00  7.01           S  
+ATOM     21  N   CYS A   4      12.019   9.272  10.928  1.00  3.90           N  
+ATOM     22  CA  CYS A   4      10.646   8.991  11.408  1.00  4.24           C  
+ATOM     23  C   CYS A   4      10.654   8.793  12.919  1.00  3.72           C  
+ATOM     24  O   CYS A   4      11.659   8.296  13.491  1.00  5.30           O  
+ATOM     25  CB  CYS A   4      10.057   7.752  10.682  1.00  4.41           C  
+ATOM     26  SG  CYS A   4       9.837   8.018   8.904  1.00  4.72           S  
+ATOM     27  N   PRO A   5       9.561   9.108  13.563  1.00  3.96           N  
+ATOM     28  CA  PRO A   5       9.448   9.034  15.012  1.00  4.25           C  
+ATOM     29  C   PRO A   5       9.288   7.670  15.606  1.00  4.96           C  
+ATOM     30  O   PRO A   5       9.490   7.519  16.819  1.00  7.44           O  
+ATOM     31  CB  PRO A   5       8.230   9.957  15.345  1.00  5.11           C  
+ATOM     32  CG  PRO A   5       7.338   9.786  14.114  1.00  5.24           C  
+ATOM     33  CD  PRO A   5       8.366   9.804  12.958  1.00  5.20           C  
+ATOM     34  N   SER A   6       8.875   6.686  14.796  1.00  4.83           N  
+ATOM     35  CA  SER A   6       8.673   5.314  15.279  1.00  4.45           C  
+ATOM     36  C   SER A   6       8.753   4.376  14.083  1.00  4.99           C  
+ATOM     37  O   SER A   6       8.726   4.858  12.923  1.00  4.61           O  
+ATOM     38  CB  SER A   6       7.340   5.121  15.996  1.00  5.05           C  
+ATOM     39  OG  SER A   6       6.274   5.220  15.031  1.00  6.39           O  
+ATOM     40  N   ILE A   7       8.881   3.075  14.358  1.00  4.94           N  
+ATOM     41  CA  ILE A   7       8.912   2.083  13.258  1.00  6.33           C  
+ATOM     42  C   ILE A   7       7.581   2.090  12.506  1.00  5.32           C  
+ATOM     43  O   ILE A   7       7.670   2.031  11.245  1.00  6.85           O  
+ATOM     44  CB  ILE A   7       9.207   0.677  13.924  1.00  8.43           C  
+ATOM     45  CG1 ILE A   7      10.714   0.702  14.312  1.00  9.78           C  
+ATOM     46  CG2 ILE A   7       8.811  -0.477  12.969  1.00 11.70           C  
+ATOM     47  CD1 ILE A   7      11.185  -0.516  15.142  1.00  9.92           C  
+ATOM     48  N   VAL A   8       6.458   2.162  13.159  1.00  5.02           N  
+ATOM     49  CA  VAL A   8       5.145   2.209  12.453  1.00  6.93           C  
+ATOM     50  C   VAL A   8       5.115   3.379  11.461  1.00  5.39           C  
+ATOM     51  O   VAL A   8       4.664   3.268  10.343  1.00  6.30           O  
+ATOM     52  CB  VAL A   8       3.995   2.354  13.478  1.00  9.64           C  
+ATOM     53  CG1 VAL A   8       2.716   2.891  12.869  1.00 13.85           C  
+ATOM     54  CG2 VAL A   8       3.758   1.032  14.208  1.00 11.97           C  
+ATOM     55  N   ALA A   9       5.606   4.546  11.941  1.00  3.73           N  
+ATOM     56  CA  ALA A   9       5.598   5.767  11.082  1.00  3.56           C  
+ATOM     57  C   ALA A   9       6.441   5.527   9.850  1.00  4.13           C  
+ATOM     58  O   ALA A   9       6.052   5.933   8.744  1.00  4.36           O  
+ATOM     59  CB  ALA A   9       6.022   6.977  11.891  1.00  4.80           C  
+ATOM     60  N   ARG A  10       7.647   4.909  10.005  1.00  3.73           N  
+ATOM     61  CA  ARG A  10       8.496   4.609   8.837  1.00  3.38           C  
+ATOM     62  C   ARG A  10       7.798   3.609   7.876  1.00  3.47           C  
+ATOM     63  O   ARG A  10       7.878   3.778   6.651  1.00  4.67           O  
+ATOM     64  CB  ARG A  10       9.847   4.020   9.305  1.00  3.95           C  
+ATOM     65  CG  ARG A  10      10.752   3.607   8.149  1.00  4.55           C  
+ATOM     66  CD  ARG A  10      11.226   4.699   7.244  1.00  5.89           C  
+ATOM     67  NE  ARG A  10      12.143   5.571   8.035  1.00  6.20           N  
+ATOM     68  CZ  ARG A  10      12.758   6.609   7.443  1.00  7.52           C  
+ATOM     69  NH1 ARG A  10      12.539   6.932   6.158  1.00 10.68           N  
+ATOM     70  NH2 ARG A  10      13.601   7.322   8.202  1.00  9.48           N  
+ATOM     71  N   SER A  11       7.186   2.582   8.445  1.00  5.19           N  
+ATOM     72  CA  SER A  11       6.500   1.584   7.565  1.00  4.60           C  
+ATOM     73  C   SER A  11       5.382   2.313   6.773  1.00  4.84           C  
+ATOM     74  O   SER A  11       5.213   2.016   5.557  1.00  5.84           O  
+ATOM     75  CB  SER A  11       5.908   0.462   8.400  1.00  5.91           C  
+ATOM     76  OG  SER A  11       6.990  -0.272   9.012  1.00  8.38           O  
+ATOM     77  N   ASN A  12       4.648   3.182   7.446  1.00  3.54           N  
+ATOM     78  CA  ASN A  12       3.545   3.935   6.751  1.00  4.57           C  
+ATOM     79  C   ASN A  12       4.107   4.851   5.691  1.00  4.14           C  
+ATOM     80  O   ASN A  12       3.536   5.001   4.617  1.00  5.52           O  
+ATOM     81  CB  ASN A  12       2.663   4.677   7.748  1.00  6.42           C  
+ATOM     82  CG  ASN A  12       1.802   3.735   8.610  1.00  8.25           C  
+ATOM     83  OD1 ASN A  12       1.567   2.613   8.165  1.00 12.72           O  
+ATOM     84  ND2 ASN A  12       1.394   4.252   9.767  1.00  9.92           N  
+ATOM     85  N   PHE A  13       5.259   5.498   6.005  1.00  3.43           N  
+ATOM     86  CA  PHE A  13       5.929   6.358   5.055  1.00  3.49           C  
+ATOM     87  C   PHE A  13       6.304   5.578   3.799  1.00  3.40           C  
+ATOM     88  O   PHE A  13       6.136   6.072   2.653  1.00  4.07           O  
+ATOM     89  CB  PHE A  13       7.183   6.994   5.754  1.00  5.48           C  
+ATOM     90  CG  PHE A  13       7.884   8.006   4.883  1.00  5.57           C  
+ATOM     91  CD1 PHE A  13       8.906   7.586   4.027  1.00  6.99           C  
+ATOM     92  CD2 PHE A  13       7.532   9.373   4.983  1.00  6.52           C  
+ATOM     93  CE1 PHE A  13       9.560   8.539   3.194  1.00  8.20           C  
+ATOM     94  CE2 PHE A  13       8.176  10.281   4.145  1.00  6.34           C  
+ATOM     95  CZ  PHE A  13       9.141   9.845   3.292  1.00  6.84           C  
+ATOM     96  N   ASN A  14       6.900   4.390   3.989  1.00  3.64           N  
+ATOM     97  CA  ASN A  14       7.331   3.607   2.791  1.00  4.31           C  
+ATOM     98  C   ASN A  14       6.116   3.210   1.915  1.00  3.98           C  
+ATOM     99  O   ASN A  14       6.240   3.144   0.684  1.00  6.22           O  
+ATOM    100  CB  ASN A  14       8.145   2.404   3.240  1.00  5.81           C  
+ATOM    101  CG  ASN A  14       9.555   2.856   3.730  1.00  6.82           C  
+ATOM    102  OD1 ASN A  14      10.013   3.895   3.323  1.00  9.43           O  
+ATOM    103  ND2 ASN A  14      10.120   1.956   4.539  1.00  8.21           N  
+ATOM    104  N   VAL A  15       4.993   2.927   2.571  1.00  3.76           N  
+ATOM    105  CA  VAL A  15       3.782   2.599   1.742  1.00  3.98           C  
+ATOM    106  C   VAL A  15       3.296   3.871   1.004  1.00  3.80           C  
+ATOM    107  O   VAL A  15       2.947   3.817  -0.189  1.00  4.85           O  
+ATOM    108  CB  VAL A  15       2.698   1.953   2.608  1.00  4.71           C  
+ATOM    109  CG1 VAL A  15       1.384   1.826   1.806  1.00  6.67           C  
+ATOM    110  CG2 VAL A  15       3.174   0.533   3.005  1.00  6.26           C  
+ATOM    111  N   CYS A  16       3.321   4.987   1.720  1.00  3.79           N  
+ATOM    112  CA  CYS A  16       2.890   6.285   1.126  1.00  3.54           C  
+ATOM    113  C   CYS A  16       3.687   6.597  -0.111  1.00  3.48           C  
+ATOM    114  O   CYS A  16       3.200   7.147  -1.103  1.00  4.63           O  
+ATOM    115  CB  CYS A  16       3.039   7.369   2.240  1.00  4.58           C  
+ATOM    116  SG  CYS A  16       2.559   9.014   1.649  1.00  5.66           S  
+ATOM    117  N   ARG A  17       4.997   6.227  -0.100  1.00  3.99           N  
+ATOM    118  CA  ARG A  17       5.895   6.489  -1.213  1.00  3.83           C  
+ATOM    119  C   ARG A  17       5.738   5.560  -2.409  1.00  3.79           C  
+ATOM    120  O   ARG A  17       6.228   5.901  -3.507  1.00  5.39           O  
+ATOM    121  CB  ARG A  17       7.370   6.507  -0.731  1.00  4.11           C  
+ATOM    122  CG  ARG A  17       7.717   7.687   0.206  1.00  4.69           C  
+ATOM    123  CD  ARG A  17       7.949   8.947  -0.615  1.00  5.10           C  
+ATOM    124  NE  ARG A  17       9.212   8.856  -1.337  1.00  4.71           N  
+ATOM    125  CZ  ARG A  17       9.537   9.533  -2.431  1.00  5.28           C  
+ATOM    126  NH1 ARG A  17       8.659  10.350  -3.032  1.00  6.67           N  
+ATOM    127  NH2 ARG A  17      10.793   9.491  -2.899  1.00  6.41           N  
+ATOM    128  N   LEU A  18       5.051   4.411  -2.204  1.00  4.70           N  
+ATOM    129  CA  LEU A  18       4.933   3.431  -3.326  1.00  5.46           C  
+ATOM    130  C   LEU A  18       4.397   4.014  -4.620  1.00  5.13           C  
+ATOM    131  O   LEU A  18       4.988   3.755  -5.687  1.00  5.55           O  
+ATOM    132  CB  LEU A  18       4.196   2.184  -2.863  1.00  6.47           C  
+ATOM    133  CG  LEU A  18       4.960   1.178  -1.991  1.00  7.43           C  
+ATOM    134  CD1 LEU A  18       3.907   0.097  -1.634  1.00  8.70           C  
+ATOM    135  CD2 LEU A  18       6.129   0.606  -2.768  1.00  9.39           C  
+ATOM    136  N   PRO A  19       3.329   4.795  -4.543  1.00  4.28           N  
+ATOM    137  CA  PRO A  19       2.792   5.376  -5.797  1.00  5.38           C  
+ATOM    138  C   PRO A  19       3.573   6.540  -6.322  1.00  6.30           C  
+ATOM    139  O   PRO A  19       3.260   7.045  -7.422  1.00  9.62           O  
+ATOM    140  CB  PRO A  19       1.358   5.766  -5.472  1.00  5.87           C  
+ATOM    141  CG  PRO A  19       1.223   5.694  -3.993  1.00  6.47           C  
+ATOM    142  CD  PRO A  19       2.421   4.941  -3.408  1.00  6.45           C  
+ATOM    143  N   GLY A  20       4.565   7.047  -5.559  1.00  4.94           N  
+ATOM    144  CA  GLY A  20       5.366   8.191  -6.018  1.00  5.39           C  
+ATOM    145  C   GLY A  20       5.007   9.481  -5.280  1.00  5.03           C  
+ATOM    146  O   GLY A  20       5.535  10.510  -5.730  1.00  7.34           O  
+ATOM    147  N   THR A  21       4.181   9.438  -4.262  1.00  4.10           N  
+ATOM    148  CA  THR A  21       3.767  10.609  -3.513  1.00  3.94           C  
+ATOM    149  C   THR A  21       5.017  11.397  -3.042  1.00  3.96           C  
+ATOM    150  O   THR A  21       5.947  10.757  -2.523  1.00  5.82           O  
+ATOM    151  CB  THR A  21       2.992  10.188  -2.225  1.00  4.13           C  
+ATOM    152  OG1 THR A  21       2.051   9.144  -2.623  1.00  5.45           O  
+ATOM    153  CG2 THR A  21       2.260  11.349  -1.551  1.00  5.41           C  
+ATOM    154  N   PRO A  22       4.971  12.703  -3.176  1.00  5.04           N  
+ATOM    155  CA  PRO A  22       6.143  13.513  -2.696  1.00  4.69           C  
+ATOM    156  C   PRO A  22       6.400  13.233  -1.225  1.00  4.19           C  
+ATOM    157  O   PRO A  22       5.485  13.061  -0.382  1.00  4.47           O  
+ATOM    158  CB  PRO A  22       5.703  14.969  -2.920  1.00  7.12           C  
+ATOM    159  CG  PRO A  22       4.676  14.893  -3.996  1.00  7.03           C  
+ATOM    160  CD  PRO A  22       3.964  13.567  -3.811  1.00  4.90           C  
+ATOM    161  N   GLU A  23       7.728  13.297  -0.921  1.00  5.16           N  
+ATOM    162  CA  GLU A  23       8.114  13.103   0.500  1.00  5.31           C  
+ATOM    163  C   GLU A  23       7.427  14.073   1.410  1.00  4.11           C  
+ATOM    164  O   GLU A  23       7.036  13.682   2.540  1.00  5.11           O  
+ATOM    165  CB  GLU A  23       9.648  13.285   0.660  1.00  6.16           C  
+ATOM    166  CG  GLU A  23      10.440  12.093   0.063  1.00  7.48           C  
+ATOM    167  CD  GLU A  23      11.941  12.170   0.391  1.00  9.40           C  
+ATOM    168  OE1 GLU A  23      12.416  13.225   0.681  1.00 10.40           O  
+ATOM    169  OE2 GLU A  23      12.539  11.070   0.292  1.00 13.32           O  
+ATOM    170  N   ALA A  24       7.212  15.334   0.966  1.00  4.56           N  
+ATOM    171  CA  ALA A  24       6.614  16.317   1.913  1.00  4.49           C  
+ATOM    172  C   ALA A  24       5.212  15.936   2.350  1.00  4.10           C  
+ATOM    173  O   ALA A  24       4.782  16.166   3.495  1.00  5.64           O  
+ATOM    174  CB  ALA A  24       6.605  17.695   1.246  1.00  5.80           C  
+ATOM    175  N   ILE A  25       4.445  15.318   1.405  1.00  4.37           N  
+ATOM    176  CA  ILE A  25       3.074  14.894   1.756  1.00  5.44           C  
+ATOM    177  C   ILE A  25       3.085  13.643   2.645  1.00  4.32           C  
+ATOM    178  O   ILE A  25       2.315  13.523   3.578  1.00  4.72           O  
+ATOM    179  CB  ILE A  25       2.204  14.637   0.462  1.00  6.42           C  
+ATOM    180  CG1 ILE A  25       1.815  16.048  -0.129  1.00  7.50           C  
+ATOM    181  CG2 ILE A  25       0.903  13.864   0.811  1.00  7.65           C  
+ATOM    182  CD1 ILE A  25       0.756  16.761   0.757  1.00  7.80           C  
+ATOM    183  N   CYS A  26       4.032  12.764   2.313  1.00  3.92           N  
+ATOM    184  CA  CYS A  26       4.180  11.549   3.187  1.00  4.37           C  
+ATOM    185  C   CYS A  26       4.632  11.944   4.596  1.00  3.95           C  
+ATOM    186  O   CYS A  26       4.227  11.252   5.547  1.00  4.74           O  
+ATOM    187  CB  CYS A  26       5.038  10.518   2.539  1.00  4.63           C  
+ATOM    188  SG  CYS A  26       4.349   9.794   1.022  1.00  5.61           S  
+ATOM    189  N   ALA A  27       5.408  13.012   4.694  1.00  3.89           N  
+ATOM    190  CA  ALA A  27       5.879  13.502   6.026  1.00  4.43           C  
+ATOM    191  C   ALA A  27       4.696  13.908   6.882  1.00  4.26           C  
+ATOM    192  O   ALA A  27       4.528  13.422   8.025  1.00  5.44           O  
+ATOM    193  CB  ALA A  27       6.880  14.615   5.830  1.00  5.36           C  
+ATOM    194  N   THR A  28       3.827  14.802   6.358  1.00  4.53           N  
+ATOM    195  CA  THR A  28       2.691  15.221   7.194  1.00  5.08           C  
+ATOM    196  C   THR A  28       1.672  14.132   7.434  1.00  4.62           C  
+ATOM    197  O   THR A  28       0.947  14.112   8.468  1.00  7.80           O  
+ATOM    198  CB  THR A  28       1.986  16.520   6.614  1.00  6.03           C  
+ATOM    199  OG1 THR A  28       1.664  16.221   5.230  1.00  7.19           O  
+ATOM    200  CG2 THR A  28       2.914  17.739   6.700  1.00  7.34           C  
+ATOM    201  N   TYR A  29       1.621  13.190   6.511  1.00  5.01           N  
+ATOM    202  CA  TYR A  29       0.715  12.045   6.657  1.00  6.60           C  
+ATOM    203  C   TYR A  29       1.125  11.125   7.815  1.00  4.92           C  
+ATOM    204  O   TYR A  29       0.286  10.632   8.545  1.00  7.13           O  
+ATOM    205  CB  TYR A  29       0.755  11.229   5.322  1.00  9.66           C  
+ATOM    206  CG  TYR A  29      -0.203  10.044   5.354  1.00 11.56           C  
+ATOM    207  CD1 TYR A  29      -1.547  10.337   5.645  1.00 12.85           C  
+ATOM    208  CD2 TYR A  29       0.193   8.750   5.100  1.00 14.44           C  
+ATOM    209  CE1 TYR A  29      -2.496   9.329   5.673  1.00 16.61           C  
+ATOM    210  CE2 TYR A  29      -0.801   7.705   5.156  1.00 17.11           C  
+ATOM    211  CZ  TYR A  29      -2.079   8.031   5.430  1.00 19.99           C  
+ATOM    212  OH  TYR A  29      -3.097   7.057   5.458  1.00 28.98           O  
+ATOM    213  N   THR A  30       2.470  10.984   7.995  1.00  5.31           N  
+ATOM    214  CA  THR A  30       2.986   9.994   8.950  1.00  5.70           C  
+ATOM    215  C   THR A  30       3.609  10.505  10.230  1.00  6.28           C  
+ATOM    216  O   THR A  30       3.766   9.715  11.186  1.00  8.77           O  
+ATOM    217  CB  THR A  30       4.076   9.103   8.225  1.00  6.55           C  
+ATOM    218  OG1 THR A  30       5.125  10.027   7.824  1.00  6.57           O  
+ATOM    219  CG2 THR A  30       3.493   8.324   7.035  1.00  7.29           C  
+ATOM    220  N   GLY A  31       3.984  11.764  10.241  1.00  4.99           N  
+ATOM    221  CA  GLY A  31       4.769  12.336  11.360  1.00  5.50           C  
+ATOM    222  C   GLY A  31       6.255  12.243  11.106  1.00  4.19           C  
+ATOM    223  O   GLY A  31       7.037  12.750  11.954  1.00  6.12           O  
+ATOM    224  N   CYS A  32       6.710  11.631   9.992  1.00  4.30           N  
+ATOM    225  CA  CYS A  32       8.140  11.694   9.635  1.00  4.89           C  
+ATOM    226  C   CYS A  32       8.500  13.141   9.206  1.00  5.50           C  
+ATOM    227  O   CYS A  32       7.581  13.949   8.944  1.00  5.82           O  
+ATOM    228  CB  CYS A  32       8.504  10.686   8.530  1.00  4.66           C  
+ATOM    229  SG  CYS A  32       8.048   8.987   8.881  1.00  5.33           S  
+ATOM    230  N   ILE A  33       9.793  13.410   9.173  1.00  6.02           N  
+ATOM    231  CA  ILE A  33      10.280  14.760   8.823  1.00  5.24           C  
+ATOM    232  C   ILE A  33      11.346  14.658   7.743  1.00  5.16           C  
+ATOM    233  O   ILE A  33      11.971  13.583   7.552  1.00  7.19           O  
+ATOM    234  CB  ILE A  33      10.790  15.535  10.085  1.00  5.49           C  
+ATOM    235  CG1 ILE A  33      12.059  14.803  10.671  1.00  6.85           C  
+ATOM    236  CG2 ILE A  33       9.684  15.686  11.138  1.00  6.45           C  
+ATOM    237  CD1 ILE A  33      12.733  15.676  11.781  1.00  8.94           C  
+ATOM    238  N   ILE A  34      11.490  15.773   7.038  1.00  5.52           N  
+ATOM    239  CA  ILE A  34      12.552  15.877   6.036  1.00  6.82           C  
+ATOM    240  C   ILE A  34      13.590  16.917   6.560  1.00  6.92           C  
+ATOM    241  O   ILE A  34      13.168  18.006   6.945  1.00  9.22           O  
+ATOM    242  CB  ILE A  34      11.987  16.360   4.681  1.00  8.11           C  
+ATOM    243  CG1 ILE A  34      10.914  15.338   4.163  1.00  9.59           C  
+ATOM    244  CG2 ILE A  34      13.131  16.517   3.629  1.00  9.73           C  
+ATOM    245  CD1 ILE A  34      10.151  16.024   2.938  1.00 13.41           C  
+ATOM    246  N   ILE A  35      14.856  16.493   6.536  1.00  7.06           N  
+ATOM    247  CA  ILE A  35      15.930  17.454   6.941  1.00  7.52           C  
+ATOM    248  C   ILE A  35      16.913  17.550   5.819  1.00  6.63           C  
+ATOM    249  O   ILE A  35      17.097  16.660   4.970  1.00  7.90           O  
+ATOM    250  CB  ILE A  35      16.622  16.995   8.285  1.00  8.07           C  
+ATOM    251  CG1 ILE A  35      17.360  15.651   8.067  1.00  9.41           C  
+ATOM    252  CG2 ILE A  35      15.592  16.974   9.434  1.00  9.46           C  
+ATOM    253  CD1 ILE A  35      18.298  15.206   9.219  1.00  9.85           C  
+ATOM    254  N   PRO A  36      17.664  18.669   5.806  1.00  8.07           N  
+ATOM    255  CA  PRO A  36      18.635  18.861   4.738  1.00  8.78           C  
+ATOM    256  C   PRO A  36      19.925  18.042   4.949  1.00  8.31           C  
+ATOM    257  O   PRO A  36      20.593  17.742   3.945  1.00  9.09           O  
+ATOM    258  CB  PRO A  36      18.945  20.364   4.783  1.00  9.67           C  
+ATOM    259  CG  PRO A  36      18.238  20.937   5.908  1.00 10.15           C  
+ATOM    260  CD  PRO A  36      17.371  19.900   6.596  1.00  9.53           C  
+ATOM    261  N   GLY A  37      20.172  17.730   6.217  1.00  8.48           N  
+ATOM    262  CA  GLY A  37      21.452  16.969   6.513  1.00  9.20           C  
+ATOM    263  C   GLY A  37      21.143  15.478   6.427  1.00 10.41           C  
+ATOM    264  O   GLY A  37      20.138  15.023   5.878  1.00 12.06           O  
+ATOM    265  N   ALA A  38      22.055  14.701   7.032  1.00  9.24           N  
+ATOM    266  CA  ALA A  38      22.019  13.242   7.020  1.00  9.24           C  
+ATOM    267  C   ALA A  38      21.944  12.628   8.396  1.00  9.60           C  
+ATOM    268  O   ALA A  38      21.869  11.387   8.435  1.00 13.65           O  
+ATOM    269  CB  ALA A  38      23.246  12.697   6.275  1.00 10.43           C  
+ATOM    270  N   THR A  39      21.894  13.435   9.436  1.00  8.70           N  
+ATOM    271  CA  THR A  39      21.936  12.911  10.809  1.00  9.46           C  
+ATOM    272  C   THR A  39      20.615  13.191  11.521  1.00  8.32           C  
+ATOM    273  O   THR A  39      20.357  14.317  11.948  1.00  9.89           O  
+ATOM    274  CB  THR A  39      23.131  13.601  11.593  1.00 10.72           C  
+ATOM    275  OG1 THR A  39      24.284  13.401  10.709  1.00 11.66           O  
+ATOM    276  CG2 THR A  39      23.340  12.935  12.962  1.00 11.81           C  
+ATOM    277  N   CYS A  40      19.827  12.110  11.642  1.00  7.64           N  
+ATOM    278  CA  CYS A  40      18.504  12.312  12.298  1.00  8.05           C  
+ATOM    279  C   CYS A  40      18.684  12.451  13.784  1.00  7.63           C  
+ATOM    280  O   CYS A  40      19.533  11.718  14.362  1.00  9.64           O  
+ATOM    281  CB  CYS A  40      17.582  11.117  11.996  1.00  7.80           C  
+ATOM    282  SG  CYS A  40      17.199  10.929  10.237  1.00  7.30           S  
+ATOM    283  N   PRO A  41      17.880  13.266  14.426  1.00  8.00           N  
+ATOM    284  CA  PRO A  41      17.924  13.421  15.877  1.00  8.96           C  
+ATOM    285  C   PRO A  41      17.392  12.206  16.594  1.00  9.06           C  
+ATOM    286  O   PRO A  41      16.652  11.368  16.033  1.00  8.82           O  
+ATOM    287  CB  PRO A  41      17.076  14.658  16.145  1.00 10.39           C  
+ATOM    288  CG  PRO A  41      16.098  14.689  14.997  1.00 10.99           C  
+ATOM    289  CD  PRO A  41      16.859  14.150  13.779  1.00 10.49           C  
+ATOM    290  N   GLY A  42      17.728  12.124  17.884  1.00  7.55           N  
+ATOM    291  CA  GLY A  42      17.334  10.956  18.691  1.00  8.00           C  
+ATOM    292  C   GLY A  42      15.875  10.688  18.871  1.00  7.22           C  
+ATOM    293  O   GLY A  42      15.434   9.550  19.166  1.00  8.41           O  
+ATOM    294  N   ASP A  43      15.036  11.747  18.715  1.00  5.54           N  
+ATOM    295  CA  ASP A  43      13.564  11.573  18.836  1.00  5.85           C  
+ATOM    296  C   ASP A  43      12.936  11.227  17.470  1.00  5.87           C  
+ATOM    297  O   ASP A  43      11.720  11.040  17.428  1.00  7.29           O  
+ATOM    298  CB  ASP A  43      12.933  12.737  19.580  1.00  6.72           C  
+ATOM    299  CG  ASP A  43      13.140  14.094  18.958  1.00  8.59           C  
+ATOM    300  OD1 ASP A  43      14.109  14.303  18.212  1.00  9.59           O  
+ATOM    301  OD2 ASP A  43      12.267  14.963  19.265  1.00 11.45           O  
+ATOM    302  N   TYR A  44      13.725  11.174  16.425  1.00  5.22           N  
+ATOM    303  CA  TYR A  44      13.257  10.745  15.081  1.00  5.56           C  
+ATOM    304  C   TYR A  44      14.275   9.687  14.612  1.00  4.61           C  
+ATOM    305  O   TYR A  44      14.930   9.862  13.568  1.00  6.04           O  
+ATOM    306  CB  TYR A  44      13.200  11.914  14.071  1.00  5.41           C  
+ATOM    307  CG  TYR A  44      12.000  12.819  14.399  1.00  5.34           C  
+ATOM    308  CD1 TYR A  44      12.119  13.853  15.332  1.00  6.59           C  
+ATOM    309  CD2 TYR A  44      10.775  12.617  13.762  1.00  5.94           C  
+ATOM    310  CE1 TYR A  44      11.045  14.675  15.610  1.00  5.97           C  
+ATOM    311  CE2 TYR A  44       9.676  13.433  14.048  1.00  5.17           C  
+ATOM    312  CZ  TYR A  44       9.802  14.456  14.996  1.00  5.96           C  
+ATOM    313  OH  TYR A  44       8.740  15.265  15.269  1.00  8.60           O  
+ATOM    314  N   ALA A  45      14.342   8.640  15.422  1.00  4.76           N  
+ATOM    315  CA  ALA A  45      15.445   7.667  15.246  1.00  5.89           C  
+ATOM    316  C   ALA A  45      15.171   6.533  14.280  1.00  6.67           C  
+ATOM    317  O   ALA A  45      16.093   5.705  14.039  1.00  7.56           O  
+ATOM    318  CB  ALA A  45      15.680   7.099  16.682  1.00  6.82           C  
+ATOM    319  N   ASN A  46      13.966   6.502  13.739  1.00  5.80           N  
+ATOM    320  CA  ASN A  46      13.512   5.395  12.878  1.00  6.15           C  
+ATOM    321  C   ASN A  46      13.311   5.853  11.455  1.00  6.61           C  
+ATOM    322  O   ASN A  46      13.733   6.929  11.026  1.00  7.18           O  
+ATOM    323  CB  ASN A  46      12.266   4.769  13.501  1.00  7.27           C  
+ATOM    324  CG  ASN A  46      12.538   4.304  14.922  1.00  7.98           C  
+ATOM    325  OD1 ASN A  46      11.982   4.849  15.886  1.00 11.00           O  
+ATOM    326  ND2 ASN A  46      13.407   3.298  15.015  1.00 10.32           N  
+ATOM    327  OXT ASN A  46      12.703   4.973  10.746  1.00  7.86           O  
+TER     328      ASN A  46                                                      
+END   
diff --git a/modules/mol/mm/tests/AMBER03.dat b/modules/mol/mm/tests/AMBER03.dat
new file mode 100644
index 0000000000000000000000000000000000000000..69e7d22171f447229ce354d731773876fcba7bd4
Binary files /dev/null and b/modules/mol/mm/tests/AMBER03.dat differ
diff --git a/modules/mol/mm/tests/CHARMM27.dat b/modules/mol/mm/tests/CHARMM27.dat
new file mode 100644
index 0000000000000000000000000000000000000000..9a9459fb0c9882ff4db05a70560389124a73f2e6
Binary files /dev/null and b/modules/mol/mm/tests/CHARMM27.dat differ
diff --git a/modules/mol/mm/tests/CMakeLists.txt b/modules/mol/mm/tests/CMakeLists.txt
new file mode 100644
index 0000000000000000000000000000000000000000..99f2c4575dbc77849567d5d9e08a0497dfc9118d
--- /dev/null
+++ b/modules/mol/mm/tests/CMakeLists.txt
@@ -0,0 +1,12 @@
+set(OST_MOL_MM_UNIT_TESTS
+  test_interaction.cc
+  test_block.cc
+  test_block_modifiers.cc
+  test_topology.cc
+  test_forcefield.cc
+  test_simulation.cc
+  tests.cc
+)
+
+ost_unittest(MODULE mol_mm SOURCES "${OST_MOL_MM_UNIT_TESTS}")
+
diff --git a/modules/mol/mm/tests/test.ff b/modules/mol/mm/tests/test.ff
new file mode 100644
index 0000000000000000000000000000000000000000..a9dfffe15ebe5915d3daba9c199e01cef5645e0c
Binary files /dev/null and b/modules/mol/mm/tests/test.ff differ
diff --git a/modules/mol/mm/tests/test_block.cc b/modules/mol/mm/tests/test_block.cc
new file mode 100644
index 0000000000000000000000000000000000000000..20aaf2a7328779ae52cf2c6e7b0626b3f94e78e7
--- /dev/null
+++ b/modules/mol/mm/tests/test_block.cc
@@ -0,0 +1,230 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <boost/test/unit_test.hpp>
+#include <boost/test/auto_unit_test.hpp>
+#include <ost/mol/mm/interaction.hh>
+#include <ost/mol/mm/buildingblock.hh>
+#include <ost/mol/mol.hh>
+#include <ost/mol/builder.hh>
+#include <ost/mol/xcs_editor.hh>
+
+
+#include <ost/message.hh>
+
+using namespace ost::mol::mm;
+
+BOOST_AUTO_TEST_SUITE( mol_mm );
+
+BOOST_AUTO_TEST_CASE(test_block_basics) 
+{
+  BuildingBlock block = BuildingBlock();
+  block.AddAtom("A","a",0.5);
+  block.AddAtom("B","b",1.0);
+  InteractionPtr bond(new Interaction(HarmonicBond));
+  std::vector<String> names;
+  names.push_back("A");
+  names.push_back("B");
+  bond->SetNames(names);
+  block.AddBond(bond);
+  BOOST_CHECK_THROW(block.GetCharge("C"),ost::Error);
+  BOOST_CHECK_THROW(block.GetType("C"),ost::Error);
+  BOOST_CHECK(block.GetCharge("A") == 0.5);
+  BOOST_CHECK(block.GetType("A") == "a");
+  block.ReplaceAtom("A","X","x",42.0);
+  BOOST_CHECK(block.GetType("X") == "x");
+  BOOST_CHECK(block.GetCharge("X")==42.0);
+  BOOST_CHECK(block.GetAtoms().size() == 2);
+  std::vector<InteractionPtr> bonds = block.GetBonds();
+  BOOST_CHECK(bonds[0]->HasName("X"));
+  block.RemoveAtom("X");
+  BOOST_CHECK_THROW(block.GetType("X"),ost::Error);
+  BOOST_CHECK_NO_THROW(block.GetType("B"));
+  BOOST_CHECK(block.GetAtoms().size()==1);
+  BOOST_CHECK(block.GetCharges().size()==1);
+  BOOST_CHECK(block.GetBonds().size()==0);
+  std::vector<Real> param_one,param_two;
+  param_one.push_back(1.0);
+  param_one.push_back(1.0);
+  param_two.push_back(2.0);
+  param_two.push_back(2.0);
+  InteractionPtr bond_one(new Interaction(HarmonicBond));
+  InteractionPtr bond_two(new Interaction(HarmonicBond));
+  bond_one->SetNames(names);
+  bond_one->SetParam(param_one);
+  bond_two->SetNames(names);
+  bond_two->SetParam(param_two);
+  block.AddBond(bond_one);
+  BOOST_CHECK(block.GetBonds()[0]->GetParam() == param_one);
+  block.AddBond(bond_two,true);
+  BOOST_CHECK(block.GetBonds()[0]->GetParam() == param_two);
+  block.RemoveAtom("A");
+
+  names[0] = "-A";
+  bond_one->SetNames(names);
+  names[0] = "A";
+  names[1] = "+B";
+  bond_two->SetNames(names);
+  block.AddBond(bond_one);
+  block.AddBond(bond_two);
+  BOOST_CHECK(block.GetBonds().size() == 2);
+  block.RemoveInteractionsToPrev();
+  BOOST_CHECK(block.GetBonds().size() == 1);
+  BOOST_CHECK(block.GetBonds()[0]->HasName("+B"));
+  block.RemoveInteractionsToNext();
+  BOOST_CHECK(block.GetBonds().size() == 0);
+}
+
+BOOST_AUTO_TEST_CASE(test_connect)
+{
+  ost::mol::EntityHandle e = ost::mol::Builder()
+                             .Chain("A")
+                                .Residue("ONE")
+                                  .Atom("A",geom::Vec3(0,0,0))
+                                  .Atom("B",geom::Vec3(1,1,1))
+                                .Residue("TWO")
+                                  .Atom("A",geom::Vec3(2,2,2))
+                                  .Atom("B",geom::Vec3(3,3,3))
+                                .Residue("THREE")
+                                  .Atom("A",geom::Vec3(4,4,4))
+                                  .Atom("B",geom::Vec3(5,5,5));
+
+  ost::mol::XCSEditor ed = e.EditXCS();
+  ed.DeleteBonds(e.GetBondList());
+
+  BuildingBlock block = BuildingBlock();
+  block.AddAtom("A","a",0.0);
+  block.AddAtom("B","b",0.0);
+
+  InteractionPtr bond_one(new Interaction(HarmonicBond));
+  InteractionPtr bond_two(new Interaction(HarmonicBond));
+  InteractionPtr bond_three(new Interaction(HarmonicBond));
+  std::vector<String> two_string;
+  two_string.push_back("A");
+  two_string.push_back("B");
+  bond_one->SetNames(two_string);
+  two_string[0] = "-B";
+  two_string[1] = "A";
+  bond_two->SetNames(two_string);
+  two_string[0] = "B";
+  two_string[1] = "+A";
+  bond_three->SetNames(two_string);
+  block.AddBond(bond_one);
+  block.AddBond(bond_two);
+  block.AddBond(bond_three);
+
+  ost::mol::ResidueHandleList res_list = e.GetResidueList();
+  ost::mol::AtomHandleList atoms_one = res_list[0].GetAtomList();
+  ost::mol::AtomHandleList atoms_two = res_list[1].GetAtomList();
+  ost::mol::AtomHandleList atoms_three = res_list[2].GetAtomList();
+
+  block.Connect(res_list[1],ed);
+  BOOST_CHECK(ost::mol::BondExists(atoms_one[1],atoms_two[0]));
+  BOOST_CHECK(ost::mol::BondExists(atoms_two[0],atoms_two[1]));
+  BOOST_CHECK(ost::mol::BondExists(atoms_two[1],atoms_three[0]));
+
+  ed.DeleteBonds(e.GetBondList());
+
+  BOOST_CHECK_THROW(block.Connect(res_list[0],ed),ost::Error);
+  BOOST_CHECK_THROW(block.Connect(res_list[2],ed),ost::Error);
+
+  InteractionPtr bond_four(new Interaction(HarmonicBond));
+  two_string[1] = "X";
+  bond_four->SetNames(two_string);
+  block.AddBond(bond_four);
+
+  BOOST_CHECK_THROW(block.Connect(res_list[1],ed),ost::Error);
+}
+
+BOOST_AUTO_TEST_CASE(test_match)
+{
+
+  ost::mol::EntityHandle e = ost::mol::Builder()
+                             .Chain("A")
+                                .Residue("ONE")
+                                  .Atom("A",geom::Vec3(0,0,0))
+                                  .Atom("B",geom::Vec3(1,1,1))
+                                .Residue("TWO")
+                                  .Atom("A",geom::Vec3(2,2,2))
+                                  .Atom("B",geom::Vec3(3,3,3))
+                                .Residue("THREE")
+                                  .Atom("A",geom::Vec3(4,4,4))
+                                  .Atom("B",geom::Vec3(5,5,5))
+                                .Residue("FOUR")
+                                  .Atom("A",geom::Vec3(6,6,6))
+                                  .Atom("B",geom::Vec3(7,7,7));
+
+  ost::mol::ResidueHandleList res_list = e.GetResidueList();
+  ost::mol::XCSEditor ed = e.EditXCS();
+
+  ed.Connect(res_list[0].FindAtom("A"),res_list[0].FindAtom("B"));
+  ed.Connect(res_list[0].FindAtom("B"),res_list[1].FindAtom("A"));
+  ed.Connect(res_list[1].FindAtom("A"),res_list[1].FindAtom("B"));
+  ed.Connect(res_list[1].FindAtom("B"),res_list[2].FindAtom("A"));
+  ed.Connect(res_list[2].FindAtom("A"),res_list[2].FindAtom("B"));
+  //ed.Connect(atoms_two[1],atoms_four[1]);
+
+  BuildingBlock block = BuildingBlock();
+  String info_string;
+  BOOST_CHECK(!block.Match(res_list[1],true,info_string));
+
+  block.AddAtom("A","a",0.0);
+  block.AddAtom("B","b",0.0);
+
+  BOOST_CHECK(!block.Match(res_list[1],true,info_string));
+
+  InteractionPtr bond_one(new Interaction(HarmonicBond));
+  InteractionPtr bond_two(new Interaction(HarmonicBond));
+  InteractionPtr bond_three(new Interaction(HarmonicBond));
+
+  std::vector<String> names_one;
+  names_one.push_back("A");
+  names_one.push_back("B");
+  std::vector<String> names_two;
+  names_two.push_back("-B");
+  names_two.push_back("A");  
+  std::vector<String> names_three;
+  names_three.push_back("B");
+  names_three.push_back("+A");
+  
+  bond_one->SetNames(names_one);
+  bond_two->SetNames(names_two);
+  bond_three->SetNames(names_three);
+
+  block.AddBond(bond_one);
+  BOOST_CHECK(block.Match(res_list[1],true,info_string));
+
+  block.AddBond(bond_two);
+  BOOST_CHECK(block.Match(res_list[1],true,info_string));
+
+  block.AddBond(bond_three);
+  BOOST_CHECK(block.Match(res_list[1],true,info_string));
+
+  //let's remove the central bond and replace it with a constraint
+
+  block.RemoveAtom("A");
+  block.AddAtom("A","a",0.0);
+  InteractionPtr constraint(new Interaction(DistanceConstraint));
+  constraint->SetNames(names_one);
+  BOOST_CHECK(!block.Match(res_list[1],true,info_string));
+  block.AddConstraint(constraint);
+  BOOST_CHECK(block.Match(res_list[1],true,info_string));
+}
+
+BOOST_AUTO_TEST_SUITE_END();
diff --git a/modules/mol/mm/tests/test_block_modifiers.cc b/modules/mol/mm/tests/test_block_modifiers.cc
new file mode 100644
index 0000000000000000000000000000000000000000..0c60dd268b4f06b02204c6eae8c075d650701685
--- /dev/null
+++ b/modules/mol/mm/tests/test_block_modifiers.cc
@@ -0,0 +1,103 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <boost/test/unit_test.hpp>
+#include <boost/test/auto_unit_test.hpp>
+#include <ost/mol/mm/interaction.hh>
+#include <ost/mol/mm/buildingblock.hh>
+#include <ost/mol/mol.hh>
+#include <ost/mol/builder.hh>
+#include <ost/mol/xcs_editor.hh>
+#include <ost/mol/mm/gromacs_block_modifiers.hh>
+
+
+#include <ost/message.hh>
+
+using namespace ost::mol::mm;
+
+BOOST_AUTO_TEST_SUITE( mol_mm );
+
+BOOST_AUTO_TEST_CASE(test_gromacs_block_modifier_basics){
+
+  GromacsBlockModifier mod;
+
+  //let's create some interactions
+  InteractionPtr harmonic_bond(new Interaction(HarmonicBond));
+  InteractionPtr urey_bradley_angle(new Interaction(UreyBradleyAngle));
+  InteractionPtr harmonic_angle(new Interaction(HarmonicAngle));
+  InteractionPtr periodic_dihedral(new Interaction(PeriodicDihedral));
+  InteractionPtr periodic_improper(new Interaction(PeriodicImproper));
+  InteractionPtr harmonic_improper(new Interaction(HarmonicImproper));
+  InteractionPtr cmap(new Interaction(CMap));
+
+  //check whether error gets thrown, when names of interactions are not set
+  BOOST_CHECK_THROW(mod.AddBond(harmonic_bond),ost::Error);
+  BOOST_CHECK_THROW(mod.AddAngle(harmonic_angle),ost::Error);
+  BOOST_CHECK_THROW(mod.AddDihedral(periodic_dihedral),ost::Error);
+  BOOST_CHECK_THROW(mod.AddImproper(periodic_improper),ost::Error);
+  BOOST_CHECK_THROW(mod.AddCMap(cmap),ost::Error);
+
+  std::vector<String> two_string, three_string, four_string, five_string;
+
+  two_string.push_back("one");
+  three_string.push_back("one");
+  four_string.push_back("one");
+  five_string.push_back("one");
+
+  two_string.push_back("two");
+  three_string.push_back("two");
+  four_string.push_back("two");
+  five_string.push_back("two");
+
+  three_string.push_back("three");
+  four_string.push_back("three");
+  five_string.push_back("three");
+
+  four_string.push_back("four");
+  five_string.push_back("four");
+
+  five_string.push_back("five");
+
+  harmonic_bond->SetNames(two_string);
+  harmonic_angle->SetNames(three_string);
+  urey_bradley_angle->SetNames(three_string);
+  periodic_dihedral->SetNames(four_string);
+  periodic_improper->SetNames(four_string);
+  harmonic_improper->SetNames(four_string);
+  cmap->SetNames(five_string);
+
+  BOOST_CHECK_NO_THROW(mod.AddBond(harmonic_bond));
+  BOOST_CHECK_NO_THROW(mod.AddAngle(harmonic_angle));
+  BOOST_CHECK_NO_THROW(mod.AddAngle(urey_bradley_angle));
+  BOOST_CHECK_NO_THROW(mod.AddDihedral(periodic_dihedral));
+  BOOST_CHECK_NO_THROW(mod.AddImproper(periodic_improper));
+  BOOST_CHECK_NO_THROW(mod.AddImproper(harmonic_improper));
+  BOOST_CHECK_NO_THROW(mod.AddCMap(cmap));
+
+  //check whether error get thrown when wrong interactions get added
+
+  BOOST_CHECK_THROW(mod.AddBond(harmonic_angle),ost::Error);
+  BOOST_CHECK_THROW(mod.AddAngle(harmonic_bond),ost::Error);
+  BOOST_CHECK_THROW(mod.AddDihedral(harmonic_bond),ost::Error);
+  BOOST_CHECK_THROW(mod.AddImproper(periodic_dihedral),ost::Error);
+  BOOST_CHECK_THROW(mod.AddCMap(periodic_improper),ost::Error);
+  
+}
+
+BOOST_AUTO_TEST_SUITE_END();
diff --git a/modules/mol/mm/tests/test_forcefield.cc b/modules/mol/mm/tests/test_forcefield.cc
new file mode 100644
index 0000000000000000000000000000000000000000..cda6b18df4a8c38e315aef5e3849642e083d0c18
--- /dev/null
+++ b/modules/mol/mm/tests/test_forcefield.cc
@@ -0,0 +1,290 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <boost/test/unit_test.hpp>
+#include <boost/test/auto_unit_test.hpp>
+#include <ost/mol/mm/settings.hh>
+#include <ost/mol/mm/forcefield.hh>
+#include <ost/mol/mm/interaction.hh>
+#include <ost/mol/mm/buildingblock.hh>
+#include <ost/mol/mm/gromacs_block_modifiers.hh>
+#include <ost/message.hh>
+#include <ost/mol/builder.hh>
+#include <ost/mol/xcs_editor.hh>
+
+
+using namespace ost::mol::mm;
+
+BOOST_AUTO_TEST_SUITE( mol_mm );
+
+BOOST_AUTO_TEST_CASE(test_forcefield_basics){
+  Forcefield ff;
+
+  //if a building block doesn't exist, it should throw an error
+  //this is not the case for hydrogen constructors and block modifiers
+  BOOST_CHECK_THROW(ff.GetBuildingBlock("IDoNotExist"),ost::Error);
+
+  //add some atom types
+  ff.AddMass("one",1.0);
+  ff.AddMass("two",2.0);
+  ff.AddMass("three",3.0);
+  ff.AddMass("four",4.0);
+  ff.AddMass("five",5.0);
+
+  BOOST_CHECK_THROW(ff.GetBond("one","two"),ost::Error);
+  BOOST_CHECK_THROW(ff.GetAngle("one","two","three"),ost::Error);
+  BOOST_CHECK_THROW(ff.GetDihedrals("one","two","three","four"),ost::Error);
+  BOOST_CHECK_THROW(ff.GetImpropers("one","two","three","four"),ost::Error);
+  BOOST_CHECK_THROW(ff.GetCMap("one","two","three","four","five"),ost::Error);
+  BOOST_CHECK_THROW(ff.GetImplicitGenborn("one"),ost::Error);
+  BOOST_CHECK_THROW(ff.GetLJ("one"),ost::Error);
+  BOOST_CHECK_THROW(ff.GetLJ("one","two"),ost::Error);
+  BOOST_CHECK_THROW(ff.GetConstraint("one","two"),ost::Error);
+  BOOST_CHECK_THROW(ff.GetMass("i_do_not_exist"),ost::Error);
+
+  //let's add some interactions
+  std::vector<String> one_string, two_string, three_string, four_string, five_string;
+  std::vector<Real> one_real, two_real, three_real, four_real, five_real;
+
+  one_string.push_back("one");
+  two_string.push_back("one");
+  three_string.push_back("one");
+  four_string.push_back("one");
+  five_string.push_back("one");
+
+  two_string.push_back("two");
+  three_string.push_back("two");
+  four_string.push_back("two");
+  five_string.push_back("two");
+
+  three_string.push_back("three");
+  four_string.push_back("three");
+  five_string.push_back("three");
+
+  four_string.push_back("four");
+  five_string.push_back("four");
+
+  five_string.push_back("five");
+
+
+  one_real.push_back(1.0);
+  two_real.push_back(1.0);
+  three_real.push_back(1.0);
+  four_real.push_back(1.0);
+  five_real.push_back(1.0);
+
+  two_real.push_back(2.0);
+  three_real.push_back(2.0);
+  four_real.push_back(2.0);
+  five_real.push_back(2.0);
+
+  three_real.push_back(3.0);
+  four_real.push_back(3.0);
+  five_real.push_back(3.0);
+
+  four_real.push_back(4.0);
+  five_real.push_back(4.0);
+
+  five_real.push_back(5.0);
+
+
+  InteractionPtr harmonic_bond(new Interaction(HarmonicBond));
+  InteractionPtr urey_bradley_angle(new Interaction(UreyBradleyAngle));
+  InteractionPtr harmonic_angle(new Interaction(HarmonicAngle));
+  InteractionPtr periodic_dihedral(new Interaction(PeriodicDihedral));
+  InteractionPtr periodic_improper(new Interaction(PeriodicImproper));
+  InteractionPtr harmonic_improper(new Interaction(HarmonicImproper));
+  InteractionPtr cmap(new Interaction(CMap));
+  InteractionPtr lj(new Interaction(LJ));
+  InteractionPtr lj_pair(new Interaction(LJPair));
+  InteractionPtr gbsa(new Interaction(GBSA));
+  InteractionPtr distance_constraint(new Interaction(DistanceConstraint));
+
+
+  //check whether errors get thrown when incorrectly parametrized interactions are added
+  BOOST_CHECK_THROW(ff.AddBond(harmonic_bond),ost::Error);
+  harmonic_bond->SetTypes(two_string);
+  BOOST_CHECK_THROW(ff.AddBond(harmonic_bond),ost::Error);
+  harmonic_angle->SetParam(two_real);
+  BOOST_CHECK_THROW(ff.AddAngle(harmonic_angle),ost::Error);
+  harmonic_bond->SetParam(two_real);
+  BOOST_CHECK_NO_THROW(ff.AddBond(harmonic_bond));
+  harmonic_angle->SetTypes(three_string);
+
+  //parametrize the rest
+  urey_bradley_angle->SetTypes(three_string);
+  urey_bradley_angle->SetParam(four_real);
+  periodic_dihedral->SetTypes(four_string);
+  periodic_dihedral->SetParam(three_real);
+  periodic_improper->SetTypes(four_string);
+  periodic_improper->SetParam(three_real);
+  harmonic_improper->SetTypes(four_string);
+  harmonic_improper->SetParam(two_real);
+  std::vector<Real> cmap_param = five_real;
+  cmap_param[0] = 2.0;
+  cmap->SetTypes(five_string);
+  cmap->SetParam(cmap_param);
+  lj->SetTypes(one_string);
+  lj->SetParam(two_real);
+  lj_pair->SetTypes(two_string);
+  lj_pair->SetParam(two_real);
+  gbsa->SetTypes(one_string);
+  gbsa->SetParam(two_real);
+  distance_constraint->SetTypes(two_string);
+  distance_constraint->SetParam(one_real);
+
+  //check whether errors get thrown when wrong interactions get added
+
+  BOOST_CHECK_THROW(ff.AddBond(harmonic_angle),ost::Error);
+  BOOST_CHECK_THROW(ff.AddAngle(harmonic_bond),ost::Error);
+  BOOST_CHECK_THROW(ff.AddDihedral(harmonic_angle),ost::Error);
+  BOOST_CHECK_THROW(ff.AddImproper(harmonic_angle),ost::Error);
+  BOOST_CHECK_THROW(ff.AddCMap(harmonic_angle),ost::Error);
+  BOOST_CHECK_THROW(ff.AddImplicitGenborn(harmonic_angle),ost::Error);
+  BOOST_CHECK_THROW(ff.AddLJ(harmonic_angle),ost::Error);
+  BOOST_CHECK_THROW(ff.AddLJPair(harmonic_angle),ost::Error);
+  BOOST_CHECK_THROW(ff.AddConstraint(harmonic_angle),ost::Error);
+
+  BOOST_CHECK_NO_THROW(ff.AddBond(harmonic_bond));
+  BOOST_CHECK_NO_THROW(ff.AddAngle(harmonic_angle));
+  BOOST_CHECK_NO_THROW(ff.AddDihedral(periodic_dihedral));
+  BOOST_CHECK_NO_THROW(ff.AddImproper(periodic_improper));
+  BOOST_CHECK_NO_THROW(ff.AddImproper(harmonic_improper));
+  BOOST_CHECK_NO_THROW(ff.AddCMap(cmap));
+  BOOST_CHECK_NO_THROW(ff.AddImplicitGenborn(gbsa));
+  BOOST_CHECK_NO_THROW(ff.AddLJ(lj));
+  BOOST_CHECK_NO_THROW(ff.AddLJPair(lj_pair));
+  BOOST_CHECK_NO_THROW(ff.AddConstraint(distance_constraint));
+
+
+  //add a building block
+  BuildingBlockPtr block(new BuildingBlock);
+  block->AddAtom("a","one",0.5);
+  block->AddAtom("b","two",1.0);
+  ff.AddBuildingBlock("im_so_sexy",block);
+
+  //add block modifier
+  BlockModifierPtr modifier(new GromacsBlockModifier);
+  ff.AddBlockModifier("el_modificator",modifier);
+
+  //add hydrogen constructor
+  HydrogenConstructorPtr hydrogen_constructor(new GromacsHydrogenConstructor);
+  ff.AddHydrogenConstructor("death_metal",hydrogen_constructor);
+
+  //add some renaming rules
+  ff.AddResidueRenamingRule("im_so_sexy","even_sexier","sexy_n","sexy_c","sexy_two");
+  ff.AddAtomRenamingRule("even_sexier","a","z");
+  ff.AddAtomRenamingRule("sexy_two","a","z");
+
+  //save and load it again, before we check parameters
+  ff.Save("test.ff");
+  ForcefieldPtr loaded_ff = Forcefield::Load("test.ff");
+
+
+  //check the parameters
+  BOOST_CHECK(loaded_ff->GetBond("one","two")->GetParam() == two_real);
+  BOOST_CHECK(loaded_ff->GetBond("two","one")->GetParam() == two_real);
+
+  BOOST_CHECK(loaded_ff->GetAngle("one","two","three")->GetParam() == two_real);
+  BOOST_CHECK(loaded_ff->GetAngle("three","two","one")->GetParam() == two_real);
+
+  BOOST_CHECK(loaded_ff->GetDihedrals("one","two","three","four")[0]->GetParam() == three_real);
+  BOOST_CHECK(loaded_ff->GetDihedrals("four","three","two","one")[0]->GetParam() == three_real);
+
+  BOOST_CHECK(loaded_ff->GetImpropers("one","two","three","four")[0]->GetParam() == three_real);
+  BOOST_CHECK(loaded_ff->GetImpropers("four","three","two","one")[0]->GetParam() == three_real);
+
+  BOOST_CHECK(loaded_ff->GetDihedrals("one","two","three","four")[0]->GetParam() == three_real);
+  BOOST_CHECK(loaded_ff->GetDihedrals("four","three","two","one")[0]->GetParam() == three_real);
+
+  BOOST_CHECK(loaded_ff->GetCMap("one","two","three","four","five")->GetParam() == cmap_param);
+  //cmaps are directional...
+  BOOST_CHECK_THROW(loaded_ff->GetCMap("five","four","three","two","one"),ost::Error);
+
+  BOOST_CHECK(loaded_ff->GetImplicitGenborn("one")->GetParam() == two_real);
+
+  BOOST_CHECK(loaded_ff->GetLJ("one","two",true)->GetParam() == two_real);
+  BOOST_CHECK(loaded_ff->GetLJ("two","one",true)->GetParam() == two_real);
+
+  BOOST_CHECK(loaded_ff->GetLJ("one")->GetParam() == two_real);
+
+  BOOST_CHECK(loaded_ff->GetConstraint("one","two")->GetParam() == one_real);
+  BOOST_CHECK(loaded_ff->GetConstraint("two","one")->GetParam() == one_real);
+
+  BOOST_CHECK(loaded_ff->GetMass("two") == 2.0);
+
+  BOOST_CHECK(loaded_ff->GetAtomType("im_so_sexy","a") == "one");
+
+  //check whether the modifiers are still there
+  BOOST_CHECK(loaded_ff->GetHydrogenConstructor("death_metal"));
+  BOOST_CHECK(loaded_ff->GetBlockModifier("el_modificator"));
+
+
+  //check the renaming stuff
+
+
+  ost::mol::EntityHandle new_ent = ost::mol::Builder()
+                                   .Chain("A")
+                                     .Residue("im_so_sexy")
+                                       .Atom("a",geom::Vec3(0,0,0))
+                                       .Atom("b",geom::Vec3(1,1,1))
+                                     .Residue("im_so_sexy")
+                                       .Atom("a",geom::Vec3(2,2,2))
+                                       .Atom("b",geom::Vec3(3,3,3))
+                                     .Residue("im_so_sexy")
+                                       .Atom("a",geom::Vec3(4,4,4))
+                                       .Atom("b",geom::Vec3(5,5,5));
+
+  ost::mol::XCSEditor ed = new_ent.EditXCS();
+
+
+  loaded_ff->AssignFFSpecificNames(new_ent);
+  ost::mol::ResidueHandleList res_list = new_ent.GetResidueList();
+  ost::mol::AtomHandleList atom_list = new_ent.GetAtomList();
+
+  BOOST_CHECK(res_list[0].GetName() == "sexy_n");
+  BOOST_CHECK(res_list[1].GetName() == "even_sexier");
+  BOOST_CHECK(res_list[2].GetName() == "sexy_c");
+  BOOST_CHECK(atom_list[2].GetName() == "z");
+
+  loaded_ff->AssignFFSpecificNames(new_ent,true);
+
+  BOOST_CHECK(res_list[0].GetName() == "im_so_sexy");
+  BOOST_CHECK(res_list[1].GetName() == "im_so_sexy");
+  BOOST_CHECK(res_list[2].GetName() == "im_so_sexy");
+  BOOST_CHECK(atom_list[2].GetName() == "a");
+
+  ost::mol::EntityHandle new_ent_two = ost::mol::Builder()
+                                      .Chain("A")
+                                        .Residue("im_so_sexy")
+                                          .Atom("a",geom::Vec3(0,0,0))
+                                          .Atom("b",geom::Vec3(1,1,1));
+
+  loaded_ff->AssignFFSpecificNames(new_ent_two);
+  res_list = new_ent_two.GetResidueList();
+  atom_list = new_ent_two.GetAtomList();
+  BOOST_CHECK(res_list[0].GetName() == "sexy_two");
+  BOOST_CHECK(atom_list[0].GetName() == "z");
+  loaded_ff->AssignFFSpecificNames(new_ent_two,true);
+  BOOST_CHECK(res_list[0].GetName() == "im_so_sexy");
+  BOOST_CHECK(atom_list[0].GetName() == "a");
+
+}
+
+BOOST_AUTO_TEST_SUITE_END();
\ No newline at end of file
diff --git a/modules/mol/mm/tests/test_interaction.cc b/modules/mol/mm/tests/test_interaction.cc
new file mode 100644
index 0000000000000000000000000000000000000000..d021c5e711cfdc8b876b1d3a42a52310d8eb0db0
--- /dev/null
+++ b/modules/mol/mm/tests/test_interaction.cc
@@ -0,0 +1,292 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <boost/test/unit_test.hpp>
+#include <boost/test/auto_unit_test.hpp>
+#include <ost/mol/mm/interaction.hh>
+#include <ost/mol/mol.hh>
+#include <ost/mol/builder.hh>
+
+#include <ost/message.hh>
+
+using namespace ost::mol::mm;
+
+
+
+BOOST_AUTO_TEST_SUITE( mol_mm );
+
+BOOST_AUTO_TEST_CASE(test_set_stuff) 
+{
+  Interaction harmonic_bond = Interaction(HarmonicBond);
+  Interaction harmonic_angle = Interaction(HarmonicAngle);
+  Interaction urey_bradley = Interaction(UreyBradleyAngle);
+  Interaction periodic_dihedral = Interaction(PeriodicDihedral);
+  Interaction periodic_improper = Interaction(PeriodicImproper);
+  Interaction harmonic_improper = Interaction(HarmonicImproper);
+  Interaction cmap = Interaction(CMap);
+  Interaction lj = Interaction(LJ);
+  Interaction lj_pair = Interaction(LJPair);
+  Interaction gbsa = Interaction(GBSA);
+  Interaction distance_constraint = Interaction(DistanceConstraint);
+  Interaction exclusion = Interaction(Exclusion);
+  Interaction harmonic_distance_restraint = Interaction(HarmonicDistanceRestraint);
+  Interaction harmonic_position_restraint = Interaction(HarmonicPositionRestraint);
+
+  //std::vector<String> one_string, two_string, three_string, four_string, five_string;
+  //std::vector<Real> one_real, two_real, three_real, four_real, five_real, zero_real;
+
+  std::vector<Real> one_real(1);
+  std::vector<Real> two_real(2);
+  std::vector<Real> three_real(3);
+  std::vector<Real> four_real(4);
+  std::vector<Real> five_real(5);
+  std::vector<Real> seven_real(7);
+  std::vector<Real> zero_real(0);
+
+  std::vector<String> one_string(1);
+  std::vector<String> two_string(2);
+  std::vector<String> three_string(3);
+  std::vector<String> four_string(4);
+  std::vector<String> five_string(5);
+
+
+  BOOST_CHECK(!harmonic_bond.IsParametrized());
+
+  BOOST_CHECK_THROW(harmonic_bond.SetNames(one_string),ost::Error);
+  BOOST_CHECK_THROW(harmonic_angle.SetNames(one_string),ost::Error);
+  BOOST_CHECK_THROW(urey_bradley.SetNames(one_string),ost::Error);
+  BOOST_CHECK_THROW(periodic_dihedral.SetNames(one_string),ost::Error);
+  BOOST_CHECK_THROW(periodic_improper.SetNames(one_string),ost::Error);
+  BOOST_CHECK_THROW(harmonic_improper.SetNames(one_string),ost::Error);
+  BOOST_CHECK_THROW(cmap.SetNames(one_string),ost::Error);
+  BOOST_CHECK_THROW(lj.SetNames(two_string),ost::Error);
+  BOOST_CHECK_THROW(lj_pair.SetNames(one_string),ost::Error);
+  BOOST_CHECK_THROW(gbsa.SetNames(two_string),ost::Error);
+  BOOST_CHECK_THROW(distance_constraint.SetNames(one_string),ost::Error);
+  BOOST_CHECK_THROW(exclusion.SetNames(one_string),ost::Error);
+  BOOST_CHECK_THROW(harmonic_distance_restraint.SetNames(one_string),ost::Error);
+  BOOST_CHECK_THROW(harmonic_position_restraint.SetNames(two_string),ost::Error);
+
+
+  BOOST_CHECK_THROW(harmonic_bond.SetTypes(one_string),ost::Error);
+  BOOST_CHECK_THROW(harmonic_angle.SetTypes(one_string),ost::Error);
+  BOOST_CHECK_THROW(urey_bradley.SetTypes(one_string),ost::Error);
+  BOOST_CHECK_THROW(periodic_dihedral.SetTypes(one_string),ost::Error);
+  BOOST_CHECK_THROW(periodic_improper.SetTypes(one_string),ost::Error);
+  BOOST_CHECK_THROW(harmonic_improper.SetTypes(one_string),ost::Error);
+  BOOST_CHECK_THROW(cmap.SetTypes(one_string),ost::Error);
+  BOOST_CHECK_THROW(lj.SetTypes(two_string),ost::Error);
+  BOOST_CHECK_THROW(lj_pair.SetTypes(one_string),ost::Error);
+  BOOST_CHECK_THROW(gbsa.SetTypes(two_string),ost::Error);
+  BOOST_CHECK_THROW(distance_constraint.SetTypes(one_string),ost::Error);
+  BOOST_CHECK_THROW(exclusion.SetTypes(one_string),ost::Error);
+  BOOST_CHECK_THROW(harmonic_distance_restraint.SetTypes(one_string),ost::Error);
+  BOOST_CHECK_THROW(harmonic_position_restraint.SetTypes(two_string),ost::Error);
+
+  BOOST_CHECK_THROW(harmonic_bond.SetParam(one_real),ost::Error);
+  BOOST_CHECK_THROW(harmonic_angle.SetParam(one_real),ost::Error);
+  BOOST_CHECK_THROW(urey_bradley.SetParam(one_real),ost::Error);
+  BOOST_CHECK_THROW(periodic_dihedral.SetParam(one_real),ost::Error);
+  BOOST_CHECK_THROW(periodic_improper.SetParam(one_real),ost::Error);
+  BOOST_CHECK_THROW(harmonic_improper.SetParam(one_real),ost::Error);
+  BOOST_CHECK_THROW(cmap.SetParam(two_real),ost::Error);
+  BOOST_CHECK_THROW(lj.SetParam(one_real),ost::Error);
+  BOOST_CHECK_THROW(lj_pair.SetParam(one_real),ost::Error);
+  BOOST_CHECK_THROW(gbsa.SetParam(one_real),ost::Error);
+  BOOST_CHECK_THROW(distance_constraint.SetParam(two_real),ost::Error);
+  BOOST_CHECK_THROW(exclusion.SetParam(one_real),ost::Error);
+  BOOST_CHECK_THROW(harmonic_distance_restraint.SetParam(one_real),ost::Error);
+  BOOST_CHECK_THROW(harmonic_position_restraint.SetParam(one_real),ost::Error);
+
+
+
+  BOOST_CHECK_NO_THROW(harmonic_bond.SetNames(two_string));
+  BOOST_CHECK_NO_THROW(harmonic_angle.SetNames(three_string));
+  BOOST_CHECK_NO_THROW(urey_bradley.SetNames(three_string));
+  BOOST_CHECK_NO_THROW(periodic_dihedral.SetNames(four_string));
+  BOOST_CHECK_NO_THROW(periodic_improper.SetNames(four_string));
+  BOOST_CHECK_NO_THROW(harmonic_improper.SetNames(four_string));
+  BOOST_CHECK_NO_THROW(cmap.SetNames(five_string));
+  BOOST_CHECK_NO_THROW(lj.SetNames(one_string));
+  BOOST_CHECK_NO_THROW(lj_pair.SetNames(two_string));
+  BOOST_CHECK_NO_THROW(gbsa.SetNames(one_string));
+  BOOST_CHECK_NO_THROW(distance_constraint.SetNames(two_string));
+  BOOST_CHECK_NO_THROW(exclusion.SetNames(two_string));
+  BOOST_CHECK_NO_THROW(harmonic_distance_restraint.SetNames(two_string));
+  BOOST_CHECK_NO_THROW(harmonic_position_restraint.SetNames(one_string));
+  
+
+  BOOST_CHECK_NO_THROW(harmonic_bond.SetTypes(two_string));
+  BOOST_CHECK_NO_THROW(harmonic_angle.SetTypes(three_string));
+  BOOST_CHECK_NO_THROW(urey_bradley.SetTypes(three_string));
+  BOOST_CHECK_NO_THROW(periodic_dihedral.SetTypes(four_string));
+  BOOST_CHECK_NO_THROW(periodic_improper.SetTypes(four_string));
+  BOOST_CHECK_NO_THROW(harmonic_improper.SetTypes(four_string));
+  BOOST_CHECK_NO_THROW(cmap.SetTypes(five_string));
+  BOOST_CHECK_NO_THROW(lj.SetTypes(one_string));
+  BOOST_CHECK_NO_THROW(lj_pair.SetTypes(two_string));
+  BOOST_CHECK_NO_THROW(gbsa.SetTypes(one_string));
+  BOOST_CHECK_NO_THROW(distance_constraint.SetTypes(two_string));
+  BOOST_CHECK_NO_THROW(exclusion.SetTypes(two_string));
+  BOOST_CHECK_NO_THROW(harmonic_distance_restraint.SetTypes(two_string));
+  BOOST_CHECK_NO_THROW(harmonic_position_restraint.SetTypes(one_string));
+
+  BOOST_CHECK_NO_THROW(harmonic_bond.SetParam(two_real));
+  BOOST_CHECK_NO_THROW(harmonic_angle.SetParam(two_real));
+  BOOST_CHECK_NO_THROW(urey_bradley.SetParam(four_real));
+  BOOST_CHECK_NO_THROW(periodic_dihedral.SetParam(three_real));
+  BOOST_CHECK_NO_THROW(periodic_improper.SetParam(three_real));
+  BOOST_CHECK_NO_THROW(harmonic_improper.SetParam(two_real));
+  BOOST_CHECK_NO_THROW(lj.SetParam(two_real));
+  BOOST_CHECK_NO_THROW(lj_pair.SetParam(two_real));
+  BOOST_CHECK_NO_THROW(gbsa.SetParam(two_real));
+  BOOST_CHECK_NO_THROW(distance_constraint.SetParam(one_real));
+  BOOST_CHECK_NO_THROW(exclusion.SetParam(zero_real));
+  BOOST_CHECK_NO_THROW(harmonic_distance_restraint.SetParam(two_real));
+  BOOST_CHECK_NO_THROW(harmonic_position_restraint.SetParam(seven_real));
+
+  std::vector<Real> valid_cmap_parameters;
+  valid_cmap_parameters.push_back(2.0);
+  valid_cmap_parameters.push_back(0.0);
+  valid_cmap_parameters.push_back(0.0);
+  valid_cmap_parameters.push_back(0.0);
+  valid_cmap_parameters.push_back(0.0);
+
+  BOOST_CHECK_NO_THROW(cmap.SetParam(valid_cmap_parameters));
+  BOOST_CHECK(harmonic_bond.IsParametrized());
+
+  Interaction new_bond = Interaction(HarmonicBond);
+  std::vector<String> with_wildcard, without_wildcard;
+  with_wildcard.push_back("A");
+  without_wildcard.push_back("A");
+  with_wildcard.push_back("X");
+  without_wildcard.push_back("A");
+
+  //should be initialized with false
+  BOOST_CHECK(!new_bond.HasNameWildcard());
+  BOOST_CHECK(!new_bond.HasTypeWildcard());
+
+  new_bond.SetNames(without_wildcard);
+  new_bond.SetTypes(without_wildcard);
+  BOOST_CHECK(!new_bond.HasNameWildcard());
+  BOOST_CHECK(!new_bond.HasTypeWildcard());
+
+  new_bond.SetNames(with_wildcard);
+  new_bond.SetTypes(with_wildcard);
+  BOOST_CHECK(new_bond.HasNameWildcard());
+  BOOST_CHECK(new_bond.HasTypeWildcard());
+
+  //Check hasname/hastype
+  BOOST_CHECK(new_bond.HasType("A"));
+  BOOST_CHECK(!new_bond.HasType("B"));
+  BOOST_CHECK(new_bond.HasName("A"));
+  BOOST_CHECK(!new_bond.HasType("B"));
+
+}
+
+BOOST_AUTO_TEST_CASE(test_match_stuff) 
+{
+  Interaction dihedral = Interaction(PeriodicDihedral);
+
+  std::vector<String> with_wildcard, without_wildcard;
+  with_wildcard.push_back("X");
+  with_wildcard.push_back("A");
+  with_wildcard.push_back("A");
+  with_wildcard.push_back("A");
+  without_wildcard.push_back("A");
+  without_wildcard.push_back("A");
+  without_wildcard.push_back("A");
+  without_wildcard.push_back("A");
+
+  dihedral.SetTypes(with_wildcard);
+  BOOST_CHECK(dihedral.MatchTypes(with_wildcard));
+  BOOST_CHECK(dihedral.MatchTypes(without_wildcard));
+  dihedral.SetTypes(without_wildcard);
+  BOOST_CHECK(dihedral.MatchTypes(without_wildcard));
+  BOOST_CHECK(!dihedral.MatchTypes(with_wildcard));
+
+  dihedral.SetNames(with_wildcard);
+  BOOST_CHECK(dihedral.MatchNames(with_wildcard));
+  BOOST_CHECK(dihedral.MatchNames(without_wildcard));
+  dihedral.SetNames(without_wildcard);
+  BOOST_CHECK(dihedral.MatchNames(without_wildcard));
+  BOOST_CHECK(!dihedral.MatchNames(with_wildcard));
+
+}
+
+BOOST_AUTO_TEST_CASE(test_replace_atom){
+  Interaction bond = Interaction(HarmonicBond);
+  std::vector<String> strings;
+  strings.push_back("A");
+  strings.push_back("B");
+  bond.SetNames(strings);
+  bond.ReplaceAtom("A","X","X");
+  std::vector<String> new_names = bond.GetNames();
+  BOOST_CHECK(new_names != strings);
+  bond.SetTypes(strings);
+  bond.ReplaceAtom("X","A","X");
+  std::vector<String> new_types = bond.GetTypes();
+  BOOST_CHECK(new_types == new_names);
+
+}
+
+BOOST_AUTO_TEST_CASE(test_getatoms){
+  ost::mol::EntityHandle e = ost::mol::Builder()
+                             .Chain("A")
+                                .Residue("ONE")
+                                  .Atom("A",geom::Vec3(-5,-5,-5))
+                                  .Atom("B",geom::Vec3(-5, 5,-5))
+                                .Residue("TWO")
+                                  .Atom("A",geom::Vec3(1,1,1))
+                                  .Atom("B",geom::Vec3(2,2,2))
+                                .Residue("THREE")
+                                  .Atom("A",geom::Vec3(3,3,3))
+                                  .Atom("B",geom::Vec3(4,4,4));
+
+  ost::mol::ResidueHandleList res_list = e.GetResidueList();
+  ost::mol::AtomHandleList atom_list_one  = res_list[0].GetAtomList();
+  ost::mol::AtomHandleList atom_list_two  = res_list[1].GetAtomList();
+  ost::mol::AtomHandleList atom_list_three  = res_list[2].GetAtomList();
+
+  Interaction bond = Interaction(HarmonicBond);
+  std::vector<String> strings;
+  strings.push_back("A");
+  strings.push_back("B");
+  bond.SetNames(strings);
+  ost::mol::AtomHandleList bond_atom_list = bond.GetAtoms(res_list[0]);
+  BOOST_CHECK(atom_list_one[0] == bond_atom_list[0]);
+  BOOST_CHECK(atom_list_one[1] == bond_atom_list[1]);
+  strings[1] = "X";
+  bond.SetNames(strings);
+  BOOST_CHECK_THROW(bond.GetAtoms(res_list[0]),ost::Error);
+  strings[0] = "-A";
+  strings[1] = "B";
+  bond.SetNames(strings);
+  BOOST_CHECK_THROW(bond.GetAtoms(res_list[0]),ost::Error);
+  bond_atom_list = bond.GetAtoms(res_list[1]);  
+  BOOST_CHECK(bond_atom_list[0] == atom_list_one[0]);
+  BOOST_CHECK(bond_atom_list[1] == atom_list_two[1]);
+  strings[1]="+B";
+  bond.SetNames(strings);
+  BOOST_CHECK_THROW(bond.GetAtoms(res_list[2]),ost::Error);
+  bond_atom_list = bond.GetAtoms(res_list[1]);
+  BOOST_CHECK(bond_atom_list[0] == atom_list_one[0]);
+  BOOST_CHECK(bond_atom_list[1] == atom_list_three[1]); 
+}
+BOOST_AUTO_TEST_SUITE_END();
diff --git a/modules/mol/mm/tests/test_simulation.cc b/modules/mol/mm/tests/test_simulation.cc
new file mode 100644
index 0000000000000000000000000000000000000000..cfe2b608136a315fd89aa72bf0685f2bcfc8c3ee
--- /dev/null
+++ b/modules/mol/mm/tests/test_simulation.cc
@@ -0,0 +1,182 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <boost/test/unit_test.hpp>
+#include <boost/test/auto_unit_test.hpp>
+#include <ost/mol/mm/settings.hh>
+#include <ost/mol/mm/forcefield.hh>
+#include <ost/mol/mm/interaction.hh>
+#include <ost/mol/mm/buildingblock.hh>
+#include <ost/mol/mm/gromacs_block_modifiers.hh>
+#include <ost/message.hh>
+#include <ost/mol/builder.hh>
+#include <ost/mol/xcs_editor.hh>
+#include <ost/io/mol/pdb_reader.hh>
+#include <ost/mol/mm/simulation.hh>
+#include <ost/mol/mm/topology.hh>
+#include <OpenMM.h>
+
+
+using namespace ost::mol::mm;
+
+BOOST_AUTO_TEST_SUITE( mol_mm );
+
+BOOST_AUTO_TEST_CASE(test_simulation_basics){
+
+  String pdb_name = "1CRN.pdb";
+
+  ost::io::PDBReader reader(pdb_name, ost::io::IOProfile());
+  ost::mol::EntityHandle test_ent = ost::mol::CreateEntity();
+  reader.Import(test_ent);
+
+  ost::conop::ProcessorPtr processor(new ost::conop::HeuristicProcessor);
+  processor->Process(test_ent);
+
+  SettingsPtr settings(new Settings);
+  ForcefieldPtr forcefield = Forcefield::Load("CHARMM27.dat");
+  settings->forcefield = forcefield;
+  settings->add_gbsa = true;
+
+  TopologyPtr top = TopologyCreator::Create(test_ent,settings);
+  //lets add interactions, that are not set when using charmm
+  top->AddHarmonicAngle(1,2,3,10.0,10.0);
+  top->AddPeriodicImproper(1,2,3,4,2,10.0,10.0);
+  top->AddDistanceConstraint(1,2,10.0);
+  top->AddHarmonicPositionRestraint(1,geom::Vec3(0.0,0.0,0.0),10.0);
+  top->AddHarmonicDistanceRestraint(1,2,10.0,10.0);
+
+  settings->integrator = IntegratorPtr(new OpenMM::VerletIntegrator(0.002));
+
+  Simulation sim(top, test_ent, settings);
+
+
+  //we check, wether the reset functions have the desired effect on the topology
+  //we cannot really check the effect on the openmm system...
+  sim.ResetHarmonicBond(42,5.0,6.0);
+  sim.ResetHarmonicAngle(0,8.0,9.0);
+  sim.ResetUreyBradleyAngle(42,5.0,6.0,7.0,8.0);
+  sim.ResetPeriodicDihedral(42,4,5.0,6.0);
+  sim.ResetPeriodicImproper(0,5,8.0,9.0);
+  sim.ResetHarmonicImproper(42,5.0,6.0);
+  sim.ResetLJPair(42,5.0,6.0);
+  sim.ResetDistanceConstraint(0,10.0);
+  sim.ResetHarmonicPositionRestraint(0,geom::Vec3(1.0,1.0,1.0),5.0);
+  sim.ResetHarmonicDistanceRestraint(0,5.0,10.0);
+  sim.ResetLJ(42,2.0,3.0);
+  sim.ResetGBSA(42,5.0,6.0);
+  sim.ResetCharge(42,100.0);
+  sim.ResetMass(42,200.0);
+
+  uint ui1,ui2,ui3,ui4;
+  int i1;
+  Real r1,r2,r3,r4;
+  geom::Vec3 pos;
+
+
+  top->GetHarmonicBondParameters(42,ui1,ui2,r1,r2);
+  BOOST_CHECK(r1 == 5.0 && r2 == 6.0);
+
+  top->GetHarmonicAngleParameters(0,ui1,ui2,ui3,r1,r2);
+  BOOST_CHECK(r1 == 8.0 && r2 == 9.0);
+
+  top->GetUreyBradleyAngleParameters(42,ui1,ui2,ui3,r1,r2,r3,r4);
+  BOOST_CHECK(r1 == 5.0 && r2 == 6.0 && r3 == 7.0 && r4 == 8.0);
+
+  top->GetPeriodicDihedralParameters(42,ui1,ui2,ui3,ui4,i1,r1,r2);
+  BOOST_CHECK(i1 == 4 && r1 == 5.0 && r2 == 6.0);
+
+  top->GetPeriodicImproperParameters(0,ui1,ui2,ui3,ui4,i1,r1,r2);
+  BOOST_CHECK(i1 == 5 && r1 == 8.0 && r2 == 9.0);
+
+  top->GetLJPairParameters(42,ui1,ui2,r1,r2);
+  BOOST_CHECK(r1 == 5.0 && r2 == 6.0);
+
+  top->GetDistanceConstraintParameters(0,ui1,ui2,r1);
+  BOOST_CHECK(r1 == 10.0);
+
+  top->GetHarmonicPositionRestraintParameters(0, ui1, pos,r1, r2, r3, r3);
+  BOOST_CHECK(pos == geom::Vec3(1.0,1.0,1.0) && r1 == 5.0);
+
+  top->GetHarmonicDistanceRestraintParameters(0,ui1,ui2, r1, r2);
+  BOOST_CHECK(r1 == 5.0 && r2 == 10.0);
+
+  r1 = top->GetSigma(42);
+  r2 = top->GetEpsilon(42);
+  BOOST_CHECK(r1 == 2.0 && r2 == 3.0);
+
+  r1 = top->GetGBSARadius(42);
+  r2 = top->GetOBCScaling(42);
+  BOOST_CHECK(r1 == 5.0 && r2 == 6.0);
+
+  r1 = top->GetCharge(42);
+  r2 = top->GetMass(42);
+  BOOST_CHECK(r1 == 100.0 && r2 == 200.0);
+}
+
+
+BOOST_AUTO_TEST_CASE(test_simulation_energy_calculations){
+
+
+  String pdb_name = "1CRN.pdb";
+
+  ost::io::PDBReader reader(pdb_name, ost::io::IOProfile());
+  ost::mol::EntityHandle test_ent = ost::mol::CreateEntity();
+  reader.Import(test_ent);
+
+  ost::conop::ProcessorPtr processor(new ost::conop::HeuristicProcessor);
+  processor->Process(test_ent);
+
+  SettingsPtr settings(new Settings);
+  ForcefieldPtr forcefield = Forcefield::Load("CHARMM27.dat");
+  settings->forcefield = forcefield;
+
+  TopologyPtr top = TopologyCreator::Create(test_ent,settings);
+  //lets add interactions, that are not set when using charmm
+
+  settings->integrator = IntegratorPtr(new OpenMM::VerletIntegrator(0.002));
+
+  Simulation sim(top, test_ent,settings);
+
+  sim.ApplySD(1.0, 200);
+
+  //the energy values have been compared with the results from the
+  //CHARMM27 forcefield in gromacs
+
+  //differenecs in energy(kJ/mol):
+  //harmonic_bond:      0.00021344800001
+  //urey_bradley_angle: 0.00021319300003
+  //periodic_dihedral:  0.00018275799993
+  //harmonic_improper:  0.00001410630000
+  //cmap:               0.00192255100001
+  //nonbonded:          0.00204422999968
+
+  //You'll most likely get different results when repeating the comparison with gromacs
+  //this is because of the precision.
+  //Right now we have full real precision in the positions.
+  //When you write down the pdb, precision will be lowered to 3 digits.
+  //Another digit gets lost, when you create a gromacs topology...
+  //Gromacs writes down the positions using nm instead of A, but
+  //also has a precision of 3 digits.
+
+  BOOST_CHECK_CLOSE(sim.GetPotentialEnergy(), -2381.24, Real(1e-3));
+}
+
+
+
+BOOST_AUTO_TEST_SUITE_END();
\ No newline at end of file
diff --git a/modules/mol/mm/tests/test_topology.cc b/modules/mol/mm/tests/test_topology.cc
new file mode 100644
index 0000000000000000000000000000000000000000..d10bd05e6427ab64da9b54adb2fd076dd05370d6
--- /dev/null
+++ b/modules/mol/mm/tests/test_topology.cc
@@ -0,0 +1,598 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <boost/test/unit_test.hpp>
+#include <boost/test/auto_unit_test.hpp>
+#include <ost/mol/mm/topology.hh>
+#include <ost/mol/mm/topology_creator.hh>
+#include <ost/mol/mm/settings.hh>
+#include <ost/mol/mm/forcefield.hh>
+#include <ost/io/mol/pdb_reader.hh>
+#include <ost/conop/heuristic.hh>
+#include <ost/message.hh>
+#include <ost/mol/builder.hh>
+#include <ost/mol/xcs_editor.hh>
+
+
+using namespace ost::mol::mm;
+
+BOOST_AUTO_TEST_SUITE( mol_mm );
+
+BOOST_AUTO_TEST_CASE(test_topology_basics){
+
+  String pdb_name = "1CRN.pdb";
+
+  ost::io::PDBReader reader(pdb_name, ost::io::IOProfile());
+  ost::mol::EntityHandle test_ent = ost::mol::CreateEntity();
+  reader.Import(test_ent);
+
+  ost::conop::ProcessorPtr processor(new ost::conop::HeuristicProcessor);
+  processor->Process(test_ent);
+
+  //check initialisation without settings
+  std::vector<Real> zero_real(0);
+  std::vector<Real> lot_of_reals(test_ent.GetAtomCount());
+
+  TopologyPtr top(new Topology(lot_of_reals));
+
+  uint ui1(0), ui2(0), ui3(0), ui4(0), ui5(0);
+  int i1(0), i5(0);  
+  Real r1(0.0), r2(0.0), r3(0.0), r4(0.0);
+  geom::Vec3 zero_vec(0.0,0.0,0.0);
+  geom::Vec3 test_vec(0.0,1.0,2.0);
+
+  //check wether errors geth thrown, when atom indices are too big
+  BOOST_CHECK_THROW(top->AddHarmonicBond(700,1,r1,r2),ost::Error);
+  BOOST_CHECK_THROW(top->AddHarmonicBond(0,700,r1,r2),ost::Error);
+  BOOST_CHECK_THROW(top->AddHarmonicAngle(700,1,1,r1,r2),ost::Error);
+  BOOST_CHECK_THROW(top->AddHarmonicAngle(1,700,1,r1,r2),ost::Error);
+  BOOST_CHECK_THROW(top->AddHarmonicAngle(1,1,700,r1,r2),ost::Error);
+  BOOST_CHECK_THROW(top->AddUreyBradleyAngle(700,1,1,r1,r2,r3,r4),ost::Error);
+  BOOST_CHECK_THROW(top->AddUreyBradleyAngle(1,700,1,r1,r2,r3,r4),ost::Error);
+  BOOST_CHECK_THROW(top->AddUreyBradleyAngle(1,1,700,r1,r2,r3,r4),ost::Error);
+  BOOST_CHECK_THROW(top->AddPeriodicDihedral(700,1,1,1,i1,r1,r2),ost::Error);
+  BOOST_CHECK_THROW(top->AddPeriodicDihedral(1,700,1,1,i1,r1,r2),ost::Error);
+  BOOST_CHECK_THROW(top->AddPeriodicDihedral(1,1,700,1,i1,r1,r2),ost::Error);
+  BOOST_CHECK_THROW(top->AddPeriodicDihedral(1,1,1,700,i1,r1,r2),ost::Error);
+  BOOST_CHECK_THROW(top->AddPeriodicImproper(700,1,1,1,i1,r1,r2),ost::Error);
+  BOOST_CHECK_THROW(top->AddPeriodicImproper(1,700,1,1,i1,r1,r2),ost::Error);
+  BOOST_CHECK_THROW(top->AddPeriodicImproper(1,1,700,1,i1,r1,r2),ost::Error);
+  BOOST_CHECK_THROW(top->AddPeriodicImproper(1,1,1,700,i1,r1,r2),ost::Error);
+  BOOST_CHECK_THROW(top->AddHarmonicImproper(700,1,1,1,r1,r2),ost::Error);
+  BOOST_CHECK_THROW(top->AddHarmonicImproper(1,700,1,1,r1,r2),ost::Error);
+  BOOST_CHECK_THROW(top->AddHarmonicImproper(1,1,700,1,r1,r2),ost::Error);
+  BOOST_CHECK_THROW(top->AddHarmonicImproper(1,1,1,700,r1,r2),ost::Error);
+  BOOST_CHECK_THROW(top->AddCMap(700,1,1,1,1,0,zero_real),ost::Error);
+  BOOST_CHECK_THROW(top->AddCMap(1,700,1,1,1,0,zero_real),ost::Error);
+  BOOST_CHECK_THROW(top->AddCMap(1,1,700,1,1,0,zero_real),ost::Error);
+  BOOST_CHECK_THROW(top->AddCMap(1,1,1,700,1,0,zero_real),ost::Error);
+  BOOST_CHECK_THROW(top->AddCMap(1,1,1,1,700,0,zero_real),ost::Error);
+  BOOST_CHECK_THROW(top->AddCMap(1,1,1,1,1,0,lot_of_reals),ost::Error); //additionally checks error, when dimension and cmap are inconsistent
+  BOOST_CHECK_THROW(top->AddLJPair(1,700,r1,r2),ost::Error);
+  BOOST_CHECK_THROW(top->AddLJPair(700,1,r1,r2),ost::Error);
+  BOOST_CHECK_THROW(top->AddExclusion(1,700),ost::Error);
+  BOOST_CHECK_THROW(top->AddExclusion(700,1),ost::Error);
+  BOOST_CHECK_THROW(top->AddDistanceConstraint(1,700,r1),ost::Error);
+  BOOST_CHECK_THROW(top->AddDistanceConstraint(700,1,r1),ost::Error);
+  BOOST_CHECK_THROW(top->AddHarmonicPositionRestraint(700,zero_vec,r1,r2,r3,r4),ost::Error);
+  BOOST_CHECK_THROW(top->AddHarmonicDistanceRestraint(700,1,r1,r2),ost::Error);
+  BOOST_CHECK_THROW(top->AddHarmonicDistanceRestraint(1,700,r1,r2),ost::Error);
+
+  //check whether errors get thrown when single atom parameters are inconsistent with number of atoms in topology
+  BOOST_CHECK_THROW(top->SetSigmas(zero_real),ost::Error);
+  BOOST_CHECK_THROW(top->SetEpsilons(zero_real),ost::Error);
+  BOOST_CHECK_THROW(top->SetGBSARadii(zero_real),ost::Error);
+  BOOST_CHECK_THROW(top->SetOBCScalings(zero_real),ost::Error);
+  BOOST_CHECK_THROW(top->SetMasses(zero_real),ost::Error);
+  BOOST_CHECK_THROW(top->SetCharges(zero_real),ost::Error);
+  
+  //Single atom parameters are not allowed to be modified, without being set initially
+  BOOST_CHECK_THROW(top->SetSigma(1,r1),ost::Error);
+  BOOST_CHECK_THROW(top->SetEpsilon(1,r1),ost::Error);
+  BOOST_CHECK_THROW(top->SetGBSARadius(1,r1),ost::Error);
+  BOOST_CHECK_THROW(top->SetOBCScaling(1,r1),ost::Error);
+  BOOST_CHECK_THROW(top->SetCharge(1,r1),ost::Error); 
+
+  //Let's set the single atom parameters initially
+  top->SetSigmas(lot_of_reals);
+  top->SetEpsilons(lot_of_reals);
+  top->SetGBSARadii(lot_of_reals);
+  top->SetOBCScalings(lot_of_reals);
+  top->SetCharges(lot_of_reals);  
+
+  //do the index checks for them
+  BOOST_CHECK_THROW(top->SetSigma(1000,1.0),ost::Error);
+  BOOST_CHECK_THROW(top->SetEpsilon(1000,1.0),ost::Error);
+  BOOST_CHECK_THROW(top->SetGBSARadius(1000,1.0),ost::Error);
+  BOOST_CHECK_THROW(top->SetOBCScaling(1000,1.0),ost::Error);
+  BOOST_CHECK_THROW(top->SetMass(1000,1.0),ost::Error);
+  BOOST_CHECK_THROW(top->SetCharge(1000,1.0),ost::Error);   
+
+  //similar stupid checks for SetParameter functions
+  BOOST_CHECK_THROW(top->SetHarmonicBondParameters(700,r1,r2),ost::Error);
+  BOOST_CHECK_THROW(top->SetHarmonicAngleParameters(3000,r1,r2),ost::Error);
+  BOOST_CHECK_THROW(top->SetUreyBradleyAngleParameters(3000,r1,r2,r3,r4),ost::Error);
+  BOOST_CHECK_THROW(top->SetPeriodicDihedralParameters(3000,i1,r1,r2),ost::Error);
+  BOOST_CHECK_THROW(top->SetPeriodicImproperParameters(3000,i1,r1,r2),ost::Error);
+  BOOST_CHECK_THROW(top->SetHarmonicImproperParameters(3000,r1,r2),ost::Error);
+  BOOST_CHECK_THROW(top->SetCMapParameters(3000,0,zero_real),ost::Error);
+  BOOST_CHECK_THROW(top->SetLJPairParameters(3000,r1,r2),ost::Error);
+  BOOST_CHECK_THROW(top->SetDistanceConstraintParameters(3000,r1),ost::Error);
+  BOOST_CHECK_THROW(top->SetHarmonicPositionRestraintParameters(3000,zero_vec,r1),ost::Error);
+  BOOST_CHECK_THROW(top->SetHarmonicDistanceRestraintParameters(3000,r1,r2),ost::Error);
+
+  BOOST_CHECK_THROW(top->GetHarmonicBondParameters(700,ui1,ui2,r1,r2),ost::Error);
+  BOOST_CHECK_THROW(top->GetHarmonicAngleParameters(3000,ui1,ui2,ui3,r1,r2),ost::Error);
+  BOOST_CHECK_THROW(top->GetUreyBradleyAngleParameters(3000,ui1,ui2,ui3,r1,r2,r3,r4),ost::Error);
+  BOOST_CHECK_THROW(top->GetPeriodicDihedralParameters(3000,ui1,ui2,ui3,ui4,i1,r1,r2),ost::Error);
+  BOOST_CHECK_THROW(top->GetPeriodicImproperParameters(3000,ui1,ui2,ui3,ui4,i1,r1,r2),ost::Error);
+  BOOST_CHECK_THROW(top->GetHarmonicImproperParameters(3000,ui1,ui2,ui3,ui4,r1,r2),ost::Error);
+  BOOST_CHECK_THROW(top->GetCMapParameters(3000,ui1,ui2,ui3,ui4,ui5,i1,zero_real),ost::Error);
+  BOOST_CHECK_THROW(top->GetLJPairParameters(3000,ui1,ui2,r1,r2),ost::Error);
+  BOOST_CHECK_THROW(top->GetDistanceConstraintParameters(3000,ui1,ui2,r1),ost::Error);
+  BOOST_CHECK_THROW(top->GetHarmonicPositionRestraintParameters(3000,ui1,zero_vec,r1,r2,r3,r4),ost::Error);
+  BOOST_CHECK_THROW(top->GetHarmonicDistanceRestraintParameters(3000,ui1,ui2,r1,r2),ost::Error);
+
+  //let's add some interactions to the topology
+  for(int i = 0; i < 10; ++i){
+    top->AddHarmonicBond(0,1,r1,r2);
+    top->AddHarmonicAngle(0,1,2,r1,r2);
+    top->AddUreyBradleyAngle(0,1,2,r1,r2,r3,r4);
+    top->AddPeriodicDihedral(0,1,2,3,i1,r1,r2);
+    top->AddPeriodicImproper(0,1,2,3,i1,r1,r2);
+    top->AddHarmonicImproper(0,1,2,3,r1,r2);
+    top->AddCMap(0,1,2,3,4,i1,zero_real);
+    top->AddHarmonicPositionRestraint(0,zero_vec,r1,r2,r3,r4);
+    top->AddHarmonicDistanceRestraint(0,1,r1,r2);
+  }
+
+  //following interactions are unique for a pair of atoms
+  top->AddLJPair(0,1,r1,r2);
+  top->AddDistanceConstraint(0,1,r1);
+  top->AddExclusion(0,1);
+
+  //errors should be thrown, when previously added interactions are added again
+  BOOST_CHECK_THROW(top->AddLJPair(0,1,r1,r2), ost::Error);
+  BOOST_CHECK_THROW(top->AddDistanceConstraint(0,1,r1), ost::Error);
+  BOOST_CHECK_THROW(top->AddExclusion(0,1), ost::Error);
+  BOOST_CHECK_THROW(top->AddLJPair(1,0,r1,r2), ost::Error);
+  BOOST_CHECK_THROW(top->AddDistanceConstraint(1,0,r1), ost::Error);
+  BOOST_CHECK_THROW(top->AddExclusion(1,0), ost::Error);
+
+  //check set and get parameter stuff, but also the GetIndices functionality
+  std::vector<uint> ind1,ind2;
+  top->SetHarmonicBondParameters(0,0.5,15.0);
+  top->GetHarmonicBondParameters(0,ui1,ui2,r1,r2);
+  BOOST_CHECK(r1 == 0.5 && r2 == 15.0);
+  ind1 = top->GetHarmonicBondIndices(0,1);
+  ind2 = top->GetHarmonicBondIndices(1,0);
+  BOOST_CHECK(ind1 == ind2 && ind1.size() == 10);
+  BOOST_CHECK(top->GetHarmonicBondIndices(0).size() == 10);
+  BOOST_CHECK(top->GetHarmonicBondIndices(1).size() == 10);
+  BOOST_CHECK(top->GetHarmonicBondIndices(2).size() == 0);
+
+
+  top->SetHarmonicAngleParameters(0,1.0,10.0);
+  top->GetHarmonicAngleParameters(0,ui1,ui2,ui3,r1,r2);
+  BOOST_CHECK(r1 == 1.0 && r2 == 10.0);
+  ind1 = top->GetHarmonicAngleIndices(0,1,2);
+  ind2 = top->GetHarmonicAngleIndices(2,1,0);
+  BOOST_CHECK(ind1 == ind2 && ind1.size() == 10);
+  BOOST_CHECK(top->GetHarmonicAngleIndices(0).size() == 10);
+  BOOST_CHECK(top->GetHarmonicAngleIndices(1).size() == 10);
+  BOOST_CHECK(top->GetHarmonicAngleIndices(2).size() == 10);
+  BOOST_CHECK(top->GetHarmonicAngleIndices(3).size() == 0);
+
+  top->SetUreyBradleyAngleParameters(0,0.5,0.5,0.5,0.5);
+  top->GetUreyBradleyAngleParameters(0,ui1,ui2,ui3,r1,r2,r3,r4);
+  BOOST_CHECK( r1 == 0.5 && r2 == 0.5 && r3 == 0.5 && r3 == 0.5 );
+  ind1 = top->GetUreyBradleyAngleIndices(0,1,2);
+  ind2 = top->GetUreyBradleyAngleIndices(2,1,0);
+  BOOST_CHECK(ind1 == ind2 && ind1.size() == 10);
+  BOOST_CHECK(top->GetUreyBradleyAngleIndices(0).size() == 10);
+  BOOST_CHECK(top->GetUreyBradleyAngleIndices(1).size() == 10);
+  BOOST_CHECK(top->GetUreyBradleyAngleIndices(2).size() == 10);
+  BOOST_CHECK(top->GetUreyBradleyAngleIndices(3).size() == 0);
+
+
+  top->SetPeriodicDihedralParameters(0,2,5.0,0.5);
+  top->GetPeriodicDihedralParameters(0,ui1,ui2,ui3,ui4,i1,r1,r2);
+  BOOST_CHECK( i5 == 0 && r1 == 5.0 && r2 == 0.5 );
+  ind1 = top->GetPeriodicDihedralIndices(0,1,2,3);
+  ind2 = top->GetPeriodicDihedralIndices(3,2,1,0);
+  BOOST_CHECK(ind1 == ind2 && ind1.size() == 10);
+  BOOST_CHECK(top->GetPeriodicDihedralIndices(0).size() == 10);
+  BOOST_CHECK(top->GetPeriodicDihedralIndices(1).size() == 10);
+  BOOST_CHECK(top->GetPeriodicDihedralIndices(2).size() == 10);
+  BOOST_CHECK(top->GetPeriodicDihedralIndices(3).size() == 10);
+  BOOST_CHECK(top->GetPeriodicDihedralIndices(4).size() == 0);
+
+  top->SetPeriodicImproperParameters(6,2,2.0,1.0);
+  top->GetPeriodicImproperParameters(6,ui1,ui2,ui3,ui4,i1,r1,r2);
+  BOOST_CHECK( i5 == 0 && r1 == 2.0 && r2 == 1.0 );
+  ind1 = top->GetPeriodicImproperIndices(0,1,2,3);
+  ind2 = top->GetPeriodicImproperIndices(3,2,1,0);
+  BOOST_CHECK(ind1 == ind2 && ind1.size() == 10);
+  BOOST_CHECK(top->GetPeriodicImproperIndices(0).size() == 10);
+  BOOST_CHECK(top->GetPeriodicImproperIndices(1).size() == 10);
+  BOOST_CHECK(top->GetPeriodicImproperIndices(2).size() == 10);
+  BOOST_CHECK(top->GetPeriodicImproperIndices(3).size() == 10);
+  BOOST_CHECK(top->GetPeriodicImproperIndices(4).size() == 0);
+
+  top->SetHarmonicImproperParameters(0,4.0,4.0);
+  top->GetHarmonicImproperParameters(0,ui1,ui2,ui3,ui4,r1,r2);
+  BOOST_CHECK(r1 == 4.0 && r2 == 4.0);
+  ind1 = top->GetHarmonicImproperIndices(0,1,2,3);
+  ind2 = top->GetHarmonicImproperIndices(3,2,1,0);
+  BOOST_CHECK(ind1 == ind2 && ind1.size() == 10);
+  BOOST_CHECK(top->GetHarmonicImproperIndices(0).size() == 10);
+  BOOST_CHECK(top->GetHarmonicImproperIndices(1).size() == 10);
+  BOOST_CHECK(top->GetHarmonicImproperIndices(2).size() == 10);
+  BOOST_CHECK(top->GetHarmonicImproperIndices(3).size() == 10);
+  BOOST_CHECK(top->GetHarmonicImproperIndices(4).size() == 0);
+
+  std::vector<Real> one_real(1);
+  one_real[0] = 42;
+  top->SetCMapParameters(0,1,one_real);
+  std::vector<Real> temp_real;
+  top->GetCMapParameters(0,ui1,ui2,ui3,ui4,ui5,i1,temp_real);
+  BOOST_CHECK( ui1 == 0 && temp_real.size() == 1 && temp_real[0] == 42);
+  ind1 = top->GetCMapIndices(0,1,2,3,4);
+  ind2 = top->GetCMapIndices(4,3,2,1,0);
+  BOOST_CHECK(ind1.size() == 10);
+  BOOST_CHECK(ind2.size() == 0); //cmaps are sensitive for the ordering!!
+  BOOST_CHECK(top->GetCMapIndices(0).size() == 10);
+  BOOST_CHECK(top->GetCMapIndices(1).size() == 10);
+  BOOST_CHECK(top->GetCMapIndices(2).size() == 10);
+  BOOST_CHECK(top->GetCMapIndices(3).size() == 10);
+  BOOST_CHECK(top->GetCMapIndices(4).size() == 10);
+  BOOST_CHECK(top->GetCMapIndices(5).size() == 0);
+
+  top->SetLJPairParameters(0,3.5,4.5);
+  top->GetLJPairParameters(0,ui1,ui2,r1,r2);
+  BOOST_CHECK( r1 == 3.5 && r2 == 4.5 );
+  i1 = top->GetLJPairIndex(0,1);
+  i5 = top->GetLJPairIndex(1,0);
+  BOOST_CHECK(i1 == i5 && i1 != -1);
+  BOOST_CHECK(top->GetLJPairIndices(0).size() == 1);
+  BOOST_CHECK(top->GetLJPairIndices(1).size() == 1);
+  BOOST_CHECK(top->GetLJPairIndices(2).size() == 0);
+
+  top->SetDistanceConstraintParameters(0,42.0);
+  top->GetDistanceConstraintParameters(0,ui1,ui2,r1);
+  BOOST_CHECK( r1 == 42.0 );
+  i1 = top->GetDistanceConstraintIndex(0,1);
+  i5 = top->GetDistanceConstraintIndex(1,0);
+  BOOST_CHECK(i1 == i5 && i1 != -1);
+
+  top->SetHarmonicPositionRestraintParameters(0,test_vec,3.0);
+  top->GetHarmonicPositionRestraintParameters(0,ui1,zero_vec,r1,r2,r3,r4);
+  BOOST_CHECK(zero_vec == test_vec);
+  BOOST_CHECK(r1 == 3.0);
+  BOOST_CHECK(r2 == 1.0); //should be the same for r3 and r4
+  //no reverse checking necessary
+  BOOST_CHECK(top->GetHarmonicPositionRestraintIndices(0).size() == 10);
+  BOOST_CHECK(top->GetHarmonicPositionRestraintIndices(1).size() == 0);
+
+  top->SetHarmonicDistanceRestraintParameters(0,2.0,2.0);
+  top->GetHarmonicDistanceRestraintParameters(0,ui1,ui2,r1,r2);
+  BOOST_CHECK(r1 == 2.0 && r2 == 2.0);
+  ind1 = top->GetHarmonicDistanceRestraintIndices(0,1);
+  ind2 = top->GetHarmonicDistanceRestraintIndices(1,0);
+  BOOST_CHECK(ind1 == ind2 && ind1.size() == 10);
+  BOOST_CHECK(top->GetHarmonicDistanceRestraintIndices(0).size() == 10);
+  BOOST_CHECK(top->GetHarmonicDistanceRestraintIndices(1).size() == 10);
+  BOOST_CHECK(top->GetHarmonicDistanceRestraintIndices(2).size() == 0);
+
+  top->AddPositionConstraint(5);
+  BOOST_CHECK(top->GetNumPositionConstraints() == 1);
+  top->ResetPositionConstraints();
+  BOOST_CHECK(top->GetNumPositionConstraints() == 0);
+}
+
+BOOST_AUTO_TEST_CASE(test_topology_merge){
+
+  String pdb_name = "1CRN.pdb";
+  ost::io::PDBReader reader(pdb_name, ost::io::IOProfile());
+  ost::mol::EntityHandle test_ent = ost::mol::CreateEntity();
+  ost::mol::EntityHandle temp;
+
+  reader.Import(test_ent);
+
+  ForcefieldPtr ff = Forcefield::Load("CHARMM27.dat");
+  SettingsPtr settings = SettingsPtr(new Settings);
+  settings->add_gbsa = true;
+  settings->forcefield = ff;
+
+  ost::mol::EntityHandle new_ent = ost::mol::Builder()
+                                   .Chain("A")
+                                     .Residue("ONE")
+                                       .Atom("A",geom::Vec3(0,0,0))
+                                       .Atom("B",geom::Vec3(1,1,1))
+                                     .Residue("TWO")
+                                       .Atom("A",geom::Vec3(2,2,2))
+                                       .Atom("B",geom::Vec3(3,3,3))
+                                     .Residue("THREE")
+                                       .Atom("A",geom::Vec3(4,4,4))
+                                       .Atom("B",geom::Vec3(5,5,5));
+
+  //check whether error gets thrown when chain with same name is already present
+  std::vector<Real> real_vec(6);
+  TopologyPtr merge_top_one(new Topology(real_vec));
+  merge_top_one->SetCharges(real_vec);
+  merge_top_one->SetOBCScalings(real_vec);
+  merge_top_one->SetGBSARadii(real_vec);
+  merge_top_one->SetSigmas(real_vec);
+  merge_top_one->SetEpsilons(real_vec);
+  merge_top_one->SetFudgeQQ(1.0);
+  merge_top_one->SetFudgeLJ(1.0);
+  TopologyPtr top_one = TopologyCreator::Create(test_ent,settings);
+  temp = test_ent.Copy();
+  BOOST_CHECK_THROW(top_one->Merge(temp,merge_top_one,new_ent),ost::Error); 
+  ost::mol::XCSEditor ed = new_ent.EditXCS();
+  ed.RenameChain(new_ent.GetChainList()[0],"B");
+  TopologyPtr merge_top_one_two(new Topology(real_vec)); // I know...
+  merge_top_one_two->SetCharges(real_vec);
+  merge_top_one_two->SetOBCScalings(real_vec);
+  merge_top_one_two->SetGBSARadii(real_vec);
+  merge_top_one_two->SetSigmas(real_vec);
+  merge_top_one_two->SetEpsilons(real_vec);
+  merge_top_one_two->SetFudgeQQ(1.0);
+  merge_top_one_two->SetFudgeLJ(1.0);
+  BOOST_CHECK_NO_THROW(top_one->Merge(temp,merge_top_one_two,new_ent));
+
+
+  //check whether error gets thrown, when fudge parameters are inconsistent
+  TopologyPtr merge_top_two(new Topology(real_vec));
+  merge_top_two->SetCharges(real_vec);
+  merge_top_two->SetOBCScalings(real_vec);
+  merge_top_two->SetGBSARadii(real_vec);
+  merge_top_two->SetSigmas(real_vec);
+  merge_top_two->SetEpsilons(real_vec);
+  merge_top_two->SetFudgeQQ(42.0);
+  merge_top_two->SetFudgeLJ(42.0);
+  TopologyPtr top_two = TopologyCreator::Create(test_ent,settings);
+  temp = test_ent.Copy();
+  BOOST_CHECK_THROW(top_two->Merge(temp,merge_top_two,new_ent),ost::Error); 
+  merge_top_two->SetFudgeQQ(1.0);
+  merge_top_two->SetFudgeLJ(1.0);
+  BOOST_CHECK_NO_THROW(top_two->Merge(temp,merge_top_two,new_ent));
+
+
+  //check whether error gets thrown when charges are not set
+  TopologyPtr merge_top_three(new Topology(real_vec));
+  merge_top_three->SetOBCScalings(real_vec);
+  merge_top_three->SetGBSARadii(real_vec);
+  merge_top_three->SetSigmas(real_vec);
+  merge_top_three->SetEpsilons(real_vec);
+  merge_top_three->SetFudgeQQ(1.0);
+  merge_top_three->SetFudgeLJ(1.0);
+  TopologyPtr top_three = TopologyCreator::Create(test_ent,settings);
+  temp = test_ent.Copy();
+  BOOST_CHECK_THROW(top_three->Merge(temp,merge_top_three,new_ent),ost::Error); 
+  TopologyPtr top_three_two = TopologyCreator::Create(test_ent,settings);
+  merge_top_three->SetCharges(real_vec);
+  BOOST_CHECK_NO_THROW(top_three_two->Merge(temp,merge_top_three,new_ent));
+
+  //check whether error gets thrown when obc scaling factors are not set
+  TopologyPtr merge_top_four(new Topology(real_vec));
+  merge_top_four->SetCharges(real_vec);
+  merge_top_four->SetGBSARadii(real_vec);
+  merge_top_four->SetSigmas(real_vec);
+  merge_top_four->SetEpsilons(real_vec);
+  merge_top_four->SetFudgeQQ(1.0);
+  merge_top_four->SetFudgeLJ(1.0);
+  TopologyPtr top_four = TopologyCreator::Create(test_ent,settings);
+  temp = test_ent.Copy();
+  BOOST_CHECK_THROW(top_four->Merge(temp,merge_top_four,new_ent),ost::Error); 
+  TopologyPtr top_four_two = TopologyCreator::Create(test_ent,settings);
+  merge_top_four->SetOBCScalings(real_vec);
+  BOOST_CHECK_NO_THROW(top_four_two->Merge(temp,merge_top_four,new_ent));
+
+  //check whether error gets thrown when gbsa radii are not set
+  TopologyPtr merge_top_five(new Topology(real_vec));
+  merge_top_five->SetCharges(real_vec);
+  merge_top_five->SetOBCScalings(real_vec);
+  merge_top_five->SetSigmas(real_vec);
+  merge_top_five->SetEpsilons(real_vec);
+  merge_top_five->SetFudgeQQ(1.0);
+  merge_top_five->SetFudgeLJ(1.0);
+  TopologyPtr top_five = TopologyCreator::Create(test_ent,settings);
+  temp = test_ent.Copy();
+  BOOST_CHECK_THROW(top_five->Merge(temp,merge_top_five,new_ent),ost::Error); 
+  TopologyPtr top_five_two = TopologyCreator::Create(test_ent,settings);
+  merge_top_five->SetGBSARadii(real_vec);
+  BOOST_CHECK_NO_THROW(top_five_two->Merge(temp,merge_top_five,new_ent));
+
+  //check whether error gets thrown when sigmas are not set
+  TopologyPtr merge_top_six(new Topology(real_vec));
+  merge_top_six->SetCharges(real_vec);
+  merge_top_six->SetOBCScalings(real_vec);
+  merge_top_six->SetGBSARadii(real_vec);  
+  merge_top_six->SetEpsilons(real_vec);
+  merge_top_six->SetFudgeQQ(1.0);
+  merge_top_six->SetFudgeLJ(1.0);
+  TopologyPtr top_six = TopologyCreator::Create(test_ent,settings);
+  temp = test_ent.Copy();
+  BOOST_CHECK_THROW(top_six->Merge(temp,merge_top_six,new_ent),ost::Error); 
+  TopologyPtr top_six_two = TopologyCreator::Create(test_ent,settings);
+  merge_top_six->SetSigmas(real_vec);
+  BOOST_CHECK_NO_THROW(top_six_two->Merge(temp,merge_top_six,new_ent));
+
+  //check whether error gets thrown when epsilons are not set
+  TopologyPtr merge_top_seven(new Topology(real_vec));
+  merge_top_seven->SetCharges(real_vec);
+  merge_top_seven->SetOBCScalings(real_vec);
+  merge_top_seven->SetGBSARadii(real_vec); 
+  merge_top_seven->SetSigmas(real_vec); 
+  merge_top_seven->SetFudgeQQ(1.0);
+  merge_top_seven->SetFudgeLJ(1.0);
+  TopologyPtr top_seven = TopologyCreator::Create(test_ent,settings);
+  temp = test_ent.Copy();
+  BOOST_CHECK_THROW(top_seven->Merge(temp,merge_top_seven,new_ent),ost::Error); 
+  TopologyPtr top_seven_two = TopologyCreator::Create(test_ent,settings);
+  merge_top_seven->SetEpsilons(real_vec);
+  BOOST_CHECK_NO_THROW(top_seven_two->Merge(temp,merge_top_seven,new_ent));
+
+  TopologyPtr merge_top_eight(new Topology(real_vec));
+  merge_top_eight->SetCharges(real_vec);
+  merge_top_eight->SetOBCScalings(real_vec);
+  merge_top_eight->SetGBSARadii(real_vec); 
+  merge_top_eight->SetSigmas(real_vec); 
+  merge_top_eight->SetFudgeQQ(1.0);
+  merge_top_eight->SetFudgeLJ(1.0);
+  merge_top_eight->SetEpsilons(real_vec);
+
+  //let's add every possible interaction
+  merge_top_eight->AddHarmonicBond(0,1,42.0,42000.0);
+  merge_top_eight->AddHarmonicAngle(0,1,2,24.0,24000.0);
+  merge_top_eight->AddUreyBradleyAngle(1,2,3,1.0,2.0,3.0,4.0);
+  merge_top_eight->AddPeriodicDihedral(0,1,2,3,10,2.0,42.0);
+  merge_top_eight->AddPeriodicImproper(1,2,3,4,3,5.0,10.0);
+  merge_top_eight->AddHarmonicImproper(0,1,2,3,8.0,12.0);
+  std::vector<Real> cmap;
+  cmap.push_back(0.0);
+  cmap.push_back(1.0);
+  cmap.push_back(2.0);
+  cmap.push_back(3.0);
+  merge_top_eight->AddCMap(0,1,2,3,4,2,cmap);
+  merge_top_eight->AddLJPair(3,4,1.0,2.0);
+  merge_top_eight->AddDistanceConstraint(2,3,10.0);
+  merge_top_eight->AddExclusion(3,4);
+  merge_top_eight->AddPositionConstraint(2);
+  geom::Vec3 pos(1.0,2.0,3.0);
+  merge_top_eight->AddHarmonicPositionRestraint(2,pos,10.0,5.0,6.0,7.0);
+  merge_top_eight->AddHarmonicDistanceRestraint(1,2,10.0,1000.0);
+
+  TopologyPtr top_eight = TopologyCreator::Create(test_ent,settings);
+
+  uint num_harmonic_bonds = top_eight->GetNumHarmonicBonds();
+  uint num_harmonic_angles = top_eight->GetNumHarmonicAngles();
+  uint num_urey_bradley_angles = top_eight->GetNumUreyBradleyAngles();
+  uint num_periodic_dihedrals = top_eight->GetNumPeriodicDihedrals();
+  uint num_periodic_impropers = top_eight->GetNumPeriodicImpropers();
+  uint num_harmonic_impropers = top_eight->GetNumHarmonicImpropers();
+  uint num_cmaps = top_eight->GetNumCMaps();
+  uint num_lj_pairs = top_eight->GetNumLJPairs();
+  uint num_distance_constraints = top_eight->GetNumDistanceConstraints();
+  uint num_exclusions = top_eight->GetNumExclusions();
+  uint num_position_constraints = top_eight->GetNumPositionConstraints();
+  uint num_harmonic_position_restraints = top_eight->GetNumHarmonicPositionRestraints();
+  uint num_harmonic_distance_restraints = top_eight->GetNumHarmonicDistanceRestraints();
+
+  temp = test_ent.Copy();
+  top_eight->Merge(temp, merge_top_eight, new_ent);
+
+  BOOST_CHECK(top_eight->GetNumHarmonicBonds() == num_harmonic_bonds+1);
+  BOOST_CHECK(top_eight->GetNumHarmonicAngles() == num_harmonic_angles+1);
+  BOOST_CHECK(top_eight->GetNumUreyBradleyAngles() == num_urey_bradley_angles+1);
+  BOOST_CHECK(top_eight->GetNumPeriodicDihedrals() == num_periodic_dihedrals+1);
+  BOOST_CHECK(top_eight->GetNumPeriodicImpropers() == num_periodic_impropers+1);
+  BOOST_CHECK(top_eight->GetNumHarmonicImpropers() == num_harmonic_impropers+1);
+  BOOST_CHECK(top_eight->GetNumCMaps() == num_cmaps+1);
+  BOOST_CHECK(top_eight->GetNumLJPairs() == num_lj_pairs+1);
+  BOOST_CHECK(top_eight->GetNumDistanceConstraints() == num_distance_constraints+1);
+  BOOST_CHECK(top_eight->GetNumExclusions() == num_exclusions+1);
+  BOOST_CHECK(top_eight->GetNumPositionConstraints() == num_position_constraints+1);
+  BOOST_CHECK(top_eight->GetNumHarmonicPositionRestraints() == num_harmonic_position_restraints+1);
+  BOOST_CHECK(top_eight->GetNumHarmonicDistanceRestraints() == num_harmonic_distance_restraints+1);
+
+  uint atom_index_zero = 0 + test_ent.GetAtomCount();
+  uint atom_index_one = 1 + test_ent.GetAtomCount();
+  uint atom_index_two = 2 + test_ent.GetAtomCount();
+  uint atom_index_three = 3 + test_ent.GetAtomCount();
+  uint atom_index_four = 4 + test_ent.GetAtomCount();
+  //uint atom_index_five = 5 + test_ent.GetAtomCount();
+
+  //check whether the unique interactions are properly mapped
+  BOOST_CHECK_THROW(top_eight->AddExclusion(atom_index_three,atom_index_four),ost::Error);
+  BOOST_CHECK_THROW(top_eight->AddDistanceConstraint(atom_index_two,atom_index_three,10.0),ost::Error);
+  BOOST_CHECK_THROW(top_eight->AddLJPair(atom_index_three,atom_index_four,1.0,2.0),ost::Error);
+
+  //check whether the interactions are properly added (we do not check the correct parametrization at this point)
+
+  std::vector<uint> harmonic_bond_indices = top_eight->GetHarmonicBondIndices(atom_index_zero,atom_index_one);
+  std::vector<uint> harmonic_angle_indices = top_eight->GetHarmonicAngleIndices(atom_index_zero,atom_index_one,atom_index_two);
+  std::vector<uint> urey_bradley_angle_indices = top_eight->GetUreyBradleyAngleIndices(atom_index_one,atom_index_two,atom_index_three);
+  std::vector<uint> periodic_dihedral_indices = top_eight->GetPeriodicDihedralIndices(atom_index_zero,atom_index_one,atom_index_two,atom_index_three);
+  std::vector<uint> periodic_improper_indices = top_eight->GetPeriodicImproperIndices(atom_index_one,atom_index_two,atom_index_three,atom_index_four);
+  std::vector<uint> harmonic_improper_indices = top_eight->GetHarmonicImproperIndices(atom_index_zero,atom_index_one,atom_index_two,atom_index_three);
+  std::vector<uint> cmap_indices = top_eight->GetCMapIndices(atom_index_zero,atom_index_one,atom_index_two,atom_index_three,atom_index_four);
+  int lj_pair_index = top_eight->GetLJPairIndex(atom_index_three,atom_index_four);
+  int distance_constraint_index = top_eight->GetDistanceConstraintIndex(atom_index_two,atom_index_three);
+  std::vector<uint> harmonic_distance_restraint_indices = top_eight->GetHarmonicDistanceRestraintIndices(atom_index_one,atom_index_two);
+  std::vector<uint> harmonic_position_restraint_indices = top_eight->GetHarmonicPositionRestraintIndices(atom_index_two);
+
+  BOOST_CHECK(harmonic_bond_indices.size() == 1);
+  BOOST_CHECK(harmonic_angle_indices.size() == 1);
+  BOOST_CHECK(urey_bradley_angle_indices.size() == 1);
+  BOOST_CHECK(periodic_dihedral_indices.size() == 1);
+  BOOST_CHECK(periodic_improper_indices.size() == 1);
+  BOOST_CHECK(harmonic_improper_indices.size() == 1);
+  BOOST_CHECK(cmap_indices.size() == 1);
+  BOOST_CHECK(harmonic_distance_restraint_indices.size() == 1);
+  BOOST_CHECK(harmonic_position_restraint_indices.size() == 1);
+  BOOST_CHECK(lj_pair_index != -1);
+  BOOST_CHECK(distance_constraint_index != -1);
+
+
+  //let's finally check the parameters
+
+  uint ui0,ui1,ui2,ui3,ui4;
+  int i0;
+  Real r0,r1,r2,r3;
+  geom::Vec3 v0;
+
+  top_eight->GetHarmonicBondParameters(harmonic_bond_indices[0],ui0,ui1,r0,r1);
+  BOOST_CHECK(r0 = 42.0 && r1 == 42000.0);
+
+  top_eight->GetHarmonicAngleParameters(harmonic_angle_indices[0],ui0,ui1,ui2,r0,r1);
+  BOOST_CHECK(r0 == 24.0 && r1 == 24000.0);
+
+  top_eight->GetUreyBradleyAngleParameters(urey_bradley_angle_indices[0],ui0,ui1,ui2,r0,r1,r2,r3);
+  BOOST_CHECK(r0 == 1.0 && r1 == 2.0 && r2 == 3.0 && r3 == 4.0);
+
+  top_eight->GetPeriodicDihedralParameters(periodic_dihedral_indices[0],ui0,ui1,ui2,ui3,i0,r0,r1);
+  BOOST_CHECK(i0 == 10 && r0 == 2.0 && r1 == 42.0);
+
+  top_eight->GetPeriodicImproperParameters(periodic_improper_indices[0],ui0,ui1,ui2,ui3,i0,r0,r1);
+  BOOST_CHECK(i0 == 3 && r0 == 5.0 && r1 == 10.0);
+
+  top_eight->GetHarmonicImproperParameters(harmonic_improper_indices[0],ui0,ui1,ui2,ui3,r0,r1);
+  BOOST_CHECK(r0 == 8.0 && r1 == 12.0);
+
+  top_eight->GetCMapParameters(cmap_indices[0],ui0,ui1,ui2,ui3,ui4,i0,real_vec);
+  BOOST_CHECK(real_vec == cmap && i0 == 2);
+
+  top_eight->GetLJPairParameters(lj_pair_index,ui0,ui1,r0,r1);
+  BOOST_CHECK(r0 == 1.0 && r1 == 2.0);
+
+  top_eight->GetDistanceConstraintParameters(distance_constraint_index,ui0,ui1,r0);
+  BOOST_CHECK(r0 == 10.0);
+
+  top_eight->GetHarmonicPositionRestraintParameters(harmonic_position_restraint_indices[0],ui0,v0,r0,r1,r2,r3);
+  BOOST_CHECK(v0 == pos && r0 == 10.0 && r1 == 5.0 && r2 == 6.0 && r3 == 7.0);
+
+  top_eight->GetHarmonicDistanceRestraintParameters(harmonic_distance_restraint_indices[0],ui0,ui1,r0,r1);
+  BOOST_CHECK(r0 == 10.0 && r1 == 1000.0);
+
+}
+
+
+BOOST_AUTO_TEST_SUITE_END();
\ No newline at end of file
diff --git a/modules/mol/mm/tests/tests.cc b/modules/mol/mm/tests/tests.cc
new file mode 100644
index 0000000000000000000000000000000000000000..6a7e493fad5d292938130abacbe3c60511b5729e
--- /dev/null
+++ b/modules/mol/mm/tests/tests.cc
@@ -0,0 +1,25 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#define BOOST_TEST_DYN_LINK
+#define BOOST_TEST_MODULE ost_mol_base
+#define BOOST_AUTO_TEST_MAIN
+#include <boost/test/unit_test.hpp>
+#include <boost/test/auto_unit_test.hpp>
+
diff --git a/modules/seq/alg/doc/seqalg.rst b/modules/seq/alg/doc/seqalg.rst
index a97895561a3564d00b3a13e65ecf9a02b3e1ca38..2137e5ab17b5d3cd1ba68715c6b050f4790c0f32 100644
--- a/modules/seq/alg/doc/seqalg.rst
+++ b/modules/seq/alg/doc/seqalg.rst
@@ -131,3 +131,162 @@
 
   :returns: List of column entropies
 
+.. function:: SemiGlobalAlign(seq1, seq2, subst_weight, gap_open=-5, gap_ext=-2)
+
+  Performs a semi-global alignment of *seq1* and *seq2* and returns the best-
+  scoring alignment. The algorithm is Needleman/Wunsch same as GlobalAlign, but
+  without any gap penalty for starting or ending gaps. This is prefereble 
+  whenever one of the sequences is significantly shorted than the other.
+  This make it also suitable for fragment assembly.
+  
+  **Example:**
+  
+  .. code-block:: python
+  
+    seq_a=seq.CreateSequence('A', 'abcdefghijklmnok')
+    seq_b=seq.CreateSequence('B', 'cdehijk')
+    alns=seq.alg.GlobalAlign(seq_a, seq_b, seq.alg.BLOSUM62)
+    print alns[0].ToString(80)
+    # >>> A abcdefghijklmnok
+    # >>> B --cde--hijk-----
+
+  :param seq1: A valid sequence
+  :type seq1: :class:`~ost.seq.ConstSequenceHandle`
+  :param seq2: A valid sequence  
+  :type seq2: :class:`~ost.seq.ConstSequenceHandle`
+  
+  :param subst_weigth: The substitution weights matrix
+  :type subst_weight: :class:`SubstWeightMatrix`
+  :param gap_open: The gap opening penalty. Must be a negative number
+  :param gap_ext: The gap extension penalty. Must be a negative number
+  :returns: best-scoring alignment of *seq1* and *seq2*.
+
+
+.. _contact-prediction:
+
+Contact Prediction
+--------------------------------------------------------------------------------
+
+This is a set of functions for predicting pairwise contacts from a multiple
+sequence alignment (MSA). The core method here is mutual information which uses 
+coevolution to predict contacts. Mutual information is complemented by two other 
+methods which score pairs of columns of a MSA from the likelyhood of certain
+amino acid pairs to form contacts (statistical potential) and the likelyhood
+of finding certain substitutions of aminio-acid pairs in columns of the MSA
+corresponding to interacting residues.
+
+.. class:: ContactPredictionScoreResult
+  
+  Object containing the results form a contact prediction. 
+
+  .. attribute:: matrix
+
+    An *NxN* :class:`~ost.FloatMatrix` where *N* is the length of the alignment.
+    The element *i,j* corresponds to the score of the corresponding
+    columns of the MSA. High scores correspond to high likelyhood of
+    a contact.
+
+  .. attribute:: sorted_indices
+
+    List of all indices pairs *i,j*, containing (N*N-1)/2 elements,
+    as the **matrix** is symmetrical and elements in the diagonal
+    are ignored. The indices are sorted from the pair most likely to form
+    a contact to the least likely one.
+
+  .. method:: GetScore(i,j)
+
+    returns **matrix(i,j)**
+
+    :param i: First index
+    :param j: Second index
+    :type i:  :class:`int`
+    :type j:  :class:`int`
+
+  .. method:: SetScore(i,j,score)
+
+    Sets **matrix(i,j)** to **score**
+
+    :param i: First index
+    :param j: Second index
+    :param score: The score
+    :type i:  :class:`int`
+    :type j:  :class:`int`
+    :type score:  :class:`float`
+
+.. autofunction:: PredictContacts
+
+.. function:: CalculateMutualInformation(aln,weights=LoadConstantContactWeightMatrix(),
+            apc_correction=true,zpx_transformation=true,small_number_correction=0.05)
+
+    Calculates the mutual information (MI) from a multiple sequence alignemnt. Contributions of each pair of amino-acids are weighted using the matrix **weights** (weighted mutual information). The average product correction (**apc_correction**) correction and transformation into Z-scores (**zpx_transofrmation**) increase prediciton accuracy by reducing the effect of phylogeny and other noise sources. The small number correction reduces noise for alignments with small number of sequences of low diversity.
+
+    :param aln: The multiple sequences alignment
+    :type aln:  :class:`~ost.seq.AlignmentHandle`
+    :param weights: The weight matrix
+    :type weights:  :class`ContactWeightMatrix`
+    :param apc_correction: Whether to use the APC correction
+    :type apc_correction:  :class:`bool`
+    :param zpx_transformation:  Whether to transform the scores into Z-scores
+    :type zpx_transformation: :class:`bool`
+    :param small_number_correction: initial values for the probabilities of having a given pair of amino acids *p(a,b)*.
+    :type small_number_correction: :class:`float`
+
+.. function:: CalculateContactScore(aln,weights=LoadDefaultContactWeightMatrix())
+  
+  Calculates the Contact Score (*CoSc*) from a multiple sequence alignment. For each pair of residues *(i,j)* (pair of columns in the MSA), *CoSc(i,j)* is the average over the values of the **weights** corresponding to the amino acid pairs in the columns.
+
+  :param aln: The multiple sequences alignment
+  :type aln:  :class:`~ost.seq.AlignmentHandle`
+  :param weights: The contact weight matrix
+  :type weights:  :class`ContactWeightMatrix`
+
+.. function:: CalculateContactSubstitutionScore(aln,ref_seq_index=0,
+                            weights=LoadDefaultPairSubstWeightMatrix())
+
+  Calculates the Contact Substitution Score (*CoEvoSc*) from a multiple sequence alignment. For each pair of residues *(i,j)* (pair of columns in the MSA), *CoEvoSc(i,j)* is the average over the values of the **weights** corresponding to substituting the amino acid pair in the reference sequence (given by **ref_seq_index**) with all other pairs in columns *(i,j)* of the **aln**.
+
+  :param aln: The multiple sequences alignment
+  :type aln:  :class:`~ost.seq.AlignmentHandle`
+  :param weights: The pair substitution weight matrix
+  :type weights:  :class`ContactWeightMatrix`
+
+.. function:: LoadDefaultContactWeightMatrix()
+  
+  :returns: *CPE*, a :class:`ContactWeightMatrix` that was calculated from a large (>15000) set of
+    high quality crystal structures as *CPE=log(CF(a,b)/NCF(a,b))* and then normalised so that all its elements are comprised between 0 and 1. *CF(a,b)* is the frequency of amino acids *a* and *b* for pairs of contacting residues and *NCF(a,b)* is the frequency of amino acids *a* and *b* for pairs of non-contacting residues. Apart from weights for the standard amino acids, this matrix gives a weight of 0 to all pairs for which at least one amino-acid is a gap.
+
+.. function:: LoadConstantContactWeightMatrix()
+  
+  :returns: A :class:`ContactWeightMatrix`. This matrix gives a weight of one to all pairs of
+   standard amino-acids and a weight of 0 to pairs for which at least one amino-acid is a gap.
+
+.. function:: LoadDefaultPairSubstWeightMatrix()
+  
+  :returns: *CRPE*, a :class:`PairSubstWeightMatrix` that was calculated from a large (>15000) set of
+    high quality crystal structures as *CRPE=log(CRF(ab->cd)/NCRF(ab->cd))* and then normalised so that all its elements are comprised between 0 and 1. *CRF(ab->cd)* is the frequency of replacement of a pair of amino acids  *a* and *b* by a pair *c* and *d* in columns of the MSA corresponding to contacting residues and *NCRF(ab->cd)* is the frequency of replacement of a pair of amino acids  *a* and *b* by a pair *c* and *d* in columns of the MSA corresponding to non-contacting residues. Apart from weights for the standard amino acids, this matrix gives a weight of 0 to all pair substitutions for which at least one amino-acid is a gap.
+
+
+.. class:: PairSubstWeightMatrix(weights, aa_list)
+
+  This class is used to associate a weight to any substitution from one amino-acid pair *(a,b)* to any other pair *(c,d)*.
+
+  .. attribute:: weights
+
+    A :class:`~ost.FloatMatrix4` of size *NxNxNxN*, where *N=len(aa_list)*
+
+  .. attribute:: aa_list
+
+    A :class:`CharList` of one letter codes of the amino acids for which weights are found in the **weights** matrix.
+
+.. class:: ContactWeightMatrix(weights, aa_list)
+
+  This class is used to associate a weight to any pair of amino-acids.
+
+  .. attribute:: weights
+
+    A :class:`~ost.FloatMatrix` of size *NxN*, where *N=len(aa_list)*
+
+  .. attribute:: aa_list
+
+    A :class:`CharList` of one letter codes of the amino acids for which weights are found in the **weights** matrix.
+
diff --git a/modules/seq/alg/pymod/__init__.py b/modules/seq/alg/pymod/__init__.py
index 63e10f3565f5ade634e5d1a0f75f356ce2330e72..7eebf33878d565ecfcd09564daaf69f696c285f3 100644
--- a/modules/seq/alg/pymod/__init__.py
+++ b/modules/seq/alg/pymod/__init__.py
@@ -168,3 +168,37 @@ def AlignmentFromChainView(chain, handle_seq_name='handle',
       s1.Append('-')
     idx0+=1
   return seq.CreateAlignment(s0, s1)
+
+def PredictContacts(ali):
+  """
+  Predicts contacts from a multiple sequence alignment using a combination
+  of Mutual Information (*MI*) and the Contact Substitution Score (*CoEvoSc*).
+  MI is calculated with the APC and small number corrections as well as with a 
+  transformation into Z-scores. The *CoEvoSc* is calculated using the default 
+  PairSubstWeightMatrix (see seq.alg.LoadDefaultPairSubstWeightMatrix).
+  The final score for a pair of columns *(i,j)* of **ali** is obtained from:
+  
+  Sc(i,j)=MI(i,j)exp(CoEvoSc(i,j))      if *(i,j)* >=0
+  
+  Sc(i,j)=MI(i,j)exp(1-CoEvoSc(i,j))    if *(i,j)* <0
+
+  :param ali: The multiple sequence alignment
+  :type ali: :class:`~ost.seq.AlignmentHandle`
+  """
+  import math
+  from ost import seq
+  if not type(ali)==type(seq.AlignmentHandle()):
+    print "Parameter should be an AlignmentHandle"
+    return
+  mi=CalculateMutualInformation(ali)
+  CoEvoSc=CalculateContactSubstitutionScore(ali)
+  ncol=ali.GetLength()
+  for i in range(ncol):
+    for j in range(ncol):
+      if mi.matrix[i][j]>=0:
+        mi.matrix[i][j]=mi.matrix[i][j]*(math.exp(CoEvoSc.matrix[i][j]))
+      else:
+        mi.matrix[i][j]=mi.matrix[i][j]*(math.exp(1.-CoEvoSc.matrix[i][j]))
+  mi.RefreshSortedIndices()
+  return mi
+
diff --git a/modules/seq/alg/pymod/mat.py b/modules/seq/alg/pymod/mat.py
index d500be8fd614befbaa84af003fe9e0c47042e1d9..f79bf8326891d5aa9bab92724a5cf781c97cde0a 100644
--- a/modules/seq/alg/pymod/mat.py
+++ b/modules/seq/alg/pymod/mat.py
@@ -1,125 +1,13 @@
 from ost.seq.alg import SubstWeightMatrix
 
-def _InitMatrix(data):
-  """
-  Initialise a new substitution weight matrix with the weights in data. data
-  must be a 24x24 array of ints.
-  """
-  mat=SubstWeightMatrix()
-  # string of valid amino acid one letter codes
-  chars='ABCDEFGHIKLMNPQRSTVWXYZ'
-  for i, row in enumerate(data):
-    for j, weight in enumerate(row):
-      mat.SetWeight(chars[i], chars[j], weight)
+def _InitMatrix(preset_enum):
+  mat = SubstWeightMatrix()
+  mat.AssignPreset(preset_enum)
   return mat
 
-_RAW_BLOSUM45_DATA=(
-  ( 5, -1, -1, -2, -1, -2,  0, -2, -1, -1, -1, -1, -1, -1, -1, -2,  1,  0,  0, -2,  0, -2, -1),
-  (-1,  4, -2,  5,  1, -3, -1,  0, -3,  0, -3, -2,  4, -2,  0, -1,  0,  0, -3, -4, -1, -2,  2),
-  (-1, -2, 12, -3, -3, -2, -3, -3, -3, -3, -2, -2, -2, -4, -3, -3, -1, -1, -1, -5, -2, -3, -3),
-  (-2,  5, -3,  7,  2, -4, -1,  0, -4,  0, -3, -3,  2, -1,  0, -1,  0, -1, -3, -4, -1, -2,  1),
-  (-1,  1, -3,  2,  6, -3, -2,  0, -3,  1, -2, -2,  0,  0,  2,  0,  0, -1, -3, -3, -1, -2,  4),
-  (-2, -3, -2, -4, -3,  8, -3, -2,  0, -3,  1,  0, -2, -3, -4, -2, -2, -1,  0,  1, -1,  3, -3),
-  ( 0, -1, -3, -1, -2, -3,  7, -2, -4, -2, -3, -2,  0, -2, -2, -2,  0, -2, -3, -2, -1, -3, -2),
-  (-2,  0, -3,  0,  0, -2, -2, 10, -3, -1, -2,  0,  1, -2,  1,  0, -1, -2, -3, -3, -1,  2,  0),
-  (-1, -3, -3, -4, -3,  0, -4, -3,  5, -3,  2,  2, -2, -2, -2, -3, -2, -1,  3, -2, -1,  0, -3),
-  (-1,  0, -3,  0,  1, -3, -2, -1, -3,  5, -3, -1,  0, -1,  1,  3, -1, -1, -2, -2, -1, -1,  1),
-  (-1, -3, -2, -3, -2,  1, -3, -2,  2, -3,  5,  2, -3, -3, -2, -2, -3, -1,  1, -2, -1,  0, -2),
-  (-1, -2, -2, -3, -2,  0, -2,  0,  2, -1,  2,  6, -2, -2,  0, -1, -2, -1,  1, -2, -1,  0, -1),
-  (-1,  4, -2,  2,  0, -2,  0,  1, -2,  0, -3, -2,  6, -2,  0,  0,  1,  0, -3, -4, -1, -2,  0),
-  (-1, -2, -4, -1,  0, -3, -2, -2, -2, -1, -3, -2, -2,  9, -1, -2, -1, -1, -3, -3, -1, -3, -1),
-  (-1,  0, -3,  0,  2, -4, -2,  1, -2,  1, -2,  0,  0, -1,  6,  1,  0, -1, -3, -2, -1, -1,  4),
-  (-2, -1, -3, -1,  0, -2, -2,  0, -3,  3, -2, -1,  0, -2,  1,  7, -1, -1, -2, -2, -1, -1,  0),
-  ( 1,  0, -1,  0,  0, -2,  0, -1, -2, -1, -3, -2,  1, -1,  0, -1,  4,  2, -1, -4,  0, -2,  0),
-  ( 0,  0, -1, -1, -1, -1, -2, -2, -1, -1, -1, -1,  0, -1, -1, -1,  2,  5,  0, -3,  0, -1, -1),
-  ( 0, -3, -1, -3, -3,  0, -3, -3,  3, -2,  1,  1, -3, -3, -3, -2, -1,  0,  5, -3, -1, -1, -3),
-  (-2, -4, -5, -4, -3,  1, -2, -3, -2, -2, -2, -2, -4, -3, -2, -2, -4, -3, -3, 15, -2,  3, -2),
-  ( 0, -1, -2, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,  0,  0, -1, -2, -1, -1, -1),
-  (-2, -2, -3, -2, -2,  3, -3,  2,  0, -1,  0,  0, -2, -3, -1, -1, -2, -1, -1,  3, -1,  8, -2),
-  (-1,  2, -3,  1,  4, -3, -2,  0, -3,  1, -2, -1,  0, -1,  4,  0,  0, -1, -3, -2, -1, -2,  4),
-)
-      
-_RAW_BLOSUM62_DATA=(
-  ( 4, -2,  0, -2, -1, -2,  0, -2, -1, -1, -1, -1, -2, -1, -1, -1,  1,  0,  0, -3,  0, -2, -1),
-  (-2,  4, -3,  4,  1, -3, -1,  0, -3,  0, -4, -3,  3, -2,  0, -1,  0, -1, -3, -4, -1, -3,  1),
-  ( 0, -3,  9, -3, -4, -2, -3, -3, -1, -3, -1, -1, -3, -3, -3, -3, -1, -1, -1, -2, -2, -2, -3),
-  (-2,  4, -3,  6,  2, -3, -1, -1, -3, -1, -4, -3,  1, -1,  0, -2,  0, -1, -3, -4, -1, -3,  1),
-  (-1,  1, -4,  2,  5, -3, -2,  0, -3,  1, -3, -2,  0, -1,  2,  0,  0, -1, -2, -3, -1, -2,  4),
-  (-2, -3, -2, -3, -3,  6, -3, -1,  0, -3,  0,  0, -3, -4, -3, -3, -2, -2, -1,  1, -1,  3, -3),
-  ( 0, -1, -3, -1, -2, -3,  6, -2, -4, -2, -4, -3,  0, -2, -2, -2,  0, -2, -3, -2, -1, -3, -2),
-  (-2,  0, -3, -1,  0, -1, -2,  8, -3, -1, -3, -2,  1, -2,  0,  0, -1, -2, -3, -2, -1,  2,  0),
-  (-1, -3, -1, -3, -3,  0, -4, -3,  4, -3,  2,  1, -3, -3, -3, -3, -2, -1,  3, -3, -1, -1, -3),
-  (-1,  0, -3, -1,  1, -3, -2, -1, -3,  5, -2, -1,  0, -1,  1,  2,  0, -1, -2, -3, -1, -2,  1),
-  (-1, -4, -1, -4, -3,  0, -4, -3,  2, -2,  4,  2, -3, -3, -2, -2, -2, -1,  1, -2, -1, -1, -3),
-  (-1, -3, -1, -3, -2,  0, -3, -2,  1, -1,  2,  5, -2, -2,  0, -1, -1, -1,  1, -1, -1, -1, -1),
-  (-2,  3, -3,  1,  0, -3,  0,  1, -3,  0, -3, -2,  6, -2,  0,  0,  1,  0, -3, -4, -1, -2,  0),
-  (-1, -2, -3, -1, -1, -4, -2, -2, -3, -1, -3, -2, -2,  7, -1, -2, -1, -1, -2, -4, -2, -3, -1),
-  (-1,  0, -3,  0,  2, -3, -2,  0, -3,  1, -2,  0,  0, -1,  5,  1,  0, -1, -2, -2, -1, -1,  3),
-  (-1, -1, -3, -2,  0, -3, -2,  0, -3,  2, -2, -1,  0, -2,  1,  5, -1, -1, -3, -3, -1, -2,  0),
-  ( 1,  0, -1,  0,  0, -2,  0, -1, -2,  0, -2, -1,  1, -1,  0, -1,  4,  1, -2, -3,  0, -2,  0),
-  ( 0, -1, -1, -1, -1, -2, -2, -2, -1, -1, -1, -1,  0, -1, -1, -1,  1,  5,  0, -2,  0, -2, -1),
-  ( 0, -3, -1, -3, -2, -1, -3, -3,  3, -2,  1,  1, -3, -2, -2, -3, -2,  0,  4, -3, -1, -1, -2),
-  (-3, -4, -2, -4, -3,  1, -2, -2, -3, -3, -2, -1, -4, -4, -2, -3, -3, -2, -3, 11, -2,  2, -3),
-  ( 0, -1, -2, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -2, -1, -1,  0,  0, -1, -2, -1, -1, -1),
-  (-2, -3, -2, -3, -2,  3, -3,  2, -1, -2, -1, -1, -2, -3, -1, -2, -2, -2, -1,  2, -1,  7, -2),
-  (-1,  1, -3,  1,  4, -3, -2,  0, -3,  1, -3, -1,  0, -1,  3,  0,  0, -1, -2, -3, -1, -2,  4),
-)
+BLOSUM45 = _InitMatrix(SubstWeightMatrix.Preset.BLOSUM45)
+BLOSUM62 = _InitMatrix(SubstWeightMatrix.Preset.BLOSUM62)
+BLOSUM80 = _InitMatrix(SubstWeightMatrix.Preset.BLOSUM80)
+BLOSUM100 = _InitMatrix(SubstWeightMatrix.Preset.BLOSUM100)
 
-_RAW_BLOSUM80_DATA=(
-  ( 7, -3, -1, -3, -2, -4,  0, -3, -3, -1, -3, -2, -3, -1, -2, -3,  2,  0, -1, -5, -1, -4, -2),
-  (-3,  6, -6,  6,  1, -6, -2, -1, -6, -1, -7, -5,  5, -4, -1, -2,  0, -1, -6, -8, -3, -5,  0),
-  (-1, -6, 13, -7, -7, -4, -6, -7, -2, -6, -3, -3, -5, -6, -5, -6, -2, -2, -2, -5, -4, -5, -7),
-  (-3,  6, -7, 10,  2, -6, -3, -2, -7, -2, -7, -6,  2, -3, -1, -3, -1, -2, -6, -8, -3, -6,  1),
-  (-2,  1, -7,  2,  8, -6, -4,  0, -6,  1, -6, -4, -1, -2,  3, -1, -1, -2, -4, -6, -2, -5,  6),
-  (-4, -6, -4, -6, -6, 10, -6, -2, -1, -5,  0,  0, -6, -6, -5, -5, -4, -4, -2,  0, -3,  4, -6),
-  ( 0, -2, -6, -3, -4, -6,  9, -4, -7, -3, -7, -5, -1, -5, -4, -4, -1, -3, -6, -6, -3, -6, -4),
-  (-3, -1, -7, -2,  0, -2, -4, 12, -6, -1, -5, -4,  1, -4,  1,  0, -2, -3, -5, -4, -2,  3,  0),
-  (-3, -6, -2, -7, -6, -1, -7, -6,  7, -5,  2,  2, -6, -5, -5, -5, -4, -2,  4, -5, -2, -3, -6),
-  (-1, -1, -6, -2,  1, -5, -3, -1, -5,  8, -4, -3,  0, -2,  2,  3, -1, -1, -4, -6, -2, -4,  1),
-  (-3, -7, -3, -7, -6,  0, -7, -5,  2, -4,  6,  3, -6, -5, -4, -4, -4, -3,  1, -4, -2, -2, -5),
-  (-2, -5, -3, -6, -4,  0, -5, -4,  2, -3,  3,  9, -4, -4, -1, -3, -3, -1,  1, -3, -2, -3, -3),
-  (-3,  5, -5,  2, -1, -6, -1,  1, -6,  0, -6, -4,  9, -4,  0, -1,  1,  0, -5, -7, -2, -4, -1),
-  (-1, -4, -6, -3, -2, -6, -5, -4, -5, -2, -5, -4, -4, 12, -3, -3, -2, -3, -4, -7, -3, -6, -2),
-  (-2, -1, -5, -1,  3, -5, -4,  1, -5,  2, -4, -1,  0, -3,  9,  1, -1, -1, -4, -4, -2, -3,  5),
-  (-3, -2, -6, -3, -1, -5, -4,  0, -5,  3, -4, -3, -1, -3,  1,  9, -2, -2, -4, -5, -2, -4,  0),
-  ( 2,  0, -2, -1, -1, -4, -1, -2, -4, -1, -4, -3,  1, -2, -1, -2,  7,  2, -3, -6, -1, -3, -1),
-  ( 0, -1, -2, -2, -2, -4, -3, -3, -2, -1, -3, -1,  0, -3, -1, -2,  2,  8,  0, -5, -1, -3, -2),
-  (-1, -6, -2, -6, -4, -2, -6, -5,  4, -4,  1,  1, -5, -4, -4, -4, -3,  0,  7, -5, -2, -3, -4),
-  (-5, -8, -5, -8, -6,  0, -6, -4, -5, -6, -4, -3, -7, -7, -4, -5, -6, -5, -5, 16, -5,  3, -5),
-  (-1, -3, -4, -3, -2, -3, -3, -2, -2, -2, -2, -2, -2, -3, -2, -2, -1, -1, -2, -5, -2, -3, -1),
-  (-4, -5, -5, -6, -5,  4, -6,  3, -3, -4, -2, -3, -4, -6, -3, -4, -3, -3, -3,  3, -3, 11, -4),
-  (-2,  0, -7,  1,  6, -6, -4,  0, -6,  1, -5, -3, -1, -2,  5,  0, -1, -2, -4, -5, -1, -4,  6),
-)
-
-_RAW_BLOSUM100_DATA=(
-  ( 8, -4, -2, -5, -3, -5, -1, -4, -4, -2, -4, -3, -4, -2, -2, -3,  1, -1, -2, -6, -2, -5, -2),
-  (-4,  6, -7,  6,  0, -7, -3, -2, -8, -2, -8, -7,  5, -5, -2, -4, -1, -2, -7, -9, -4, -6,  0),
-  (-2, -7, 14, -8, -9, -4, -7, -8, -3, -8, -5, -4, -5, -8, -7, -8, -3, -3, -3, -7, -5, -6, -8),
-  (-5,  6, -8, 10,  2, -8, -4, -3, -8, -3, -8, -8,  1, -5, -2, -5, -2, -4, -8,-10, -4, -7,  0),
-  (-3,  0, -9,  2, 10, -8, -6, -2, -7,  0, -7, -5, -2, -4,  2, -2, -2, -3, -5, -8, -3, -7,  7),
-  (-5, -7, -4, -8, -8, 11, -8, -4, -2, -6,  0, -1, -7, -7, -6, -6, -5, -5, -3,  0, -4,  4, -7),
-  (-1, -3, -7, -4, -6, -8,  9, -6, -9, -5, -8, -7, -2, -6, -5, -6, -2, -5, -8, -7, -4, -8, -5),
-  (-4, -2, -8, -3, -2, -4, -6, 13, -7, -3, -6, -5,  0, -5,  1, -1, -3, -4, -7, -5, -4,  1, -1),
-  (-4, -8, -3, -8, -7, -2, -9, -7,  8, -6,  2,  1, -7, -7, -6, -7, -5, -3,  4, -6, -3, -4, -7),
-  (-2, -2, -8, -3,  0, -6, -5, -3, -6, 10, -6, -4, -1, -3,  2,  3, -2, -3, -5, -8, -3, -5,  0),
-  (-4, -8, -5, -8, -7,  0, -8, -6,  2, -6,  8,  3, -7, -7, -5, -6, -6, -4,  0, -5, -3, -4, -6),
-  (-3, -7, -4, -8, -5, -1, -7, -5,  1, -4,  3, 12, -5, -5, -2, -4, -4, -2,  0, -4, -3, -5, -4),
-  (-4,  5, -5,  1, -2, -7, -2,  0, -7, -1, -7, -5, 11, -5, -1, -2,  0, -1, -7, -8, -3, -5, -2),
-  (-2, -5, -8, -5, -4, -7, -6, -5, -7, -3, -7, -5, -5, 12, -4, -5, -3, -4, -6, -8, -4, -7, -4),
-  (-2, -2, -7, -2,  2, -6, -5,  1, -6,  2, -5, -2, -1, -4, 11,  0, -2, -3, -5, -5, -2, -4,  5),
-  (-3, -4, -8, -5, -2, -6, -6, -1, -7,  3, -6, -4, -2, -5,  0, 10, -3, -3, -6, -7, -3, -5, -1),
-  ( 1, -1, -3, -2, -2, -5, -2, -3, -5, -2, -6, -4,  0, -3, -2, -3,  9,  2, -4, -7, -2, -5, -2),
-  (-1, -2, -3, -4, -3, -5, -5, -4, -3, -3, -4, -2, -1, -4, -3, -3,  2,  9, -1, -7, -2, -5, -3),
-  (-2, -7, -3, -8, -5, -3, -8, -7,  4, -5,  0,  0, -7, -6, -5, -6, -4, -1,  8, -5, -3, -5, -5),
-  (-6, -9, -7, 10, -8,  0, -7, -5, -6, -8, -5, -4, -8, -8, -5, -7, -7, -7, -5, 17, -6,  2, -7),
-  (-2, -4, -5, -4, -3, -4, -4, -4, -3, -3, -3, -3, -3, -4, -2, -3, -2, -2, -3, -6, -3, -4, -2),
-  (-5, -6, -6, -7, -7,  4, -8,  1, -4, -5, -4, -5, -5, -7, -4, -5, -5, -5, -5,  2, -4, 12, -6),
-  (-2,  0, -8,  0,  7, -7, -5, -1, -7,  0, -6, -4, -2, -4,  5, -1, -2, -3, -5, -7, -2, -6,  6),
-)
-
-BLOSUM45=_InitMatrix(_RAW_BLOSUM45_DATA)
-BLOSUM62=_InitMatrix(_RAW_BLOSUM62_DATA)
-BLOSUM80=_InitMatrix(_RAW_BLOSUM80_DATA)
-BLOSUM100=_InitMatrix(_RAW_BLOSUM100_DATA)
-
-__all__=['BLOSUM45','BLOSUM62','BLOSUM80','BLOSUM100']
\ No newline at end of file
+__all__=['BLOSUM45','BLOSUM62','BLOSUM80','BLOSUM100']
diff --git a/modules/seq/alg/pymod/wrap_seq_alg.cc b/modules/seq/alg/pymod/wrap_seq_alg.cc
index f22866761d38ac9c19fbe44b7f6d97cc41c27827..50f84ab9cd18235608c2db8e3e941656aeb6b791 100644
--- a/modules/seq/alg/pymod/wrap_seq_alg.cc
+++ b/modules/seq/alg/pymod/wrap_seq_alg.cc
@@ -21,12 +21,18 @@
 
 #include <ost/seq/alg/merge_pairwise_alignments.hh>
 #include <ost/seq/alg/sequence_identity.hh>
+#include <ost/seq/alg/sequence_similarity.hh>
 #include <ost/seq/alg/ins_del.hh>
 #include <ost/seq/alg/conservation.hh>
 #include <ost/seq/alg/subst_weight_matrix.hh>
 #include <ost/seq/alg/local_align.hh>
 #include <ost/seq/alg/global_align.hh>
+#include <ost/seq/alg/semiglobal_align.hh>
 #include <ost/seq/alg/entropy.hh>
+#include <ost/seq/alg/pair_subst_weight_matrix.hh>
+#include <ost/seq/alg/contact_weight_matrix.hh>
+#include <ost/seq/alg/contact_prediction_score.hh>
+
 using namespace boost::python;
 using namespace ost::seq;
 using namespace ost::seq::alg;
@@ -38,27 +44,74 @@ BOOST_PYTHON_MODULE(_ost_seq_alg)
     .value("LONGER_SEQUENCE", RefMode::LONGER_SEQUENCE)
     .export_values()
   ;
+
   def("SequenceIdentity", &SequenceIdentity, 
       (arg("ref_mode")=RefMode::ALIGNMENT, arg("seq_a")=0, arg("seq_b")=1));
+
+  def("SequenceSimilarity", &SequenceSimilarity,
+      (arg("aln"),arg("subst_weight"),arg("normalize")=false,
+       arg("seq_a")=0,arg("seq_b")=1));
+
   class_<AlignedRegionList>("AlignedRegionList", init<>())
     .def(vector_indexing_suite<AlignedRegionList>())
   ;
+
   class_<InsDel>("InsDel", init<const AlignmentHandle&, int, int>())
     .def(init<const AlignmentHandle&>())
     .def("GetDeletions", &InsDel::GetDeletions)
     .def("GetInsertions", &InsDel::GetInsertions)
   ;
   
-  class_<SubstWeightMatrix, SubstWeightMatrixPtr>("SubstWeightMatrix", init<>())
-    .def("GetWeight", &SubstWeightMatrix::GetWeight)
-    .def("SetWeight", &SubstWeightMatrix::SetWeight)
-  ;
   def("MergePairwiseAlignments", &MergePairwiseAlignments);
   def("Conservation", &Conservation, (arg("assign")=true, arg("prop_name")="cons", arg("ignore_gap")=false));
   def("LocalAlign", &LocalAlign, (arg("seq1"), arg("seq2"),arg("subst_weight"), 
       arg("gap_open")=-5, arg("gap_ext")=-2));
   def("GlobalAlign", &GlobalAlign,(arg("seq1"),arg("seq2"),arg("subst_weight"), 
       arg("gap_open")=-5, arg("gap_ext")=-2));
+  def("SemiGlobalAlign", &SemiGlobalAlign,(arg("seq1"),arg("seq2"),arg("subst_weight"), 
+      arg("gap_open")=-5, arg("gap_ext")=-2));
   def("ShannonEntropy", &ShannonEntropy, (arg("aln"), arg("ignore_gaps")=true));
 
+  class_<PairSubstWeightMatrix>("PairSubstWeightMatrix",init< std::vector <std::vector <std::vector <std::vector <Real> > > >,std::vector <char> >())
+    .def(init<>())
+    .def_readonly("weights",&PairSubstWeightMatrix::weights)
+    .def_readonly("aa_list",&PairSubstWeightMatrix::aa_list)
+  ;
+
+  class_<ContactWeightMatrix>("ContactWeightMatrix",init< std::vector <std::vector <Real> >,std::vector <char> >())
+    .def(init<>())
+    .def_readonly("weights",&ContactWeightMatrix::weights)
+    .def_readonly("aa_list",&ContactWeightMatrix::aa_list)
+  ;
+
+  class_<ContactPredictionScoreResult>("ContactPredictionScoreResult",no_init)
+    .def_readonly("matrix",&ContactPredictionScoreResult::matrix)
+    .def_readonly("sorted_indices",&ContactPredictionScoreResult::sorted_indices)
+    .def("RefreshSortedIndices",&ContactPredictionScoreResult::RefreshSortedIndices)
+    .def("GetScore",&ContactPredictionScoreResult::GetScore,(arg("i"),arg("j")))
+    .def("SetScore",&ContactPredictionScoreResult::SetScore,(arg("i"),arg("j"),arg("score")))
+  ;
+  def("CalculateMutualInformation", &CalculateMutualInformation,(arg("aln"),arg("w")=LoadConstantContactWeightMatrix(),
+                                                        arg("apc_correction")=true,arg("zpx_transformation")=true,arg("small_number_correction")=0.05));
+  def("CalculateContactScore", &CalculateContactScore,(arg("aln"), arg("w")=LoadDefaultContactWeightMatrix()));
+  def("CalculateContactSubstitutionScore", &CalculateContactSubstitutionScore,(arg("aln"), arg("ref_seq_index")=0, arg("w")=LoadDefaultPairSubstWeightMatrix()));
+  def("LoadDefaultContactWeightMatrix",LoadDefaultContactWeightMatrix);
+  def("LoadConstantContactWeightMatrix",LoadConstantContactWeightMatrix);
+  def("LoadDefaultPairSubstWeightMatrix",LoadDefaultPairSubstWeightMatrix);
+
+  scope mat_scope = class_<SubstWeightMatrix, SubstWeightMatrixPtr>("SubstWeightMatrix", init<>())
+                      .def("GetWeight", &SubstWeightMatrix::GetWeight)
+                      .def("SetWeight", &SubstWeightMatrix::SetWeight)
+                      .def("GetMinWeight", &SubstWeightMatrix::GetMinWeight)
+                      .def("GetMaxWeight", &SubstWeightMatrix::GetMaxWeight)
+                      .def("AssignPreset", &SubstWeightMatrix::AssignPreset)
+  ;
+
+  enum_<SubstWeightMatrix::Preset>("Preset")
+    .value("BLOSUM45", SubstWeightMatrix::BLOSUM45)
+    .value("BLOSUM62", SubstWeightMatrix::BLOSUM62)
+    .value("BLOSUM80", SubstWeightMatrix::BLOSUM80)
+    .value("BLOSUM100", SubstWeightMatrix::BLOSUM100)
+  ;
+
 }
diff --git a/modules/seq/alg/src/CMakeLists.txt b/modules/seq/alg/src/CMakeLists.txt
index ea6284a98d46e553879c2f7266e8d6d27289e19b..7e969a6405fded0d522879d06a99ca86b2fb29b6 100644
--- a/modules/seq/alg/src/CMakeLists.txt
+++ b/modules/seq/alg/src/CMakeLists.txt
@@ -1,5 +1,6 @@
 set(OST_SEQ_ALG_HEADERS
 sequence_identity.hh
+sequence_similarity.hh
 module_config.hh
 ins_del.hh
 subst_weight_matrix.hh
@@ -9,22 +10,30 @@ merge_pairwise_alignments.hh
 conservation.hh
 local_align.hh
 global_align.hh
+semiglobal_align.hh
+pair_subst_weight_matrix.hh
+contact_weight_matrix.hh
+contact_prediction_score.hh
+data/default_pair_subst_weight_matrix.hh
+data/default_contact_weight_matrix.hh
 )
 
 set(OST_SEQ_ALG_SOURCES
 merge_pairwise_alignments.cc
 local_align.cc
 global_align.cc
+semiglobal_align.cc
 entropy.cc
 sequence_identity.cc
+sequence_similarity.cc
 ins_del.cc
 conservation.cc
+contact_weight_matrix.cc
+subst_weight_matrix.cc
+pair_subst_weight_matrix.cc
+contact_prediction_score.cc
 )
 
-if (ENABLE_INFO)
-  list (APPEND OST_SEQ_ALG_SOURCES subst_weight_matrix.cc)
-endif()
-
 module(NAME seq_alg HEADER_OUTPUT_DIR ost/seq/alg SOURCES ${OST_SEQ_ALG_SOURCES}
        HEADERS ${OST_SEQ_ALG_HEADERS} DEPENDS_ON ost_seq)
 
diff --git a/modules/seq/alg/src/contact_prediction_score.cc b/modules/seq/alg/src/contact_prediction_score.cc
new file mode 100644
index 0000000000000000000000000000000000000000..c01653c2f08179e85aaec0fa039dd5933e32937d
--- /dev/null
+++ b/modules/seq/alg/src/contact_prediction_score.cc
@@ -0,0 +1,248 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2011 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <ost/seq/aligned_column.hh>
+#include <ost/seq/alignment_handle.hh>
+#include <ost/seq/alg/contact_prediction_score.hh>
+#include <math.h>
+
+namespace {
+  typedef std::pair<float, std::pair<int,int> > val_indices_pair;
+
+  bool pair_comparator ( const val_indices_pair& l, const val_indices_pair& r)
+    { return l.first > r.first; }
+}
+
+namespace ost { namespace seq { namespace alg {
+
+void ContactPredictionScoreResult::RefreshSortedIndices(){
+  int n_col=this->matrix.size();
+  std::vector <val_indices_pair> sorting_vec;
+  for (int col1=0; col1<n_col; ++col1) {
+      for (int col2=col1+1; col2<n_col; ++col2) {
+        std::pair <int,int> indices (col1,col2);
+        val_indices_pair vi (this->matrix[col1][col2],indices);
+        sorting_vec.push_back(vi);
+      }
+    }
+  std::sort(sorting_vec.begin(),sorting_vec.end(),pair_comparator);
+  int n_indices=sorting_vec.size();
+  std::vector <std::pair <int,int> > sorted_indices;
+  for (int i=0; i<n_indices; ++i) {
+    sorted_indices.push_back(sorting_vec[i].second);
+  }
+  this->sorted_indices=sorted_indices;
+}
+
+ContactPredictionScoreResult::ContactPredictionScoreResult(std::vector <std::vector <Real> > scores){
+  this->matrix=scores;
+  this->RefreshSortedIndices();
+}
+
+Real ContactPredictionScoreResult::GetScore(int i, int j){
+    return this->matrix[i][j];
+  }
+
+void ContactPredictionScoreResult::SetScore(int i, int j, Real score){
+    this->matrix[i][j]=score;
+  }
+
+
+ContactPredictionScoreResult CalculateContactSubstitutionScore(const AlignmentHandle& aln, int ref_seq_index, PairSubstWeightMatrix w){
+  int n_col=aln.GetLength();
+  int n_row=aln.GetCount();
+  //We transform the alignment in a list of ints
+  std::vector< std::vector <int> > ali(n_col, std::vector <int> (n_row) );
+  int naa=w.aa_list.size();
+  for (int i=0; i<n_col; ++i) {
+    for (int j=0; j<n_row; ++j) {
+      std::map<char,int>::iterator iter=w.aa_dict.find(aln[i][j]);
+      if (iter!=w.aa_dict.end()){
+        ali[i][j]=w.aa_dict[aln[i][j]];
+      }
+      else ali[i][j]=naa;
+    }
+  }
+  std::vector< std::vector <Real> > contact_subst_score(n_col, std::vector <Real> (n_col,0) );
+  for (int col1=0; col1<n_col; ++col1) {
+    std::vector<int> c1=ali[col1];
+    int i1=c1[ref_seq_index];
+    if (i1==naa){
+      for (int col2=col1+1; col2<n_col; ++col2) {
+        contact_subst_score[col1][col2]=0.0;
+        contact_subst_score[col2][col1]=0.0;
+      }
+      continue;
+    }
+    for (int col2=col1+1; col2<n_col; ++col2) {
+      std::vector<int> c2=ali[col2];
+      int i2=c2[ref_seq_index];
+      if (i2==naa){
+        contact_subst_score[col1][col2]=0.0;
+        contact_subst_score[col2][col1]=0.0;
+        continue;
+        }
+      Real score=0.0;
+      for (int i=0 ; i<n_row; ++i){
+        if (i==ref_seq_index) continue;
+        int i3=c1[i], i4=c2[i];
+        if (i3==naa || i4==naa){
+          score+=0.0;
+          continue;
+        }
+        score+=w.weights[i1][i2][i3][i4];
+      }
+    contact_subst_score[col1][col2]=score/(n_row-1.);
+    contact_subst_score[col2][col1]=score/(n_row-1.);
+    }
+  }
+  return ContactPredictionScoreResult(contact_subst_score);
+}
+
+ContactPredictionScoreResult CalculateContactScore(const AlignmentHandle& aln, ContactWeightMatrix weights){
+  int n_col=aln.GetLength();
+  int n_row=aln.GetCount();
+  //We transform the alignment in a list of ints
+  std::vector< std::vector <int> > ali(n_col, std::vector <int> (n_row) );
+  int naa=weights.aa_list.size();
+  for (int i=0; i<n_col; ++i) {
+    for (int j=0; j<n_row; ++j) {
+      std::map<char,int>::iterator iter=weights.aa_dict.find(aln[i][j]);
+      if (iter!=weights.aa_dict.end()){
+        ali[i][j]=weights.aa_dict[aln[i][j]];
+      }
+      else ali[i][j]=naa;
+    }
+  }
+
+  std::vector< std::vector <Real> > mi(n_col, std::vector <Real> (n_col,0) );
+
+  for (int col1=0; col1<n_col; ++col1) {
+    std::vector<int> c1=ali[col1];
+    for (int col2=col1+1; col2<n_col; ++col2) {
+      float score=0.0;
+      for (int i=0 ; i<n_row; ++i){
+        int aa1=c1[i];
+        int aa2=ali[col2][i];
+        if (aa1==naa || aa2==naa) continue;
+        score+=weights.weights[aa1][aa2];
+      }
+      mi[col1][col2]=score/n_row;
+      mi[col2][col1]=score/n_row;
+    }
+  }
+  return ContactPredictionScoreResult(mi);
+}
+
+
+ContactPredictionScoreResult CalculateMutualInformation(const AlignmentHandle& aln, ContactWeightMatrix weights,
+                                  bool apc_correction,bool zpx_transformation, float small_number_correction){
+  int n_col=aln.GetLength();
+  int n_row=aln.GetCount();
+  //We transform the alignment in a list of ints
+  std::vector< std::vector <int> > ali(n_col, std::vector <int> (n_row) );
+  int naa=weights.aa_list.size();
+  for (int i=0; i<n_col; ++i) {
+    for (int j=0; j<n_row; ++j) {
+      std::map<char,int>::iterator iter=weights.aa_dict.find(aln[i][j]);
+      if (iter!=weights.aa_dict.end()){
+        ali[i][j]=weights.aa_dict[aln[i][j]];
+      }
+      else ali[i][j]=naa;
+    }
+  }
+
+  std::vector< std::vector <Real> > mi(n_col, std::vector <Real> (n_col,0) );
+
+  for (int col1=0; col1<n_col; ++col1) {
+    std::vector<int> c1=ali[col1];
+    for (int col2=col1+1; col2<n_col; ++col2) {
+      std::vector<float> p1(naa,naa*small_number_correction),p2(naa,naa*small_number_correction);
+      std::vector<std::vector<float> > p12(naa, std::vector<float> (naa,small_number_correction));
+      for (int i=0 ; i<n_row; ++i){
+        int aa1=c1[i];
+        int aa2=ali[col2][i];
+        if (aa1==naa || aa2==naa) continue;
+        p1[aa1]++;
+        p2[aa2]++;
+        p12[aa1][aa2]++;
+      }
+      float n=naa*small_number_correction;
+      for (int aa1=0; aa1!=naa; ++aa1){
+        n+=p1[aa1];
+      }
+      float score=0.0;
+      for (int aa1=0; aa1!=naa; ++aa1){
+        if(p1[aa1]==0.0) continue;
+        for (int aa2=0; aa2!=naa; ++aa2){
+          if(p12[aa1][aa2]==0.0 || p2[aa2]==0.0) continue;
+          score+=weights.weights[aa1][aa2]*p12[aa1][aa2]/n*std::log(n*p12[aa1][aa2]/(p1[aa1]*p2[aa2]));
+        }
+      }
+      mi[col1][col2]=score;
+      mi[col2][col1]=score;
+    }
+  }
+  if (apc_correction==true){
+    float average_mi=0.;
+    std::vector <float> mi_col(n_col,0.);
+    for (int col1=0; col1<n_col; ++col1) {
+      for (int col2=0; col2<n_col; ++col2) {
+        average_mi+=mi[col1][col2];
+        mi_col[col1]+=mi[col1][col2];
+      }
+    }
+    for (int col1=0; col1<n_col; ++col1) {
+      for (int col2=col1+1; col2<n_col; ++col2) {
+      mi[col1][col2]-=mi_col[col1]*mi_col[col2]/average_mi;
+      mi[col2][col1]-=mi_col[col2]*mi_col[col1]/average_mi;
+      }
+    }
+  }
+  if (zpx_transformation==true){
+    std::vector <float> mi_col(n_col,0.);
+    for (int col1=0; col1<n_col; ++col1) {
+      for (int col2=0; col2<n_col; ++col2) {
+        mi_col[col1]+=mi[col1][col2];
+      }
+    }
+    for (int col1=0; col1<n_col; ++col1) {
+        mi_col[col1]/=n_col;
+    }
+    std::vector <float> mi_std_col(n_col,0.);
+    for (int col1=0; col1<n_col; ++col1) {
+      for (int col2=0; col2<n_col; ++col2) {
+        mi_std_col[col1]+=(mi[col1][col2]-mi_col[col1])*(mi[col1][col2]-mi_col[col1]);
+      }
+    }
+    for (int col1=0; col1<n_col; ++col1) {
+        mi_std_col[col1]=sqrt(mi_std_col[col1]/n_col);
+    }
+    for (int col1=0; col1<n_col; ++col1) {
+      for (int col2=col1+1; col2<n_col; ++col2) {
+      mi[col1][col2]=(mi[col1][col2]-mi_col[col1])/mi_std_col[col1]+(mi[col1][col2]-mi_col[col2])/mi_std_col[col2];
+      mi[col2][col1]=mi[col1][col2];
+      }
+    }
+  }  
+  return ContactPredictionScoreResult(mi);
+}
+
+}}}
+
diff --git a/modules/seq/alg/src/contact_prediction_score.hh b/modules/seq/alg/src/contact_prediction_score.hh
new file mode 100644
index 0000000000000000000000000000000000000000..c88001e1dd250a1c04c67f8d6f4aebb6308b74ce
--- /dev/null
+++ b/modules/seq/alg/src/contact_prediction_score.hh
@@ -0,0 +1,57 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2011 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+#ifndef OST_SEQ_ALG_CONTACT_PREDICTION_SCORE_HH
+#define OST_SEQ_ALG_CONTACT_PREDICTION_SCORE_HH
+#include <ost/seq/alignment_handle.hh>
+#include <ost/seq/alg/module_config.hh>
+#include <ost/seq/alg/pair_subst_weight_matrix.hh>
+#include <ost/seq/alg/contact_weight_matrix.hh>
+
+/*
+  Authors: Niklaus Johner
+  Functions and objects used to calculate different scores for predicting contacts
+  from a multiple sequence alignment (MSA). Several scores are available:
+  1. Mutual information. The average product correction (apc_correction) 
+  adds a correction term to account for common phylogenetic origin and inherent
+  entropy of each column. There is also a correction for small number of sequences 
+  in the alignment and the possibility to use weighted mutual information.
+  2. ContactScore. For each residue pair, this score calculates the average interaction
+  energy for the amino-acid pairs in the corresponding columns of the MSA
+  3. ContactSubstitutionScore. For each residue pair, this score calculates 
+  the average energy of the substitutions of amino-acid pairs in the corresponding
+  columns of the MSA.
+ */
+namespace ost { namespace seq { namespace alg {
+
+struct DLLEXPORT_OST_SEQ_ALG ContactPredictionScoreResult {
+  std::vector <std::vector <Real> > matrix;
+  std::vector <std::pair <int,int> > sorted_indices;
+  void SetScore(int i, int j, Real score);
+  Real GetScore(int i, int j);
+  void RefreshSortedIndices();
+  ContactPredictionScoreResult(std::vector <std::vector <Real> >);
+};
+
+ContactPredictionScoreResult DLLEXPORT_OST_SEQ_ALG CalculateContactScore(const AlignmentHandle& aln, ContactWeightMatrix w=LoadDefaultContactWeightMatrix());
+ContactPredictionScoreResult DLLEXPORT_OST_SEQ_ALG CalculateContactSubstitutionScore(const AlignmentHandle& aln, int ref_seq_index=0, PairSubstWeightMatrix w=LoadDefaultPairSubstWeightMatrix());
+ContactPredictionScoreResult DLLEXPORT_OST_SEQ_ALG CalculateMutualInformation(const AlignmentHandle& aln, ContactWeightMatrix w=LoadConstantContactWeightMatrix(),bool apc_correction=true, 
+                            bool zpx_transformation=true,float small_number_correction=0.05);
+
+}}}
+#endif
diff --git a/modules/seq/alg/src/contact_weight_matrix.cc b/modules/seq/alg/src/contact_weight_matrix.cc
new file mode 100644
index 0000000000000000000000000000000000000000..a8a18a5ebbf9d1319eda8995511f4e7f2af59dda
--- /dev/null
+++ b/modules/seq/alg/src/contact_weight_matrix.cc
@@ -0,0 +1,79 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2011 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+#include <ost/info/info.hh>
+#include <ost/seq/alg/contact_weight_matrix.hh>
+#include <ost/seq/alg/default_contact_weight_matrix.hh>
+
+namespace {
+std::map<char,int> init_dict(std::vector <char> aal){
+  std::map<char,int> aa_dict;
+  const int aal_size = static_cast<int>(aal.size());
+  for (int i=0;i!=aal_size;++i){
+    aa_dict[aal[i]]=i;
+  }
+  return aa_dict;
+}
+}
+
+namespace ost { namespace seq { namespace alg {
+
+ContactWeightMatrix LoadConstantContactWeightMatrix(){
+  std::vector <std::vector<Real> > w(21, std::vector<Real>(21,1.0));
+  std::vector <char> aal(21);
+  for (int i=0;i!=21;i++){
+    aal[i]=RAW_CONTACT_WEIGHT_MATRIX_RES_LIST[i];
+  }
+  for (int i1=0;i1!=21;i1++){
+    w[20][i1]=0.0;
+    w[i1][20]=0.0;
+  }
+  return ContactWeightMatrix(w,aal);
+}
+
+ContactWeightMatrix LoadDefaultContactWeightMatrix(){
+  std::vector <std::vector<Real> > w(21, std::vector<Real>(21));
+  std::vector <char> aal(21);
+  for (int i=0;i!=21;i++){
+    aal[i]=RAW_CONTACT_WEIGHT_MATRIX_RES_LIST[i];
+  }
+  for (int i1=0;i1!=21;i1++){
+    for (int i2=0;i2!=21;i2++){
+      w[i1][i2]=RAW_CONTACT_WEIGHT_MATRIX[i1][i2];
+    }
+  }
+  return ContactWeightMatrix(w,aal);
+}
+
+ContactWeightMatrix::ContactWeightMatrix(){
+  std::vector <std::vector <Real> > w;
+  std::vector <char> aal;
+  this->aa_dict=init_dict(this->aa_list);
+  this->weights=w;
+}
+
+ContactWeightMatrix::ContactWeightMatrix(std::vector <std::vector <Real> > w,std::vector <char> aal){
+  this->aa_list=aal;
+  this->naa_=this->aa_list.size();
+  this->aa_dict=init_dict(this->aa_list);
+  this->weights=w;
+}
+
+
+}}}
+
diff --git a/modules/seq/alg/src/contact_weight_matrix.hh b/modules/seq/alg/src/contact_weight_matrix.hh
new file mode 100644
index 0000000000000000000000000000000000000000..2f89ece1f82e728cefe11ec9dba55547e71754a5
--- /dev/null
+++ b/modules/seq/alg/src/contact_weight_matrix.hh
@@ -0,0 +1,49 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2011 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+#ifndef OST_SEQ_CONTACT_WEIGHT_MATRIX_HH
+#define OST_SEQ_CONTACT_WEIGHT_MATRIX_HH
+
+#include <map>
+#include <ost/seq/alg/module_config.hh>
+
+/*
+  Author: Niklaus Johner
+ */
+namespace ost { namespace seq { namespace alg {
+
+  
+/// \brief matrix to weight pairs of amino-acids.
+struct DLLEXPORT_OST_SEQ_ALG ContactWeightMatrix {
+  std::vector <std::vector <Real> > weights;
+  std::vector <char> aa_list;
+  std::map<char,int> aa_dict;
+  int naa_;
+
+  ContactWeightMatrix();
+  ContactWeightMatrix(std::vector <std::vector <Real> >,std::vector <char>);
+};
+
+/// \brief statistical potential matrix containing interaction pseudo energies
+ContactWeightMatrix DLLEXPORT_OST_SEQ_ALG LoadDefaultContactWeightMatrix();
+/// \brief weight of 1 for all amino-acid pairs and 0 for gaps.
+ContactWeightMatrix DLLEXPORT_OST_SEQ_ALG LoadConstantContactWeightMatrix();
+
+}}}
+
+#endif
\ No newline at end of file
diff --git a/modules/seq/alg/src/data/default_contact_weight_matrix.hh b/modules/seq/alg/src/data/default_contact_weight_matrix.hh
new file mode 100644
index 0000000000000000000000000000000000000000..4d1a78a60857313c2367684bd773b978e20ac656
--- /dev/null
+++ b/modules/seq/alg/src/data/default_contact_weight_matrix.hh
@@ -0,0 +1,29 @@
+namespace ost { namespace seq { namespace alg {
+
+char RAW_CONTACT_WEIGHT_MATRIX_RES_LIST[21]={'D', 'E', 'R', 'K', 'H', 'S', 'T', 'N', 'Q', 'G', 'P', 'Y', 'W', 'V', 'I', 'L', 'M', 'F', 'A', 'C','-'};
+
+Real RAW_CONTACT_WEIGHT_MATRIX[21][21]=
+    {
+      { 0.0168, 0.0000, 0.4730, 0.3602, 0.3627, 0.1650, 0.1716, 0.2177, 0.2272, 0.0770, 0.0733, 0.3501, 0.3262, 0.1228, 0.1393, 0.1263, 0.1792, 0.2105, 0.0757, 0.1801, 0.0000},
+      { 0.0000, 0.0676, 0.4996, 0.3966, 0.3357, 0.1594, 0.1866, 0.1958, 0.2390, 0.0333, 0.0945, 0.3699, 0.3719, 0.1753, 0.1948, 0.1866, 0.2057, 0.2506, 0.1179, 0.1688, 0.0000},
+      { 0.4730, 0.4996, 0.3499, 0.1961, 0.3666, 0.2970, 0.3204, 0.3266, 0.3599, 0.2218, 0.2777, 0.5060, 0.5262, 0.3196, 0.3532, 0.3577, 0.3560, 0.4251, 0.2489, 0.3517, 0.0000},
+      { 0.3602, 0.3966, 0.1961, 0.1128, 0.2100, 0.1731, 0.2061, 0.2093, 0.2493, 0.0799, 0.0802, 0.3928, 0.3725, 0.2150, 0.2331, 0.2226, 0.2164, 0.2845, 0.1383, 0.2104, 0.0000},
+      { 0.3627, 0.3357, 0.3666, 0.2100, 0.5496, 0.3269, 0.3494, 0.3122, 0.3180, 0.2106, 0.2629, 0.5362, 0.5588, 0.3475, 0.3754, 0.3618, 0.4193, 0.4679, 0.2361, 0.4789, 0.0000},
+      { 0.1650, 0.1594, 0.2970, 0.1731, 0.3269, 0.1866, 0.2143, 0.2210, 0.2315, 0.1203, 0.1250, 0.3501, 0.3960, 0.2381, 0.2586, 0.2358, 0.2758, 0.3335, 0.1628, 0.3010, 0.0000},
+      { 0.1716, 0.1866, 0.3204, 0.2061, 0.3494, 0.2143, 0.2894, 0.2553, 0.2783, 0.1418, 0.1529, 0.3962, 0.4310, 0.3452, 0.3660, 0.3237, 0.3417, 0.3951, 0.2073, 0.3458, 0.0000},
+      { 0.2177, 0.1958, 0.3266, 0.2093, 0.3122, 0.2210, 0.2553, 0.3119, 0.2868, 0.1666, 0.1810, 0.3706, 0.3994, 0.2195, 0.2391, 0.2168, 0.2834, 0.3160, 0.1618, 0.2983, 0.0000},
+      { 0.2272, 0.2390, 0.3599, 0.2493, 0.3180, 0.2315, 0.2783, 0.2868, 0.3159, 0.1473, 0.2187, 0.4208, 0.4769, 0.2727, 0.3014, 0.2989, 0.3234, 0.3733, 0.2010, 0.2982, 0.0000},
+      { 0.0770, 0.0333, 0.2218, 0.0799, 0.2106, 0.1203, 0.1418, 0.1666, 0.1473, 0.0990, 0.0727, 0.3054, 0.3354, 0.1831, 0.1984, 0.1959, 0.2488, 0.2887, 0.1321, 0.2889, 0.0000},
+      { 0.0733, 0.0945, 0.2777, 0.0802, 0.2629, 0.1250, 0.1529, 0.1810, 0.2187, 0.0727, 0.1358, 0.4454, 0.4871, 0.1879, 0.2176, 0.2163, 0.2738, 0.3492, 0.1143, 0.2611, 0.0000},
+      { 0.3501, 0.3699, 0.5060, 0.3928, 0.5362, 0.3501, 0.3962, 0.3706, 0.4208, 0.3054, 0.4454, 0.6013, 0.6686, 0.5248, 0.5702, 0.5625, 0.5797, 0.6506, 0.3876, 0.5335, 0.0000},
+      { 0.3262, 0.3719, 0.5262, 0.3725, 0.5588, 0.3960, 0.4310, 0.3994, 0.4769, 0.3354, 0.4871, 0.6686, 0.7438, 0.5554, 0.6133, 0.6157, 0.6450, 0.7208, 0.4170, 0.6399, 0.0000},
+      { 0.1228, 0.1753, 0.3196, 0.2150, 0.3475, 0.2381, 0.3452, 0.2195, 0.2727, 0.1831, 0.1879, 0.5248, 0.5554, 0.5436, 0.5726, 0.5340, 0.4934, 0.5834, 0.3537, 0.4786, 0.0000},
+      { 0.1393, 0.1948, 0.3532, 0.2331, 0.3754, 0.2586, 0.3660, 0.2391, 0.3014, 0.1984, 0.2176, 0.5702, 0.6133, 0.5726, 0.6365, 0.5952, 0.5478, 0.6388, 0.3921, 0.5096, 0.0000},
+      { 0.1263, 0.1866, 0.3577, 0.2226, 0.3618, 0.2358, 0.3237, 0.2168, 0.2989, 0.1959, 0.2163, 0.5625, 0.6157, 0.5340, 0.5952, 0.5835, 0.5272, 0.6279, 0.3691, 0.4760, 0.0000},
+      { 0.1792, 0.2057, 0.3560, 0.2164, 0.4193, 0.2758, 0.3417, 0.2834, 0.3234, 0.2488, 0.2738, 0.5797, 0.6450, 0.4934, 0.5478, 0.5272, 0.5920, 0.6433, 0.3527, 0.5070, 0.0000},
+      { 0.2105, 0.2506, 0.4251, 0.2845, 0.4679, 0.3335, 0.3951, 0.3160, 0.3733, 0.2887, 0.3492, 0.6506, 0.7208, 0.5834, 0.6388, 0.6279, 0.6433, 0.7323, 0.4201, 0.5920, 0.0000},
+      { 0.0757, 0.1179, 0.2489, 0.1383, 0.2361, 0.1628, 0.2073, 0.1618, 0.2010, 0.1321, 0.1143, 0.3876, 0.4170, 0.3537, 0.3921, 0.3691, 0.3527, 0.4201, 0.2846, 0.3407, 0.0000},
+      { 0.1801, 0.1688, 0.3517, 0.2104, 0.4789, 0.3010, 0.3458, 0.2983, 0.2982, 0.2889, 0.2611, 0.5335, 0.6399, 0.4786, 0.5096, 0.4760, 0.5070, 0.5920, 0.3407, 1.0000, 0.0000},
+      { 0.0000, 0.0000, 0.0000, 0.0000, 0.0000, 0.0000, 0.0000, 0.0000, 0.0000, 0.0000, 0.0000, 0.0000, 0.0000, 0.0000, 0.0000, 0.0000, 0.0000, 0.0000, 0.0000, 0.0000, 0.0000}};
+
+}}}
\ No newline at end of file
diff --git a/modules/seq/alg/src/data/default_pair_subst_weight_matrix.hh b/modules/seq/alg/src/data/default_pair_subst_weight_matrix.hh
new file mode 100644
index 0000000000000000000000000000000000000000..3a70c16411dcba4918495dbaadecb03f8a45ede0
--- /dev/null
+++ b/modules/seq/alg/src/data/default_pair_subst_weight_matrix.hh
@@ -0,0 +1,8428 @@
+namespace ost { namespace seq { namespace alg {
+
+char RAW_PAIR_SUBST_WEIGHT_MATRIX_RES_LIST[20]={'D', 'E', 'R', 'K', 'H', 'S', 'T', 'N', 'Q', 'G', 'P', 'Y', 'W', 'V', 'I', 'L', 'M', 'F', 'A', 'C'};
+
+Real RAW_PAIR_SUBST_WEIGHT_MATRIX[20][20][20][20]=
+{
+  {
+    {
+      { 0.3946, 0.0767, 0.2169, 0.1598, 0.2375, 0.1478, 0.1355, 0.2275, 0.1232, 0.1301, 0.0470, 0.2061, 0.2077, 0.1068, 0.1105, 0.1023, 0.1537, 0.1704, 0.0907, 0.2600},
+      { 0.0767, 0.0936, 0.3070, 0.2443, 0.1934, 0.1282, 0.1267, 0.1462, 0.1775, 0.0579, 0.0906, 0.2395, 0.2447, 0.1376, 0.1701, 0.1637, 0.1780, 0.1779, 0.1470, 0.1205},
+      { 0.2169, 0.3070, 0.1979, 0.1333, 0.2066, 0.1524, 0.1761, 0.1629, 0.2002, 0.1169, 0.1507, 0.3009, 0.2986, 0.1987, 0.2281, 0.2454, 0.2326, 0.2553, 0.1780, 0.1676},
+      { 0.1598, 0.2443, 0.1333, 0.0783, 0.1264, 0.0984, 0.1113, 0.1044, 0.1439, 0.0472, 0.0770, 0.2276, 0.2353, 0.1534, 0.1595, 0.1665, 0.1338, 0.1574, 0.1389, 0.0774},
+      { 0.2375, 0.1934, 0.2066, 0.1264, 0.2565, 0.1530, 0.1797, 0.1929, 0.1882, 0.1248, 0.1312, 0.3419, 0.3212, 0.2031, 0.2193, 0.2195, 0.2268, 0.2908, 0.1313, 0.2378},
+      { 0.1478, 0.1282, 0.1524, 0.0984, 0.1530, 0.1084, 0.0972, 0.1268, 0.1252, 0.0652, 0.0714, 0.2062, 0.2082, 0.1216, 0.1260, 0.1195, 0.1399, 0.1851, 0.0920, 0.1321},
+      { 0.1355, 0.1267, 0.1761, 0.1113, 0.1797, 0.0972, 0.1410, 0.1448, 0.1532, 0.0628, 0.0789, 0.2101, 0.2033, 0.1615, 0.1677, 0.1611, 0.1743, 0.1978, 0.0889, 0.1827},
+      { 0.2275, 0.1462, 0.1629, 0.1044, 0.1929, 0.1268, 0.1448, 0.1989, 0.1619, 0.1006, 0.0950, 0.2348, 0.2226, 0.1580, 0.1560, 0.1467, 0.1614, 0.2111, 0.0944, 0.1807},
+      { 0.1232, 0.1775, 0.2002, 0.1439, 0.1882, 0.1252, 0.1532, 0.1619, 0.1923, 0.0675, 0.1242, 0.2350, 0.2928, 0.1639, 0.2071, 0.2061, 0.1934, 0.2321, 0.1390, 0.1423},
+      { 0.1301, 0.0579, 0.1169, 0.0472, 0.1248, 0.0652, 0.0628, 0.1006, 0.0675, 0.0302, 0.0468, 0.1724, 0.1769, 0.0774, 0.0912, 0.0889, 0.1383, 0.1436, 0.0526, 0.1400},
+      { 0.0470, 0.0906, 0.1507, 0.0770, 0.1312, 0.0714, 0.0789, 0.0950, 0.1242, 0.0468, 0.1052, 0.2498, 0.2692, 0.1065, 0.1261, 0.1501, 0.1642, 0.1973, 0.0948, 0.1295},
+      { 0.2061, 0.2395, 0.3009, 0.2276, 0.3419, 0.2062, 0.2101, 0.2348, 0.2350, 0.1724, 0.2498, 0.3973, 0.4283, 0.3044, 0.3235, 0.3245, 0.3386, 0.3973, 0.2060, 0.2737},
+      { 0.2077, 0.2447, 0.2986, 0.2353, 0.3212, 0.2082, 0.2033, 0.2226, 0.2928, 0.1769, 0.2692, 0.4283, 0.5221, 0.2768, 0.3582, 0.3248, 0.3763, 0.4262, 0.1858, 0.2921},
+      { 0.1068, 0.1376, 0.1987, 0.1534, 0.2031, 0.1216, 0.1615, 0.1580, 0.1639, 0.0774, 0.1065, 0.3044, 0.2768, 0.2283, 0.2561, 0.2378, 0.2470, 0.2773, 0.1281, 0.2128},
+      { 0.1105, 0.1701, 0.2281, 0.1595, 0.2193, 0.1260, 0.1677, 0.1560, 0.2071, 0.0912, 0.1261, 0.3235, 0.3582, 0.2561, 0.2970, 0.2720, 0.2779, 0.2990, 0.1477, 0.1899},
+      { 0.1023, 0.1637, 0.2454, 0.1665, 0.2195, 0.1195, 0.1611, 0.1467, 0.2061, 0.0889, 0.1501, 0.3245, 0.3248, 0.2378, 0.2720, 0.2724, 0.2617, 0.3145, 0.1435, 0.1863},
+      { 0.1537, 0.1780, 0.2326, 0.1338, 0.2268, 0.1399, 0.1743, 0.1614, 0.1934, 0.1383, 0.1642, 0.3386, 0.3763, 0.2470, 0.2779, 0.2617, 0.3295, 0.3392, 0.1559, 0.2691},
+      { 0.1704, 0.1779, 0.2553, 0.1574, 0.2908, 0.1851, 0.1978, 0.2111, 0.2321, 0.1436, 0.1973, 0.3973, 0.4262, 0.2773, 0.2990, 0.3145, 0.3392, 0.4093, 0.1737, 0.3043},
+      { 0.0907, 0.1470, 0.1780, 0.1389, 0.1313, 0.0920, 0.0889, 0.0944, 0.1390, 0.0526, 0.0948, 0.2060, 0.1858, 0.1281, 0.1477, 0.1435, 0.1559, 0.1737, 0.1735, 0.1164},
+      { 0.2600, 0.1205, 0.1676, 0.0774, 0.2378, 0.1321, 0.1827, 0.1807, 0.1423, 0.1400, 0.1295, 0.2737, 0.2921, 0.2128, 0.1899, 0.1863, 0.2691, 0.3043, 0.1164, 0.5576}},
+    {
+      { 0.0767, 0.2678, 0.2120, 0.1678, 0.1787, 0.1034, 0.1129, 0.1321, 0.1570, 0.0811, 0.0404, 0.1838, 0.2017, 0.1069, 0.1119, 0.1002, 0.1640, 0.1508, 0.0811, 0.1955},
+      { 0.2678, 0.1054, 0.2825, 0.2262, 0.2016, 0.1203, 0.1197, 0.1685, 0.1711, 0.0621, 0.0624, 0.2204, 0.2392, 0.1381, 0.1632, 0.1574, 0.1665, 0.1721, 0.1449, 0.1494},
+      { 0.2120, 0.2825, 0.1924, 0.1318, 0.1802, 0.1475, 0.1674, 0.1517, 0.1980, 0.1080, 0.1330, 0.2785, 0.2802, 0.1954, 0.2261, 0.2414, 0.2121, 0.2425, 0.1832, 0.1543},
+      { 0.1678, 0.2262, 0.1318, 0.0883, 0.1176, 0.1105, 0.1165, 0.1063, 0.1511, 0.0442, 0.0731, 0.2199, 0.2084, 0.1412, 0.1584, 0.1685, 0.1521, 0.1673, 0.1534, 0.0807},
+      { 0.1787, 0.2016, 0.1802, 0.1176, 0.2280, 0.1444, 0.1647, 0.1589, 0.1749, 0.1020, 0.1192, 0.2962, 0.3010, 0.1925, 0.2096, 0.2190, 0.2198, 0.2692, 0.1263, 0.2375},
+      { 0.1034, 0.1203, 0.1475, 0.1105, 0.1444, 0.1047, 0.0955, 0.1192, 0.1266, 0.0570, 0.0705, 0.1767, 0.1928, 0.1033, 0.1176, 0.1189, 0.1325, 0.1666, 0.0985, 0.1331},
+      { 0.1129, 0.1197, 0.1674, 0.1165, 0.1647, 0.0955, 0.1405, 0.1411, 0.1559, 0.0533, 0.0681, 0.2008, 0.2039, 0.1420, 0.1649, 0.1510, 0.1559, 0.1830, 0.0896, 0.1543},
+      { 0.1321, 0.1685, 0.1517, 0.1063, 0.1589, 0.1192, 0.1411, 0.1580, 0.1605, 0.0832, 0.0803, 0.2063, 0.2237, 0.1317, 0.1456, 0.1358, 0.1665, 0.1842, 0.0928, 0.1565},
+      { 0.1570, 0.1711, 0.1980, 0.1511, 0.1749, 0.1266, 0.1559, 0.1605, 0.1848, 0.0608, 0.1098, 0.2283, 0.2855, 0.1530, 0.1785, 0.1923, 0.2041, 0.2139, 0.1523, 0.1315},
+      { 0.0811, 0.0621, 0.1080, 0.0442, 0.1020, 0.0570, 0.0533, 0.0832, 0.0608, 0.0367, 0.0362, 0.1541, 0.1725, 0.0659, 0.0708, 0.0814, 0.1009, 0.1427, 0.0540, 0.1152},
+      { 0.0404, 0.0624, 0.1330, 0.0731, 0.1192, 0.0705, 0.0681, 0.0803, 0.1098, 0.0362, 0.0896, 0.2227, 0.2411, 0.0841, 0.1062, 0.1271, 0.1439, 0.1836, 0.1022, 0.1188},
+      { 0.1838, 0.2204, 0.2785, 0.2199, 0.2962, 0.1767, 0.2008, 0.2063, 0.2283, 0.1541, 0.2227, 0.3494, 0.3763, 0.2804, 0.3025, 0.3048, 0.3106, 0.3716, 0.1816, 0.2771},
+      { 0.2017, 0.2392, 0.2802, 0.2084, 0.3010, 0.1928, 0.2039, 0.2237, 0.2855, 0.1725, 0.2411, 0.3763, 0.4415, 0.2768, 0.3157, 0.3171, 0.3530, 0.3992, 0.1693, 0.2780},
+      { 0.1069, 0.1381, 0.1954, 0.1412, 0.1925, 0.1033, 0.1420, 0.1317, 0.1530, 0.0659, 0.0841, 0.2804, 0.2768, 0.2153, 0.2322, 0.2190, 0.2207, 0.2604, 0.1164, 0.1902},
+      { 0.1119, 0.1632, 0.2261, 0.1584, 0.2096, 0.1176, 0.1649, 0.1456, 0.1785, 0.0708, 0.1062, 0.3025, 0.3157, 0.2322, 0.2685, 0.2540, 0.2563, 0.2763, 0.1278, 0.2164},
+      { 0.1002, 0.1574, 0.2414, 0.1685, 0.2190, 0.1189, 0.1510, 0.1358, 0.1923, 0.0814, 0.1271, 0.3048, 0.3171, 0.2190, 0.2540, 0.2625, 0.2429, 0.2961, 0.1391, 0.1975},
+      { 0.1640, 0.1665, 0.2121, 0.1521, 0.2198, 0.1325, 0.1559, 0.1665, 0.2041, 0.1009, 0.1439, 0.3106, 0.3530, 0.2207, 0.2563, 0.2429, 0.2967, 0.3178, 0.1493, 0.2292},
+      { 0.1508, 0.1721, 0.2425, 0.1673, 0.2692, 0.1666, 0.1830, 0.1842, 0.2139, 0.1427, 0.1836, 0.3716, 0.3992, 0.2604, 0.2763, 0.2961, 0.3178, 0.3837, 0.1615, 0.2776},
+      { 0.0811, 0.1449, 0.1832, 0.1534, 0.1263, 0.0985, 0.0896, 0.0928, 0.1523, 0.0540, 0.1022, 0.1816, 0.1693, 0.1164, 0.1278, 0.1391, 0.1493, 0.1615, 0.1946, 0.1245},
+      { 0.1955, 0.1494, 0.1543, 0.0807, 0.2375, 0.1331, 0.1543, 0.1565, 0.1315, 0.1152, 0.1188, 0.2771, 0.2780, 0.1902, 0.2164, 0.1975, 0.2292, 0.2776, 0.1245, 0.4872}},
+    {
+      { 0.2169, 0.2120, 0.6034, 0.4640, 0.4383, 0.3423, 0.3546, 0.3720, 0.3446, 0.3165, 0.3039, 0.4002, 0.3828, 0.3411, 0.3429, 0.3310, 0.3454, 0.3518, 0.2985, 0.3974},
+      { 0.2120, 0.2867, 0.4742, 0.4725, 0.4235, 0.3550, 0.3690, 0.3582, 0.3830, 0.2935, 0.3277, 0.4341, 0.4470, 0.3783, 0.3905, 0.3969, 0.3984, 0.3947, 0.3754, 0.3676},
+      { 0.6034, 0.4742, 0.3299, 0.2733, 0.4110, 0.3682, 0.3819, 0.4045, 0.3830, 0.3381, 0.3371, 0.4630, 0.4740, 0.4045, 0.4204, 0.4272, 0.4281, 0.4432, 0.3634, 0.4371},
+      { 0.4640, 0.4725, 0.2733, 0.2947, 0.3765, 0.3533, 0.3722, 0.3651, 0.3827, 0.3171, 0.3095, 0.4546, 0.4405, 0.3884, 0.4029, 0.4046, 0.3918, 0.4050, 0.3669, 0.3682},
+      { 0.4383, 0.4235, 0.4110, 0.3765, 0.4836, 0.4087, 0.4429, 0.4062, 0.4188, 0.3680, 0.3849, 0.5283, 0.5278, 0.4589, 0.4643, 0.4622, 0.4690, 0.4881, 0.3856, 0.4683},
+      { 0.3423, 0.3550, 0.3682, 0.3533, 0.4087, 0.3621, 0.3606, 0.3702, 0.3799, 0.3232, 0.3385, 0.4147, 0.4242, 0.3716, 0.3776, 0.3750, 0.3895, 0.4049, 0.3502, 0.3933},
+      { 0.3546, 0.3690, 0.3819, 0.3722, 0.4429, 0.3606, 0.4151, 0.3876, 0.4089, 0.3219, 0.3413, 0.4311, 0.4408, 0.4104, 0.4225, 0.4019, 0.4122, 0.4258, 0.3544, 0.4072},
+      { 0.3720, 0.3582, 0.4045, 0.3651, 0.4062, 0.3702, 0.3876, 0.4177, 0.4064, 0.3456, 0.3499, 0.4283, 0.4415, 0.3869, 0.3921, 0.3866, 0.4132, 0.4194, 0.3477, 0.3989},
+      { 0.3446, 0.3830, 0.3830, 0.3827, 0.4188, 0.3799, 0.4089, 0.4064, 0.4196, 0.3312, 0.3679, 0.4531, 0.4953, 0.4082, 0.4306, 0.4379, 0.4484, 0.4455, 0.3900, 0.4087},
+      { 0.3165, 0.2935, 0.3381, 0.3171, 0.3680, 0.3232, 0.3219, 0.3456, 0.3312, 0.3217, 0.3383, 0.3757, 0.4075, 0.3443, 0.3430, 0.3445, 0.3648, 0.3861, 0.3290, 0.3776},
+      { 0.3039, 0.3277, 0.3371, 0.3095, 0.3849, 0.3385, 0.3413, 0.3499, 0.3679, 0.3383, 0.3615, 0.4539, 0.4686, 0.3578, 0.3671, 0.3783, 0.3991, 0.4190, 0.3639, 0.3888},
+      { 0.4002, 0.4341, 0.4630, 0.4546, 0.5283, 0.4147, 0.4311, 0.4283, 0.4531, 0.3757, 0.4539, 0.5511, 0.5747, 0.5125, 0.5406, 0.5321, 0.5502, 0.5565, 0.4284, 0.5173},
+      { 0.3828, 0.4470, 0.4740, 0.4405, 0.5278, 0.4242, 0.4408, 0.4415, 0.4953, 0.4075, 0.4686, 0.5747, 0.6162, 0.5012, 0.5444, 0.5252, 0.5718, 0.5896, 0.4245, 0.5293},
+      { 0.3411, 0.3783, 0.4045, 0.3884, 0.4589, 0.3716, 0.4104, 0.3869, 0.4082, 0.3443, 0.3578, 0.5125, 0.5012, 0.4653, 0.4791, 0.4695, 0.4758, 0.4915, 0.3864, 0.4493},
+      { 0.3429, 0.3905, 0.4204, 0.4029, 0.4643, 0.3776, 0.4225, 0.3921, 0.4306, 0.3430, 0.3671, 0.5406, 0.5444, 0.4791, 0.5146, 0.4970, 0.4883, 0.5077, 0.3951, 0.4574},
+      { 0.3310, 0.3969, 0.4272, 0.4046, 0.4622, 0.3750, 0.4019, 0.3866, 0.4379, 0.3445, 0.3783, 0.5321, 0.5252, 0.4695, 0.4970, 0.5054, 0.4944, 0.5127, 0.4053, 0.4430},
+      { 0.3454, 0.3984, 0.4281, 0.3918, 0.4690, 0.3895, 0.4122, 0.4132, 0.4484, 0.3648, 0.3991, 0.5502, 0.5718, 0.4758, 0.4883, 0.4944, 0.5392, 0.5375, 0.4082, 0.4838},
+      { 0.3518, 0.3947, 0.4432, 0.4050, 0.4881, 0.4049, 0.4258, 0.4194, 0.4455, 0.3861, 0.4190, 0.5565, 0.5896, 0.4915, 0.5077, 0.5127, 0.5375, 0.5850, 0.4140, 0.5036},
+      { 0.2985, 0.3754, 0.3634, 0.3669, 0.3856, 0.3502, 0.3544, 0.3477, 0.3900, 0.3290, 0.3639, 0.4284, 0.4245, 0.3864, 0.3951, 0.4053, 0.4082, 0.4140, 0.4220, 0.3942},
+      { 0.3974, 0.3676, 0.4371, 0.3682, 0.4683, 0.3933, 0.4072, 0.3989, 0.4087, 0.3776, 0.3888, 0.5173, 0.5293, 0.4493, 0.4574, 0.4430, 0.4838, 0.5036, 0.3942, 0.6751}},
+    {
+      { 0.1598, 0.1678, 0.4640, 0.5614, 0.3840, 0.2913, 0.3194, 0.3159, 0.3097, 0.2480, 0.2745, 0.3470, 0.3321, 0.3178, 0.3133, 0.2970, 0.3494, 0.3142, 0.2618, 0.3461},
+      { 0.1678, 0.2442, 0.4705, 0.4299, 0.3553, 0.3053, 0.3196, 0.3100, 0.3461, 0.2371, 0.2841, 0.3707, 0.3919, 0.3291, 0.3453, 0.3533, 0.3579, 0.3421, 0.3396, 0.3163},
+      { 0.4640, 0.4705, 0.3450, 0.2673, 0.3933, 0.3385, 0.3646, 0.3538, 0.3832, 0.3280, 0.3296, 0.4386, 0.4441, 0.3889, 0.4123, 0.4204, 0.4112, 0.4183, 0.3677, 0.3866},
+      { 0.5614, 0.4299, 0.2673, 0.2222, 0.3347, 0.3136, 0.3220, 0.3376, 0.3281, 0.2763, 0.2545, 0.3887, 0.3597, 0.3307, 0.3407, 0.3346, 0.3310, 0.3355, 0.3175, 0.3395},
+      { 0.3840, 0.3553, 0.3933, 0.3347, 0.4224, 0.3451, 0.3796, 0.3509, 0.3708, 0.3115, 0.3370, 0.4669, 0.4628, 0.4065, 0.4041, 0.4088, 0.4236, 0.4344, 0.3283, 0.4146},
+      { 0.2913, 0.3053, 0.3385, 0.3136, 0.3451, 0.3096, 0.3075, 0.3112, 0.3295, 0.2669, 0.2885, 0.3430, 0.3454, 0.3110, 0.3194, 0.3125, 0.3239, 0.3419, 0.2988, 0.3323},
+      { 0.3194, 0.3196, 0.3646, 0.3220, 0.3796, 0.3075, 0.3593, 0.3425, 0.3630, 0.2714, 0.2953, 0.3692, 0.3655, 0.3542, 0.3655, 0.3400, 0.3447, 0.3533, 0.3035, 0.3405},
+      { 0.3159, 0.3100, 0.3538, 0.3376, 0.3509, 0.3112, 0.3425, 0.3536, 0.3523, 0.2884, 0.2992, 0.3661, 0.3885, 0.3349, 0.3524, 0.3365, 0.3683, 0.3617, 0.2950, 0.3528},
+      { 0.3097, 0.3461, 0.3832, 0.3281, 0.3708, 0.3295, 0.3630, 0.3523, 0.3791, 0.2760, 0.3250, 0.3985, 0.4293, 0.3660, 0.3813, 0.3925, 0.3954, 0.3900, 0.3511, 0.3540},
+      { 0.2480, 0.2371, 0.3280, 0.2763, 0.3115, 0.2669, 0.2714, 0.2884, 0.2760, 0.2546, 0.2853, 0.3280, 0.3436, 0.2918, 0.2880, 0.2900, 0.3224, 0.3272, 0.2759, 0.3268},
+      { 0.2745, 0.2841, 0.3296, 0.2545, 0.3370, 0.2885, 0.2953, 0.2992, 0.3250, 0.2853, 0.3177, 0.3950, 0.4117, 0.3038, 0.3108, 0.3231, 0.3392, 0.3624, 0.3160, 0.3379},
+      { 0.3470, 0.3707, 0.4386, 0.3887, 0.4669, 0.3430, 0.3692, 0.3661, 0.3985, 0.3280, 0.3950, 0.4841, 0.4937, 0.4397, 0.4597, 0.4576, 0.4789, 0.4921, 0.3560, 0.4491},
+      { 0.3321, 0.3919, 0.4441, 0.3597, 0.4628, 0.3454, 0.3655, 0.3885, 0.4293, 0.3436, 0.4117, 0.4937, 0.5451, 0.4206, 0.4646, 0.4634, 0.5180, 0.5323, 0.3563, 0.4337},
+      { 0.3178, 0.3291, 0.3889, 0.3307, 0.4065, 0.3110, 0.3542, 0.3349, 0.3660, 0.2918, 0.3038, 0.4397, 0.4206, 0.4027, 0.4133, 0.4062, 0.4087, 0.4154, 0.3289, 0.3813},
+      { 0.3133, 0.3453, 0.4123, 0.3407, 0.4041, 0.3194, 0.3655, 0.3524, 0.3813, 0.2880, 0.3108, 0.4597, 0.4646, 0.4133, 0.4462, 0.4266, 0.4162, 0.4302, 0.3370, 0.3889},
+      { 0.2970, 0.3533, 0.4204, 0.3346, 0.4088, 0.3125, 0.3400, 0.3365, 0.3925, 0.2900, 0.3231, 0.4576, 0.4634, 0.4062, 0.4266, 0.4305, 0.4318, 0.4431, 0.3486, 0.3908},
+      { 0.3494, 0.3579, 0.4112, 0.3310, 0.4236, 0.3239, 0.3447, 0.3683, 0.3954, 0.3224, 0.3392, 0.4789, 0.5180, 0.4087, 0.4162, 0.4318, 0.4755, 0.4707, 0.3552, 0.4137},
+      { 0.3142, 0.3421, 0.4183, 0.3355, 0.4344, 0.3419, 0.3533, 0.3617, 0.3900, 0.3272, 0.3624, 0.4921, 0.5323, 0.4154, 0.4302, 0.4431, 0.4707, 0.5056, 0.3441, 0.4466},
+      { 0.2618, 0.3396, 0.3677, 0.3175, 0.3283, 0.2988, 0.3035, 0.2950, 0.3511, 0.2759, 0.3160, 0.3560, 0.3563, 0.3289, 0.3370, 0.3486, 0.3552, 0.3441, 0.3863, 0.3308},
+      { 0.3461, 0.3163, 0.3866, 0.3395, 0.4146, 0.3323, 0.3405, 0.3528, 0.3540, 0.3268, 0.3379, 0.4491, 0.4337, 0.3813, 0.3889, 0.3908, 0.4137, 0.4466, 0.3308, 0.6186}},
+    {
+      { 0.2375, 0.1787, 0.4383, 0.3840, 0.7230, 0.3178, 0.3234, 0.3885, 0.3477, 0.2654, 0.2655, 0.4401, 0.4542, 0.3054, 0.3136, 0.3012, 0.3473, 0.3731, 0.2558, 0.4048},
+      { 0.1787, 0.2075, 0.4373, 0.3852, 0.3251, 0.2844, 0.3001, 0.2999, 0.2870, 0.2135, 0.2442, 0.3524, 0.3757, 0.3067, 0.3085, 0.3012, 0.2952, 0.3073, 0.2677, 0.2983},
+      { 0.4383, 0.4373, 0.3023, 0.2397, 0.1850, 0.3098, 0.3314, 0.3149, 0.3365, 0.2896, 0.2792, 0.3894, 0.4084, 0.3581, 0.3559, 0.3590, 0.3471, 0.3672, 0.3046, 0.3864},
+      { 0.3840, 0.3852, 0.2397, 0.2113, 0.1132, 0.2707, 0.2936, 0.2768, 0.2856, 0.2624, 0.2141, 0.3345, 0.3277, 0.2857, 0.2929, 0.2871, 0.2922, 0.2896, 0.2581, 0.2720},
+      { 0.7230, 0.3251, 0.1850, 0.1132, 0.3965, 0.3019, 0.2838, 0.3473, 0.2253, 0.2464, 0.1674, 0.3575, 0.3728, 0.2719, 0.2788, 0.2728, 0.3605, 0.3611, 0.2054, 0.5112},
+      { 0.3178, 0.2844, 0.3098, 0.2707, 0.3019, 0.2744, 0.2793, 0.2943, 0.2876, 0.2491, 0.2577, 0.3342, 0.3661, 0.2925, 0.2877, 0.2804, 0.3066, 0.3254, 0.2592, 0.3183},
+      { 0.3234, 0.3001, 0.3314, 0.2936, 0.2838, 0.2793, 0.3366, 0.3035, 0.3180, 0.2467, 0.2623, 0.3335, 0.3602, 0.3436, 0.3452, 0.3244, 0.3281, 0.3286, 0.2580, 0.3384},
+      { 0.3885, 0.2999, 0.3149, 0.2768, 0.3473, 0.2943, 0.3035, 0.3742, 0.3273, 0.2712, 0.2749, 0.3586, 0.3986, 0.3023, 0.3135, 0.3020, 0.3345, 0.3451, 0.2625, 0.3336},
+      { 0.3477, 0.2870, 0.3365, 0.2856, 0.2253, 0.2876, 0.3180, 0.3273, 0.3095, 0.2549, 0.2621, 0.3374, 0.3924, 0.3179, 0.3408, 0.3318, 0.3595, 0.3416, 0.2758, 0.3341},
+      { 0.2654, 0.2135, 0.2896, 0.2624, 0.2464, 0.2491, 0.2467, 0.2712, 0.2549, 0.2299, 0.2449, 0.3067, 0.3300, 0.2614, 0.2555, 0.2634, 0.2903, 0.2916, 0.2328, 0.3087},
+      { 0.2655, 0.2442, 0.2792, 0.2141, 0.1674, 0.2577, 0.2623, 0.2749, 0.2621, 0.2449, 0.2591, 0.3435, 0.3875, 0.2660, 0.2746, 0.2772, 0.3013, 0.3252, 0.2498, 0.2828},
+      { 0.4401, 0.3524, 0.3894, 0.3345, 0.3575, 0.3342, 0.3335, 0.3586, 0.3374, 0.3067, 0.3435, 0.4534, 0.5101, 0.4246, 0.4321, 0.4154, 0.4336, 0.4831, 0.3183, 0.4622},
+      { 0.4542, 0.3757, 0.4084, 0.3277, 0.3728, 0.3661, 0.3602, 0.3986, 0.3924, 0.3300, 0.3875, 0.5101, 0.5912, 0.4218, 0.4614, 0.4338, 0.5041, 0.5143, 0.3326, 0.4504},
+      { 0.3054, 0.3067, 0.3581, 0.2857, 0.2719, 0.2925, 0.3436, 0.3023, 0.3179, 0.2614, 0.2660, 0.4246, 0.4218, 0.4194, 0.4241, 0.3989, 0.3943, 0.4094, 0.3000, 0.3749},
+      { 0.3136, 0.3085, 0.3559, 0.2929, 0.2788, 0.2877, 0.3452, 0.3135, 0.3408, 0.2555, 0.2746, 0.4321, 0.4614, 0.4241, 0.4483, 0.4140, 0.4157, 0.4120, 0.3010, 0.3994},
+      { 0.3012, 0.3012, 0.3590, 0.2871, 0.2728, 0.2804, 0.3244, 0.3020, 0.3318, 0.2634, 0.2772, 0.4154, 0.4338, 0.3989, 0.4140, 0.4107, 0.4080, 0.4243, 0.3103, 0.3741},
+      { 0.3473, 0.2952, 0.3471, 0.2922, 0.3605, 0.3066, 0.3281, 0.3345, 0.3595, 0.2903, 0.3013, 0.4336, 0.5041, 0.3943, 0.4157, 0.4080, 0.4364, 0.4557, 0.3265, 0.4270},
+      { 0.3731, 0.3073, 0.3672, 0.2896, 0.3611, 0.3254, 0.3286, 0.3451, 0.3416, 0.2916, 0.3252, 0.4831, 0.5143, 0.4094, 0.4120, 0.4243, 0.4557, 0.4857, 0.3277, 0.4385},
+      { 0.2558, 0.2677, 0.3046, 0.2581, 0.2054, 0.2592, 0.2580, 0.2625, 0.2758, 0.2328, 0.2498, 0.3183, 0.3326, 0.3000, 0.3010, 0.3103, 0.3265, 0.3277, 0.2965, 0.2855},
+      { 0.4048, 0.2983, 0.3864, 0.2720, 0.5112, 0.3183, 0.3384, 0.3336, 0.3341, 0.3087, 0.2828, 0.4622, 0.4504, 0.3749, 0.3994, 0.3741, 0.4270, 0.4385, 0.2855, 0.6043}},
+    {
+      { 0.1478, 0.1034, 0.3423, 0.2913, 0.3178, 0.4078, 0.3591, 0.2889, 0.2351, 0.2570, 0.1947, 0.2985, 0.3025, 0.2718, 0.2533, 0.2382, 0.3022, 0.2848, 0.2679, 0.3745},
+      { 0.1034, 0.1572, 0.3790, 0.3363, 0.2724, 0.2027, 0.2299, 0.2325, 0.2515, 0.1756, 0.1838, 0.2900, 0.2991, 0.2351, 0.2476, 0.2459, 0.2456, 0.2539, 0.2206, 0.2413},
+      { 0.3423, 0.3790, 0.2565, 0.1903, 0.2877, 0.1880, 0.2302, 0.2447, 0.2845, 0.1969, 0.2152, 0.3673, 0.3589, 0.2641, 0.2915, 0.2969, 0.2780, 0.3164, 0.2225, 0.2468},
+      { 0.2913, 0.3363, 0.1903, 0.1479, 0.2033, 0.1239, 0.1699, 0.1900, 0.2335, 0.1247, 0.1412, 0.2950, 0.2834, 0.2023, 0.2124, 0.2143, 0.1963, 0.2293, 0.1710, 0.1338},
+      { 0.3178, 0.2724, 0.2877, 0.2033, 0.3242, 0.2585, 0.2907, 0.2797, 0.2719, 0.2250, 0.2302, 0.3974, 0.3927, 0.3009, 0.3034, 0.2964, 0.3159, 0.3461, 0.2289, 0.3322},
+      { 0.4078, 0.2027, 0.1880, 0.1239, 0.2585, 0.1976, 0.1846, 0.2347, 0.1767, 0.1499, 0.1231, 0.2676, 0.2896, 0.2083, 0.2179, 0.1883, 0.2294, 0.2548, 0.1656, 0.2664},
+      { 0.3591, 0.2299, 0.2302, 0.1699, 0.2907, 0.1846, 0.2277, 0.2490, 0.2295, 0.1638, 0.1576, 0.2927, 0.2892, 0.2524, 0.2518, 0.2314, 0.2543, 0.2703, 0.1804, 0.2686},
+      { 0.2889, 0.2325, 0.2447, 0.1900, 0.2797, 0.2347, 0.2490, 0.2837, 0.2518, 0.2141, 0.2048, 0.3080, 0.3339, 0.2477, 0.2404, 0.2340, 0.2711, 0.2793, 0.2165, 0.2940},
+      { 0.2351, 0.2515, 0.2845, 0.2335, 0.2719, 0.1767, 0.2295, 0.2518, 0.2726, 0.1724, 0.2133, 0.3108, 0.3668, 0.2510, 0.2685, 0.2706, 0.2820, 0.3003, 0.2111, 0.2225},
+      { 0.2570, 0.1756, 0.1969, 0.1247, 0.2250, 0.1499, 0.1638, 0.2141, 0.1724, 0.1557, 0.1604, 0.2730, 0.2817, 0.1924, 0.2022, 0.1989, 0.2327, 0.2510, 0.1625, 0.2496},
+      { 0.1947, 0.1838, 0.2152, 0.1412, 0.2302, 0.1231, 0.1576, 0.2048, 0.2133, 0.1604, 0.1968, 0.3160, 0.3392, 0.1978, 0.2174, 0.2216, 0.2394, 0.2734, 0.1684, 0.1961},
+      { 0.2985, 0.2900, 0.3673, 0.2950, 0.3974, 0.2676, 0.2927, 0.3080, 0.3108, 0.2730, 0.3160, 0.4368, 0.4707, 0.3689, 0.3884, 0.3821, 0.4018, 0.4431, 0.2834, 0.3746},
+      { 0.3025, 0.2991, 0.3589, 0.2834, 0.3927, 0.2896, 0.2892, 0.3339, 0.3668, 0.2817, 0.3392, 0.4707, 0.5426, 0.3679, 0.3924, 0.3786, 0.4318, 0.4787, 0.2823, 0.3892},
+      { 0.2718, 0.2351, 0.2641, 0.2023, 0.3009, 0.2083, 0.2524, 0.2477, 0.2510, 0.1924, 0.1978, 0.3689, 0.3679, 0.3314, 0.3461, 0.3171, 0.3201, 0.3531, 0.2403, 0.3256},
+      { 0.2533, 0.2476, 0.2915, 0.2124, 0.3034, 0.2179, 0.2518, 0.2404, 0.2685, 0.2022, 0.2174, 0.3884, 0.3924, 0.3461, 0.3749, 0.3445, 0.3367, 0.3700, 0.2508, 0.3186},
+      { 0.2382, 0.2459, 0.2969, 0.2143, 0.2964, 0.1883, 0.2314, 0.2340, 0.2706, 0.1989, 0.2216, 0.3821, 0.3786, 0.3171, 0.3445, 0.3358, 0.3392, 0.3749, 0.2385, 0.2797},
+      { 0.3022, 0.2456, 0.2780, 0.1963, 0.3159, 0.2294, 0.2543, 0.2711, 0.2820, 0.2327, 0.2394, 0.4018, 0.4318, 0.3201, 0.3367, 0.3392, 0.3994, 0.3907, 0.2564, 0.3526},
+      { 0.2848, 0.2539, 0.3164, 0.2293, 0.3461, 0.2548, 0.2703, 0.2793, 0.3003, 0.2510, 0.2734, 0.4431, 0.4787, 0.3531, 0.3700, 0.3749, 0.3907, 0.4555, 0.2688, 0.3462},
+      { 0.2679, 0.2206, 0.2225, 0.1710, 0.2289, 0.1656, 0.1804, 0.2165, 0.2111, 0.1625, 0.1684, 0.2834, 0.2823, 0.2403, 0.2508, 0.2385, 0.2564, 0.2688, 0.2249, 0.2500},
+      { 0.3745, 0.2413, 0.2468, 0.1338, 0.3322, 0.2664, 0.2686, 0.2940, 0.2225, 0.2496, 0.1961, 0.3746, 0.3892, 0.3256, 0.3186, 0.2797, 0.3526, 0.3462, 0.2500, 0.6988}},
+    {
+      { 0.1355, 0.1129, 0.3546, 0.3194, 0.3234, 0.3591, 0.4403, 0.2945, 0.2395, 0.2295, 0.2161, 0.3101, 0.2926, 0.3320, 0.3126, 0.2817, 0.3217, 0.3000, 0.2518, 0.3915},
+      { 0.1129, 0.1474, 0.3819, 0.3395, 0.2833, 0.2211, 0.2040, 0.2328, 0.2474, 0.1712, 0.1852, 0.2942, 0.3110, 0.2300, 0.2429, 0.2422, 0.2412, 0.2471, 0.2132, 0.2336},
+      { 0.3546, 0.3819, 0.2514, 0.1897, 0.2817, 0.2162, 0.1865, 0.2434, 0.2820, 0.1984, 0.2163, 0.3599, 0.3577, 0.2544, 0.2746, 0.2725, 0.2493, 0.2991, 0.2176, 0.2393},
+      { 0.3194, 0.3395, 0.1897, 0.1496, 0.2253, 0.1617, 0.1278, 0.1970, 0.2347, 0.1328, 0.1379, 0.2985, 0.2836, 0.1972, 0.2050, 0.2009, 0.1915, 0.2195, 0.1710, 0.1366},
+      { 0.3234, 0.2833, 0.2817, 0.2253, 0.3219, 0.2642, 0.2788, 0.2628, 0.2582, 0.2153, 0.2369, 0.3834, 0.4007, 0.3100, 0.3108, 0.2913, 0.3073, 0.3417, 0.2279, 0.3067},
+      { 0.3591, 0.2211, 0.2162, 0.1617, 0.2642, 0.2024, 0.1837, 0.2286, 0.2014, 0.1620, 0.1547, 0.2698, 0.2926, 0.2196, 0.2256, 0.2138, 0.2261, 0.2593, 0.1755, 0.2542},
+      { 0.4403, 0.2040, 0.1865, 0.1278, 0.2788, 0.1837, 0.2048, 0.2477, 0.1899, 0.1212, 0.1082, 0.2654, 0.2689, 0.2377, 0.2384, 0.2060, 0.2335, 0.2460, 0.1467, 0.2807},
+      { 0.2945, 0.2328, 0.2434, 0.1970, 0.2628, 0.2286, 0.2477, 0.2785, 0.2506, 0.1967, 0.1998, 0.2881, 0.3145, 0.2454, 0.2428, 0.2326, 0.2632, 0.2706, 0.2014, 0.2733},
+      { 0.2395, 0.2474, 0.2820, 0.2347, 0.2582, 0.2014, 0.1899, 0.2506, 0.2664, 0.1714, 0.2071, 0.3004, 0.3489, 0.2397, 0.2624, 0.2573, 0.2691, 0.2871, 0.2087, 0.2181},
+      { 0.2295, 0.1712, 0.1984, 0.1328, 0.2153, 0.1620, 0.1212, 0.1967, 0.1714, 0.1509, 0.1670, 0.2575, 0.2742, 0.1791, 0.1812, 0.1877, 0.2048, 0.2363, 0.1614, 0.2131},
+      { 0.2161, 0.1852, 0.2163, 0.1379, 0.2369, 0.1547, 0.1082, 0.1998, 0.2071, 0.1670, 0.1900, 0.3121, 0.3283, 0.1739, 0.1937, 0.2071, 0.2268, 0.2624, 0.1650, 0.2019},
+      { 0.3101, 0.2942, 0.3599, 0.2985, 0.3834, 0.2698, 0.2654, 0.2881, 0.3004, 0.2575, 0.3121, 0.4326, 0.4593, 0.3562, 0.3719, 0.3642, 0.3843, 0.4261, 0.2781, 0.3630},
+      { 0.2926, 0.3110, 0.3577, 0.2836, 0.4007, 0.2926, 0.2689, 0.3145, 0.3489, 0.2742, 0.3283, 0.4593, 0.4848, 0.3581, 0.3821, 0.3745, 0.4130, 0.4470, 0.2680, 0.3942},
+      { 0.3320, 0.2300, 0.2544, 0.1972, 0.3100, 0.2196, 0.2377, 0.2454, 0.2397, 0.1791, 0.1739, 0.3562, 0.3581, 0.3205, 0.3321, 0.3018, 0.3080, 0.3454, 0.2165, 0.3320},
+      { 0.3126, 0.2429, 0.2746, 0.2050, 0.3108, 0.2256, 0.2384, 0.2428, 0.2624, 0.1812, 0.1937, 0.3719, 0.3821, 0.3321, 0.3571, 0.3245, 0.3193, 0.3594, 0.2315, 0.3285},
+      { 0.2817, 0.2422, 0.2725, 0.2009, 0.2913, 0.2138, 0.2060, 0.2326, 0.2573, 0.1877, 0.2071, 0.3642, 0.3745, 0.3018, 0.3245, 0.3197, 0.3127, 0.3580, 0.2281, 0.2884},
+      { 0.3217, 0.2412, 0.2493, 0.1915, 0.3073, 0.2261, 0.2335, 0.2632, 0.2691, 0.2048, 0.2268, 0.3843, 0.4130, 0.3080, 0.3193, 0.3127, 0.3705, 0.3798, 0.2374, 0.3375},
+      { 0.3000, 0.2471, 0.2991, 0.2195, 0.3417, 0.2593, 0.2460, 0.2706, 0.2871, 0.2363, 0.2624, 0.4261, 0.4470, 0.3454, 0.3594, 0.3580, 0.3798, 0.4340, 0.2607, 0.3693},
+      { 0.2518, 0.2132, 0.2176, 0.1710, 0.2279, 0.1755, 0.1467, 0.2014, 0.2087, 0.1614, 0.1650, 0.2781, 0.2680, 0.2165, 0.2315, 0.2281, 0.2374, 0.2607, 0.2165, 0.2205},
+      { 0.3915, 0.2336, 0.2393, 0.1366, 0.3067, 0.2542, 0.2807, 0.2733, 0.2181, 0.2131, 0.2019, 0.3630, 0.3942, 0.3320, 0.3285, 0.2884, 0.3375, 0.3693, 0.2205, 0.5087}},
+    {
+      { 0.2275, 0.1321, 0.3720, 0.3159, 0.3885, 0.2889, 0.2945, 0.4737, 0.2636, 0.2316, 0.1975, 0.3288, 0.3336, 0.2868, 0.2889, 0.2648, 0.2982, 0.2923, 0.2244, 0.3623},
+      { 0.1321, 0.1598, 0.3855, 0.3414, 0.2845, 0.2364, 0.2402, 0.2299, 0.2537, 0.1659, 0.1991, 0.3005, 0.3063, 0.2530, 0.2677, 0.2470, 0.2534, 0.2577, 0.2390, 0.2629},
+      { 0.3720, 0.3855, 0.2807, 0.2166, 0.2871, 0.2571, 0.2735, 0.2273, 0.2917, 0.2320, 0.2419, 0.3714, 0.3675, 0.2918, 0.3060, 0.3080, 0.3146, 0.3397, 0.2622, 0.2855},
+      { 0.3159, 0.3414, 0.2166, 0.1744, 0.2213, 0.2083, 0.2259, 0.1845, 0.2450, 0.1738, 0.1718, 0.3001, 0.2784, 0.2347, 0.2423, 0.2379, 0.2333, 0.2376, 0.2178, 0.2080},
+      { 0.3885, 0.2845, 0.2871, 0.2213, 0.3468, 0.2906, 0.2973, 0.2996, 0.2877, 0.2499, 0.2407, 0.4065, 0.4018, 0.3068, 0.3126, 0.3056, 0.3377, 0.3620, 0.2300, 0.3909},
+      { 0.2889, 0.2364, 0.2571, 0.2083, 0.2906, 0.2315, 0.2405, 0.2547, 0.2452, 0.2003, 0.2004, 0.3029, 0.3201, 0.2440, 0.2506, 0.2395, 0.2774, 0.2818, 0.2107, 0.2712},
+      { 0.2945, 0.2402, 0.2735, 0.2259, 0.2973, 0.2405, 0.2679, 0.2372, 0.2694, 0.1947, 0.2147, 0.3088, 0.3090, 0.2778, 0.2824, 0.2607, 0.2806, 0.2891, 0.2170, 0.2793},
+      { 0.4737, 0.2299, 0.2273, 0.1845, 0.2996, 0.2547, 0.2372, 0.3337, 0.2444, 0.2260, 0.1810, 0.3032, 0.3115, 0.2415, 0.2506, 0.2298, 0.2595, 0.2908, 0.2040, 0.3134},
+      { 0.2636, 0.2537, 0.2917, 0.2450, 0.2877, 0.2452, 0.2694, 0.2444, 0.2782, 0.2010, 0.2297, 0.3134, 0.3457, 0.2693, 0.2939, 0.2888, 0.2841, 0.3040, 0.2378, 0.2630},
+      { 0.2316, 0.1659, 0.2320, 0.1738, 0.2499, 0.2003, 0.1947, 0.2260, 0.2010, 0.1857, 0.1926, 0.2672, 0.2624, 0.2052, 0.2045, 0.2055, 0.2417, 0.2496, 0.1797, 0.2787},
+      { 0.1975, 0.1991, 0.2419, 0.1718, 0.2407, 0.2004, 0.2147, 0.1810, 0.2297, 0.1926, 0.2424, 0.3188, 0.3292, 0.2224, 0.2382, 0.2371, 0.2594, 0.2872, 0.2025, 0.2515},
+      { 0.3288, 0.3005, 0.3714, 0.3001, 0.4065, 0.3029, 0.3088, 0.3032, 0.3134, 0.2672, 0.3188, 0.4596, 0.4832, 0.3746, 0.3936, 0.3776, 0.4037, 0.4539, 0.2855, 0.3814},
+      { 0.3336, 0.3063, 0.3675, 0.2784, 0.4018, 0.3201, 0.3090, 0.3115, 0.3457, 0.2624, 0.3292, 0.4832, 0.5272, 0.3594, 0.3970, 0.3943, 0.4502, 0.4895, 0.2895, 0.3729},
+      { 0.2868, 0.2530, 0.2918, 0.2347, 0.3068, 0.2440, 0.2778, 0.2415, 0.2693, 0.2052, 0.2224, 0.3746, 0.3594, 0.3366, 0.3556, 0.3258, 0.3359, 0.3617, 0.2414, 0.3046},
+      { 0.2889, 0.2677, 0.3060, 0.2423, 0.3126, 0.2506, 0.2824, 0.2506, 0.2939, 0.2045, 0.2382, 0.3936, 0.3970, 0.3556, 0.3750, 0.3470, 0.3495, 0.3719, 0.2526, 0.3331},
+      { 0.2648, 0.2470, 0.3080, 0.2379, 0.3056, 0.2395, 0.2607, 0.2298, 0.2888, 0.2055, 0.2371, 0.3776, 0.3943, 0.3258, 0.3470, 0.3431, 0.3483, 0.3716, 0.2531, 0.2952},
+      { 0.2982, 0.2534, 0.3146, 0.2333, 0.3377, 0.2774, 0.2806, 0.2595, 0.2841, 0.2417, 0.2594, 0.4037, 0.4502, 0.3359, 0.3495, 0.3483, 0.3781, 0.4121, 0.2642, 0.3671},
+      { 0.2923, 0.2577, 0.3397, 0.2376, 0.3620, 0.2818, 0.2891, 0.2908, 0.3040, 0.2496, 0.2872, 0.4539, 0.4895, 0.3617, 0.3719, 0.3716, 0.4121, 0.4637, 0.2740, 0.3801},
+      { 0.2244, 0.2390, 0.2622, 0.2178, 0.2300, 0.2107, 0.2170, 0.2040, 0.2378, 0.1797, 0.2025, 0.2855, 0.2895, 0.2414, 0.2526, 0.2531, 0.2642, 0.2740, 0.2570, 0.2298},
+      { 0.3623, 0.2629, 0.2855, 0.2080, 0.3909, 0.2712, 0.2793, 0.3134, 0.2630, 0.2787, 0.2515, 0.3814, 0.3729, 0.3046, 0.3331, 0.2952, 0.3671, 0.3801, 0.2298, 0.5541}},
+    {
+      { 0.1232, 0.1570, 0.3446, 0.3097, 0.3477, 0.2351, 0.2395, 0.2636, 0.4168, 0.1989, 0.1869, 0.2960, 0.3219, 0.2399, 0.2464, 0.2400, 0.3079, 0.2723, 0.2110, 0.3061},
+      { 0.1570, 0.2276, 0.4143, 0.3797, 0.3000, 0.2634, 0.2638, 0.2721, 0.2656, 0.1883, 0.2207, 0.3163, 0.3405, 0.2597, 0.2763, 0.2855, 0.2802, 0.2740, 0.2994, 0.2531},
+      { 0.3446, 0.4143, 0.2896, 0.2319, 0.2889, 0.2694, 0.2834, 0.2644, 0.2665, 0.2293, 0.2545, 0.3665, 0.3805, 0.3039, 0.3288, 0.3405, 0.3114, 0.3343, 0.3097, 0.2810},
+      { 0.3097, 0.3797, 0.2319, 0.2128, 0.2269, 0.2421, 0.2467, 0.2328, 0.2181, 0.1735, 0.2034, 0.3209, 0.3013, 0.2504, 0.2658, 0.2766, 0.2451, 0.2605, 0.2832, 0.2155},
+      { 0.3477, 0.3000, 0.2889, 0.2269, 0.3211, 0.2721, 0.2939, 0.2679, 0.2739, 0.2233, 0.2464, 0.3930, 0.4146, 0.3094, 0.3129, 0.3232, 0.3466, 0.3535, 0.2516, 0.3513},
+      { 0.2351, 0.2634, 0.2694, 0.2421, 0.2721, 0.2460, 0.2346, 0.2485, 0.2476, 0.1912, 0.2046, 0.2817, 0.3037, 0.2348, 0.2476, 0.2414, 0.2567, 0.2771, 0.2421, 0.2535},
+      { 0.2395, 0.2638, 0.2834, 0.2467, 0.2939, 0.2346, 0.2769, 0.2656, 0.2655, 0.1821, 0.1978, 0.3056, 0.3186, 0.2673, 0.2832, 0.2687, 0.2753, 0.2847, 0.2307, 0.2598},
+      { 0.2636, 0.2721, 0.2644, 0.2328, 0.2679, 0.2485, 0.2656, 0.2704, 0.2953, 0.2147, 0.2190, 0.2997, 0.3188, 0.2608, 0.2748, 0.2578, 0.2782, 0.2842, 0.2293, 0.2752},
+      { 0.4168, 0.2656, 0.2665, 0.2181, 0.2739, 0.2476, 0.2655, 0.2953, 0.2567, 0.1786, 0.1997, 0.3084, 0.3619, 0.2559, 0.2787, 0.2803, 0.2916, 0.2979, 0.2500, 0.3000},
+      { 0.1989, 0.1883, 0.2293, 0.1735, 0.2233, 0.1912, 0.1821, 0.2147, 0.1786, 0.1682, 0.1780, 0.2511, 0.2732, 0.1992, 0.1986, 0.1996, 0.2114, 0.2441, 0.1942, 0.2388},
+      { 0.1869, 0.2207, 0.2545, 0.2034, 0.2464, 0.2046, 0.1978, 0.2190, 0.1997, 0.1780, 0.2096, 0.3262, 0.3553, 0.2218, 0.2425, 0.2520, 0.2617, 0.2916, 0.2482, 0.2441},
+      { 0.2960, 0.3163, 0.3665, 0.3209, 0.3930, 0.2817, 0.3056, 0.2997, 0.3084, 0.2511, 0.3262, 0.4280, 0.4668, 0.3764, 0.3965, 0.3938, 0.3956, 0.4520, 0.2976, 0.3834},
+      { 0.3219, 0.3405, 0.3805, 0.3013, 0.4146, 0.3037, 0.3186, 0.3188, 0.3619, 0.2732, 0.3553, 0.4668, 0.5439, 0.3874, 0.4465, 0.4380, 0.4522, 0.4902, 0.2967, 0.3876},
+      { 0.2399, 0.2597, 0.3039, 0.2504, 0.3094, 0.2348, 0.2673, 0.2608, 0.2559, 0.1992, 0.2218, 0.3764, 0.3874, 0.3391, 0.3496, 0.3322, 0.3321, 0.3578, 0.2509, 0.3161},
+      { 0.2464, 0.2763, 0.3288, 0.2658, 0.3129, 0.2476, 0.2832, 0.2748, 0.2787, 0.1986, 0.2425, 0.3965, 0.4465, 0.3496, 0.3758, 0.3523, 0.3509, 0.3852, 0.2620, 0.3188},
+      { 0.2400, 0.2855, 0.3405, 0.2766, 0.3232, 0.2414, 0.2687, 0.2578, 0.2803, 0.1996, 0.2520, 0.3938, 0.4380, 0.3322, 0.3523, 0.3558, 0.3443, 0.3809, 0.2685, 0.3073},
+      { 0.3079, 0.2802, 0.3114, 0.2451, 0.3466, 0.2567, 0.2753, 0.2782, 0.2916, 0.2114, 0.2617, 0.3956, 0.4522, 0.3321, 0.3509, 0.3443, 0.4020, 0.3910, 0.2717, 0.3335},
+      { 0.2723, 0.2740, 0.3343, 0.2605, 0.3535, 0.2771, 0.2847, 0.2842, 0.2979, 0.2441, 0.2916, 0.4520, 0.4902, 0.3578, 0.3852, 0.3809, 0.3910, 0.4432, 0.2821, 0.3566},
+      { 0.2110, 0.2994, 0.3097, 0.2832, 0.2516, 0.2421, 0.2307, 0.2293, 0.2500, 0.1942, 0.2482, 0.2976, 0.2967, 0.2509, 0.2620, 0.2685, 0.2717, 0.2821, 0.3380, 0.2497},
+      { 0.3061, 0.2531, 0.2810, 0.2155, 0.3513, 0.2535, 0.2598, 0.2752, 0.3000, 0.2388, 0.2441, 0.3834, 0.3876, 0.3161, 0.3188, 0.3073, 0.3335, 0.3566, 0.2497, 0.5007}},
+    {
+      { 0.1301, 0.0811, 0.3165, 0.2480, 0.2654, 0.2570, 0.2295, 0.2316, 0.1989, 0.3417, 0.1498, 0.2673, 0.2509, 0.2118, 0.2002, 0.2086, 0.2482, 0.2509, 0.2371, 0.3318},
+      { 0.0811, 0.1110, 0.3284, 0.2741, 0.2531, 0.1904, 0.1975, 0.1728, 0.1949, 0.1321, 0.1351, 0.2648, 0.2591, 0.1918, 0.1980, 0.1930, 0.1935, 0.2168, 0.1738, 0.2184},
+      { 0.3165, 0.3284, 0.2294, 0.1593, 0.2537, 0.1938, 0.2119, 0.2174, 0.2357, 0.0937, 0.1952, 0.3356, 0.3228, 0.2259, 0.2424, 0.2489, 0.2389, 0.2849, 0.1717, 0.2205},
+      { 0.2480, 0.2741, 0.1593, 0.1046, 0.1679, 0.1339, 0.1513, 0.1628, 0.1790, 0.0224, 0.1091, 0.2589, 0.2320, 0.1637, 0.1673, 0.1686, 0.1550, 0.1863, 0.1139, 0.1168},
+      { 0.2654, 0.2531, 0.2537, 0.1679, 0.2912, 0.2243, 0.2381, 0.2322, 0.2199, 0.1707, 0.2007, 0.3669, 0.3536, 0.2608, 0.2610, 0.2540, 0.2682, 0.3132, 0.1856, 0.2913},
+      { 0.2570, 0.1904, 0.1938, 0.1339, 0.2243, 0.1888, 0.1857, 0.1929, 0.1732, 0.1150, 0.1443, 0.2500, 0.2729, 0.1988, 0.1987, 0.1872, 0.2188, 0.2463, 0.1561, 0.2568},
+      { 0.2295, 0.1975, 0.2119, 0.1513, 0.2381, 0.1857, 0.2047, 0.1975, 0.2057, 0.1007, 0.1502, 0.2699, 0.2796, 0.2340, 0.2334, 0.2105, 0.2298, 0.2609, 0.1550, 0.2515},
+      { 0.2316, 0.1728, 0.2174, 0.1628, 0.2322, 0.1929, 0.1975, 0.2497, 0.2097, 0.1810, 0.1826, 0.2706, 0.2818, 0.1916, 0.1893, 0.1978, 0.2173, 0.2480, 0.1635, 0.2576},
+      { 0.1989, 0.1949, 0.2357, 0.1790, 0.2199, 0.1732, 0.2057, 0.2097, 0.2255, 0.0822, 0.1820, 0.2821, 0.2962, 0.2094, 0.2198, 0.2330, 0.2376, 0.2568, 0.1607, 0.2048},
+      { 0.3417, 0.1321, 0.0937, 0.0224, 0.1707, 0.1150, 0.1007, 0.1810, 0.0822, 0.0746, 0.0443, 0.1745, 0.1945, 0.1155, 0.1131, 0.0945, 0.1562, 0.1641, 0.0708, 0.2378},
+      { 0.1498, 0.1351, 0.1952, 0.1091, 0.2007, 0.1443, 0.1502, 0.1826, 0.1820, 0.0443, 0.1503, 0.3005, 0.3188, 0.1608, 0.1795, 0.1866, 0.2142, 0.2471, 0.1116, 0.1974},
+      { 0.2673, 0.2648, 0.3356, 0.2589, 0.3669, 0.2500, 0.2699, 0.2706, 0.2821, 0.1745, 0.3005, 0.4037, 0.4473, 0.3336, 0.3491, 0.3440, 0.3573, 0.4094, 0.2413, 0.3428},
+      { 0.2509, 0.2591, 0.3228, 0.2320, 0.3536, 0.2729, 0.2796, 0.2818, 0.2962, 0.1945, 0.3188, 0.4473, 0.5045, 0.3350, 0.3581, 0.3643, 0.4132, 0.4494, 0.2450, 0.3343},
+      { 0.2118, 0.1918, 0.2259, 0.1637, 0.2608, 0.1988, 0.2340, 0.1916, 0.2094, 0.1155, 0.1608, 0.3336, 0.3350, 0.3090, 0.3135, 0.2899, 0.2902, 0.3215, 0.2018, 0.2915},
+      { 0.2002, 0.1980, 0.2424, 0.1673, 0.2610, 0.1987, 0.2334, 0.1893, 0.2198, 0.1131, 0.1795, 0.3491, 0.3581, 0.3135, 0.3325, 0.3185, 0.3054, 0.3440, 0.2144, 0.2879},
+      { 0.2086, 0.1930, 0.2489, 0.1686, 0.2540, 0.1872, 0.2105, 0.1978, 0.2330, 0.0945, 0.1866, 0.3440, 0.3643, 0.2899, 0.3185, 0.2977, 0.2914, 0.3421, 0.2003, 0.2440},
+      { 0.2482, 0.1935, 0.2389, 0.1550, 0.2682, 0.2188, 0.2298, 0.2173, 0.2376, 0.1562, 0.2142, 0.3573, 0.4132, 0.2902, 0.3054, 0.2914, 0.3718, 0.3772, 0.2201, 0.3216},
+      { 0.2509, 0.2168, 0.2849, 0.1863, 0.3132, 0.2463, 0.2609, 0.2480, 0.2568, 0.1641, 0.2471, 0.4094, 0.4494, 0.3215, 0.3440, 0.3421, 0.3772, 0.4061, 0.2350, 0.3245},
+      { 0.2371, 0.1738, 0.1717, 0.1139, 0.1856, 0.1561, 0.1550, 0.1635, 0.1607, 0.0708, 0.1116, 0.2413, 0.2450, 0.2018, 0.2144, 0.2003, 0.2201, 0.2350, 0.1596, 0.2331},
+      { 0.3318, 0.2184, 0.2205, 0.1168, 0.2913, 0.2568, 0.2515, 0.2576, 0.2048, 0.2378, 0.1974, 0.3428, 0.3343, 0.2915, 0.2879, 0.2440, 0.3216, 0.3245, 0.2331, 0.5095}},
+    {
+      { 0.0470, 0.0404, 0.3039, 0.2745, 0.2655, 0.1947, 0.2161, 0.1975, 0.1869, 0.1498, 0.2900, 0.2613, 0.2551, 0.2149, 0.2245, 0.2192, 0.2497, 0.2430, 0.1921, 0.2776},
+      { 0.0404, 0.0672, 0.3291, 0.2718, 0.2218, 0.1685, 0.1793, 0.1776, 0.1841, 0.1203, 0.1433, 0.2491, 0.2483, 0.1778, 0.1714, 0.1937, 0.1986, 0.2008, 0.1574, 0.1690},
+      { 0.3039, 0.3291, 0.2217, 0.1598, 0.2447, 0.1941, 0.2137, 0.2236, 0.2354, 0.1858, 0.1546, 0.3358, 0.3395, 0.2342, 0.2419, 0.2410, 0.2479, 0.2804, 0.1932, 0.2247},
+      { 0.2745, 0.2718, 0.1598, 0.1133, 0.1835, 0.1340, 0.1601, 0.1680, 0.1923, 0.1235, 0.0758, 0.2601, 0.2550, 0.1739, 0.1769, 0.1693, 0.1755, 0.1977, 0.1360, 0.1272},
+      { 0.2655, 0.2218, 0.2447, 0.1835, 0.2847, 0.2116, 0.2469, 0.2367, 0.2327, 0.1787, 0.2258, 0.3577, 0.3736, 0.2399, 0.2668, 0.2695, 0.2998, 0.3235, 0.1837, 0.3002},
+      { 0.1947, 0.1685, 0.1941, 0.1340, 0.2116, 0.1558, 0.1720, 0.1739, 0.1695, 0.1430, 0.1434, 0.2434, 0.2607, 0.1708, 0.1811, 0.1755, 0.1935, 0.2230, 0.1427, 0.1997},
+      { 0.2161, 0.1793, 0.2137, 0.1601, 0.2469, 0.1720, 0.2001, 0.2029, 0.2048, 0.1409, 0.1432, 0.2737, 0.2914, 0.2217, 0.2255, 0.2068, 0.2248, 0.2533, 0.1498, 0.2436},
+      { 0.1975, 0.1776, 0.2236, 0.1680, 0.2367, 0.1739, 0.2029, 0.2381, 0.2236, 0.1588, 0.1749, 0.2698, 0.2885, 0.1958, 0.1973, 0.1998, 0.2224, 0.2421, 0.1561, 0.2441},
+      { 0.1869, 0.1841, 0.2354, 0.1923, 0.2327, 0.1695, 0.2048, 0.2236, 0.2139, 0.1515, 0.1652, 0.2768, 0.2977, 0.2170, 0.2358, 0.2275, 0.2462, 0.2508, 0.1715, 0.1818},
+      { 0.1498, 0.1203, 0.1858, 0.1235, 0.1787, 0.1430, 0.1409, 0.1588, 0.1515, 0.1251, 0.1080, 0.2232, 0.2369, 0.1624, 0.1590, 0.1527, 0.1832, 0.2081, 0.1303, 0.1888},
+      { 0.2900, 0.1433, 0.1546, 0.0758, 0.2258, 0.1434, 0.1432, 0.1749, 0.1652, 0.1080, 0.1098, 0.2799, 0.2972, 0.1688, 0.1773, 0.1798, 0.2083, 0.2465, 0.1309, 0.2317},
+      { 0.2613, 0.2491, 0.3358, 0.2601, 0.3577, 0.2434, 0.2737, 0.2698, 0.2768, 0.2232, 0.2799, 0.3848, 0.4384, 0.3288, 0.3539, 0.3454, 0.3776, 0.3988, 0.2393, 0.3338},
+      { 0.2551, 0.2483, 0.3395, 0.2550, 0.3736, 0.2607, 0.2914, 0.2885, 0.2977, 0.2369, 0.2972, 0.4384, 0.4738, 0.3554, 0.3644, 0.3580, 0.3871, 0.4261, 0.2409, 0.3623},
+      { 0.2149, 0.1778, 0.2342, 0.1739, 0.2399, 0.1708, 0.2217, 0.1958, 0.2170, 0.1624, 0.1688, 0.3288, 0.3554, 0.2848, 0.2869, 0.2776, 0.2655, 0.3142, 0.1880, 0.2753},
+      { 0.2245, 0.1714, 0.2419, 0.1769, 0.2668, 0.1811, 0.2255, 0.1973, 0.2358, 0.1590, 0.1773, 0.3539, 0.3644, 0.2869, 0.3015, 0.3038, 0.3049, 0.3329, 0.1929, 0.2744},
+      { 0.2192, 0.1937, 0.2410, 0.1693, 0.2695, 0.1755, 0.2068, 0.1998, 0.2275, 0.1527, 0.1798, 0.3454, 0.3580, 0.2776, 0.3038, 0.2972, 0.3045, 0.3425, 0.1876, 0.2462},
+      { 0.2497, 0.1986, 0.2479, 0.1755, 0.2998, 0.1935, 0.2248, 0.2224, 0.2462, 0.1832, 0.2083, 0.3776, 0.3871, 0.2655, 0.3049, 0.3045, 0.3660, 0.3754, 0.2089, 0.3029},
+      { 0.2430, 0.2008, 0.2804, 0.1977, 0.3235, 0.2230, 0.2533, 0.2421, 0.2508, 0.2081, 0.2465, 0.3988, 0.4261, 0.3142, 0.3329, 0.3425, 0.3754, 0.4097, 0.2248, 0.3174},
+      { 0.1921, 0.1574, 0.1932, 0.1360, 0.1837, 0.1427, 0.1498, 0.1561, 0.1715, 0.1303, 0.1309, 0.2393, 0.2409, 0.1880, 0.1929, 0.1876, 0.2089, 0.2248, 0.1685, 0.2126},
+      { 0.2776, 0.1690, 0.2247, 0.1272, 0.3002, 0.1997, 0.2436, 0.2441, 0.1818, 0.1888, 0.2317, 0.3338, 0.3623, 0.2753, 0.2744, 0.2462, 0.3029, 0.3174, 0.2126, 0.5010}},
+    {
+      { 0.2061, 0.1838, 0.4002, 0.3470, 0.4401, 0.2985, 0.3101, 0.3288, 0.2960, 0.2673, 0.2613, 0.5232, 0.4367, 0.3126, 0.3243, 0.3112, 0.3486, 0.4075, 0.2708, 0.3493},
+      { 0.1838, 0.2143, 0.4313, 0.3790, 0.3395, 0.2763, 0.2937, 0.2916, 0.2918, 0.2453, 0.2374, 0.3207, 0.3654, 0.2787, 0.2883, 0.2857, 0.2920, 0.3116, 0.2622, 0.2864},
+      { 0.4002, 0.4313, 0.3131, 0.2400, 0.3081, 0.3098, 0.3234, 0.3044, 0.3327, 0.2905, 0.2918, 0.3093, 0.3808, 0.3278, 0.3417, 0.3362, 0.3341, 0.3352, 0.2996, 0.3386},
+      { 0.3470, 0.3790, 0.2400, 0.2133, 0.2479, 0.2507, 0.2679, 0.2680, 0.2786, 0.2225, 0.2084, 0.2546, 0.2915, 0.2577, 0.2632, 0.2658, 0.2711, 0.2653, 0.2383, 0.2527},
+      { 0.4401, 0.3395, 0.3081, 0.2479, 0.3819, 0.3206, 0.3315, 0.3117, 0.2971, 0.2745, 0.2697, 0.4071, 0.4247, 0.3445, 0.3627, 0.3536, 0.3705, 0.3998, 0.2809, 0.3851},
+      { 0.2985, 0.2763, 0.3098, 0.2507, 0.3206, 0.2844, 0.2900, 0.2878, 0.2955, 0.2569, 0.2613, 0.2929, 0.3434, 0.2886, 0.2908, 0.2837, 0.3103, 0.3202, 0.2660, 0.3160},
+      { 0.3101, 0.2937, 0.3234, 0.2679, 0.3315, 0.2900, 0.3238, 0.2919, 0.3147, 0.2594, 0.2649, 0.2919, 0.3628, 0.3274, 0.3426, 0.3262, 0.3375, 0.3388, 0.2737, 0.3368},
+      { 0.3288, 0.2916, 0.3044, 0.2680, 0.3117, 0.2878, 0.2919, 0.3296, 0.3024, 0.2709, 0.2786, 0.3251, 0.3712, 0.2824, 0.2853, 0.2783, 0.3111, 0.3289, 0.2582, 0.3085},
+      { 0.2960, 0.2918, 0.3327, 0.2786, 0.2971, 0.2955, 0.3147, 0.3024, 0.3109, 0.2519, 0.2724, 0.2888, 0.3698, 0.3044, 0.3158, 0.3172, 0.3275, 0.3301, 0.2741, 0.3105},
+      { 0.2673, 0.2453, 0.2905, 0.2225, 0.2745, 0.2569, 0.2594, 0.2709, 0.2519, 0.2401, 0.2456, 0.2395, 0.3083, 0.2468, 0.2459, 0.2482, 0.2956, 0.2624, 0.2421, 0.2995},
+      { 0.2613, 0.2374, 0.2918, 0.2084, 0.2697, 0.2613, 0.2649, 0.2786, 0.2724, 0.2456, 0.2701, 0.2726, 0.3547, 0.2589, 0.2639, 0.2646, 0.2944, 0.2916, 0.2496, 0.2848},
+      { 0.5232, 0.3207, 0.3093, 0.2546, 0.4071, 0.2929, 0.2919, 0.3251, 0.2888, 0.2395, 0.2726, 0.3988, 0.4327, 0.3708, 0.3871, 0.3723, 0.3898, 0.4360, 0.2793, 0.4016},
+      { 0.4367, 0.3654, 0.3808, 0.2915, 0.4247, 0.3434, 0.3628, 0.3712, 0.3698, 0.3083, 0.3547, 0.4327, 0.4856, 0.4286, 0.4461, 0.4249, 0.4677, 0.5038, 0.3483, 0.4510},
+      { 0.3126, 0.2787, 0.3278, 0.2577, 0.3445, 0.2886, 0.3274, 0.2824, 0.3044, 0.2468, 0.2589, 0.3708, 0.4286, 0.4098, 0.4302, 0.4103, 0.4027, 0.4187, 0.3073, 0.3834},
+      { 0.3243, 0.2883, 0.3417, 0.2632, 0.3627, 0.2908, 0.3426, 0.2853, 0.3158, 0.2459, 0.2639, 0.3871, 0.4461, 0.4302, 0.4586, 0.4412, 0.4276, 0.4320, 0.3102, 0.4001},
+      { 0.3112, 0.2857, 0.3362, 0.2658, 0.3536, 0.2837, 0.3262, 0.2783, 0.3172, 0.2482, 0.2646, 0.3723, 0.4249, 0.4103, 0.4412, 0.4335, 0.4212, 0.4295, 0.3104, 0.3963},
+      { 0.3486, 0.2920, 0.3341, 0.2711, 0.3705, 0.3103, 0.3375, 0.3111, 0.3275, 0.2956, 0.2944, 0.3898, 0.4677, 0.4027, 0.4276, 0.4212, 0.4520, 0.4575, 0.3286, 0.4245},
+      { 0.4075, 0.3116, 0.3352, 0.2653, 0.3998, 0.3202, 0.3388, 0.3289, 0.3301, 0.2624, 0.2916, 0.4360, 0.5038, 0.4187, 0.4320, 0.4295, 0.4575, 0.4850, 0.3334, 0.4436},
+      { 0.2708, 0.2622, 0.2996, 0.2383, 0.2809, 0.2660, 0.2737, 0.2582, 0.2741, 0.2421, 0.2496, 0.2793, 0.3483, 0.3073, 0.3102, 0.3104, 0.3286, 0.3334, 0.2931, 0.3114},
+      { 0.3493, 0.2864, 0.3386, 0.2527, 0.3851, 0.3160, 0.3368, 0.3085, 0.3105, 0.2995, 0.2848, 0.4016, 0.4510, 0.3834, 0.4001, 0.3963, 0.4245, 0.4436, 0.3114, 0.6443}},
+    {
+      { 0.2077, 0.2017, 0.3828, 0.3321, 0.4542, 0.3025, 0.2926, 0.3336, 0.3219, 0.2509, 0.2551, 0.4367, 0.4669, 0.2923, 0.3011, 0.2978, 0.3072, 0.3827, 0.2501, 0.3537},
+      { 0.2017, 0.2099, 0.4130, 0.3600, 0.3114, 0.2718, 0.2885, 0.2767, 0.2894, 0.2206, 0.2314, 0.3452, 0.3077, 0.2612, 0.2575, 0.2746, 0.2683, 0.2859, 0.2540, 0.2829},
+      { 0.3828, 0.4130, 0.3219, 0.2316, 0.3216, 0.3161, 0.3291, 0.2968, 0.3165, 0.2746, 0.2765, 0.3601, 0.2757, 0.3152, 0.3309, 0.3145, 0.3076, 0.3207, 0.2885, 0.3159},
+      { 0.3321, 0.3600, 0.2316, 0.1922, 0.2352, 0.2407, 0.2593, 0.2501, 0.2512, 0.2124, 0.1996, 0.2970, 0.1937, 0.2373, 0.2503, 0.2346, 0.2500, 0.2437, 0.2167, 0.2288},
+      { 0.4542, 0.3114, 0.3216, 0.2352, 0.3816, 0.3225, 0.3247, 0.3132, 0.3006, 0.2663, 0.2864, 0.4104, 0.3483, 0.3297, 0.3435, 0.3312, 0.3720, 0.3673, 0.2838, 0.3372},
+      { 0.3025, 0.2718, 0.3161, 0.2407, 0.3225, 0.2918, 0.2883, 0.2971, 0.2906, 0.2457, 0.2656, 0.3247, 0.2785, 0.2764, 0.2771, 0.2699, 0.2881, 0.3073, 0.2733, 0.3525},
+      { 0.2926, 0.2885, 0.3291, 0.2593, 0.3247, 0.2883, 0.3014, 0.2852, 0.2979, 0.2411, 0.2738, 0.3535, 0.2941, 0.3418, 0.3349, 0.3135, 0.3300, 0.3345, 0.2582, 0.3260},
+      { 0.3336, 0.2767, 0.2968, 0.2501, 0.3132, 0.2971, 0.2852, 0.3252, 0.3012, 0.2566, 0.2660, 0.3405, 0.3234, 0.2504, 0.2650, 0.2546, 0.3119, 0.2971, 0.2444, 0.3012},
+      { 0.3219, 0.2894, 0.3165, 0.2512, 0.3006, 0.2906, 0.2979, 0.3012, 0.2927, 0.2387, 0.2867, 0.3202, 0.2934, 0.2704, 0.2842, 0.2960, 0.3275, 0.2895, 0.2716, 0.2861},
+      { 0.2509, 0.2206, 0.2746, 0.2124, 0.2663, 0.2457, 0.2411, 0.2566, 0.2387, 0.2181, 0.2141, 0.2691, 0.2267, 0.2250, 0.2213, 0.2268, 0.2548, 0.2439, 0.2272, 0.2650},
+      { 0.2551, 0.2314, 0.2765, 0.1996, 0.2864, 0.2656, 0.2738, 0.2660, 0.2867, 0.2141, 0.2775, 0.3269, 0.2628, 0.2374, 0.2534, 0.2560, 0.2686, 0.2623, 0.2405, 0.2635},
+      { 0.4367, 0.3452, 0.3601, 0.2970, 0.4104, 0.3247, 0.3535, 0.3405, 0.3202, 0.2691, 0.3269, 0.4414, 0.4305, 0.4109, 0.4318, 0.4188, 0.4294, 0.4509, 0.3168, 0.4245},
+      { 0.4669, 0.3077, 0.2757, 0.1937, 0.3483, 0.2785, 0.2941, 0.3234, 0.2934, 0.2267, 0.2628, 0.4305, 0.4484, 0.3499, 0.3919, 0.3515, 0.3806, 0.4468, 0.2738, 0.4299},
+      { 0.2923, 0.2612, 0.3152, 0.2373, 0.3297, 0.2764, 0.3418, 0.2504, 0.2704, 0.2250, 0.2374, 0.4109, 0.3499, 0.3865, 0.4178, 0.4014, 0.3952, 0.4057, 0.2896, 0.3866},
+      { 0.3011, 0.2575, 0.3309, 0.2503, 0.3435, 0.2771, 0.3349, 0.2650, 0.2842, 0.2213, 0.2534, 0.4318, 0.3919, 0.4178, 0.4615, 0.4322, 0.4084, 0.4281, 0.3006, 0.3907},
+      { 0.2978, 0.2746, 0.3145, 0.2346, 0.3312, 0.2699, 0.3135, 0.2546, 0.2960, 0.2268, 0.2560, 0.4188, 0.3515, 0.4014, 0.4322, 0.4182, 0.3998, 0.4133, 0.2886, 0.3946},
+      { 0.3072, 0.2683, 0.3076, 0.2500, 0.3720, 0.2881, 0.3300, 0.3119, 0.3275, 0.2548, 0.2686, 0.4294, 0.3806, 0.3952, 0.4084, 0.3998, 0.4430, 0.4487, 0.2979, 0.3953},
+      { 0.3827, 0.2859, 0.3207, 0.2437, 0.3673, 0.3073, 0.3345, 0.2971, 0.2895, 0.2439, 0.2623, 0.4509, 0.4468, 0.4057, 0.4281, 0.4133, 0.4487, 0.4808, 0.3107, 0.4388},
+      { 0.2501, 0.2540, 0.2885, 0.2167, 0.2838, 0.2733, 0.2582, 0.2444, 0.2716, 0.2272, 0.2405, 0.3168, 0.2738, 0.2896, 0.3006, 0.2886, 0.2979, 0.3107, 0.2795, 0.2971},
+      { 0.3537, 0.2829, 0.3159, 0.2288, 0.3372, 0.3525, 0.3260, 0.3012, 0.2861, 0.2650, 0.2635, 0.4245, 0.4299, 0.3866, 0.3907, 0.3946, 0.3953, 0.4388, 0.2971, 0.5837}},
+    {
+      { 0.1068, 0.1069, 0.3411, 0.3178, 0.3054, 0.2718, 0.3320, 0.2868, 0.2399, 0.2118, 0.2149, 0.3126, 0.2923, 0.3077, 0.2945, 0.2701, 0.2907, 0.2804, 0.2214, 0.3208},
+      { 0.1069, 0.1107, 0.3529, 0.3030, 0.2536, 0.1948, 0.2130, 0.2171, 0.2053, 0.1417, 0.1706, 0.2636, 0.2704, 0.1506, 0.1642, 0.1661, 0.1744, 0.1940, 0.1547, 0.1759},
+      { 0.3411, 0.3529, 0.2239, 0.1596, 0.2624, 0.2186, 0.2272, 0.2323, 0.2519, 0.1842, 0.2009, 0.3124, 0.3224, 0.1539, 0.1669, 0.1927, 0.1931, 0.2394, 0.1721, 0.1962},
+      { 0.3178, 0.3030, 0.1596, 0.1168, 0.2030, 0.1630, 0.1669, 0.1782, 0.2057, 0.1225, 0.1221, 0.2601, 0.2452, 0.0970, 0.1131, 0.1269, 0.1180, 0.1628, 0.1191, 0.1059},
+      { 0.3054, 0.2536, 0.2624, 0.2030, 0.2929, 0.2545, 0.2830, 0.2373, 0.2345, 0.1872, 0.2031, 0.3482, 0.3518, 0.2344, 0.2391, 0.2368, 0.2543, 0.2888, 0.2087, 0.2604},
+      { 0.2718, 0.1948, 0.2186, 0.1630, 0.2545, 0.1973, 0.2026, 0.2060, 0.2070, 0.1579, 0.1550, 0.2487, 0.2662, 0.1573, 0.1715, 0.1785, 0.1880, 0.2159, 0.1629, 0.2195},
+      { 0.3320, 0.2130, 0.2272, 0.1669, 0.2830, 0.2026, 0.2371, 0.2312, 0.2247, 0.1540, 0.1517, 0.2808, 0.2923, 0.2106, 0.2316, 0.2167, 0.2247, 0.2519, 0.1791, 0.2547},
+      { 0.2868, 0.2171, 0.2323, 0.1782, 0.2373, 0.2060, 0.2312, 0.2693, 0.2298, 0.1785, 0.1743, 0.2487, 0.2777, 0.1657, 0.1677, 0.1739, 0.1973, 0.2111, 0.1612, 0.2011},
+      { 0.2399, 0.2053, 0.2519, 0.2057, 0.2345, 0.2070, 0.2247, 0.2298, 0.2290, 0.1667, 0.1929, 0.2664, 0.3012, 0.1662, 0.1745, 0.1875, 0.2076, 0.2170, 0.1660, 0.1801},
+      { 0.2118, 0.1417, 0.1842, 0.1225, 0.1872, 0.1579, 0.1540, 0.1785, 0.1667, 0.1179, 0.1409, 0.2130, 0.2397, 0.0829, 0.0990, 0.1252, 0.1461, 0.1740, 0.1269, 0.1711},
+      { 0.2149, 0.1706, 0.2009, 0.1221, 0.2031, 0.1550, 0.1517, 0.1743, 0.1929, 0.1409, 0.1684, 0.2842, 0.3055, 0.0782, 0.1048, 0.1305, 0.1658, 0.1939, 0.1239, 0.1502},
+      { 0.3126, 0.2636, 0.3124, 0.2601, 0.3482, 0.2487, 0.2808, 0.2487, 0.2664, 0.2130, 0.2842, 0.3842, 0.4275, 0.2791, 0.2994, 0.3206, 0.3249, 0.3867, 0.2445, 0.3405},
+      { 0.2923, 0.2704, 0.3224, 0.2452, 0.3518, 0.2662, 0.2923, 0.2777, 0.3012, 0.2397, 0.3055, 0.4275, 0.4262, 0.2836, 0.3194, 0.3311, 0.3689, 0.4171, 0.2467, 0.3357},
+      { 0.3077, 0.1506, 0.1539, 0.0970, 0.2344, 0.1573, 0.2106, 0.1657, 0.1662, 0.0829, 0.0782, 0.2791, 0.2836, 0.2778, 0.2862, 0.2591, 0.2471, 0.2930, 0.1554, 0.2790},
+      { 0.2945, 0.1642, 0.1669, 0.1131, 0.2391, 0.1715, 0.2316, 0.1677, 0.1745, 0.0990, 0.1048, 0.2994, 0.3194, 0.2862, 0.3121, 0.2818, 0.2713, 0.3143, 0.1740, 0.2869},
+      { 0.2701, 0.1661, 0.1927, 0.1269, 0.2368, 0.1785, 0.2167, 0.1739, 0.1875, 0.1252, 0.1305, 0.3206, 0.3311, 0.2591, 0.2818, 0.2927, 0.2775, 0.3294, 0.1820, 0.2725},
+      { 0.2907, 0.1744, 0.1931, 0.1180, 0.2543, 0.1880, 0.2247, 0.1973, 0.2076, 0.1461, 0.1658, 0.3249, 0.3689, 0.2471, 0.2713, 0.2775, 0.3206, 0.3398, 0.1888, 0.2972},
+      { 0.2804, 0.1940, 0.2394, 0.1628, 0.2888, 0.2159, 0.2519, 0.2111, 0.2170, 0.1740, 0.1939, 0.3867, 0.4171, 0.2930, 0.3143, 0.3294, 0.3398, 0.4030, 0.2198, 0.3377},
+      { 0.2214, 0.1547, 0.1721, 0.1191, 0.2087, 0.1629, 0.1791, 0.1612, 0.1660, 0.1269, 0.1239, 0.2445, 0.2467, 0.1554, 0.1740, 0.1820, 0.1888, 0.2198, 0.1702, 0.1992},
+      { 0.3208, 0.1759, 0.1962, 0.1059, 0.2604, 0.2195, 0.2547, 0.2011, 0.1801, 0.1711, 0.1502, 0.3405, 0.3357, 0.2790, 0.2869, 0.2725, 0.2972, 0.3377, 0.1992, 0.4842}},
+    {
+      { 0.1105, 0.1119, 0.3429, 0.3133, 0.3136, 0.2533, 0.3126, 0.2889, 0.2464, 0.2002, 0.2245, 0.3243, 0.3011, 0.2945, 0.3148, 0.2854, 0.3106, 0.2917, 0.1999, 0.3128},
+      { 0.1119, 0.1250, 0.3661, 0.3106, 0.2634, 0.2029, 0.2145, 0.2237, 0.2168, 0.1514, 0.1796, 0.2736, 0.2783, 0.1617, 0.1576, 0.1626, 0.1865, 0.2026, 0.1576, 0.1767},
+      { 0.3429, 0.3661, 0.2328, 0.1667, 0.2612, 0.2326, 0.2358, 0.2457, 0.2561, 0.1951, 0.2076, 0.3084, 0.3181, 0.1634, 0.1485, 0.1823, 0.1871, 0.2282, 0.1857, 0.2032},
+      { 0.3133, 0.3106, 0.1667, 0.1305, 0.1999, 0.1725, 0.1739, 0.1910, 0.2132, 0.1313, 0.1330, 0.2538, 0.2469, 0.1137, 0.0924, 0.1144, 0.1076, 0.1516, 0.1337, 0.1259},
+      { 0.3136, 0.2634, 0.2612, 0.1999, 0.3120, 0.2642, 0.2834, 0.2454, 0.2416, 0.1764, 0.2151, 0.3519, 0.3686, 0.2446, 0.2265, 0.2345, 0.2581, 0.2924, 0.2068, 0.2630},
+      { 0.2533, 0.2029, 0.2326, 0.1725, 0.2642, 0.1997, 0.2097, 0.2135, 0.2283, 0.1642, 0.1651, 0.2509, 0.2672, 0.1656, 0.1560, 0.1702, 0.1905, 0.2138, 0.1675, 0.2166},
+      { 0.3126, 0.2145, 0.2358, 0.1739, 0.2834, 0.2097, 0.2383, 0.2338, 0.2301, 0.1588, 0.1598, 0.2847, 0.2976, 0.2266, 0.2110, 0.2118, 0.2266, 0.2569, 0.1866, 0.2317},
+      { 0.2889, 0.2237, 0.2457, 0.1910, 0.2454, 0.2135, 0.2338, 0.2801, 0.2390, 0.1748, 0.1850, 0.2511, 0.2733, 0.1706, 0.1619, 0.1762, 0.2031, 0.2032, 0.1613, 0.2168},
+      { 0.2464, 0.2168, 0.2561, 0.2132, 0.2416, 0.2283, 0.2301, 0.2390, 0.2341, 0.1727, 0.2103, 0.2698, 0.2985, 0.1707, 0.1609, 0.1802, 0.2029, 0.2138, 0.1767, 0.1762},
+      { 0.2002, 0.1514, 0.1951, 0.1313, 0.1764, 0.1642, 0.1588, 0.1748, 0.1727, 0.1331, 0.1491, 0.2074, 0.2308, 0.0966, 0.0771, 0.1180, 0.1426, 0.1662, 0.1360, 0.1740},
+      { 0.2245, 0.1796, 0.2076, 0.1330, 0.2151, 0.1651, 0.1598, 0.1850, 0.2103, 0.1491, 0.1629, 0.2782, 0.2951, 0.0929, 0.0871, 0.1259, 0.1470, 0.1904, 0.1316, 0.1526},
+      { 0.3243, 0.2736, 0.3084, 0.2538, 0.3519, 0.2509, 0.2847, 0.2511, 0.2698, 0.2074, 0.2782, 0.3765, 0.4173, 0.3015, 0.2816, 0.3177, 0.3417, 0.3855, 0.2503, 0.3344},
+      { 0.3011, 0.2783, 0.3181, 0.2469, 0.3686, 0.2672, 0.2976, 0.2733, 0.2985, 0.2308, 0.2951, 0.4173, 0.4126, 0.3074, 0.3102, 0.3324, 0.3706, 0.4153, 0.2440, 0.3418},
+      { 0.2945, 0.1617, 0.1634, 0.1137, 0.2446, 0.1656, 0.2266, 0.1706, 0.1707, 0.0966, 0.0929, 0.3015, 0.3074, 0.3027, 0.2865, 0.2775, 0.2741, 0.3191, 0.1676, 0.2822},
+      { 0.3148, 0.1576, 0.1485, 0.0924, 0.2265, 0.1560, 0.2110, 0.1619, 0.1609, 0.0771, 0.0871, 0.2816, 0.3102, 0.2865, 0.2985, 0.2777, 0.2568, 0.3118, 0.1472, 0.2696},
+      { 0.2854, 0.1626, 0.1823, 0.1144, 0.2345, 0.1702, 0.2118, 0.1762, 0.1802, 0.1180, 0.1259, 0.3177, 0.3324, 0.2775, 0.2777, 0.2946, 0.2830, 0.3386, 0.1741, 0.2817},
+      { 0.3106, 0.1865, 0.1871, 0.1076, 0.2581, 0.1905, 0.2266, 0.2031, 0.2029, 0.1426, 0.1470, 0.3417, 0.3706, 0.2741, 0.2568, 0.2830, 0.3213, 0.3620, 0.1877, 0.3149},
+      { 0.2917, 0.2026, 0.2282, 0.1516, 0.2924, 0.2138, 0.2569, 0.2032, 0.2138, 0.1662, 0.1904, 0.3855, 0.4153, 0.3191, 0.3118, 0.3386, 0.3620, 0.4032, 0.2183, 0.3372},
+      { 0.1999, 0.1576, 0.1857, 0.1337, 0.2068, 0.1675, 0.1866, 0.1613, 0.1767, 0.1360, 0.1316, 0.2503, 0.2440, 0.1676, 0.1472, 0.1741, 0.1877, 0.2183, 0.1849, 0.1994},
+      { 0.3128, 0.1767, 0.2032, 0.1259, 0.2630, 0.2166, 0.2317, 0.2168, 0.1762, 0.1740, 0.1526, 0.3344, 0.3418, 0.2822, 0.2696, 0.2817, 0.3149, 0.3372, 0.1994, 0.4796}},
+    {
+      { 0.1023, 0.1002, 0.3310, 0.2970, 0.3012, 0.2382, 0.2817, 0.2648, 0.2400, 0.2086, 0.2192, 0.3112, 0.2978, 0.2701, 0.2854, 0.2954, 0.3074, 0.2885, 0.1924, 0.2833},
+      { 0.1002, 0.1379, 0.3681, 0.3154, 0.2608, 0.2043, 0.2146, 0.2204, 0.2266, 0.1520, 0.1696, 0.2720, 0.2753, 0.1693, 0.1772, 0.1443, 0.1866, 0.1965, 0.1678, 0.1746},
+      { 0.3310, 0.3681, 0.2360, 0.1681, 0.2562, 0.2319, 0.2310, 0.2351, 0.2564, 0.1985, 0.2149, 0.3132, 0.3041, 0.1947, 0.1921, 0.1702, 0.1872, 0.2237, 0.1998, 0.2134},
+      { 0.2970, 0.3154, 0.1681, 0.1306, 0.1928, 0.1722, 0.1746, 0.1877, 0.2080, 0.1361, 0.1334, 0.2575, 0.2451, 0.1348, 0.1280, 0.0975, 0.1146, 0.1470, 0.1412, 0.1290},
+      { 0.3012, 0.2608, 0.2562, 0.1928, 0.3024, 0.2484, 0.2671, 0.2337, 0.2415, 0.1885, 0.2191, 0.3543, 0.3433, 0.2524, 0.2399, 0.2292, 0.2602, 0.2747, 0.2109, 0.2646},
+      { 0.2382, 0.2043, 0.2319, 0.1722, 0.2484, 0.1965, 0.2012, 0.2072, 0.2156, 0.1673, 0.1678, 0.2454, 0.2581, 0.1841, 0.1803, 0.1621, 0.1895, 0.2060, 0.1749, 0.2106},
+      { 0.2817, 0.2146, 0.2310, 0.1746, 0.2671, 0.2012, 0.2345, 0.2209, 0.2281, 0.1599, 0.1727, 0.2852, 0.2987, 0.2344, 0.2382, 0.1924, 0.2182, 0.2426, 0.1899, 0.2512},
+      { 0.2648, 0.2204, 0.2351, 0.1877, 0.2337, 0.2072, 0.2209, 0.2515, 0.2325, 0.1902, 0.1836, 0.2529, 0.2718, 0.1891, 0.1858, 0.1768, 0.1973, 0.2112, 0.1698, 0.2113},
+      { 0.2400, 0.2266, 0.2564, 0.2080, 0.2415, 0.2156, 0.2281, 0.2325, 0.2463, 0.1779, 0.2137, 0.2715, 0.3033, 0.1873, 0.1859, 0.1684, 0.2033, 0.2097, 0.1851, 0.1860},
+      { 0.2086, 0.1520, 0.1985, 0.1361, 0.1885, 0.1673, 0.1599, 0.1902, 0.1779, 0.1519, 0.1438, 0.2195, 0.2251, 0.1227, 0.1210, 0.1289, 0.1655, 0.1724, 0.1674, 0.2029},
+      { 0.2192, 0.1696, 0.2149, 0.1334, 0.2191, 0.1678, 0.1727, 0.1836, 0.2137, 0.1438, 0.1685, 0.2859, 0.2911, 0.1229, 0.1236, 0.0838, 0.1318, 0.1881, 0.1401, 0.1496},
+      { 0.3112, 0.2720, 0.3132, 0.2575, 0.3543, 0.2454, 0.2852, 0.2529, 0.2715, 0.2195, 0.2859, 0.3796, 0.4243, 0.3238, 0.3181, 0.3105, 0.3401, 0.3813, 0.2498, 0.3456},
+      { 0.2978, 0.2753, 0.3041, 0.2451, 0.3433, 0.2581, 0.2987, 0.2718, 0.3033, 0.2251, 0.2911, 0.4243, 0.4116, 0.3271, 0.3485, 0.3302, 0.3858, 0.4191, 0.2435, 0.3449},
+      { 0.2701, 0.1693, 0.1947, 0.1348, 0.2524, 0.1841, 0.2344, 0.1891, 0.1873, 0.1227, 0.1229, 0.3238, 0.3271, 0.3149, 0.3146, 0.2767, 0.2821, 0.3269, 0.1925, 0.2906},
+      { 0.2854, 0.1772, 0.1921, 0.1280, 0.2399, 0.1803, 0.2382, 0.1858, 0.1859, 0.1210, 0.1236, 0.3181, 0.3485, 0.3146, 0.3323, 0.3016, 0.2906, 0.3379, 0.1875, 0.2912},
+      { 0.2954, 0.1443, 0.1702, 0.0975, 0.2292, 0.1621, 0.1924, 0.1768, 0.1684, 0.1289, 0.0838, 0.3105, 0.3302, 0.2767, 0.3016, 0.2767, 0.2666, 0.3248, 0.1572, 0.2713},
+      { 0.3074, 0.1866, 0.1872, 0.1146, 0.2602, 0.1895, 0.2182, 0.1973, 0.2033, 0.1655, 0.1318, 0.3401, 0.3858, 0.2821, 0.2906, 0.2666, 0.3172, 0.3497, 0.1851, 0.3030},
+      { 0.2885, 0.1965, 0.2237, 0.1470, 0.2747, 0.2060, 0.2426, 0.2112, 0.2097, 0.1724, 0.1881, 0.3813, 0.4191, 0.3269, 0.3379, 0.3248, 0.3497, 0.4028, 0.2145, 0.3303},
+      { 0.1924, 0.1678, 0.1998, 0.1412, 0.2109, 0.1749, 0.1899, 0.1698, 0.1851, 0.1674, 0.1401, 0.2498, 0.2435, 0.1925, 0.1875, 0.1572, 0.1851, 0.2145, 0.1990, 0.1984},
+      { 0.2833, 0.1746, 0.2134, 0.1290, 0.2646, 0.2106, 0.2512, 0.2113, 0.1860, 0.2029, 0.1496, 0.3456, 0.3449, 0.2906, 0.2912, 0.2713, 0.3030, 0.3303, 0.1984, 0.4428}},
+    {
+      { 0.1537, 0.1640, 0.3454, 0.3494, 0.3473, 0.3022, 0.3217, 0.2982, 0.3079, 0.2482, 0.2497, 0.3486, 0.3072, 0.2907, 0.3106, 0.3074, 0.4305, 0.3339, 0.2461, 0.3272},
+      { 0.1640, 0.1681, 0.3834, 0.3327, 0.2890, 0.2308, 0.2297, 0.2528, 0.2533, 0.1840, 0.2016, 0.2855, 0.2835, 0.1960, 0.2081, 0.2014, 0.2100, 0.2211, 0.1918, 0.2129},
+      { 0.3454, 0.3834, 0.2534, 0.1894, 0.2767, 0.2487, 0.2452, 0.2479, 0.2728, 0.2137, 0.2347, 0.3281, 0.3330, 0.2091, 0.2074, 0.2106, 0.1567, 0.2556, 0.2098, 0.2389},
+      { 0.3494, 0.3327, 0.1894, 0.1555, 0.2101, 0.1868, 0.1800, 0.2039, 0.2177, 0.1426, 0.1419, 0.2748, 0.2529, 0.1500, 0.1407, 0.1302, 0.0613, 0.1591, 0.1505, 0.1397},
+      { 0.3473, 0.2890, 0.2767, 0.2101, 0.3104, 0.2754, 0.2995, 0.2803, 0.2700, 0.2195, 0.2550, 0.3743, 0.3812, 0.2806, 0.2653, 0.2739, 0.2811, 0.3207, 0.2330, 0.2937},
+      { 0.3022, 0.2308, 0.2487, 0.1868, 0.2754, 0.2182, 0.2266, 0.2480, 0.2239, 0.1873, 0.1824, 0.2780, 0.2733, 0.2078, 0.2087, 0.1990, 0.1954, 0.2407, 0.1880, 0.2456},
+      { 0.3217, 0.2297, 0.2452, 0.1800, 0.2995, 0.2266, 0.2467, 0.2566, 0.2503, 0.1738, 0.1822, 0.3045, 0.3059, 0.2559, 0.2535, 0.2266, 0.2131, 0.2696, 0.1965, 0.2782},
+      { 0.2982, 0.2528, 0.2479, 0.2039, 0.2803, 0.2480, 0.2566, 0.2625, 0.2574, 0.2157, 0.2143, 0.2867, 0.3056, 0.2214, 0.2070, 0.2024, 0.2403, 0.2481, 0.1957, 0.2439},
+      { 0.3079, 0.2533, 0.2728, 0.2177, 0.2700, 0.2239, 0.2503, 0.2574, 0.2668, 0.1796, 0.2078, 0.2948, 0.3257, 0.2164, 0.2061, 0.2131, 0.1905, 0.2377, 0.2044, 0.2167},
+      { 0.2482, 0.1840, 0.2137, 0.1426, 0.2195, 0.1873, 0.1738, 0.2157, 0.1796, 0.1487, 0.1574, 0.2408, 0.2413, 0.1513, 0.1504, 0.1631, 0.1540, 0.2020, 0.1696, 0.2022},
+      { 0.2497, 0.2016, 0.2347, 0.1419, 0.2550, 0.1824, 0.1822, 0.2143, 0.2078, 0.1574, 0.1980, 0.3003, 0.2990, 0.1422, 0.1498, 0.1314, 0.1325, 0.2102, 0.1454, 0.1824},
+      { 0.3486, 0.2855, 0.3281, 0.2748, 0.3743, 0.2780, 0.3045, 0.2867, 0.2948, 0.2408, 0.3003, 0.4088, 0.4640, 0.3458, 0.3519, 0.3476, 0.3201, 0.4164, 0.2666, 0.3793},
+      { 0.3072, 0.2835, 0.3330, 0.2529, 0.3812, 0.2733, 0.3059, 0.3056, 0.3257, 0.2413, 0.2990, 0.4640, 0.4874, 0.3584, 0.3734, 0.3636, 0.3799, 0.4447, 0.2613, 0.3550},
+      { 0.2907, 0.1960, 0.2091, 0.1500, 0.2806, 0.2078, 0.2559, 0.2214, 0.2164, 0.1513, 0.1422, 0.3458, 0.3584, 0.3152, 0.3260, 0.2955, 0.2465, 0.3451, 0.2093, 0.3229},
+      { 0.3106, 0.2081, 0.2074, 0.1407, 0.2653, 0.2087, 0.2535, 0.2070, 0.2061, 0.1504, 0.1498, 0.3519, 0.3734, 0.3260, 0.3444, 0.3172, 0.2708, 0.3552, 0.2071, 0.3364},
+      { 0.3074, 0.2014, 0.2106, 0.1302, 0.2739, 0.1990, 0.2266, 0.2024, 0.2131, 0.1631, 0.1314, 0.3476, 0.3636, 0.2955, 0.3172, 0.3083, 0.2626, 0.3500, 0.1933, 0.3016},
+      { 0.4305, 0.2100, 0.1567, 0.0613, 0.2811, 0.1954, 0.2131, 0.2403, 0.1905, 0.1540, 0.1325, 0.3201, 0.3799, 0.2465, 0.2708, 0.2626, 0.3293, 0.3178, 0.1560, 0.3180},
+      { 0.3339, 0.2211, 0.2556, 0.1591, 0.3207, 0.2407, 0.2696, 0.2481, 0.2377, 0.2020, 0.2102, 0.4164, 0.4447, 0.3451, 0.3552, 0.3500, 0.3178, 0.4278, 0.2421, 0.3695},
+      { 0.2461, 0.1918, 0.2098, 0.1505, 0.2330, 0.1880, 0.1965, 0.1957, 0.2044, 0.1696, 0.1454, 0.2666, 0.2613, 0.2093, 0.2071, 0.1933, 0.1560, 0.2421, 0.2009, 0.2168},
+      { 0.3272, 0.2129, 0.2389, 0.1397, 0.2937, 0.2456, 0.2782, 0.2439, 0.2167, 0.2022, 0.1824, 0.3793, 0.3550, 0.3229, 0.3364, 0.3016, 0.3180, 0.3695, 0.2168, 0.4863}},
+    {
+      { 0.1704, 0.1508, 0.3518, 0.3142, 0.3731, 0.2848, 0.3000, 0.2923, 0.2723, 0.2509, 0.2430, 0.4075, 0.3827, 0.2804, 0.2917, 0.2885, 0.3339, 0.3806, 0.2522, 0.3233},
+      { 0.1508, 0.1601, 0.3746, 0.3218, 0.2810, 0.2276, 0.2411, 0.2376, 0.2449, 0.1896, 0.1804, 0.2807, 0.2909, 0.1965, 0.1971, 0.1879, 0.2021, 0.1943, 0.1986, 0.2109},
+      { 0.3518, 0.3746, 0.2657, 0.1934, 0.2665, 0.2512, 0.2589, 0.2593, 0.2848, 0.2228, 0.2421, 0.3018, 0.3059, 0.2202, 0.2248, 0.2098, 0.2211, 0.1937, 0.2223, 0.2371},
+      { 0.3142, 0.3218, 0.1934, 0.1651, 0.2036, 0.1856, 0.1963, 0.2136, 0.2274, 0.1550, 0.1521, 0.2423, 0.2294, 0.1534, 0.1493, 0.1364, 0.1415, 0.1199, 0.1641, 0.1478},
+      { 0.3731, 0.2810, 0.2665, 0.2036, 0.3402, 0.2915, 0.2961, 0.2766, 0.2720, 0.2269, 0.2392, 0.3587, 0.3703, 0.2798, 0.2718, 0.2650, 0.2957, 0.2816, 0.2319, 0.3111},
+      { 0.2848, 0.2276, 0.2512, 0.1856, 0.2915, 0.2422, 0.2414, 0.2487, 0.2471, 0.2086, 0.1957, 0.2797, 0.2856, 0.2111, 0.2060, 0.1994, 0.2318, 0.2157, 0.2121, 0.2503},
+      { 0.3000, 0.2411, 0.2589, 0.1963, 0.2961, 0.2414, 0.2575, 0.2634, 0.2576, 0.1917, 0.1985, 0.2912, 0.3008, 0.2564, 0.2597, 0.2404, 0.2532, 0.2259, 0.2161, 0.2650},
+      { 0.2923, 0.2376, 0.2593, 0.2136, 0.2766, 0.2487, 0.2634, 0.2967, 0.2681, 0.2300, 0.2171, 0.3035, 0.3079, 0.2085, 0.2015, 0.1985, 0.2428, 0.2329, 0.2016, 0.2537},
+      { 0.2723, 0.2449, 0.2848, 0.2274, 0.2720, 0.2471, 0.2576, 0.2681, 0.2604, 0.2023, 0.2326, 0.2735, 0.3039, 0.2088, 0.2090, 0.2037, 0.2330, 0.1938, 0.2065, 0.2308},
+      { 0.2509, 0.1896, 0.2228, 0.1550, 0.2269, 0.2086, 0.1917, 0.2300, 0.2023, 0.1875, 0.1856, 0.2403, 0.2430, 0.1552, 0.1545, 0.1642, 0.1972, 0.1450, 0.1841, 0.2137},
+      { 0.2430, 0.1804, 0.2421, 0.1521, 0.2392, 0.1957, 0.1985, 0.2171, 0.2326, 0.1856, 0.1981, 0.2742, 0.2858, 0.1633, 0.1621, 0.1556, 0.1851, 0.1459, 0.1678, 0.2073},
+      { 0.4075, 0.2807, 0.3018, 0.2423, 0.3587, 0.2797, 0.2912, 0.3035, 0.2735, 0.2403, 0.2742, 0.3912, 0.4179, 0.3401, 0.3501, 0.3382, 0.3596, 0.3586, 0.2616, 0.3828},
+      { 0.3827, 0.2909, 0.3059, 0.2294, 0.3703, 0.2856, 0.3008, 0.3079, 0.3039, 0.2430, 0.2858, 0.4179, 0.4100, 0.3658, 0.3799, 0.3636, 0.4083, 0.3865, 0.2685, 0.4066},
+      { 0.2804, 0.1965, 0.2202, 0.1534, 0.2798, 0.2111, 0.2564, 0.2085, 0.2088, 0.1552, 0.1633, 0.3401, 0.3658, 0.3423, 0.3427, 0.3157, 0.3141, 0.2919, 0.2126, 0.3241},
+      { 0.2917, 0.1971, 0.2248, 0.1493, 0.2718, 0.2060, 0.2597, 0.2015, 0.2090, 0.1545, 0.1621, 0.3501, 0.3799, 0.3427, 0.3615, 0.3357, 0.3247, 0.3181, 0.2158, 0.3299},
+      { 0.2885, 0.1879, 0.2098, 0.1364, 0.2650, 0.1994, 0.2404, 0.1985, 0.2037, 0.1642, 0.1556, 0.3382, 0.3636, 0.3157, 0.3357, 0.3211, 0.3068, 0.3062, 0.2067, 0.3084},
+      { 0.3339, 0.2021, 0.2211, 0.1415, 0.2957, 0.2318, 0.2532, 0.2428, 0.2330, 0.1972, 0.1851, 0.3596, 0.4083, 0.3141, 0.3247, 0.3068, 0.3685, 0.3253, 0.2293, 0.3614},
+      { 0.3806, 0.1943, 0.1937, 0.1199, 0.2816, 0.2157, 0.2259, 0.2329, 0.1938, 0.1450, 0.1459, 0.3586, 0.3865, 0.2919, 0.3181, 0.3062, 0.3253, 0.3764, 0.1946, 0.3414},
+      { 0.2522, 0.1986, 0.2223, 0.1641, 0.2319, 0.2121, 0.2161, 0.2016, 0.2065, 0.1841, 0.1678, 0.2616, 0.2685, 0.2126, 0.2158, 0.2067, 0.2293, 0.1946, 0.2205, 0.2298},
+      { 0.3233, 0.2109, 0.2371, 0.1478, 0.3111, 0.2503, 0.2650, 0.2537, 0.2308, 0.2137, 0.2073, 0.3828, 0.4066, 0.3241, 0.3299, 0.3084, 0.3614, 0.3414, 0.2298, 0.4943}},
+    {
+      { 0.0907, 0.0811, 0.2985, 0.2618, 0.2558, 0.2679, 0.2518, 0.2244, 0.2110, 0.2371, 0.1921, 0.2708, 0.2501, 0.2214, 0.1999, 0.1924, 0.2461, 0.2522, 0.2528, 0.3018},
+      { 0.0811, 0.1722, 0.3736, 0.3347, 0.2480, 0.1891, 0.1994, 0.2134, 0.2581, 0.1450, 0.1636, 0.2603, 0.2749, 0.1703, 0.1841, 0.1886, 0.1963, 0.2068, 0.1483, 0.1637},
+      { 0.2985, 0.3736, 0.2394, 0.1804, 0.2535, 0.1973, 0.2144, 0.2196, 0.2640, 0.1529, 0.2004, 0.3248, 0.3210, 0.2038, 0.2218, 0.2410, 0.2143, 0.2655, 0.1578, 0.1737},
+      { 0.2618, 0.3347, 0.1804, 0.1442, 0.1804, 0.1443, 0.1604, 0.1793, 0.2208, 0.0875, 0.1300, 0.2723, 0.2575, 0.1467, 0.1581, 0.1753, 0.1537, 0.1905, 0.1050, 0.1004},
+      { 0.2558, 0.2480, 0.2535, 0.1804, 0.2940, 0.2251, 0.2441, 0.2278, 0.2319, 0.1793, 0.2027, 0.3508, 0.3597, 0.2435, 0.2454, 0.2488, 0.2452, 0.2937, 0.1859, 0.2453},
+      { 0.2679, 0.1891, 0.1973, 0.1443, 0.2251, 0.1816, 0.1747, 0.2060, 0.1892, 0.1460, 0.1334, 0.2399, 0.2543, 0.1693, 0.1818, 0.1724, 0.1866, 0.2206, 0.1425, 0.2087},
+      { 0.2518, 0.1994, 0.2144, 0.1604, 0.2441, 0.1747, 0.2069, 0.2154, 0.2103, 0.1435, 0.1439, 0.2654, 0.2763, 0.2128, 0.2214, 0.2062, 0.2100, 0.2436, 0.1473, 0.2041},
+      { 0.2244, 0.2134, 0.2196, 0.1793, 0.2278, 0.2060, 0.2154, 0.2344, 0.2333, 0.1572, 0.1690, 0.2553, 0.2849, 0.1763, 0.1838, 0.1776, 0.2148, 0.2239, 0.1705, 0.2130},
+      { 0.2110, 0.2581, 0.2640, 0.2208, 0.2319, 0.1892, 0.2103, 0.2333, 0.2642, 0.1332, 0.1848, 0.2737, 0.3245, 0.1904, 0.2062, 0.2213, 0.2276, 0.2459, 0.1518, 0.1651},
+      { 0.2371, 0.1450, 0.1529, 0.0875, 0.1793, 0.1460, 0.1435, 0.1572, 0.1332, 0.1299, 0.1004, 0.2248, 0.2359, 0.1302, 0.1477, 0.1618, 0.1830, 0.1994, 0.1275, 0.2355},
+      { 0.1921, 0.1636, 0.2004, 0.1300, 0.2027, 0.1334, 0.1439, 0.1690, 0.1848, 0.1004, 0.1670, 0.2775, 0.3007, 0.1235, 0.1466, 0.1495, 0.1795, 0.2150, 0.0772, 0.1259},
+      { 0.2708, 0.2603, 0.3248, 0.2723, 0.3508, 0.2399, 0.2654, 0.2553, 0.2737, 0.2248, 0.2775, 0.3752, 0.4187, 0.3018, 0.3334, 0.3348, 0.3459, 0.3896, 0.2094, 0.3011},
+      { 0.2501, 0.2749, 0.3210, 0.2575, 0.3597, 0.2543, 0.2763, 0.2849, 0.3245, 0.2359, 0.3007, 0.4187, 0.4557, 0.3037, 0.3397, 0.3368, 0.3696, 0.4235, 0.2024, 0.3128},
+      { 0.2214, 0.1703, 0.2038, 0.1467, 0.2435, 0.1693, 0.2128, 0.1763, 0.1904, 0.1302, 0.1235, 0.3018, 0.3037, 0.2794, 0.2895, 0.2703, 0.2567, 0.3000, 0.1632, 0.2521},
+      { 0.1999, 0.1841, 0.2218, 0.1581, 0.2454, 0.1818, 0.2214, 0.1838, 0.2062, 0.1477, 0.1466, 0.3334, 0.3397, 0.2895, 0.3084, 0.2927, 0.2770, 0.3258, 0.1748, 0.2476},
+      { 0.1924, 0.1886, 0.2410, 0.1753, 0.2488, 0.1724, 0.2062, 0.1776, 0.2213, 0.1618, 0.1495, 0.3348, 0.3368, 0.2703, 0.2927, 0.2931, 0.2751, 0.3301, 0.1702, 0.2344},
+      { 0.2461, 0.1963, 0.2143, 0.1537, 0.2452, 0.1866, 0.2100, 0.2148, 0.2276, 0.1830, 0.1795, 0.3459, 0.3696, 0.2567, 0.2770, 0.2751, 0.3142, 0.3422, 0.1714, 0.2952},
+      { 0.2522, 0.2068, 0.2655, 0.1905, 0.2937, 0.2206, 0.2436, 0.2239, 0.2459, 0.1994, 0.2150, 0.3896, 0.4235, 0.3000, 0.3258, 0.3301, 0.3422, 0.3954, 0.2042, 0.2945},
+      { 0.2528, 0.1483, 0.1578, 0.1050, 0.1859, 0.1425, 0.1473, 0.1705, 0.1518, 0.1275, 0.0772, 0.2094, 0.2024, 0.1632, 0.1748, 0.1702, 0.1714, 0.2042, 0.1587, 0.1968},
+      { 0.3018, 0.1637, 0.1737, 0.1004, 0.2453, 0.2087, 0.2041, 0.2130, 0.1651, 0.2355, 0.1259, 0.3011, 0.3128, 0.2521, 0.2476, 0.2344, 0.2952, 0.2945, 0.1968, 0.4682}},
+    {
+      { 0.2600, 0.1955, 0.3974, 0.3461, 0.4048, 0.3745, 0.3915, 0.3623, 0.3061, 0.3318, 0.2776, 0.3493, 0.3537, 0.3208, 0.3128, 0.2833, 0.3272, 0.3233, 0.3018, 0.3502},
+      { 0.1955, 0.1741, 0.3803, 0.3383, 0.2968, 0.2565, 0.2748, 0.2629, 0.2471, 0.2402, 0.2442, 0.3038, 0.3057, 0.2039, 0.1960, 0.1931, 0.2033, 0.2383, 0.2024, 0.1117},
+      { 0.3974, 0.3803, 0.2598, 0.1945, 0.2776, 0.2259, 0.2376, 0.2622, 0.2896, 0.1960, 0.2349, 0.3481, 0.3294, 0.2025, 0.2165, 0.2273, 0.2001, 0.2658, 0.1680, 0.1341},
+      { 0.3461, 0.3383, 0.1945, 0.1542, 0.2262, 0.1583, 0.1778, 0.2087, 0.2277, 0.1335, 0.1377, 0.2909, 0.2772, 0.1426, 0.1570, 0.1541, 0.1427, 0.1867, 0.1171, 0.0716},
+      { 0.4048, 0.2968, 0.2776, 0.2262, 0.3224, 0.2821, 0.3083, 0.2891, 0.2642, 0.2291, 0.2481, 0.3856, 0.3764, 0.2732, 0.2782, 0.2602, 0.2829, 0.3302, 0.2116, 0.2562},
+      { 0.3745, 0.2565, 0.2259, 0.1583, 0.2821, 0.2324, 0.2282, 0.2550, 0.2075, 0.2027, 0.1654, 0.2919, 0.2772, 0.2165, 0.2170, 0.1866, 0.2145, 0.2531, 0.1900, 0.1810},
+      { 0.3915, 0.2748, 0.2376, 0.1778, 0.3083, 0.2282, 0.2472, 0.2604, 0.2360, 0.1977, 0.1829, 0.2990, 0.3127, 0.2495, 0.2532, 0.2154, 0.2404, 0.2629, 0.1851, 0.1778},
+      { 0.3623, 0.2629, 0.2622, 0.2087, 0.2891, 0.2550, 0.2604, 0.3408, 0.2677, 0.2264, 0.1974, 0.2794, 0.3070, 0.2240, 0.2213, 0.2044, 0.2475, 0.2516, 0.2180, 0.1935},
+      { 0.3061, 0.2471, 0.2896, 0.2277, 0.2642, 0.2075, 0.2360, 0.2677, 0.2666, 0.1730, 0.2055, 0.2988, 0.3091, 0.2090, 0.2182, 0.2131, 0.2285, 0.2442, 0.1735, 0.1233},
+      { 0.3318, 0.2402, 0.1960, 0.1335, 0.2291, 0.2027, 0.1977, 0.2264, 0.1730, 0.1732, 0.1752, 0.2535, 0.2758, 0.1759, 0.1863, 0.1993, 0.2197, 0.2223, 0.2062, 0.1489},
+      { 0.2776, 0.2442, 0.2349, 0.1377, 0.2481, 0.1654, 0.1829, 0.1974, 0.2055, 0.1752, 0.1692, 0.3080, 0.3280, 0.1305, 0.1554, 0.1706, 0.1775, 0.2306, 0.1104, 0.0580},
+      { 0.3493, 0.3038, 0.3481, 0.2909, 0.3856, 0.2919, 0.2990, 0.2794, 0.2988, 0.2535, 0.3080, 0.3984, 0.4380, 0.3322, 0.3342, 0.3350, 0.3758, 0.4157, 0.2687, 0.2767},
+      { 0.3537, 0.3057, 0.3294, 0.2772, 0.3764, 0.2772, 0.3127, 0.3070, 0.3091, 0.2758, 0.3280, 0.4380, 0.5424, 0.3585, 0.3456, 0.3651, 0.3836, 0.4467, 0.2587, 0.2744},
+      { 0.3208, 0.2039, 0.2025, 0.1426, 0.2732, 0.2165, 0.2495, 0.2240, 0.2090, 0.1759, 0.1305, 0.3322, 0.3585, 0.3071, 0.3212, 0.2824, 0.2893, 0.3381, 0.1992, 0.1951},
+      { 0.3128, 0.1960, 0.2165, 0.1570, 0.2782, 0.2170, 0.2532, 0.2213, 0.2182, 0.1863, 0.1554, 0.3342, 0.3456, 0.3212, 0.3343, 0.3029, 0.2952, 0.3458, 0.2206, 0.2240},
+      { 0.2833, 0.1931, 0.2273, 0.1541, 0.2602, 0.1866, 0.2154, 0.2044, 0.2131, 0.1993, 0.1706, 0.3350, 0.3651, 0.2824, 0.3029, 0.2960, 0.2885, 0.3347, 0.1989, 0.1730},
+      { 0.3272, 0.2033, 0.2001, 0.1427, 0.2829, 0.2145, 0.2404, 0.2475, 0.2285, 0.2197, 0.1775, 0.3758, 0.3836, 0.2893, 0.2952, 0.2885, 0.3415, 0.3626, 0.2172, 0.2507},
+      { 0.3233, 0.2383, 0.2658, 0.1867, 0.3302, 0.2531, 0.2629, 0.2516, 0.2442, 0.2223, 0.2306, 0.4157, 0.4467, 0.3381, 0.3458, 0.3347, 0.3626, 0.4349, 0.2468, 0.2741},
+      { 0.3018, 0.2024, 0.1680, 0.1171, 0.2116, 0.1900, 0.1851, 0.2180, 0.1735, 0.2062, 0.1104, 0.2687, 0.2587, 0.1992, 0.2206, 0.1989, 0.2172, 0.2468, 0.1730, 0.1196},
+      { 0.3502, 0.1117, 0.1341, 0.0716, 0.2562, 0.1810, 0.1778, 0.1935, 0.1233, 0.1489, 0.0580, 0.2767, 0.2744, 0.1951, 0.2240, 0.1730, 0.2507, 0.2741, 0.1196, 0.4716}}},
+  {
+    {
+      { 0.0767, 0.2678, 0.2120, 0.1678, 0.1787, 0.1034, 0.1129, 0.1321, 0.1570, 0.0811, 0.0404, 0.1838, 0.2017, 0.1069, 0.1119, 0.1002, 0.1640, 0.1508, 0.0811, 0.1955},
+      { 0.2678, 0.1054, 0.2825, 0.2262, 0.2016, 0.1203, 0.1197, 0.1685, 0.1711, 0.0621, 0.0624, 0.2204, 0.2392, 0.1381, 0.1632, 0.1574, 0.1665, 0.1721, 0.1449, 0.1494},
+      { 0.2120, 0.2825, 0.1924, 0.1318, 0.1802, 0.1475, 0.1674, 0.1517, 0.1980, 0.1080, 0.1330, 0.2785, 0.2802, 0.1954, 0.2261, 0.2414, 0.2121, 0.2425, 0.1832, 0.1543},
+      { 0.1678, 0.2262, 0.1318, 0.0883, 0.1176, 0.1105, 0.1165, 0.1063, 0.1511, 0.0442, 0.0731, 0.2199, 0.2084, 0.1412, 0.1584, 0.1685, 0.1521, 0.1673, 0.1534, 0.0807},
+      { 0.1787, 0.2016, 0.1802, 0.1176, 0.2280, 0.1444, 0.1647, 0.1589, 0.1749, 0.1020, 0.1192, 0.2962, 0.3010, 0.1925, 0.2096, 0.2190, 0.2198, 0.2692, 0.1263, 0.2375},
+      { 0.1034, 0.1203, 0.1475, 0.1105, 0.1444, 0.1047, 0.0955, 0.1192, 0.1266, 0.0570, 0.0705, 0.1767, 0.1928, 0.1033, 0.1176, 0.1189, 0.1325, 0.1666, 0.0985, 0.1331},
+      { 0.1129, 0.1197, 0.1674, 0.1165, 0.1647, 0.0955, 0.1405, 0.1411, 0.1559, 0.0533, 0.0681, 0.2008, 0.2039, 0.1420, 0.1649, 0.1510, 0.1559, 0.1830, 0.0896, 0.1543},
+      { 0.1321, 0.1685, 0.1517, 0.1063, 0.1589, 0.1192, 0.1411, 0.1580, 0.1605, 0.0832, 0.0803, 0.2063, 0.2237, 0.1317, 0.1456, 0.1358, 0.1665, 0.1842, 0.0928, 0.1565},
+      { 0.1570, 0.1711, 0.1980, 0.1511, 0.1749, 0.1266, 0.1559, 0.1605, 0.1848, 0.0608, 0.1098, 0.2283, 0.2855, 0.1530, 0.1785, 0.1923, 0.2041, 0.2139, 0.1523, 0.1315},
+      { 0.0811, 0.0621, 0.1080, 0.0442, 0.1020, 0.0570, 0.0533, 0.0832, 0.0608, 0.0367, 0.0362, 0.1541, 0.1725, 0.0659, 0.0708, 0.0814, 0.1009, 0.1427, 0.0540, 0.1152},
+      { 0.0404, 0.0624, 0.1330, 0.0731, 0.1192, 0.0705, 0.0681, 0.0803, 0.1098, 0.0362, 0.0896, 0.2227, 0.2411, 0.0841, 0.1062, 0.1271, 0.1439, 0.1836, 0.1022, 0.1188},
+      { 0.1838, 0.2204, 0.2785, 0.2199, 0.2962, 0.1767, 0.2008, 0.2063, 0.2283, 0.1541, 0.2227, 0.3494, 0.3763, 0.2804, 0.3025, 0.3048, 0.3106, 0.3716, 0.1816, 0.2771},
+      { 0.2017, 0.2392, 0.2802, 0.2084, 0.3010, 0.1928, 0.2039, 0.2237, 0.2855, 0.1725, 0.2411, 0.3763, 0.4415, 0.2768, 0.3157, 0.3171, 0.3530, 0.3992, 0.1693, 0.2780},
+      { 0.1069, 0.1381, 0.1954, 0.1412, 0.1925, 0.1033, 0.1420, 0.1317, 0.1530, 0.0659, 0.0841, 0.2804, 0.2768, 0.2153, 0.2322, 0.2190, 0.2207, 0.2604, 0.1164, 0.1902},
+      { 0.1119, 0.1632, 0.2261, 0.1584, 0.2096, 0.1176, 0.1649, 0.1456, 0.1785, 0.0708, 0.1062, 0.3025, 0.3157, 0.2322, 0.2685, 0.2540, 0.2563, 0.2763, 0.1278, 0.2164},
+      { 0.1002, 0.1574, 0.2414, 0.1685, 0.2190, 0.1189, 0.1510, 0.1358, 0.1923, 0.0814, 0.1271, 0.3048, 0.3171, 0.2190, 0.2540, 0.2625, 0.2429, 0.2961, 0.1391, 0.1975},
+      { 0.1640, 0.1665, 0.2121, 0.1521, 0.2198, 0.1325, 0.1559, 0.1665, 0.2041, 0.1009, 0.1439, 0.3106, 0.3530, 0.2207, 0.2563, 0.2429, 0.2967, 0.3178, 0.1493, 0.2292},
+      { 0.1508, 0.1721, 0.2425, 0.1673, 0.2692, 0.1666, 0.1830, 0.1842, 0.2139, 0.1427, 0.1836, 0.3716, 0.3992, 0.2604, 0.2763, 0.2961, 0.3178, 0.3837, 0.1615, 0.2776},
+      { 0.0811, 0.1449, 0.1832, 0.1534, 0.1263, 0.0985, 0.0896, 0.0928, 0.1523, 0.0540, 0.1022, 0.1816, 0.1693, 0.1164, 0.1278, 0.1391, 0.1493, 0.1615, 0.1946, 0.1245},
+      { 0.1955, 0.1494, 0.1543, 0.0807, 0.2375, 0.1331, 0.1543, 0.1565, 0.1315, 0.1152, 0.1188, 0.2771, 0.2780, 0.1902, 0.2164, 0.1975, 0.2292, 0.2776, 0.1245, 0.4872}},
+    {
+      { 0.0936, 0.1054, 0.2867, 0.2442, 0.2075, 0.1572, 0.1474, 0.1598, 0.2276, 0.1110, 0.0672, 0.2143, 0.2099, 0.1107, 0.1250, 0.1379, 0.1681, 0.1601, 0.1722, 0.1741},
+      { 0.1054, 0.2941, 0.2844, 0.2312, 0.2110, 0.1492, 0.1541, 0.1538, 0.2171, 0.0997, 0.0868, 0.2333, 0.2384, 0.1619, 0.1744, 0.1759, 0.2033, 0.1979, 0.1740, 0.1955},
+      { 0.2867, 0.2844, 0.2064, 0.1539, 0.1877, 0.1780, 0.1913, 0.1889, 0.2197, 0.1362, 0.1464, 0.2927, 0.2822, 0.2163, 0.2473, 0.2569, 0.2241, 0.2559, 0.2172, 0.1780},
+      { 0.2442, 0.2312, 0.1539, 0.1253, 0.1423, 0.1542, 0.1557, 0.1512, 0.1748, 0.0818, 0.0989, 0.2421, 0.2301, 0.1666, 0.1883, 0.1995, 0.1797, 0.1892, 0.1903, 0.1179},
+      { 0.2075, 0.2110, 0.1877, 0.1423, 0.2466, 0.1721, 0.1876, 0.1752, 0.1964, 0.1113, 0.1303, 0.2934, 0.3094, 0.2181, 0.2350, 0.2385, 0.2443, 0.2642, 0.1585, 0.2704},
+      { 0.1572, 0.1492, 0.1780, 0.1542, 0.1721, 0.1555, 0.1376, 0.1613, 0.1612, 0.0917, 0.0866, 0.1916, 0.2086, 0.1294, 0.1414, 0.1385, 0.1453, 0.1829, 0.1545, 0.1545},
+      { 0.1474, 0.1541, 0.1913, 0.1557, 0.1876, 0.1376, 0.1810, 0.1812, 0.1870, 0.0800, 0.0745, 0.2239, 0.2244, 0.1723, 0.2010, 0.1736, 0.1746, 0.2071, 0.1248, 0.1782},
+      { 0.1598, 0.1538, 0.1889, 0.1512, 0.1752, 0.1613, 0.1812, 0.1889, 0.1958, 0.1137, 0.1062, 0.2197, 0.2579, 0.1566, 0.1770, 0.1679, 0.1996, 0.2023, 0.1395, 0.1620},
+      { 0.2276, 0.2171, 0.2197, 0.1748, 0.1964, 0.1612, 0.1870, 0.1958, 0.2160, 0.0913, 0.1267, 0.2466, 0.3187, 0.1773, 0.1994, 0.2103, 0.2150, 0.2297, 0.1902, 0.1528},
+      { 0.1110, 0.0997, 0.1362, 0.0818, 0.1113, 0.0917, 0.0800, 0.1137, 0.0913, 0.0812, 0.0502, 0.1671, 0.1762, 0.0959, 0.1075, 0.1198, 0.1512, 0.1509, 0.1049, 0.1558},
+      { 0.0672, 0.0868, 0.1464, 0.0989, 0.1303, 0.0866, 0.0745, 0.1062, 0.1267, 0.0502, 0.0987, 0.2199, 0.2392, 0.0860, 0.1177, 0.1393, 0.1566, 0.1836, 0.1275, 0.1459},
+      { 0.2143, 0.2333, 0.2927, 0.2421, 0.2934, 0.1916, 0.2239, 0.2197, 0.2466, 0.1671, 0.2199, 0.3470, 0.3931, 0.2893, 0.3105, 0.3185, 0.3180, 0.3761, 0.2041, 0.3036},
+      { 0.2099, 0.2384, 0.2822, 0.2301, 0.3094, 0.2086, 0.2244, 0.2579, 0.3187, 0.1762, 0.2392, 0.3931, 0.3690, 0.2770, 0.3283, 0.3330, 0.3485, 0.4204, 0.1920, 0.3153},
+      { 0.1107, 0.1619, 0.2163, 0.1666, 0.2181, 0.1294, 0.1723, 0.1566, 0.1773, 0.0959, 0.0860, 0.2893, 0.2770, 0.2372, 0.2517, 0.2477, 0.2346, 0.2766, 0.1401, 0.2259},
+      { 0.1250, 0.1744, 0.2473, 0.1883, 0.2350, 0.1414, 0.2010, 0.1770, 0.1994, 0.1075, 0.1177, 0.3105, 0.3283, 0.2517, 0.2804, 0.2636, 0.2593, 0.2932, 0.1515, 0.2551},
+      { 0.1379, 0.1759, 0.2569, 0.1995, 0.2385, 0.1385, 0.1736, 0.1679, 0.2103, 0.1198, 0.1393, 0.3185, 0.3330, 0.2477, 0.2636, 0.2761, 0.2536, 0.3051, 0.1675, 0.2325},
+      { 0.1681, 0.2033, 0.2241, 0.1797, 0.2443, 0.1453, 0.1746, 0.1996, 0.2150, 0.1512, 0.1566, 0.3180, 0.3485, 0.2346, 0.2593, 0.2536, 0.3005, 0.3069, 0.1746, 0.2429},
+      { 0.1601, 0.1979, 0.2559, 0.1892, 0.2642, 0.1829, 0.2071, 0.2023, 0.2297, 0.1509, 0.1836, 0.3761, 0.4204, 0.2766, 0.2932, 0.3051, 0.3069, 0.3847, 0.1802, 0.2890},
+      { 0.1722, 0.1740, 0.2172, 0.1903, 0.1585, 0.1545, 0.1248, 0.1395, 0.1902, 0.1049, 0.1275, 0.2041, 0.1920, 0.1401, 0.1515, 0.1675, 0.1746, 0.1802, 0.2523, 0.1453},
+      { 0.1741, 0.1955, 0.1780, 0.1179, 0.2704, 0.1545, 0.1782, 0.1620, 0.1528, 0.1558, 0.1459, 0.3036, 0.3153, 0.2259, 0.2551, 0.2325, 0.2429, 0.2890, 0.1453, 0.4355}},
+    {
+      { 0.3070, 0.2825, 0.4742, 0.4705, 0.4373, 0.3790, 0.3819, 0.3855, 0.4143, 0.3284, 0.3291, 0.4313, 0.4130, 0.3529, 0.3661, 0.3681, 0.3834, 0.3746, 0.3736, 0.3803},
+      { 0.2825, 0.2844, 0.6144, 0.4790, 0.4390, 0.3655, 0.3821, 0.3715, 0.3928, 0.2992, 0.3183, 0.4447, 0.4578, 0.3929, 0.4042, 0.4040, 0.4023, 0.3979, 0.3792, 0.3969},
+      { 0.4742, 0.6144, 0.3240, 0.2784, 0.3900, 0.3705, 0.4002, 0.3688, 0.4086, 0.3423, 0.3455, 0.4654, 0.4926, 0.4333, 0.4431, 0.4411, 0.4429, 0.4460, 0.3749, 0.4429},
+      { 0.4705, 0.4790, 0.2784, 0.3137, 0.3835, 0.3841, 0.4082, 0.3806, 0.4021, 0.3166, 0.3227, 0.4748, 0.4586, 0.4212, 0.4418, 0.4372, 0.4280, 0.4217, 0.3907, 0.3934},
+      { 0.4373, 0.4390, 0.3900, 0.3835, 0.4761, 0.4276, 0.4587, 0.4157, 0.4261, 0.3694, 0.3753, 0.5234, 0.5298, 0.4680, 0.4763, 0.4717, 0.4698, 0.4935, 0.3988, 0.4809},
+      { 0.3790, 0.3655, 0.3705, 0.3841, 0.4276, 0.3907, 0.4053, 0.3951, 0.4032, 0.3403, 0.3435, 0.4250, 0.4274, 0.3931, 0.3941, 0.3920, 0.4073, 0.4186, 0.3770, 0.3975},
+      { 0.3819, 0.3821, 0.4002, 0.4082, 0.4587, 0.4053, 0.4792, 0.4213, 0.4349, 0.3380, 0.3468, 0.4555, 0.4433, 0.4500, 0.4585, 0.4279, 0.4373, 0.4401, 0.3800, 0.4304},
+      { 0.3855, 0.3715, 0.3688, 0.3806, 0.4157, 0.3951, 0.4213, 0.4297, 0.4181, 0.3461, 0.3471, 0.4375, 0.4657, 0.4004, 0.4137, 0.4040, 0.4326, 0.4308, 0.3672, 0.4065},
+      { 0.4143, 0.3928, 0.4086, 0.4021, 0.4261, 0.4032, 0.4349, 0.4181, 0.4433, 0.3434, 0.3661, 0.4652, 0.5101, 0.4414, 0.4561, 0.4611, 0.4670, 0.4653, 0.4131, 0.4253},
+      { 0.3284, 0.2992, 0.3423, 0.3166, 0.3694, 0.3403, 0.3380, 0.3461, 0.3434, 0.3331, 0.3301, 0.3983, 0.4169, 0.3530, 0.3580, 0.3602, 0.3841, 0.3983, 0.3474, 0.3902},
+      { 0.3291, 0.3183, 0.3455, 0.3227, 0.3753, 0.3435, 0.3468, 0.3471, 0.3661, 0.3301, 0.3571, 0.4354, 0.4591, 0.3560, 0.3683, 0.3763, 0.3910, 0.4053, 0.3634, 0.3879},
+      { 0.4313, 0.4447, 0.4654, 0.4748, 0.5234, 0.4250, 0.4555, 0.4375, 0.4652, 0.3983, 0.4354, 0.5716, 0.5853, 0.5213, 0.5483, 0.5465, 0.5612, 0.5727, 0.4369, 0.5483},
+      { 0.4130, 0.4578, 0.4926, 0.4586, 0.5298, 0.4274, 0.4433, 0.4657, 0.5101, 0.4169, 0.4591, 0.5853, 0.6129, 0.5082, 0.5426, 0.5371, 0.5827, 0.5998, 0.4338, 0.5538},
+      { 0.3529, 0.3929, 0.4333, 0.4212, 0.4680, 0.3931, 0.4500, 0.4004, 0.4414, 0.3530, 0.3560, 0.5213, 0.5082, 0.5029, 0.5040, 0.4950, 0.4959, 0.5010, 0.4058, 0.4832},
+      { 0.3661, 0.4042, 0.4431, 0.4418, 0.4763, 0.3941, 0.4585, 0.4137, 0.4561, 0.3580, 0.3683, 0.5483, 0.5426, 0.5040, 0.5339, 0.5160, 0.5141, 0.5165, 0.4145, 0.4966},
+      { 0.3681, 0.4040, 0.4411, 0.4372, 0.4717, 0.3920, 0.4279, 0.4040, 0.4611, 0.3602, 0.3763, 0.5465, 0.5371, 0.4950, 0.5160, 0.5229, 0.5161, 0.5204, 0.4252, 0.4885},
+      { 0.3834, 0.4023, 0.4429, 0.4280, 0.4698, 0.4073, 0.4373, 0.4326, 0.4670, 0.3841, 0.3910, 0.5612, 0.5827, 0.4959, 0.5141, 0.5161, 0.5543, 0.5517, 0.4244, 0.5047},
+      { 0.3746, 0.3979, 0.4460, 0.4217, 0.4935, 0.4186, 0.4401, 0.4308, 0.4653, 0.3983, 0.4053, 0.5727, 0.5998, 0.5010, 0.5165, 0.5204, 0.5517, 0.5921, 0.4265, 0.5457},
+      { 0.3736, 0.3792, 0.3749, 0.3907, 0.3988, 0.3770, 0.3800, 0.3672, 0.4131, 0.3474, 0.3634, 0.4369, 0.4338, 0.4058, 0.4145, 0.4252, 0.4244, 0.4265, 0.4578, 0.4014},
+      { 0.3803, 0.3969, 0.4429, 0.3934, 0.4809, 0.3975, 0.4304, 0.4065, 0.4253, 0.3902, 0.3879, 0.5483, 0.5538, 0.4832, 0.4966, 0.4885, 0.5047, 0.5457, 0.4014, 0.6210}},
+    {
+      { 0.2443, 0.2262, 0.4725, 0.4299, 0.3852, 0.3363, 0.3395, 0.3414, 0.3797, 0.2741, 0.2718, 0.3790, 0.3600, 0.3030, 0.3106, 0.3154, 0.3327, 0.3218, 0.3347, 0.3383},
+      { 0.2262, 0.2312, 0.4790, 0.5118, 0.3670, 0.3159, 0.3407, 0.3192, 0.3458, 0.2359, 0.2662, 0.3813, 0.3841, 0.3493, 0.3543, 0.3542, 0.3561, 0.3468, 0.3387, 0.3389},
+      { 0.4725, 0.4790, 0.3437, 0.2643, 0.3779, 0.3689, 0.3945, 0.3624, 0.3972, 0.3245, 0.3275, 0.4598, 0.4687, 0.4224, 0.4371, 0.4373, 0.4165, 0.4291, 0.3850, 0.3918},
+      { 0.4299, 0.5118, 0.2643, 0.2291, 0.3186, 0.3291, 0.3541, 0.3209, 0.3448, 0.2692, 0.2690, 0.4037, 0.3792, 0.3630, 0.3770, 0.3589, 0.3597, 0.3523, 0.3153, 0.3322},
+      { 0.3852, 0.3670, 0.3779, 0.3186, 0.4175, 0.3727, 0.4084, 0.3680, 0.3731, 0.2955, 0.3153, 0.4699, 0.4731, 0.4098, 0.4178, 0.4156, 0.4198, 0.4342, 0.3413, 0.4034},
+      { 0.3363, 0.3159, 0.3689, 0.3291, 0.3727, 0.3483, 0.3622, 0.3488, 0.3549, 0.2816, 0.2927, 0.3633, 0.3693, 0.3387, 0.3350, 0.3318, 0.3373, 0.3574, 0.3326, 0.3387},
+      { 0.3395, 0.3407, 0.3945, 0.3541, 0.4084, 0.3622, 0.4423, 0.3818, 0.3966, 0.2784, 0.2949, 0.3935, 0.3952, 0.3995, 0.4033, 0.3714, 0.3686, 0.3738, 0.3288, 0.3710},
+      { 0.3414, 0.3192, 0.3624, 0.3209, 0.3680, 0.3488, 0.3818, 0.3849, 0.3757, 0.2926, 0.2988, 0.3833, 0.4098, 0.3483, 0.3649, 0.3489, 0.3725, 0.3687, 0.3223, 0.3551},
+      { 0.3797, 0.3458, 0.3972, 0.3448, 0.3731, 0.3549, 0.3966, 0.3757, 0.4012, 0.2788, 0.3172, 0.4181, 0.4562, 0.3934, 0.4097, 0.4118, 0.4099, 0.4048, 0.3702, 0.3608},
+      { 0.2741, 0.2359, 0.3245, 0.2692, 0.2955, 0.2816, 0.2784, 0.2926, 0.2788, 0.2644, 0.2729, 0.3337, 0.3430, 0.2885, 0.2863, 0.2969, 0.3100, 0.3250, 0.2894, 0.3214},
+      { 0.2718, 0.2662, 0.3275, 0.2690, 0.3153, 0.2927, 0.2949, 0.2988, 0.3172, 0.2729, 0.3045, 0.3893, 0.4049, 0.2982, 0.3069, 0.3186, 0.3359, 0.3454, 0.3178, 0.3335},
+      { 0.3790, 0.3813, 0.4598, 0.4037, 0.4699, 0.3633, 0.3935, 0.3833, 0.4181, 0.3337, 0.3893, 0.5063, 0.5154, 0.4628, 0.4805, 0.4843, 0.4972, 0.5071, 0.3698, 0.4665},
+      { 0.3600, 0.3841, 0.4687, 0.3792, 0.4731, 0.3693, 0.3952, 0.4098, 0.4562, 0.3430, 0.4049, 0.5154, 0.5308, 0.4463, 0.4770, 0.4644, 0.5111, 0.5333, 0.3646, 0.4770},
+      { 0.3030, 0.3493, 0.4224, 0.3630, 0.4098, 0.3387, 0.3995, 0.3483, 0.3934, 0.2885, 0.2982, 0.4628, 0.4463, 0.4487, 0.4435, 0.4310, 0.4206, 0.4393, 0.3429, 0.4067},
+      { 0.3106, 0.3543, 0.4371, 0.3770, 0.4178, 0.3350, 0.4033, 0.3649, 0.4097, 0.2863, 0.3069, 0.4805, 0.4770, 0.4435, 0.4662, 0.4481, 0.4403, 0.4579, 0.3502, 0.4041},
+      { 0.3154, 0.3542, 0.4373, 0.3589, 0.4156, 0.3318, 0.3714, 0.3489, 0.4118, 0.2969, 0.3186, 0.4843, 0.4644, 0.4310, 0.4481, 0.4557, 0.4411, 0.4561, 0.3611, 0.4132},
+      { 0.3327, 0.3561, 0.4165, 0.3597, 0.4198, 0.3373, 0.3686, 0.3725, 0.4099, 0.3100, 0.3359, 0.4972, 0.5111, 0.4206, 0.4403, 0.4411, 0.4644, 0.4765, 0.3612, 0.4153},
+      { 0.3218, 0.3468, 0.4291, 0.3523, 0.4342, 0.3574, 0.3738, 0.3687, 0.4048, 0.3250, 0.3454, 0.5071, 0.5333, 0.4393, 0.4579, 0.4561, 0.4765, 0.5263, 0.3545, 0.4461},
+      { 0.3347, 0.3387, 0.3850, 0.3153, 0.3413, 0.3326, 0.3288, 0.3223, 0.3702, 0.2894, 0.3178, 0.3698, 0.3646, 0.3429, 0.3502, 0.3611, 0.3612, 0.3545, 0.4154, 0.3346},
+      { 0.3383, 0.3389, 0.3918, 0.3322, 0.4034, 0.3387, 0.3710, 0.3551, 0.3608, 0.3214, 0.3335, 0.4665, 0.4770, 0.4067, 0.4041, 0.4132, 0.4153, 0.4461, 0.3346, 0.5882}},
+    {
+      { 0.1934, 0.2016, 0.4235, 0.3553, 0.3251, 0.2724, 0.2833, 0.2845, 0.3000, 0.2531, 0.2218, 0.3395, 0.3114, 0.2536, 0.2634, 0.2608, 0.2890, 0.2810, 0.2480, 0.2968},
+      { 0.2016, 0.2110, 0.4390, 0.3670, 0.6071, 0.3003, 0.3062, 0.3327, 0.3435, 0.2381, 0.2346, 0.4095, 0.3936, 0.3003, 0.3190, 0.3121, 0.3351, 0.3600, 0.2734, 0.3250},
+      { 0.4235, 0.4390, 0.2899, 0.2352, 0.1692, 0.3047, 0.3265, 0.2913, 0.3200, 0.2669, 0.2608, 0.3746, 0.3866, 0.3418, 0.3610, 0.3638, 0.3486, 0.3573, 0.3041, 0.3319},
+      { 0.3553, 0.3670, 0.2352, 0.2066, 0.0848, 0.2622, 0.2895, 0.2586, 0.2834, 0.2100, 0.1970, 0.3370, 0.3247, 0.2797, 0.2905, 0.2972, 0.2881, 0.2872, 0.2574, 0.2455},
+      { 0.3251, 0.6071, 0.1692, 0.0848, 0.3794, 0.2222, 0.2433, 0.2073, 0.2949, 0.2170, 0.1618, 0.3344, 0.3684, 0.2755, 0.2835, 0.2631, 0.3536, 0.3533, 0.1635, 0.4012},
+      { 0.2724, 0.3003, 0.3047, 0.2622, 0.2222, 0.2725, 0.2874, 0.2839, 0.2877, 0.2325, 0.2346, 0.3094, 0.3374, 0.2825, 0.2818, 0.2785, 0.2947, 0.3159, 0.2484, 0.3086},
+      { 0.2833, 0.3062, 0.3265, 0.2895, 0.2433, 0.2874, 0.3501, 0.3003, 0.3227, 0.2411, 0.2381, 0.3457, 0.3457, 0.3385, 0.3518, 0.3190, 0.3362, 0.3309, 0.2561, 0.3385},
+      { 0.2845, 0.3327, 0.2913, 0.2586, 0.2073, 0.2839, 0.3003, 0.3245, 0.3217, 0.2522, 0.2523, 0.3267, 0.3521, 0.2928, 0.3008, 0.2783, 0.3059, 0.3197, 0.2463, 0.3103},
+      { 0.3000, 0.3435, 0.3200, 0.2834, 0.2949, 0.2877, 0.3227, 0.3217, 0.3214, 0.2393, 0.2385, 0.3616, 0.3979, 0.3180, 0.3317, 0.3354, 0.3697, 0.3546, 0.2779, 0.3267},
+      { 0.2531, 0.2381, 0.2669, 0.2100, 0.2170, 0.2325, 0.2411, 0.2522, 0.2393, 0.2358, 0.2212, 0.2826, 0.3221, 0.2429, 0.2578, 0.2549, 0.2766, 0.2857, 0.2208, 0.2938},
+      { 0.2218, 0.2346, 0.2608, 0.1970, 0.1618, 0.2346, 0.2381, 0.2523, 0.2385, 0.2212, 0.2471, 0.3275, 0.3529, 0.2477, 0.2575, 0.2690, 0.2924, 0.3000, 0.2443, 0.2930},
+      { 0.3395, 0.4095, 0.3746, 0.3370, 0.3344, 0.3094, 0.3457, 0.3267, 0.3616, 0.2826, 0.3275, 0.4382, 0.4801, 0.4148, 0.4315, 0.4283, 0.4501, 0.4764, 0.3031, 0.4631},
+      { 0.3114, 0.3936, 0.3866, 0.3247, 0.3684, 0.3374, 0.3457, 0.3521, 0.3979, 0.3221, 0.3529, 0.4801, 0.4842, 0.4020, 0.4457, 0.4169, 0.4642, 0.4950, 0.3149, 0.4898},
+      { 0.2536, 0.3003, 0.3418, 0.2797, 0.2755, 0.2825, 0.3385, 0.2928, 0.3180, 0.2429, 0.2477, 0.4148, 0.4020, 0.4110, 0.4157, 0.3932, 0.3813, 0.4048, 0.2859, 0.3794},
+      { 0.2634, 0.3190, 0.3610, 0.2905, 0.2835, 0.2818, 0.3518, 0.3008, 0.3317, 0.2578, 0.2575, 0.4315, 0.4457, 0.4157, 0.4373, 0.4167, 0.4192, 0.4289, 0.2991, 0.3849},
+      { 0.2608, 0.3121, 0.3638, 0.2972, 0.2631, 0.2785, 0.3190, 0.2783, 0.3354, 0.2549, 0.2690, 0.4283, 0.4169, 0.3932, 0.4167, 0.4148, 0.4058, 0.4309, 0.3058, 0.3740},
+      { 0.2890, 0.3351, 0.3486, 0.2881, 0.3536, 0.2947, 0.3362, 0.3059, 0.3697, 0.2766, 0.2924, 0.4501, 0.4642, 0.3813, 0.4192, 0.4058, 0.4569, 0.4552, 0.3105, 0.4202},
+      { 0.2810, 0.3600, 0.3573, 0.2872, 0.3533, 0.3159, 0.3309, 0.3197, 0.3546, 0.2857, 0.3000, 0.4764, 0.4950, 0.4048, 0.4289, 0.4309, 0.4552, 0.5043, 0.3175, 0.4523},
+      { 0.2480, 0.2734, 0.3041, 0.2574, 0.1635, 0.2484, 0.2561, 0.2463, 0.2779, 0.2208, 0.2443, 0.3031, 0.3149, 0.2859, 0.2991, 0.3058, 0.3105, 0.3175, 0.3082, 0.2865},
+      { 0.2968, 0.3250, 0.3319, 0.2455, 0.4012, 0.3086, 0.3385, 0.3103, 0.3267, 0.2938, 0.2930, 0.4631, 0.4898, 0.3794, 0.3849, 0.3740, 0.4202, 0.4523, 0.2865, 0.4915}},
+    {
+      { 0.1282, 0.1203, 0.3550, 0.3053, 0.2844, 0.2027, 0.2211, 0.2364, 0.2634, 0.1904, 0.1685, 0.2763, 0.2718, 0.1948, 0.2029, 0.2043, 0.2308, 0.2276, 0.1891, 0.2565},
+      { 0.1203, 0.1492, 0.3655, 0.3159, 0.3003, 0.3606, 0.3071, 0.2592, 0.2550, 0.2140, 0.1950, 0.3037, 0.3046, 0.2694, 0.2643, 0.2482, 0.2719, 0.2675, 0.2620, 0.3038},
+      { 0.3550, 0.3655, 0.2470, 0.1841, 0.2660, 0.1705, 0.2226, 0.2354, 0.2781, 0.1811, 0.2038, 0.3510, 0.3541, 0.2687, 0.2856, 0.2920, 0.2612, 0.3020, 0.2188, 0.2100},
+      { 0.3053, 0.3159, 0.1841, 0.1506, 0.2062, 0.1139, 0.1692, 0.1879, 0.2277, 0.1081, 0.1308, 0.2933, 0.2818, 0.2072, 0.2164, 0.2219, 0.1996, 0.2264, 0.1632, 0.1221},
+      { 0.2844, 0.3003, 0.2660, 0.2062, 0.3163, 0.2262, 0.2676, 0.2509, 0.2592, 0.2080, 0.2218, 0.3750, 0.3845, 0.2890, 0.3083, 0.2923, 0.3116, 0.3447, 0.2109, 0.2936},
+      { 0.2027, 0.3606, 0.1705, 0.1139, 0.2262, 0.1486, 0.1665, 0.1833, 0.1841, 0.1285, 0.1132, 0.2393, 0.2597, 0.1931, 0.2059, 0.1728, 0.2128, 0.2277, 0.1221, 0.2184},
+      { 0.2211, 0.3071, 0.2226, 0.1692, 0.2676, 0.1665, 0.2359, 0.2236, 0.2398, 0.1467, 0.1449, 0.2801, 0.2716, 0.2542, 0.2594, 0.2291, 0.2482, 0.2644, 0.1553, 0.2384},
+      { 0.2364, 0.2592, 0.2354, 0.1879, 0.2509, 0.1833, 0.2236, 0.2596, 0.2522, 0.1830, 0.1823, 0.2840, 0.3081, 0.2296, 0.2304, 0.2219, 0.2600, 0.2601, 0.1682, 0.2322},
+      { 0.2634, 0.2550, 0.2781, 0.2277, 0.2592, 0.1841, 0.2398, 0.2522, 0.2766, 0.1704, 0.2008, 0.3084, 0.3386, 0.2498, 0.2654, 0.2711, 0.2720, 0.2881, 0.2121, 0.2339},
+      { 0.1904, 0.2140, 0.1811, 0.1081, 0.2080, 0.1285, 0.1467, 0.1830, 0.1704, 0.1509, 0.1355, 0.2576, 0.2649, 0.1807, 0.1895, 0.1894, 0.2256, 0.2444, 0.1461, 0.2126},
+      { 0.1685, 0.1950, 0.2038, 0.1308, 0.2218, 0.1132, 0.1449, 0.1823, 0.2008, 0.1355, 0.1838, 0.3166, 0.3418, 0.1887, 0.2075, 0.2152, 0.2337, 0.2665, 0.1546, 0.1786},
+      { 0.2763, 0.3037, 0.3510, 0.2933, 0.3750, 0.2393, 0.2801, 0.2840, 0.3084, 0.2576, 0.3166, 0.4198, 0.4499, 0.3574, 0.3792, 0.3741, 0.3942, 0.4354, 0.2581, 0.3469},
+      { 0.2718, 0.3046, 0.3541, 0.2818, 0.3845, 0.2597, 0.2716, 0.3081, 0.3386, 0.2649, 0.3418, 0.4499, 0.5121, 0.3525, 0.3861, 0.3848, 0.4352, 0.4602, 0.2714, 0.3625},
+      { 0.1948, 0.2694, 0.2687, 0.2072, 0.2890, 0.1931, 0.2542, 0.2296, 0.2498, 0.1807, 0.1887, 0.3574, 0.3525, 0.3362, 0.3411, 0.3137, 0.3129, 0.3433, 0.2197, 0.2993},
+      { 0.2029, 0.2643, 0.2856, 0.2164, 0.3083, 0.2059, 0.2594, 0.2304, 0.2654, 0.1895, 0.2075, 0.3792, 0.3861, 0.3411, 0.3630, 0.3423, 0.3386, 0.3663, 0.2338, 0.3092},
+      { 0.2043, 0.2482, 0.2920, 0.2219, 0.2923, 0.1728, 0.2291, 0.2219, 0.2711, 0.1894, 0.2152, 0.3741, 0.3848, 0.3137, 0.3423, 0.3366, 0.3246, 0.3656, 0.2261, 0.2763},
+      { 0.2308, 0.2719, 0.2612, 0.1996, 0.3116, 0.2128, 0.2482, 0.2600, 0.2720, 0.2256, 0.2337, 0.3942, 0.4352, 0.3129, 0.3386, 0.3246, 0.3730, 0.3889, 0.2347, 0.3323},
+      { 0.2276, 0.2675, 0.3020, 0.2264, 0.3447, 0.2277, 0.2644, 0.2601, 0.2881, 0.2444, 0.2665, 0.4354, 0.4602, 0.3433, 0.3663, 0.3656, 0.3889, 0.4406, 0.2438, 0.3476},
+      { 0.1891, 0.2620, 0.2188, 0.1632, 0.2109, 0.1221, 0.1553, 0.1682, 0.2121, 0.1461, 0.1546, 0.2581, 0.2714, 0.2197, 0.2338, 0.2261, 0.2347, 0.2438, 0.2127, 0.1986},
+      { 0.2565, 0.3038, 0.2100, 0.1221, 0.2936, 0.2184, 0.2384, 0.2322, 0.2339, 0.2126, 0.1786, 0.3469, 0.3625, 0.2993, 0.3092, 0.2763, 0.3323, 0.3476, 0.1986, 0.5239}},
+    {
+      { 0.1267, 0.1197, 0.3690, 0.3196, 0.3001, 0.2299, 0.2040, 0.2402, 0.2638, 0.1975, 0.1793, 0.2937, 0.2885, 0.2130, 0.2145, 0.2146, 0.2297, 0.2411, 0.1994, 0.2748},
+      { 0.1197, 0.1541, 0.3821, 0.3407, 0.3062, 0.3071, 0.3772, 0.2535, 0.2610, 0.2043, 0.2003, 0.3183, 0.3339, 0.3058, 0.2919, 0.2740, 0.2925, 0.2790, 0.2607, 0.3396},
+      { 0.3690, 0.3821, 0.2559, 0.1956, 0.2889, 0.2194, 0.1984, 0.2427, 0.2848, 0.2012, 0.2097, 0.3656, 0.3745, 0.2798, 0.2917, 0.2844, 0.2533, 0.3089, 0.2311, 0.2194},
+      { 0.3196, 0.3407, 0.1956, 0.1645, 0.2281, 0.1754, 0.1456, 0.2016, 0.2430, 0.1357, 0.1414, 0.3116, 0.2938, 0.2304, 0.2402, 0.2219, 0.1990, 0.2315, 0.1827, 0.1431},
+      { 0.3001, 0.3062, 0.2889, 0.2281, 0.3368, 0.2684, 0.2637, 0.2507, 0.2715, 0.2161, 0.2276, 0.3913, 0.4059, 0.3053, 0.3097, 0.2914, 0.3143, 0.3444, 0.2234, 0.3196},
+      { 0.2299, 0.3071, 0.2194, 0.1754, 0.2684, 0.1947, 0.1849, 0.2171, 0.2233, 0.1627, 0.1450, 0.2694, 0.2945, 0.2249, 0.2301, 0.2111, 0.2373, 0.2545, 0.1654, 0.2299},
+      { 0.2040, 0.3772, 0.1984, 0.1456, 0.2637, 0.1849, 0.2277, 0.1990, 0.2378, 0.1299, 0.1155, 0.2696, 0.2547, 0.2670, 0.2644, 0.2159, 0.2417, 0.2502, 0.1367, 0.2529},
+      { 0.2402, 0.2535, 0.2427, 0.2016, 0.2507, 0.2171, 0.1990, 0.2609, 0.2586, 0.1966, 0.1883, 0.2955, 0.3079, 0.2181, 0.2261, 0.2188, 0.2391, 0.2595, 0.1798, 0.2146},
+      { 0.2638, 0.2610, 0.2848, 0.2430, 0.2715, 0.2233, 0.2378, 0.2586, 0.2812, 0.1845, 0.2055, 0.3183, 0.3437, 0.2654, 0.2727, 0.2704, 0.2747, 0.2913, 0.2251, 0.2356},
+      { 0.1975, 0.2043, 0.2012, 0.1357, 0.2161, 0.1627, 0.1299, 0.1966, 0.1845, 0.1622, 0.1551, 0.2646, 0.2803, 0.1813, 0.1913, 0.1988, 0.2168, 0.2477, 0.1597, 0.2102},
+      { 0.1793, 0.2003, 0.2097, 0.1414, 0.2276, 0.1450, 0.1155, 0.1883, 0.2055, 0.1551, 0.1821, 0.3048, 0.3181, 0.1765, 0.1959, 0.1994, 0.2299, 0.2596, 0.1622, 0.2081},
+      { 0.2937, 0.3183, 0.3656, 0.3116, 0.3913, 0.2694, 0.2696, 0.2955, 0.3183, 0.2646, 0.3048, 0.4268, 0.4445, 0.3696, 0.3828, 0.3748, 0.3901, 0.4304, 0.2687, 0.3549},
+      { 0.2885, 0.3339, 0.3745, 0.2938, 0.4059, 0.2945, 0.2547, 0.3079, 0.3437, 0.2803, 0.3181, 0.4445, 0.4845, 0.3588, 0.3885, 0.3839, 0.4171, 0.4556, 0.2752, 0.3809},
+      { 0.2130, 0.3058, 0.2798, 0.2304, 0.3053, 0.2249, 0.2670, 0.2181, 0.2654, 0.1813, 0.1765, 0.3696, 0.3588, 0.3545, 0.3543, 0.3203, 0.3239, 0.3568, 0.2207, 0.3250},
+      { 0.2145, 0.2919, 0.2917, 0.2402, 0.3097, 0.2301, 0.2644, 0.2261, 0.2727, 0.1913, 0.1959, 0.3828, 0.3885, 0.3543, 0.3744, 0.3403, 0.3340, 0.3714, 0.2324, 0.3329},
+      { 0.2146, 0.2740, 0.2844, 0.2219, 0.2914, 0.2111, 0.2159, 0.2188, 0.2704, 0.1988, 0.1994, 0.3748, 0.3839, 0.3203, 0.3403, 0.3332, 0.3194, 0.3666, 0.2275, 0.2920},
+      { 0.2297, 0.2925, 0.2533, 0.1990, 0.3143, 0.2373, 0.2417, 0.2391, 0.2747, 0.2168, 0.2299, 0.3901, 0.4171, 0.3239, 0.3340, 0.3194, 0.3589, 0.3895, 0.2183, 0.3429},
+      { 0.2411, 0.2790, 0.3089, 0.2315, 0.3444, 0.2545, 0.2502, 0.2595, 0.2913, 0.2477, 0.2596, 0.4304, 0.4556, 0.3568, 0.3714, 0.3666, 0.3895, 0.4382, 0.2516, 0.3509},
+      { 0.1994, 0.2607, 0.2311, 0.1827, 0.2234, 0.1654, 0.1367, 0.1798, 0.2251, 0.1597, 0.1622, 0.2687, 0.2752, 0.2207, 0.2324, 0.2275, 0.2183, 0.2516, 0.2288, 0.2019},
+      { 0.2748, 0.3396, 0.2194, 0.1431, 0.3196, 0.2299, 0.2529, 0.2146, 0.2356, 0.2102, 0.2081, 0.3549, 0.3809, 0.3250, 0.3329, 0.2920, 0.3429, 0.3509, 0.2019, 0.4839}},
+    {
+      { 0.1462, 0.1685, 0.3582, 0.3100, 0.2999, 0.2325, 0.2328, 0.2299, 0.2721, 0.1728, 0.1776, 0.2916, 0.2767, 0.2171, 0.2237, 0.2204, 0.2528, 0.2376, 0.2134, 0.2629},
+      { 0.1685, 0.1538, 0.3715, 0.3192, 0.3327, 0.2592, 0.2535, 0.4106, 0.2757, 0.1691, 0.1783, 0.3153, 0.3145, 0.2749, 0.2943, 0.2775, 0.2781, 0.2685, 0.2548, 0.3258},
+      { 0.3582, 0.3715, 0.2541, 0.1962, 0.2553, 0.2374, 0.2528, 0.1885, 0.2814, 0.2002, 0.2175, 0.3514, 0.3489, 0.2820, 0.3032, 0.3113, 0.2880, 0.3118, 0.2605, 0.2407},
+      { 0.3100, 0.3192, 0.1962, 0.1646, 0.1979, 0.1969, 0.2129, 0.1521, 0.2342, 0.1442, 0.1590, 0.2875, 0.2721, 0.2274, 0.2414, 0.2430, 0.2289, 0.2317, 0.2235, 0.1670},
+      { 0.2999, 0.3327, 0.2553, 0.1979, 0.3088, 0.2553, 0.2703, 0.2481, 0.2665, 0.2091, 0.2160, 0.3618, 0.3704, 0.2911, 0.3013, 0.2979, 0.3045, 0.3312, 0.2212, 0.3462},
+      { 0.2325, 0.2592, 0.2374, 0.1969, 0.2553, 0.2201, 0.2160, 0.2024, 0.2352, 0.1718, 0.1776, 0.2741, 0.2816, 0.2206, 0.2276, 0.2221, 0.2477, 0.2623, 0.2052, 0.2470},
+      { 0.2328, 0.2535, 0.2528, 0.2129, 0.2703, 0.2160, 0.2611, 0.2165, 0.2526, 0.1665, 0.1845, 0.2889, 0.2969, 0.2633, 0.2741, 0.2489, 0.2635, 0.2779, 0.1952, 0.2499},
+      { 0.2299, 0.4106, 0.1885, 0.1521, 0.2481, 0.2024, 0.2165, 0.2544, 0.2673, 0.1942, 0.1791, 0.2658, 0.2734, 0.2258, 0.2302, 0.2128, 0.2513, 0.2532, 0.1581, 0.2653},
+      { 0.2721, 0.2757, 0.2814, 0.2342, 0.2665, 0.2352, 0.2526, 0.2673, 0.2774, 0.1659, 0.2154, 0.3063, 0.3408, 0.2587, 0.2853, 0.2857, 0.2853, 0.2919, 0.2436, 0.2330},
+      { 0.1728, 0.1691, 0.2002, 0.1442, 0.2091, 0.1718, 0.1665, 0.1942, 0.1659, 0.1541, 0.1659, 0.2453, 0.2487, 0.1784, 0.1835, 0.1866, 0.2140, 0.2284, 0.1566, 0.2410},
+      { 0.1776, 0.1783, 0.2175, 0.1590, 0.2160, 0.1776, 0.1845, 0.1791, 0.2154, 0.1659, 0.2145, 0.3027, 0.3318, 0.2061, 0.2165, 0.2190, 0.2455, 0.2737, 0.2020, 0.2114},
+      { 0.2916, 0.3153, 0.3514, 0.2875, 0.3618, 0.2741, 0.2889, 0.2658, 0.3063, 0.2453, 0.3027, 0.4202, 0.4465, 0.3518, 0.3874, 0.3748, 0.3971, 0.4206, 0.2648, 0.3710},
+      { 0.2767, 0.3145, 0.3489, 0.2721, 0.3704, 0.2816, 0.2969, 0.2734, 0.3408, 0.2487, 0.3318, 0.4465, 0.4961, 0.3477, 0.3661, 0.3757, 0.4201, 0.4456, 0.2716, 0.3666},
+      { 0.2171, 0.2749, 0.2820, 0.2274, 0.2911, 0.2206, 0.2633, 0.2258, 0.2587, 0.1784, 0.2061, 0.3518, 0.3477, 0.3339, 0.3431, 0.3173, 0.3262, 0.3586, 0.2290, 0.2965},
+      { 0.2237, 0.2943, 0.3032, 0.2414, 0.3013, 0.2276, 0.2741, 0.2302, 0.2853, 0.1835, 0.2165, 0.3874, 0.3661, 0.3431, 0.3641, 0.3480, 0.3471, 0.3639, 0.2430, 0.3240},
+      { 0.2204, 0.2775, 0.3113, 0.2430, 0.2979, 0.2221, 0.2489, 0.2128, 0.2857, 0.1866, 0.2190, 0.3748, 0.3757, 0.3173, 0.3480, 0.3428, 0.3412, 0.3700, 0.2452, 0.2976},
+      { 0.2528, 0.2781, 0.2880, 0.2289, 0.3045, 0.2477, 0.2635, 0.2513, 0.2853, 0.2140, 0.2455, 0.3971, 0.4201, 0.3262, 0.3471, 0.3412, 0.3558, 0.4081, 0.2524, 0.3448},
+      { 0.2376, 0.2685, 0.3118, 0.2317, 0.3312, 0.2623, 0.2779, 0.2532, 0.2919, 0.2284, 0.2737, 0.4206, 0.4456, 0.3586, 0.3639, 0.3700, 0.4081, 0.4433, 0.2589, 0.3945},
+      { 0.2134, 0.2548, 0.2605, 0.2235, 0.2212, 0.2052, 0.1952, 0.1581, 0.2436, 0.1566, 0.2020, 0.2648, 0.2716, 0.2290, 0.2430, 0.2452, 0.2524, 0.2589, 0.2751, 0.2129},
+      { 0.2629, 0.3258, 0.2407, 0.1670, 0.3462, 0.2470, 0.2499, 0.2653, 0.2330, 0.2410, 0.2114, 0.3710, 0.3666, 0.2965, 0.3240, 0.2976, 0.3448, 0.3945, 0.2129, 0.5193}},
+    {
+      { 0.1775, 0.1711, 0.3830, 0.3461, 0.2870, 0.2515, 0.2474, 0.2537, 0.2656, 0.1949, 0.1841, 0.2918, 0.2894, 0.2053, 0.2168, 0.2266, 0.2533, 0.2449, 0.2581, 0.2471},
+      { 0.1711, 0.2171, 0.3928, 0.3458, 0.3435, 0.2550, 0.2610, 0.2757, 0.4183, 0.1848, 0.1988, 0.3235, 0.3322, 0.2765, 0.2818, 0.2872, 0.3145, 0.2898, 0.2776, 0.2801},
+      { 0.3830, 0.3928, 0.2719, 0.2197, 0.2698, 0.2684, 0.2830, 0.2691, 0.2516, 0.2263, 0.2382, 0.3725, 0.3714, 0.3041, 0.3268, 0.3350, 0.3023, 0.3280, 0.3043, 0.2777},
+      { 0.3461, 0.3458, 0.2197, 0.1955, 0.2232, 0.2447, 0.2497, 0.2403, 0.1992, 0.1671, 0.1903, 0.3324, 0.2987, 0.2520, 0.2710, 0.2791, 0.2484, 0.2681, 0.2716, 0.2233},
+      { 0.2870, 0.3435, 0.2698, 0.2232, 0.3350, 0.2723, 0.2944, 0.2628, 0.2601, 0.2143, 0.2344, 0.3841, 0.3975, 0.3063, 0.3260, 0.3208, 0.3430, 0.3551, 0.2580, 0.3272},
+      { 0.2515, 0.2550, 0.2684, 0.2447, 0.2723, 0.2526, 0.2454, 0.2578, 0.2386, 0.1900, 0.1979, 0.2789, 0.2914, 0.2343, 0.2381, 0.2368, 0.2485, 0.2790, 0.2448, 0.2516},
+      { 0.2474, 0.2610, 0.2830, 0.2497, 0.2944, 0.2454, 0.2935, 0.2764, 0.2567, 0.1842, 0.1945, 0.3105, 0.3118, 0.2786, 0.2916, 0.2677, 0.2653, 0.2885, 0.2288, 0.2775},
+      { 0.2537, 0.2757, 0.2691, 0.2403, 0.2628, 0.2578, 0.2764, 0.2780, 0.2504, 0.1987, 0.2105, 0.3099, 0.3407, 0.2529, 0.2707, 0.2571, 0.2772, 0.2887, 0.2374, 0.2738},
+      { 0.2656, 0.4183, 0.2516, 0.1992, 0.2601, 0.2386, 0.2567, 0.2504, 0.3000, 0.1824, 0.1969, 0.3094, 0.3614, 0.2600, 0.2767, 0.2793, 0.3055, 0.3083, 0.2311, 0.2748},
+      { 0.1949, 0.1848, 0.2263, 0.1671, 0.2143, 0.1900, 0.1842, 0.1987, 0.1824, 0.1738, 0.1717, 0.2611, 0.2794, 0.2036, 0.2102, 0.2126, 0.2347, 0.2431, 0.1995, 0.2322},
+      { 0.1841, 0.1988, 0.2382, 0.1903, 0.2344, 0.1979, 0.1945, 0.2105, 0.1969, 0.1717, 0.2050, 0.3151, 0.3424, 0.1990, 0.2159, 0.2306, 0.2325, 0.2812, 0.2304, 0.2358},
+      { 0.2918, 0.3235, 0.3725, 0.3324, 0.3841, 0.2789, 0.3105, 0.3099, 0.3094, 0.2611, 0.3151, 0.4224, 0.4574, 0.3692, 0.3963, 0.3966, 0.4024, 0.4492, 0.2899, 0.3922},
+      { 0.2894, 0.3322, 0.3714, 0.2987, 0.3975, 0.2914, 0.3118, 0.3407, 0.3614, 0.2794, 0.3424, 0.4574, 0.4866, 0.3538, 0.4035, 0.3970, 0.4293, 0.4672, 0.2925, 0.4006},
+      { 0.2053, 0.2765, 0.3041, 0.2520, 0.3063, 0.2343, 0.2786, 0.2529, 0.2600, 0.2036, 0.1990, 0.3692, 0.3538, 0.3294, 0.3414, 0.3256, 0.3251, 0.3557, 0.2398, 0.3295},
+      { 0.2168, 0.2818, 0.3268, 0.2710, 0.3260, 0.2381, 0.2916, 0.2707, 0.2767, 0.2102, 0.2159, 0.3963, 0.4035, 0.3414, 0.3729, 0.3527, 0.3497, 0.3796, 0.2495, 0.3399},
+      { 0.2266, 0.2872, 0.3350, 0.2791, 0.3208, 0.2368, 0.2677, 0.2571, 0.2793, 0.2126, 0.2306, 0.3966, 0.3970, 0.3256, 0.3527, 0.3612, 0.3477, 0.3819, 0.2626, 0.3219},
+      { 0.2533, 0.3145, 0.3023, 0.2484, 0.3430, 0.2485, 0.2653, 0.2772, 0.3055, 0.2347, 0.2325, 0.4024, 0.4293, 0.3251, 0.3497, 0.3477, 0.3931, 0.4178, 0.2636, 0.3422},
+      { 0.2449, 0.2898, 0.3280, 0.2681, 0.3551, 0.2790, 0.2885, 0.2887, 0.3083, 0.2431, 0.2812, 0.4492, 0.4672, 0.3557, 0.3796, 0.3819, 0.4178, 0.4517, 0.2760, 0.3816},
+      { 0.2581, 0.2776, 0.3043, 0.2716, 0.2580, 0.2448, 0.2288, 0.2374, 0.2311, 0.1995, 0.2304, 0.2899, 0.2925, 0.2398, 0.2495, 0.2626, 0.2636, 0.2760, 0.3364, 0.2411},
+      { 0.2471, 0.2801, 0.2777, 0.2233, 0.3272, 0.2516, 0.2775, 0.2738, 0.2748, 0.2322, 0.2358, 0.3922, 0.4006, 0.3295, 0.3399, 0.3219, 0.3422, 0.3816, 0.2411, 0.4696}},
+    {
+      { 0.0579, 0.0621, 0.2935, 0.2371, 0.2135, 0.1756, 0.1712, 0.1659, 0.1883, 0.1321, 0.1203, 0.2453, 0.2206, 0.1417, 0.1514, 0.1520, 0.1840, 0.1896, 0.1450, 0.2402},
+      { 0.0621, 0.0997, 0.2992, 0.2359, 0.2381, 0.2140, 0.2043, 0.1691, 0.1848, 0.2522, 0.1322, 0.2596, 0.2644, 0.1986, 0.1934, 0.1894, 0.2149, 0.2228, 0.2177, 0.2490},
+      { 0.2935, 0.2992, 0.1911, 0.1330, 0.2029, 0.1641, 0.1818, 0.1878, 0.2075, 0.0585, 0.1570, 0.3020, 0.3053, 0.2106, 0.2241, 0.2334, 0.2118, 0.2477, 0.1536, 0.1754},
+      { 0.2371, 0.2359, 0.1330, 0.0780, 0.1346, 0.1036, 0.1248, 0.1290, 0.1574, 0.0000, 0.0864, 0.2396, 0.2120, 0.1477, 0.1538, 0.1624, 0.1370, 0.1732, 0.0976, 0.0897},
+      { 0.2135, 0.2381, 0.2029, 0.1346, 0.2572, 0.1958, 0.2150, 0.1932, 0.2002, 0.1065, 0.1715, 0.3259, 0.3241, 0.2347, 0.2404, 0.2324, 0.2453, 0.3025, 0.1595, 0.2605},
+      { 0.1756, 0.2140, 0.1641, 0.1036, 0.1958, 0.1618, 0.1623, 0.1694, 0.1520, 0.0675, 0.1221, 0.2300, 0.2321, 0.1695, 0.1697, 0.1623, 0.1876, 0.2155, 0.1248, 0.1881},
+      { 0.1712, 0.2043, 0.1818, 0.1248, 0.2150, 0.1623, 0.1960, 0.1739, 0.1923, 0.0805, 0.1333, 0.2553, 0.2654, 0.2088, 0.2256, 0.1952, 0.2011, 0.2461, 0.1337, 0.2140},
+      { 0.1659, 0.1691, 0.1878, 0.1290, 0.1932, 0.1694, 0.1739, 0.1964, 0.1766, 0.0846, 0.1666, 0.2322, 0.2490, 0.1611, 0.1680, 0.1670, 0.2100, 0.2137, 0.1195, 0.2036},
+      { 0.1883, 0.1848, 0.2075, 0.1574, 0.2002, 0.1520, 0.1923, 0.1766, 0.2053, 0.0943, 0.1532, 0.2552, 0.2807, 0.1868, 0.2012, 0.2152, 0.2274, 0.2285, 0.1551, 0.1764},
+      { 0.1321, 0.2522, 0.0585, 0.0000, 0.1065, 0.0675, 0.0805, 0.0846, 0.0943, 0.0518, 0.0390, 0.1639, 0.1541, 0.1013, 0.1015, 0.0750, 0.1399, 0.1559, 0.0304, 0.1585},
+      { 0.1203, 0.1322, 0.1570, 0.0864, 0.1715, 0.1221, 0.1333, 0.1666, 0.1532, 0.0390, 0.1459, 0.2691, 0.2901, 0.1416, 0.1656, 0.1741, 0.1825, 0.2329, 0.0996, 0.1538},
+      { 0.2453, 0.2596, 0.3020, 0.2396, 0.3259, 0.2300, 0.2553, 0.2322, 0.2552, 0.1639, 0.2691, 0.3844, 0.4132, 0.3134, 0.3308, 0.3313, 0.3501, 0.3993, 0.2228, 0.3126},
+      { 0.2206, 0.2644, 0.3053, 0.2120, 0.3241, 0.2321, 0.2654, 0.2490, 0.2807, 0.1541, 0.2901, 0.4132, 0.4303, 0.3046, 0.3405, 0.3428, 0.3934, 0.4299, 0.2017, 0.3068},
+      { 0.1417, 0.1986, 0.2106, 0.1477, 0.2347, 0.1695, 0.2088, 0.1611, 0.1868, 0.1013, 0.1416, 0.3134, 0.3046, 0.2925, 0.2954, 0.2678, 0.2631, 0.3088, 0.1828, 0.2549},
+      { 0.1514, 0.1934, 0.2241, 0.1538, 0.2404, 0.1697, 0.2256, 0.1680, 0.2012, 0.1015, 0.1656, 0.3308, 0.3405, 0.2954, 0.3086, 0.2944, 0.2881, 0.3297, 0.1971, 0.2803},
+      { 0.1520, 0.1894, 0.2334, 0.1624, 0.2324, 0.1623, 0.1952, 0.1670, 0.2152, 0.0750, 0.1741, 0.3313, 0.3428, 0.2678, 0.2944, 0.2847, 0.2797, 0.3381, 0.1799, 0.2411},
+      { 0.1840, 0.2149, 0.2118, 0.1370, 0.2453, 0.1876, 0.2011, 0.2100, 0.2274, 0.1399, 0.1825, 0.3501, 0.3934, 0.2631, 0.2881, 0.2797, 0.3237, 0.3516, 0.1867, 0.3129},
+      { 0.1896, 0.2228, 0.2477, 0.1732, 0.3025, 0.2155, 0.2461, 0.2137, 0.2285, 0.1559, 0.2329, 0.3993, 0.4299, 0.3088, 0.3297, 0.3381, 0.3516, 0.4060, 0.2176, 0.3082},
+      { 0.1450, 0.2177, 0.1536, 0.0976, 0.1595, 0.1248, 0.1337, 0.1195, 0.1551, 0.0304, 0.0996, 0.2228, 0.2017, 0.1828, 0.1971, 0.1799, 0.1867, 0.2176, 0.1425, 0.1713},
+      { 0.2402, 0.2490, 0.1754, 0.0897, 0.2605, 0.1881, 0.2140, 0.2036, 0.1764, 0.1585, 0.1538, 0.3126, 0.3068, 0.2549, 0.2803, 0.2411, 0.3129, 0.3082, 0.1713, 0.4339}},
+    {
+      { 0.0906, 0.0624, 0.3277, 0.2841, 0.2442, 0.1838, 0.1852, 0.1991, 0.2207, 0.1351, 0.1433, 0.2374, 0.2314, 0.1706, 0.1796, 0.1696, 0.2016, 0.1804, 0.1636, 0.2442},
+      { 0.0624, 0.0868, 0.3183, 0.2662, 0.2346, 0.1950, 0.2003, 0.1783, 0.1988, 0.1322, 0.2797, 0.2631, 0.2592, 0.2329, 0.2221, 0.2292, 0.2328, 0.2143, 0.2113, 0.2473},
+      { 0.3277, 0.3183, 0.2025, 0.1477, 0.2336, 0.1834, 0.2061, 0.2273, 0.2355, 0.1682, 0.1509, 0.3162, 0.3271, 0.2310, 0.2451, 0.2455, 0.2252, 0.2686, 0.1905, 0.2083},
+      { 0.2841, 0.2662, 0.1477, 0.1130, 0.1692, 0.1412, 0.1576, 0.1749, 0.1851, 0.1143, 0.0811, 0.2593, 0.2525, 0.1785, 0.1810, 0.1805, 0.1662, 0.1994, 0.1410, 0.1137},
+      { 0.2442, 0.2346, 0.2336, 0.1692, 0.2759, 0.2078, 0.2355, 0.2349, 0.2265, 0.1790, 0.1921, 0.3442, 0.3584, 0.2525, 0.2461, 0.2579, 0.2820, 0.3138, 0.1844, 0.2837},
+      { 0.1838, 0.1950, 0.1834, 0.1412, 0.2078, 0.1554, 0.1603, 0.1817, 0.1798, 0.1400, 0.1267, 0.2295, 0.2334, 0.1658, 0.1689, 0.1678, 0.1903, 0.2089, 0.1456, 0.1945},
+      { 0.1852, 0.2003, 0.2061, 0.1576, 0.2355, 0.1603, 0.1899, 0.2090, 0.2081, 0.1435, 0.1342, 0.2573, 0.2586, 0.2110, 0.2144, 0.2040, 0.2208, 0.2337, 0.1488, 0.2078},
+      { 0.1991, 0.1783, 0.2273, 0.1749, 0.2349, 0.1817, 0.2090, 0.2264, 0.2173, 0.1593, 0.1426, 0.2551, 0.2933, 0.1919, 0.1987, 0.1929, 0.2203, 0.2326, 0.1582, 0.1955},
+      { 0.2207, 0.1988, 0.2355, 0.1851, 0.2265, 0.1798, 0.2081, 0.2173, 0.2154, 0.1432, 0.1912, 0.2693, 0.3025, 0.2169, 0.2363, 0.2399, 0.2363, 0.2534, 0.1901, 0.1957},
+      { 0.1351, 0.1322, 0.1682, 0.1143, 0.1790, 0.1400, 0.1435, 0.1593, 0.1432, 0.1386, 0.1130, 0.2225, 0.2359, 0.1590, 0.1608, 0.1685, 0.2010, 0.2067, 0.1327, 0.2098},
+      { 0.1433, 0.2797, 0.1509, 0.0811, 0.1921, 0.1267, 0.1342, 0.1426, 0.1912, 0.1130, 0.1233, 0.2711, 0.2794, 0.1709, 0.1832, 0.1822, 0.2333, 0.2575, 0.1354, 0.2119},
+      { 0.2374, 0.2631, 0.3162, 0.2593, 0.3442, 0.2295, 0.2573, 0.2551, 0.2693, 0.2225, 0.2711, 0.3758, 0.4098, 0.3087, 0.3363, 0.3416, 0.3714, 0.4010, 0.2325, 0.3423},
+      { 0.2314, 0.2592, 0.3271, 0.2525, 0.3584, 0.2334, 0.2586, 0.2933, 0.3025, 0.2359, 0.2794, 0.4098, 0.4439, 0.3294, 0.3309, 0.3439, 0.3931, 0.4194, 0.2299, 0.3208},
+      { 0.1706, 0.2329, 0.2310, 0.1785, 0.2525, 0.1658, 0.2110, 0.1919, 0.2169, 0.1590, 0.1709, 0.3087, 0.3294, 0.2820, 0.2801, 0.2705, 0.2696, 0.3038, 0.1866, 0.2761},
+      { 0.1796, 0.2221, 0.2451, 0.1810, 0.2461, 0.1689, 0.2144, 0.1987, 0.2363, 0.1608, 0.1832, 0.3363, 0.3309, 0.2801, 0.2941, 0.2955, 0.2985, 0.3212, 0.1873, 0.2499},
+      { 0.1696, 0.2292, 0.2455, 0.1805, 0.2579, 0.1678, 0.2040, 0.1929, 0.2399, 0.1685, 0.1822, 0.3416, 0.3439, 0.2705, 0.2955, 0.3061, 0.2929, 0.3339, 0.1910, 0.2498},
+      { 0.2016, 0.2328, 0.2252, 0.1662, 0.2820, 0.1903, 0.2208, 0.2203, 0.2363, 0.2010, 0.2333, 0.3714, 0.3931, 0.2696, 0.2985, 0.2929, 0.3411, 0.3704, 0.2059, 0.2806},
+      { 0.1804, 0.2143, 0.2686, 0.1994, 0.3138, 0.2089, 0.2337, 0.2326, 0.2534, 0.2067, 0.2575, 0.4010, 0.4194, 0.3038, 0.3212, 0.3339, 0.3704, 0.4221, 0.2195, 0.3253},
+      { 0.1636, 0.2113, 0.1905, 0.1410, 0.1844, 0.1456, 0.1488, 0.1582, 0.1901, 0.1327, 0.1354, 0.2325, 0.2299, 0.1866, 0.1873, 0.1910, 0.2059, 0.2195, 0.1913, 0.1879},
+      { 0.2442, 0.2473, 0.2083, 0.1137, 0.2837, 0.1945, 0.2078, 0.1955, 0.1957, 0.2098, 0.2119, 0.3423, 0.3208, 0.2761, 0.2499, 0.2498, 0.2806, 0.3253, 0.1879, 0.4659}},
+    {
+      { 0.2395, 0.2204, 0.4341, 0.3707, 0.3524, 0.2900, 0.2942, 0.3005, 0.3163, 0.2648, 0.2491, 0.3207, 0.3452, 0.2636, 0.2736, 0.2720, 0.2855, 0.2807, 0.2603, 0.3038},
+      { 0.2204, 0.2333, 0.4447, 0.3813, 0.4095, 0.3037, 0.3183, 0.3153, 0.3235, 0.2596, 0.2631, 0.5197, 0.4345, 0.3172, 0.3334, 0.3396, 0.3529, 0.4031, 0.2877, 0.3306},
+      { 0.4341, 0.4447, 0.3136, 0.2515, 0.3117, 0.3227, 0.3431, 0.3156, 0.3384, 0.2987, 0.2946, 0.3154, 0.3960, 0.3455, 0.3584, 0.3585, 0.3514, 0.3398, 0.3177, 0.3377},
+      { 0.3707, 0.3813, 0.2515, 0.2307, 0.2647, 0.2715, 0.2877, 0.2809, 0.2878, 0.2320, 0.2214, 0.2819, 0.3316, 0.2831, 0.2912, 0.2886, 0.2838, 0.2715, 0.2627, 0.2782},
+      { 0.3524, 0.4095, 0.3117, 0.2647, 0.3546, 0.3261, 0.3513, 0.3032, 0.3181, 0.2850, 0.2856, 0.3719, 0.4207, 0.3576, 0.3666, 0.3607, 0.3820, 0.3791, 0.2893, 0.3882},
+      { 0.2900, 0.3037, 0.3227, 0.2715, 0.3261, 0.2935, 0.3002, 0.3046, 0.3046, 0.2685, 0.2562, 0.2671, 0.3377, 0.3016, 0.2942, 0.2831, 0.3080, 0.2969, 0.2719, 0.3215},
+      { 0.2942, 0.3183, 0.3431, 0.2877, 0.3513, 0.3002, 0.3522, 0.3218, 0.3317, 0.2758, 0.2629, 0.3010, 0.3675, 0.3488, 0.3527, 0.3356, 0.3377, 0.3349, 0.2793, 0.3298},
+      { 0.3005, 0.3153, 0.3156, 0.2809, 0.3032, 0.3046, 0.3218, 0.3466, 0.3193, 0.2874, 0.2799, 0.2735, 0.3564, 0.2889, 0.2911, 0.2795, 0.3185, 0.2926, 0.2698, 0.2970},
+      { 0.3163, 0.3235, 0.3384, 0.2878, 0.3181, 0.3046, 0.3317, 0.3193, 0.3291, 0.2690, 0.2798, 0.3453, 0.4114, 0.3134, 0.3239, 0.3368, 0.3450, 0.3508, 0.2933, 0.3238},
+      { 0.2648, 0.2596, 0.2987, 0.2320, 0.2850, 0.2685, 0.2758, 0.2874, 0.2690, 0.2603, 0.2599, 0.2512, 0.3262, 0.2682, 0.2758, 0.2738, 0.2993, 0.2694, 0.2583, 0.2988},
+      { 0.2491, 0.2631, 0.2946, 0.2214, 0.2856, 0.2562, 0.2629, 0.2799, 0.2798, 0.2599, 0.2615, 0.2785, 0.3682, 0.2575, 0.2600, 0.2692, 0.2976, 0.2784, 0.2648, 0.2901},
+      { 0.3207, 0.5197, 0.3154, 0.2819, 0.3719, 0.2671, 0.3010, 0.2735, 0.3453, 0.2512, 0.2785, 0.4034, 0.4590, 0.3914, 0.4078, 0.3851, 0.4102, 0.4430, 0.2578, 0.4062},
+      { 0.3452, 0.4345, 0.3960, 0.3316, 0.4207, 0.3377, 0.3675, 0.3564, 0.4114, 0.3262, 0.3682, 0.4590, 0.5126, 0.4259, 0.4569, 0.4407, 0.4803, 0.5017, 0.3394, 0.4762},
+      { 0.2636, 0.3172, 0.3455, 0.2831, 0.3576, 0.3016, 0.3488, 0.2889, 0.3134, 0.2682, 0.2575, 0.3914, 0.4259, 0.4280, 0.4372, 0.4140, 0.4072, 0.4218, 0.3056, 0.4052},
+      { 0.2736, 0.3334, 0.3584, 0.2912, 0.3666, 0.2942, 0.3527, 0.2911, 0.3239, 0.2758, 0.2600, 0.4078, 0.4569, 0.4372, 0.4573, 0.4374, 0.4300, 0.4393, 0.3100, 0.4334},
+      { 0.2720, 0.3396, 0.3585, 0.2886, 0.3607, 0.2831, 0.3356, 0.2795, 0.3368, 0.2738, 0.2692, 0.3851, 0.4407, 0.4140, 0.4374, 0.4377, 0.4267, 0.4331, 0.3155, 0.4058},
+      { 0.2855, 0.3529, 0.3514, 0.2838, 0.3820, 0.3080, 0.3377, 0.3185, 0.3450, 0.2993, 0.2976, 0.4102, 0.4803, 0.4072, 0.4300, 0.4267, 0.4487, 0.4688, 0.3207, 0.4185},
+      { 0.2807, 0.4031, 0.3398, 0.2715, 0.3791, 0.2969, 0.3349, 0.2926, 0.3508, 0.2694, 0.2784, 0.4430, 0.5017, 0.4218, 0.4393, 0.4331, 0.4688, 0.4854, 0.3038, 0.4634},
+      { 0.2603, 0.2877, 0.3177, 0.2627, 0.2893, 0.2719, 0.2793, 0.2698, 0.2933, 0.2583, 0.2648, 0.2578, 0.3394, 0.3056, 0.3100, 0.3155, 0.3207, 0.3038, 0.3137, 0.3070},
+      { 0.3038, 0.3306, 0.3377, 0.2782, 0.3882, 0.3215, 0.3298, 0.2970, 0.3238, 0.2988, 0.2901, 0.4062, 0.4762, 0.4052, 0.4334, 0.4058, 0.4185, 0.4634, 0.3070, 0.5851}},
+    {
+      { 0.2447, 0.2392, 0.4470, 0.3919, 0.3757, 0.2991, 0.3110, 0.3063, 0.3405, 0.2591, 0.2483, 0.3654, 0.3077, 0.2704, 0.2783, 0.2753, 0.2835, 0.2909, 0.2749, 0.3057},
+      { 0.2392, 0.2384, 0.4578, 0.3841, 0.3936, 0.3046, 0.3339, 0.3145, 0.3322, 0.2644, 0.2592, 0.4345, 0.5030, 0.3116, 0.3197, 0.3217, 0.3471, 0.3948, 0.2981, 0.3379},
+      { 0.4470, 0.4578, 0.3252, 0.2643, 0.3381, 0.3339, 0.3586, 0.3369, 0.3459, 0.3174, 0.3045, 0.3973, 0.3274, 0.3571, 0.3670, 0.3570, 0.3517, 0.3509, 0.3333, 0.3380},
+      { 0.3919, 0.3841, 0.2643, 0.2415, 0.2582, 0.2713, 0.2967, 0.2819, 0.2990, 0.2348, 0.2227, 0.3535, 0.2549, 0.2862, 0.2916, 0.2940, 0.2751, 0.2856, 0.2727, 0.2540},
+      { 0.3757, 0.3936, 0.3381, 0.2582, 0.4435, 0.3529, 0.3885, 0.3259, 0.3245, 0.2888, 0.3132, 0.4418, 0.3842, 0.3801, 0.3798, 0.3820, 0.4171, 0.4120, 0.3052, 0.3662},
+      { 0.2991, 0.3046, 0.3339, 0.2713, 0.3529, 0.3170, 0.3156, 0.3220, 0.3249, 0.2761, 0.2746, 0.3364, 0.2955, 0.2950, 0.2962, 0.2879, 0.3067, 0.3158, 0.2891, 0.3337},
+      { 0.3110, 0.3339, 0.3586, 0.2967, 0.3885, 0.3156, 0.3620, 0.3298, 0.3430, 0.2675, 0.2721, 0.3713, 0.3178, 0.3637, 0.3524, 0.3430, 0.3528, 0.3484, 0.2915, 0.3317},
+      { 0.3063, 0.3145, 0.3369, 0.2819, 0.3259, 0.3220, 0.3298, 0.3411, 0.3358, 0.2804, 0.2798, 0.3446, 0.2853, 0.3037, 0.3012, 0.2779, 0.3227, 0.3200, 0.2719, 0.3237},
+      { 0.3405, 0.3322, 0.3459, 0.2990, 0.3245, 0.3249, 0.3430, 0.3358, 0.3416, 0.2635, 0.3147, 0.3940, 0.3962, 0.3066, 0.3236, 0.3323, 0.3521, 0.3636, 0.2981, 0.3161},
+      { 0.2591, 0.2644, 0.3174, 0.2348, 0.2888, 0.2761, 0.2675, 0.2804, 0.2635, 0.2765, 0.2438, 0.3147, 0.2509, 0.2682, 0.2783, 0.2738, 0.3012, 0.2779, 0.2647, 0.2910},
+      { 0.2483, 0.2592, 0.3045, 0.2227, 0.3132, 0.2746, 0.2721, 0.2798, 0.3147, 0.2438, 0.2760, 0.3528, 0.2939, 0.2524, 0.2628, 0.2705, 0.2823, 0.2839, 0.2630, 0.2839},
+      { 0.3654, 0.4345, 0.3973, 0.3535, 0.4418, 0.3364, 0.3713, 0.3446, 0.3940, 0.3147, 0.3528, 0.4679, 0.4573, 0.4571, 0.4752, 0.4623, 0.5041, 0.4927, 0.3375, 0.4510},
+      { 0.3077, 0.5030, 0.3274, 0.2549, 0.3842, 0.2955, 0.3178, 0.2853, 0.3962, 0.2509, 0.2939, 0.4573, 0.4848, 0.3982, 0.4155, 0.3965, 0.4548, 0.4725, 0.2886, 0.4403},
+      { 0.2704, 0.3116, 0.3571, 0.2862, 0.3801, 0.2950, 0.3637, 0.3037, 0.3066, 0.2682, 0.2524, 0.4571, 0.3982, 0.4286, 0.4446, 0.4230, 0.4189, 0.4330, 0.3100, 0.4150},
+      { 0.2783, 0.3197, 0.3670, 0.2916, 0.3798, 0.2962, 0.3524, 0.3012, 0.3236, 0.2783, 0.2628, 0.4752, 0.4155, 0.4446, 0.4598, 0.4551, 0.4496, 0.4527, 0.3221, 0.4255},
+      { 0.2753, 0.3217, 0.3570, 0.2940, 0.3820, 0.2879, 0.3430, 0.2779, 0.3323, 0.2738, 0.2705, 0.4623, 0.3965, 0.4230, 0.4551, 0.4546, 0.4367, 0.4469, 0.3195, 0.4134},
+      { 0.2835, 0.3471, 0.3517, 0.2751, 0.4171, 0.3067, 0.3528, 0.3227, 0.3521, 0.3012, 0.2823, 0.5041, 0.4548, 0.4189, 0.4496, 0.4367, 0.4640, 0.4813, 0.3343, 0.4415},
+      { 0.2909, 0.3948, 0.3509, 0.2856, 0.4120, 0.3158, 0.3484, 0.3200, 0.3636, 0.2779, 0.2839, 0.4927, 0.4725, 0.4330, 0.4527, 0.4469, 0.4813, 0.5039, 0.3223, 0.4765},
+      { 0.2749, 0.2981, 0.3333, 0.2727, 0.3052, 0.2891, 0.2915, 0.2719, 0.2981, 0.2647, 0.2630, 0.3375, 0.2886, 0.3100, 0.3221, 0.3195, 0.3343, 0.3223, 0.3171, 0.3141},
+      { 0.3057, 0.3379, 0.3380, 0.2540, 0.3662, 0.3337, 0.3317, 0.3237, 0.3161, 0.2910, 0.2839, 0.4510, 0.4403, 0.4150, 0.4255, 0.4134, 0.4415, 0.4765, 0.3141, 0.5479}},
+    {
+      { 0.1376, 0.1381, 0.3783, 0.3291, 0.3067, 0.2351, 0.2300, 0.2530, 0.2597, 0.1918, 0.1778, 0.2787, 0.2612, 0.1506, 0.1617, 0.1693, 0.1960, 0.1965, 0.1703, 0.2039},
+      { 0.1381, 0.1619, 0.3929, 0.3493, 0.3003, 0.2694, 0.3058, 0.2749, 0.2765, 0.1986, 0.2329, 0.3172, 0.3116, 0.3078, 0.2794, 0.2491, 0.2679, 0.2685, 0.2396, 0.3004},
+      { 0.3783, 0.3929, 0.2504, 0.1928, 0.2852, 0.2462, 0.2636, 0.2519, 0.2853, 0.2147, 0.2185, 0.3450, 0.3559, 0.2182, 0.2250, 0.2409, 0.2254, 0.2701, 0.2210, 0.2212},
+      { 0.3291, 0.3493, 0.1928, 0.1683, 0.2323, 0.2038, 0.2157, 0.2076, 0.2462, 0.1487, 0.1466, 0.3025, 0.2900, 0.1659, 0.1719, 0.1755, 0.1608, 0.2037, 0.1663, 0.1437},
+      { 0.3067, 0.3003, 0.2852, 0.2323, 0.3443, 0.2858, 0.3009, 0.2622, 0.2705, 0.2222, 0.2306, 0.3849, 0.3807, 0.2473, 0.2538, 0.2618, 0.2850, 0.3158, 0.2218, 0.2791},
+      { 0.2351, 0.2694, 0.2462, 0.2038, 0.2858, 0.2207, 0.2387, 0.2343, 0.2424, 0.1836, 0.1736, 0.2720, 0.2752, 0.1778, 0.1781, 0.1815, 0.1988, 0.2339, 0.1799, 0.2045},
+      { 0.2300, 0.3058, 0.2636, 0.2157, 0.3009, 0.2387, 0.2947, 0.2478, 0.2669, 0.1824, 0.1728, 0.3103, 0.3140, 0.2592, 0.2624, 0.2459, 0.2569, 0.2782, 0.1977, 0.2666},
+      { 0.2530, 0.2749, 0.2519, 0.2076, 0.2622, 0.2343, 0.2478, 0.2750, 0.2681, 0.1992, 0.1902, 0.2666, 0.2929, 0.1416, 0.1504, 0.1620, 0.1984, 0.2128, 0.1622, 0.1736},
+      { 0.2597, 0.2765, 0.2853, 0.2462, 0.2705, 0.2424, 0.2669, 0.2681, 0.2784, 0.2007, 0.2233, 0.3106, 0.3360, 0.2233, 0.2261, 0.2282, 0.2439, 0.2585, 0.2095, 0.2164},
+      { 0.1918, 0.1986, 0.2147, 0.1487, 0.2222, 0.1836, 0.1824, 0.1992, 0.2007, 0.1725, 0.1499, 0.2651, 0.2712, 0.1112, 0.1253, 0.1543, 0.1844, 0.2037, 0.1492, 0.1909},
+      { 0.1778, 0.2329, 0.2185, 0.1466, 0.2306, 0.1736, 0.1728, 0.1902, 0.2233, 0.1499, 0.1729, 0.2850, 0.2988, 0.1089, 0.1148, 0.1401, 0.1828, 0.1995, 0.1513, 0.1627},
+      { 0.2787, 0.3172, 0.3450, 0.3025, 0.3849, 0.2720, 0.3103, 0.2666, 0.3106, 0.2651, 0.2850, 0.4135, 0.4467, 0.3219, 0.3413, 0.3522, 0.3669, 0.4084, 0.2719, 0.3541},
+      { 0.2612, 0.3116, 0.3559, 0.2900, 0.3807, 0.2752, 0.3140, 0.2929, 0.3360, 0.2712, 0.2988, 0.4467, 0.4527, 0.3114, 0.3509, 0.3604, 0.3984, 0.4399, 0.2596, 0.3856},
+      { 0.1506, 0.3078, 0.2182, 0.1659, 0.2473, 0.1778, 0.2592, 0.1416, 0.2233, 0.1112, 0.1089, 0.3219, 0.3114, 0.3327, 0.3306, 0.2888, 0.2894, 0.3203, 0.1746, 0.3132},
+      { 0.1617, 0.2794, 0.2250, 0.1719, 0.2538, 0.1781, 0.2624, 0.1504, 0.2261, 0.1253, 0.1148, 0.3413, 0.3509, 0.3306, 0.3464, 0.3152, 0.3024, 0.3409, 0.1886, 0.3118},
+      { 0.1693, 0.2491, 0.2409, 0.1755, 0.2618, 0.1815, 0.2459, 0.1620, 0.2282, 0.1543, 0.1401, 0.3522, 0.3604, 0.2888, 0.3152, 0.3185, 0.3027, 0.3550, 0.2024, 0.2950},
+      { 0.1960, 0.2679, 0.2254, 0.1608, 0.2850, 0.1988, 0.2569, 0.1984, 0.2439, 0.1844, 0.1828, 0.3669, 0.3984, 0.2894, 0.3024, 0.3027, 0.3497, 0.3755, 0.2129, 0.3247},
+      { 0.1965, 0.2685, 0.2701, 0.2037, 0.3158, 0.2339, 0.2782, 0.2128, 0.2585, 0.2037, 0.1995, 0.4084, 0.4399, 0.3203, 0.3409, 0.3550, 0.3755, 0.4221, 0.2347, 0.3561},
+      { 0.1703, 0.2396, 0.2210, 0.1663, 0.2218, 0.1799, 0.1977, 0.1622, 0.2095, 0.1492, 0.1513, 0.2719, 0.2596, 0.1746, 0.1886, 0.2024, 0.2129, 0.2347, 0.2077, 0.1984},
+      { 0.2039, 0.3004, 0.2212, 0.1437, 0.2791, 0.2045, 0.2666, 0.1736, 0.2164, 0.1909, 0.1627, 0.3541, 0.3856, 0.3132, 0.3118, 0.2950, 0.3247, 0.3561, 0.1984, 0.4440}},
+    {
+      { 0.1701, 0.1632, 0.3905, 0.3453, 0.3085, 0.2476, 0.2429, 0.2677, 0.2763, 0.1980, 0.1714, 0.2883, 0.2575, 0.1642, 0.1576, 0.1772, 0.2081, 0.1971, 0.1841, 0.1960},
+      { 0.1632, 0.1744, 0.4042, 0.3543, 0.3190, 0.2643, 0.2919, 0.2943, 0.2818, 0.1934, 0.2221, 0.3334, 0.3197, 0.2794, 0.3084, 0.2660, 0.2939, 0.2767, 0.2296, 0.2771},
+      { 0.3905, 0.4042, 0.2633, 0.2091, 0.2903, 0.2628, 0.2697, 0.2660, 0.2968, 0.2233, 0.2192, 0.3509, 0.3553, 0.2212, 0.2030, 0.2390, 0.2266, 0.2630, 0.2401, 0.2258},
+      { 0.3453, 0.3543, 0.2091, 0.1840, 0.2354, 0.2156, 0.2217, 0.2278, 0.2559, 0.1527, 0.1510, 0.3106, 0.2908, 0.1708, 0.1492, 0.1717, 0.1619, 0.1984, 0.1802, 0.1527},
+      { 0.3085, 0.3190, 0.2903, 0.2354, 0.3504, 0.2969, 0.3115, 0.2662, 0.2770, 0.2340, 0.2332, 0.3848, 0.3840, 0.2644, 0.2440, 0.2652, 0.2781, 0.3118, 0.2403, 0.2746},
+      { 0.2476, 0.2643, 0.2628, 0.2156, 0.2969, 0.2353, 0.2403, 0.2492, 0.2558, 0.1955, 0.1828, 0.2825, 0.2754, 0.1843, 0.1606, 0.1799, 0.2007, 0.2288, 0.1918, 0.2146},
+      { 0.2429, 0.2919, 0.2697, 0.2217, 0.3115, 0.2403, 0.2934, 0.2554, 0.2708, 0.1912, 0.1777, 0.3192, 0.3235, 0.2660, 0.2472, 0.2423, 0.2516, 0.2777, 0.2119, 0.2542},
+      { 0.2677, 0.2943, 0.2660, 0.2278, 0.2662, 0.2492, 0.2554, 0.2836, 0.2812, 0.2025, 0.2016, 0.2757, 0.3043, 0.1659, 0.1324, 0.1631, 0.1991, 0.2110, 0.1830, 0.2050},
+      { 0.2763, 0.2818, 0.2968, 0.2559, 0.2770, 0.2558, 0.2708, 0.2812, 0.2871, 0.2022, 0.2245, 0.3205, 0.3477, 0.2253, 0.2283, 0.2323, 0.2560, 0.2489, 0.2222, 0.2262},
+      { 0.1980, 0.1934, 0.2233, 0.1527, 0.2340, 0.1955, 0.1912, 0.2025, 0.2022, 0.1757, 0.1472, 0.2713, 0.2837, 0.1330, 0.1165, 0.1581, 0.1864, 0.1996, 0.1738, 0.2025},
+      { 0.1714, 0.2221, 0.2192, 0.1510, 0.2332, 0.1828, 0.1777, 0.2016, 0.2245, 0.1472, 0.1759, 0.2946, 0.3157, 0.1140, 0.0872, 0.1298, 0.1725, 0.1985, 0.1606, 0.1768},
+      { 0.2883, 0.3334, 0.3509, 0.3106, 0.3848, 0.2825, 0.3192, 0.2757, 0.3205, 0.2713, 0.2946, 0.4074, 0.4576, 0.3470, 0.3302, 0.3613, 0.3794, 0.4145, 0.2865, 0.3787},
+      { 0.2575, 0.3197, 0.3553, 0.2908, 0.3840, 0.2754, 0.3235, 0.3043, 0.3477, 0.2837, 0.3157, 0.4576, 0.4613, 0.3412, 0.3448, 0.3712, 0.4064, 0.4559, 0.2759, 0.3745},
+      { 0.1642, 0.2794, 0.2212, 0.1708, 0.2644, 0.1843, 0.2660, 0.1659, 0.2253, 0.1330, 0.1140, 0.3470, 0.3412, 0.3490, 0.3292, 0.3165, 0.3126, 0.3467, 0.1930, 0.3279},
+      { 0.1576, 0.3084, 0.2030, 0.1492, 0.2440, 0.1606, 0.2472, 0.1324, 0.2283, 0.1165, 0.0872, 0.3302, 0.3448, 0.3292, 0.3338, 0.3140, 0.3040, 0.3405, 0.1698, 0.3203},
+      { 0.1772, 0.2660, 0.2390, 0.1717, 0.2652, 0.1799, 0.2423, 0.1631, 0.2323, 0.1581, 0.1298, 0.3613, 0.3712, 0.3165, 0.3140, 0.3325, 0.3167, 0.3684, 0.2065, 0.3129},
+      { 0.2081, 0.2939, 0.2266, 0.1619, 0.2781, 0.2007, 0.2516, 0.1991, 0.2560, 0.1864, 0.1725, 0.3794, 0.4064, 0.3126, 0.3040, 0.3167, 0.3589, 0.3878, 0.2194, 0.3370},
+      { 0.1971, 0.2767, 0.2630, 0.1984, 0.3118, 0.2288, 0.2777, 0.2110, 0.2489, 0.1996, 0.1985, 0.4145, 0.4559, 0.3467, 0.3405, 0.3684, 0.3878, 0.4340, 0.2376, 0.3767},
+      { 0.1841, 0.2296, 0.2401, 0.1802, 0.2403, 0.1918, 0.2119, 0.1830, 0.2222, 0.1738, 0.1606, 0.2865, 0.2759, 0.1930, 0.1698, 0.2065, 0.2194, 0.2376, 0.2385, 0.2191},
+      { 0.1960, 0.2771, 0.2258, 0.1527, 0.2746, 0.2146, 0.2542, 0.2050, 0.2262, 0.2025, 0.1768, 0.3787, 0.3745, 0.3279, 0.3203, 0.3129, 0.3370, 0.3767, 0.2191, 0.4655}},
+    {
+      { 0.1637, 0.1574, 0.3969, 0.3533, 0.3012, 0.2459, 0.2422, 0.2470, 0.2855, 0.1930, 0.1937, 0.2857, 0.2746, 0.1661, 0.1626, 0.1443, 0.2014, 0.1879, 0.1886, 0.1931},
+      { 0.1574, 0.1759, 0.4040, 0.3542, 0.3121, 0.2482, 0.2740, 0.2775, 0.2872, 0.1894, 0.2292, 0.3396, 0.3217, 0.2491, 0.2660, 0.2951, 0.3056, 0.2836, 0.2236, 0.2474},
+      { 0.3969, 0.4040, 0.2744, 0.2172, 0.2855, 0.2642, 0.2724, 0.2783, 0.2985, 0.2298, 0.2350, 0.3467, 0.3567, 0.2381, 0.2411, 0.2231, 0.2295, 0.2555, 0.2530, 0.2316},
+      { 0.3533, 0.3542, 0.2172, 0.1863, 0.2348, 0.2182, 0.2209, 0.2372, 0.2585, 0.1642, 0.1640, 0.3170, 0.2961, 0.1815, 0.1781, 0.1553, 0.1665, 0.1904, 0.1950, 0.1600},
+      { 0.3012, 0.3121, 0.2855, 0.2348, 0.3249, 0.2794, 0.2977, 0.2612, 0.2780, 0.2189, 0.2243, 0.3740, 0.3758, 0.2701, 0.2578, 0.2447, 0.2800, 0.2924, 0.2385, 0.2686},
+      { 0.2459, 0.2482, 0.2642, 0.2182, 0.2794, 0.2279, 0.2285, 0.2453, 0.2506, 0.1904, 0.1834, 0.2694, 0.2690, 0.1918, 0.1784, 0.1563, 0.1872, 0.2096, 0.2020, 0.2053},
+      { 0.2422, 0.2740, 0.2724, 0.2209, 0.2977, 0.2285, 0.2788, 0.2550, 0.2727, 0.1935, 0.1832, 0.3043, 0.3152, 0.2634, 0.2561, 0.2163, 0.2334, 0.2568, 0.2112, 0.2480},
+      { 0.2470, 0.2775, 0.2783, 0.2372, 0.2612, 0.2453, 0.2550, 0.2796, 0.2780, 0.2000, 0.1957, 0.2737, 0.3047, 0.1852, 0.1685, 0.1440, 0.1915, 0.2090, 0.1919, 0.2043},
+      { 0.2855, 0.2872, 0.2985, 0.2585, 0.2780, 0.2506, 0.2727, 0.2780, 0.2982, 0.2008, 0.2253, 0.3189, 0.3512, 0.2277, 0.2313, 0.2343, 0.2555, 0.2524, 0.2296, 0.2200},
+      { 0.1930, 0.1894, 0.2298, 0.1642, 0.2189, 0.1904, 0.1935, 0.2000, 0.2008, 0.1833, 0.1570, 0.2541, 0.2608, 0.1543, 0.1442, 0.1427, 0.1860, 0.1928, 0.1840, 0.1975},
+      { 0.1937, 0.2292, 0.2350, 0.1640, 0.2243, 0.1834, 0.1832, 0.1957, 0.2253, 0.1570, 0.1784, 0.2842, 0.3025, 0.1319, 0.1193, 0.0923, 0.1498, 0.1853, 0.1674, 0.1735},
+      { 0.2857, 0.3396, 0.3467, 0.3170, 0.3740, 0.2694, 0.3043, 0.2737, 0.3189, 0.2541, 0.2842, 0.4024, 0.4378, 0.3541, 0.3581, 0.3410, 0.3754, 0.4018, 0.2781, 0.3635},
+      { 0.2746, 0.3217, 0.3567, 0.2961, 0.3758, 0.2690, 0.3152, 0.3047, 0.3512, 0.2608, 0.3025, 0.4378, 0.4498, 0.3564, 0.3750, 0.3564, 0.4063, 0.4449, 0.2725, 0.3715},
+      { 0.1661, 0.2491, 0.2381, 0.1815, 0.2701, 0.1918, 0.2634, 0.1852, 0.2277, 0.1543, 0.1319, 0.3541, 0.3564, 0.3485, 0.3453, 0.3044, 0.3051, 0.3449, 0.2141, 0.3333},
+      { 0.1626, 0.2660, 0.2411, 0.1781, 0.2578, 0.1784, 0.2561, 0.1685, 0.2313, 0.1442, 0.1193, 0.3581, 0.3750, 0.3453, 0.3642, 0.3307, 0.3233, 0.3586, 0.2132, 0.3356},
+      { 0.1443, 0.2951, 0.2231, 0.1553, 0.2447, 0.1563, 0.2163, 0.1440, 0.2343, 0.1427, 0.0923, 0.3410, 0.3564, 0.3044, 0.3307, 0.3129, 0.2957, 0.3459, 0.1854, 0.3011},
+      { 0.2014, 0.3056, 0.2295, 0.1665, 0.2800, 0.1872, 0.2334, 0.1915, 0.2555, 0.1860, 0.1498, 0.3754, 0.4063, 0.3051, 0.3233, 0.2957, 0.3485, 0.3730, 0.2105, 0.3167},
+      { 0.1879, 0.2836, 0.2555, 0.1904, 0.2924, 0.2096, 0.2568, 0.2090, 0.2524, 0.1928, 0.1853, 0.4018, 0.4449, 0.3449, 0.3586, 0.3459, 0.3730, 0.4264, 0.2332, 0.3638},
+      { 0.1886, 0.2236, 0.2530, 0.1950, 0.2385, 0.2020, 0.2112, 0.1919, 0.2296, 0.1840, 0.1674, 0.2781, 0.2725, 0.2141, 0.2132, 0.1854, 0.2105, 0.2332, 0.2561, 0.2232},
+      { 0.1931, 0.2474, 0.2316, 0.1600, 0.2686, 0.2053, 0.2480, 0.2043, 0.2200, 0.1975, 0.1735, 0.3635, 0.3715, 0.3333, 0.3356, 0.3011, 0.3167, 0.3638, 0.2232, 0.4519}},
+    {
+      { 0.1780, 0.1665, 0.3984, 0.3579, 0.2952, 0.2456, 0.2412, 0.2534, 0.2802, 0.1935, 0.1986, 0.2920, 0.2683, 0.1744, 0.1865, 0.1866, 0.2100, 0.2021, 0.1963, 0.2033},
+      { 0.1665, 0.2033, 0.4023, 0.3561, 0.3351, 0.2719, 0.2925, 0.2781, 0.3145, 0.2149, 0.2328, 0.3529, 0.3471, 0.2679, 0.2939, 0.3056, 0.3847, 0.3229, 0.2646, 0.3007},
+      { 0.3984, 0.4023, 0.2643, 0.2017, 0.2809, 0.2534, 0.2597, 0.2708, 0.2885, 0.2108, 0.2211, 0.3481, 0.3589, 0.2412, 0.2448, 0.2467, 0.1647, 0.2722, 0.2352, 0.2420},
+      { 0.3579, 0.3561, 0.2017, 0.1831, 0.2324, 0.2036, 0.2016, 0.2204, 0.2378, 0.1306, 0.1500, 0.3098, 0.2910, 0.1800, 0.1752, 0.1732, 0.0999, 0.1913, 0.1766, 0.1470},
+      { 0.2952, 0.3351, 0.2809, 0.2324, 0.3377, 0.2735, 0.2920, 0.2667, 0.2788, 0.2124, 0.2205, 0.3819, 0.3864, 0.2900, 0.2888, 0.2925, 0.2505, 0.3249, 0.2345, 0.3128},
+      { 0.2456, 0.2719, 0.2534, 0.2036, 0.2735, 0.2136, 0.2252, 0.2407, 0.2465, 0.1754, 0.1752, 0.2764, 0.2849, 0.2007, 0.1914, 0.1836, 0.1535, 0.2356, 0.1854, 0.2092},
+      { 0.2412, 0.2925, 0.2597, 0.2016, 0.2920, 0.2252, 0.2600, 0.2504, 0.2658, 0.1806, 0.1747, 0.3073, 0.3202, 0.2675, 0.2638, 0.2382, 0.2002, 0.2674, 0.2007, 0.2439},
+      { 0.2534, 0.2781, 0.2708, 0.2204, 0.2667, 0.2407, 0.2504, 0.2642, 0.2756, 0.1959, 0.2022, 0.2846, 0.3159, 0.1983, 0.1931, 0.1724, 0.1445, 0.2267, 0.1850, 0.2220},
+      { 0.2802, 0.3145, 0.2885, 0.2378, 0.2788, 0.2465, 0.2658, 0.2756, 0.3177, 0.1941, 0.2146, 0.3281, 0.3756, 0.2363, 0.2479, 0.2547, 0.2534, 0.2662, 0.2292, 0.2463},
+      { 0.1935, 0.2149, 0.2108, 0.1306, 0.2124, 0.1754, 0.1806, 0.1959, 0.1941, 0.1803, 0.1554, 0.2593, 0.2813, 0.1681, 0.1674, 0.1764, 0.1490, 0.2137, 0.1734, 0.2053},
+      { 0.1986, 0.2328, 0.2211, 0.1500, 0.2205, 0.1752, 0.1747, 0.2022, 0.2146, 0.1554, 0.1799, 0.2929, 0.2926, 0.1353, 0.1363, 0.1282, 0.1100, 0.2106, 0.1555, 0.1606},
+      { 0.2920, 0.3529, 0.3481, 0.3098, 0.3819, 0.2764, 0.3073, 0.2846, 0.3281, 0.2593, 0.2929, 0.4139, 0.4676, 0.3687, 0.3806, 0.3733, 0.3482, 0.4240, 0.2762, 0.3816},
+      { 0.2683, 0.3471, 0.3589, 0.2910, 0.3864, 0.2849, 0.3202, 0.3159, 0.3756, 0.2813, 0.2926, 0.4676, 0.4990, 0.3797, 0.4009, 0.3858, 0.3648, 0.4613, 0.2817, 0.3844},
+      { 0.1744, 0.2679, 0.2412, 0.1800, 0.2900, 0.2007, 0.2675, 0.1983, 0.2363, 0.1681, 0.1353, 0.3687, 0.3797, 0.3435, 0.3440, 0.3223, 0.2712, 0.3631, 0.2187, 0.3217},
+      { 0.1865, 0.2939, 0.2448, 0.1752, 0.2888, 0.1914, 0.2638, 0.1931, 0.2479, 0.1674, 0.1363, 0.3806, 0.4009, 0.3440, 0.3629, 0.3425, 0.2972, 0.3729, 0.2211, 0.3496},
+      { 0.1866, 0.3056, 0.2467, 0.1732, 0.2925, 0.1836, 0.2382, 0.1724, 0.2547, 0.1764, 0.1282, 0.3733, 0.3858, 0.3223, 0.3425, 0.3406, 0.2732, 0.3737, 0.2134, 0.3194},
+      { 0.2100, 0.3847, 0.1647, 0.0999, 0.2505, 0.1535, 0.2002, 0.1445, 0.2534, 0.1490, 0.1100, 0.3482, 0.3648, 0.2712, 0.2972, 0.2732, 0.3253, 0.3441, 0.1468, 0.3119},
+      { 0.2021, 0.3229, 0.2722, 0.1913, 0.3249, 0.2356, 0.2674, 0.2267, 0.2662, 0.2137, 0.2106, 0.4240, 0.4613, 0.3631, 0.3729, 0.3737, 0.3441, 0.4605, 0.2346, 0.3797},
+      { 0.1963, 0.2646, 0.2352, 0.1766, 0.2345, 0.1854, 0.2007, 0.1850, 0.2292, 0.1734, 0.1555, 0.2762, 0.2817, 0.2187, 0.2211, 0.2134, 0.1468, 0.2346, 0.2305, 0.2225},
+      { 0.2033, 0.3007, 0.2420, 0.1470, 0.3128, 0.2092, 0.2439, 0.2220, 0.2463, 0.2053, 0.1606, 0.3816, 0.3844, 0.3217, 0.3496, 0.3194, 0.3119, 0.3797, 0.2225, 0.4541}},
+    {
+      { 0.1779, 0.1721, 0.3947, 0.3421, 0.3073, 0.2539, 0.2471, 0.2577, 0.2740, 0.2168, 0.2008, 0.3116, 0.2859, 0.1940, 0.2026, 0.1965, 0.2211, 0.1943, 0.2068, 0.2383},
+      { 0.1721, 0.1979, 0.3979, 0.3468, 0.3600, 0.2675, 0.2790, 0.2685, 0.2898, 0.2228, 0.2143, 0.4031, 0.3948, 0.2685, 0.2767, 0.2836, 0.3229, 0.3918, 0.2518, 0.2889},
+      { 0.3947, 0.3979, 0.2707, 0.2144, 0.2793, 0.2676, 0.2834, 0.2789, 0.3029, 0.2360, 0.2501, 0.3319, 0.3464, 0.2579, 0.2644, 0.2551, 0.2417, 0.2315, 0.2491, 0.2512},
+      { 0.3421, 0.3468, 0.2144, 0.1862, 0.2217, 0.2197, 0.2246, 0.2302, 0.2568, 0.1691, 0.1709, 0.2850, 0.2682, 0.1966, 0.1947, 0.1817, 0.1802, 0.1634, 0.1918, 0.1751},
+      { 0.3073, 0.3600, 0.2793, 0.2217, 0.3350, 0.2933, 0.3100, 0.2779, 0.2881, 0.2356, 0.2480, 0.3824, 0.3851, 0.3050, 0.3053, 0.2898, 0.3226, 0.2765, 0.2583, 0.3163},
+      { 0.2539, 0.2675, 0.2676, 0.2197, 0.2933, 0.2399, 0.2484, 0.2569, 0.2621, 0.2067, 0.2043, 0.2762, 0.2878, 0.2214, 0.2127, 0.2033, 0.2309, 0.1985, 0.2110, 0.2389},
+      { 0.2471, 0.2790, 0.2834, 0.2246, 0.3100, 0.2484, 0.2901, 0.2685, 0.2846, 0.2082, 0.2109, 0.3062, 0.3179, 0.2873, 0.2866, 0.2555, 0.2693, 0.2353, 0.2206, 0.2643},
+      { 0.2577, 0.2685, 0.2789, 0.2302, 0.2779, 0.2569, 0.2685, 0.2864, 0.2893, 0.2235, 0.2314, 0.2770, 0.3041, 0.2117, 0.1993, 0.1853, 0.2284, 0.1771, 0.2022, 0.2246},
+      { 0.2740, 0.2898, 0.3029, 0.2568, 0.2881, 0.2621, 0.2846, 0.2893, 0.2888, 0.2205, 0.2405, 0.3273, 0.3489, 0.2461, 0.2465, 0.2481, 0.2647, 0.2640, 0.2357, 0.2554},
+      { 0.2168, 0.2228, 0.2360, 0.1691, 0.2356, 0.2067, 0.2082, 0.2235, 0.2205, 0.1958, 0.1884, 0.2510, 0.2585, 0.1833, 0.1829, 0.1914, 0.2162, 0.1527, 0.1892, 0.2151},
+      { 0.2008, 0.2143, 0.2501, 0.1709, 0.2480, 0.2043, 0.2109, 0.2314, 0.2405, 0.1884, 0.1995, 0.2807, 0.3022, 0.1757, 0.1634, 0.1618, 0.1939, 0.1539, 0.1871, 0.2087},
+      { 0.3116, 0.4031, 0.3319, 0.2850, 0.3824, 0.2762, 0.3062, 0.2770, 0.3273, 0.2510, 0.2807, 0.4021, 0.4405, 0.3724, 0.3855, 0.3754, 0.3966, 0.3843, 0.2673, 0.3860},
+      { 0.2859, 0.3948, 0.3464, 0.2682, 0.3851, 0.2878, 0.3179, 0.3041, 0.3489, 0.2585, 0.3022, 0.4405, 0.4493, 0.3806, 0.4041, 0.3956, 0.4397, 0.4096, 0.2787, 0.4001},
+      { 0.1940, 0.2685, 0.2579, 0.1966, 0.3050, 0.2214, 0.2873, 0.2117, 0.2461, 0.1833, 0.1757, 0.3724, 0.3806, 0.3727, 0.3725, 0.3493, 0.3429, 0.3248, 0.2392, 0.3481},
+      { 0.2026, 0.2767, 0.2644, 0.1947, 0.3053, 0.2127, 0.2866, 0.1993, 0.2465, 0.1829, 0.1634, 0.3855, 0.4041, 0.3725, 0.3987, 0.3690, 0.3638, 0.3468, 0.2411, 0.3617},
+      { 0.1965, 0.2836, 0.2551, 0.1817, 0.2898, 0.2033, 0.2555, 0.1853, 0.2481, 0.1914, 0.1618, 0.3754, 0.3956, 0.3493, 0.3690, 0.3645, 0.3453, 0.3381, 0.2296, 0.3406},
+      { 0.2211, 0.3229, 0.2417, 0.1802, 0.3226, 0.2309, 0.2693, 0.2284, 0.2647, 0.2162, 0.1939, 0.3966, 0.4397, 0.3429, 0.3638, 0.3453, 0.3944, 0.3657, 0.2394, 0.3597},
+      { 0.1943, 0.3918, 0.2315, 0.1634, 0.2765, 0.1985, 0.2353, 0.1771, 0.2640, 0.1527, 0.1539, 0.3843, 0.4096, 0.3248, 0.3468, 0.3381, 0.3657, 0.3876, 0.2087, 0.3657},
+      { 0.2068, 0.2518, 0.2491, 0.1918, 0.2583, 0.2110, 0.2206, 0.2022, 0.2357, 0.1892, 0.1871, 0.2673, 0.2787, 0.2392, 0.2411, 0.2296, 0.2394, 0.2087, 0.2438, 0.2278},
+      { 0.2383, 0.2889, 0.2512, 0.1751, 0.3163, 0.2389, 0.2643, 0.2246, 0.2554, 0.2151, 0.2087, 0.3860, 0.4001, 0.3481, 0.3617, 0.3406, 0.3597, 0.3657, 0.2278, 0.5060}},
+    {
+      { 0.1470, 0.1449, 0.3754, 0.3396, 0.2677, 0.2206, 0.2132, 0.2390, 0.2994, 0.1738, 0.1574, 0.2622, 0.2540, 0.1547, 0.1576, 0.1678, 0.1918, 0.1986, 0.1483, 0.2024},
+      { 0.1449, 0.1740, 0.3792, 0.3387, 0.2734, 0.2620, 0.2607, 0.2548, 0.2776, 0.2177, 0.2113, 0.2877, 0.2981, 0.2396, 0.2296, 0.2236, 0.2646, 0.2518, 0.2572, 0.2765},
+      { 0.3754, 0.3792, 0.2551, 0.2075, 0.2589, 0.2106, 0.2271, 0.2519, 0.2834, 0.1664, 0.2048, 0.3340, 0.3365, 0.2318, 0.2555, 0.2657, 0.2321, 0.2718, 0.1887, 0.1744},
+      { 0.3396, 0.3387, 0.2075, 0.1837, 0.2124, 0.1737, 0.1840, 0.2197, 0.2498, 0.0993, 0.1492, 0.2938, 0.2733, 0.1786, 0.1958, 0.2094, 0.1875, 0.2122, 0.1310, 0.0990},
+      { 0.2677, 0.2734, 0.2589, 0.2124, 0.2966, 0.2363, 0.2568, 0.2503, 0.2590, 0.1847, 0.2050, 0.3555, 0.3674, 0.2586, 0.2642, 0.2664, 0.2773, 0.3022, 0.1758, 0.2435},
+      { 0.2206, 0.2620, 0.2106, 0.1737, 0.2363, 0.1851, 0.1812, 0.2052, 0.2091, 0.1411, 0.1416, 0.2428, 0.2495, 0.1760, 0.1812, 0.1714, 0.1915, 0.2138, 0.1363, 0.1684},
+      { 0.2132, 0.2607, 0.2271, 0.1840, 0.2568, 0.1812, 0.2258, 0.2264, 0.2378, 0.1468, 0.1473, 0.2790, 0.2749, 0.2251, 0.2337, 0.2154, 0.2225, 0.2517, 0.1450, 0.1945},
+      { 0.2390, 0.2548, 0.2519, 0.2197, 0.2503, 0.2052, 0.2264, 0.2582, 0.2690, 0.1491, 0.1769, 0.2700, 0.2968, 0.1785, 0.1899, 0.1876, 0.2142, 0.2267, 0.1281, 0.1625},
+      { 0.2994, 0.2776, 0.2834, 0.2498, 0.2590, 0.2091, 0.2378, 0.2690, 0.2890, 0.1590, 0.2059, 0.2985, 0.3394, 0.2161, 0.2267, 0.2418, 0.2467, 0.2579, 0.1852, 0.1829},
+      { 0.1738, 0.2177, 0.1664, 0.0993, 0.1847, 0.1411, 0.1468, 0.1491, 0.1590, 0.1371, 0.0996, 0.2334, 0.2364, 0.1532, 0.1584, 0.1670, 0.1961, 0.2205, 0.1227, 0.1906},
+      { 0.1574, 0.2113, 0.2048, 0.1492, 0.2050, 0.1416, 0.1473, 0.1769, 0.2059, 0.0996, 0.1583, 0.2748, 0.2950, 0.1311, 0.1448, 0.1572, 0.1802, 0.2143, 0.1021, 0.1185},
+      { 0.2622, 0.2877, 0.3340, 0.2938, 0.3555, 0.2428, 0.2790, 0.2700, 0.2985, 0.2334, 0.2748, 0.3836, 0.4217, 0.3164, 0.3390, 0.3495, 0.3599, 0.3926, 0.2371, 0.3013},
+      { 0.2540, 0.2981, 0.3365, 0.2733, 0.3674, 0.2495, 0.2749, 0.2968, 0.3394, 0.2364, 0.2950, 0.4217, 0.4298, 0.3133, 0.3466, 0.3476, 0.3843, 0.4377, 0.2231, 0.3154},
+      { 0.1547, 0.2396, 0.2318, 0.1786, 0.2586, 0.1760, 0.2251, 0.1785, 0.2161, 0.1532, 0.1311, 0.3164, 0.3133, 0.3001, 0.3059, 0.2822, 0.2687, 0.3108, 0.1932, 0.2625},
+      { 0.1576, 0.2296, 0.2555, 0.1958, 0.2642, 0.1812, 0.2337, 0.1899, 0.2267, 0.1584, 0.1448, 0.3390, 0.3466, 0.3059, 0.3223, 0.3075, 0.2911, 0.3332, 0.1990, 0.2720},
+      { 0.1678, 0.2236, 0.2657, 0.2094, 0.2664, 0.1714, 0.2154, 0.1876, 0.2418, 0.1670, 0.1572, 0.3495, 0.3476, 0.2822, 0.3075, 0.3120, 0.2919, 0.3406, 0.1957, 0.2496},
+      { 0.1918, 0.2646, 0.2321, 0.1875, 0.2773, 0.1915, 0.2225, 0.2142, 0.2467, 0.1961, 0.1802, 0.3599, 0.3843, 0.2687, 0.2911, 0.2919, 0.3241, 0.3637, 0.2020, 0.2814},
+      { 0.1986, 0.2518, 0.2718, 0.2122, 0.3022, 0.2138, 0.2517, 0.2267, 0.2579, 0.2205, 0.2143, 0.3926, 0.4377, 0.3108, 0.3332, 0.3406, 0.3637, 0.4088, 0.2121, 0.3100},
+      { 0.1483, 0.2572, 0.1887, 0.1310, 0.1758, 0.1363, 0.1450, 0.1281, 0.1852, 0.1227, 0.1021, 0.2371, 0.2231, 0.1932, 0.1990, 0.1957, 0.2020, 0.2121, 0.1926, 0.1774},
+      { 0.2024, 0.2765, 0.1744, 0.0990, 0.2435, 0.1684, 0.1945, 0.1625, 0.1829, 0.1906, 0.1185, 0.3013, 0.3154, 0.2625, 0.2720, 0.2496, 0.2814, 0.3100, 0.1774, 0.4049}},
+    {
+      { 0.1205, 0.1494, 0.3676, 0.3163, 0.2983, 0.2413, 0.2336, 0.2629, 0.2531, 0.2184, 0.1690, 0.2864, 0.2829, 0.1759, 0.1767, 0.1746, 0.2129, 0.2109, 0.1637, 0.1117},
+      { 0.1494, 0.1955, 0.3969, 0.3389, 0.3250, 0.3038, 0.3396, 0.3258, 0.2801, 0.2490, 0.2473, 0.3306, 0.3379, 0.3004, 0.2771, 0.2474, 0.3007, 0.2889, 0.2765, 0.3106},
+      { 0.3676, 0.3969, 0.2419, 0.1925, 0.2707, 0.2039, 0.2209, 0.2312, 0.2793, 0.1760, 0.2125, 0.3372, 0.3374, 0.2183, 0.2347, 0.2390, 0.2066, 0.2624, 0.1796, 0.1169},
+      { 0.3163, 0.3389, 0.1925, 0.1548, 0.2026, 0.1331, 0.1591, 0.1808, 0.2323, 0.1006, 0.1364, 0.2982, 0.2825, 0.1611, 0.1593, 0.1611, 0.1375, 0.1923, 0.1055, 0.0832},
+      { 0.2983, 0.3250, 0.2707, 0.2026, 0.3239, 0.2696, 0.2756, 0.2567, 0.2485, 0.2084, 0.2561, 0.3851, 0.3901, 0.2626, 0.2708, 0.2595, 0.2549, 0.3166, 0.1955, 0.2286},
+      { 0.2413, 0.3038, 0.2039, 0.1331, 0.2696, 0.1898, 0.2016, 0.2199, 0.2057, 0.1803, 0.1396, 0.2580, 0.2931, 0.1955, 0.1919, 0.1798, 0.2028, 0.2390, 0.1429, 0.1457},
+      { 0.2336, 0.3396, 0.2209, 0.1591, 0.2756, 0.2016, 0.2485, 0.2190, 0.2384, 0.1884, 0.1561, 0.3092, 0.2899, 0.2617, 0.2519, 0.2202, 0.2328, 0.2715, 0.1691, 0.1698},
+      { 0.2629, 0.3258, 0.2312, 0.1808, 0.2567, 0.2199, 0.2190, 0.3101, 0.2553, 0.2003, 0.1816, 0.2764, 0.3086, 0.1745, 0.1827, 0.1805, 0.2180, 0.2305, 0.1441, 0.1197},
+      { 0.2531, 0.2801, 0.2793, 0.2323, 0.2485, 0.2057, 0.2384, 0.2553, 0.2600, 0.1754, 0.2402, 0.3044, 0.3364, 0.2293, 0.2331, 0.2318, 0.2368, 0.2570, 0.1747, 0.1902},
+      { 0.2184, 0.2490, 0.1760, 0.1006, 0.2084, 0.1803, 0.1884, 0.2003, 0.1754, 0.1728, 0.1422, 0.2659, 0.2951, 0.1807, 0.1767, 0.1834, 0.2000, 0.2220, 0.1529, 0.1263},
+      { 0.1690, 0.2473, 0.2125, 0.1364, 0.2561, 0.1396, 0.1561, 0.1816, 0.2402, 0.1422, 0.1765, 0.2859, 0.3216, 0.1294, 0.1433, 0.1479, 0.1938, 0.2372, 0.0882, 0.0323},
+      { 0.2864, 0.3306, 0.3372, 0.2982, 0.3851, 0.2580, 0.3092, 0.2764, 0.3044, 0.2659, 0.2859, 0.4082, 0.4361, 0.3344, 0.3536, 0.3416, 0.3679, 0.4048, 0.2607, 0.2638},
+      { 0.2829, 0.3379, 0.3374, 0.2825, 0.3901, 0.2931, 0.2899, 0.3086, 0.3364, 0.2951, 0.3216, 0.4361, 0.4850, 0.3563, 0.3522, 0.3667, 0.3984, 0.4545, 0.2435, 0.2904},
+      { 0.1759, 0.3004, 0.2183, 0.1611, 0.2626, 0.1955, 0.2617, 0.1745, 0.2293, 0.1807, 0.1294, 0.3344, 0.3563, 0.3282, 0.3318, 0.2885, 0.3093, 0.3348, 0.2033, 0.1969},
+      { 0.1767, 0.2771, 0.2347, 0.1593, 0.2708, 0.1919, 0.2519, 0.1827, 0.2331, 0.1767, 0.1433, 0.3536, 0.3522, 0.3318, 0.3369, 0.3071, 0.3076, 0.3550, 0.2171, 0.2242},
+      { 0.1746, 0.2474, 0.2390, 0.1611, 0.2595, 0.1798, 0.2202, 0.1805, 0.2318, 0.1834, 0.1479, 0.3416, 0.3667, 0.2885, 0.3071, 0.3020, 0.2816, 0.3397, 0.2072, 0.1995},
+      { 0.2129, 0.3007, 0.2066, 0.1375, 0.2549, 0.2028, 0.2328, 0.2180, 0.2368, 0.2000, 0.1938, 0.3679, 0.3984, 0.3093, 0.3076, 0.2816, 0.3267, 0.3629, 0.2141, 0.2582},
+      { 0.2109, 0.2889, 0.2624, 0.1923, 0.3166, 0.2390, 0.2715, 0.2305, 0.2570, 0.2220, 0.2372, 0.4048, 0.4545, 0.3348, 0.3550, 0.3397, 0.3629, 0.4314, 0.2366, 0.2817},
+      { 0.1637, 0.2765, 0.1796, 0.1055, 0.1955, 0.1429, 0.1691, 0.1441, 0.1747, 0.1529, 0.0882, 0.2607, 0.2435, 0.2033, 0.2171, 0.2072, 0.2141, 0.2366, 0.1639, 0.1024},
+      { 0.1117, 0.3106, 0.1169, 0.0832, 0.2286, 0.1457, 0.1698, 0.1197, 0.1902, 0.1263, 0.0323, 0.2638, 0.2904, 0.1969, 0.2242, 0.1995, 0.2582, 0.2817, 0.1024, 0.3941}}},
+  {
+    {
+      { 0.2169, 0.2120, 0.6034, 0.4640, 0.4383, 0.3423, 0.3546, 0.3720, 0.3446, 0.3165, 0.3039, 0.4002, 0.3828, 0.3411, 0.3429, 0.3310, 0.3454, 0.3518, 0.2985, 0.3974},
+      { 0.2120, 0.2867, 0.4742, 0.4725, 0.4235, 0.3550, 0.3690, 0.3582, 0.3830, 0.2935, 0.3277, 0.4341, 0.4470, 0.3783, 0.3905, 0.3969, 0.3984, 0.3947, 0.3754, 0.3676},
+      { 0.6034, 0.4742, 0.3299, 0.2733, 0.4110, 0.3682, 0.3819, 0.4045, 0.3830, 0.3381, 0.3371, 0.4630, 0.4740, 0.4045, 0.4204, 0.4272, 0.4281, 0.4432, 0.3634, 0.4371},
+      { 0.4640, 0.4725, 0.2733, 0.2947, 0.3765, 0.3533, 0.3722, 0.3651, 0.3827, 0.3171, 0.3095, 0.4546, 0.4405, 0.3884, 0.4029, 0.4046, 0.3918, 0.4050, 0.3669, 0.3682},
+      { 0.4383, 0.4235, 0.4110, 0.3765, 0.4836, 0.4087, 0.4429, 0.4062, 0.4188, 0.3680, 0.3849, 0.5283, 0.5278, 0.4589, 0.4643, 0.4622, 0.4690, 0.4881, 0.3856, 0.4683},
+      { 0.3423, 0.3550, 0.3682, 0.3533, 0.4087, 0.3621, 0.3606, 0.3702, 0.3799, 0.3232, 0.3385, 0.4147, 0.4242, 0.3716, 0.3776, 0.3750, 0.3895, 0.4049, 0.3502, 0.3933},
+      { 0.3546, 0.3690, 0.3819, 0.3722, 0.4429, 0.3606, 0.4151, 0.3876, 0.4089, 0.3219, 0.3413, 0.4311, 0.4408, 0.4104, 0.4225, 0.4019, 0.4122, 0.4258, 0.3544, 0.4072},
+      { 0.3720, 0.3582, 0.4045, 0.3651, 0.4062, 0.3702, 0.3876, 0.4177, 0.4064, 0.3456, 0.3499, 0.4283, 0.4415, 0.3869, 0.3921, 0.3866, 0.4132, 0.4194, 0.3477, 0.3989},
+      { 0.3446, 0.3830, 0.3830, 0.3827, 0.4188, 0.3799, 0.4089, 0.4064, 0.4196, 0.3312, 0.3679, 0.4531, 0.4953, 0.4082, 0.4306, 0.4379, 0.4484, 0.4455, 0.3900, 0.4087},
+      { 0.3165, 0.2935, 0.3381, 0.3171, 0.3680, 0.3232, 0.3219, 0.3456, 0.3312, 0.3217, 0.3383, 0.3757, 0.4075, 0.3443, 0.3430, 0.3445, 0.3648, 0.3861, 0.3290, 0.3776},
+      { 0.3039, 0.3277, 0.3371, 0.3095, 0.3849, 0.3385, 0.3413, 0.3499, 0.3679, 0.3383, 0.3615, 0.4539, 0.4686, 0.3578, 0.3671, 0.3783, 0.3991, 0.4190, 0.3639, 0.3888},
+      { 0.4002, 0.4341, 0.4630, 0.4546, 0.5283, 0.4147, 0.4311, 0.4283, 0.4531, 0.3757, 0.4539, 0.5511, 0.5747, 0.5125, 0.5406, 0.5321, 0.5502, 0.5565, 0.4284, 0.5173},
+      { 0.3828, 0.4470, 0.4740, 0.4405, 0.5278, 0.4242, 0.4408, 0.4415, 0.4953, 0.4075, 0.4686, 0.5747, 0.6162, 0.5012, 0.5444, 0.5252, 0.5718, 0.5896, 0.4245, 0.5293},
+      { 0.3411, 0.3783, 0.4045, 0.3884, 0.4589, 0.3716, 0.4104, 0.3869, 0.4082, 0.3443, 0.3578, 0.5125, 0.5012, 0.4653, 0.4791, 0.4695, 0.4758, 0.4915, 0.3864, 0.4493},
+      { 0.3429, 0.3905, 0.4204, 0.4029, 0.4643, 0.3776, 0.4225, 0.3921, 0.4306, 0.3430, 0.3671, 0.5406, 0.5444, 0.4791, 0.5146, 0.4970, 0.4883, 0.5077, 0.3951, 0.4574},
+      { 0.3310, 0.3969, 0.4272, 0.4046, 0.4622, 0.3750, 0.4019, 0.3866, 0.4379, 0.3445, 0.3783, 0.5321, 0.5252, 0.4695, 0.4970, 0.5054, 0.4944, 0.5127, 0.4053, 0.4430},
+      { 0.3454, 0.3984, 0.4281, 0.3918, 0.4690, 0.3895, 0.4122, 0.4132, 0.4484, 0.3648, 0.3991, 0.5502, 0.5718, 0.4758, 0.4883, 0.4944, 0.5392, 0.5375, 0.4082, 0.4838},
+      { 0.3518, 0.3947, 0.4432, 0.4050, 0.4881, 0.4049, 0.4258, 0.4194, 0.4455, 0.3861, 0.4190, 0.5565, 0.5896, 0.4915, 0.5077, 0.5127, 0.5375, 0.5850, 0.4140, 0.5036},
+      { 0.2985, 0.3754, 0.3634, 0.3669, 0.3856, 0.3502, 0.3544, 0.3477, 0.3900, 0.3290, 0.3639, 0.4284, 0.4245, 0.3864, 0.3951, 0.4053, 0.4082, 0.4140, 0.4220, 0.3942},
+      { 0.3974, 0.3676, 0.4371, 0.3682, 0.4683, 0.3933, 0.4072, 0.3989, 0.4087, 0.3776, 0.3888, 0.5173, 0.5293, 0.4493, 0.4574, 0.4430, 0.4838, 0.5036, 0.3942, 0.6751}},
+    {
+      { 0.3070, 0.2825, 0.4742, 0.4705, 0.4373, 0.3790, 0.3819, 0.3855, 0.4143, 0.3284, 0.3291, 0.4313, 0.4130, 0.3529, 0.3661, 0.3681, 0.3834, 0.3746, 0.3736, 0.3803},
+      { 0.2825, 0.2844, 0.6144, 0.4790, 0.4390, 0.3655, 0.3821, 0.3715, 0.3928, 0.2992, 0.3183, 0.4447, 0.4578, 0.3929, 0.4042, 0.4040, 0.4023, 0.3979, 0.3792, 0.3969},
+      { 0.4742, 0.6144, 0.3240, 0.2784, 0.3900, 0.3705, 0.4002, 0.3688, 0.4086, 0.3423, 0.3455, 0.4654, 0.4926, 0.4333, 0.4431, 0.4411, 0.4429, 0.4460, 0.3749, 0.4429},
+      { 0.4705, 0.4790, 0.2784, 0.3137, 0.3835, 0.3841, 0.4082, 0.3806, 0.4021, 0.3166, 0.3227, 0.4748, 0.4586, 0.4212, 0.4418, 0.4372, 0.4280, 0.4217, 0.3907, 0.3934},
+      { 0.4373, 0.4390, 0.3900, 0.3835, 0.4761, 0.4276, 0.4587, 0.4157, 0.4261, 0.3694, 0.3753, 0.5234, 0.5298, 0.4680, 0.4763, 0.4717, 0.4698, 0.4935, 0.3988, 0.4809},
+      { 0.3790, 0.3655, 0.3705, 0.3841, 0.4276, 0.3907, 0.4053, 0.3951, 0.4032, 0.3403, 0.3435, 0.4250, 0.4274, 0.3931, 0.3941, 0.3920, 0.4073, 0.4186, 0.3770, 0.3975},
+      { 0.3819, 0.3821, 0.4002, 0.4082, 0.4587, 0.4053, 0.4792, 0.4213, 0.4349, 0.3380, 0.3468, 0.4555, 0.4433, 0.4500, 0.4585, 0.4279, 0.4373, 0.4401, 0.3800, 0.4304},
+      { 0.3855, 0.3715, 0.3688, 0.3806, 0.4157, 0.3951, 0.4213, 0.4297, 0.4181, 0.3461, 0.3471, 0.4375, 0.4657, 0.4004, 0.4137, 0.4040, 0.4326, 0.4308, 0.3672, 0.4065},
+      { 0.4143, 0.3928, 0.4086, 0.4021, 0.4261, 0.4032, 0.4349, 0.4181, 0.4433, 0.3434, 0.3661, 0.4652, 0.5101, 0.4414, 0.4561, 0.4611, 0.4670, 0.4653, 0.4131, 0.4253},
+      { 0.3284, 0.2992, 0.3423, 0.3166, 0.3694, 0.3403, 0.3380, 0.3461, 0.3434, 0.3331, 0.3301, 0.3983, 0.4169, 0.3530, 0.3580, 0.3602, 0.3841, 0.3983, 0.3474, 0.3902},
+      { 0.3291, 0.3183, 0.3455, 0.3227, 0.3753, 0.3435, 0.3468, 0.3471, 0.3661, 0.3301, 0.3571, 0.4354, 0.4591, 0.3560, 0.3683, 0.3763, 0.3910, 0.4053, 0.3634, 0.3879},
+      { 0.4313, 0.4447, 0.4654, 0.4748, 0.5234, 0.4250, 0.4555, 0.4375, 0.4652, 0.3983, 0.4354, 0.5716, 0.5853, 0.5213, 0.5483, 0.5465, 0.5612, 0.5727, 0.4369, 0.5483},
+      { 0.4130, 0.4578, 0.4926, 0.4586, 0.5298, 0.4274, 0.4433, 0.4657, 0.5101, 0.4169, 0.4591, 0.5853, 0.6129, 0.5082, 0.5426, 0.5371, 0.5827, 0.5998, 0.4338, 0.5538},
+      { 0.3529, 0.3929, 0.4333, 0.4212, 0.4680, 0.3931, 0.4500, 0.4004, 0.4414, 0.3530, 0.3560, 0.5213, 0.5082, 0.5029, 0.5040, 0.4950, 0.4959, 0.5010, 0.4058, 0.4832},
+      { 0.3661, 0.4042, 0.4431, 0.4418, 0.4763, 0.3941, 0.4585, 0.4137, 0.4561, 0.3580, 0.3683, 0.5483, 0.5426, 0.5040, 0.5339, 0.5160, 0.5141, 0.5165, 0.4145, 0.4966},
+      { 0.3681, 0.4040, 0.4411, 0.4372, 0.4717, 0.3920, 0.4279, 0.4040, 0.4611, 0.3602, 0.3763, 0.5465, 0.5371, 0.4950, 0.5160, 0.5229, 0.5161, 0.5204, 0.4252, 0.4885},
+      { 0.3834, 0.4023, 0.4429, 0.4280, 0.4698, 0.4073, 0.4373, 0.4326, 0.4670, 0.3841, 0.3910, 0.5612, 0.5827, 0.4959, 0.5141, 0.5161, 0.5543, 0.5517, 0.4244, 0.5047},
+      { 0.3746, 0.3979, 0.4460, 0.4217, 0.4935, 0.4186, 0.4401, 0.4308, 0.4653, 0.3983, 0.4053, 0.5727, 0.5998, 0.5010, 0.5165, 0.5204, 0.5517, 0.5921, 0.4265, 0.5457},
+      { 0.3736, 0.3792, 0.3749, 0.3907, 0.3988, 0.3770, 0.3800, 0.3672, 0.4131, 0.3474, 0.3634, 0.4369, 0.4338, 0.4058, 0.4145, 0.4252, 0.4244, 0.4265, 0.4578, 0.4014},
+      { 0.3803, 0.3969, 0.4429, 0.3934, 0.4809, 0.3975, 0.4304, 0.4065, 0.4253, 0.3902, 0.3879, 0.5483, 0.5538, 0.4832, 0.4966, 0.4885, 0.5047, 0.5457, 0.4014, 0.6210}},
+    {
+      { 0.1979, 0.1924, 0.3299, 0.3450, 0.3023, 0.2565, 0.2514, 0.2807, 0.2896, 0.2294, 0.2217, 0.3131, 0.3219, 0.2239, 0.2328, 0.2360, 0.2534, 0.2657, 0.2394, 0.2598},
+      { 0.1924, 0.2064, 0.3240, 0.3437, 0.2899, 0.2470, 0.2559, 0.2541, 0.2719, 0.1911, 0.2025, 0.3136, 0.3252, 0.2504, 0.2633, 0.2744, 0.2643, 0.2707, 0.2551, 0.2419},
+      { 0.3299, 0.3240, 0.5118, 0.2928, 0.3827, 0.3153, 0.3234, 0.3231, 0.3161, 0.2998, 0.2903, 0.4072, 0.4169, 0.3323, 0.3440, 0.3478, 0.3616, 0.3735, 0.2863, 0.3603},
+      { 0.3450, 0.3437, 0.2928, 0.2320, 0.2880, 0.2800, 0.2845, 0.2908, 0.2839, 0.2504, 0.2312, 0.3420, 0.3447, 0.2813, 0.2956, 0.2923, 0.2946, 0.3055, 0.2644, 0.2746},
+      { 0.3023, 0.2899, 0.3827, 0.2880, 0.3887, 0.3092, 0.3273, 0.3056, 0.3037, 0.2798, 0.2770, 0.4014, 0.4062, 0.3336, 0.3265, 0.3371, 0.3564, 0.3676, 0.2712, 0.3393},
+      { 0.2565, 0.2470, 0.3153, 0.2800, 0.3092, 0.2690, 0.2685, 0.2837, 0.2732, 0.2702, 0.2382, 0.3122, 0.3442, 0.2663, 0.2696, 0.2726, 0.2868, 0.3071, 0.2531, 0.2939},
+      { 0.2514, 0.2559, 0.3234, 0.2845, 0.3273, 0.2685, 0.3147, 0.3025, 0.2907, 0.2476, 0.2285, 0.3277, 0.3329, 0.3060, 0.3128, 0.2846, 0.2999, 0.3183, 0.2400, 0.3060},
+      { 0.2807, 0.2541, 0.3231, 0.2908, 0.3056, 0.2837, 0.3025, 0.3206, 0.3022, 0.2648, 0.2517, 0.3346, 0.3686, 0.2831, 0.2909, 0.2786, 0.3048, 0.3273, 0.2545, 0.3043},
+      { 0.2896, 0.2719, 0.3161, 0.2839, 0.3037, 0.2732, 0.2907, 0.3022, 0.3001, 0.2483, 0.2580, 0.3262, 0.3840, 0.2863, 0.3010, 0.3098, 0.3203, 0.3371, 0.2657, 0.2895},
+      { 0.2294, 0.1911, 0.2998, 0.2504, 0.2798, 0.2702, 0.2476, 0.2648, 0.2483, 0.2492, 0.2421, 0.2954, 0.3215, 0.2460, 0.2476, 0.2452, 0.2934, 0.2956, 0.2415, 0.2881},
+      { 0.2217, 0.2025, 0.2903, 0.2312, 0.2770, 0.2382, 0.2285, 0.2517, 0.2580, 0.2421, 0.2478, 0.3427, 0.3745, 0.2389, 0.2451, 0.2619, 0.2896, 0.3228, 0.2379, 0.2941},
+      { 0.3131, 0.3136, 0.4072, 0.3420, 0.4014, 0.3122, 0.3277, 0.3346, 0.3262, 0.2954, 0.3427, 0.4481, 0.4773, 0.3774, 0.3886, 0.3948, 0.4085, 0.4487, 0.3038, 0.4067},
+      { 0.3219, 0.3252, 0.4169, 0.3447, 0.4062, 0.3442, 0.3329, 0.3686, 0.3840, 0.3215, 0.3745, 0.4773, 0.5285, 0.3757, 0.3896, 0.3908, 0.4342, 0.4710, 0.3049, 0.4613},
+      { 0.2239, 0.2504, 0.3323, 0.2813, 0.3336, 0.2663, 0.3060, 0.2831, 0.2863, 0.2460, 0.2389, 0.3774, 0.3757, 0.3531, 0.3516, 0.3382, 0.3310, 0.3719, 0.2521, 0.3559},
+      { 0.2328, 0.2633, 0.3440, 0.2956, 0.3265, 0.2696, 0.3128, 0.2909, 0.3010, 0.2476, 0.2451, 0.3886, 0.3896, 0.3516, 0.3711, 0.3523, 0.3519, 0.3828, 0.2640, 0.3475},
+      { 0.2360, 0.2744, 0.3478, 0.2923, 0.3371, 0.2726, 0.2846, 0.2786, 0.3098, 0.2452, 0.2619, 0.3948, 0.3908, 0.3382, 0.3523, 0.3508, 0.3561, 0.3844, 0.2720, 0.3370},
+      { 0.2534, 0.2643, 0.3616, 0.2946, 0.3564, 0.2868, 0.2999, 0.3048, 0.3203, 0.2934, 0.2896, 0.4085, 0.4342, 0.3310, 0.3519, 0.3561, 0.3899, 0.4191, 0.2726, 0.3638},
+      { 0.2657, 0.2707, 0.3735, 0.3055, 0.3676, 0.3071, 0.3183, 0.3273, 0.3371, 0.2956, 0.3228, 0.4487, 0.4710, 0.3719, 0.3828, 0.3844, 0.4191, 0.4683, 0.2890, 0.4106},
+      { 0.2394, 0.2551, 0.2863, 0.2644, 0.2712, 0.2531, 0.2400, 0.2545, 0.2657, 0.2415, 0.2379, 0.3038, 0.3049, 0.2521, 0.2640, 0.2720, 0.2726, 0.2890, 0.2970, 0.2658},
+      { 0.2598, 0.2419, 0.3603, 0.2746, 0.3393, 0.2939, 0.3060, 0.3043, 0.2895, 0.2881, 0.2941, 0.4067, 0.4613, 0.3559, 0.3475, 0.3370, 0.3638, 0.4106, 0.2658, 0.5115}},
+    {
+      { 0.1333, 0.1318, 0.2733, 0.2673, 0.2397, 0.1903, 0.1897, 0.2166, 0.2319, 0.1593, 0.1598, 0.2400, 0.2316, 0.1596, 0.1667, 0.1681, 0.1894, 0.1934, 0.1804, 0.1945},
+      { 0.1318, 0.1539, 0.2784, 0.2643, 0.2352, 0.1841, 0.1956, 0.1962, 0.2197, 0.1330, 0.1477, 0.2515, 0.2643, 0.1928, 0.2091, 0.2172, 0.2017, 0.2144, 0.2075, 0.1925},
+      { 0.2733, 0.2784, 0.2928, 0.3335, 0.2759, 0.2468, 0.2547, 0.2549, 0.2587, 0.2322, 0.2371, 0.3361, 0.3457, 0.2743, 0.2912, 0.2940, 0.2988, 0.3136, 0.2326, 0.2810},
+      { 0.2673, 0.2643, 0.3335, 0.1904, 0.2381, 0.2171, 0.2232, 0.2321, 0.2219, 0.1916, 0.1918, 0.3000, 0.2773, 0.2339, 0.2416, 0.2361, 0.2509, 0.2534, 0.1989, 0.2323},
+      { 0.2397, 0.2352, 0.2759, 0.2381, 0.3076, 0.2476, 0.2610, 0.2469, 0.2418, 0.2105, 0.2165, 0.3407, 0.3533, 0.2707, 0.2785, 0.2759, 0.2860, 0.3075, 0.2082, 0.2880},
+      { 0.1903, 0.1841, 0.2468, 0.2171, 0.2476, 0.1991, 0.2017, 0.2183, 0.2169, 0.1857, 0.1709, 0.2394, 0.2587, 0.2013, 0.2087, 0.2051, 0.2145, 0.2383, 0.1882, 0.2294},
+      { 0.1897, 0.1956, 0.2547, 0.2232, 0.2610, 0.2017, 0.2439, 0.2374, 0.2307, 0.1791, 0.1643, 0.2630, 0.2711, 0.2377, 0.2476, 0.2226, 0.2308, 0.2552, 0.1809, 0.2476},
+      { 0.2166, 0.1962, 0.2549, 0.2321, 0.2469, 0.2183, 0.2374, 0.2584, 0.2445, 0.1989, 0.1971, 0.2634, 0.2923, 0.2183, 0.2465, 0.2193, 0.2372, 0.2558, 0.1951, 0.2510},
+      { 0.2319, 0.2197, 0.2587, 0.2219, 0.2418, 0.2169, 0.2307, 0.2445, 0.2452, 0.1793, 0.2018, 0.2765, 0.3140, 0.2316, 0.2464, 0.2597, 0.2650, 0.2742, 0.2168, 0.2134},
+      { 0.1593, 0.1330, 0.2322, 0.1916, 0.2105, 0.1857, 0.1791, 0.1989, 0.1793, 0.1752, 0.1795, 0.2295, 0.2492, 0.1838, 0.1846, 0.1917, 0.2080, 0.2231, 0.1794, 0.2409},
+      { 0.1598, 0.1477, 0.2371, 0.1918, 0.2165, 0.1709, 0.1643, 0.1971, 0.2018, 0.1795, 0.1891, 0.2749, 0.2954, 0.1746, 0.1834, 0.2039, 0.2107, 0.2566, 0.1799, 0.2307},
+      { 0.2400, 0.2515, 0.3361, 0.3000, 0.3407, 0.2394, 0.2630, 0.2634, 0.2765, 0.2295, 0.2749, 0.3725, 0.4005, 0.3160, 0.3355, 0.3418, 0.3562, 0.3837, 0.2337, 0.3567},
+      { 0.2316, 0.2643, 0.3457, 0.2773, 0.3533, 0.2587, 0.2711, 0.2923, 0.3140, 0.2492, 0.2954, 0.4005, 0.4673, 0.3098, 0.3438, 0.3465, 0.3702, 0.4140, 0.2414, 0.3688},
+      { 0.1596, 0.1928, 0.2743, 0.2339, 0.2707, 0.2013, 0.2377, 0.2183, 0.2316, 0.1838, 0.1746, 0.3160, 0.3098, 0.2822, 0.2840, 0.2727, 0.2704, 0.3070, 0.1950, 0.2658},
+      { 0.1667, 0.2091, 0.2912, 0.2416, 0.2785, 0.2087, 0.2476, 0.2465, 0.2464, 0.1846, 0.1834, 0.3355, 0.3438, 0.2840, 0.3100, 0.2994, 0.2781, 0.3243, 0.2064, 0.2793},
+      { 0.1681, 0.2172, 0.2940, 0.2361, 0.2759, 0.2051, 0.2226, 0.2193, 0.2597, 0.1917, 0.2039, 0.3418, 0.3465, 0.2727, 0.2994, 0.2985, 0.2824, 0.3287, 0.2156, 0.2615},
+      { 0.1894, 0.2017, 0.2988, 0.2509, 0.2860, 0.2145, 0.2308, 0.2372, 0.2650, 0.2080, 0.2107, 0.3562, 0.3702, 0.2704, 0.2781, 0.2824, 0.3233, 0.3548, 0.2026, 0.2884},
+      { 0.1934, 0.2144, 0.3136, 0.2534, 0.3075, 0.2383, 0.2552, 0.2558, 0.2742, 0.2231, 0.2566, 0.3837, 0.4140, 0.3070, 0.3243, 0.3287, 0.3548, 0.4064, 0.2275, 0.3423},
+      { 0.1804, 0.2075, 0.2326, 0.1989, 0.2082, 0.1882, 0.1809, 0.1951, 0.2168, 0.1794, 0.1799, 0.2337, 0.2414, 0.1950, 0.2064, 0.2156, 0.2026, 0.2275, 0.2504, 0.2115},
+      { 0.1945, 0.1925, 0.2810, 0.2323, 0.2880, 0.2294, 0.2476, 0.2510, 0.2134, 0.2409, 0.2307, 0.3567, 0.3688, 0.2658, 0.2793, 0.2615, 0.2884, 0.3423, 0.2115, 0.4685}},
+    {
+      { 0.2066, 0.1802, 0.4110, 0.3933, 0.1850, 0.2877, 0.2817, 0.2871, 0.2889, 0.2537, 0.2447, 0.3081, 0.3216, 0.2624, 0.2612, 0.2562, 0.2767, 0.2665, 0.2535, 0.2776},
+      { 0.1802, 0.1877, 0.3900, 0.3779, 0.1692, 0.2660, 0.2889, 0.2553, 0.2698, 0.2029, 0.2336, 0.3117, 0.3381, 0.2852, 0.2903, 0.2855, 0.2809, 0.2793, 0.2589, 0.2707},
+      { 0.4110, 0.3900, 0.3827, 0.2759, 0.5689, 0.3668, 0.3583, 0.4041, 0.4167, 0.3232, 0.3175, 0.4791, 0.5088, 0.3560, 0.3737, 0.3758, 0.3982, 0.4491, 0.3261, 0.3941},
+      { 0.3933, 0.3779, 0.2759, 0.2378, 0.2348, 0.2961, 0.3124, 0.3032, 0.3039, 0.2571, 0.2543, 0.3883, 0.3894, 0.3150, 0.3224, 0.3192, 0.3100, 0.3374, 0.2866, 0.3230},
+      { 0.1850, 0.1692, 0.5689, 0.2348, 0.3694, 0.2474, 0.2492, 0.2514, 0.2452, 0.2263, 0.2290, 0.3574, 0.4005, 0.2886, 0.3070, 0.2889, 0.3416, 0.3636, 0.1867, 0.3642},
+      { 0.2877, 0.2660, 0.3668, 0.2961, 0.2474, 0.3111, 0.3072, 0.3056, 0.2946, 0.2758, 0.2708, 0.3335, 0.3538, 0.3084, 0.3086, 0.2996, 0.3174, 0.3301, 0.2778, 0.3250},
+      { 0.2817, 0.2889, 0.3583, 0.3124, 0.2492, 0.3072, 0.3519, 0.3147, 0.3218, 0.2649, 0.2695, 0.3501, 0.3790, 0.3453, 0.3452, 0.3278, 0.3360, 0.3409, 0.2743, 0.3400},
+      { 0.2871, 0.2553, 0.4041, 0.3032, 0.2514, 0.3056, 0.3147, 0.3370, 0.3107, 0.2769, 0.2875, 0.3558, 0.3794, 0.3072, 0.3155, 0.2978, 0.3283, 0.3548, 0.2695, 0.3547},
+      { 0.2889, 0.2698, 0.4167, 0.3039, 0.2452, 0.2946, 0.3218, 0.3107, 0.3116, 0.2622, 0.2917, 0.3563, 0.4026, 0.3252, 0.3396, 0.3331, 0.3716, 0.3601, 0.2881, 0.3328},
+      { 0.2537, 0.2029, 0.3232, 0.2571, 0.2263, 0.2758, 0.2649, 0.2769, 0.2622, 0.2818, 0.2527, 0.3150, 0.3507, 0.2708, 0.2751, 0.2731, 0.3135, 0.3083, 0.2601, 0.3045},
+      { 0.2447, 0.2336, 0.3175, 0.2543, 0.2290, 0.2708, 0.2695, 0.2875, 0.2917, 0.2527, 0.2949, 0.3670, 0.3975, 0.2795, 0.2778, 0.2959, 0.3277, 0.3410, 0.2676, 0.3117},
+      { 0.3081, 0.3117, 0.4791, 0.3883, 0.3574, 0.3335, 0.3501, 0.3558, 0.3563, 0.3150, 0.3670, 0.4489, 0.4768, 0.4099, 0.4295, 0.4188, 0.4573, 0.4644, 0.3241, 0.4459},
+      { 0.3216, 0.3381, 0.5088, 0.3894, 0.4005, 0.3538, 0.3790, 0.3794, 0.4026, 0.3507, 0.3975, 0.4768, 0.5539, 0.4160, 0.4546, 0.4324, 0.4881, 0.4905, 0.3330, 0.4988},
+      { 0.2624, 0.2852, 0.3560, 0.3150, 0.2886, 0.3084, 0.3453, 0.3072, 0.3252, 0.2708, 0.2795, 0.4099, 0.4160, 0.4048, 0.4118, 0.3903, 0.4011, 0.4027, 0.3079, 0.3800},
+      { 0.2612, 0.2903, 0.3737, 0.3224, 0.3070, 0.3086, 0.3452, 0.3155, 0.3396, 0.2751, 0.2778, 0.4295, 0.4546, 0.4118, 0.4264, 0.4033, 0.4185, 0.4258, 0.3196, 0.3929},
+      { 0.2562, 0.2855, 0.3758, 0.3192, 0.2889, 0.2996, 0.3278, 0.2978, 0.3331, 0.2731, 0.2959, 0.4188, 0.4324, 0.3903, 0.4033, 0.4016, 0.3947, 0.4090, 0.3192, 0.3777},
+      { 0.2767, 0.2809, 0.3982, 0.3100, 0.3416, 0.3174, 0.3360, 0.3283, 0.3716, 0.3135, 0.3277, 0.4573, 0.4881, 0.4011, 0.4185, 0.3947, 0.4813, 0.4592, 0.3205, 0.4094},
+      { 0.2665, 0.2793, 0.4491, 0.3374, 0.3636, 0.3301, 0.3409, 0.3548, 0.3601, 0.3083, 0.3410, 0.4644, 0.4905, 0.4027, 0.4258, 0.4090, 0.4592, 0.4955, 0.3171, 0.4377},
+      { 0.2535, 0.2589, 0.3261, 0.2866, 0.1867, 0.2778, 0.2743, 0.2695, 0.2881, 0.2601, 0.2676, 0.3241, 0.3330, 0.3079, 0.3196, 0.3192, 0.3205, 0.3171, 0.3127, 0.3118},
+      { 0.2776, 0.2707, 0.3941, 0.3230, 0.3642, 0.3250, 0.3400, 0.3547, 0.3328, 0.3045, 0.3117, 0.4459, 0.4988, 0.3800, 0.3929, 0.3777, 0.4094, 0.4377, 0.3118, 0.5183}},
+    {
+      { 0.1524, 0.1475, 0.3682, 0.3385, 0.3098, 0.1880, 0.2162, 0.2571, 0.2694, 0.1938, 0.1941, 0.3098, 0.3161, 0.2186, 0.2326, 0.2319, 0.2487, 0.2512, 0.1973, 0.2259},
+      { 0.1475, 0.1780, 0.3705, 0.3689, 0.3047, 0.1705, 0.2194, 0.2374, 0.2684, 0.1641, 0.1834, 0.3227, 0.3339, 0.2462, 0.2628, 0.2642, 0.2534, 0.2676, 0.2106, 0.2039},
+      { 0.3682, 0.3705, 0.3153, 0.2468, 0.3668, 0.4641, 0.4011, 0.3640, 0.3373, 0.3285, 0.3258, 0.4095, 0.4327, 0.3623, 0.3688, 0.3619, 0.3825, 0.3890, 0.3602, 0.4272},
+      { 0.3385, 0.3689, 0.2468, 0.2181, 0.2830, 0.2639, 0.2818, 0.2690, 0.2965, 0.2162, 0.2118, 0.3673, 0.3499, 0.2835, 0.2904, 0.2920, 0.2846, 0.3090, 0.2550, 0.2509},
+      { 0.3098, 0.3047, 0.3668, 0.2830, 0.3822, 0.3128, 0.3318, 0.3061, 0.3161, 0.2791, 0.2813, 0.4384, 0.4280, 0.3469, 0.3510, 0.3480, 0.3713, 0.3964, 0.2810, 0.3594},
+      { 0.1880, 0.1705, 0.4641, 0.2639, 0.3128, 0.2343, 0.2451, 0.2661, 0.2554, 0.2185, 0.1831, 0.3152, 0.3454, 0.2542, 0.2681, 0.2574, 0.2849, 0.2946, 0.2131, 0.3033},
+      { 0.2162, 0.2194, 0.4011, 0.2818, 0.3318, 0.2451, 0.2952, 0.2881, 0.2905, 0.2265, 0.2115, 0.3365, 0.3518, 0.3037, 0.3184, 0.2913, 0.3135, 0.3270, 0.2353, 0.3067},
+      { 0.2571, 0.2374, 0.3640, 0.2690, 0.3061, 0.2661, 0.2881, 0.3102, 0.2992, 0.2543, 0.2415, 0.3411, 0.3659, 0.2835, 0.2910, 0.2828, 0.3127, 0.3233, 0.2440, 0.2965},
+      { 0.2694, 0.2684, 0.3373, 0.2965, 0.3161, 0.2554, 0.2905, 0.2992, 0.3119, 0.2377, 0.2546, 0.3508, 0.3829, 0.3030, 0.3177, 0.3179, 0.3325, 0.3461, 0.2661, 0.2814},
+      { 0.1938, 0.1641, 0.3285, 0.2162, 0.2791, 0.2185, 0.2265, 0.2543, 0.2377, 0.2249, 0.2124, 0.3249, 0.3328, 0.2436, 0.2525, 0.2567, 0.2884, 0.3166, 0.2185, 0.2831},
+      { 0.1941, 0.1834, 0.3258, 0.2118, 0.2813, 0.1831, 0.2115, 0.2415, 0.2546, 0.2124, 0.2348, 0.3640, 0.3741, 0.2421, 0.2595, 0.2666, 0.2934, 0.3249, 0.2208, 0.2870},
+      { 0.3098, 0.3227, 0.4095, 0.3673, 0.4384, 0.3152, 0.3365, 0.3411, 0.3508, 0.3249, 0.3640, 0.4652, 0.5036, 0.4033, 0.4192, 0.4233, 0.4516, 0.4675, 0.3245, 0.3991},
+      { 0.3161, 0.3339, 0.4327, 0.3499, 0.4280, 0.3454, 0.3518, 0.3659, 0.3829, 0.3328, 0.3741, 0.5036, 0.5975, 0.4165, 0.4304, 0.4336, 0.4900, 0.5208, 0.3315, 0.4343},
+      { 0.2186, 0.2462, 0.3623, 0.2835, 0.3469, 0.2542, 0.3037, 0.2835, 0.3030, 0.2436, 0.2421, 0.4033, 0.4165, 0.3733, 0.3780, 0.3587, 0.3648, 0.3991, 0.2801, 0.3484},
+      { 0.2326, 0.2628, 0.3688, 0.2904, 0.3510, 0.2681, 0.3184, 0.2910, 0.3177, 0.2525, 0.2595, 0.4192, 0.4304, 0.3780, 0.4040, 0.3826, 0.3877, 0.4074, 0.2971, 0.3553},
+      { 0.2319, 0.2642, 0.3619, 0.2920, 0.3480, 0.2574, 0.2913, 0.2828, 0.3179, 0.2567, 0.2666, 0.4233, 0.4336, 0.3587, 0.3826, 0.3865, 0.3728, 0.4142, 0.2906, 0.3283},
+      { 0.2487, 0.2534, 0.3825, 0.2846, 0.3713, 0.2849, 0.3135, 0.3127, 0.3325, 0.2884, 0.2934, 0.4516, 0.4900, 0.3648, 0.3877, 0.3728, 0.4235, 0.4470, 0.2954, 0.3830},
+      { 0.2512, 0.2676, 0.3890, 0.3090, 0.3964, 0.2946, 0.3270, 0.3233, 0.3461, 0.3166, 0.3249, 0.4675, 0.5208, 0.3991, 0.4074, 0.4142, 0.4470, 0.4879, 0.3180, 0.4036},
+      { 0.1973, 0.2106, 0.3602, 0.2550, 0.2810, 0.2131, 0.2353, 0.2440, 0.2661, 0.2185, 0.2208, 0.3245, 0.3315, 0.2801, 0.2971, 0.2906, 0.2954, 0.3180, 0.2730, 0.2786},
+      { 0.2259, 0.2039, 0.4272, 0.2509, 0.3594, 0.3033, 0.3067, 0.2965, 0.2814, 0.2831, 0.2870, 0.3991, 0.4343, 0.3484, 0.3553, 0.3283, 0.3830, 0.4036, 0.2786, 0.5183}},
+    {
+      { 0.1761, 0.1674, 0.3819, 0.3646, 0.3314, 0.2302, 0.1865, 0.2735, 0.2834, 0.2119, 0.2137, 0.3234, 0.3291, 0.2272, 0.2358, 0.2310, 0.2452, 0.2589, 0.2144, 0.2376},
+      { 0.1674, 0.1913, 0.4002, 0.3945, 0.3265, 0.2226, 0.1984, 0.2528, 0.2830, 0.1818, 0.2061, 0.3431, 0.3586, 0.2636, 0.2697, 0.2724, 0.2597, 0.2834, 0.2271, 0.2209},
+      { 0.3819, 0.4002, 0.3234, 0.2547, 0.3583, 0.4011, 0.4757, 0.3698, 0.3534, 0.3104, 0.3237, 0.4205, 0.4372, 0.3951, 0.3948, 0.3797, 0.3980, 0.3915, 0.3410, 0.4255},
+      { 0.3646, 0.3945, 0.2547, 0.2360, 0.3018, 0.2866, 0.2770, 0.2866, 0.3095, 0.2243, 0.2281, 0.3787, 0.3699, 0.3115, 0.3150, 0.3057, 0.2983, 0.3147, 0.2611, 0.2808},
+      { 0.3314, 0.3265, 0.3583, 0.3018, 0.3919, 0.3334, 0.3334, 0.3265, 0.3302, 0.2840, 0.3043, 0.4425, 0.4564, 0.3657, 0.3596, 0.3474, 0.3824, 0.3903, 0.2969, 0.3641},
+      { 0.2302, 0.2226, 0.4011, 0.2866, 0.3334, 0.2609, 0.2414, 0.2878, 0.2790, 0.2300, 0.2257, 0.3403, 0.3542, 0.2850, 0.2889, 0.2763, 0.3068, 0.3189, 0.2403, 0.3042},
+      { 0.1865, 0.1984, 0.4757, 0.2770, 0.3334, 0.2414, 0.2923, 0.2707, 0.2793, 0.1981, 0.2035, 0.3286, 0.3278, 0.3172, 0.3116, 0.2791, 0.2972, 0.3107, 0.2171, 0.3112},
+      { 0.2735, 0.2528, 0.3698, 0.2866, 0.3265, 0.2878, 0.2707, 0.3322, 0.3144, 0.2600, 0.2608, 0.3511, 0.3771, 0.2848, 0.2980, 0.2798, 0.3109, 0.3299, 0.2491, 0.2963},
+      { 0.2834, 0.2830, 0.3534, 0.3095, 0.3302, 0.2790, 0.2793, 0.3144, 0.3292, 0.2422, 0.2685, 0.3640, 0.4109, 0.3134, 0.3263, 0.3241, 0.3383, 0.3551, 0.2726, 0.3042},
+      { 0.2119, 0.1818, 0.3104, 0.2243, 0.2840, 0.2300, 0.1981, 0.2600, 0.2422, 0.2334, 0.2394, 0.3388, 0.3442, 0.2435, 0.2532, 0.2504, 0.2847, 0.3202, 0.2266, 0.2772},
+      { 0.2137, 0.2061, 0.3237, 0.2281, 0.3043, 0.2257, 0.2035, 0.2608, 0.2685, 0.2394, 0.2608, 0.3772, 0.4082, 0.2527, 0.2711, 0.2783, 0.3094, 0.3323, 0.2412, 0.2836},
+      { 0.3234, 0.3431, 0.4205, 0.3787, 0.4425, 0.3403, 0.3286, 0.3511, 0.3640, 0.3388, 0.3772, 0.4678, 0.5071, 0.4160, 0.4280, 0.4268, 0.4371, 0.4749, 0.3435, 0.4311},
+      { 0.3291, 0.3586, 0.4372, 0.3699, 0.4564, 0.3542, 0.3278, 0.3771, 0.4109, 0.3442, 0.4082, 0.5071, 0.5281, 0.4200, 0.4503, 0.4392, 0.4822, 0.5018, 0.3470, 0.4502},
+      { 0.2272, 0.2636, 0.3951, 0.3115, 0.3657, 0.2850, 0.3172, 0.2848, 0.3134, 0.2435, 0.2527, 0.4160, 0.4200, 0.3944, 0.3951, 0.3710, 0.3686, 0.3997, 0.2944, 0.3673},
+      { 0.2358, 0.2697, 0.3948, 0.3150, 0.3596, 0.2889, 0.3116, 0.2980, 0.3263, 0.2532, 0.2711, 0.4280, 0.4503, 0.3951, 0.4186, 0.3911, 0.3891, 0.4135, 0.3081, 0.3821},
+      { 0.2310, 0.2724, 0.3797, 0.3057, 0.3474, 0.2763, 0.2791, 0.2798, 0.3241, 0.2504, 0.2783, 0.4268, 0.4392, 0.3710, 0.3911, 0.3873, 0.3769, 0.4142, 0.3052, 0.3514},
+      { 0.2452, 0.2597, 0.3980, 0.2983, 0.3824, 0.3068, 0.2972, 0.3109, 0.3383, 0.2847, 0.3094, 0.4371, 0.4822, 0.3686, 0.3891, 0.3769, 0.4292, 0.4495, 0.3074, 0.3980},
+      { 0.2589, 0.2834, 0.3915, 0.3147, 0.3903, 0.3189, 0.3107, 0.3299, 0.3551, 0.3202, 0.3323, 0.4749, 0.5018, 0.3997, 0.4135, 0.4142, 0.4495, 0.4865, 0.3330, 0.4126},
+      { 0.2144, 0.2271, 0.3410, 0.2611, 0.2969, 0.2403, 0.2171, 0.2491, 0.2726, 0.2266, 0.2412, 0.3435, 0.3470, 0.2944, 0.3081, 0.3052, 0.3074, 0.3330, 0.2843, 0.2905},
+      { 0.2376, 0.2209, 0.4255, 0.2808, 0.3641, 0.3042, 0.3112, 0.2963, 0.3042, 0.2772, 0.2836, 0.4311, 0.4502, 0.3673, 0.3821, 0.3514, 0.3980, 0.4126, 0.2905, 0.4984}},
+    {
+      { 0.1629, 0.1517, 0.4045, 0.3538, 0.3149, 0.2447, 0.2434, 0.2273, 0.2644, 0.2174, 0.2236, 0.3044, 0.2968, 0.2323, 0.2457, 0.2351, 0.2479, 0.2593, 0.2196, 0.2622},
+      { 0.1517, 0.1889, 0.3688, 0.3624, 0.2913, 0.2354, 0.2427, 0.1885, 0.2691, 0.1878, 0.2273, 0.3156, 0.3369, 0.2519, 0.2660, 0.2783, 0.2708, 0.2789, 0.2519, 0.2312},
+      { 0.4045, 0.3688, 0.3231, 0.2549, 0.4041, 0.3640, 0.3698, 0.5158, 0.3524, 0.3122, 0.3030, 0.4359, 0.4407, 0.3640, 0.3840, 0.3824, 0.3875, 0.4138, 0.3259, 0.4099},
+      { 0.3538, 0.3624, 0.2549, 0.2315, 0.2981, 0.2748, 0.2848, 0.2874, 0.3008, 0.2501, 0.2321, 0.3665, 0.3551, 0.2892, 0.3063, 0.3068, 0.3026, 0.3190, 0.2712, 0.2860},
+      { 0.3149, 0.2913, 0.4041, 0.2981, 0.3638, 0.3245, 0.3387, 0.3368, 0.3165, 0.2817, 0.2938, 0.4196, 0.4104, 0.3508, 0.3463, 0.3426, 0.3613, 0.3946, 0.2965, 0.4052},
+      { 0.2447, 0.2354, 0.3640, 0.2748, 0.3245, 0.2635, 0.2657, 0.2770, 0.2788, 0.2508, 0.2528, 0.3347, 0.3448, 0.2777, 0.2803, 0.2832, 0.3002, 0.3258, 0.2483, 0.3175},
+      { 0.2434, 0.2427, 0.3698, 0.2848, 0.3387, 0.2657, 0.3068, 0.2778, 0.3035, 0.2447, 0.2530, 0.3409, 0.3583, 0.3078, 0.3217, 0.3043, 0.3271, 0.3299, 0.2543, 0.3143},
+      { 0.2273, 0.1885, 0.5158, 0.2874, 0.3368, 0.2770, 0.2778, 0.3231, 0.2993, 0.2647, 0.2396, 0.3292, 0.3524, 0.2814, 0.2912, 0.2799, 0.3114, 0.3257, 0.2255, 0.3244},
+      { 0.2644, 0.2691, 0.3524, 0.3008, 0.3165, 0.2788, 0.3035, 0.2993, 0.3185, 0.2554, 0.2817, 0.3500, 0.3919, 0.3043, 0.3308, 0.3314, 0.3415, 0.3524, 0.2833, 0.3120},
+      { 0.2174, 0.1878, 0.3122, 0.2501, 0.2817, 0.2508, 0.2447, 0.2647, 0.2554, 0.2475, 0.2596, 0.3148, 0.3289, 0.2614, 0.2676, 0.2555, 0.2889, 0.3110, 0.2395, 0.3225},
+      { 0.2236, 0.2273, 0.3030, 0.2321, 0.2938, 0.2528, 0.2530, 0.2396, 0.2817, 0.2596, 0.2901, 0.3711, 0.4001, 0.2724, 0.2852, 0.2923, 0.3245, 0.3496, 0.2614, 0.3125},
+      { 0.3044, 0.3156, 0.4359, 0.3665, 0.4196, 0.3347, 0.3409, 0.3292, 0.3500, 0.3148, 0.3711, 0.4705, 0.5008, 0.4055, 0.4164, 0.4198, 0.4537, 0.4779, 0.3348, 0.4239},
+      { 0.2968, 0.3369, 0.4407, 0.3551, 0.4104, 0.3448, 0.3583, 0.3524, 0.3919, 0.3289, 0.4001, 0.5008, 0.5377, 0.4123, 0.4530, 0.4322, 0.4956, 0.5093, 0.3434, 0.4549},
+      { 0.2323, 0.2519, 0.3640, 0.2892, 0.3508, 0.2777, 0.3078, 0.2814, 0.3043, 0.2614, 0.2724, 0.4055, 0.4123, 0.3578, 0.3796, 0.3604, 0.3810, 0.3930, 0.2912, 0.3423},
+      { 0.2457, 0.2660, 0.3840, 0.3063, 0.3463, 0.2803, 0.3217, 0.2912, 0.3308, 0.2676, 0.2852, 0.4164, 0.4530, 0.3796, 0.3928, 0.3873, 0.3889, 0.4134, 0.3059, 0.3674},
+      { 0.2351, 0.2783, 0.3824, 0.3068, 0.3426, 0.2832, 0.3043, 0.2799, 0.3314, 0.2555, 0.2923, 0.4198, 0.4322, 0.3604, 0.3873, 0.3840, 0.3856, 0.4118, 0.3019, 0.3281},
+      { 0.2479, 0.2708, 0.3875, 0.3026, 0.3613, 0.3002, 0.3271, 0.3114, 0.3415, 0.2889, 0.3245, 0.4537, 0.4956, 0.3810, 0.3889, 0.3856, 0.4664, 0.4530, 0.3125, 0.3822},
+      { 0.2593, 0.2789, 0.4138, 0.3190, 0.3946, 0.3258, 0.3299, 0.3257, 0.3524, 0.3110, 0.3496, 0.4779, 0.5093, 0.3930, 0.4134, 0.4118, 0.4530, 0.4959, 0.3246, 0.4075},
+      { 0.2196, 0.2519, 0.3259, 0.2712, 0.2965, 0.2483, 0.2543, 0.2255, 0.2833, 0.2395, 0.2614, 0.3348, 0.3434, 0.2912, 0.3059, 0.3019, 0.3125, 0.3246, 0.3004, 0.2810},
+      { 0.2622, 0.2312, 0.4099, 0.2860, 0.4052, 0.3175, 0.3143, 0.3244, 0.3120, 0.3225, 0.3125, 0.4239, 0.4549, 0.3423, 0.3674, 0.3281, 0.3822, 0.4075, 0.2810, 0.5660}},
+    {
+      { 0.2002, 0.1980, 0.3830, 0.3832, 0.3365, 0.2845, 0.2820, 0.2917, 0.2665, 0.2357, 0.2354, 0.3327, 0.3165, 0.2519, 0.2561, 0.2564, 0.2728, 0.2848, 0.2640, 0.2896},
+      { 0.1980, 0.2197, 0.4086, 0.3972, 0.3200, 0.2781, 0.2848, 0.2814, 0.2516, 0.2075, 0.2355, 0.3384, 0.3459, 0.2853, 0.2968, 0.2985, 0.2885, 0.3029, 0.2834, 0.2793},
+      { 0.3830, 0.4086, 0.3161, 0.2587, 0.4167, 0.3373, 0.3534, 0.3524, 0.5144, 0.3091, 0.3120, 0.4376, 0.4537, 0.3691, 0.3895, 0.3869, 0.4266, 0.4084, 0.3189, 0.3910},
+      { 0.3832, 0.3972, 0.2587, 0.2465, 0.3073, 0.3075, 0.3140, 0.3093, 0.3066, 0.2583, 0.2564, 0.3843, 0.3710, 0.3237, 0.3328, 0.3311, 0.3279, 0.3414, 0.2967, 0.3135},
+      { 0.3365, 0.3200, 0.4167, 0.3073, 0.3890, 0.3383, 0.3625, 0.3274, 0.3271, 0.2944, 0.3017, 0.4343, 0.4293, 0.3672, 0.3692, 0.3672, 0.3784, 0.3998, 0.3012, 0.4129},
+      { 0.2845, 0.2781, 0.3373, 0.3075, 0.3383, 0.3018, 0.3025, 0.3128, 0.2911, 0.2667, 0.2615, 0.3450, 0.3604, 0.2974, 0.3012, 0.3006, 0.3164, 0.3385, 0.2780, 0.3238},
+      { 0.2820, 0.2848, 0.3534, 0.3140, 0.3625, 0.3025, 0.3519, 0.3244, 0.3084, 0.2600, 0.2572, 0.3605, 0.3566, 0.3454, 0.3439, 0.3194, 0.3234, 0.3504, 0.2725, 0.3338},
+      { 0.2917, 0.2814, 0.3524, 0.3093, 0.3274, 0.3128, 0.3244, 0.3406, 0.3052, 0.2788, 0.2781, 0.3588, 0.3851, 0.3112, 0.3196, 0.3105, 0.3392, 0.3512, 0.2780, 0.3305},
+      { 0.2665, 0.2516, 0.5144, 0.3066, 0.3271, 0.2911, 0.3084, 0.3052, 0.3028, 0.2581, 0.2694, 0.3551, 0.4088, 0.3188, 0.3284, 0.3366, 0.3451, 0.3502, 0.2781, 0.3341},
+      { 0.2357, 0.2075, 0.3091, 0.2583, 0.2944, 0.2667, 0.2600, 0.2788, 0.2581, 0.2570, 0.2611, 0.3301, 0.3550, 0.2749, 0.2749, 0.2783, 0.3021, 0.3287, 0.2613, 0.3150},
+      { 0.2354, 0.2355, 0.3120, 0.2564, 0.3017, 0.2615, 0.2572, 0.2781, 0.2694, 0.2611, 0.2835, 0.3758, 0.4028, 0.2760, 0.2837, 0.2926, 0.3112, 0.3417, 0.2746, 0.3229},
+      { 0.3327, 0.3384, 0.4376, 0.3843, 0.4343, 0.3450, 0.3605, 0.3588, 0.3551, 0.3301, 0.3758, 0.4840, 0.5219, 0.4229, 0.4414, 0.4413, 0.4694, 0.4982, 0.3409, 0.4472},
+      { 0.3165, 0.3459, 0.4537, 0.3710, 0.4293, 0.3604, 0.3566, 0.3851, 0.4088, 0.3550, 0.4028, 0.5219, 0.6155, 0.4230, 0.4372, 0.4355, 0.4575, 0.5080, 0.3500, 0.4657},
+      { 0.2519, 0.2853, 0.3691, 0.3237, 0.3672, 0.2974, 0.3454, 0.3112, 0.3188, 0.2749, 0.2760, 0.4229, 0.4230, 0.3885, 0.4063, 0.3836, 0.3864, 0.4171, 0.3029, 0.3814},
+      { 0.2561, 0.2968, 0.3895, 0.3328, 0.3692, 0.3012, 0.3439, 0.3196, 0.3284, 0.2749, 0.2837, 0.4414, 0.4372, 0.4063, 0.4296, 0.4170, 0.4110, 0.4396, 0.3073, 0.3996},
+      { 0.2564, 0.2985, 0.3869, 0.3311, 0.3672, 0.3006, 0.3194, 0.3105, 0.3366, 0.2783, 0.2926, 0.4413, 0.4355, 0.3836, 0.4170, 0.4032, 0.3996, 0.4417, 0.3123, 0.3791},
+      { 0.2728, 0.2885, 0.4266, 0.3279, 0.3784, 0.3164, 0.3234, 0.3392, 0.3451, 0.3021, 0.3112, 0.4694, 0.4575, 0.3864, 0.4110, 0.3996, 0.4581, 0.4699, 0.3143, 0.4344},
+      { 0.2848, 0.3029, 0.4084, 0.3414, 0.3998, 0.3385, 0.3504, 0.3512, 0.3502, 0.3287, 0.3417, 0.4982, 0.5080, 0.4171, 0.4396, 0.4417, 0.4699, 0.5034, 0.3365, 0.4512},
+      { 0.2640, 0.2834, 0.3189, 0.2967, 0.3012, 0.2780, 0.2725, 0.2780, 0.2781, 0.2613, 0.2746, 0.3409, 0.3500, 0.3029, 0.3073, 0.3123, 0.3143, 0.3365, 0.3380, 0.3248},
+      { 0.2896, 0.2793, 0.3910, 0.3135, 0.4129, 0.3238, 0.3338, 0.3305, 0.3341, 0.3150, 0.3229, 0.4472, 0.4657, 0.3814, 0.3996, 0.3791, 0.4344, 0.4512, 0.3248, 0.5393}},
+    {
+      { 0.1169, 0.1080, 0.3381, 0.3280, 0.2896, 0.1969, 0.1984, 0.2320, 0.2293, 0.0937, 0.1858, 0.2905, 0.2746, 0.1842, 0.1951, 0.1985, 0.2137, 0.2228, 0.1529, 0.1960},
+      { 0.1080, 0.1362, 0.3423, 0.3245, 0.2669, 0.1811, 0.2012, 0.2002, 0.2263, 0.0585, 0.1682, 0.2987, 0.3174, 0.2147, 0.2233, 0.2298, 0.2108, 0.2360, 0.1664, 0.1760},
+      { 0.3381, 0.3423, 0.2998, 0.2322, 0.3232, 0.3285, 0.3104, 0.3122, 0.3091, 0.3779, 0.2842, 0.3781, 0.3977, 0.3155, 0.3230, 0.3354, 0.3432, 0.3541, 0.3184, 0.3643},
+      { 0.3280, 0.3245, 0.2322, 0.1967, 0.2494, 0.2314, 0.2408, 0.2579, 0.2661, 0.2052, 0.2038, 0.3304, 0.3114, 0.2542, 0.2602, 0.2630, 0.2454, 0.2803, 0.2181, 0.2269},
+      { 0.2896, 0.2669, 0.3232, 0.2494, 0.3559, 0.2823, 0.2938, 0.2836, 0.2794, 0.2233, 0.2783, 0.4003, 0.3973, 0.3038, 0.3178, 0.3161, 0.3148, 0.3585, 0.2428, 0.3138},
+      { 0.1969, 0.1811, 0.3285, 0.2314, 0.2823, 0.2314, 0.2249, 0.2461, 0.2344, 0.1651, 0.2153, 0.2986, 0.3134, 0.2354, 0.2509, 0.2375, 0.2596, 0.2891, 0.2016, 0.2541},
+      { 0.1984, 0.2012, 0.3104, 0.2408, 0.2938, 0.2249, 0.2562, 0.2511, 0.2593, 0.1748, 0.2207, 0.3231, 0.3260, 0.2745, 0.2873, 0.2659, 0.2830, 0.3111, 0.2098, 0.2683},
+      { 0.2320, 0.2002, 0.3122, 0.2579, 0.2836, 0.2461, 0.2511, 0.2897, 0.2704, 0.1864, 0.2350, 0.3067, 0.3307, 0.2473, 0.2532, 0.2493, 0.2771, 0.3009, 0.2067, 0.2835},
+      { 0.2293, 0.2263, 0.3091, 0.2661, 0.2794, 0.2344, 0.2593, 0.2704, 0.2769, 0.1724, 0.2335, 0.3333, 0.3560, 0.2685, 0.2830, 0.2937, 0.2999, 0.3089, 0.2258, 0.2552},
+      { 0.0937, 0.0585, 0.3779, 0.2052, 0.2233, 0.1651, 0.1748, 0.1864, 0.1724, 0.1455, 0.1538, 0.2529, 0.2449, 0.2046, 0.2009, 0.1897, 0.2308, 0.2359, 0.1435, 0.2448},
+      { 0.1858, 0.1682, 0.2842, 0.2038, 0.2783, 0.2153, 0.2207, 0.2350, 0.2335, 0.1538, 0.2251, 0.3489, 0.3648, 0.2239, 0.2500, 0.2434, 0.2782, 0.3150, 0.1905, 0.2393},
+      { 0.2905, 0.2987, 0.3781, 0.3304, 0.4003, 0.2986, 0.3231, 0.3067, 0.3333, 0.2529, 0.3489, 0.4271, 0.4698, 0.3684, 0.3834, 0.3899, 0.4007, 0.4434, 0.3001, 0.3683},
+      { 0.2746, 0.3174, 0.3977, 0.3114, 0.3973, 0.3134, 0.3260, 0.3307, 0.3560, 0.2449, 0.3648, 0.4698, 0.5465, 0.3772, 0.3928, 0.3968, 0.4474, 0.4801, 0.3026, 0.3889},
+      { 0.1842, 0.2147, 0.3155, 0.2542, 0.3038, 0.2354, 0.2745, 0.2473, 0.2685, 0.2046, 0.2239, 0.3684, 0.3772, 0.3433, 0.3524, 0.3339, 0.3292, 0.3672, 0.2593, 0.3039},
+      { 0.1951, 0.2233, 0.3230, 0.2602, 0.3178, 0.2509, 0.2873, 0.2532, 0.2830, 0.2009, 0.2500, 0.3834, 0.3928, 0.3524, 0.3691, 0.3559, 0.3431, 0.3857, 0.2689, 0.3565},
+      { 0.1985, 0.2298, 0.3354, 0.2630, 0.3161, 0.2375, 0.2659, 0.2493, 0.2937, 0.1897, 0.2434, 0.3899, 0.3968, 0.3339, 0.3559, 0.3591, 0.3449, 0.3845, 0.2557, 0.3086},
+      { 0.2137, 0.2108, 0.3432, 0.2454, 0.3148, 0.2596, 0.2830, 0.2771, 0.2999, 0.2308, 0.2782, 0.4007, 0.4474, 0.3292, 0.3431, 0.3449, 0.4009, 0.4046, 0.2622, 0.3620},
+      { 0.2228, 0.2360, 0.3541, 0.2803, 0.3585, 0.2891, 0.3111, 0.3009, 0.3089, 0.2359, 0.3150, 0.4434, 0.4801, 0.3672, 0.3857, 0.3845, 0.4046, 0.4604, 0.2850, 0.3748},
+      { 0.1529, 0.1664, 0.3184, 0.2181, 0.2428, 0.2016, 0.2098, 0.2067, 0.2258, 0.1435, 0.1905, 0.3001, 0.3026, 0.2593, 0.2689, 0.2557, 0.2622, 0.2850, 0.2275, 0.2419},
+      { 0.1960, 0.1760, 0.3643, 0.2269, 0.3138, 0.2541, 0.2683, 0.2835, 0.2552, 0.2448, 0.2393, 0.3683, 0.3889, 0.3039, 0.3565, 0.3086, 0.3620, 0.3748, 0.2419, 0.4858}},
+    {
+      { 0.1507, 0.1330, 0.3371, 0.3296, 0.2792, 0.2152, 0.2163, 0.2419, 0.2545, 0.1952, 0.1546, 0.2918, 0.2765, 0.2009, 0.2076, 0.2149, 0.2347, 0.2421, 0.2004, 0.2349},
+      { 0.1330, 0.1464, 0.3455, 0.3275, 0.2608, 0.2038, 0.2097, 0.2175, 0.2382, 0.1570, 0.1509, 0.2946, 0.3045, 0.2185, 0.2192, 0.2350, 0.2211, 0.2501, 0.2048, 0.2125},
+      { 0.3371, 0.3455, 0.2903, 0.2371, 0.3175, 0.3258, 0.3237, 0.3030, 0.3120, 0.2842, 0.4218, 0.3961, 0.4016, 0.3316, 0.3411, 0.3366, 0.3526, 0.3668, 0.3400, 0.3951},
+      { 0.3296, 0.3275, 0.2371, 0.2030, 0.2575, 0.2440, 0.2501, 0.2622, 0.2651, 0.2147, 0.2269, 0.3413, 0.3314, 0.2673, 0.2731, 0.2607, 0.2570, 0.2873, 0.2442, 0.2523},
+      { 0.2792, 0.2608, 0.3175, 0.2575, 0.3448, 0.2741, 0.3041, 0.2920, 0.2780, 0.2479, 0.2884, 0.3883, 0.4150, 0.3234, 0.3114, 0.3192, 0.3406, 0.3565, 0.2494, 0.3284},
+      { 0.2152, 0.2038, 0.3258, 0.2440, 0.2741, 0.2272, 0.2316, 0.2509, 0.2507, 0.2164, 0.2039, 0.2970, 0.2992, 0.2429, 0.2517, 0.2521, 0.2650, 0.2880, 0.2184, 0.2841},
+      { 0.2163, 0.2097, 0.3237, 0.2501, 0.3041, 0.2316, 0.2492, 0.2602, 0.2648, 0.2151, 0.2125, 0.3227, 0.3281, 0.2751, 0.2894, 0.2737, 0.2818, 0.3065, 0.2267, 0.2983},
+      { 0.2419, 0.2175, 0.3030, 0.2622, 0.2920, 0.2509, 0.2602, 0.2970, 0.2757, 0.2380, 0.2306, 0.3125, 0.3490, 0.2656, 0.2715, 0.2571, 0.3001, 0.3133, 0.2287, 0.2894},
+      { 0.2545, 0.2382, 0.3120, 0.2651, 0.2780, 0.2507, 0.2648, 0.2757, 0.2784, 0.2319, 0.2532, 0.3327, 0.3748, 0.2771, 0.2942, 0.2920, 0.2884, 0.3245, 0.2448, 0.2524},
+      { 0.1952, 0.1570, 0.2842, 0.2147, 0.2479, 0.2164, 0.2151, 0.2380, 0.2319, 0.2164, 0.2130, 0.2815, 0.3064, 0.2335, 0.2346, 0.2333, 0.2604, 0.2695, 0.2178, 0.2737},
+      { 0.1546, 0.1509, 0.4218, 0.2269, 0.2884, 0.2039, 0.2125, 0.2306, 0.2532, 0.2130, 0.2131, 0.3543, 0.3866, 0.2516, 0.2592, 0.2704, 0.3055, 0.3196, 0.2184, 0.3075},
+      { 0.2918, 0.2946, 0.3961, 0.3413, 0.3883, 0.2970, 0.3227, 0.3125, 0.3327, 0.2815, 0.3543, 0.4303, 0.4840, 0.3631, 0.3847, 0.3956, 0.4074, 0.4455, 0.3034, 0.3876},
+      { 0.2765, 0.3045, 0.4016, 0.3314, 0.4150, 0.2992, 0.3281, 0.3490, 0.3748, 0.3064, 0.3866, 0.4840, 0.5041, 0.3841, 0.3821, 0.3996, 0.4271, 0.4839, 0.3152, 0.4079},
+      { 0.2009, 0.2185, 0.3316, 0.2673, 0.3234, 0.2429, 0.2751, 0.2656, 0.2771, 0.2335, 0.2516, 0.3631, 0.3841, 0.3263, 0.3428, 0.3339, 0.3289, 0.3606, 0.2646, 0.3388},
+      { 0.2076, 0.2192, 0.3411, 0.2731, 0.3114, 0.2517, 0.2894, 0.2715, 0.2942, 0.2346, 0.2592, 0.3847, 0.3821, 0.3428, 0.3673, 0.3611, 0.3367, 0.3830, 0.2725, 0.3289},
+      { 0.2149, 0.2350, 0.3366, 0.2607, 0.3192, 0.2521, 0.2737, 0.2571, 0.2920, 0.2333, 0.2704, 0.3956, 0.3996, 0.3339, 0.3611, 0.3572, 0.3495, 0.3913, 0.2705, 0.3208},
+      { 0.2347, 0.2211, 0.3526, 0.2570, 0.3406, 0.2650, 0.2818, 0.3001, 0.2884, 0.2604, 0.3055, 0.4074, 0.4271, 0.3289, 0.3367, 0.3495, 0.3860, 0.4245, 0.2719, 0.3523},
+      { 0.2421, 0.2501, 0.3668, 0.2873, 0.3565, 0.2880, 0.3065, 0.3133, 0.3245, 0.2695, 0.3196, 0.4455, 0.4839, 0.3606, 0.3830, 0.3913, 0.4245, 0.4501, 0.2871, 0.3964},
+      { 0.2004, 0.2048, 0.3400, 0.2442, 0.2494, 0.2184, 0.2267, 0.2287, 0.2448, 0.2178, 0.2184, 0.3034, 0.3152, 0.2646, 0.2725, 0.2705, 0.2719, 0.2871, 0.2522, 0.2751},
+      { 0.2349, 0.2125, 0.3951, 0.2523, 0.3284, 0.2841, 0.2983, 0.2894, 0.2524, 0.2737, 0.3075, 0.3876, 0.4079, 0.3388, 0.3289, 0.3208, 0.3523, 0.3964, 0.2751, 0.4708}},
+    {
+      { 0.3009, 0.2785, 0.4630, 0.4386, 0.3894, 0.3673, 0.3599, 0.3714, 0.3665, 0.3356, 0.3358, 0.3093, 0.3601, 0.3124, 0.3084, 0.3132, 0.3281, 0.3018, 0.3248, 0.3481},
+      { 0.2785, 0.2927, 0.4654, 0.4598, 0.3746, 0.3510, 0.3656, 0.3514, 0.3725, 0.3020, 0.3162, 0.3154, 0.3973, 0.3450, 0.3509, 0.3467, 0.3481, 0.3319, 0.3340, 0.3372},
+      { 0.4630, 0.4654, 0.4072, 0.3361, 0.4791, 0.4095, 0.4205, 0.4359, 0.4376, 0.3781, 0.3961, 0.5909, 0.5530, 0.4106, 0.4213, 0.4265, 0.4518, 0.5191, 0.3831, 0.4389},
+      { 0.4386, 0.4598, 0.3361, 0.3096, 0.3743, 0.3699, 0.3747, 0.3784, 0.3827, 0.3259, 0.3173, 0.4349, 0.4495, 0.3670, 0.3725, 0.3717, 0.3730, 0.3973, 0.3531, 0.3707},
+      { 0.3894, 0.3746, 0.4791, 0.3743, 0.4523, 0.4042, 0.4160, 0.4020, 0.3855, 0.3583, 0.3798, 0.4470, 0.4965, 0.4162, 0.4175, 0.4248, 0.4485, 0.4544, 0.3663, 0.4609},
+      { 0.3673, 0.3510, 0.4095, 0.3699, 0.4042, 0.3761, 0.3860, 0.3910, 0.3888, 0.3626, 0.3510, 0.3419, 0.4169, 0.3717, 0.3689, 0.3637, 0.3912, 0.3848, 0.3504, 0.3997},
+      { 0.3599, 0.3656, 0.4205, 0.3747, 0.4160, 0.3860, 0.4309, 0.3963, 0.4043, 0.3512, 0.3595, 0.3690, 0.4374, 0.4209, 0.4145, 0.3968, 0.4093, 0.3955, 0.3610, 0.4168},
+      { 0.3714, 0.3514, 0.4359, 0.3784, 0.4020, 0.3910, 0.3963, 0.4149, 0.4006, 0.3705, 0.3697, 0.3512, 0.4321, 0.3591, 0.3618, 0.3556, 0.3913, 0.3732, 0.3589, 0.3887},
+      { 0.3665, 0.3725, 0.4376, 0.3827, 0.3855, 0.3888, 0.4043, 0.4006, 0.4047, 0.3512, 0.3687, 0.3924, 0.4648, 0.3776, 0.3918, 0.3972, 0.4166, 0.4094, 0.3675, 0.3928},
+      { 0.3356, 0.3020, 0.3781, 0.3259, 0.3583, 0.3626, 0.3512, 0.3705, 0.3512, 0.3583, 0.3571, 0.3309, 0.4021, 0.3401, 0.3452, 0.3442, 0.3744, 0.3467, 0.3441, 0.3754},
+      { 0.3358, 0.3162, 0.3961, 0.3173, 0.3798, 0.3510, 0.3595, 0.3697, 0.3687, 0.3571, 0.3762, 0.3718, 0.4523, 0.3480, 0.3509, 0.3589, 0.3979, 0.3868, 0.3512, 0.3774},
+      { 0.3093, 0.3154, 0.5909, 0.4349, 0.4470, 0.3419, 0.3690, 0.3512, 0.3924, 0.3309, 0.3718, 0.4753, 0.5055, 0.4393, 0.4654, 0.4497, 0.4746, 0.4950, 0.3407, 0.4734},
+      { 0.3601, 0.3973, 0.5530, 0.4495, 0.4965, 0.4169, 0.4374, 0.4321, 0.4648, 0.4021, 0.4523, 0.5055, 0.5684, 0.4916, 0.5149, 0.5080, 0.5726, 0.5570, 0.4107, 0.5463},
+      { 0.3124, 0.3450, 0.4106, 0.3670, 0.4162, 0.3717, 0.4209, 0.3591, 0.3776, 0.3401, 0.3480, 0.4393, 0.4916, 0.4835, 0.4825, 0.4641, 0.4673, 0.4678, 0.3921, 0.4791},
+      { 0.3084, 0.3509, 0.4213, 0.3725, 0.4175, 0.3689, 0.4145, 0.3618, 0.3918, 0.3452, 0.3509, 0.4654, 0.5149, 0.4825, 0.4997, 0.4847, 0.4838, 0.4917, 0.3912, 0.4805},
+      { 0.3132, 0.3467, 0.4265, 0.3717, 0.4248, 0.3637, 0.3968, 0.3556, 0.3972, 0.3442, 0.3589, 0.4497, 0.5080, 0.4641, 0.4847, 0.4883, 0.4749, 0.4768, 0.3947, 0.4622},
+      { 0.3281, 0.3481, 0.4518, 0.3730, 0.4485, 0.3912, 0.4093, 0.3913, 0.4166, 0.3744, 0.3979, 0.4746, 0.5726, 0.4673, 0.4838, 0.4749, 0.5171, 0.5210, 0.4065, 0.4873},
+      { 0.3018, 0.3319, 0.5191, 0.3973, 0.4544, 0.3848, 0.3955, 0.3732, 0.4094, 0.3467, 0.3868, 0.4950, 0.5570, 0.4678, 0.4917, 0.4768, 0.5210, 0.5256, 0.3843, 0.5011},
+      { 0.3248, 0.3340, 0.3831, 0.3531, 0.3663, 0.3504, 0.3610, 0.3589, 0.3675, 0.3441, 0.3512, 0.3407, 0.4107, 0.3921, 0.3912, 0.3947, 0.4065, 0.3843, 0.3893, 0.3844},
+      { 0.3481, 0.3372, 0.4389, 0.3707, 0.4609, 0.3997, 0.4168, 0.3887, 0.3928, 0.3754, 0.3774, 0.4734, 0.5463, 0.4791, 0.4805, 0.4622, 0.4873, 0.5011, 0.3844, 0.6174}},
+    {
+      { 0.2986, 0.2802, 0.4740, 0.4441, 0.4084, 0.3589, 0.3577, 0.3675, 0.3805, 0.3228, 0.3395, 0.3808, 0.2757, 0.3224, 0.3181, 0.3041, 0.3330, 0.3059, 0.3210, 0.3294},
+      { 0.2802, 0.2822, 0.4926, 0.4687, 0.3866, 0.3541, 0.3745, 0.3489, 0.3714, 0.3053, 0.3271, 0.3960, 0.3274, 0.3559, 0.3553, 0.3567, 0.3589, 0.3464, 0.3365, 0.3374},
+      { 0.4740, 0.4926, 0.4169, 0.3457, 0.5088, 0.4327, 0.4372, 0.4407, 0.4537, 0.3977, 0.4016, 0.5530, 0.6133, 0.4148, 0.4279, 0.4222, 0.4616, 0.5255, 0.3950, 0.4441},
+      { 0.4441, 0.4687, 0.3457, 0.3050, 0.3986, 0.3704, 0.3780, 0.3774, 0.3909, 0.3187, 0.3175, 0.4654, 0.4422, 0.3632, 0.3724, 0.3722, 0.3605, 0.4161, 0.3442, 0.3802},
+      { 0.4084, 0.3866, 0.5088, 0.3986, 0.6646, 0.4249, 0.4332, 0.3961, 0.3901, 0.3621, 0.4039, 0.4940, 0.4732, 0.4287, 0.4387, 0.4287, 0.4586, 0.4733, 0.3878, 0.4303},
+      { 0.3589, 0.3541, 0.4327, 0.3704, 0.4249, 0.3848, 0.3968, 0.3980, 0.3937, 0.3707, 0.3649, 0.4093, 0.3653, 0.3728, 0.3677, 0.3638, 0.3909, 0.3946, 0.3534, 0.3859},
+      { 0.3577, 0.3745, 0.4372, 0.3780, 0.4332, 0.3968, 0.4583, 0.4104, 0.4080, 0.3648, 0.3649, 0.4387, 0.3877, 0.4287, 0.4279, 0.4051, 0.4183, 0.4189, 0.3769, 0.4285},
+      { 0.3675, 0.3489, 0.4407, 0.3774, 0.3961, 0.3980, 0.4104, 0.4270, 0.4074, 0.3745, 0.3584, 0.4289, 0.3461, 0.3626, 0.3744, 0.3583, 0.3889, 0.3863, 0.3433, 0.3913},
+      { 0.3805, 0.3714, 0.4537, 0.3909, 0.3901, 0.3937, 0.4080, 0.4074, 0.4134, 0.3475, 0.3855, 0.4475, 0.4316, 0.3930, 0.3893, 0.3918, 0.4249, 0.4360, 0.3808, 0.4072},
+      { 0.3228, 0.3053, 0.3977, 0.3187, 0.3621, 0.3707, 0.3648, 0.3745, 0.3475, 0.3471, 0.3339, 0.3886, 0.3174, 0.3458, 0.3502, 0.3437, 0.3828, 0.3495, 0.3485, 0.3908},
+      { 0.3395, 0.3271, 0.4016, 0.3175, 0.4039, 0.3649, 0.3649, 0.3584, 0.3855, 0.3339, 0.3951, 0.4342, 0.3824, 0.3630, 0.3554, 0.3676, 0.4053, 0.3964, 0.3606, 0.3901},
+      { 0.3808, 0.3960, 0.5530, 0.4654, 0.4940, 0.4093, 0.4387, 0.4289, 0.4475, 0.3886, 0.4342, 0.5240, 0.5262, 0.5016, 0.5156, 0.5097, 0.5397, 0.5480, 0.4133, 0.5308},
+      { 0.2757, 0.3274, 0.6133, 0.4422, 0.4732, 0.3653, 0.3877, 0.3461, 0.4316, 0.3174, 0.3824, 0.5262, 0.5374, 0.4501, 0.4866, 0.4712, 0.5301, 0.5164, 0.3671, 0.5222},
+      { 0.3224, 0.3559, 0.4148, 0.3632, 0.4287, 0.3728, 0.4287, 0.3626, 0.3930, 0.3458, 0.3630, 0.5016, 0.4501, 0.4922, 0.4929, 0.4733, 0.4748, 0.4892, 0.3999, 0.4700},
+      { 0.3181, 0.3553, 0.4279, 0.3724, 0.4387, 0.3677, 0.4279, 0.3744, 0.3893, 0.3502, 0.3554, 0.5156, 0.4866, 0.4929, 0.5198, 0.5072, 0.4917, 0.5081, 0.4048, 0.4721},
+      { 0.3041, 0.3567, 0.4222, 0.3722, 0.4287, 0.3638, 0.4051, 0.3583, 0.3918, 0.3437, 0.3676, 0.5097, 0.4712, 0.4733, 0.5072, 0.5048, 0.4829, 0.5035, 0.4034, 0.4945},
+      { 0.3330, 0.3589, 0.4616, 0.3605, 0.4586, 0.3909, 0.4183, 0.3889, 0.4249, 0.3828, 0.4053, 0.5397, 0.5301, 0.4748, 0.4917, 0.4829, 0.5235, 0.5507, 0.4144, 0.5126},
+      { 0.3059, 0.3464, 0.5255, 0.4161, 0.4733, 0.3946, 0.4189, 0.3863, 0.4360, 0.3495, 0.3964, 0.5480, 0.5164, 0.4892, 0.5081, 0.5035, 0.5507, 0.5454, 0.4103, 0.5360},
+      { 0.3210, 0.3365, 0.3950, 0.3442, 0.3878, 0.3534, 0.3769, 0.3433, 0.3808, 0.3485, 0.3606, 0.4133, 0.3671, 0.3999, 0.4048, 0.4034, 0.4144, 0.4103, 0.3953, 0.4101},
+      { 0.3294, 0.3374, 0.4441, 0.3802, 0.4303, 0.3859, 0.4285, 0.3913, 0.4072, 0.3908, 0.3901, 0.5308, 0.5222, 0.4700, 0.4721, 0.4945, 0.5126, 0.5360, 0.4101, 0.6264}},
+    {
+      { 0.1987, 0.1954, 0.4045, 0.3889, 0.3581, 0.2641, 0.2544, 0.2918, 0.3039, 0.2259, 0.2342, 0.3278, 0.3152, 0.1539, 0.1634, 0.1947, 0.2091, 0.2202, 0.2038, 0.2025},
+      { 0.1954, 0.2163, 0.4333, 0.4224, 0.3418, 0.2687, 0.2798, 0.2820, 0.3041, 0.2106, 0.2310, 0.3455, 0.3571, 0.2182, 0.2212, 0.2381, 0.2412, 0.2579, 0.2318, 0.2183},
+      { 0.4045, 0.4333, 0.3323, 0.2743, 0.3560, 0.3623, 0.3951, 0.3640, 0.3691, 0.3155, 0.3316, 0.4106, 0.4148, 0.3991, 0.3868, 0.3607, 0.3911, 0.3754, 0.3355, 0.3919},
+      { 0.3889, 0.4224, 0.2743, 0.2554, 0.3217, 0.3027, 0.3226, 0.3062, 0.3334, 0.2556, 0.2480, 0.3928, 0.3695, 0.2937, 0.2979, 0.2941, 0.2877, 0.3146, 0.2780, 0.2804},
+      { 0.3581, 0.3418, 0.3560, 0.3217, 0.4111, 0.3645, 0.3769, 0.3262, 0.3393, 0.2896, 0.3033, 0.4367, 0.4294, 0.3210, 0.3289, 0.3345, 0.3493, 0.3734, 0.3004, 0.3519},
+      { 0.2641, 0.2687, 0.3623, 0.3027, 0.3645, 0.2866, 0.3014, 0.3093, 0.3051, 0.2558, 0.2564, 0.3491, 0.3511, 0.2536, 0.2542, 0.2620, 0.2815, 0.3066, 0.2580, 0.2823},
+      { 0.2544, 0.2798, 0.3951, 0.3226, 0.3769, 0.3014, 0.3550, 0.3181, 0.3259, 0.2530, 0.2568, 0.3730, 0.3714, 0.3244, 0.3285, 0.3154, 0.3113, 0.3420, 0.2815, 0.3305},
+      { 0.2918, 0.2820, 0.3640, 0.3062, 0.3262, 0.3093, 0.3181, 0.3550, 0.3262, 0.2750, 0.2762, 0.3525, 0.3618, 0.2392, 0.2431, 0.2511, 0.2748, 0.3032, 0.2564, 0.2829},
+      { 0.3039, 0.3041, 0.3691, 0.3334, 0.3393, 0.3051, 0.3259, 0.3262, 0.3336, 0.2728, 0.2892, 0.3665, 0.3960, 0.2763, 0.2797, 0.2931, 0.3027, 0.3187, 0.2707, 0.2819},
+      { 0.2259, 0.2106, 0.3155, 0.2556, 0.2896, 0.2558, 0.2530, 0.2750, 0.2728, 0.2419, 0.2408, 0.3273, 0.3395, 0.1904, 0.2032, 0.2264, 0.2620, 0.2785, 0.2311, 0.2699},
+      { 0.2342, 0.2310, 0.3316, 0.2480, 0.3033, 0.2564, 0.2568, 0.2762, 0.2892, 0.2408, 0.2786, 0.3604, 0.3870, 0.1929, 0.2081, 0.2350, 0.2675, 0.2987, 0.2391, 0.2626},
+      { 0.3278, 0.3455, 0.4106, 0.3928, 0.4367, 0.3491, 0.3730, 0.3525, 0.3665, 0.3273, 0.3604, 0.4533, 0.4888, 0.3721, 0.3970, 0.4110, 0.4222, 0.4613, 0.3442, 0.4187},
+      { 0.3152, 0.3571, 0.4148, 0.3695, 0.4294, 0.3511, 0.3714, 0.3618, 0.3960, 0.3395, 0.3870, 0.4888, 0.5374, 0.3685, 0.3989, 0.4260, 0.4396, 0.4855, 0.3344, 0.4235},
+      { 0.1539, 0.2182, 0.3991, 0.2937, 0.3210, 0.2536, 0.3244, 0.2392, 0.2763, 0.1904, 0.1929, 0.3721, 0.3685, 0.3931, 0.3880, 0.3568, 0.3360, 0.3735, 0.2683, 0.3760},
+      { 0.1634, 0.2212, 0.3868, 0.2979, 0.3289, 0.2542, 0.3285, 0.2431, 0.2797, 0.2032, 0.2081, 0.3970, 0.3989, 0.3880, 0.4022, 0.3747, 0.3516, 0.3944, 0.2805, 0.3776},
+      { 0.1947, 0.2381, 0.3607, 0.2941, 0.3345, 0.2620, 0.3154, 0.2511, 0.2931, 0.2264, 0.2350, 0.4110, 0.4260, 0.3568, 0.3747, 0.3815, 0.3608, 0.4058, 0.2931, 0.3608},
+      { 0.2091, 0.2412, 0.3911, 0.2877, 0.3493, 0.2815, 0.3113, 0.2748, 0.3027, 0.2620, 0.2675, 0.4222, 0.4396, 0.3360, 0.3516, 0.3608, 0.4002, 0.4268, 0.2953, 0.3795},
+      { 0.2202, 0.2579, 0.3754, 0.3146, 0.3734, 0.3066, 0.3420, 0.3032, 0.3187, 0.2785, 0.2987, 0.4613, 0.4855, 0.3735, 0.3944, 0.4058, 0.4268, 0.4684, 0.3170, 0.4106},
+      { 0.2038, 0.2318, 0.3355, 0.2780, 0.3004, 0.2580, 0.2815, 0.2564, 0.2707, 0.2311, 0.2391, 0.3442, 0.3344, 0.2683, 0.2805, 0.2931, 0.2953, 0.3170, 0.2934, 0.3003},
+      { 0.2025, 0.2183, 0.3919, 0.2804, 0.3519, 0.2823, 0.3305, 0.2829, 0.2819, 0.2699, 0.2626, 0.4187, 0.4235, 0.3760, 0.3776, 0.3608, 0.3795, 0.4106, 0.3003, 0.4873}},
+    {
+      { 0.2281, 0.2261, 0.4204, 0.4123, 0.3559, 0.2915, 0.2746, 0.3060, 0.3288, 0.2424, 0.2419, 0.3417, 0.3309, 0.1669, 0.1485, 0.1921, 0.2074, 0.2248, 0.2218, 0.2165},
+      { 0.2261, 0.2473, 0.4431, 0.4371, 0.3610, 0.2856, 0.2917, 0.3032, 0.3268, 0.2241, 0.2451, 0.3584, 0.3670, 0.2250, 0.2030, 0.2411, 0.2448, 0.2644, 0.2555, 0.2347},
+      { 0.4204, 0.4431, 0.3440, 0.2912, 0.3737, 0.3688, 0.3948, 0.3840, 0.3895, 0.3230, 0.3411, 0.4213, 0.4279, 0.3868, 0.4221, 0.3878, 0.4092, 0.3917, 0.3385, 0.3938},
+      { 0.4123, 0.4371, 0.2912, 0.2779, 0.3320, 0.3193, 0.3358, 0.3329, 0.3508, 0.2620, 0.2707, 0.4045, 0.3846, 0.3037, 0.2956, 0.3060, 0.2977, 0.3252, 0.2942, 0.3009},
+      { 0.3559, 0.3610, 0.3737, 0.3320, 0.4291, 0.3732, 0.3896, 0.3420, 0.3592, 0.3024, 0.3085, 0.4355, 0.4421, 0.3415, 0.3223, 0.3399, 0.3641, 0.3836, 0.3196, 0.3703},
+      { 0.2915, 0.2856, 0.3688, 0.3193, 0.3732, 0.3075, 0.3151, 0.3222, 0.3297, 0.2757, 0.2680, 0.3579, 0.3615, 0.2682, 0.2412, 0.2627, 0.2793, 0.3138, 0.2753, 0.2998},
+      { 0.2746, 0.2917, 0.3948, 0.3358, 0.3896, 0.3151, 0.3587, 0.3359, 0.3390, 0.2720, 0.2686, 0.3857, 0.3873, 0.3361, 0.3189, 0.3171, 0.3178, 0.3463, 0.2969, 0.3407},
+      { 0.3060, 0.3032, 0.3840, 0.3329, 0.3420, 0.3222, 0.3359, 0.3626, 0.3491, 0.2854, 0.2775, 0.3619, 0.3718, 0.2523, 0.2337, 0.2564, 0.2894, 0.3152, 0.2744, 0.2825},
+      { 0.3288, 0.3268, 0.3895, 0.3508, 0.3592, 0.3297, 0.3390, 0.3491, 0.3626, 0.2882, 0.3065, 0.3765, 0.4145, 0.2916, 0.2723, 0.3042, 0.3099, 0.3291, 0.2919, 0.2961},
+      { 0.2424, 0.2241, 0.3230, 0.2620, 0.3024, 0.2757, 0.2720, 0.2854, 0.2882, 0.2617, 0.2522, 0.3318, 0.3490, 0.2049, 0.1817, 0.2306, 0.2598, 0.2788, 0.2520, 0.2629},
+      { 0.2419, 0.2451, 0.3411, 0.2707, 0.3085, 0.2680, 0.2686, 0.2775, 0.3065, 0.2522, 0.2878, 0.3661, 0.3910, 0.2139, 0.1871, 0.2357, 0.2672, 0.3028, 0.2586, 0.2827},
+      { 0.3417, 0.3584, 0.4213, 0.4045, 0.4355, 0.3579, 0.3857, 0.3619, 0.3765, 0.3318, 0.3661, 0.4645, 0.4988, 0.4022, 0.3868, 0.4174, 0.4298, 0.4705, 0.3610, 0.4445},
+      { 0.3309, 0.3670, 0.4279, 0.3846, 0.4421, 0.3615, 0.3873, 0.3718, 0.4145, 0.3490, 0.3910, 0.4988, 0.5170, 0.3986, 0.3870, 0.4244, 0.4511, 0.4934, 0.3509, 0.4635},
+      { 0.1669, 0.2250, 0.3868, 0.3037, 0.3415, 0.2682, 0.3361, 0.2523, 0.2916, 0.2049, 0.2139, 0.4022, 0.3986, 0.4154, 0.3861, 0.3808, 0.3617, 0.4008, 0.2921, 0.3965},
+      { 0.1485, 0.2030, 0.4221, 0.2956, 0.3223, 0.2412, 0.3189, 0.2337, 0.2723, 0.1817, 0.1871, 0.3868, 0.3870, 0.3861, 0.3906, 0.3779, 0.3586, 0.3927, 0.2680, 0.3775},
+      { 0.1921, 0.2411, 0.3878, 0.3060, 0.3399, 0.2627, 0.3171, 0.2564, 0.3042, 0.2306, 0.2357, 0.4174, 0.4244, 0.3808, 0.3779, 0.3969, 0.3802, 0.4217, 0.3035, 0.3734},
+      { 0.2074, 0.2448, 0.4092, 0.2977, 0.3641, 0.2793, 0.3178, 0.2894, 0.3099, 0.2598, 0.2672, 0.4298, 0.4511, 0.3617, 0.3586, 0.3802, 0.4272, 0.4433, 0.3048, 0.3897},
+      { 0.2248, 0.2644, 0.3917, 0.3252, 0.3836, 0.3138, 0.3463, 0.3152, 0.3291, 0.2788, 0.3028, 0.4705, 0.4934, 0.4008, 0.3927, 0.4217, 0.4433, 0.4781, 0.3322, 0.4285},
+      { 0.2218, 0.2555, 0.3385, 0.2942, 0.3196, 0.2753, 0.2969, 0.2744, 0.2919, 0.2520, 0.2586, 0.3610, 0.3509, 0.2921, 0.2680, 0.3035, 0.3048, 0.3322, 0.3223, 0.3188},
+      { 0.2165, 0.2347, 0.3938, 0.3009, 0.3703, 0.2998, 0.3407, 0.2825, 0.2961, 0.2629, 0.2827, 0.4445, 0.4635, 0.3965, 0.3775, 0.3734, 0.3897, 0.4285, 0.3188, 0.5167}},
+    {
+      { 0.2454, 0.2414, 0.4272, 0.4204, 0.3590, 0.2969, 0.2725, 0.3080, 0.3405, 0.2489, 0.2410, 0.3362, 0.3145, 0.1927, 0.1823, 0.1702, 0.2106, 0.2098, 0.2410, 0.2273},
+      { 0.2414, 0.2569, 0.4411, 0.4373, 0.3638, 0.2920, 0.2844, 0.3113, 0.3350, 0.2334, 0.2455, 0.3585, 0.3570, 0.2409, 0.2390, 0.2231, 0.2467, 0.2551, 0.2657, 0.2390},
+      { 0.4272, 0.4411, 0.3478, 0.2940, 0.3758, 0.3619, 0.3797, 0.3824, 0.3869, 0.3354, 0.3366, 0.4265, 0.4222, 0.3607, 0.3878, 0.4238, 0.4238, 0.3955, 0.3365, 0.3879},
+      { 0.4204, 0.4373, 0.2940, 0.2713, 0.3325, 0.3173, 0.3240, 0.3429, 0.3531, 0.2668, 0.2612, 0.4038, 0.3788, 0.3052, 0.3093, 0.3021, 0.3074, 0.3239, 0.2955, 0.2960},
+      { 0.3590, 0.3638, 0.3758, 0.3325, 0.4123, 0.3606, 0.3748, 0.3373, 0.3596, 0.3054, 0.3134, 0.4379, 0.4326, 0.3482, 0.3394, 0.3313, 0.3649, 0.3699, 0.3243, 0.3665},
+      { 0.2969, 0.2920, 0.3619, 0.3173, 0.3606, 0.3076, 0.3011, 0.3228, 0.3257, 0.2794, 0.2683, 0.3458, 0.3563, 0.2762, 0.2645, 0.2501, 0.2756, 0.3011, 0.2813, 0.2905},
+      { 0.2725, 0.2844, 0.3797, 0.3240, 0.3748, 0.3011, 0.3359, 0.3306, 0.3342, 0.2717, 0.2696, 0.3739, 0.3823, 0.3335, 0.3248, 0.2945, 0.3088, 0.3313, 0.2922, 0.3285},
+      { 0.3080, 0.3113, 0.3824, 0.3429, 0.3373, 0.3228, 0.3306, 0.3684, 0.3591, 0.2973, 0.2842, 0.3537, 0.3694, 0.2780, 0.2701, 0.2419, 0.2784, 0.3063, 0.2871, 0.2912},
+      { 0.3405, 0.3350, 0.3869, 0.3531, 0.3596, 0.3257, 0.3342, 0.3591, 0.3702, 0.2884, 0.3063, 0.3821, 0.4138, 0.2970, 0.2962, 0.2978, 0.3169, 0.3265, 0.3015, 0.3058},
+      { 0.2489, 0.2334, 0.3354, 0.2668, 0.3054, 0.2794, 0.2717, 0.2973, 0.2884, 0.2642, 0.2508, 0.3316, 0.3473, 0.2343, 0.2293, 0.2241, 0.2743, 0.2784, 0.2726, 0.2949},
+      { 0.2410, 0.2455, 0.3366, 0.2612, 0.3134, 0.2683, 0.2696, 0.2842, 0.3063, 0.2508, 0.2676, 0.3690, 0.3848, 0.2385, 0.2334, 0.2131, 0.2679, 0.3022, 0.2681, 0.2835},
+      { 0.3362, 0.3585, 0.4265, 0.4038, 0.4379, 0.3458, 0.3739, 0.3537, 0.3821, 0.3316, 0.3690, 0.4553, 0.4951, 0.4132, 0.4203, 0.4104, 0.4413, 0.4703, 0.3569, 0.4267},
+      { 0.3145, 0.3570, 0.4222, 0.3788, 0.4326, 0.3563, 0.3823, 0.3694, 0.4138, 0.3473, 0.3848, 0.4951, 0.5162, 0.4147, 0.4315, 0.4172, 0.4692, 0.5036, 0.3586, 0.4554},
+      { 0.1927, 0.2409, 0.3607, 0.3052, 0.3482, 0.2762, 0.3335, 0.2780, 0.2970, 0.2343, 0.2385, 0.4132, 0.4147, 0.4167, 0.4081, 0.3784, 0.3716, 0.4100, 0.3123, 0.3992},
+      { 0.1823, 0.2390, 0.3878, 0.3093, 0.3394, 0.2645, 0.3248, 0.2701, 0.2962, 0.2293, 0.2334, 0.4203, 0.4315, 0.4081, 0.4270, 0.4018, 0.3936, 0.4237, 0.3093, 0.4005},
+      { 0.1702, 0.2231, 0.4238, 0.3021, 0.3313, 0.2501, 0.2945, 0.2419, 0.2978, 0.2241, 0.2131, 0.4104, 0.4172, 0.3784, 0.4018, 0.3898, 0.3728, 0.4104, 0.2919, 0.3701},
+      { 0.2106, 0.2467, 0.4238, 0.3074, 0.3649, 0.2756, 0.3088, 0.2784, 0.3169, 0.2743, 0.2679, 0.4413, 0.4692, 0.3716, 0.3936, 0.3728, 0.4193, 0.4430, 0.3088, 0.3896},
+      { 0.2098, 0.2551, 0.3955, 0.3239, 0.3699, 0.3011, 0.3313, 0.3063, 0.3265, 0.2784, 0.3022, 0.4703, 0.5036, 0.4100, 0.4237, 0.4104, 0.4430, 0.4759, 0.3251, 0.4254},
+      { 0.2410, 0.2657, 0.3365, 0.2955, 0.3243, 0.2813, 0.2922, 0.2871, 0.3015, 0.2726, 0.2681, 0.3569, 0.3586, 0.3123, 0.3093, 0.2919, 0.3088, 0.3251, 0.3371, 0.3223},
+      { 0.2273, 0.2390, 0.3879, 0.2960, 0.3665, 0.2905, 0.3285, 0.2912, 0.3058, 0.2949, 0.2835, 0.4267, 0.4554, 0.3992, 0.4005, 0.3701, 0.3896, 0.4254, 0.3223, 0.4851}},
+    {
+      { 0.2326, 0.2121, 0.4281, 0.4112, 0.3471, 0.2780, 0.2493, 0.3146, 0.3114, 0.2389, 0.2479, 0.3341, 0.3076, 0.1931, 0.1871, 0.1872, 0.1567, 0.2211, 0.2143, 0.2001},
+      { 0.2121, 0.2241, 0.4429, 0.4165, 0.3486, 0.2612, 0.2533, 0.2880, 0.3023, 0.2118, 0.2252, 0.3514, 0.3517, 0.2254, 0.2266, 0.2295, 0.1647, 0.2417, 0.2321, 0.2066},
+      { 0.4281, 0.4429, 0.3616, 0.2988, 0.3982, 0.3825, 0.3980, 0.3875, 0.4266, 0.3432, 0.3526, 0.4518, 0.4616, 0.3911, 0.4092, 0.4238, 0.4782, 0.4428, 0.3504, 0.4649},
+      { 0.4112, 0.4165, 0.2988, 0.2575, 0.3164, 0.3055, 0.3047, 0.3152, 0.3368, 0.2632, 0.2583, 0.3883, 0.3850, 0.2965, 0.2960, 0.3016, 0.2729, 0.3215, 0.2839, 0.2949},
+      { 0.3471, 0.3486, 0.3982, 0.3164, 0.4089, 0.3488, 0.3665, 0.3350, 0.3591, 0.2990, 0.3064, 0.4467, 0.4287, 0.3586, 0.3477, 0.3529, 0.3341, 0.3845, 0.3053, 0.3686},
+      { 0.2780, 0.2612, 0.3825, 0.3055, 0.3488, 0.2824, 0.2907, 0.3194, 0.3144, 0.2692, 0.2724, 0.3457, 0.3591, 0.2767, 0.2739, 0.2724, 0.2538, 0.3150, 0.2603, 0.2865},
+      { 0.2493, 0.2533, 0.3980, 0.3047, 0.3665, 0.2907, 0.3198, 0.3162, 0.3231, 0.2509, 0.2618, 0.3756, 0.4030, 0.3293, 0.3251, 0.3044, 0.2582, 0.3448, 0.2701, 0.3261},
+      { 0.3146, 0.2880, 0.3875, 0.3152, 0.3350, 0.3194, 0.3162, 0.3611, 0.3436, 0.2889, 0.2899, 0.3602, 0.4031, 0.2824, 0.2743, 0.2606, 0.2403, 0.3164, 0.2738, 0.3007},
+      { 0.3114, 0.3023, 0.4266, 0.3368, 0.3591, 0.3144, 0.3231, 0.3436, 0.3461, 0.2850, 0.2850, 0.3826, 0.4018, 0.3017, 0.2979, 0.3079, 0.2607, 0.3315, 0.2881, 0.3009},
+      { 0.2389, 0.2118, 0.3432, 0.2632, 0.2990, 0.2692, 0.2509, 0.2889, 0.2850, 0.2737, 0.2378, 0.3359, 0.3577, 0.2492, 0.2401, 0.2534, 0.2442, 0.3074, 0.2565, 0.2932},
+      { 0.2479, 0.2252, 0.3526, 0.2583, 0.3064, 0.2724, 0.2618, 0.2899, 0.2850, 0.2378, 0.2809, 0.3793, 0.3953, 0.2428, 0.2454, 0.2493, 0.2098, 0.3064, 0.2450, 0.2743},
+      { 0.3341, 0.3514, 0.4518, 0.3883, 0.4467, 0.3457, 0.3756, 0.3602, 0.3826, 0.3359, 0.3793, 0.4714, 0.5133, 0.4145, 0.4300, 0.4341, 0.4005, 0.4844, 0.3519, 0.4280},
+      { 0.3076, 0.3517, 0.4616, 0.3850, 0.4287, 0.3591, 0.4030, 0.4031, 0.4018, 0.3577, 0.3953, 0.5133, 0.5492, 0.4405, 0.4521, 0.4399, 0.4354, 0.5051, 0.3556, 0.4751},
+      { 0.1931, 0.2254, 0.3911, 0.2965, 0.3586, 0.2767, 0.3293, 0.2824, 0.3017, 0.2492, 0.2428, 0.4145, 0.4405, 0.4051, 0.4024, 0.3826, 0.3326, 0.4135, 0.3004, 0.3909},
+      { 0.1871, 0.2266, 0.4092, 0.2960, 0.3477, 0.2739, 0.3251, 0.2743, 0.2979, 0.2401, 0.2454, 0.4300, 0.4521, 0.4024, 0.4186, 0.4022, 0.3528, 0.4236, 0.3055, 0.4023},
+      { 0.1872, 0.2295, 0.4238, 0.3016, 0.3529, 0.2724, 0.3044, 0.2606, 0.3079, 0.2534, 0.2493, 0.4341, 0.4399, 0.3826, 0.4022, 0.3973, 0.3434, 0.4233, 0.3011, 0.3721},
+      { 0.1567, 0.1647, 0.4782, 0.2729, 0.3341, 0.2538, 0.2582, 0.2403, 0.2607, 0.2442, 0.2098, 0.4005, 0.4354, 0.3326, 0.3528, 0.3434, 0.3592, 0.4136, 0.2422, 0.3703},
+      { 0.2211, 0.2417, 0.4428, 0.3215, 0.3845, 0.3150, 0.3448, 0.3164, 0.3315, 0.3074, 0.3064, 0.4844, 0.5051, 0.4135, 0.4236, 0.4233, 0.4136, 0.4902, 0.3226, 0.4403},
+      { 0.2143, 0.2321, 0.3504, 0.2839, 0.3053, 0.2603, 0.2701, 0.2738, 0.2881, 0.2565, 0.2450, 0.3519, 0.3556, 0.3004, 0.3055, 0.3011, 0.2422, 0.3226, 0.3008, 0.3024},
+      { 0.2001, 0.2066, 0.4649, 0.2949, 0.3686, 0.2865, 0.3261, 0.3007, 0.3009, 0.2932, 0.2743, 0.4280, 0.4751, 0.3909, 0.4023, 0.3721, 0.3703, 0.4403, 0.3024, 0.4879}},
+    {
+      { 0.2553, 0.2425, 0.4432, 0.4183, 0.3672, 0.3164, 0.2991, 0.3397, 0.3343, 0.2849, 0.2804, 0.3352, 0.3207, 0.2394, 0.2282, 0.2237, 0.2556, 0.1937, 0.2655, 0.2658},
+      { 0.2425, 0.2559, 0.4460, 0.4291, 0.3573, 0.3020, 0.3089, 0.3118, 0.3280, 0.2477, 0.2686, 0.3398, 0.3509, 0.2701, 0.2630, 0.2555, 0.2722, 0.2315, 0.2718, 0.2624},
+      { 0.4432, 0.4460, 0.3735, 0.3136, 0.4491, 0.3890, 0.3915, 0.4138, 0.4084, 0.3541, 0.3668, 0.5191, 0.5255, 0.3754, 0.3917, 0.3955, 0.4428, 0.5173, 0.3563, 0.4194},
+      { 0.4183, 0.4291, 0.3136, 0.2839, 0.3476, 0.3276, 0.3335, 0.3484, 0.3509, 0.2854, 0.2886, 0.4200, 0.4078, 0.3125, 0.3179, 0.3163, 0.3224, 0.3435, 0.3035, 0.3245},
+      { 0.3672, 0.3573, 0.4491, 0.3476, 0.4304, 0.3827, 0.3875, 0.3598, 0.3594, 0.3236, 0.3447, 0.4607, 0.4590, 0.3798, 0.3700, 0.3646, 0.3898, 0.3821, 0.3398, 0.3932},
+      { 0.3164, 0.3020, 0.3890, 0.3276, 0.3827, 0.3372, 0.3370, 0.3504, 0.3429, 0.3121, 0.3131, 0.3545, 0.3751, 0.3107, 0.3052, 0.2969, 0.3283, 0.2960, 0.3048, 0.3309},
+      { 0.2991, 0.3089, 0.3915, 0.3335, 0.3875, 0.3370, 0.3679, 0.3564, 0.3646, 0.3015, 0.3116, 0.3860, 0.3991, 0.3694, 0.3653, 0.3368, 0.3512, 0.3240, 0.3189, 0.3552},
+      { 0.3397, 0.3118, 0.4138, 0.3484, 0.3598, 0.3504, 0.3564, 0.4007, 0.3671, 0.3225, 0.3281, 0.3743, 0.3874, 0.3127, 0.3022, 0.2848, 0.3289, 0.2952, 0.3124, 0.3308},
+      { 0.3343, 0.3280, 0.4084, 0.3509, 0.3594, 0.3429, 0.3646, 0.3671, 0.3729, 0.3190, 0.3264, 0.3901, 0.4184, 0.3242, 0.3226, 0.3224, 0.3488, 0.3324, 0.3168, 0.3385},
+      { 0.2849, 0.2477, 0.3541, 0.2854, 0.3236, 0.3121, 0.3015, 0.3225, 0.3190, 0.3164, 0.3012, 0.3270, 0.3533, 0.2698, 0.2669, 0.2773, 0.3162, 0.2512, 0.2866, 0.3031},
+      { 0.2804, 0.2686, 0.3668, 0.2886, 0.3447, 0.3131, 0.3116, 0.3281, 0.3264, 0.3012, 0.3011, 0.3810, 0.4160, 0.2837, 0.2809, 0.2840, 0.3172, 0.2820, 0.3063, 0.3214},
+      { 0.3352, 0.3398, 0.5191, 0.4200, 0.4607, 0.3545, 0.3860, 0.3743, 0.3901, 0.3270, 0.3810, 0.4597, 0.4973, 0.4349, 0.4496, 0.4438, 0.4690, 0.4451, 0.3539, 0.4578},
+      { 0.3207, 0.3509, 0.5255, 0.4078, 0.4590, 0.3751, 0.3991, 0.3874, 0.4184, 0.3533, 0.4160, 0.4973, 0.5228, 0.4462, 0.4655, 0.4519, 0.5182, 0.4783, 0.3782, 0.4933},
+      { 0.2394, 0.2701, 0.3754, 0.3125, 0.3798, 0.3107, 0.3694, 0.3127, 0.3242, 0.2698, 0.2837, 0.4349, 0.4462, 0.4398, 0.4371, 0.4237, 0.4154, 0.3968, 0.3434, 0.4238},
+      { 0.2282, 0.2630, 0.3917, 0.3179, 0.3700, 0.3052, 0.3653, 0.3022, 0.3226, 0.2669, 0.2809, 0.4496, 0.4655, 0.4371, 0.4564, 0.4409, 0.4327, 0.4168, 0.3477, 0.4313},
+      { 0.2237, 0.2555, 0.3955, 0.3163, 0.3646, 0.2969, 0.3368, 0.2848, 0.3224, 0.2773, 0.2840, 0.4438, 0.4519, 0.4237, 0.4409, 0.4350, 0.4251, 0.4088, 0.3407, 0.4179},
+      { 0.2556, 0.2722, 0.4428, 0.3224, 0.3898, 0.3283, 0.3512, 0.3289, 0.3488, 0.3162, 0.3172, 0.4690, 0.5182, 0.4154, 0.4327, 0.4251, 0.4628, 0.4537, 0.3434, 0.4432},
+      { 0.1937, 0.2315, 0.5173, 0.3435, 0.3821, 0.2960, 0.3240, 0.2952, 0.3324, 0.2512, 0.2820, 0.4451, 0.4783, 0.3968, 0.4168, 0.4088, 0.4537, 0.4457, 0.3055, 0.4348},
+      { 0.2655, 0.2718, 0.3563, 0.3035, 0.3398, 0.3048, 0.3189, 0.3124, 0.3168, 0.2866, 0.3063, 0.3539, 0.3782, 0.3434, 0.3477, 0.3407, 0.3434, 0.3055, 0.3381, 0.3400},
+      { 0.2658, 0.2624, 0.4194, 0.3245, 0.3932, 0.3309, 0.3552, 0.3308, 0.3385, 0.3031, 0.3214, 0.4578, 0.4933, 0.4238, 0.4313, 0.4179, 0.4432, 0.4348, 0.3400, 0.5407}},
+    {
+      { 0.1780, 0.1832, 0.3634, 0.3677, 0.3046, 0.2225, 0.2176, 0.2622, 0.3097, 0.1717, 0.1932, 0.2996, 0.2885, 0.1721, 0.1857, 0.1998, 0.2098, 0.2223, 0.1578, 0.1680},
+      { 0.1832, 0.2172, 0.3749, 0.3850, 0.3041, 0.2188, 0.2311, 0.2605, 0.3043, 0.1536, 0.1905, 0.3177, 0.3333, 0.2210, 0.2401, 0.2530, 0.2352, 0.2491, 0.1887, 0.1796},
+      { 0.3634, 0.3749, 0.2863, 0.2326, 0.3261, 0.3602, 0.3410, 0.3259, 0.3189, 0.3184, 0.3400, 0.3831, 0.3950, 0.3355, 0.3385, 0.3365, 0.3504, 0.3563, 0.3561, 0.3716},
+      { 0.3677, 0.3850, 0.2326, 0.2265, 0.2820, 0.2679, 0.2708, 0.2835, 0.2991, 0.2126, 0.2209, 0.3705, 0.3514, 0.2783, 0.2920, 0.2958, 0.2770, 0.3035, 0.2463, 0.2501},
+      { 0.3046, 0.3041, 0.3261, 0.2820, 0.3605, 0.3028, 0.3246, 0.3055, 0.3123, 0.2525, 0.2775, 0.4044, 0.4244, 0.3201, 0.3264, 0.3301, 0.3282, 0.3591, 0.2514, 0.3186},
+      { 0.2225, 0.2188, 0.3602, 0.2679, 0.3028, 0.2450, 0.2478, 0.2733, 0.2667, 0.2175, 0.2111, 0.3127, 0.3282, 0.2497, 0.2585, 0.2546, 0.2625, 0.2874, 0.2056, 0.2531},
+      { 0.2176, 0.2311, 0.3410, 0.2708, 0.3246, 0.2478, 0.2818, 0.2826, 0.2846, 0.2096, 0.2200, 0.3304, 0.3427, 0.2903, 0.3012, 0.2792, 0.2776, 0.3090, 0.2167, 0.2686},
+      { 0.2622, 0.2605, 0.3259, 0.2835, 0.3055, 0.2733, 0.2826, 0.3206, 0.3087, 0.2287, 0.2409, 0.3324, 0.3678, 0.2590, 0.2706, 0.2588, 0.2809, 0.3050, 0.2193, 0.2668},
+      { 0.3097, 0.3043, 0.3189, 0.2991, 0.3123, 0.2667, 0.2846, 0.3087, 0.3268, 0.2138, 0.2498, 0.3486, 0.3912, 0.2677, 0.2877, 0.3012, 0.2994, 0.3207, 0.2396, 0.2422},
+      { 0.1717, 0.1536, 0.3184, 0.2126, 0.2525, 0.2175, 0.2096, 0.2287, 0.2138, 0.1889, 0.1819, 0.3007, 0.2963, 0.2220, 0.2313, 0.2431, 0.2653, 0.2801, 0.1973, 0.2547},
+      { 0.1932, 0.1905, 0.3400, 0.2209, 0.2775, 0.2111, 0.2200, 0.2409, 0.2498, 0.1819, 0.2283, 0.3439, 0.3664, 0.2132, 0.2278, 0.2384, 0.2611, 0.2992, 0.1733, 0.2261},
+      { 0.2996, 0.3177, 0.3831, 0.3705, 0.4044, 0.3127, 0.3304, 0.3324, 0.3486, 0.3007, 0.3439, 0.4186, 0.4716, 0.3693, 0.3937, 0.3976, 0.4168, 0.4414, 0.2929, 0.3737},
+      { 0.2885, 0.3333, 0.3950, 0.3514, 0.4244, 0.3282, 0.3427, 0.3678, 0.3912, 0.2963, 0.3664, 0.4716, 0.4996, 0.3744, 0.3957, 0.3979, 0.4310, 0.4906, 0.2832, 0.4053},
+      { 0.1721, 0.2210, 0.3355, 0.2783, 0.3201, 0.2497, 0.2903, 0.2590, 0.2677, 0.2220, 0.2132, 0.3693, 0.3744, 0.3614, 0.3606, 0.3440, 0.3199, 0.3661, 0.2682, 0.3411},
+      { 0.1857, 0.2401, 0.3385, 0.2920, 0.3264, 0.2585, 0.3012, 0.2706, 0.2877, 0.2313, 0.2278, 0.3937, 0.3957, 0.3606, 0.3795, 0.3685, 0.3459, 0.3843, 0.2785, 0.3523},
+      { 0.1998, 0.2530, 0.3365, 0.2958, 0.3301, 0.2546, 0.2792, 0.2588, 0.3012, 0.2431, 0.2384, 0.3976, 0.3979, 0.3440, 0.3685, 0.3668, 0.3424, 0.3892, 0.2746, 0.3246},
+      { 0.2098, 0.2352, 0.3504, 0.2770, 0.3282, 0.2625, 0.2776, 0.2809, 0.2994, 0.2653, 0.2611, 0.4168, 0.4310, 0.3199, 0.3459, 0.3424, 0.3847, 0.4097, 0.2656, 0.3424},
+      { 0.2223, 0.2491, 0.3563, 0.3035, 0.3591, 0.2874, 0.3090, 0.3050, 0.3207, 0.2801, 0.2992, 0.4414, 0.4906, 0.3661, 0.3843, 0.3892, 0.4097, 0.4581, 0.2733, 0.3804},
+      { 0.1578, 0.1887, 0.3561, 0.2463, 0.2514, 0.2056, 0.2167, 0.2193, 0.2396, 0.1973, 0.1733, 0.2929, 0.2832, 0.2682, 0.2785, 0.2746, 0.2656, 0.2733, 0.2669, 0.2649},
+      { 0.1680, 0.1796, 0.3716, 0.2501, 0.3186, 0.2531, 0.2686, 0.2668, 0.2422, 0.2547, 0.2261, 0.3737, 0.4053, 0.3411, 0.3523, 0.3246, 0.3424, 0.3804, 0.2649, 0.4780}},
+    {
+      { 0.1676, 0.1543, 0.4371, 0.3866, 0.3864, 0.2468, 0.2393, 0.2855, 0.2810, 0.2205, 0.2247, 0.3386, 0.3159, 0.1962, 0.2032, 0.2134, 0.2389, 0.2371, 0.1737, 0.1341},
+      { 0.1543, 0.1780, 0.4429, 0.3918, 0.3319, 0.2100, 0.2194, 0.2407, 0.2777, 0.1754, 0.2083, 0.3377, 0.3380, 0.2212, 0.2258, 0.2316, 0.2420, 0.2512, 0.1744, 0.1169},
+      { 0.4371, 0.4429, 0.3603, 0.2810, 0.3941, 0.4272, 0.4255, 0.4099, 0.3910, 0.3643, 0.3951, 0.4389, 0.4441, 0.3919, 0.3938, 0.3879, 0.4649, 0.4194, 0.3716, 0.4733},
+      { 0.3866, 0.3918, 0.2810, 0.2429, 0.3204, 0.2865, 0.2937, 0.3247, 0.3200, 0.2424, 0.2565, 0.4030, 0.3768, 0.2988, 0.3020, 0.3017, 0.2913, 0.3260, 0.2649, 0.2587},
+      { 0.3864, 0.3319, 0.3941, 0.3204, 0.4080, 0.3486, 0.3633, 0.3356, 0.3396, 0.3131, 0.3159, 0.4431, 0.4395, 0.3506, 0.3569, 0.3416, 0.3637, 0.3895, 0.2932, 0.3258},
+      { 0.2468, 0.2100, 0.4272, 0.2865, 0.3486, 0.2735, 0.2839, 0.3106, 0.2854, 0.2509, 0.2609, 0.3563, 0.3809, 0.2896, 0.2792, 0.2778, 0.2958, 0.3212, 0.2330, 0.2590},
+      { 0.2393, 0.2194, 0.4255, 0.2937, 0.3633, 0.2839, 0.3256, 0.3060, 0.3015, 0.2534, 0.2555, 0.3621, 0.3745, 0.3290, 0.3317, 0.2971, 0.3040, 0.3405, 0.2630, 0.2679},
+      { 0.2855, 0.2407, 0.4099, 0.3247, 0.3356, 0.3106, 0.3060, 0.3815, 0.3371, 0.2928, 0.2629, 0.3708, 0.4009, 0.2810, 0.2989, 0.2715, 0.3055, 0.3243, 0.2591, 0.2567},
+      { 0.2810, 0.2777, 0.3910, 0.3200, 0.3396, 0.2854, 0.3015, 0.3371, 0.3370, 0.2488, 0.2897, 0.3566, 0.3985, 0.2940, 0.2935, 0.2990, 0.2975, 0.3281, 0.2471, 0.2497},
+      { 0.2205, 0.1754, 0.3643, 0.2424, 0.3131, 0.2509, 0.2534, 0.2928, 0.2488, 0.2316, 0.2610, 0.3258, 0.3559, 0.2586, 0.2695, 0.2621, 0.2868, 0.3092, 0.2400, 0.2550},
+      { 0.2247, 0.2083, 0.3951, 0.2565, 0.3159, 0.2609, 0.2555, 0.2629, 0.2897, 0.2610, 0.2740, 0.3764, 0.4050, 0.2506, 0.2658, 0.2632, 0.2996, 0.3064, 0.2301, 0.2024},
+      { 0.3386, 0.3377, 0.4389, 0.4030, 0.4431, 0.3563, 0.3621, 0.3708, 0.3566, 0.3258, 0.3764, 0.4541, 0.4902, 0.4002, 0.4182, 0.4152, 0.4175, 0.4663, 0.3351, 0.3203},
+      { 0.3159, 0.3380, 0.4441, 0.3768, 0.4395, 0.3809, 0.3745, 0.4009, 0.3985, 0.3559, 0.4050, 0.4902, 0.5010, 0.4084, 0.4306, 0.4230, 0.4578, 0.4966, 0.3346, 0.3892},
+      { 0.1962, 0.2212, 0.3919, 0.2988, 0.3506, 0.2896, 0.3290, 0.2810, 0.2940, 0.2586, 0.2506, 0.4002, 0.4084, 0.3973, 0.3961, 0.3696, 0.3566, 0.4065, 0.3004, 0.3079},
+      { 0.2032, 0.2258, 0.3938, 0.3020, 0.3569, 0.2792, 0.3317, 0.2989, 0.2935, 0.2695, 0.2658, 0.4182, 0.4306, 0.3961, 0.4066, 0.3935, 0.3672, 0.4197, 0.3161, 0.3273},
+      { 0.2134, 0.2316, 0.3879, 0.3017, 0.3416, 0.2778, 0.2971, 0.2715, 0.2990, 0.2621, 0.2632, 0.4152, 0.4230, 0.3696, 0.3935, 0.3865, 0.3596, 0.4129, 0.3071, 0.2967},
+      { 0.2389, 0.2420, 0.4649, 0.2913, 0.3637, 0.2958, 0.3040, 0.3055, 0.2975, 0.2868, 0.2996, 0.4175, 0.4578, 0.3566, 0.3672, 0.3596, 0.4321, 0.4363, 0.3025, 0.3245},
+      { 0.2371, 0.2512, 0.4194, 0.3260, 0.3895, 0.3212, 0.3405, 0.3243, 0.3281, 0.3092, 0.3064, 0.4663, 0.4966, 0.4065, 0.4197, 0.4129, 0.4363, 0.4833, 0.3230, 0.3321},
+      { 0.1737, 0.1744, 0.3716, 0.2649, 0.2932, 0.2330, 0.2630, 0.2591, 0.2471, 0.2400, 0.2301, 0.3351, 0.3346, 0.3004, 0.3161, 0.3071, 0.3025, 0.3230, 0.2584, 0.2260},
+      { 0.1341, 0.1169, 0.4733, 0.2587, 0.3258, 0.2590, 0.2679, 0.2567, 0.2497, 0.2550, 0.2024, 0.3203, 0.3892, 0.3079, 0.3273, 0.2967, 0.3245, 0.3321, 0.2260, 0.4809}}},
+  {
+    {
+      { 0.1598, 0.1678, 0.4640, 0.5614, 0.3840, 0.2913, 0.3194, 0.3159, 0.3097, 0.2480, 0.2745, 0.3470, 0.3321, 0.3178, 0.3133, 0.2970, 0.3494, 0.3142, 0.2618, 0.3461},
+      { 0.1678, 0.2442, 0.4705, 0.4299, 0.3553, 0.3053, 0.3196, 0.3100, 0.3461, 0.2371, 0.2841, 0.3707, 0.3919, 0.3291, 0.3453, 0.3533, 0.3579, 0.3421, 0.3396, 0.3163},
+      { 0.4640, 0.4705, 0.3450, 0.2673, 0.3933, 0.3385, 0.3646, 0.3538, 0.3832, 0.3280, 0.3296, 0.4386, 0.4441, 0.3889, 0.4123, 0.4204, 0.4112, 0.4183, 0.3677, 0.3866},
+      { 0.5614, 0.4299, 0.2673, 0.2222, 0.3347, 0.3136, 0.3220, 0.3376, 0.3281, 0.2763, 0.2545, 0.3887, 0.3597, 0.3307, 0.3407, 0.3346, 0.3310, 0.3355, 0.3175, 0.3395},
+      { 0.3840, 0.3553, 0.3933, 0.3347, 0.4224, 0.3451, 0.3796, 0.3509, 0.3708, 0.3115, 0.3370, 0.4669, 0.4628, 0.4065, 0.4041, 0.4088, 0.4236, 0.4344, 0.3283, 0.4146},
+      { 0.2913, 0.3053, 0.3385, 0.3136, 0.3451, 0.3096, 0.3075, 0.3112, 0.3295, 0.2669, 0.2885, 0.3430, 0.3454, 0.3110, 0.3194, 0.3125, 0.3239, 0.3419, 0.2988, 0.3323},
+      { 0.3194, 0.3196, 0.3646, 0.3220, 0.3796, 0.3075, 0.3593, 0.3425, 0.3630, 0.2714, 0.2953, 0.3692, 0.3655, 0.3542, 0.3655, 0.3400, 0.3447, 0.3533, 0.3035, 0.3405},
+      { 0.3159, 0.3100, 0.3538, 0.3376, 0.3509, 0.3112, 0.3425, 0.3536, 0.3523, 0.2884, 0.2992, 0.3661, 0.3885, 0.3349, 0.3524, 0.3365, 0.3683, 0.3617, 0.2950, 0.3528},
+      { 0.3097, 0.3461, 0.3832, 0.3281, 0.3708, 0.3295, 0.3630, 0.3523, 0.3791, 0.2760, 0.3250, 0.3985, 0.4293, 0.3660, 0.3813, 0.3925, 0.3954, 0.3900, 0.3511, 0.3540},
+      { 0.2480, 0.2371, 0.3280, 0.2763, 0.3115, 0.2669, 0.2714, 0.2884, 0.2760, 0.2546, 0.2853, 0.3280, 0.3436, 0.2918, 0.2880, 0.2900, 0.3224, 0.3272, 0.2759, 0.3268},
+      { 0.2745, 0.2841, 0.3296, 0.2545, 0.3370, 0.2885, 0.2953, 0.2992, 0.3250, 0.2853, 0.3177, 0.3950, 0.4117, 0.3038, 0.3108, 0.3231, 0.3392, 0.3624, 0.3160, 0.3379},
+      { 0.3470, 0.3707, 0.4386, 0.3887, 0.4669, 0.3430, 0.3692, 0.3661, 0.3985, 0.3280, 0.3950, 0.4841, 0.4937, 0.4397, 0.4597, 0.4576, 0.4789, 0.4921, 0.3560, 0.4491},
+      { 0.3321, 0.3919, 0.4441, 0.3597, 0.4628, 0.3454, 0.3655, 0.3885, 0.4293, 0.3436, 0.4117, 0.4937, 0.5451, 0.4206, 0.4646, 0.4634, 0.5180, 0.5323, 0.3563, 0.4337},
+      { 0.3178, 0.3291, 0.3889, 0.3307, 0.4065, 0.3110, 0.3542, 0.3349, 0.3660, 0.2918, 0.3038, 0.4397, 0.4206, 0.4027, 0.4133, 0.4062, 0.4087, 0.4154, 0.3289, 0.3813},
+      { 0.3133, 0.3453, 0.4123, 0.3407, 0.4041, 0.3194, 0.3655, 0.3524, 0.3813, 0.2880, 0.3108, 0.4597, 0.4646, 0.4133, 0.4462, 0.4266, 0.4162, 0.4302, 0.3370, 0.3889},
+      { 0.2970, 0.3533, 0.4204, 0.3346, 0.4088, 0.3125, 0.3400, 0.3365, 0.3925, 0.2900, 0.3231, 0.4576, 0.4634, 0.4062, 0.4266, 0.4305, 0.4318, 0.4431, 0.3486, 0.3908},
+      { 0.3494, 0.3579, 0.4112, 0.3310, 0.4236, 0.3239, 0.3447, 0.3683, 0.3954, 0.3224, 0.3392, 0.4789, 0.5180, 0.4087, 0.4162, 0.4318, 0.4755, 0.4707, 0.3552, 0.4137},
+      { 0.3142, 0.3421, 0.4183, 0.3355, 0.4344, 0.3419, 0.3533, 0.3617, 0.3900, 0.3272, 0.3624, 0.4921, 0.5323, 0.4154, 0.4302, 0.4431, 0.4707, 0.5056, 0.3441, 0.4466},
+      { 0.2618, 0.3396, 0.3677, 0.3175, 0.3283, 0.2988, 0.3035, 0.2950, 0.3511, 0.2759, 0.3160, 0.3560, 0.3563, 0.3289, 0.3370, 0.3486, 0.3552, 0.3441, 0.3863, 0.3308},
+      { 0.3461, 0.3163, 0.3866, 0.3395, 0.4146, 0.3323, 0.3405, 0.3528, 0.3540, 0.3268, 0.3379, 0.4491, 0.4337, 0.3813, 0.3889, 0.3908, 0.4137, 0.4466, 0.3308, 0.6186}},
+    {
+      { 0.2443, 0.2262, 0.4725, 0.4299, 0.3852, 0.3363, 0.3395, 0.3414, 0.3797, 0.2741, 0.2718, 0.3790, 0.3600, 0.3030, 0.3106, 0.3154, 0.3327, 0.3218, 0.3347, 0.3383},
+      { 0.2262, 0.2312, 0.4790, 0.5118, 0.3670, 0.3159, 0.3407, 0.3192, 0.3458, 0.2359, 0.2662, 0.3813, 0.3841, 0.3493, 0.3543, 0.3542, 0.3561, 0.3468, 0.3387, 0.3389},
+      { 0.4725, 0.4790, 0.3437, 0.2643, 0.3779, 0.3689, 0.3945, 0.3624, 0.3972, 0.3245, 0.3275, 0.4598, 0.4687, 0.4224, 0.4371, 0.4373, 0.4165, 0.4291, 0.3850, 0.3918},
+      { 0.4299, 0.5118, 0.2643, 0.2291, 0.3186, 0.3291, 0.3541, 0.3209, 0.3448, 0.2692, 0.2690, 0.4037, 0.3792, 0.3630, 0.3770, 0.3589, 0.3597, 0.3523, 0.3153, 0.3322},
+      { 0.3852, 0.3670, 0.3779, 0.3186, 0.4175, 0.3727, 0.4084, 0.3680, 0.3731, 0.2955, 0.3153, 0.4699, 0.4731, 0.4098, 0.4178, 0.4156, 0.4198, 0.4342, 0.3413, 0.4034},
+      { 0.3363, 0.3159, 0.3689, 0.3291, 0.3727, 0.3483, 0.3622, 0.3488, 0.3549, 0.2816, 0.2927, 0.3633, 0.3693, 0.3387, 0.3350, 0.3318, 0.3373, 0.3574, 0.3326, 0.3387},
+      { 0.3395, 0.3407, 0.3945, 0.3541, 0.4084, 0.3622, 0.4423, 0.3818, 0.3966, 0.2784, 0.2949, 0.3935, 0.3952, 0.3995, 0.4033, 0.3714, 0.3686, 0.3738, 0.3288, 0.3710},
+      { 0.3414, 0.3192, 0.3624, 0.3209, 0.3680, 0.3488, 0.3818, 0.3849, 0.3757, 0.2926, 0.2988, 0.3833, 0.4098, 0.3483, 0.3649, 0.3489, 0.3725, 0.3687, 0.3223, 0.3551},
+      { 0.3797, 0.3458, 0.3972, 0.3448, 0.3731, 0.3549, 0.3966, 0.3757, 0.4012, 0.2788, 0.3172, 0.4181, 0.4562, 0.3934, 0.4097, 0.4118, 0.4099, 0.4048, 0.3702, 0.3608},
+      { 0.2741, 0.2359, 0.3245, 0.2692, 0.2955, 0.2816, 0.2784, 0.2926, 0.2788, 0.2644, 0.2729, 0.3337, 0.3430, 0.2885, 0.2863, 0.2969, 0.3100, 0.3250, 0.2894, 0.3214},
+      { 0.2718, 0.2662, 0.3275, 0.2690, 0.3153, 0.2927, 0.2949, 0.2988, 0.3172, 0.2729, 0.3045, 0.3893, 0.4049, 0.2982, 0.3069, 0.3186, 0.3359, 0.3454, 0.3178, 0.3335},
+      { 0.3790, 0.3813, 0.4598, 0.4037, 0.4699, 0.3633, 0.3935, 0.3833, 0.4181, 0.3337, 0.3893, 0.5063, 0.5154, 0.4628, 0.4805, 0.4843, 0.4972, 0.5071, 0.3698, 0.4665},
+      { 0.3600, 0.3841, 0.4687, 0.3792, 0.4731, 0.3693, 0.3952, 0.4098, 0.4562, 0.3430, 0.4049, 0.5154, 0.5308, 0.4463, 0.4770, 0.4644, 0.5111, 0.5333, 0.3646, 0.4770},
+      { 0.3030, 0.3493, 0.4224, 0.3630, 0.4098, 0.3387, 0.3995, 0.3483, 0.3934, 0.2885, 0.2982, 0.4628, 0.4463, 0.4487, 0.4435, 0.4310, 0.4206, 0.4393, 0.3429, 0.4067},
+      { 0.3106, 0.3543, 0.4371, 0.3770, 0.4178, 0.3350, 0.4033, 0.3649, 0.4097, 0.2863, 0.3069, 0.4805, 0.4770, 0.4435, 0.4662, 0.4481, 0.4403, 0.4579, 0.3502, 0.4041},
+      { 0.3154, 0.3542, 0.4373, 0.3589, 0.4156, 0.3318, 0.3714, 0.3489, 0.4118, 0.2969, 0.3186, 0.4843, 0.4644, 0.4310, 0.4481, 0.4557, 0.4411, 0.4561, 0.3611, 0.4132},
+      { 0.3327, 0.3561, 0.4165, 0.3597, 0.4198, 0.3373, 0.3686, 0.3725, 0.4099, 0.3100, 0.3359, 0.4972, 0.5111, 0.4206, 0.4403, 0.4411, 0.4644, 0.4765, 0.3612, 0.4153},
+      { 0.3218, 0.3468, 0.4291, 0.3523, 0.4342, 0.3574, 0.3738, 0.3687, 0.4048, 0.3250, 0.3454, 0.5071, 0.5333, 0.4393, 0.4579, 0.4561, 0.4765, 0.5263, 0.3545, 0.4461},
+      { 0.3347, 0.3387, 0.3850, 0.3153, 0.3413, 0.3326, 0.3288, 0.3223, 0.3702, 0.2894, 0.3178, 0.3698, 0.3646, 0.3429, 0.3502, 0.3611, 0.3612, 0.3545, 0.4154, 0.3346},
+      { 0.3383, 0.3389, 0.3918, 0.3322, 0.4034, 0.3387, 0.3710, 0.3551, 0.3608, 0.3214, 0.3335, 0.4665, 0.4770, 0.4067, 0.4041, 0.4132, 0.4153, 0.4461, 0.3346, 0.5882}},
+    {
+      { 0.1333, 0.1318, 0.2733, 0.2673, 0.2397, 0.1903, 0.1897, 0.2166, 0.2319, 0.1593, 0.1598, 0.2400, 0.2316, 0.1596, 0.1667, 0.1681, 0.1894, 0.1934, 0.1804, 0.1945},
+      { 0.1318, 0.1539, 0.2784, 0.2643, 0.2352, 0.1841, 0.1956, 0.1962, 0.2197, 0.1330, 0.1477, 0.2515, 0.2643, 0.1928, 0.2091, 0.2172, 0.2017, 0.2144, 0.2075, 0.1925},
+      { 0.2733, 0.2784, 0.2928, 0.3335, 0.2759, 0.2468, 0.2547, 0.2549, 0.2587, 0.2322, 0.2371, 0.3361, 0.3457, 0.2743, 0.2912, 0.2940, 0.2988, 0.3136, 0.2326, 0.2810},
+      { 0.2673, 0.2643, 0.3335, 0.1904, 0.2381, 0.2171, 0.2232, 0.2321, 0.2219, 0.1916, 0.1918, 0.3000, 0.2773, 0.2339, 0.2416, 0.2361, 0.2509, 0.2534, 0.1989, 0.2323},
+      { 0.2397, 0.2352, 0.2759, 0.2381, 0.3076, 0.2476, 0.2610, 0.2469, 0.2418, 0.2105, 0.2165, 0.3407, 0.3533, 0.2707, 0.2785, 0.2759, 0.2860, 0.3075, 0.2082, 0.2880},
+      { 0.1903, 0.1841, 0.2468, 0.2171, 0.2476, 0.1991, 0.2017, 0.2183, 0.2169, 0.1857, 0.1709, 0.2394, 0.2587, 0.2013, 0.2087, 0.2051, 0.2145, 0.2383, 0.1882, 0.2294},
+      { 0.1897, 0.1956, 0.2547, 0.2232, 0.2610, 0.2017, 0.2439, 0.2374, 0.2307, 0.1791, 0.1643, 0.2630, 0.2711, 0.2377, 0.2476, 0.2226, 0.2308, 0.2552, 0.1809, 0.2476},
+      { 0.2166, 0.1962, 0.2549, 0.2321, 0.2469, 0.2183, 0.2374, 0.2584, 0.2445, 0.1989, 0.1971, 0.2634, 0.2923, 0.2183, 0.2465, 0.2193, 0.2372, 0.2558, 0.1951, 0.2510},
+      { 0.2319, 0.2197, 0.2587, 0.2219, 0.2418, 0.2169, 0.2307, 0.2445, 0.2452, 0.1793, 0.2018, 0.2765, 0.3140, 0.2316, 0.2464, 0.2597, 0.2650, 0.2742, 0.2168, 0.2134},
+      { 0.1593, 0.1330, 0.2322, 0.1916, 0.2105, 0.1857, 0.1791, 0.1989, 0.1793, 0.1752, 0.1795, 0.2295, 0.2492, 0.1838, 0.1846, 0.1917, 0.2080, 0.2231, 0.1794, 0.2409},
+      { 0.1598, 0.1477, 0.2371, 0.1918, 0.2165, 0.1709, 0.1643, 0.1971, 0.2018, 0.1795, 0.1891, 0.2749, 0.2954, 0.1746, 0.1834, 0.2039, 0.2107, 0.2566, 0.1799, 0.2307},
+      { 0.2400, 0.2515, 0.3361, 0.3000, 0.3407, 0.2394, 0.2630, 0.2634, 0.2765, 0.2295, 0.2749, 0.3725, 0.4005, 0.3160, 0.3355, 0.3418, 0.3562, 0.3837, 0.2337, 0.3567},
+      { 0.2316, 0.2643, 0.3457, 0.2773, 0.3533, 0.2587, 0.2711, 0.2923, 0.3140, 0.2492, 0.2954, 0.4005, 0.4673, 0.3098, 0.3438, 0.3465, 0.3702, 0.4140, 0.2414, 0.3688},
+      { 0.1596, 0.1928, 0.2743, 0.2339, 0.2707, 0.2013, 0.2377, 0.2183, 0.2316, 0.1838, 0.1746, 0.3160, 0.3098, 0.2822, 0.2840, 0.2727, 0.2704, 0.3070, 0.1950, 0.2658},
+      { 0.1667, 0.2091, 0.2912, 0.2416, 0.2785, 0.2087, 0.2476, 0.2465, 0.2464, 0.1846, 0.1834, 0.3355, 0.3438, 0.2840, 0.3100, 0.2994, 0.2781, 0.3243, 0.2064, 0.2793},
+      { 0.1681, 0.2172, 0.2940, 0.2361, 0.2759, 0.2051, 0.2226, 0.2193, 0.2597, 0.1917, 0.2039, 0.3418, 0.3465, 0.2727, 0.2994, 0.2985, 0.2824, 0.3287, 0.2156, 0.2615},
+      { 0.1894, 0.2017, 0.2988, 0.2509, 0.2860, 0.2145, 0.2308, 0.2372, 0.2650, 0.2080, 0.2107, 0.3562, 0.3702, 0.2704, 0.2781, 0.2824, 0.3233, 0.3548, 0.2026, 0.2884},
+      { 0.1934, 0.2144, 0.3136, 0.2534, 0.3075, 0.2383, 0.2552, 0.2558, 0.2742, 0.2231, 0.2566, 0.3837, 0.4140, 0.3070, 0.3243, 0.3287, 0.3548, 0.4064, 0.2275, 0.3423},
+      { 0.1804, 0.2075, 0.2326, 0.1989, 0.2082, 0.1882, 0.1809, 0.1951, 0.2168, 0.1794, 0.1799, 0.2337, 0.2414, 0.1950, 0.2064, 0.2156, 0.2026, 0.2275, 0.2504, 0.2115},
+      { 0.1945, 0.1925, 0.2810, 0.2323, 0.2880, 0.2294, 0.2476, 0.2510, 0.2134, 0.2409, 0.2307, 0.3567, 0.3688, 0.2658, 0.2793, 0.2615, 0.2884, 0.3423, 0.2115, 0.4685}},
+    {
+      { 0.0783, 0.0883, 0.2947, 0.2222, 0.2113, 0.1479, 0.1496, 0.1744, 0.2128, 0.1046, 0.1133, 0.2133, 0.1922, 0.1168, 0.1305, 0.1306, 0.1555, 0.1651, 0.1442, 0.1542},
+      { 0.0883, 0.1253, 0.3137, 0.2291, 0.2066, 0.1506, 0.1645, 0.1646, 0.1955, 0.0780, 0.1130, 0.2307, 0.2415, 0.1683, 0.1840, 0.1863, 0.1831, 0.1862, 0.1837, 0.1548},
+      { 0.2947, 0.3137, 0.2320, 0.1904, 0.2378, 0.2181, 0.2360, 0.2315, 0.2465, 0.1967, 0.2030, 0.3096, 0.3050, 0.2554, 0.2779, 0.2713, 0.2575, 0.2839, 0.2265, 0.2429},
+      { 0.2222, 0.2291, 0.1904, 0.2498, 0.1924, 0.1760, 0.1889, 0.1894, 0.1870, 0.1329, 0.1415, 0.2665, 0.2319, 0.2059, 0.2151, 0.2076, 0.2196, 0.2205, 0.1620, 0.1859},
+      { 0.2113, 0.2066, 0.2378, 0.1924, 0.2607, 0.2000, 0.2292, 0.2138, 0.2095, 0.1579, 0.1711, 0.3085, 0.3364, 0.2419, 0.2554, 0.2461, 0.2444, 0.2840, 0.1737, 0.2368},
+      { 0.1479, 0.1506, 0.2181, 0.1760, 0.2000, 0.1593, 0.1664, 0.1739, 0.1797, 0.1133, 0.1245, 0.2052, 0.2191, 0.1619, 0.1561, 0.1582, 0.1645, 0.1935, 0.1461, 0.1800},
+      { 0.1496, 0.1645, 0.2360, 0.1889, 0.2292, 0.1664, 0.2174, 0.2031, 0.1972, 0.1156, 0.1173, 0.2287, 0.2534, 0.2082, 0.2164, 0.1909, 0.2003, 0.2152, 0.1369, 0.1973},
+      { 0.1744, 0.1646, 0.2315, 0.1894, 0.2138, 0.1739, 0.2031, 0.2187, 0.2098, 0.1450, 0.1465, 0.2324, 0.2646, 0.1841, 0.2001, 0.1838, 0.2008, 0.2180, 0.1493, 0.1930},
+      { 0.2128, 0.1955, 0.2465, 0.1870, 0.2095, 0.1797, 0.1972, 0.2098, 0.2167, 0.1296, 0.1559, 0.2453, 0.2861, 0.2041, 0.2231, 0.2231, 0.2250, 0.2346, 0.1882, 0.1817},
+      { 0.1046, 0.0780, 0.1967, 0.1329, 0.1579, 0.1133, 0.1156, 0.1450, 0.1296, 0.0975, 0.1200, 0.1914, 0.2003, 0.1306, 0.1367, 0.1445, 0.1610, 0.1705, 0.1194, 0.1720},
+      { 0.1133, 0.1130, 0.2030, 0.1415, 0.1711, 0.1245, 0.1173, 0.1465, 0.1559, 0.1200, 0.1331, 0.2415, 0.2533, 0.1265, 0.1361, 0.1601, 0.1642, 0.2085, 0.1427, 0.1905},
+      { 0.2133, 0.2307, 0.3096, 0.2665, 0.3085, 0.2052, 0.2287, 0.2324, 0.2453, 0.1914, 0.2415, 0.3365, 0.3794, 0.2924, 0.3095, 0.3171, 0.3186, 0.3590, 0.2042, 0.2997},
+      { 0.1922, 0.2415, 0.3050, 0.2319, 0.3364, 0.2191, 0.2534, 0.2646, 0.2861, 0.2003, 0.2533, 0.3794, 0.4005, 0.2747, 0.3241, 0.3237, 0.4117, 0.3996, 0.2021, 0.3300},
+      { 0.1168, 0.1683, 0.2554, 0.2059, 0.2419, 0.1619, 0.2082, 0.1841, 0.2041, 0.1306, 0.1265, 0.2924, 0.2747, 0.2640, 0.2704, 0.2524, 0.2415, 0.2803, 0.1606, 0.2490},
+      { 0.1305, 0.1840, 0.2779, 0.2151, 0.2554, 0.1561, 0.2164, 0.2001, 0.2231, 0.1367, 0.1361, 0.3095, 0.3241, 0.2704, 0.2969, 0.2781, 0.2549, 0.3078, 0.1685, 0.2634},
+      { 0.1306, 0.1863, 0.2713, 0.2076, 0.2461, 0.1582, 0.1909, 0.1838, 0.2231, 0.1445, 0.1601, 0.3171, 0.3237, 0.2524, 0.2781, 0.2713, 0.2592, 0.2973, 0.1810, 0.2510},
+      { 0.1555, 0.1831, 0.2575, 0.2196, 0.2444, 0.1645, 0.2003, 0.2008, 0.2250, 0.1610, 0.1642, 0.3186, 0.4117, 0.2415, 0.2549, 0.2592, 0.2977, 0.3093, 0.1685, 0.2345},
+      { 0.1651, 0.1862, 0.2839, 0.2205, 0.2840, 0.1935, 0.2152, 0.2180, 0.2346, 0.1705, 0.2085, 0.3590, 0.3996, 0.2803, 0.3078, 0.2973, 0.3093, 0.3802, 0.1974, 0.3043},
+      { 0.1442, 0.1837, 0.2265, 0.1620, 0.1737, 0.1461, 0.1369, 0.1493, 0.1882, 0.1194, 0.1427, 0.2042, 0.2021, 0.1606, 0.1685, 0.1810, 0.1685, 0.1974, 0.2218, 0.1642},
+      { 0.1542, 0.1548, 0.2429, 0.1859, 0.2368, 0.1800, 0.1973, 0.1930, 0.1817, 0.1720, 0.1905, 0.2997, 0.3300, 0.2490, 0.2634, 0.2510, 0.2345, 0.3043, 0.1642, 0.4798}},
+    {
+      { 0.1264, 0.1176, 0.3765, 0.3347, 0.1132, 0.2033, 0.2253, 0.2213, 0.2269, 0.1679, 0.1835, 0.2479, 0.2352, 0.2030, 0.1999, 0.1928, 0.2101, 0.2036, 0.1804, 0.2262},
+      { 0.1176, 0.1423, 0.3835, 0.3186, 0.0848, 0.2062, 0.2281, 0.1979, 0.2232, 0.1346, 0.1692, 0.2647, 0.2582, 0.2323, 0.2354, 0.2348, 0.2324, 0.2217, 0.2124, 0.2026},
+      { 0.3765, 0.3835, 0.2880, 0.2381, 0.2348, 0.2830, 0.3018, 0.2981, 0.3073, 0.2494, 0.2575, 0.3743, 0.3986, 0.3217, 0.3320, 0.3325, 0.3164, 0.3476, 0.2820, 0.3204},
+      { 0.3347, 0.3186, 0.2381, 0.1924, 0.3918, 0.2611, 0.2794, 0.3078, 0.2978, 0.1990, 0.2001, 0.3891, 0.3592, 0.2838, 0.2929, 0.2785, 0.2851, 0.3145, 0.2472, 0.3115},
+      { 0.1132, 0.0848, 0.2348, 0.3918, 0.2581, 0.1544, 0.1879, 0.1529, 0.1519, 0.1411, 0.1418, 0.2768, 0.3269, 0.2221, 0.2494, 0.2112, 0.2675, 0.2756, 0.1052, 0.2880},
+      { 0.2033, 0.2062, 0.2830, 0.2611, 0.1544, 0.2229, 0.2413, 0.2297, 0.2298, 0.1852, 0.1936, 0.2585, 0.2676, 0.2483, 0.2409, 0.2226, 0.2405, 0.2583, 0.2016, 0.2487},
+      { 0.2253, 0.2281, 0.3018, 0.2794, 0.1879, 0.2413, 0.2907, 0.2638, 0.2657, 0.1861, 0.1913, 0.2799, 0.2861, 0.2902, 0.2921, 0.2646, 0.2661, 0.2705, 0.2112, 0.2675},
+      { 0.2213, 0.1979, 0.2981, 0.3078, 0.1529, 0.2297, 0.2638, 0.2748, 0.2455, 0.2024, 0.2095, 0.2818, 0.2966, 0.2574, 0.2631, 0.2390, 0.2546, 0.2788, 0.2029, 0.2960},
+      { 0.2269, 0.2232, 0.3073, 0.2978, 0.1519, 0.2298, 0.2657, 0.2455, 0.2564, 0.1904, 0.2068, 0.3045, 0.3237, 0.2674, 0.2876, 0.2759, 0.2988, 0.2992, 0.2309, 0.2613},
+      { 0.1679, 0.1346, 0.2494, 0.1990, 0.1411, 0.1852, 0.1861, 0.2024, 0.1904, 0.1654, 0.1895, 0.2485, 0.2521, 0.2084, 0.2119, 0.2061, 0.2243, 0.2370, 0.1752, 0.2194},
+      { 0.1835, 0.1692, 0.2575, 0.2001, 0.1418, 0.1936, 0.1913, 0.2095, 0.2068, 0.1895, 0.2266, 0.2980, 0.3096, 0.2062, 0.2169, 0.2237, 0.2587, 0.2710, 0.2061, 0.2398},
+      { 0.2479, 0.2647, 0.3743, 0.3891, 0.2768, 0.2585, 0.2799, 0.2818, 0.3045, 0.2485, 0.2980, 0.3968, 0.3943, 0.3623, 0.3772, 0.3682, 0.3939, 0.4061, 0.2596, 0.3582},
+      { 0.2352, 0.2582, 0.3986, 0.3592, 0.3269, 0.2676, 0.2861, 0.2966, 0.3237, 0.2521, 0.3096, 0.3943, 0.4481, 0.3506, 0.3928, 0.3831, 0.4364, 0.4376, 0.2680, 0.4059},
+      { 0.2030, 0.2323, 0.3217, 0.2838, 0.2221, 0.2483, 0.2902, 0.2574, 0.2674, 0.2084, 0.2062, 0.3623, 0.3506, 0.3479, 0.3479, 0.3255, 0.3350, 0.3590, 0.2541, 0.3154},
+      { 0.1999, 0.2354, 0.3320, 0.2929, 0.2494, 0.2409, 0.2921, 0.2631, 0.2876, 0.2119, 0.2169, 0.3772, 0.3928, 0.3479, 0.3709, 0.3456, 0.3432, 0.3684, 0.2586, 0.3370},
+      { 0.1928, 0.2348, 0.3325, 0.2785, 0.2112, 0.2226, 0.2646, 0.2390, 0.2759, 0.2061, 0.2237, 0.3682, 0.3831, 0.3255, 0.3456, 0.3463, 0.3259, 0.3612, 0.2585, 0.3375},
+      { 0.2101, 0.2324, 0.3164, 0.2851, 0.2675, 0.2405, 0.2661, 0.2546, 0.2988, 0.2243, 0.2587, 0.3939, 0.4364, 0.3350, 0.3432, 0.3259, 0.3969, 0.3925, 0.2505, 0.3599},
+      { 0.2036, 0.2217, 0.3476, 0.3145, 0.2756, 0.2583, 0.2705, 0.2788, 0.2992, 0.2370, 0.2710, 0.4061, 0.4376, 0.3590, 0.3684, 0.3612, 0.3925, 0.4188, 0.2599, 0.3676},
+      { 0.1804, 0.2124, 0.2820, 0.2472, 0.1052, 0.2016, 0.2112, 0.2029, 0.2309, 0.1752, 0.2061, 0.2596, 0.2680, 0.2541, 0.2586, 0.2585, 0.2505, 0.2599, 0.2626, 0.2516},
+      { 0.2262, 0.2026, 0.3204, 0.3115, 0.2880, 0.2487, 0.2675, 0.2960, 0.2613, 0.2194, 0.2398, 0.3582, 0.4059, 0.3154, 0.3370, 0.3375, 0.3599, 0.3676, 0.2516, 0.4852}},
+    {
+      { 0.0984, 0.1105, 0.3533, 0.3136, 0.2707, 0.1239, 0.1617, 0.2083, 0.2421, 0.1339, 0.1340, 0.2507, 0.2407, 0.1630, 0.1725, 0.1722, 0.1868, 0.1856, 0.1443, 0.1583},
+      { 0.1105, 0.1542, 0.3841, 0.3291, 0.2622, 0.1139, 0.1754, 0.1969, 0.2447, 0.1036, 0.1412, 0.2715, 0.2713, 0.2038, 0.2156, 0.2182, 0.2036, 0.2197, 0.1737, 0.1331},
+      { 0.3533, 0.3841, 0.2800, 0.2171, 0.2961, 0.2639, 0.2866, 0.2748, 0.3075, 0.2314, 0.2440, 0.3699, 0.3704, 0.3027, 0.3193, 0.3173, 0.3055, 0.3276, 0.2679, 0.2865},
+      { 0.3136, 0.3291, 0.2171, 0.1760, 0.2611, 0.3944, 0.3471, 0.2651, 0.2591, 0.2565, 0.1969, 0.3380, 0.3003, 0.3020, 0.2917, 0.2720, 0.2906, 0.2917, 0.2984, 0.3350},
+      { 0.2707, 0.2622, 0.2961, 0.2611, 0.3145, 0.2368, 0.2741, 0.2497, 0.2630, 0.2074, 0.2147, 0.3741, 0.3826, 0.2964, 0.3017, 0.2955, 0.2931, 0.3307, 0.2189, 0.2900},
+      { 0.1239, 0.1139, 0.2639, 0.3944, 0.2368, 0.1572, 0.1859, 0.1975, 0.1962, 0.1272, 0.1069, 0.2480, 0.2594, 0.1950, 0.2041, 0.1870, 0.2208, 0.2275, 0.1383, 0.2102},
+      { 0.1617, 0.1754, 0.2866, 0.3471, 0.2741, 0.1859, 0.2490, 0.2324, 0.2403, 0.1469, 0.1476, 0.2806, 0.2868, 0.2543, 0.2596, 0.2347, 0.2408, 0.2675, 0.1722, 0.2359},
+      { 0.2083, 0.1969, 0.2748, 0.2651, 0.2497, 0.1975, 0.2324, 0.2604, 0.2491, 0.1847, 0.1757, 0.2788, 0.3010, 0.2227, 0.2328, 0.2206, 0.2428, 0.2576, 0.1804, 0.2232},
+      { 0.2421, 0.2447, 0.3075, 0.2591, 0.2630, 0.1962, 0.2403, 0.2491, 0.2836, 0.1763, 0.2032, 0.3007, 0.3309, 0.2516, 0.2665, 0.2713, 0.2735, 0.2863, 0.2144, 0.2030},
+      { 0.1339, 0.1036, 0.2314, 0.2565, 0.2074, 0.1272, 0.1469, 0.1847, 0.1763, 0.1440, 0.1383, 0.2487, 0.2561, 0.1739, 0.1807, 0.1842, 0.2102, 0.2384, 0.1537, 0.2076},
+      { 0.1340, 0.1412, 0.2440, 0.1969, 0.2147, 0.1069, 0.1476, 0.1757, 0.2032, 0.1383, 0.1789, 0.2973, 0.3072, 0.1772, 0.1942, 0.2072, 0.2272, 0.2586, 0.1534, 0.1867},
+      { 0.2507, 0.2715, 0.3699, 0.3380, 0.3741, 0.2480, 0.2806, 0.2788, 0.3007, 0.2487, 0.2973, 0.4118, 0.4389, 0.3536, 0.3727, 0.3671, 0.3709, 0.4162, 0.2565, 0.3427},
+      { 0.2407, 0.2713, 0.3704, 0.3003, 0.3826, 0.2594, 0.2868, 0.3010, 0.3309, 0.2561, 0.3072, 0.4389, 0.4876, 0.3293, 0.3661, 0.3647, 0.4084, 0.4500, 0.2593, 0.3526},
+      { 0.1630, 0.2038, 0.3027, 0.3020, 0.2964, 0.1950, 0.2543, 0.2227, 0.2516, 0.1739, 0.1772, 0.3536, 0.3293, 0.3228, 0.3237, 0.3083, 0.3030, 0.3416, 0.2246, 0.2904},
+      { 0.1725, 0.2156, 0.3193, 0.2917, 0.3017, 0.2041, 0.2596, 0.2328, 0.2665, 0.1807, 0.1942, 0.3727, 0.3661, 0.3237, 0.3526, 0.3299, 0.3070, 0.3549, 0.2389, 0.2892},
+      { 0.1722, 0.2182, 0.3173, 0.2720, 0.2955, 0.1870, 0.2347, 0.2206, 0.2713, 0.1842, 0.2072, 0.3671, 0.3647, 0.3083, 0.3299, 0.3313, 0.3090, 0.3508, 0.2339, 0.2686},
+      { 0.1868, 0.2036, 0.3055, 0.2906, 0.2931, 0.2208, 0.2408, 0.2428, 0.2735, 0.2102, 0.2272, 0.3709, 0.4084, 0.3030, 0.3070, 0.3090, 0.3620, 0.3749, 0.2370, 0.3009},
+      { 0.1856, 0.2197, 0.3276, 0.2917, 0.3307, 0.2275, 0.2675, 0.2576, 0.2863, 0.2384, 0.2586, 0.4162, 0.4500, 0.3416, 0.3549, 0.3508, 0.3749, 0.4306, 0.2487, 0.3403},
+      { 0.1443, 0.1737, 0.2679, 0.2984, 0.2189, 0.1383, 0.1722, 0.1804, 0.2144, 0.1537, 0.1534, 0.2565, 0.2593, 0.2246, 0.2389, 0.2339, 0.2370, 0.2487, 0.2254, 0.2004},
+      { 0.1583, 0.1331, 0.2865, 0.3350, 0.2900, 0.2102, 0.2359, 0.2232, 0.2030, 0.2076, 0.1867, 0.3427, 0.3526, 0.2904, 0.2892, 0.2686, 0.3009, 0.3403, 0.2004, 0.4608}},
+    {
+      { 0.1113, 0.1165, 0.3722, 0.3220, 0.2936, 0.1699, 0.1278, 0.2259, 0.2467, 0.1513, 0.1601, 0.2679, 0.2593, 0.1669, 0.1739, 0.1746, 0.1800, 0.1963, 0.1604, 0.1778},
+      { 0.1165, 0.1557, 0.4082, 0.3541, 0.2895, 0.1692, 0.1456, 0.2129, 0.2497, 0.1248, 0.1576, 0.2877, 0.2967, 0.2157, 0.2217, 0.2209, 0.2016, 0.2246, 0.1840, 0.1591},
+      { 0.3722, 0.4082, 0.2845, 0.2232, 0.3124, 0.2818, 0.2770, 0.2848, 0.3140, 0.2408, 0.2501, 0.3747, 0.3780, 0.3226, 0.3358, 0.3240, 0.3047, 0.3335, 0.2708, 0.2937},
+      { 0.3220, 0.3541, 0.2232, 0.1889, 0.2794, 0.3471, 0.4107, 0.2806, 0.2639, 0.2343, 0.2060, 0.3455, 0.3140, 0.3461, 0.3522, 0.3099, 0.3304, 0.3040, 0.2828, 0.3552},
+      { 0.2936, 0.2895, 0.3124, 0.2794, 0.3498, 0.2717, 0.2652, 0.2715, 0.2850, 0.2153, 0.2374, 0.3862, 0.3951, 0.3105, 0.3168, 0.2930, 0.2976, 0.3397, 0.2279, 0.2921},
+      { 0.1699, 0.1692, 0.2818, 0.3471, 0.2717, 0.1988, 0.1918, 0.2311, 0.2250, 0.1471, 0.1591, 0.2720, 0.2906, 0.2310, 0.2356, 0.2225, 0.2338, 0.2541, 0.1704, 0.2384},
+      { 0.1278, 0.1456, 0.2770, 0.4107, 0.2652, 0.1918, 0.2452, 0.2092, 0.2186, 0.1103, 0.1344, 0.2753, 0.2619, 0.2761, 0.2739, 0.2299, 0.2526, 0.2696, 0.1477, 0.2546},
+      { 0.2259, 0.2129, 0.2848, 0.2806, 0.2715, 0.2311, 0.2092, 0.2801, 0.2630, 0.1909, 0.1939, 0.2962, 0.3038, 0.2331, 0.2442, 0.2255, 0.2469, 0.2747, 0.1941, 0.2301},
+      { 0.2467, 0.2497, 0.3140, 0.2639, 0.2850, 0.2250, 0.2186, 0.2630, 0.2901, 0.1865, 0.2046, 0.3100, 0.3437, 0.2592, 0.2761, 0.2735, 0.2673, 0.2899, 0.2214, 0.2272},
+      { 0.1513, 0.1248, 0.2408, 0.2343, 0.2153, 0.1471, 0.1103, 0.1909, 0.1865, 0.1601, 0.1657, 0.2574, 0.2823, 0.1742, 0.1841, 0.1935, 0.2010, 0.2382, 0.1578, 0.1927},
+      { 0.1601, 0.1576, 0.2501, 0.2060, 0.2374, 0.1591, 0.1344, 0.1939, 0.2046, 0.1657, 0.2071, 0.3092, 0.3107, 0.1822, 0.2046, 0.2109, 0.2260, 0.2605, 0.1729, 0.2121},
+      { 0.2679, 0.2877, 0.3747, 0.3455, 0.3862, 0.2720, 0.2753, 0.2962, 0.3100, 0.2574, 0.3092, 0.4125, 0.4392, 0.3660, 0.3793, 0.3698, 0.3813, 0.4225, 0.2756, 0.3695},
+      { 0.2593, 0.2967, 0.3780, 0.3140, 0.3951, 0.2906, 0.2619, 0.3038, 0.3437, 0.2823, 0.3107, 0.4392, 0.4886, 0.3502, 0.3783, 0.3742, 0.3991, 0.4474, 0.2727, 0.4087},
+      { 0.1669, 0.2157, 0.3226, 0.3461, 0.3105, 0.2310, 0.2761, 0.2331, 0.2592, 0.1742, 0.1822, 0.3660, 0.3502, 0.3490, 0.3447, 0.3162, 0.3199, 0.3506, 0.2269, 0.3042},
+      { 0.1739, 0.2217, 0.3358, 0.3522, 0.3168, 0.2356, 0.2739, 0.2442, 0.2761, 0.1841, 0.2046, 0.3793, 0.3783, 0.3447, 0.3678, 0.3380, 0.3219, 0.3658, 0.2436, 0.3154},
+      { 0.1746, 0.2209, 0.3240, 0.3099, 0.2930, 0.2225, 0.2299, 0.2255, 0.2735, 0.1935, 0.2109, 0.3698, 0.3742, 0.3162, 0.3380, 0.3343, 0.3165, 0.3603, 0.2423, 0.2931},
+      { 0.1800, 0.2016, 0.3047, 0.3304, 0.2976, 0.2338, 0.2526, 0.2469, 0.2673, 0.2010, 0.2260, 0.3813, 0.3991, 0.3199, 0.3219, 0.3165, 0.3682, 0.3850, 0.2286, 0.3307},
+      { 0.1963, 0.2246, 0.3335, 0.3040, 0.3397, 0.2541, 0.2696, 0.2747, 0.2899, 0.2382, 0.2605, 0.4225, 0.4474, 0.3506, 0.3658, 0.3603, 0.3850, 0.4374, 0.2612, 0.3535},
+      { 0.1604, 0.1840, 0.2708, 0.2828, 0.2279, 0.1704, 0.1477, 0.1941, 0.2214, 0.1578, 0.1729, 0.2756, 0.2727, 0.2269, 0.2436, 0.2423, 0.2286, 0.2612, 0.2342, 0.2059},
+      { 0.1778, 0.1591, 0.2937, 0.3552, 0.2921, 0.2384, 0.2546, 0.2301, 0.2272, 0.1927, 0.2121, 0.3695, 0.4087, 0.3042, 0.3154, 0.2931, 0.3307, 0.3535, 0.2059, 0.4801}},
+    {
+      { 0.1044, 0.1063, 0.3651, 0.3376, 0.2768, 0.1900, 0.1970, 0.1845, 0.2328, 0.1628, 0.1680, 0.2680, 0.2501, 0.1782, 0.1910, 0.1877, 0.2039, 0.2136, 0.1793, 0.2087},
+      { 0.1063, 0.1512, 0.3806, 0.3209, 0.2586, 0.1879, 0.2016, 0.1521, 0.2403, 0.1290, 0.1749, 0.2809, 0.2819, 0.2076, 0.2278, 0.2372, 0.2204, 0.2302, 0.2197, 0.1808},
+      { 0.3651, 0.3806, 0.2908, 0.2321, 0.3032, 0.2690, 0.2866, 0.2874, 0.3093, 0.2579, 0.2622, 0.3784, 0.3774, 0.3062, 0.3329, 0.3429, 0.3152, 0.3484, 0.2835, 0.3247},
+      { 0.3376, 0.3209, 0.2321, 0.1894, 0.3078, 0.2651, 0.2806, 0.4206, 0.2707, 0.2285, 0.2026, 0.3374, 0.3091, 0.2755, 0.2951, 0.2776, 0.2760, 0.2888, 0.2499, 0.3093},
+      { 0.2768, 0.2586, 0.3032, 0.3078, 0.3232, 0.2575, 0.2778, 0.2604, 0.2707, 0.2281, 0.2481, 0.3721, 0.3782, 0.2962, 0.3052, 0.2969, 0.3048, 0.3416, 0.2427, 0.3047},
+      { 0.1900, 0.1879, 0.2690, 0.2651, 0.2575, 0.2074, 0.2083, 0.2048, 0.2261, 0.1795, 0.1914, 0.2674, 0.2713, 0.2155, 0.2218, 0.2133, 0.2220, 0.2588, 0.1904, 0.2300},
+      { 0.1970, 0.2016, 0.2866, 0.2806, 0.2778, 0.2083, 0.2465, 0.2290, 0.2471, 0.1828, 0.1969, 0.2806, 0.2870, 0.2564, 0.2607, 0.2425, 0.2511, 0.2723, 0.1928, 0.2333},
+      { 0.1845, 0.1521, 0.2874, 0.4206, 0.2604, 0.2048, 0.2290, 0.2591, 0.2363, 0.1984, 0.2035, 0.2853, 0.2880, 0.2362, 0.2463, 0.2349, 0.2656, 0.2798, 0.1666, 0.2781},
+      { 0.2328, 0.2403, 0.3093, 0.2707, 0.2707, 0.2261, 0.2471, 0.2363, 0.2832, 0.1906, 0.2266, 0.3085, 0.3343, 0.2527, 0.2734, 0.2822, 0.2830, 0.2948, 0.2376, 0.2171},
+      { 0.1628, 0.1290, 0.2579, 0.2285, 0.2281, 0.1795, 0.1828, 0.1984, 0.1906, 0.1748, 0.1947, 0.2594, 0.2628, 0.2138, 0.2108, 0.2020, 0.2274, 0.2482, 0.1780, 0.2486},
+      { 0.1680, 0.1749, 0.2622, 0.2026, 0.2481, 0.1914, 0.1969, 0.2035, 0.2266, 0.1947, 0.2203, 0.3161, 0.3489, 0.2232, 0.2327, 0.2396, 0.2530, 0.2832, 0.2095, 0.2411},
+      { 0.2680, 0.2809, 0.3784, 0.3374, 0.3721, 0.2674, 0.2806, 0.2853, 0.3085, 0.2594, 0.3161, 0.4077, 0.4306, 0.3571, 0.3759, 0.3651, 0.3984, 0.4141, 0.2751, 0.3485},
+      { 0.2501, 0.2819, 0.3774, 0.3091, 0.3782, 0.2713, 0.2870, 0.2880, 0.3343, 0.2628, 0.3489, 0.4306, 0.4673, 0.3299, 0.3597, 0.3607, 0.4133, 0.4391, 0.2556, 0.3347},
+      { 0.1782, 0.2076, 0.3062, 0.2755, 0.2962, 0.2155, 0.2564, 0.2362, 0.2527, 0.2138, 0.2232, 0.3571, 0.3299, 0.3140, 0.3217, 0.3097, 0.3094, 0.3414, 0.2285, 0.2840},
+      { 0.1910, 0.2278, 0.3329, 0.2951, 0.3052, 0.2218, 0.2607, 0.2463, 0.2734, 0.2108, 0.2327, 0.3759, 0.3597, 0.3217, 0.3435, 0.3400, 0.3190, 0.3649, 0.2402, 0.3001},
+      { 0.1877, 0.2372, 0.3429, 0.2776, 0.2969, 0.2133, 0.2425, 0.2349, 0.2822, 0.2020, 0.2396, 0.3651, 0.3607, 0.3097, 0.3400, 0.3403, 0.3195, 0.3641, 0.2460, 0.2709},
+      { 0.2039, 0.2204, 0.3152, 0.2760, 0.3048, 0.2220, 0.2511, 0.2656, 0.2830, 0.2274, 0.2530, 0.3984, 0.4133, 0.3094, 0.3190, 0.3195, 0.3681, 0.3991, 0.2390, 0.3095},
+      { 0.2136, 0.2302, 0.3484, 0.2888, 0.3416, 0.2588, 0.2723, 0.2798, 0.2948, 0.2482, 0.2832, 0.4141, 0.4391, 0.3414, 0.3649, 0.3641, 0.3991, 0.4361, 0.2574, 0.3435},
+      { 0.1793, 0.2197, 0.2835, 0.2499, 0.2427, 0.1904, 0.1928, 0.1666, 0.2376, 0.1780, 0.2095, 0.2751, 0.2556, 0.2285, 0.2402, 0.2460, 0.2390, 0.2574, 0.2646, 0.2186},
+      { 0.2087, 0.1808, 0.3247, 0.3093, 0.3047, 0.2300, 0.2333, 0.2781, 0.2171, 0.2486, 0.2411, 0.3485, 0.3347, 0.2840, 0.3001, 0.2709, 0.3095, 0.3435, 0.2186, 0.4636}},
+    {
+      { 0.1439, 0.1511, 0.3827, 0.3281, 0.2856, 0.2335, 0.2347, 0.2450, 0.2181, 0.1790, 0.1923, 0.2786, 0.2512, 0.2057, 0.2132, 0.2080, 0.2177, 0.2274, 0.2208, 0.2277},
+      { 0.1511, 0.1748, 0.4021, 0.3448, 0.2834, 0.2277, 0.2430, 0.2342, 0.1992, 0.1574, 0.1851, 0.2878, 0.2990, 0.2462, 0.2559, 0.2585, 0.2378, 0.2568, 0.2498, 0.2323},
+      { 0.3827, 0.4021, 0.2839, 0.2219, 0.3039, 0.2965, 0.3095, 0.3008, 0.3066, 0.2661, 0.2651, 0.3827, 0.3909, 0.3334, 0.3508, 0.3531, 0.3368, 0.3509, 0.2991, 0.3200},
+      { 0.3281, 0.3448, 0.2219, 0.1870, 0.2978, 0.2591, 0.2639, 0.2707, 0.3945, 0.2031, 0.2093, 0.3533, 0.3050, 0.2839, 0.2948, 0.2904, 0.3159, 0.2989, 0.2451, 0.2699},
+      { 0.2856, 0.2834, 0.3039, 0.2978, 0.3254, 0.2793, 0.3010, 0.2770, 0.2589, 0.2358, 0.2457, 0.3888, 0.4059, 0.3162, 0.3217, 0.3108, 0.3074, 0.3454, 0.2435, 0.3271},
+      { 0.2335, 0.2277, 0.2965, 0.2591, 0.2793, 0.2485, 0.2553, 0.2601, 0.2226, 0.2061, 0.2063, 0.2827, 0.2904, 0.2534, 0.2494, 0.2367, 0.2450, 0.2759, 0.2308, 0.2590},
+      { 0.2347, 0.2430, 0.3095, 0.2639, 0.3010, 0.2553, 0.3105, 0.2892, 0.2500, 0.1992, 0.2064, 0.3082, 0.3034, 0.2940, 0.2984, 0.2644, 0.2594, 0.2956, 0.2215, 0.2785},
+      { 0.2450, 0.2342, 0.3008, 0.2707, 0.2770, 0.2601, 0.2892, 0.2970, 0.2444, 0.2228, 0.2235, 0.3076, 0.3347, 0.2693, 0.2776, 0.2516, 0.2608, 0.2817, 0.2337, 0.2769},
+      { 0.2181, 0.1992, 0.3066, 0.3945, 0.2589, 0.2226, 0.2500, 0.2444, 0.2513, 0.1876, 0.2038, 0.3012, 0.3354, 0.2689, 0.2808, 0.2836, 0.2829, 0.2872, 0.2158, 0.2708},
+      { 0.1790, 0.1574, 0.2661, 0.2031, 0.2358, 0.2061, 0.1992, 0.2228, 0.1876, 0.1957, 0.2057, 0.2620, 0.2663, 0.2086, 0.2112, 0.2110, 0.2210, 0.2531, 0.2039, 0.2398},
+      { 0.1923, 0.1851, 0.2651, 0.2093, 0.2457, 0.2063, 0.2064, 0.2235, 0.2038, 0.2057, 0.2194, 0.3120, 0.3464, 0.2134, 0.2264, 0.2288, 0.2414, 0.2793, 0.2168, 0.2474},
+      { 0.2786, 0.2878, 0.3827, 0.3533, 0.3888, 0.2827, 0.3082, 0.3076, 0.3012, 0.2620, 0.3120, 0.4205, 0.4513, 0.3716, 0.3828, 0.3873, 0.3976, 0.4354, 0.2822, 0.3690},
+      { 0.2512, 0.2990, 0.3909, 0.3050, 0.4059, 0.2904, 0.3034, 0.3347, 0.3354, 0.2663, 0.3464, 0.4513, 0.4948, 0.3505, 0.3851, 0.3726, 0.4180, 0.4472, 0.2795, 0.3998},
+      { 0.2057, 0.2462, 0.3334, 0.2839, 0.3162, 0.2534, 0.2940, 0.2693, 0.2689, 0.2086, 0.2134, 0.3716, 0.3505, 0.3365, 0.3390, 0.3233, 0.3170, 0.3489, 0.2474, 0.3211},
+      { 0.2132, 0.2559, 0.3508, 0.2948, 0.3217, 0.2494, 0.2984, 0.2776, 0.2808, 0.2112, 0.2264, 0.3828, 0.3851, 0.3390, 0.3607, 0.3460, 0.3258, 0.3698, 0.2504, 0.3277},
+      { 0.2080, 0.2585, 0.3531, 0.2904, 0.3108, 0.2367, 0.2644, 0.2516, 0.2836, 0.2110, 0.2288, 0.3873, 0.3726, 0.3233, 0.3460, 0.3419, 0.3352, 0.3682, 0.2585, 0.3081},
+      { 0.2177, 0.2378, 0.3368, 0.3159, 0.3074, 0.2450, 0.2594, 0.2608, 0.2829, 0.2210, 0.2414, 0.3976, 0.4180, 0.3170, 0.3258, 0.3352, 0.3795, 0.3868, 0.2415, 0.3272},
+      { 0.2274, 0.2568, 0.3509, 0.2989, 0.3454, 0.2759, 0.2956, 0.2817, 0.2872, 0.2531, 0.2793, 0.4354, 0.4472, 0.3489, 0.3698, 0.3682, 0.3868, 0.4423, 0.2691, 0.3722},
+      { 0.2208, 0.2498, 0.2991, 0.2451, 0.2435, 0.2308, 0.2215, 0.2337, 0.2158, 0.2039, 0.2168, 0.2822, 0.2795, 0.2474, 0.2504, 0.2585, 0.2415, 0.2691, 0.2954, 0.2542},
+      { 0.2277, 0.2323, 0.3200, 0.2699, 0.3271, 0.2590, 0.2785, 0.2769, 0.2708, 0.2398, 0.2474, 0.3690, 0.3998, 0.3211, 0.3277, 0.3081, 0.3272, 0.3722, 0.2542, 0.4885}},
+    {
+      { 0.0472, 0.0442, 0.3171, 0.2763, 0.2624, 0.1247, 0.1328, 0.1738, 0.1735, 0.0224, 0.1235, 0.2225, 0.2124, 0.1225, 0.1313, 0.1361, 0.1426, 0.1550, 0.0875, 0.1335},
+      { 0.0442, 0.0818, 0.3166, 0.2692, 0.2100, 0.1081, 0.1357, 0.1442, 0.1671, 0.0000, 0.1143, 0.2320, 0.2348, 0.1487, 0.1527, 0.1642, 0.1306, 0.1691, 0.0993, 0.1006},
+      { 0.3171, 0.3166, 0.2504, 0.1916, 0.2571, 0.2162, 0.2243, 0.2501, 0.2583, 0.2052, 0.2147, 0.3259, 0.3187, 0.2556, 0.2620, 0.2668, 0.2632, 0.2854, 0.2126, 0.2424},
+      { 0.2763, 0.2692, 0.1916, 0.1329, 0.1990, 0.2565, 0.2343, 0.2285, 0.2031, 0.3067, 0.1726, 0.2859, 0.2459, 0.2355, 0.2292, 0.2199, 0.2216, 0.2384, 0.2501, 0.2556},
+      { 0.2624, 0.2100, 0.2571, 0.1990, 0.3025, 0.2089, 0.2264, 0.2289, 0.2153, 0.1489, 0.1972, 0.3273, 0.3206, 0.2417, 0.2489, 0.2412, 0.2532, 0.2974, 0.1755, 0.2493},
+      { 0.1247, 0.1081, 0.2162, 0.2565, 0.2089, 0.1555, 0.1523, 0.1834, 0.1676, 0.0887, 0.1318, 0.2227, 0.2253, 0.1696, 0.1723, 0.1629, 0.1745, 0.2159, 0.1235, 0.1840},
+      { 0.1328, 0.1357, 0.2243, 0.2343, 0.2264, 0.1523, 0.1834, 0.1934, 0.1811, 0.1171, 0.1441, 0.2557, 0.2560, 0.2103, 0.2223, 0.1954, 0.1918, 0.2403, 0.1418, 0.1968},
+      { 0.1738, 0.1442, 0.2501, 0.2285, 0.2289, 0.1834, 0.1934, 0.2352, 0.2014, 0.1157, 0.1729, 0.2532, 0.2593, 0.1817, 0.1887, 0.1814, 0.2062, 0.2261, 0.1439, 0.2216},
+      { 0.1735, 0.1671, 0.2583, 0.2031, 0.2153, 0.1676, 0.1811, 0.2014, 0.2114, 0.1103, 0.1682, 0.2659, 0.2619, 0.1987, 0.2127, 0.2144, 0.2278, 0.2277, 0.1557, 0.1859},
+      { 0.0224, 0.0000, 0.2052, 0.3067, 0.1489, 0.0887, 0.1171, 0.1157, 0.1103, 0.0687, 0.0960, 0.1932, 0.1795, 0.1454, 0.1520, 0.1313, 0.1723, 0.1861, 0.0778, 0.1747},
+      { 0.1235, 0.1143, 0.2147, 0.1726, 0.1972, 0.1318, 0.1441, 0.1729, 0.1682, 0.0960, 0.1499, 0.2774, 0.2807, 0.1598, 0.1679, 0.1736, 0.1855, 0.2246, 0.1259, 0.1683},
+      { 0.2225, 0.2320, 0.3259, 0.2859, 0.3273, 0.2227, 0.2557, 0.2532, 0.2659, 0.1932, 0.2774, 0.3772, 0.4048, 0.3185, 0.3281, 0.3260, 0.3448, 0.3796, 0.2289, 0.3136},
+      { 0.2124, 0.2348, 0.3187, 0.2459, 0.3206, 0.2253, 0.2560, 0.2593, 0.2619, 0.1795, 0.2807, 0.4048, 0.4881, 0.3010, 0.3345, 0.3295, 0.3811, 0.4247, 0.2140, 0.3428},
+      { 0.1225, 0.1487, 0.2556, 0.2355, 0.2417, 0.1696, 0.2103, 0.1817, 0.1987, 0.1454, 0.1598, 0.3185, 0.3010, 0.2821, 0.2876, 0.2679, 0.2554, 0.3033, 0.1898, 0.2423},
+      { 0.1313, 0.1527, 0.2620, 0.2292, 0.2489, 0.1723, 0.2223, 0.1887, 0.2127, 0.1520, 0.1679, 0.3281, 0.3345, 0.2876, 0.3124, 0.2950, 0.2813, 0.3218, 0.2038, 0.2630},
+      { 0.1361, 0.1642, 0.2668, 0.2199, 0.2412, 0.1629, 0.1954, 0.1814, 0.2144, 0.1313, 0.1736, 0.3260, 0.3295, 0.2679, 0.2950, 0.2897, 0.2609, 0.3180, 0.1951, 0.2340},
+      { 0.1426, 0.1306, 0.2632, 0.2216, 0.2532, 0.1745, 0.1918, 0.2062, 0.2278, 0.1723, 0.1855, 0.3448, 0.3811, 0.2554, 0.2813, 0.2609, 0.3254, 0.3363, 0.1974, 0.2774},
+      { 0.1550, 0.1691, 0.2854, 0.2384, 0.2974, 0.2159, 0.2403, 0.2261, 0.2277, 0.1861, 0.2246, 0.3796, 0.4247, 0.3033, 0.3218, 0.3180, 0.3363, 0.4016, 0.2165, 0.3160},
+      { 0.0875, 0.0993, 0.2126, 0.2501, 0.1755, 0.1235, 0.1418, 0.1439, 0.1557, 0.0778, 0.1259, 0.2289, 0.2140, 0.1898, 0.2038, 0.1951, 0.1974, 0.2165, 0.1502, 0.1639},
+      { 0.1335, 0.1006, 0.2424, 0.2556, 0.2493, 0.1840, 0.1968, 0.2216, 0.1859, 0.1747, 0.1683, 0.3136, 0.3428, 0.2423, 0.2630, 0.2340, 0.2774, 0.3160, 0.1639, 0.4455}},
+    {
+      { 0.0770, 0.0731, 0.3095, 0.2545, 0.2141, 0.1412, 0.1379, 0.1718, 0.2034, 0.1091, 0.0758, 0.2084, 0.1996, 0.1221, 0.1330, 0.1334, 0.1419, 0.1521, 0.1300, 0.1377},
+      { 0.0731, 0.0989, 0.3227, 0.2690, 0.1970, 0.1308, 0.1414, 0.1590, 0.1903, 0.0864, 0.0811, 0.2214, 0.2227, 0.1466, 0.1510, 0.1640, 0.1500, 0.1709, 0.1492, 0.1364},
+      { 0.3095, 0.3227, 0.2312, 0.1918, 0.2543, 0.2118, 0.2281, 0.2321, 0.2564, 0.2038, 0.2269, 0.3173, 0.3175, 0.2480, 0.2707, 0.2612, 0.2583, 0.2886, 0.2209, 0.2565},
+      { 0.2545, 0.2690, 0.1918, 0.1415, 0.2001, 0.1969, 0.2060, 0.2026, 0.2093, 0.1726, 0.2402, 0.2769, 0.2636, 0.2299, 0.2294, 0.2037, 0.2211, 0.2246, 0.2119, 0.2205},
+      { 0.2141, 0.1970, 0.2543, 0.2001, 0.2725, 0.1831, 0.2141, 0.2121, 0.2108, 0.1745, 0.1847, 0.3245, 0.3229, 0.2402, 0.2387, 0.2356, 0.2457, 0.2773, 0.1694, 0.2238},
+      { 0.1412, 0.1308, 0.2118, 0.1969, 0.1831, 0.1443, 0.1462, 0.1629, 0.1740, 0.1241, 0.1136, 0.2105, 0.2189, 0.1633, 0.1656, 0.1611, 0.1738, 0.1974, 0.1302, 0.1762},
+      { 0.1379, 0.1414, 0.2281, 0.2060, 0.2141, 0.1462, 0.1716, 0.1907, 0.1902, 0.1376, 0.1321, 0.2438, 0.2545, 0.2028, 0.2103, 0.1940, 0.1922, 0.2243, 0.1463, 0.2000},
+      { 0.1718, 0.1590, 0.2321, 0.2026, 0.2121, 0.1629, 0.1907, 0.2170, 0.2131, 0.1680, 0.1289, 0.2410, 0.2701, 0.1897, 0.1994, 0.1782, 0.2067, 0.2269, 0.1550, 0.1805},
+      { 0.2034, 0.1903, 0.2564, 0.2093, 0.2108, 0.1740, 0.1902, 0.2131, 0.2186, 0.1578, 0.1700, 0.2591, 0.2905, 0.2061, 0.2217, 0.2284, 0.2205, 0.2329, 0.1799, 0.1857},
+      { 0.1091, 0.0864, 0.2038, 0.1726, 0.1745, 0.1241, 0.1376, 0.1680, 0.1578, 0.1231, 0.1055, 0.1955, 0.1990, 0.1483, 0.1470, 0.1550, 0.1840, 0.1818, 0.1330, 0.1919},
+      { 0.0758, 0.0811, 0.2269, 0.2402, 0.1847, 0.1136, 0.1321, 0.1289, 0.1700, 0.1055, 0.1180, 0.2598, 0.2846, 0.1710, 0.1763, 0.1945, 0.2220, 0.2388, 0.1398, 0.2288},
+      { 0.2084, 0.2214, 0.3173, 0.2769, 0.3245, 0.2105, 0.2438, 0.2410, 0.2591, 0.1955, 0.2598, 0.3464, 0.4075, 0.3004, 0.3091, 0.3220, 0.3480, 0.3730, 0.2225, 0.3012},
+      { 0.1996, 0.2227, 0.3175, 0.2636, 0.3229, 0.2189, 0.2545, 0.2701, 0.2905, 0.1990, 0.2846, 0.4075, 0.4697, 0.3076, 0.3358, 0.3302, 0.3602, 0.4137, 0.2266, 0.2877},
+      { 0.1221, 0.1466, 0.2480, 0.2299, 0.2402, 0.1633, 0.2028, 0.1897, 0.2061, 0.1483, 0.1710, 0.3004, 0.3076, 0.2640, 0.2670, 0.2646, 0.2446, 0.2992, 0.1825, 0.2742},
+      { 0.1330, 0.1510, 0.2707, 0.2294, 0.2387, 0.1656, 0.2103, 0.1994, 0.2217, 0.1470, 0.1763, 0.3091, 0.3358, 0.2670, 0.2981, 0.2861, 0.2647, 0.3041, 0.1909, 0.2567},
+      { 0.1334, 0.1640, 0.2612, 0.2037, 0.2356, 0.1611, 0.1940, 0.1782, 0.2284, 0.1550, 0.1945, 0.3220, 0.3302, 0.2646, 0.2861, 0.2859, 0.2699, 0.3153, 0.1889, 0.2470},
+      { 0.1419, 0.1500, 0.2583, 0.2211, 0.2457, 0.1738, 0.1922, 0.2067, 0.2205, 0.1840, 0.2220, 0.3480, 0.3602, 0.2446, 0.2647, 0.2699, 0.2903, 0.3490, 0.1846, 0.2601},
+      { 0.1521, 0.1709, 0.2886, 0.2246, 0.2773, 0.1974, 0.2243, 0.2269, 0.2329, 0.1818, 0.2388, 0.3730, 0.4137, 0.2992, 0.3041, 0.3153, 0.3490, 0.3785, 0.2008, 0.3044},
+      { 0.1300, 0.1492, 0.2209, 0.2119, 0.1694, 0.1302, 0.1463, 0.1550, 0.1799, 0.1330, 0.1398, 0.2225, 0.2266, 0.1825, 0.1909, 0.1889, 0.1846, 0.2008, 0.1921, 0.1759},
+      { 0.1377, 0.1364, 0.2565, 0.2205, 0.2238, 0.1762, 0.2000, 0.1805, 0.1857, 0.1919, 0.2288, 0.3012, 0.2877, 0.2742, 0.2567, 0.2470, 0.2601, 0.3044, 0.1759, 0.4174}},
+    {
+      { 0.2276, 0.2199, 0.4546, 0.3887, 0.3345, 0.2950, 0.2985, 0.3001, 0.3209, 0.2589, 0.2601, 0.2546, 0.2970, 0.2601, 0.2538, 0.2575, 0.2748, 0.2423, 0.2723, 0.2909},
+      { 0.2199, 0.2421, 0.4748, 0.4037, 0.3370, 0.2933, 0.3116, 0.2875, 0.3324, 0.2396, 0.2593, 0.2819, 0.3535, 0.3025, 0.3106, 0.3170, 0.3098, 0.2850, 0.2938, 0.2982},
+      { 0.4546, 0.4748, 0.3420, 0.3000, 0.3883, 0.3673, 0.3787, 0.3665, 0.3843, 0.3304, 0.3413, 0.4349, 0.4654, 0.3928, 0.4045, 0.4038, 0.3883, 0.4200, 0.3705, 0.4030},
+      { 0.3887, 0.4037, 0.3000, 0.2665, 0.3891, 0.3380, 0.3455, 0.3374, 0.3533, 0.2859, 0.2769, 0.5326, 0.4472, 0.3518, 0.3627, 0.3614, 0.4040, 0.4308, 0.3319, 0.3912},
+      { 0.3345, 0.3370, 0.3883, 0.3891, 0.4054, 0.3504, 0.3771, 0.3290, 0.3459, 0.2994, 0.3248, 0.4057, 0.4564, 0.3918, 0.3854, 0.3960, 0.3980, 0.4055, 0.3262, 0.4045},
+      { 0.2950, 0.2933, 0.3673, 0.3380, 0.3504, 0.3109, 0.3243, 0.3193, 0.3265, 0.2905, 0.2840, 0.2844, 0.3520, 0.3210, 0.3177, 0.3079, 0.3325, 0.3213, 0.2997, 0.3376},
+      { 0.2985, 0.3116, 0.3787, 0.3455, 0.3771, 0.3243, 0.3750, 0.3377, 0.3476, 0.2872, 0.2910, 0.3190, 0.3713, 0.3805, 0.3767, 0.3575, 0.3502, 0.3423, 0.3177, 0.3636},
+      { 0.3001, 0.2875, 0.3665, 0.3374, 0.3290, 0.3193, 0.3377, 0.3552, 0.3371, 0.2898, 0.2945, 0.3114, 0.3669, 0.3139, 0.3126, 0.3019, 0.3233, 0.3214, 0.3015, 0.3329},
+      { 0.3209, 0.3324, 0.3843, 0.3533, 0.3459, 0.3265, 0.3476, 0.3371, 0.3626, 0.2899, 0.3007, 0.3476, 0.4246, 0.3455, 0.3473, 0.3667, 0.3673, 0.3592, 0.3266, 0.3509},
+      { 0.2589, 0.2396, 0.3304, 0.2859, 0.2994, 0.2905, 0.2872, 0.2898, 0.2899, 0.2795, 0.2886, 0.2562, 0.3259, 0.2784, 0.2778, 0.2951, 0.3034, 0.2750, 0.2875, 0.3174},
+      { 0.2601, 0.2593, 0.3413, 0.2769, 0.3248, 0.2840, 0.2910, 0.2945, 0.3007, 0.2886, 0.3003, 0.3086, 0.3947, 0.2975, 0.2920, 0.3032, 0.3228, 0.3121, 0.3016, 0.3263},
+      { 0.2546, 0.2819, 0.4349, 0.5326, 0.4057, 0.2844, 0.3190, 0.3114, 0.3476, 0.2562, 0.3086, 0.4232, 0.4541, 0.4050, 0.4309, 0.4213, 0.4377, 0.4511, 0.2867, 0.4274},
+      { 0.2970, 0.3535, 0.4654, 0.4472, 0.4564, 0.3520, 0.3713, 0.3669, 0.4246, 0.3259, 0.3947, 0.4541, 0.5228, 0.4385, 0.4644, 0.4560, 0.4956, 0.5073, 0.3713, 0.5020},
+      { 0.2601, 0.3025, 0.3928, 0.3518, 0.3918, 0.3210, 0.3805, 0.3139, 0.3455, 0.2784, 0.2975, 0.4050, 0.4385, 0.4507, 0.4610, 0.4353, 0.4186, 0.4212, 0.3452, 0.4300},
+      { 0.2538, 0.3106, 0.4045, 0.3627, 0.3854, 0.3177, 0.3767, 0.3126, 0.3473, 0.2778, 0.2920, 0.4309, 0.4644, 0.4610, 0.4825, 0.4502, 0.4368, 0.4419, 0.3489, 0.4363},
+      { 0.2575, 0.3170, 0.4038, 0.3614, 0.3960, 0.3079, 0.3575, 0.3019, 0.3667, 0.2951, 0.3032, 0.4213, 0.4560, 0.4353, 0.4502, 0.4505, 0.4310, 0.4374, 0.3520, 0.4270},
+      { 0.2748, 0.3098, 0.3883, 0.4040, 0.3980, 0.3325, 0.3502, 0.3233, 0.3673, 0.3034, 0.3228, 0.4377, 0.4956, 0.4186, 0.4368, 0.4310, 0.4554, 0.4674, 0.3489, 0.4220},
+      { 0.2423, 0.2850, 0.4200, 0.4308, 0.4055, 0.3213, 0.3423, 0.3214, 0.3592, 0.2750, 0.3121, 0.4511, 0.5073, 0.4212, 0.4419, 0.4374, 0.4674, 0.4783, 0.3179, 0.4665},
+      { 0.2723, 0.2938, 0.3705, 0.3319, 0.3262, 0.2997, 0.3177, 0.3015, 0.3266, 0.2875, 0.3016, 0.2867, 0.3713, 0.3452, 0.3489, 0.3520, 0.3489, 0.3179, 0.3562, 0.3360},
+      { 0.2909, 0.2982, 0.4030, 0.3912, 0.4045, 0.3376, 0.3636, 0.3329, 0.3509, 0.3174, 0.3263, 0.4274, 0.5020, 0.4300, 0.4363, 0.4270, 0.4220, 0.4665, 0.3360, 0.5886}},
+    {
+      { 0.2353, 0.2084, 0.4405, 0.3597, 0.3277, 0.2834, 0.2836, 0.2784, 0.3013, 0.2320, 0.2550, 0.2915, 0.1937, 0.2452, 0.2469, 0.2451, 0.2529, 0.2294, 0.2575, 0.2772},
+      { 0.2084, 0.2301, 0.4586, 0.3792, 0.3247, 0.2818, 0.2938, 0.2721, 0.2987, 0.2120, 0.2525, 0.3316, 0.2549, 0.2900, 0.2908, 0.2961, 0.2910, 0.2682, 0.2733, 0.2825},
+      { 0.4405, 0.4586, 0.3447, 0.2773, 0.3894, 0.3499, 0.3699, 0.3551, 0.3710, 0.3114, 0.3314, 0.4495, 0.4422, 0.3695, 0.3846, 0.3788, 0.3850, 0.4078, 0.3514, 0.3768},
+      { 0.3597, 0.3792, 0.2773, 0.2319, 0.3592, 0.3003, 0.3140, 0.3091, 0.3050, 0.2459, 0.2636, 0.4472, 0.4437, 0.3122, 0.3145, 0.3035, 0.3270, 0.3845, 0.3026, 0.3466},
+      { 0.3277, 0.3247, 0.3894, 0.3592, 0.3859, 0.3362, 0.3664, 0.3201, 0.3266, 0.2819, 0.3399, 0.4295, 0.4065, 0.3724, 0.3784, 0.3960, 0.3980, 0.3874, 0.3033, 0.3543},
+      { 0.2834, 0.2818, 0.3499, 0.3003, 0.3362, 0.3074, 0.3103, 0.3145, 0.3122, 0.2573, 0.2756, 0.3201, 0.2784, 0.2992, 0.3027, 0.2990, 0.3073, 0.3150, 0.2771, 0.3038},
+      { 0.2836, 0.2938, 0.3699, 0.3140, 0.3664, 0.3103, 0.3598, 0.3205, 0.3301, 0.2584, 0.2747, 0.3651, 0.2989, 0.3590, 0.3695, 0.3417, 0.3306, 0.3459, 0.2923, 0.3440},
+      { 0.2784, 0.2721, 0.3551, 0.3091, 0.3201, 0.3145, 0.3205, 0.3361, 0.3178, 0.2604, 0.2872, 0.3327, 0.2695, 0.2920, 0.3069, 0.2812, 0.3199, 0.2973, 0.2614, 0.3125},
+      { 0.3013, 0.2987, 0.3710, 0.3050, 0.3266, 0.3122, 0.3301, 0.3178, 0.3262, 0.2507, 0.2915, 0.3873, 0.3555, 0.3252, 0.3244, 0.3396, 0.3531, 0.3601, 0.3056, 0.3298},
+      { 0.2320, 0.2120, 0.3114, 0.2459, 0.2819, 0.2573, 0.2584, 0.2604, 0.2507, 0.2529, 0.2683, 0.2899, 0.2422, 0.2625, 0.2617, 0.2815, 0.3250, 0.2611, 0.2608, 0.2859},
+      { 0.2550, 0.2525, 0.3314, 0.2636, 0.3399, 0.2756, 0.2747, 0.2872, 0.2915, 0.2683, 0.2830, 0.3687, 0.2789, 0.2856, 0.2901, 0.2986, 0.3144, 0.3155, 0.2920, 0.3093},
+      { 0.2915, 0.3316, 0.4495, 0.4472, 0.4295, 0.3201, 0.3651, 0.3327, 0.3873, 0.2899, 0.3687, 0.4683, 0.4498, 0.4473, 0.4767, 0.4711, 0.4885, 0.4833, 0.3366, 0.4476},
+      { 0.1937, 0.2549, 0.4422, 0.4437, 0.4065, 0.2784, 0.2989, 0.2695, 0.3555, 0.2422, 0.2789, 0.4498, 0.4727, 0.3678, 0.4080, 0.4063, 0.4699, 0.4588, 0.2786, 0.4291},
+      { 0.2452, 0.2900, 0.3695, 0.3122, 0.3724, 0.2992, 0.3590, 0.2920, 0.3252, 0.2625, 0.2856, 0.4473, 0.3678, 0.4411, 0.4510, 0.4295, 0.4193, 0.4371, 0.3265, 0.4135},
+      { 0.2469, 0.2908, 0.3846, 0.3145, 0.3784, 0.3027, 0.3695, 0.3069, 0.3244, 0.2617, 0.2901, 0.4767, 0.4080, 0.4510, 0.4795, 0.4640, 0.4408, 0.4621, 0.3502, 0.4382},
+      { 0.2451, 0.2961, 0.3788, 0.3035, 0.3960, 0.2990, 0.3417, 0.2812, 0.3396, 0.2815, 0.2986, 0.4711, 0.4063, 0.4295, 0.4640, 0.4622, 0.4359, 0.4503, 0.3477, 0.4281},
+      { 0.2529, 0.2910, 0.3850, 0.3270, 0.3980, 0.3073, 0.3306, 0.3199, 0.3531, 0.3250, 0.3144, 0.4885, 0.4699, 0.4193, 0.4408, 0.4359, 0.4847, 0.4892, 0.3357, 0.4637},
+      { 0.2294, 0.2682, 0.4078, 0.3845, 0.3874, 0.3150, 0.3459, 0.2973, 0.3601, 0.2611, 0.3155, 0.4833, 0.4588, 0.4371, 0.4621, 0.4503, 0.4892, 0.4847, 0.3205, 0.4700},
+      { 0.2575, 0.2733, 0.3514, 0.3026, 0.3033, 0.2771, 0.2923, 0.2614, 0.3056, 0.2608, 0.2920, 0.3366, 0.2786, 0.3265, 0.3502, 0.3477, 0.3357, 0.3205, 0.3234, 0.3362},
+      { 0.2772, 0.2825, 0.3768, 0.3466, 0.3543, 0.3038, 0.3440, 0.3125, 0.3298, 0.2859, 0.3093, 0.4476, 0.4291, 0.4135, 0.4382, 0.4281, 0.4637, 0.4700, 0.3362, 0.6033}},
+    {
+      { 0.1534, 0.1412, 0.3884, 0.3307, 0.2857, 0.2023, 0.1972, 0.2347, 0.2504, 0.1637, 0.1739, 0.2577, 0.2373, 0.0970, 0.1137, 0.1348, 0.1500, 0.1534, 0.1467, 0.1426},
+      { 0.1412, 0.1666, 0.4212, 0.3630, 0.2797, 0.2072, 0.2304, 0.2274, 0.2520, 0.1477, 0.1785, 0.2831, 0.2862, 0.1659, 0.1708, 0.1815, 0.1800, 0.1966, 0.1786, 0.1611},
+      { 0.3884, 0.4212, 0.2813, 0.2339, 0.3150, 0.2835, 0.3115, 0.2892, 0.3237, 0.2542, 0.2673, 0.3670, 0.3632, 0.2937, 0.3037, 0.3052, 0.2965, 0.3125, 0.2783, 0.2988},
+      { 0.3307, 0.3630, 0.2339, 0.2059, 0.2838, 0.3020, 0.3461, 0.2755, 0.2839, 0.2355, 0.2299, 0.3518, 0.3122, 0.3550, 0.3334, 0.3099, 0.3305, 0.3040, 0.2883, 0.3396},
+      { 0.2857, 0.2797, 0.3150, 0.2838, 0.3342, 0.3043, 0.3209, 0.2714, 0.2866, 0.2265, 0.2383, 0.3873, 0.3677, 0.2799, 0.2866, 0.2886, 0.2817, 0.3274, 0.2568, 0.3065},
+      { 0.2023, 0.2072, 0.2835, 0.3020, 0.3043, 0.2256, 0.2424, 0.2500, 0.2459, 0.1835, 0.1954, 0.2803, 0.2799, 0.1989, 0.2015, 0.2091, 0.2165, 0.2493, 0.2002, 0.2239},
+      { 0.1972, 0.2304, 0.3115, 0.3461, 0.3209, 0.2424, 0.3053, 0.2672, 0.2727, 0.1870, 0.1962, 0.3204, 0.3140, 0.2825, 0.2845, 0.2679, 0.2608, 0.2994, 0.2322, 0.2820},
+      { 0.2347, 0.2274, 0.2892, 0.2755, 0.2714, 0.2500, 0.2672, 0.2891, 0.2715, 0.2112, 0.2107, 0.2821, 0.2909, 0.1760, 0.1864, 0.1911, 0.2123, 0.2327, 0.1981, 0.2142},
+      { 0.2504, 0.2520, 0.3237, 0.2839, 0.2866, 0.2459, 0.2727, 0.2715, 0.2818, 0.2042, 0.2247, 0.3074, 0.3256, 0.2284, 0.2316, 0.2458, 0.2406, 0.2646, 0.2196, 0.2285},
+      { 0.1637, 0.1477, 0.2542, 0.2355, 0.2265, 0.1835, 0.1870, 0.2112, 0.2042, 0.1603, 0.1770, 0.2524, 0.2736, 0.1266, 0.1454, 0.1675, 0.1815, 0.2044, 0.1742, 0.2018},
+      { 0.1739, 0.1785, 0.2673, 0.2299, 0.2383, 0.1954, 0.1962, 0.2107, 0.2247, 0.1770, 0.2032, 0.2985, 0.3193, 0.1508, 0.1647, 0.1837, 0.2073, 0.2318, 0.1919, 0.2089},
+      { 0.2577, 0.2831, 0.3670, 0.3518, 0.3873, 0.2803, 0.3204, 0.2821, 0.3074, 0.2524, 0.2985, 0.4058, 0.4452, 0.3435, 0.3582, 0.3719, 0.3728, 0.4179, 0.2969, 0.3718},
+      { 0.2373, 0.2862, 0.3632, 0.3122, 0.3677, 0.2799, 0.3140, 0.2909, 0.3256, 0.2736, 0.3193, 0.4452, 0.4921, 0.3355, 0.3635, 0.3798, 0.3970, 0.4507, 0.2821, 0.3737},
+      { 0.0970, 0.1659, 0.2937, 0.3550, 0.2799, 0.1989, 0.2825, 0.1760, 0.2284, 0.1266, 0.1508, 0.3435, 0.3355, 0.3633, 0.3546, 0.3256, 0.3074, 0.3426, 0.2162, 0.3386},
+      { 0.1137, 0.1708, 0.3037, 0.3334, 0.2866, 0.2015, 0.2845, 0.1864, 0.2316, 0.1454, 0.1647, 0.3582, 0.3635, 0.3546, 0.3680, 0.3396, 0.3153, 0.3637, 0.2326, 0.3452},
+      { 0.1348, 0.1815, 0.3052, 0.3099, 0.2886, 0.2091, 0.2679, 0.1911, 0.2458, 0.1675, 0.1837, 0.3719, 0.3798, 0.3256, 0.3396, 0.3452, 0.3207, 0.3680, 0.2430, 0.3208},
+      { 0.1500, 0.1800, 0.2965, 0.3305, 0.2817, 0.2165, 0.2608, 0.2123, 0.2406, 0.1815, 0.2073, 0.3728, 0.3970, 0.3074, 0.3153, 0.3207, 0.3553, 0.3774, 0.2390, 0.3241},
+      { 0.1534, 0.1966, 0.3125, 0.3040, 0.3274, 0.2493, 0.2994, 0.2327, 0.2646, 0.2044, 0.2318, 0.4179, 0.4507, 0.3426, 0.3637, 0.3680, 0.3774, 0.4339, 0.2672, 0.3676},
+      { 0.1467, 0.1786, 0.2783, 0.2883, 0.2568, 0.2002, 0.2322, 0.1981, 0.2196, 0.1742, 0.1919, 0.2969, 0.2821, 0.2162, 0.2326, 0.2430, 0.2390, 0.2672, 0.2535, 0.2434},
+      { 0.1426, 0.1611, 0.2988, 0.3396, 0.3065, 0.2239, 0.2820, 0.2142, 0.2285, 0.2018, 0.2089, 0.3718, 0.3737, 0.3386, 0.3452, 0.3208, 0.3241, 0.3676, 0.2434, 0.4688}},
+    {
+      { 0.1595, 0.1584, 0.4029, 0.3407, 0.2929, 0.2124, 0.2050, 0.2423, 0.2658, 0.1673, 0.1769, 0.2632, 0.2503, 0.1131, 0.0924, 0.1280, 0.1407, 0.1493, 0.1581, 0.1570},
+      { 0.1584, 0.1883, 0.4418, 0.3770, 0.2905, 0.2164, 0.2402, 0.2414, 0.2710, 0.1538, 0.1810, 0.2912, 0.2916, 0.1719, 0.1492, 0.1781, 0.1752, 0.1947, 0.1958, 0.1593},
+      { 0.4029, 0.4418, 0.2956, 0.2416, 0.3224, 0.2904, 0.3150, 0.3063, 0.3328, 0.2602, 0.2731, 0.3725, 0.3724, 0.2979, 0.2956, 0.3093, 0.2960, 0.3179, 0.2920, 0.3020},
+      { 0.3407, 0.3770, 0.2416, 0.2151, 0.2929, 0.2917, 0.3522, 0.2951, 0.2948, 0.2292, 0.2294, 0.3627, 0.3145, 0.3334, 0.3472, 0.3192, 0.3481, 0.3188, 0.2817, 0.3387},
+      { 0.2929, 0.2905, 0.3224, 0.2929, 0.3671, 0.3049, 0.3278, 0.2740, 0.2974, 0.2270, 0.2472, 0.3929, 0.3906, 0.2932, 0.2728, 0.2921, 0.2918, 0.3298, 0.2684, 0.3075},
+      { 0.2124, 0.2164, 0.2904, 0.2917, 0.3049, 0.2275, 0.2406, 0.2524, 0.2598, 0.1896, 0.1938, 0.2792, 0.2897, 0.2096, 0.1832, 0.2044, 0.2092, 0.2429, 0.2115, 0.2301},
+      { 0.2050, 0.2402, 0.3150, 0.3522, 0.3278, 0.2406, 0.3039, 0.2660, 0.2738, 0.1862, 0.1963, 0.3246, 0.3283, 0.2931, 0.2718, 0.2695, 0.2624, 0.2957, 0.2358, 0.2801},
+      { 0.2423, 0.2414, 0.3063, 0.2951, 0.2740, 0.2524, 0.2660, 0.2930, 0.2830, 0.2067, 0.2066, 0.2840, 0.3085, 0.1932, 0.1735, 0.1930, 0.2198, 0.2386, 0.2127, 0.2219},
+      { 0.2658, 0.2710, 0.3328, 0.2948, 0.2974, 0.2598, 0.2738, 0.2830, 0.3033, 0.2098, 0.2310, 0.3166, 0.3529, 0.2367, 0.2211, 0.2481, 0.2413, 0.2642, 0.2389, 0.2337},
+      { 0.1673, 0.1538, 0.2602, 0.2292, 0.2270, 0.1896, 0.1862, 0.2067, 0.2098, 0.1869, 0.1686, 0.2572, 0.2723, 0.1391, 0.1197, 0.1653, 0.1779, 0.2066, 0.1929, 0.2137},
+      { 0.1769, 0.1810, 0.2731, 0.2294, 0.2472, 0.1938, 0.1963, 0.2066, 0.2310, 0.1686, 0.1986, 0.3091, 0.3255, 0.1623, 0.1403, 0.1707, 0.1967, 0.2279, 0.1969, 0.2222},
+      { 0.2632, 0.2912, 0.3725, 0.3627, 0.3929, 0.2792, 0.3246, 0.2840, 0.3166, 0.2572, 0.3091, 0.4158, 0.4503, 0.3680, 0.3568, 0.3865, 0.3846, 0.4341, 0.3051, 0.3961},
+      { 0.2503, 0.2916, 0.3724, 0.3145, 0.3906, 0.2897, 0.3283, 0.3085, 0.3529, 0.2723, 0.3255, 0.4503, 0.5031, 0.3680, 0.3613, 0.3938, 0.4105, 0.4707, 0.2947, 0.3877},
+      { 0.1131, 0.1719, 0.2979, 0.3334, 0.2932, 0.2096, 0.2931, 0.1932, 0.2367, 0.1391, 0.1623, 0.3680, 0.3680, 0.3826, 0.3563, 0.3496, 0.3276, 0.3677, 0.2390, 0.3576},
+      { 0.0924, 0.1492, 0.2956, 0.3472, 0.2728, 0.1832, 0.2718, 0.1735, 0.2211, 0.1197, 0.1403, 0.3568, 0.3613, 0.3563, 0.3616, 0.3458, 0.3274, 0.3689, 0.2173, 0.3500},
+      { 0.1280, 0.1781, 0.3093, 0.3192, 0.2921, 0.2044, 0.2695, 0.1930, 0.2481, 0.1653, 0.1707, 0.3865, 0.3938, 0.3496, 0.3458, 0.3641, 0.3383, 0.3884, 0.2485, 0.3379},
+      { 0.1407, 0.1752, 0.2960, 0.3481, 0.2918, 0.2092, 0.2624, 0.2198, 0.2413, 0.1779, 0.1967, 0.3846, 0.4105, 0.3276, 0.3274, 0.3383, 0.3752, 0.3991, 0.2452, 0.3401},
+      { 0.1493, 0.1947, 0.3179, 0.3188, 0.3298, 0.2429, 0.2957, 0.2386, 0.2642, 0.2066, 0.2279, 0.4341, 0.4707, 0.3677, 0.3689, 0.3884, 0.3991, 0.4529, 0.2699, 0.3859},
+      { 0.1581, 0.1958, 0.2920, 0.2817, 0.2684, 0.2115, 0.2358, 0.2127, 0.2389, 0.1929, 0.1969, 0.3051, 0.2947, 0.2390, 0.2173, 0.2485, 0.2452, 0.2699, 0.2797, 0.2740},
+      { 0.1570, 0.1593, 0.3020, 0.3387, 0.3075, 0.2301, 0.2801, 0.2219, 0.2337, 0.2137, 0.2222, 0.3961, 0.3877, 0.3576, 0.3500, 0.3379, 0.3401, 0.3859, 0.2740, 0.4893}},
+    {
+      { 0.1665, 0.1685, 0.4046, 0.3346, 0.2871, 0.2143, 0.2009, 0.2379, 0.2766, 0.1686, 0.1693, 0.2658, 0.2346, 0.1269, 0.1144, 0.0975, 0.1302, 0.1364, 0.1753, 0.1541},
+      { 0.1685, 0.1995, 0.4372, 0.3589, 0.2972, 0.2219, 0.2219, 0.2430, 0.2791, 0.1624, 0.1805, 0.2886, 0.2940, 0.1755, 0.1717, 0.1553, 0.1732, 0.1817, 0.2094, 0.1611},
+      { 0.4046, 0.4372, 0.2923, 0.2361, 0.3192, 0.2920, 0.3057, 0.3068, 0.3311, 0.2630, 0.2607, 0.3717, 0.3722, 0.2941, 0.3060, 0.3021, 0.3016, 0.3163, 0.2958, 0.3017},
+      { 0.3346, 0.3589, 0.2361, 0.2076, 0.2785, 0.2720, 0.3099, 0.2776, 0.2904, 0.2199, 0.2037, 0.3614, 0.3035, 0.3099, 0.3192, 0.3206, 0.3403, 0.3163, 0.2562, 0.3004},
+      { 0.2871, 0.2972, 0.3192, 0.2785, 0.3451, 0.2895, 0.3024, 0.2742, 0.2906, 0.2313, 0.2407, 0.3828, 0.3843, 0.2959, 0.2895, 0.2750, 0.2876, 0.3129, 0.2667, 0.2972},
+      { 0.2143, 0.2219, 0.2920, 0.2720, 0.2895, 0.2304, 0.2282, 0.2447, 0.2577, 0.1928, 0.1922, 0.2726, 0.2845, 0.2150, 0.2017, 0.1868, 0.2019, 0.2290, 0.2191, 0.2193},
+      { 0.2009, 0.2219, 0.3057, 0.3099, 0.3024, 0.2282, 0.2713, 0.2580, 0.2687, 0.1840, 0.1885, 0.3130, 0.3207, 0.2801, 0.2726, 0.2393, 0.2453, 0.2709, 0.2334, 0.2633},
+      { 0.2379, 0.2430, 0.3068, 0.2776, 0.2742, 0.2447, 0.2580, 0.2945, 0.2856, 0.2118, 0.2038, 0.2867, 0.3012, 0.2121, 0.2024, 0.1746, 0.2101, 0.2290, 0.2217, 0.2276},
+      { 0.2766, 0.2791, 0.3311, 0.2904, 0.2906, 0.2577, 0.2687, 0.2856, 0.3082, 0.2114, 0.2319, 0.3257, 0.3461, 0.2373, 0.2394, 0.2390, 0.2495, 0.2604, 0.2476, 0.2352},
+      { 0.1686, 0.1624, 0.2630, 0.2199, 0.2313, 0.1928, 0.1840, 0.2118, 0.2114, 0.1881, 0.1683, 0.2599, 0.2701, 0.1632, 0.1652, 0.1806, 0.2078, 0.2103, 0.2209, 0.2480},
+      { 0.1693, 0.1805, 0.2607, 0.2037, 0.2407, 0.1922, 0.1885, 0.2038, 0.2319, 0.1683, 0.1829, 0.3021, 0.3114, 0.1692, 0.1615, 0.1340, 0.1760, 0.2152, 0.1990, 0.2152},
+      { 0.2658, 0.2886, 0.3717, 0.3614, 0.3828, 0.2726, 0.3130, 0.2867, 0.3257, 0.2599, 0.3021, 0.4176, 0.4372, 0.3754, 0.3835, 0.3727, 0.3942, 0.4216, 0.3054, 0.3811},
+      { 0.2346, 0.2940, 0.3722, 0.3035, 0.3843, 0.2845, 0.3207, 0.3012, 0.3461, 0.2701, 0.3114, 0.4372, 0.4597, 0.3716, 0.3868, 0.3792, 0.4221, 0.4516, 0.2928, 0.3867},
+      { 0.1269, 0.1755, 0.2941, 0.3099, 0.2959, 0.2150, 0.2801, 0.2121, 0.2373, 0.1632, 0.1692, 0.3754, 0.3716, 0.3758, 0.3677, 0.3379, 0.3304, 0.3672, 0.2586, 0.3586},
+      { 0.1144, 0.1717, 0.3060, 0.3192, 0.2895, 0.2017, 0.2726, 0.2024, 0.2394, 0.1652, 0.1615, 0.3835, 0.3868, 0.3677, 0.3868, 0.3599, 0.3455, 0.3877, 0.2569, 0.3630},
+      { 0.0975, 0.1553, 0.3021, 0.3206, 0.2750, 0.1868, 0.2393, 0.1746, 0.2390, 0.1806, 0.1340, 0.3727, 0.3792, 0.3379, 0.3599, 0.3460, 0.3300, 0.3741, 0.2328, 0.3306},
+      { 0.1302, 0.1732, 0.3016, 0.3403, 0.2876, 0.2019, 0.2453, 0.2101, 0.2495, 0.2078, 0.1760, 0.3942, 0.4221, 0.3304, 0.3455, 0.3300, 0.3742, 0.3969, 0.2481, 0.3300},
+      { 0.1364, 0.1817, 0.3163, 0.3163, 0.3129, 0.2290, 0.2709, 0.2290, 0.2604, 0.2103, 0.2152, 0.4216, 0.4516, 0.3672, 0.3877, 0.3741, 0.3969, 0.4454, 0.2622, 0.3739},
+      { 0.1753, 0.2094, 0.2958, 0.2562, 0.2667, 0.2191, 0.2334, 0.2217, 0.2476, 0.2209, 0.1990, 0.3054, 0.2928, 0.2586, 0.2569, 0.2328, 0.2481, 0.2622, 0.2982, 0.2680},
+      { 0.1541, 0.1611, 0.3017, 0.3004, 0.2972, 0.2193, 0.2633, 0.2276, 0.2352, 0.2480, 0.2152, 0.3811, 0.3867, 0.3586, 0.3630, 0.3306, 0.3300, 0.3739, 0.2680, 0.4554}},
+    {
+      { 0.1338, 0.1521, 0.3918, 0.3310, 0.2922, 0.1963, 0.1915, 0.2333, 0.2451, 0.1550, 0.1755, 0.2711, 0.2500, 0.1180, 0.1076, 0.1146, 0.0613, 0.1415, 0.1537, 0.1427},
+      { 0.1521, 0.1797, 0.4280, 0.3597, 0.2881, 0.1996, 0.1990, 0.2289, 0.2484, 0.1370, 0.1662, 0.2838, 0.2751, 0.1608, 0.1619, 0.1665, 0.0999, 0.1802, 0.1875, 0.1375},
+      { 0.3918, 0.4280, 0.2946, 0.2509, 0.3100, 0.2846, 0.2983, 0.3026, 0.3279, 0.2454, 0.2570, 0.3730, 0.3605, 0.2877, 0.2977, 0.3074, 0.2729, 0.3224, 0.2770, 0.2913},
+      { 0.3310, 0.3597, 0.2509, 0.2196, 0.2851, 0.2906, 0.3304, 0.2760, 0.3159, 0.2216, 0.2211, 0.4040, 0.3270, 0.3305, 0.3481, 0.3403, 0.4273, 0.3535, 0.2913, 0.3567},
+      { 0.2922, 0.2881, 0.3100, 0.2851, 0.3236, 0.2806, 0.2938, 0.2673, 0.2792, 0.2172, 0.2426, 0.3925, 0.3997, 0.2892, 0.2936, 0.2916, 0.2603, 0.3317, 0.2354, 0.3034},
+      { 0.1963, 0.1996, 0.2846, 0.2906, 0.2806, 0.1998, 0.2180, 0.2306, 0.2400, 0.1736, 0.1754, 0.2597, 0.2749, 0.2096, 0.1980, 0.1943, 0.1429, 0.2328, 0.1882, 0.2144},
+      { 0.1915, 0.1990, 0.2983, 0.3304, 0.2938, 0.2180, 0.2625, 0.2499, 0.2569, 0.1724, 0.1836, 0.3029, 0.2983, 0.2643, 0.2602, 0.2408, 0.1979, 0.2724, 0.2019, 0.2559},
+      { 0.2333, 0.2289, 0.3026, 0.2760, 0.2673, 0.2306, 0.2499, 0.2778, 0.2701, 0.2018, 0.2014, 0.2910, 0.3198, 0.2074, 0.2047, 0.1921, 0.1499, 0.2352, 0.1932, 0.2145},
+      { 0.2451, 0.2484, 0.3279, 0.3159, 0.2792, 0.2400, 0.2569, 0.2701, 0.2817, 0.1914, 0.2076, 0.3118, 0.3262, 0.2391, 0.2393, 0.2421, 0.1996, 0.2728, 0.2236, 0.2232},
+      { 0.1550, 0.1370, 0.2454, 0.2216, 0.2172, 0.1736, 0.1724, 0.2018, 0.1914, 0.1648, 0.1436, 0.2565, 0.2612, 0.1579, 0.1603, 0.1868, 0.1505, 0.2030, 0.1844, 0.2103},
+      { 0.1755, 0.1662, 0.2570, 0.2211, 0.2426, 0.1754, 0.1836, 0.2014, 0.2076, 0.1436, 0.1853, 0.3045, 0.2981, 0.1679, 0.1641, 0.1667, 0.1031, 0.2045, 0.1680, 0.2017},
+      { 0.2711, 0.2838, 0.3730, 0.4040, 0.3925, 0.2597, 0.3029, 0.2910, 0.3118, 0.2565, 0.3045, 0.4185, 0.4473, 0.3605, 0.3758, 0.3805, 0.3552, 0.4283, 0.2831, 0.3796},
+      { 0.2500, 0.2751, 0.3605, 0.3270, 0.3997, 0.2749, 0.2983, 0.3198, 0.3262, 0.2612, 0.2981, 0.4473, 0.4888, 0.3737, 0.3867, 0.3760, 0.3983, 0.4700, 0.2725, 0.3835},
+      { 0.1180, 0.1608, 0.2877, 0.3305, 0.2892, 0.2096, 0.2643, 0.2074, 0.2391, 0.1579, 0.1679, 0.3605, 0.3737, 0.3428, 0.3451, 0.3291, 0.2822, 0.3592, 0.2325, 0.3474},
+      { 0.1076, 0.1619, 0.2977, 0.3481, 0.2936, 0.1980, 0.2602, 0.2047, 0.2393, 0.1603, 0.1641, 0.3758, 0.3867, 0.3451, 0.3711, 0.3604, 0.3117, 0.3839, 0.2357, 0.3463},
+      { 0.1146, 0.1665, 0.3074, 0.3403, 0.2916, 0.1943, 0.2408, 0.1921, 0.2421, 0.1868, 0.1667, 0.3805, 0.3760, 0.3291, 0.3604, 0.3536, 0.2963, 0.3866, 0.2384, 0.3332},
+      { 0.0613, 0.0999, 0.2729, 0.4273, 0.2603, 0.1429, 0.1979, 0.1499, 0.1996, 0.1505, 0.1031, 0.3552, 0.3983, 0.2822, 0.3117, 0.2963, 0.3116, 0.3606, 0.1653, 0.3012},
+      { 0.1415, 0.1802, 0.3224, 0.3535, 0.3317, 0.2328, 0.2724, 0.2352, 0.2728, 0.2030, 0.2045, 0.4283, 0.4700, 0.3592, 0.3839, 0.3866, 0.3606, 0.4620, 0.2488, 0.3847},
+      { 0.1537, 0.1875, 0.2770, 0.2913, 0.2354, 0.1882, 0.2019, 0.1932, 0.2236, 0.1844, 0.1680, 0.2831, 0.2725, 0.2325, 0.2357, 0.2384, 0.1653, 0.2488, 0.2580, 0.2345},
+      { 0.1427, 0.1375, 0.2913, 0.3567, 0.3034, 0.2144, 0.2559, 0.2145, 0.2232, 0.2103, 0.2017, 0.3796, 0.3835, 0.3474, 0.3463, 0.3332, 0.3012, 0.3847, 0.2345, 0.4419}},
+    {
+      { 0.1574, 0.1673, 0.4050, 0.3355, 0.2896, 0.2293, 0.2195, 0.2376, 0.2605, 0.1863, 0.1977, 0.2653, 0.2437, 0.1628, 0.1516, 0.1470, 0.1591, 0.1199, 0.1905, 0.1867},
+      { 0.1673, 0.1892, 0.4217, 0.3523, 0.2872, 0.2264, 0.2315, 0.2317, 0.2681, 0.1732, 0.1994, 0.2715, 0.2856, 0.2037, 0.1984, 0.1904, 0.1913, 0.1634, 0.2122, 0.1923},
+      { 0.4050, 0.4217, 0.3055, 0.2534, 0.3374, 0.3090, 0.3147, 0.3190, 0.3414, 0.2803, 0.2873, 0.3973, 0.4161, 0.3146, 0.3252, 0.3239, 0.3215, 0.3435, 0.3035, 0.3260},
+      { 0.3355, 0.3523, 0.2534, 0.2205, 0.3145, 0.2917, 0.3040, 0.2888, 0.2989, 0.2384, 0.2246, 0.4308, 0.3845, 0.3040, 0.3188, 0.3163, 0.3535, 0.3938, 0.2756, 0.3194},
+      { 0.2896, 0.2872, 0.3374, 0.3145, 0.3565, 0.3077, 0.3171, 0.2868, 0.2952, 0.2436, 0.2711, 0.3963, 0.4007, 0.3203, 0.3111, 0.3120, 0.3319, 0.3123, 0.2752, 0.3181},
+      { 0.2293, 0.2264, 0.3090, 0.2917, 0.3077, 0.2460, 0.2555, 0.2629, 0.2712, 0.2107, 0.2229, 0.2826, 0.3086, 0.2476, 0.2426, 0.2287, 0.2547, 0.2217, 0.2257, 0.2651},
+      { 0.2195, 0.2315, 0.3147, 0.3040, 0.3171, 0.2555, 0.2957, 0.2845, 0.2857, 0.2121, 0.2345, 0.3196, 0.3287, 0.3098, 0.3039, 0.2813, 0.2783, 0.2635, 0.2506, 0.3064},
+      { 0.2376, 0.2317, 0.3190, 0.2888, 0.2868, 0.2629, 0.2845, 0.3058, 0.2896, 0.2430, 0.2319, 0.2952, 0.3103, 0.2405, 0.2347, 0.2124, 0.2401, 0.2081, 0.2345, 0.2547},
+      { 0.2605, 0.2681, 0.3414, 0.2989, 0.2952, 0.2712, 0.2857, 0.2896, 0.3046, 0.2357, 0.2493, 0.3219, 0.3608, 0.2607, 0.2622, 0.2646, 0.2844, 0.2614, 0.2504, 0.2773},
+      { 0.1863, 0.1732, 0.2803, 0.2384, 0.2436, 0.2107, 0.2121, 0.2430, 0.2357, 0.1924, 0.2136, 0.2549, 0.2820, 0.2036, 0.2016, 0.2138, 0.2416, 0.1723, 0.2119, 0.2385},
+      { 0.1977, 0.1994, 0.2873, 0.2246, 0.2711, 0.2229, 0.2345, 0.2319, 0.2493, 0.2136, 0.2229, 0.2976, 0.3326, 0.2186, 0.2144, 0.2086, 0.2340, 0.1987, 0.2281, 0.2605},
+      { 0.2653, 0.2715, 0.3973, 0.4308, 0.3963, 0.2826, 0.3196, 0.2952, 0.3219, 0.2549, 0.2976, 0.4224, 0.4532, 0.3956, 0.4096, 0.4056, 0.4172, 0.4051, 0.2874, 0.3918},
+      { 0.2437, 0.2856, 0.4161, 0.3845, 0.4007, 0.3086, 0.3287, 0.3103, 0.3608, 0.2820, 0.3326, 0.4532, 0.4735, 0.4054, 0.4294, 0.4166, 0.4511, 0.4313, 0.3153, 0.4354},
+      { 0.1628, 0.2037, 0.3146, 0.3040, 0.3203, 0.2476, 0.3098, 0.2405, 0.2607, 0.2036, 0.2186, 0.3956, 0.4054, 0.4055, 0.4073, 0.3822, 0.3708, 0.3490, 0.2787, 0.3805},
+      { 0.1516, 0.1984, 0.3252, 0.3188, 0.3111, 0.2426, 0.3039, 0.2347, 0.2622, 0.2016, 0.2144, 0.4096, 0.4294, 0.4073, 0.4293, 0.4055, 0.3880, 0.3735, 0.2834, 0.3932},
+      { 0.1470, 0.1904, 0.3239, 0.3163, 0.3120, 0.2287, 0.2813, 0.2124, 0.2646, 0.2138, 0.2086, 0.4056, 0.4166, 0.3822, 0.4055, 0.3969, 0.3719, 0.3682, 0.2749, 0.3754},
+      { 0.1591, 0.1913, 0.3215, 0.3535, 0.3319, 0.2547, 0.2783, 0.2401, 0.2844, 0.2416, 0.2340, 0.4172, 0.4511, 0.3708, 0.3880, 0.3719, 0.4016, 0.4001, 0.2699, 0.3799},
+      { 0.1199, 0.1634, 0.3435, 0.3938, 0.3123, 0.2217, 0.2635, 0.2081, 0.2614, 0.1723, 0.1987, 0.4051, 0.4313, 0.3490, 0.3735, 0.3682, 0.4001, 0.4132, 0.2264, 0.3789},
+      { 0.1905, 0.2122, 0.3035, 0.2756, 0.2752, 0.2257, 0.2506, 0.2345, 0.2504, 0.2119, 0.2281, 0.2874, 0.3153, 0.2787, 0.2834, 0.2749, 0.2699, 0.2264, 0.2787, 0.2795},
+      { 0.1867, 0.1923, 0.3260, 0.3194, 0.3181, 0.2651, 0.3064, 0.2547, 0.2773, 0.2385, 0.2605, 0.3918, 0.4354, 0.3805, 0.3932, 0.3754, 0.3799, 0.3789, 0.2795, 0.5087}},
+    {
+      { 0.1389, 0.1534, 0.3669, 0.3175, 0.2581, 0.1710, 0.1710, 0.2178, 0.2832, 0.1139, 0.1360, 0.2383, 0.2167, 0.1191, 0.1337, 0.1412, 0.1505, 0.1641, 0.1050, 0.1171},
+      { 0.1534, 0.1903, 0.3907, 0.3153, 0.2574, 0.1632, 0.1827, 0.2235, 0.2716, 0.0976, 0.1410, 0.2627, 0.2727, 0.1663, 0.1802, 0.1950, 0.1766, 0.1918, 0.1310, 0.1055},
+      { 0.3669, 0.3907, 0.2644, 0.1989, 0.2866, 0.2550, 0.2611, 0.2712, 0.2967, 0.2181, 0.2442, 0.3531, 0.3442, 0.2780, 0.2942, 0.2955, 0.2839, 0.3035, 0.2463, 0.2649},
+      { 0.3175, 0.3153, 0.1989, 0.1620, 0.2472, 0.2984, 0.2828, 0.2499, 0.2451, 0.2501, 0.2119, 0.3319, 0.3026, 0.2883, 0.2817, 0.2562, 0.2913, 0.2756, 0.3015, 0.3073},
+      { 0.2581, 0.2574, 0.2866, 0.2472, 0.2981, 0.2459, 0.2605, 0.2546, 0.2599, 0.1964, 0.2110, 0.3575, 0.3758, 0.2682, 0.2765, 0.2812, 0.2842, 0.3074, 0.2061, 0.2566},
+      { 0.1710, 0.1632, 0.2550, 0.2984, 0.2459, 0.1850, 0.1846, 0.2186, 0.2095, 0.1474, 0.1470, 0.2507, 0.2565, 0.1904, 0.1942, 0.1870, 0.2004, 0.2298, 0.1426, 0.1764},
+      { 0.1710, 0.1827, 0.2611, 0.2828, 0.2605, 0.1846, 0.2194, 0.2311, 0.2267, 0.1505, 0.1580, 0.2724, 0.2796, 0.2371, 0.2434, 0.2242, 0.2184, 0.2594, 0.1688, 0.2106},
+      { 0.2178, 0.2235, 0.2712, 0.2499, 0.2546, 0.2186, 0.2311, 0.2634, 0.2679, 0.1658, 0.1779, 0.2728, 0.2993, 0.1999, 0.2093, 0.1997, 0.2162, 0.2307, 0.1631, 0.2047},
+      { 0.2832, 0.2716, 0.2967, 0.2451, 0.2599, 0.2095, 0.2267, 0.2679, 0.2880, 0.1611, 0.1878, 0.2970, 0.3283, 0.2140, 0.2310, 0.2438, 0.2340, 0.2584, 0.1853, 0.1807},
+      { 0.1139, 0.0976, 0.2181, 0.2501, 0.1964, 0.1474, 0.1505, 0.1658, 0.1611, 0.1268, 0.1179, 0.2410, 0.2366, 0.1664, 0.1762, 0.1892, 0.2122, 0.2252, 0.1591, 0.2253},
+      { 0.1360, 0.1410, 0.2442, 0.2119, 0.2110, 0.1470, 0.1580, 0.1779, 0.1878, 0.1179, 0.1645, 0.2744, 0.2965, 0.1486, 0.1619, 0.1713, 0.1852, 0.2321, 0.1147, 0.1624},
+      { 0.2383, 0.2627, 0.3531, 0.3319, 0.3575, 0.2507, 0.2724, 0.2728, 0.2970, 0.2410, 0.2744, 0.3698, 0.4002, 0.3287, 0.3499, 0.3535, 0.3594, 0.3818, 0.2474, 0.3279},
+      { 0.2167, 0.2727, 0.3442, 0.3026, 0.3758, 0.2565, 0.2796, 0.2993, 0.3283, 0.2366, 0.2965, 0.4002, 0.4426, 0.3102, 0.3407, 0.3444, 0.3644, 0.4232, 0.2270, 0.3197},
+      { 0.1191, 0.1663, 0.2780, 0.2883, 0.2682, 0.1904, 0.2371, 0.1999, 0.2140, 0.1664, 0.1486, 0.3287, 0.3102, 0.3169, 0.3187, 0.3005, 0.2768, 0.3202, 0.2202, 0.2990},
+      { 0.1337, 0.1802, 0.2942, 0.2817, 0.2765, 0.1942, 0.2434, 0.2093, 0.2310, 0.1762, 0.1619, 0.3499, 0.3407, 0.3187, 0.3336, 0.3209, 0.2922, 0.3390, 0.2340, 0.2990},
+      { 0.1412, 0.1950, 0.2955, 0.2562, 0.2812, 0.1870, 0.2242, 0.1997, 0.2438, 0.1892, 0.1713, 0.3535, 0.3444, 0.3005, 0.3209, 0.3201, 0.2906, 0.3376, 0.2290, 0.2793},
+      { 0.1505, 0.1766, 0.2839, 0.2913, 0.2842, 0.2004, 0.2184, 0.2162, 0.2340, 0.2122, 0.1852, 0.3594, 0.3644, 0.2768, 0.2922, 0.2906, 0.3283, 0.3436, 0.2269, 0.2946},
+      { 0.1641, 0.1918, 0.3035, 0.2756, 0.3074, 0.2298, 0.2594, 0.2307, 0.2584, 0.2252, 0.2321, 0.3818, 0.4232, 0.3202, 0.3390, 0.3376, 0.3436, 0.4075, 0.2279, 0.3126},
+      { 0.1050, 0.1310, 0.2463, 0.3015, 0.2061, 0.1426, 0.1688, 0.1631, 0.1853, 0.1591, 0.1147, 0.2474, 0.2270, 0.2202, 0.2340, 0.2290, 0.2269, 0.2279, 0.2119, 0.2134},
+      { 0.1171, 0.1055, 0.2649, 0.3073, 0.2566, 0.1764, 0.2106, 0.2047, 0.1807, 0.2253, 0.1624, 0.3279, 0.3197, 0.2990, 0.2990, 0.2793, 0.2946, 0.3126, 0.2134, 0.4106}},
+    {
+      { 0.0774, 0.0807, 0.3682, 0.3395, 0.2720, 0.1338, 0.1366, 0.2080, 0.2155, 0.1168, 0.1272, 0.2527, 0.2288, 0.1059, 0.1259, 0.1290, 0.1397, 0.1478, 0.1004, 0.0716},
+      { 0.0807, 0.1179, 0.3934, 0.3322, 0.2455, 0.1221, 0.1431, 0.1670, 0.2233, 0.0897, 0.1137, 0.2782, 0.2540, 0.1437, 0.1527, 0.1600, 0.1470, 0.1751, 0.0990, 0.0832},
+      { 0.3682, 0.3934, 0.2746, 0.2323, 0.3230, 0.2509, 0.2808, 0.2860, 0.3135, 0.2269, 0.2523, 0.3707, 0.3802, 0.2804, 0.3009, 0.2960, 0.2949, 0.3245, 0.2501, 0.2587},
+      { 0.3395, 0.3322, 0.2323, 0.1859, 0.3115, 0.3350, 0.3552, 0.3093, 0.2699, 0.2556, 0.2205, 0.3912, 0.3466, 0.3396, 0.3387, 0.3004, 0.3567, 0.3194, 0.3073, 0.3330},
+      { 0.2720, 0.2455, 0.3230, 0.3115, 0.3250, 0.2583, 0.2884, 0.2611, 0.2814, 0.2238, 0.2369, 0.3822, 0.3713, 0.2763, 0.2938, 0.2936, 0.2906, 0.3444, 0.2184, 0.2938},
+      { 0.1338, 0.1221, 0.2509, 0.3350, 0.2583, 0.1781, 0.2011, 0.2203, 0.1964, 0.1491, 0.1586, 0.2630, 0.2757, 0.2149, 0.2127, 0.2098, 0.2084, 0.2478, 0.1431, 0.1868},
+      { 0.1366, 0.1431, 0.2808, 0.3552, 0.2884, 0.2011, 0.2526, 0.2112, 0.2251, 0.1640, 0.1695, 0.3063, 0.3171, 0.2589, 0.2670, 0.2328, 0.2266, 0.2731, 0.1811, 0.2007},
+      { 0.2080, 0.1670, 0.2860, 0.3093, 0.2611, 0.2203, 0.2112, 0.3174, 0.2471, 0.1996, 0.1861, 0.2867, 0.3295, 0.1964, 0.2167, 0.2076, 0.2442, 0.2455, 0.1804, 0.1777},
+      { 0.2155, 0.2233, 0.3135, 0.2699, 0.2814, 0.1964, 0.2251, 0.2471, 0.2714, 0.1713, 0.1976, 0.3094, 0.3374, 0.2180, 0.2162, 0.2376, 0.2261, 0.2537, 0.1762, 0.2033},
+      { 0.1168, 0.0897, 0.2269, 0.2556, 0.2238, 0.1491, 0.1640, 0.1996, 0.1713, 0.1498, 0.1328, 0.2590, 0.2748, 0.1692, 0.1798, 0.2158, 0.2366, 0.2389, 0.1783, 0.1931},
+      { 0.1272, 0.1137, 0.2523, 0.2205, 0.2369, 0.1586, 0.1695, 0.1861, 0.1976, 0.1328, 0.1717, 0.3199, 0.3312, 0.1649, 0.1818, 0.1933, 0.1967, 0.2380, 0.1333, 0.0841},
+      { 0.2527, 0.2782, 0.3707, 0.3912, 0.3822, 0.2630, 0.3063, 0.2867, 0.3094, 0.2590, 0.3199, 0.4125, 0.4406, 0.3512, 0.3749, 0.3710, 0.3635, 0.4305, 0.2752, 0.3105},
+      { 0.2288, 0.2540, 0.3802, 0.3466, 0.3713, 0.2757, 0.3171, 0.3295, 0.3374, 0.2748, 0.3312, 0.4406, 0.4808, 0.3621, 0.3757, 0.3663, 0.4235, 0.4279, 0.2687, 0.2746},
+      { 0.1059, 0.1437, 0.2804, 0.3396, 0.2763, 0.2149, 0.2589, 0.1964, 0.2180, 0.1692, 0.1649, 0.3512, 0.3621, 0.3462, 0.3463, 0.3125, 0.3146, 0.3526, 0.2379, 0.2591},
+      { 0.1259, 0.1527, 0.3009, 0.3387, 0.2938, 0.2127, 0.2670, 0.2167, 0.2162, 0.1798, 0.1818, 0.3749, 0.3757, 0.3463, 0.3590, 0.3345, 0.3251, 0.3736, 0.2597, 0.2716},
+      { 0.1290, 0.1600, 0.2960, 0.3004, 0.2936, 0.2098, 0.2328, 0.2076, 0.2376, 0.2158, 0.1933, 0.3710, 0.3663, 0.3125, 0.3345, 0.3338, 0.3009, 0.3658, 0.2439, 0.2448},
+      { 0.1397, 0.1470, 0.2949, 0.3567, 0.2906, 0.2084, 0.2266, 0.2442, 0.2261, 0.2366, 0.1967, 0.3635, 0.4235, 0.3146, 0.3251, 0.3009, 0.3532, 0.3864, 0.2325, 0.2985},
+      { 0.1478, 0.1751, 0.3245, 0.3194, 0.3444, 0.2478, 0.2731, 0.2455, 0.2537, 0.2389, 0.2380, 0.4305, 0.4279, 0.3526, 0.3736, 0.3658, 0.3864, 0.4518, 0.2603, 0.3176},
+      { 0.1004, 0.0990, 0.2501, 0.3073, 0.2184, 0.1431, 0.1811, 0.1804, 0.1762, 0.1783, 0.1333, 0.2752, 0.2687, 0.2379, 0.2597, 0.2439, 0.2325, 0.2603, 0.1867, 0.1673},
+      { 0.0716, 0.0832, 0.2587, 0.3330, 0.2938, 0.1868, 0.2007, 0.1777, 0.2033, 0.1931, 0.0841, 0.3105, 0.2746, 0.2591, 0.2716, 0.2448, 0.2985, 0.3176, 0.1673, 0.4135}}},
+  {
+    {
+      { 0.2375, 0.1787, 0.4383, 0.3840, 0.7230, 0.3178, 0.3234, 0.3885, 0.3477, 0.2654, 0.2655, 0.4401, 0.4542, 0.3054, 0.3136, 0.3012, 0.3473, 0.3731, 0.2558, 0.4048},
+      { 0.1787, 0.2075, 0.4373, 0.3852, 0.3251, 0.2844, 0.3001, 0.2999, 0.2870, 0.2135, 0.2442, 0.3524, 0.3757, 0.3067, 0.3085, 0.3012, 0.2952, 0.3073, 0.2677, 0.2983},
+      { 0.4383, 0.4373, 0.3023, 0.2397, 0.1850, 0.3098, 0.3314, 0.3149, 0.3365, 0.2896, 0.2792, 0.3894, 0.4084, 0.3581, 0.3559, 0.3590, 0.3471, 0.3672, 0.3046, 0.3864},
+      { 0.3840, 0.3852, 0.2397, 0.2113, 0.1132, 0.2707, 0.2936, 0.2768, 0.2856, 0.2624, 0.2141, 0.3345, 0.3277, 0.2857, 0.2929, 0.2871, 0.2922, 0.2896, 0.2581, 0.2720},
+      { 0.7230, 0.3251, 0.1850, 0.1132, 0.3965, 0.3019, 0.2838, 0.3473, 0.2253, 0.2464, 0.1674, 0.3575, 0.3728, 0.2719, 0.2788, 0.2728, 0.3605, 0.3611, 0.2054, 0.5112},
+      { 0.3178, 0.2844, 0.3098, 0.2707, 0.3019, 0.2744, 0.2793, 0.2943, 0.2876, 0.2491, 0.2577, 0.3342, 0.3661, 0.2925, 0.2877, 0.2804, 0.3066, 0.3254, 0.2592, 0.3183},
+      { 0.3234, 0.3001, 0.3314, 0.2936, 0.2838, 0.2793, 0.3366, 0.3035, 0.3180, 0.2467, 0.2623, 0.3335, 0.3602, 0.3436, 0.3452, 0.3244, 0.3281, 0.3286, 0.2580, 0.3384},
+      { 0.3885, 0.2999, 0.3149, 0.2768, 0.3473, 0.2943, 0.3035, 0.3742, 0.3273, 0.2712, 0.2749, 0.3586, 0.3986, 0.3023, 0.3135, 0.3020, 0.3345, 0.3451, 0.2625, 0.3336},
+      { 0.3477, 0.2870, 0.3365, 0.2856, 0.2253, 0.2876, 0.3180, 0.3273, 0.3095, 0.2549, 0.2621, 0.3374, 0.3924, 0.3179, 0.3408, 0.3318, 0.3595, 0.3416, 0.2758, 0.3341},
+      { 0.2654, 0.2135, 0.2896, 0.2624, 0.2464, 0.2491, 0.2467, 0.2712, 0.2549, 0.2299, 0.2449, 0.3067, 0.3300, 0.2614, 0.2555, 0.2634, 0.2903, 0.2916, 0.2328, 0.3087},
+      { 0.2655, 0.2442, 0.2792, 0.2141, 0.1674, 0.2577, 0.2623, 0.2749, 0.2621, 0.2449, 0.2591, 0.3435, 0.3875, 0.2660, 0.2746, 0.2772, 0.3013, 0.3252, 0.2498, 0.2828},
+      { 0.4401, 0.3524, 0.3894, 0.3345, 0.3575, 0.3342, 0.3335, 0.3586, 0.3374, 0.3067, 0.3435, 0.4534, 0.5101, 0.4246, 0.4321, 0.4154, 0.4336, 0.4831, 0.3183, 0.4622},
+      { 0.4542, 0.3757, 0.4084, 0.3277, 0.3728, 0.3661, 0.3602, 0.3986, 0.3924, 0.3300, 0.3875, 0.5101, 0.5912, 0.4218, 0.4614, 0.4338, 0.5041, 0.5143, 0.3326, 0.4504},
+      { 0.3054, 0.3067, 0.3581, 0.2857, 0.2719, 0.2925, 0.3436, 0.3023, 0.3179, 0.2614, 0.2660, 0.4246, 0.4218, 0.4194, 0.4241, 0.3989, 0.3943, 0.4094, 0.3000, 0.3749},
+      { 0.3136, 0.3085, 0.3559, 0.2929, 0.2788, 0.2877, 0.3452, 0.3135, 0.3408, 0.2555, 0.2746, 0.4321, 0.4614, 0.4241, 0.4483, 0.4140, 0.4157, 0.4120, 0.3010, 0.3994},
+      { 0.3012, 0.3012, 0.3590, 0.2871, 0.2728, 0.2804, 0.3244, 0.3020, 0.3318, 0.2634, 0.2772, 0.4154, 0.4338, 0.3989, 0.4140, 0.4107, 0.4080, 0.4243, 0.3103, 0.3741},
+      { 0.3473, 0.2952, 0.3471, 0.2922, 0.3605, 0.3066, 0.3281, 0.3345, 0.3595, 0.2903, 0.3013, 0.4336, 0.5041, 0.3943, 0.4157, 0.4080, 0.4364, 0.4557, 0.3265, 0.4270},
+      { 0.3731, 0.3073, 0.3672, 0.2896, 0.3611, 0.3254, 0.3286, 0.3451, 0.3416, 0.2916, 0.3252, 0.4831, 0.5143, 0.4094, 0.4120, 0.4243, 0.4557, 0.4857, 0.3277, 0.4385},
+      { 0.2558, 0.2677, 0.3046, 0.2581, 0.2054, 0.2592, 0.2580, 0.2625, 0.2758, 0.2328, 0.2498, 0.3183, 0.3326, 0.3000, 0.3010, 0.3103, 0.3265, 0.3277, 0.2965, 0.2855},
+      { 0.4048, 0.2983, 0.3864, 0.2720, 0.5112, 0.3183, 0.3384, 0.3336, 0.3341, 0.3087, 0.2828, 0.4622, 0.4504, 0.3749, 0.3994, 0.3741, 0.4270, 0.4385, 0.2855, 0.6043}},
+    {
+      { 0.1934, 0.2016, 0.4235, 0.3553, 0.3251, 0.2724, 0.2833, 0.2845, 0.3000, 0.2531, 0.2218, 0.3395, 0.3114, 0.2536, 0.2634, 0.2608, 0.2890, 0.2810, 0.2480, 0.2968},
+      { 0.2016, 0.2110, 0.4390, 0.3670, 0.6071, 0.3003, 0.3062, 0.3327, 0.3435, 0.2381, 0.2346, 0.4095, 0.3936, 0.3003, 0.3190, 0.3121, 0.3351, 0.3600, 0.2734, 0.3250},
+      { 0.4235, 0.4390, 0.2899, 0.2352, 0.1692, 0.3047, 0.3265, 0.2913, 0.3200, 0.2669, 0.2608, 0.3746, 0.3866, 0.3418, 0.3610, 0.3638, 0.3486, 0.3573, 0.3041, 0.3319},
+      { 0.3553, 0.3670, 0.2352, 0.2066, 0.0848, 0.2622, 0.2895, 0.2586, 0.2834, 0.2100, 0.1970, 0.3370, 0.3247, 0.2797, 0.2905, 0.2972, 0.2881, 0.2872, 0.2574, 0.2455},
+      { 0.3251, 0.6071, 0.1692, 0.0848, 0.3794, 0.2222, 0.2433, 0.2073, 0.2949, 0.2170, 0.1618, 0.3344, 0.3684, 0.2755, 0.2835, 0.2631, 0.3536, 0.3533, 0.1635, 0.4012},
+      { 0.2724, 0.3003, 0.3047, 0.2622, 0.2222, 0.2725, 0.2874, 0.2839, 0.2877, 0.2325, 0.2346, 0.3094, 0.3374, 0.2825, 0.2818, 0.2785, 0.2947, 0.3159, 0.2484, 0.3086},
+      { 0.2833, 0.3062, 0.3265, 0.2895, 0.2433, 0.2874, 0.3501, 0.3003, 0.3227, 0.2411, 0.2381, 0.3457, 0.3457, 0.3385, 0.3518, 0.3190, 0.3362, 0.3309, 0.2561, 0.3385},
+      { 0.2845, 0.3327, 0.2913, 0.2586, 0.2073, 0.2839, 0.3003, 0.3245, 0.3217, 0.2522, 0.2523, 0.3267, 0.3521, 0.2928, 0.3008, 0.2783, 0.3059, 0.3197, 0.2463, 0.3103},
+      { 0.3000, 0.3435, 0.3200, 0.2834, 0.2949, 0.2877, 0.3227, 0.3217, 0.3214, 0.2393, 0.2385, 0.3616, 0.3979, 0.3180, 0.3317, 0.3354, 0.3697, 0.3546, 0.2779, 0.3267},
+      { 0.2531, 0.2381, 0.2669, 0.2100, 0.2170, 0.2325, 0.2411, 0.2522, 0.2393, 0.2358, 0.2212, 0.2826, 0.3221, 0.2429, 0.2578, 0.2549, 0.2766, 0.2857, 0.2208, 0.2938},
+      { 0.2218, 0.2346, 0.2608, 0.1970, 0.1618, 0.2346, 0.2381, 0.2523, 0.2385, 0.2212, 0.2471, 0.3275, 0.3529, 0.2477, 0.2575, 0.2690, 0.2924, 0.3000, 0.2443, 0.2930},
+      { 0.3395, 0.4095, 0.3746, 0.3370, 0.3344, 0.3094, 0.3457, 0.3267, 0.3616, 0.2826, 0.3275, 0.4382, 0.4801, 0.4148, 0.4315, 0.4283, 0.4501, 0.4764, 0.3031, 0.4631},
+      { 0.3114, 0.3936, 0.3866, 0.3247, 0.3684, 0.3374, 0.3457, 0.3521, 0.3979, 0.3221, 0.3529, 0.4801, 0.4842, 0.4020, 0.4457, 0.4169, 0.4642, 0.4950, 0.3149, 0.4898},
+      { 0.2536, 0.3003, 0.3418, 0.2797, 0.2755, 0.2825, 0.3385, 0.2928, 0.3180, 0.2429, 0.2477, 0.4148, 0.4020, 0.4110, 0.4157, 0.3932, 0.3813, 0.4048, 0.2859, 0.3794},
+      { 0.2634, 0.3190, 0.3610, 0.2905, 0.2835, 0.2818, 0.3518, 0.3008, 0.3317, 0.2578, 0.2575, 0.4315, 0.4457, 0.4157, 0.4373, 0.4167, 0.4192, 0.4289, 0.2991, 0.3849},
+      { 0.2608, 0.3121, 0.3638, 0.2972, 0.2631, 0.2785, 0.3190, 0.2783, 0.3354, 0.2549, 0.2690, 0.4283, 0.4169, 0.3932, 0.4167, 0.4148, 0.4058, 0.4309, 0.3058, 0.3740},
+      { 0.2890, 0.3351, 0.3486, 0.2881, 0.3536, 0.2947, 0.3362, 0.3059, 0.3697, 0.2766, 0.2924, 0.4501, 0.4642, 0.3813, 0.4192, 0.4058, 0.4569, 0.4552, 0.3105, 0.4202},
+      { 0.2810, 0.3600, 0.3573, 0.2872, 0.3533, 0.3159, 0.3309, 0.3197, 0.3546, 0.2857, 0.3000, 0.4764, 0.4950, 0.4048, 0.4289, 0.4309, 0.4552, 0.5043, 0.3175, 0.4523},
+      { 0.2480, 0.2734, 0.3041, 0.2574, 0.1635, 0.2484, 0.2561, 0.2463, 0.2779, 0.2208, 0.2443, 0.3031, 0.3149, 0.2859, 0.2991, 0.3058, 0.3105, 0.3175, 0.3082, 0.2865},
+      { 0.2968, 0.3250, 0.3319, 0.2455, 0.4012, 0.3086, 0.3385, 0.3103, 0.3267, 0.2938, 0.2930, 0.4631, 0.4898, 0.3794, 0.3849, 0.3740, 0.4202, 0.4523, 0.2865, 0.4915}},
+    {
+      { 0.2066, 0.1802, 0.4110, 0.3933, 0.1850, 0.2877, 0.2817, 0.2871, 0.2889, 0.2537, 0.2447, 0.3081, 0.3216, 0.2624, 0.2612, 0.2562, 0.2767, 0.2665, 0.2535, 0.2776},
+      { 0.1802, 0.1877, 0.3900, 0.3779, 0.1692, 0.2660, 0.2889, 0.2553, 0.2698, 0.2029, 0.2336, 0.3117, 0.3381, 0.2852, 0.2903, 0.2855, 0.2809, 0.2793, 0.2589, 0.2707},
+      { 0.4110, 0.3900, 0.3827, 0.2759, 0.5689, 0.3668, 0.3583, 0.4041, 0.4167, 0.3232, 0.3175, 0.4791, 0.5088, 0.3560, 0.3737, 0.3758, 0.3982, 0.4491, 0.3261, 0.3941},
+      { 0.3933, 0.3779, 0.2759, 0.2378, 0.2348, 0.2961, 0.3124, 0.3032, 0.3039, 0.2571, 0.2543, 0.3883, 0.3894, 0.3150, 0.3224, 0.3192, 0.3100, 0.3374, 0.2866, 0.3230},
+      { 0.1850, 0.1692, 0.5689, 0.2348, 0.3694, 0.2474, 0.2492, 0.2514, 0.2452, 0.2263, 0.2290, 0.3574, 0.4005, 0.2886, 0.3070, 0.2889, 0.3416, 0.3636, 0.1867, 0.3642},
+      { 0.2877, 0.2660, 0.3668, 0.2961, 0.2474, 0.3111, 0.3072, 0.3056, 0.2946, 0.2758, 0.2708, 0.3335, 0.3538, 0.3084, 0.3086, 0.2996, 0.3174, 0.3301, 0.2778, 0.3250},
+      { 0.2817, 0.2889, 0.3583, 0.3124, 0.2492, 0.3072, 0.3519, 0.3147, 0.3218, 0.2649, 0.2695, 0.3501, 0.3790, 0.3453, 0.3452, 0.3278, 0.3360, 0.3409, 0.2743, 0.3400},
+      { 0.2871, 0.2553, 0.4041, 0.3032, 0.2514, 0.3056, 0.3147, 0.3370, 0.3107, 0.2769, 0.2875, 0.3558, 0.3794, 0.3072, 0.3155, 0.2978, 0.3283, 0.3548, 0.2695, 0.3547},
+      { 0.2889, 0.2698, 0.4167, 0.3039, 0.2452, 0.2946, 0.3218, 0.3107, 0.3116, 0.2622, 0.2917, 0.3563, 0.4026, 0.3252, 0.3396, 0.3331, 0.3716, 0.3601, 0.2881, 0.3328},
+      { 0.2537, 0.2029, 0.3232, 0.2571, 0.2263, 0.2758, 0.2649, 0.2769, 0.2622, 0.2818, 0.2527, 0.3150, 0.3507, 0.2708, 0.2751, 0.2731, 0.3135, 0.3083, 0.2601, 0.3045},
+      { 0.2447, 0.2336, 0.3175, 0.2543, 0.2290, 0.2708, 0.2695, 0.2875, 0.2917, 0.2527, 0.2949, 0.3670, 0.3975, 0.2795, 0.2778, 0.2959, 0.3277, 0.3410, 0.2676, 0.3117},
+      { 0.3081, 0.3117, 0.4791, 0.3883, 0.3574, 0.3335, 0.3501, 0.3558, 0.3563, 0.3150, 0.3670, 0.4489, 0.4768, 0.4099, 0.4295, 0.4188, 0.4573, 0.4644, 0.3241, 0.4459},
+      { 0.3216, 0.3381, 0.5088, 0.3894, 0.4005, 0.3538, 0.3790, 0.3794, 0.4026, 0.3507, 0.3975, 0.4768, 0.5539, 0.4160, 0.4546, 0.4324, 0.4881, 0.4905, 0.3330, 0.4988},
+      { 0.2624, 0.2852, 0.3560, 0.3150, 0.2886, 0.3084, 0.3453, 0.3072, 0.3252, 0.2708, 0.2795, 0.4099, 0.4160, 0.4048, 0.4118, 0.3903, 0.4011, 0.4027, 0.3079, 0.3800},
+      { 0.2612, 0.2903, 0.3737, 0.3224, 0.3070, 0.3086, 0.3452, 0.3155, 0.3396, 0.2751, 0.2778, 0.4295, 0.4546, 0.4118, 0.4264, 0.4033, 0.4185, 0.4258, 0.3196, 0.3929},
+      { 0.2562, 0.2855, 0.3758, 0.3192, 0.2889, 0.2996, 0.3278, 0.2978, 0.3331, 0.2731, 0.2959, 0.4188, 0.4324, 0.3903, 0.4033, 0.4016, 0.3947, 0.4090, 0.3192, 0.3777},
+      { 0.2767, 0.2809, 0.3982, 0.3100, 0.3416, 0.3174, 0.3360, 0.3283, 0.3716, 0.3135, 0.3277, 0.4573, 0.4881, 0.4011, 0.4185, 0.3947, 0.4813, 0.4592, 0.3205, 0.4094},
+      { 0.2665, 0.2793, 0.4491, 0.3374, 0.3636, 0.3301, 0.3409, 0.3548, 0.3601, 0.3083, 0.3410, 0.4644, 0.4905, 0.4027, 0.4258, 0.4090, 0.4592, 0.4955, 0.3171, 0.4377},
+      { 0.2535, 0.2589, 0.3261, 0.2866, 0.1867, 0.2778, 0.2743, 0.2695, 0.2881, 0.2601, 0.2676, 0.3241, 0.3330, 0.3079, 0.3196, 0.3192, 0.3205, 0.3171, 0.3127, 0.3118},
+      { 0.2776, 0.2707, 0.3941, 0.3230, 0.3642, 0.3250, 0.3400, 0.3547, 0.3328, 0.3045, 0.3117, 0.4459, 0.4988, 0.3800, 0.3929, 0.3777, 0.4094, 0.4377, 0.3118, 0.5183}},
+    {
+      { 0.1264, 0.1176, 0.3765, 0.3347, 0.1132, 0.2033, 0.2253, 0.2213, 0.2269, 0.1679, 0.1835, 0.2479, 0.2352, 0.2030, 0.1999, 0.1928, 0.2101, 0.2036, 0.1804, 0.2262},
+      { 0.1176, 0.1423, 0.3835, 0.3186, 0.0848, 0.2062, 0.2281, 0.1979, 0.2232, 0.1346, 0.1692, 0.2647, 0.2582, 0.2323, 0.2354, 0.2348, 0.2324, 0.2217, 0.2124, 0.2026},
+      { 0.3765, 0.3835, 0.2880, 0.2381, 0.2348, 0.2830, 0.3018, 0.2981, 0.3073, 0.2494, 0.2575, 0.3743, 0.3986, 0.3217, 0.3320, 0.3325, 0.3164, 0.3476, 0.2820, 0.3204},
+      { 0.3347, 0.3186, 0.2381, 0.1924, 0.3918, 0.2611, 0.2794, 0.3078, 0.2978, 0.1990, 0.2001, 0.3891, 0.3592, 0.2838, 0.2929, 0.2785, 0.2851, 0.3145, 0.2472, 0.3115},
+      { 0.1132, 0.0848, 0.2348, 0.3918, 0.2581, 0.1544, 0.1879, 0.1529, 0.1519, 0.1411, 0.1418, 0.2768, 0.3269, 0.2221, 0.2494, 0.2112, 0.2675, 0.2756, 0.1052, 0.2880},
+      { 0.2033, 0.2062, 0.2830, 0.2611, 0.1544, 0.2229, 0.2413, 0.2297, 0.2298, 0.1852, 0.1936, 0.2585, 0.2676, 0.2483, 0.2409, 0.2226, 0.2405, 0.2583, 0.2016, 0.2487},
+      { 0.2253, 0.2281, 0.3018, 0.2794, 0.1879, 0.2413, 0.2907, 0.2638, 0.2657, 0.1861, 0.1913, 0.2799, 0.2861, 0.2902, 0.2921, 0.2646, 0.2661, 0.2705, 0.2112, 0.2675},
+      { 0.2213, 0.1979, 0.2981, 0.3078, 0.1529, 0.2297, 0.2638, 0.2748, 0.2455, 0.2024, 0.2095, 0.2818, 0.2966, 0.2574, 0.2631, 0.2390, 0.2546, 0.2788, 0.2029, 0.2960},
+      { 0.2269, 0.2232, 0.3073, 0.2978, 0.1519, 0.2298, 0.2657, 0.2455, 0.2564, 0.1904, 0.2068, 0.3045, 0.3237, 0.2674, 0.2876, 0.2759, 0.2988, 0.2992, 0.2309, 0.2613},
+      { 0.1679, 0.1346, 0.2494, 0.1990, 0.1411, 0.1852, 0.1861, 0.2024, 0.1904, 0.1654, 0.1895, 0.2485, 0.2521, 0.2084, 0.2119, 0.2061, 0.2243, 0.2370, 0.1752, 0.2194},
+      { 0.1835, 0.1692, 0.2575, 0.2001, 0.1418, 0.1936, 0.1913, 0.2095, 0.2068, 0.1895, 0.2266, 0.2980, 0.3096, 0.2062, 0.2169, 0.2237, 0.2587, 0.2710, 0.2061, 0.2398},
+      { 0.2479, 0.2647, 0.3743, 0.3891, 0.2768, 0.2585, 0.2799, 0.2818, 0.3045, 0.2485, 0.2980, 0.3968, 0.3943, 0.3623, 0.3772, 0.3682, 0.3939, 0.4061, 0.2596, 0.3582},
+      { 0.2352, 0.2582, 0.3986, 0.3592, 0.3269, 0.2676, 0.2861, 0.2966, 0.3237, 0.2521, 0.3096, 0.3943, 0.4481, 0.3506, 0.3928, 0.3831, 0.4364, 0.4376, 0.2680, 0.4059},
+      { 0.2030, 0.2323, 0.3217, 0.2838, 0.2221, 0.2483, 0.2902, 0.2574, 0.2674, 0.2084, 0.2062, 0.3623, 0.3506, 0.3479, 0.3479, 0.3255, 0.3350, 0.3590, 0.2541, 0.3154},
+      { 0.1999, 0.2354, 0.3320, 0.2929, 0.2494, 0.2409, 0.2921, 0.2631, 0.2876, 0.2119, 0.2169, 0.3772, 0.3928, 0.3479, 0.3709, 0.3456, 0.3432, 0.3684, 0.2586, 0.3370},
+      { 0.1928, 0.2348, 0.3325, 0.2785, 0.2112, 0.2226, 0.2646, 0.2390, 0.2759, 0.2061, 0.2237, 0.3682, 0.3831, 0.3255, 0.3456, 0.3463, 0.3259, 0.3612, 0.2585, 0.3375},
+      { 0.2101, 0.2324, 0.3164, 0.2851, 0.2675, 0.2405, 0.2661, 0.2546, 0.2988, 0.2243, 0.2587, 0.3939, 0.4364, 0.3350, 0.3432, 0.3259, 0.3969, 0.3925, 0.2505, 0.3599},
+      { 0.2036, 0.2217, 0.3476, 0.3145, 0.2756, 0.2583, 0.2705, 0.2788, 0.2992, 0.2370, 0.2710, 0.4061, 0.4376, 0.3590, 0.3684, 0.3612, 0.3925, 0.4188, 0.2599, 0.3676},
+      { 0.1804, 0.2124, 0.2820, 0.2472, 0.1052, 0.2016, 0.2112, 0.2029, 0.2309, 0.1752, 0.2061, 0.2596, 0.2680, 0.2541, 0.2586, 0.2585, 0.2505, 0.2599, 0.2626, 0.2516},
+      { 0.2262, 0.2026, 0.3204, 0.3115, 0.2880, 0.2487, 0.2675, 0.2960, 0.2613, 0.2194, 0.2398, 0.3582, 0.4059, 0.3154, 0.3370, 0.3375, 0.3599, 0.3676, 0.2516, 0.4852}},
+    {
+      { 0.2565, 0.2280, 0.4836, 0.4224, 0.3965, 0.3242, 0.3219, 0.3468, 0.3211, 0.2912, 0.2847, 0.3819, 0.3816, 0.2929, 0.3120, 0.3024, 0.3104, 0.3402, 0.2940, 0.3224},
+      { 0.2280, 0.2466, 0.4761, 0.4175, 0.3794, 0.3163, 0.3368, 0.3088, 0.3350, 0.2572, 0.2759, 0.3546, 0.4435, 0.3443, 0.3504, 0.3249, 0.3377, 0.3350, 0.2966, 0.3239},
+      { 0.4836, 0.4761, 0.3887, 0.3076, 0.3694, 0.3822, 0.3919, 0.3638, 0.3890, 0.3559, 0.3448, 0.4523, 0.6646, 0.4111, 0.4291, 0.4123, 0.4089, 0.4304, 0.3605, 0.4080},
+      { 0.4224, 0.4175, 0.3076, 0.2607, 0.2581, 0.3145, 0.3498, 0.3232, 0.3254, 0.3025, 0.2725, 0.4054, 0.3859, 0.3342, 0.3671, 0.3451, 0.3236, 0.3565, 0.2981, 0.3250},
+      { 0.3965, 0.3794, 0.3694, 0.2581, 1.0000, 0.4044, 0.3810, 0.4827, 0.4820, 0.3652, 0.3324, 0.5493, 0.5862, 0.3993, 0.4065, 0.4146, 0.4872, 0.5272, 0.3214, 0.5267},
+      { 0.3242, 0.3163, 0.3822, 0.3145, 0.4044, 0.3712, 0.3682, 0.3724, 0.3613, 0.3323, 0.3147, 0.4080, 0.4609, 0.3572, 0.3711, 0.3682, 0.3901, 0.4081, 0.3274, 0.3808},
+      { 0.3219, 0.3368, 0.3919, 0.3498, 0.3810, 0.3682, 0.4096, 0.3999, 0.4259, 0.3413, 0.3046, 0.4222, 0.4547, 0.4243, 0.4431, 0.4069, 0.4289, 0.4163, 0.3270, 0.3819},
+      { 0.3468, 0.3088, 0.3638, 0.3232, 0.4827, 0.3724, 0.3999, 0.4834, 0.4170, 0.3273, 0.3358, 0.4569, 0.4613, 0.3800, 0.3735, 0.3563, 0.4010, 0.4392, 0.3191, 0.4030},
+      { 0.3211, 0.3350, 0.3890, 0.3254, 0.4820, 0.3613, 0.4259, 0.4170, 0.4016, 0.3330, 0.3374, 0.4451, 0.5263, 0.4227, 0.4164, 0.3933, 0.4350, 0.4326, 0.3483, 0.4939},
+      { 0.2912, 0.2572, 0.3559, 0.3025, 0.3652, 0.3323, 0.3413, 0.3273, 0.3330, 0.3349, 0.2998, 0.3730, 0.4034, 0.3153, 0.3355, 0.3255, 0.3772, 0.3528, 0.3099, 0.3881},
+      { 0.2847, 0.2759, 0.3448, 0.2725, 0.3324, 0.3147, 0.3046, 0.3358, 0.3374, 0.2998, 0.3089, 0.4285, 0.4902, 0.3433, 0.3439, 0.3658, 0.3833, 0.4268, 0.3095, 0.3882},
+      { 0.3819, 0.3546, 0.4523, 0.4054, 0.5493, 0.4080, 0.4222, 0.4569, 0.4451, 0.3730, 0.4285, 0.5472, 0.5418, 0.4975, 0.5144, 0.4950, 0.5382, 0.5524, 0.3944, 0.5336},
+      { 0.3816, 0.4435, 0.6646, 0.3859, 0.5862, 0.4609, 0.4547, 0.4613, 0.5263, 0.4034, 0.4902, 0.5418, 0.4826, 0.5182, 0.5153, 0.5080, 0.5926, 0.5384, 0.4396, 0.5936},
+      { 0.2929, 0.3443, 0.4111, 0.3342, 0.3993, 0.3572, 0.4243, 0.3800, 0.4227, 0.3153, 0.3433, 0.4975, 0.5182, 0.5028, 0.5278, 0.4710, 0.4819, 0.4961, 0.3763, 0.4632},
+      { 0.3120, 0.3504, 0.4291, 0.3671, 0.4065, 0.3711, 0.4431, 0.3735, 0.4164, 0.3355, 0.3439, 0.5144, 0.5153, 0.5278, 0.5648, 0.4975, 0.4800, 0.5123, 0.3953, 0.4896},
+      { 0.3024, 0.3249, 0.4123, 0.3451, 0.4146, 0.3682, 0.4069, 0.3563, 0.3933, 0.3255, 0.3658, 0.4950, 0.5080, 0.4710, 0.4975, 0.4788, 0.4886, 0.4925, 0.3774, 0.4278},
+      { 0.3104, 0.3377, 0.4089, 0.3236, 0.4872, 0.3901, 0.4289, 0.4010, 0.4350, 0.3772, 0.3833, 0.5382, 0.5926, 0.4819, 0.4800, 0.4886, 0.5146, 0.5384, 0.4000, 0.4737},
+      { 0.3402, 0.3350, 0.4304, 0.3565, 0.5272, 0.4081, 0.4163, 0.4392, 0.4326, 0.3528, 0.4268, 0.5524, 0.5384, 0.4961, 0.5123, 0.4925, 0.5384, 0.5536, 0.3930, 0.4921},
+      { 0.2940, 0.2966, 0.3605, 0.2981, 0.3214, 0.3274, 0.3270, 0.3191, 0.3483, 0.3099, 0.3095, 0.3944, 0.4396, 0.3763, 0.3953, 0.3774, 0.4000, 0.3930, 0.3666, 0.3732},
+      { 0.3224, 0.3239, 0.4080, 0.3250, 0.5267, 0.3808, 0.3819, 0.4030, 0.4939, 0.3881, 0.3882, 0.5336, 0.5936, 0.4632, 0.4896, 0.4278, 0.4737, 0.4921, 0.3732, 0.5638}},
+    {
+      { 0.1530, 0.1444, 0.4087, 0.3451, 0.3019, 0.2585, 0.2642, 0.2906, 0.2721, 0.2243, 0.2116, 0.3206, 0.3225, 0.2545, 0.2642, 0.2484, 0.2754, 0.2915, 0.2251, 0.2821},
+      { 0.1444, 0.1721, 0.4276, 0.3727, 0.2222, 0.2262, 0.2684, 0.2553, 0.2723, 0.1958, 0.2078, 0.3261, 0.3529, 0.2858, 0.2969, 0.2794, 0.2735, 0.2933, 0.2363, 0.2696},
+      { 0.4087, 0.4276, 0.3092, 0.2476, 0.2474, 0.3128, 0.3334, 0.3245, 0.3383, 0.2823, 0.2741, 0.4042, 0.4249, 0.3645, 0.3732, 0.3606, 0.3488, 0.3827, 0.3028, 0.3486},
+      { 0.3451, 0.3727, 0.2476, 0.2000, 0.1544, 0.2368, 0.2717, 0.2575, 0.2793, 0.2089, 0.1831, 0.3504, 0.3362, 0.3043, 0.3049, 0.2895, 0.2806, 0.3077, 0.2459, 0.2583},
+      { 0.3019, 0.2222, 0.2474, 0.1544, 0.4044, 0.6146, 0.4920, 0.3630, 0.2808, 0.3877, 0.2749, 0.4139, 0.4574, 0.3726, 0.3797, 0.3430, 0.4205, 0.4184, 0.3945, 0.5460},
+      { 0.2585, 0.2262, 0.3128, 0.2368, 0.6146, 0.3109, 0.3103, 0.3487, 0.3413, 0.2656, 0.2459, 0.3793, 0.3889, 0.3031, 0.3171, 0.3081, 0.3437, 0.3712, 0.2801, 0.3798},
+      { 0.2642, 0.2684, 0.3334, 0.2717, 0.4920, 0.3103, 0.3495, 0.3549, 0.3546, 0.2729, 0.2517, 0.3902, 0.3817, 0.3675, 0.3803, 0.3473, 0.3839, 0.3891, 0.2953, 0.3886},
+      { 0.2906, 0.2553, 0.3245, 0.2575, 0.3630, 0.3487, 0.3549, 0.3687, 0.3288, 0.3126, 0.2763, 0.3915, 0.3935, 0.3365, 0.3295, 0.3137, 0.3666, 0.3813, 0.3068, 0.3972},
+      { 0.2721, 0.2723, 0.3383, 0.2793, 0.2808, 0.3413, 0.3546, 0.3288, 0.3227, 0.2860, 0.2669, 0.3734, 0.4192, 0.3475, 0.3536, 0.3405, 0.3741, 0.3764, 0.3132, 0.3838},
+      { 0.2243, 0.1958, 0.2823, 0.2089, 0.3877, 0.2656, 0.2729, 0.3126, 0.2860, 0.2575, 0.2422, 0.3692, 0.3788, 0.3026, 0.3082, 0.3091, 0.3484, 0.3784, 0.2704, 0.3574},
+      { 0.2116, 0.2078, 0.2741, 0.1831, 0.2749, 0.2459, 0.2517, 0.2763, 0.2669, 0.2422, 0.2470, 0.3722, 0.4021, 0.2839, 0.3094, 0.2939, 0.3476, 0.3553, 0.2539, 0.3223},
+      { 0.3206, 0.3261, 0.4042, 0.3504, 0.4139, 0.3793, 0.3902, 0.3915, 0.3734, 0.3692, 0.3722, 0.4750, 0.4975, 0.4538, 0.4626, 0.4503, 0.4870, 0.4955, 0.4017, 0.4855},
+      { 0.3225, 0.3529, 0.4249, 0.3362, 0.4574, 0.3889, 0.3817, 0.3935, 0.4192, 0.3788, 0.4021, 0.4975, 0.5725, 0.4606, 0.4795, 0.4700, 0.5533, 0.5175, 0.3956, 0.4796},
+      { 0.2545, 0.2858, 0.3645, 0.3043, 0.3726, 0.3031, 0.3675, 0.3365, 0.3475, 0.3026, 0.2839, 0.4538, 0.4606, 0.4815, 0.4870, 0.4456, 0.4470, 0.4739, 0.3699, 0.4357},
+      { 0.2642, 0.2969, 0.3732, 0.3049, 0.3797, 0.3171, 0.3803, 0.3295, 0.3536, 0.3082, 0.3094, 0.4626, 0.4795, 0.4870, 0.5237, 0.4610, 0.4704, 0.4797, 0.3828, 0.4494},
+      { 0.2484, 0.2794, 0.3606, 0.2895, 0.3430, 0.3081, 0.3473, 0.3137, 0.3405, 0.3091, 0.2939, 0.4503, 0.4700, 0.4456, 0.4610, 0.4467, 0.4393, 0.4588, 0.3742, 0.4295},
+      { 0.2754, 0.2735, 0.3488, 0.2806, 0.4205, 0.3437, 0.3839, 0.3666, 0.3741, 0.3484, 0.3476, 0.4870, 0.5533, 0.4470, 0.4704, 0.4393, 0.4952, 0.5028, 0.3932, 0.4827},
+      { 0.2915, 0.2933, 0.3827, 0.3077, 0.4184, 0.3712, 0.3891, 0.3813, 0.3764, 0.3784, 0.3553, 0.4955, 0.5175, 0.4739, 0.4797, 0.4588, 0.5028, 0.5358, 0.4211, 0.4972},
+      { 0.2251, 0.2363, 0.3028, 0.2459, 0.3945, 0.2801, 0.2953, 0.3068, 0.3132, 0.2704, 0.2539, 0.4017, 0.3956, 0.3699, 0.3828, 0.3742, 0.3932, 0.4211, 0.3297, 0.3772},
+      { 0.2821, 0.2696, 0.3486, 0.2583, 0.5460, 0.3798, 0.3886, 0.3972, 0.3838, 0.3574, 0.3223, 0.4855, 0.4796, 0.4357, 0.4494, 0.4295, 0.4827, 0.4972, 0.3772, 0.5621}},
+    {
+      { 0.1797, 0.1647, 0.4429, 0.3796, 0.2838, 0.2907, 0.2788, 0.2973, 0.2939, 0.2381, 0.2469, 0.3315, 0.3247, 0.2830, 0.2834, 0.2671, 0.2995, 0.2961, 0.2441, 0.3083},
+      { 0.1647, 0.1876, 0.4587, 0.4084, 0.2433, 0.2676, 0.2637, 0.2703, 0.2944, 0.2150, 0.2355, 0.3513, 0.3885, 0.3009, 0.3115, 0.2977, 0.2920, 0.3100, 0.2568, 0.2756},
+      { 0.4429, 0.4587, 0.3273, 0.2610, 0.2492, 0.3318, 0.3334, 0.3387, 0.3625, 0.2938, 0.3041, 0.4160, 0.4332, 0.3769, 0.3896, 0.3748, 0.3665, 0.3875, 0.3246, 0.3633},
+      { 0.3796, 0.4084, 0.2610, 0.2292, 0.1879, 0.2741, 0.2652, 0.2778, 0.3010, 0.2264, 0.2141, 0.3771, 0.3664, 0.3209, 0.3278, 0.3024, 0.2938, 0.3171, 0.2605, 0.2884},
+      { 0.2838, 0.2433, 0.2492, 0.1879, 0.3810, 0.4920, 0.5830, 0.3580, 0.2886, 0.3367, 0.3161, 0.4022, 0.4435, 0.4207, 0.4038, 0.3674, 0.4430, 0.4152, 0.3702, 0.5316},
+      { 0.2907, 0.2676, 0.3318, 0.2741, 0.4920, 0.3241, 0.3202, 0.3556, 0.3418, 0.2650, 0.2704, 0.3870, 0.4168, 0.3404, 0.3429, 0.3273, 0.3679, 0.3773, 0.2952, 0.3758},
+      { 0.2788, 0.2637, 0.3334, 0.2652, 0.5830, 0.3202, 0.3374, 0.4100, 0.3818, 0.2290, 0.2482, 0.4023, 0.3858, 0.3691, 0.3831, 0.3439, 0.3882, 0.3883, 0.2847, 0.4055},
+      { 0.2973, 0.2703, 0.3387, 0.2778, 0.3580, 0.3556, 0.4100, 0.3834, 0.3406, 0.3053, 0.3167, 0.3953, 0.3944, 0.3589, 0.3647, 0.3377, 0.3798, 0.3850, 0.3152, 0.4099},
+      { 0.2939, 0.2944, 0.3625, 0.3010, 0.2886, 0.3418, 0.3818, 0.3406, 0.3454, 0.2904, 0.3029, 0.3855, 0.4252, 0.3601, 0.3733, 0.3583, 0.3958, 0.3911, 0.3184, 0.3877},
+      { 0.2381, 0.2150, 0.2938, 0.2264, 0.3367, 0.2650, 0.2290, 0.3053, 0.2904, 0.2584, 0.2593, 0.3556, 0.3780, 0.2903, 0.3063, 0.3084, 0.3397, 0.3593, 0.2728, 0.3381},
+      { 0.2469, 0.2355, 0.3041, 0.2141, 0.3161, 0.2704, 0.2482, 0.3167, 0.3029, 0.2593, 0.2887, 0.3850, 0.4120, 0.2886, 0.3171, 0.3132, 0.3419, 0.3645, 0.2659, 0.3417},
+      { 0.3315, 0.3513, 0.4160, 0.3771, 0.4022, 0.3870, 0.4023, 0.3953, 0.3855, 0.3556, 0.3850, 0.4757, 0.4861, 0.4625, 0.4837, 0.4655, 0.4832, 0.4933, 0.3963, 0.4884},
+      { 0.3247, 0.3885, 0.4332, 0.3664, 0.4435, 0.4168, 0.3858, 0.3944, 0.4252, 0.3780, 0.4120, 0.4861, 0.5621, 0.4521, 0.4715, 0.4670, 0.5238, 0.5150, 0.4084, 0.5065},
+      { 0.2830, 0.3009, 0.3769, 0.3209, 0.4207, 0.3404, 0.3691, 0.3589, 0.3601, 0.2903, 0.2886, 0.4625, 0.4521, 0.4740, 0.4866, 0.4488, 0.4473, 0.4801, 0.3773, 0.4612},
+      { 0.2834, 0.3115, 0.3896, 0.3278, 0.4038, 0.3429, 0.3831, 0.3647, 0.3733, 0.3063, 0.3171, 0.4837, 0.4715, 0.4866, 0.5122, 0.4755, 0.4634, 0.4887, 0.3852, 0.4586},
+      { 0.2671, 0.2977, 0.3748, 0.3024, 0.3674, 0.3273, 0.3439, 0.3377, 0.3583, 0.3084, 0.3132, 0.4655, 0.4670, 0.4488, 0.4755, 0.4632, 0.4467, 0.4793, 0.3735, 0.4282},
+      { 0.2995, 0.2920, 0.3665, 0.2938, 0.4430, 0.3679, 0.3882, 0.3798, 0.3958, 0.3397, 0.3419, 0.4832, 0.5238, 0.4473, 0.4634, 0.4467, 0.5090, 0.5054, 0.3789, 0.4915},
+      { 0.2961, 0.3100, 0.3875, 0.3171, 0.4152, 0.3773, 0.3883, 0.3850, 0.3911, 0.3593, 0.3645, 0.4933, 0.5150, 0.4801, 0.4887, 0.4793, 0.5054, 0.5241, 0.4164, 0.4942},
+      { 0.2441, 0.2568, 0.3246, 0.2605, 0.3702, 0.2952, 0.2847, 0.3152, 0.3184, 0.2728, 0.2659, 0.3963, 0.4084, 0.3773, 0.3852, 0.3735, 0.3789, 0.4164, 0.3398, 0.3770},
+      { 0.3083, 0.2756, 0.3633, 0.2884, 0.5316, 0.3758, 0.4055, 0.4099, 0.3877, 0.3381, 0.3417, 0.4884, 0.5065, 0.4612, 0.4586, 0.4282, 0.4915, 0.4942, 0.3770, 0.5683}},
+    {
+      { 0.1929, 0.1589, 0.4062, 0.3509, 0.3473, 0.2797, 0.2628, 0.2996, 0.2679, 0.2322, 0.2367, 0.3117, 0.3132, 0.2373, 0.2454, 0.2337, 0.2803, 0.2766, 0.2278, 0.2891},
+      { 0.1589, 0.1752, 0.4157, 0.3680, 0.2073, 0.2509, 0.2507, 0.2481, 0.2628, 0.1932, 0.2349, 0.3032, 0.3259, 0.2622, 0.2662, 0.2612, 0.2667, 0.2779, 0.2503, 0.2567},
+      { 0.4062, 0.4157, 0.3056, 0.2469, 0.2514, 0.3061, 0.3265, 0.3368, 0.3274, 0.2836, 0.2920, 0.4020, 0.3961, 0.3262, 0.3420, 0.3373, 0.3350, 0.3598, 0.3055, 0.3356},
+      { 0.3509, 0.3680, 0.2469, 0.2138, 0.1529, 0.2497, 0.2715, 0.2604, 0.2770, 0.2289, 0.2121, 0.3290, 0.3201, 0.2714, 0.2740, 0.2742, 0.2673, 0.2868, 0.2546, 0.2611},
+      { 0.3473, 0.2073, 0.2514, 0.1529, 0.4827, 0.3630, 0.3580, 0.6056, 0.3068, 0.2687, 0.2637, 0.4315, 0.4622, 0.3623, 0.3649, 0.3483, 0.4169, 0.4123, 0.2720, 0.4877},
+      { 0.2797, 0.2509, 0.3061, 0.2497, 0.3630, 0.2899, 0.3003, 0.3403, 0.2911, 0.2426, 0.2688, 0.3492, 0.3555, 0.2911, 0.3060, 0.2936, 0.3536, 0.3357, 0.2691, 0.3384},
+      { 0.2628, 0.2507, 0.3265, 0.2715, 0.3580, 0.3003, 0.3267, 0.3422, 0.3197, 0.2342, 0.2577, 0.3588, 0.3608, 0.3359, 0.3403, 0.3199, 0.3356, 0.3496, 0.2733, 0.3302},
+      { 0.2996, 0.2481, 0.3368, 0.2604, 0.6056, 0.3403, 0.3422, 0.4280, 0.3687, 0.2981, 0.2744, 0.4409, 0.4205, 0.3405, 0.3243, 0.3111, 0.3828, 0.4233, 0.2927, 0.3618},
+      { 0.2679, 0.2628, 0.3274, 0.2770, 0.3068, 0.2911, 0.3197, 0.3687, 0.3085, 0.2526, 0.2774, 0.3637, 0.3916, 0.3197, 0.3217, 0.3153, 0.3637, 0.3565, 0.2822, 0.3505},
+      { 0.2322, 0.1932, 0.2836, 0.2289, 0.2687, 0.2426, 0.2342, 0.2981, 0.2526, 0.2407, 0.2589, 0.2917, 0.3055, 0.2521, 0.2553, 0.2463, 0.2830, 0.2903, 0.2370, 0.3131},
+      { 0.2367, 0.2349, 0.2920, 0.2121, 0.2637, 0.2688, 0.2577, 0.2744, 0.2774, 0.2589, 0.3069, 0.3497, 0.3974, 0.2864, 0.2903, 0.3077, 0.3601, 0.3415, 0.2667, 0.3142},
+      { 0.3117, 0.3032, 0.4020, 0.3290, 0.4315, 0.3492, 0.3588, 0.4409, 0.3637, 0.2917, 0.3497, 0.4436, 0.5067, 0.4175, 0.4364, 0.4225, 0.4585, 0.4696, 0.3236, 0.4407},
+      { 0.3132, 0.3259, 0.3961, 0.3201, 0.4622, 0.3555, 0.3608, 0.4205, 0.3916, 0.3055, 0.3974, 0.5067, 0.5085, 0.4261, 0.4583, 0.4469, 0.5236, 0.4985, 0.3455, 0.4381},
+      { 0.2373, 0.2622, 0.3262, 0.2714, 0.3623, 0.2911, 0.3359, 0.3405, 0.3197, 0.2521, 0.2864, 0.4175, 0.4261, 0.4160, 0.4339, 0.3974, 0.4204, 0.4195, 0.3262, 0.3792},
+      { 0.2454, 0.2662, 0.3420, 0.2740, 0.3649, 0.3060, 0.3403, 0.3243, 0.3217, 0.2553, 0.2903, 0.4364, 0.4583, 0.4339, 0.4598, 0.4315, 0.4630, 0.4401, 0.3266, 0.4179},
+      { 0.2337, 0.2612, 0.3373, 0.2742, 0.3483, 0.2936, 0.3199, 0.3111, 0.3153, 0.2463, 0.3077, 0.4225, 0.4469, 0.3974, 0.4315, 0.4147, 0.4096, 0.4316, 0.3224, 0.3816},
+      { 0.2803, 0.2667, 0.3350, 0.2673, 0.4169, 0.3536, 0.3356, 0.3828, 0.3637, 0.2830, 0.3601, 0.4585, 0.5236, 0.4204, 0.4630, 0.4096, 0.5024, 0.4863, 0.3470, 0.4359},
+      { 0.2766, 0.2779, 0.3598, 0.2868, 0.4123, 0.3357, 0.3496, 0.4233, 0.3565, 0.2903, 0.3415, 0.4696, 0.4985, 0.4195, 0.4401, 0.4316, 0.4863, 0.4903, 0.3494, 0.4386},
+      { 0.2278, 0.2503, 0.3055, 0.2546, 0.2720, 0.2691, 0.2733, 0.2927, 0.2822, 0.2370, 0.2667, 0.3236, 0.3455, 0.3262, 0.3266, 0.3224, 0.3470, 0.3494, 0.3131, 0.3022},
+      { 0.2891, 0.2567, 0.3356, 0.2611, 0.4877, 0.3384, 0.3302, 0.3618, 0.3505, 0.3131, 0.3142, 0.4407, 0.4381, 0.3792, 0.4179, 0.3816, 0.4359, 0.4386, 0.3022, 0.5448}},
+    {
+      { 0.1882, 0.1749, 0.4188, 0.3708, 0.2253, 0.2719, 0.2582, 0.2877, 0.2739, 0.2199, 0.2327, 0.2971, 0.3006, 0.2345, 0.2416, 0.2415, 0.2700, 0.2720, 0.2319, 0.2642},
+      { 0.1749, 0.1964, 0.4261, 0.3731, 0.2949, 0.2592, 0.2715, 0.2665, 0.2601, 0.2002, 0.2265, 0.3181, 0.3245, 0.2705, 0.2770, 0.2780, 0.2788, 0.2881, 0.2590, 0.2485},
+      { 0.4188, 0.4261, 0.3037, 0.2418, 0.2452, 0.3161, 0.3302, 0.3165, 0.3271, 0.2794, 0.2780, 0.3855, 0.3901, 0.3393, 0.3592, 0.3596, 0.3591, 0.3594, 0.3123, 0.3396},
+      { 0.3708, 0.3731, 0.2418, 0.2095, 0.1519, 0.2630, 0.2850, 0.2707, 0.2589, 0.2153, 0.2108, 0.3459, 0.3266, 0.2866, 0.2974, 0.2906, 0.2792, 0.2952, 0.2599, 0.2814},
+      { 0.2253, 0.2949, 0.2452, 0.1519, 0.4820, 0.2808, 0.2886, 0.3068, 0.5609, 0.2532, 0.2244, 0.3859, 0.3924, 0.3193, 0.3470, 0.3404, 0.4452, 0.3860, 0.2049, 0.4418},
+      { 0.2719, 0.2592, 0.3161, 0.2630, 0.2808, 0.2815, 0.2864, 0.2964, 0.2966, 0.2438, 0.2543, 0.3240, 0.3569, 0.3030, 0.3124, 0.2947, 0.3301, 0.3335, 0.2627, 0.3150},
+      { 0.2582, 0.2715, 0.3302, 0.2850, 0.2886, 0.2864, 0.3358, 0.3171, 0.3185, 0.2348, 0.2448, 0.3474, 0.3691, 0.3423, 0.3559, 0.3272, 0.3513, 0.3441, 0.2586, 0.3375},
+      { 0.2877, 0.2665, 0.3165, 0.2707, 0.3068, 0.2964, 0.3171, 0.3247, 0.3704, 0.2897, 0.2792, 0.3563, 0.3855, 0.3055, 0.3188, 0.3021, 0.3442, 0.3570, 0.2621, 0.3306},
+      { 0.2739, 0.2601, 0.3271, 0.2589, 0.5609, 0.2966, 0.3185, 0.3704, 0.3742, 0.2372, 0.2612, 0.4101, 0.4343, 0.3316, 0.3607, 0.3421, 0.4068, 0.4257, 0.2848, 0.3646},
+      { 0.2199, 0.2002, 0.2794, 0.2153, 0.2532, 0.2438, 0.2348, 0.2897, 0.2372, 0.2096, 0.2455, 0.2843, 0.3287, 0.2456, 0.2554, 0.2574, 0.2948, 0.2978, 0.2323, 0.2875},
+      { 0.2327, 0.2265, 0.2780, 0.2108, 0.2244, 0.2543, 0.2448, 0.2792, 0.2612, 0.2455, 0.2878, 0.3425, 0.3861, 0.2711, 0.2804, 0.2864, 0.3388, 0.3372, 0.2549, 0.2977},
+      { 0.2971, 0.3181, 0.3855, 0.3459, 0.3859, 0.3240, 0.3474, 0.3563, 0.4101, 0.2843, 0.3425, 0.4415, 0.4700, 0.4155, 0.4353, 0.4216, 0.4532, 0.4745, 0.3189, 0.4203},
+      { 0.3006, 0.3245, 0.3901, 0.3266, 0.3924, 0.3569, 0.3691, 0.3855, 0.4343, 0.3287, 0.3861, 0.4700, 0.5452, 0.4063, 0.4578, 0.4500, 0.5081, 0.4898, 0.3370, 0.4481},
+      { 0.2345, 0.2705, 0.3393, 0.2866, 0.3193, 0.3030, 0.3423, 0.3055, 0.3316, 0.2456, 0.2711, 0.4155, 0.4063, 0.3985, 0.4265, 0.3968, 0.3985, 0.4152, 0.3047, 0.3873},
+      { 0.2416, 0.2770, 0.3592, 0.2974, 0.3470, 0.3124, 0.3559, 0.3188, 0.3607, 0.2554, 0.2804, 0.4353, 0.4578, 0.4265, 0.4546, 0.4336, 0.4364, 0.4482, 0.3196, 0.4191},
+      { 0.2415, 0.2780, 0.3596, 0.2906, 0.3404, 0.2947, 0.3272, 0.3021, 0.3421, 0.2574, 0.2864, 0.4216, 0.4500, 0.3968, 0.4336, 0.4197, 0.4250, 0.4422, 0.3173, 0.3788},
+      { 0.2700, 0.2788, 0.3591, 0.2792, 0.4452, 0.3301, 0.3513, 0.3442, 0.4068, 0.2948, 0.3388, 0.4532, 0.5081, 0.3985, 0.4364, 0.4250, 0.5162, 0.4760, 0.3196, 0.4351},
+      { 0.2720, 0.2881, 0.3594, 0.2952, 0.3860, 0.3335, 0.3441, 0.3570, 0.4257, 0.2978, 0.3372, 0.4745, 0.4898, 0.4152, 0.4482, 0.4422, 0.4760, 0.4781, 0.3280, 0.4371},
+      { 0.2319, 0.2590, 0.3123, 0.2599, 0.2049, 0.2627, 0.2586, 0.2621, 0.2848, 0.2323, 0.2549, 0.3189, 0.3370, 0.3047, 0.3196, 0.3173, 0.3196, 0.3280, 0.3207, 0.2960},
+      { 0.2642, 0.2485, 0.3396, 0.2814, 0.4418, 0.3150, 0.3375, 0.3306, 0.3646, 0.2875, 0.2977, 0.4203, 0.4481, 0.3873, 0.4191, 0.3788, 0.4351, 0.4371, 0.2960, 0.4733}},
+    {
+      { 0.1248, 0.1020, 0.3680, 0.3115, 0.2464, 0.2250, 0.2153, 0.2499, 0.2233, 0.1707, 0.1787, 0.2745, 0.2663, 0.1872, 0.1764, 0.1885, 0.2195, 0.2269, 0.1793, 0.2291},
+      { 0.1020, 0.1113, 0.3694, 0.2955, 0.2170, 0.2080, 0.2161, 0.2091, 0.2143, 0.1065, 0.1790, 0.2850, 0.2888, 0.2222, 0.2340, 0.2189, 0.2124, 0.2356, 0.1847, 0.2084},
+      { 0.3680, 0.3694, 0.2798, 0.2105, 0.2263, 0.2791, 0.2840, 0.2817, 0.2944, 0.2233, 0.2479, 0.3583, 0.3621, 0.2896, 0.3024, 0.3054, 0.2990, 0.3236, 0.2525, 0.3131},
+      { 0.3115, 0.2955, 0.2105, 0.1579, 0.1411, 0.2074, 0.2153, 0.2281, 0.2358, 0.1489, 0.1745, 0.2994, 0.2819, 0.2265, 0.2270, 0.2313, 0.2172, 0.2436, 0.1964, 0.2238},
+      { 0.2464, 0.2170, 0.2263, 0.1411, 0.3652, 0.3877, 0.3367, 0.2687, 0.2532, 0.4115, 0.2497, 0.3661, 0.4071, 0.3109, 0.3090, 0.2943, 0.3593, 0.3605, 0.3543, 0.4318},
+      { 0.2250, 0.2080, 0.2791, 0.2074, 0.3877, 0.2866, 0.2776, 0.2782, 0.2721, 0.2148, 0.2362, 0.3359, 0.3400, 0.2791, 0.2818, 0.2675, 0.3101, 0.3290, 0.2582, 0.3167},
+      { 0.2153, 0.2161, 0.2840, 0.2153, 0.3367, 0.2776, 0.3031, 0.2734, 0.2819, 0.2076, 0.2254, 0.3268, 0.3518, 0.3143, 0.3187, 0.3116, 0.3211, 0.3242, 0.2588, 0.3325},
+      { 0.2499, 0.2091, 0.2817, 0.2281, 0.2687, 0.2782, 0.2734, 0.3114, 0.2688, 0.2477, 0.2478, 0.3079, 0.3420, 0.2533, 0.2468, 0.2397, 0.2943, 0.2890, 0.2607, 0.3217},
+      { 0.2233, 0.2143, 0.2944, 0.2358, 0.2532, 0.2721, 0.2819, 0.2688, 0.2634, 0.2545, 0.2487, 0.3247, 0.3462, 0.2726, 0.2768, 0.2914, 0.3185, 0.3074, 0.2662, 0.2862},
+      { 0.1707, 0.1065, 0.2233, 0.1489, 0.4115, 0.2148, 0.2076, 0.2477, 0.2545, 0.1644, 0.1813, 0.3129, 0.3042, 0.2070, 0.2156, 0.2236, 0.2821, 0.2998, 0.1912, 0.2928},
+      { 0.1787, 0.1790, 0.2479, 0.1745, 0.2497, 0.2362, 0.2254, 0.2478, 0.2487, 0.1813, 0.2213, 0.3285, 0.3609, 0.2249, 0.2508, 0.2422, 0.3101, 0.3102, 0.2071, 0.2784},
+      { 0.2745, 0.2850, 0.3583, 0.2994, 0.3661, 0.3359, 0.3268, 0.3079, 0.3247, 0.3129, 0.3285, 0.4207, 0.4684, 0.3705, 0.3894, 0.3839, 0.4171, 0.4228, 0.3347, 0.3826},
+      { 0.2663, 0.2888, 0.3621, 0.2819, 0.4071, 0.3400, 0.3518, 0.3420, 0.3462, 0.3042, 0.3609, 0.4684, 0.5269, 0.3935, 0.4016, 0.3978, 0.4852, 0.4770, 0.3439, 0.4322},
+      { 0.1872, 0.2222, 0.2896, 0.2265, 0.3109, 0.2791, 0.3143, 0.2533, 0.2726, 0.2070, 0.2249, 0.3705, 0.3935, 0.3845, 0.3951, 0.3658, 0.3662, 0.3942, 0.3106, 0.3811},
+      { 0.1764, 0.2340, 0.3024, 0.2270, 0.3090, 0.2818, 0.3187, 0.2468, 0.2768, 0.2156, 0.2508, 0.3894, 0.4016, 0.3951, 0.4244, 0.3867, 0.3753, 0.4012, 0.3239, 0.3822},
+      { 0.1885, 0.2189, 0.3054, 0.2313, 0.2943, 0.2675, 0.3116, 0.2397, 0.2914, 0.2236, 0.2422, 0.3839, 0.3978, 0.3658, 0.3867, 0.3849, 0.3597, 0.3874, 0.3018, 0.3351},
+      { 0.2195, 0.2124, 0.2990, 0.2172, 0.3593, 0.3101, 0.3211, 0.2943, 0.3185, 0.2821, 0.3101, 0.4171, 0.4852, 0.3662, 0.3753, 0.3597, 0.4526, 0.4434, 0.3265, 0.4101},
+      { 0.2269, 0.2356, 0.3236, 0.2436, 0.3605, 0.3290, 0.3242, 0.2890, 0.3074, 0.2998, 0.3102, 0.4228, 0.4770, 0.3942, 0.4012, 0.3874, 0.4434, 0.4490, 0.3344, 0.4152},
+      { 0.1793, 0.1847, 0.2525, 0.1964, 0.3543, 0.2582, 0.2588, 0.2607, 0.2662, 0.1912, 0.2071, 0.3347, 0.3439, 0.3106, 0.3239, 0.3018, 0.3265, 0.3344, 0.2783, 0.3162},
+      { 0.2291, 0.2084, 0.3131, 0.2238, 0.4318, 0.3167, 0.3325, 0.3217, 0.2862, 0.2928, 0.2784, 0.3826, 0.4322, 0.3811, 0.3822, 0.3351, 0.4101, 0.4152, 0.3162, 0.5594}},
+    {
+      { 0.1312, 0.1192, 0.3849, 0.3370, 0.1674, 0.2302, 0.2369, 0.2407, 0.2464, 0.2007, 0.2258, 0.2697, 0.2864, 0.2031, 0.2151, 0.2191, 0.2550, 0.2392, 0.2027, 0.2481},
+      { 0.1192, 0.1303, 0.3753, 0.3153, 0.1618, 0.2218, 0.2276, 0.2160, 0.2344, 0.1715, 0.1921, 0.2856, 0.3132, 0.2306, 0.2332, 0.2243, 0.2205, 0.2480, 0.2050, 0.2561},
+      { 0.3849, 0.3753, 0.2770, 0.2165, 0.2290, 0.2813, 0.3043, 0.2938, 0.3017, 0.2783, 0.2884, 0.3798, 0.4039, 0.3033, 0.3085, 0.3134, 0.3064, 0.3447, 0.2775, 0.3159},
+      { 0.3370, 0.3153, 0.2165, 0.1711, 0.1418, 0.2147, 0.2374, 0.2481, 0.2457, 0.1972, 0.1847, 0.3248, 0.3399, 0.2383, 0.2472, 0.2407, 0.2426, 0.2711, 0.2110, 0.2369},
+      { 0.1674, 0.1618, 0.2290, 0.1418, 0.3324, 0.2749, 0.3161, 0.2637, 0.2244, 0.2497, 0.4301, 0.3716, 0.4317, 0.3376, 0.3539, 0.3224, 0.4030, 0.3936, 0.3136, 0.4426},
+      { 0.2302, 0.2218, 0.2813, 0.2147, 0.2749, 0.2604, 0.2649, 0.2876, 0.2754, 0.2410, 0.2554, 0.3128, 0.3389, 0.2783, 0.2776, 0.2769, 0.3039, 0.3063, 0.2485, 0.3145},
+      { 0.2369, 0.2276, 0.3043, 0.2374, 0.3161, 0.2649, 0.2743, 0.3072, 0.3124, 0.2277, 0.2541, 0.3275, 0.3476, 0.2989, 0.3127, 0.2944, 0.2982, 0.3156, 0.2623, 0.3137},
+      { 0.2407, 0.2160, 0.2938, 0.2481, 0.2637, 0.2876, 0.3072, 0.3092, 0.2975, 0.2592, 0.3150, 0.3286, 0.3521, 0.2956, 0.2913, 0.2869, 0.3247, 0.3223, 0.2783, 0.3557},
+      { 0.2464, 0.2344, 0.3017, 0.2457, 0.2244, 0.2754, 0.3124, 0.2975, 0.3023, 0.2492, 0.3011, 0.3266, 0.3686, 0.2913, 0.3083, 0.3085, 0.3220, 0.3372, 0.2699, 0.3115},
+      { 0.2007, 0.1715, 0.2783, 0.1972, 0.2497, 0.2410, 0.2277, 0.2592, 0.2492, 0.2275, 0.2110, 0.3000, 0.3307, 0.2509, 0.2823, 0.2562, 0.2822, 0.2939, 0.2320, 0.2785},
+      { 0.2258, 0.1921, 0.2884, 0.1847, 0.4301, 0.2554, 0.2541, 0.3150, 0.3011, 0.2110, 0.2531, 0.4245, 0.4472, 0.2725, 0.2872, 0.3006, 0.3385, 0.3810, 0.2475, 0.3408},
+      { 0.2697, 0.2856, 0.3798, 0.3248, 0.3716, 0.3128, 0.3275, 0.3286, 0.3266, 0.3000, 0.4245, 0.4273, 0.4562, 0.3800, 0.4052, 0.4032, 0.4163, 0.4331, 0.3230, 0.4149},
+      { 0.2864, 0.3132, 0.4039, 0.3399, 0.4317, 0.3389, 0.3476, 0.3521, 0.3686, 0.3307, 0.4472, 0.4562, 0.5357, 0.4116, 0.4407, 0.4087, 0.4594, 0.4555, 0.3303, 0.4215},
+      { 0.2031, 0.2306, 0.3033, 0.2383, 0.3376, 0.2783, 0.2989, 0.2956, 0.2913, 0.2509, 0.2725, 0.3800, 0.4116, 0.3481, 0.3564, 0.3566, 0.3588, 0.3837, 0.2914, 0.3741},
+      { 0.2151, 0.2332, 0.3085, 0.2472, 0.3539, 0.2776, 0.3127, 0.2913, 0.3083, 0.2823, 0.2872, 0.4052, 0.4407, 0.3564, 0.3736, 0.3859, 0.3587, 0.3933, 0.3096, 0.3744},
+      { 0.2191, 0.2243, 0.3134, 0.2407, 0.3224, 0.2769, 0.2944, 0.2869, 0.3085, 0.2562, 0.3006, 0.4032, 0.4087, 0.3566, 0.3859, 0.3798, 0.3774, 0.4008, 0.2961, 0.3686},
+      { 0.2550, 0.2205, 0.3064, 0.2426, 0.4030, 0.3039, 0.2982, 0.3247, 0.3220, 0.2822, 0.3385, 0.4163, 0.4594, 0.3588, 0.3587, 0.3774, 0.4301, 0.4254, 0.3438, 0.3895},
+      { 0.2392, 0.2480, 0.3447, 0.2711, 0.3936, 0.3063, 0.3156, 0.3223, 0.3372, 0.2939, 0.3810, 0.4331, 0.4555, 0.3837, 0.3933, 0.4008, 0.4254, 0.4412, 0.3265, 0.4422},
+      { 0.2027, 0.2050, 0.2775, 0.2110, 0.3136, 0.2485, 0.2623, 0.2783, 0.2699, 0.2320, 0.2475, 0.3230, 0.3303, 0.2914, 0.3096, 0.2961, 0.3438, 0.3265, 0.2704, 0.3177},
+      { 0.2481, 0.2561, 0.3159, 0.2369, 0.4426, 0.3145, 0.3137, 0.3557, 0.3115, 0.2785, 0.3408, 0.4149, 0.4215, 0.3741, 0.3744, 0.3686, 0.3895, 0.4422, 0.3177, 0.5122}},
+    {
+      { 0.3419, 0.2962, 0.5283, 0.4669, 0.3575, 0.3974, 0.3834, 0.4065, 0.3930, 0.3669, 0.3577, 0.4071, 0.4104, 0.3482, 0.3519, 0.3543, 0.3743, 0.3587, 0.3508, 0.3856},
+      { 0.2962, 0.2934, 0.5234, 0.4699, 0.3344, 0.3750, 0.3913, 0.3618, 0.3841, 0.3259, 0.3442, 0.3719, 0.4418, 0.3849, 0.3848, 0.3740, 0.3819, 0.3824, 0.3555, 0.3851},
+      { 0.5283, 0.5234, 0.4014, 0.3407, 0.3574, 0.4384, 0.4425, 0.4196, 0.4343, 0.4003, 0.3883, 0.4470, 0.4940, 0.4367, 0.4355, 0.4379, 0.4467, 0.4607, 0.4044, 0.4431},
+      { 0.4669, 0.4699, 0.3407, 0.3085, 0.2768, 0.3741, 0.3862, 0.3721, 0.3888, 0.3273, 0.3245, 0.4057, 0.4295, 0.3873, 0.3929, 0.3828, 0.3925, 0.3963, 0.3575, 0.3822},
+      { 0.3575, 0.3344, 0.3574, 0.2768, 0.5493, 0.4139, 0.4022, 0.4315, 0.3859, 0.3661, 0.3716, 0.6693, 0.5278, 0.3889, 0.4117, 0.4028, 0.4681, 0.5436, 0.3585, 0.4528},
+      { 0.3974, 0.3750, 0.4384, 0.3741, 0.4139, 0.4164, 0.4217, 0.4260, 0.4163, 0.3874, 0.3810, 0.4035, 0.4577, 0.4194, 0.4189, 0.4053, 0.4379, 0.4375, 0.3894, 0.4494},
+      { 0.3834, 0.3913, 0.4425, 0.3862, 0.4022, 0.4217, 0.4700, 0.4281, 0.4308, 0.3738, 0.3875, 0.4170, 0.4721, 0.4615, 0.4633, 0.4447, 0.4525, 0.4508, 0.3987, 0.4602},
+      { 0.4065, 0.3618, 0.4196, 0.3721, 0.4315, 0.4260, 0.4281, 0.5119, 0.4265, 0.4020, 0.4142, 0.4605, 0.4936, 0.3908, 0.3943, 0.3919, 0.4405, 0.4632, 0.3760, 0.4327},
+      { 0.3930, 0.3841, 0.4343, 0.3888, 0.3859, 0.4163, 0.4308, 0.4265, 0.4380, 0.3793, 0.3915, 0.4865, 0.5161, 0.4223, 0.4331, 0.4267, 0.4620, 0.4709, 0.3925, 0.4469},
+      { 0.3669, 0.3259, 0.4003, 0.3273, 0.3661, 0.3874, 0.3738, 0.4020, 0.3793, 0.3972, 0.3722, 0.3472, 0.4131, 0.3667, 0.3654, 0.3754, 0.4117, 0.3738, 0.3692, 0.3951},
+      { 0.3577, 0.3442, 0.3883, 0.3245, 0.3716, 0.3810, 0.3875, 0.4142, 0.3915, 0.3722, 0.3978, 0.4030, 0.4952, 0.3721, 0.3756, 0.3930, 0.4238, 0.4183, 0.3661, 0.4160},
+      { 0.4071, 0.3719, 0.4470, 0.4057, 0.6693, 0.4035, 0.4170, 0.4605, 0.4865, 0.3472, 0.4030, 0.5285, 0.5337, 0.4802, 0.5056, 0.4808, 0.5234, 0.5550, 0.4034, 0.5066},
+      { 0.4104, 0.4418, 0.4940, 0.4295, 0.5278, 0.4577, 0.4721, 0.4936, 0.5161, 0.4131, 0.4952, 0.5337, 0.5914, 0.5157, 0.5600, 0.5298, 0.5738, 0.6003, 0.4642, 0.5546},
+      { 0.3482, 0.3849, 0.4367, 0.3873, 0.3889, 0.4194, 0.4615, 0.3908, 0.4223, 0.3667, 0.3721, 0.4802, 0.5157, 0.5323, 0.5373, 0.5114, 0.5067, 0.5151, 0.4367, 0.5139},
+      { 0.3519, 0.3848, 0.4355, 0.3929, 0.4117, 0.4189, 0.4633, 0.3943, 0.4331, 0.3654, 0.3756, 0.5056, 0.5600, 0.5373, 0.5535, 0.5404, 0.5220, 0.5378, 0.4465, 0.5083},
+      { 0.3543, 0.3740, 0.4379, 0.3828, 0.4028, 0.4053, 0.4447, 0.3919, 0.4267, 0.3754, 0.3930, 0.4808, 0.5298, 0.5114, 0.5404, 0.5324, 0.5138, 0.5356, 0.4412, 0.4882},
+      { 0.3743, 0.3819, 0.4467, 0.3925, 0.4681, 0.4379, 0.4525, 0.4405, 0.4620, 0.4117, 0.4238, 0.5234, 0.5738, 0.5067, 0.5220, 0.5138, 0.5684, 0.5868, 0.4487, 0.5258},
+      { 0.3587, 0.3824, 0.4607, 0.3963, 0.5436, 0.4375, 0.4508, 0.4632, 0.4709, 0.3738, 0.4183, 0.5550, 0.6003, 0.5151, 0.5378, 0.5356, 0.5868, 0.6008, 0.4405, 0.5217},
+      { 0.3508, 0.3555, 0.4044, 0.3575, 0.3585, 0.3894, 0.3987, 0.3760, 0.3925, 0.3692, 0.3661, 0.4034, 0.4642, 0.4367, 0.4465, 0.4412, 0.4487, 0.4405, 0.4147, 0.4224},
+      { 0.3856, 0.3851, 0.4431, 0.3822, 0.4528, 0.4494, 0.4602, 0.4327, 0.4469, 0.3951, 0.4160, 0.5066, 0.5546, 0.5139, 0.5083, 0.4882, 0.5258, 0.5217, 0.4224, 0.6493}},
+    {
+      { 0.3212, 0.3010, 0.5278, 0.4628, 0.3728, 0.3927, 0.4007, 0.4018, 0.4146, 0.3536, 0.3736, 0.4247, 0.3483, 0.3518, 0.3686, 0.3433, 0.3812, 0.3703, 0.3597, 0.3764},
+      { 0.3010, 0.3094, 0.5298, 0.4731, 0.3684, 0.3845, 0.4059, 0.3704, 0.3975, 0.3241, 0.3584, 0.4207, 0.3842, 0.3807, 0.3840, 0.3758, 0.3864, 0.3851, 0.3674, 0.3901},
+      { 0.5278, 0.5298, 0.4062, 0.3533, 0.4005, 0.4280, 0.4564, 0.4104, 0.4293, 0.3973, 0.4150, 0.4965, 0.4732, 0.4294, 0.4421, 0.4326, 0.4287, 0.4590, 0.4244, 0.4395},
+      { 0.4628, 0.4731, 0.3533, 0.3364, 0.3269, 0.3826, 0.3951, 0.3782, 0.4059, 0.3206, 0.3229, 0.4564, 0.4065, 0.3677, 0.3906, 0.3843, 0.3997, 0.4007, 0.3758, 0.3713},
+      { 0.3728, 0.3684, 0.4005, 0.3269, 0.5862, 0.4574, 0.4435, 0.4622, 0.3924, 0.4071, 0.4317, 0.5278, 0.6756, 0.4104, 0.4162, 0.4132, 0.5011, 0.5567, 0.3878, 0.4983},
+      { 0.3927, 0.3845, 0.4280, 0.3826, 0.4574, 0.4526, 0.4478, 0.4293, 0.4342, 0.3765, 0.3838, 0.4402, 0.4105, 0.4157, 0.4172, 0.4090, 0.4660, 0.4514, 0.3880, 0.4468},
+      { 0.4007, 0.4059, 0.4564, 0.3951, 0.4435, 0.4478, 0.4704, 0.4646, 0.4410, 0.3716, 0.3862, 0.4554, 0.4189, 0.4480, 0.4644, 0.4420, 0.4355, 0.4657, 0.4000, 0.4613},
+      { 0.4018, 0.3704, 0.4104, 0.3782, 0.4622, 0.4293, 0.4646, 0.4799, 0.4359, 0.4005, 0.3843, 0.4816, 0.4754, 0.3861, 0.3935, 0.3869, 0.4403, 0.5011, 0.3790, 0.4560},
+      { 0.4146, 0.3975, 0.4293, 0.4059, 0.3924, 0.4342, 0.4410, 0.4359, 0.4401, 0.3864, 0.3878, 0.4940, 0.5067, 0.4170, 0.4313, 0.4258, 0.4698, 0.4720, 0.4106, 0.4615},
+      { 0.3536, 0.3241, 0.3973, 0.3206, 0.4071, 0.3765, 0.3716, 0.4005, 0.3864, 0.3634, 0.3414, 0.4153, 0.3662, 0.3550, 0.3628, 0.3810, 0.4330, 0.3843, 0.3534, 0.4284},
+      { 0.3736, 0.3584, 0.4150, 0.3229, 0.4317, 0.3838, 0.3862, 0.3843, 0.3878, 0.3414, 0.4048, 0.4877, 0.4318, 0.3721, 0.3829, 0.3878, 0.4464, 0.4559, 0.3782, 0.4191},
+      { 0.4247, 0.4207, 0.4965, 0.4564, 0.5278, 0.4402, 0.4554, 0.4816, 0.4940, 0.4153, 0.4877, 0.5273, 0.5735, 0.5070, 0.5332, 0.5118, 0.5454, 0.5898, 0.4417, 0.5372},
+      { 0.3483, 0.3842, 0.4732, 0.4065, 0.6756, 0.4105, 0.4189, 0.4754, 0.5067, 0.3662, 0.4318, 0.5735, 0.5814, 0.4685, 0.5112, 0.4980, 0.5664, 0.5760, 0.4235, 0.5043},
+      { 0.3518, 0.3807, 0.4294, 0.3677, 0.4104, 0.4157, 0.4480, 0.3861, 0.4170, 0.3550, 0.3721, 0.5070, 0.4685, 0.5189, 0.5278, 0.5040, 0.5128, 0.5273, 0.4324, 0.4967},
+      { 0.3686, 0.3840, 0.4421, 0.3906, 0.4162, 0.4172, 0.4644, 0.3935, 0.4313, 0.3628, 0.3829, 0.5332, 0.5112, 0.5278, 0.5531, 0.5373, 0.5221, 0.5373, 0.4496, 0.5368},
+      { 0.3433, 0.3758, 0.4326, 0.3843, 0.4132, 0.4090, 0.4420, 0.3869, 0.4258, 0.3810, 0.3878, 0.5118, 0.4980, 0.5040, 0.5373, 0.5374, 0.5325, 0.5395, 0.4478, 0.5144},
+      { 0.3812, 0.3864, 0.4287, 0.3997, 0.5011, 0.4660, 0.4355, 0.4403, 0.4698, 0.4330, 0.4464, 0.5454, 0.5664, 0.5128, 0.5221, 0.5325, 0.5789, 0.5927, 0.4666, 0.5311},
+      { 0.3703, 0.3851, 0.4590, 0.4007, 0.5567, 0.4514, 0.4657, 0.5011, 0.4720, 0.3843, 0.4559, 0.5898, 0.5760, 0.5273, 0.5373, 0.5395, 0.5927, 0.6111, 0.4586, 0.5646},
+      { 0.3597, 0.3674, 0.4244, 0.3758, 0.3878, 0.3880, 0.4000, 0.3790, 0.4106, 0.3534, 0.3782, 0.4417, 0.4235, 0.4324, 0.4496, 0.4478, 0.4666, 0.4586, 0.4196, 0.4410},
+      { 0.3764, 0.3901, 0.4395, 0.3713, 0.4983, 0.4468, 0.4613, 0.4560, 0.4615, 0.4284, 0.4191, 0.5372, 0.5043, 0.4967, 0.5368, 0.5144, 0.5311, 0.5646, 0.4410, 0.6697}},
+    {
+      { 0.2031, 0.1925, 0.4589, 0.4065, 0.2719, 0.3009, 0.3100, 0.3068, 0.3094, 0.2608, 0.2399, 0.3445, 0.3297, 0.2344, 0.2446, 0.2524, 0.2806, 0.2798, 0.2435, 0.2732},
+      { 0.1925, 0.2181, 0.4680, 0.4098, 0.2755, 0.2890, 0.3053, 0.2911, 0.3063, 0.2347, 0.2525, 0.3576, 0.3801, 0.2473, 0.2644, 0.2701, 0.2900, 0.3050, 0.2586, 0.2626},
+      { 0.4589, 0.4680, 0.3336, 0.2707, 0.2886, 0.3469, 0.3657, 0.3508, 0.3672, 0.3038, 0.3234, 0.4162, 0.4287, 0.3210, 0.3415, 0.3482, 0.3586, 0.3798, 0.3201, 0.3506},
+      { 0.4065, 0.4098, 0.2707, 0.2419, 0.2221, 0.2964, 0.3105, 0.2962, 0.3162, 0.2417, 0.2402, 0.3918, 0.3724, 0.2799, 0.2932, 0.2959, 0.2892, 0.3203, 0.2682, 0.2763},
+      { 0.2719, 0.2755, 0.2886, 0.2221, 0.3993, 0.3726, 0.4207, 0.3623, 0.3193, 0.3109, 0.3376, 0.3889, 0.4104, 0.4676, 0.4252, 0.3725, 0.4477, 0.3894, 0.3256, 0.4628},
+      { 0.3009, 0.2890, 0.3469, 0.2964, 0.3726, 0.3335, 0.3412, 0.3411, 0.3427, 0.2837, 0.2882, 0.3699, 0.3975, 0.2886, 0.3054, 0.3099, 0.3460, 0.3600, 0.2942, 0.3355},
+      { 0.3100, 0.3053, 0.3657, 0.3105, 0.4207, 0.3412, 0.3704, 0.3847, 0.3725, 0.2798, 0.2839, 0.4052, 0.4045, 0.3514, 0.3651, 0.3593, 0.3763, 0.3993, 0.3273, 0.3764},
+      { 0.3068, 0.2911, 0.3508, 0.2962, 0.3623, 0.3411, 0.3847, 0.4162, 0.3633, 0.3082, 0.3096, 0.3750, 0.4025, 0.3166, 0.3291, 0.3145, 0.3659, 0.3553, 0.2973, 0.3497},
+      { 0.3094, 0.3063, 0.3672, 0.3162, 0.3193, 0.3427, 0.3725, 0.3633, 0.3605, 0.3043, 0.3115, 0.3913, 0.4309, 0.3290, 0.3448, 0.3384, 0.3742, 0.3802, 0.3151, 0.3377},
+      { 0.2608, 0.2347, 0.3038, 0.2417, 0.3109, 0.2837, 0.2798, 0.3082, 0.3043, 0.2702, 0.2583, 0.3482, 0.3780, 0.2189, 0.2416, 0.2630, 0.2984, 0.3325, 0.2489, 0.2931},
+      { 0.2399, 0.2525, 0.3234, 0.2402, 0.3376, 0.2882, 0.2839, 0.3096, 0.3115, 0.2583, 0.2841, 0.3977, 0.4146, 0.2275, 0.2472, 0.2775, 0.3178, 0.3475, 0.2735, 0.3020},
+      { 0.3445, 0.3576, 0.4162, 0.3918, 0.3889, 0.3699, 0.4052, 0.3750, 0.3913, 0.3482, 0.3977, 0.4696, 0.4675, 0.4357, 0.4581, 0.4511, 0.4689, 0.4791, 0.3871, 0.4489},
+      { 0.3297, 0.3801, 0.4287, 0.3724, 0.4104, 0.3975, 0.4045, 0.4025, 0.4309, 0.3780, 0.4146, 0.4675, 0.5272, 0.4270, 0.4612, 0.4557, 0.5080, 0.4965, 0.3902, 0.4723},
+      { 0.2344, 0.2473, 0.3210, 0.2799, 0.4676, 0.2886, 0.3514, 0.3166, 0.3290, 0.2189, 0.2275, 0.4357, 0.4270, 0.4438, 0.4460, 0.4147, 0.4069, 0.4410, 0.3352, 0.4142},
+      { 0.2446, 0.2644, 0.3415, 0.2932, 0.4252, 0.3054, 0.3651, 0.3291, 0.3448, 0.2416, 0.2472, 0.4581, 0.4612, 0.4460, 0.4673, 0.4407, 0.4213, 0.4543, 0.3539, 0.4226},
+      { 0.2524, 0.2701, 0.3482, 0.2959, 0.3725, 0.3099, 0.3593, 0.3145, 0.3384, 0.2630, 0.2775, 0.4511, 0.4557, 0.4147, 0.4407, 0.4333, 0.4267, 0.4535, 0.3583, 0.4072},
+      { 0.2806, 0.2900, 0.3586, 0.2892, 0.4477, 0.3460, 0.3763, 0.3659, 0.3742, 0.2984, 0.3178, 0.4689, 0.5080, 0.4069, 0.4213, 0.4267, 0.4895, 0.4810, 0.3663, 0.4520},
+      { 0.2798, 0.3050, 0.3798, 0.3203, 0.3894, 0.3600, 0.3993, 0.3553, 0.3802, 0.3325, 0.3475, 0.4791, 0.4965, 0.4410, 0.4543, 0.4535, 0.4810, 0.4916, 0.3863, 0.4629},
+      { 0.2435, 0.2586, 0.3201, 0.2682, 0.3256, 0.2942, 0.3273, 0.2973, 0.3151, 0.2489, 0.2735, 0.3871, 0.3902, 0.3352, 0.3539, 0.3583, 0.3663, 0.3863, 0.3413, 0.3636},
+      { 0.2732, 0.2626, 0.3506, 0.2763, 0.4628, 0.3355, 0.3764, 0.3497, 0.3377, 0.2931, 0.3020, 0.4489, 0.4723, 0.4142, 0.4226, 0.4072, 0.4520, 0.4629, 0.3636, 0.5255}},
+    {
+      { 0.2193, 0.2096, 0.4643, 0.4041, 0.2788, 0.3034, 0.3108, 0.3126, 0.3129, 0.2610, 0.2668, 0.3627, 0.3435, 0.2391, 0.2265, 0.2399, 0.2653, 0.2718, 0.2454, 0.2782},
+      { 0.2096, 0.2350, 0.4763, 0.4178, 0.2835, 0.3083, 0.3097, 0.3013, 0.3260, 0.2404, 0.2461, 0.3666, 0.3798, 0.2538, 0.2440, 0.2578, 0.2888, 0.3053, 0.2642, 0.2708},
+      { 0.4643, 0.4763, 0.3265, 0.2785, 0.3070, 0.3510, 0.3596, 0.3463, 0.3692, 0.3178, 0.3114, 0.4175, 0.4387, 0.3289, 0.3223, 0.3394, 0.3477, 0.3700, 0.3264, 0.3569},
+      { 0.4041, 0.4178, 0.2785, 0.2554, 0.2494, 0.3017, 0.3168, 0.3052, 0.3217, 0.2489, 0.2387, 0.3854, 0.3784, 0.2866, 0.2728, 0.2895, 0.2936, 0.3111, 0.2765, 0.2938},
+      { 0.2788, 0.2835, 0.3070, 0.2494, 0.4065, 0.3797, 0.4038, 0.3649, 0.3470, 0.3090, 0.3539, 0.4117, 0.4162, 0.4252, 0.4651, 0.3923, 0.4543, 0.4064, 0.3198, 0.4314},
+      { 0.3034, 0.3083, 0.3510, 0.3017, 0.3797, 0.3338, 0.3495, 0.3451, 0.3568, 0.2929, 0.3026, 0.3821, 0.3865, 0.3028, 0.2873, 0.2980, 0.3468, 0.3596, 0.2964, 0.3531},
+      { 0.3108, 0.3097, 0.3596, 0.3168, 0.4038, 0.3495, 0.3864, 0.3787, 0.3802, 0.2860, 0.2960, 0.4157, 0.4049, 0.3732, 0.3531, 0.3548, 0.3786, 0.3967, 0.3323, 0.3936},
+      { 0.3126, 0.3013, 0.3463, 0.3052, 0.3649, 0.3451, 0.3787, 0.4243, 0.3754, 0.2963, 0.3075, 0.3770, 0.4040, 0.3207, 0.3086, 0.3083, 0.3632, 0.3447, 0.2914, 0.3449},
+      { 0.3129, 0.3260, 0.3692, 0.3217, 0.3470, 0.3568, 0.3802, 0.3754, 0.3919, 0.3084, 0.3233, 0.4006, 0.4440, 0.3376, 0.3462, 0.3355, 0.3919, 0.3791, 0.3254, 0.3460},
+      { 0.2610, 0.2404, 0.3178, 0.2489, 0.3090, 0.2929, 0.2860, 0.2963, 0.3084, 0.2916, 0.2561, 0.3408, 0.3654, 0.2198, 0.2105, 0.2519, 0.2912, 0.3053, 0.2663, 0.2998},
+      { 0.2668, 0.2461, 0.3114, 0.2387, 0.3539, 0.3026, 0.2960, 0.3075, 0.3233, 0.2561, 0.2795, 0.3937, 0.4519, 0.2424, 0.2230, 0.2659, 0.3057, 0.3385, 0.2775, 0.3183},
+      { 0.3627, 0.3666, 0.4175, 0.3854, 0.4117, 0.3821, 0.4157, 0.3770, 0.4006, 0.3408, 0.3937, 0.4670, 0.4965, 0.4462, 0.4631, 0.4607, 0.4722, 0.4891, 0.3918, 0.4511},
+      { 0.3435, 0.3798, 0.4387, 0.3784, 0.4162, 0.3865, 0.4049, 0.4040, 0.4440, 0.3654, 0.4519, 0.4965, 0.5304, 0.4553, 0.4612, 0.4663, 0.5175, 0.5190, 0.3966, 0.4956},
+      { 0.2391, 0.2538, 0.3289, 0.2866, 0.4252, 0.3028, 0.3732, 0.3207, 0.3376, 0.2198, 0.2424, 0.4462, 0.4553, 0.4745, 0.4515, 0.4411, 0.4343, 0.4612, 0.3553, 0.4492},
+      { 0.2265, 0.2440, 0.3223, 0.2728, 0.4651, 0.2873, 0.3531, 0.3086, 0.3462, 0.2105, 0.2230, 0.4631, 0.4612, 0.4515, 0.4624, 0.4426, 0.4193, 0.4579, 0.3450, 0.4295},
+      { 0.2399, 0.2578, 0.3394, 0.2895, 0.3923, 0.2980, 0.3548, 0.3083, 0.3355, 0.2519, 0.2659, 0.4607, 0.4663, 0.4411, 0.4426, 0.4502, 0.4398, 0.4662, 0.3605, 0.4225},
+      { 0.2653, 0.2888, 0.3477, 0.2936, 0.4543, 0.3468, 0.3786, 0.3632, 0.3919, 0.2912, 0.3057, 0.4722, 0.5175, 0.4343, 0.4193, 0.4398, 0.5090, 0.4961, 0.3734, 0.4566},
+      { 0.2718, 0.3053, 0.3700, 0.3111, 0.4064, 0.3596, 0.3967, 0.3447, 0.3791, 0.3053, 0.3385, 0.4891, 0.5190, 0.4612, 0.4579, 0.4662, 0.4961, 0.5098, 0.3964, 0.4795},
+      { 0.2454, 0.2642, 0.3264, 0.2765, 0.3198, 0.2964, 0.3323, 0.2914, 0.3254, 0.2663, 0.2775, 0.3918, 0.3966, 0.3553, 0.3450, 0.3605, 0.3734, 0.3964, 0.3490, 0.3746},
+      { 0.2782, 0.2708, 0.3569, 0.2938, 0.4314, 0.3531, 0.3936, 0.3449, 0.3460, 0.2998, 0.3183, 0.4511, 0.4956, 0.4492, 0.4295, 0.4225, 0.4566, 0.4795, 0.3746, 0.5431}},
+    {
+      { 0.2195, 0.2190, 0.4622, 0.4088, 0.2728, 0.2964, 0.2913, 0.3056, 0.3232, 0.2540, 0.2695, 0.3536, 0.3312, 0.2368, 0.2345, 0.2292, 0.2739, 0.2650, 0.2488, 0.2602},
+      { 0.2190, 0.2385, 0.4717, 0.4156, 0.2631, 0.2923, 0.2914, 0.2979, 0.3208, 0.2324, 0.2579, 0.3607, 0.3820, 0.2618, 0.2652, 0.2447, 0.2925, 0.2898, 0.2664, 0.2595},
+      { 0.4622, 0.4717, 0.3371, 0.2759, 0.2889, 0.3480, 0.3474, 0.3426, 0.3672, 0.3161, 0.3192, 0.4248, 0.4287, 0.3345, 0.3399, 0.3313, 0.3529, 0.3646, 0.3301, 0.3416},
+      { 0.4088, 0.4156, 0.2759, 0.2461, 0.2112, 0.2955, 0.2930, 0.2969, 0.3108, 0.2412, 0.2356, 0.3960, 0.3960, 0.2886, 0.2921, 0.2750, 0.2916, 0.3120, 0.2812, 0.2936},
+      { 0.2728, 0.2631, 0.2889, 0.2112, 0.4146, 0.3430, 0.3674, 0.3483, 0.3404, 0.2943, 0.3224, 0.4028, 0.4132, 0.3725, 0.3923, 0.4444, 0.4656, 0.4144, 0.2712, 0.3923},
+      { 0.2964, 0.2923, 0.3480, 0.2955, 0.3430, 0.3206, 0.3255, 0.3420, 0.3382, 0.2901, 0.2939, 0.3745, 0.4020, 0.3015, 0.2943, 0.2802, 0.3312, 0.3385, 0.2921, 0.3293},
+      { 0.2913, 0.2914, 0.3474, 0.2930, 0.3674, 0.3255, 0.3543, 0.3701, 0.3492, 0.2749, 0.2921, 0.4002, 0.4165, 0.3615, 0.3569, 0.3242, 0.3595, 0.3764, 0.3166, 0.3670},
+      { 0.3056, 0.2979, 0.3426, 0.2969, 0.3483, 0.3420, 0.3701, 0.4181, 0.3714, 0.3056, 0.3151, 0.3773, 0.3996, 0.3156, 0.3221, 0.3053, 0.3647, 0.3474, 0.2964, 0.3599},
+      { 0.3232, 0.3208, 0.3672, 0.3108, 0.3404, 0.3382, 0.3492, 0.3714, 0.3790, 0.2983, 0.3176, 0.4273, 0.4449, 0.3298, 0.3394, 0.3345, 0.3809, 0.3779, 0.3133, 0.3594},
+      { 0.2540, 0.2324, 0.3161, 0.2412, 0.2943, 0.2901, 0.2749, 0.3056, 0.2983, 0.2737, 0.2610, 0.3353, 0.3732, 0.2493, 0.2510, 0.2425, 0.3099, 0.3040, 0.2808, 0.3122},
+      { 0.2695, 0.2579, 0.3192, 0.2356, 0.3224, 0.2939, 0.2921, 0.3151, 0.3176, 0.2610, 0.2869, 0.3982, 0.4387, 0.2566, 0.2543, 0.2297, 0.3065, 0.3445, 0.2739, 0.3109},
+      { 0.3536, 0.3607, 0.4248, 0.3960, 0.4028, 0.3745, 0.4002, 0.3773, 0.4273, 0.3353, 0.3982, 0.4672, 0.4789, 0.4502, 0.4728, 0.4625, 0.4823, 0.4902, 0.3886, 0.4469},
+      { 0.3312, 0.3820, 0.4287, 0.3960, 0.4132, 0.4020, 0.4165, 0.3996, 0.4449, 0.3732, 0.4387, 0.4789, 0.5196, 0.4626, 0.4837, 0.4699, 0.5062, 0.5102, 0.4067, 0.4791},
+      { 0.2368, 0.2618, 0.3345, 0.2886, 0.3725, 0.3015, 0.3615, 0.3156, 0.3298, 0.2493, 0.2566, 0.4502, 0.4626, 0.4645, 0.4612, 0.4303, 0.4271, 0.4554, 0.3630, 0.4323},
+      { 0.2345, 0.2652, 0.3399, 0.2921, 0.3923, 0.2943, 0.3569, 0.3221, 0.3394, 0.2510, 0.2543, 0.4728, 0.4837, 0.4612, 0.4767, 0.4499, 0.4367, 0.4689, 0.3718, 0.4358},
+      { 0.2292, 0.2447, 0.3313, 0.2750, 0.4444, 0.2802, 0.3242, 0.3053, 0.3345, 0.2425, 0.2297, 0.4625, 0.4699, 0.4303, 0.4499, 0.4347, 0.4220, 0.4603, 0.3419, 0.4122},
+      { 0.2739, 0.2925, 0.3529, 0.2916, 0.4656, 0.3312, 0.3595, 0.3647, 0.3809, 0.3099, 0.3065, 0.4823, 0.5062, 0.4271, 0.4367, 0.4220, 0.4863, 0.4876, 0.3649, 0.4327},
+      { 0.2650, 0.2898, 0.3646, 0.3120, 0.4144, 0.3385, 0.3764, 0.3474, 0.3779, 0.3040, 0.3445, 0.4902, 0.5102, 0.4554, 0.4689, 0.4603, 0.4876, 0.5131, 0.3862, 0.4609},
+      { 0.2488, 0.2664, 0.3301, 0.2812, 0.2712, 0.2921, 0.3166, 0.2964, 0.3133, 0.2808, 0.2739, 0.3886, 0.4067, 0.3630, 0.3718, 0.3419, 0.3649, 0.3862, 0.3638, 0.3618},
+      { 0.2602, 0.2595, 0.3416, 0.2936, 0.3923, 0.3293, 0.3670, 0.3599, 0.3594, 0.3122, 0.3109, 0.4469, 0.4791, 0.4323, 0.4358, 0.4122, 0.4327, 0.4609, 0.3618, 0.5280}},
+    {
+      { 0.2268, 0.2198, 0.4690, 0.4236, 0.3605, 0.3159, 0.3073, 0.3377, 0.3466, 0.2682, 0.2998, 0.3705, 0.3720, 0.2543, 0.2581, 0.2602, 0.2811, 0.2957, 0.2452, 0.2829},
+      { 0.2198, 0.2443, 0.4698, 0.4198, 0.3536, 0.3116, 0.3143, 0.3045, 0.3430, 0.2453, 0.2820, 0.3820, 0.4171, 0.2850, 0.2781, 0.2800, 0.2505, 0.3226, 0.2773, 0.2549},
+      { 0.4690, 0.4698, 0.3564, 0.2860, 0.3416, 0.3713, 0.3824, 0.3613, 0.3784, 0.3148, 0.3406, 0.4485, 0.4586, 0.3493, 0.3641, 0.3649, 0.3341, 0.3898, 0.3282, 0.3637},
+      { 0.4236, 0.4198, 0.2860, 0.2444, 0.2675, 0.2931, 0.2976, 0.3048, 0.3074, 0.2532, 0.2457, 0.3980, 0.3980, 0.2817, 0.2918, 0.2876, 0.2603, 0.3319, 0.2842, 0.2906},
+      { 0.3605, 0.3536, 0.3416, 0.2675, 0.4872, 0.4205, 0.4430, 0.4169, 0.4452, 0.3593, 0.4030, 0.4681, 0.5011, 0.4477, 0.4543, 0.4656, 0.6784, 0.5046, 0.3695, 0.4623},
+      { 0.3159, 0.3116, 0.3713, 0.2931, 0.4205, 0.3532, 0.3543, 0.3592, 0.3630, 0.3173, 0.3116, 0.4127, 0.4684, 0.3474, 0.3343, 0.3301, 0.3281, 0.3877, 0.3113, 0.3757},
+      { 0.3073, 0.3143, 0.3824, 0.2976, 0.4430, 0.3543, 0.3859, 0.3896, 0.3985, 0.2883, 0.3106, 0.4334, 0.4722, 0.3953, 0.3921, 0.3756, 0.3642, 0.4142, 0.3313, 0.3761},
+      { 0.3377, 0.3045, 0.3613, 0.3048, 0.4169, 0.3592, 0.3896, 0.4258, 0.4047, 0.3271, 0.3243, 0.4116, 0.4383, 0.3404, 0.3364, 0.3342, 0.3663, 0.3733, 0.2998, 0.3646},
+      { 0.3466, 0.3430, 0.3784, 0.3074, 0.4452, 0.3630, 0.3985, 0.4047, 0.3946, 0.3222, 0.3423, 0.4479, 0.4604, 0.3718, 0.3715, 0.3750, 0.4576, 0.4213, 0.3383, 0.3802},
+      { 0.2682, 0.2453, 0.3148, 0.2532, 0.3593, 0.3173, 0.2883, 0.3271, 0.3222, 0.2781, 0.2866, 0.3760, 0.4036, 0.2741, 0.2787, 0.2917, 0.2806, 0.3522, 0.2807, 0.3482},
+      { 0.2998, 0.2820, 0.3406, 0.2457, 0.4030, 0.3116, 0.3106, 0.3243, 0.3423, 0.2866, 0.3093, 0.4067, 0.4640, 0.2813, 0.2958, 0.2858, 0.3012, 0.3734, 0.2840, 0.3247},
+      { 0.3705, 0.3820, 0.4485, 0.3980, 0.4681, 0.4127, 0.4334, 0.4116, 0.4479, 0.3760, 0.4067, 0.5090, 0.5389, 0.4635, 0.4834, 0.4760, 0.5046, 0.5257, 0.4042, 0.4814},
+      { 0.3720, 0.4171, 0.4586, 0.3980, 0.5011, 0.4684, 0.4722, 0.4383, 0.4604, 0.4036, 0.4640, 0.5389, 0.5620, 0.5057, 0.5288, 0.5084, 0.4998, 0.5556, 0.4495, 0.5286},
+      { 0.2543, 0.2850, 0.3493, 0.2817, 0.4477, 0.3474, 0.3953, 0.3404, 0.3718, 0.2741, 0.2813, 0.4635, 0.5057, 0.4710, 0.4760, 0.4512, 0.4205, 0.4797, 0.3783, 0.4416},
+      { 0.2581, 0.2781, 0.3641, 0.2918, 0.4543, 0.3343, 0.3921, 0.3364, 0.3715, 0.2787, 0.2958, 0.4834, 0.5288, 0.4760, 0.4925, 0.4724, 0.4381, 0.5008, 0.3894, 0.4666},
+      { 0.2602, 0.2800, 0.3649, 0.2876, 0.4656, 0.3301, 0.3756, 0.3342, 0.3750, 0.2917, 0.2858, 0.4760, 0.5084, 0.4512, 0.4724, 0.4591, 0.4317, 0.4880, 0.3762, 0.4273},
+      { 0.2811, 0.2505, 0.3341, 0.2603, 0.6784, 0.3281, 0.3642, 0.3663, 0.4576, 0.2806, 0.3012, 0.5046, 0.4998, 0.4205, 0.4381, 0.4317, 0.4972, 0.4871, 0.3481, 0.4270},
+      { 0.2957, 0.3226, 0.3898, 0.3319, 0.5046, 0.3877, 0.4142, 0.3733, 0.4213, 0.3522, 0.3734, 0.5257, 0.5556, 0.4797, 0.5008, 0.4880, 0.4871, 0.5464, 0.4030, 0.4899},
+      { 0.2452, 0.2773, 0.3282, 0.2842, 0.3695, 0.3113, 0.3313, 0.2998, 0.3383, 0.2807, 0.2840, 0.4042, 0.4495, 0.3783, 0.3894, 0.3762, 0.3481, 0.4030, 0.3484, 0.3744},
+      { 0.2829, 0.2549, 0.3637, 0.2906, 0.4623, 0.3757, 0.3761, 0.3646, 0.3802, 0.3482, 0.3247, 0.4814, 0.5286, 0.4416, 0.4666, 0.4273, 0.4270, 0.4899, 0.3744, 0.5239}},
+    {
+      { 0.2908, 0.2692, 0.4881, 0.4344, 0.3611, 0.3461, 0.3417, 0.3620, 0.3535, 0.3132, 0.3235, 0.3998, 0.3673, 0.2888, 0.2924, 0.2747, 0.3207, 0.2816, 0.2937, 0.3302},
+      { 0.2692, 0.2642, 0.4935, 0.4342, 0.3533, 0.3447, 0.3444, 0.3312, 0.3551, 0.3025, 0.3138, 0.3791, 0.4120, 0.3158, 0.3118, 0.2924, 0.3249, 0.2765, 0.3022, 0.3166},
+      { 0.4881, 0.4935, 0.3676, 0.3075, 0.3636, 0.3964, 0.3903, 0.3946, 0.3998, 0.3585, 0.3565, 0.4544, 0.4733, 0.3734, 0.3836, 0.3699, 0.3845, 0.3821, 0.3591, 0.3895},
+      { 0.4344, 0.4342, 0.3075, 0.2840, 0.2756, 0.3307, 0.3397, 0.3416, 0.3454, 0.2974, 0.2773, 0.4055, 0.3874, 0.3274, 0.3298, 0.3129, 0.3317, 0.3123, 0.3074, 0.3444},
+      { 0.3611, 0.3533, 0.3636, 0.2756, 0.5272, 0.4184, 0.4152, 0.4123, 0.3860, 0.3605, 0.3936, 0.5436, 0.5567, 0.3894, 0.4064, 0.4144, 0.5046, 0.5732, 0.3517, 0.4472},
+      { 0.3461, 0.3447, 0.3964, 0.3307, 0.4184, 0.3778, 0.3785, 0.4015, 0.3881, 0.3438, 0.3374, 0.4094, 0.4374, 0.3628, 0.3584, 0.3449, 0.3968, 0.3544, 0.3487, 0.3979},
+      { 0.3417, 0.3444, 0.3903, 0.3397, 0.4152, 0.3785, 0.4059, 0.4066, 0.4038, 0.3283, 0.3379, 0.4168, 0.4373, 0.4077, 0.4121, 0.3857, 0.4130, 0.3795, 0.3606, 0.4069},
+      { 0.3620, 0.3312, 0.3946, 0.3416, 0.4123, 0.4015, 0.4066, 0.5173, 0.4250, 0.3671, 0.3668, 0.4391, 0.4766, 0.3626, 0.3738, 0.3490, 0.4067, 0.4008, 0.3532, 0.3910},
+      { 0.3535, 0.3551, 0.3998, 0.3454, 0.3860, 0.3881, 0.4038, 0.4250, 0.4089, 0.3460, 0.3785, 0.4429, 0.4838, 0.3773, 0.3778, 0.3665, 0.4166, 0.4221, 0.3472, 0.3892},
+      { 0.3132, 0.3025, 0.3585, 0.2974, 0.3605, 0.3438, 0.3283, 0.3671, 0.3460, 0.3701, 0.3186, 0.3571, 0.3941, 0.3008, 0.3022, 0.3126, 0.3674, 0.2773, 0.3401, 0.3592},
+      { 0.3235, 0.3138, 0.3565, 0.2773, 0.3936, 0.3374, 0.3379, 0.3668, 0.3785, 0.3186, 0.3489, 0.4232, 0.4614, 0.3222, 0.3196, 0.3257, 0.3647, 0.3309, 0.3162, 0.3898},
+      { 0.3998, 0.3791, 0.4544, 0.4055, 0.5436, 0.4094, 0.4168, 0.4391, 0.4429, 0.3571, 0.4232, 0.5203, 0.5375, 0.4733, 0.4938, 0.4893, 0.5168, 0.5301, 0.4058, 0.4907},
+      { 0.3673, 0.4120, 0.4733, 0.3874, 0.5567, 0.4374, 0.4373, 0.4766, 0.4838, 0.3941, 0.4614, 0.5375, 0.5860, 0.4935, 0.5211, 0.5061, 0.5615, 0.5358, 0.4333, 0.5391},
+      { 0.2888, 0.3158, 0.3734, 0.3274, 0.3894, 0.3628, 0.4077, 0.3626, 0.3773, 0.3008, 0.3222, 0.4733, 0.4935, 0.5039, 0.5126, 0.4827, 0.4702, 0.4600, 0.4061, 0.4774},
+      { 0.2924, 0.3118, 0.3836, 0.3298, 0.4064, 0.3584, 0.4121, 0.3738, 0.3778, 0.3022, 0.3196, 0.4938, 0.5211, 0.5126, 0.5324, 0.5086, 0.4971, 0.4855, 0.4154, 0.4794},
+      { 0.2747, 0.2924, 0.3699, 0.3129, 0.4144, 0.3449, 0.3857, 0.3490, 0.3665, 0.3126, 0.3257, 0.4893, 0.5061, 0.4827, 0.5086, 0.4959, 0.4833, 0.4846, 0.4073, 0.4660},
+      { 0.3207, 0.3249, 0.3845, 0.3317, 0.5046, 0.3968, 0.4130, 0.4067, 0.4166, 0.3674, 0.3647, 0.5168, 0.5615, 0.4702, 0.4971, 0.4833, 0.5377, 0.5150, 0.4104, 0.4869},
+      { 0.2816, 0.2765, 0.3821, 0.3123, 0.5732, 0.3544, 0.3795, 0.4008, 0.4221, 0.2773, 0.3309, 0.5301, 0.5358, 0.4600, 0.4855, 0.4846, 0.5150, 0.5335, 0.3768, 0.4855},
+      { 0.2937, 0.3022, 0.3591, 0.3074, 0.3517, 0.3487, 0.3606, 0.3532, 0.3472, 0.3401, 0.3162, 0.4058, 0.4333, 0.4061, 0.4154, 0.4073, 0.4104, 0.3768, 0.3879, 0.4086},
+      { 0.3302, 0.3166, 0.3895, 0.3444, 0.4472, 0.3979, 0.4069, 0.3910, 0.3892, 0.3592, 0.3898, 0.4907, 0.5391, 0.4774, 0.4794, 0.4660, 0.4869, 0.4855, 0.4086, 0.5843}},
+    {
+      { 0.1313, 0.1263, 0.3856, 0.3283, 0.2054, 0.2289, 0.2279, 0.2300, 0.2516, 0.1856, 0.1837, 0.2809, 0.2838, 0.2087, 0.2068, 0.2109, 0.2330, 0.2319, 0.1859, 0.2116},
+      { 0.1263, 0.1585, 0.3988, 0.3413, 0.1635, 0.2109, 0.2234, 0.2212, 0.2580, 0.1595, 0.1844, 0.2893, 0.3052, 0.2218, 0.2403, 0.2385, 0.2345, 0.2583, 0.1758, 0.1955},
+      { 0.3856, 0.3988, 0.2712, 0.2082, 0.1867, 0.2810, 0.2969, 0.2965, 0.3012, 0.2428, 0.2494, 0.3663, 0.3878, 0.3004, 0.3196, 0.3243, 0.3053, 0.3398, 0.2514, 0.2932},
+      { 0.3283, 0.3413, 0.2082, 0.1737, 0.1052, 0.2189, 0.2279, 0.2427, 0.2435, 0.1755, 0.1694, 0.3262, 0.3033, 0.2568, 0.2684, 0.2667, 0.2354, 0.2752, 0.2061, 0.2184},
+      { 0.2054, 0.1635, 0.1867, 0.1052, 0.3214, 0.3945, 0.3702, 0.2720, 0.2049, 0.3543, 0.3136, 0.3585, 0.3878, 0.3256, 0.3198, 0.2712, 0.3695, 0.3517, 0.3874, 0.4468},
+      { 0.2289, 0.2109, 0.2810, 0.2189, 0.3945, 0.2765, 0.2770, 0.3084, 0.2873, 0.2542, 0.2367, 0.3427, 0.3486, 0.2755, 0.2847, 0.2743, 0.3041, 0.3247, 0.2357, 0.3022},
+      { 0.2279, 0.2234, 0.2969, 0.2279, 0.3702, 0.2770, 0.3016, 0.3267, 0.2964, 0.2460, 0.2407, 0.3535, 0.3640, 0.3191, 0.3356, 0.3179, 0.3371, 0.3524, 0.2436, 0.3176},
+      { 0.2300, 0.2212, 0.2965, 0.2427, 0.2720, 0.3084, 0.3267, 0.3178, 0.2997, 0.2706, 0.2589, 0.3392, 0.3676, 0.2895, 0.2877, 0.2696, 0.3196, 0.3179, 0.2707, 0.3239},
+      { 0.2516, 0.2580, 0.3012, 0.2435, 0.2049, 0.2873, 0.2964, 0.2997, 0.2903, 0.2625, 0.2475, 0.3311, 0.3816, 0.2848, 0.2979, 0.2965, 0.3160, 0.3369, 0.2684, 0.2986},
+      { 0.1856, 0.1595, 0.2428, 0.1755, 0.3543, 0.2542, 0.2460, 0.2706, 0.2625, 0.2325, 0.2001, 0.3384, 0.3549, 0.2500, 0.2728, 0.2744, 0.3000, 0.3243, 0.2266, 0.3112},
+      { 0.1837, 0.1844, 0.2494, 0.1694, 0.3136, 0.2367, 0.2407, 0.2589, 0.2475, 0.2001, 0.2216, 0.3583, 0.3767, 0.2306, 0.2439, 0.2485, 0.2997, 0.3247, 0.1872, 0.2552},
+      { 0.2809, 0.2893, 0.3663, 0.3262, 0.3585, 0.3427, 0.3535, 0.3392, 0.3311, 0.3384, 0.3583, 0.4234, 0.4625, 0.3972, 0.4025, 0.4014, 0.4239, 0.4445, 0.3545, 0.4044},
+      { 0.2838, 0.3052, 0.3878, 0.3033, 0.3878, 0.3486, 0.3640, 0.3676, 0.3816, 0.3549, 0.3767, 0.4625, 0.4962, 0.3960, 0.4148, 0.4067, 0.4534, 0.4682, 0.3340, 0.4254},
+      { 0.2087, 0.2218, 0.3004, 0.2568, 0.3256, 0.2755, 0.3191, 0.2895, 0.2848, 0.2500, 0.2306, 0.3972, 0.3960, 0.3952, 0.4110, 0.3835, 0.3710, 0.4009, 0.3049, 0.3769},
+      { 0.2068, 0.2403, 0.3196, 0.2684, 0.3198, 0.2847, 0.3356, 0.2877, 0.2979, 0.2728, 0.2439, 0.4025, 0.4148, 0.4110, 0.4238, 0.4088, 0.3946, 0.4209, 0.3166, 0.3899},
+      { 0.2109, 0.2385, 0.3243, 0.2667, 0.2712, 0.2743, 0.3179, 0.2696, 0.2965, 0.2744, 0.2485, 0.4014, 0.4067, 0.3835, 0.4088, 0.3969, 0.3790, 0.4103, 0.3121, 0.3575},
+      { 0.2330, 0.2345, 0.3053, 0.2354, 0.3695, 0.3041, 0.3371, 0.3196, 0.3160, 0.3000, 0.2997, 0.4239, 0.4534, 0.3710, 0.3946, 0.3790, 0.4304, 0.4428, 0.3126, 0.3903},
+      { 0.2319, 0.2583, 0.3398, 0.2752, 0.3517, 0.3247, 0.3524, 0.3179, 0.3369, 0.3243, 0.3247, 0.4445, 0.4682, 0.4009, 0.4209, 0.4103, 0.4428, 0.4715, 0.3518, 0.4199},
+      { 0.1859, 0.1758, 0.2514, 0.2061, 0.3874, 0.2357, 0.2436, 0.2707, 0.2684, 0.2266, 0.1872, 0.3545, 0.3340, 0.3049, 0.3166, 0.3121, 0.3126, 0.3518, 0.2878, 0.3195},
+      { 0.2116, 0.1955, 0.2932, 0.2184, 0.4468, 0.3022, 0.3176, 0.3239, 0.2986, 0.3112, 0.2552, 0.4044, 0.4254, 0.3769, 0.3899, 0.3575, 0.3903, 0.4199, 0.3195, 0.4761}},
+    {
+      { 0.2378, 0.2375, 0.4683, 0.4146, 0.5112, 0.3322, 0.3067, 0.3909, 0.3513, 0.2913, 0.3002, 0.3851, 0.3372, 0.2604, 0.2630, 0.2646, 0.2937, 0.3111, 0.2453, 0.2562},
+      { 0.2375, 0.2704, 0.4809, 0.4034, 0.4012, 0.2936, 0.3196, 0.3462, 0.3272, 0.2605, 0.2837, 0.3882, 0.3662, 0.2791, 0.2746, 0.2686, 0.3128, 0.3163, 0.2435, 0.2286},
+      { 0.4683, 0.4809, 0.3393, 0.2880, 0.3642, 0.3594, 0.3641, 0.4052, 0.4129, 0.3138, 0.3284, 0.4609, 0.4303, 0.3519, 0.3703, 0.3665, 0.3686, 0.3932, 0.3186, 0.3258},
+      { 0.4146, 0.4034, 0.2880, 0.2368, 0.2880, 0.2900, 0.2921, 0.3047, 0.3271, 0.2493, 0.2238, 0.4045, 0.3543, 0.3065, 0.3075, 0.2972, 0.3034, 0.3181, 0.2566, 0.2938},
+      { 0.5112, 0.4012, 0.3642, 0.2880, 0.5267, 0.5460, 0.5316, 0.4877, 0.4418, 0.4318, 0.4426, 0.4528, 0.4983, 0.4628, 0.4314, 0.3923, 0.4623, 0.4472, 0.4468, 0.7791},
+      { 0.3322, 0.2936, 0.3594, 0.2900, 0.5460, 0.3486, 0.3653, 0.4033, 0.4205, 0.3074, 0.3066, 0.4450, 0.4357, 0.3400, 0.3374, 0.3349, 0.4006, 0.4086, 0.3041, 0.3492},
+      { 0.3067, 0.3196, 0.3641, 0.2921, 0.5316, 0.3653, 0.3862, 0.4034, 0.3935, 0.3029, 0.3257, 0.4383, 0.4495, 0.3824, 0.3794, 0.3661, 0.3731, 0.4189, 0.3248, 0.3587},
+      { 0.3909, 0.3462, 0.4052, 0.3047, 0.4877, 0.4033, 0.4034, 0.4881, 0.4022, 0.3416, 0.3556, 0.4231, 0.4371, 0.3395, 0.3514, 0.3310, 0.4071, 0.4045, 0.3321, 0.3742},
+      { 0.3513, 0.3272, 0.4129, 0.3271, 0.4418, 0.4205, 0.3935, 0.4022, 0.4014, 0.3131, 0.3594, 0.3975, 0.4624, 0.3469, 0.3499, 0.3445, 0.3890, 0.3751, 0.3105, 0.3643},
+      { 0.2913, 0.2605, 0.3138, 0.2493, 0.4318, 0.3074, 0.3029, 0.3416, 0.3131, 0.3105, 0.2913, 0.3921, 0.3916, 0.3031, 0.3071, 0.3084, 0.3525, 0.3780, 0.2975, 0.3197},
+      { 0.3002, 0.2837, 0.3284, 0.2238, 0.4426, 0.3066, 0.3257, 0.3556, 0.3594, 0.2913, 0.3218, 0.4357, 0.4072, 0.3009, 0.2953, 0.3022, 0.3125, 0.4026, 0.2570, 0.1890},
+      { 0.3851, 0.3882, 0.4609, 0.4045, 0.4528, 0.4450, 0.4383, 0.4231, 0.3975, 0.3921, 0.4357, 0.4785, 0.5021, 0.4499, 0.4527, 0.4564, 0.4765, 0.4885, 0.4064, 0.4282},
+      { 0.3372, 0.3662, 0.4303, 0.3543, 0.4983, 0.4357, 0.4495, 0.4371, 0.4624, 0.3916, 0.4072, 0.5021, 0.5501, 0.4681, 0.4897, 0.4773, 0.5747, 0.5348, 0.3890, 0.4630},
+      { 0.2604, 0.2791, 0.3519, 0.3065, 0.4628, 0.3400, 0.3824, 0.3395, 0.3469, 0.3031, 0.3009, 0.4499, 0.4681, 0.4628, 0.4739, 0.4390, 0.4256, 0.4705, 0.3687, 0.3496},
+      { 0.2630, 0.2746, 0.3703, 0.3075, 0.4314, 0.3374, 0.3794, 0.3514, 0.3499, 0.3071, 0.2953, 0.4527, 0.4897, 0.4739, 0.4936, 0.4551, 0.4348, 0.4712, 0.3711, 0.3647},
+      { 0.2646, 0.2686, 0.3665, 0.2972, 0.3923, 0.3349, 0.3661, 0.3310, 0.3445, 0.3084, 0.3022, 0.4564, 0.4773, 0.4390, 0.4551, 0.4400, 0.4333, 0.4629, 0.3684, 0.3562},
+      { 0.2937, 0.3128, 0.3686, 0.3034, 0.4623, 0.4006, 0.3731, 0.4071, 0.3890, 0.3525, 0.3125, 0.4765, 0.5747, 0.4256, 0.4348, 0.4333, 0.5066, 0.4927, 0.3784, 0.4075},
+      { 0.3111, 0.3163, 0.3932, 0.3181, 0.4472, 0.4086, 0.4189, 0.4045, 0.3751, 0.3780, 0.4026, 0.4885, 0.5348, 0.4705, 0.4712, 0.4629, 0.4927, 0.5095, 0.4120, 0.4630},
+      { 0.2453, 0.2435, 0.3186, 0.2566, 0.4468, 0.3041, 0.3248, 0.3321, 0.3105, 0.2975, 0.2570, 0.4064, 0.3890, 0.3687, 0.3711, 0.3684, 0.3784, 0.4120, 0.3427, 0.2905},
+      { 0.2562, 0.2286, 0.3258, 0.2938, 0.7791, 0.3492, 0.3587, 0.3742, 0.3643, 0.3197, 0.1890, 0.4282, 0.4630, 0.3496, 0.3647, 0.3562, 0.4075, 0.4630, 0.2905, 0.6040}}},
+  {
+    {
+      { 0.1478, 0.1034, 0.3423, 0.2913, 0.3178, 0.4078, 0.3591, 0.2889, 0.2351, 0.2570, 0.1947, 0.2985, 0.3025, 0.2718, 0.2533, 0.2382, 0.3022, 0.2848, 0.2679, 0.3745},
+      { 0.1034, 0.1572, 0.3790, 0.3363, 0.2724, 0.2027, 0.2299, 0.2325, 0.2515, 0.1756, 0.1838, 0.2900, 0.2991, 0.2351, 0.2476, 0.2459, 0.2456, 0.2539, 0.2206, 0.2413},
+      { 0.3423, 0.3790, 0.2565, 0.1903, 0.2877, 0.1880, 0.2302, 0.2447, 0.2845, 0.1969, 0.2152, 0.3673, 0.3589, 0.2641, 0.2915, 0.2969, 0.2780, 0.3164, 0.2225, 0.2468},
+      { 0.2913, 0.3363, 0.1903, 0.1479, 0.2033, 0.1239, 0.1699, 0.1900, 0.2335, 0.1247, 0.1412, 0.2950, 0.2834, 0.2023, 0.2124, 0.2143, 0.1963, 0.2293, 0.1710, 0.1338},
+      { 0.3178, 0.2724, 0.2877, 0.2033, 0.3242, 0.2585, 0.2907, 0.2797, 0.2719, 0.2250, 0.2302, 0.3974, 0.3927, 0.3009, 0.3034, 0.2964, 0.3159, 0.3461, 0.2289, 0.3322},
+      { 0.4078, 0.2027, 0.1880, 0.1239, 0.2585, 0.1976, 0.1846, 0.2347, 0.1767, 0.1499, 0.1231, 0.2676, 0.2896, 0.2083, 0.2179, 0.1883, 0.2294, 0.2548, 0.1656, 0.2664},
+      { 0.3591, 0.2299, 0.2302, 0.1699, 0.2907, 0.1846, 0.2277, 0.2490, 0.2295, 0.1638, 0.1576, 0.2927, 0.2892, 0.2524, 0.2518, 0.2314, 0.2543, 0.2703, 0.1804, 0.2686},
+      { 0.2889, 0.2325, 0.2447, 0.1900, 0.2797, 0.2347, 0.2490, 0.2837, 0.2518, 0.2141, 0.2048, 0.3080, 0.3339, 0.2477, 0.2404, 0.2340, 0.2711, 0.2793, 0.2165, 0.2940},
+      { 0.2351, 0.2515, 0.2845, 0.2335, 0.2719, 0.1767, 0.2295, 0.2518, 0.2726, 0.1724, 0.2133, 0.3108, 0.3668, 0.2510, 0.2685, 0.2706, 0.2820, 0.3003, 0.2111, 0.2225},
+      { 0.2570, 0.1756, 0.1969, 0.1247, 0.2250, 0.1499, 0.1638, 0.2141, 0.1724, 0.1557, 0.1604, 0.2730, 0.2817, 0.1924, 0.2022, 0.1989, 0.2327, 0.2510, 0.1625, 0.2496},
+      { 0.1947, 0.1838, 0.2152, 0.1412, 0.2302, 0.1231, 0.1576, 0.2048, 0.2133, 0.1604, 0.1968, 0.3160, 0.3392, 0.1978, 0.2174, 0.2216, 0.2394, 0.2734, 0.1684, 0.1961},
+      { 0.2985, 0.2900, 0.3673, 0.2950, 0.3974, 0.2676, 0.2927, 0.3080, 0.3108, 0.2730, 0.3160, 0.4368, 0.4707, 0.3689, 0.3884, 0.3821, 0.4018, 0.4431, 0.2834, 0.3746},
+      { 0.3025, 0.2991, 0.3589, 0.2834, 0.3927, 0.2896, 0.2892, 0.3339, 0.3668, 0.2817, 0.3392, 0.4707, 0.5426, 0.3679, 0.3924, 0.3786, 0.4318, 0.4787, 0.2823, 0.3892},
+      { 0.2718, 0.2351, 0.2641, 0.2023, 0.3009, 0.2083, 0.2524, 0.2477, 0.2510, 0.1924, 0.1978, 0.3689, 0.3679, 0.3314, 0.3461, 0.3171, 0.3201, 0.3531, 0.2403, 0.3256},
+      { 0.2533, 0.2476, 0.2915, 0.2124, 0.3034, 0.2179, 0.2518, 0.2404, 0.2685, 0.2022, 0.2174, 0.3884, 0.3924, 0.3461, 0.3749, 0.3445, 0.3367, 0.3700, 0.2508, 0.3186},
+      { 0.2382, 0.2459, 0.2969, 0.2143, 0.2964, 0.1883, 0.2314, 0.2340, 0.2706, 0.1989, 0.2216, 0.3821, 0.3786, 0.3171, 0.3445, 0.3358, 0.3392, 0.3749, 0.2385, 0.2797},
+      { 0.3022, 0.2456, 0.2780, 0.1963, 0.3159, 0.2294, 0.2543, 0.2711, 0.2820, 0.2327, 0.2394, 0.4018, 0.4318, 0.3201, 0.3367, 0.3392, 0.3994, 0.3907, 0.2564, 0.3526},
+      { 0.2848, 0.2539, 0.3164, 0.2293, 0.3461, 0.2548, 0.2703, 0.2793, 0.3003, 0.2510, 0.2734, 0.4431, 0.4787, 0.3531, 0.3700, 0.3749, 0.3907, 0.4555, 0.2688, 0.3462},
+      { 0.2679, 0.2206, 0.2225, 0.1710, 0.2289, 0.1656, 0.1804, 0.2165, 0.2111, 0.1625, 0.1684, 0.2834, 0.2823, 0.2403, 0.2508, 0.2385, 0.2564, 0.2688, 0.2249, 0.2500},
+      { 0.3745, 0.2413, 0.2468, 0.1338, 0.3322, 0.2664, 0.2686, 0.2940, 0.2225, 0.2496, 0.1961, 0.3746, 0.3892, 0.3256, 0.3186, 0.2797, 0.3526, 0.3462, 0.2500, 0.6988}},
+    {
+      { 0.1282, 0.1203, 0.3550, 0.3053, 0.2844, 0.2027, 0.2211, 0.2364, 0.2634, 0.1904, 0.1685, 0.2763, 0.2718, 0.1948, 0.2029, 0.2043, 0.2308, 0.2276, 0.1891, 0.2565},
+      { 0.1203, 0.1492, 0.3655, 0.3159, 0.3003, 0.3606, 0.3071, 0.2592, 0.2550, 0.2140, 0.1950, 0.3037, 0.3046, 0.2694, 0.2643, 0.2482, 0.2719, 0.2675, 0.2620, 0.3038},
+      { 0.3550, 0.3655, 0.2470, 0.1841, 0.2660, 0.1705, 0.2226, 0.2354, 0.2781, 0.1811, 0.2038, 0.3510, 0.3541, 0.2687, 0.2856, 0.2920, 0.2612, 0.3020, 0.2188, 0.2100},
+      { 0.3053, 0.3159, 0.1841, 0.1506, 0.2062, 0.1139, 0.1692, 0.1879, 0.2277, 0.1081, 0.1308, 0.2933, 0.2818, 0.2072, 0.2164, 0.2219, 0.1996, 0.2264, 0.1632, 0.1221},
+      { 0.2844, 0.3003, 0.2660, 0.2062, 0.3163, 0.2262, 0.2676, 0.2509, 0.2592, 0.2080, 0.2218, 0.3750, 0.3845, 0.2890, 0.3083, 0.2923, 0.3116, 0.3447, 0.2109, 0.2936},
+      { 0.2027, 0.3606, 0.1705, 0.1139, 0.2262, 0.1486, 0.1665, 0.1833, 0.1841, 0.1285, 0.1132, 0.2393, 0.2597, 0.1931, 0.2059, 0.1728, 0.2128, 0.2277, 0.1221, 0.2184},
+      { 0.2211, 0.3071, 0.2226, 0.1692, 0.2676, 0.1665, 0.2359, 0.2236, 0.2398, 0.1467, 0.1449, 0.2801, 0.2716, 0.2542, 0.2594, 0.2291, 0.2482, 0.2644, 0.1553, 0.2384},
+      { 0.2364, 0.2592, 0.2354, 0.1879, 0.2509, 0.1833, 0.2236, 0.2596, 0.2522, 0.1830, 0.1823, 0.2840, 0.3081, 0.2296, 0.2304, 0.2219, 0.2600, 0.2601, 0.1682, 0.2322},
+      { 0.2634, 0.2550, 0.2781, 0.2277, 0.2592, 0.1841, 0.2398, 0.2522, 0.2766, 0.1704, 0.2008, 0.3084, 0.3386, 0.2498, 0.2654, 0.2711, 0.2720, 0.2881, 0.2121, 0.2339},
+      { 0.1904, 0.2140, 0.1811, 0.1081, 0.2080, 0.1285, 0.1467, 0.1830, 0.1704, 0.1509, 0.1355, 0.2576, 0.2649, 0.1807, 0.1895, 0.1894, 0.2256, 0.2444, 0.1461, 0.2126},
+      { 0.1685, 0.1950, 0.2038, 0.1308, 0.2218, 0.1132, 0.1449, 0.1823, 0.2008, 0.1355, 0.1838, 0.3166, 0.3418, 0.1887, 0.2075, 0.2152, 0.2337, 0.2665, 0.1546, 0.1786},
+      { 0.2763, 0.3037, 0.3510, 0.2933, 0.3750, 0.2393, 0.2801, 0.2840, 0.3084, 0.2576, 0.3166, 0.4198, 0.4499, 0.3574, 0.3792, 0.3741, 0.3942, 0.4354, 0.2581, 0.3469},
+      { 0.2718, 0.3046, 0.3541, 0.2818, 0.3845, 0.2597, 0.2716, 0.3081, 0.3386, 0.2649, 0.3418, 0.4499, 0.5121, 0.3525, 0.3861, 0.3848, 0.4352, 0.4602, 0.2714, 0.3625},
+      { 0.1948, 0.2694, 0.2687, 0.2072, 0.2890, 0.1931, 0.2542, 0.2296, 0.2498, 0.1807, 0.1887, 0.3574, 0.3525, 0.3362, 0.3411, 0.3137, 0.3129, 0.3433, 0.2197, 0.2993},
+      { 0.2029, 0.2643, 0.2856, 0.2164, 0.3083, 0.2059, 0.2594, 0.2304, 0.2654, 0.1895, 0.2075, 0.3792, 0.3861, 0.3411, 0.3630, 0.3423, 0.3386, 0.3663, 0.2338, 0.3092},
+      { 0.2043, 0.2482, 0.2920, 0.2219, 0.2923, 0.1728, 0.2291, 0.2219, 0.2711, 0.1894, 0.2152, 0.3741, 0.3848, 0.3137, 0.3423, 0.3366, 0.3246, 0.3656, 0.2261, 0.2763},
+      { 0.2308, 0.2719, 0.2612, 0.1996, 0.3116, 0.2128, 0.2482, 0.2600, 0.2720, 0.2256, 0.2337, 0.3942, 0.4352, 0.3129, 0.3386, 0.3246, 0.3730, 0.3889, 0.2347, 0.3323},
+      { 0.2276, 0.2675, 0.3020, 0.2264, 0.3447, 0.2277, 0.2644, 0.2601, 0.2881, 0.2444, 0.2665, 0.4354, 0.4602, 0.3433, 0.3663, 0.3656, 0.3889, 0.4406, 0.2438, 0.3476},
+      { 0.1891, 0.2620, 0.2188, 0.1632, 0.2109, 0.1221, 0.1553, 0.1682, 0.2121, 0.1461, 0.1546, 0.2581, 0.2714, 0.2197, 0.2338, 0.2261, 0.2347, 0.2438, 0.2127, 0.1986},
+      { 0.2565, 0.3038, 0.2100, 0.1221, 0.2936, 0.2184, 0.2384, 0.2322, 0.2339, 0.2126, 0.1786, 0.3469, 0.3625, 0.2993, 0.3092, 0.2763, 0.3323, 0.3476, 0.1986, 0.5239}},
+    {
+      { 0.1524, 0.1475, 0.3682, 0.3385, 0.3098, 0.1880, 0.2162, 0.2571, 0.2694, 0.1938, 0.1941, 0.3098, 0.3161, 0.2186, 0.2326, 0.2319, 0.2487, 0.2512, 0.1973, 0.2259},
+      { 0.1475, 0.1780, 0.3705, 0.3689, 0.3047, 0.1705, 0.2194, 0.2374, 0.2684, 0.1641, 0.1834, 0.3227, 0.3339, 0.2462, 0.2628, 0.2642, 0.2534, 0.2676, 0.2106, 0.2039},
+      { 0.3682, 0.3705, 0.3153, 0.2468, 0.3668, 0.4641, 0.4011, 0.3640, 0.3373, 0.3285, 0.3258, 0.4095, 0.4327, 0.3623, 0.3688, 0.3619, 0.3825, 0.3890, 0.3602, 0.4272},
+      { 0.3385, 0.3689, 0.2468, 0.2181, 0.2830, 0.2639, 0.2818, 0.2690, 0.2965, 0.2162, 0.2118, 0.3673, 0.3499, 0.2835, 0.2904, 0.2920, 0.2846, 0.3090, 0.2550, 0.2509},
+      { 0.3098, 0.3047, 0.3668, 0.2830, 0.3822, 0.3128, 0.3318, 0.3061, 0.3161, 0.2791, 0.2813, 0.4384, 0.4280, 0.3469, 0.3510, 0.3480, 0.3713, 0.3964, 0.2810, 0.3594},
+      { 0.1880, 0.1705, 0.4641, 0.2639, 0.3128, 0.2343, 0.2451, 0.2661, 0.2554, 0.2185, 0.1831, 0.3152, 0.3454, 0.2542, 0.2681, 0.2574, 0.2849, 0.2946, 0.2131, 0.3033},
+      { 0.2162, 0.2194, 0.4011, 0.2818, 0.3318, 0.2451, 0.2952, 0.2881, 0.2905, 0.2265, 0.2115, 0.3365, 0.3518, 0.3037, 0.3184, 0.2913, 0.3135, 0.3270, 0.2353, 0.3067},
+      { 0.2571, 0.2374, 0.3640, 0.2690, 0.3061, 0.2661, 0.2881, 0.3102, 0.2992, 0.2543, 0.2415, 0.3411, 0.3659, 0.2835, 0.2910, 0.2828, 0.3127, 0.3233, 0.2440, 0.2965},
+      { 0.2694, 0.2684, 0.3373, 0.2965, 0.3161, 0.2554, 0.2905, 0.2992, 0.3119, 0.2377, 0.2546, 0.3508, 0.3829, 0.3030, 0.3177, 0.3179, 0.3325, 0.3461, 0.2661, 0.2814},
+      { 0.1938, 0.1641, 0.3285, 0.2162, 0.2791, 0.2185, 0.2265, 0.2543, 0.2377, 0.2249, 0.2124, 0.3249, 0.3328, 0.2436, 0.2525, 0.2567, 0.2884, 0.3166, 0.2185, 0.2831},
+      { 0.1941, 0.1834, 0.3258, 0.2118, 0.2813, 0.1831, 0.2115, 0.2415, 0.2546, 0.2124, 0.2348, 0.3640, 0.3741, 0.2421, 0.2595, 0.2666, 0.2934, 0.3249, 0.2208, 0.2870},
+      { 0.3098, 0.3227, 0.4095, 0.3673, 0.4384, 0.3152, 0.3365, 0.3411, 0.3508, 0.3249, 0.3640, 0.4652, 0.5036, 0.4033, 0.4192, 0.4233, 0.4516, 0.4675, 0.3245, 0.3991},
+      { 0.3161, 0.3339, 0.4327, 0.3499, 0.4280, 0.3454, 0.3518, 0.3659, 0.3829, 0.3328, 0.3741, 0.5036, 0.5975, 0.4165, 0.4304, 0.4336, 0.4900, 0.5208, 0.3315, 0.4343},
+      { 0.2186, 0.2462, 0.3623, 0.2835, 0.3469, 0.2542, 0.3037, 0.2835, 0.3030, 0.2436, 0.2421, 0.4033, 0.4165, 0.3733, 0.3780, 0.3587, 0.3648, 0.3991, 0.2801, 0.3484},
+      { 0.2326, 0.2628, 0.3688, 0.2904, 0.3510, 0.2681, 0.3184, 0.2910, 0.3177, 0.2525, 0.2595, 0.4192, 0.4304, 0.3780, 0.4040, 0.3826, 0.3877, 0.4074, 0.2971, 0.3553},
+      { 0.2319, 0.2642, 0.3619, 0.2920, 0.3480, 0.2574, 0.2913, 0.2828, 0.3179, 0.2567, 0.2666, 0.4233, 0.4336, 0.3587, 0.3826, 0.3865, 0.3728, 0.4142, 0.2906, 0.3283},
+      { 0.2487, 0.2534, 0.3825, 0.2846, 0.3713, 0.2849, 0.3135, 0.3127, 0.3325, 0.2884, 0.2934, 0.4516, 0.4900, 0.3648, 0.3877, 0.3728, 0.4235, 0.4470, 0.2954, 0.3830},
+      { 0.2512, 0.2676, 0.3890, 0.3090, 0.3964, 0.2946, 0.3270, 0.3233, 0.3461, 0.3166, 0.3249, 0.4675, 0.5208, 0.3991, 0.4074, 0.4142, 0.4470, 0.4879, 0.3180, 0.4036},
+      { 0.1973, 0.2106, 0.3602, 0.2550, 0.2810, 0.2131, 0.2353, 0.2440, 0.2661, 0.2185, 0.2208, 0.3245, 0.3315, 0.2801, 0.2971, 0.2906, 0.2954, 0.3180, 0.2730, 0.2786},
+      { 0.2259, 0.2039, 0.4272, 0.2509, 0.3594, 0.3033, 0.3067, 0.2965, 0.2814, 0.2831, 0.2870, 0.3991, 0.4343, 0.3484, 0.3553, 0.3283, 0.3830, 0.4036, 0.2786, 0.5183}},
+    {
+      { 0.0984, 0.1105, 0.3533, 0.3136, 0.2707, 0.1239, 0.1617, 0.2083, 0.2421, 0.1339, 0.1340, 0.2507, 0.2407, 0.1630, 0.1725, 0.1722, 0.1868, 0.1856, 0.1443, 0.1583},
+      { 0.1105, 0.1542, 0.3841, 0.3291, 0.2622, 0.1139, 0.1754, 0.1969, 0.2447, 0.1036, 0.1412, 0.2715, 0.2713, 0.2038, 0.2156, 0.2182, 0.2036, 0.2197, 0.1737, 0.1331},
+      { 0.3533, 0.3841, 0.2800, 0.2171, 0.2961, 0.2639, 0.2866, 0.2748, 0.3075, 0.2314, 0.2440, 0.3699, 0.3704, 0.3027, 0.3193, 0.3173, 0.3055, 0.3276, 0.2679, 0.2865},
+      { 0.3136, 0.3291, 0.2171, 0.1760, 0.2611, 0.3944, 0.3471, 0.2651, 0.2591, 0.2565, 0.1969, 0.3380, 0.3003, 0.3020, 0.2917, 0.2720, 0.2906, 0.2917, 0.2984, 0.3350},
+      { 0.2707, 0.2622, 0.2961, 0.2611, 0.3145, 0.2368, 0.2741, 0.2497, 0.2630, 0.2074, 0.2147, 0.3741, 0.3826, 0.2964, 0.3017, 0.2955, 0.2931, 0.3307, 0.2189, 0.2900},
+      { 0.1239, 0.1139, 0.2639, 0.3944, 0.2368, 0.1572, 0.1859, 0.1975, 0.1962, 0.1272, 0.1069, 0.2480, 0.2594, 0.1950, 0.2041, 0.1870, 0.2208, 0.2275, 0.1383, 0.2102},
+      { 0.1617, 0.1754, 0.2866, 0.3471, 0.2741, 0.1859, 0.2490, 0.2324, 0.2403, 0.1469, 0.1476, 0.2806, 0.2868, 0.2543, 0.2596, 0.2347, 0.2408, 0.2675, 0.1722, 0.2359},
+      { 0.2083, 0.1969, 0.2748, 0.2651, 0.2497, 0.1975, 0.2324, 0.2604, 0.2491, 0.1847, 0.1757, 0.2788, 0.3010, 0.2227, 0.2328, 0.2206, 0.2428, 0.2576, 0.1804, 0.2232},
+      { 0.2421, 0.2447, 0.3075, 0.2591, 0.2630, 0.1962, 0.2403, 0.2491, 0.2836, 0.1763, 0.2032, 0.3007, 0.3309, 0.2516, 0.2665, 0.2713, 0.2735, 0.2863, 0.2144, 0.2030},
+      { 0.1339, 0.1036, 0.2314, 0.2565, 0.2074, 0.1272, 0.1469, 0.1847, 0.1763, 0.1440, 0.1383, 0.2487, 0.2561, 0.1739, 0.1807, 0.1842, 0.2102, 0.2384, 0.1537, 0.2076},
+      { 0.1340, 0.1412, 0.2440, 0.1969, 0.2147, 0.1069, 0.1476, 0.1757, 0.2032, 0.1383, 0.1789, 0.2973, 0.3072, 0.1772, 0.1942, 0.2072, 0.2272, 0.2586, 0.1534, 0.1867},
+      { 0.2507, 0.2715, 0.3699, 0.3380, 0.3741, 0.2480, 0.2806, 0.2788, 0.3007, 0.2487, 0.2973, 0.4118, 0.4389, 0.3536, 0.3727, 0.3671, 0.3709, 0.4162, 0.2565, 0.3427},
+      { 0.2407, 0.2713, 0.3704, 0.3003, 0.3826, 0.2594, 0.2868, 0.3010, 0.3309, 0.2561, 0.3072, 0.4389, 0.4876, 0.3293, 0.3661, 0.3647, 0.4084, 0.4500, 0.2593, 0.3526},
+      { 0.1630, 0.2038, 0.3027, 0.3020, 0.2964, 0.1950, 0.2543, 0.2227, 0.2516, 0.1739, 0.1772, 0.3536, 0.3293, 0.3228, 0.3237, 0.3083, 0.3030, 0.3416, 0.2246, 0.2904},
+      { 0.1725, 0.2156, 0.3193, 0.2917, 0.3017, 0.2041, 0.2596, 0.2328, 0.2665, 0.1807, 0.1942, 0.3727, 0.3661, 0.3237, 0.3526, 0.3299, 0.3070, 0.3549, 0.2389, 0.2892},
+      { 0.1722, 0.2182, 0.3173, 0.2720, 0.2955, 0.1870, 0.2347, 0.2206, 0.2713, 0.1842, 0.2072, 0.3671, 0.3647, 0.3083, 0.3299, 0.3313, 0.3090, 0.3508, 0.2339, 0.2686},
+      { 0.1868, 0.2036, 0.3055, 0.2906, 0.2931, 0.2208, 0.2408, 0.2428, 0.2735, 0.2102, 0.2272, 0.3709, 0.4084, 0.3030, 0.3070, 0.3090, 0.3620, 0.3749, 0.2370, 0.3009},
+      { 0.1856, 0.2197, 0.3276, 0.2917, 0.3307, 0.2275, 0.2675, 0.2576, 0.2863, 0.2384, 0.2586, 0.4162, 0.4500, 0.3416, 0.3549, 0.3508, 0.3749, 0.4306, 0.2487, 0.3403},
+      { 0.1443, 0.1737, 0.2679, 0.2984, 0.2189, 0.1383, 0.1722, 0.1804, 0.2144, 0.1537, 0.1534, 0.2565, 0.2593, 0.2246, 0.2389, 0.2339, 0.2370, 0.2487, 0.2254, 0.2004},
+      { 0.1583, 0.1331, 0.2865, 0.3350, 0.2900, 0.2102, 0.2359, 0.2232, 0.2030, 0.2076, 0.1867, 0.3427, 0.3526, 0.2904, 0.2892, 0.2686, 0.3009, 0.3403, 0.2004, 0.4608}},
+    {
+      { 0.1530, 0.1444, 0.4087, 0.3451, 0.3019, 0.2585, 0.2642, 0.2906, 0.2721, 0.2243, 0.2116, 0.3206, 0.3225, 0.2545, 0.2642, 0.2484, 0.2754, 0.2915, 0.2251, 0.2821},
+      { 0.1444, 0.1721, 0.4276, 0.3727, 0.2222, 0.2262, 0.2684, 0.2553, 0.2723, 0.1958, 0.2078, 0.3261, 0.3529, 0.2858, 0.2969, 0.2794, 0.2735, 0.2933, 0.2363, 0.2696},
+      { 0.4087, 0.4276, 0.3092, 0.2476, 0.2474, 0.3128, 0.3334, 0.3245, 0.3383, 0.2823, 0.2741, 0.4042, 0.4249, 0.3645, 0.3732, 0.3606, 0.3488, 0.3827, 0.3028, 0.3486},
+      { 0.3451, 0.3727, 0.2476, 0.2000, 0.1544, 0.2368, 0.2717, 0.2575, 0.2793, 0.2089, 0.1831, 0.3504, 0.3362, 0.3043, 0.3049, 0.2895, 0.2806, 0.3077, 0.2459, 0.2583},
+      { 0.3019, 0.2222, 0.2474, 0.1544, 0.4044, 0.6146, 0.4920, 0.3630, 0.2808, 0.3877, 0.2749, 0.4139, 0.4574, 0.3726, 0.3797, 0.3430, 0.4205, 0.4184, 0.3945, 0.5460},
+      { 0.2585, 0.2262, 0.3128, 0.2368, 0.6146, 0.3109, 0.3103, 0.3487, 0.3413, 0.2656, 0.2459, 0.3793, 0.3889, 0.3031, 0.3171, 0.3081, 0.3437, 0.3712, 0.2801, 0.3798},
+      { 0.2642, 0.2684, 0.3334, 0.2717, 0.4920, 0.3103, 0.3495, 0.3549, 0.3546, 0.2729, 0.2517, 0.3902, 0.3817, 0.3675, 0.3803, 0.3473, 0.3839, 0.3891, 0.2953, 0.3886},
+      { 0.2906, 0.2553, 0.3245, 0.2575, 0.3630, 0.3487, 0.3549, 0.3687, 0.3288, 0.3126, 0.2763, 0.3915, 0.3935, 0.3365, 0.3295, 0.3137, 0.3666, 0.3813, 0.3068, 0.3972},
+      { 0.2721, 0.2723, 0.3383, 0.2793, 0.2808, 0.3413, 0.3546, 0.3288, 0.3227, 0.2860, 0.2669, 0.3734, 0.4192, 0.3475, 0.3536, 0.3405, 0.3741, 0.3764, 0.3132, 0.3838},
+      { 0.2243, 0.1958, 0.2823, 0.2089, 0.3877, 0.2656, 0.2729, 0.3126, 0.2860, 0.2575, 0.2422, 0.3692, 0.3788, 0.3026, 0.3082, 0.3091, 0.3484, 0.3784, 0.2704, 0.3574},
+      { 0.2116, 0.2078, 0.2741, 0.1831, 0.2749, 0.2459, 0.2517, 0.2763, 0.2669, 0.2422, 0.2470, 0.3722, 0.4021, 0.2839, 0.3094, 0.2939, 0.3476, 0.3553, 0.2539, 0.3223},
+      { 0.3206, 0.3261, 0.4042, 0.3504, 0.4139, 0.3793, 0.3902, 0.3915, 0.3734, 0.3692, 0.3722, 0.4750, 0.4975, 0.4538, 0.4626, 0.4503, 0.4870, 0.4955, 0.4017, 0.4855},
+      { 0.3225, 0.3529, 0.4249, 0.3362, 0.4574, 0.3889, 0.3817, 0.3935, 0.4192, 0.3788, 0.4021, 0.4975, 0.5725, 0.4606, 0.4795, 0.4700, 0.5533, 0.5175, 0.3956, 0.4796},
+      { 0.2545, 0.2858, 0.3645, 0.3043, 0.3726, 0.3031, 0.3675, 0.3365, 0.3475, 0.3026, 0.2839, 0.4538, 0.4606, 0.4815, 0.4870, 0.4456, 0.4470, 0.4739, 0.3699, 0.4357},
+      { 0.2642, 0.2969, 0.3732, 0.3049, 0.3797, 0.3171, 0.3803, 0.3295, 0.3536, 0.3082, 0.3094, 0.4626, 0.4795, 0.4870, 0.5237, 0.4610, 0.4704, 0.4797, 0.3828, 0.4494},
+      { 0.2484, 0.2794, 0.3606, 0.2895, 0.3430, 0.3081, 0.3473, 0.3137, 0.3405, 0.3091, 0.2939, 0.4503, 0.4700, 0.4456, 0.4610, 0.4467, 0.4393, 0.4588, 0.3742, 0.4295},
+      { 0.2754, 0.2735, 0.3488, 0.2806, 0.4205, 0.3437, 0.3839, 0.3666, 0.3741, 0.3484, 0.3476, 0.4870, 0.5533, 0.4470, 0.4704, 0.4393, 0.4952, 0.5028, 0.3932, 0.4827},
+      { 0.2915, 0.2933, 0.3827, 0.3077, 0.4184, 0.3712, 0.3891, 0.3813, 0.3764, 0.3784, 0.3553, 0.4955, 0.5175, 0.4739, 0.4797, 0.4588, 0.5028, 0.5358, 0.4211, 0.4972},
+      { 0.2251, 0.2363, 0.3028, 0.2459, 0.3945, 0.2801, 0.2953, 0.3068, 0.3132, 0.2704, 0.2539, 0.4017, 0.3956, 0.3699, 0.3828, 0.3742, 0.3932, 0.4211, 0.3297, 0.3772},
+      { 0.2821, 0.2696, 0.3486, 0.2583, 0.5460, 0.3798, 0.3886, 0.3972, 0.3838, 0.3574, 0.3223, 0.4855, 0.4796, 0.4357, 0.4494, 0.4295, 0.4827, 0.4972, 0.3772, 0.5621}},
+    {
+      { 0.1084, 0.1047, 0.3621, 0.3096, 0.2744, 0.1976, 0.2024, 0.2315, 0.2460, 0.1888, 0.1558, 0.2844, 0.2918, 0.1973, 0.1997, 0.1965, 0.2182, 0.2422, 0.1816, 0.2324},
+      { 0.1047, 0.1555, 0.3907, 0.3483, 0.2725, 0.1486, 0.1947, 0.2201, 0.2526, 0.1618, 0.1554, 0.2935, 0.3170, 0.2207, 0.2353, 0.2279, 0.2136, 0.2399, 0.1851, 0.1898},
+      { 0.3621, 0.3907, 0.2690, 0.1991, 0.3111, 0.2343, 0.2609, 0.2635, 0.3018, 0.2314, 0.2272, 0.3761, 0.3848, 0.2866, 0.3075, 0.3076, 0.2824, 0.3372, 0.2450, 0.2735},
+      { 0.3096, 0.3483, 0.1991, 0.1593, 0.2229, 0.1572, 0.1988, 0.2074, 0.2485, 0.1555, 0.1443, 0.3109, 0.3074, 0.2256, 0.2275, 0.2304, 0.1998, 0.2460, 0.1850, 0.1781},
+      { 0.2744, 0.2725, 0.3111, 0.2229, 0.3712, 0.3109, 0.3241, 0.2899, 0.2815, 0.2866, 0.2604, 0.4164, 0.4526, 0.3335, 0.3338, 0.3206, 0.3532, 0.3778, 0.2765, 0.3486},
+      { 0.1976, 0.1486, 0.2343, 0.1572, 0.3109, 0.4356, 0.3317, 0.2732, 0.2233, 0.2801, 0.2132, 0.3123, 0.3287, 0.3011, 0.2962, 0.2429, 0.3024, 0.3074, 0.3298, 0.4186},
+      { 0.2024, 0.1947, 0.2609, 0.1988, 0.3241, 0.3317, 0.3297, 0.2852, 0.2653, 0.2806, 0.2173, 0.3367, 0.3479, 0.3325, 0.3263, 0.2933, 0.3296, 0.3409, 0.3112, 0.4052},
+      { 0.2315, 0.2201, 0.2635, 0.2074, 0.2899, 0.2732, 0.2852, 0.3057, 0.2770, 0.2670, 0.2221, 0.3355, 0.3662, 0.2740, 0.2686, 0.2598, 0.3060, 0.3125, 0.2595, 0.3341},
+      { 0.2460, 0.2526, 0.3018, 0.2485, 0.2815, 0.2233, 0.2653, 0.2770, 0.2987, 0.2283, 0.2131, 0.3373, 0.3725, 0.2830, 0.2939, 0.2894, 0.2952, 0.3215, 0.2414, 0.2759},
+      { 0.1888, 0.1618, 0.2314, 0.1555, 0.2866, 0.2801, 0.2806, 0.2670, 0.2283, 0.2910, 0.2101, 0.3397, 0.3517, 0.3036, 0.3035, 0.2854, 0.3190, 0.3364, 0.2860, 0.3983},
+      { 0.1558, 0.1554, 0.2272, 0.1443, 0.2604, 0.2132, 0.2173, 0.2221, 0.2131, 0.2101, 0.2244, 0.3467, 0.3673, 0.2379, 0.2570, 0.2538, 0.2990, 0.3238, 0.2247, 0.2822},
+      { 0.2844, 0.2935, 0.3761, 0.3109, 0.4164, 0.3123, 0.3367, 0.3355, 0.3373, 0.3397, 0.3467, 0.4699, 0.4965, 0.4000, 0.4228, 0.4061, 0.4389, 0.4736, 0.3377, 0.4194},
+      { 0.2918, 0.3170, 0.3848, 0.3074, 0.4526, 0.3287, 0.3479, 0.3662, 0.3725, 0.3517, 0.3673, 0.4965, 0.5816, 0.4218, 0.4468, 0.4150, 0.4905, 0.5176, 0.3396, 0.4474},
+      { 0.1973, 0.2207, 0.2866, 0.2256, 0.3335, 0.3011, 0.3325, 0.2740, 0.2830, 0.3036, 0.2379, 0.4000, 0.4218, 0.4272, 0.4204, 0.3875, 0.3855, 0.4188, 0.3758, 0.4288},
+      { 0.1997, 0.2353, 0.3075, 0.2275, 0.3338, 0.2962, 0.3263, 0.2686, 0.2939, 0.3035, 0.2570, 0.4228, 0.4468, 0.4204, 0.4394, 0.4026, 0.4074, 0.4323, 0.3589, 0.4193},
+      { 0.1965, 0.2279, 0.3076, 0.2304, 0.3206, 0.2429, 0.2933, 0.2598, 0.2894, 0.2854, 0.2538, 0.4061, 0.4150, 0.3875, 0.4026, 0.3987, 0.3901, 0.4230, 0.3258, 0.3547},
+      { 0.2182, 0.2136, 0.2824, 0.1998, 0.3532, 0.3024, 0.3296, 0.3060, 0.2952, 0.3190, 0.2990, 0.4389, 0.4905, 0.3855, 0.4074, 0.3901, 0.4540, 0.4582, 0.3515, 0.4385},
+      { 0.2422, 0.2399, 0.3372, 0.2460, 0.3778, 0.3074, 0.3409, 0.3125, 0.3215, 0.3364, 0.3238, 0.4736, 0.5176, 0.4188, 0.4323, 0.4230, 0.4582, 0.4950, 0.3485, 0.4402},
+      { 0.1816, 0.1851, 0.2450, 0.1850, 0.2765, 0.3298, 0.3112, 0.2595, 0.2414, 0.2860, 0.2247, 0.3377, 0.3396, 0.3758, 0.3589, 0.3258, 0.3515, 0.3485, 0.3838, 0.4255},
+      { 0.2324, 0.1898, 0.2735, 0.1781, 0.3486, 0.4186, 0.4052, 0.3341, 0.2759, 0.3983, 0.2822, 0.4194, 0.4474, 0.4288, 0.4193, 0.3547, 0.4385, 0.4402, 0.4255, 0.6484}},
+    {
+      { 0.0972, 0.0955, 0.3606, 0.3075, 0.2793, 0.1846, 0.1837, 0.2405, 0.2346, 0.1857, 0.1720, 0.2900, 0.2883, 0.2026, 0.2097, 0.2012, 0.2266, 0.2414, 0.1747, 0.2282},
+      { 0.0955, 0.1376, 0.4053, 0.3622, 0.2874, 0.1665, 0.1849, 0.2160, 0.2454, 0.1623, 0.1603, 0.3002, 0.3156, 0.2387, 0.2403, 0.2285, 0.2252, 0.2484, 0.1812, 0.2016},
+      { 0.3606, 0.4053, 0.2685, 0.2017, 0.3072, 0.2451, 0.2414, 0.2657, 0.3025, 0.2249, 0.2316, 0.3860, 0.3968, 0.3014, 0.3151, 0.3011, 0.2907, 0.3370, 0.2478, 0.2839},
+      { 0.3075, 0.3622, 0.2017, 0.1664, 0.2413, 0.1859, 0.1918, 0.2083, 0.2553, 0.1523, 0.1462, 0.3243, 0.3103, 0.2424, 0.2406, 0.2282, 0.2180, 0.2555, 0.1846, 0.2011},
+      { 0.2793, 0.2874, 0.3072, 0.2413, 0.3682, 0.3103, 0.3202, 0.3003, 0.2864, 0.2776, 0.2649, 0.4217, 0.4478, 0.3412, 0.3495, 0.3255, 0.3543, 0.3785, 0.2770, 0.3653},
+      { 0.1846, 0.1665, 0.2451, 0.1859, 0.3103, 0.3317, 0.4074, 0.2895, 0.2405, 0.2546, 0.2186, 0.3127, 0.3290, 0.3233, 0.3100, 0.2770, 0.3286, 0.3155, 0.2908, 0.4006},
+      { 0.1837, 0.1849, 0.2414, 0.1918, 0.3202, 0.4074, 0.3641, 0.2858, 0.2586, 0.2601, 0.2151, 0.3209, 0.3318, 0.3420, 0.3286, 0.2904, 0.3302, 0.3310, 0.3229, 0.4059},
+      { 0.2405, 0.2160, 0.2657, 0.2083, 0.3003, 0.2895, 0.2858, 0.3089, 0.2755, 0.2647, 0.2331, 0.3327, 0.3538, 0.2878, 0.2797, 0.2654, 0.3194, 0.3135, 0.2676, 0.3364},
+      { 0.2346, 0.2454, 0.3025, 0.2553, 0.2864, 0.2405, 0.2586, 0.2755, 0.2908, 0.2302, 0.2234, 0.3383, 0.3783, 0.2883, 0.3008, 0.2911, 0.3038, 0.3298, 0.2439, 0.2891},
+      { 0.1857, 0.1623, 0.2249, 0.1523, 0.2776, 0.2546, 0.2601, 0.2647, 0.2302, 0.2710, 0.2083, 0.3300, 0.3468, 0.2975, 0.3014, 0.2929, 0.3260, 0.3346, 0.2639, 0.3515},
+      { 0.1720, 0.1603, 0.2316, 0.1462, 0.2649, 0.2186, 0.2151, 0.2331, 0.2234, 0.2083, 0.2413, 0.3439, 0.3629, 0.2447, 0.2567, 0.2555, 0.3011, 0.3182, 0.2292, 0.2842},
+      { 0.2900, 0.3002, 0.3860, 0.3243, 0.4217, 0.3127, 0.3209, 0.3327, 0.3383, 0.3300, 0.3439, 0.4495, 0.4893, 0.4083, 0.4237, 0.4166, 0.4305, 0.4758, 0.3401, 0.4224},
+      { 0.2883, 0.3156, 0.3968, 0.3103, 0.4478, 0.3290, 0.3318, 0.3538, 0.3783, 0.3468, 0.3629, 0.4893, 0.5513, 0.4162, 0.4368, 0.4175, 0.4811, 0.5032, 0.3438, 0.4487},
+      { 0.2026, 0.2387, 0.3014, 0.2424, 0.3412, 0.3233, 0.3420, 0.2878, 0.2883, 0.2975, 0.2447, 0.4083, 0.4162, 0.4312, 0.4268, 0.3911, 0.4021, 0.4305, 0.3847, 0.4333},
+      { 0.2097, 0.2403, 0.3151, 0.2406, 0.3495, 0.3100, 0.3286, 0.2797, 0.3008, 0.3014, 0.2567, 0.4237, 0.4368, 0.4268, 0.4385, 0.4069, 0.4136, 0.4376, 0.3671, 0.4269},
+      { 0.2012, 0.2285, 0.3011, 0.2282, 0.3255, 0.2770, 0.2904, 0.2654, 0.2911, 0.2929, 0.2555, 0.4166, 0.4175, 0.3911, 0.4069, 0.4018, 0.3965, 0.4327, 0.3379, 0.3867},
+      { 0.2266, 0.2252, 0.2907, 0.2180, 0.3543, 0.3286, 0.3302, 0.3194, 0.3038, 0.3260, 0.3011, 0.4305, 0.4811, 0.4021, 0.4136, 0.3965, 0.4543, 0.4663, 0.3566, 0.4508},
+      { 0.2414, 0.2484, 0.3370, 0.2555, 0.3785, 0.3155, 0.3310, 0.3135, 0.3298, 0.3346, 0.3182, 0.4758, 0.5032, 0.4305, 0.4376, 0.4327, 0.4663, 0.4970, 0.3596, 0.4555},
+      { 0.1747, 0.1812, 0.2478, 0.1846, 0.2770, 0.2908, 0.3229, 0.2676, 0.2439, 0.2639, 0.2292, 0.3401, 0.3438, 0.3847, 0.3671, 0.3379, 0.3566, 0.3596, 0.3555, 0.4054},
+      { 0.2282, 0.2016, 0.2839, 0.2011, 0.3653, 0.4006, 0.4059, 0.3364, 0.2891, 0.3515, 0.2842, 0.4224, 0.4487, 0.4333, 0.4269, 0.3867, 0.4508, 0.4555, 0.4054, 0.6257}},
+    {
+      { 0.1268, 0.1192, 0.3702, 0.3112, 0.2943, 0.2347, 0.2286, 0.2547, 0.2485, 0.1929, 0.1739, 0.2878, 0.2971, 0.2060, 0.2135, 0.2072, 0.2480, 0.2487, 0.2060, 0.2550},
+      { 0.1192, 0.1613, 0.3951, 0.3488, 0.2839, 0.1833, 0.2171, 0.2024, 0.2578, 0.1694, 0.1817, 0.3046, 0.3220, 0.2343, 0.2492, 0.2453, 0.2407, 0.2569, 0.2052, 0.2199},
+      { 0.3702, 0.3951, 0.2837, 0.2183, 0.3056, 0.2661, 0.2878, 0.2770, 0.3128, 0.2461, 0.2509, 0.3910, 0.3980, 0.3093, 0.3222, 0.3228, 0.3194, 0.3504, 0.2733, 0.3106},
+      { 0.3112, 0.3488, 0.2183, 0.1739, 0.2297, 0.1975, 0.2311, 0.2048, 0.2601, 0.1834, 0.1629, 0.3193, 0.3145, 0.2500, 0.2524, 0.2447, 0.2306, 0.2629, 0.2186, 0.2203},
+      { 0.2943, 0.2839, 0.3056, 0.2297, 0.3724, 0.3487, 0.3556, 0.3403, 0.2964, 0.2782, 0.2876, 0.4260, 0.4293, 0.3411, 0.3451, 0.3420, 0.3592, 0.4015, 0.3084, 0.4033},
+      { 0.2347, 0.1833, 0.2661, 0.1975, 0.3487, 0.2732, 0.2895, 0.4562, 0.2592, 0.2169, 0.1932, 0.3300, 0.3478, 0.2902, 0.2950, 0.2717, 0.3137, 0.3315, 0.2588, 0.3703},
+      { 0.2286, 0.2171, 0.2878, 0.2311, 0.3556, 0.2895, 0.3060, 0.3876, 0.2853, 0.2187, 0.2226, 0.3420, 0.3536, 0.3343, 0.3359, 0.3038, 0.3254, 0.3417, 0.2703, 0.3572},
+      { 0.2547, 0.2024, 0.2770, 0.2048, 0.3403, 0.4562, 0.3876, 0.3702, 0.2925, 0.3067, 0.2475, 0.3471, 0.3663, 0.3234, 0.3114, 0.2788, 0.3341, 0.3556, 0.3360, 0.4474},
+      { 0.2485, 0.2578, 0.3128, 0.2601, 0.2964, 0.2592, 0.2853, 0.2925, 0.3011, 0.2240, 0.2422, 0.3468, 0.3725, 0.2945, 0.3061, 0.3065, 0.3232, 0.3329, 0.2679, 0.2970},
+      { 0.1929, 0.1694, 0.2461, 0.1834, 0.2782, 0.2169, 0.2187, 0.3067, 0.2240, 0.2097, 0.1993, 0.3165, 0.3218, 0.2633, 0.2656, 0.2592, 0.2947, 0.3092, 0.2324, 0.3304},
+      { 0.1739, 0.1817, 0.2509, 0.1629, 0.2876, 0.1932, 0.2226, 0.2475, 0.2422, 0.1993, 0.2452, 0.3605, 0.3946, 0.2523, 0.2725, 0.2770, 0.3013, 0.3292, 0.2178, 0.2864},
+      { 0.2878, 0.3046, 0.3910, 0.3193, 0.4260, 0.3300, 0.3420, 0.3471, 0.3468, 0.3165, 0.3605, 0.4684, 0.5210, 0.4064, 0.4290, 0.4189, 0.4447, 0.4807, 0.3450, 0.4371},
+      { 0.2971, 0.3220, 0.3980, 0.3145, 0.4293, 0.3478, 0.3536, 0.3663, 0.3725, 0.3218, 0.3946, 0.5210, 0.5616, 0.4098, 0.4382, 0.4230, 0.5157, 0.5157, 0.3501, 0.4588},
+      { 0.2060, 0.2343, 0.3093, 0.2500, 0.3411, 0.2902, 0.3343, 0.3234, 0.2945, 0.2633, 0.2523, 0.4064, 0.4098, 0.4073, 0.4163, 0.3822, 0.4095, 0.4174, 0.3397, 0.4006},
+      { 0.2135, 0.2492, 0.3222, 0.2524, 0.3451, 0.2950, 0.3359, 0.3114, 0.3061, 0.2656, 0.2725, 0.4290, 0.4382, 0.4163, 0.4352, 0.4091, 0.4049, 0.4365, 0.3525, 0.4121},
+      { 0.2072, 0.2453, 0.3228, 0.2447, 0.3420, 0.2717, 0.3038, 0.2788, 0.3065, 0.2592, 0.2770, 0.4189, 0.4230, 0.3822, 0.4091, 0.3932, 0.3989, 0.4304, 0.3323, 0.3765},
+      { 0.2480, 0.2407, 0.3194, 0.2306, 0.3592, 0.3137, 0.3254, 0.3341, 0.3232, 0.2947, 0.3013, 0.4447, 0.5157, 0.4095, 0.4049, 0.3989, 0.4566, 0.4634, 0.3406, 0.4316},
+      { 0.2487, 0.2569, 0.3504, 0.2629, 0.4015, 0.3315, 0.3417, 0.3556, 0.3329, 0.3092, 0.3292, 0.4807, 0.5157, 0.4174, 0.4365, 0.4304, 0.4634, 0.4944, 0.3502, 0.4408},
+      { 0.2060, 0.2052, 0.2733, 0.2186, 0.3084, 0.2588, 0.2703, 0.3360, 0.2679, 0.2324, 0.2178, 0.3450, 0.3501, 0.3397, 0.3525, 0.3323, 0.3406, 0.3502, 0.3085, 0.3667},
+      { 0.2550, 0.2199, 0.3106, 0.2203, 0.4033, 0.3703, 0.3572, 0.4474, 0.2970, 0.3304, 0.2864, 0.4371, 0.4588, 0.4006, 0.4121, 0.3765, 0.4316, 0.4408, 0.3667, 0.6260}},
+    {
+      { 0.1252, 0.1266, 0.3799, 0.3295, 0.2876, 0.1767, 0.2014, 0.2452, 0.2476, 0.1732, 0.1695, 0.2955, 0.2906, 0.2070, 0.2283, 0.2156, 0.2239, 0.2471, 0.1892, 0.2075},
+      { 0.1266, 0.1612, 0.4032, 0.3549, 0.2877, 0.1841, 0.2233, 0.2352, 0.2386, 0.1520, 0.1798, 0.3046, 0.3249, 0.2424, 0.2558, 0.2506, 0.2465, 0.2621, 0.2091, 0.2057},
+      { 0.3799, 0.4032, 0.2732, 0.2169, 0.2946, 0.2554, 0.2790, 0.2788, 0.2911, 0.2344, 0.2507, 0.3888, 0.3937, 0.3051, 0.3297, 0.3257, 0.3144, 0.3429, 0.2667, 0.2854},
+      { 0.3295, 0.3549, 0.2169, 0.1797, 0.2298, 0.1962, 0.2250, 0.2261, 0.2226, 0.1676, 0.1740, 0.3265, 0.3122, 0.2459, 0.2598, 0.2577, 0.2400, 0.2712, 0.2095, 0.1964},
+      { 0.2876, 0.2877, 0.2946, 0.2298, 0.3613, 0.3413, 0.3418, 0.2911, 0.2966, 0.2721, 0.2754, 0.4163, 0.4342, 0.3427, 0.3568, 0.3382, 0.3630, 0.3881, 0.2873, 0.4205},
+      { 0.1767, 0.1841, 0.2554, 0.1962, 0.3413, 0.2233, 0.2405, 0.2592, 0.4349, 0.1961, 0.1870, 0.3134, 0.3012, 0.2609, 0.2822, 0.2668, 0.3263, 0.3043, 0.2013, 0.2984},
+      { 0.2014, 0.2233, 0.2790, 0.2250, 0.3418, 0.2405, 0.2843, 0.2822, 0.3604, 0.2118, 0.2051, 0.3304, 0.3297, 0.3134, 0.3256, 0.2994, 0.3364, 0.3302, 0.2321, 0.3116},
+      { 0.2452, 0.2352, 0.2788, 0.2261, 0.2911, 0.2592, 0.2822, 0.3014, 0.3188, 0.2381, 0.2244, 0.3378, 0.3460, 0.2772, 0.2878, 0.2750, 0.3267, 0.3182, 0.2398, 0.3061},
+      { 0.2476, 0.2386, 0.2911, 0.2226, 0.2966, 0.4349, 0.3604, 0.3188, 0.2764, 0.2657, 0.2674, 0.3414, 0.3817, 0.3144, 0.3158, 0.2988, 0.3326, 0.3381, 0.3076, 0.4047},
+      { 0.1732, 0.1520, 0.2344, 0.1676, 0.2721, 0.1961, 0.2118, 0.2381, 0.2657, 0.2095, 0.1951, 0.3187, 0.3245, 0.2516, 0.2598, 0.2560, 0.3096, 0.3166, 0.2102, 0.2886},
+      { 0.1695, 0.1798, 0.2507, 0.1740, 0.2754, 0.1870, 0.2051, 0.2244, 0.2674, 0.1951, 0.2236, 0.3574, 0.3953, 0.2469, 0.2794, 0.2642, 0.2996, 0.3276, 0.2087, 0.2738},
+      { 0.2955, 0.3046, 0.3888, 0.3265, 0.4163, 0.3134, 0.3304, 0.3378, 0.3414, 0.3187, 0.3574, 0.4660, 0.5018, 0.4085, 0.4281, 0.4196, 0.4390, 0.4786, 0.3322, 0.4089},
+      { 0.2906, 0.3249, 0.3937, 0.3122, 0.4342, 0.3012, 0.3297, 0.3460, 0.3817, 0.3245, 0.3953, 0.5018, 0.5440, 0.4000, 0.4233, 0.4243, 0.4641, 0.5097, 0.3201, 0.4563},
+      { 0.2070, 0.2424, 0.3051, 0.2459, 0.3427, 0.2609, 0.3134, 0.2772, 0.3144, 0.2516, 0.2469, 0.4085, 0.4000, 0.3929, 0.4062, 0.3842, 0.3924, 0.4162, 0.2968, 0.3701},
+      { 0.2283, 0.2558, 0.3297, 0.2598, 0.3568, 0.2822, 0.3256, 0.2878, 0.3158, 0.2598, 0.2794, 0.4281, 0.4233, 0.4062, 0.4317, 0.4075, 0.4175, 0.4314, 0.3263, 0.3929},
+      { 0.2156, 0.2506, 0.3257, 0.2577, 0.3382, 0.2668, 0.2994, 0.2750, 0.2988, 0.2560, 0.2642, 0.4196, 0.4243, 0.3842, 0.4075, 0.3991, 0.3935, 0.4239, 0.3102, 0.3635},
+      { 0.2239, 0.2465, 0.3144, 0.2400, 0.3630, 0.3263, 0.3364, 0.3267, 0.3326, 0.3096, 0.2996, 0.4390, 0.4641, 0.3924, 0.4175, 0.3935, 0.4599, 0.4664, 0.3367, 0.4200},
+      { 0.2471, 0.2621, 0.3429, 0.2712, 0.3881, 0.3043, 0.3302, 0.3182, 0.3381, 0.3166, 0.3276, 0.4786, 0.5097, 0.4162, 0.4314, 0.4239, 0.4664, 0.4897, 0.3308, 0.4217},
+      { 0.1892, 0.2091, 0.2667, 0.2095, 0.2873, 0.2013, 0.2321, 0.2398, 0.3076, 0.2102, 0.2087, 0.3322, 0.3201, 0.2968, 0.3263, 0.3102, 0.3367, 0.3308, 0.2729, 0.2948},
+      { 0.2075, 0.2057, 0.2854, 0.1964, 0.4205, 0.2984, 0.3116, 0.3061, 0.4047, 0.2886, 0.2738, 0.4089, 0.4563, 0.3701, 0.3929, 0.3635, 0.4200, 0.4217, 0.2948, 0.5391}},
+    {
+      { 0.0652, 0.0570, 0.3232, 0.2669, 0.2491, 0.1499, 0.1620, 0.2003, 0.1912, 0.1150, 0.1430, 0.2569, 0.2457, 0.1579, 0.1642, 0.1673, 0.1873, 0.2086, 0.1460, 0.2027},
+      { 0.0570, 0.0917, 0.3403, 0.2816, 0.2325, 0.1285, 0.1627, 0.1718, 0.1900, 0.0675, 0.1400, 0.2685, 0.2761, 0.1836, 0.1955, 0.1904, 0.1754, 0.2067, 0.1411, 0.1803},
+      { 0.3232, 0.3403, 0.2702, 0.1857, 0.2758, 0.2185, 0.2300, 0.2508, 0.2667, 0.1651, 0.2164, 0.3626, 0.3707, 0.2558, 0.2757, 0.2794, 0.2692, 0.3121, 0.2175, 0.2509},
+      { 0.2669, 0.2816, 0.1857, 0.1133, 0.1852, 0.1272, 0.1471, 0.1795, 0.2061, 0.0887, 0.1241, 0.2905, 0.2573, 0.1835, 0.1896, 0.1928, 0.1736, 0.2107, 0.1474, 0.1491},
+      { 0.2491, 0.2325, 0.2758, 0.1852, 0.3323, 0.2656, 0.2650, 0.2426, 0.2438, 0.2148, 0.2410, 0.3874, 0.3765, 0.2837, 0.2929, 0.2901, 0.3173, 0.3438, 0.2542, 0.3074},
+      { 0.1499, 0.1285, 0.2185, 0.1272, 0.2656, 0.2801, 0.2546, 0.2169, 0.1961, 0.3315, 0.2096, 0.2856, 0.2972, 0.2573, 0.2641, 0.2373, 0.2852, 0.2895, 0.2922, 0.3486},
+      { 0.1620, 0.1627, 0.2300, 0.1471, 0.2650, 0.2546, 0.2675, 0.2225, 0.2306, 0.2676, 0.2055, 0.3038, 0.3301, 0.2868, 0.2980, 0.2706, 0.3009, 0.3193, 0.2705, 0.3349},
+      { 0.2003, 0.1718, 0.2508, 0.1795, 0.2426, 0.2169, 0.2225, 0.2641, 0.2290, 0.2144, 0.2069, 0.2897, 0.3258, 0.2299, 0.2269, 0.2298, 0.2716, 0.2774, 0.2228, 0.2782},
+      { 0.1912, 0.1900, 0.2667, 0.2061, 0.2438, 0.1961, 0.2306, 0.2290, 0.2443, 0.1524, 0.2062, 0.3065, 0.3460, 0.2494, 0.2576, 0.2611, 0.2785, 0.2870, 0.2104, 0.2545},
+      { 0.1150, 0.0675, 0.1651, 0.0887, 0.2148, 0.3315, 0.2676, 0.2144, 0.1524, 0.2417, 0.1658, 0.2435, 0.2558, 0.2449, 0.2265, 0.2187, 0.2701, 0.2615, 0.2872, 0.3739},
+      { 0.1430, 0.1400, 0.2164, 0.1241, 0.2410, 0.2096, 0.2055, 0.2069, 0.2062, 0.1658, 0.2050, 0.3285, 0.3489, 0.2069, 0.2308, 0.2305, 0.2627, 0.2807, 0.1915, 0.2549},
+      { 0.2569, 0.2685, 0.3626, 0.2905, 0.3874, 0.2856, 0.3038, 0.2897, 0.3065, 0.2435, 0.3285, 0.4298, 0.4633, 0.3738, 0.3865, 0.3836, 0.4095, 0.4414, 0.3125, 0.3765},
+      { 0.2457, 0.2761, 0.3707, 0.2573, 0.3765, 0.2972, 0.3301, 0.3258, 0.3460, 0.2558, 0.3489, 0.4633, 0.5519, 0.3874, 0.4130, 0.4047, 0.4715, 0.4866, 0.3200, 0.4051},
+      { 0.1579, 0.1836, 0.2558, 0.1835, 0.2837, 0.2573, 0.2868, 0.2299, 0.2494, 0.2449, 0.2069, 0.3738, 0.3874, 0.3686, 0.3755, 0.3529, 0.3627, 0.3912, 0.3214, 0.3759},
+      { 0.1642, 0.1955, 0.2757, 0.1896, 0.2929, 0.2641, 0.2980, 0.2269, 0.2576, 0.2265, 0.2308, 0.3865, 0.4130, 0.3755, 0.4008, 0.3746, 0.3794, 0.4053, 0.3176, 0.3700},
+      { 0.1673, 0.1904, 0.2794, 0.1928, 0.2901, 0.2373, 0.2706, 0.2298, 0.2611, 0.2187, 0.2305, 0.3836, 0.4047, 0.3529, 0.3746, 0.3634, 0.3565, 0.3966, 0.2926, 0.3289},
+      { 0.1873, 0.1754, 0.2692, 0.1736, 0.3173, 0.2852, 0.3009, 0.2716, 0.2785, 0.2701, 0.2627, 0.4095, 0.4715, 0.3627, 0.3794, 0.3565, 0.4379, 0.4323, 0.3242, 0.4077},
+      { 0.2086, 0.2067, 0.3121, 0.2107, 0.3438, 0.2895, 0.3193, 0.2774, 0.2870, 0.2615, 0.2807, 0.4414, 0.4866, 0.3912, 0.4053, 0.3966, 0.4323, 0.4665, 0.3274, 0.4151},
+      { 0.1460, 0.1411, 0.2175, 0.1474, 0.2542, 0.2922, 0.2705, 0.2228, 0.2104, 0.2872, 0.1915, 0.3125, 0.3200, 0.3214, 0.3176, 0.2926, 0.3242, 0.3274, 0.3362, 0.3630},
+      { 0.2027, 0.1803, 0.2509, 0.1491, 0.3074, 0.3486, 0.3349, 0.2782, 0.2545, 0.3739, 0.2549, 0.3765, 0.4051, 0.3759, 0.3700, 0.3289, 0.4077, 0.4151, 0.3630, 0.5733}},
+    {
+      { 0.0714, 0.0705, 0.3385, 0.2885, 0.2577, 0.1231, 0.1547, 0.2004, 0.2046, 0.1443, 0.1434, 0.2613, 0.2656, 0.1550, 0.1651, 0.1678, 0.1824, 0.1957, 0.1334, 0.1654},
+      { 0.0705, 0.0866, 0.3435, 0.2927, 0.2346, 0.1132, 0.1450, 0.1776, 0.1979, 0.1221, 0.1267, 0.2562, 0.2746, 0.1736, 0.1828, 0.1834, 0.1752, 0.2043, 0.1416, 0.1396},
+      { 0.3385, 0.3435, 0.2382, 0.1709, 0.2708, 0.1831, 0.2257, 0.2528, 0.2615, 0.2153, 0.2039, 0.3510, 0.3649, 0.2564, 0.2680, 0.2683, 0.2724, 0.3131, 0.2111, 0.2609},
+      { 0.2885, 0.2927, 0.1709, 0.1245, 0.1936, 0.1069, 0.1591, 0.1914, 0.2063, 0.1318, 0.1136, 0.2840, 0.2756, 0.1954, 0.1938, 0.1922, 0.1754, 0.2229, 0.1470, 0.1586},
+      { 0.2577, 0.2346, 0.2708, 0.1936, 0.3147, 0.2459, 0.2704, 0.2688, 0.2543, 0.2362, 0.2554, 0.3810, 0.3838, 0.2882, 0.3026, 0.2939, 0.3116, 0.3374, 0.2367, 0.3066},
+      { 0.1231, 0.1132, 0.1831, 0.1069, 0.2459, 0.2132, 0.2186, 0.1932, 0.1870, 0.2096, 0.3341, 0.2858, 0.3316, 0.2309, 0.2443, 0.2164, 0.2435, 0.2711, 0.2390, 0.3130},
+      { 0.1547, 0.1450, 0.2257, 0.1591, 0.2704, 0.2186, 0.2435, 0.2320, 0.2371, 0.2115, 0.2775, 0.3099, 0.3231, 0.2767, 0.2755, 0.2583, 0.2881, 0.2973, 0.2388, 0.3081},
+      { 0.2004, 0.1776, 0.2528, 0.1914, 0.2688, 0.1932, 0.2320, 0.2530, 0.2384, 0.2155, 0.2235, 0.3095, 0.3492, 0.2297, 0.2403, 0.2278, 0.2756, 0.2854, 0.2102, 0.2648},
+      { 0.2046, 0.1979, 0.2615, 0.2063, 0.2543, 0.1870, 0.2371, 0.2384, 0.2490, 0.1962, 0.2008, 0.3160, 0.3413, 0.2448, 0.2586, 0.2648, 0.2554, 0.2852, 0.1993, 0.2475},
+      { 0.1443, 0.1221, 0.2153, 0.1318, 0.2362, 0.2096, 0.2115, 0.2155, 0.1962, 0.2026, 0.2218, 0.2888, 0.3055, 0.2351, 0.2390, 0.2344, 0.2678, 0.2842, 0.2113, 0.2842},
+      { 0.1434, 0.1267, 0.2039, 0.1136, 0.2554, 0.3341, 0.2775, 0.2235, 0.2008, 0.2218, 0.2072, 0.3319, 0.3568, 0.2712, 0.2612, 0.2433, 0.2871, 0.3117, 0.2709, 0.3750},
+      { 0.2613, 0.2562, 0.3510, 0.2840, 0.3810, 0.2858, 0.3099, 0.3095, 0.3160, 0.2888, 0.3319, 0.4229, 0.4660, 0.3616, 0.3866, 0.3765, 0.4060, 0.4383, 0.3032, 0.3860},
+      { 0.2656, 0.2746, 0.3649, 0.2756, 0.3838, 0.3316, 0.3231, 0.3492, 0.3413, 0.3055, 0.3568, 0.4660, 0.5271, 0.3785, 0.3854, 0.3836, 0.4429, 0.4650, 0.2953, 0.4117},
+      { 0.1550, 0.1736, 0.2564, 0.1954, 0.2882, 0.2309, 0.2767, 0.2297, 0.2448, 0.2351, 0.2712, 0.3616, 0.3785, 0.3483, 0.3546, 0.3358, 0.3422, 0.3687, 0.2883, 0.3569},
+      { 0.1651, 0.1828, 0.2680, 0.1938, 0.3026, 0.2443, 0.2755, 0.2403, 0.2586, 0.2390, 0.2612, 0.3866, 0.3854, 0.3546, 0.3706, 0.3607, 0.3655, 0.3841, 0.2853, 0.3449},
+      { 0.1678, 0.1834, 0.2683, 0.1922, 0.2939, 0.2164, 0.2583, 0.2278, 0.2648, 0.2344, 0.2433, 0.3765, 0.3836, 0.3358, 0.3607, 0.3573, 0.3575, 0.3840, 0.2699, 0.3078},
+      { 0.1824, 0.1752, 0.2724, 0.1754, 0.3116, 0.2435, 0.2881, 0.2756, 0.2554, 0.2678, 0.2871, 0.4060, 0.4429, 0.3422, 0.3655, 0.3575, 0.4156, 0.4086, 0.2892, 0.3801},
+      { 0.1957, 0.2043, 0.3131, 0.2229, 0.3374, 0.2711, 0.2973, 0.2854, 0.2852, 0.2842, 0.3117, 0.4383, 0.4650, 0.3687, 0.3841, 0.3840, 0.4086, 0.4408, 0.3009, 0.4092},
+      { 0.1334, 0.1416, 0.2111, 0.1470, 0.2367, 0.2390, 0.2388, 0.2102, 0.1993, 0.2113, 0.2709, 0.3032, 0.2953, 0.2883, 0.2853, 0.2699, 0.2892, 0.3009, 0.2657, 0.3111},
+      { 0.1654, 0.1396, 0.2609, 0.1586, 0.3066, 0.3130, 0.3081, 0.2648, 0.2475, 0.2842, 0.3750, 0.3860, 0.4117, 0.3569, 0.3449, 0.3078, 0.3801, 0.4092, 0.3111, 0.5322}},
+    {
+      { 0.2062, 0.1767, 0.4147, 0.3430, 0.3342, 0.2676, 0.2698, 0.3029, 0.2817, 0.2500, 0.2434, 0.2929, 0.3247, 0.2487, 0.2509, 0.2454, 0.2780, 0.2797, 0.2399, 0.2919},
+      { 0.1767, 0.1916, 0.4250, 0.3633, 0.3094, 0.2393, 0.2694, 0.2741, 0.2789, 0.2300, 0.2295, 0.2671, 0.3364, 0.2720, 0.2825, 0.2694, 0.2764, 0.2762, 0.2428, 0.2580},
+      { 0.4147, 0.4250, 0.3122, 0.2394, 0.3335, 0.3152, 0.3403, 0.3347, 0.3450, 0.2986, 0.2970, 0.3419, 0.4093, 0.3491, 0.3579, 0.3458, 0.3457, 0.3545, 0.3127, 0.3563},
+      { 0.3430, 0.3633, 0.2394, 0.2052, 0.2585, 0.2480, 0.2720, 0.2674, 0.2827, 0.2227, 0.2105, 0.2844, 0.3201, 0.2803, 0.2792, 0.2726, 0.2597, 0.2826, 0.2507, 0.2630},
+      { 0.3342, 0.3094, 0.3335, 0.2585, 0.4080, 0.3793, 0.3870, 0.3492, 0.3240, 0.3359, 0.3128, 0.4035, 0.4402, 0.3699, 0.3821, 0.3745, 0.4127, 0.4094, 0.3427, 0.4450},
+      { 0.2676, 0.2393, 0.3152, 0.2480, 0.3793, 0.3123, 0.3127, 0.3300, 0.3134, 0.2856, 0.2858, 0.4801, 0.4158, 0.3079, 0.3134, 0.3094, 0.3616, 0.4105, 0.2872, 0.3757},
+      { 0.2698, 0.2694, 0.3403, 0.2720, 0.3870, 0.3127, 0.3479, 0.3389, 0.3335, 0.2927, 0.2879, 0.4063, 0.4103, 0.3698, 0.3806, 0.3604, 0.3891, 0.4135, 0.3151, 0.3779},
+      { 0.3029, 0.2741, 0.3347, 0.2674, 0.3492, 0.3300, 0.3389, 0.3805, 0.3368, 0.3150, 0.2974, 0.3438, 0.3878, 0.3124, 0.3077, 0.3076, 0.3561, 0.3586, 0.2980, 0.3519},
+      { 0.2817, 0.2789, 0.3450, 0.2827, 0.3240, 0.3134, 0.3335, 0.3368, 0.3280, 0.2948, 0.2892, 0.3262, 0.3893, 0.3228, 0.3309, 0.3321, 0.3503, 0.3458, 0.2980, 0.3328},
+      { 0.2500, 0.2300, 0.2986, 0.2227, 0.3359, 0.2856, 0.2927, 0.3150, 0.2948, 0.2944, 0.2716, 0.3318, 0.3603, 0.3070, 0.3094, 0.3112, 0.3578, 0.3529, 0.2863, 0.3531},
+      { 0.2434, 0.2295, 0.2970, 0.2105, 0.3128, 0.2858, 0.2879, 0.2974, 0.2892, 0.2716, 0.2833, 0.3326, 0.4028, 0.2809, 0.2922, 0.2924, 0.3447, 0.3374, 0.2698, 0.3299},
+      { 0.2929, 0.2671, 0.3419, 0.2844, 0.4035, 0.4801, 0.4063, 0.3438, 0.3262, 0.3318, 0.3326, 0.4286, 0.4701, 0.4251, 0.4274, 0.4121, 0.4563, 0.4640, 0.4062, 0.4806},
+      { 0.3247, 0.3364, 0.4093, 0.3201, 0.4402, 0.4158, 0.4103, 0.3878, 0.3893, 0.3603, 0.4028, 0.4701, 0.5218, 0.4484, 0.4731, 0.4480, 0.5139, 0.5193, 0.4194, 0.5004},
+      { 0.2487, 0.2720, 0.3491, 0.2803, 0.3699, 0.3079, 0.3698, 0.3124, 0.3228, 0.3070, 0.2809, 0.4251, 0.4484, 0.4630, 0.4720, 0.4444, 0.4539, 0.4644, 0.3647, 0.4379},
+      { 0.2509, 0.2825, 0.3579, 0.2792, 0.3821, 0.3134, 0.3806, 0.3077, 0.3309, 0.3094, 0.2922, 0.4274, 0.4731, 0.4720, 0.4918, 0.4737, 0.4691, 0.4698, 0.3743, 0.4446},
+      { 0.2454, 0.2694, 0.3458, 0.2726, 0.3745, 0.3094, 0.3604, 0.3076, 0.3321, 0.3112, 0.2924, 0.4121, 0.4480, 0.4444, 0.4737, 0.4636, 0.4632, 0.4599, 0.3747, 0.4229},
+      { 0.2780, 0.2764, 0.3457, 0.2597, 0.4127, 0.3616, 0.3891, 0.3561, 0.3503, 0.3578, 0.3447, 0.4563, 0.5139, 0.4539, 0.4691, 0.4632, 0.4998, 0.4958, 0.3884, 0.4866},
+      { 0.2797, 0.2762, 0.3545, 0.2826, 0.4094, 0.4105, 0.4135, 0.3586, 0.3458, 0.3529, 0.3374, 0.4640, 0.5193, 0.4644, 0.4698, 0.4599, 0.4958, 0.5062, 0.4228, 0.5170},
+      { 0.2399, 0.2428, 0.3127, 0.2507, 0.3427, 0.2872, 0.3151, 0.2980, 0.2980, 0.2863, 0.2698, 0.4062, 0.4194, 0.3647, 0.3743, 0.3747, 0.3884, 0.4228, 0.3355, 0.3782},
+      { 0.2919, 0.2580, 0.3563, 0.2630, 0.4450, 0.3757, 0.3779, 0.3519, 0.3328, 0.3531, 0.3299, 0.4806, 0.5004, 0.4379, 0.4446, 0.4229, 0.4866, 0.5170, 0.3782, 0.6282}},
+    {
+      { 0.2082, 0.1928, 0.4242, 0.3454, 0.3661, 0.2896, 0.2926, 0.3201, 0.3037, 0.2729, 0.2607, 0.3434, 0.2785, 0.2662, 0.2672, 0.2581, 0.2733, 0.2856, 0.2543, 0.2772},
+      { 0.1928, 0.2086, 0.4274, 0.3693, 0.3374, 0.2597, 0.2945, 0.2816, 0.2914, 0.2321, 0.2334, 0.3377, 0.2955, 0.2752, 0.2754, 0.2690, 0.2849, 0.2878, 0.2495, 0.2931},
+      { 0.4242, 0.4274, 0.3442, 0.2587, 0.3538, 0.3454, 0.3542, 0.3448, 0.3604, 0.3134, 0.2992, 0.4169, 0.3653, 0.3511, 0.3615, 0.3563, 0.3591, 0.3751, 0.3282, 0.3809},
+      { 0.3454, 0.3693, 0.2587, 0.2191, 0.2676, 0.2594, 0.2906, 0.2713, 0.2904, 0.2253, 0.2189, 0.3520, 0.2784, 0.2799, 0.2897, 0.2845, 0.2749, 0.3086, 0.2565, 0.2757},
+      { 0.3661, 0.3374, 0.3538, 0.2676, 0.4609, 0.3889, 0.4168, 0.3555, 0.3569, 0.3400, 0.3389, 0.4577, 0.4105, 0.3975, 0.3865, 0.4020, 0.4684, 0.4374, 0.3486, 0.4357},
+      { 0.2896, 0.2597, 0.3454, 0.2594, 0.3889, 0.3287, 0.3290, 0.3478, 0.3012, 0.2972, 0.3316, 0.4158, 0.5147, 0.3167, 0.3203, 0.3021, 0.3484, 0.4216, 0.2934, 0.3824},
+      { 0.2926, 0.2945, 0.3542, 0.2906, 0.4168, 0.3290, 0.3718, 0.3558, 0.3542, 0.3161, 0.3138, 0.4281, 0.4637, 0.3894, 0.3963, 0.3841, 0.4051, 0.4412, 0.3263, 0.4118},
+      { 0.3201, 0.2816, 0.3448, 0.2713, 0.3555, 0.3478, 0.3558, 0.3970, 0.3414, 0.3405, 0.2963, 0.3846, 0.3679, 0.3137, 0.3143, 0.3057, 0.3471, 0.3674, 0.3031, 0.3924},
+      { 0.3037, 0.2914, 0.3604, 0.2904, 0.3569, 0.3012, 0.3542, 0.3414, 0.3506, 0.3057, 0.3051, 0.3823, 0.3573, 0.3320, 0.3557, 0.3480, 0.3528, 0.3664, 0.3188, 0.3708},
+      { 0.2729, 0.2321, 0.3134, 0.2253, 0.3400, 0.2972, 0.3161, 0.3405, 0.3057, 0.3244, 0.2980, 0.3587, 0.3473, 0.3070, 0.3202, 0.3148, 0.3650, 0.3474, 0.3055, 0.3546},
+      { 0.2607, 0.2334, 0.2992, 0.2189, 0.3389, 0.3316, 0.3138, 0.2963, 0.3051, 0.2980, 0.3384, 0.3915, 0.3614, 0.3091, 0.3131, 0.3057, 0.3580, 0.3590, 0.2888, 0.3576},
+      { 0.3434, 0.3377, 0.4169, 0.3520, 0.4577, 0.4158, 0.4281, 0.3846, 0.3823, 0.3587, 0.3915, 0.4853, 0.4922, 0.4850, 0.4986, 0.4752, 0.5082, 0.5103, 0.4186, 0.4966},
+      { 0.2785, 0.2955, 0.3653, 0.2784, 0.4105, 0.5147, 0.4637, 0.3679, 0.3573, 0.3473, 0.3614, 0.4922, 0.5284, 0.4578, 0.4600, 0.4365, 0.4853, 0.4998, 0.4534, 0.5212},
+      { 0.2662, 0.2752, 0.3511, 0.2799, 0.3975, 0.3167, 0.3894, 0.3137, 0.3320, 0.3070, 0.3091, 0.4850, 0.4578, 0.4889, 0.5099, 0.4827, 0.4864, 0.5017, 0.3763, 0.4655},
+      { 0.2672, 0.2754, 0.3615, 0.2897, 0.3865, 0.3203, 0.3963, 0.3143, 0.3557, 0.3202, 0.3131, 0.4986, 0.4600, 0.5099, 0.5242, 0.5114, 0.5015, 0.5157, 0.3987, 0.4786},
+      { 0.2581, 0.2690, 0.3563, 0.2845, 0.4020, 0.3021, 0.3841, 0.3057, 0.3480, 0.3148, 0.3057, 0.4752, 0.4365, 0.4827, 0.5114, 0.5077, 0.4932, 0.4989, 0.3901, 0.4601},
+      { 0.2733, 0.2849, 0.3591, 0.2749, 0.4684, 0.3484, 0.4051, 0.3471, 0.3528, 0.3650, 0.3580, 0.5082, 0.4853, 0.4864, 0.5015, 0.4932, 0.5243, 0.5337, 0.4075, 0.5329},
+      { 0.2856, 0.2878, 0.3751, 0.3086, 0.4374, 0.4216, 0.4412, 0.3674, 0.3664, 0.3474, 0.3590, 0.5103, 0.4998, 0.5017, 0.5157, 0.4989, 0.5337, 0.5367, 0.4434, 0.5216},
+      { 0.2543, 0.2495, 0.3282, 0.2565, 0.3486, 0.2934, 0.3263, 0.3031, 0.3188, 0.3055, 0.2888, 0.4186, 0.4534, 0.3763, 0.3987, 0.3901, 0.4075, 0.4434, 0.3481, 0.3957},
+      { 0.2772, 0.2931, 0.3809, 0.2757, 0.4357, 0.3824, 0.4118, 0.3924, 0.3708, 0.3546, 0.3576, 0.4966, 0.5212, 0.4655, 0.4786, 0.4601, 0.5329, 0.5216, 0.3957, 0.5714}},
+    {
+      { 0.1216, 0.1033, 0.3716, 0.3110, 0.2925, 0.2083, 0.2196, 0.2440, 0.2348, 0.1988, 0.1708, 0.2886, 0.2764, 0.1573, 0.1656, 0.1841, 0.2078, 0.2111, 0.1693, 0.2165},
+      { 0.1033, 0.1294, 0.3931, 0.3387, 0.2825, 0.1931, 0.2249, 0.2206, 0.2343, 0.1695, 0.1658, 0.3016, 0.2950, 0.1778, 0.1843, 0.1918, 0.2007, 0.2214, 0.1760, 0.1955},
+      { 0.3716, 0.3931, 0.2663, 0.2013, 0.3084, 0.2542, 0.2850, 0.2777, 0.2974, 0.2354, 0.2429, 0.3717, 0.3728, 0.2536, 0.2682, 0.2762, 0.2767, 0.3107, 0.2497, 0.2896},
+      { 0.3110, 0.3387, 0.2013, 0.1619, 0.2483, 0.1950, 0.2310, 0.2155, 0.2534, 0.1696, 0.1633, 0.3210, 0.2992, 0.1989, 0.2096, 0.2150, 0.2096, 0.2476, 0.1904, 0.2149},
+      { 0.2925, 0.2825, 0.3084, 0.2483, 0.3572, 0.3031, 0.3404, 0.2911, 0.3030, 0.2791, 0.2783, 0.4194, 0.4157, 0.2886, 0.3028, 0.3015, 0.3474, 0.3628, 0.2755, 0.3400},
+      { 0.2083, 0.1931, 0.2542, 0.1950, 0.3031, 0.3011, 0.3233, 0.2902, 0.2609, 0.2573, 0.2309, 0.3079, 0.3167, 0.3499, 0.3226, 0.2855, 0.3224, 0.3113, 0.2759, 0.3820},
+      { 0.2196, 0.2249, 0.2850, 0.2310, 0.3404, 0.3233, 0.3484, 0.3106, 0.2919, 0.2801, 0.2441, 0.3572, 0.3597, 0.3515, 0.3561, 0.3336, 0.3691, 0.3566, 0.3306, 0.3972},
+      { 0.2440, 0.2206, 0.2777, 0.2155, 0.2911, 0.2902, 0.3106, 0.3357, 0.2877, 0.2644, 0.2435, 0.3153, 0.3515, 0.2270, 0.2380, 0.2431, 0.2838, 0.2778, 0.2408, 0.2969},
+      { 0.2348, 0.2343, 0.2974, 0.2534, 0.3030, 0.2609, 0.2919, 0.2877, 0.2909, 0.2484, 0.2430, 0.3317, 0.3650, 0.2323, 0.2478, 0.2582, 0.2842, 0.2983, 0.2428, 0.2831},
+      { 0.1988, 0.1695, 0.2354, 0.1696, 0.2791, 0.2573, 0.2801, 0.2644, 0.2484, 0.2639, 0.2199, 0.3249, 0.3274, 0.2506, 0.2611, 0.2580, 0.3070, 0.3100, 0.2568, 0.3154},
+      { 0.1708, 0.1658, 0.2429, 0.1633, 0.2783, 0.2309, 0.2441, 0.2435, 0.2430, 0.2199, 0.2211, 0.3407, 0.3560, 0.1813, 0.2021, 0.2188, 0.2642, 0.2819, 0.2231, 0.2666},
+      { 0.2886, 0.3016, 0.3717, 0.3210, 0.4194, 0.3079, 0.3572, 0.3153, 0.3317, 0.3249, 0.3407, 0.4401, 0.4812, 0.3677, 0.3923, 0.4003, 0.4201, 0.4586, 0.3489, 0.4168},
+      { 0.2764, 0.2950, 0.3728, 0.2992, 0.4157, 0.3167, 0.3597, 0.3515, 0.3650, 0.3274, 0.3560, 0.4812, 0.5382, 0.3760, 0.4069, 0.4198, 0.4679, 0.4856, 0.3484, 0.4438},
+      { 0.1573, 0.1778, 0.2536, 0.1989, 0.2886, 0.3499, 0.3515, 0.2270, 0.2323, 0.2506, 0.1813, 0.3677, 0.3760, 0.4277, 0.4228, 0.3907, 0.3804, 0.4045, 0.3776, 0.4461},
+      { 0.1656, 0.1843, 0.2682, 0.2096, 0.3028, 0.3226, 0.3561, 0.2380, 0.2478, 0.2611, 0.2021, 0.3923, 0.4069, 0.4228, 0.4374, 0.4115, 0.3978, 0.4307, 0.3749, 0.4456},
+      { 0.1841, 0.1918, 0.2762, 0.2150, 0.3015, 0.2855, 0.3336, 0.2431, 0.2582, 0.2580, 0.2188, 0.4003, 0.4198, 0.3907, 0.4115, 0.4127, 0.3996, 0.4329, 0.3513, 0.4102},
+      { 0.2078, 0.2007, 0.2767, 0.2096, 0.3474, 0.3224, 0.3691, 0.2838, 0.2842, 0.3070, 0.2642, 0.4201, 0.4679, 0.3804, 0.3978, 0.3996, 0.4675, 0.4603, 0.3614, 0.4473},
+      { 0.2111, 0.2214, 0.3107, 0.2476, 0.3628, 0.3113, 0.3566, 0.2778, 0.2983, 0.3100, 0.2819, 0.4586, 0.4856, 0.4045, 0.4307, 0.4329, 0.4603, 0.4923, 0.3614, 0.4646},
+      { 0.1693, 0.1760, 0.2497, 0.1904, 0.2755, 0.2759, 0.3306, 0.2408, 0.2428, 0.2568, 0.2231, 0.3489, 0.3484, 0.3776, 0.3749, 0.3513, 0.3614, 0.3614, 0.3404, 0.3913},
+      { 0.2165, 0.1955, 0.2896, 0.2149, 0.3400, 0.3820, 0.3972, 0.2969, 0.2831, 0.3154, 0.2666, 0.4168, 0.4438, 0.4461, 0.4456, 0.4102, 0.4473, 0.4646, 0.3913, 0.5640}},
+    {
+      { 0.1260, 0.1176, 0.3776, 0.3194, 0.2877, 0.2179, 0.2256, 0.2506, 0.2476, 0.1987, 0.1811, 0.2908, 0.2771, 0.1715, 0.1560, 0.1803, 0.2087, 0.2060, 0.1818, 0.2170},
+      { 0.1176, 0.1414, 0.3941, 0.3350, 0.2818, 0.2059, 0.2301, 0.2276, 0.2381, 0.1697, 0.1689, 0.2942, 0.2962, 0.1781, 0.1606, 0.1784, 0.1914, 0.2127, 0.1812, 0.1919},
+      { 0.3776, 0.3941, 0.2696, 0.2087, 0.3086, 0.2681, 0.2889, 0.2803, 0.3012, 0.2509, 0.2517, 0.3689, 0.3677, 0.2542, 0.2412, 0.2645, 0.2739, 0.3052, 0.2585, 0.2792},
+      { 0.3194, 0.3350, 0.2087, 0.1561, 0.2409, 0.2041, 0.2356, 0.2218, 0.2494, 0.1723, 0.1656, 0.3177, 0.3027, 0.2015, 0.1832, 0.2017, 0.1980, 0.2426, 0.1942, 0.2127},
+      { 0.2877, 0.2818, 0.3086, 0.2409, 0.3711, 0.3171, 0.3429, 0.3060, 0.3124, 0.2818, 0.2776, 0.4189, 0.4172, 0.3054, 0.2873, 0.2943, 0.3343, 0.3584, 0.2847, 0.3374},
+      { 0.2179, 0.2059, 0.2681, 0.2041, 0.3171, 0.2962, 0.3100, 0.2950, 0.2822, 0.2641, 0.2443, 0.3134, 0.3203, 0.3226, 0.3524, 0.2998, 0.3385, 0.3121, 0.2671, 0.3515},
+      { 0.2256, 0.2301, 0.2889, 0.2356, 0.3429, 0.3100, 0.3516, 0.3222, 0.3026, 0.2752, 0.2525, 0.3604, 0.3707, 0.3639, 0.3639, 0.3437, 0.3771, 0.3653, 0.3269, 0.3813},
+      { 0.2506, 0.2276, 0.2803, 0.2218, 0.3060, 0.2950, 0.3222, 0.3364, 0.2938, 0.2790, 0.2469, 0.3175, 0.3522, 0.2410, 0.2334, 0.2386, 0.2869, 0.2829, 0.2523, 0.3057},
+      { 0.2476, 0.2381, 0.3012, 0.2494, 0.3124, 0.2822, 0.3026, 0.2938, 0.2970, 0.2557, 0.2528, 0.3415, 0.3675, 0.2407, 0.2243, 0.2476, 0.2783, 0.2917, 0.2529, 0.2806},
+      { 0.1987, 0.1697, 0.2509, 0.1723, 0.2818, 0.2641, 0.2752, 0.2790, 0.2557, 0.2690, 0.2405, 0.3313, 0.3323, 0.2560, 0.2422, 0.2590, 0.3062, 0.3102, 0.2578, 0.3170},
+      { 0.1811, 0.1689, 0.2517, 0.1656, 0.2776, 0.2443, 0.2525, 0.2469, 0.2528, 0.2405, 0.2330, 0.3471, 0.3672, 0.2010, 0.1956, 0.2208, 0.2737, 0.2814, 0.2329, 0.2825},
+      { 0.2908, 0.2942, 0.3689, 0.3177, 0.4189, 0.3134, 0.3604, 0.3175, 0.3415, 0.3313, 0.3471, 0.4463, 0.4854, 0.3958, 0.3850, 0.4062, 0.4313, 0.4614, 0.3564, 0.4187},
+      { 0.2771, 0.2962, 0.3677, 0.3027, 0.4172, 0.3203, 0.3707, 0.3522, 0.3675, 0.3323, 0.3672, 0.4854, 0.5332, 0.4073, 0.4082, 0.4272, 0.4679, 0.5028, 0.3570, 0.4580},
+      { 0.1715, 0.1781, 0.2542, 0.2015, 0.3054, 0.3226, 0.3639, 0.2410, 0.2407, 0.2560, 0.2010, 0.3958, 0.4073, 0.4495, 0.4365, 0.4189, 0.4059, 0.4366, 0.3725, 0.4517},
+      { 0.1560, 0.1606, 0.2412, 0.1832, 0.2873, 0.3524, 0.3639, 0.2334, 0.2243, 0.2422, 0.1956, 0.3850, 0.4082, 0.4365, 0.4373, 0.4154, 0.4028, 0.4343, 0.3820, 0.4497},
+      { 0.1803, 0.1784, 0.2645, 0.2017, 0.2943, 0.2998, 0.3437, 0.2386, 0.2476, 0.2590, 0.2208, 0.4062, 0.4272, 0.4189, 0.4154, 0.4270, 0.4161, 0.4517, 0.3615, 0.4245},
+      { 0.2087, 0.1914, 0.2739, 0.1980, 0.3343, 0.3385, 0.3771, 0.2869, 0.2783, 0.3062, 0.2737, 0.4313, 0.4679, 0.4059, 0.4028, 0.4161, 0.4803, 0.4885, 0.3747, 0.4686},
+      { 0.2060, 0.2127, 0.3052, 0.2426, 0.3584, 0.3121, 0.3653, 0.2829, 0.2917, 0.3102, 0.2814, 0.4614, 0.5028, 0.4366, 0.4343, 0.4517, 0.4885, 0.5094, 0.3715, 0.4720},
+      { 0.1818, 0.1812, 0.2585, 0.1942, 0.2847, 0.2671, 0.3269, 0.2523, 0.2529, 0.2578, 0.2329, 0.3564, 0.3570, 0.3725, 0.3820, 0.3615, 0.3747, 0.3715, 0.3301, 0.3816},
+      { 0.2170, 0.1919, 0.2792, 0.2127, 0.3374, 0.3515, 0.3813, 0.3057, 0.2806, 0.3170, 0.2825, 0.4187, 0.4580, 0.4517, 0.4497, 0.4245, 0.4686, 0.4720, 0.3816, 0.5456}},
+    {
+      { 0.1195, 0.1189, 0.3750, 0.3125, 0.2804, 0.1883, 0.2138, 0.2395, 0.2414, 0.1872, 0.1755, 0.2837, 0.2699, 0.1785, 0.1702, 0.1621, 0.1990, 0.1994, 0.1724, 0.1866},
+      { 0.1189, 0.1385, 0.3920, 0.3318, 0.2785, 0.1728, 0.2111, 0.2221, 0.2368, 0.1623, 0.1678, 0.2831, 0.2879, 0.1815, 0.1799, 0.1563, 0.1836, 0.2033, 0.1714, 0.1798},
+      { 0.3750, 0.3920, 0.2726, 0.2051, 0.2996, 0.2574, 0.2763, 0.2832, 0.3006, 0.2375, 0.2521, 0.3637, 0.3638, 0.2620, 0.2627, 0.2501, 0.2724, 0.2969, 0.2546, 0.2778},
+      { 0.3125, 0.3318, 0.2051, 0.1582, 0.2226, 0.1870, 0.2225, 0.2133, 0.2367, 0.1629, 0.1611, 0.3079, 0.2990, 0.2091, 0.2044, 0.1868, 0.1943, 0.2287, 0.1870, 0.2098},
+      { 0.2804, 0.2785, 0.2996, 0.2226, 0.3682, 0.3081, 0.3273, 0.2936, 0.2947, 0.2675, 0.2769, 0.4053, 0.4090, 0.3099, 0.2980, 0.2802, 0.3301, 0.3449, 0.2743, 0.3349},
+      { 0.1883, 0.1728, 0.2574, 0.1870, 0.3081, 0.2429, 0.2770, 0.2717, 0.2668, 0.2373, 0.2164, 0.3094, 0.3021, 0.2855, 0.2998, 0.3241, 0.3202, 0.3042, 0.2373, 0.3110},
+      { 0.2138, 0.2111, 0.2763, 0.2225, 0.3273, 0.2770, 0.3135, 0.3014, 0.2886, 0.2613, 0.2372, 0.3519, 0.3639, 0.3428, 0.3467, 0.3264, 0.3563, 0.3539, 0.2938, 0.3490},
+      { 0.2395, 0.2221, 0.2832, 0.2133, 0.2936, 0.2717, 0.3014, 0.3354, 0.2908, 0.2661, 0.2282, 0.3165, 0.3266, 0.2526, 0.2470, 0.2395, 0.2830, 0.2784, 0.2420, 0.2875},
+      { 0.2414, 0.2368, 0.3006, 0.2367, 0.2947, 0.2668, 0.2886, 0.2908, 0.2907, 0.2438, 0.2501, 0.3255, 0.3574, 0.2506, 0.2485, 0.2266, 0.2625, 0.2818, 0.2460, 0.2750},
+      { 0.1872, 0.1623, 0.2375, 0.1629, 0.2675, 0.2373, 0.2613, 0.2661, 0.2438, 0.2541, 0.2234, 0.3156, 0.3234, 0.2570, 0.2568, 0.2454, 0.3037, 0.3018, 0.2482, 0.3042},
+      { 0.1755, 0.1678, 0.2521, 0.1611, 0.2769, 0.2164, 0.2372, 0.2282, 0.2501, 0.2234, 0.2306, 0.3509, 0.3523, 0.2135, 0.2173, 0.1966, 0.2635, 0.2795, 0.2213, 0.2614},
+      { 0.2837, 0.2831, 0.3637, 0.3079, 0.4053, 0.3094, 0.3519, 0.3165, 0.3255, 0.3156, 0.3509, 0.4397, 0.4721, 0.3972, 0.4008, 0.3835, 0.4266, 0.4537, 0.3537, 0.4093},
+      { 0.2699, 0.2879, 0.3638, 0.2990, 0.4090, 0.3021, 0.3639, 0.3266, 0.3574, 0.3234, 0.3523, 0.4721, 0.5224, 0.4073, 0.4269, 0.4037, 0.4683, 0.5002, 0.3432, 0.4398},
+      { 0.1785, 0.1815, 0.2620, 0.2091, 0.3099, 0.2855, 0.3428, 0.2526, 0.2506, 0.2570, 0.2135, 0.3972, 0.4073, 0.4354, 0.4354, 0.4030, 0.4063, 0.4382, 0.3512, 0.4203},
+      { 0.1702, 0.1799, 0.2627, 0.2044, 0.2980, 0.2998, 0.3467, 0.2470, 0.2485, 0.2568, 0.2173, 0.4008, 0.4269, 0.4354, 0.4508, 0.4169, 0.4150, 0.4489, 0.3646, 0.4234},
+      { 0.1621, 0.1563, 0.2501, 0.1868, 0.2802, 0.3241, 0.3264, 0.2395, 0.2266, 0.2454, 0.1966, 0.3835, 0.4037, 0.4030, 0.4169, 0.3979, 0.3865, 0.4262, 0.3592, 0.4141},
+      { 0.1990, 0.1836, 0.2724, 0.1943, 0.3301, 0.3202, 0.3563, 0.2830, 0.2625, 0.3037, 0.2635, 0.4266, 0.4683, 0.4063, 0.4150, 0.3865, 0.4562, 0.4670, 0.3682, 0.4536},
+      { 0.1994, 0.2033, 0.2969, 0.2287, 0.3449, 0.3042, 0.3539, 0.2784, 0.2818, 0.3018, 0.2795, 0.4537, 0.5002, 0.4382, 0.4489, 0.4262, 0.4670, 0.4945, 0.3678, 0.4546},
+      { 0.1724, 0.1714, 0.2546, 0.1870, 0.2743, 0.2373, 0.2938, 0.2420, 0.2460, 0.2482, 0.2213, 0.3537, 0.3432, 0.3512, 0.3646, 0.3592, 0.3682, 0.3678, 0.3187, 0.3523},
+      { 0.1866, 0.1798, 0.2778, 0.2098, 0.3349, 0.3110, 0.3490, 0.2875, 0.2750, 0.3042, 0.2614, 0.4093, 0.4398, 0.4203, 0.4234, 0.4141, 0.4536, 0.4546, 0.3523, 0.5436}},
+    {
+      { 0.1399, 0.1325, 0.3895, 0.3239, 0.3066, 0.2294, 0.2261, 0.2774, 0.2567, 0.2188, 0.1935, 0.3103, 0.2881, 0.1880, 0.1905, 0.1895, 0.1954, 0.2318, 0.1866, 0.2145},
+      { 0.1325, 0.1453, 0.4073, 0.3373, 0.2947, 0.2128, 0.2373, 0.2477, 0.2485, 0.1876, 0.1903, 0.3080, 0.3067, 0.1988, 0.2007, 0.1872, 0.1535, 0.2309, 0.1915, 0.2028},
+      { 0.3895, 0.4073, 0.2868, 0.2145, 0.3174, 0.2849, 0.3068, 0.3002, 0.3164, 0.2596, 0.2650, 0.3912, 0.3909, 0.2815, 0.2793, 0.2756, 0.2538, 0.3283, 0.2625, 0.2958},
+      { 0.3239, 0.3373, 0.2145, 0.1645, 0.2405, 0.2208, 0.2338, 0.2220, 0.2450, 0.1745, 0.1738, 0.3325, 0.3073, 0.2165, 0.2092, 0.2019, 0.1429, 0.2547, 0.2004, 0.2084},
+      { 0.3066, 0.2947, 0.3174, 0.2405, 0.3901, 0.3437, 0.3679, 0.3536, 0.3301, 0.3101, 0.3039, 0.4379, 0.4660, 0.3460, 0.3468, 0.3312, 0.3281, 0.3968, 0.3041, 0.4006},
+      { 0.2294, 0.2128, 0.2849, 0.2208, 0.3437, 0.3024, 0.3286, 0.3137, 0.3263, 0.2852, 0.2435, 0.3616, 0.3484, 0.3224, 0.3385, 0.3202, 0.4269, 0.3601, 0.2923, 0.3563},
+      { 0.2261, 0.2373, 0.3068, 0.2338, 0.3679, 0.3286, 0.3573, 0.3430, 0.3338, 0.3125, 0.2645, 0.3885, 0.3912, 0.3740, 0.3857, 0.3578, 0.3876, 0.3949, 0.3303, 0.3954},
+      { 0.2774, 0.2477, 0.3002, 0.2220, 0.3536, 0.3137, 0.3430, 0.3587, 0.3119, 0.2956, 0.2693, 0.3973, 0.3966, 0.2895, 0.2890, 0.2636, 0.3126, 0.3172, 0.2773, 0.3408},
+      { 0.2567, 0.2485, 0.3164, 0.2450, 0.3301, 0.3263, 0.3338, 0.3119, 0.3344, 0.2864, 0.2693, 0.3653, 0.4006, 0.2894, 0.2851, 0.2729, 0.2576, 0.3309, 0.2953, 0.3337},
+      { 0.2188, 0.1876, 0.2596, 0.1745, 0.3101, 0.2852, 0.3125, 0.2956, 0.2864, 0.2929, 0.2500, 0.3641, 0.3706, 0.3022, 0.2926, 0.2943, 0.3120, 0.3495, 0.2926, 0.3538},
+      { 0.1935, 0.1903, 0.2650, 0.1738, 0.3039, 0.2435, 0.2645, 0.2693, 0.2693, 0.2500, 0.2746, 0.3745, 0.3842, 0.2477, 0.2483, 0.2409, 0.2557, 0.3169, 0.2542, 0.2775},
+      { 0.3103, 0.3080, 0.3912, 0.3325, 0.4379, 0.3616, 0.3885, 0.3973, 0.3653, 0.3641, 0.3745, 0.4745, 0.5165, 0.4299, 0.4395, 0.4294, 0.4220, 0.4963, 0.3840, 0.4463},
+      { 0.2881, 0.3067, 0.3909, 0.3073, 0.4660, 0.3484, 0.3912, 0.3966, 0.4006, 0.3706, 0.3842, 0.5165, 0.5834, 0.4605, 0.4606, 0.4439, 0.4755, 0.5446, 0.3836, 0.4924},
+      { 0.1880, 0.1988, 0.2815, 0.2165, 0.3460, 0.3224, 0.3740, 0.2895, 0.2894, 0.3022, 0.2477, 0.4299, 0.4605, 0.4479, 0.4573, 0.4349, 0.4107, 0.4660, 0.3830, 0.4584},
+      { 0.1905, 0.2007, 0.2793, 0.2092, 0.3468, 0.3385, 0.3857, 0.2890, 0.2851, 0.2926, 0.2483, 0.4395, 0.4606, 0.4573, 0.4685, 0.4483, 0.4200, 0.4780, 0.3979, 0.4645},
+      { 0.1895, 0.1872, 0.2756, 0.2019, 0.3312, 0.3202, 0.3578, 0.2636, 0.2729, 0.2943, 0.2409, 0.4294, 0.4439, 0.4349, 0.4483, 0.4340, 0.3922, 0.4684, 0.3802, 0.4342},
+      { 0.1954, 0.1535, 0.2538, 0.1429, 0.3281, 0.4269, 0.3876, 0.3126, 0.2576, 0.3120, 0.2557, 0.4220, 0.4755, 0.4107, 0.4200, 0.3922, 0.4538, 0.4723, 0.3971, 0.4936},
+      { 0.2318, 0.2309, 0.3283, 0.2547, 0.3968, 0.3601, 0.3949, 0.3172, 0.3309, 0.3495, 0.3169, 0.4963, 0.5446, 0.4660, 0.4780, 0.4684, 0.4723, 0.5293, 0.4049, 0.5040},
+      { 0.1866, 0.1915, 0.2625, 0.2004, 0.3041, 0.2923, 0.3303, 0.2773, 0.2953, 0.2926, 0.2542, 0.3840, 0.3836, 0.3830, 0.3979, 0.3802, 0.3971, 0.4049, 0.3618, 0.3996},
+      { 0.2145, 0.2028, 0.2958, 0.2084, 0.4006, 0.3563, 0.3954, 0.3408, 0.3337, 0.3538, 0.2775, 0.4463, 0.4924, 0.4584, 0.4645, 0.4342, 0.4936, 0.5040, 0.3996, 0.5726}},
+    {
+      { 0.1851, 0.1666, 0.4049, 0.3419, 0.3254, 0.2548, 0.2593, 0.2818, 0.2771, 0.2463, 0.2230, 0.3202, 0.3073, 0.2159, 0.2138, 0.2060, 0.2407, 0.2157, 0.2206, 0.2531},
+      { 0.1666, 0.1829, 0.4186, 0.3574, 0.3159, 0.2277, 0.2545, 0.2623, 0.2790, 0.2155, 0.2089, 0.2969, 0.3158, 0.2339, 0.2288, 0.2096, 0.2356, 0.1985, 0.2138, 0.2390},
+      { 0.4049, 0.4186, 0.3071, 0.2383, 0.3301, 0.2946, 0.3189, 0.3258, 0.3385, 0.2891, 0.2880, 0.3848, 0.3946, 0.3066, 0.3138, 0.3011, 0.3150, 0.2960, 0.2874, 0.3212},
+      { 0.3419, 0.3574, 0.2383, 0.1935, 0.2583, 0.2275, 0.2541, 0.2588, 0.2759, 0.2159, 0.1974, 0.3213, 0.3150, 0.2493, 0.2429, 0.2290, 0.2328, 0.2217, 0.2298, 0.2478},
+      { 0.3254, 0.3159, 0.3301, 0.2583, 0.4081, 0.3712, 0.3773, 0.3357, 0.3335, 0.3290, 0.3063, 0.4375, 0.4514, 0.3600, 0.3596, 0.3385, 0.3877, 0.3544, 0.3247, 0.4086},
+      { 0.2548, 0.2277, 0.2946, 0.2275, 0.3712, 0.3074, 0.3155, 0.3315, 0.3043, 0.2895, 0.2711, 0.4105, 0.4216, 0.3113, 0.3121, 0.3042, 0.3601, 0.4230, 0.2916, 0.3583},
+      { 0.2593, 0.2545, 0.3189, 0.2541, 0.3773, 0.3155, 0.3514, 0.3481, 0.3244, 0.3090, 0.2816, 0.4057, 0.4171, 0.3818, 0.3859, 0.3620, 0.3892, 0.3896, 0.3282, 0.3847},
+      { 0.2818, 0.2623, 0.3258, 0.2588, 0.3357, 0.3315, 0.3481, 0.3843, 0.3371, 0.3104, 0.2676, 0.3656, 0.3953, 0.2906, 0.2909, 0.2749, 0.3303, 0.3039, 0.2899, 0.3334},
+      { 0.2771, 0.2790, 0.3385, 0.2759, 0.3335, 0.3043, 0.3244, 0.3371, 0.3277, 0.2965, 0.2852, 0.3490, 0.3782, 0.2978, 0.2938, 0.2797, 0.3172, 0.2824, 0.2894, 0.3101},
+      { 0.2463, 0.2155, 0.2891, 0.2159, 0.3290, 0.2895, 0.3090, 0.3104, 0.2965, 0.3037, 0.2613, 0.3670, 0.3685, 0.3040, 0.3046, 0.3003, 0.3564, 0.3175, 0.2933, 0.3518},
+      { 0.2230, 0.2089, 0.2880, 0.1974, 0.3063, 0.2711, 0.2816, 0.2676, 0.2852, 0.2613, 0.2694, 0.3607, 0.3959, 0.2626, 0.2630, 0.2538, 0.3096, 0.2722, 0.2605, 0.3045},
+      { 0.3202, 0.2969, 0.3848, 0.3213, 0.4375, 0.4105, 0.4057, 0.3656, 0.3490, 0.3670, 0.3607, 0.4550, 0.4974, 0.4493, 0.4585, 0.4374, 0.4799, 0.4509, 0.4152, 0.4848},
+      { 0.3073, 0.3158, 0.3946, 0.3150, 0.4514, 0.4216, 0.4171, 0.3953, 0.3782, 0.3685, 0.3959, 0.4974, 0.5415, 0.4621, 0.4783, 0.4593, 0.5124, 0.4795, 0.4214, 0.4894},
+      { 0.2159, 0.2339, 0.3066, 0.2493, 0.3600, 0.3113, 0.3818, 0.2906, 0.2978, 0.3040, 0.2626, 0.4493, 0.4621, 0.4798, 0.4863, 0.4594, 0.4585, 0.4421, 0.3777, 0.4518},
+      { 0.2138, 0.2288, 0.3138, 0.2429, 0.3596, 0.3121, 0.3859, 0.2909, 0.2938, 0.3046, 0.2630, 0.4585, 0.4783, 0.4863, 0.5037, 0.4813, 0.4760, 0.4560, 0.3897, 0.4635},
+      { 0.2060, 0.2096, 0.3011, 0.2290, 0.3385, 0.3042, 0.3620, 0.2749, 0.2797, 0.3003, 0.2538, 0.4374, 0.4593, 0.4594, 0.4813, 0.4698, 0.4570, 0.4369, 0.3802, 0.4388},
+      { 0.2407, 0.2356, 0.3150, 0.2328, 0.3877, 0.3601, 0.3892, 0.3303, 0.3172, 0.3564, 0.3096, 0.4799, 0.5124, 0.4585, 0.4760, 0.4570, 0.5183, 0.4666, 0.4059, 0.4981},
+      { 0.2157, 0.1985, 0.2960, 0.2217, 0.3544, 0.4230, 0.3896, 0.3039, 0.2824, 0.3175, 0.2722, 0.4509, 0.4795, 0.4421, 0.4560, 0.4369, 0.4666, 0.4758, 0.4126, 0.5030},
+      { 0.2206, 0.2138, 0.2874, 0.2298, 0.3247, 0.2916, 0.3282, 0.2899, 0.2894, 0.2933, 0.2605, 0.4152, 0.4214, 0.3777, 0.3897, 0.3802, 0.4059, 0.4126, 0.3432, 0.3919},
+      { 0.2531, 0.2390, 0.3212, 0.2478, 0.4086, 0.3583, 0.3847, 0.3334, 0.3101, 0.3518, 0.3045, 0.4848, 0.4894, 0.4518, 0.4635, 0.4388, 0.4981, 0.5030, 0.3919, 0.5793}},
+    {
+      { 0.0920, 0.0985, 0.3502, 0.2988, 0.2592, 0.1656, 0.1755, 0.2107, 0.2421, 0.1561, 0.1427, 0.2660, 0.2733, 0.1629, 0.1675, 0.1749, 0.1880, 0.2121, 0.1425, 0.1900},
+      { 0.0985, 0.1545, 0.3770, 0.3326, 0.2484, 0.1221, 0.1654, 0.2052, 0.2448, 0.1248, 0.1456, 0.2719, 0.2891, 0.1799, 0.1918, 0.2020, 0.1854, 0.2110, 0.1363, 0.1429},
+      { 0.3502, 0.3770, 0.2531, 0.1882, 0.2778, 0.2131, 0.2403, 0.2483, 0.2780, 0.2016, 0.2184, 0.3504, 0.3534, 0.2580, 0.2753, 0.2813, 0.2603, 0.3048, 0.2056, 0.2330},
+      { 0.2988, 0.3326, 0.1882, 0.1461, 0.2016, 0.1383, 0.1704, 0.1904, 0.2308, 0.1235, 0.1302, 0.2997, 0.2771, 0.2002, 0.2115, 0.2191, 0.1882, 0.2257, 0.1426, 0.1431},
+      { 0.2592, 0.2484, 0.2778, 0.2016, 0.3274, 0.2801, 0.2952, 0.2691, 0.2627, 0.2582, 0.2485, 0.3894, 0.3880, 0.2942, 0.2964, 0.2921, 0.3113, 0.3487, 0.2357, 0.3041},
+      { 0.1656, 0.1221, 0.2131, 0.1383, 0.2801, 0.3298, 0.2908, 0.2588, 0.2013, 0.2922, 0.2390, 0.2872, 0.2934, 0.2759, 0.2671, 0.2373, 0.2923, 0.2916, 0.3301, 0.3773},
+      { 0.1755, 0.1654, 0.2403, 0.1704, 0.2952, 0.2908, 0.3024, 0.2759, 0.2412, 0.2854, 0.2240, 0.3171, 0.3320, 0.3164, 0.3131, 0.2885, 0.3165, 0.3281, 0.3046, 0.3692},
+      { 0.2107, 0.2052, 0.2483, 0.1904, 0.2691, 0.2588, 0.2759, 0.2842, 0.2581, 0.2397, 0.2216, 0.3131, 0.3362, 0.2499, 0.2427, 0.2381, 0.2842, 0.2823, 0.2269, 0.2879},
+      { 0.2421, 0.2448, 0.2780, 0.2308, 0.2627, 0.2013, 0.2412, 0.2581, 0.2759, 0.1965, 0.2111, 0.3136, 0.3487, 0.2435, 0.2582, 0.2592, 0.2587, 0.2900, 0.2008, 0.2305},
+      { 0.1561, 0.1248, 0.2016, 0.1235, 0.2582, 0.2922, 0.2854, 0.2397, 0.1965, 0.2817, 0.1946, 0.3031, 0.3103, 0.2812, 0.2756, 0.2635, 0.3072, 0.3151, 0.2766, 0.3617},
+      { 0.1427, 0.1456, 0.2184, 0.1302, 0.2485, 0.2390, 0.2240, 0.2216, 0.2111, 0.1946, 0.2068, 0.3290, 0.3463, 0.2116, 0.2233, 0.2180, 0.2587, 0.2841, 0.1878, 0.2501},
+      { 0.2660, 0.2719, 0.3504, 0.2997, 0.3894, 0.2872, 0.3171, 0.3131, 0.3136, 0.3031, 0.3290, 0.4149, 0.4545, 0.3656, 0.3862, 0.3890, 0.3985, 0.4411, 0.2973, 0.3691},
+      { 0.2733, 0.2891, 0.3534, 0.2771, 0.3880, 0.2934, 0.3320, 0.3362, 0.3487, 0.3103, 0.3463, 0.4545, 0.5023, 0.3698, 0.3993, 0.3913, 0.4476, 0.4727, 0.2858, 0.4048},
+      { 0.1629, 0.1799, 0.2580, 0.2002, 0.2942, 0.2759, 0.3164, 0.2499, 0.2435, 0.2812, 0.2116, 0.3656, 0.3698, 0.3952, 0.3940, 0.3738, 0.3689, 0.3936, 0.3462, 0.4044},
+      { 0.1675, 0.1918, 0.2753, 0.2115, 0.2964, 0.2671, 0.3131, 0.2427, 0.2582, 0.2756, 0.2233, 0.3862, 0.3993, 0.3940, 0.4100, 0.3930, 0.3831, 0.4121, 0.3258, 0.3907},
+      { 0.1749, 0.2020, 0.2813, 0.2191, 0.2921, 0.2373, 0.2885, 0.2381, 0.2592, 0.2635, 0.2180, 0.3890, 0.3913, 0.3738, 0.3930, 0.3908, 0.3724, 0.4082, 0.3035, 0.3521},
+      { 0.1880, 0.1854, 0.2603, 0.1882, 0.3113, 0.2923, 0.3165, 0.2842, 0.2587, 0.3072, 0.2587, 0.3985, 0.4476, 0.3689, 0.3831, 0.3724, 0.4333, 0.4325, 0.3189, 0.4095},
+      { 0.2121, 0.2110, 0.3048, 0.2257, 0.3487, 0.2916, 0.3281, 0.2823, 0.2900, 0.3151, 0.2841, 0.4411, 0.4727, 0.3936, 0.4121, 0.4082, 0.4325, 0.4669, 0.3161, 0.4194},
+      { 0.1425, 0.1363, 0.2056, 0.1426, 0.2357, 0.3301, 0.3046, 0.2269, 0.2008, 0.2766, 0.1878, 0.2973, 0.2858, 0.3462, 0.3258, 0.3035, 0.3189, 0.3161, 0.3747, 0.3867},
+      { 0.1900, 0.1429, 0.2330, 0.1431, 0.3041, 0.3773, 0.3692, 0.2879, 0.2305, 0.3617, 0.2501, 0.3691, 0.4048, 0.4044, 0.3907, 0.3521, 0.4095, 0.4194, 0.3867, 0.5641}},
+    {
+      { 0.1321, 0.1331, 0.3933, 0.3323, 0.3183, 0.2664, 0.2542, 0.2712, 0.2535, 0.2568, 0.1997, 0.3160, 0.3525, 0.2195, 0.2166, 0.2106, 0.2456, 0.2503, 0.2087, 0.1810},
+      { 0.1331, 0.1545, 0.3975, 0.3387, 0.3086, 0.2184, 0.2299, 0.2470, 0.2516, 0.1881, 0.1945, 0.3215, 0.3337, 0.2045, 0.2146, 0.2053, 0.2092, 0.2389, 0.1684, 0.1457},
+      { 0.3933, 0.3975, 0.2939, 0.2294, 0.3250, 0.3033, 0.3042, 0.3175, 0.3238, 0.2541, 0.2841, 0.3997, 0.3859, 0.2823, 0.2998, 0.2905, 0.2865, 0.3309, 0.2531, 0.2590},
+      { 0.3323, 0.3387, 0.2294, 0.1800, 0.2487, 0.2102, 0.2384, 0.2300, 0.2590, 0.1840, 0.1762, 0.3376, 0.3038, 0.2239, 0.2301, 0.2193, 0.2144, 0.2651, 0.1764, 0.1868},
+      { 0.3183, 0.3086, 0.3250, 0.2487, 0.3808, 0.3798, 0.3758, 0.3384, 0.3150, 0.3167, 0.3145, 0.4494, 0.4468, 0.3355, 0.3531, 0.3293, 0.3757, 0.3979, 0.3022, 0.3492},
+      { 0.2664, 0.2184, 0.3033, 0.2102, 0.3798, 0.4186, 0.4006, 0.3703, 0.2984, 0.3486, 0.3130, 0.3757, 0.3824, 0.3820, 0.3515, 0.3110, 0.3563, 0.3583, 0.3773, 0.4392},
+      { 0.2542, 0.2299, 0.3042, 0.2384, 0.3758, 0.4006, 0.3935, 0.3515, 0.3185, 0.3525, 0.2895, 0.3794, 0.3952, 0.3870, 0.3730, 0.3418, 0.3755, 0.3880, 0.3819, 0.3562},
+      { 0.2712, 0.2470, 0.3175, 0.2300, 0.3384, 0.3703, 0.3515, 0.4608, 0.3252, 0.3289, 0.2784, 0.3477, 0.3986, 0.2933, 0.2919, 0.2832, 0.3308, 0.3354, 0.2926, 0.2795},
+      { 0.2535, 0.2516, 0.3238, 0.2590, 0.3150, 0.2984, 0.3185, 0.3252, 0.3015, 0.2716, 0.2704, 0.3475, 0.3865, 0.2811, 0.2847, 0.2748, 0.2927, 0.3223, 0.2548, 0.2494},
+      { 0.2568, 0.1881, 0.2541, 0.1840, 0.3167, 0.3486, 0.3525, 0.3289, 0.2716, 0.3191, 0.2827, 0.3599, 0.3775, 0.3382, 0.3377, 0.3113, 0.3714, 0.3659, 0.3330, 0.3541},
+      { 0.1997, 0.1945, 0.2841, 0.1762, 0.3145, 0.3130, 0.2895, 0.2784, 0.2704, 0.2827, 0.2428, 0.3779, 0.4188, 0.2518, 0.2568, 0.2573, 0.2930, 0.3188, 0.2505, 0.1908},
+      { 0.3160, 0.3215, 0.3997, 0.3376, 0.4494, 0.3757, 0.3794, 0.3477, 0.3475, 0.3599, 0.3779, 0.4541, 0.5157, 0.4202, 0.4200, 0.4166, 0.4464, 0.4927, 0.3585, 0.3835},
+      { 0.3525, 0.3337, 0.3859, 0.3038, 0.4468, 0.3824, 0.3952, 0.3986, 0.3865, 0.3775, 0.4188, 0.5157, 0.5098, 0.4329, 0.4461, 0.4323, 0.4782, 0.5239, 0.3652, 0.4712},
+      { 0.2195, 0.2045, 0.2823, 0.2239, 0.3355, 0.3820, 0.3870, 0.2933, 0.2811, 0.3382, 0.2518, 0.4202, 0.4329, 0.4639, 0.4516, 0.4166, 0.4157, 0.4451, 0.4177, 0.3782},
+      { 0.2166, 0.2146, 0.2998, 0.2301, 0.3531, 0.3515, 0.3730, 0.2919, 0.2847, 0.3377, 0.2568, 0.4200, 0.4461, 0.4516, 0.4643, 0.4344, 0.4292, 0.4524, 0.4005, 0.3706},
+      { 0.2106, 0.2053, 0.2905, 0.2193, 0.3293, 0.3110, 0.3418, 0.2832, 0.2748, 0.3113, 0.2573, 0.4166, 0.4323, 0.4166, 0.4344, 0.4213, 0.4040, 0.4451, 0.3659, 0.3277},
+      { 0.2456, 0.2092, 0.2865, 0.2144, 0.3757, 0.3563, 0.3755, 0.3308, 0.2927, 0.3714, 0.2930, 0.4464, 0.4782, 0.4157, 0.4292, 0.4040, 0.4714, 0.4655, 0.3881, 0.3869},
+      { 0.2503, 0.2389, 0.3309, 0.2651, 0.3979, 0.3583, 0.3880, 0.3354, 0.3223, 0.3659, 0.3188, 0.4927, 0.5239, 0.4451, 0.4524, 0.4451, 0.4655, 0.5153, 0.3807, 0.4281},
+      { 0.2087, 0.1684, 0.2531, 0.1764, 0.3022, 0.3773, 0.3819, 0.2926, 0.2548, 0.3330, 0.2505, 0.3585, 0.3652, 0.4177, 0.4005, 0.3659, 0.3881, 0.3807, 0.4050, 0.4051},
+      { 0.1810, 0.1457, 0.2590, 0.1868, 0.3492, 0.4392, 0.3562, 0.2795, 0.2494, 0.3541, 0.1908, 0.3835, 0.4712, 0.3782, 0.3706, 0.3277, 0.3869, 0.4281, 0.4051, 0.5583}}},
+  {
+    {
+      { 0.1355, 0.1129, 0.3546, 0.3194, 0.3234, 0.3591, 0.4403, 0.2945, 0.2395, 0.2295, 0.2161, 0.3101, 0.2926, 0.3320, 0.3126, 0.2817, 0.3217, 0.3000, 0.2518, 0.3915},
+      { 0.1129, 0.1474, 0.3819, 0.3395, 0.2833, 0.2211, 0.2040, 0.2328, 0.2474, 0.1712, 0.1852, 0.2942, 0.3110, 0.2300, 0.2429, 0.2422, 0.2412, 0.2471, 0.2132, 0.2336},
+      { 0.3546, 0.3819, 0.2514, 0.1897, 0.2817, 0.2162, 0.1865, 0.2434, 0.2820, 0.1984, 0.2163, 0.3599, 0.3577, 0.2544, 0.2746, 0.2725, 0.2493, 0.2991, 0.2176, 0.2393},
+      { 0.3194, 0.3395, 0.1897, 0.1496, 0.2253, 0.1617, 0.1278, 0.1970, 0.2347, 0.1328, 0.1379, 0.2985, 0.2836, 0.1972, 0.2050, 0.2009, 0.1915, 0.2195, 0.1710, 0.1366},
+      { 0.3234, 0.2833, 0.2817, 0.2253, 0.3219, 0.2642, 0.2788, 0.2628, 0.2582, 0.2153, 0.2369, 0.3834, 0.4007, 0.3100, 0.3108, 0.2913, 0.3073, 0.3417, 0.2279, 0.3067},
+      { 0.3591, 0.2211, 0.2162, 0.1617, 0.2642, 0.2024, 0.1837, 0.2286, 0.2014, 0.1620, 0.1547, 0.2698, 0.2926, 0.2196, 0.2256, 0.2138, 0.2261, 0.2593, 0.1755, 0.2542},
+      { 0.4403, 0.2040, 0.1865, 0.1278, 0.2788, 0.1837, 0.2048, 0.2477, 0.1899, 0.1212, 0.1082, 0.2654, 0.2689, 0.2377, 0.2384, 0.2060, 0.2335, 0.2460, 0.1467, 0.2807},
+      { 0.2945, 0.2328, 0.2434, 0.1970, 0.2628, 0.2286, 0.2477, 0.2785, 0.2506, 0.1967, 0.1998, 0.2881, 0.3145, 0.2454, 0.2428, 0.2326, 0.2632, 0.2706, 0.2014, 0.2733},
+      { 0.2395, 0.2474, 0.2820, 0.2347, 0.2582, 0.2014, 0.1899, 0.2506, 0.2664, 0.1714, 0.2071, 0.3004, 0.3489, 0.2397, 0.2624, 0.2573, 0.2691, 0.2871, 0.2087, 0.2181},
+      { 0.2295, 0.1712, 0.1984, 0.1328, 0.2153, 0.1620, 0.1212, 0.1967, 0.1714, 0.1509, 0.1670, 0.2575, 0.2742, 0.1791, 0.1812, 0.1877, 0.2048, 0.2363, 0.1614, 0.2131},
+      { 0.2161, 0.1852, 0.2163, 0.1379, 0.2369, 0.1547, 0.1082, 0.1998, 0.2071, 0.1670, 0.1900, 0.3121, 0.3283, 0.1739, 0.1937, 0.2071, 0.2268, 0.2624, 0.1650, 0.2019},
+      { 0.3101, 0.2942, 0.3599, 0.2985, 0.3834, 0.2698, 0.2654, 0.2881, 0.3004, 0.2575, 0.3121, 0.4326, 0.4593, 0.3562, 0.3719, 0.3642, 0.3843, 0.4261, 0.2781, 0.3630},
+      { 0.2926, 0.3110, 0.3577, 0.2836, 0.4007, 0.2926, 0.2689, 0.3145, 0.3489, 0.2742, 0.3283, 0.4593, 0.4848, 0.3581, 0.3821, 0.3745, 0.4130, 0.4470, 0.2680, 0.3942},
+      { 0.3320, 0.2300, 0.2544, 0.1972, 0.3100, 0.2196, 0.2377, 0.2454, 0.2397, 0.1791, 0.1739, 0.3562, 0.3581, 0.3205, 0.3321, 0.3018, 0.3080, 0.3454, 0.2165, 0.3320},
+      { 0.3126, 0.2429, 0.2746, 0.2050, 0.3108, 0.2256, 0.2384, 0.2428, 0.2624, 0.1812, 0.1937, 0.3719, 0.3821, 0.3321, 0.3571, 0.3245, 0.3193, 0.3594, 0.2315, 0.3285},
+      { 0.2817, 0.2422, 0.2725, 0.2009, 0.2913, 0.2138, 0.2060, 0.2326, 0.2573, 0.1877, 0.2071, 0.3642, 0.3745, 0.3018, 0.3245, 0.3197, 0.3127, 0.3580, 0.2281, 0.2884},
+      { 0.3217, 0.2412, 0.2493, 0.1915, 0.3073, 0.2261, 0.2335, 0.2632, 0.2691, 0.2048, 0.2268, 0.3843, 0.4130, 0.3080, 0.3193, 0.3127, 0.3705, 0.3798, 0.2374, 0.3375},
+      { 0.3000, 0.2471, 0.2991, 0.2195, 0.3417, 0.2593, 0.2460, 0.2706, 0.2871, 0.2363, 0.2624, 0.4261, 0.4470, 0.3454, 0.3594, 0.3580, 0.3798, 0.4340, 0.2607, 0.3693},
+      { 0.2518, 0.2132, 0.2176, 0.1710, 0.2279, 0.1755, 0.1467, 0.2014, 0.2087, 0.1614, 0.1650, 0.2781, 0.2680, 0.2165, 0.2315, 0.2281, 0.2374, 0.2607, 0.2165, 0.2205},
+      { 0.3915, 0.2336, 0.2393, 0.1366, 0.3067, 0.2542, 0.2807, 0.2733, 0.2181, 0.2131, 0.2019, 0.3630, 0.3942, 0.3320, 0.3285, 0.2884, 0.3375, 0.3693, 0.2205, 0.5087}},
+    {
+      { 0.1267, 0.1197, 0.3690, 0.3196, 0.3001, 0.2299, 0.2040, 0.2402, 0.2638, 0.1975, 0.1793, 0.2937, 0.2885, 0.2130, 0.2145, 0.2146, 0.2297, 0.2411, 0.1994, 0.2748},
+      { 0.1197, 0.1541, 0.3821, 0.3407, 0.3062, 0.3071, 0.3772, 0.2535, 0.2610, 0.2043, 0.2003, 0.3183, 0.3339, 0.3058, 0.2919, 0.2740, 0.2925, 0.2790, 0.2607, 0.3396},
+      { 0.3690, 0.3821, 0.2559, 0.1956, 0.2889, 0.2194, 0.1984, 0.2427, 0.2848, 0.2012, 0.2097, 0.3656, 0.3745, 0.2798, 0.2917, 0.2844, 0.2533, 0.3089, 0.2311, 0.2194},
+      { 0.3196, 0.3407, 0.1956, 0.1645, 0.2281, 0.1754, 0.1456, 0.2016, 0.2430, 0.1357, 0.1414, 0.3116, 0.2938, 0.2304, 0.2402, 0.2219, 0.1990, 0.2315, 0.1827, 0.1431},
+      { 0.3001, 0.3062, 0.2889, 0.2281, 0.3368, 0.2684, 0.2637, 0.2507, 0.2715, 0.2161, 0.2276, 0.3913, 0.4059, 0.3053, 0.3097, 0.2914, 0.3143, 0.3444, 0.2234, 0.3196},
+      { 0.2299, 0.3071, 0.2194, 0.1754, 0.2684, 0.1947, 0.1849, 0.2171, 0.2233, 0.1627, 0.1450, 0.2694, 0.2945, 0.2249, 0.2301, 0.2111, 0.2373, 0.2545, 0.1654, 0.2299},
+      { 0.2040, 0.3772, 0.1984, 0.1456, 0.2637, 0.1849, 0.2277, 0.1990, 0.2378, 0.1299, 0.1155, 0.2696, 0.2547, 0.2670, 0.2644, 0.2159, 0.2417, 0.2502, 0.1367, 0.2529},
+      { 0.2402, 0.2535, 0.2427, 0.2016, 0.2507, 0.2171, 0.1990, 0.2609, 0.2586, 0.1966, 0.1883, 0.2955, 0.3079, 0.2181, 0.2261, 0.2188, 0.2391, 0.2595, 0.1798, 0.2146},
+      { 0.2638, 0.2610, 0.2848, 0.2430, 0.2715, 0.2233, 0.2378, 0.2586, 0.2812, 0.1845, 0.2055, 0.3183, 0.3437, 0.2654, 0.2727, 0.2704, 0.2747, 0.2913, 0.2251, 0.2356},
+      { 0.1975, 0.2043, 0.2012, 0.1357, 0.2161, 0.1627, 0.1299, 0.1966, 0.1845, 0.1622, 0.1551, 0.2646, 0.2803, 0.1813, 0.1913, 0.1988, 0.2168, 0.2477, 0.1597, 0.2102},
+      { 0.1793, 0.2003, 0.2097, 0.1414, 0.2276, 0.1450, 0.1155, 0.1883, 0.2055, 0.1551, 0.1821, 0.3048, 0.3181, 0.1765, 0.1959, 0.1994, 0.2299, 0.2596, 0.1622, 0.2081},
+      { 0.2937, 0.3183, 0.3656, 0.3116, 0.3913, 0.2694, 0.2696, 0.2955, 0.3183, 0.2646, 0.3048, 0.4268, 0.4445, 0.3696, 0.3828, 0.3748, 0.3901, 0.4304, 0.2687, 0.3549},
+      { 0.2885, 0.3339, 0.3745, 0.2938, 0.4059, 0.2945, 0.2547, 0.3079, 0.3437, 0.2803, 0.3181, 0.4445, 0.4845, 0.3588, 0.3885, 0.3839, 0.4171, 0.4556, 0.2752, 0.3809},
+      { 0.2130, 0.3058, 0.2798, 0.2304, 0.3053, 0.2249, 0.2670, 0.2181, 0.2654, 0.1813, 0.1765, 0.3696, 0.3588, 0.3545, 0.3543, 0.3203, 0.3239, 0.3568, 0.2207, 0.3250},
+      { 0.2145, 0.2919, 0.2917, 0.2402, 0.3097, 0.2301, 0.2644, 0.2261, 0.2727, 0.1913, 0.1959, 0.3828, 0.3885, 0.3543, 0.3744, 0.3403, 0.3340, 0.3714, 0.2324, 0.3329},
+      { 0.2146, 0.2740, 0.2844, 0.2219, 0.2914, 0.2111, 0.2159, 0.2188, 0.2704, 0.1988, 0.1994, 0.3748, 0.3839, 0.3203, 0.3403, 0.3332, 0.3194, 0.3666, 0.2275, 0.2920},
+      { 0.2297, 0.2925, 0.2533, 0.1990, 0.3143, 0.2373, 0.2417, 0.2391, 0.2747, 0.2168, 0.2299, 0.3901, 0.4171, 0.3239, 0.3340, 0.3194, 0.3589, 0.3895, 0.2183, 0.3429},
+      { 0.2411, 0.2790, 0.3089, 0.2315, 0.3444, 0.2545, 0.2502, 0.2595, 0.2913, 0.2477, 0.2596, 0.4304, 0.4556, 0.3568, 0.3714, 0.3666, 0.3895, 0.4382, 0.2516, 0.3509},
+      { 0.1994, 0.2607, 0.2311, 0.1827, 0.2234, 0.1654, 0.1367, 0.1798, 0.2251, 0.1597, 0.1622, 0.2687, 0.2752, 0.2207, 0.2324, 0.2275, 0.2183, 0.2516, 0.2288, 0.2019},
+      { 0.2748, 0.3396, 0.2194, 0.1431, 0.3196, 0.2299, 0.2529, 0.2146, 0.2356, 0.2102, 0.2081, 0.3549, 0.3809, 0.3250, 0.3329, 0.2920, 0.3429, 0.3509, 0.2019, 0.4839}},
+    {
+      { 0.1761, 0.1674, 0.3819, 0.3646, 0.3314, 0.2302, 0.1865, 0.2735, 0.2834, 0.2119, 0.2137, 0.3234, 0.3291, 0.2272, 0.2358, 0.2310, 0.2452, 0.2589, 0.2144, 0.2376},
+      { 0.1674, 0.1913, 0.4002, 0.3945, 0.3265, 0.2226, 0.1984, 0.2528, 0.2830, 0.1818, 0.2061, 0.3431, 0.3586, 0.2636, 0.2697, 0.2724, 0.2597, 0.2834, 0.2271, 0.2209},
+      { 0.3819, 0.4002, 0.3234, 0.2547, 0.3583, 0.4011, 0.4757, 0.3698, 0.3534, 0.3104, 0.3237, 0.4205, 0.4372, 0.3951, 0.3948, 0.3797, 0.3980, 0.3915, 0.3410, 0.4255},
+      { 0.3646, 0.3945, 0.2547, 0.2360, 0.3018, 0.2866, 0.2770, 0.2866, 0.3095, 0.2243, 0.2281, 0.3787, 0.3699, 0.3115, 0.3150, 0.3057, 0.2983, 0.3147, 0.2611, 0.2808},
+      { 0.3314, 0.3265, 0.3583, 0.3018, 0.3919, 0.3334, 0.3334, 0.3265, 0.3302, 0.2840, 0.3043, 0.4425, 0.4564, 0.3657, 0.3596, 0.3474, 0.3824, 0.3903, 0.2969, 0.3641},
+      { 0.2302, 0.2226, 0.4011, 0.2866, 0.3334, 0.2609, 0.2414, 0.2878, 0.2790, 0.2300, 0.2257, 0.3403, 0.3542, 0.2850, 0.2889, 0.2763, 0.3068, 0.3189, 0.2403, 0.3042},
+      { 0.1865, 0.1984, 0.4757, 0.2770, 0.3334, 0.2414, 0.2923, 0.2707, 0.2793, 0.1981, 0.2035, 0.3286, 0.3278, 0.3172, 0.3116, 0.2791, 0.2972, 0.3107, 0.2171, 0.3112},
+      { 0.2735, 0.2528, 0.3698, 0.2866, 0.3265, 0.2878, 0.2707, 0.3322, 0.3144, 0.2600, 0.2608, 0.3511, 0.3771, 0.2848, 0.2980, 0.2798, 0.3109, 0.3299, 0.2491, 0.2963},
+      { 0.2834, 0.2830, 0.3534, 0.3095, 0.3302, 0.2790, 0.2793, 0.3144, 0.3292, 0.2422, 0.2685, 0.3640, 0.4109, 0.3134, 0.3263, 0.3241, 0.3383, 0.3551, 0.2726, 0.3042},
+      { 0.2119, 0.1818, 0.3104, 0.2243, 0.2840, 0.2300, 0.1981, 0.2600, 0.2422, 0.2334, 0.2394, 0.3388, 0.3442, 0.2435, 0.2532, 0.2504, 0.2847, 0.3202, 0.2266, 0.2772},
+      { 0.2137, 0.2061, 0.3237, 0.2281, 0.3043, 0.2257, 0.2035, 0.2608, 0.2685, 0.2394, 0.2608, 0.3772, 0.4082, 0.2527, 0.2711, 0.2783, 0.3094, 0.3323, 0.2412, 0.2836},
+      { 0.3234, 0.3431, 0.4205, 0.3787, 0.4425, 0.3403, 0.3286, 0.3511, 0.3640, 0.3388, 0.3772, 0.4678, 0.5071, 0.4160, 0.4280, 0.4268, 0.4371, 0.4749, 0.3435, 0.4311},
+      { 0.3291, 0.3586, 0.4372, 0.3699, 0.4564, 0.3542, 0.3278, 0.3771, 0.4109, 0.3442, 0.4082, 0.5071, 0.5281, 0.4200, 0.4503, 0.4392, 0.4822, 0.5018, 0.3470, 0.4502},
+      { 0.2272, 0.2636, 0.3951, 0.3115, 0.3657, 0.2850, 0.3172, 0.2848, 0.3134, 0.2435, 0.2527, 0.4160, 0.4200, 0.3944, 0.3951, 0.3710, 0.3686, 0.3997, 0.2944, 0.3673},
+      { 0.2358, 0.2697, 0.3948, 0.3150, 0.3596, 0.2889, 0.3116, 0.2980, 0.3263, 0.2532, 0.2711, 0.4280, 0.4503, 0.3951, 0.4186, 0.3911, 0.3891, 0.4135, 0.3081, 0.3821},
+      { 0.2310, 0.2724, 0.3797, 0.3057, 0.3474, 0.2763, 0.2791, 0.2798, 0.3241, 0.2504, 0.2783, 0.4268, 0.4392, 0.3710, 0.3911, 0.3873, 0.3769, 0.4142, 0.3052, 0.3514},
+      { 0.2452, 0.2597, 0.3980, 0.2983, 0.3824, 0.3068, 0.2972, 0.3109, 0.3383, 0.2847, 0.3094, 0.4371, 0.4822, 0.3686, 0.3891, 0.3769, 0.4292, 0.4495, 0.3074, 0.3980},
+      { 0.2589, 0.2834, 0.3915, 0.3147, 0.3903, 0.3189, 0.3107, 0.3299, 0.3551, 0.3202, 0.3323, 0.4749, 0.5018, 0.3997, 0.4135, 0.4142, 0.4495, 0.4865, 0.3330, 0.4126},
+      { 0.2144, 0.2271, 0.3410, 0.2611, 0.2969, 0.2403, 0.2171, 0.2491, 0.2726, 0.2266, 0.2412, 0.3435, 0.3470, 0.2944, 0.3081, 0.3052, 0.3074, 0.3330, 0.2843, 0.2905},
+      { 0.2376, 0.2209, 0.4255, 0.2808, 0.3641, 0.3042, 0.3112, 0.2963, 0.3042, 0.2772, 0.2836, 0.4311, 0.4502, 0.3673, 0.3821, 0.3514, 0.3980, 0.4126, 0.2905, 0.4984}},
+    {
+      { 0.1113, 0.1165, 0.3722, 0.3220, 0.2936, 0.1699, 0.1278, 0.2259, 0.2467, 0.1513, 0.1601, 0.2679, 0.2593, 0.1669, 0.1739, 0.1746, 0.1800, 0.1963, 0.1604, 0.1778},
+      { 0.1165, 0.1557, 0.4082, 0.3541, 0.2895, 0.1692, 0.1456, 0.2129, 0.2497, 0.1248, 0.1576, 0.2877, 0.2967, 0.2157, 0.2217, 0.2209, 0.2016, 0.2246, 0.1840, 0.1591},
+      { 0.3722, 0.4082, 0.2845, 0.2232, 0.3124, 0.2818, 0.2770, 0.2848, 0.3140, 0.2408, 0.2501, 0.3747, 0.3780, 0.3226, 0.3358, 0.3240, 0.3047, 0.3335, 0.2708, 0.2937},
+      { 0.3220, 0.3541, 0.2232, 0.1889, 0.2794, 0.3471, 0.4107, 0.2806, 0.2639, 0.2343, 0.2060, 0.3455, 0.3140, 0.3461, 0.3522, 0.3099, 0.3304, 0.3040, 0.2828, 0.3552},
+      { 0.2936, 0.2895, 0.3124, 0.2794, 0.3498, 0.2717, 0.2652, 0.2715, 0.2850, 0.2153, 0.2374, 0.3862, 0.3951, 0.3105, 0.3168, 0.2930, 0.2976, 0.3397, 0.2279, 0.2921},
+      { 0.1699, 0.1692, 0.2818, 0.3471, 0.2717, 0.1988, 0.1918, 0.2311, 0.2250, 0.1471, 0.1591, 0.2720, 0.2906, 0.2310, 0.2356, 0.2225, 0.2338, 0.2541, 0.1704, 0.2384},
+      { 0.1278, 0.1456, 0.2770, 0.4107, 0.2652, 0.1918, 0.2452, 0.2092, 0.2186, 0.1103, 0.1344, 0.2753, 0.2619, 0.2761, 0.2739, 0.2299, 0.2526, 0.2696, 0.1477, 0.2546},
+      { 0.2259, 0.2129, 0.2848, 0.2806, 0.2715, 0.2311, 0.2092, 0.2801, 0.2630, 0.1909, 0.1939, 0.2962, 0.3038, 0.2331, 0.2442, 0.2255, 0.2469, 0.2747, 0.1941, 0.2301},
+      { 0.2467, 0.2497, 0.3140, 0.2639, 0.2850, 0.2250, 0.2186, 0.2630, 0.2901, 0.1865, 0.2046, 0.3100, 0.3437, 0.2592, 0.2761, 0.2735, 0.2673, 0.2899, 0.2214, 0.2272},
+      { 0.1513, 0.1248, 0.2408, 0.2343, 0.2153, 0.1471, 0.1103, 0.1909, 0.1865, 0.1601, 0.1657, 0.2574, 0.2823, 0.1742, 0.1841, 0.1935, 0.2010, 0.2382, 0.1578, 0.1927},
+      { 0.1601, 0.1576, 0.2501, 0.2060, 0.2374, 0.1591, 0.1344, 0.1939, 0.2046, 0.1657, 0.2071, 0.3092, 0.3107, 0.1822, 0.2046, 0.2109, 0.2260, 0.2605, 0.1729, 0.2121},
+      { 0.2679, 0.2877, 0.3747, 0.3455, 0.3862, 0.2720, 0.2753, 0.2962, 0.3100, 0.2574, 0.3092, 0.4125, 0.4392, 0.3660, 0.3793, 0.3698, 0.3813, 0.4225, 0.2756, 0.3695},
+      { 0.2593, 0.2967, 0.3780, 0.3140, 0.3951, 0.2906, 0.2619, 0.3038, 0.3437, 0.2823, 0.3107, 0.4392, 0.4886, 0.3502, 0.3783, 0.3742, 0.3991, 0.4474, 0.2727, 0.4087},
+      { 0.1669, 0.2157, 0.3226, 0.3461, 0.3105, 0.2310, 0.2761, 0.2331, 0.2592, 0.1742, 0.1822, 0.3660, 0.3502, 0.3490, 0.3447, 0.3162, 0.3199, 0.3506, 0.2269, 0.3042},
+      { 0.1739, 0.2217, 0.3358, 0.3522, 0.3168, 0.2356, 0.2739, 0.2442, 0.2761, 0.1841, 0.2046, 0.3793, 0.3783, 0.3447, 0.3678, 0.3380, 0.3219, 0.3658, 0.2436, 0.3154},
+      { 0.1746, 0.2209, 0.3240, 0.3099, 0.2930, 0.2225, 0.2299, 0.2255, 0.2735, 0.1935, 0.2109, 0.3698, 0.3742, 0.3162, 0.3380, 0.3343, 0.3165, 0.3603, 0.2423, 0.2931},
+      { 0.1800, 0.2016, 0.3047, 0.3304, 0.2976, 0.2338, 0.2526, 0.2469, 0.2673, 0.2010, 0.2260, 0.3813, 0.3991, 0.3199, 0.3219, 0.3165, 0.3682, 0.3850, 0.2286, 0.3307},
+      { 0.1963, 0.2246, 0.3335, 0.3040, 0.3397, 0.2541, 0.2696, 0.2747, 0.2899, 0.2382, 0.2605, 0.4225, 0.4474, 0.3506, 0.3658, 0.3603, 0.3850, 0.4374, 0.2612, 0.3535},
+      { 0.1604, 0.1840, 0.2708, 0.2828, 0.2279, 0.1704, 0.1477, 0.1941, 0.2214, 0.1578, 0.1729, 0.2756, 0.2727, 0.2269, 0.2436, 0.2423, 0.2286, 0.2612, 0.2342, 0.2059},
+      { 0.1778, 0.1591, 0.2937, 0.3552, 0.2921, 0.2384, 0.2546, 0.2301, 0.2272, 0.1927, 0.2121, 0.3695, 0.4087, 0.3042, 0.3154, 0.2931, 0.3307, 0.3535, 0.2059, 0.4801}},
+    {
+      { 0.1797, 0.1647, 0.4429, 0.3796, 0.2838, 0.2907, 0.2788, 0.2973, 0.2939, 0.2381, 0.2469, 0.3315, 0.3247, 0.2830, 0.2834, 0.2671, 0.2995, 0.2961, 0.2441, 0.3083},
+      { 0.1647, 0.1876, 0.4587, 0.4084, 0.2433, 0.2676, 0.2637, 0.2703, 0.2944, 0.2150, 0.2355, 0.3513, 0.3885, 0.3009, 0.3115, 0.2977, 0.2920, 0.3100, 0.2568, 0.2756},
+      { 0.4429, 0.4587, 0.3273, 0.2610, 0.2492, 0.3318, 0.3334, 0.3387, 0.3625, 0.2938, 0.3041, 0.4160, 0.4332, 0.3769, 0.3896, 0.3748, 0.3665, 0.3875, 0.3246, 0.3633},
+      { 0.3796, 0.4084, 0.2610, 0.2292, 0.1879, 0.2741, 0.2652, 0.2778, 0.3010, 0.2264, 0.2141, 0.3771, 0.3664, 0.3209, 0.3278, 0.3024, 0.2938, 0.3171, 0.2605, 0.2884},
+      { 0.2838, 0.2433, 0.2492, 0.1879, 0.3810, 0.4920, 0.5830, 0.3580, 0.2886, 0.3367, 0.3161, 0.4022, 0.4435, 0.4207, 0.4038, 0.3674, 0.4430, 0.4152, 0.3702, 0.5316},
+      { 0.2907, 0.2676, 0.3318, 0.2741, 0.4920, 0.3241, 0.3202, 0.3556, 0.3418, 0.2650, 0.2704, 0.3870, 0.4168, 0.3404, 0.3429, 0.3273, 0.3679, 0.3773, 0.2952, 0.3758},
+      { 0.2788, 0.2637, 0.3334, 0.2652, 0.5830, 0.3202, 0.3374, 0.4100, 0.3818, 0.2290, 0.2482, 0.4023, 0.3858, 0.3691, 0.3831, 0.3439, 0.3882, 0.3883, 0.2847, 0.4055},
+      { 0.2973, 0.2703, 0.3387, 0.2778, 0.3580, 0.3556, 0.4100, 0.3834, 0.3406, 0.3053, 0.3167, 0.3953, 0.3944, 0.3589, 0.3647, 0.3377, 0.3798, 0.3850, 0.3152, 0.4099},
+      { 0.2939, 0.2944, 0.3625, 0.3010, 0.2886, 0.3418, 0.3818, 0.3406, 0.3454, 0.2904, 0.3029, 0.3855, 0.4252, 0.3601, 0.3733, 0.3583, 0.3958, 0.3911, 0.3184, 0.3877},
+      { 0.2381, 0.2150, 0.2938, 0.2264, 0.3367, 0.2650, 0.2290, 0.3053, 0.2904, 0.2584, 0.2593, 0.3556, 0.3780, 0.2903, 0.3063, 0.3084, 0.3397, 0.3593, 0.2728, 0.3381},
+      { 0.2469, 0.2355, 0.3041, 0.2141, 0.3161, 0.2704, 0.2482, 0.3167, 0.3029, 0.2593, 0.2887, 0.3850, 0.4120, 0.2886, 0.3171, 0.3132, 0.3419, 0.3645, 0.2659, 0.3417},
+      { 0.3315, 0.3513, 0.4160, 0.3771, 0.4022, 0.3870, 0.4023, 0.3953, 0.3855, 0.3556, 0.3850, 0.4757, 0.4861, 0.4625, 0.4837, 0.4655, 0.4832, 0.4933, 0.3963, 0.4884},
+      { 0.3247, 0.3885, 0.4332, 0.3664, 0.4435, 0.4168, 0.3858, 0.3944, 0.4252, 0.3780, 0.4120, 0.4861, 0.5621, 0.4521, 0.4715, 0.4670, 0.5238, 0.5150, 0.4084, 0.5065},
+      { 0.2830, 0.3009, 0.3769, 0.3209, 0.4207, 0.3404, 0.3691, 0.3589, 0.3601, 0.2903, 0.2886, 0.4625, 0.4521, 0.4740, 0.4866, 0.4488, 0.4473, 0.4801, 0.3773, 0.4612},
+      { 0.2834, 0.3115, 0.3896, 0.3278, 0.4038, 0.3429, 0.3831, 0.3647, 0.3733, 0.3063, 0.3171, 0.4837, 0.4715, 0.4866, 0.5122, 0.4755, 0.4634, 0.4887, 0.3852, 0.4586},
+      { 0.2671, 0.2977, 0.3748, 0.3024, 0.3674, 0.3273, 0.3439, 0.3377, 0.3583, 0.3084, 0.3132, 0.4655, 0.4670, 0.4488, 0.4755, 0.4632, 0.4467, 0.4793, 0.3735, 0.4282},
+      { 0.2995, 0.2920, 0.3665, 0.2938, 0.4430, 0.3679, 0.3882, 0.3798, 0.3958, 0.3397, 0.3419, 0.4832, 0.5238, 0.4473, 0.4634, 0.4467, 0.5090, 0.5054, 0.3789, 0.4915},
+      { 0.2961, 0.3100, 0.3875, 0.3171, 0.4152, 0.3773, 0.3883, 0.3850, 0.3911, 0.3593, 0.3645, 0.4933, 0.5150, 0.4801, 0.4887, 0.4793, 0.5054, 0.5241, 0.4164, 0.4942},
+      { 0.2441, 0.2568, 0.3246, 0.2605, 0.3702, 0.2952, 0.2847, 0.3152, 0.3184, 0.2728, 0.2659, 0.3963, 0.4084, 0.3773, 0.3852, 0.3735, 0.3789, 0.4164, 0.3398, 0.3770},
+      { 0.3083, 0.2756, 0.3633, 0.2884, 0.5316, 0.3758, 0.4055, 0.4099, 0.3877, 0.3381, 0.3417, 0.4884, 0.5065, 0.4612, 0.4586, 0.4282, 0.4915, 0.4942, 0.3770, 0.5683}},
+    {
+      { 0.0972, 0.0955, 0.3606, 0.3075, 0.2793, 0.1846, 0.1837, 0.2405, 0.2346, 0.1857, 0.1720, 0.2900, 0.2883, 0.2026, 0.2097, 0.2012, 0.2266, 0.2414, 0.1747, 0.2282},
+      { 0.0955, 0.1376, 0.4053, 0.3622, 0.2874, 0.1665, 0.1849, 0.2160, 0.2454, 0.1623, 0.1603, 0.3002, 0.3156, 0.2387, 0.2403, 0.2285, 0.2252, 0.2484, 0.1812, 0.2016},
+      { 0.3606, 0.4053, 0.2685, 0.2017, 0.3072, 0.2451, 0.2414, 0.2657, 0.3025, 0.2249, 0.2316, 0.3860, 0.3968, 0.3014, 0.3151, 0.3011, 0.2907, 0.3370, 0.2478, 0.2839},
+      { 0.3075, 0.3622, 0.2017, 0.1664, 0.2413, 0.1859, 0.1918, 0.2083, 0.2553, 0.1523, 0.1462, 0.3243, 0.3103, 0.2424, 0.2406, 0.2282, 0.2180, 0.2555, 0.1846, 0.2011},
+      { 0.2793, 0.2874, 0.3072, 0.2413, 0.3682, 0.3103, 0.3202, 0.3003, 0.2864, 0.2776, 0.2649, 0.4217, 0.4478, 0.3412, 0.3495, 0.3255, 0.3543, 0.3785, 0.2770, 0.3653},
+      { 0.1846, 0.1665, 0.2451, 0.1859, 0.3103, 0.3317, 0.4074, 0.2895, 0.2405, 0.2546, 0.2186, 0.3127, 0.3290, 0.3233, 0.3100, 0.2770, 0.3286, 0.3155, 0.2908, 0.4006},
+      { 0.1837, 0.1849, 0.2414, 0.1918, 0.3202, 0.4074, 0.3641, 0.2858, 0.2586, 0.2601, 0.2151, 0.3209, 0.3318, 0.3420, 0.3286, 0.2904, 0.3302, 0.3310, 0.3229, 0.4059},
+      { 0.2405, 0.2160, 0.2657, 0.2083, 0.3003, 0.2895, 0.2858, 0.3089, 0.2755, 0.2647, 0.2331, 0.3327, 0.3538, 0.2878, 0.2797, 0.2654, 0.3194, 0.3135, 0.2676, 0.3364},
+      { 0.2346, 0.2454, 0.3025, 0.2553, 0.2864, 0.2405, 0.2586, 0.2755, 0.2908, 0.2302, 0.2234, 0.3383, 0.3783, 0.2883, 0.3008, 0.2911, 0.3038, 0.3298, 0.2439, 0.2891},
+      { 0.1857, 0.1623, 0.2249, 0.1523, 0.2776, 0.2546, 0.2601, 0.2647, 0.2302, 0.2710, 0.2083, 0.3300, 0.3468, 0.2975, 0.3014, 0.2929, 0.3260, 0.3346, 0.2639, 0.3515},
+      { 0.1720, 0.1603, 0.2316, 0.1462, 0.2649, 0.2186, 0.2151, 0.2331, 0.2234, 0.2083, 0.2413, 0.3439, 0.3629, 0.2447, 0.2567, 0.2555, 0.3011, 0.3182, 0.2292, 0.2842},
+      { 0.2900, 0.3002, 0.3860, 0.3243, 0.4217, 0.3127, 0.3209, 0.3327, 0.3383, 0.3300, 0.3439, 0.4495, 0.4893, 0.4083, 0.4237, 0.4166, 0.4305, 0.4758, 0.3401, 0.4224},
+      { 0.2883, 0.3156, 0.3968, 0.3103, 0.4478, 0.3290, 0.3318, 0.3538, 0.3783, 0.3468, 0.3629, 0.4893, 0.5513, 0.4162, 0.4368, 0.4175, 0.4811, 0.5032, 0.3438, 0.4487},
+      { 0.2026, 0.2387, 0.3014, 0.2424, 0.3412, 0.3233, 0.3420, 0.2878, 0.2883, 0.2975, 0.2447, 0.4083, 0.4162, 0.4312, 0.4268, 0.3911, 0.4021, 0.4305, 0.3847, 0.4333},
+      { 0.2097, 0.2403, 0.3151, 0.2406, 0.3495, 0.3100, 0.3286, 0.2797, 0.3008, 0.3014, 0.2567, 0.4237, 0.4368, 0.4268, 0.4385, 0.4069, 0.4136, 0.4376, 0.3671, 0.4269},
+      { 0.2012, 0.2285, 0.3011, 0.2282, 0.3255, 0.2770, 0.2904, 0.2654, 0.2911, 0.2929, 0.2555, 0.4166, 0.4175, 0.3911, 0.4069, 0.4018, 0.3965, 0.4327, 0.3379, 0.3867},
+      { 0.2266, 0.2252, 0.2907, 0.2180, 0.3543, 0.3286, 0.3302, 0.3194, 0.3038, 0.3260, 0.3011, 0.4305, 0.4811, 0.4021, 0.4136, 0.3965, 0.4543, 0.4663, 0.3566, 0.4508},
+      { 0.2414, 0.2484, 0.3370, 0.2555, 0.3785, 0.3155, 0.3310, 0.3135, 0.3298, 0.3346, 0.3182, 0.4758, 0.5032, 0.4305, 0.4376, 0.4327, 0.4663, 0.4970, 0.3596, 0.4555},
+      { 0.1747, 0.1812, 0.2478, 0.1846, 0.2770, 0.2908, 0.3229, 0.2676, 0.2439, 0.2639, 0.2292, 0.3401, 0.3438, 0.3847, 0.3671, 0.3379, 0.3566, 0.3596, 0.3555, 0.4054},
+      { 0.2282, 0.2016, 0.2839, 0.2011, 0.3653, 0.4006, 0.4059, 0.3364, 0.2891, 0.3515, 0.2842, 0.4224, 0.4487, 0.4333, 0.4269, 0.3867, 0.4508, 0.4555, 0.4054, 0.6257}},
+    {
+      { 0.1410, 0.1405, 0.4151, 0.3593, 0.3366, 0.2277, 0.2048, 0.2679, 0.2769, 0.2047, 0.2001, 0.3238, 0.3014, 0.2371, 0.2383, 0.2345, 0.2467, 0.2575, 0.2069, 0.2472},
+      { 0.1405, 0.1810, 0.4792, 0.4423, 0.3501, 0.2359, 0.2277, 0.2611, 0.2935, 0.1960, 0.1899, 0.3522, 0.3620, 0.2947, 0.2934, 0.2788, 0.2600, 0.2901, 0.2258, 0.2485},
+      { 0.4151, 0.4792, 0.3147, 0.2439, 0.3519, 0.2952, 0.2923, 0.3068, 0.3519, 0.2562, 0.2492, 0.4309, 0.4583, 0.3550, 0.3587, 0.3359, 0.3198, 0.3679, 0.2818, 0.3256},
+      { 0.3593, 0.4423, 0.2439, 0.2174, 0.2907, 0.2490, 0.2452, 0.2465, 0.3105, 0.1834, 0.1716, 0.3750, 0.3598, 0.3053, 0.3039, 0.2713, 0.2625, 0.2957, 0.2194, 0.2526},
+      { 0.3366, 0.3501, 0.3519, 0.2907, 0.4096, 0.3495, 0.3374, 0.3267, 0.3358, 0.3031, 0.2743, 0.4700, 0.4704, 0.3704, 0.3864, 0.3543, 0.3859, 0.4059, 0.3016, 0.3862},
+      { 0.2277, 0.2359, 0.2952, 0.2490, 0.3495, 0.3297, 0.3641, 0.3060, 0.2843, 0.2675, 0.2435, 0.3479, 0.3718, 0.3484, 0.3516, 0.3135, 0.3573, 0.3514, 0.3024, 0.3935},
+      { 0.2048, 0.2277, 0.2923, 0.2452, 0.3374, 0.3641, 0.4691, 0.3187, 0.2973, 0.2357, 0.2205, 0.3399, 0.3423, 0.3977, 0.3763, 0.3405, 0.3710, 0.3548, 0.3258, 0.4503},
+      { 0.2679, 0.2611, 0.3068, 0.2465, 0.3267, 0.3060, 0.3187, 0.3662, 0.3172, 0.2764, 0.2514, 0.3681, 0.3738, 0.3186, 0.3202, 0.2999, 0.3488, 0.3424, 0.2814, 0.3586},
+      { 0.2769, 0.2935, 0.3519, 0.3105, 0.3358, 0.2843, 0.2973, 0.3172, 0.3442, 0.2511, 0.2479, 0.3733, 0.4191, 0.3287, 0.3429, 0.3225, 0.3526, 0.3520, 0.2790, 0.3193},
+      { 0.2047, 0.1960, 0.2562, 0.1834, 0.3031, 0.2675, 0.2357, 0.2764, 0.2511, 0.2782, 0.2451, 0.3616, 0.3653, 0.2979, 0.3121, 0.3056, 0.3463, 0.3622, 0.2750, 0.3825},
+      { 0.2001, 0.1899, 0.2492, 0.1716, 0.2743, 0.2435, 0.2205, 0.2514, 0.2479, 0.2451, 0.2511, 0.3575, 0.3703, 0.2645, 0.2843, 0.2795, 0.3207, 0.3323, 0.2444, 0.3260},
+      { 0.3238, 0.3522, 0.4309, 0.3750, 0.4700, 0.3479, 0.3399, 0.3681, 0.3733, 0.3616, 0.3575, 0.4717, 0.5054, 0.4323, 0.4521, 0.4405, 0.4524, 0.4932, 0.3730, 0.4564},
+      { 0.3014, 0.3620, 0.4583, 0.3598, 0.4704, 0.3718, 0.3423, 0.3738, 0.4191, 0.3653, 0.3703, 0.5054, 0.5639, 0.4327, 0.4604, 0.4444, 0.4938, 0.5060, 0.3701, 0.4300},
+      { 0.2371, 0.2947, 0.3550, 0.3053, 0.3704, 0.3484, 0.3977, 0.3186, 0.3287, 0.2979, 0.2645, 0.4323, 0.4327, 0.4737, 0.4634, 0.4274, 0.4342, 0.4482, 0.3990, 0.4734},
+      { 0.2383, 0.2934, 0.3587, 0.3039, 0.3864, 0.3516, 0.3763, 0.3202, 0.3429, 0.3121, 0.2843, 0.4521, 0.4604, 0.4634, 0.4765, 0.4437, 0.4392, 0.4603, 0.3989, 0.4676},
+      { 0.2345, 0.2788, 0.3359, 0.2713, 0.3543, 0.3135, 0.3405, 0.2999, 0.3225, 0.3056, 0.2795, 0.4405, 0.4444, 0.4274, 0.4437, 0.4360, 0.4312, 0.4689, 0.3725, 0.4164},
+      { 0.2467, 0.2600, 0.3198, 0.2625, 0.3859, 0.3573, 0.3710, 0.3488, 0.3526, 0.3463, 0.3207, 0.4524, 0.4938, 0.4342, 0.4392, 0.4312, 0.4955, 0.4830, 0.3883, 0.4926},
+      { 0.2575, 0.2901, 0.3679, 0.2957, 0.4059, 0.3514, 0.3548, 0.3424, 0.3520, 0.3622, 0.3323, 0.4932, 0.5060, 0.4482, 0.4603, 0.4689, 0.4830, 0.5113, 0.3946, 0.4800},
+      { 0.2069, 0.2258, 0.2818, 0.2194, 0.3016, 0.3024, 0.3258, 0.2814, 0.2790, 0.2750, 0.2444, 0.3730, 0.3701, 0.3990, 0.3989, 0.3725, 0.3883, 0.3946, 0.3618, 0.4096},
+      { 0.2472, 0.2485, 0.3256, 0.2526, 0.3862, 0.3935, 0.4503, 0.3586, 0.3193, 0.3825, 0.3260, 0.4564, 0.4300, 0.4734, 0.4676, 0.4164, 0.4926, 0.4800, 0.4096, 0.6347}},
+    {
+      { 0.1448, 0.1411, 0.3876, 0.3425, 0.3035, 0.2490, 0.2477, 0.2372, 0.2656, 0.1975, 0.2029, 0.2919, 0.2852, 0.2312, 0.2338, 0.2209, 0.2566, 0.2634, 0.2154, 0.2604},
+      { 0.1411, 0.1812, 0.4213, 0.3818, 0.3003, 0.2236, 0.1990, 0.2165, 0.2764, 0.1739, 0.2090, 0.3218, 0.3298, 0.2478, 0.2554, 0.2550, 0.2504, 0.2685, 0.2264, 0.2190},
+      { 0.3876, 0.4213, 0.3025, 0.2374, 0.3147, 0.2881, 0.2707, 0.2778, 0.3244, 0.2511, 0.2602, 0.3963, 0.4104, 0.3181, 0.3359, 0.3306, 0.3162, 0.3564, 0.2826, 0.3060},
+      { 0.3425, 0.3818, 0.2374, 0.2031, 0.2638, 0.2324, 0.2092, 0.2290, 0.2892, 0.1934, 0.1907, 0.3377, 0.3205, 0.2672, 0.2660, 0.2580, 0.2499, 0.2845, 0.2311, 0.2112},
+      { 0.3035, 0.3003, 0.3147, 0.2638, 0.3999, 0.3549, 0.4100, 0.3422, 0.3171, 0.2734, 0.3072, 0.4281, 0.4646, 0.3847, 0.3787, 0.3701, 0.3896, 0.4066, 0.3267, 0.4034},
+      { 0.2490, 0.2236, 0.2881, 0.2324, 0.3549, 0.2852, 0.2858, 0.3876, 0.2822, 0.2225, 0.2320, 0.3389, 0.3558, 0.3106, 0.3222, 0.3014, 0.3430, 0.3481, 0.2759, 0.3515},
+      { 0.2477, 0.1990, 0.2707, 0.2092, 0.4100, 0.2858, 0.3187, 0.4930, 0.2780, 0.1831, 0.1983, 0.3440, 0.3489, 0.3486, 0.3518, 0.3236, 0.3425, 0.3563, 0.2691, 0.4437},
+      { 0.2372, 0.2165, 0.2778, 0.2290, 0.3422, 0.3876, 0.4930, 0.3893, 0.2848, 0.2698, 0.2707, 0.3446, 0.3417, 0.3765, 0.3692, 0.3265, 0.3892, 0.3651, 0.3137, 0.4648},
+      { 0.2656, 0.2764, 0.3244, 0.2892, 0.3171, 0.2822, 0.2780, 0.2848, 0.3201, 0.2311, 0.2584, 0.3567, 0.3878, 0.3078, 0.3224, 0.3169, 0.3385, 0.3459, 0.2778, 0.2946},
+      { 0.1975, 0.1739, 0.2511, 0.1934, 0.2734, 0.2225, 0.1831, 0.2698, 0.2311, 0.2133, 0.2232, 0.2995, 0.3086, 0.2458, 0.2545, 0.2476, 0.2768, 0.3031, 0.2301, 0.3023},
+      { 0.2029, 0.2090, 0.2602, 0.1907, 0.3072, 0.2320, 0.1983, 0.2707, 0.2584, 0.2232, 0.2680, 0.3630, 0.3835, 0.2614, 0.2765, 0.2796, 0.3155, 0.3366, 0.2396, 0.2909},
+      { 0.2919, 0.3218, 0.3963, 0.3377, 0.4281, 0.3389, 0.3440, 0.3446, 0.3567, 0.2995, 0.3630, 0.4570, 0.4962, 0.4226, 0.4442, 0.4344, 0.4585, 0.4838, 0.3631, 0.4455},
+      { 0.2852, 0.3298, 0.4104, 0.3205, 0.4646, 0.3558, 0.3489, 0.3417, 0.3878, 0.3086, 0.3835, 0.4962, 0.5537, 0.4092, 0.4528, 0.4269, 0.4756, 0.4918, 0.3525, 0.4562},
+      { 0.2312, 0.2478, 0.3181, 0.2672, 0.3847, 0.3106, 0.3486, 0.3765, 0.3078, 0.2458, 0.2614, 0.4226, 0.4092, 0.4431, 0.4418, 0.4090, 0.4148, 0.4423, 0.3511, 0.4546},
+      { 0.2338, 0.2554, 0.3359, 0.2660, 0.3787, 0.3222, 0.3518, 0.3692, 0.3224, 0.2545, 0.2765, 0.4442, 0.4528, 0.4418, 0.4612, 0.4326, 0.4255, 0.4615, 0.3608, 0.4596},
+      { 0.2209, 0.2550, 0.3306, 0.2580, 0.3701, 0.3014, 0.3236, 0.3265, 0.3169, 0.2476, 0.2796, 0.4344, 0.4269, 0.4090, 0.4326, 0.4245, 0.4138, 0.4507, 0.3468, 0.4122},
+      { 0.2566, 0.2504, 0.3162, 0.2499, 0.3896, 0.3430, 0.3425, 0.3892, 0.3385, 0.2768, 0.3155, 0.4585, 0.4756, 0.4148, 0.4255, 0.4138, 0.4620, 0.4949, 0.3493, 0.4552},
+      { 0.2634, 0.2685, 0.3564, 0.2845, 0.4066, 0.3481, 0.3563, 0.3651, 0.3459, 0.3031, 0.3366, 0.4838, 0.4918, 0.4423, 0.4615, 0.4507, 0.4949, 0.5074, 0.3800, 0.4626},
+      { 0.2154, 0.2264, 0.2826, 0.2311, 0.3267, 0.2759, 0.2691, 0.3137, 0.2778, 0.2301, 0.2396, 0.3631, 0.3525, 0.3511, 0.3608, 0.3468, 0.3493, 0.3800, 0.3180, 0.3633},
+      { 0.2604, 0.2190, 0.3060, 0.2112, 0.4034, 0.3515, 0.4437, 0.4648, 0.2946, 0.3023, 0.2909, 0.4455, 0.4562, 0.4546, 0.4596, 0.4122, 0.4552, 0.4626, 0.3633, 0.5907}},
+    {
+      { 0.1532, 0.1559, 0.4089, 0.3630, 0.3180, 0.2295, 0.1899, 0.2694, 0.2655, 0.2057, 0.2048, 0.3147, 0.2979, 0.2247, 0.2301, 0.2281, 0.2503, 0.2576, 0.2103, 0.2360},
+      { 0.1559, 0.1870, 0.4349, 0.3966, 0.3227, 0.2398, 0.2378, 0.2526, 0.2567, 0.1923, 0.2081, 0.3317, 0.3430, 0.2669, 0.2708, 0.2727, 0.2658, 0.2846, 0.2378, 0.2384},
+      { 0.4089, 0.4349, 0.2907, 0.2307, 0.3218, 0.2905, 0.2793, 0.3035, 0.3084, 0.2593, 0.2648, 0.4043, 0.4080, 0.3259, 0.3390, 0.3342, 0.3231, 0.3646, 0.2846, 0.3015},
+      { 0.3630, 0.3966, 0.2307, 0.1972, 0.2657, 0.2403, 0.2186, 0.2471, 0.2500, 0.1811, 0.1902, 0.3476, 0.3301, 0.2727, 0.2738, 0.2687, 0.2569, 0.2857, 0.2267, 0.2251},
+      { 0.3180, 0.3227, 0.3218, 0.2657, 0.4259, 0.3546, 0.3818, 0.3197, 0.3185, 0.2819, 0.3124, 0.4308, 0.4410, 0.3725, 0.3802, 0.3492, 0.3985, 0.4038, 0.2964, 0.3935},
+      { 0.2295, 0.2398, 0.2905, 0.2403, 0.3546, 0.2653, 0.2586, 0.2853, 0.3604, 0.2306, 0.2371, 0.3335, 0.3542, 0.2919, 0.3026, 0.2886, 0.3338, 0.3244, 0.2412, 0.3185},
+      { 0.1899, 0.2378, 0.2793, 0.2186, 0.3818, 0.2586, 0.2973, 0.2780, 0.4780, 0.1940, 0.2052, 0.3222, 0.3259, 0.3211, 0.3299, 0.2958, 0.3553, 0.3191, 0.2198, 0.3247},
+      { 0.2694, 0.2526, 0.3035, 0.2471, 0.3197, 0.2853, 0.2780, 0.3173, 0.3290, 0.2550, 0.2549, 0.3438, 0.3627, 0.2855, 0.2929, 0.2818, 0.3245, 0.3238, 0.2545, 0.3012},
+      { 0.2655, 0.2567, 0.3084, 0.2500, 0.3185, 0.3604, 0.4780, 0.3290, 0.3037, 0.2602, 0.2717, 0.3562, 0.3838, 0.3634, 0.3555, 0.3380, 0.3933, 0.3545, 0.3043, 0.4037},
+      { 0.2057, 0.1923, 0.2593, 0.1811, 0.2819, 0.2306, 0.1940, 0.2550, 0.2602, 0.2354, 0.2442, 0.3286, 0.3402, 0.2455, 0.2589, 0.2633, 0.2993, 0.3236, 0.2280, 0.2812},
+      { 0.2048, 0.2081, 0.2648, 0.1902, 0.3124, 0.2371, 0.2052, 0.2549, 0.2717, 0.2442, 0.2605, 0.3577, 0.3796, 0.2491, 0.2730, 0.2742, 0.3203, 0.3349, 0.2402, 0.2988},
+      { 0.3147, 0.3317, 0.4043, 0.3476, 0.4308, 0.3335, 0.3222, 0.3438, 0.3562, 0.3286, 0.3577, 0.4615, 0.5138, 0.4144, 0.4364, 0.4287, 0.4423, 0.4845, 0.3422, 0.4368},
+      { 0.2979, 0.3430, 0.4080, 0.3301, 0.4410, 0.3542, 0.3259, 0.3627, 0.3838, 0.3402, 0.3796, 0.5138, 0.5465, 0.4091, 0.4248, 0.4329, 0.4792, 0.5041, 0.3542, 0.4633},
+      { 0.2247, 0.2669, 0.3259, 0.2727, 0.3725, 0.2919, 0.3211, 0.2855, 0.3634, 0.2455, 0.2491, 0.4144, 0.4091, 0.4095, 0.4115, 0.3945, 0.4011, 0.4203, 0.3023, 0.3890},
+      { 0.2301, 0.2708, 0.3390, 0.2738, 0.3802, 0.3026, 0.3299, 0.2929, 0.3555, 0.2589, 0.2730, 0.4364, 0.4248, 0.4115, 0.4387, 0.4131, 0.4227, 0.4415, 0.3194, 0.3997},
+      { 0.2281, 0.2727, 0.3342, 0.2687, 0.3492, 0.2886, 0.2958, 0.2818, 0.3380, 0.2633, 0.2742, 0.4287, 0.4329, 0.3945, 0.4131, 0.4106, 0.4166, 0.4339, 0.3165, 0.3794},
+      { 0.2503, 0.2658, 0.3231, 0.2569, 0.3985, 0.3338, 0.3553, 0.3245, 0.3933, 0.2993, 0.3203, 0.4423, 0.4792, 0.4011, 0.4227, 0.4166, 0.4643, 0.4717, 0.3370, 0.4395},
+      { 0.2576, 0.2846, 0.3646, 0.2857, 0.4038, 0.3244, 0.3191, 0.3238, 0.3545, 0.3236, 0.3349, 0.4845, 0.5041, 0.4203, 0.4415, 0.4339, 0.4717, 0.4882, 0.3499, 0.4527},
+      { 0.2103, 0.2378, 0.2846, 0.2267, 0.2964, 0.2412, 0.2198, 0.2545, 0.3043, 0.2280, 0.2402, 0.3422, 0.3542, 0.3023, 0.3194, 0.3165, 0.3370, 0.3499, 0.2933, 0.2929},
+      { 0.2360, 0.2384, 0.3015, 0.2251, 0.3935, 0.3185, 0.3247, 0.3012, 0.4037, 0.2812, 0.2988, 0.4368, 0.4633, 0.3890, 0.3997, 0.3794, 0.4395, 0.4527, 0.2929, 0.5420}},
+    {
+      { 0.0628, 0.0533, 0.3219, 0.2714, 0.2467, 0.1638, 0.1212, 0.1947, 0.1821, 0.1007, 0.1409, 0.2594, 0.2411, 0.1540, 0.1588, 0.1599, 0.1738, 0.1917, 0.1435, 0.1977},
+      { 0.0533, 0.0800, 0.3380, 0.2784, 0.2411, 0.1467, 0.1299, 0.1665, 0.1842, 0.0805, 0.1435, 0.2758, 0.2675, 0.1824, 0.1912, 0.1935, 0.1806, 0.2082, 0.1468, 0.1884},
+      { 0.3219, 0.3380, 0.2476, 0.1791, 0.2649, 0.2265, 0.1981, 0.2447, 0.2600, 0.1748, 0.2151, 0.3512, 0.3648, 0.2530, 0.2720, 0.2717, 0.2509, 0.3015, 0.2096, 0.2534},
+      { 0.2714, 0.2784, 0.1791, 0.1156, 0.1861, 0.1469, 0.1103, 0.1828, 0.1992, 0.1171, 0.1376, 0.2872, 0.2584, 0.1870, 0.1862, 0.1840, 0.1724, 0.2121, 0.1505, 0.1640},
+      { 0.2467, 0.2411, 0.2649, 0.1861, 0.3413, 0.2729, 0.2290, 0.2342, 0.2348, 0.2076, 0.2277, 0.3738, 0.3716, 0.2798, 0.2860, 0.2749, 0.2883, 0.3283, 0.2460, 0.3029},
+      { 0.1638, 0.1467, 0.2265, 0.1469, 0.2729, 0.2806, 0.2601, 0.2187, 0.2118, 0.2676, 0.2115, 0.2927, 0.3161, 0.2801, 0.2752, 0.2613, 0.3125, 0.3090, 0.2854, 0.3525},
+      { 0.1212, 0.1299, 0.1981, 0.1103, 0.2290, 0.2601, 0.2357, 0.1831, 0.1940, 0.3470, 0.1637, 0.2730, 0.2990, 0.2712, 0.2704, 0.2587, 0.2989, 0.2905, 0.2958, 0.3484},
+      { 0.1947, 0.1665, 0.2447, 0.1828, 0.2342, 0.2187, 0.1831, 0.2538, 0.2227, 0.2257, 0.2032, 0.2876, 0.3084, 0.2134, 0.2191, 0.2114, 0.2617, 0.2655, 0.2203, 0.2717},
+      { 0.1821, 0.1842, 0.2600, 0.1992, 0.2348, 0.2118, 0.1940, 0.2227, 0.2338, 0.1628, 0.2129, 0.3019, 0.3356, 0.2412, 0.2431, 0.2521, 0.2645, 0.2779, 0.2092, 0.2662},
+      { 0.1007, 0.0805, 0.1748, 0.1171, 0.2076, 0.2676, 0.3470, 0.2257, 0.1628, 0.1935, 0.1715, 0.2439, 0.2598, 0.2752, 0.2520, 0.2405, 0.2766, 0.2658, 0.2517, 0.3619},
+      { 0.1409, 0.1435, 0.2151, 0.1376, 0.2277, 0.2115, 0.1637, 0.2032, 0.2129, 0.1715, 0.1978, 0.3159, 0.3349, 0.2058, 0.2244, 0.2275, 0.2718, 0.2843, 0.2030, 0.2631},
+      { 0.2594, 0.2758, 0.3512, 0.2872, 0.3738, 0.2927, 0.2730, 0.2876, 0.3019, 0.2439, 0.3159, 0.4186, 0.4605, 0.3642, 0.3743, 0.3811, 0.4008, 0.4391, 0.3117, 0.3687},
+      { 0.2411, 0.2675, 0.3648, 0.2584, 0.3716, 0.3161, 0.2990, 0.3084, 0.3356, 0.2598, 0.3349, 0.4605, 0.5288, 0.3730, 0.3877, 0.3864, 0.4479, 0.4706, 0.3298, 0.4100},
+      { 0.1540, 0.1824, 0.2530, 0.1870, 0.2798, 0.2801, 0.2712, 0.2134, 0.2412, 0.2752, 0.2058, 0.3642, 0.3730, 0.3689, 0.3759, 0.3566, 0.3598, 0.3935, 0.3435, 0.3878},
+      { 0.1588, 0.1912, 0.2720, 0.1862, 0.2860, 0.2752, 0.2704, 0.2191, 0.2431, 0.2520, 0.2244, 0.3743, 0.3877, 0.3759, 0.4013, 0.3792, 0.3732, 0.3970, 0.3382, 0.3852},
+      { 0.1599, 0.1935, 0.2717, 0.1840, 0.2749, 0.2613, 0.2587, 0.2114, 0.2521, 0.2405, 0.2275, 0.3811, 0.3864, 0.3566, 0.3792, 0.3704, 0.3601, 0.3971, 0.3143, 0.3496},
+      { 0.1738, 0.1806, 0.2509, 0.1724, 0.2883, 0.3125, 0.2989, 0.2617, 0.2645, 0.2766, 0.2718, 0.4008, 0.4479, 0.3598, 0.3732, 0.3601, 0.4217, 0.4241, 0.3461, 0.4214},
+      { 0.1917, 0.2082, 0.3015, 0.2121, 0.3283, 0.3090, 0.2905, 0.2655, 0.2779, 0.2658, 0.2843, 0.4391, 0.4706, 0.3935, 0.3970, 0.3971, 0.4241, 0.4600, 0.3449, 0.4258},
+      { 0.1435, 0.1468, 0.2096, 0.1505, 0.2460, 0.2854, 0.2958, 0.2203, 0.2092, 0.2517, 0.2030, 0.3117, 0.3298, 0.3435, 0.3382, 0.3143, 0.3461, 0.3449, 0.3279, 0.3825},
+      { 0.1977, 0.1884, 0.2534, 0.1640, 0.3029, 0.3525, 0.3484, 0.2717, 0.2662, 0.3619, 0.2631, 0.3687, 0.4100, 0.3878, 0.3852, 0.3496, 0.4214, 0.4258, 0.3825, 0.5796}},
+    {
+      { 0.0789, 0.0681, 0.3413, 0.2953, 0.2623, 0.1576, 0.1082, 0.2147, 0.1978, 0.1502, 0.1432, 0.2649, 0.2738, 0.1517, 0.1598, 0.1727, 0.1822, 0.1985, 0.1439, 0.1829},
+      { 0.0681, 0.0745, 0.3468, 0.2949, 0.2381, 0.1449, 0.1155, 0.1845, 0.1945, 0.1333, 0.1342, 0.2629, 0.2721, 0.1728, 0.1777, 0.1832, 0.1747, 0.2109, 0.1473, 0.1561},
+      { 0.3413, 0.3468, 0.2285, 0.1643, 0.2695, 0.2115, 0.2035, 0.2530, 0.2572, 0.2207, 0.2125, 0.3595, 0.3649, 0.2568, 0.2686, 0.2696, 0.2618, 0.3116, 0.2200, 0.2555},
+      { 0.2953, 0.2949, 0.1643, 0.1173, 0.1913, 0.1476, 0.1344, 0.1969, 0.2064, 0.1441, 0.1321, 0.2910, 0.2747, 0.1962, 0.1963, 0.1885, 0.1836, 0.2345, 0.1580, 0.1695},
+      { 0.2623, 0.2381, 0.2695, 0.1913, 0.3046, 0.2517, 0.2482, 0.2577, 0.2448, 0.2254, 0.2541, 0.3875, 0.3862, 0.2839, 0.2960, 0.2921, 0.3106, 0.3379, 0.2407, 0.3257},
+      { 0.1576, 0.1449, 0.2115, 0.1476, 0.2517, 0.2173, 0.2151, 0.2226, 0.2051, 0.2055, 0.2775, 0.2879, 0.3138, 0.2441, 0.2525, 0.2372, 0.2645, 0.2816, 0.2240, 0.2895},
+      { 0.1082, 0.1155, 0.2035, 0.1344, 0.2482, 0.2151, 0.2205, 0.1983, 0.2052, 0.1637, 0.3296, 0.2820, 0.2757, 0.2793, 0.2785, 0.2481, 0.2735, 0.2836, 0.2448, 0.3207},
+      { 0.2147, 0.1845, 0.2530, 0.1969, 0.2577, 0.2226, 0.1983, 0.2670, 0.2444, 0.2197, 0.2359, 0.3080, 0.3407, 0.2422, 0.2446, 0.2342, 0.2753, 0.2950, 0.2202, 0.2625},
+      { 0.1978, 0.1945, 0.2572, 0.2064, 0.2448, 0.2051, 0.2052, 0.2444, 0.2457, 0.1990, 0.2140, 0.3148, 0.3448, 0.2397, 0.2588, 0.2659, 0.2686, 0.2885, 0.2053, 0.2525},
+      { 0.1502, 0.1333, 0.2207, 0.1441, 0.2254, 0.2055, 0.1637, 0.2197, 0.1990, 0.2138, 0.1983, 0.2885, 0.2967, 0.2302, 0.2342, 0.2297, 0.2620, 0.2871, 0.2063, 0.2732},
+      { 0.1432, 0.1342, 0.2125, 0.1321, 0.2541, 0.2775, 0.3296, 0.2359, 0.2140, 0.1983, 0.2112, 0.3401, 0.3570, 0.2920, 0.2973, 0.2745, 0.3231, 0.3230, 0.2530, 0.3503},
+      { 0.2649, 0.2629, 0.3595, 0.2910, 0.3875, 0.2879, 0.2820, 0.3080, 0.3148, 0.2885, 0.3401, 0.4311, 0.4506, 0.3582, 0.3854, 0.3845, 0.4170, 0.4401, 0.2990, 0.3897},
+      { 0.2738, 0.2721, 0.3649, 0.2747, 0.3862, 0.3138, 0.2757, 0.3407, 0.3448, 0.2967, 0.3570, 0.4506, 0.4794, 0.3800, 0.3827, 0.3978, 0.4344, 0.4849, 0.3070, 0.3991},
+      { 0.1517, 0.1728, 0.2568, 0.1962, 0.2839, 0.2441, 0.2793, 0.2422, 0.2397, 0.2302, 0.2920, 0.3582, 0.3800, 0.3634, 0.3657, 0.3473, 0.3460, 0.3692, 0.2916, 0.3686},
+      { 0.1598, 0.1777, 0.2686, 0.1963, 0.2960, 0.2525, 0.2785, 0.2446, 0.2588, 0.2342, 0.2973, 0.3854, 0.3827, 0.3657, 0.3871, 0.3691, 0.3770, 0.3928, 0.3023, 0.3622},
+      { 0.1727, 0.1832, 0.2696, 0.1885, 0.2921, 0.2372, 0.2481, 0.2342, 0.2659, 0.2297, 0.2745, 0.3845, 0.3978, 0.3473, 0.3691, 0.3679, 0.3695, 0.3968, 0.2853, 0.3297},
+      { 0.1822, 0.1747, 0.2618, 0.1836, 0.3106, 0.2645, 0.2735, 0.2753, 0.2686, 0.2620, 0.3231, 0.4170, 0.4344, 0.3460, 0.3770, 0.3695, 0.4277, 0.4224, 0.2926, 0.3749},
+      { 0.1985, 0.2109, 0.3116, 0.2345, 0.3379, 0.2816, 0.2836, 0.2950, 0.2885, 0.2871, 0.3230, 0.4401, 0.4849, 0.3692, 0.3928, 0.3968, 0.4224, 0.4523, 0.3111, 0.4085},
+      { 0.1439, 0.1473, 0.2200, 0.1580, 0.2407, 0.2240, 0.2448, 0.2202, 0.2053, 0.2063, 0.2530, 0.2990, 0.3070, 0.2916, 0.3023, 0.2853, 0.2926, 0.3111, 0.2629, 0.3028},
+      { 0.1829, 0.1561, 0.2555, 0.1695, 0.3257, 0.2895, 0.3207, 0.2625, 0.2525, 0.2732, 0.3503, 0.3897, 0.3991, 0.3686, 0.3622, 0.3297, 0.3749, 0.4085, 0.3028, 0.5215}},
+    {
+      { 0.2101, 0.2008, 0.4311, 0.3692, 0.3335, 0.2927, 0.2654, 0.3088, 0.3056, 0.2699, 0.2737, 0.2919, 0.3535, 0.2808, 0.2847, 0.2852, 0.3045, 0.2912, 0.2654, 0.2990},
+      { 0.2008, 0.2239, 0.4555, 0.3935, 0.3457, 0.2801, 0.2696, 0.2889, 0.3105, 0.2553, 0.2573, 0.3010, 0.3713, 0.3103, 0.3192, 0.3043, 0.3073, 0.3062, 0.2790, 0.3092},
+      { 0.4311, 0.4555, 0.3277, 0.2630, 0.3501, 0.3365, 0.3286, 0.3409, 0.3605, 0.3231, 0.3227, 0.3690, 0.4387, 0.3730, 0.3857, 0.3739, 0.3756, 0.3860, 0.3304, 0.3621},
+      { 0.3692, 0.3935, 0.2630, 0.2287, 0.2799, 0.2806, 0.2753, 0.2806, 0.3082, 0.2557, 0.2438, 0.3190, 0.3651, 0.3204, 0.3246, 0.3130, 0.3029, 0.3196, 0.2724, 0.3063},
+      { 0.3335, 0.3457, 0.3501, 0.2799, 0.4222, 0.3902, 0.4023, 0.3588, 0.3474, 0.3268, 0.3275, 0.4170, 0.4554, 0.4052, 0.4157, 0.4002, 0.4334, 0.4168, 0.3535, 0.4383},
+      { 0.2927, 0.2801, 0.3365, 0.2806, 0.3902, 0.3367, 0.3209, 0.3420, 0.3304, 0.3038, 0.3099, 0.4063, 0.4281, 0.3572, 0.3604, 0.3519, 0.3885, 0.4057, 0.3171, 0.3794},
+      { 0.2654, 0.2696, 0.3286, 0.2753, 0.4023, 0.3209, 0.3399, 0.3440, 0.3222, 0.2730, 0.2820, 0.4810, 0.4369, 0.3753, 0.3874, 0.3705, 0.3873, 0.4498, 0.3059, 0.3852},
+      { 0.3088, 0.2889, 0.3409, 0.2806, 0.3588, 0.3420, 0.3440, 0.3875, 0.3552, 0.3351, 0.3215, 0.3493, 0.4075, 0.3376, 0.3368, 0.3267, 0.3749, 0.3631, 0.3097, 0.3622},
+      { 0.3056, 0.3105, 0.3605, 0.3082, 0.3474, 0.3304, 0.3222, 0.3552, 0.3492, 0.3113, 0.3243, 0.3481, 0.4241, 0.3494, 0.3656, 0.3626, 0.3827, 0.3807, 0.3209, 0.3612},
+      { 0.2699, 0.2553, 0.3231, 0.2557, 0.3268, 0.3038, 0.2730, 0.3351, 0.3113, 0.3056, 0.3105, 0.3159, 0.3869, 0.3306, 0.3422, 0.3440, 0.3788, 0.3636, 0.3092, 0.3644},
+      { 0.2737, 0.2573, 0.3227, 0.2438, 0.3275, 0.3099, 0.2820, 0.3215, 0.3243, 0.3105, 0.3085, 0.3591, 0.4238, 0.3190, 0.3356, 0.3313, 0.3658, 0.3711, 0.3024, 0.3667},
+      { 0.2919, 0.3010, 0.3690, 0.3190, 0.4170, 0.4063, 0.4810, 0.3493, 0.3481, 0.3159, 0.3591, 0.4374, 0.4659, 0.4710, 0.4715, 0.4504, 0.4823, 0.4851, 0.3923, 0.4971},
+      { 0.3535, 0.3713, 0.4387, 0.3651, 0.4554, 0.4281, 0.4369, 0.4075, 0.4241, 0.3869, 0.4238, 0.4659, 0.5399, 0.4748, 0.4997, 0.4843, 0.5352, 0.5357, 0.4240, 0.5094},
+      { 0.2808, 0.3103, 0.3730, 0.3204, 0.4052, 0.3572, 0.3753, 0.3376, 0.3494, 0.3306, 0.3190, 0.4710, 0.4748, 0.4821, 0.4915, 0.4699, 0.4661, 0.4973, 0.3929, 0.4504},
+      { 0.2847, 0.3192, 0.3857, 0.3246, 0.4157, 0.3604, 0.3874, 0.3368, 0.3656, 0.3422, 0.3356, 0.4715, 0.4997, 0.4915, 0.5154, 0.4970, 0.4857, 0.5046, 0.4066, 0.4662},
+      { 0.2852, 0.3043, 0.3739, 0.3130, 0.4002, 0.3519, 0.3705, 0.3267, 0.3626, 0.3440, 0.3313, 0.4504, 0.4843, 0.4699, 0.4970, 0.4941, 0.4837, 0.4943, 0.4000, 0.4440},
+      { 0.3045, 0.3073, 0.3756, 0.3029, 0.4334, 0.3885, 0.3873, 0.3749, 0.3827, 0.3788, 0.3658, 0.4823, 0.5352, 0.4661, 0.4857, 0.4837, 0.5349, 0.5265, 0.4102, 0.4966},
+      { 0.2912, 0.3062, 0.3860, 0.3196, 0.4168, 0.4057, 0.4498, 0.3631, 0.3807, 0.3636, 0.3711, 0.4851, 0.5357, 0.4973, 0.5046, 0.4943, 0.5265, 0.5275, 0.4308, 0.5181},
+      { 0.2654, 0.2790, 0.3304, 0.2724, 0.3535, 0.3171, 0.3059, 0.3097, 0.3209, 0.3092, 0.3024, 0.3923, 0.4240, 0.3929, 0.4066, 0.4000, 0.4102, 0.4308, 0.3604, 0.3926},
+      { 0.2990, 0.3092, 0.3621, 0.3063, 0.4383, 0.3794, 0.3852, 0.3622, 0.3612, 0.3644, 0.3667, 0.4971, 0.5094, 0.4504, 0.4662, 0.4440, 0.4966, 0.5181, 0.3926, 0.5757}},
+    {
+      { 0.2033, 0.2039, 0.4408, 0.3655, 0.3602, 0.2892, 0.2689, 0.3090, 0.3186, 0.2796, 0.2914, 0.3628, 0.2941, 0.2923, 0.2976, 0.2987, 0.3059, 0.3008, 0.2763, 0.3127},
+      { 0.2039, 0.2244, 0.4433, 0.3952, 0.3457, 0.2716, 0.2547, 0.2969, 0.3118, 0.2654, 0.2586, 0.3675, 0.3178, 0.3140, 0.3235, 0.3152, 0.3202, 0.3179, 0.2749, 0.2899},
+      { 0.4408, 0.4433, 0.3329, 0.2711, 0.3790, 0.3518, 0.3278, 0.3583, 0.3566, 0.3260, 0.3281, 0.4374, 0.3877, 0.3714, 0.3873, 0.3823, 0.4030, 0.3991, 0.3427, 0.3745},
+      { 0.3655, 0.3952, 0.2711, 0.2534, 0.2861, 0.2868, 0.2619, 0.2870, 0.3034, 0.2560, 0.2545, 0.3713, 0.2989, 0.3140, 0.3283, 0.3207, 0.2983, 0.3287, 0.2796, 0.3171},
+      { 0.3602, 0.3457, 0.3790, 0.2861, 0.4547, 0.3817, 0.3858, 0.3608, 0.3691, 0.3518, 0.3476, 0.4721, 0.4189, 0.4045, 0.4049, 0.4165, 0.4722, 0.4373, 0.3640, 0.4495},
+      { 0.2892, 0.2716, 0.3518, 0.2868, 0.3817, 0.3479, 0.3318, 0.3536, 0.3297, 0.3301, 0.3231, 0.4103, 0.4637, 0.3597, 0.3707, 0.3639, 0.3912, 0.4171, 0.3320, 0.3952},
+      { 0.2689, 0.2547, 0.3278, 0.2619, 0.3858, 0.3318, 0.3423, 0.3489, 0.3259, 0.2990, 0.2757, 0.4369, 0.5332, 0.3744, 0.3787, 0.3867, 0.4039, 0.4508, 0.3195, 0.3918},
+      { 0.3090, 0.2969, 0.3583, 0.2870, 0.3608, 0.3536, 0.3489, 0.3995, 0.3614, 0.3351, 0.3136, 0.3970, 0.3575, 0.3366, 0.3457, 0.3403, 0.3837, 0.3730, 0.3092, 0.3902},
+      { 0.3186, 0.3118, 0.3566, 0.3034, 0.3691, 0.3297, 0.3259, 0.3614, 0.3587, 0.3191, 0.3274, 0.4043, 0.3879, 0.3597, 0.3734, 0.3695, 0.3950, 0.4026, 0.3352, 0.3670},
+      { 0.2796, 0.2654, 0.3260, 0.2560, 0.3518, 0.3301, 0.2990, 0.3351, 0.3191, 0.3449, 0.3112, 0.3703, 0.3469, 0.3422, 0.3628, 0.3549, 0.3981, 0.3764, 0.3353, 0.3866},
+      { 0.2914, 0.2586, 0.3281, 0.2545, 0.3476, 0.3231, 0.2757, 0.3136, 0.3274, 0.3112, 0.3271, 0.4137, 0.3726, 0.3195, 0.3399, 0.3428, 0.3721, 0.3819, 0.3050, 0.3592},
+      { 0.3628, 0.3675, 0.4374, 0.3713, 0.4721, 0.4103, 0.4369, 0.3970, 0.4043, 0.3703, 0.4137, 0.4887, 0.4956, 0.4985, 0.5174, 0.5016, 0.5305, 0.5303, 0.4209, 0.5143},
+      { 0.2941, 0.3178, 0.3877, 0.2989, 0.4189, 0.4637, 0.5332, 0.3575, 0.3879, 0.3469, 0.3726, 0.4956, 0.5158, 0.4922, 0.5020, 0.4667, 0.5125, 0.5178, 0.4270, 0.5466},
+      { 0.2923, 0.3140, 0.3714, 0.3140, 0.4045, 0.3597, 0.3744, 0.3366, 0.3597, 0.3422, 0.3195, 0.4985, 0.4922, 0.4763, 0.5016, 0.4882, 0.4787, 0.5156, 0.4053, 0.4885},
+      { 0.2976, 0.3235, 0.3873, 0.3283, 0.4049, 0.3707, 0.3787, 0.3457, 0.3734, 0.3628, 0.3399, 0.5174, 0.5020, 0.5016, 0.5304, 0.5207, 0.5106, 0.5262, 0.4187, 0.4904},
+      { 0.2987, 0.3152, 0.3823, 0.3207, 0.4165, 0.3639, 0.3867, 0.3403, 0.3695, 0.3549, 0.3428, 0.5016, 0.4667, 0.4882, 0.5207, 0.5170, 0.4949, 0.5278, 0.4198, 0.4659},
+      { 0.3059, 0.3202, 0.4030, 0.2983, 0.4722, 0.3912, 0.4039, 0.3837, 0.3950, 0.3981, 0.3721, 0.5305, 0.5125, 0.4787, 0.5106, 0.4949, 0.5376, 0.5547, 0.4331, 0.5217},
+      { 0.3008, 0.3179, 0.3991, 0.3287, 0.4373, 0.4171, 0.4508, 0.3730, 0.4026, 0.3764, 0.3819, 0.5303, 0.5178, 0.5156, 0.5262, 0.5278, 0.5547, 0.5447, 0.4456, 0.5321},
+      { 0.2763, 0.2749, 0.3427, 0.2796, 0.3640, 0.3320, 0.3195, 0.3092, 0.3352, 0.3353, 0.3050, 0.4209, 0.4270, 0.4053, 0.4187, 0.4198, 0.4331, 0.4456, 0.3713, 0.4221},
+      { 0.3127, 0.2899, 0.3745, 0.3171, 0.4495, 0.3952, 0.3918, 0.3902, 0.3670, 0.3866, 0.3592, 0.5143, 0.5466, 0.4885, 0.4904, 0.4659, 0.5217, 0.5321, 0.4221, 0.5660}},
+    {
+      { 0.1615, 0.1420, 0.4104, 0.3542, 0.3436, 0.2524, 0.2377, 0.2778, 0.2673, 0.2340, 0.2217, 0.3274, 0.3418, 0.2106, 0.2266, 0.2344, 0.2559, 0.2564, 0.2128, 0.2495},
+      { 0.1420, 0.1723, 0.4500, 0.3995, 0.3385, 0.2542, 0.2670, 0.2633, 0.2786, 0.2088, 0.2110, 0.3488, 0.3637, 0.2592, 0.2660, 0.2634, 0.2675, 0.2873, 0.2251, 0.2617},
+      { 0.4104, 0.4500, 0.3060, 0.2377, 0.3453, 0.3037, 0.3172, 0.3078, 0.3454, 0.2745, 0.2751, 0.4209, 0.4287, 0.3244, 0.3361, 0.3335, 0.3293, 0.3694, 0.2903, 0.3290},
+      { 0.3542, 0.3995, 0.2377, 0.2082, 0.2902, 0.2543, 0.2761, 0.2564, 0.2940, 0.2103, 0.2028, 0.3805, 0.3590, 0.2825, 0.2931, 0.2801, 0.2643, 0.3098, 0.2371, 0.2589},
+      { 0.3436, 0.3385, 0.3453, 0.2902, 0.4243, 0.3675, 0.3691, 0.3359, 0.3423, 0.3143, 0.2989, 0.4615, 0.4480, 0.3514, 0.3732, 0.3615, 0.3953, 0.4077, 0.3191, 0.3824},
+      { 0.2524, 0.2542, 0.3037, 0.2543, 0.3675, 0.3325, 0.3420, 0.3343, 0.3134, 0.2868, 0.2767, 0.3698, 0.3894, 0.3515, 0.3639, 0.3428, 0.3740, 0.3818, 0.3164, 0.3870},
+      { 0.2377, 0.2670, 0.3172, 0.2761, 0.3691, 0.3420, 0.3977, 0.3486, 0.3211, 0.2712, 0.2793, 0.3753, 0.3744, 0.4536, 0.4388, 0.3866, 0.3973, 0.3999, 0.3485, 0.4462},
+      { 0.2778, 0.2633, 0.3078, 0.2564, 0.3359, 0.3343, 0.3486, 0.3812, 0.3236, 0.2974, 0.2823, 0.3667, 0.3710, 0.2898, 0.3008, 0.2947, 0.3428, 0.3355, 0.2825, 0.3466},
+      { 0.2673, 0.2786, 0.3454, 0.2940, 0.3423, 0.3134, 0.3211, 0.3236, 0.3317, 0.2796, 0.2802, 0.3790, 0.4171, 0.3023, 0.3144, 0.3171, 0.3431, 0.3549, 0.2788, 0.3272},
+      { 0.2340, 0.2088, 0.2745, 0.2103, 0.3143, 0.2868, 0.2712, 0.2974, 0.2796, 0.2904, 0.2535, 0.3752, 0.3923, 0.2716, 0.2981, 0.3090, 0.3509, 0.3732, 0.2835, 0.3404},
+      { 0.2217, 0.2110, 0.2751, 0.2028, 0.2989, 0.2767, 0.2793, 0.2823, 0.2802, 0.2535, 0.2618, 0.3737, 0.3967, 0.2547, 0.2762, 0.2786, 0.3268, 0.3271, 0.2676, 0.3171},
+      { 0.3274, 0.3488, 0.4209, 0.3805, 0.4615, 0.3698, 0.3753, 0.3667, 0.3790, 0.3752, 0.3737, 0.4766, 0.5123, 0.4314, 0.4542, 0.4597, 0.4692, 0.5054, 0.3949, 0.4556},
+      { 0.3418, 0.3637, 0.4287, 0.3590, 0.4480, 0.3894, 0.3744, 0.3710, 0.4171, 0.3923, 0.3967, 0.5123, 0.5686, 0.4307, 0.4653, 0.4768, 0.4998, 0.5361, 0.3974, 0.4665},
+      { 0.2106, 0.2592, 0.3244, 0.2825, 0.3514, 0.3515, 0.4536, 0.2898, 0.3023, 0.2716, 0.2547, 0.4314, 0.4307, 0.5024, 0.4958, 0.4591, 0.4377, 0.4659, 0.4092, 0.4919},
+      { 0.2266, 0.2660, 0.3361, 0.2931, 0.3732, 0.3639, 0.4388, 0.3008, 0.3144, 0.2981, 0.2762, 0.4542, 0.4653, 0.4958, 0.5127, 0.4802, 0.4578, 0.4884, 0.4271, 0.4989},
+      { 0.2344, 0.2634, 0.3335, 0.2801, 0.3615, 0.3428, 0.3866, 0.2947, 0.3171, 0.3090, 0.2786, 0.4597, 0.4768, 0.4591, 0.4802, 0.4787, 0.4622, 0.4958, 0.4085, 0.4591},
+      { 0.2559, 0.2675, 0.3293, 0.2643, 0.3953, 0.3740, 0.3973, 0.3428, 0.3431, 0.3509, 0.3268, 0.4692, 0.4998, 0.4377, 0.4578, 0.4622, 0.5243, 0.5048, 0.4118, 0.4861},
+      { 0.2564, 0.2873, 0.3694, 0.3098, 0.4077, 0.3818, 0.3999, 0.3355, 0.3549, 0.3732, 0.3271, 0.5054, 0.5361, 0.4659, 0.4884, 0.4958, 0.5048, 0.5465, 0.4245, 0.4992},
+      { 0.2128, 0.2251, 0.2903, 0.2371, 0.3191, 0.3164, 0.3485, 0.2825, 0.2788, 0.2835, 0.2676, 0.3949, 0.3974, 0.4092, 0.4271, 0.4085, 0.4118, 0.4245, 0.3798, 0.4259},
+      { 0.2495, 0.2617, 0.3290, 0.2589, 0.3824, 0.3870, 0.4462, 0.3466, 0.3272, 0.3404, 0.3171, 0.4556, 0.4665, 0.4919, 0.4989, 0.4591, 0.4861, 0.4992, 0.4259, 0.5744}},
+    {
+      { 0.1677, 0.1649, 0.4225, 0.3655, 0.3452, 0.2518, 0.2384, 0.2824, 0.2832, 0.2334, 0.2255, 0.3426, 0.3349, 0.2316, 0.2110, 0.2382, 0.2535, 0.2597, 0.2214, 0.2532},
+      { 0.1649, 0.2010, 0.4585, 0.4033, 0.3518, 0.2594, 0.2644, 0.2741, 0.2916, 0.2256, 0.2144, 0.3527, 0.3524, 0.2624, 0.2472, 0.2561, 0.2638, 0.2866, 0.2337, 0.2519},
+      { 0.4225, 0.4585, 0.3128, 0.2476, 0.3452, 0.3184, 0.3116, 0.3217, 0.3439, 0.2873, 0.2894, 0.4145, 0.4279, 0.3285, 0.3189, 0.3248, 0.3251, 0.3653, 0.3012, 0.3317},
+      { 0.3655, 0.4033, 0.2476, 0.2164, 0.2921, 0.2596, 0.2739, 0.2607, 0.2984, 0.2223, 0.2103, 0.3767, 0.3695, 0.2845, 0.2718, 0.2726, 0.2602, 0.3039, 0.2434, 0.2670},
+      { 0.3452, 0.3518, 0.3452, 0.2921, 0.4431, 0.3803, 0.3831, 0.3403, 0.3559, 0.3187, 0.3127, 0.4633, 0.4644, 0.3651, 0.3531, 0.3569, 0.3921, 0.4121, 0.3356, 0.3794},
+      { 0.2518, 0.2594, 0.3184, 0.2596, 0.3803, 0.3263, 0.3286, 0.3359, 0.3256, 0.2980, 0.2755, 0.3806, 0.3963, 0.3561, 0.3639, 0.3467, 0.3857, 0.3859, 0.3131, 0.3730},
+      { 0.2384, 0.2644, 0.3116, 0.2739, 0.3831, 0.3286, 0.3763, 0.3518, 0.3299, 0.2704, 0.2785, 0.3874, 0.3787, 0.4388, 0.4684, 0.4005, 0.4194, 0.4110, 0.3340, 0.4269},
+      { 0.2824, 0.2741, 0.3217, 0.2607, 0.3403, 0.3359, 0.3518, 0.3755, 0.3411, 0.3043, 0.2850, 0.3620, 0.3805, 0.2934, 0.2932, 0.2952, 0.3414, 0.3350, 0.2858, 0.3393},
+      { 0.2832, 0.2916, 0.3439, 0.2984, 0.3559, 0.3256, 0.3299, 0.3411, 0.3466, 0.2945, 0.2946, 0.3842, 0.4237, 0.3076, 0.2924, 0.3120, 0.3349, 0.3530, 0.2904, 0.3332},
+      { 0.2334, 0.2256, 0.2873, 0.2223, 0.3187, 0.2980, 0.2704, 0.3043, 0.2945, 0.2888, 0.2590, 0.3782, 0.3874, 0.2887, 0.2738, 0.3022, 0.3449, 0.3632, 0.2925, 0.3451},
+      { 0.2255, 0.2144, 0.2894, 0.2103, 0.3127, 0.2755, 0.2785, 0.2850, 0.2946, 0.2590, 0.2662, 0.3854, 0.4046, 0.2677, 0.2649, 0.2879, 0.3336, 0.3412, 0.2785, 0.3337},
+      { 0.3426, 0.3527, 0.4145, 0.3767, 0.4633, 0.3806, 0.3874, 0.3620, 0.3842, 0.3782, 0.3854, 0.4818, 0.5183, 0.4527, 0.4439, 0.4631, 0.4776, 0.5129, 0.4093, 0.4651},
+      { 0.3349, 0.3524, 0.4279, 0.3695, 0.4644, 0.3963, 0.3787, 0.3805, 0.4237, 0.3874, 0.4046, 0.5183, 0.5690, 0.4563, 0.4613, 0.4795, 0.5202, 0.5566, 0.4163, 0.4687},
+      { 0.2316, 0.2624, 0.3285, 0.2845, 0.3651, 0.3561, 0.4388, 0.2934, 0.3076, 0.2887, 0.2677, 0.4527, 0.4563, 0.5178, 0.5105, 0.4866, 0.4669, 0.4943, 0.4158, 0.4971},
+      { 0.2110, 0.2472, 0.3189, 0.2718, 0.3531, 0.3639, 0.4684, 0.2932, 0.2924, 0.2738, 0.2649, 0.4439, 0.4613, 0.5105, 0.5161, 0.4883, 0.4689, 0.4920, 0.4249, 0.5072},
+      { 0.2382, 0.2561, 0.3248, 0.2726, 0.3569, 0.3467, 0.4005, 0.2952, 0.3120, 0.3022, 0.2879, 0.4631, 0.4795, 0.4866, 0.4883, 0.4975, 0.4779, 0.5116, 0.4176, 0.4709},
+      { 0.2535, 0.2638, 0.3251, 0.2602, 0.3921, 0.3857, 0.4194, 0.3414, 0.3349, 0.3449, 0.3336, 0.4776, 0.5202, 0.4669, 0.4689, 0.4779, 0.5212, 0.5334, 0.4220, 0.4980},
+      { 0.2597, 0.2866, 0.3653, 0.3039, 0.4121, 0.3859, 0.4110, 0.3350, 0.3530, 0.3632, 0.3412, 0.5129, 0.5566, 0.4943, 0.4920, 0.5116, 0.5334, 0.5665, 0.4398, 0.5098},
+      { 0.2214, 0.2337, 0.3012, 0.2434, 0.3356, 0.3131, 0.3340, 0.2858, 0.2904, 0.2925, 0.2785, 0.4093, 0.4163, 0.4158, 0.4249, 0.4176, 0.4220, 0.4398, 0.3815, 0.4122},
+      { 0.2532, 0.2519, 0.3317, 0.2670, 0.3794, 0.3730, 0.4269, 0.3393, 0.3332, 0.3451, 0.3337, 0.4651, 0.4687, 0.4971, 0.5072, 0.4709, 0.4980, 0.5098, 0.4122, 0.5532}},
+    {
+      { 0.1611, 0.1510, 0.4019, 0.3400, 0.3244, 0.2314, 0.2060, 0.2607, 0.2687, 0.2105, 0.2068, 0.3262, 0.3135, 0.2167, 0.2118, 0.1924, 0.2266, 0.2404, 0.2062, 0.2154},
+      { 0.1510, 0.1736, 0.4279, 0.3714, 0.3190, 0.2291, 0.2159, 0.2489, 0.2677, 0.1952, 0.2040, 0.3356, 0.3430, 0.2459, 0.2423, 0.2163, 0.2382, 0.2555, 0.2154, 0.2202},
+      { 0.4019, 0.4279, 0.2846, 0.2226, 0.3278, 0.2913, 0.2791, 0.3043, 0.3194, 0.2659, 0.2737, 0.3968, 0.4051, 0.3154, 0.3171, 0.2945, 0.3044, 0.3368, 0.2792, 0.2971},
+      { 0.3400, 0.3714, 0.2226, 0.1909, 0.2646, 0.2347, 0.2299, 0.2425, 0.2644, 0.1954, 0.1940, 0.3575, 0.3417, 0.2679, 0.2695, 0.2393, 0.2408, 0.2813, 0.2242, 0.2328},
+      { 0.3244, 0.3190, 0.3278, 0.2646, 0.4069, 0.3473, 0.3439, 0.3199, 0.3272, 0.3116, 0.2944, 0.4447, 0.4420, 0.3593, 0.3548, 0.3242, 0.3756, 0.3857, 0.3179, 0.3661},
+      { 0.2314, 0.2291, 0.2913, 0.2347, 0.3473, 0.2933, 0.2904, 0.3038, 0.2994, 0.2706, 0.2583, 0.3604, 0.3841, 0.3336, 0.3437, 0.3264, 0.3578, 0.3620, 0.2885, 0.3418},
+      { 0.2060, 0.2159, 0.2791, 0.2299, 0.3439, 0.2904, 0.3405, 0.3236, 0.2958, 0.2587, 0.2481, 0.3705, 0.3867, 0.3866, 0.4005, 0.4047, 0.3943, 0.3889, 0.3008, 0.3953},
+      { 0.2607, 0.2489, 0.3043, 0.2425, 0.3199, 0.3038, 0.3236, 0.3556, 0.3178, 0.2864, 0.2621, 0.3535, 0.3718, 0.2931, 0.2969, 0.2676, 0.3305, 0.3262, 0.2705, 0.3133},
+      { 0.2687, 0.2677, 0.3194, 0.2644, 0.3272, 0.2994, 0.2958, 0.3178, 0.3186, 0.2721, 0.2687, 0.3692, 0.4061, 0.3030, 0.3021, 0.2801, 0.3144, 0.3321, 0.2798, 0.3063},
+      { 0.2105, 0.1952, 0.2659, 0.1954, 0.3116, 0.2706, 0.2587, 0.2864, 0.2721, 0.2767, 0.2498, 0.3575, 0.3693, 0.2930, 0.2943, 0.2639, 0.3192, 0.3396, 0.2846, 0.3362},
+      { 0.2068, 0.2040, 0.2737, 0.1940, 0.2944, 0.2583, 0.2481, 0.2621, 0.2687, 0.2498, 0.2479, 0.3716, 0.3868, 0.2616, 0.2696, 0.2422, 0.3031, 0.3193, 0.2557, 0.3042},
+      { 0.3262, 0.3356, 0.3968, 0.3575, 0.4447, 0.3604, 0.3705, 0.3535, 0.3692, 0.3575, 0.3716, 0.4694, 0.5051, 0.4498, 0.4575, 0.4353, 0.4670, 0.5019, 0.3960, 0.4430},
+      { 0.3135, 0.3430, 0.4051, 0.3417, 0.4420, 0.3841, 0.3867, 0.3718, 0.4061, 0.3693, 0.3868, 0.5051, 0.5237, 0.4524, 0.4713, 0.4577, 0.5091, 0.5410, 0.4019, 0.4723},
+      { 0.2167, 0.2459, 0.3154, 0.2679, 0.3593, 0.3336, 0.3866, 0.2931, 0.3030, 0.2930, 0.2616, 0.4498, 0.4524, 0.4895, 0.4937, 0.4680, 0.4577, 0.4869, 0.4027, 0.4669},
+      { 0.2118, 0.2423, 0.3171, 0.2695, 0.3548, 0.3437, 0.4005, 0.2969, 0.3021, 0.2943, 0.2696, 0.4575, 0.4713, 0.4937, 0.5119, 0.4848, 0.4745, 0.5013, 0.4183, 0.4770},
+      { 0.1924, 0.2163, 0.2945, 0.2393, 0.3242, 0.3264, 0.4047, 0.2676, 0.2801, 0.2639, 0.2422, 0.4353, 0.4577, 0.4680, 0.4848, 0.4727, 0.4581, 0.4873, 0.3958, 0.4519},
+      { 0.2266, 0.2382, 0.3044, 0.2408, 0.3756, 0.3578, 0.3943, 0.3305, 0.3144, 0.3192, 0.3031, 0.4670, 0.5091, 0.4577, 0.4745, 0.4581, 0.5050, 0.5181, 0.4101, 0.4764},
+      { 0.2404, 0.2555, 0.3368, 0.2813, 0.3857, 0.3620, 0.3889, 0.3262, 0.3321, 0.3396, 0.3193, 0.5019, 0.5410, 0.4869, 0.5013, 0.4873, 0.5181, 0.5565, 0.4247, 0.4952},
+      { 0.2062, 0.2154, 0.2792, 0.2242, 0.3179, 0.2885, 0.3008, 0.2705, 0.2798, 0.2846, 0.2557, 0.3960, 0.4019, 0.4027, 0.4183, 0.3958, 0.4101, 0.4247, 0.3767, 0.4022},
+      { 0.2154, 0.2202, 0.2971, 0.2328, 0.3661, 0.3418, 0.3953, 0.3133, 0.3063, 0.3362, 0.3042, 0.4430, 0.4723, 0.4669, 0.4770, 0.4519, 0.4764, 0.4952, 0.4022, 0.5467}},
+    {
+      { 0.1743, 0.1559, 0.4122, 0.3447, 0.3281, 0.2543, 0.2335, 0.2806, 0.2753, 0.2298, 0.2248, 0.3375, 0.3300, 0.2247, 0.2266, 0.2182, 0.2131, 0.2532, 0.2100, 0.2404},
+      { 0.1559, 0.1746, 0.4373, 0.3686, 0.3362, 0.2482, 0.2417, 0.2635, 0.2653, 0.2011, 0.2208, 0.3377, 0.3528, 0.2569, 0.2516, 0.2334, 0.2002, 0.2693, 0.2225, 0.2328},
+      { 0.4122, 0.4373, 0.2999, 0.2308, 0.3360, 0.3135, 0.2972, 0.3271, 0.3234, 0.2830, 0.2818, 0.4093, 0.4183, 0.3113, 0.3178, 0.3088, 0.2582, 0.3512, 0.2776, 0.3040},
+      { 0.3447, 0.3686, 0.2308, 0.2003, 0.2661, 0.2408, 0.2526, 0.2511, 0.2594, 0.1918, 0.1922, 0.3502, 0.3306, 0.2608, 0.2624, 0.2453, 0.1979, 0.2783, 0.2184, 0.2266},
+      { 0.3281, 0.3362, 0.3360, 0.2661, 0.4289, 0.3839, 0.3882, 0.3356, 0.3513, 0.3211, 0.2982, 0.4525, 0.4355, 0.3763, 0.3786, 0.3595, 0.3642, 0.4130, 0.3371, 0.3731},
+      { 0.2543, 0.2482, 0.3135, 0.2408, 0.3839, 0.3296, 0.3302, 0.3254, 0.3364, 0.3009, 0.2881, 0.3891, 0.4051, 0.3691, 0.3771, 0.3563, 0.3876, 0.3892, 0.3165, 0.3755},
+      { 0.2335, 0.2417, 0.2972, 0.2526, 0.3882, 0.3302, 0.3710, 0.3425, 0.3553, 0.2989, 0.2735, 0.3873, 0.4039, 0.3973, 0.4194, 0.3943, 0.4969, 0.4203, 0.3301, 0.4187},
+      { 0.2806, 0.2635, 0.3271, 0.2511, 0.3356, 0.3254, 0.3425, 0.3599, 0.3367, 0.3099, 0.2739, 0.3714, 0.3998, 0.3154, 0.3130, 0.2961, 0.3298, 0.3576, 0.2833, 0.3332},
+      { 0.2753, 0.2653, 0.3234, 0.2594, 0.3513, 0.3364, 0.3553, 0.3367, 0.3384, 0.2927, 0.2868, 0.3910, 0.4406, 0.3272, 0.3333, 0.3085, 0.2899, 0.3571, 0.3016, 0.3322},
+      { 0.2298, 0.2011, 0.2830, 0.1918, 0.3211, 0.3009, 0.2989, 0.3099, 0.2927, 0.2953, 0.2731, 0.3835, 0.3984, 0.3287, 0.3279, 0.3168, 0.3168, 0.3801, 0.3077, 0.3625},
+      { 0.2248, 0.2208, 0.2818, 0.1922, 0.2982, 0.2881, 0.2735, 0.2739, 0.2868, 0.2731, 0.2536, 0.3990, 0.4351, 0.2819, 0.3015, 0.2903, 0.2909, 0.3515, 0.2761, 0.3375},
+      { 0.3375, 0.3377, 0.4093, 0.3502, 0.4525, 0.3891, 0.3873, 0.3714, 0.3910, 0.3835, 0.3990, 0.4925, 0.5280, 0.4616, 0.4743, 0.4622, 0.4393, 0.5225, 0.4049, 0.4626},
+      { 0.3300, 0.3528, 0.4183, 0.3306, 0.4355, 0.4051, 0.4039, 0.3998, 0.4406, 0.3984, 0.4351, 0.5280, 0.6094, 0.4816, 0.4929, 0.4877, 0.4766, 0.5456, 0.4184, 0.5066},
+      { 0.2247, 0.2569, 0.3113, 0.2608, 0.3763, 0.3691, 0.3973, 0.3154, 0.3272, 0.3287, 0.2819, 0.4616, 0.4816, 0.4802, 0.4910, 0.4718, 0.4648, 0.4985, 0.4162, 0.4751},
+      { 0.2266, 0.2516, 0.3178, 0.2624, 0.3786, 0.3771, 0.4194, 0.3130, 0.3333, 0.3279, 0.3015, 0.4743, 0.4929, 0.4910, 0.5159, 0.4949, 0.4647, 0.5111, 0.4307, 0.4908},
+      { 0.2182, 0.2334, 0.3088, 0.2453, 0.3595, 0.3563, 0.3943, 0.2961, 0.3085, 0.3168, 0.2903, 0.4622, 0.4877, 0.4718, 0.4949, 0.4889, 0.4398, 0.5085, 0.4195, 0.4602},
+      { 0.2131, 0.2002, 0.2582, 0.1979, 0.3642, 0.3876, 0.4969, 0.3298, 0.2899, 0.3168, 0.2909, 0.4393, 0.4766, 0.4648, 0.4647, 0.4398, 0.5017, 0.4793, 0.3989, 0.5200},
+      { 0.2532, 0.2693, 0.3512, 0.2783, 0.4130, 0.3892, 0.4203, 0.3576, 0.3571, 0.3801, 0.3515, 0.5225, 0.5456, 0.4985, 0.5111, 0.5085, 0.4793, 0.5721, 0.4362, 0.5100},
+      { 0.2100, 0.2225, 0.2776, 0.2184, 0.3371, 0.3165, 0.3301, 0.2833, 0.3016, 0.3077, 0.2761, 0.4049, 0.4184, 0.4162, 0.4307, 0.4195, 0.3989, 0.4362, 0.3858, 0.4119},
+      { 0.2404, 0.2328, 0.3040, 0.2266, 0.3731, 0.3755, 0.4187, 0.3332, 0.3322, 0.3625, 0.3375, 0.4626, 0.5066, 0.4751, 0.4908, 0.4602, 0.5200, 0.5100, 0.4119, 0.5565}},
+    {
+      { 0.1978, 0.1830, 0.4258, 0.3533, 0.3286, 0.2703, 0.2460, 0.2891, 0.2847, 0.2609, 0.2533, 0.3388, 0.3345, 0.2519, 0.2569, 0.2426, 0.2696, 0.2259, 0.2436, 0.2629},
+      { 0.1830, 0.2071, 0.4401, 0.3738, 0.3309, 0.2644, 0.2502, 0.2779, 0.2885, 0.2461, 0.2337, 0.3349, 0.3484, 0.2782, 0.2777, 0.2568, 0.2674, 0.2353, 0.2517, 0.2715},
+      { 0.4258, 0.4401, 0.3183, 0.2552, 0.3409, 0.3270, 0.3107, 0.3299, 0.3504, 0.3111, 0.3065, 0.3955, 0.4189, 0.3420, 0.3463, 0.3313, 0.3448, 0.3240, 0.3090, 0.3405},
+      { 0.3533, 0.3738, 0.2552, 0.2152, 0.2705, 0.2675, 0.2696, 0.2723, 0.2956, 0.2403, 0.2243, 0.3423, 0.3459, 0.2994, 0.2957, 0.2709, 0.2724, 0.2635, 0.2594, 0.2731},
+      { 0.3286, 0.3309, 0.3409, 0.2705, 0.4163, 0.3891, 0.3883, 0.3496, 0.3441, 0.3242, 0.3156, 0.4508, 0.4657, 0.3993, 0.3967, 0.3764, 0.4142, 0.3795, 0.3524, 0.4189},
+      { 0.2703, 0.2644, 0.3270, 0.2675, 0.3891, 0.3409, 0.3310, 0.3417, 0.3302, 0.3193, 0.2973, 0.4135, 0.4412, 0.3566, 0.3653, 0.3539, 0.3949, 0.3896, 0.3281, 0.3880},
+      { 0.2460, 0.2502, 0.3107, 0.2696, 0.3883, 0.3310, 0.3548, 0.3563, 0.3191, 0.2905, 0.2836, 0.4498, 0.4508, 0.3999, 0.4110, 0.3889, 0.4203, 0.4947, 0.3293, 0.4062},
+      { 0.2891, 0.2779, 0.3299, 0.2723, 0.3496, 0.3417, 0.3563, 0.3883, 0.3467, 0.3157, 0.3156, 0.3783, 0.4041, 0.3317, 0.3359, 0.3158, 0.3799, 0.3294, 0.3059, 0.3525},
+      { 0.2847, 0.2885, 0.3504, 0.2956, 0.3441, 0.3302, 0.3191, 0.3467, 0.3503, 0.3046, 0.3108, 0.3826, 0.4107, 0.3317, 0.3376, 0.3227, 0.3548, 0.3202, 0.3099, 0.3513},
+      { 0.2609, 0.2461, 0.3111, 0.2403, 0.3242, 0.3193, 0.2905, 0.3157, 0.3046, 0.3159, 0.2947, 0.3685, 0.3914, 0.3263, 0.3413, 0.3381, 0.3847, 0.3210, 0.3168, 0.3638},
+      { 0.2533, 0.2337, 0.3065, 0.2243, 0.3156, 0.2973, 0.2836, 0.3156, 0.3108, 0.2947, 0.3170, 0.3832, 0.4093, 0.3015, 0.3114, 0.3046, 0.3429, 0.3083, 0.2890, 0.3658},
+      { 0.3388, 0.3349, 0.3955, 0.3423, 0.4508, 0.4135, 0.4498, 0.3783, 0.3826, 0.3685, 0.3832, 0.4726, 0.4972, 0.4861, 0.4897, 0.4755, 0.4951, 0.4793, 0.4198, 0.4914},
+      { 0.3345, 0.3484, 0.4189, 0.3459, 0.4657, 0.4412, 0.4508, 0.4041, 0.4107, 0.3914, 0.4093, 0.4972, 0.5172, 0.4901, 0.5061, 0.4996, 0.5488, 0.5092, 0.4342, 0.5101},
+      { 0.2519, 0.2782, 0.3420, 0.2994, 0.3993, 0.3566, 0.3999, 0.3317, 0.3317, 0.3263, 0.3015, 0.4861, 0.4901, 0.5085, 0.5184, 0.4943, 0.4904, 0.5021, 0.4168, 0.4908},
+      { 0.2569, 0.2777, 0.3463, 0.2957, 0.3967, 0.3653, 0.4110, 0.3359, 0.3376, 0.3413, 0.3114, 0.4897, 0.5061, 0.5184, 0.5438, 0.5182, 0.5071, 0.5017, 0.4302, 0.4958},
+      { 0.2426, 0.2568, 0.3313, 0.2709, 0.3764, 0.3539, 0.3889, 0.3158, 0.3227, 0.3381, 0.3046, 0.4755, 0.4996, 0.4943, 0.5182, 0.5161, 0.4972, 0.4871, 0.4209, 0.4697},
+      { 0.2696, 0.2674, 0.3448, 0.2724, 0.4142, 0.3949, 0.4203, 0.3799, 0.3548, 0.3847, 0.3429, 0.4951, 0.5488, 0.4904, 0.5071, 0.4972, 0.5488, 0.5124, 0.4356, 0.5019},
+      { 0.2259, 0.2353, 0.3240, 0.2635, 0.3795, 0.3896, 0.4947, 0.3294, 0.3202, 0.3210, 0.3083, 0.4793, 0.5092, 0.5021, 0.5017, 0.4871, 0.5124, 0.5117, 0.4260, 0.5250},
+      { 0.2436, 0.2517, 0.3090, 0.2594, 0.3524, 0.3281, 0.3293, 0.3059, 0.3099, 0.3168, 0.2890, 0.4198, 0.4342, 0.4168, 0.4302, 0.4209, 0.4356, 0.4260, 0.3721, 0.4173},
+      { 0.2629, 0.2715, 0.3405, 0.2731, 0.4189, 0.3880, 0.4062, 0.3525, 0.3513, 0.3638, 0.3658, 0.4914, 0.5101, 0.4908, 0.4958, 0.4697, 0.5019, 0.5250, 0.4173, 0.5916}},
+    {
+      { 0.0889, 0.0896, 0.3544, 0.3035, 0.2580, 0.1804, 0.1467, 0.2170, 0.2307, 0.1550, 0.1498, 0.2737, 0.2582, 0.1791, 0.1866, 0.1899, 0.1965, 0.2161, 0.1473, 0.1851},
+      { 0.0896, 0.1248, 0.3800, 0.3288, 0.2561, 0.1553, 0.1367, 0.1952, 0.2288, 0.1337, 0.1488, 0.2793, 0.2915, 0.1977, 0.2119, 0.2112, 0.2007, 0.2206, 0.1450, 0.1691},
+      { 0.3544, 0.3800, 0.2400, 0.1809, 0.2743, 0.2353, 0.2171, 0.2543, 0.2725, 0.2098, 0.2267, 0.3610, 0.3769, 0.2815, 0.2969, 0.2922, 0.2701, 0.3189, 0.2167, 0.2630},
+      { 0.3035, 0.3288, 0.1809, 0.1369, 0.2112, 0.1722, 0.1477, 0.1928, 0.2215, 0.1418, 0.1463, 0.3177, 0.2923, 0.2322, 0.2358, 0.2334, 0.2019, 0.2506, 0.1688, 0.1811},
+      { 0.2580, 0.2561, 0.2743, 0.2112, 0.3270, 0.2953, 0.2847, 0.2733, 0.2586, 0.2588, 0.2623, 0.3987, 0.4000, 0.3273, 0.3323, 0.3166, 0.3313, 0.3606, 0.2436, 0.3248},
+      { 0.1804, 0.1553, 0.2353, 0.1722, 0.2953, 0.3112, 0.3229, 0.2703, 0.2321, 0.2705, 0.2388, 0.3151, 0.3263, 0.3306, 0.3269, 0.2938, 0.3303, 0.3282, 0.3046, 0.3819},
+      { 0.1467, 0.1367, 0.2171, 0.1477, 0.2847, 0.3229, 0.3258, 0.2691, 0.2198, 0.2958, 0.2448, 0.3059, 0.3195, 0.3485, 0.3340, 0.3008, 0.3301, 0.3293, 0.3886, 0.4001},
+      { 0.2170, 0.1952, 0.2543, 0.1928, 0.2733, 0.2703, 0.2691, 0.2968, 0.2575, 0.2526, 0.2303, 0.3154, 0.3337, 0.2700, 0.2706, 0.2585, 0.3029, 0.2968, 0.2365, 0.3024},
+      { 0.2307, 0.2288, 0.2725, 0.2215, 0.2586, 0.2321, 0.2198, 0.2575, 0.2697, 0.2108, 0.2155, 0.3151, 0.3529, 0.2644, 0.2748, 0.2748, 0.2755, 0.3053, 0.2083, 0.2519},
+      { 0.1550, 0.1337, 0.2098, 0.1418, 0.2588, 0.2705, 0.2958, 0.2526, 0.2108, 0.2675, 0.2026, 0.3175, 0.3219, 0.3206, 0.3175, 0.3035, 0.3393, 0.3444, 0.2557, 0.3692},
+      { 0.1498, 0.1488, 0.2267, 0.1463, 0.2623, 0.2388, 0.2448, 0.2303, 0.2155, 0.2026, 0.2160, 0.3391, 0.3472, 0.2514, 0.2656, 0.2522, 0.2947, 0.3109, 0.2068, 0.2789},
+      { 0.2737, 0.2793, 0.3610, 0.3177, 0.3987, 0.3151, 0.3059, 0.3154, 0.3151, 0.3175, 0.3391, 0.4176, 0.4575, 0.3959, 0.4139, 0.4112, 0.4231, 0.4574, 0.3141, 0.3848},
+      { 0.2582, 0.2915, 0.3769, 0.2923, 0.4000, 0.3263, 0.3195, 0.3337, 0.3529, 0.3219, 0.3472, 0.4575, 0.4809, 0.3933, 0.4239, 0.4209, 0.4491, 0.4879, 0.3037, 0.4218},
+      { 0.1791, 0.1977, 0.2815, 0.2322, 0.3273, 0.3306, 0.3485, 0.2700, 0.2644, 0.3206, 0.2514, 0.3959, 0.3933, 0.4399, 0.4363, 0.4051, 0.3979, 0.4262, 0.4003, 0.4448},
+      { 0.1866, 0.2119, 0.2969, 0.2358, 0.3323, 0.3269, 0.3340, 0.2706, 0.2748, 0.3175, 0.2656, 0.4139, 0.4239, 0.4363, 0.4446, 0.4230, 0.4114, 0.4385, 0.3821, 0.4356},
+      { 0.1899, 0.2112, 0.2922, 0.2334, 0.3166, 0.2938, 0.3008, 0.2585, 0.2748, 0.3035, 0.2522, 0.4112, 0.4209, 0.4051, 0.4230, 0.4192, 0.4011, 0.4388, 0.3429, 0.3921},
+      { 0.1965, 0.2007, 0.2701, 0.2019, 0.3313, 0.3303, 0.3301, 0.3029, 0.2755, 0.3393, 0.2947, 0.4231, 0.4491, 0.3979, 0.4114, 0.4011, 0.4535, 0.4546, 0.3579, 0.4382},
+      { 0.2161, 0.2206, 0.3189, 0.2506, 0.3606, 0.3282, 0.3293, 0.2968, 0.3053, 0.3444, 0.3109, 0.4574, 0.4879, 0.4262, 0.4385, 0.4388, 0.4546, 0.4935, 0.3485, 0.4486},
+      { 0.1473, 0.1450, 0.2167, 0.1688, 0.2436, 0.3046, 0.3886, 0.2365, 0.2083, 0.2557, 0.2068, 0.3141, 0.3037, 0.4003, 0.3821, 0.3429, 0.3579, 0.3485, 0.3611, 0.4178},
+      { 0.1851, 0.1691, 0.2630, 0.1811, 0.3248, 0.3819, 0.4001, 0.3024, 0.2519, 0.3692, 0.2789, 0.3848, 0.4218, 0.4448, 0.4356, 0.3921, 0.4382, 0.4486, 0.4178, 0.5740}},
+    {
+      { 0.1827, 0.1543, 0.4072, 0.3405, 0.3384, 0.2686, 0.2807, 0.2793, 0.2598, 0.2515, 0.2436, 0.3368, 0.3260, 0.2547, 0.2317, 0.2512, 0.2782, 0.2650, 0.2041, 0.1778},
+      { 0.1543, 0.1782, 0.4304, 0.3710, 0.3385, 0.2384, 0.2529, 0.2499, 0.2775, 0.2140, 0.2078, 0.3298, 0.3317, 0.2666, 0.2542, 0.2480, 0.2439, 0.2643, 0.1945, 0.1698},
+      { 0.4072, 0.4304, 0.3060, 0.2476, 0.3400, 0.3067, 0.3112, 0.3143, 0.3338, 0.2683, 0.2983, 0.4168, 0.4285, 0.3305, 0.3407, 0.3285, 0.3261, 0.3552, 0.2686, 0.2679},
+      { 0.3405, 0.3710, 0.2476, 0.1973, 0.2675, 0.2359, 0.2546, 0.2333, 0.2785, 0.1968, 0.2000, 0.3636, 0.3440, 0.2820, 0.2801, 0.2633, 0.2559, 0.3064, 0.2106, 0.2007},
+      { 0.3384, 0.3385, 0.3400, 0.2675, 0.3819, 0.3886, 0.4055, 0.3302, 0.3375, 0.3325, 0.3137, 0.4602, 0.4613, 0.3764, 0.3936, 0.3670, 0.3761, 0.4069, 0.3176, 0.3587},
+      { 0.2686, 0.2384, 0.3067, 0.2359, 0.3886, 0.4052, 0.4059, 0.3572, 0.3116, 0.3349, 0.3081, 0.3779, 0.4118, 0.3972, 0.3813, 0.3490, 0.3954, 0.3847, 0.3692, 0.3562},
+      { 0.2807, 0.2529, 0.3112, 0.2546, 0.4055, 0.4059, 0.4503, 0.4437, 0.3247, 0.3484, 0.3207, 0.3852, 0.3918, 0.4462, 0.4269, 0.3953, 0.4187, 0.4062, 0.4001, 0.4333},
+      { 0.2793, 0.2499, 0.3143, 0.2333, 0.3302, 0.3572, 0.4437, 0.5319, 0.3098, 0.3328, 0.2921, 0.3650, 0.3830, 0.3556, 0.3383, 0.3098, 0.3848, 0.3413, 0.2937, 0.2950},
+      { 0.2598, 0.2775, 0.3338, 0.2785, 0.3375, 0.3116, 0.3247, 0.3098, 0.3277, 0.2744, 0.2876, 0.3710, 0.4192, 0.3210, 0.3241, 0.3077, 0.3370, 0.3533, 0.2703, 0.2756},
+      { 0.2515, 0.2140, 0.2683, 0.1968, 0.3325, 0.3349, 0.3484, 0.3328, 0.2744, 0.3082, 0.2933, 0.3803, 0.4016, 0.3566, 0.3597, 0.3436, 0.3848, 0.3952, 0.3121, 0.2954},
+      { 0.2436, 0.2078, 0.2983, 0.2000, 0.3137, 0.3081, 0.3207, 0.2921, 0.2876, 0.2933, 0.2768, 0.3990, 0.4308, 0.2998, 0.3186, 0.3167, 0.3565, 0.3541, 0.2924, 0.2063},
+      { 0.3368, 0.3298, 0.4168, 0.3636, 0.4602, 0.3779, 0.3852, 0.3650, 0.3710, 0.3803, 0.3990, 0.4568, 0.5248, 0.4430, 0.4584, 0.4462, 0.4690, 0.4980, 0.3869, 0.3878},
+      { 0.3260, 0.3317, 0.4285, 0.3440, 0.4613, 0.4118, 0.3918, 0.3830, 0.4192, 0.4016, 0.4308, 0.5248, 0.5467, 0.4499, 0.4623, 0.4605, 0.5101, 0.5225, 0.3883, 0.4153},
+      { 0.2547, 0.2666, 0.3305, 0.2820, 0.3764, 0.3972, 0.4462, 0.3556, 0.3210, 0.3566, 0.2998, 0.4430, 0.4499, 0.5110, 0.5002, 0.4614, 0.4549, 0.4850, 0.4560, 0.3928},
+      { 0.2317, 0.2542, 0.3407, 0.2801, 0.3936, 0.3813, 0.4269, 0.3383, 0.3241, 0.3597, 0.3186, 0.4584, 0.4623, 0.5002, 0.5147, 0.4758, 0.4655, 0.4916, 0.4457, 0.3798},
+      { 0.2512, 0.2480, 0.3285, 0.2633, 0.3670, 0.3490, 0.3953, 0.3098, 0.3077, 0.3436, 0.3167, 0.4462, 0.4605, 0.4614, 0.4758, 0.4665, 0.4552, 0.4881, 0.4084, 0.3474},
+      { 0.2782, 0.2439, 0.3261, 0.2559, 0.3761, 0.3954, 0.4187, 0.3848, 0.3370, 0.3848, 0.3565, 0.4690, 0.5101, 0.4549, 0.4655, 0.4552, 0.5201, 0.5187, 0.4178, 0.4202},
+      { 0.2650, 0.2643, 0.3552, 0.3064, 0.4069, 0.3847, 0.4062, 0.3413, 0.3533, 0.3952, 0.3541, 0.4980, 0.5225, 0.4850, 0.4916, 0.4881, 0.5187, 0.5496, 0.4256, 0.4089},
+      { 0.2041, 0.1945, 0.2686, 0.2106, 0.3176, 0.3692, 0.4001, 0.2937, 0.2703, 0.3121, 0.2924, 0.3869, 0.3883, 0.4560, 0.4457, 0.4084, 0.4178, 0.4256, 0.4156, 0.3459},
+      { 0.1778, 0.1698, 0.2679, 0.2007, 0.3587, 0.3562, 0.4333, 0.2950, 0.2756, 0.2954, 0.2063, 0.3878, 0.4153, 0.3928, 0.3798, 0.3474, 0.4202, 0.4089, 0.3459, 0.5264}}},
+  {
+    {
+      { 0.2275, 0.1321, 0.3720, 0.3159, 0.3885, 0.2889, 0.2945, 0.4737, 0.2636, 0.2316, 0.1975, 0.3288, 0.3336, 0.2868, 0.2889, 0.2648, 0.2982, 0.2923, 0.2244, 0.3623},
+      { 0.1321, 0.1598, 0.3855, 0.3414, 0.2845, 0.2364, 0.2402, 0.2299, 0.2537, 0.1659, 0.1991, 0.3005, 0.3063, 0.2530, 0.2677, 0.2470, 0.2534, 0.2577, 0.2390, 0.2629},
+      { 0.3720, 0.3855, 0.2807, 0.2166, 0.2871, 0.2571, 0.2735, 0.2273, 0.2917, 0.2320, 0.2419, 0.3714, 0.3675, 0.2918, 0.3060, 0.3080, 0.3146, 0.3397, 0.2622, 0.2855},
+      { 0.3159, 0.3414, 0.2166, 0.1744, 0.2213, 0.2083, 0.2259, 0.1845, 0.2450, 0.1738, 0.1718, 0.3001, 0.2784, 0.2347, 0.2423, 0.2379, 0.2333, 0.2376, 0.2178, 0.2080},
+      { 0.3885, 0.2845, 0.2871, 0.2213, 0.3468, 0.2906, 0.2973, 0.2996, 0.2877, 0.2499, 0.2407, 0.4065, 0.4018, 0.3068, 0.3126, 0.3056, 0.3377, 0.3620, 0.2300, 0.3909},
+      { 0.2889, 0.2364, 0.2571, 0.2083, 0.2906, 0.2315, 0.2405, 0.2547, 0.2452, 0.2003, 0.2004, 0.3029, 0.3201, 0.2440, 0.2506, 0.2395, 0.2774, 0.2818, 0.2107, 0.2712},
+      { 0.2945, 0.2402, 0.2735, 0.2259, 0.2973, 0.2405, 0.2679, 0.2372, 0.2694, 0.1947, 0.2147, 0.3088, 0.3090, 0.2778, 0.2824, 0.2607, 0.2806, 0.2891, 0.2170, 0.2793},
+      { 0.4737, 0.2299, 0.2273, 0.1845, 0.2996, 0.2547, 0.2372, 0.3337, 0.2444, 0.2260, 0.1810, 0.3032, 0.3115, 0.2415, 0.2506, 0.2298, 0.2595, 0.2908, 0.2040, 0.3134},
+      { 0.2636, 0.2537, 0.2917, 0.2450, 0.2877, 0.2452, 0.2694, 0.2444, 0.2782, 0.2010, 0.2297, 0.3134, 0.3457, 0.2693, 0.2939, 0.2888, 0.2841, 0.3040, 0.2378, 0.2630},
+      { 0.2316, 0.1659, 0.2320, 0.1738, 0.2499, 0.2003, 0.1947, 0.2260, 0.2010, 0.1857, 0.1926, 0.2672, 0.2624, 0.2052, 0.2045, 0.2055, 0.2417, 0.2496, 0.1797, 0.2787},
+      { 0.1975, 0.1991, 0.2419, 0.1718, 0.2407, 0.2004, 0.2147, 0.1810, 0.2297, 0.1926, 0.2424, 0.3188, 0.3292, 0.2224, 0.2382, 0.2371, 0.2594, 0.2872, 0.2025, 0.2515},
+      { 0.3288, 0.3005, 0.3714, 0.3001, 0.4065, 0.3029, 0.3088, 0.3032, 0.3134, 0.2672, 0.3188, 0.4596, 0.4832, 0.3746, 0.3936, 0.3776, 0.4037, 0.4539, 0.2855, 0.3814},
+      { 0.3336, 0.3063, 0.3675, 0.2784, 0.4018, 0.3201, 0.3090, 0.3115, 0.3457, 0.2624, 0.3292, 0.4832, 0.5272, 0.3594, 0.3970, 0.3943, 0.4502, 0.4895, 0.2895, 0.3729},
+      { 0.2868, 0.2530, 0.2918, 0.2347, 0.3068, 0.2440, 0.2778, 0.2415, 0.2693, 0.2052, 0.2224, 0.3746, 0.3594, 0.3366, 0.3556, 0.3258, 0.3359, 0.3617, 0.2414, 0.3046},
+      { 0.2889, 0.2677, 0.3060, 0.2423, 0.3126, 0.2506, 0.2824, 0.2506, 0.2939, 0.2045, 0.2382, 0.3936, 0.3970, 0.3556, 0.3750, 0.3470, 0.3495, 0.3719, 0.2526, 0.3331},
+      { 0.2648, 0.2470, 0.3080, 0.2379, 0.3056, 0.2395, 0.2607, 0.2298, 0.2888, 0.2055, 0.2371, 0.3776, 0.3943, 0.3258, 0.3470, 0.3431, 0.3483, 0.3716, 0.2531, 0.2952},
+      { 0.2982, 0.2534, 0.3146, 0.2333, 0.3377, 0.2774, 0.2806, 0.2595, 0.2841, 0.2417, 0.2594, 0.4037, 0.4502, 0.3359, 0.3495, 0.3483, 0.3781, 0.4121, 0.2642, 0.3671},
+      { 0.2923, 0.2577, 0.3397, 0.2376, 0.3620, 0.2818, 0.2891, 0.2908, 0.3040, 0.2496, 0.2872, 0.4539, 0.4895, 0.3617, 0.3719, 0.3716, 0.4121, 0.4637, 0.2740, 0.3801},
+      { 0.2244, 0.2390, 0.2622, 0.2178, 0.2300, 0.2107, 0.2170, 0.2040, 0.2378, 0.1797, 0.2025, 0.2855, 0.2895, 0.2414, 0.2526, 0.2531, 0.2642, 0.2740, 0.2570, 0.2298},
+      { 0.3623, 0.2629, 0.2855, 0.2080, 0.3909, 0.2712, 0.2793, 0.3134, 0.2630, 0.2787, 0.2515, 0.3814, 0.3729, 0.3046, 0.3331, 0.2952, 0.3671, 0.3801, 0.2298, 0.5541}},
+    {
+      { 0.1462, 0.1685, 0.3582, 0.3100, 0.2999, 0.2325, 0.2328, 0.2299, 0.2721, 0.1728, 0.1776, 0.2916, 0.2767, 0.2171, 0.2237, 0.2204, 0.2528, 0.2376, 0.2134, 0.2629},
+      { 0.1685, 0.1538, 0.3715, 0.3192, 0.3327, 0.2592, 0.2535, 0.4106, 0.2757, 0.1691, 0.1783, 0.3153, 0.3145, 0.2749, 0.2943, 0.2775, 0.2781, 0.2685, 0.2548, 0.3258},
+      { 0.3582, 0.3715, 0.2541, 0.1962, 0.2553, 0.2374, 0.2528, 0.1885, 0.2814, 0.2002, 0.2175, 0.3514, 0.3489, 0.2820, 0.3032, 0.3113, 0.2880, 0.3118, 0.2605, 0.2407},
+      { 0.3100, 0.3192, 0.1962, 0.1646, 0.1979, 0.1969, 0.2129, 0.1521, 0.2342, 0.1442, 0.1590, 0.2875, 0.2721, 0.2274, 0.2414, 0.2430, 0.2289, 0.2317, 0.2235, 0.1670},
+      { 0.2999, 0.3327, 0.2553, 0.1979, 0.3088, 0.2553, 0.2703, 0.2481, 0.2665, 0.2091, 0.2160, 0.3618, 0.3704, 0.2911, 0.3013, 0.2979, 0.3045, 0.3312, 0.2212, 0.3462},
+      { 0.2325, 0.2592, 0.2374, 0.1969, 0.2553, 0.2201, 0.2160, 0.2024, 0.2352, 0.1718, 0.1776, 0.2741, 0.2816, 0.2206, 0.2276, 0.2221, 0.2477, 0.2623, 0.2052, 0.2470},
+      { 0.2328, 0.2535, 0.2528, 0.2129, 0.2703, 0.2160, 0.2611, 0.2165, 0.2526, 0.1665, 0.1845, 0.2889, 0.2969, 0.2633, 0.2741, 0.2489, 0.2635, 0.2779, 0.1952, 0.2499},
+      { 0.2299, 0.4106, 0.1885, 0.1521, 0.2481, 0.2024, 0.2165, 0.2544, 0.2673, 0.1942, 0.1791, 0.2658, 0.2734, 0.2258, 0.2302, 0.2128, 0.2513, 0.2532, 0.1581, 0.2653},
+      { 0.2721, 0.2757, 0.2814, 0.2342, 0.2665, 0.2352, 0.2526, 0.2673, 0.2774, 0.1659, 0.2154, 0.3063, 0.3408, 0.2587, 0.2853, 0.2857, 0.2853, 0.2919, 0.2436, 0.2330},
+      { 0.1728, 0.1691, 0.2002, 0.1442, 0.2091, 0.1718, 0.1665, 0.1942, 0.1659, 0.1541, 0.1659, 0.2453, 0.2487, 0.1784, 0.1835, 0.1866, 0.2140, 0.2284, 0.1566, 0.2410},
+      { 0.1776, 0.1783, 0.2175, 0.1590, 0.2160, 0.1776, 0.1845, 0.1791, 0.2154, 0.1659, 0.2145, 0.3027, 0.3318, 0.2061, 0.2165, 0.2190, 0.2455, 0.2737, 0.2020, 0.2114},
+      { 0.2916, 0.3153, 0.3514, 0.2875, 0.3618, 0.2741, 0.2889, 0.2658, 0.3063, 0.2453, 0.3027, 0.4202, 0.4465, 0.3518, 0.3874, 0.3748, 0.3971, 0.4206, 0.2648, 0.3710},
+      { 0.2767, 0.3145, 0.3489, 0.2721, 0.3704, 0.2816, 0.2969, 0.2734, 0.3408, 0.2487, 0.3318, 0.4465, 0.4961, 0.3477, 0.3661, 0.3757, 0.4201, 0.4456, 0.2716, 0.3666},
+      { 0.2171, 0.2749, 0.2820, 0.2274, 0.2911, 0.2206, 0.2633, 0.2258, 0.2587, 0.1784, 0.2061, 0.3518, 0.3477, 0.3339, 0.3431, 0.3173, 0.3262, 0.3586, 0.2290, 0.2965},
+      { 0.2237, 0.2943, 0.3032, 0.2414, 0.3013, 0.2276, 0.2741, 0.2302, 0.2853, 0.1835, 0.2165, 0.3874, 0.3661, 0.3431, 0.3641, 0.3480, 0.3471, 0.3639, 0.2430, 0.3240},
+      { 0.2204, 0.2775, 0.3113, 0.2430, 0.2979, 0.2221, 0.2489, 0.2128, 0.2857, 0.1866, 0.2190, 0.3748, 0.3757, 0.3173, 0.3480, 0.3428, 0.3412, 0.3700, 0.2452, 0.2976},
+      { 0.2528, 0.2781, 0.2880, 0.2289, 0.3045, 0.2477, 0.2635, 0.2513, 0.2853, 0.2140, 0.2455, 0.3971, 0.4201, 0.3262, 0.3471, 0.3412, 0.3558, 0.4081, 0.2524, 0.3448},
+      { 0.2376, 0.2685, 0.3118, 0.2317, 0.3312, 0.2623, 0.2779, 0.2532, 0.2919, 0.2284, 0.2737, 0.4206, 0.4456, 0.3586, 0.3639, 0.3700, 0.4081, 0.4433, 0.2589, 0.3945},
+      { 0.2134, 0.2548, 0.2605, 0.2235, 0.2212, 0.2052, 0.1952, 0.1581, 0.2436, 0.1566, 0.2020, 0.2648, 0.2716, 0.2290, 0.2430, 0.2452, 0.2524, 0.2589, 0.2751, 0.2129},
+      { 0.2629, 0.3258, 0.2407, 0.1670, 0.3462, 0.2470, 0.2499, 0.2653, 0.2330, 0.2410, 0.2114, 0.3710, 0.3666, 0.2965, 0.3240, 0.2976, 0.3448, 0.3945, 0.2129, 0.5193}},
+    {
+      { 0.1629, 0.1517, 0.4045, 0.3538, 0.3149, 0.2447, 0.2434, 0.2273, 0.2644, 0.2174, 0.2236, 0.3044, 0.2968, 0.2323, 0.2457, 0.2351, 0.2479, 0.2593, 0.2196, 0.2622},
+      { 0.1517, 0.1889, 0.3688, 0.3624, 0.2913, 0.2354, 0.2427, 0.1885, 0.2691, 0.1878, 0.2273, 0.3156, 0.3369, 0.2519, 0.2660, 0.2783, 0.2708, 0.2789, 0.2519, 0.2312},
+      { 0.4045, 0.3688, 0.3231, 0.2549, 0.4041, 0.3640, 0.3698, 0.5158, 0.3524, 0.3122, 0.3030, 0.4359, 0.4407, 0.3640, 0.3840, 0.3824, 0.3875, 0.4138, 0.3259, 0.4099},
+      { 0.3538, 0.3624, 0.2549, 0.2315, 0.2981, 0.2748, 0.2848, 0.2874, 0.3008, 0.2501, 0.2321, 0.3665, 0.3551, 0.2892, 0.3063, 0.3068, 0.3026, 0.3190, 0.2712, 0.2860},
+      { 0.3149, 0.2913, 0.4041, 0.2981, 0.3638, 0.3245, 0.3387, 0.3368, 0.3165, 0.2817, 0.2938, 0.4196, 0.4104, 0.3508, 0.3463, 0.3426, 0.3613, 0.3946, 0.2965, 0.4052},
+      { 0.2447, 0.2354, 0.3640, 0.2748, 0.3245, 0.2635, 0.2657, 0.2770, 0.2788, 0.2508, 0.2528, 0.3347, 0.3448, 0.2777, 0.2803, 0.2832, 0.3002, 0.3258, 0.2483, 0.3175},
+      { 0.2434, 0.2427, 0.3698, 0.2848, 0.3387, 0.2657, 0.3068, 0.2778, 0.3035, 0.2447, 0.2530, 0.3409, 0.3583, 0.3078, 0.3217, 0.3043, 0.3271, 0.3299, 0.2543, 0.3143},
+      { 0.2273, 0.1885, 0.5158, 0.2874, 0.3368, 0.2770, 0.2778, 0.3231, 0.2993, 0.2647, 0.2396, 0.3292, 0.3524, 0.2814, 0.2912, 0.2799, 0.3114, 0.3257, 0.2255, 0.3244},
+      { 0.2644, 0.2691, 0.3524, 0.3008, 0.3165, 0.2788, 0.3035, 0.2993, 0.3185, 0.2554, 0.2817, 0.3500, 0.3919, 0.3043, 0.3308, 0.3314, 0.3415, 0.3524, 0.2833, 0.3120},
+      { 0.2174, 0.1878, 0.3122, 0.2501, 0.2817, 0.2508, 0.2447, 0.2647, 0.2554, 0.2475, 0.2596, 0.3148, 0.3289, 0.2614, 0.2676, 0.2555, 0.2889, 0.3110, 0.2395, 0.3225},
+      { 0.2236, 0.2273, 0.3030, 0.2321, 0.2938, 0.2528, 0.2530, 0.2396, 0.2817, 0.2596, 0.2901, 0.3711, 0.4001, 0.2724, 0.2852, 0.2923, 0.3245, 0.3496, 0.2614, 0.3125},
+      { 0.3044, 0.3156, 0.4359, 0.3665, 0.4196, 0.3347, 0.3409, 0.3292, 0.3500, 0.3148, 0.3711, 0.4705, 0.5008, 0.4055, 0.4164, 0.4198, 0.4537, 0.4779, 0.3348, 0.4239},
+      { 0.2968, 0.3369, 0.4407, 0.3551, 0.4104, 0.3448, 0.3583, 0.3524, 0.3919, 0.3289, 0.4001, 0.5008, 0.5377, 0.4123, 0.4530, 0.4322, 0.4956, 0.5093, 0.3434, 0.4549},
+      { 0.2323, 0.2519, 0.3640, 0.2892, 0.3508, 0.2777, 0.3078, 0.2814, 0.3043, 0.2614, 0.2724, 0.4055, 0.4123, 0.3578, 0.3796, 0.3604, 0.3810, 0.3930, 0.2912, 0.3423},
+      { 0.2457, 0.2660, 0.3840, 0.3063, 0.3463, 0.2803, 0.3217, 0.2912, 0.3308, 0.2676, 0.2852, 0.4164, 0.4530, 0.3796, 0.3928, 0.3873, 0.3889, 0.4134, 0.3059, 0.3674},
+      { 0.2351, 0.2783, 0.3824, 0.3068, 0.3426, 0.2832, 0.3043, 0.2799, 0.3314, 0.2555, 0.2923, 0.4198, 0.4322, 0.3604, 0.3873, 0.3840, 0.3856, 0.4118, 0.3019, 0.3281},
+      { 0.2479, 0.2708, 0.3875, 0.3026, 0.3613, 0.3002, 0.3271, 0.3114, 0.3415, 0.2889, 0.3245, 0.4537, 0.4956, 0.3810, 0.3889, 0.3856, 0.4664, 0.4530, 0.3125, 0.3822},
+      { 0.2593, 0.2789, 0.4138, 0.3190, 0.3946, 0.3258, 0.3299, 0.3257, 0.3524, 0.3110, 0.3496, 0.4779, 0.5093, 0.3930, 0.4134, 0.4118, 0.4530, 0.4959, 0.3246, 0.4075},
+      { 0.2196, 0.2519, 0.3259, 0.2712, 0.2965, 0.2483, 0.2543, 0.2255, 0.2833, 0.2395, 0.2614, 0.3348, 0.3434, 0.2912, 0.3059, 0.3019, 0.3125, 0.3246, 0.3004, 0.2810},
+      { 0.2622, 0.2312, 0.4099, 0.2860, 0.4052, 0.3175, 0.3143, 0.3244, 0.3120, 0.3225, 0.3125, 0.4239, 0.4549, 0.3423, 0.3674, 0.3281, 0.3822, 0.4075, 0.2810, 0.5660}},
+    {
+      { 0.1044, 0.1063, 0.3651, 0.3376, 0.2768, 0.1900, 0.1970, 0.1845, 0.2328, 0.1628, 0.1680, 0.2680, 0.2501, 0.1782, 0.1910, 0.1877, 0.2039, 0.2136, 0.1793, 0.2087},
+      { 0.1063, 0.1512, 0.3806, 0.3209, 0.2586, 0.1879, 0.2016, 0.1521, 0.2403, 0.1290, 0.1749, 0.2809, 0.2819, 0.2076, 0.2278, 0.2372, 0.2204, 0.2302, 0.2197, 0.1808},
+      { 0.3651, 0.3806, 0.2908, 0.2321, 0.3032, 0.2690, 0.2866, 0.2874, 0.3093, 0.2579, 0.2622, 0.3784, 0.3774, 0.3062, 0.3329, 0.3429, 0.3152, 0.3484, 0.2835, 0.3247},
+      { 0.3376, 0.3209, 0.2321, 0.1894, 0.3078, 0.2651, 0.2806, 0.4206, 0.2707, 0.2285, 0.2026, 0.3374, 0.3091, 0.2755, 0.2951, 0.2776, 0.2760, 0.2888, 0.2499, 0.3093},
+      { 0.2768, 0.2586, 0.3032, 0.3078, 0.3232, 0.2575, 0.2778, 0.2604, 0.2707, 0.2281, 0.2481, 0.3721, 0.3782, 0.2962, 0.3052, 0.2969, 0.3048, 0.3416, 0.2427, 0.3047},
+      { 0.1900, 0.1879, 0.2690, 0.2651, 0.2575, 0.2074, 0.2083, 0.2048, 0.2261, 0.1795, 0.1914, 0.2674, 0.2713, 0.2155, 0.2218, 0.2133, 0.2220, 0.2588, 0.1904, 0.2300},
+      { 0.1970, 0.2016, 0.2866, 0.2806, 0.2778, 0.2083, 0.2465, 0.2290, 0.2471, 0.1828, 0.1969, 0.2806, 0.2870, 0.2564, 0.2607, 0.2425, 0.2511, 0.2723, 0.1928, 0.2333},
+      { 0.1845, 0.1521, 0.2874, 0.4206, 0.2604, 0.2048, 0.2290, 0.2591, 0.2363, 0.1984, 0.2035, 0.2853, 0.2880, 0.2362, 0.2463, 0.2349, 0.2656, 0.2798, 0.1666, 0.2781},
+      { 0.2328, 0.2403, 0.3093, 0.2707, 0.2707, 0.2261, 0.2471, 0.2363, 0.2832, 0.1906, 0.2266, 0.3085, 0.3343, 0.2527, 0.2734, 0.2822, 0.2830, 0.2948, 0.2376, 0.2171},
+      { 0.1628, 0.1290, 0.2579, 0.2285, 0.2281, 0.1795, 0.1828, 0.1984, 0.1906, 0.1748, 0.1947, 0.2594, 0.2628, 0.2138, 0.2108, 0.2020, 0.2274, 0.2482, 0.1780, 0.2486},
+      { 0.1680, 0.1749, 0.2622, 0.2026, 0.2481, 0.1914, 0.1969, 0.2035, 0.2266, 0.1947, 0.2203, 0.3161, 0.3489, 0.2232, 0.2327, 0.2396, 0.2530, 0.2832, 0.2095, 0.2411},
+      { 0.2680, 0.2809, 0.3784, 0.3374, 0.3721, 0.2674, 0.2806, 0.2853, 0.3085, 0.2594, 0.3161, 0.4077, 0.4306, 0.3571, 0.3759, 0.3651, 0.3984, 0.4141, 0.2751, 0.3485},
+      { 0.2501, 0.2819, 0.3774, 0.3091, 0.3782, 0.2713, 0.2870, 0.2880, 0.3343, 0.2628, 0.3489, 0.4306, 0.4673, 0.3299, 0.3597, 0.3607, 0.4133, 0.4391, 0.2556, 0.3347},
+      { 0.1782, 0.2076, 0.3062, 0.2755, 0.2962, 0.2155, 0.2564, 0.2362, 0.2527, 0.2138, 0.2232, 0.3571, 0.3299, 0.3140, 0.3217, 0.3097, 0.3094, 0.3414, 0.2285, 0.2840},
+      { 0.1910, 0.2278, 0.3329, 0.2951, 0.3052, 0.2218, 0.2607, 0.2463, 0.2734, 0.2108, 0.2327, 0.3759, 0.3597, 0.3217, 0.3435, 0.3400, 0.3190, 0.3649, 0.2402, 0.3001},
+      { 0.1877, 0.2372, 0.3429, 0.2776, 0.2969, 0.2133, 0.2425, 0.2349, 0.2822, 0.2020, 0.2396, 0.3651, 0.3607, 0.3097, 0.3400, 0.3403, 0.3195, 0.3641, 0.2460, 0.2709},
+      { 0.2039, 0.2204, 0.3152, 0.2760, 0.3048, 0.2220, 0.2511, 0.2656, 0.2830, 0.2274, 0.2530, 0.3984, 0.4133, 0.3094, 0.3190, 0.3195, 0.3681, 0.3991, 0.2390, 0.3095},
+      { 0.2136, 0.2302, 0.3484, 0.2888, 0.3416, 0.2588, 0.2723, 0.2798, 0.2948, 0.2482, 0.2832, 0.4141, 0.4391, 0.3414, 0.3649, 0.3641, 0.3991, 0.4361, 0.2574, 0.3435},
+      { 0.1793, 0.2197, 0.2835, 0.2499, 0.2427, 0.1904, 0.1928, 0.1666, 0.2376, 0.1780, 0.2095, 0.2751, 0.2556, 0.2285, 0.2402, 0.2460, 0.2390, 0.2574, 0.2646, 0.2186},
+      { 0.2087, 0.1808, 0.3247, 0.3093, 0.3047, 0.2300, 0.2333, 0.2781, 0.2171, 0.2486, 0.2411, 0.3485, 0.3347, 0.2840, 0.3001, 0.2709, 0.3095, 0.3435, 0.2186, 0.4636}},
+    {
+      { 0.1929, 0.1589, 0.4062, 0.3509, 0.3473, 0.2797, 0.2628, 0.2996, 0.2679, 0.2322, 0.2367, 0.3117, 0.3132, 0.2373, 0.2454, 0.2337, 0.2803, 0.2766, 0.2278, 0.2891},
+      { 0.1589, 0.1752, 0.4157, 0.3680, 0.2073, 0.2509, 0.2507, 0.2481, 0.2628, 0.1932, 0.2349, 0.3032, 0.3259, 0.2622, 0.2662, 0.2612, 0.2667, 0.2779, 0.2503, 0.2567},
+      { 0.4062, 0.4157, 0.3056, 0.2469, 0.2514, 0.3061, 0.3265, 0.3368, 0.3274, 0.2836, 0.2920, 0.4020, 0.3961, 0.3262, 0.3420, 0.3373, 0.3350, 0.3598, 0.3055, 0.3356},
+      { 0.3509, 0.3680, 0.2469, 0.2138, 0.1529, 0.2497, 0.2715, 0.2604, 0.2770, 0.2289, 0.2121, 0.3290, 0.3201, 0.2714, 0.2740, 0.2742, 0.2673, 0.2868, 0.2546, 0.2611},
+      { 0.3473, 0.2073, 0.2514, 0.1529, 0.4827, 0.3630, 0.3580, 0.6056, 0.3068, 0.2687, 0.2637, 0.4315, 0.4622, 0.3623, 0.3649, 0.3483, 0.4169, 0.4123, 0.2720, 0.4877},
+      { 0.2797, 0.2509, 0.3061, 0.2497, 0.3630, 0.2899, 0.3003, 0.3403, 0.2911, 0.2426, 0.2688, 0.3492, 0.3555, 0.2911, 0.3060, 0.2936, 0.3536, 0.3357, 0.2691, 0.3384},
+      { 0.2628, 0.2507, 0.3265, 0.2715, 0.3580, 0.3003, 0.3267, 0.3422, 0.3197, 0.2342, 0.2577, 0.3588, 0.3608, 0.3359, 0.3403, 0.3199, 0.3356, 0.3496, 0.2733, 0.3302},
+      { 0.2996, 0.2481, 0.3368, 0.2604, 0.6056, 0.3403, 0.3422, 0.4280, 0.3687, 0.2981, 0.2744, 0.4409, 0.4205, 0.3405, 0.3243, 0.3111, 0.3828, 0.4233, 0.2927, 0.3618},
+      { 0.2679, 0.2628, 0.3274, 0.2770, 0.3068, 0.2911, 0.3197, 0.3687, 0.3085, 0.2526, 0.2774, 0.3637, 0.3916, 0.3197, 0.3217, 0.3153, 0.3637, 0.3565, 0.2822, 0.3505},
+      { 0.2322, 0.1932, 0.2836, 0.2289, 0.2687, 0.2426, 0.2342, 0.2981, 0.2526, 0.2407, 0.2589, 0.2917, 0.3055, 0.2521, 0.2553, 0.2463, 0.2830, 0.2903, 0.2370, 0.3131},
+      { 0.2367, 0.2349, 0.2920, 0.2121, 0.2637, 0.2688, 0.2577, 0.2744, 0.2774, 0.2589, 0.3069, 0.3497, 0.3974, 0.2864, 0.2903, 0.3077, 0.3601, 0.3415, 0.2667, 0.3142},
+      { 0.3117, 0.3032, 0.4020, 0.3290, 0.4315, 0.3492, 0.3588, 0.4409, 0.3637, 0.2917, 0.3497, 0.4436, 0.5067, 0.4175, 0.4364, 0.4225, 0.4585, 0.4696, 0.3236, 0.4407},
+      { 0.3132, 0.3259, 0.3961, 0.3201, 0.4622, 0.3555, 0.3608, 0.4205, 0.3916, 0.3055, 0.3974, 0.5067, 0.5085, 0.4261, 0.4583, 0.4469, 0.5236, 0.4985, 0.3455, 0.4381},
+      { 0.2373, 0.2622, 0.3262, 0.2714, 0.3623, 0.2911, 0.3359, 0.3405, 0.3197, 0.2521, 0.2864, 0.4175, 0.4261, 0.4160, 0.4339, 0.3974, 0.4204, 0.4195, 0.3262, 0.3792},
+      { 0.2454, 0.2662, 0.3420, 0.2740, 0.3649, 0.3060, 0.3403, 0.3243, 0.3217, 0.2553, 0.2903, 0.4364, 0.4583, 0.4339, 0.4598, 0.4315, 0.4630, 0.4401, 0.3266, 0.4179},
+      { 0.2337, 0.2612, 0.3373, 0.2742, 0.3483, 0.2936, 0.3199, 0.3111, 0.3153, 0.2463, 0.3077, 0.4225, 0.4469, 0.3974, 0.4315, 0.4147, 0.4096, 0.4316, 0.3224, 0.3816},
+      { 0.2803, 0.2667, 0.3350, 0.2673, 0.4169, 0.3536, 0.3356, 0.3828, 0.3637, 0.2830, 0.3601, 0.4585, 0.5236, 0.4204, 0.4630, 0.4096, 0.5024, 0.4863, 0.3470, 0.4359},
+      { 0.2766, 0.2779, 0.3598, 0.2868, 0.4123, 0.3357, 0.3496, 0.4233, 0.3565, 0.2903, 0.3415, 0.4696, 0.4985, 0.4195, 0.4401, 0.4316, 0.4863, 0.4903, 0.3494, 0.4386},
+      { 0.2278, 0.2503, 0.3055, 0.2546, 0.2720, 0.2691, 0.2733, 0.2927, 0.2822, 0.2370, 0.2667, 0.3236, 0.3455, 0.3262, 0.3266, 0.3224, 0.3470, 0.3494, 0.3131, 0.3022},
+      { 0.2891, 0.2567, 0.3356, 0.2611, 0.4877, 0.3384, 0.3302, 0.3618, 0.3505, 0.3131, 0.3142, 0.4407, 0.4381, 0.3792, 0.4179, 0.3816, 0.4359, 0.4386, 0.3022, 0.5448}},
+    {
+      { 0.1268, 0.1192, 0.3702, 0.3112, 0.2943, 0.2347, 0.2286, 0.2547, 0.2485, 0.1929, 0.1739, 0.2878, 0.2971, 0.2060, 0.2135, 0.2072, 0.2480, 0.2487, 0.2060, 0.2550},
+      { 0.1192, 0.1613, 0.3951, 0.3488, 0.2839, 0.1833, 0.2171, 0.2024, 0.2578, 0.1694, 0.1817, 0.3046, 0.3220, 0.2343, 0.2492, 0.2453, 0.2407, 0.2569, 0.2052, 0.2199},
+      { 0.3702, 0.3951, 0.2837, 0.2183, 0.3056, 0.2661, 0.2878, 0.2770, 0.3128, 0.2461, 0.2509, 0.3910, 0.3980, 0.3093, 0.3222, 0.3228, 0.3194, 0.3504, 0.2733, 0.3106},
+      { 0.3112, 0.3488, 0.2183, 0.1739, 0.2297, 0.1975, 0.2311, 0.2048, 0.2601, 0.1834, 0.1629, 0.3193, 0.3145, 0.2500, 0.2524, 0.2447, 0.2306, 0.2629, 0.2186, 0.2203},
+      { 0.2943, 0.2839, 0.3056, 0.2297, 0.3724, 0.3487, 0.3556, 0.3403, 0.2964, 0.2782, 0.2876, 0.4260, 0.4293, 0.3411, 0.3451, 0.3420, 0.3592, 0.4015, 0.3084, 0.4033},
+      { 0.2347, 0.1833, 0.2661, 0.1975, 0.3487, 0.2732, 0.2895, 0.4562, 0.2592, 0.2169, 0.1932, 0.3300, 0.3478, 0.2902, 0.2950, 0.2717, 0.3137, 0.3315, 0.2588, 0.3703},
+      { 0.2286, 0.2171, 0.2878, 0.2311, 0.3556, 0.2895, 0.3060, 0.3876, 0.2853, 0.2187, 0.2226, 0.3420, 0.3536, 0.3343, 0.3359, 0.3038, 0.3254, 0.3417, 0.2703, 0.3572},
+      { 0.2547, 0.2024, 0.2770, 0.2048, 0.3403, 0.4562, 0.3876, 0.3702, 0.2925, 0.3067, 0.2475, 0.3471, 0.3663, 0.3234, 0.3114, 0.2788, 0.3341, 0.3556, 0.3360, 0.4474},
+      { 0.2485, 0.2578, 0.3128, 0.2601, 0.2964, 0.2592, 0.2853, 0.2925, 0.3011, 0.2240, 0.2422, 0.3468, 0.3725, 0.2945, 0.3061, 0.3065, 0.3232, 0.3329, 0.2679, 0.2970},
+      { 0.1929, 0.1694, 0.2461, 0.1834, 0.2782, 0.2169, 0.2187, 0.3067, 0.2240, 0.2097, 0.1993, 0.3165, 0.3218, 0.2633, 0.2656, 0.2592, 0.2947, 0.3092, 0.2324, 0.3304},
+      { 0.1739, 0.1817, 0.2509, 0.1629, 0.2876, 0.1932, 0.2226, 0.2475, 0.2422, 0.1993, 0.2452, 0.3605, 0.3946, 0.2523, 0.2725, 0.2770, 0.3013, 0.3292, 0.2178, 0.2864},
+      { 0.2878, 0.3046, 0.3910, 0.3193, 0.4260, 0.3300, 0.3420, 0.3471, 0.3468, 0.3165, 0.3605, 0.4684, 0.5210, 0.4064, 0.4290, 0.4189, 0.4447, 0.4807, 0.3450, 0.4371},
+      { 0.2971, 0.3220, 0.3980, 0.3145, 0.4293, 0.3478, 0.3536, 0.3663, 0.3725, 0.3218, 0.3946, 0.5210, 0.5616, 0.4098, 0.4382, 0.4230, 0.5157, 0.5157, 0.3501, 0.4588},
+      { 0.2060, 0.2343, 0.3093, 0.2500, 0.3411, 0.2902, 0.3343, 0.3234, 0.2945, 0.2633, 0.2523, 0.4064, 0.4098, 0.4073, 0.4163, 0.3822, 0.4095, 0.4174, 0.3397, 0.4006},
+      { 0.2135, 0.2492, 0.3222, 0.2524, 0.3451, 0.2950, 0.3359, 0.3114, 0.3061, 0.2656, 0.2725, 0.4290, 0.4382, 0.4163, 0.4352, 0.4091, 0.4049, 0.4365, 0.3525, 0.4121},
+      { 0.2072, 0.2453, 0.3228, 0.2447, 0.3420, 0.2717, 0.3038, 0.2788, 0.3065, 0.2592, 0.2770, 0.4189, 0.4230, 0.3822, 0.4091, 0.3932, 0.3989, 0.4304, 0.3323, 0.3765},
+      { 0.2480, 0.2407, 0.3194, 0.2306, 0.3592, 0.3137, 0.3254, 0.3341, 0.3232, 0.2947, 0.3013, 0.4447, 0.5157, 0.4095, 0.4049, 0.3989, 0.4566, 0.4634, 0.3406, 0.4316},
+      { 0.2487, 0.2569, 0.3504, 0.2629, 0.4015, 0.3315, 0.3417, 0.3556, 0.3329, 0.3092, 0.3292, 0.4807, 0.5157, 0.4174, 0.4365, 0.4304, 0.4634, 0.4944, 0.3502, 0.4408},
+      { 0.2060, 0.2052, 0.2733, 0.2186, 0.3084, 0.2588, 0.2703, 0.3360, 0.2679, 0.2324, 0.2178, 0.3450, 0.3501, 0.3397, 0.3525, 0.3323, 0.3406, 0.3502, 0.3085, 0.3667},
+      { 0.2550, 0.2199, 0.3106, 0.2203, 0.4033, 0.3703, 0.3572, 0.4474, 0.2970, 0.3304, 0.2864, 0.4371, 0.4588, 0.4006, 0.4121, 0.3765, 0.4316, 0.4408, 0.3667, 0.6260}},
+    {
+      { 0.1448, 0.1411, 0.3876, 0.3425, 0.3035, 0.2490, 0.2477, 0.2372, 0.2656, 0.1975, 0.2029, 0.2919, 0.2852, 0.2312, 0.2338, 0.2209, 0.2566, 0.2634, 0.2154, 0.2604},
+      { 0.1411, 0.1812, 0.4213, 0.3818, 0.3003, 0.2236, 0.1990, 0.2165, 0.2764, 0.1739, 0.2090, 0.3218, 0.3298, 0.2478, 0.2554, 0.2550, 0.2504, 0.2685, 0.2264, 0.2190},
+      { 0.3876, 0.4213, 0.3025, 0.2374, 0.3147, 0.2881, 0.2707, 0.2778, 0.3244, 0.2511, 0.2602, 0.3963, 0.4104, 0.3181, 0.3359, 0.3306, 0.3162, 0.3564, 0.2826, 0.3060},
+      { 0.3425, 0.3818, 0.2374, 0.2031, 0.2638, 0.2324, 0.2092, 0.2290, 0.2892, 0.1934, 0.1907, 0.3377, 0.3205, 0.2672, 0.2660, 0.2580, 0.2499, 0.2845, 0.2311, 0.2112},
+      { 0.3035, 0.3003, 0.3147, 0.2638, 0.3999, 0.3549, 0.4100, 0.3422, 0.3171, 0.2734, 0.3072, 0.4281, 0.4646, 0.3847, 0.3787, 0.3701, 0.3896, 0.4066, 0.3267, 0.4034},
+      { 0.2490, 0.2236, 0.2881, 0.2324, 0.3549, 0.2852, 0.2858, 0.3876, 0.2822, 0.2225, 0.2320, 0.3389, 0.3558, 0.3106, 0.3222, 0.3014, 0.3430, 0.3481, 0.2759, 0.3515},
+      { 0.2477, 0.1990, 0.2707, 0.2092, 0.4100, 0.2858, 0.3187, 0.4930, 0.2780, 0.1831, 0.1983, 0.3440, 0.3489, 0.3486, 0.3518, 0.3236, 0.3425, 0.3563, 0.2691, 0.4437},
+      { 0.2372, 0.2165, 0.2778, 0.2290, 0.3422, 0.3876, 0.4930, 0.3893, 0.2848, 0.2698, 0.2707, 0.3446, 0.3417, 0.3765, 0.3692, 0.3265, 0.3892, 0.3651, 0.3137, 0.4648},
+      { 0.2656, 0.2764, 0.3244, 0.2892, 0.3171, 0.2822, 0.2780, 0.2848, 0.3201, 0.2311, 0.2584, 0.3567, 0.3878, 0.3078, 0.3224, 0.3169, 0.3385, 0.3459, 0.2778, 0.2946},
+      { 0.1975, 0.1739, 0.2511, 0.1934, 0.2734, 0.2225, 0.1831, 0.2698, 0.2311, 0.2133, 0.2232, 0.2995, 0.3086, 0.2458, 0.2545, 0.2476, 0.2768, 0.3031, 0.2301, 0.3023},
+      { 0.2029, 0.2090, 0.2602, 0.1907, 0.3072, 0.2320, 0.1983, 0.2707, 0.2584, 0.2232, 0.2680, 0.3630, 0.3835, 0.2614, 0.2765, 0.2796, 0.3155, 0.3366, 0.2396, 0.2909},
+      { 0.2919, 0.3218, 0.3963, 0.3377, 0.4281, 0.3389, 0.3440, 0.3446, 0.3567, 0.2995, 0.3630, 0.4570, 0.4962, 0.4226, 0.4442, 0.4344, 0.4585, 0.4838, 0.3631, 0.4455},
+      { 0.2852, 0.3298, 0.4104, 0.3205, 0.4646, 0.3558, 0.3489, 0.3417, 0.3878, 0.3086, 0.3835, 0.4962, 0.5537, 0.4092, 0.4528, 0.4269, 0.4756, 0.4918, 0.3525, 0.4562},
+      { 0.2312, 0.2478, 0.3181, 0.2672, 0.3847, 0.3106, 0.3486, 0.3765, 0.3078, 0.2458, 0.2614, 0.4226, 0.4092, 0.4431, 0.4418, 0.4090, 0.4148, 0.4423, 0.3511, 0.4546},
+      { 0.2338, 0.2554, 0.3359, 0.2660, 0.3787, 0.3222, 0.3518, 0.3692, 0.3224, 0.2545, 0.2765, 0.4442, 0.4528, 0.4418, 0.4612, 0.4326, 0.4255, 0.4615, 0.3608, 0.4596},
+      { 0.2209, 0.2550, 0.3306, 0.2580, 0.3701, 0.3014, 0.3236, 0.3265, 0.3169, 0.2476, 0.2796, 0.4344, 0.4269, 0.4090, 0.4326, 0.4245, 0.4138, 0.4507, 0.3468, 0.4122},
+      { 0.2566, 0.2504, 0.3162, 0.2499, 0.3896, 0.3430, 0.3425, 0.3892, 0.3385, 0.2768, 0.3155, 0.4585, 0.4756, 0.4148, 0.4255, 0.4138, 0.4620, 0.4949, 0.3493, 0.4552},
+      { 0.2634, 0.2685, 0.3564, 0.2845, 0.4066, 0.3481, 0.3563, 0.3651, 0.3459, 0.3031, 0.3366, 0.4838, 0.4918, 0.4423, 0.4615, 0.4507, 0.4949, 0.5074, 0.3800, 0.4626},
+      { 0.2154, 0.2264, 0.2826, 0.2311, 0.3267, 0.2759, 0.2691, 0.3137, 0.2778, 0.2301, 0.2396, 0.3631, 0.3525, 0.3511, 0.3608, 0.3468, 0.3493, 0.3800, 0.3180, 0.3633},
+      { 0.2604, 0.2190, 0.3060, 0.2112, 0.4034, 0.3515, 0.4437, 0.4648, 0.2946, 0.3023, 0.2909, 0.4455, 0.4562, 0.4546, 0.4596, 0.4122, 0.4552, 0.4626, 0.3633, 0.5907}},
+    {
+      { 0.1989, 0.1580, 0.4177, 0.3536, 0.3742, 0.2837, 0.2785, 0.3337, 0.2704, 0.2497, 0.2381, 0.3296, 0.3252, 0.2693, 0.2801, 0.2515, 0.2625, 0.2967, 0.2344, 0.3408},
+      { 0.1580, 0.1889, 0.4297, 0.3849, 0.3245, 0.2596, 0.2609, 0.2544, 0.2780, 0.1964, 0.2264, 0.3466, 0.3411, 0.2750, 0.2836, 0.2796, 0.2642, 0.2864, 0.2582, 0.3101},
+      { 0.4177, 0.4297, 0.3206, 0.2584, 0.3370, 0.3102, 0.3322, 0.3231, 0.3406, 0.2897, 0.2970, 0.4149, 0.4270, 0.3550, 0.3626, 0.3684, 0.3611, 0.4007, 0.3206, 0.3815},
+      { 0.3536, 0.3849, 0.2584, 0.2187, 0.2748, 0.2604, 0.2801, 0.2591, 0.2970, 0.2352, 0.2170, 0.3552, 0.3361, 0.2891, 0.2930, 0.2945, 0.2778, 0.3058, 0.2634, 0.3174},
+      { 0.3742, 0.3245, 0.3370, 0.2748, 0.4834, 0.3687, 0.3834, 0.4280, 0.3247, 0.3114, 0.3092, 0.5119, 0.4799, 0.4162, 0.4243, 0.4181, 0.4258, 0.5173, 0.3178, 0.4881},
+      { 0.2837, 0.2596, 0.3102, 0.2604, 0.3687, 0.3057, 0.3089, 0.3702, 0.3014, 0.2641, 0.2530, 0.3805, 0.3970, 0.3357, 0.3364, 0.3354, 0.3587, 0.3843, 0.2842, 0.4608},
+      { 0.2785, 0.2609, 0.3322, 0.2801, 0.3834, 0.3089, 0.3662, 0.3893, 0.3173, 0.2538, 0.2670, 0.3875, 0.3995, 0.3812, 0.3755, 0.3556, 0.3599, 0.3883, 0.2968, 0.5319},
+      { 0.3337, 0.2544, 0.3231, 0.2591, 0.4280, 0.3702, 0.3893, 0.6413, 0.3487, 0.3176, 0.2618, 0.4068, 0.3946, 0.3802, 0.3904, 0.3567, 0.4125, 0.4272, 0.3087, 0.6324},
+      { 0.2704, 0.2780, 0.3406, 0.2970, 0.3247, 0.3014, 0.3173, 0.3487, 0.3387, 0.2490, 0.2764, 0.3753, 0.4165, 0.3375, 0.3590, 0.3471, 0.3567, 0.3749, 0.2972, 0.3521},
+      { 0.2497, 0.1964, 0.2897, 0.2352, 0.3114, 0.2641, 0.2538, 0.3176, 0.2490, 0.2593, 0.2415, 0.3405, 0.3559, 0.2721, 0.2675, 0.2600, 0.3065, 0.3222, 0.2464, 0.3904},
+      { 0.2381, 0.2264, 0.2970, 0.2170, 0.3092, 0.2530, 0.2670, 0.2618, 0.2764, 0.2415, 0.3329, 0.4005, 0.4159, 0.2912, 0.3012, 0.3116, 0.3543, 0.3677, 0.2638, 0.3765},
+      { 0.3296, 0.3466, 0.4149, 0.3552, 0.5119, 0.3805, 0.3875, 0.4068, 0.3753, 0.3405, 0.4005, 0.5367, 0.5595, 0.4798, 0.4736, 0.4709, 0.4694, 0.5465, 0.3720, 0.5355},
+      { 0.3252, 0.3411, 0.4270, 0.3361, 0.4799, 0.3970, 0.3995, 0.3946, 0.4165, 0.3559, 0.4159, 0.5595, 0.5951, 0.4634, 0.4823, 0.4693, 0.5316, 0.5544, 0.4005, 0.5369},
+      { 0.2693, 0.2750, 0.3550, 0.2891, 0.4162, 0.3357, 0.3812, 0.3802, 0.3375, 0.2721, 0.2912, 0.4798, 0.4634, 0.4919, 0.4708, 0.4457, 0.4524, 0.4767, 0.3593, 0.5349},
+      { 0.2801, 0.2836, 0.3626, 0.2930, 0.4243, 0.3364, 0.3755, 0.3904, 0.3590, 0.2675, 0.3012, 0.4736, 0.4823, 0.4708, 0.4970, 0.4588, 0.4632, 0.4899, 0.3698, 0.5180},
+      { 0.2515, 0.2796, 0.3684, 0.2945, 0.4181, 0.3354, 0.3556, 0.3567, 0.3471, 0.2600, 0.3116, 0.4709, 0.4693, 0.4457, 0.4588, 0.4601, 0.4489, 0.4788, 0.3638, 0.4815},
+      { 0.2625, 0.2642, 0.3611, 0.2778, 0.4258, 0.3587, 0.3599, 0.4125, 0.3567, 0.3065, 0.3543, 0.4694, 0.5316, 0.4524, 0.4632, 0.4489, 0.4845, 0.5218, 0.3684, 0.5348},
+      { 0.2967, 0.2864, 0.4007, 0.3058, 0.5173, 0.3843, 0.3883, 0.4272, 0.3749, 0.3222, 0.3677, 0.5465, 0.5544, 0.4767, 0.4899, 0.4788, 0.5218, 0.5871, 0.3821, 0.5185},
+      { 0.2344, 0.2582, 0.3206, 0.2634, 0.3178, 0.2842, 0.2968, 0.3087, 0.2972, 0.2464, 0.2638, 0.3720, 0.4005, 0.3593, 0.3698, 0.3638, 0.3684, 0.3821, 0.3420, 0.3919},
+      { 0.3408, 0.3101, 0.3815, 0.3174, 0.4881, 0.4608, 0.5319, 0.6324, 0.3521, 0.3904, 0.3765, 0.5355, 0.5369, 0.5349, 0.5180, 0.4815, 0.5348, 0.5185, 0.3919, 0.9297}},
+    {
+      { 0.1619, 0.1605, 0.4064, 0.3523, 0.3273, 0.2518, 0.2506, 0.2444, 0.2953, 0.2097, 0.2236, 0.3024, 0.3012, 0.2298, 0.2390, 0.2325, 0.2574, 0.2681, 0.2333, 0.2677},
+      { 0.1605, 0.1958, 0.4181, 0.3757, 0.3217, 0.2522, 0.2586, 0.2673, 0.2504, 0.1766, 0.2173, 0.3193, 0.3358, 0.2681, 0.2812, 0.2780, 0.2756, 0.2893, 0.2690, 0.2553},
+      { 0.4064, 0.4181, 0.3022, 0.2445, 0.3107, 0.2992, 0.3144, 0.2993, 0.3052, 0.2704, 0.2757, 0.4006, 0.4074, 0.3262, 0.3491, 0.3591, 0.3436, 0.3671, 0.3087, 0.3371},
+      { 0.3523, 0.3757, 0.2445, 0.2098, 0.2455, 0.2491, 0.2630, 0.2363, 0.2444, 0.2014, 0.2131, 0.3371, 0.3178, 0.2715, 0.2830, 0.2856, 0.2701, 0.2896, 0.2679, 0.2471},
+      { 0.3273, 0.3217, 0.3107, 0.2455, 0.4170, 0.3288, 0.3406, 0.3687, 0.3704, 0.2688, 0.2975, 0.4265, 0.4359, 0.3633, 0.3754, 0.3714, 0.4047, 0.4250, 0.2997, 0.4022},
+      { 0.2518, 0.2522, 0.2992, 0.2491, 0.3288, 0.2770, 0.2755, 0.2925, 0.3188, 0.2290, 0.2384, 0.3368, 0.3414, 0.2877, 0.2938, 0.2908, 0.3119, 0.3371, 0.2581, 0.3252},
+      { 0.2506, 0.2586, 0.3144, 0.2630, 0.3406, 0.2755, 0.3172, 0.2848, 0.3290, 0.2227, 0.2444, 0.3552, 0.3614, 0.3236, 0.3411, 0.3178, 0.3367, 0.3467, 0.2575, 0.3098},
+      { 0.2444, 0.2673, 0.2993, 0.2363, 0.3687, 0.2925, 0.2848, 0.3487, 0.5306, 0.2711, 0.2676, 0.3462, 0.3550, 0.3123, 0.3271, 0.3185, 0.3714, 0.3428, 0.2589, 0.3602},
+      { 0.2953, 0.2504, 0.3052, 0.2444, 0.3704, 0.3188, 0.3290, 0.5306, 0.2973, 0.2271, 0.2557, 0.3646, 0.3929, 0.3273, 0.3516, 0.3367, 0.3635, 0.3650, 0.2853, 0.4235},
+      { 0.2097, 0.1766, 0.2704, 0.2014, 0.2688, 0.2290, 0.2227, 0.2711, 0.2271, 0.2260, 0.2268, 0.3002, 0.2987, 0.2438, 0.2545, 0.2494, 0.2840, 0.3127, 0.2201, 0.3064},
+      { 0.2236, 0.2173, 0.2757, 0.2131, 0.2975, 0.2384, 0.2444, 0.2676, 0.2557, 0.2268, 0.2684, 0.3501, 0.3887, 0.2808, 0.2914, 0.2849, 0.3152, 0.3390, 0.2503, 0.3145},
+      { 0.3024, 0.3193, 0.4006, 0.3371, 0.4265, 0.3368, 0.3552, 0.3462, 0.3646, 0.3002, 0.3501, 0.4733, 0.5076, 0.4057, 0.4323, 0.4331, 0.4528, 0.4920, 0.3376, 0.4308},
+      { 0.3012, 0.3358, 0.4074, 0.3178, 0.4359, 0.3414, 0.3614, 0.3550, 0.3929, 0.2987, 0.3887, 0.5076, 0.5484, 0.4249, 0.4474, 0.4409, 0.4774, 0.5243, 0.3425, 0.4565},
+      { 0.2298, 0.2681, 0.3262, 0.2715, 0.3633, 0.2877, 0.3236, 0.3123, 0.3273, 0.2438, 0.2808, 0.4057, 0.4249, 0.3955, 0.4098, 0.3852, 0.4011, 0.4193, 0.3019, 0.3606},
+      { 0.2390, 0.2812, 0.3491, 0.2830, 0.3754, 0.2938, 0.3411, 0.3271, 0.3516, 0.2545, 0.2914, 0.4323, 0.4474, 0.4098, 0.4326, 0.4166, 0.4194, 0.4317, 0.3197, 0.4022},
+      { 0.2325, 0.2780, 0.3591, 0.2856, 0.3714, 0.2908, 0.3178, 0.3185, 0.3367, 0.2494, 0.2849, 0.4331, 0.4409, 0.3852, 0.4166, 0.4116, 0.4207, 0.4305, 0.3157, 0.3764},
+      { 0.2574, 0.2756, 0.3436, 0.2701, 0.4047, 0.3119, 0.3367, 0.3714, 0.3635, 0.2840, 0.3152, 0.4528, 0.4774, 0.4011, 0.4194, 0.4207, 0.4641, 0.4762, 0.3313, 0.4580},
+      { 0.2681, 0.2893, 0.3671, 0.2896, 0.4250, 0.3371, 0.3467, 0.3428, 0.3650, 0.3127, 0.3390, 0.4920, 0.5243, 0.4193, 0.4317, 0.4305, 0.4762, 0.5109, 0.3369, 0.4635},
+      { 0.2333, 0.2690, 0.3087, 0.2679, 0.2997, 0.2581, 0.2575, 0.2589, 0.2853, 0.2201, 0.2503, 0.3376, 0.3425, 0.3019, 0.3197, 0.3157, 0.3313, 0.3369, 0.3215, 0.2963},
+      { 0.2677, 0.2553, 0.3371, 0.2471, 0.4022, 0.3252, 0.3098, 0.3602, 0.4235, 0.3064, 0.3145, 0.4308, 0.4565, 0.3606, 0.4022, 0.3764, 0.4580, 0.4635, 0.2963, 0.5739}},
+    {
+      { 0.1006, 0.0832, 0.3456, 0.2884, 0.2712, 0.2141, 0.1967, 0.2260, 0.2147, 0.1810, 0.1588, 0.2709, 0.2566, 0.1785, 0.1748, 0.1902, 0.2157, 0.2300, 0.1572, 0.2264},
+      { 0.0832, 0.1137, 0.3461, 0.2926, 0.2522, 0.1830, 0.1966, 0.1942, 0.1987, 0.0846, 0.1593, 0.2874, 0.2804, 0.1992, 0.2025, 0.2000, 0.1959, 0.2235, 0.1491, 0.2003},
+      { 0.3456, 0.3461, 0.2648, 0.1989, 0.2769, 0.2543, 0.2600, 0.2647, 0.2788, 0.1864, 0.2380, 0.3705, 0.3745, 0.2750, 0.2854, 0.2973, 0.2889, 0.3225, 0.2287, 0.2928},
+      { 0.2884, 0.2926, 0.1989, 0.1450, 0.2024, 0.1847, 0.1909, 0.1984, 0.2228, 0.1157, 0.1680, 0.2898, 0.2604, 0.2112, 0.2067, 0.2118, 0.2018, 0.2430, 0.1658, 0.1996},
+      { 0.2712, 0.2522, 0.2769, 0.2024, 0.3273, 0.3126, 0.3053, 0.2981, 0.2897, 0.2477, 0.2592, 0.4020, 0.4005, 0.3082, 0.2963, 0.3056, 0.3271, 0.3671, 0.2706, 0.3416},
+      { 0.2141, 0.1830, 0.2543, 0.1847, 0.3126, 0.2670, 0.2647, 0.3067, 0.2381, 0.2144, 0.2155, 0.3150, 0.3405, 0.2644, 0.2790, 0.2661, 0.2956, 0.3104, 0.2397, 0.3289},
+      { 0.1967, 0.1966, 0.2600, 0.1909, 0.3053, 0.2647, 0.2764, 0.2698, 0.2550, 0.2257, 0.2197, 0.3351, 0.3351, 0.2974, 0.3043, 0.2864, 0.3099, 0.3157, 0.2526, 0.3328},
+      { 0.2260, 0.1942, 0.2647, 0.1984, 0.2981, 0.3067, 0.2698, 0.3176, 0.2711, 0.3926, 0.2273, 0.3199, 0.3430, 0.2659, 0.2723, 0.2550, 0.3022, 0.3292, 0.3119, 0.3553},
+      { 0.2147, 0.1987, 0.2788, 0.2228, 0.2897, 0.2381, 0.2550, 0.2711, 0.2454, 0.1800, 0.2323, 0.3199, 0.3468, 0.2619, 0.2776, 0.2654, 0.2891, 0.2916, 0.2173, 0.2575},
+      { 0.1810, 0.0846, 0.1864, 0.1157, 0.2477, 0.2144, 0.2257, 0.3926, 0.1800, 0.1398, 0.1367, 0.2543, 0.2488, 0.2380, 0.2360, 0.2255, 0.2668, 0.2581, 0.1874, 0.3773},
+      { 0.1588, 0.1593, 0.2380, 0.1680, 0.2592, 0.2155, 0.2197, 0.2273, 0.2323, 0.1367, 0.2350, 0.3394, 0.3581, 0.2365, 0.2337, 0.2431, 0.2779, 0.2942, 0.1891, 0.2747},
+      { 0.2709, 0.2874, 0.3705, 0.2898, 0.4020, 0.3150, 0.3351, 0.3199, 0.3199, 0.2543, 0.3394, 0.4439, 0.4702, 0.3673, 0.3879, 0.3819, 0.4214, 0.4478, 0.3025, 0.3907},
+      { 0.2566, 0.2804, 0.3745, 0.2604, 0.4005, 0.3405, 0.3351, 0.3430, 0.3468, 0.2488, 0.3581, 0.4702, 0.5433, 0.3786, 0.4088, 0.4024, 0.4732, 0.4776, 0.3137, 0.4463},
+      { 0.1785, 0.1992, 0.2750, 0.2112, 0.3082, 0.2644, 0.2974, 0.2659, 0.2619, 0.2380, 0.2365, 0.3673, 0.3786, 0.3529, 0.3739, 0.3382, 0.3565, 0.3806, 0.2882, 0.3701},
+      { 0.1748, 0.2025, 0.2854, 0.2067, 0.2963, 0.2790, 0.3043, 0.2723, 0.2776, 0.2360, 0.2337, 0.3879, 0.4088, 0.3739, 0.3753, 0.3674, 0.3782, 0.3990, 0.3064, 0.3747},
+      { 0.1902, 0.2000, 0.2973, 0.2118, 0.3056, 0.2661, 0.2864, 0.2550, 0.2654, 0.2255, 0.2431, 0.3819, 0.4024, 0.3382, 0.3674, 0.3513, 0.3484, 0.3828, 0.2865, 0.3301},
+      { 0.2157, 0.1959, 0.2889, 0.2018, 0.3271, 0.2956, 0.3099, 0.3022, 0.2891, 0.2668, 0.2779, 0.4214, 0.4732, 0.3565, 0.3782, 0.3484, 0.4279, 0.4403, 0.3116, 0.4339},
+      { 0.2300, 0.2235, 0.3225, 0.2430, 0.3671, 0.3104, 0.3157, 0.3292, 0.2916, 0.2581, 0.2942, 0.4478, 0.4776, 0.3806, 0.3990, 0.3828, 0.4403, 0.4712, 0.3143, 0.4107},
+      { 0.1572, 0.1491, 0.2287, 0.1658, 0.2706, 0.2397, 0.2526, 0.3119, 0.2173, 0.1874, 0.1891, 0.3025, 0.3137, 0.2882, 0.3064, 0.2865, 0.3116, 0.3143, 0.2538, 0.3196},
+      { 0.2264, 0.2003, 0.2928, 0.1996, 0.3416, 0.3289, 0.3328, 0.3553, 0.2575, 0.3773, 0.2747, 0.3907, 0.4463, 0.3701, 0.3747, 0.3301, 0.4339, 0.4107, 0.3196, 0.5496}},
+    {
+      { 0.0950, 0.0803, 0.3499, 0.2992, 0.2749, 0.2048, 0.1998, 0.1810, 0.2190, 0.1826, 0.1749, 0.2786, 0.2660, 0.1743, 0.1850, 0.1836, 0.2143, 0.2171, 0.1690, 0.1974},
+      { 0.0803, 0.1062, 0.3471, 0.2988, 0.2523, 0.1823, 0.1883, 0.1791, 0.2105, 0.1666, 0.1426, 0.2799, 0.2798, 0.1902, 0.2016, 0.1957, 0.2022, 0.2314, 0.1769, 0.1816},
+      { 0.3499, 0.3471, 0.2517, 0.1971, 0.2875, 0.2415, 0.2608, 0.2396, 0.2781, 0.2350, 0.2306, 0.3697, 0.3584, 0.2762, 0.2775, 0.2842, 0.2899, 0.3281, 0.2409, 0.2629},
+      { 0.2992, 0.2988, 0.1971, 0.1465, 0.2095, 0.1757, 0.1939, 0.2035, 0.2235, 0.1729, 0.1289, 0.2945, 0.2872, 0.2107, 0.2066, 0.2038, 0.2014, 0.2319, 0.1779, 0.1861},
+      { 0.2749, 0.2523, 0.2875, 0.2095, 0.3358, 0.2763, 0.3167, 0.2744, 0.2792, 0.2478, 0.3150, 0.4142, 0.3843, 0.3096, 0.3075, 0.3151, 0.3243, 0.3668, 0.2589, 0.3556},
+      { 0.2048, 0.1823, 0.2415, 0.1757, 0.2763, 0.2221, 0.2331, 0.2475, 0.2244, 0.2069, 0.2235, 0.2974, 0.2963, 0.2435, 0.2469, 0.2282, 0.2693, 0.2676, 0.2216, 0.2784},
+      { 0.1998, 0.1883, 0.2608, 0.1939, 0.3167, 0.2331, 0.2514, 0.2707, 0.2549, 0.2032, 0.2359, 0.3215, 0.3136, 0.2823, 0.2850, 0.2621, 0.2739, 0.3156, 0.2303, 0.2921},
+      { 0.1810, 0.1791, 0.2396, 0.2035, 0.2744, 0.2475, 0.2707, 0.2618, 0.2676, 0.2273, 0.3741, 0.3059, 0.3129, 0.3012, 0.2741, 0.2493, 0.2939, 0.2735, 0.2946, 0.3307},
+      { 0.2190, 0.2105, 0.2781, 0.2235, 0.2792, 0.2244, 0.2549, 0.2676, 0.2728, 0.2095, 0.2271, 0.3287, 0.3512, 0.2632, 0.2757, 0.2760, 0.2884, 0.2967, 0.2310, 0.2484},
+      { 0.1826, 0.1666, 0.2350, 0.1729, 0.2478, 0.2069, 0.2032, 0.2273, 0.2095, 0.2017, 0.1763, 0.2821, 0.2736, 0.2234, 0.2280, 0.2216, 0.2609, 0.2573, 0.2061, 0.2499},
+      { 0.1749, 0.1426, 0.2306, 0.1289, 0.3150, 0.2235, 0.2359, 0.3741, 0.2271, 0.1763, 0.2053, 0.3535, 0.3585, 0.2562, 0.2683, 0.2627, 0.3009, 0.3253, 0.2120, 0.3488},
+      { 0.2786, 0.2799, 0.3697, 0.2945, 0.4142, 0.2974, 0.3215, 0.3059, 0.3287, 0.2821, 0.3535, 0.4229, 0.4791, 0.3677, 0.3934, 0.3787, 0.4168, 0.4437, 0.2934, 0.3943},
+      { 0.2660, 0.2798, 0.3584, 0.2872, 0.3843, 0.2963, 0.3136, 0.3129, 0.3512, 0.2736, 0.3585, 0.4791, 0.5655, 0.3751, 0.4037, 0.3942, 0.4963, 0.4728, 0.3074, 0.3964},
+      { 0.1743, 0.1902, 0.2762, 0.2107, 0.3096, 0.2435, 0.2823, 0.3012, 0.2632, 0.2234, 0.2562, 0.3677, 0.3751, 0.3341, 0.3490, 0.3313, 0.3484, 0.3706, 0.2661, 0.3322},
+      { 0.1850, 0.2016, 0.2775, 0.2066, 0.3075, 0.2469, 0.2850, 0.2741, 0.2757, 0.2280, 0.2683, 0.3934, 0.4037, 0.3490, 0.3619, 0.3564, 0.3670, 0.3800, 0.2699, 0.3470},
+      { 0.1836, 0.1957, 0.2842, 0.2038, 0.3151, 0.2282, 0.2621, 0.2493, 0.2760, 0.2216, 0.2627, 0.3787, 0.3942, 0.3313, 0.3564, 0.3443, 0.3382, 0.3842, 0.2636, 0.2957},
+      { 0.2143, 0.2022, 0.2899, 0.2014, 0.3243, 0.2693, 0.2739, 0.2939, 0.2884, 0.2609, 0.3009, 0.4168, 0.4963, 0.3484, 0.3670, 0.3382, 0.4121, 0.4306, 0.2848, 0.3599},
+      { 0.2171, 0.2314, 0.3281, 0.2319, 0.3668, 0.2676, 0.3156, 0.2735, 0.2967, 0.2573, 0.3253, 0.4437, 0.4728, 0.3706, 0.3800, 0.3842, 0.4306, 0.4381, 0.2905, 0.4068},
+      { 0.1690, 0.1769, 0.2409, 0.1779, 0.2589, 0.2216, 0.2303, 0.2946, 0.2310, 0.2061, 0.2120, 0.2934, 0.3074, 0.2661, 0.2699, 0.2636, 0.2848, 0.2905, 0.2457, 0.2849},
+      { 0.1974, 0.1816, 0.2629, 0.1861, 0.3556, 0.2784, 0.2921, 0.3307, 0.2484, 0.2499, 0.3488, 0.3943, 0.3964, 0.3322, 0.3470, 0.2957, 0.3599, 0.4068, 0.2849, 0.4530}},
+    {
+      { 0.2348, 0.2063, 0.4283, 0.3661, 0.3586, 0.3080, 0.2881, 0.3032, 0.2997, 0.2706, 0.2698, 0.3251, 0.3405, 0.2487, 0.2511, 0.2529, 0.2867, 0.3035, 0.2553, 0.2794},
+      { 0.2063, 0.2197, 0.4375, 0.3833, 0.3267, 0.2840, 0.2955, 0.2658, 0.3099, 0.2322, 0.2551, 0.2735, 0.3446, 0.2666, 0.2757, 0.2737, 0.2846, 0.2770, 0.2700, 0.2764},
+      { 0.4283, 0.4375, 0.3346, 0.2634, 0.3558, 0.3411, 0.3511, 0.3292, 0.3588, 0.3067, 0.3125, 0.3512, 0.4289, 0.3525, 0.3619, 0.3537, 0.3602, 0.3743, 0.3324, 0.3708},
+      { 0.3661, 0.3833, 0.2634, 0.2324, 0.2818, 0.2788, 0.2962, 0.2853, 0.3076, 0.2532, 0.2410, 0.3114, 0.3327, 0.2821, 0.2840, 0.2867, 0.2910, 0.2952, 0.2728, 0.2867},
+      { 0.3586, 0.3267, 0.3558, 0.2818, 0.4569, 0.3915, 0.3953, 0.4409, 0.3563, 0.3079, 0.3286, 0.4605, 0.4816, 0.3750, 0.3770, 0.3773, 0.4116, 0.4391, 0.3392, 0.4231},
+      { 0.3080, 0.2840, 0.3411, 0.2788, 0.3915, 0.3355, 0.3327, 0.3471, 0.3378, 0.2897, 0.3095, 0.3438, 0.3846, 0.3153, 0.3175, 0.3165, 0.3973, 0.3656, 0.3131, 0.3477},
+      { 0.2881, 0.2955, 0.3511, 0.2962, 0.3953, 0.3327, 0.3681, 0.3446, 0.3438, 0.2876, 0.3080, 0.3493, 0.3970, 0.3667, 0.3620, 0.3535, 0.3714, 0.3783, 0.3154, 0.3650},
+      { 0.3032, 0.2658, 0.3292, 0.2853, 0.4409, 0.3471, 0.3446, 0.4068, 0.3462, 0.3199, 0.3059, 0.5297, 0.4460, 0.3374, 0.3405, 0.3240, 0.3674, 0.4665, 0.3175, 0.3574},
+      { 0.2997, 0.3099, 0.3588, 0.3076, 0.3563, 0.3378, 0.3438, 0.3462, 0.3447, 0.3047, 0.3117, 0.3508, 0.4162, 0.3249, 0.3243, 0.3396, 0.3672, 0.3618, 0.3142, 0.3464},
+      { 0.2706, 0.2322, 0.3067, 0.2532, 0.3079, 0.2897, 0.2876, 0.3199, 0.3047, 0.2703, 0.2887, 0.2614, 0.3227, 0.2605, 0.2696, 0.2756, 0.3215, 0.2873, 0.2727, 0.3343},
+      { 0.2698, 0.2551, 0.3125, 0.2410, 0.3286, 0.3095, 0.3080, 0.3059, 0.3117, 0.2887, 0.3378, 0.3127, 0.3947, 0.3028, 0.3144, 0.3142, 0.3589, 0.3355, 0.2974, 0.3189},
+      { 0.3251, 0.2735, 0.3512, 0.3114, 0.4605, 0.3438, 0.3493, 0.5297, 0.3508, 0.2614, 0.3127, 0.4362, 0.4850, 0.4114, 0.4272, 0.4256, 0.4669, 0.4752, 0.3304, 0.4705},
+      { 0.3405, 0.3446, 0.4289, 0.3327, 0.4816, 0.3846, 0.3970, 0.4460, 0.4162, 0.3227, 0.3947, 0.4850, 0.5364, 0.4517, 0.4710, 0.4573, 0.5210, 0.5248, 0.3839, 0.4971},
+      { 0.2487, 0.2666, 0.3525, 0.2821, 0.3750, 0.3153, 0.3667, 0.3374, 0.3249, 0.2605, 0.3028, 0.4114, 0.4517, 0.4387, 0.4553, 0.4273, 0.4435, 0.4495, 0.3438, 0.4084},
+      { 0.2511, 0.2757, 0.3619, 0.2840, 0.3770, 0.3175, 0.3620, 0.3405, 0.3243, 0.2696, 0.3144, 0.4272, 0.4710, 0.4553, 0.4773, 0.4568, 0.4582, 0.4686, 0.3571, 0.4324},
+      { 0.2529, 0.2737, 0.3537, 0.2867, 0.3773, 0.3165, 0.3535, 0.3240, 0.3396, 0.2756, 0.3142, 0.4256, 0.4573, 0.4273, 0.4568, 0.4550, 0.4548, 0.4596, 0.3497, 0.4250},
+      { 0.2867, 0.2846, 0.3602, 0.2910, 0.4116, 0.3973, 0.3714, 0.3674, 0.3672, 0.3215, 0.3589, 0.4669, 0.5210, 0.4435, 0.4582, 0.4548, 0.4943, 0.4937, 0.3668, 0.4626},
+      { 0.3035, 0.2770, 0.3743, 0.2952, 0.4391, 0.3656, 0.3783, 0.4665, 0.3618, 0.2873, 0.3355, 0.4752, 0.5248, 0.4495, 0.4686, 0.4596, 0.4937, 0.5076, 0.3645, 0.5062},
+      { 0.2553, 0.2700, 0.3324, 0.2728, 0.3392, 0.3131, 0.3154, 0.3175, 0.3142, 0.2727, 0.2974, 0.3304, 0.3839, 0.3438, 0.3571, 0.3497, 0.3668, 0.3645, 0.3333, 0.3441},
+      { 0.2794, 0.2764, 0.3708, 0.2867, 0.4231, 0.3477, 0.3650, 0.3574, 0.3464, 0.3343, 0.3189, 0.4705, 0.4971, 0.4084, 0.4324, 0.4250, 0.4626, 0.5062, 0.3441, 0.6211}},
+    {
+      { 0.2226, 0.2237, 0.4415, 0.3885, 0.3986, 0.3339, 0.3145, 0.3115, 0.3188, 0.2818, 0.2885, 0.3712, 0.3234, 0.2777, 0.2733, 0.2718, 0.3056, 0.3079, 0.2849, 0.3070},
+      { 0.2237, 0.2579, 0.4657, 0.4098, 0.3521, 0.3081, 0.3079, 0.2734, 0.3407, 0.2490, 0.2933, 0.3564, 0.2853, 0.2929, 0.3043, 0.3047, 0.3159, 0.3041, 0.2968, 0.3086},
+      { 0.4415, 0.4657, 0.3686, 0.2923, 0.3794, 0.3659, 0.3771, 0.3524, 0.3851, 0.3307, 0.3490, 0.4321, 0.3461, 0.3618, 0.3718, 0.3694, 0.4031, 0.3874, 0.3678, 0.4009},
+      { 0.3885, 0.4098, 0.2923, 0.2646, 0.2966, 0.3010, 0.3038, 0.2880, 0.3347, 0.2593, 0.2701, 0.3669, 0.2695, 0.2909, 0.3085, 0.3012, 0.3198, 0.3103, 0.2993, 0.3295},
+      { 0.3986, 0.3521, 0.3794, 0.2966, 0.4613, 0.3935, 0.3944, 0.4205, 0.3855, 0.3420, 0.3521, 0.4936, 0.4754, 0.4025, 0.4040, 0.3996, 0.4383, 0.4766, 0.3676, 0.4371},
+      { 0.3339, 0.3081, 0.3659, 0.3010, 0.3935, 0.3662, 0.3538, 0.3663, 0.3460, 0.3258, 0.3492, 0.3878, 0.3679, 0.3515, 0.3522, 0.3266, 0.3966, 0.3953, 0.3362, 0.3986},
+      { 0.3145, 0.3079, 0.3771, 0.3038, 0.3944, 0.3538, 0.3738, 0.3417, 0.3627, 0.3084, 0.3407, 0.4075, 0.3575, 0.3710, 0.3805, 0.3718, 0.3998, 0.4041, 0.3337, 0.3830},
+      { 0.3115, 0.2734, 0.3524, 0.2880, 0.4205, 0.3663, 0.3417, 0.3946, 0.3550, 0.3430, 0.3129, 0.4460, 0.5328, 0.3156, 0.3113, 0.3211, 0.3855, 0.4591, 0.3215, 0.3672},
+      { 0.3188, 0.3407, 0.3851, 0.3347, 0.3855, 0.3460, 0.3627, 0.3550, 0.3734, 0.3050, 0.3564, 0.3990, 0.3657, 0.3506, 0.3533, 0.3496, 0.3927, 0.3947, 0.3467, 0.3897},
+      { 0.2818, 0.2490, 0.3307, 0.2593, 0.3420, 0.3258, 0.3084, 0.3430, 0.3050, 0.2819, 0.3073, 0.3190, 0.2548, 0.2994, 0.2769, 0.2910, 0.3445, 0.3046, 0.2925, 0.3796},
+      { 0.2885, 0.2933, 0.3490, 0.2701, 0.3521, 0.3492, 0.3407, 0.3129, 0.3564, 0.3073, 0.3586, 0.3936, 0.3345, 0.3305, 0.3434, 0.3308, 0.3650, 0.3518, 0.3286, 0.3536},
+      { 0.3712, 0.3564, 0.4321, 0.3669, 0.4936, 0.3878, 0.4075, 0.4460, 0.3990, 0.3190, 0.3936, 0.4843, 0.4801, 0.4626, 0.4846, 0.4765, 0.5134, 0.5188, 0.3917, 0.5087},
+      { 0.3234, 0.2853, 0.3461, 0.2695, 0.4754, 0.3679, 0.3575, 0.5328, 0.3657, 0.2548, 0.3345, 0.4801, 0.5207, 0.4223, 0.4599, 0.4314, 0.4788, 0.5009, 0.3407, 0.5362},
+      { 0.2777, 0.2929, 0.3618, 0.2909, 0.4025, 0.3515, 0.3710, 0.3156, 0.3506, 0.2994, 0.3305, 0.4626, 0.4223, 0.4617, 0.4791, 0.4630, 0.4631, 0.4651, 0.3688, 0.4329},
+      { 0.2733, 0.3043, 0.3718, 0.3085, 0.4040, 0.3522, 0.3805, 0.3113, 0.3533, 0.2769, 0.3434, 0.4846, 0.4599, 0.4791, 0.4989, 0.4907, 0.4850, 0.4889, 0.3785, 0.4576},
+      { 0.2718, 0.3047, 0.3694, 0.3012, 0.3996, 0.3266, 0.3718, 0.3211, 0.3496, 0.2910, 0.3308, 0.4765, 0.4314, 0.4630, 0.4907, 0.4818, 0.4815, 0.4735, 0.3692, 0.4345},
+      { 0.3056, 0.3159, 0.4031, 0.3198, 0.4383, 0.3966, 0.3998, 0.3855, 0.3927, 0.3445, 0.3650, 0.5134, 0.4788, 0.4631, 0.4850, 0.4815, 0.5241, 0.5142, 0.3940, 0.4952},
+      { 0.3079, 0.3041, 0.3874, 0.3103, 0.4766, 0.3953, 0.4041, 0.4591, 0.3947, 0.3046, 0.3518, 0.5188, 0.5009, 0.4651, 0.4889, 0.4735, 0.5142, 0.5275, 0.3962, 0.5251},
+      { 0.2849, 0.2968, 0.3678, 0.2993, 0.3676, 0.3362, 0.3337, 0.3215, 0.3467, 0.2925, 0.3286, 0.3917, 0.3407, 0.3688, 0.3785, 0.3692, 0.3940, 0.3962, 0.3550, 0.3647},
+      { 0.3070, 0.3086, 0.4009, 0.3295, 0.4371, 0.3986, 0.3830, 0.3672, 0.3897, 0.3796, 0.3536, 0.5087, 0.5362, 0.4329, 0.4576, 0.4345, 0.4952, 0.5251, 0.3647, 0.6329}},
+    {
+      { 0.1580, 0.1317, 0.3869, 0.3349, 0.3023, 0.2477, 0.2454, 0.2415, 0.2608, 0.1916, 0.1958, 0.2824, 0.2504, 0.1657, 0.1706, 0.1891, 0.2214, 0.2085, 0.1763, 0.2240},
+      { 0.1317, 0.1566, 0.4004, 0.3483, 0.2928, 0.2296, 0.2181, 0.2258, 0.2529, 0.1611, 0.1919, 0.2889, 0.3037, 0.1416, 0.1659, 0.1852, 0.1983, 0.2117, 0.1785, 0.1745},
+      { 0.3869, 0.4004, 0.2831, 0.2183, 0.3072, 0.2835, 0.2848, 0.2814, 0.3112, 0.2473, 0.2656, 0.3591, 0.3626, 0.2392, 0.2523, 0.2780, 0.2824, 0.3127, 0.2590, 0.2810},
+      { 0.3349, 0.3483, 0.2183, 0.1841, 0.2574, 0.2227, 0.2331, 0.2362, 0.2693, 0.1817, 0.1897, 0.3139, 0.2920, 0.1760, 0.1932, 0.2121, 0.2074, 0.2405, 0.1999, 0.1964},
+      { 0.3023, 0.2928, 0.3072, 0.2574, 0.3800, 0.3365, 0.3589, 0.3405, 0.3055, 0.2533, 0.2956, 0.3908, 0.3861, 0.3166, 0.3207, 0.3156, 0.3404, 0.3626, 0.2895, 0.3395},
+      { 0.2477, 0.2296, 0.2835, 0.2227, 0.3365, 0.2740, 0.2878, 0.3234, 0.2772, 0.2299, 0.2297, 0.3124, 0.3137, 0.2270, 0.2410, 0.2526, 0.2895, 0.2906, 0.2499, 0.2933},
+      { 0.2454, 0.2181, 0.2848, 0.2331, 0.3589, 0.2878, 0.3186, 0.3765, 0.2855, 0.2134, 0.2422, 0.3376, 0.3366, 0.2898, 0.2934, 0.2931, 0.3154, 0.3317, 0.2700, 0.3556},
+      { 0.2415, 0.2258, 0.2814, 0.2362, 0.3405, 0.3234, 0.3765, 0.3802, 0.3123, 0.2659, 0.3012, 0.3374, 0.3156, 0.3936, 0.3560, 0.3215, 0.3727, 0.3242, 0.2931, 0.3708},
+      { 0.2608, 0.2529, 0.3112, 0.2693, 0.3055, 0.2772, 0.2855, 0.3123, 0.3006, 0.2289, 0.2620, 0.3276, 0.3507, 0.2226, 0.2437, 0.2559, 0.2878, 0.2913, 0.2418, 0.2581},
+      { 0.1916, 0.1611, 0.2473, 0.1817, 0.2533, 0.2299, 0.2134, 0.2659, 0.2289, 0.1998, 0.2048, 0.2593, 0.2825, 0.1423, 0.1534, 0.1771, 0.2281, 0.2319, 0.1946, 0.2347},
+      { 0.1958, 0.1919, 0.2656, 0.1897, 0.2956, 0.2297, 0.2422, 0.3012, 0.2620, 0.2048, 0.2448, 0.3378, 0.3676, 0.1636, 0.1809, 0.2107, 0.2628, 0.2741, 0.2163, 0.2568},
+      { 0.2824, 0.2889, 0.3591, 0.3139, 0.3908, 0.3124, 0.3376, 0.3374, 0.3276, 0.2593, 0.3378, 0.4122, 0.4623, 0.3322, 0.3592, 0.3740, 0.3971, 0.4322, 0.3217, 0.3880},
+      { 0.2504, 0.3037, 0.3626, 0.2920, 0.3861, 0.3137, 0.3366, 0.3156, 0.3507, 0.2825, 0.3676, 0.4623, 0.4931, 0.3391, 0.3687, 0.3798, 0.4324, 0.4540, 0.3150, 0.3966},
+      { 0.1657, 0.1416, 0.2392, 0.1760, 0.3166, 0.2270, 0.2898, 0.3936, 0.2226, 0.1423, 0.1636, 0.3322, 0.3391, 0.3567, 0.3653, 0.3413, 0.3258, 0.3615, 0.2459, 0.3770},
+      { 0.1706, 0.1659, 0.2523, 0.1932, 0.3207, 0.2410, 0.2934, 0.3560, 0.2437, 0.1534, 0.1809, 0.3592, 0.3687, 0.3653, 0.3838, 0.3625, 0.3541, 0.3864, 0.2650, 0.3732},
+      { 0.1891, 0.1852, 0.2780, 0.2121, 0.3156, 0.2526, 0.2931, 0.3215, 0.2559, 0.1771, 0.2107, 0.3740, 0.3798, 0.3413, 0.3625, 0.3693, 0.3590, 0.3934, 0.2808, 0.3576},
+      { 0.2214, 0.1983, 0.2824, 0.2074, 0.3404, 0.2895, 0.3154, 0.3727, 0.2878, 0.2281, 0.2628, 0.3971, 0.4324, 0.3258, 0.3541, 0.3590, 0.4089, 0.4171, 0.3000, 0.3902},
+      { 0.2085, 0.2117, 0.3127, 0.2405, 0.3626, 0.2906, 0.3317, 0.3242, 0.2913, 0.2319, 0.2741, 0.4322, 0.4540, 0.3615, 0.3864, 0.3934, 0.4171, 0.4525, 0.3179, 0.4114},
+      { 0.1763, 0.1785, 0.2590, 0.1999, 0.2895, 0.2499, 0.2700, 0.2931, 0.2418, 0.1946, 0.2163, 0.3217, 0.3150, 0.2459, 0.2650, 0.2808, 0.3000, 0.3179, 0.2699, 0.3003},
+      { 0.2240, 0.1745, 0.2810, 0.1964, 0.3395, 0.2933, 0.3556, 0.3708, 0.2581, 0.2347, 0.2568, 0.3880, 0.3966, 0.3770, 0.3732, 0.3576, 0.3902, 0.4114, 0.3003, 0.5113}},
+    {
+      { 0.1560, 0.1456, 0.3921, 0.3524, 0.3135, 0.2404, 0.2428, 0.2506, 0.2748, 0.1893, 0.1973, 0.2853, 0.2650, 0.1677, 0.1619, 0.1858, 0.2070, 0.2015, 0.1838, 0.2213},
+      { 0.1456, 0.1770, 0.4137, 0.3649, 0.3008, 0.2304, 0.2261, 0.2302, 0.2707, 0.1680, 0.1987, 0.2911, 0.3012, 0.1504, 0.1324, 0.1685, 0.1931, 0.1993, 0.1899, 0.1827},
+      { 0.3921, 0.4137, 0.2909, 0.2465, 0.3155, 0.2910, 0.2980, 0.2912, 0.3196, 0.2532, 0.2715, 0.3618, 0.3744, 0.2431, 0.2337, 0.2701, 0.2743, 0.3022, 0.2706, 0.2989},
+      { 0.3524, 0.3649, 0.2465, 0.2001, 0.2631, 0.2328, 0.2442, 0.2463, 0.2776, 0.1887, 0.1994, 0.3126, 0.3069, 0.1864, 0.1735, 0.2024, 0.2047, 0.2347, 0.2093, 0.2167},
+      { 0.3135, 0.3008, 0.3155, 0.2631, 0.3735, 0.3295, 0.3647, 0.3243, 0.3188, 0.2468, 0.2913, 0.3943, 0.3935, 0.3291, 0.3086, 0.3221, 0.3364, 0.3738, 0.2877, 0.3514},
+      { 0.2404, 0.2304, 0.2910, 0.2328, 0.3295, 0.2686, 0.2797, 0.3114, 0.2878, 0.2269, 0.2403, 0.3077, 0.3143, 0.2380, 0.2334, 0.2470, 0.2890, 0.2909, 0.2427, 0.2919},
+      { 0.2428, 0.2261, 0.2980, 0.2442, 0.3647, 0.2797, 0.3202, 0.3692, 0.2929, 0.2191, 0.2446, 0.3368, 0.3457, 0.3008, 0.2932, 0.2969, 0.3130, 0.3359, 0.2706, 0.3383},
+      { 0.2506, 0.2302, 0.2912, 0.2463, 0.3243, 0.3114, 0.3692, 0.3904, 0.3271, 0.2723, 0.2741, 0.3405, 0.3113, 0.3560, 0.4049, 0.3562, 0.3822, 0.3413, 0.2807, 0.3739},
+      { 0.2748, 0.2707, 0.3196, 0.2776, 0.3188, 0.2878, 0.2929, 0.3271, 0.3157, 0.2287, 0.2695, 0.3350, 0.3592, 0.2286, 0.2216, 0.2446, 0.2812, 0.2797, 0.2494, 0.2813},
+      { 0.1893, 0.1680, 0.2532, 0.1887, 0.2468, 0.2269, 0.2191, 0.2723, 0.2287, 0.2078, 0.2057, 0.2589, 0.2695, 0.1490, 0.1255, 0.1705, 0.2133, 0.2218, 0.2017, 0.2437},
+      { 0.1973, 0.1987, 0.2715, 0.1994, 0.2913, 0.2403, 0.2446, 0.2741, 0.2695, 0.2057, 0.2433, 0.3328, 0.3426, 0.1747, 0.1607, 0.1963, 0.2440, 0.2634, 0.2202, 0.2528},
+      { 0.2853, 0.2911, 0.3618, 0.3126, 0.3943, 0.3077, 0.3368, 0.3405, 0.3350, 0.2589, 0.3328, 0.4213, 0.4420, 0.3565, 0.3514, 0.3798, 0.4050, 0.4372, 0.3203, 0.3940},
+      { 0.2650, 0.3012, 0.3744, 0.3069, 0.3935, 0.3143, 0.3457, 0.3113, 0.3592, 0.2695, 0.3426, 0.4420, 0.4828, 0.3602, 0.3672, 0.3798, 0.4258, 0.4630, 0.3179, 0.4086},
+      { 0.1677, 0.1504, 0.2431, 0.1864, 0.3291, 0.2380, 0.3008, 0.3560, 0.2286, 0.1490, 0.1747, 0.3565, 0.3602, 0.3878, 0.3794, 0.3650, 0.3536, 0.3901, 0.2644, 0.4115},
+      { 0.1619, 0.1324, 0.2337, 0.1735, 0.3086, 0.2334, 0.2932, 0.4049, 0.2216, 0.1255, 0.1607, 0.3514, 0.3672, 0.3794, 0.3833, 0.3674, 0.3447, 0.3804, 0.2554, 0.4221},
+      { 0.1858, 0.1685, 0.2701, 0.2024, 0.3221, 0.2470, 0.2969, 0.3562, 0.2446, 0.1705, 0.1963, 0.3798, 0.3798, 0.3650, 0.3674, 0.3786, 0.3642, 0.4051, 0.2781, 0.3984},
+      { 0.2070, 0.1931, 0.2743, 0.2047, 0.3364, 0.2890, 0.3130, 0.3822, 0.2812, 0.2133, 0.2440, 0.4050, 0.4258, 0.3536, 0.3447, 0.3642, 0.4084, 0.4270, 0.2952, 0.4195},
+      { 0.2015, 0.1993, 0.3022, 0.2347, 0.3738, 0.2909, 0.3359, 0.3413, 0.2797, 0.2218, 0.2634, 0.4372, 0.4630, 0.3901, 0.3804, 0.4051, 0.4270, 0.4626, 0.3145, 0.4402},
+      { 0.1838, 0.1899, 0.2706, 0.2093, 0.2877, 0.2427, 0.2706, 0.2807, 0.2494, 0.2017, 0.2202, 0.3203, 0.3179, 0.2644, 0.2554, 0.2781, 0.2952, 0.3145, 0.2750, 0.3069},
+      { 0.2213, 0.1827, 0.2989, 0.2167, 0.3514, 0.2919, 0.3383, 0.3739, 0.2813, 0.2437, 0.2528, 0.3940, 0.4086, 0.4115, 0.4221, 0.3984, 0.4195, 0.4402, 0.3069, 0.4971}},
+    {
+      { 0.1467, 0.1358, 0.3866, 0.3365, 0.3020, 0.2340, 0.2326, 0.2298, 0.2578, 0.1978, 0.1998, 0.2783, 0.2546, 0.1739, 0.1762, 0.1768, 0.2024, 0.1985, 0.1776, 0.2044},
+      { 0.1358, 0.1679, 0.4040, 0.3489, 0.2783, 0.2219, 0.2188, 0.2128, 0.2571, 0.1670, 0.1929, 0.2795, 0.2779, 0.1620, 0.1631, 0.1440, 0.1724, 0.1853, 0.1876, 0.1805},
+      { 0.3866, 0.4040, 0.2786, 0.2193, 0.2978, 0.2828, 0.2798, 0.2799, 0.3105, 0.2493, 0.2571, 0.3556, 0.3583, 0.2511, 0.2564, 0.2419, 0.2606, 0.2848, 0.2588, 0.2715},
+      { 0.3365, 0.3489, 0.2193, 0.1838, 0.2390, 0.2206, 0.2255, 0.2349, 0.2516, 0.1814, 0.1782, 0.3019, 0.2812, 0.1911, 0.1930, 0.1746, 0.1921, 0.2124, 0.1997, 0.2076},
+      { 0.3020, 0.2783, 0.2978, 0.2390, 0.3563, 0.3137, 0.3377, 0.3111, 0.3021, 0.2397, 0.2869, 0.3919, 0.3869, 0.3145, 0.3083, 0.3053, 0.3342, 0.3490, 0.2696, 0.3310},
+      { 0.2340, 0.2219, 0.2828, 0.2206, 0.3137, 0.2598, 0.2654, 0.2788, 0.2750, 0.2298, 0.2278, 0.3076, 0.3057, 0.2431, 0.2386, 0.2395, 0.2636, 0.2749, 0.2381, 0.2832},
+      { 0.2326, 0.2188, 0.2798, 0.2255, 0.3377, 0.2654, 0.2999, 0.3265, 0.2818, 0.2114, 0.2342, 0.3267, 0.3403, 0.2947, 0.2952, 0.2676, 0.2961, 0.3158, 0.2585, 0.3098},
+      { 0.2298, 0.2128, 0.2799, 0.2349, 0.3111, 0.2788, 0.3265, 0.3567, 0.3185, 0.2550, 0.2493, 0.3240, 0.3211, 0.3215, 0.3562, 0.3755, 0.3629, 0.3385, 0.2544, 0.3307},
+      { 0.2578, 0.2571, 0.3105, 0.2516, 0.3021, 0.2750, 0.2818, 0.3185, 0.2962, 0.2356, 0.2583, 0.3225, 0.3471, 0.2393, 0.2400, 0.2208, 0.2686, 0.2764, 0.2402, 0.2722},
+      { 0.1978, 0.1670, 0.2493, 0.1814, 0.2397, 0.2298, 0.2114, 0.2550, 0.2356, 0.2195, 0.2063, 0.2638, 0.2794, 0.1744, 0.1708, 0.1970, 0.2323, 0.2328, 0.2367, 0.2837},
+      { 0.1998, 0.1929, 0.2571, 0.1782, 0.2869, 0.2278, 0.2342, 0.2493, 0.2583, 0.2063, 0.2424, 0.3396, 0.3547, 0.1977, 0.1977, 0.1608, 0.2368, 0.2612, 0.2088, 0.2508},
+      { 0.2783, 0.2795, 0.3556, 0.3019, 0.3919, 0.3076, 0.3267, 0.3240, 0.3225, 0.2638, 0.3396, 0.4158, 0.4556, 0.3666, 0.3748, 0.3563, 0.3913, 0.4282, 0.3187, 0.3916},
+      { 0.2546, 0.2779, 0.3583, 0.2812, 0.3869, 0.3057, 0.3403, 0.3211, 0.3471, 0.2794, 0.3547, 0.4556, 0.4603, 0.3753, 0.3926, 0.3738, 0.4149, 0.4497, 0.3182, 0.3977},
+      { 0.1739, 0.1620, 0.2511, 0.1911, 0.3145, 0.2431, 0.2947, 0.3215, 0.2393, 0.1744, 0.1977, 0.3666, 0.3753, 0.3737, 0.3823, 0.3439, 0.3537, 0.3843, 0.2723, 0.3783},
+      { 0.1762, 0.1631, 0.2564, 0.1930, 0.3083, 0.2386, 0.2952, 0.3562, 0.2400, 0.1708, 0.1977, 0.3748, 0.3926, 0.3823, 0.3974, 0.3677, 0.3684, 0.3964, 0.2748, 0.4040},
+      { 0.1768, 0.1440, 0.2419, 0.1746, 0.3053, 0.2395, 0.2676, 0.3755, 0.2208, 0.1970, 0.1608, 0.3563, 0.3738, 0.3439, 0.3677, 0.3510, 0.3371, 0.3772, 0.2495, 0.3722},
+      { 0.2024, 0.1724, 0.2606, 0.1921, 0.3342, 0.2636, 0.2961, 0.3629, 0.2686, 0.2323, 0.2368, 0.3913, 0.4149, 0.3537, 0.3684, 0.3371, 0.3969, 0.4163, 0.2815, 0.4044},
+      { 0.1985, 0.1853, 0.2848, 0.2124, 0.3490, 0.2749, 0.3158, 0.3385, 0.2764, 0.2328, 0.2612, 0.4282, 0.4497, 0.3843, 0.3964, 0.3772, 0.4163, 0.4456, 0.3032, 0.4231},
+      { 0.1776, 0.1876, 0.2588, 0.1997, 0.2696, 0.2381, 0.2585, 0.2544, 0.2402, 0.2367, 0.2088, 0.3187, 0.3182, 0.2723, 0.2748, 0.2495, 0.2815, 0.3032, 0.2781, 0.2841},
+      { 0.2044, 0.1805, 0.2715, 0.2076, 0.3310, 0.2832, 0.3098, 0.3307, 0.2722, 0.2837, 0.2508, 0.3916, 0.3977, 0.3783, 0.4040, 0.3722, 0.4044, 0.4231, 0.2841, 0.4862}},
+    {
+      { 0.1614, 0.1665, 0.4132, 0.3683, 0.3345, 0.2711, 0.2632, 0.2595, 0.2782, 0.2173, 0.2224, 0.3111, 0.3119, 0.1973, 0.2031, 0.1973, 0.2403, 0.2428, 0.2148, 0.2475},
+      { 0.1665, 0.1996, 0.4326, 0.3725, 0.3059, 0.2600, 0.2391, 0.2513, 0.2772, 0.2100, 0.2203, 0.3185, 0.3227, 0.1984, 0.1991, 0.1915, 0.1445, 0.2284, 0.2142, 0.2180},
+      { 0.4132, 0.4326, 0.3048, 0.2372, 0.3283, 0.3127, 0.3109, 0.3114, 0.3392, 0.2771, 0.3001, 0.3913, 0.3889, 0.2748, 0.2894, 0.2784, 0.2403, 0.3289, 0.2809, 0.3055},
+      { 0.3683, 0.3725, 0.2372, 0.2008, 0.2546, 0.2428, 0.2469, 0.2656, 0.2608, 0.2062, 0.2067, 0.3233, 0.3199, 0.2123, 0.2198, 0.2101, 0.1499, 0.2401, 0.2162, 0.2442},
+      { 0.3345, 0.3059, 0.3283, 0.2546, 0.4010, 0.3666, 0.3798, 0.3828, 0.3442, 0.2943, 0.3247, 0.4405, 0.4403, 0.3659, 0.3632, 0.3647, 0.3663, 0.4067, 0.3196, 0.4071},
+      { 0.2711, 0.2600, 0.3127, 0.2428, 0.3666, 0.3060, 0.3194, 0.3341, 0.3267, 0.2716, 0.2756, 0.3561, 0.3471, 0.2838, 0.2869, 0.2830, 0.3126, 0.3303, 0.2842, 0.3308},
+      { 0.2632, 0.2391, 0.3109, 0.2469, 0.3798, 0.3194, 0.3488, 0.3892, 0.3245, 0.2617, 0.2753, 0.3749, 0.3837, 0.3428, 0.3414, 0.3305, 0.3298, 0.3799, 0.3029, 0.3848},
+      { 0.2595, 0.2513, 0.3114, 0.2656, 0.3828, 0.3341, 0.3892, 0.4125, 0.3714, 0.3022, 0.2939, 0.3674, 0.3855, 0.3727, 0.3822, 0.3629, 0.4947, 0.3835, 0.2957, 0.4034},
+      { 0.2782, 0.2772, 0.3392, 0.2608, 0.3442, 0.3267, 0.3245, 0.3714, 0.3293, 0.2790, 0.2862, 0.3807, 0.4242, 0.2883, 0.2868, 0.2740, 0.2651, 0.3281, 0.2901, 0.3284},
+      { 0.2173, 0.2100, 0.2771, 0.2062, 0.2943, 0.2716, 0.2617, 0.3022, 0.2790, 0.2523, 0.2508, 0.3215, 0.3169, 0.2264, 0.2217, 0.2382, 0.2335, 0.2812, 0.2648, 0.3182},
+      { 0.2224, 0.2203, 0.3001, 0.2067, 0.3247, 0.2756, 0.2753, 0.2939, 0.2862, 0.2508, 0.3235, 0.3636, 0.3858, 0.2459, 0.2406, 0.2339, 0.2156, 0.3034, 0.2515, 0.2946},
+      { 0.3111, 0.3185, 0.3913, 0.3233, 0.4405, 0.3561, 0.3749, 0.3674, 0.3807, 0.3215, 0.3636, 0.4673, 0.5272, 0.4153, 0.4183, 0.4210, 0.3933, 0.4846, 0.3708, 0.4592},
+      { 0.3119, 0.3227, 0.3889, 0.3199, 0.4403, 0.3471, 0.3837, 0.3855, 0.4242, 0.3169, 0.3858, 0.5272, 0.5374, 0.4162, 0.4496, 0.4341, 0.4718, 0.5234, 0.3766, 0.4420},
+      { 0.1973, 0.1984, 0.2748, 0.2123, 0.3659, 0.2838, 0.3428, 0.3727, 0.2883, 0.2264, 0.2459, 0.4153, 0.4162, 0.4232, 0.4223, 0.3979, 0.3728, 0.4430, 0.3208, 0.4144},
+      { 0.2031, 0.1991, 0.2894, 0.2198, 0.3632, 0.2869, 0.3414, 0.3822, 0.2868, 0.2217, 0.2406, 0.4183, 0.4496, 0.4223, 0.4456, 0.4253, 0.3932, 0.4470, 0.3328, 0.4349},
+      { 0.1973, 0.1915, 0.2784, 0.2101, 0.3647, 0.2830, 0.3305, 0.3629, 0.2740, 0.2382, 0.2339, 0.4210, 0.4341, 0.3979, 0.4253, 0.4029, 0.3656, 0.4333, 0.3129, 0.4171},
+      { 0.2403, 0.1445, 0.2403, 0.1499, 0.3663, 0.3126, 0.3298, 0.4947, 0.2651, 0.2335, 0.2156, 0.3933, 0.4718, 0.3728, 0.3932, 0.3656, 0.4296, 0.4193, 0.2909, 0.4360},
+      { 0.2428, 0.2284, 0.3289, 0.2401, 0.4067, 0.3303, 0.3799, 0.3835, 0.3281, 0.2812, 0.3034, 0.4846, 0.5234, 0.4430, 0.4470, 0.4333, 0.4193, 0.5236, 0.3618, 0.4801},
+      { 0.2148, 0.2142, 0.2809, 0.2162, 0.3196, 0.2842, 0.3029, 0.2957, 0.2901, 0.2648, 0.2515, 0.3708, 0.3766, 0.3208, 0.3328, 0.3129, 0.2909, 0.3618, 0.3087, 0.3486},
+      { 0.2475, 0.2180, 0.3055, 0.2442, 0.4071, 0.3308, 0.3848, 0.4034, 0.3284, 0.3182, 0.2946, 0.4592, 0.4420, 0.4144, 0.4349, 0.4171, 0.4360, 0.4801, 0.3486, 0.5594}},
+    {
+      { 0.2111, 0.1842, 0.4194, 0.3617, 0.3451, 0.2793, 0.2706, 0.2908, 0.2842, 0.2480, 0.2421, 0.3289, 0.2971, 0.2111, 0.2032, 0.2112, 0.2481, 0.2329, 0.2239, 0.2516},
+      { 0.1842, 0.2023, 0.4308, 0.3687, 0.3197, 0.2601, 0.2595, 0.2532, 0.2887, 0.2137, 0.2326, 0.2926, 0.3200, 0.2128, 0.2110, 0.2090, 0.2267, 0.1771, 0.2267, 0.2305},
+      { 0.4194, 0.4308, 0.3273, 0.2558, 0.3548, 0.3233, 0.3299, 0.3257, 0.3512, 0.3009, 0.3133, 0.3732, 0.3863, 0.3032, 0.3152, 0.3063, 0.3164, 0.2952, 0.3050, 0.3243},
+      { 0.3617, 0.3687, 0.2558, 0.2180, 0.2788, 0.2576, 0.2747, 0.2798, 0.2817, 0.2261, 0.2269, 0.3214, 0.2973, 0.2327, 0.2386, 0.2290, 0.2352, 0.2081, 0.2307, 0.2455},
+      { 0.3451, 0.3197, 0.3548, 0.2788, 0.4392, 0.3813, 0.3850, 0.4233, 0.3570, 0.2890, 0.3223, 0.4632, 0.5011, 0.3553, 0.3447, 0.3474, 0.3733, 0.4008, 0.3179, 0.4045},
+      { 0.2793, 0.2601, 0.3233, 0.2576, 0.3813, 0.3125, 0.3135, 0.3556, 0.3182, 0.2774, 0.2854, 0.3586, 0.3674, 0.2778, 0.2829, 0.2784, 0.3172, 0.3039, 0.2823, 0.3354},
+      { 0.2706, 0.2595, 0.3299, 0.2747, 0.3850, 0.3135, 0.3424, 0.3651, 0.3238, 0.2655, 0.2950, 0.3631, 0.3730, 0.3355, 0.3350, 0.3262, 0.3576, 0.3294, 0.2968, 0.3413},
+      { 0.2908, 0.2532, 0.3257, 0.2798, 0.4233, 0.3556, 0.3651, 0.4272, 0.3428, 0.3292, 0.2735, 0.4665, 0.4591, 0.3242, 0.3413, 0.3385, 0.3835, 0.4818, 0.3085, 0.3649},
+      { 0.2842, 0.2887, 0.3512, 0.2817, 0.3570, 0.3182, 0.3238, 0.3428, 0.3301, 0.2836, 0.3025, 0.3634, 0.3864, 0.2812, 0.2786, 0.2767, 0.3140, 0.2898, 0.2828, 0.3079},
+      { 0.2480, 0.2137, 0.3009, 0.2261, 0.2890, 0.2774, 0.2655, 0.3292, 0.2836, 0.2756, 0.2618, 0.2891, 0.2960, 0.2168, 0.2172, 0.2402, 0.2775, 0.2150, 0.2613, 0.3041},
+      { 0.2421, 0.2326, 0.3133, 0.2269, 0.3223, 0.2854, 0.2950, 0.2735, 0.3025, 0.2618, 0.3023, 0.3466, 0.3651, 0.2509, 0.2548, 0.2463, 0.2906, 0.2475, 0.2592, 0.2986},
+      { 0.3289, 0.2926, 0.3732, 0.3214, 0.4632, 0.3586, 0.3631, 0.4665, 0.3634, 0.2891, 0.3466, 0.4606, 0.4821, 0.4188, 0.4308, 0.4200, 0.4568, 0.4382, 0.3549, 0.4534},
+      { 0.2971, 0.3200, 0.3863, 0.2973, 0.5011, 0.3674, 0.3730, 0.4591, 0.3864, 0.2960, 0.3651, 0.4821, 0.5019, 0.4412, 0.4574, 0.4367, 0.4940, 0.4599, 0.3604, 0.4756},
+      { 0.2111, 0.2128, 0.3032, 0.2327, 0.3553, 0.2778, 0.3355, 0.3242, 0.2812, 0.2168, 0.2509, 0.4188, 0.4412, 0.4226, 0.4308, 0.4060, 0.4116, 0.3980, 0.3152, 0.3985},
+      { 0.2032, 0.2110, 0.3152, 0.2386, 0.3447, 0.2829, 0.3350, 0.3413, 0.2786, 0.2172, 0.2548, 0.4308, 0.4574, 0.4308, 0.4600, 0.4318, 0.4220, 0.4230, 0.3315, 0.4111},
+      { 0.2112, 0.2090, 0.3063, 0.2290, 0.3474, 0.2784, 0.3262, 0.3385, 0.2767, 0.2402, 0.2463, 0.4200, 0.4367, 0.4060, 0.4318, 0.4246, 0.4113, 0.4071, 0.3174, 0.3943},
+      { 0.2481, 0.2267, 0.3164, 0.2352, 0.3733, 0.3172, 0.3576, 0.3835, 0.3140, 0.2775, 0.2906, 0.4568, 0.4940, 0.4116, 0.4220, 0.4113, 0.4796, 0.4400, 0.3441, 0.4278},
+      { 0.2329, 0.1771, 0.2952, 0.2081, 0.4008, 0.3039, 0.3294, 0.4818, 0.2898, 0.2150, 0.2475, 0.4382, 0.4599, 0.3980, 0.4230, 0.4071, 0.4400, 0.4390, 0.3008, 0.4686},
+      { 0.2239, 0.2267, 0.3050, 0.2307, 0.3179, 0.2823, 0.2968, 0.3085, 0.2828, 0.2613, 0.2592, 0.3549, 0.3604, 0.3152, 0.3315, 0.3174, 0.3441, 0.3008, 0.3065, 0.3257},
+      { 0.2516, 0.2305, 0.3243, 0.2455, 0.4045, 0.3354, 0.3413, 0.3649, 0.3079, 0.3041, 0.2986, 0.4534, 0.4756, 0.3985, 0.4111, 0.3943, 0.4278, 0.4686, 0.3257, 0.5267}},
+    {
+      { 0.0944, 0.0928, 0.3477, 0.2950, 0.2625, 0.2165, 0.2014, 0.2040, 0.2293, 0.1635, 0.1561, 0.2582, 0.2444, 0.1612, 0.1613, 0.1698, 0.1957, 0.2016, 0.1705, 0.2180},
+      { 0.0928, 0.1395, 0.3672, 0.3223, 0.2463, 0.1682, 0.1798, 0.1581, 0.2374, 0.1195, 0.1582, 0.2698, 0.2719, 0.1622, 0.1830, 0.1919, 0.1850, 0.2022, 0.1281, 0.1441},
+      { 0.3477, 0.3672, 0.2545, 0.1951, 0.2695, 0.2440, 0.2491, 0.2255, 0.2780, 0.2067, 0.2287, 0.3589, 0.3433, 0.2564, 0.2744, 0.2871, 0.2738, 0.3124, 0.2193, 0.2591},
+      { 0.2950, 0.3223, 0.1951, 0.1493, 0.2029, 0.1804, 0.1941, 0.1666, 0.2337, 0.1439, 0.1550, 0.3015, 0.2614, 0.1981, 0.2127, 0.2217, 0.1932, 0.2345, 0.1631, 0.1804},
+      { 0.2625, 0.2463, 0.2695, 0.2029, 0.3191, 0.3068, 0.3152, 0.2927, 0.2621, 0.2607, 0.2783, 0.3760, 0.3790, 0.2973, 0.2914, 0.2964, 0.2998, 0.3532, 0.2707, 0.3321},
+      { 0.2165, 0.1682, 0.2440, 0.1804, 0.3068, 0.2595, 0.2676, 0.3360, 0.2398, 0.2228, 0.2102, 0.2980, 0.3031, 0.2408, 0.2523, 0.2420, 0.2773, 0.2899, 0.2269, 0.2926},
+      { 0.2014, 0.1798, 0.2491, 0.1941, 0.3152, 0.2676, 0.2814, 0.3137, 0.2545, 0.2203, 0.2202, 0.3097, 0.3092, 0.2825, 0.2858, 0.2705, 0.2833, 0.3059, 0.2365, 0.2937},
+      { 0.2040, 0.1581, 0.2255, 0.1666, 0.2927, 0.3360, 0.3137, 0.3087, 0.2589, 0.3119, 0.2946, 0.3175, 0.3215, 0.2931, 0.2807, 0.2544, 0.2957, 0.3085, 0.3539, 0.3778},
+      { 0.2293, 0.2374, 0.2780, 0.2337, 0.2621, 0.2398, 0.2545, 0.2589, 0.2755, 0.1975, 0.2277, 0.3127, 0.3361, 0.2370, 0.2565, 0.2578, 0.2684, 0.2986, 0.2149, 0.2345},
+      { 0.1635, 0.1195, 0.2067, 0.1439, 0.2607, 0.2228, 0.2203, 0.3119, 0.1975, 0.1930, 0.1748, 0.2744, 0.2760, 0.2021, 0.2125, 0.2343, 0.2625, 0.2674, 0.2277, 0.2980},
+      { 0.1561, 0.1582, 0.2287, 0.1550, 0.2783, 0.2102, 0.2202, 0.2946, 0.2277, 0.1748, 0.2324, 0.3351, 0.3447, 0.2046, 0.2309, 0.2222, 0.2654, 0.2851, 0.1486, 0.2291},
+      { 0.2582, 0.2698, 0.3589, 0.3015, 0.3760, 0.2980, 0.3097, 0.3175, 0.3127, 0.2744, 0.3351, 0.4049, 0.4573, 0.3370, 0.3641, 0.3665, 0.3942, 0.4163, 0.2798, 0.3577},
+      { 0.2444, 0.2719, 0.3433, 0.2614, 0.3790, 0.3031, 0.3092, 0.3215, 0.3361, 0.2760, 0.3447, 0.4573, 0.4801, 0.3507, 0.3683, 0.3626, 0.4182, 0.4541, 0.2783, 0.3549},
+      { 0.1612, 0.1622, 0.2564, 0.1981, 0.2973, 0.2408, 0.2825, 0.2931, 0.2370, 0.2021, 0.2046, 0.3370, 0.3507, 0.3301, 0.3448, 0.3256, 0.3255, 0.3570, 0.2590, 0.3297},
+      { 0.1613, 0.1830, 0.2744, 0.2127, 0.2914, 0.2523, 0.2858, 0.2807, 0.2565, 0.2125, 0.2309, 0.3641, 0.3683, 0.3448, 0.3541, 0.3466, 0.3355, 0.3811, 0.2647, 0.3420},
+      { 0.1698, 0.1919, 0.2871, 0.2217, 0.2964, 0.2420, 0.2705, 0.2544, 0.2578, 0.2343, 0.2222, 0.3665, 0.3626, 0.3256, 0.3466, 0.3462, 0.3344, 0.3721, 0.2605, 0.3194},
+      { 0.1957, 0.1850, 0.2738, 0.1932, 0.2998, 0.2773, 0.2833, 0.2957, 0.2684, 0.2625, 0.2654, 0.3942, 0.4182, 0.3255, 0.3355, 0.3344, 0.3834, 0.4033, 0.2693, 0.3634},
+      { 0.2016, 0.2022, 0.3124, 0.2345, 0.3532, 0.2899, 0.3059, 0.3085, 0.2986, 0.2674, 0.2851, 0.4163, 0.4541, 0.3570, 0.3811, 0.3721, 0.4033, 0.4354, 0.2803, 0.3755},
+      { 0.1705, 0.1281, 0.2193, 0.1631, 0.2707, 0.2269, 0.2365, 0.3539, 0.2149, 0.2277, 0.1486, 0.2798, 0.2783, 0.2590, 0.2647, 0.2605, 0.2693, 0.2803, 0.2366, 0.3126},
+      { 0.2180, 0.1441, 0.2591, 0.1804, 0.3321, 0.2926, 0.2937, 0.3778, 0.2345, 0.2980, 0.2291, 0.3577, 0.3549, 0.3297, 0.3420, 0.3194, 0.3634, 0.3755, 0.3126, 0.4971}},
+    {
+      { 0.1807, 0.1565, 0.3989, 0.3528, 0.3336, 0.2940, 0.2733, 0.3134, 0.2752, 0.2576, 0.2441, 0.3085, 0.3012, 0.2011, 0.2168, 0.2113, 0.2439, 0.2537, 0.2130, 0.1935},
+      { 0.1565, 0.1620, 0.4065, 0.3551, 0.3103, 0.2322, 0.2146, 0.2653, 0.2738, 0.2036, 0.1955, 0.2970, 0.3237, 0.1736, 0.2050, 0.2043, 0.2220, 0.2246, 0.1625, 0.1197},
+      { 0.3989, 0.4065, 0.3043, 0.2510, 0.3547, 0.2965, 0.2963, 0.3244, 0.3305, 0.2835, 0.2894, 0.3887, 0.3913, 0.2829, 0.2825, 0.2912, 0.3007, 0.3308, 0.2668, 0.2567},
+      { 0.3528, 0.3551, 0.2510, 0.1930, 0.2960, 0.2232, 0.2301, 0.2781, 0.2769, 0.2216, 0.1805, 0.3329, 0.3125, 0.2142, 0.2219, 0.2276, 0.2145, 0.2547, 0.2047, 0.1777},
+      { 0.3336, 0.3103, 0.3547, 0.2960, 0.4030, 0.3972, 0.4099, 0.3618, 0.3306, 0.3217, 0.3557, 0.4327, 0.4560, 0.3497, 0.3449, 0.3599, 0.3646, 0.3910, 0.3239, 0.3742},
+      { 0.2940, 0.2322, 0.2965, 0.2232, 0.3972, 0.3341, 0.3364, 0.4474, 0.3061, 0.2782, 0.2648, 0.3519, 0.3924, 0.2969, 0.3057, 0.2875, 0.3408, 0.3334, 0.2879, 0.2795},
+      { 0.2733, 0.2146, 0.2963, 0.2301, 0.4099, 0.3364, 0.3586, 0.4648, 0.3012, 0.2717, 0.2625, 0.3622, 0.3902, 0.3466, 0.3393, 0.3133, 0.3332, 0.3525, 0.3024, 0.2950},
+      { 0.3134, 0.2653, 0.3244, 0.2781, 0.3618, 0.4474, 0.4648, 0.6324, 0.3602, 0.3553, 0.3307, 0.3574, 0.3672, 0.3708, 0.3739, 0.3307, 0.4034, 0.3649, 0.3778, 0.4564},
+      { 0.2752, 0.2738, 0.3305, 0.2769, 0.3306, 0.3061, 0.3012, 0.3602, 0.3068, 0.2722, 0.2969, 0.3384, 0.3673, 0.2584, 0.2839, 0.2799, 0.3059, 0.3194, 0.2607, 0.2386},
+      { 0.2576, 0.2036, 0.2835, 0.2216, 0.3217, 0.2782, 0.2717, 0.3553, 0.2722, 0.2694, 0.2367, 0.3143, 0.3367, 0.2530, 0.2630, 0.2961, 0.3230, 0.3141, 0.3024, 0.2498},
+      { 0.2441, 0.1955, 0.2894, 0.1805, 0.3557, 0.2648, 0.2625, 0.3307, 0.2969, 0.2367, 0.2843, 0.3821, 0.3947, 0.2515, 0.2588, 0.2716, 0.3037, 0.3327, 0.2309, 0.1687},
+      { 0.3085, 0.2970, 0.3887, 0.3329, 0.4327, 0.3519, 0.3622, 0.3574, 0.3384, 0.3143, 0.3821, 0.4465, 0.5219, 0.3895, 0.4047, 0.3967, 0.4293, 0.4581, 0.3309, 0.3490},
+      { 0.3012, 0.3237, 0.3913, 0.3125, 0.4560, 0.3924, 0.3902, 0.3672, 0.3673, 0.3367, 0.3947, 0.5219, 0.5014, 0.3949, 0.4150, 0.4183, 0.4698, 0.5086, 0.3414, 0.3589},
+      { 0.2011, 0.1736, 0.2829, 0.2142, 0.3497, 0.2969, 0.3466, 0.3708, 0.2584, 0.2530, 0.2515, 0.3895, 0.3949, 0.4036, 0.4100, 0.3834, 0.3864, 0.4125, 0.3168, 0.3146},
+      { 0.2168, 0.2050, 0.2825, 0.2219, 0.3449, 0.3057, 0.3393, 0.3739, 0.2839, 0.2630, 0.2588, 0.4047, 0.4150, 0.4100, 0.4196, 0.3962, 0.3957, 0.4223, 0.3299, 0.3354},
+      { 0.2113, 0.2043, 0.2912, 0.2276, 0.3599, 0.2875, 0.3133, 0.3307, 0.2799, 0.2961, 0.2716, 0.3967, 0.4183, 0.3834, 0.3962, 0.3931, 0.3785, 0.4086, 0.3092, 0.3044},
+      { 0.2439, 0.2220, 0.3007, 0.2145, 0.3646, 0.3408, 0.3332, 0.4034, 0.3059, 0.3230, 0.3037, 0.4293, 0.4698, 0.3864, 0.3957, 0.3785, 0.4388, 0.4363, 0.3305, 0.3707},
+      { 0.2537, 0.2246, 0.3308, 0.2547, 0.3910, 0.3334, 0.3525, 0.3649, 0.3194, 0.3141, 0.3327, 0.4581, 0.5086, 0.4125, 0.4223, 0.4086, 0.4363, 0.4632, 0.3317, 0.3676},
+      { 0.2130, 0.1625, 0.2668, 0.2047, 0.3239, 0.2879, 0.3024, 0.3778, 0.2607, 0.3024, 0.2309, 0.3309, 0.3414, 0.3168, 0.3299, 0.3092, 0.3305, 0.3317, 0.2830, 0.2437},
+      { 0.1935, 0.1197, 0.2567, 0.1777, 0.3742, 0.2795, 0.2950, 0.4564, 0.2386, 0.2498, 0.1687, 0.3490, 0.3589, 0.3146, 0.3354, 0.3044, 0.3707, 0.3676, 0.2437, 0.5172}}},
+  {
+    {
+      { 0.1232, 0.1570, 0.3446, 0.3097, 0.3477, 0.2351, 0.2395, 0.2636, 0.4168, 0.1989, 0.1869, 0.2960, 0.3219, 0.2399, 0.2464, 0.2400, 0.3079, 0.2723, 0.2110, 0.3061},
+      { 0.1570, 0.2276, 0.4143, 0.3797, 0.3000, 0.2634, 0.2638, 0.2721, 0.2656, 0.1883, 0.2207, 0.3163, 0.3405, 0.2597, 0.2763, 0.2855, 0.2802, 0.2740, 0.2994, 0.2531},
+      { 0.3446, 0.4143, 0.2896, 0.2319, 0.2889, 0.2694, 0.2834, 0.2644, 0.2665, 0.2293, 0.2545, 0.3665, 0.3805, 0.3039, 0.3288, 0.3405, 0.3114, 0.3343, 0.3097, 0.2810},
+      { 0.3097, 0.3797, 0.2319, 0.2128, 0.2269, 0.2421, 0.2467, 0.2328, 0.2181, 0.1735, 0.2034, 0.3209, 0.3013, 0.2504, 0.2658, 0.2766, 0.2451, 0.2605, 0.2832, 0.2155},
+      { 0.3477, 0.3000, 0.2889, 0.2269, 0.3211, 0.2721, 0.2939, 0.2679, 0.2739, 0.2233, 0.2464, 0.3930, 0.4146, 0.3094, 0.3129, 0.3232, 0.3466, 0.3535, 0.2516, 0.3513},
+      { 0.2351, 0.2634, 0.2694, 0.2421, 0.2721, 0.2460, 0.2346, 0.2485, 0.2476, 0.1912, 0.2046, 0.2817, 0.3037, 0.2348, 0.2476, 0.2414, 0.2567, 0.2771, 0.2421, 0.2535},
+      { 0.2395, 0.2638, 0.2834, 0.2467, 0.2939, 0.2346, 0.2769, 0.2656, 0.2655, 0.1821, 0.1978, 0.3056, 0.3186, 0.2673, 0.2832, 0.2687, 0.2753, 0.2847, 0.2307, 0.2598},
+      { 0.2636, 0.2721, 0.2644, 0.2328, 0.2679, 0.2485, 0.2656, 0.2704, 0.2953, 0.2147, 0.2190, 0.2997, 0.3188, 0.2608, 0.2748, 0.2578, 0.2782, 0.2842, 0.2293, 0.2752},
+      { 0.4168, 0.2656, 0.2665, 0.2181, 0.2739, 0.2476, 0.2655, 0.2953, 0.2567, 0.1786, 0.1997, 0.3084, 0.3619, 0.2559, 0.2787, 0.2803, 0.2916, 0.2979, 0.2500, 0.3000},
+      { 0.1989, 0.1883, 0.2293, 0.1735, 0.2233, 0.1912, 0.1821, 0.2147, 0.1786, 0.1682, 0.1780, 0.2511, 0.2732, 0.1992, 0.1986, 0.1996, 0.2114, 0.2441, 0.1942, 0.2388},
+      { 0.1869, 0.2207, 0.2545, 0.2034, 0.2464, 0.2046, 0.1978, 0.2190, 0.1997, 0.1780, 0.2096, 0.3262, 0.3553, 0.2218, 0.2425, 0.2520, 0.2617, 0.2916, 0.2482, 0.2441},
+      { 0.2960, 0.3163, 0.3665, 0.3209, 0.3930, 0.2817, 0.3056, 0.2997, 0.3084, 0.2511, 0.3262, 0.4280, 0.4668, 0.3764, 0.3965, 0.3938, 0.3956, 0.4520, 0.2976, 0.3834},
+      { 0.3219, 0.3405, 0.3805, 0.3013, 0.4146, 0.3037, 0.3186, 0.3188, 0.3619, 0.2732, 0.3553, 0.4668, 0.5439, 0.3874, 0.4465, 0.4380, 0.4522, 0.4902, 0.2967, 0.3876},
+      { 0.2399, 0.2597, 0.3039, 0.2504, 0.3094, 0.2348, 0.2673, 0.2608, 0.2559, 0.1992, 0.2218, 0.3764, 0.3874, 0.3391, 0.3496, 0.3322, 0.3321, 0.3578, 0.2509, 0.3161},
+      { 0.2464, 0.2763, 0.3288, 0.2658, 0.3129, 0.2476, 0.2832, 0.2748, 0.2787, 0.1986, 0.2425, 0.3965, 0.4465, 0.3496, 0.3758, 0.3523, 0.3509, 0.3852, 0.2620, 0.3188},
+      { 0.2400, 0.2855, 0.3405, 0.2766, 0.3232, 0.2414, 0.2687, 0.2578, 0.2803, 0.1996, 0.2520, 0.3938, 0.4380, 0.3322, 0.3523, 0.3558, 0.3443, 0.3809, 0.2685, 0.3073},
+      { 0.3079, 0.2802, 0.3114, 0.2451, 0.3466, 0.2567, 0.2753, 0.2782, 0.2916, 0.2114, 0.2617, 0.3956, 0.4522, 0.3321, 0.3509, 0.3443, 0.4020, 0.3910, 0.2717, 0.3335},
+      { 0.2723, 0.2740, 0.3343, 0.2605, 0.3535, 0.2771, 0.2847, 0.2842, 0.2979, 0.2441, 0.2916, 0.4520, 0.4902, 0.3578, 0.3852, 0.3809, 0.3910, 0.4432, 0.2821, 0.3566},
+      { 0.2110, 0.2994, 0.3097, 0.2832, 0.2516, 0.2421, 0.2307, 0.2293, 0.2500, 0.1942, 0.2482, 0.2976, 0.2967, 0.2509, 0.2620, 0.2685, 0.2717, 0.2821, 0.3380, 0.2497},
+      { 0.3061, 0.2531, 0.2810, 0.2155, 0.3513, 0.2535, 0.2598, 0.2752, 0.3000, 0.2388, 0.2441, 0.3834, 0.3876, 0.3161, 0.3188, 0.3073, 0.3335, 0.3566, 0.2497, 0.5007}},
+    {
+      { 0.1775, 0.1711, 0.3830, 0.3461, 0.2870, 0.2515, 0.2474, 0.2537, 0.2656, 0.1949, 0.1841, 0.2918, 0.2894, 0.2053, 0.2168, 0.2266, 0.2533, 0.2449, 0.2581, 0.2471},
+      { 0.1711, 0.2171, 0.3928, 0.3458, 0.3435, 0.2550, 0.2610, 0.2757, 0.4183, 0.1848, 0.1988, 0.3235, 0.3322, 0.2765, 0.2818, 0.2872, 0.3145, 0.2898, 0.2776, 0.2801},
+      { 0.3830, 0.3928, 0.2719, 0.2197, 0.2698, 0.2684, 0.2830, 0.2691, 0.2516, 0.2263, 0.2382, 0.3725, 0.3714, 0.3041, 0.3268, 0.3350, 0.3023, 0.3280, 0.3043, 0.2777},
+      { 0.3461, 0.3458, 0.2197, 0.1955, 0.2232, 0.2447, 0.2497, 0.2403, 0.1992, 0.1671, 0.1903, 0.3324, 0.2987, 0.2520, 0.2710, 0.2791, 0.2484, 0.2681, 0.2716, 0.2233},
+      { 0.2870, 0.3435, 0.2698, 0.2232, 0.3350, 0.2723, 0.2944, 0.2628, 0.2601, 0.2143, 0.2344, 0.3841, 0.3975, 0.3063, 0.3260, 0.3208, 0.3430, 0.3551, 0.2580, 0.3272},
+      { 0.2515, 0.2550, 0.2684, 0.2447, 0.2723, 0.2526, 0.2454, 0.2578, 0.2386, 0.1900, 0.1979, 0.2789, 0.2914, 0.2343, 0.2381, 0.2368, 0.2485, 0.2790, 0.2448, 0.2516},
+      { 0.2474, 0.2610, 0.2830, 0.2497, 0.2944, 0.2454, 0.2935, 0.2764, 0.2567, 0.1842, 0.1945, 0.3105, 0.3118, 0.2786, 0.2916, 0.2677, 0.2653, 0.2885, 0.2288, 0.2775},
+      { 0.2537, 0.2757, 0.2691, 0.2403, 0.2628, 0.2578, 0.2764, 0.2780, 0.2504, 0.1987, 0.2105, 0.3099, 0.3407, 0.2529, 0.2707, 0.2571, 0.2772, 0.2887, 0.2374, 0.2738},
+      { 0.2656, 0.4183, 0.2516, 0.1992, 0.2601, 0.2386, 0.2567, 0.2504, 0.3000, 0.1824, 0.1969, 0.3094, 0.3614, 0.2600, 0.2767, 0.2793, 0.3055, 0.3083, 0.2311, 0.2748},
+      { 0.1949, 0.1848, 0.2263, 0.1671, 0.2143, 0.1900, 0.1842, 0.1987, 0.1824, 0.1738, 0.1717, 0.2611, 0.2794, 0.2036, 0.2102, 0.2126, 0.2347, 0.2431, 0.1995, 0.2322},
+      { 0.1841, 0.1988, 0.2382, 0.1903, 0.2344, 0.1979, 0.1945, 0.2105, 0.1969, 0.1717, 0.2050, 0.3151, 0.3424, 0.1990, 0.2159, 0.2306, 0.2325, 0.2812, 0.2304, 0.2358},
+      { 0.2918, 0.3235, 0.3725, 0.3324, 0.3841, 0.2789, 0.3105, 0.3099, 0.3094, 0.2611, 0.3151, 0.4224, 0.4574, 0.3692, 0.3963, 0.3966, 0.4024, 0.4492, 0.2899, 0.3922},
+      { 0.2894, 0.3322, 0.3714, 0.2987, 0.3975, 0.2914, 0.3118, 0.3407, 0.3614, 0.2794, 0.3424, 0.4574, 0.4866, 0.3538, 0.4035, 0.3970, 0.4293, 0.4672, 0.2925, 0.4006},
+      { 0.2053, 0.2765, 0.3041, 0.2520, 0.3063, 0.2343, 0.2786, 0.2529, 0.2600, 0.2036, 0.1990, 0.3692, 0.3538, 0.3294, 0.3414, 0.3256, 0.3251, 0.3557, 0.2398, 0.3295},
+      { 0.2168, 0.2818, 0.3268, 0.2710, 0.3260, 0.2381, 0.2916, 0.2707, 0.2767, 0.2102, 0.2159, 0.3963, 0.4035, 0.3414, 0.3729, 0.3527, 0.3497, 0.3796, 0.2495, 0.3399},
+      { 0.2266, 0.2872, 0.3350, 0.2791, 0.3208, 0.2368, 0.2677, 0.2571, 0.2793, 0.2126, 0.2306, 0.3966, 0.3970, 0.3256, 0.3527, 0.3612, 0.3477, 0.3819, 0.2626, 0.3219},
+      { 0.2533, 0.3145, 0.3023, 0.2484, 0.3430, 0.2485, 0.2653, 0.2772, 0.3055, 0.2347, 0.2325, 0.4024, 0.4293, 0.3251, 0.3497, 0.3477, 0.3931, 0.4178, 0.2636, 0.3422},
+      { 0.2449, 0.2898, 0.3280, 0.2681, 0.3551, 0.2790, 0.2885, 0.2887, 0.3083, 0.2431, 0.2812, 0.4492, 0.4672, 0.3557, 0.3796, 0.3819, 0.4178, 0.4517, 0.2760, 0.3816},
+      { 0.2581, 0.2776, 0.3043, 0.2716, 0.2580, 0.2448, 0.2288, 0.2374, 0.2311, 0.1995, 0.2304, 0.2899, 0.2925, 0.2398, 0.2495, 0.2626, 0.2636, 0.2760, 0.3364, 0.2411},
+      { 0.2471, 0.2801, 0.2777, 0.2233, 0.3272, 0.2516, 0.2775, 0.2738, 0.2748, 0.2322, 0.2358, 0.3922, 0.4006, 0.3295, 0.3399, 0.3219, 0.3422, 0.3816, 0.2411, 0.4696}},
+    {
+      { 0.2002, 0.1980, 0.3830, 0.3832, 0.3365, 0.2845, 0.2820, 0.2917, 0.2665, 0.2357, 0.2354, 0.3327, 0.3165, 0.2519, 0.2561, 0.2564, 0.2728, 0.2848, 0.2640, 0.2896},
+      { 0.1980, 0.2197, 0.4086, 0.3972, 0.3200, 0.2781, 0.2848, 0.2814, 0.2516, 0.2075, 0.2355, 0.3384, 0.3459, 0.2853, 0.2968, 0.2985, 0.2885, 0.3029, 0.2834, 0.2793},
+      { 0.3830, 0.4086, 0.3161, 0.2587, 0.4167, 0.3373, 0.3534, 0.3524, 0.5144, 0.3091, 0.3120, 0.4376, 0.4537, 0.3691, 0.3895, 0.3869, 0.4266, 0.4084, 0.3189, 0.3910},
+      { 0.3832, 0.3972, 0.2587, 0.2465, 0.3073, 0.3075, 0.3140, 0.3093, 0.3066, 0.2583, 0.2564, 0.3843, 0.3710, 0.3237, 0.3328, 0.3311, 0.3279, 0.3414, 0.2967, 0.3135},
+      { 0.3365, 0.3200, 0.4167, 0.3073, 0.3890, 0.3383, 0.3625, 0.3274, 0.3271, 0.2944, 0.3017, 0.4343, 0.4293, 0.3672, 0.3692, 0.3672, 0.3784, 0.3998, 0.3012, 0.4129},
+      { 0.2845, 0.2781, 0.3373, 0.3075, 0.3383, 0.3018, 0.3025, 0.3128, 0.2911, 0.2667, 0.2615, 0.3450, 0.3604, 0.2974, 0.3012, 0.3006, 0.3164, 0.3385, 0.2780, 0.3238},
+      { 0.2820, 0.2848, 0.3534, 0.3140, 0.3625, 0.3025, 0.3519, 0.3244, 0.3084, 0.2600, 0.2572, 0.3605, 0.3566, 0.3454, 0.3439, 0.3194, 0.3234, 0.3504, 0.2725, 0.3338},
+      { 0.2917, 0.2814, 0.3524, 0.3093, 0.3274, 0.3128, 0.3244, 0.3406, 0.3052, 0.2788, 0.2781, 0.3588, 0.3851, 0.3112, 0.3196, 0.3105, 0.3392, 0.3512, 0.2780, 0.3305},
+      { 0.2665, 0.2516, 0.5144, 0.3066, 0.3271, 0.2911, 0.3084, 0.3052, 0.3028, 0.2581, 0.2694, 0.3551, 0.4088, 0.3188, 0.3284, 0.3366, 0.3451, 0.3502, 0.2781, 0.3341},
+      { 0.2357, 0.2075, 0.3091, 0.2583, 0.2944, 0.2667, 0.2600, 0.2788, 0.2581, 0.2570, 0.2611, 0.3301, 0.3550, 0.2749, 0.2749, 0.2783, 0.3021, 0.3287, 0.2613, 0.3150},
+      { 0.2354, 0.2355, 0.3120, 0.2564, 0.3017, 0.2615, 0.2572, 0.2781, 0.2694, 0.2611, 0.2835, 0.3758, 0.4028, 0.2760, 0.2837, 0.2926, 0.3112, 0.3417, 0.2746, 0.3229},
+      { 0.3327, 0.3384, 0.4376, 0.3843, 0.4343, 0.3450, 0.3605, 0.3588, 0.3551, 0.3301, 0.3758, 0.4840, 0.5219, 0.4229, 0.4414, 0.4413, 0.4694, 0.4982, 0.3409, 0.4472},
+      { 0.3165, 0.3459, 0.4537, 0.3710, 0.4293, 0.3604, 0.3566, 0.3851, 0.4088, 0.3550, 0.4028, 0.5219, 0.6155, 0.4230, 0.4372, 0.4355, 0.4575, 0.5080, 0.3500, 0.4657},
+      { 0.2519, 0.2853, 0.3691, 0.3237, 0.3672, 0.2974, 0.3454, 0.3112, 0.3188, 0.2749, 0.2760, 0.4229, 0.4230, 0.3885, 0.4063, 0.3836, 0.3864, 0.4171, 0.3029, 0.3814},
+      { 0.2561, 0.2968, 0.3895, 0.3328, 0.3692, 0.3012, 0.3439, 0.3196, 0.3284, 0.2749, 0.2837, 0.4414, 0.4372, 0.4063, 0.4296, 0.4170, 0.4110, 0.4396, 0.3073, 0.3996},
+      { 0.2564, 0.2985, 0.3869, 0.3311, 0.3672, 0.3006, 0.3194, 0.3105, 0.3366, 0.2783, 0.2926, 0.4413, 0.4355, 0.3836, 0.4170, 0.4032, 0.3996, 0.4417, 0.3123, 0.3791},
+      { 0.2728, 0.2885, 0.4266, 0.3279, 0.3784, 0.3164, 0.3234, 0.3392, 0.3451, 0.3021, 0.3112, 0.4694, 0.4575, 0.3864, 0.4110, 0.3996, 0.4581, 0.4699, 0.3143, 0.4344},
+      { 0.2848, 0.3029, 0.4084, 0.3414, 0.3998, 0.3385, 0.3504, 0.3512, 0.3502, 0.3287, 0.3417, 0.4982, 0.5080, 0.4171, 0.4396, 0.4417, 0.4699, 0.5034, 0.3365, 0.4512},
+      { 0.2640, 0.2834, 0.3189, 0.2967, 0.3012, 0.2780, 0.2725, 0.2780, 0.2781, 0.2613, 0.2746, 0.3409, 0.3500, 0.3029, 0.3073, 0.3123, 0.3143, 0.3365, 0.3380, 0.3248},
+      { 0.2896, 0.2793, 0.3910, 0.3135, 0.4129, 0.3238, 0.3338, 0.3305, 0.3341, 0.3150, 0.3229, 0.4472, 0.4657, 0.3814, 0.3996, 0.3791, 0.4344, 0.4512, 0.3248, 0.5393}},
+    {
+      { 0.1439, 0.1511, 0.3827, 0.3281, 0.2856, 0.2335, 0.2347, 0.2450, 0.2181, 0.1790, 0.1923, 0.2786, 0.2512, 0.2057, 0.2132, 0.2080, 0.2177, 0.2274, 0.2208, 0.2277},
+      { 0.1511, 0.1748, 0.4021, 0.3448, 0.2834, 0.2277, 0.2430, 0.2342, 0.1992, 0.1574, 0.1851, 0.2878, 0.2990, 0.2462, 0.2559, 0.2585, 0.2378, 0.2568, 0.2498, 0.2323},
+      { 0.3827, 0.4021, 0.2839, 0.2219, 0.3039, 0.2965, 0.3095, 0.3008, 0.3066, 0.2661, 0.2651, 0.3827, 0.3909, 0.3334, 0.3508, 0.3531, 0.3368, 0.3509, 0.2991, 0.3200},
+      { 0.3281, 0.3448, 0.2219, 0.1870, 0.2978, 0.2591, 0.2639, 0.2707, 0.3945, 0.2031, 0.2093, 0.3533, 0.3050, 0.2839, 0.2948, 0.2904, 0.3159, 0.2989, 0.2451, 0.2699},
+      { 0.2856, 0.2834, 0.3039, 0.2978, 0.3254, 0.2793, 0.3010, 0.2770, 0.2589, 0.2358, 0.2457, 0.3888, 0.4059, 0.3162, 0.3217, 0.3108, 0.3074, 0.3454, 0.2435, 0.3271},
+      { 0.2335, 0.2277, 0.2965, 0.2591, 0.2793, 0.2485, 0.2553, 0.2601, 0.2226, 0.2061, 0.2063, 0.2827, 0.2904, 0.2534, 0.2494, 0.2367, 0.2450, 0.2759, 0.2308, 0.2590},
+      { 0.2347, 0.2430, 0.3095, 0.2639, 0.3010, 0.2553, 0.3105, 0.2892, 0.2500, 0.1992, 0.2064, 0.3082, 0.3034, 0.2940, 0.2984, 0.2644, 0.2594, 0.2956, 0.2215, 0.2785},
+      { 0.2450, 0.2342, 0.3008, 0.2707, 0.2770, 0.2601, 0.2892, 0.2970, 0.2444, 0.2228, 0.2235, 0.3076, 0.3347, 0.2693, 0.2776, 0.2516, 0.2608, 0.2817, 0.2337, 0.2769},
+      { 0.2181, 0.1992, 0.3066, 0.3945, 0.2589, 0.2226, 0.2500, 0.2444, 0.2513, 0.1876, 0.2038, 0.3012, 0.3354, 0.2689, 0.2808, 0.2836, 0.2829, 0.2872, 0.2158, 0.2708},
+      { 0.1790, 0.1574, 0.2661, 0.2031, 0.2358, 0.2061, 0.1992, 0.2228, 0.1876, 0.1957, 0.2057, 0.2620, 0.2663, 0.2086, 0.2112, 0.2110, 0.2210, 0.2531, 0.2039, 0.2398},
+      { 0.1923, 0.1851, 0.2651, 0.2093, 0.2457, 0.2063, 0.2064, 0.2235, 0.2038, 0.2057, 0.2194, 0.3120, 0.3464, 0.2134, 0.2264, 0.2288, 0.2414, 0.2793, 0.2168, 0.2474},
+      { 0.2786, 0.2878, 0.3827, 0.3533, 0.3888, 0.2827, 0.3082, 0.3076, 0.3012, 0.2620, 0.3120, 0.4205, 0.4513, 0.3716, 0.3828, 0.3873, 0.3976, 0.4354, 0.2822, 0.3690},
+      { 0.2512, 0.2990, 0.3909, 0.3050, 0.4059, 0.2904, 0.3034, 0.3347, 0.3354, 0.2663, 0.3464, 0.4513, 0.4948, 0.3505, 0.3851, 0.3726, 0.4180, 0.4472, 0.2795, 0.3998},
+      { 0.2057, 0.2462, 0.3334, 0.2839, 0.3162, 0.2534, 0.2940, 0.2693, 0.2689, 0.2086, 0.2134, 0.3716, 0.3505, 0.3365, 0.3390, 0.3233, 0.3170, 0.3489, 0.2474, 0.3211},
+      { 0.2132, 0.2559, 0.3508, 0.2948, 0.3217, 0.2494, 0.2984, 0.2776, 0.2808, 0.2112, 0.2264, 0.3828, 0.3851, 0.3390, 0.3607, 0.3460, 0.3258, 0.3698, 0.2504, 0.3277},
+      { 0.2080, 0.2585, 0.3531, 0.2904, 0.3108, 0.2367, 0.2644, 0.2516, 0.2836, 0.2110, 0.2288, 0.3873, 0.3726, 0.3233, 0.3460, 0.3419, 0.3352, 0.3682, 0.2585, 0.3081},
+      { 0.2177, 0.2378, 0.3368, 0.3159, 0.3074, 0.2450, 0.2594, 0.2608, 0.2829, 0.2210, 0.2414, 0.3976, 0.4180, 0.3170, 0.3258, 0.3352, 0.3795, 0.3868, 0.2415, 0.3272},
+      { 0.2274, 0.2568, 0.3509, 0.2989, 0.3454, 0.2759, 0.2956, 0.2817, 0.2872, 0.2531, 0.2793, 0.4354, 0.4472, 0.3489, 0.3698, 0.3682, 0.3868, 0.4423, 0.2691, 0.3722},
+      { 0.2208, 0.2498, 0.2991, 0.2451, 0.2435, 0.2308, 0.2215, 0.2337, 0.2158, 0.2039, 0.2168, 0.2822, 0.2795, 0.2474, 0.2504, 0.2585, 0.2415, 0.2691, 0.2954, 0.2542},
+      { 0.2277, 0.2323, 0.3200, 0.2699, 0.3271, 0.2590, 0.2785, 0.2769, 0.2708, 0.2398, 0.2474, 0.3690, 0.3998, 0.3211, 0.3277, 0.3081, 0.3272, 0.3722, 0.2542, 0.4885}},
+    {
+      { 0.1882, 0.1749, 0.4188, 0.3708, 0.2253, 0.2719, 0.2582, 0.2877, 0.2739, 0.2199, 0.2327, 0.2971, 0.3006, 0.2345, 0.2416, 0.2415, 0.2700, 0.2720, 0.2319, 0.2642},
+      { 0.1749, 0.1964, 0.4261, 0.3731, 0.2949, 0.2592, 0.2715, 0.2665, 0.2601, 0.2002, 0.2265, 0.3181, 0.3245, 0.2705, 0.2770, 0.2780, 0.2788, 0.2881, 0.2590, 0.2485},
+      { 0.4188, 0.4261, 0.3037, 0.2418, 0.2452, 0.3161, 0.3302, 0.3165, 0.3271, 0.2794, 0.2780, 0.3855, 0.3901, 0.3393, 0.3592, 0.3596, 0.3591, 0.3594, 0.3123, 0.3396},
+      { 0.3708, 0.3731, 0.2418, 0.2095, 0.1519, 0.2630, 0.2850, 0.2707, 0.2589, 0.2153, 0.2108, 0.3459, 0.3266, 0.2866, 0.2974, 0.2906, 0.2792, 0.2952, 0.2599, 0.2814},
+      { 0.2253, 0.2949, 0.2452, 0.1519, 0.4820, 0.2808, 0.2886, 0.3068, 0.5609, 0.2532, 0.2244, 0.3859, 0.3924, 0.3193, 0.3470, 0.3404, 0.4452, 0.3860, 0.2049, 0.4418},
+      { 0.2719, 0.2592, 0.3161, 0.2630, 0.2808, 0.2815, 0.2864, 0.2964, 0.2966, 0.2438, 0.2543, 0.3240, 0.3569, 0.3030, 0.3124, 0.2947, 0.3301, 0.3335, 0.2627, 0.3150},
+      { 0.2582, 0.2715, 0.3302, 0.2850, 0.2886, 0.2864, 0.3358, 0.3171, 0.3185, 0.2348, 0.2448, 0.3474, 0.3691, 0.3423, 0.3559, 0.3272, 0.3513, 0.3441, 0.2586, 0.3375},
+      { 0.2877, 0.2665, 0.3165, 0.2707, 0.3068, 0.2964, 0.3171, 0.3247, 0.3704, 0.2897, 0.2792, 0.3563, 0.3855, 0.3055, 0.3188, 0.3021, 0.3442, 0.3570, 0.2621, 0.3306},
+      { 0.2739, 0.2601, 0.3271, 0.2589, 0.5609, 0.2966, 0.3185, 0.3704, 0.3742, 0.2372, 0.2612, 0.4101, 0.4343, 0.3316, 0.3607, 0.3421, 0.4068, 0.4257, 0.2848, 0.3646},
+      { 0.2199, 0.2002, 0.2794, 0.2153, 0.2532, 0.2438, 0.2348, 0.2897, 0.2372, 0.2096, 0.2455, 0.2843, 0.3287, 0.2456, 0.2554, 0.2574, 0.2948, 0.2978, 0.2323, 0.2875},
+      { 0.2327, 0.2265, 0.2780, 0.2108, 0.2244, 0.2543, 0.2448, 0.2792, 0.2612, 0.2455, 0.2878, 0.3425, 0.3861, 0.2711, 0.2804, 0.2864, 0.3388, 0.3372, 0.2549, 0.2977},
+      { 0.2971, 0.3181, 0.3855, 0.3459, 0.3859, 0.3240, 0.3474, 0.3563, 0.4101, 0.2843, 0.3425, 0.4415, 0.4700, 0.4155, 0.4353, 0.4216, 0.4532, 0.4745, 0.3189, 0.4203},
+      { 0.3006, 0.3245, 0.3901, 0.3266, 0.3924, 0.3569, 0.3691, 0.3855, 0.4343, 0.3287, 0.3861, 0.4700, 0.5452, 0.4063, 0.4578, 0.4500, 0.5081, 0.4898, 0.3370, 0.4481},
+      { 0.2345, 0.2705, 0.3393, 0.2866, 0.3193, 0.3030, 0.3423, 0.3055, 0.3316, 0.2456, 0.2711, 0.4155, 0.4063, 0.3985, 0.4265, 0.3968, 0.3985, 0.4152, 0.3047, 0.3873},
+      { 0.2416, 0.2770, 0.3592, 0.2974, 0.3470, 0.3124, 0.3559, 0.3188, 0.3607, 0.2554, 0.2804, 0.4353, 0.4578, 0.4265, 0.4546, 0.4336, 0.4364, 0.4482, 0.3196, 0.4191},
+      { 0.2415, 0.2780, 0.3596, 0.2906, 0.3404, 0.2947, 0.3272, 0.3021, 0.3421, 0.2574, 0.2864, 0.4216, 0.4500, 0.3968, 0.4336, 0.4197, 0.4250, 0.4422, 0.3173, 0.3788},
+      { 0.2700, 0.2788, 0.3591, 0.2792, 0.4452, 0.3301, 0.3513, 0.3442, 0.4068, 0.2948, 0.3388, 0.4532, 0.5081, 0.3985, 0.4364, 0.4250, 0.5162, 0.4760, 0.3196, 0.4351},
+      { 0.2720, 0.2881, 0.3594, 0.2952, 0.3860, 0.3335, 0.3441, 0.3570, 0.4257, 0.2978, 0.3372, 0.4745, 0.4898, 0.4152, 0.4482, 0.4422, 0.4760, 0.4781, 0.3280, 0.4371},
+      { 0.2319, 0.2590, 0.3123, 0.2599, 0.2049, 0.2627, 0.2586, 0.2621, 0.2848, 0.2323, 0.2549, 0.3189, 0.3370, 0.3047, 0.3196, 0.3173, 0.3196, 0.3280, 0.3207, 0.2960},
+      { 0.2642, 0.2485, 0.3396, 0.2814, 0.4418, 0.3150, 0.3375, 0.3306, 0.3646, 0.2875, 0.2977, 0.4203, 0.4481, 0.3873, 0.4191, 0.3788, 0.4351, 0.4371, 0.2960, 0.4733}},
+    {
+      { 0.1252, 0.1266, 0.3799, 0.3295, 0.2876, 0.1767, 0.2014, 0.2452, 0.2476, 0.1732, 0.1695, 0.2955, 0.2906, 0.2070, 0.2283, 0.2156, 0.2239, 0.2471, 0.1892, 0.2075},
+      { 0.1266, 0.1612, 0.4032, 0.3549, 0.2877, 0.1841, 0.2233, 0.2352, 0.2386, 0.1520, 0.1798, 0.3046, 0.3249, 0.2424, 0.2558, 0.2506, 0.2465, 0.2621, 0.2091, 0.2057},
+      { 0.3799, 0.4032, 0.2732, 0.2169, 0.2946, 0.2554, 0.2790, 0.2788, 0.2911, 0.2344, 0.2507, 0.3888, 0.3937, 0.3051, 0.3297, 0.3257, 0.3144, 0.3429, 0.2667, 0.2854},
+      { 0.3295, 0.3549, 0.2169, 0.1797, 0.2298, 0.1962, 0.2250, 0.2261, 0.2226, 0.1676, 0.1740, 0.3265, 0.3122, 0.2459, 0.2598, 0.2577, 0.2400, 0.2712, 0.2095, 0.1964},
+      { 0.2876, 0.2877, 0.2946, 0.2298, 0.3613, 0.3413, 0.3418, 0.2911, 0.2966, 0.2721, 0.2754, 0.4163, 0.4342, 0.3427, 0.3568, 0.3382, 0.3630, 0.3881, 0.2873, 0.4205},
+      { 0.1767, 0.1841, 0.2554, 0.1962, 0.3413, 0.2233, 0.2405, 0.2592, 0.4349, 0.1961, 0.1870, 0.3134, 0.3012, 0.2609, 0.2822, 0.2668, 0.3263, 0.3043, 0.2013, 0.2984},
+      { 0.2014, 0.2233, 0.2790, 0.2250, 0.3418, 0.2405, 0.2843, 0.2822, 0.3604, 0.2118, 0.2051, 0.3304, 0.3297, 0.3134, 0.3256, 0.2994, 0.3364, 0.3302, 0.2321, 0.3116},
+      { 0.2452, 0.2352, 0.2788, 0.2261, 0.2911, 0.2592, 0.2822, 0.3014, 0.3188, 0.2381, 0.2244, 0.3378, 0.3460, 0.2772, 0.2878, 0.2750, 0.3267, 0.3182, 0.2398, 0.3061},
+      { 0.2476, 0.2386, 0.2911, 0.2226, 0.2966, 0.4349, 0.3604, 0.3188, 0.2764, 0.2657, 0.2674, 0.3414, 0.3817, 0.3144, 0.3158, 0.2988, 0.3326, 0.3381, 0.3076, 0.4047},
+      { 0.1732, 0.1520, 0.2344, 0.1676, 0.2721, 0.1961, 0.2118, 0.2381, 0.2657, 0.2095, 0.1951, 0.3187, 0.3245, 0.2516, 0.2598, 0.2560, 0.3096, 0.3166, 0.2102, 0.2886},
+      { 0.1695, 0.1798, 0.2507, 0.1740, 0.2754, 0.1870, 0.2051, 0.2244, 0.2674, 0.1951, 0.2236, 0.3574, 0.3953, 0.2469, 0.2794, 0.2642, 0.2996, 0.3276, 0.2087, 0.2738},
+      { 0.2955, 0.3046, 0.3888, 0.3265, 0.4163, 0.3134, 0.3304, 0.3378, 0.3414, 0.3187, 0.3574, 0.4660, 0.5018, 0.4085, 0.4281, 0.4196, 0.4390, 0.4786, 0.3322, 0.4089},
+      { 0.2906, 0.3249, 0.3937, 0.3122, 0.4342, 0.3012, 0.3297, 0.3460, 0.3817, 0.3245, 0.3953, 0.5018, 0.5440, 0.4000, 0.4233, 0.4243, 0.4641, 0.5097, 0.3201, 0.4563},
+      { 0.2070, 0.2424, 0.3051, 0.2459, 0.3427, 0.2609, 0.3134, 0.2772, 0.3144, 0.2516, 0.2469, 0.4085, 0.4000, 0.3929, 0.4062, 0.3842, 0.3924, 0.4162, 0.2968, 0.3701},
+      { 0.2283, 0.2558, 0.3297, 0.2598, 0.3568, 0.2822, 0.3256, 0.2878, 0.3158, 0.2598, 0.2794, 0.4281, 0.4233, 0.4062, 0.4317, 0.4075, 0.4175, 0.4314, 0.3263, 0.3929},
+      { 0.2156, 0.2506, 0.3257, 0.2577, 0.3382, 0.2668, 0.2994, 0.2750, 0.2988, 0.2560, 0.2642, 0.4196, 0.4243, 0.3842, 0.4075, 0.3991, 0.3935, 0.4239, 0.3102, 0.3635},
+      { 0.2239, 0.2465, 0.3144, 0.2400, 0.3630, 0.3263, 0.3364, 0.3267, 0.3326, 0.3096, 0.2996, 0.4390, 0.4641, 0.3924, 0.4175, 0.3935, 0.4599, 0.4664, 0.3367, 0.4200},
+      { 0.2471, 0.2621, 0.3429, 0.2712, 0.3881, 0.3043, 0.3302, 0.3182, 0.3381, 0.3166, 0.3276, 0.4786, 0.5097, 0.4162, 0.4314, 0.4239, 0.4664, 0.4897, 0.3308, 0.4217},
+      { 0.1892, 0.2091, 0.2667, 0.2095, 0.2873, 0.2013, 0.2321, 0.2398, 0.3076, 0.2102, 0.2087, 0.3322, 0.3201, 0.2968, 0.3263, 0.3102, 0.3367, 0.3308, 0.2729, 0.2948},
+      { 0.2075, 0.2057, 0.2854, 0.1964, 0.4205, 0.2984, 0.3116, 0.3061, 0.4047, 0.2886, 0.2738, 0.4089, 0.4563, 0.3701, 0.3929, 0.3635, 0.4200, 0.4217, 0.2948, 0.5391}},
+    {
+      { 0.1532, 0.1559, 0.4089, 0.3630, 0.3180, 0.2295, 0.1899, 0.2694, 0.2655, 0.2057, 0.2048, 0.3147, 0.2979, 0.2247, 0.2301, 0.2281, 0.2503, 0.2576, 0.2103, 0.2360},
+      { 0.1559, 0.1870, 0.4349, 0.3966, 0.3227, 0.2398, 0.2378, 0.2526, 0.2567, 0.1923, 0.2081, 0.3317, 0.3430, 0.2669, 0.2708, 0.2727, 0.2658, 0.2846, 0.2378, 0.2384},
+      { 0.4089, 0.4349, 0.2907, 0.2307, 0.3218, 0.2905, 0.2793, 0.3035, 0.3084, 0.2593, 0.2648, 0.4043, 0.4080, 0.3259, 0.3390, 0.3342, 0.3231, 0.3646, 0.2846, 0.3015},
+      { 0.3630, 0.3966, 0.2307, 0.1972, 0.2657, 0.2403, 0.2186, 0.2471, 0.2500, 0.1811, 0.1902, 0.3476, 0.3301, 0.2727, 0.2738, 0.2687, 0.2569, 0.2857, 0.2267, 0.2251},
+      { 0.3180, 0.3227, 0.3218, 0.2657, 0.4259, 0.3546, 0.3818, 0.3197, 0.3185, 0.2819, 0.3124, 0.4308, 0.4410, 0.3725, 0.3802, 0.3492, 0.3985, 0.4038, 0.2964, 0.3935},
+      { 0.2295, 0.2398, 0.2905, 0.2403, 0.3546, 0.2653, 0.2586, 0.2853, 0.3604, 0.2306, 0.2371, 0.3335, 0.3542, 0.2919, 0.3026, 0.2886, 0.3338, 0.3244, 0.2412, 0.3185},
+      { 0.1899, 0.2378, 0.2793, 0.2186, 0.3818, 0.2586, 0.2973, 0.2780, 0.4780, 0.1940, 0.2052, 0.3222, 0.3259, 0.3211, 0.3299, 0.2958, 0.3553, 0.3191, 0.2198, 0.3247},
+      { 0.2694, 0.2526, 0.3035, 0.2471, 0.3197, 0.2853, 0.2780, 0.3173, 0.3290, 0.2550, 0.2549, 0.3438, 0.3627, 0.2855, 0.2929, 0.2818, 0.3245, 0.3238, 0.2545, 0.3012},
+      { 0.2655, 0.2567, 0.3084, 0.2500, 0.3185, 0.3604, 0.4780, 0.3290, 0.3037, 0.2602, 0.2717, 0.3562, 0.3838, 0.3634, 0.3555, 0.3380, 0.3933, 0.3545, 0.3043, 0.4037},
+      { 0.2057, 0.1923, 0.2593, 0.1811, 0.2819, 0.2306, 0.1940, 0.2550, 0.2602, 0.2354, 0.2442, 0.3286, 0.3402, 0.2455, 0.2589, 0.2633, 0.2993, 0.3236, 0.2280, 0.2812},
+      { 0.2048, 0.2081, 0.2648, 0.1902, 0.3124, 0.2371, 0.2052, 0.2549, 0.2717, 0.2442, 0.2605, 0.3577, 0.3796, 0.2491, 0.2730, 0.2742, 0.3203, 0.3349, 0.2402, 0.2988},
+      { 0.3147, 0.3317, 0.4043, 0.3476, 0.4308, 0.3335, 0.3222, 0.3438, 0.3562, 0.3286, 0.3577, 0.4615, 0.5138, 0.4144, 0.4364, 0.4287, 0.4423, 0.4845, 0.3422, 0.4368},
+      { 0.2979, 0.3430, 0.4080, 0.3301, 0.4410, 0.3542, 0.3259, 0.3627, 0.3838, 0.3402, 0.3796, 0.5138, 0.5465, 0.4091, 0.4248, 0.4329, 0.4792, 0.5041, 0.3542, 0.4633},
+      { 0.2247, 0.2669, 0.3259, 0.2727, 0.3725, 0.2919, 0.3211, 0.2855, 0.3634, 0.2455, 0.2491, 0.4144, 0.4091, 0.4095, 0.4115, 0.3945, 0.4011, 0.4203, 0.3023, 0.3890},
+      { 0.2301, 0.2708, 0.3390, 0.2738, 0.3802, 0.3026, 0.3299, 0.2929, 0.3555, 0.2589, 0.2730, 0.4364, 0.4248, 0.4115, 0.4387, 0.4131, 0.4227, 0.4415, 0.3194, 0.3997},
+      { 0.2281, 0.2727, 0.3342, 0.2687, 0.3492, 0.2886, 0.2958, 0.2818, 0.3380, 0.2633, 0.2742, 0.4287, 0.4329, 0.3945, 0.4131, 0.4106, 0.4166, 0.4339, 0.3165, 0.3794},
+      { 0.2503, 0.2658, 0.3231, 0.2569, 0.3985, 0.3338, 0.3553, 0.3245, 0.3933, 0.2993, 0.3203, 0.4423, 0.4792, 0.4011, 0.4227, 0.4166, 0.4643, 0.4717, 0.3370, 0.4395},
+      { 0.2576, 0.2846, 0.3646, 0.2857, 0.4038, 0.3244, 0.3191, 0.3238, 0.3545, 0.3236, 0.3349, 0.4845, 0.5041, 0.4203, 0.4415, 0.4339, 0.4717, 0.4882, 0.3499, 0.4527},
+      { 0.2103, 0.2378, 0.2846, 0.2267, 0.2964, 0.2412, 0.2198, 0.2545, 0.3043, 0.2280, 0.2402, 0.3422, 0.3542, 0.3023, 0.3194, 0.3165, 0.3370, 0.3499, 0.2933, 0.2929},
+      { 0.2360, 0.2384, 0.3015, 0.2251, 0.3935, 0.3185, 0.3247, 0.3012, 0.4037, 0.2812, 0.2988, 0.4368, 0.4633, 0.3890, 0.3997, 0.3794, 0.4395, 0.4527, 0.2929, 0.5420}},
+    {
+      { 0.1619, 0.1605, 0.4064, 0.3523, 0.3273, 0.2518, 0.2506, 0.2444, 0.2953, 0.2097, 0.2236, 0.3024, 0.3012, 0.2298, 0.2390, 0.2325, 0.2574, 0.2681, 0.2333, 0.2677},
+      { 0.1605, 0.1958, 0.4181, 0.3757, 0.3217, 0.2522, 0.2586, 0.2673, 0.2504, 0.1766, 0.2173, 0.3193, 0.3358, 0.2681, 0.2812, 0.2780, 0.2756, 0.2893, 0.2690, 0.2553},
+      { 0.4064, 0.4181, 0.3022, 0.2445, 0.3107, 0.2992, 0.3144, 0.2993, 0.3052, 0.2704, 0.2757, 0.4006, 0.4074, 0.3262, 0.3491, 0.3591, 0.3436, 0.3671, 0.3087, 0.3371},
+      { 0.3523, 0.3757, 0.2445, 0.2098, 0.2455, 0.2491, 0.2630, 0.2363, 0.2444, 0.2014, 0.2131, 0.3371, 0.3178, 0.2715, 0.2830, 0.2856, 0.2701, 0.2896, 0.2679, 0.2471},
+      { 0.3273, 0.3217, 0.3107, 0.2455, 0.4170, 0.3288, 0.3406, 0.3687, 0.3704, 0.2688, 0.2975, 0.4265, 0.4359, 0.3633, 0.3754, 0.3714, 0.4047, 0.4250, 0.2997, 0.4022},
+      { 0.2518, 0.2522, 0.2992, 0.2491, 0.3288, 0.2770, 0.2755, 0.2925, 0.3188, 0.2290, 0.2384, 0.3368, 0.3414, 0.2877, 0.2938, 0.2908, 0.3119, 0.3371, 0.2581, 0.3252},
+      { 0.2506, 0.2586, 0.3144, 0.2630, 0.3406, 0.2755, 0.3172, 0.2848, 0.3290, 0.2227, 0.2444, 0.3552, 0.3614, 0.3236, 0.3411, 0.3178, 0.3367, 0.3467, 0.2575, 0.3098},
+      { 0.2444, 0.2673, 0.2993, 0.2363, 0.3687, 0.2925, 0.2848, 0.3487, 0.5306, 0.2711, 0.2676, 0.3462, 0.3550, 0.3123, 0.3271, 0.3185, 0.3714, 0.3428, 0.2589, 0.3602},
+      { 0.2953, 0.2504, 0.3052, 0.2444, 0.3704, 0.3188, 0.3290, 0.5306, 0.2973, 0.2271, 0.2557, 0.3646, 0.3929, 0.3273, 0.3516, 0.3367, 0.3635, 0.3650, 0.2853, 0.4235},
+      { 0.2097, 0.1766, 0.2704, 0.2014, 0.2688, 0.2290, 0.2227, 0.2711, 0.2271, 0.2260, 0.2268, 0.3002, 0.2987, 0.2438, 0.2545, 0.2494, 0.2840, 0.3127, 0.2201, 0.3064},
+      { 0.2236, 0.2173, 0.2757, 0.2131, 0.2975, 0.2384, 0.2444, 0.2676, 0.2557, 0.2268, 0.2684, 0.3501, 0.3887, 0.2808, 0.2914, 0.2849, 0.3152, 0.3390, 0.2503, 0.3145},
+      { 0.3024, 0.3193, 0.4006, 0.3371, 0.4265, 0.3368, 0.3552, 0.3462, 0.3646, 0.3002, 0.3501, 0.4733, 0.5076, 0.4057, 0.4323, 0.4331, 0.4528, 0.4920, 0.3376, 0.4308},
+      { 0.3012, 0.3358, 0.4074, 0.3178, 0.4359, 0.3414, 0.3614, 0.3550, 0.3929, 0.2987, 0.3887, 0.5076, 0.5484, 0.4249, 0.4474, 0.4409, 0.4774, 0.5243, 0.3425, 0.4565},
+      { 0.2298, 0.2681, 0.3262, 0.2715, 0.3633, 0.2877, 0.3236, 0.3123, 0.3273, 0.2438, 0.2808, 0.4057, 0.4249, 0.3955, 0.4098, 0.3852, 0.4011, 0.4193, 0.3019, 0.3606},
+      { 0.2390, 0.2812, 0.3491, 0.2830, 0.3754, 0.2938, 0.3411, 0.3271, 0.3516, 0.2545, 0.2914, 0.4323, 0.4474, 0.4098, 0.4326, 0.4166, 0.4194, 0.4317, 0.3197, 0.4022},
+      { 0.2325, 0.2780, 0.3591, 0.2856, 0.3714, 0.2908, 0.3178, 0.3185, 0.3367, 0.2494, 0.2849, 0.4331, 0.4409, 0.3852, 0.4166, 0.4116, 0.4207, 0.4305, 0.3157, 0.3764},
+      { 0.2574, 0.2756, 0.3436, 0.2701, 0.4047, 0.3119, 0.3367, 0.3714, 0.3635, 0.2840, 0.3152, 0.4528, 0.4774, 0.4011, 0.4194, 0.4207, 0.4641, 0.4762, 0.3313, 0.4580},
+      { 0.2681, 0.2893, 0.3671, 0.2896, 0.4250, 0.3371, 0.3467, 0.3428, 0.3650, 0.3127, 0.3390, 0.4920, 0.5243, 0.4193, 0.4317, 0.4305, 0.4762, 0.5109, 0.3369, 0.4635},
+      { 0.2333, 0.2690, 0.3087, 0.2679, 0.2997, 0.2581, 0.2575, 0.2589, 0.2853, 0.2201, 0.2503, 0.3376, 0.3425, 0.3019, 0.3197, 0.3157, 0.3313, 0.3369, 0.3215, 0.2963},
+      { 0.2677, 0.2553, 0.3371, 0.2471, 0.4022, 0.3252, 0.3098, 0.3602, 0.4235, 0.3064, 0.3145, 0.4308, 0.4565, 0.3606, 0.4022, 0.3764, 0.4580, 0.4635, 0.2963, 0.5739}},
+    {
+      { 0.1923, 0.1848, 0.4196, 0.3791, 0.3095, 0.2726, 0.2664, 0.2782, 0.2567, 0.2255, 0.2139, 0.3109, 0.2927, 0.2290, 0.2341, 0.2463, 0.2668, 0.2604, 0.2642, 0.2666},
+      { 0.1848, 0.2160, 0.4433, 0.4012, 0.3214, 0.2766, 0.2812, 0.2774, 0.3000, 0.2053, 0.2154, 0.3291, 0.3416, 0.2784, 0.2871, 0.2982, 0.3177, 0.2888, 0.2890, 0.2600},
+      { 0.4196, 0.4433, 0.3001, 0.2452, 0.3116, 0.3119, 0.3292, 0.3185, 0.3028, 0.2769, 0.2784, 0.4047, 0.4134, 0.3336, 0.3626, 0.3702, 0.3461, 0.3729, 0.3268, 0.3370},
+      { 0.3791, 0.4012, 0.2452, 0.2167, 0.2564, 0.2836, 0.2901, 0.2832, 0.2513, 0.2114, 0.2186, 0.3626, 0.3262, 0.2818, 0.3033, 0.3082, 0.2817, 0.3046, 0.2880, 0.2714},
+      { 0.3095, 0.3214, 0.3116, 0.2564, 0.4016, 0.3227, 0.3454, 0.3085, 0.3742, 0.2634, 0.3023, 0.4380, 0.4401, 0.3605, 0.3919, 0.3790, 0.3946, 0.4089, 0.2903, 0.4014},
+      { 0.2726, 0.2766, 0.3119, 0.2836, 0.3227, 0.2987, 0.2908, 0.3011, 0.2764, 0.2443, 0.2490, 0.3280, 0.3506, 0.2909, 0.2970, 0.2907, 0.3344, 0.3277, 0.2759, 0.3015},
+      { 0.2664, 0.2812, 0.3292, 0.2901, 0.3454, 0.2908, 0.3442, 0.3201, 0.3037, 0.2338, 0.2457, 0.3492, 0.3587, 0.3317, 0.3466, 0.3186, 0.3384, 0.3503, 0.2697, 0.3277},
+      { 0.2782, 0.2774, 0.3185, 0.2832, 0.3085, 0.3011, 0.3201, 0.3387, 0.2973, 0.2454, 0.2728, 0.3447, 0.3734, 0.3006, 0.3157, 0.2962, 0.3293, 0.3301, 0.2755, 0.3068},
+      { 0.2567, 0.3000, 0.3028, 0.2513, 0.3742, 0.2764, 0.3037, 0.2973, 0.5232, 0.2273, 0.2518, 0.3715, 0.4123, 0.3176, 0.3413, 0.3460, 0.4207, 0.3598, 0.2657, 0.3472},
+      { 0.2255, 0.2053, 0.2769, 0.2114, 0.2634, 0.2443, 0.2338, 0.2454, 0.2273, 0.2240, 0.2156, 0.3114, 0.3306, 0.2430, 0.2572, 0.2546, 0.2984, 0.2929, 0.2426, 0.2891},
+      { 0.2139, 0.2154, 0.2784, 0.2186, 0.3023, 0.2490, 0.2457, 0.2728, 0.2518, 0.2156, 0.2529, 0.3731, 0.4012, 0.2709, 0.2968, 0.2978, 0.3261, 0.3565, 0.2571, 0.2930},
+      { 0.3109, 0.3291, 0.4047, 0.3626, 0.4380, 0.3280, 0.3492, 0.3447, 0.3715, 0.3114, 0.3731, 0.4553, 0.5256, 0.4287, 0.4426, 0.4435, 0.4621, 0.4848, 0.3347, 0.4359},
+      { 0.2927, 0.3416, 0.4134, 0.3262, 0.4401, 0.3506, 0.3587, 0.3734, 0.4123, 0.3306, 0.4012, 0.5256, 0.5972, 0.4094, 0.4487, 0.4471, 0.4861, 0.4994, 0.3406, 0.4943},
+      { 0.2290, 0.2784, 0.3336, 0.2818, 0.3605, 0.2909, 0.3317, 0.3006, 0.3176, 0.2430, 0.2709, 0.4287, 0.4094, 0.3855, 0.4148, 0.3818, 0.4158, 0.4124, 0.2898, 0.3824},
+      { 0.2341, 0.2871, 0.3626, 0.3033, 0.3919, 0.2970, 0.3466, 0.3157, 0.3413, 0.2572, 0.2968, 0.4426, 0.4487, 0.4148, 0.4260, 0.4185, 0.4312, 0.4356, 0.3064, 0.4015},
+      { 0.2463, 0.2982, 0.3702, 0.3082, 0.3790, 0.2907, 0.3186, 0.2962, 0.3460, 0.2546, 0.2978, 0.4435, 0.4471, 0.3818, 0.4185, 0.4177, 0.4171, 0.4342, 0.3087, 0.3731},
+      { 0.2668, 0.3177, 0.3461, 0.2817, 0.3946, 0.3344, 0.3384, 0.3293, 0.4207, 0.2984, 0.3261, 0.4621, 0.4861, 0.4158, 0.4312, 0.4171, 0.5061, 0.4781, 0.3251, 0.4320},
+      { 0.2604, 0.2888, 0.3729, 0.3046, 0.4089, 0.3277, 0.3503, 0.3301, 0.3598, 0.2929, 0.3565, 0.4848, 0.4994, 0.4124, 0.4356, 0.4342, 0.4781, 0.5011, 0.3357, 0.4438},
+      { 0.2642, 0.2890, 0.3268, 0.2880, 0.2903, 0.2759, 0.2697, 0.2755, 0.2657, 0.2426, 0.2571, 0.3347, 0.3406, 0.2898, 0.3064, 0.3087, 0.3251, 0.3357, 0.3459, 0.3050},
+      { 0.2666, 0.2600, 0.3370, 0.2714, 0.4014, 0.3015, 0.3277, 0.3068, 0.3472, 0.2891, 0.2930, 0.4359, 0.4943, 0.3824, 0.4015, 0.3731, 0.4320, 0.4438, 0.3050, 0.5614}},
+    {
+      { 0.0675, 0.0608, 0.3312, 0.2760, 0.2549, 0.1724, 0.1714, 0.2010, 0.1786, 0.0822, 0.1515, 0.2519, 0.2387, 0.1667, 0.1727, 0.1779, 0.1796, 0.2023, 0.1332, 0.1730},
+      { 0.0608, 0.0913, 0.3434, 0.2788, 0.2393, 0.1704, 0.1845, 0.1659, 0.1824, 0.0943, 0.1432, 0.2690, 0.2635, 0.2007, 0.2022, 0.2008, 0.1941, 0.2205, 0.1590, 0.1754},
+      { 0.3312, 0.3434, 0.2483, 0.1793, 0.2622, 0.2377, 0.2422, 0.2554, 0.2581, 0.1724, 0.2319, 0.3512, 0.3475, 0.2728, 0.2882, 0.2884, 0.2850, 0.3190, 0.2138, 0.2488},
+      { 0.2760, 0.2788, 0.1793, 0.1296, 0.1904, 0.1763, 0.1865, 0.1906, 0.1876, 0.1103, 0.1578, 0.2899, 0.2507, 0.2042, 0.2098, 0.2114, 0.1914, 0.2357, 0.1611, 0.1713},
+      { 0.2549, 0.2393, 0.2622, 0.1904, 0.3330, 0.2860, 0.2904, 0.2526, 0.2372, 0.2545, 0.2492, 0.3793, 0.3864, 0.3043, 0.3084, 0.2983, 0.3222, 0.3460, 0.2625, 0.3131},
+      { 0.1724, 0.1704, 0.2377, 0.1763, 0.2860, 0.2283, 0.2302, 0.2240, 0.2657, 0.1524, 0.1962, 0.2948, 0.3057, 0.2484, 0.2557, 0.2438, 0.2864, 0.2965, 0.1965, 0.2716},
+      { 0.1714, 0.1845, 0.2422, 0.1865, 0.2904, 0.2302, 0.2511, 0.2311, 0.2602, 0.1628, 0.1990, 0.3113, 0.3191, 0.2796, 0.2945, 0.2721, 0.2927, 0.3046, 0.2108, 0.2744},
+      { 0.2010, 0.1659, 0.2554, 0.1906, 0.2526, 0.2240, 0.2311, 0.2490, 0.2271, 0.1800, 0.2095, 0.3047, 0.3050, 0.2289, 0.2287, 0.2356, 0.2790, 0.2836, 0.1975, 0.2722},
+      { 0.1786, 0.1824, 0.2581, 0.1876, 0.2372, 0.2657, 0.2602, 0.2271, 0.2273, 0.3636, 0.2256, 0.3113, 0.3301, 0.2587, 0.2695, 0.2682, 0.3005, 0.2972, 0.2889, 0.3366},
+      { 0.0822, 0.0943, 0.1724, 0.1103, 0.2545, 0.1524, 0.1628, 0.1800, 0.3636, 0.1212, 0.1329, 0.2482, 0.2439, 0.1996, 0.2140, 0.2095, 0.2979, 0.2536, 0.1336, 0.2658},
+      { 0.1515, 0.1432, 0.2319, 0.1578, 0.2492, 0.1962, 0.1990, 0.2095, 0.2256, 0.1329, 0.2021, 0.3471, 0.3581, 0.2125, 0.2376, 0.2384, 0.2703, 0.3114, 0.1796, 0.2578},
+      { 0.2519, 0.2690, 0.3512, 0.2899, 0.3793, 0.2948, 0.3113, 0.3047, 0.3113, 0.2482, 0.3471, 0.4173, 0.4697, 0.3644, 0.3850, 0.3801, 0.4106, 0.4339, 0.3032, 0.3790},
+      { 0.2387, 0.2635, 0.3475, 0.2507, 0.3864, 0.3057, 0.3191, 0.3050, 0.3301, 0.2439, 0.3581, 0.4697, 0.4950, 0.3780, 0.3906, 0.3902, 0.4339, 0.4908, 0.2932, 0.4361},
+      { 0.1667, 0.2007, 0.2728, 0.2042, 0.3043, 0.2484, 0.2796, 0.2289, 0.2587, 0.1996, 0.2125, 0.3644, 0.3780, 0.3446, 0.3616, 0.3404, 0.3496, 0.3684, 0.2755, 0.3327},
+      { 0.1727, 0.2022, 0.2882, 0.2098, 0.3084, 0.2557, 0.2945, 0.2287, 0.2695, 0.2140, 0.2376, 0.3850, 0.3906, 0.3616, 0.3765, 0.3658, 0.3712, 0.3953, 0.2943, 0.3570},
+      { 0.1779, 0.2008, 0.2884, 0.2114, 0.2983, 0.2438, 0.2721, 0.2356, 0.2682, 0.2095, 0.2384, 0.3801, 0.3902, 0.3404, 0.3658, 0.3573, 0.3469, 0.3940, 0.2736, 0.3221},
+      { 0.1796, 0.1941, 0.2850, 0.1914, 0.3222, 0.2864, 0.2927, 0.2790, 0.3005, 0.2979, 0.2703, 0.4106, 0.4339, 0.3496, 0.3712, 0.3469, 0.4364, 0.4298, 0.3020, 0.3764},
+      { 0.2023, 0.2205, 0.3190, 0.2357, 0.3460, 0.2965, 0.3046, 0.2836, 0.2972, 0.2536, 0.3114, 0.4339, 0.4908, 0.3684, 0.3953, 0.3940, 0.4298, 0.4556, 0.3023, 0.3855},
+      { 0.1332, 0.1590, 0.2138, 0.1611, 0.2625, 0.1965, 0.2108, 0.1975, 0.2889, 0.1336, 0.1796, 0.3032, 0.2932, 0.2755, 0.2943, 0.2736, 0.3020, 0.3023, 0.2295, 0.2774},
+      { 0.1730, 0.1754, 0.2488, 0.1713, 0.3131, 0.2716, 0.2744, 0.2722, 0.3366, 0.2658, 0.2578, 0.3790, 0.4361, 0.3327, 0.3570, 0.3221, 0.3764, 0.3855, 0.2774, 0.4997}},
+    {
+      { 0.1242, 0.1098, 0.3679, 0.3250, 0.2621, 0.2133, 0.2071, 0.2297, 0.1997, 0.1820, 0.1652, 0.2724, 0.2867, 0.1929, 0.2103, 0.2137, 0.2078, 0.2326, 0.1848, 0.2055},
+      { 0.1098, 0.1267, 0.3661, 0.3172, 0.2385, 0.2008, 0.2055, 0.2154, 0.1969, 0.1532, 0.1912, 0.2798, 0.3147, 0.2233, 0.2245, 0.2253, 0.2146, 0.2405, 0.2059, 0.2402},
+      { 0.3679, 0.3661, 0.2580, 0.2018, 0.2917, 0.2546, 0.2685, 0.2817, 0.2694, 0.2335, 0.2532, 0.3687, 0.3855, 0.2892, 0.3065, 0.3063, 0.2850, 0.3264, 0.2498, 0.2897},
+      { 0.3250, 0.3172, 0.2018, 0.1559, 0.2068, 0.2032, 0.2046, 0.2266, 0.2038, 0.1682, 0.1700, 0.3007, 0.2915, 0.2247, 0.2310, 0.2319, 0.2076, 0.2493, 0.1878, 0.1976},
+      { 0.2621, 0.2385, 0.2917, 0.2068, 0.3374, 0.2669, 0.3029, 0.2774, 0.2612, 0.2487, 0.3011, 0.3915, 0.3878, 0.3115, 0.3233, 0.3176, 0.3423, 0.3785, 0.2475, 0.3594},
+      { 0.2133, 0.2008, 0.2546, 0.2032, 0.2669, 0.2131, 0.2234, 0.2422, 0.2674, 0.2062, 0.2008, 0.2892, 0.3051, 0.2430, 0.2528, 0.2501, 0.2693, 0.2852, 0.2111, 0.2704},
+      { 0.2071, 0.2055, 0.2685, 0.2046, 0.3029, 0.2234, 0.2479, 0.2584, 0.2717, 0.2129, 0.2140, 0.3243, 0.3274, 0.2802, 0.2946, 0.2687, 0.2868, 0.3108, 0.2155, 0.2876},
+      { 0.2297, 0.2154, 0.2817, 0.2266, 0.2774, 0.2422, 0.2584, 0.2764, 0.2557, 0.2323, 0.2271, 0.3117, 0.3564, 0.2620, 0.2695, 0.2583, 0.2862, 0.3025, 0.2277, 0.2969},
+      { 0.1997, 0.1969, 0.2694, 0.2038, 0.2612, 0.2674, 0.2717, 0.2557, 0.2518, 0.2256, 0.3798, 0.3148, 0.3530, 0.3027, 0.3019, 0.3082, 0.3080, 0.3347, 0.2788, 0.4133},
+      { 0.1820, 0.1532, 0.2335, 0.1682, 0.2487, 0.2062, 0.2129, 0.2323, 0.2256, 0.1975, 0.1723, 0.2780, 0.3008, 0.2243, 0.2360, 0.2360, 0.2663, 0.2765, 0.2046, 0.2938},
+      { 0.1652, 0.1912, 0.2532, 0.1700, 0.3011, 0.2008, 0.2140, 0.2271, 0.3798, 0.1723, 0.1916, 0.3419, 0.3704, 0.2618, 0.2837, 0.2877, 0.3478, 0.3184, 0.2010, 0.2916},
+      { 0.2724, 0.2798, 0.3687, 0.3007, 0.3915, 0.2892, 0.3243, 0.3117, 0.3148, 0.2780, 0.3419, 0.4350, 0.4685, 0.3712, 0.3980, 0.4013, 0.4071, 0.4655, 0.2915, 0.3965},
+      { 0.2867, 0.3147, 0.3855, 0.2915, 0.3878, 0.3051, 0.3274, 0.3564, 0.3530, 0.3008, 0.3704, 0.4685, 0.5313, 0.3949, 0.4112, 0.4117, 0.4781, 0.5044, 0.3096, 0.3930},
+      { 0.1929, 0.2233, 0.2892, 0.2247, 0.3115, 0.2430, 0.2802, 0.2620, 0.3027, 0.2243, 0.2618, 0.3712, 0.3949, 0.3441, 0.3508, 0.3422, 0.3601, 0.3691, 0.2639, 0.3454},
+      { 0.2103, 0.2245, 0.3065, 0.2310, 0.3233, 0.2528, 0.2946, 0.2695, 0.3019, 0.2360, 0.2837, 0.3980, 0.4112, 0.3508, 0.3846, 0.3667, 0.3741, 0.3977, 0.2755, 0.3384},
+      { 0.2137, 0.2253, 0.3063, 0.2319, 0.3176, 0.2501, 0.2687, 0.2583, 0.3082, 0.2360, 0.2877, 0.4013, 0.4117, 0.3422, 0.3667, 0.3757, 0.3718, 0.4018, 0.2754, 0.3214},
+      { 0.2078, 0.2146, 0.2850, 0.2076, 0.3423, 0.2693, 0.2868, 0.2862, 0.3080, 0.2663, 0.3478, 0.4071, 0.4781, 0.3601, 0.3741, 0.3718, 0.4116, 0.4363, 0.2830, 0.3817},
+      { 0.2326, 0.2405, 0.3264, 0.2493, 0.3785, 0.2852, 0.3108, 0.3025, 0.3347, 0.2765, 0.3184, 0.4655, 0.5044, 0.3691, 0.3977, 0.4018, 0.4363, 0.4790, 0.2965, 0.3847},
+      { 0.1848, 0.2059, 0.2498, 0.1878, 0.2475, 0.2111, 0.2155, 0.2277, 0.2788, 0.2046, 0.2010, 0.2915, 0.3096, 0.2639, 0.2755, 0.2754, 0.2830, 0.2965, 0.2368, 0.2700},
+      { 0.2055, 0.2402, 0.2897, 0.1976, 0.3594, 0.2704, 0.2876, 0.2969, 0.4133, 0.2938, 0.2916, 0.3965, 0.3930, 0.3454, 0.3384, 0.3214, 0.3817, 0.3847, 0.2700, 0.5237}},
+    {
+      { 0.2350, 0.2283, 0.4531, 0.3985, 0.3374, 0.3108, 0.3004, 0.3134, 0.3084, 0.2821, 0.2768, 0.2888, 0.3202, 0.2664, 0.2698, 0.2715, 0.2948, 0.2735, 0.2737, 0.2988},
+      { 0.2283, 0.2466, 0.4652, 0.4181, 0.3616, 0.3084, 0.3183, 0.3063, 0.3094, 0.2552, 0.2693, 0.3453, 0.3940, 0.3106, 0.3205, 0.3189, 0.3281, 0.3273, 0.2985, 0.3044},
+      { 0.4531, 0.4652, 0.3262, 0.2765, 0.3563, 0.3508, 0.3640, 0.3500, 0.3551, 0.3333, 0.3327, 0.3924, 0.4475, 0.3665, 0.3765, 0.3821, 0.3826, 0.3901, 0.3486, 0.3566},
+      { 0.3985, 0.4181, 0.2765, 0.2453, 0.3045, 0.3007, 0.3100, 0.3085, 0.3012, 0.2659, 0.2591, 0.3476, 0.3873, 0.3074, 0.3166, 0.3257, 0.3118, 0.3219, 0.2970, 0.3094},
+      { 0.3374, 0.3616, 0.3563, 0.3045, 0.4451, 0.3734, 0.3855, 0.3637, 0.4101, 0.3247, 0.3266, 0.4865, 0.4940, 0.3913, 0.4006, 0.4273, 0.4479, 0.4429, 0.3311, 0.3975},
+      { 0.3108, 0.3084, 0.3508, 0.3007, 0.3734, 0.3373, 0.3383, 0.3468, 0.3414, 0.3065, 0.3160, 0.3262, 0.3823, 0.3317, 0.3415, 0.3255, 0.3653, 0.3490, 0.3136, 0.3475},
+      { 0.3004, 0.3183, 0.3640, 0.3100, 0.3855, 0.3383, 0.3733, 0.3567, 0.3562, 0.3019, 0.3148, 0.3481, 0.4043, 0.3790, 0.3842, 0.3692, 0.3910, 0.3826, 0.3151, 0.3710},
+      { 0.3134, 0.3063, 0.3500, 0.3085, 0.3637, 0.3468, 0.3567, 0.3753, 0.3646, 0.3199, 0.3287, 0.3508, 0.3990, 0.3276, 0.3350, 0.3225, 0.3807, 0.3634, 0.3127, 0.3384},
+      { 0.3084, 0.3094, 0.3551, 0.3012, 0.4101, 0.3414, 0.3562, 0.3646, 0.3715, 0.3113, 0.3148, 0.5519, 0.5098, 0.3531, 0.3586, 0.3806, 0.3975, 0.4798, 0.3325, 0.4001},
+      { 0.2821, 0.2552, 0.3333, 0.2659, 0.3247, 0.3065, 0.3019, 0.3199, 0.3113, 0.2988, 0.3004, 0.3051, 0.3554, 0.3045, 0.3071, 0.3173, 0.3487, 0.3130, 0.3043, 0.3417},
+      { 0.2768, 0.2693, 0.3327, 0.2591, 0.3266, 0.3160, 0.3148, 0.3287, 0.3148, 0.3004, 0.3140, 0.3413, 0.4207, 0.3065, 0.3200, 0.3158, 0.3588, 0.3448, 0.3075, 0.3590},
+      { 0.2888, 0.3453, 0.3924, 0.3476, 0.4865, 0.3262, 0.3481, 0.3508, 0.5519, 0.3051, 0.3413, 0.4508, 0.4855, 0.4357, 0.4552, 0.4493, 0.5066, 0.4915, 0.3182, 0.4461},
+      { 0.3202, 0.3940, 0.4475, 0.3873, 0.4940, 0.3823, 0.4043, 0.3990, 0.5098, 0.3554, 0.4207, 0.4855, 0.5615, 0.4657, 0.4893, 0.4797, 0.5333, 0.5399, 0.3804, 0.4955},
+      { 0.2664, 0.3106, 0.3665, 0.3074, 0.3913, 0.3317, 0.3790, 0.3276, 0.3531, 0.3045, 0.3065, 0.4357, 0.4657, 0.4610, 0.4794, 0.4526, 0.4555, 0.4604, 0.3580, 0.4469},
+      { 0.2698, 0.3205, 0.3765, 0.3166, 0.4006, 0.3415, 0.3842, 0.3350, 0.3586, 0.3071, 0.3200, 0.4552, 0.4893, 0.4794, 0.4937, 0.4767, 0.4824, 0.4760, 0.3654, 0.4525},
+      { 0.2715, 0.3189, 0.3821, 0.3257, 0.4273, 0.3255, 0.3692, 0.3225, 0.3806, 0.3173, 0.3158, 0.4493, 0.4797, 0.4526, 0.4767, 0.4719, 0.4743, 0.4776, 0.3651, 0.4426},
+      { 0.2948, 0.3281, 0.3826, 0.3118, 0.4479, 0.3653, 0.3910, 0.3807, 0.3975, 0.3487, 0.3588, 0.5066, 0.5333, 0.4555, 0.4824, 0.4743, 0.5190, 0.5214, 0.3843, 0.4648},
+      { 0.2735, 0.3273, 0.3901, 0.3219, 0.4429, 0.3490, 0.3826, 0.3634, 0.4798, 0.3130, 0.3448, 0.4915, 0.5399, 0.4604, 0.4760, 0.4776, 0.5214, 0.5307, 0.3560, 0.4837},
+      { 0.2737, 0.2985, 0.3486, 0.2970, 0.3311, 0.3136, 0.3151, 0.3127, 0.3325, 0.3043, 0.3075, 0.3182, 0.3804, 0.3580, 0.3654, 0.3651, 0.3843, 0.3560, 0.3608, 0.3505},
+      { 0.2988, 0.3044, 0.3566, 0.3094, 0.3975, 0.3475, 0.3710, 0.3384, 0.4001, 0.3417, 0.3590, 0.4461, 0.4955, 0.4469, 0.4525, 0.4426, 0.4648, 0.4837, 0.3505, 0.5929}},
+    {
+      { 0.2928, 0.2855, 0.4953, 0.4293, 0.3924, 0.3668, 0.3489, 0.3457, 0.3619, 0.2962, 0.2977, 0.3698, 0.2934, 0.3012, 0.2985, 0.3033, 0.3257, 0.3039, 0.3245, 0.3091},
+      { 0.2855, 0.3187, 0.5101, 0.4562, 0.3979, 0.3386, 0.3437, 0.3408, 0.3614, 0.2807, 0.3025, 0.4114, 0.3962, 0.3360, 0.3477, 0.3512, 0.3756, 0.3489, 0.3394, 0.3364},
+      { 0.4953, 0.5101, 0.3840, 0.3140, 0.4026, 0.3829, 0.4109, 0.3919, 0.4088, 0.3560, 0.3748, 0.4648, 0.4316, 0.3960, 0.4145, 0.4138, 0.4018, 0.4184, 0.3912, 0.3985},
+      { 0.4293, 0.4562, 0.3140, 0.2861, 0.3237, 0.3309, 0.3437, 0.3343, 0.3354, 0.2619, 0.2905, 0.4246, 0.3555, 0.3256, 0.3529, 0.3461, 0.3262, 0.3608, 0.3283, 0.3374},
+      { 0.3924, 0.3979, 0.4026, 0.3237, 0.5263, 0.4192, 0.4252, 0.3916, 0.4343, 0.3462, 0.3686, 0.5161, 0.5067, 0.4309, 0.4440, 0.4449, 0.4604, 0.4838, 0.3816, 0.4624},
+      { 0.3668, 0.3386, 0.3829, 0.3309, 0.4192, 0.3725, 0.3783, 0.3725, 0.3817, 0.3460, 0.3413, 0.3893, 0.3573, 0.3650, 0.3675, 0.3574, 0.4006, 0.3782, 0.3487, 0.3865},
+      { 0.3489, 0.3437, 0.4109, 0.3437, 0.4252, 0.3783, 0.4191, 0.3878, 0.3838, 0.3356, 0.3448, 0.4241, 0.3879, 0.4171, 0.4237, 0.4061, 0.4406, 0.4107, 0.3529, 0.4192},
+      { 0.3457, 0.3408, 0.3919, 0.3343, 0.3916, 0.3725, 0.3878, 0.4165, 0.3929, 0.3468, 0.3512, 0.4162, 0.3657, 0.3507, 0.3592, 0.3471, 0.4242, 0.3864, 0.3361, 0.3673},
+      { 0.3619, 0.3614, 0.4088, 0.3354, 0.4343, 0.3817, 0.3838, 0.3929, 0.4123, 0.3301, 0.3530, 0.5098, 0.6017, 0.3725, 0.4050, 0.3977, 0.4211, 0.4965, 0.3522, 0.4191},
+      { 0.2962, 0.2807, 0.3560, 0.2619, 0.3462, 0.3460, 0.3356, 0.3468, 0.3301, 0.3469, 0.3132, 0.3708, 0.3377, 0.3425, 0.3476, 0.3332, 0.3832, 0.3407, 0.3277, 0.3656},
+      { 0.2977, 0.3025, 0.3748, 0.2905, 0.3686, 0.3413, 0.3448, 0.3512, 0.3530, 0.3132, 0.3291, 0.4297, 0.3632, 0.3382, 0.3415, 0.3509, 0.4165, 0.3643, 0.3394, 0.3676},
+      { 0.3698, 0.4114, 0.4648, 0.4246, 0.5161, 0.3893, 0.4241, 0.4162, 0.5098, 0.3708, 0.4297, 0.5109, 0.5091, 0.5074, 0.5249, 0.5236, 0.5439, 0.5362, 0.3933, 0.5274},
+      { 0.2934, 0.3962, 0.4316, 0.3555, 0.5067, 0.3573, 0.3879, 0.3657, 0.6017, 0.3377, 0.3632, 0.5091, 0.5416, 0.4677, 0.4934, 0.4793, 0.5722, 0.5278, 0.3576, 0.5157},
+      { 0.3012, 0.3360, 0.3960, 0.3256, 0.4309, 0.3650, 0.4171, 0.3507, 0.3725, 0.3425, 0.3382, 0.5074, 0.4677, 0.4877, 0.5155, 0.4903, 0.5214, 0.5027, 0.3855, 0.4732},
+      { 0.2985, 0.3477, 0.4145, 0.3529, 0.4440, 0.3675, 0.4237, 0.3592, 0.4050, 0.3476, 0.3415, 0.5249, 0.4934, 0.5155, 0.5516, 0.5311, 0.5548, 0.5288, 0.4016, 0.5004},
+      { 0.3033, 0.3512, 0.4138, 0.3461, 0.4449, 0.3574, 0.4061, 0.3471, 0.3977, 0.3332, 0.3509, 0.5236, 0.4793, 0.4903, 0.5311, 0.5246, 0.5269, 0.5199, 0.4037, 0.4832},
+      { 0.3257, 0.3756, 0.4018, 0.3262, 0.4604, 0.4006, 0.4406, 0.4242, 0.4211, 0.3832, 0.4165, 0.5439, 0.5722, 0.5214, 0.5548, 0.5269, 0.5743, 0.5692, 0.4136, 0.5221},
+      { 0.3039, 0.3489, 0.4184, 0.3608, 0.4838, 0.3782, 0.4107, 0.3864, 0.4965, 0.3407, 0.3643, 0.5362, 0.5278, 0.5027, 0.5288, 0.5199, 0.5692, 0.5548, 0.3991, 0.5249},
+      { 0.3245, 0.3394, 0.3912, 0.3283, 0.3816, 0.3487, 0.3529, 0.3361, 0.3522, 0.3277, 0.3394, 0.3933, 0.3576, 0.3855, 0.4016, 0.4037, 0.4136, 0.3991, 0.4030, 0.3939},
+      { 0.3091, 0.3364, 0.3985, 0.3374, 0.4624, 0.3865, 0.4192, 0.3673, 0.4191, 0.3656, 0.3676, 0.5274, 0.5157, 0.4732, 0.5004, 0.4832, 0.5221, 0.5249, 0.3939, 0.5385}},
+    {
+      { 0.1639, 0.1530, 0.4082, 0.3660, 0.3179, 0.2510, 0.2397, 0.2693, 0.2559, 0.2094, 0.2170, 0.3044, 0.2704, 0.1662, 0.1707, 0.1873, 0.2164, 0.2088, 0.1904, 0.2090},
+      { 0.1530, 0.1773, 0.4414, 0.3934, 0.3180, 0.2498, 0.2654, 0.2587, 0.2600, 0.1868, 0.2169, 0.3134, 0.3066, 0.2233, 0.2253, 0.2277, 0.2363, 0.2461, 0.2161, 0.2293},
+      { 0.4082, 0.4414, 0.2863, 0.2316, 0.3252, 0.3030, 0.3134, 0.3043, 0.3188, 0.2685, 0.2771, 0.3776, 0.3930, 0.2763, 0.2916, 0.2970, 0.3017, 0.3242, 0.2677, 0.2940},
+      { 0.3660, 0.3934, 0.2316, 0.2041, 0.2674, 0.2516, 0.2592, 0.2527, 0.2689, 0.1987, 0.2061, 0.3455, 0.3252, 0.2284, 0.2367, 0.2373, 0.2391, 0.2607, 0.2140, 0.2180},
+      { 0.3179, 0.3180, 0.3252, 0.2674, 0.4227, 0.3475, 0.3601, 0.3197, 0.3316, 0.2726, 0.2913, 0.4223, 0.4170, 0.3290, 0.3376, 0.3298, 0.3718, 0.3773, 0.2848, 0.3469},
+      { 0.2510, 0.2498, 0.3030, 0.2516, 0.3475, 0.2830, 0.2883, 0.2945, 0.3144, 0.2494, 0.2448, 0.3228, 0.3320, 0.2323, 0.2407, 0.2506, 0.2894, 0.2978, 0.2435, 0.2811},
+      { 0.2397, 0.2654, 0.3134, 0.2592, 0.3601, 0.2883, 0.3287, 0.3078, 0.3634, 0.2412, 0.2397, 0.3494, 0.3597, 0.3023, 0.3076, 0.3030, 0.3272, 0.3317, 0.2644, 0.3210},
+      { 0.2693, 0.2587, 0.3043, 0.2527, 0.3197, 0.2945, 0.3078, 0.3375, 0.3273, 0.2619, 0.2632, 0.3249, 0.3506, 0.2226, 0.2286, 0.2393, 0.2883, 0.2812, 0.2370, 0.2584},
+      { 0.2559, 0.2600, 0.3188, 0.2689, 0.3316, 0.3144, 0.3634, 0.3273, 0.3176, 0.2587, 0.3027, 0.3531, 0.3725, 0.3930, 0.3632, 0.3308, 0.3572, 0.3356, 0.3063, 0.3904},
+      { 0.2094, 0.1868, 0.2685, 0.1987, 0.2726, 0.2494, 0.2412, 0.2619, 0.2587, 0.2303, 0.2255, 0.3088, 0.3213, 0.1681, 0.1893, 0.2190, 0.2635, 0.2708, 0.2235, 0.2669},
+      { 0.2170, 0.2169, 0.2771, 0.2061, 0.2913, 0.2448, 0.2397, 0.2632, 0.3027, 0.2255, 0.2385, 0.3666, 0.3725, 0.1712, 0.1944, 0.2226, 0.2740, 0.2866, 0.2219, 0.2528},
+      { 0.3044, 0.3134, 0.3776, 0.3455, 0.4223, 0.3228, 0.3494, 0.3249, 0.3531, 0.3088, 0.3666, 0.4468, 0.4721, 0.3590, 0.3861, 0.3964, 0.4256, 0.4566, 0.3303, 0.4128},
+      { 0.2704, 0.3066, 0.3930, 0.3252, 0.4170, 0.3320, 0.3597, 0.3506, 0.3725, 0.3213, 0.3725, 0.4721, 0.5109, 0.3599, 0.3941, 0.4179, 0.4520, 0.4903, 0.3251, 0.4509},
+      { 0.1662, 0.2233, 0.2763, 0.2284, 0.3290, 0.2323, 0.3023, 0.2226, 0.3930, 0.1681, 0.1712, 0.3590, 0.3599, 0.3760, 0.3826, 0.3600, 0.3702, 0.3746, 0.2505, 0.3643},
+      { 0.1707, 0.2253, 0.2916, 0.2367, 0.3376, 0.2407, 0.3076, 0.2286, 0.3632, 0.1893, 0.1944, 0.3861, 0.3941, 0.3826, 0.4021, 0.3819, 0.3840, 0.3992, 0.2705, 0.3718},
+      { 0.1873, 0.2277, 0.2970, 0.2373, 0.3298, 0.2506, 0.3030, 0.2393, 0.3308, 0.2190, 0.2226, 0.3964, 0.4179, 0.3600, 0.3819, 0.3872, 0.3803, 0.4104, 0.2866, 0.3685},
+      { 0.2164, 0.2363, 0.3017, 0.2391, 0.3718, 0.2894, 0.3272, 0.2883, 0.3572, 0.2635, 0.2740, 0.4256, 0.4520, 0.3702, 0.3840, 0.3803, 0.4370, 0.4438, 0.3059, 0.4073},
+      { 0.2088, 0.2461, 0.3242, 0.2607, 0.3773, 0.2978, 0.3317, 0.2812, 0.3356, 0.2708, 0.2866, 0.4566, 0.4903, 0.3746, 0.3992, 0.4104, 0.4438, 0.4744, 0.3180, 0.4167},
+      { 0.1904, 0.2161, 0.2677, 0.2140, 0.2848, 0.2435, 0.2644, 0.2370, 0.3063, 0.2235, 0.2219, 0.3303, 0.3251, 0.2505, 0.2705, 0.2866, 0.3059, 0.3180, 0.2728, 0.2892},
+      { 0.2090, 0.2293, 0.2940, 0.2180, 0.3469, 0.2811, 0.3210, 0.2584, 0.3904, 0.2669, 0.2528, 0.4128, 0.4509, 0.3643, 0.3718, 0.3685, 0.4073, 0.4167, 0.2892, 0.5009}},
+    {
+      { 0.2071, 0.1785, 0.4306, 0.3813, 0.3408, 0.2685, 0.2624, 0.2939, 0.2787, 0.2198, 0.2358, 0.3158, 0.2842, 0.1745, 0.1609, 0.1859, 0.2061, 0.2090, 0.2062, 0.2182},
+      { 0.1785, 0.1994, 0.4561, 0.4097, 0.3317, 0.2654, 0.2727, 0.2853, 0.2767, 0.2012, 0.2363, 0.3239, 0.3236, 0.2261, 0.2283, 0.2313, 0.2479, 0.2465, 0.2267, 0.2331},
+      { 0.4306, 0.4561, 0.3010, 0.2464, 0.3396, 0.3177, 0.3263, 0.3308, 0.3284, 0.2830, 0.2942, 0.3918, 0.3893, 0.2797, 0.2723, 0.2962, 0.2979, 0.3226, 0.2877, 0.2935},
+      { 0.3813, 0.4097, 0.2464, 0.2231, 0.2876, 0.2665, 0.2761, 0.2734, 0.2808, 0.2127, 0.2217, 0.3473, 0.3244, 0.2316, 0.2211, 0.2394, 0.2393, 0.2622, 0.2310, 0.2162},
+      { 0.3408, 0.3317, 0.3396, 0.2876, 0.4164, 0.3536, 0.3733, 0.3217, 0.3607, 0.2768, 0.3083, 0.4331, 0.4313, 0.3448, 0.3462, 0.3394, 0.3715, 0.3778, 0.2979, 0.3499},
+      { 0.2685, 0.2654, 0.3177, 0.2665, 0.3536, 0.2939, 0.3008, 0.3061, 0.3158, 0.2576, 0.2586, 0.3309, 0.3557, 0.2478, 0.2243, 0.2485, 0.2851, 0.2938, 0.2582, 0.2847},
+      { 0.2624, 0.2727, 0.3263, 0.2761, 0.3733, 0.3008, 0.3429, 0.3224, 0.3555, 0.2431, 0.2588, 0.3656, 0.3734, 0.3144, 0.2924, 0.3021, 0.3333, 0.3376, 0.2748, 0.3241},
+      { 0.2939, 0.2853, 0.3308, 0.2734, 0.3217, 0.3061, 0.3224, 0.3590, 0.3516, 0.2776, 0.2757, 0.3243, 0.3533, 0.2437, 0.2216, 0.2400, 0.2868, 0.2786, 0.2565, 0.2839},
+      { 0.2787, 0.2767, 0.3284, 0.2808, 0.3607, 0.3158, 0.3555, 0.3516, 0.3413, 0.2695, 0.3019, 0.3586, 0.4050, 0.3632, 0.4153, 0.3587, 0.3737, 0.3541, 0.2944, 0.3491},
+      { 0.2198, 0.2012, 0.2830, 0.2127, 0.2768, 0.2576, 0.2431, 0.2776, 0.2695, 0.2318, 0.2448, 0.3183, 0.3354, 0.1845, 0.1693, 0.2158, 0.2583, 0.2634, 0.2435, 0.2759},
+      { 0.2358, 0.2363, 0.2942, 0.2217, 0.3083, 0.2586, 0.2588, 0.2757, 0.3019, 0.2448, 0.2531, 0.3610, 0.3831, 0.1962, 0.1849, 0.2281, 0.2809, 0.2834, 0.2549, 0.2703},
+      { 0.3158, 0.3239, 0.3918, 0.3473, 0.4331, 0.3309, 0.3656, 0.3243, 0.3586, 0.3183, 0.3610, 0.4578, 0.4869, 0.3848, 0.3836, 0.4068, 0.4379, 0.4628, 0.3452, 0.4148},
+      { 0.2842, 0.3236, 0.3893, 0.3244, 0.4313, 0.3557, 0.3734, 0.3533, 0.4050, 0.3354, 0.3831, 0.4869, 0.5121, 0.3974, 0.3999, 0.4275, 0.4649, 0.4998, 0.3445, 0.4738},
+      { 0.1745, 0.2261, 0.2797, 0.2316, 0.3448, 0.2478, 0.3144, 0.2437, 0.3632, 0.1845, 0.1962, 0.3848, 0.3974, 0.3989, 0.3875, 0.3840, 0.3921, 0.4011, 0.2693, 0.3832},
+      { 0.1609, 0.2283, 0.2723, 0.2211, 0.3462, 0.2243, 0.2924, 0.2216, 0.4153, 0.1693, 0.1849, 0.3836, 0.3999, 0.3875, 0.3991, 0.3892, 0.3967, 0.4032, 0.2560, 0.3808},
+      { 0.1859, 0.2313, 0.2962, 0.2394, 0.3394, 0.2485, 0.3021, 0.2400, 0.3587, 0.2158, 0.2281, 0.4068, 0.4275, 0.3840, 0.3892, 0.4012, 0.3968, 0.4228, 0.2886, 0.3833},
+      { 0.2061, 0.2479, 0.2979, 0.2393, 0.3715, 0.2851, 0.3333, 0.2868, 0.3737, 0.2583, 0.2809, 0.4379, 0.4649, 0.3921, 0.3967, 0.3968, 0.4507, 0.4693, 0.3192, 0.4102},
+      { 0.2090, 0.2465, 0.3226, 0.2622, 0.3778, 0.2938, 0.3376, 0.2786, 0.3541, 0.2634, 0.2834, 0.4628, 0.4998, 0.4011, 0.4032, 0.4228, 0.4693, 0.4905, 0.3210, 0.4294},
+      { 0.2062, 0.2267, 0.2877, 0.2310, 0.2979, 0.2582, 0.2748, 0.2565, 0.2944, 0.2435, 0.2549, 0.3452, 0.3445, 0.2693, 0.2560, 0.2886, 0.3192, 0.3210, 0.2951, 0.3012},
+      { 0.2182, 0.2331, 0.2935, 0.2162, 0.3499, 0.2847, 0.3241, 0.2839, 0.3491, 0.2759, 0.2703, 0.4148, 0.4738, 0.3832, 0.3808, 0.3833, 0.4102, 0.4294, 0.3012, 0.4868}},
+    {
+      { 0.2061, 0.1923, 0.4379, 0.3925, 0.3318, 0.2706, 0.2573, 0.2888, 0.2803, 0.2330, 0.2275, 0.3172, 0.2960, 0.1875, 0.1802, 0.1684, 0.2131, 0.2037, 0.2213, 0.2131},
+      { 0.1923, 0.2103, 0.4611, 0.4118, 0.3354, 0.2711, 0.2704, 0.2857, 0.2793, 0.2152, 0.2399, 0.3368, 0.3323, 0.2282, 0.2323, 0.2343, 0.2547, 0.2481, 0.2418, 0.2318},
+      { 0.4379, 0.4611, 0.3098, 0.2597, 0.3331, 0.3179, 0.3241, 0.3314, 0.3366, 0.2937, 0.2920, 0.3972, 0.3918, 0.2931, 0.3042, 0.2978, 0.3079, 0.3224, 0.3012, 0.2990},
+      { 0.3925, 0.4118, 0.2597, 0.2231, 0.2759, 0.2713, 0.2735, 0.2822, 0.2836, 0.2144, 0.2284, 0.3667, 0.3396, 0.2458, 0.2481, 0.2390, 0.2421, 0.2646, 0.2438, 0.2376},
+      { 0.3318, 0.3354, 0.3331, 0.2759, 0.3933, 0.3405, 0.3583, 0.3153, 0.3421, 0.2914, 0.3085, 0.4267, 0.4258, 0.3384, 0.3355, 0.3345, 0.3750, 0.3665, 0.2965, 0.3445},
+      { 0.2706, 0.2711, 0.3179, 0.2713, 0.3405, 0.2894, 0.2911, 0.3065, 0.2988, 0.2611, 0.2648, 0.3321, 0.3480, 0.2582, 0.2476, 0.2266, 0.2729, 0.2797, 0.2592, 0.2748},
+      { 0.2573, 0.2704, 0.3241, 0.2735, 0.3583, 0.2911, 0.3225, 0.3169, 0.3380, 0.2521, 0.2659, 0.3626, 0.3695, 0.3171, 0.3120, 0.2801, 0.3085, 0.3227, 0.2748, 0.3077},
+      { 0.2888, 0.2857, 0.3314, 0.2822, 0.3153, 0.3065, 0.3169, 0.3471, 0.3367, 0.2654, 0.2760, 0.3396, 0.3496, 0.2559, 0.2446, 0.2208, 0.2740, 0.2767, 0.2578, 0.2799},
+      { 0.2803, 0.2793, 0.3366, 0.2836, 0.3421, 0.2988, 0.3380, 0.3367, 0.3460, 0.2682, 0.3082, 0.3806, 0.3977, 0.3308, 0.3587, 0.3956, 0.3818, 0.3533, 0.2824, 0.3518},
+      { 0.2330, 0.2152, 0.2937, 0.2144, 0.2914, 0.2611, 0.2521, 0.2654, 0.2682, 0.2428, 0.2358, 0.3164, 0.3274, 0.2216, 0.2172, 0.2136, 0.2683, 0.2670, 0.2634, 0.2961},
+      { 0.2275, 0.2399, 0.2920, 0.2284, 0.3085, 0.2648, 0.2659, 0.2760, 0.3082, 0.2358, 0.2571, 0.3699, 0.3810, 0.2146, 0.2202, 0.1848, 0.2621, 0.2762, 0.2458, 0.2633},
+      { 0.3172, 0.3368, 0.3972, 0.3667, 0.4267, 0.3321, 0.3626, 0.3396, 0.3806, 0.3164, 0.3699, 0.4531, 0.4910, 0.4065, 0.4172, 0.3994, 0.4426, 0.4627, 0.3510, 0.4103},
+      { 0.2960, 0.3323, 0.3918, 0.3396, 0.4258, 0.3480, 0.3695, 0.3496, 0.3977, 0.3274, 0.3810, 0.4910, 0.5134, 0.4184, 0.4376, 0.4147, 0.4734, 0.5106, 0.3473, 0.4437},
+      { 0.1875, 0.2282, 0.2931, 0.2458, 0.3384, 0.2582, 0.3171, 0.2559, 0.3308, 0.2216, 0.2146, 0.4065, 0.4184, 0.4139, 0.4141, 0.3807, 0.3876, 0.4116, 0.2979, 0.3882},
+      { 0.1802, 0.2323, 0.3042, 0.2481, 0.3355, 0.2476, 0.3120, 0.2446, 0.3587, 0.2172, 0.2202, 0.4172, 0.4376, 0.4141, 0.4301, 0.4015, 0.4038, 0.4282, 0.3007, 0.3935},
+      { 0.1684, 0.2343, 0.2978, 0.2390, 0.3345, 0.2266, 0.2801, 0.2208, 0.3956, 0.2136, 0.1848, 0.3994, 0.4147, 0.3807, 0.4015, 0.3919, 0.3896, 0.4128, 0.2705, 0.3646},
+      { 0.2131, 0.2547, 0.3079, 0.2421, 0.3750, 0.2729, 0.3085, 0.2740, 0.3818, 0.2683, 0.2621, 0.4426, 0.4734, 0.3876, 0.4038, 0.3896, 0.4421, 0.4521, 0.3079, 0.4056},
+      { 0.2037, 0.2481, 0.3224, 0.2646, 0.3665, 0.2797, 0.3227, 0.2767, 0.3533, 0.2670, 0.2762, 0.4627, 0.5106, 0.4116, 0.4282, 0.4128, 0.4521, 0.4838, 0.3194, 0.4186},
+      { 0.2213, 0.2418, 0.3012, 0.2438, 0.2965, 0.2592, 0.2748, 0.2578, 0.2824, 0.2634, 0.2458, 0.3510, 0.3473, 0.2979, 0.3007, 0.2705, 0.3079, 0.3194, 0.3153, 0.3027},
+      { 0.2131, 0.2318, 0.2990, 0.2376, 0.3445, 0.2748, 0.3077, 0.2799, 0.3518, 0.2961, 0.2633, 0.4103, 0.4437, 0.3882, 0.3935, 0.3646, 0.4056, 0.4186, 0.3027, 0.5032}},
+    {
+      { 0.1934, 0.2041, 0.4484, 0.3954, 0.3595, 0.2820, 0.2691, 0.2841, 0.2916, 0.2376, 0.2462, 0.3275, 0.3275, 0.2076, 0.2029, 0.2033, 0.1905, 0.2330, 0.2276, 0.2285},
+      { 0.2041, 0.2150, 0.4670, 0.4099, 0.3697, 0.2720, 0.2747, 0.2853, 0.3055, 0.2274, 0.2363, 0.3450, 0.3521, 0.2439, 0.2560, 0.2555, 0.2534, 0.2647, 0.2467, 0.2368},
+      { 0.4484, 0.4670, 0.3203, 0.2650, 0.3716, 0.3325, 0.3383, 0.3415, 0.3451, 0.2999, 0.2884, 0.4166, 0.4249, 0.3027, 0.3099, 0.3169, 0.2607, 0.3488, 0.2994, 0.2975},
+      { 0.3954, 0.4099, 0.2650, 0.2250, 0.2988, 0.2735, 0.2673, 0.2830, 0.2829, 0.2278, 0.2205, 0.3673, 0.3531, 0.2406, 0.2413, 0.2495, 0.1996, 0.2844, 0.2340, 0.2261},
+      { 0.3595, 0.3697, 0.3716, 0.2988, 0.4350, 0.3741, 0.3958, 0.3637, 0.4068, 0.3185, 0.3220, 0.4620, 0.4698, 0.3742, 0.3919, 0.3809, 0.4576, 0.4166, 0.3160, 0.3890},
+      { 0.2820, 0.2720, 0.3325, 0.2735, 0.3741, 0.2952, 0.3038, 0.3232, 0.3326, 0.2785, 0.2554, 0.3503, 0.3528, 0.2842, 0.2783, 0.2625, 0.2576, 0.3172, 0.2587, 0.2927},
+      { 0.2691, 0.2747, 0.3383, 0.2673, 0.3958, 0.3038, 0.3526, 0.3385, 0.3933, 0.2645, 0.2686, 0.3827, 0.3950, 0.3431, 0.3349, 0.3144, 0.2899, 0.3548, 0.2755, 0.3370},
+      { 0.2841, 0.2853, 0.3415, 0.2830, 0.3637, 0.3232, 0.3385, 0.3567, 0.3635, 0.2891, 0.2884, 0.3672, 0.3927, 0.2878, 0.2812, 0.2686, 0.2651, 0.3140, 0.2684, 0.3059},
+      { 0.2916, 0.3055, 0.3451, 0.2829, 0.4068, 0.3326, 0.3933, 0.3635, 0.4207, 0.3005, 0.3080, 0.3975, 0.4211, 0.3572, 0.3737, 0.3818, 0.5206, 0.3814, 0.3105, 0.3892},
+      { 0.2376, 0.2274, 0.2999, 0.2278, 0.3185, 0.2785, 0.2645, 0.2891, 0.3005, 0.2438, 0.2457, 0.3309, 0.3579, 0.2425, 0.2422, 0.2552, 0.2244, 0.3085, 0.2516, 0.2988},
+      { 0.2462, 0.2363, 0.2884, 0.2205, 0.3220, 0.2554, 0.2686, 0.2884, 0.3080, 0.2457, 0.2516, 0.3918, 0.4041, 0.2380, 0.2549, 0.2390, 0.2252, 0.3024, 0.2451, 0.2863},
+      { 0.3275, 0.3450, 0.4166, 0.3673, 0.4620, 0.3503, 0.3827, 0.3672, 0.3975, 0.3309, 0.3918, 0.4722, 0.5273, 0.4244, 0.4367, 0.4386, 0.4092, 0.4954, 0.3521, 0.4396},
+      { 0.3275, 0.3521, 0.4249, 0.3531, 0.4698, 0.3528, 0.3950, 0.3927, 0.4211, 0.3579, 0.4041, 0.5273, 0.5553, 0.4576, 0.4662, 0.4522, 0.4675, 0.5363, 0.3642, 0.5045},
+      { 0.2076, 0.2439, 0.3027, 0.2406, 0.3742, 0.2842, 0.3431, 0.2878, 0.3572, 0.2425, 0.2380, 0.4244, 0.4576, 0.4162, 0.4178, 0.4048, 0.3709, 0.4450, 0.3122, 0.4155},
+      { 0.2029, 0.2560, 0.3099, 0.2413, 0.3919, 0.2783, 0.3349, 0.2812, 0.3737, 0.2422, 0.2549, 0.4367, 0.4662, 0.4178, 0.4290, 0.4274, 0.4136, 0.4572, 0.3171, 0.4334},
+      { 0.2033, 0.2555, 0.3169, 0.2495, 0.3809, 0.2625, 0.3144, 0.2686, 0.3818, 0.2552, 0.2390, 0.4386, 0.4522, 0.4048, 0.4274, 0.4231, 0.3858, 0.4568, 0.3045, 0.3980},
+      { 0.1905, 0.2534, 0.2607, 0.1996, 0.4576, 0.2576, 0.2899, 0.2651, 0.5206, 0.2244, 0.2252, 0.4092, 0.4675, 0.3709, 0.4136, 0.3858, 0.4706, 0.4499, 0.2503, 0.4147},
+      { 0.2330, 0.2647, 0.3488, 0.2844, 0.4166, 0.3172, 0.3548, 0.3140, 0.3814, 0.3085, 0.3024, 0.4954, 0.5363, 0.4450, 0.4572, 0.4568, 0.4499, 0.5208, 0.3366, 0.4703},
+      { 0.2276, 0.2467, 0.2994, 0.2340, 0.3160, 0.2587, 0.2755, 0.2684, 0.3105, 0.2516, 0.2451, 0.3521, 0.3642, 0.3122, 0.3171, 0.3045, 0.2503, 0.3366, 0.2954, 0.3119},
+      { 0.2285, 0.2368, 0.2975, 0.2261, 0.3890, 0.2927, 0.3370, 0.3059, 0.3892, 0.2988, 0.2863, 0.4396, 0.5045, 0.4155, 0.4334, 0.3980, 0.4147, 0.4703, 0.3119, 0.4601}},
+    {
+      { 0.2321, 0.2139, 0.4455, 0.3900, 0.3416, 0.3003, 0.2871, 0.3040, 0.2979, 0.2568, 0.2508, 0.3301, 0.2895, 0.2170, 0.2138, 0.2097, 0.2377, 0.1938, 0.2459, 0.2442},
+      { 0.2139, 0.2297, 0.4653, 0.4048, 0.3546, 0.2881, 0.2913, 0.2919, 0.3083, 0.2285, 0.2534, 0.3508, 0.3636, 0.2585, 0.2489, 0.2524, 0.2662, 0.2640, 0.2579, 0.2570},
+      { 0.4455, 0.4653, 0.3371, 0.2742, 0.3601, 0.3461, 0.3551, 0.3524, 0.3502, 0.3089, 0.3245, 0.4094, 0.4360, 0.3187, 0.3291, 0.3265, 0.3315, 0.3324, 0.3207, 0.3281},
+      { 0.3900, 0.4048, 0.2742, 0.2346, 0.2992, 0.2863, 0.2899, 0.2948, 0.2872, 0.2277, 0.2329, 0.3592, 0.3601, 0.2646, 0.2642, 0.2604, 0.2728, 0.2614, 0.2584, 0.2537},
+      { 0.3416, 0.3546, 0.3601, 0.2992, 0.4326, 0.3764, 0.3911, 0.3565, 0.4257, 0.3074, 0.3372, 0.4709, 0.4720, 0.3802, 0.3791, 0.3779, 0.4213, 0.4221, 0.3369, 0.3751},
+      { 0.3003, 0.2881, 0.3461, 0.2863, 0.3764, 0.3215, 0.3298, 0.3329, 0.3381, 0.2870, 0.2852, 0.3458, 0.3664, 0.2983, 0.2917, 0.2818, 0.3309, 0.2824, 0.2900, 0.3223},
+      { 0.2871, 0.2913, 0.3551, 0.2899, 0.3911, 0.3298, 0.3520, 0.3459, 0.3545, 0.2779, 0.2885, 0.3807, 0.4026, 0.3549, 0.3530, 0.3321, 0.3571, 0.3202, 0.3053, 0.3533},
+      { 0.3040, 0.2919, 0.3524, 0.2948, 0.3565, 0.3329, 0.3459, 0.3749, 0.3650, 0.2916, 0.2967, 0.3618, 0.3947, 0.2913, 0.2797, 0.2764, 0.3281, 0.2898, 0.2986, 0.3194},
+      { 0.2979, 0.3083, 0.3502, 0.2872, 0.4257, 0.3381, 0.3545, 0.3650, 0.3598, 0.2972, 0.3347, 0.4798, 0.4965, 0.3356, 0.3541, 0.3533, 0.3814, 0.5064, 0.3092, 0.3843},
+      { 0.2568, 0.2285, 0.3089, 0.2277, 0.3074, 0.2870, 0.2779, 0.2916, 0.2972, 0.2745, 0.2716, 0.3146, 0.3225, 0.2628, 0.2560, 0.2663, 0.3202, 0.2256, 0.2753, 0.2977},
+      { 0.2508, 0.2534, 0.3245, 0.2329, 0.3372, 0.2852, 0.2885, 0.2967, 0.3347, 0.2716, 0.2770, 0.3772, 0.3846, 0.2580, 0.2608, 0.2627, 0.3036, 0.2652, 0.2759, 0.2843},
+      { 0.3301, 0.3508, 0.4094, 0.3592, 0.4709, 0.3458, 0.3807, 0.3618, 0.4798, 0.3146, 0.3772, 0.4665, 0.5096, 0.4374, 0.4557, 0.4478, 0.4860, 0.4660, 0.3440, 0.4550},
+      { 0.2895, 0.3636, 0.4360, 0.3601, 0.4720, 0.3664, 0.4026, 0.3947, 0.4965, 0.3225, 0.3846, 0.5096, 0.5326, 0.4540, 0.4787, 0.4706, 0.5322, 0.4944, 0.3727, 0.4870},
+      { 0.2170, 0.2585, 0.3187, 0.2646, 0.3802, 0.2983, 0.3549, 0.2913, 0.3356, 0.2628, 0.2580, 0.4374, 0.4540, 0.4364, 0.4503, 0.4261, 0.4279, 0.4138, 0.3307, 0.4294},
+      { 0.2138, 0.2489, 0.3291, 0.2642, 0.3791, 0.2917, 0.3530, 0.2797, 0.3541, 0.2560, 0.2608, 0.4557, 0.4787, 0.4503, 0.4716, 0.4521, 0.4492, 0.4373, 0.3401, 0.4414},
+      { 0.2097, 0.2524, 0.3265, 0.2604, 0.3779, 0.2818, 0.3321, 0.2764, 0.3533, 0.2663, 0.2627, 0.4478, 0.4706, 0.4261, 0.4521, 0.4479, 0.4345, 0.4312, 0.3260, 0.4196},
+      { 0.2377, 0.2662, 0.3315, 0.2728, 0.4213, 0.3309, 0.3571, 0.3281, 0.3814, 0.3202, 0.3036, 0.4860, 0.5322, 0.4279, 0.4492, 0.4345, 0.4798, 0.4972, 0.3549, 0.4545},
+      { 0.1938, 0.2640, 0.3324, 0.2614, 0.4221, 0.2824, 0.3202, 0.2898, 0.5064, 0.2256, 0.2652, 0.4660, 0.4944, 0.4138, 0.4373, 0.4312, 0.4972, 0.4683, 0.2980, 0.4479},
+      { 0.2459, 0.2579, 0.3207, 0.2584, 0.3369, 0.2900, 0.3053, 0.2986, 0.3092, 0.2753, 0.2759, 0.3440, 0.3727, 0.3307, 0.3401, 0.3260, 0.3549, 0.2980, 0.3281, 0.3239},
+      { 0.2442, 0.2570, 0.3281, 0.2537, 0.3751, 0.3223, 0.3533, 0.3194, 0.3843, 0.2977, 0.2843, 0.4550, 0.4870, 0.4294, 0.4414, 0.4196, 0.4545, 0.4479, 0.3239, 0.5682}},
+    {
+      { 0.1390, 0.1523, 0.3900, 0.3511, 0.2758, 0.2111, 0.2087, 0.2378, 0.2500, 0.1607, 0.1715, 0.2741, 0.2716, 0.1660, 0.1767, 0.1851, 0.2044, 0.2065, 0.1518, 0.1735},
+      { 0.1523, 0.1902, 0.4131, 0.3702, 0.2779, 0.2121, 0.2251, 0.2436, 0.2311, 0.1551, 0.1901, 0.2933, 0.2981, 0.2095, 0.2222, 0.2296, 0.2292, 0.2357, 0.1852, 0.1747},
+      { 0.3900, 0.4131, 0.2657, 0.2168, 0.2881, 0.2661, 0.2726, 0.2833, 0.2781, 0.2258, 0.2448, 0.3675, 0.3808, 0.2707, 0.2919, 0.3015, 0.2881, 0.3168, 0.2396, 0.2471},
+      { 0.3511, 0.3702, 0.2168, 0.1882, 0.2309, 0.2144, 0.2214, 0.2376, 0.2158, 0.1557, 0.1799, 0.3266, 0.3056, 0.2196, 0.2389, 0.2476, 0.2236, 0.2504, 0.1853, 0.1762},
+      { 0.2758, 0.2779, 0.2881, 0.2309, 0.3483, 0.3132, 0.3184, 0.2822, 0.2848, 0.2662, 0.2699, 0.3925, 0.4106, 0.3151, 0.3254, 0.3133, 0.3383, 0.3472, 0.2684, 0.3105},
+      { 0.2111, 0.2121, 0.2661, 0.2144, 0.3132, 0.2414, 0.2439, 0.2679, 0.3076, 0.2104, 0.1993, 0.2980, 0.3188, 0.2428, 0.2529, 0.2460, 0.2953, 0.2894, 0.2008, 0.2548},
+      { 0.2087, 0.2251, 0.2726, 0.2214, 0.3184, 0.2439, 0.2790, 0.2778, 0.3043, 0.2092, 0.2053, 0.3209, 0.3352, 0.2788, 0.2904, 0.2798, 0.3016, 0.3099, 0.2083, 0.2703},
+      { 0.2378, 0.2436, 0.2833, 0.2376, 0.2822, 0.2679, 0.2778, 0.2972, 0.2853, 0.2173, 0.2310, 0.3142, 0.3467, 0.2418, 0.2494, 0.2402, 0.2901, 0.2828, 0.2149, 0.2607},
+      { 0.2500, 0.2311, 0.2781, 0.2158, 0.2848, 0.3076, 0.3043, 0.2853, 0.2657, 0.2889, 0.2788, 0.3325, 0.3522, 0.3063, 0.2944, 0.2824, 0.3105, 0.3092, 0.3564, 0.3503},
+      { 0.1607, 0.1551, 0.2258, 0.1557, 0.2662, 0.2104, 0.2092, 0.2173, 0.2889, 0.1927, 0.1613, 0.3000, 0.3061, 0.2218, 0.2395, 0.2434, 0.2937, 0.2918, 0.1945, 0.2722},
+      { 0.1715, 0.1901, 0.2448, 0.1799, 0.2699, 0.1993, 0.2053, 0.2310, 0.2788, 0.1613, 0.2064, 0.3481, 0.3530, 0.2128, 0.2364, 0.2312, 0.2724, 0.2902, 0.1652, 0.2147},
+      { 0.2741, 0.2933, 0.3675, 0.3266, 0.3925, 0.2980, 0.3209, 0.3142, 0.3325, 0.3000, 0.3481, 0.4125, 0.4609, 0.3649, 0.3873, 0.3925, 0.4097, 0.4366, 0.2980, 0.3685},
+      { 0.2716, 0.2981, 0.3808, 0.3056, 0.4106, 0.3188, 0.3352, 0.3467, 0.3522, 0.3061, 0.3530, 0.4609, 0.4890, 0.3685, 0.4042, 0.3867, 0.4152, 0.4775, 0.2782, 0.3929},
+      { 0.1660, 0.2095, 0.2707, 0.2196, 0.3151, 0.2428, 0.2788, 0.2418, 0.3063, 0.2218, 0.2128, 0.3649, 0.3685, 0.3502, 0.3618, 0.3487, 0.3378, 0.3703, 0.2671, 0.3381},
+      { 0.1767, 0.2222, 0.2919, 0.2389, 0.3254, 0.2529, 0.2904, 0.2494, 0.2944, 0.2395, 0.2364, 0.3873, 0.4042, 0.3618, 0.3769, 0.3676, 0.3645, 0.3915, 0.2820, 0.3500},
+      { 0.1851, 0.2296, 0.3015, 0.2476, 0.3133, 0.2460, 0.2798, 0.2402, 0.2824, 0.2434, 0.2312, 0.3925, 0.3867, 0.3487, 0.3676, 0.3639, 0.3512, 0.3871, 0.2786, 0.3288},
+      { 0.2044, 0.2292, 0.2881, 0.2236, 0.3383, 0.2953, 0.3016, 0.2901, 0.3105, 0.2937, 0.2724, 0.4097, 0.4152, 0.3378, 0.3645, 0.3512, 0.4106, 0.4157, 0.3081, 0.3831},
+      { 0.2065, 0.2357, 0.3168, 0.2504, 0.3472, 0.2894, 0.3099, 0.2828, 0.3092, 0.2918, 0.2902, 0.4366, 0.4775, 0.3703, 0.3915, 0.3871, 0.4157, 0.4481, 0.2872, 0.3725},
+      { 0.1518, 0.1852, 0.2396, 0.1853, 0.2684, 0.2008, 0.2083, 0.2149, 0.3564, 0.1945, 0.1652, 0.2980, 0.2782, 0.2671, 0.2820, 0.2786, 0.3081, 0.2872, 0.2500, 0.2738},
+      { 0.1735, 0.1747, 0.2471, 0.1762, 0.3105, 0.2548, 0.2703, 0.2607, 0.3503, 0.2722, 0.2147, 0.3685, 0.3929, 0.3381, 0.3500, 0.3288, 0.3831, 0.3725, 0.2738, 0.4742}},
+    {
+      { 0.1423, 0.1315, 0.4087, 0.3540, 0.3341, 0.2225, 0.2181, 0.2630, 0.3000, 0.2048, 0.1818, 0.3105, 0.2861, 0.1801, 0.1762, 0.1860, 0.2167, 0.2308, 0.1651, 0.1233},
+      { 0.1315, 0.1528, 0.4253, 0.3608, 0.3267, 0.2339, 0.2356, 0.2330, 0.2748, 0.1764, 0.1957, 0.3238, 0.3161, 0.2164, 0.2262, 0.2200, 0.2463, 0.2554, 0.1829, 0.1902},
+      { 0.4087, 0.4253, 0.2895, 0.2134, 0.3328, 0.2814, 0.3042, 0.3120, 0.3341, 0.2552, 0.2524, 0.3928, 0.4072, 0.2819, 0.2961, 0.3058, 0.3009, 0.3385, 0.2422, 0.2497},
+      { 0.3540, 0.3608, 0.2134, 0.1817, 0.2613, 0.2030, 0.2272, 0.2171, 0.2708, 0.1859, 0.1857, 0.3509, 0.3298, 0.2285, 0.2337, 0.2352, 0.2232, 0.2773, 0.1807, 0.2033},
+      { 0.3341, 0.3267, 0.3328, 0.2613, 0.4939, 0.3838, 0.3877, 0.3505, 0.3646, 0.2862, 0.3115, 0.4469, 0.4615, 0.3377, 0.3460, 0.3594, 0.3802, 0.3892, 0.2986, 0.3643},
+      { 0.2225, 0.2339, 0.2814, 0.2030, 0.3838, 0.2759, 0.2891, 0.2970, 0.4047, 0.2545, 0.2475, 0.3328, 0.3708, 0.2831, 0.2806, 0.2750, 0.3337, 0.3101, 0.2305, 0.2494},
+      { 0.2181, 0.2356, 0.3042, 0.2272, 0.3877, 0.2891, 0.3193, 0.2946, 0.4037, 0.2662, 0.2525, 0.3612, 0.3670, 0.3272, 0.3332, 0.3063, 0.3322, 0.3513, 0.2519, 0.2756},
+      { 0.2630, 0.2330, 0.3120, 0.2171, 0.3505, 0.2970, 0.2946, 0.3521, 0.4235, 0.2575, 0.2484, 0.3464, 0.3897, 0.2581, 0.2813, 0.2722, 0.3284, 0.3079, 0.2345, 0.2386},
+      { 0.3000, 0.2748, 0.3341, 0.2708, 0.3646, 0.4047, 0.4037, 0.4235, 0.3472, 0.3366, 0.4133, 0.4001, 0.4191, 0.3904, 0.3491, 0.3518, 0.3892, 0.3843, 0.3503, 0.4986},
+      { 0.2048, 0.1764, 0.2552, 0.1859, 0.2862, 0.2545, 0.2662, 0.2575, 0.3366, 0.2271, 0.2285, 0.3293, 0.3221, 0.2594, 0.2741, 0.2721, 0.3239, 0.3183, 0.2416, 0.2497},
+      { 0.1818, 0.1957, 0.2524, 0.1857, 0.3115, 0.2475, 0.2525, 0.2484, 0.4133, 0.2285, 0.2700, 0.3838, 0.3782, 0.2273, 0.2575, 0.2567, 0.2980, 0.3116, 0.1965, 0.1650},
+      { 0.3105, 0.3238, 0.3928, 0.3509, 0.4469, 0.3328, 0.3612, 0.3464, 0.4001, 0.3293, 0.3838, 0.4513, 0.5007, 0.3971, 0.4243, 0.4129, 0.4336, 0.4746, 0.3339, 0.3661},
+      { 0.2861, 0.3161, 0.4072, 0.3298, 0.4615, 0.3708, 0.3670, 0.3897, 0.4191, 0.3221, 0.3782, 0.5007, 0.5231, 0.4221, 0.4426, 0.4377, 0.4640, 0.5279, 0.3272, 0.3887},
+      { 0.1801, 0.2164, 0.2819, 0.2285, 0.3377, 0.2831, 0.3272, 0.2581, 0.3904, 0.2594, 0.2273, 0.3971, 0.4221, 0.3929, 0.4030, 0.3801, 0.3875, 0.4162, 0.2986, 0.3084},
+      { 0.1762, 0.2262, 0.2961, 0.2337, 0.3460, 0.2806, 0.3332, 0.2813, 0.3491, 0.2741, 0.2575, 0.4243, 0.4426, 0.4030, 0.4170, 0.3957, 0.4002, 0.4383, 0.3233, 0.3367},
+      { 0.1860, 0.2200, 0.3058, 0.2352, 0.3594, 0.2750, 0.3063, 0.2722, 0.3518, 0.2721, 0.2567, 0.4129, 0.4377, 0.3801, 0.3957, 0.4001, 0.3858, 0.4310, 0.3075, 0.2949},
+      { 0.2167, 0.2463, 0.3009, 0.2232, 0.3802, 0.3337, 0.3322, 0.3284, 0.3892, 0.3239, 0.2980, 0.4336, 0.4640, 0.3875, 0.4002, 0.3858, 0.4588, 0.4649, 0.3450, 0.4008},
+      { 0.2308, 0.2554, 0.3385, 0.2773, 0.3892, 0.3101, 0.3513, 0.3079, 0.3843, 0.3183, 0.3116, 0.4746, 0.5279, 0.4162, 0.4383, 0.4310, 0.4649, 0.5051, 0.3273, 0.4034},
+      { 0.1651, 0.1829, 0.2422, 0.1807, 0.2986, 0.2305, 0.2519, 0.2345, 0.3503, 0.2416, 0.1965, 0.3339, 0.3272, 0.2986, 0.3233, 0.3075, 0.3450, 0.3273, 0.2468, 0.2065},
+      { 0.1233, 0.1902, 0.2497, 0.2033, 0.3643, 0.2494, 0.2756, 0.2386, 0.4986, 0.2497, 0.1650, 0.3661, 0.3887, 0.3084, 0.3367, 0.2949, 0.4008, 0.4034, 0.2065, 0.4609}}},
+  {
+    {
+      { 0.1301, 0.0811, 0.3165, 0.2480, 0.2654, 0.2570, 0.2295, 0.2316, 0.1989, 0.3417, 0.1498, 0.2673, 0.2509, 0.2118, 0.2002, 0.2086, 0.2482, 0.2509, 0.2371, 0.3318},
+      { 0.0811, 0.1110, 0.3284, 0.2741, 0.2531, 0.1904, 0.1975, 0.1728, 0.1949, 0.1321, 0.1351, 0.2648, 0.2591, 0.1918, 0.1980, 0.1930, 0.1935, 0.2168, 0.1738, 0.2184},
+      { 0.3165, 0.3284, 0.2294, 0.1593, 0.2537, 0.1938, 0.2119, 0.2174, 0.2357, 0.0937, 0.1952, 0.3356, 0.3228, 0.2259, 0.2424, 0.2489, 0.2389, 0.2849, 0.1717, 0.2205},
+      { 0.2480, 0.2741, 0.1593, 0.1046, 0.1679, 0.1339, 0.1513, 0.1628, 0.1790, 0.0224, 0.1091, 0.2589, 0.2320, 0.1637, 0.1673, 0.1686, 0.1550, 0.1863, 0.1139, 0.1168},
+      { 0.2654, 0.2531, 0.2537, 0.1679, 0.2912, 0.2243, 0.2381, 0.2322, 0.2199, 0.1707, 0.2007, 0.3669, 0.3536, 0.2608, 0.2610, 0.2540, 0.2682, 0.3132, 0.1856, 0.2913},
+      { 0.2570, 0.1904, 0.1938, 0.1339, 0.2243, 0.1888, 0.1857, 0.1929, 0.1732, 0.1150, 0.1443, 0.2500, 0.2729, 0.1988, 0.1987, 0.1872, 0.2188, 0.2463, 0.1561, 0.2568},
+      { 0.2295, 0.1975, 0.2119, 0.1513, 0.2381, 0.1857, 0.2047, 0.1975, 0.2057, 0.1007, 0.1502, 0.2699, 0.2796, 0.2340, 0.2334, 0.2105, 0.2298, 0.2609, 0.1550, 0.2515},
+      { 0.2316, 0.1728, 0.2174, 0.1628, 0.2322, 0.1929, 0.1975, 0.2497, 0.2097, 0.1810, 0.1826, 0.2706, 0.2818, 0.1916, 0.1893, 0.1978, 0.2173, 0.2480, 0.1635, 0.2576},
+      { 0.1989, 0.1949, 0.2357, 0.1790, 0.2199, 0.1732, 0.2057, 0.2097, 0.2255, 0.0822, 0.1820, 0.2821, 0.2962, 0.2094, 0.2198, 0.2330, 0.2376, 0.2568, 0.1607, 0.2048},
+      { 0.3417, 0.1321, 0.0937, 0.0224, 0.1707, 0.1150, 0.1007, 0.1810, 0.0822, 0.0746, 0.0443, 0.1745, 0.1945, 0.1155, 0.1131, 0.0945, 0.1562, 0.1641, 0.0708, 0.2378},
+      { 0.1498, 0.1351, 0.1952, 0.1091, 0.2007, 0.1443, 0.1502, 0.1826, 0.1820, 0.0443, 0.1503, 0.3005, 0.3188, 0.1608, 0.1795, 0.1866, 0.2142, 0.2471, 0.1116, 0.1974},
+      { 0.2673, 0.2648, 0.3356, 0.2589, 0.3669, 0.2500, 0.2699, 0.2706, 0.2821, 0.1745, 0.3005, 0.4037, 0.4473, 0.3336, 0.3491, 0.3440, 0.3573, 0.4094, 0.2413, 0.3428},
+      { 0.2509, 0.2591, 0.3228, 0.2320, 0.3536, 0.2729, 0.2796, 0.2818, 0.2962, 0.1945, 0.3188, 0.4473, 0.5045, 0.3350, 0.3581, 0.3643, 0.4132, 0.4494, 0.2450, 0.3343},
+      { 0.2118, 0.1918, 0.2259, 0.1637, 0.2608, 0.1988, 0.2340, 0.1916, 0.2094, 0.1155, 0.1608, 0.3336, 0.3350, 0.3090, 0.3135, 0.2899, 0.2902, 0.3215, 0.2018, 0.2915},
+      { 0.2002, 0.1980, 0.2424, 0.1673, 0.2610, 0.1987, 0.2334, 0.1893, 0.2198, 0.1131, 0.1795, 0.3491, 0.3581, 0.3135, 0.3325, 0.3185, 0.3054, 0.3440, 0.2144, 0.2879},
+      { 0.2086, 0.1930, 0.2489, 0.1686, 0.2540, 0.1872, 0.2105, 0.1978, 0.2330, 0.0945, 0.1866, 0.3440, 0.3643, 0.2899, 0.3185, 0.2977, 0.2914, 0.3421, 0.2003, 0.2440},
+      { 0.2482, 0.1935, 0.2389, 0.1550, 0.2682, 0.2188, 0.2298, 0.2173, 0.2376, 0.1562, 0.2142, 0.3573, 0.4132, 0.2902, 0.3054, 0.2914, 0.3718, 0.3772, 0.2201, 0.3216},
+      { 0.2509, 0.2168, 0.2849, 0.1863, 0.3132, 0.2463, 0.2609, 0.2480, 0.2568, 0.1641, 0.2471, 0.4094, 0.4494, 0.3215, 0.3440, 0.3421, 0.3772, 0.4061, 0.2350, 0.3245},
+      { 0.2371, 0.1738, 0.1717, 0.1139, 0.1856, 0.1561, 0.1550, 0.1635, 0.1607, 0.0708, 0.1116, 0.2413, 0.2450, 0.2018, 0.2144, 0.2003, 0.2201, 0.2350, 0.1596, 0.2331},
+      { 0.3318, 0.2184, 0.2205, 0.1168, 0.2913, 0.2568, 0.2515, 0.2576, 0.2048, 0.2378, 0.1974, 0.3428, 0.3343, 0.2915, 0.2879, 0.2440, 0.3216, 0.3245, 0.2331, 0.5095}},
+    {
+      { 0.0579, 0.0621, 0.2935, 0.2371, 0.2135, 0.1756, 0.1712, 0.1659, 0.1883, 0.1321, 0.1203, 0.2453, 0.2206, 0.1417, 0.1514, 0.1520, 0.1840, 0.1896, 0.1450, 0.2402},
+      { 0.0621, 0.0997, 0.2992, 0.2359, 0.2381, 0.2140, 0.2043, 0.1691, 0.1848, 0.2522, 0.1322, 0.2596, 0.2644, 0.1986, 0.1934, 0.1894, 0.2149, 0.2228, 0.2177, 0.2490},
+      { 0.2935, 0.2992, 0.1911, 0.1330, 0.2029, 0.1641, 0.1818, 0.1878, 0.2075, 0.0585, 0.1570, 0.3020, 0.3053, 0.2106, 0.2241, 0.2334, 0.2118, 0.2477, 0.1536, 0.1754},
+      { 0.2371, 0.2359, 0.1330, 0.0780, 0.1346, 0.1036, 0.1248, 0.1290, 0.1574, 0.0000, 0.0864, 0.2396, 0.2120, 0.1477, 0.1538, 0.1624, 0.1370, 0.1732, 0.0976, 0.0897},
+      { 0.2135, 0.2381, 0.2029, 0.1346, 0.2572, 0.1958, 0.2150, 0.1932, 0.2002, 0.1065, 0.1715, 0.3259, 0.3241, 0.2347, 0.2404, 0.2324, 0.2453, 0.3025, 0.1595, 0.2605},
+      { 0.1756, 0.2140, 0.1641, 0.1036, 0.1958, 0.1618, 0.1623, 0.1694, 0.1520, 0.0675, 0.1221, 0.2300, 0.2321, 0.1695, 0.1697, 0.1623, 0.1876, 0.2155, 0.1248, 0.1881},
+      { 0.1712, 0.2043, 0.1818, 0.1248, 0.2150, 0.1623, 0.1960, 0.1739, 0.1923, 0.0805, 0.1333, 0.2553, 0.2654, 0.2088, 0.2256, 0.1952, 0.2011, 0.2461, 0.1337, 0.2140},
+      { 0.1659, 0.1691, 0.1878, 0.1290, 0.1932, 0.1694, 0.1739, 0.1964, 0.1766, 0.0846, 0.1666, 0.2322, 0.2490, 0.1611, 0.1680, 0.1670, 0.2100, 0.2137, 0.1195, 0.2036},
+      { 0.1883, 0.1848, 0.2075, 0.1574, 0.2002, 0.1520, 0.1923, 0.1766, 0.2053, 0.0943, 0.1532, 0.2552, 0.2807, 0.1868, 0.2012, 0.2152, 0.2274, 0.2285, 0.1551, 0.1764},
+      { 0.1321, 0.2522, 0.0585, 0.0000, 0.1065, 0.0675, 0.0805, 0.0846, 0.0943, 0.0518, 0.0390, 0.1639, 0.1541, 0.1013, 0.1015, 0.0750, 0.1399, 0.1559, 0.0304, 0.1585},
+      { 0.1203, 0.1322, 0.1570, 0.0864, 0.1715, 0.1221, 0.1333, 0.1666, 0.1532, 0.0390, 0.1459, 0.2691, 0.2901, 0.1416, 0.1656, 0.1741, 0.1825, 0.2329, 0.0996, 0.1538},
+      { 0.2453, 0.2596, 0.3020, 0.2396, 0.3259, 0.2300, 0.2553, 0.2322, 0.2552, 0.1639, 0.2691, 0.3844, 0.4132, 0.3134, 0.3308, 0.3313, 0.3501, 0.3993, 0.2228, 0.3126},
+      { 0.2206, 0.2644, 0.3053, 0.2120, 0.3241, 0.2321, 0.2654, 0.2490, 0.2807, 0.1541, 0.2901, 0.4132, 0.4303, 0.3046, 0.3405, 0.3428, 0.3934, 0.4299, 0.2017, 0.3068},
+      { 0.1417, 0.1986, 0.2106, 0.1477, 0.2347, 0.1695, 0.2088, 0.1611, 0.1868, 0.1013, 0.1416, 0.3134, 0.3046, 0.2925, 0.2954, 0.2678, 0.2631, 0.3088, 0.1828, 0.2549},
+      { 0.1514, 0.1934, 0.2241, 0.1538, 0.2404, 0.1697, 0.2256, 0.1680, 0.2012, 0.1015, 0.1656, 0.3308, 0.3405, 0.2954, 0.3086, 0.2944, 0.2881, 0.3297, 0.1971, 0.2803},
+      { 0.1520, 0.1894, 0.2334, 0.1624, 0.2324, 0.1623, 0.1952, 0.1670, 0.2152, 0.0750, 0.1741, 0.3313, 0.3428, 0.2678, 0.2944, 0.2847, 0.2797, 0.3381, 0.1799, 0.2411},
+      { 0.1840, 0.2149, 0.2118, 0.1370, 0.2453, 0.1876, 0.2011, 0.2100, 0.2274, 0.1399, 0.1825, 0.3501, 0.3934, 0.2631, 0.2881, 0.2797, 0.3237, 0.3516, 0.1867, 0.3129},
+      { 0.1896, 0.2228, 0.2477, 0.1732, 0.3025, 0.2155, 0.2461, 0.2137, 0.2285, 0.1559, 0.2329, 0.3993, 0.4299, 0.3088, 0.3297, 0.3381, 0.3516, 0.4060, 0.2176, 0.3082},
+      { 0.1450, 0.2177, 0.1536, 0.0976, 0.1595, 0.1248, 0.1337, 0.1195, 0.1551, 0.0304, 0.0996, 0.2228, 0.2017, 0.1828, 0.1971, 0.1799, 0.1867, 0.2176, 0.1425, 0.1713},
+      { 0.2402, 0.2490, 0.1754, 0.0897, 0.2605, 0.1881, 0.2140, 0.2036, 0.1764, 0.1585, 0.1538, 0.3126, 0.3068, 0.2549, 0.2803, 0.2411, 0.3129, 0.3082, 0.1713, 0.4339}},
+    {
+      { 0.1169, 0.1080, 0.3381, 0.3280, 0.2896, 0.1969, 0.1984, 0.2320, 0.2293, 0.0937, 0.1858, 0.2905, 0.2746, 0.1842, 0.1951, 0.1985, 0.2137, 0.2228, 0.1529, 0.1960},
+      { 0.1080, 0.1362, 0.3423, 0.3245, 0.2669, 0.1811, 0.2012, 0.2002, 0.2263, 0.0585, 0.1682, 0.2987, 0.3174, 0.2147, 0.2233, 0.2298, 0.2108, 0.2360, 0.1664, 0.1760},
+      { 0.3381, 0.3423, 0.2998, 0.2322, 0.3232, 0.3285, 0.3104, 0.3122, 0.3091, 0.3779, 0.2842, 0.3781, 0.3977, 0.3155, 0.3230, 0.3354, 0.3432, 0.3541, 0.3184, 0.3643},
+      { 0.3280, 0.3245, 0.2322, 0.1967, 0.2494, 0.2314, 0.2408, 0.2579, 0.2661, 0.2052, 0.2038, 0.3304, 0.3114, 0.2542, 0.2602, 0.2630, 0.2454, 0.2803, 0.2181, 0.2269},
+      { 0.2896, 0.2669, 0.3232, 0.2494, 0.3559, 0.2823, 0.2938, 0.2836, 0.2794, 0.2233, 0.2783, 0.4003, 0.3973, 0.3038, 0.3178, 0.3161, 0.3148, 0.3585, 0.2428, 0.3138},
+      { 0.1969, 0.1811, 0.3285, 0.2314, 0.2823, 0.2314, 0.2249, 0.2461, 0.2344, 0.1651, 0.2153, 0.2986, 0.3134, 0.2354, 0.2509, 0.2375, 0.2596, 0.2891, 0.2016, 0.2541},
+      { 0.1984, 0.2012, 0.3104, 0.2408, 0.2938, 0.2249, 0.2562, 0.2511, 0.2593, 0.1748, 0.2207, 0.3231, 0.3260, 0.2745, 0.2873, 0.2659, 0.2830, 0.3111, 0.2098, 0.2683},
+      { 0.2320, 0.2002, 0.3122, 0.2579, 0.2836, 0.2461, 0.2511, 0.2897, 0.2704, 0.1864, 0.2350, 0.3067, 0.3307, 0.2473, 0.2532, 0.2493, 0.2771, 0.3009, 0.2067, 0.2835},
+      { 0.2293, 0.2263, 0.3091, 0.2661, 0.2794, 0.2344, 0.2593, 0.2704, 0.2769, 0.1724, 0.2335, 0.3333, 0.3560, 0.2685, 0.2830, 0.2937, 0.2999, 0.3089, 0.2258, 0.2552},
+      { 0.0937, 0.0585, 0.3779, 0.2052, 0.2233, 0.1651, 0.1748, 0.1864, 0.1724, 0.1455, 0.1538, 0.2529, 0.2449, 0.2046, 0.2009, 0.1897, 0.2308, 0.2359, 0.1435, 0.2448},
+      { 0.1858, 0.1682, 0.2842, 0.2038, 0.2783, 0.2153, 0.2207, 0.2350, 0.2335, 0.1538, 0.2251, 0.3489, 0.3648, 0.2239, 0.2500, 0.2434, 0.2782, 0.3150, 0.1905, 0.2393},
+      { 0.2905, 0.2987, 0.3781, 0.3304, 0.4003, 0.2986, 0.3231, 0.3067, 0.3333, 0.2529, 0.3489, 0.4271, 0.4698, 0.3684, 0.3834, 0.3899, 0.4007, 0.4434, 0.3001, 0.3683},
+      { 0.2746, 0.3174, 0.3977, 0.3114, 0.3973, 0.3134, 0.3260, 0.3307, 0.3560, 0.2449, 0.3648, 0.4698, 0.5465, 0.3772, 0.3928, 0.3968, 0.4474, 0.4801, 0.3026, 0.3889},
+      { 0.1842, 0.2147, 0.3155, 0.2542, 0.3038, 0.2354, 0.2745, 0.2473, 0.2685, 0.2046, 0.2239, 0.3684, 0.3772, 0.3433, 0.3524, 0.3339, 0.3292, 0.3672, 0.2593, 0.3039},
+      { 0.1951, 0.2233, 0.3230, 0.2602, 0.3178, 0.2509, 0.2873, 0.2532, 0.2830, 0.2009, 0.2500, 0.3834, 0.3928, 0.3524, 0.3691, 0.3559, 0.3431, 0.3857, 0.2689, 0.3565},
+      { 0.1985, 0.2298, 0.3354, 0.2630, 0.3161, 0.2375, 0.2659, 0.2493, 0.2937, 0.1897, 0.2434, 0.3899, 0.3968, 0.3339, 0.3559, 0.3591, 0.3449, 0.3845, 0.2557, 0.3086},
+      { 0.2137, 0.2108, 0.3432, 0.2454, 0.3148, 0.2596, 0.2830, 0.2771, 0.2999, 0.2308, 0.2782, 0.4007, 0.4474, 0.3292, 0.3431, 0.3449, 0.4009, 0.4046, 0.2622, 0.3620},
+      { 0.2228, 0.2360, 0.3541, 0.2803, 0.3585, 0.2891, 0.3111, 0.3009, 0.3089, 0.2359, 0.3150, 0.4434, 0.4801, 0.3672, 0.3857, 0.3845, 0.4046, 0.4604, 0.2850, 0.3748},
+      { 0.1529, 0.1664, 0.3184, 0.2181, 0.2428, 0.2016, 0.2098, 0.2067, 0.2258, 0.1435, 0.1905, 0.3001, 0.3026, 0.2593, 0.2689, 0.2557, 0.2622, 0.2850, 0.2275, 0.2419},
+      { 0.1960, 0.1760, 0.3643, 0.2269, 0.3138, 0.2541, 0.2683, 0.2835, 0.2552, 0.2448, 0.2393, 0.3683, 0.3889, 0.3039, 0.3565, 0.3086, 0.3620, 0.3748, 0.2419, 0.4858}},
+    {
+      { 0.0472, 0.0442, 0.3171, 0.2763, 0.2624, 0.1247, 0.1328, 0.1738, 0.1735, 0.0224, 0.1235, 0.2225, 0.2124, 0.1225, 0.1313, 0.1361, 0.1426, 0.1550, 0.0875, 0.1335},
+      { 0.0442, 0.0818, 0.3166, 0.2692, 0.2100, 0.1081, 0.1357, 0.1442, 0.1671, 0.0000, 0.1143, 0.2320, 0.2348, 0.1487, 0.1527, 0.1642, 0.1306, 0.1691, 0.0993, 0.1006},
+      { 0.3171, 0.3166, 0.2504, 0.1916, 0.2571, 0.2162, 0.2243, 0.2501, 0.2583, 0.2052, 0.2147, 0.3259, 0.3187, 0.2556, 0.2620, 0.2668, 0.2632, 0.2854, 0.2126, 0.2424},
+      { 0.2763, 0.2692, 0.1916, 0.1329, 0.1990, 0.2565, 0.2343, 0.2285, 0.2031, 0.3067, 0.1726, 0.2859, 0.2459, 0.2355, 0.2292, 0.2199, 0.2216, 0.2384, 0.2501, 0.2556},
+      { 0.2624, 0.2100, 0.2571, 0.1990, 0.3025, 0.2089, 0.2264, 0.2289, 0.2153, 0.1489, 0.1972, 0.3273, 0.3206, 0.2417, 0.2489, 0.2412, 0.2532, 0.2974, 0.1755, 0.2493},
+      { 0.1247, 0.1081, 0.2162, 0.2565, 0.2089, 0.1555, 0.1523, 0.1834, 0.1676, 0.0887, 0.1318, 0.2227, 0.2253, 0.1696, 0.1723, 0.1629, 0.1745, 0.2159, 0.1235, 0.1840},
+      { 0.1328, 0.1357, 0.2243, 0.2343, 0.2264, 0.1523, 0.1834, 0.1934, 0.1811, 0.1171, 0.1441, 0.2557, 0.2560, 0.2103, 0.2223, 0.1954, 0.1918, 0.2403, 0.1418, 0.1968},
+      { 0.1738, 0.1442, 0.2501, 0.2285, 0.2289, 0.1834, 0.1934, 0.2352, 0.2014, 0.1157, 0.1729, 0.2532, 0.2593, 0.1817, 0.1887, 0.1814, 0.2062, 0.2261, 0.1439, 0.2216},
+      { 0.1735, 0.1671, 0.2583, 0.2031, 0.2153, 0.1676, 0.1811, 0.2014, 0.2114, 0.1103, 0.1682, 0.2659, 0.2619, 0.1987, 0.2127, 0.2144, 0.2278, 0.2277, 0.1557, 0.1859},
+      { 0.0224, 0.0000, 0.2052, 0.3067, 0.1489, 0.0887, 0.1171, 0.1157, 0.1103, 0.0687, 0.0960, 0.1932, 0.1795, 0.1454, 0.1520, 0.1313, 0.1723, 0.1861, 0.0778, 0.1747},
+      { 0.1235, 0.1143, 0.2147, 0.1726, 0.1972, 0.1318, 0.1441, 0.1729, 0.1682, 0.0960, 0.1499, 0.2774, 0.2807, 0.1598, 0.1679, 0.1736, 0.1855, 0.2246, 0.1259, 0.1683},
+      { 0.2225, 0.2320, 0.3259, 0.2859, 0.3273, 0.2227, 0.2557, 0.2532, 0.2659, 0.1932, 0.2774, 0.3772, 0.4048, 0.3185, 0.3281, 0.3260, 0.3448, 0.3796, 0.2289, 0.3136},
+      { 0.2124, 0.2348, 0.3187, 0.2459, 0.3206, 0.2253, 0.2560, 0.2593, 0.2619, 0.1795, 0.2807, 0.4048, 0.4881, 0.3010, 0.3345, 0.3295, 0.3811, 0.4247, 0.2140, 0.3428},
+      { 0.1225, 0.1487, 0.2556, 0.2355, 0.2417, 0.1696, 0.2103, 0.1817, 0.1987, 0.1454, 0.1598, 0.3185, 0.3010, 0.2821, 0.2876, 0.2679, 0.2554, 0.3033, 0.1898, 0.2423},
+      { 0.1313, 0.1527, 0.2620, 0.2292, 0.2489, 0.1723, 0.2223, 0.1887, 0.2127, 0.1520, 0.1679, 0.3281, 0.3345, 0.2876, 0.3124, 0.2950, 0.2813, 0.3218, 0.2038, 0.2630},
+      { 0.1361, 0.1642, 0.2668, 0.2199, 0.2412, 0.1629, 0.1954, 0.1814, 0.2144, 0.1313, 0.1736, 0.3260, 0.3295, 0.2679, 0.2950, 0.2897, 0.2609, 0.3180, 0.1951, 0.2340},
+      { 0.1426, 0.1306, 0.2632, 0.2216, 0.2532, 0.1745, 0.1918, 0.2062, 0.2278, 0.1723, 0.1855, 0.3448, 0.3811, 0.2554, 0.2813, 0.2609, 0.3254, 0.3363, 0.1974, 0.2774},
+      { 0.1550, 0.1691, 0.2854, 0.2384, 0.2974, 0.2159, 0.2403, 0.2261, 0.2277, 0.1861, 0.2246, 0.3796, 0.4247, 0.3033, 0.3218, 0.3180, 0.3363, 0.4016, 0.2165, 0.3160},
+      { 0.0875, 0.0993, 0.2126, 0.2501, 0.1755, 0.1235, 0.1418, 0.1439, 0.1557, 0.0778, 0.1259, 0.2289, 0.2140, 0.1898, 0.2038, 0.1951, 0.1974, 0.2165, 0.1502, 0.1639},
+      { 0.1335, 0.1006, 0.2424, 0.2556, 0.2493, 0.1840, 0.1968, 0.2216, 0.1859, 0.1747, 0.1683, 0.3136, 0.3428, 0.2423, 0.2630, 0.2340, 0.2774, 0.3160, 0.1639, 0.4455}},
+    {
+      { 0.1248, 0.1020, 0.3680, 0.3115, 0.2464, 0.2250, 0.2153, 0.2499, 0.2233, 0.1707, 0.1787, 0.2745, 0.2663, 0.1872, 0.1764, 0.1885, 0.2195, 0.2269, 0.1793, 0.2291},
+      { 0.1020, 0.1113, 0.3694, 0.2955, 0.2170, 0.2080, 0.2161, 0.2091, 0.2143, 0.1065, 0.1790, 0.2850, 0.2888, 0.2222, 0.2340, 0.2189, 0.2124, 0.2356, 0.1847, 0.2084},
+      { 0.3680, 0.3694, 0.2798, 0.2105, 0.2263, 0.2791, 0.2840, 0.2817, 0.2944, 0.2233, 0.2479, 0.3583, 0.3621, 0.2896, 0.3024, 0.3054, 0.2990, 0.3236, 0.2525, 0.3131},
+      { 0.3115, 0.2955, 0.2105, 0.1579, 0.1411, 0.2074, 0.2153, 0.2281, 0.2358, 0.1489, 0.1745, 0.2994, 0.2819, 0.2265, 0.2270, 0.2313, 0.2172, 0.2436, 0.1964, 0.2238},
+      { 0.2464, 0.2170, 0.2263, 0.1411, 0.3652, 0.3877, 0.3367, 0.2687, 0.2532, 0.4115, 0.2497, 0.3661, 0.4071, 0.3109, 0.3090, 0.2943, 0.3593, 0.3605, 0.3543, 0.4318},
+      { 0.2250, 0.2080, 0.2791, 0.2074, 0.3877, 0.2866, 0.2776, 0.2782, 0.2721, 0.2148, 0.2362, 0.3359, 0.3400, 0.2791, 0.2818, 0.2675, 0.3101, 0.3290, 0.2582, 0.3167},
+      { 0.2153, 0.2161, 0.2840, 0.2153, 0.3367, 0.2776, 0.3031, 0.2734, 0.2819, 0.2076, 0.2254, 0.3268, 0.3518, 0.3143, 0.3187, 0.3116, 0.3211, 0.3242, 0.2588, 0.3325},
+      { 0.2499, 0.2091, 0.2817, 0.2281, 0.2687, 0.2782, 0.2734, 0.3114, 0.2688, 0.2477, 0.2478, 0.3079, 0.3420, 0.2533, 0.2468, 0.2397, 0.2943, 0.2890, 0.2607, 0.3217},
+      { 0.2233, 0.2143, 0.2944, 0.2358, 0.2532, 0.2721, 0.2819, 0.2688, 0.2634, 0.2545, 0.2487, 0.3247, 0.3462, 0.2726, 0.2768, 0.2914, 0.3185, 0.3074, 0.2662, 0.2862},
+      { 0.1707, 0.1065, 0.2233, 0.1489, 0.4115, 0.2148, 0.2076, 0.2477, 0.2545, 0.1644, 0.1813, 0.3129, 0.3042, 0.2070, 0.2156, 0.2236, 0.2821, 0.2998, 0.1912, 0.2928},
+      { 0.1787, 0.1790, 0.2479, 0.1745, 0.2497, 0.2362, 0.2254, 0.2478, 0.2487, 0.1813, 0.2213, 0.3285, 0.3609, 0.2249, 0.2508, 0.2422, 0.3101, 0.3102, 0.2071, 0.2784},
+      { 0.2745, 0.2850, 0.3583, 0.2994, 0.3661, 0.3359, 0.3268, 0.3079, 0.3247, 0.3129, 0.3285, 0.4207, 0.4684, 0.3705, 0.3894, 0.3839, 0.4171, 0.4228, 0.3347, 0.3826},
+      { 0.2663, 0.2888, 0.3621, 0.2819, 0.4071, 0.3400, 0.3518, 0.3420, 0.3462, 0.3042, 0.3609, 0.4684, 0.5269, 0.3935, 0.4016, 0.3978, 0.4852, 0.4770, 0.3439, 0.4322},
+      { 0.1872, 0.2222, 0.2896, 0.2265, 0.3109, 0.2791, 0.3143, 0.2533, 0.2726, 0.2070, 0.2249, 0.3705, 0.3935, 0.3845, 0.3951, 0.3658, 0.3662, 0.3942, 0.3106, 0.3811},
+      { 0.1764, 0.2340, 0.3024, 0.2270, 0.3090, 0.2818, 0.3187, 0.2468, 0.2768, 0.2156, 0.2508, 0.3894, 0.4016, 0.3951, 0.4244, 0.3867, 0.3753, 0.4012, 0.3239, 0.3822},
+      { 0.1885, 0.2189, 0.3054, 0.2313, 0.2943, 0.2675, 0.3116, 0.2397, 0.2914, 0.2236, 0.2422, 0.3839, 0.3978, 0.3658, 0.3867, 0.3849, 0.3597, 0.3874, 0.3018, 0.3351},
+      { 0.2195, 0.2124, 0.2990, 0.2172, 0.3593, 0.3101, 0.3211, 0.2943, 0.3185, 0.2821, 0.3101, 0.4171, 0.4852, 0.3662, 0.3753, 0.3597, 0.4526, 0.4434, 0.3265, 0.4101},
+      { 0.2269, 0.2356, 0.3236, 0.2436, 0.3605, 0.3290, 0.3242, 0.2890, 0.3074, 0.2998, 0.3102, 0.4228, 0.4770, 0.3942, 0.4012, 0.3874, 0.4434, 0.4490, 0.3344, 0.4152},
+      { 0.1793, 0.1847, 0.2525, 0.1964, 0.3543, 0.2582, 0.2588, 0.2607, 0.2662, 0.1912, 0.2071, 0.3347, 0.3439, 0.3106, 0.3239, 0.3018, 0.3265, 0.3344, 0.2783, 0.3162},
+      { 0.2291, 0.2084, 0.3131, 0.2238, 0.4318, 0.3167, 0.3325, 0.3217, 0.2862, 0.2928, 0.2784, 0.3826, 0.4322, 0.3811, 0.3822, 0.3351, 0.4101, 0.4152, 0.3162, 0.5594}},
+    {
+      { 0.0652, 0.0570, 0.3232, 0.2669, 0.2491, 0.1499, 0.1620, 0.2003, 0.1912, 0.1150, 0.1430, 0.2569, 0.2457, 0.1579, 0.1642, 0.1673, 0.1873, 0.2086, 0.1460, 0.2027},
+      { 0.0570, 0.0917, 0.3403, 0.2816, 0.2325, 0.1285, 0.1627, 0.1718, 0.1900, 0.0675, 0.1400, 0.2685, 0.2761, 0.1836, 0.1955, 0.1904, 0.1754, 0.2067, 0.1411, 0.1803},
+      { 0.3232, 0.3403, 0.2702, 0.1857, 0.2758, 0.2185, 0.2300, 0.2508, 0.2667, 0.1651, 0.2164, 0.3626, 0.3707, 0.2558, 0.2757, 0.2794, 0.2692, 0.3121, 0.2175, 0.2509},
+      { 0.2669, 0.2816, 0.1857, 0.1133, 0.1852, 0.1272, 0.1471, 0.1795, 0.2061, 0.0887, 0.1241, 0.2905, 0.2573, 0.1835, 0.1896, 0.1928, 0.1736, 0.2107, 0.1474, 0.1491},
+      { 0.2491, 0.2325, 0.2758, 0.1852, 0.3323, 0.2656, 0.2650, 0.2426, 0.2438, 0.2148, 0.2410, 0.3874, 0.3765, 0.2837, 0.2929, 0.2901, 0.3173, 0.3438, 0.2542, 0.3074},
+      { 0.1499, 0.1285, 0.2185, 0.1272, 0.2656, 0.2801, 0.2546, 0.2169, 0.1961, 0.3315, 0.2096, 0.2856, 0.2972, 0.2573, 0.2641, 0.2373, 0.2852, 0.2895, 0.2922, 0.3486},
+      { 0.1620, 0.1627, 0.2300, 0.1471, 0.2650, 0.2546, 0.2675, 0.2225, 0.2306, 0.2676, 0.2055, 0.3038, 0.3301, 0.2868, 0.2980, 0.2706, 0.3009, 0.3193, 0.2705, 0.3349},
+      { 0.2003, 0.1718, 0.2508, 0.1795, 0.2426, 0.2169, 0.2225, 0.2641, 0.2290, 0.2144, 0.2069, 0.2897, 0.3258, 0.2299, 0.2269, 0.2298, 0.2716, 0.2774, 0.2228, 0.2782},
+      { 0.1912, 0.1900, 0.2667, 0.2061, 0.2438, 0.1961, 0.2306, 0.2290, 0.2443, 0.1524, 0.2062, 0.3065, 0.3460, 0.2494, 0.2576, 0.2611, 0.2785, 0.2870, 0.2104, 0.2545},
+      { 0.1150, 0.0675, 0.1651, 0.0887, 0.2148, 0.3315, 0.2676, 0.2144, 0.1524, 0.2417, 0.1658, 0.2435, 0.2558, 0.2449, 0.2265, 0.2187, 0.2701, 0.2615, 0.2872, 0.3739},
+      { 0.1430, 0.1400, 0.2164, 0.1241, 0.2410, 0.2096, 0.2055, 0.2069, 0.2062, 0.1658, 0.2050, 0.3285, 0.3489, 0.2069, 0.2308, 0.2305, 0.2627, 0.2807, 0.1915, 0.2549},
+      { 0.2569, 0.2685, 0.3626, 0.2905, 0.3874, 0.2856, 0.3038, 0.2897, 0.3065, 0.2435, 0.3285, 0.4298, 0.4633, 0.3738, 0.3865, 0.3836, 0.4095, 0.4414, 0.3125, 0.3765},
+      { 0.2457, 0.2761, 0.3707, 0.2573, 0.3765, 0.2972, 0.3301, 0.3258, 0.3460, 0.2558, 0.3489, 0.4633, 0.5519, 0.3874, 0.4130, 0.4047, 0.4715, 0.4866, 0.3200, 0.4051},
+      { 0.1579, 0.1836, 0.2558, 0.1835, 0.2837, 0.2573, 0.2868, 0.2299, 0.2494, 0.2449, 0.2069, 0.3738, 0.3874, 0.3686, 0.3755, 0.3529, 0.3627, 0.3912, 0.3214, 0.3759},
+      { 0.1642, 0.1955, 0.2757, 0.1896, 0.2929, 0.2641, 0.2980, 0.2269, 0.2576, 0.2265, 0.2308, 0.3865, 0.4130, 0.3755, 0.4008, 0.3746, 0.3794, 0.4053, 0.3176, 0.3700},
+      { 0.1673, 0.1904, 0.2794, 0.1928, 0.2901, 0.2373, 0.2706, 0.2298, 0.2611, 0.2187, 0.2305, 0.3836, 0.4047, 0.3529, 0.3746, 0.3634, 0.3565, 0.3966, 0.2926, 0.3289},
+      { 0.1873, 0.1754, 0.2692, 0.1736, 0.3173, 0.2852, 0.3009, 0.2716, 0.2785, 0.2701, 0.2627, 0.4095, 0.4715, 0.3627, 0.3794, 0.3565, 0.4379, 0.4323, 0.3242, 0.4077},
+      { 0.2086, 0.2067, 0.3121, 0.2107, 0.3438, 0.2895, 0.3193, 0.2774, 0.2870, 0.2615, 0.2807, 0.4414, 0.4866, 0.3912, 0.4053, 0.3966, 0.4323, 0.4665, 0.3274, 0.4151},
+      { 0.1460, 0.1411, 0.2175, 0.1474, 0.2542, 0.2922, 0.2705, 0.2228, 0.2104, 0.2872, 0.1915, 0.3125, 0.3200, 0.3214, 0.3176, 0.2926, 0.3242, 0.3274, 0.3362, 0.3630},
+      { 0.2027, 0.1803, 0.2509, 0.1491, 0.3074, 0.3486, 0.3349, 0.2782, 0.2545, 0.3739, 0.2549, 0.3765, 0.4051, 0.3759, 0.3700, 0.3289, 0.4077, 0.4151, 0.3630, 0.5733}},
+    {
+      { 0.0628, 0.0533, 0.3219, 0.2714, 0.2467, 0.1638, 0.1212, 0.1947, 0.1821, 0.1007, 0.1409, 0.2594, 0.2411, 0.1540, 0.1588, 0.1599, 0.1738, 0.1917, 0.1435, 0.1977},
+      { 0.0533, 0.0800, 0.3380, 0.2784, 0.2411, 0.1467, 0.1299, 0.1665, 0.1842, 0.0805, 0.1435, 0.2758, 0.2675, 0.1824, 0.1912, 0.1935, 0.1806, 0.2082, 0.1468, 0.1884},
+      { 0.3219, 0.3380, 0.2476, 0.1791, 0.2649, 0.2265, 0.1981, 0.2447, 0.2600, 0.1748, 0.2151, 0.3512, 0.3648, 0.2530, 0.2720, 0.2717, 0.2509, 0.3015, 0.2096, 0.2534},
+      { 0.2714, 0.2784, 0.1791, 0.1156, 0.1861, 0.1469, 0.1103, 0.1828, 0.1992, 0.1171, 0.1376, 0.2872, 0.2584, 0.1870, 0.1862, 0.1840, 0.1724, 0.2121, 0.1505, 0.1640},
+      { 0.2467, 0.2411, 0.2649, 0.1861, 0.3413, 0.2729, 0.2290, 0.2342, 0.2348, 0.2076, 0.2277, 0.3738, 0.3716, 0.2798, 0.2860, 0.2749, 0.2883, 0.3283, 0.2460, 0.3029},
+      { 0.1638, 0.1467, 0.2265, 0.1469, 0.2729, 0.2806, 0.2601, 0.2187, 0.2118, 0.2676, 0.2115, 0.2927, 0.3161, 0.2801, 0.2752, 0.2613, 0.3125, 0.3090, 0.2854, 0.3525},
+      { 0.1212, 0.1299, 0.1981, 0.1103, 0.2290, 0.2601, 0.2357, 0.1831, 0.1940, 0.3470, 0.1637, 0.2730, 0.2990, 0.2712, 0.2704, 0.2587, 0.2989, 0.2905, 0.2958, 0.3484},
+      { 0.1947, 0.1665, 0.2447, 0.1828, 0.2342, 0.2187, 0.1831, 0.2538, 0.2227, 0.2257, 0.2032, 0.2876, 0.3084, 0.2134, 0.2191, 0.2114, 0.2617, 0.2655, 0.2203, 0.2717},
+      { 0.1821, 0.1842, 0.2600, 0.1992, 0.2348, 0.2118, 0.1940, 0.2227, 0.2338, 0.1628, 0.2129, 0.3019, 0.3356, 0.2412, 0.2431, 0.2521, 0.2645, 0.2779, 0.2092, 0.2662},
+      { 0.1007, 0.0805, 0.1748, 0.1171, 0.2076, 0.2676, 0.3470, 0.2257, 0.1628, 0.1935, 0.1715, 0.2439, 0.2598, 0.2752, 0.2520, 0.2405, 0.2766, 0.2658, 0.2517, 0.3619},
+      { 0.1409, 0.1435, 0.2151, 0.1376, 0.2277, 0.2115, 0.1637, 0.2032, 0.2129, 0.1715, 0.1978, 0.3159, 0.3349, 0.2058, 0.2244, 0.2275, 0.2718, 0.2843, 0.2030, 0.2631},
+      { 0.2594, 0.2758, 0.3512, 0.2872, 0.3738, 0.2927, 0.2730, 0.2876, 0.3019, 0.2439, 0.3159, 0.4186, 0.4605, 0.3642, 0.3743, 0.3811, 0.4008, 0.4391, 0.3117, 0.3687},
+      { 0.2411, 0.2675, 0.3648, 0.2584, 0.3716, 0.3161, 0.2990, 0.3084, 0.3356, 0.2598, 0.3349, 0.4605, 0.5288, 0.3730, 0.3877, 0.3864, 0.4479, 0.4706, 0.3298, 0.4100},
+      { 0.1540, 0.1824, 0.2530, 0.1870, 0.2798, 0.2801, 0.2712, 0.2134, 0.2412, 0.2752, 0.2058, 0.3642, 0.3730, 0.3689, 0.3759, 0.3566, 0.3598, 0.3935, 0.3435, 0.3878},
+      { 0.1588, 0.1912, 0.2720, 0.1862, 0.2860, 0.2752, 0.2704, 0.2191, 0.2431, 0.2520, 0.2244, 0.3743, 0.3877, 0.3759, 0.4013, 0.3792, 0.3732, 0.3970, 0.3382, 0.3852},
+      { 0.1599, 0.1935, 0.2717, 0.1840, 0.2749, 0.2613, 0.2587, 0.2114, 0.2521, 0.2405, 0.2275, 0.3811, 0.3864, 0.3566, 0.3792, 0.3704, 0.3601, 0.3971, 0.3143, 0.3496},
+      { 0.1738, 0.1806, 0.2509, 0.1724, 0.2883, 0.3125, 0.2989, 0.2617, 0.2645, 0.2766, 0.2718, 0.4008, 0.4479, 0.3598, 0.3732, 0.3601, 0.4217, 0.4241, 0.3461, 0.4214},
+      { 0.1917, 0.2082, 0.3015, 0.2121, 0.3283, 0.3090, 0.2905, 0.2655, 0.2779, 0.2658, 0.2843, 0.4391, 0.4706, 0.3935, 0.3970, 0.3971, 0.4241, 0.4600, 0.3449, 0.4258},
+      { 0.1435, 0.1468, 0.2096, 0.1505, 0.2460, 0.2854, 0.2958, 0.2203, 0.2092, 0.2517, 0.2030, 0.3117, 0.3298, 0.3435, 0.3382, 0.3143, 0.3461, 0.3449, 0.3279, 0.3825},
+      { 0.1977, 0.1884, 0.2534, 0.1640, 0.3029, 0.3525, 0.3484, 0.2717, 0.2662, 0.3619, 0.2631, 0.3687, 0.4100, 0.3878, 0.3852, 0.3496, 0.4214, 0.4258, 0.3825, 0.5796}},
+    {
+      { 0.1006, 0.0832, 0.3456, 0.2884, 0.2712, 0.2141, 0.1967, 0.2260, 0.2147, 0.1810, 0.1588, 0.2709, 0.2566, 0.1785, 0.1748, 0.1902, 0.2157, 0.2300, 0.1572, 0.2264},
+      { 0.0832, 0.1137, 0.3461, 0.2926, 0.2522, 0.1830, 0.1966, 0.1942, 0.1987, 0.0846, 0.1593, 0.2874, 0.2804, 0.1992, 0.2025, 0.2000, 0.1959, 0.2235, 0.1491, 0.2003},
+      { 0.3456, 0.3461, 0.2648, 0.1989, 0.2769, 0.2543, 0.2600, 0.2647, 0.2788, 0.1864, 0.2380, 0.3705, 0.3745, 0.2750, 0.2854, 0.2973, 0.2889, 0.3225, 0.2287, 0.2928},
+      { 0.2884, 0.2926, 0.1989, 0.1450, 0.2024, 0.1847, 0.1909, 0.1984, 0.2228, 0.1157, 0.1680, 0.2898, 0.2604, 0.2112, 0.2067, 0.2118, 0.2018, 0.2430, 0.1658, 0.1996},
+      { 0.2712, 0.2522, 0.2769, 0.2024, 0.3273, 0.3126, 0.3053, 0.2981, 0.2897, 0.2477, 0.2592, 0.4020, 0.4005, 0.3082, 0.2963, 0.3056, 0.3271, 0.3671, 0.2706, 0.3416},
+      { 0.2141, 0.1830, 0.2543, 0.1847, 0.3126, 0.2670, 0.2647, 0.3067, 0.2381, 0.2144, 0.2155, 0.3150, 0.3405, 0.2644, 0.2790, 0.2661, 0.2956, 0.3104, 0.2397, 0.3289},
+      { 0.1967, 0.1966, 0.2600, 0.1909, 0.3053, 0.2647, 0.2764, 0.2698, 0.2550, 0.2257, 0.2197, 0.3351, 0.3351, 0.2974, 0.3043, 0.2864, 0.3099, 0.3157, 0.2526, 0.3328},
+      { 0.2260, 0.1942, 0.2647, 0.1984, 0.2981, 0.3067, 0.2698, 0.3176, 0.2711, 0.3926, 0.2273, 0.3199, 0.3430, 0.2659, 0.2723, 0.2550, 0.3022, 0.3292, 0.3119, 0.3553},
+      { 0.2147, 0.1987, 0.2788, 0.2228, 0.2897, 0.2381, 0.2550, 0.2711, 0.2454, 0.1800, 0.2323, 0.3199, 0.3468, 0.2619, 0.2776, 0.2654, 0.2891, 0.2916, 0.2173, 0.2575},
+      { 0.1810, 0.0846, 0.1864, 0.1157, 0.2477, 0.2144, 0.2257, 0.3926, 0.1800, 0.1398, 0.1367, 0.2543, 0.2488, 0.2380, 0.2360, 0.2255, 0.2668, 0.2581, 0.1874, 0.3773},
+      { 0.1588, 0.1593, 0.2380, 0.1680, 0.2592, 0.2155, 0.2197, 0.2273, 0.2323, 0.1367, 0.2350, 0.3394, 0.3581, 0.2365, 0.2337, 0.2431, 0.2779, 0.2942, 0.1891, 0.2747},
+      { 0.2709, 0.2874, 0.3705, 0.2898, 0.4020, 0.3150, 0.3351, 0.3199, 0.3199, 0.2543, 0.3394, 0.4439, 0.4702, 0.3673, 0.3879, 0.3819, 0.4214, 0.4478, 0.3025, 0.3907},
+      { 0.2566, 0.2804, 0.3745, 0.2604, 0.4005, 0.3405, 0.3351, 0.3430, 0.3468, 0.2488, 0.3581, 0.4702, 0.5433, 0.3786, 0.4088, 0.4024, 0.4732, 0.4776, 0.3137, 0.4463},
+      { 0.1785, 0.1992, 0.2750, 0.2112, 0.3082, 0.2644, 0.2974, 0.2659, 0.2619, 0.2380, 0.2365, 0.3673, 0.3786, 0.3529, 0.3739, 0.3382, 0.3565, 0.3806, 0.2882, 0.3701},
+      { 0.1748, 0.2025, 0.2854, 0.2067, 0.2963, 0.2790, 0.3043, 0.2723, 0.2776, 0.2360, 0.2337, 0.3879, 0.4088, 0.3739, 0.3753, 0.3674, 0.3782, 0.3990, 0.3064, 0.3747},
+      { 0.1902, 0.2000, 0.2973, 0.2118, 0.3056, 0.2661, 0.2864, 0.2550, 0.2654, 0.2255, 0.2431, 0.3819, 0.4024, 0.3382, 0.3674, 0.3513, 0.3484, 0.3828, 0.2865, 0.3301},
+      { 0.2157, 0.1959, 0.2889, 0.2018, 0.3271, 0.2956, 0.3099, 0.3022, 0.2891, 0.2668, 0.2779, 0.4214, 0.4732, 0.3565, 0.3782, 0.3484, 0.4279, 0.4403, 0.3116, 0.4339},
+      { 0.2300, 0.2235, 0.3225, 0.2430, 0.3671, 0.3104, 0.3157, 0.3292, 0.2916, 0.2581, 0.2942, 0.4478, 0.4776, 0.3806, 0.3990, 0.3828, 0.4403, 0.4712, 0.3143, 0.4107},
+      { 0.1572, 0.1491, 0.2287, 0.1658, 0.2706, 0.2397, 0.2526, 0.3119, 0.2173, 0.1874, 0.1891, 0.3025, 0.3137, 0.2882, 0.3064, 0.2865, 0.3116, 0.3143, 0.2538, 0.3196},
+      { 0.2264, 0.2003, 0.2928, 0.1996, 0.3416, 0.3289, 0.3328, 0.3553, 0.2575, 0.3773, 0.2747, 0.3907, 0.4463, 0.3701, 0.3747, 0.3301, 0.4339, 0.4107, 0.3196, 0.5496}},
+    {
+      { 0.0675, 0.0608, 0.3312, 0.2760, 0.2549, 0.1724, 0.1714, 0.2010, 0.1786, 0.0822, 0.1515, 0.2519, 0.2387, 0.1667, 0.1727, 0.1779, 0.1796, 0.2023, 0.1332, 0.1730},
+      { 0.0608, 0.0913, 0.3434, 0.2788, 0.2393, 0.1704, 0.1845, 0.1659, 0.1824, 0.0943, 0.1432, 0.2690, 0.2635, 0.2007, 0.2022, 0.2008, 0.1941, 0.2205, 0.1590, 0.1754},
+      { 0.3312, 0.3434, 0.2483, 0.1793, 0.2622, 0.2377, 0.2422, 0.2554, 0.2581, 0.1724, 0.2319, 0.3512, 0.3475, 0.2728, 0.2882, 0.2884, 0.2850, 0.3190, 0.2138, 0.2488},
+      { 0.2760, 0.2788, 0.1793, 0.1296, 0.1904, 0.1763, 0.1865, 0.1906, 0.1876, 0.1103, 0.1578, 0.2899, 0.2507, 0.2042, 0.2098, 0.2114, 0.1914, 0.2357, 0.1611, 0.1713},
+      { 0.2549, 0.2393, 0.2622, 0.1904, 0.3330, 0.2860, 0.2904, 0.2526, 0.2372, 0.2545, 0.2492, 0.3793, 0.3864, 0.3043, 0.3084, 0.2983, 0.3222, 0.3460, 0.2625, 0.3131},
+      { 0.1724, 0.1704, 0.2377, 0.1763, 0.2860, 0.2283, 0.2302, 0.2240, 0.2657, 0.1524, 0.1962, 0.2948, 0.3057, 0.2484, 0.2557, 0.2438, 0.2864, 0.2965, 0.1965, 0.2716},
+      { 0.1714, 0.1845, 0.2422, 0.1865, 0.2904, 0.2302, 0.2511, 0.2311, 0.2602, 0.1628, 0.1990, 0.3113, 0.3191, 0.2796, 0.2945, 0.2721, 0.2927, 0.3046, 0.2108, 0.2744},
+      { 0.2010, 0.1659, 0.2554, 0.1906, 0.2526, 0.2240, 0.2311, 0.2490, 0.2271, 0.1800, 0.2095, 0.3047, 0.3050, 0.2289, 0.2287, 0.2356, 0.2790, 0.2836, 0.1975, 0.2722},
+      { 0.1786, 0.1824, 0.2581, 0.1876, 0.2372, 0.2657, 0.2602, 0.2271, 0.2273, 0.3636, 0.2256, 0.3113, 0.3301, 0.2587, 0.2695, 0.2682, 0.3005, 0.2972, 0.2889, 0.3366},
+      { 0.0822, 0.0943, 0.1724, 0.1103, 0.2545, 0.1524, 0.1628, 0.1800, 0.3636, 0.1212, 0.1329, 0.2482, 0.2439, 0.1996, 0.2140, 0.2095, 0.2979, 0.2536, 0.1336, 0.2658},
+      { 0.1515, 0.1432, 0.2319, 0.1578, 0.2492, 0.1962, 0.1990, 0.2095, 0.2256, 0.1329, 0.2021, 0.3471, 0.3581, 0.2125, 0.2376, 0.2384, 0.2703, 0.3114, 0.1796, 0.2578},
+      { 0.2519, 0.2690, 0.3512, 0.2899, 0.3793, 0.2948, 0.3113, 0.3047, 0.3113, 0.2482, 0.3471, 0.4173, 0.4697, 0.3644, 0.3850, 0.3801, 0.4106, 0.4339, 0.3032, 0.3790},
+      { 0.2387, 0.2635, 0.3475, 0.2507, 0.3864, 0.3057, 0.3191, 0.3050, 0.3301, 0.2439, 0.3581, 0.4697, 0.4950, 0.3780, 0.3906, 0.3902, 0.4339, 0.4908, 0.2932, 0.4361},
+      { 0.1667, 0.2007, 0.2728, 0.2042, 0.3043, 0.2484, 0.2796, 0.2289, 0.2587, 0.1996, 0.2125, 0.3644, 0.3780, 0.3446, 0.3616, 0.3404, 0.3496, 0.3684, 0.2755, 0.3327},
+      { 0.1727, 0.2022, 0.2882, 0.2098, 0.3084, 0.2557, 0.2945, 0.2287, 0.2695, 0.2140, 0.2376, 0.3850, 0.3906, 0.3616, 0.3765, 0.3658, 0.3712, 0.3953, 0.2943, 0.3570},
+      { 0.1779, 0.2008, 0.2884, 0.2114, 0.2983, 0.2438, 0.2721, 0.2356, 0.2682, 0.2095, 0.2384, 0.3801, 0.3902, 0.3404, 0.3658, 0.3573, 0.3469, 0.3940, 0.2736, 0.3221},
+      { 0.1796, 0.1941, 0.2850, 0.1914, 0.3222, 0.2864, 0.2927, 0.2790, 0.3005, 0.2979, 0.2703, 0.4106, 0.4339, 0.3496, 0.3712, 0.3469, 0.4364, 0.4298, 0.3020, 0.3764},
+      { 0.2023, 0.2205, 0.3190, 0.2357, 0.3460, 0.2965, 0.3046, 0.2836, 0.2972, 0.2536, 0.3114, 0.4339, 0.4908, 0.3684, 0.3953, 0.3940, 0.4298, 0.4556, 0.3023, 0.3855},
+      { 0.1332, 0.1590, 0.2138, 0.1611, 0.2625, 0.1965, 0.2108, 0.1975, 0.2889, 0.1336, 0.1796, 0.3032, 0.2932, 0.2755, 0.2943, 0.2736, 0.3020, 0.3023, 0.2295, 0.2774},
+      { 0.1730, 0.1754, 0.2488, 0.1713, 0.3131, 0.2716, 0.2744, 0.2722, 0.3366, 0.2658, 0.2578, 0.3790, 0.4361, 0.3327, 0.3570, 0.3221, 0.3764, 0.3855, 0.2774, 0.4997}},
+    {
+      { 0.0302, 0.0367, 0.3217, 0.2546, 0.2299, 0.1557, 0.1509, 0.1857, 0.1682, 0.0746, 0.1251, 0.2401, 0.2181, 0.1179, 0.1331, 0.1519, 0.1487, 0.1875, 0.1299, 0.1732},
+      { 0.0367, 0.0812, 0.3331, 0.2644, 0.2358, 0.1509, 0.1622, 0.1541, 0.1738, 0.0518, 0.1386, 0.2603, 0.2765, 0.1725, 0.1757, 0.1833, 0.1803, 0.1958, 0.1371, 0.1728},
+      { 0.3217, 0.3331, 0.2492, 0.1752, 0.2818, 0.2249, 0.2334, 0.2475, 0.2570, 0.1455, 0.2164, 0.3583, 0.3471, 0.2419, 0.2617, 0.2642, 0.2737, 0.3164, 0.1889, 0.2316},
+      { 0.2546, 0.2644, 0.1752, 0.0975, 0.1654, 0.1440, 0.1601, 0.1748, 0.1957, 0.0687, 0.1231, 0.2795, 0.2529, 0.1603, 0.1869, 0.1881, 0.1648, 0.1924, 0.1268, 0.1498},
+      { 0.2299, 0.2358, 0.2818, 0.1654, 0.3349, 0.2575, 0.2584, 0.2407, 0.2096, 0.1644, 0.2275, 0.3972, 0.3634, 0.2702, 0.2916, 0.2737, 0.2781, 0.3701, 0.2325, 0.3105},
+      { 0.1557, 0.1509, 0.2249, 0.1440, 0.2575, 0.2910, 0.2710, 0.2097, 0.2095, 0.2417, 0.2026, 0.2944, 0.3244, 0.2639, 0.2690, 0.2541, 0.2929, 0.3037, 0.2817, 0.3191},
+      { 0.1509, 0.1622, 0.2334, 0.1601, 0.2584, 0.2710, 0.2782, 0.2133, 0.2354, 0.1935, 0.2138, 0.3056, 0.3449, 0.2904, 0.2888, 0.2767, 0.2953, 0.3159, 0.2675, 0.3082},
+      { 0.1857, 0.1541, 0.2475, 0.1748, 0.2407, 0.2097, 0.2133, 0.2593, 0.2260, 0.1398, 0.2017, 0.2703, 0.2819, 0.1998, 0.2078, 0.2195, 0.2523, 0.2756, 0.1930, 0.2694},
+      { 0.1682, 0.1738, 0.2570, 0.1957, 0.2096, 0.2095, 0.2354, 0.2260, 0.2240, 0.1212, 0.1975, 0.2988, 0.3469, 0.2303, 0.2318, 0.2428, 0.2438, 0.2745, 0.1927, 0.2271},
+      { 0.0746, 0.0518, 0.1455, 0.0687, 0.1644, 0.2417, 0.1935, 0.1398, 0.1212, 0.3370, 0.1342, 0.2159, 0.2189, 0.1996, 0.1904, 0.1969, 0.2407, 0.2249, 0.2945, 0.3036},
+      { 0.1251, 0.1386, 0.2164, 0.1231, 0.2275, 0.2026, 0.2138, 0.2017, 0.1975, 0.1342, 0.1813, 0.3142, 0.3404, 0.1929, 0.2113, 0.2202, 0.2627, 0.2763, 0.1677, 0.2657},
+      { 0.2401, 0.2603, 0.3583, 0.2795, 0.3972, 0.2944, 0.3056, 0.2703, 0.2988, 0.2159, 0.3142, 0.4290, 0.4513, 0.3732, 0.3874, 0.3825, 0.3995, 0.4422, 0.3057, 0.3397},
+      { 0.2181, 0.2765, 0.3471, 0.2529, 0.3634, 0.3244, 0.3449, 0.2819, 0.3469, 0.2189, 0.3404, 0.4513, 0.5433, 0.4016, 0.3808, 0.4050, 0.4599, 0.5026, 0.2988, 0.4087},
+      { 0.1179, 0.1725, 0.2419, 0.1603, 0.2702, 0.2639, 0.2904, 0.1998, 0.2303, 0.1996, 0.1929, 0.3732, 0.4016, 0.3740, 0.3904, 0.3508, 0.3597, 0.4048, 0.3334, 0.3945},
+      { 0.1331, 0.1757, 0.2617, 0.1869, 0.2916, 0.2690, 0.2888, 0.2078, 0.2318, 0.1904, 0.2113, 0.3874, 0.3808, 0.3904, 0.3909, 0.3648, 0.3447, 0.4011, 0.3259, 0.3814},
+      { 0.1519, 0.1833, 0.2642, 0.1881, 0.2737, 0.2541, 0.2767, 0.2195, 0.2428, 0.1969, 0.2202, 0.3825, 0.4050, 0.3508, 0.3648, 0.3658, 0.3547, 0.3832, 0.2970, 0.3409},
+      { 0.1487, 0.1803, 0.2737, 0.1648, 0.2781, 0.2929, 0.2953, 0.2523, 0.2438, 0.2407, 0.2627, 0.3995, 0.4599, 0.3597, 0.3447, 0.3547, 0.4527, 0.4291, 0.3266, 0.4150},
+      { 0.1875, 0.1958, 0.3164, 0.1924, 0.3701, 0.3037, 0.3159, 0.2756, 0.2745, 0.2249, 0.2763, 0.4422, 0.5026, 0.4048, 0.4011, 0.3832, 0.4291, 0.4749, 0.3312, 0.3889},
+      { 0.1299, 0.1371, 0.1889, 0.1268, 0.2325, 0.2817, 0.2675, 0.1930, 0.1927, 0.2945, 0.1677, 0.3057, 0.2988, 0.3334, 0.3259, 0.2970, 0.3266, 0.3312, 0.3532, 0.3661},
+      { 0.1732, 0.1728, 0.2316, 0.1498, 0.3105, 0.3191, 0.3082, 0.2694, 0.2271, 0.3036, 0.2657, 0.3397, 0.4087, 0.3945, 0.3814, 0.3409, 0.4150, 0.3889, 0.3661, 0.5619}},
+    {
+      { 0.0468, 0.0362, 0.3383, 0.2853, 0.2449, 0.1604, 0.1670, 0.1926, 0.1780, 0.0443, 0.1080, 0.2456, 0.2141, 0.1409, 0.1491, 0.1438, 0.1574, 0.1856, 0.1004, 0.1752},
+      { 0.0362, 0.0502, 0.3301, 0.2729, 0.2212, 0.1355, 0.1551, 0.1659, 0.1717, 0.0390, 0.1130, 0.2599, 0.2438, 0.1499, 0.1472, 0.1570, 0.1554, 0.1884, 0.0996, 0.1422},
+      { 0.3383, 0.3301, 0.2421, 0.1795, 0.2527, 0.2124, 0.2394, 0.2596, 0.2611, 0.1538, 0.2130, 0.3571, 0.3339, 0.2408, 0.2522, 0.2508, 0.2378, 0.3012, 0.1819, 0.2610},
+      { 0.2853, 0.2729, 0.1795, 0.1200, 0.1895, 0.1383, 0.1657, 0.1947, 0.2057, 0.0960, 0.1055, 0.2886, 0.2683, 0.1770, 0.1686, 0.1683, 0.1436, 0.2136, 0.1179, 0.1328},
+      { 0.2449, 0.2212, 0.2527, 0.1895, 0.2998, 0.2422, 0.2593, 0.2589, 0.2455, 0.1813, 0.2110, 0.3722, 0.3414, 0.2583, 0.2561, 0.2610, 0.2866, 0.3186, 0.2001, 0.2913},
+      { 0.1604, 0.1355, 0.2124, 0.1383, 0.2422, 0.2101, 0.2083, 0.1993, 0.1951, 0.1658, 0.2218, 0.2716, 0.2980, 0.2199, 0.2405, 0.2234, 0.2500, 0.2613, 0.1946, 0.2827},
+      { 0.1670, 0.1551, 0.2394, 0.1657, 0.2593, 0.2083, 0.2451, 0.2232, 0.2442, 0.1715, 0.1983, 0.3105, 0.3112, 0.2535, 0.2590, 0.2498, 0.2731, 0.2947, 0.2026, 0.2933},
+      { 0.1926, 0.1659, 0.2596, 0.1947, 0.2589, 0.1993, 0.2232, 0.2415, 0.2268, 0.1367, 0.1763, 0.2887, 0.3073, 0.2048, 0.2057, 0.2063, 0.2508, 0.2618, 0.1748, 0.2367},
+      { 0.1780, 0.1717, 0.2611, 0.2057, 0.2455, 0.1951, 0.2442, 0.2268, 0.2156, 0.1329, 0.1723, 0.3004, 0.3132, 0.2255, 0.2448, 0.2358, 0.2457, 0.2716, 0.1613, 0.2285},
+      { 0.0443, 0.0390, 0.1538, 0.0960, 0.1813, 0.1658, 0.1715, 0.1367, 0.1329, 0.1342, 0.2619, 0.2107, 0.2058, 0.2016, 0.1848, 0.1721, 0.2014, 0.2092, 0.1897, 0.2539},
+      { 0.1080, 0.1130, 0.2130, 0.1055, 0.2110, 0.2218, 0.1983, 0.1763, 0.1723, 0.2619, 0.1621, 0.3131, 0.3127, 0.2103, 0.2130, 0.2138, 0.2682, 0.2838, 0.2360, 0.2784},
+      { 0.2456, 0.2599, 0.3571, 0.2886, 0.3722, 0.2716, 0.3105, 0.2887, 0.3004, 0.2107, 0.3131, 0.3959, 0.4520, 0.3473, 0.3569, 0.3652, 0.3850, 0.4231, 0.2684, 0.3399},
+      { 0.2141, 0.2438, 0.3339, 0.2683, 0.3414, 0.2980, 0.3112, 0.3073, 0.3132, 0.2058, 0.3127, 0.4520, 0.5338, 0.3481, 0.3653, 0.3754, 0.4443, 0.4712, 0.2765, 0.3634},
+      { 0.1409, 0.1499, 0.2408, 0.1770, 0.2583, 0.2199, 0.2535, 0.2048, 0.2255, 0.2016, 0.2103, 0.3473, 0.3481, 0.3218, 0.3319, 0.3146, 0.2999, 0.3687, 0.2656, 0.3140},
+      { 0.1491, 0.1472, 0.2522, 0.1686, 0.2561, 0.2405, 0.2590, 0.2057, 0.2448, 0.1848, 0.2130, 0.3569, 0.3653, 0.3319, 0.3513, 0.3327, 0.3293, 0.3805, 0.2626, 0.3185},
+      { 0.1438, 0.1570, 0.2508, 0.1683, 0.2610, 0.2234, 0.2498, 0.2063, 0.2358, 0.1721, 0.2138, 0.3652, 0.3754, 0.3146, 0.3327, 0.3218, 0.3361, 0.3737, 0.2448, 0.3148},
+      { 0.1574, 0.1554, 0.2378, 0.1436, 0.2866, 0.2500, 0.2731, 0.2508, 0.2457, 0.2014, 0.2682, 0.3850, 0.4443, 0.2999, 0.3293, 0.3361, 0.4021, 0.4176, 0.2523, 0.3744},
+      { 0.1856, 0.1884, 0.3012, 0.2136, 0.3186, 0.2613, 0.2947, 0.2618, 0.2716, 0.2092, 0.2838, 0.4231, 0.4712, 0.3687, 0.3805, 0.3737, 0.4176, 0.4303, 0.2782, 0.3696},
+      { 0.1004, 0.0996, 0.1819, 0.1179, 0.2001, 0.1946, 0.2026, 0.1748, 0.1613, 0.1897, 0.2360, 0.2684, 0.2765, 0.2656, 0.2626, 0.2448, 0.2523, 0.2782, 0.2218, 0.2774},
+      { 0.1752, 0.1422, 0.2610, 0.1328, 0.2913, 0.2827, 0.2933, 0.2367, 0.2285, 0.2539, 0.2784, 0.3399, 0.3634, 0.3140, 0.3185, 0.3148, 0.3744, 0.3696, 0.2774, 0.4700}},
+    {
+      { 0.1724, 0.1541, 0.3757, 0.3280, 0.3067, 0.2730, 0.2575, 0.2672, 0.2511, 0.1745, 0.2232, 0.2395, 0.2691, 0.2130, 0.2074, 0.2195, 0.2408, 0.2403, 0.2248, 0.2535},
+      { 0.1541, 0.1671, 0.3983, 0.3337, 0.2826, 0.2576, 0.2646, 0.2453, 0.2611, 0.1639, 0.2225, 0.2512, 0.3147, 0.2651, 0.2713, 0.2541, 0.2593, 0.2510, 0.2334, 0.2659},
+      { 0.3757, 0.3983, 0.2954, 0.2295, 0.3150, 0.3249, 0.3388, 0.3148, 0.3301, 0.2529, 0.2815, 0.3309, 0.3886, 0.3273, 0.3318, 0.3316, 0.3359, 0.3270, 0.3007, 0.3258},
+      { 0.3280, 0.3337, 0.2295, 0.1914, 0.2485, 0.2487, 0.2574, 0.2594, 0.2620, 0.1932, 0.1955, 0.2562, 0.2899, 0.2524, 0.2572, 0.2599, 0.2565, 0.2549, 0.2410, 0.2590},
+      { 0.3067, 0.2826, 0.3150, 0.2485, 0.3730, 0.3692, 0.3556, 0.2917, 0.2843, 0.3129, 0.3000, 0.3472, 0.4153, 0.3482, 0.3408, 0.3353, 0.3760, 0.3571, 0.3384, 0.3921},
+      { 0.2730, 0.2576, 0.3249, 0.2487, 0.3692, 0.3397, 0.3300, 0.3165, 0.3187, 0.2435, 0.2888, 0.3318, 0.3587, 0.3249, 0.3313, 0.3156, 0.3641, 0.3670, 0.3031, 0.3599},
+      { 0.2575, 0.2646, 0.3388, 0.2574, 0.3556, 0.3300, 0.3616, 0.2995, 0.3286, 0.2439, 0.2885, 0.3159, 0.3703, 0.3752, 0.3782, 0.3575, 0.3835, 0.3685, 0.3175, 0.3803},
+      { 0.2672, 0.2453, 0.3148, 0.2594, 0.2917, 0.3165, 0.2995, 0.3405, 0.3002, 0.2543, 0.2821, 0.2614, 0.3190, 0.2593, 0.2589, 0.2638, 0.3215, 0.2891, 0.2744, 0.3143},
+      { 0.2511, 0.2611, 0.3301, 0.2620, 0.2843, 0.3187, 0.3286, 0.3002, 0.3114, 0.2482, 0.2780, 0.3051, 0.3708, 0.3088, 0.3183, 0.3164, 0.3309, 0.3146, 0.3000, 0.3293},
+      { 0.1745, 0.1639, 0.2529, 0.1932, 0.3129, 0.2435, 0.2439, 0.2543, 0.2482, 0.2159, 0.2107, 0.4071, 0.3644, 0.2539, 0.2680, 0.2845, 0.3139, 0.3740, 0.2482, 0.3074},
+      { 0.2232, 0.2225, 0.2815, 0.1955, 0.3000, 0.2888, 0.2885, 0.2821, 0.2780, 0.2107, 0.2834, 0.3019, 0.3771, 0.2711, 0.2850, 0.2902, 0.3393, 0.3110, 0.2636, 0.3127},
+      { 0.2395, 0.2512, 0.3309, 0.2562, 0.3472, 0.3318, 0.3159, 0.2614, 0.3051, 0.4071, 0.3019, 0.4094, 0.4639, 0.3950, 0.4107, 0.3959, 0.4341, 0.4422, 0.3957, 0.4122},
+      { 0.2691, 0.3147, 0.3886, 0.2899, 0.4153, 0.3587, 0.3703, 0.3190, 0.3708, 0.3644, 0.3771, 0.4639, 0.5377, 0.4382, 0.4571, 0.4616, 0.5014, 0.5025, 0.4050, 0.4415},
+      { 0.2130, 0.2651, 0.3273, 0.2524, 0.3482, 0.3249, 0.3752, 0.2593, 0.3088, 0.2539, 0.2711, 0.3950, 0.4382, 0.4839, 0.4948, 0.4532, 0.4728, 0.4490, 0.3972, 0.4597},
+      { 0.2074, 0.2713, 0.3318, 0.2572, 0.3408, 0.3313, 0.3782, 0.2589, 0.3183, 0.2680, 0.2850, 0.4107, 0.4571, 0.4948, 0.5163, 0.4686, 0.4696, 0.4680, 0.4077, 0.4680},
+      { 0.2195, 0.2541, 0.3316, 0.2599, 0.3353, 0.3156, 0.3575, 0.2638, 0.3164, 0.2845, 0.2902, 0.3959, 0.4616, 0.4532, 0.4686, 0.4484, 0.4512, 0.4403, 0.3883, 0.4270},
+      { 0.2408, 0.2593, 0.3359, 0.2565, 0.3760, 0.3641, 0.3835, 0.3215, 0.3309, 0.3139, 0.3393, 0.4341, 0.5014, 0.4728, 0.4696, 0.4512, 0.5095, 0.4858, 0.4083, 0.4786},
+      { 0.2403, 0.2510, 0.3270, 0.2549, 0.3571, 0.3670, 0.3685, 0.2891, 0.3146, 0.3740, 0.3110, 0.4422, 0.5025, 0.4490, 0.4680, 0.4403, 0.4858, 0.4838, 0.4236, 0.4727},
+      { 0.2248, 0.2334, 0.3007, 0.2410, 0.3384, 0.3031, 0.3175, 0.2744, 0.3000, 0.2482, 0.2636, 0.3957, 0.4050, 0.3972, 0.4077, 0.3883, 0.4083, 0.4236, 0.3489, 0.3938},
+      { 0.2535, 0.2659, 0.3258, 0.2590, 0.3921, 0.3599, 0.3803, 0.3143, 0.3293, 0.3074, 0.3127, 0.4122, 0.4415, 0.4597, 0.4680, 0.4270, 0.4786, 0.4727, 0.3938, 0.6679}},
+    {
+      { 0.1769, 0.1725, 0.4075, 0.3436, 0.3300, 0.2817, 0.2742, 0.2624, 0.2732, 0.1945, 0.2369, 0.3083, 0.2267, 0.2397, 0.2308, 0.2251, 0.2413, 0.2430, 0.2359, 0.2758},
+      { 0.1725, 0.1762, 0.4169, 0.3430, 0.3221, 0.2649, 0.2803, 0.2487, 0.2794, 0.1541, 0.2359, 0.3262, 0.2509, 0.2712, 0.2837, 0.2608, 0.2813, 0.2585, 0.2364, 0.2951},
+      { 0.4075, 0.4169, 0.3215, 0.2492, 0.3507, 0.3328, 0.3442, 0.3289, 0.3550, 0.2449, 0.3064, 0.4021, 0.3174, 0.3395, 0.3490, 0.3473, 0.3577, 0.3533, 0.2963, 0.3559},
+      { 0.3436, 0.3430, 0.2492, 0.2003, 0.2521, 0.2561, 0.2823, 0.2628, 0.2663, 0.1795, 0.1990, 0.3259, 0.2422, 0.2736, 0.2723, 0.2701, 0.2612, 0.2820, 0.2366, 0.2748},
+      { 0.3300, 0.3221, 0.3507, 0.2521, 0.4034, 0.3788, 0.3780, 0.3055, 0.3287, 0.3042, 0.3307, 0.4131, 0.3662, 0.3780, 0.3654, 0.3732, 0.4036, 0.3941, 0.3549, 0.3916},
+      { 0.2817, 0.2649, 0.3328, 0.2561, 0.3788, 0.3517, 0.3468, 0.3218, 0.3245, 0.2558, 0.3055, 0.3603, 0.3473, 0.3274, 0.3323, 0.3234, 0.3706, 0.3685, 0.3103, 0.3775},
+      { 0.2742, 0.2803, 0.3442, 0.2823, 0.3780, 0.3468, 0.3653, 0.3086, 0.3402, 0.2598, 0.2967, 0.3869, 0.3469, 0.3923, 0.3874, 0.3693, 0.3984, 0.3914, 0.3219, 0.4016},
+      { 0.2624, 0.2487, 0.3289, 0.2628, 0.3055, 0.3218, 0.3086, 0.3559, 0.2987, 0.2488, 0.2736, 0.3227, 0.2548, 0.2825, 0.2695, 0.2794, 0.3169, 0.2960, 0.2760, 0.3367},
+      { 0.2732, 0.2794, 0.3550, 0.2663, 0.3287, 0.3245, 0.3402, 0.2987, 0.3306, 0.2439, 0.3008, 0.3554, 0.3377, 0.3213, 0.3354, 0.3274, 0.3579, 0.3225, 0.3061, 0.3221},
+      { 0.1945, 0.1541, 0.2449, 0.1795, 0.3042, 0.2558, 0.2598, 0.2488, 0.2439, 0.2189, 0.2058, 0.3644, 0.4281, 0.2588, 0.2695, 0.2940, 0.3245, 0.3491, 0.2517, 0.3218},
+      { 0.2369, 0.2359, 0.3064, 0.1990, 0.3307, 0.3055, 0.2967, 0.2736, 0.3008, 0.2058, 0.2707, 0.3714, 0.3182, 0.2898, 0.3018, 0.2912, 0.3637, 0.3236, 0.2777, 0.3781},
+      { 0.3083, 0.3262, 0.4021, 0.3259, 0.4131, 0.3603, 0.3869, 0.3227, 0.3554, 0.3644, 0.3714, 0.4641, 0.4479, 0.4648, 0.4790, 0.4737, 0.4889, 0.4923, 0.4104, 0.4595},
+      { 0.2267, 0.2509, 0.3174, 0.2422, 0.3662, 0.3473, 0.3469, 0.2548, 0.3377, 0.4281, 0.3182, 0.4479, 0.4994, 0.4157, 0.4387, 0.4320, 0.4304, 0.4822, 0.4066, 0.4796},
+      { 0.2397, 0.2712, 0.3395, 0.2736, 0.3780, 0.3274, 0.3923, 0.2825, 0.3213, 0.2588, 0.2898, 0.4648, 0.4157, 0.4963, 0.5131, 0.4895, 0.4835, 0.4977, 0.3961, 0.4662},
+      { 0.2308, 0.2837, 0.3490, 0.2723, 0.3654, 0.3323, 0.3874, 0.2695, 0.3354, 0.2695, 0.3018, 0.4790, 0.4387, 0.5131, 0.5337, 0.5076, 0.4982, 0.4968, 0.4071, 0.4971},
+      { 0.2251, 0.2608, 0.3473, 0.2701, 0.3732, 0.3234, 0.3693, 0.2794, 0.3274, 0.2940, 0.2912, 0.4737, 0.4320, 0.4895, 0.5076, 0.5014, 0.4791, 0.4773, 0.3905, 0.4586},
+      { 0.2413, 0.2813, 0.3577, 0.2612, 0.4036, 0.3706, 0.3984, 0.3169, 0.3579, 0.3245, 0.3637, 0.4889, 0.4304, 0.4835, 0.4982, 0.4791, 0.5474, 0.5183, 0.4220, 0.5004},
+      { 0.2430, 0.2585, 0.3533, 0.2820, 0.3941, 0.3685, 0.3914, 0.2960, 0.3225, 0.3491, 0.3236, 0.4923, 0.4822, 0.4977, 0.4968, 0.4773, 0.5183, 0.5282, 0.4151, 0.4903},
+      { 0.2359, 0.2364, 0.2963, 0.2366, 0.3549, 0.3103, 0.3219, 0.2760, 0.3061, 0.2517, 0.2777, 0.4104, 0.4066, 0.3961, 0.4071, 0.3905, 0.4220, 0.4151, 0.3535, 0.4012},
+      { 0.2758, 0.2951, 0.3559, 0.2748, 0.3916, 0.3775, 0.4016, 0.3367, 0.3221, 0.3218, 0.3781, 0.4595, 0.4796, 0.4662, 0.4971, 0.4586, 0.5004, 0.4903, 0.4012, 0.6625}},
+    {
+      { 0.0774, 0.0659, 0.3443, 0.2918, 0.2614, 0.1924, 0.1791, 0.2052, 0.1992, 0.1155, 0.1624, 0.2468, 0.2250, 0.0829, 0.0966, 0.1227, 0.1513, 0.1552, 0.1302, 0.1759},
+      { 0.0659, 0.0959, 0.3530, 0.2885, 0.2429, 0.1807, 0.1813, 0.1784, 0.2036, 0.1013, 0.1590, 0.2682, 0.2682, 0.1112, 0.1330, 0.1543, 0.1681, 0.1833, 0.1532, 0.1807},
+      { 0.3443, 0.3530, 0.2460, 0.1838, 0.2708, 0.2436, 0.2435, 0.2614, 0.2749, 0.2046, 0.2335, 0.3401, 0.3458, 0.1904, 0.2049, 0.2343, 0.2492, 0.2698, 0.2220, 0.2586},
+      { 0.2918, 0.2885, 0.1838, 0.1306, 0.2084, 0.1739, 0.1742, 0.2138, 0.2086, 0.1454, 0.1483, 0.2784, 0.2625, 0.1266, 0.1391, 0.1632, 0.1579, 0.2036, 0.1664, 0.1692},
+      { 0.2614, 0.2429, 0.2708, 0.2084, 0.3153, 0.3026, 0.2903, 0.2521, 0.2456, 0.2070, 0.2509, 0.3667, 0.3550, 0.2189, 0.2198, 0.2493, 0.2741, 0.3008, 0.2500, 0.3031},
+      { 0.1924, 0.1807, 0.2436, 0.1739, 0.3026, 0.3036, 0.2975, 0.2633, 0.2516, 0.2449, 0.2351, 0.3070, 0.3070, 0.2506, 0.2560, 0.2570, 0.3022, 0.3040, 0.2812, 0.3382},
+      { 0.1791, 0.1813, 0.2435, 0.1742, 0.2903, 0.2975, 0.2979, 0.2458, 0.2455, 0.2752, 0.2302, 0.3306, 0.3422, 0.2716, 0.2887, 0.2930, 0.3287, 0.3263, 0.3206, 0.3566},
+      { 0.2052, 0.1784, 0.2614, 0.2138, 0.2521, 0.2633, 0.2458, 0.2721, 0.2438, 0.2380, 0.2234, 0.2605, 0.2994, 0.1423, 0.1490, 0.1744, 0.2264, 0.2168, 0.2021, 0.2530},
+      { 0.1992, 0.2036, 0.2749, 0.2086, 0.2456, 0.2516, 0.2455, 0.2438, 0.2430, 0.1996, 0.2243, 0.3045, 0.3425, 0.1681, 0.1845, 0.2216, 0.2425, 0.2628, 0.2218, 0.2594},
+      { 0.1155, 0.1013, 0.2046, 0.1454, 0.2070, 0.2449, 0.2752, 0.2380, 0.1996, 0.1996, 0.2016, 0.2539, 0.2588, 0.3168, 0.2903, 0.2537, 0.2982, 0.2626, 0.2513, 0.3249},
+      { 0.1624, 0.1590, 0.2335, 0.1483, 0.2509, 0.2351, 0.2302, 0.2234, 0.2243, 0.2016, 0.2054, 0.3100, 0.3358, 0.1545, 0.1615, 0.1994, 0.2439, 0.2533, 0.2139, 0.2683},
+      { 0.2468, 0.2682, 0.3401, 0.2784, 0.3667, 0.3070, 0.3306, 0.2605, 0.3045, 0.2539, 0.3100, 0.4232, 0.4610, 0.3469, 0.3603, 0.3854, 0.3962, 0.4447, 0.3467, 0.4019},
+      { 0.2250, 0.2682, 0.3458, 0.2625, 0.3550, 0.3070, 0.3422, 0.2994, 0.3425, 0.2588, 0.3358, 0.4610, 0.5251, 0.3427, 0.3685, 0.3920, 0.4360, 0.4741, 0.3479, 0.4065},
+      { 0.0829, 0.1112, 0.1904, 0.1266, 0.2189, 0.2506, 0.2716, 0.1423, 0.1681, 0.3168, 0.1545, 0.3469, 0.3427, 0.3937, 0.3989, 0.3780, 0.3538, 0.3963, 0.3848, 0.4184},
+      { 0.0966, 0.1330, 0.2049, 0.1391, 0.2198, 0.2560, 0.2887, 0.1490, 0.1845, 0.2903, 0.1615, 0.3603, 0.3685, 0.3989, 0.4161, 0.3940, 0.3770, 0.4105, 0.3857, 0.4210},
+      { 0.1227, 0.1543, 0.2343, 0.1632, 0.2493, 0.2570, 0.2930, 0.1744, 0.2216, 0.2537, 0.1994, 0.3854, 0.3920, 0.3780, 0.3940, 0.3948, 0.3866, 0.4184, 0.3664, 0.3943},
+      { 0.1513, 0.1681, 0.2492, 0.1579, 0.2741, 0.3022, 0.3287, 0.2264, 0.2425, 0.2982, 0.2439, 0.3962, 0.4360, 0.3538, 0.3770, 0.3866, 0.4541, 0.4394, 0.3770, 0.4441},
+      { 0.1552, 0.1833, 0.2698, 0.2036, 0.3008, 0.3040, 0.3263, 0.2168, 0.2628, 0.2626, 0.2533, 0.4447, 0.4741, 0.3963, 0.4105, 0.4184, 0.4394, 0.4761, 0.3734, 0.4377},
+      { 0.1302, 0.1532, 0.2220, 0.1664, 0.2500, 0.2812, 0.3206, 0.2021, 0.2218, 0.2513, 0.2139, 0.3467, 0.3479, 0.3848, 0.3857, 0.3664, 0.3770, 0.3734, 0.3736, 0.4084},
+      { 0.1759, 0.1807, 0.2586, 0.1692, 0.3031, 0.3382, 0.3566, 0.2530, 0.2594, 0.3249, 0.2683, 0.4019, 0.4065, 0.4184, 0.4210, 0.3943, 0.4441, 0.4377, 0.4084, 0.5770}},
+    {
+      { 0.0912, 0.0708, 0.3430, 0.2880, 0.2555, 0.2022, 0.1812, 0.2045, 0.1986, 0.1131, 0.1590, 0.2459, 0.2213, 0.0990, 0.0771, 0.1210, 0.1504, 0.1545, 0.1477, 0.1863},
+      { 0.0708, 0.1075, 0.3580, 0.2863, 0.2578, 0.1895, 0.1913, 0.1835, 0.2102, 0.1015, 0.1608, 0.2758, 0.2783, 0.1253, 0.1165, 0.1442, 0.1674, 0.1829, 0.1584, 0.1767},
+      { 0.3430, 0.3580, 0.2476, 0.1846, 0.2751, 0.2525, 0.2532, 0.2676, 0.2749, 0.2009, 0.2346, 0.3452, 0.3502, 0.2032, 0.1817, 0.2293, 0.2401, 0.2669, 0.2313, 0.2695},
+      { 0.2880, 0.2863, 0.1846, 0.1367, 0.2119, 0.1807, 0.1841, 0.2108, 0.2112, 0.1520, 0.1470, 0.2778, 0.2617, 0.1454, 0.1197, 0.1652, 0.1603, 0.2016, 0.1762, 0.1798},
+      { 0.2555, 0.2578, 0.2751, 0.2119, 0.3355, 0.3082, 0.3063, 0.2553, 0.2554, 0.2156, 0.2823, 0.3654, 0.3628, 0.2416, 0.2105, 0.2510, 0.2787, 0.3022, 0.2728, 0.3071},
+      { 0.2022, 0.1895, 0.2525, 0.1807, 0.3082, 0.3035, 0.3014, 0.2656, 0.2598, 0.2265, 0.2390, 0.3094, 0.3202, 0.2611, 0.2422, 0.2568, 0.2926, 0.3046, 0.2756, 0.3377},
+      { 0.1812, 0.1913, 0.2532, 0.1841, 0.3063, 0.3014, 0.3121, 0.2545, 0.2589, 0.2520, 0.2342, 0.3422, 0.3628, 0.2981, 0.2738, 0.2943, 0.3279, 0.3413, 0.3175, 0.3597},
+      { 0.2045, 0.1835, 0.2676, 0.2108, 0.2553, 0.2656, 0.2545, 0.2675, 0.2545, 0.2360, 0.2280, 0.2696, 0.2769, 0.1534, 0.1255, 0.1708, 0.2217, 0.2172, 0.2125, 0.2630},
+      { 0.1986, 0.2102, 0.2749, 0.2112, 0.2554, 0.2598, 0.2589, 0.2545, 0.2572, 0.2140, 0.2360, 0.3071, 0.3476, 0.1893, 0.1693, 0.2172, 0.2422, 0.2560, 0.2395, 0.2741},
+      { 0.1131, 0.1015, 0.2009, 0.1520, 0.2156, 0.2265, 0.2520, 0.2360, 0.2140, 0.1904, 0.1848, 0.2680, 0.2695, 0.2903, 0.2994, 0.2583, 0.3005, 0.2710, 0.2262, 0.3031},
+      { 0.1590, 0.1608, 0.2346, 0.1470, 0.2823, 0.2390, 0.2342, 0.2280, 0.2360, 0.1848, 0.2078, 0.3249, 0.3363, 0.1659, 0.1450, 0.1948, 0.2570, 0.2491, 0.2206, 0.2782},
+      { 0.2459, 0.2758, 0.3452, 0.2778, 0.3654, 0.3094, 0.3422, 0.2696, 0.3071, 0.2680, 0.3249, 0.4277, 0.4545, 0.3752, 0.3489, 0.3898, 0.4133, 0.4431, 0.3646, 0.4089},
+      { 0.2213, 0.2783, 0.3502, 0.2617, 0.3628, 0.3202, 0.3628, 0.2769, 0.3476, 0.2695, 0.3363, 0.4545, 0.5204, 0.3859, 0.3619, 0.3983, 0.4444, 0.4792, 0.3647, 0.4235},
+      { 0.0990, 0.1253, 0.2032, 0.1454, 0.2416, 0.2611, 0.2981, 0.1534, 0.1893, 0.2903, 0.1659, 0.3752, 0.3859, 0.4325, 0.4094, 0.4064, 0.3868, 0.4244, 0.4001, 0.4435},
+      { 0.0771, 0.1165, 0.1817, 0.1197, 0.2105, 0.2422, 0.2738, 0.1255, 0.1693, 0.2994, 0.1450, 0.3489, 0.3619, 0.4094, 0.4096, 0.3969, 0.3743, 0.4076, 0.3928, 0.4166},
+      { 0.1210, 0.1442, 0.2293, 0.1652, 0.2510, 0.2568, 0.2943, 0.1708, 0.2172, 0.2583, 0.1948, 0.3898, 0.3983, 0.4064, 0.3969, 0.4041, 0.3941, 0.4295, 0.3808, 0.4049},
+      { 0.1504, 0.1674, 0.2401, 0.1603, 0.2787, 0.2926, 0.3279, 0.2217, 0.2422, 0.3005, 0.2570, 0.4133, 0.4444, 0.3868, 0.3743, 0.3941, 0.4690, 0.4559, 0.3889, 0.4483},
+      { 0.1545, 0.1829, 0.2669, 0.2016, 0.3022, 0.3046, 0.3413, 0.2172, 0.2560, 0.2710, 0.2491, 0.4431, 0.4792, 0.4244, 0.4076, 0.4295, 0.4559, 0.4881, 0.3933, 0.4532},
+      { 0.1477, 0.1584, 0.2313, 0.1762, 0.2728, 0.2756, 0.3175, 0.2125, 0.2395, 0.2262, 0.2206, 0.3646, 0.3647, 0.4001, 0.3928, 0.3808, 0.3889, 0.3933, 0.3588, 0.4103},
+      { 0.1863, 0.1767, 0.2695, 0.1798, 0.3071, 0.3377, 0.3597, 0.2630, 0.2741, 0.3031, 0.2782, 0.4089, 0.4235, 0.4435, 0.4166, 0.4049, 0.4483, 0.4532, 0.4103, 0.5889}},
+    {
+      { 0.0889, 0.0814, 0.3445, 0.2900, 0.2634, 0.1989, 0.1877, 0.2055, 0.1996, 0.0945, 0.1527, 0.2482, 0.2268, 0.1252, 0.1180, 0.1289, 0.1631, 0.1642, 0.1618, 0.1993},
+      { 0.0814, 0.1198, 0.3602, 0.2969, 0.2549, 0.1894, 0.1988, 0.1866, 0.2126, 0.0750, 0.1685, 0.2738, 0.2738, 0.1543, 0.1581, 0.1427, 0.1764, 0.1914, 0.1670, 0.1834},
+      { 0.3445, 0.3602, 0.2452, 0.1917, 0.2731, 0.2567, 0.2504, 0.2555, 0.2783, 0.1897, 0.2333, 0.3442, 0.3437, 0.2264, 0.2306, 0.2241, 0.2534, 0.2773, 0.2431, 0.2621},
+      { 0.2900, 0.2969, 0.1917, 0.1445, 0.2061, 0.1842, 0.1935, 0.2020, 0.2110, 0.1313, 0.1550, 0.2951, 0.2815, 0.1675, 0.1653, 0.1806, 0.1868, 0.2138, 0.1892, 0.2158},
+      { 0.2634, 0.2549, 0.2731, 0.2061, 0.3255, 0.3091, 0.3084, 0.2463, 0.2574, 0.2236, 0.2562, 0.3754, 0.3810, 0.2630, 0.2519, 0.2425, 0.2917, 0.3126, 0.2744, 0.3084},
+      { 0.1989, 0.1894, 0.2567, 0.1842, 0.3091, 0.2854, 0.2929, 0.2592, 0.2560, 0.2187, 0.2344, 0.3112, 0.3148, 0.2580, 0.2590, 0.2454, 0.2943, 0.3003, 0.2635, 0.3113},
+      { 0.1877, 0.1988, 0.2504, 0.1935, 0.3084, 0.2929, 0.3056, 0.2476, 0.2633, 0.2405, 0.2297, 0.3440, 0.3549, 0.3090, 0.3022, 0.2639, 0.3168, 0.3381, 0.3035, 0.3436},
+      { 0.2055, 0.1866, 0.2555, 0.2020, 0.2463, 0.2592, 0.2476, 0.2600, 0.2494, 0.2255, 0.2216, 0.2756, 0.2910, 0.1771, 0.1705, 0.1970, 0.2382, 0.2402, 0.2343, 0.2961},
+      { 0.1996, 0.2126, 0.2783, 0.2110, 0.2574, 0.2560, 0.2633, 0.2494, 0.2546, 0.2095, 0.2360, 0.3173, 0.3332, 0.2190, 0.2158, 0.2136, 0.2552, 0.2663, 0.2434, 0.2721},
+      { 0.0945, 0.0750, 0.1897, 0.1313, 0.2236, 0.2187, 0.2405, 0.2255, 0.2095, 0.1969, 0.1721, 0.2845, 0.2940, 0.2537, 0.2583, 0.3235, 0.3294, 0.2963, 0.2475, 0.3295},
+      { 0.1527, 0.1685, 0.2333, 0.1550, 0.2562, 0.2344, 0.2297, 0.2216, 0.2360, 0.1721, 0.2059, 0.3264, 0.3414, 0.1833, 0.1850, 0.1720, 0.2474, 0.2578, 0.2068, 0.2747},
+      { 0.2482, 0.2738, 0.3442, 0.2951, 0.3754, 0.3112, 0.3440, 0.2756, 0.3173, 0.2845, 0.3264, 0.4236, 0.4621, 0.3934, 0.3879, 0.3639, 0.4075, 0.4435, 0.3659, 0.3994},
+      { 0.2268, 0.2738, 0.3437, 0.2815, 0.3810, 0.3148, 0.3549, 0.2910, 0.3332, 0.2940, 0.3414, 0.4621, 0.4951, 0.4035, 0.3952, 0.3771, 0.4491, 0.4815, 0.3589, 0.4064},
+      { 0.1252, 0.1543, 0.2264, 0.1675, 0.2630, 0.2580, 0.3090, 0.1771, 0.2190, 0.2537, 0.1833, 0.3934, 0.4035, 0.4380, 0.4341, 0.3890, 0.4007, 0.4335, 0.3848, 0.4289},
+      { 0.1180, 0.1581, 0.2306, 0.1653, 0.2519, 0.2590, 0.3022, 0.1705, 0.2158, 0.2583, 0.1850, 0.3879, 0.3952, 0.4341, 0.4415, 0.4066, 0.4083, 0.4376, 0.3887, 0.4255},
+      { 0.1289, 0.1427, 0.2241, 0.1806, 0.2425, 0.2454, 0.2639, 0.1970, 0.2136, 0.3235, 0.1720, 0.3639, 0.3771, 0.3890, 0.4066, 0.3808, 0.3725, 0.4105, 0.3681, 0.3761},
+      { 0.1631, 0.1764, 0.2534, 0.1868, 0.2917, 0.2943, 0.3168, 0.2382, 0.2552, 0.3294, 0.2474, 0.4075, 0.4491, 0.4007, 0.4083, 0.3725, 0.4626, 0.4487, 0.3906, 0.4352},
+      { 0.1642, 0.1914, 0.2773, 0.2138, 0.3126, 0.3003, 0.3381, 0.2402, 0.2663, 0.2963, 0.2578, 0.4435, 0.4815, 0.4335, 0.4376, 0.4105, 0.4487, 0.4871, 0.3946, 0.4417},
+      { 0.1618, 0.1670, 0.2431, 0.1892, 0.2744, 0.2635, 0.3035, 0.2343, 0.2434, 0.2475, 0.2068, 0.3659, 0.3589, 0.3848, 0.3887, 0.3681, 0.3906, 0.3946, 0.3411, 0.3968},
+      { 0.1993, 0.1834, 0.2621, 0.2158, 0.3084, 0.3113, 0.3436, 0.2961, 0.2721, 0.3295, 0.2747, 0.3994, 0.4064, 0.4289, 0.4255, 0.3761, 0.4352, 0.4417, 0.3968, 0.5694}},
+    {
+      { 0.1383, 0.1009, 0.3648, 0.3224, 0.2903, 0.2327, 0.2048, 0.2417, 0.2114, 0.1562, 0.1832, 0.2956, 0.2548, 0.1461, 0.1426, 0.1655, 0.1540, 0.1972, 0.1830, 0.2197},
+      { 0.1009, 0.1512, 0.3841, 0.3100, 0.2766, 0.2256, 0.2168, 0.2140, 0.2347, 0.1399, 0.2010, 0.2993, 0.3012, 0.1844, 0.1864, 0.1860, 0.1490, 0.2162, 0.1961, 0.2000},
+      { 0.3648, 0.3841, 0.2934, 0.2080, 0.3135, 0.2884, 0.2847, 0.2889, 0.3021, 0.2308, 0.2604, 0.3744, 0.3828, 0.2620, 0.2598, 0.2743, 0.2442, 0.3162, 0.2653, 0.2868},
+      { 0.3224, 0.3100, 0.2080, 0.1610, 0.2243, 0.2102, 0.2010, 0.2274, 0.2210, 0.1723, 0.1840, 0.3034, 0.3250, 0.1815, 0.1779, 0.2078, 0.1505, 0.2416, 0.2122, 0.2366},
+      { 0.2903, 0.2766, 0.3135, 0.2243, 0.3772, 0.3484, 0.3397, 0.2830, 0.2948, 0.2821, 0.2822, 0.4117, 0.4330, 0.2984, 0.2912, 0.3099, 0.2806, 0.3674, 0.3000, 0.3525},
+      { 0.2327, 0.2256, 0.2884, 0.2102, 0.3484, 0.3190, 0.3260, 0.2947, 0.3096, 0.2701, 0.2678, 0.3578, 0.3650, 0.3070, 0.3062, 0.3037, 0.3120, 0.3564, 0.3072, 0.3714},
+      { 0.2048, 0.2168, 0.2847, 0.2010, 0.3397, 0.3260, 0.3463, 0.2768, 0.2993, 0.2766, 0.2620, 0.3788, 0.3981, 0.3509, 0.3449, 0.3192, 0.3168, 0.3847, 0.3393, 0.3848},
+      { 0.2417, 0.2140, 0.2889, 0.2274, 0.2830, 0.2947, 0.2768, 0.3065, 0.2840, 0.2668, 0.2609, 0.3215, 0.3445, 0.2281, 0.2133, 0.2323, 0.2335, 0.2775, 0.2625, 0.3230},
+      { 0.2114, 0.2347, 0.3021, 0.2210, 0.2948, 0.3096, 0.2993, 0.2840, 0.2984, 0.2979, 0.2663, 0.3487, 0.3832, 0.2635, 0.2583, 0.2683, 0.2244, 0.3202, 0.2937, 0.3239},
+      { 0.1562, 0.1399, 0.2308, 0.1723, 0.2821, 0.2701, 0.2766, 0.2668, 0.2979, 0.2407, 0.2014, 0.3139, 0.3245, 0.2982, 0.3005, 0.3294, 0.4164, 0.3368, 0.2924, 0.3795},
+      { 0.1832, 0.2010, 0.2604, 0.1840, 0.2822, 0.2678, 0.2620, 0.2609, 0.2663, 0.2014, 0.2367, 0.3636, 0.3868, 0.2426, 0.2455, 0.2383, 0.2627, 0.3145, 0.2500, 0.3167},
+      { 0.2956, 0.2993, 0.3744, 0.3034, 0.4117, 0.3578, 0.3788, 0.3215, 0.3487, 0.3139, 0.3636, 0.4650, 0.5273, 0.4224, 0.4244, 0.4202, 0.4163, 0.4776, 0.3955, 0.4528},
+      { 0.2548, 0.3012, 0.3828, 0.3250, 0.4330, 0.3650, 0.3981, 0.3445, 0.3832, 0.3245, 0.3868, 0.5273, 0.5451, 0.4530, 0.4359, 0.4340, 0.4834, 0.5259, 0.4047, 0.4485},
+      { 0.1461, 0.1844, 0.2620, 0.1815, 0.2984, 0.3070, 0.3509, 0.2281, 0.2635, 0.2982, 0.2426, 0.4224, 0.4530, 0.4526, 0.4541, 0.4266, 0.4026, 0.4661, 0.4161, 0.4606},
+      { 0.1426, 0.1864, 0.2598, 0.1779, 0.2912, 0.3062, 0.3449, 0.2133, 0.2583, 0.3005, 0.2455, 0.4244, 0.4359, 0.4541, 0.4625, 0.4375, 0.4050, 0.4653, 0.4227, 0.4659},
+      { 0.1655, 0.1860, 0.2743, 0.2078, 0.3099, 0.3037, 0.3192, 0.2323, 0.2683, 0.3294, 0.2383, 0.4202, 0.4340, 0.4266, 0.4375, 0.4280, 0.3765, 0.4573, 0.4063, 0.4235},
+      { 0.1540, 0.1490, 0.2442, 0.1505, 0.2806, 0.3120, 0.3168, 0.2335, 0.2244, 0.4164, 0.2627, 0.4163, 0.4834, 0.4026, 0.4050, 0.3765, 0.4116, 0.4423, 0.3986, 0.4553},
+      { 0.1972, 0.2162, 0.3162, 0.2416, 0.3674, 0.3564, 0.3847, 0.2775, 0.3202, 0.3368, 0.3145, 0.4776, 0.5259, 0.4661, 0.4653, 0.4573, 0.4423, 0.5269, 0.4284, 0.4902},
+      { 0.1830, 0.1961, 0.2653, 0.2122, 0.3000, 0.3072, 0.3393, 0.2625, 0.2937, 0.2924, 0.2500, 0.3955, 0.4047, 0.4161, 0.4227, 0.4063, 0.3986, 0.4284, 0.3720, 0.4329},
+      { 0.2197, 0.2000, 0.2868, 0.2366, 0.3525, 0.3714, 0.3848, 0.3230, 0.3239, 0.3795, 0.3167, 0.4528, 0.4485, 0.4606, 0.4659, 0.4235, 0.4553, 0.4902, 0.4329, 0.6394}},
+    {
+      { 0.1436, 0.1427, 0.3861, 0.3272, 0.2916, 0.2510, 0.2363, 0.2496, 0.2441, 0.1641, 0.2081, 0.2624, 0.2439, 0.1740, 0.1662, 0.1724, 0.2020, 0.1450, 0.1994, 0.2223},
+      { 0.1427, 0.1509, 0.3983, 0.3250, 0.2857, 0.2444, 0.2477, 0.2284, 0.2431, 0.1559, 0.2067, 0.2694, 0.2779, 0.2037, 0.1996, 0.1928, 0.2137, 0.1527, 0.2205, 0.2220},
+      { 0.3861, 0.3983, 0.2956, 0.2231, 0.3083, 0.3166, 0.3202, 0.3110, 0.3287, 0.2359, 0.2695, 0.3467, 0.3495, 0.2785, 0.2788, 0.2784, 0.3074, 0.2512, 0.2801, 0.3092},
+      { 0.3272, 0.3250, 0.2231, 0.1705, 0.2370, 0.2384, 0.2382, 0.2482, 0.2531, 0.1861, 0.1818, 0.2750, 0.2611, 0.2044, 0.2066, 0.2103, 0.2030, 0.1723, 0.2252, 0.2389},
+      { 0.2916, 0.2857, 0.3083, 0.2370, 0.3528, 0.3784, 0.3593, 0.2903, 0.2978, 0.2998, 0.2939, 0.3738, 0.3843, 0.3325, 0.3053, 0.3040, 0.3522, 0.2773, 0.3243, 0.3780},
+      { 0.2510, 0.2444, 0.3166, 0.2384, 0.3784, 0.3364, 0.3346, 0.3092, 0.3166, 0.2615, 0.2842, 0.3529, 0.3474, 0.3100, 0.3102, 0.3018, 0.3495, 0.3175, 0.3151, 0.3659},
+      { 0.2363, 0.2477, 0.3202, 0.2382, 0.3593, 0.3346, 0.3622, 0.3031, 0.3236, 0.2658, 0.2871, 0.3636, 0.3764, 0.3732, 0.3632, 0.3396, 0.3801, 0.3210, 0.3444, 0.3952},
+      { 0.2496, 0.2284, 0.3110, 0.2482, 0.2903, 0.3092, 0.3031, 0.3222, 0.3127, 0.2581, 0.2573, 0.2873, 0.3046, 0.2319, 0.2218, 0.2328, 0.2812, 0.2150, 0.2674, 0.3141},
+      { 0.2441, 0.2431, 0.3287, 0.2531, 0.2978, 0.3166, 0.3236, 0.3127, 0.2929, 0.2536, 0.2765, 0.3130, 0.3407, 0.2708, 0.2634, 0.2670, 0.3085, 0.2256, 0.2918, 0.3183},
+      { 0.1641, 0.1559, 0.2359, 0.1861, 0.2998, 0.2615, 0.2658, 0.2581, 0.2536, 0.2249, 0.2092, 0.3740, 0.3491, 0.2626, 0.2710, 0.2963, 0.3368, 0.3901, 0.2692, 0.3333},
+      { 0.2081, 0.2067, 0.2695, 0.1818, 0.2939, 0.2842, 0.2871, 0.2573, 0.2765, 0.2092, 0.2440, 0.3290, 0.3469, 0.2368, 0.2476, 0.2365, 0.2988, 0.2294, 0.2628, 0.3090},
+      { 0.2624, 0.2694, 0.3467, 0.2750, 0.3738, 0.3529, 0.3636, 0.2873, 0.3130, 0.3740, 0.3290, 0.4348, 0.4707, 0.4320, 0.4344, 0.4282, 0.4550, 0.4191, 0.4181, 0.4346},
+      { 0.2439, 0.2779, 0.3495, 0.2611, 0.3843, 0.3474, 0.3764, 0.3046, 0.3407, 0.3491, 0.3469, 0.4707, 0.5174, 0.4520, 0.4496, 0.4501, 0.4910, 0.4554, 0.4004, 0.4601},
+      { 0.1740, 0.2037, 0.2785, 0.2044, 0.3325, 0.3100, 0.3732, 0.2319, 0.2708, 0.2626, 0.2368, 0.4320, 0.4520, 0.5129, 0.5054, 0.4726, 0.4702, 0.4295, 0.4289, 0.4883},
+      { 0.1662, 0.1996, 0.2788, 0.2066, 0.3053, 0.3102, 0.3632, 0.2218, 0.2634, 0.2710, 0.2476, 0.4344, 0.4496, 0.5054, 0.5187, 0.4816, 0.4784, 0.4418, 0.4273, 0.4901},
+      { 0.1724, 0.1928, 0.2784, 0.2103, 0.3040, 0.3018, 0.3396, 0.2328, 0.2670, 0.2963, 0.2365, 0.4282, 0.4501, 0.4726, 0.4816, 0.4550, 0.4556, 0.4245, 0.4141, 0.4421},
+      { 0.2020, 0.2137, 0.3074, 0.2030, 0.3522, 0.3495, 0.3801, 0.2812, 0.3085, 0.3368, 0.2988, 0.4550, 0.4910, 0.4702, 0.4784, 0.4556, 0.5173, 0.4513, 0.4281, 0.5000},
+      { 0.1450, 0.1527, 0.2512, 0.1723, 0.2773, 0.3175, 0.3210, 0.2150, 0.2256, 0.3901, 0.2294, 0.4191, 0.4554, 0.4295, 0.4418, 0.4245, 0.4513, 0.4558, 0.4201, 0.4462},
+      { 0.1994, 0.2205, 0.2801, 0.2252, 0.3243, 0.3151, 0.3444, 0.2674, 0.2918, 0.2692, 0.2628, 0.4181, 0.4004, 0.4289, 0.4273, 0.4141, 0.4281, 0.4201, 0.3769, 0.4259},
+      { 0.2223, 0.2220, 0.3092, 0.2389, 0.3780, 0.3659, 0.3952, 0.3141, 0.3183, 0.3333, 0.3090, 0.4346, 0.4601, 0.4883, 0.4901, 0.4421, 0.5000, 0.4462, 0.4259, 0.6768}},
+    {
+      { 0.0526, 0.0540, 0.3290, 0.2759, 0.2328, 0.1625, 0.1614, 0.1797, 0.1942, 0.0708, 0.1303, 0.2421, 0.2272, 0.1269, 0.1360, 0.1674, 0.1696, 0.1841, 0.1275, 0.2062},
+      { 0.0540, 0.1049, 0.3474, 0.2894, 0.2208, 0.1461, 0.1597, 0.1566, 0.1995, 0.0304, 0.1327, 0.2583, 0.2647, 0.1492, 0.1738, 0.1840, 0.1734, 0.1892, 0.1227, 0.1529},
+      { 0.3290, 0.3474, 0.2415, 0.1794, 0.2601, 0.2185, 0.2266, 0.2395, 0.2613, 0.1435, 0.2178, 0.3441, 0.3485, 0.2311, 0.2520, 0.2726, 0.2565, 0.2866, 0.1973, 0.2400},
+      { 0.2759, 0.2894, 0.1794, 0.1194, 0.1752, 0.1537, 0.1578, 0.1780, 0.2039, 0.0778, 0.1330, 0.2875, 0.2608, 0.1742, 0.1929, 0.2209, 0.1844, 0.2119, 0.1591, 0.1783},
+      { 0.2328, 0.2208, 0.2601, 0.1752, 0.3099, 0.2704, 0.2728, 0.2370, 0.2323, 0.1912, 0.2320, 0.3692, 0.3534, 0.2489, 0.2663, 0.2808, 0.2807, 0.3401, 0.2266, 0.2975},
+      { 0.1625, 0.1461, 0.2185, 0.1537, 0.2704, 0.2860, 0.2639, 0.2324, 0.2102, 0.2872, 0.2113, 0.2863, 0.3055, 0.2568, 0.2578, 0.2482, 0.2926, 0.2933, 0.2766, 0.3330},
+      { 0.1614, 0.1597, 0.2266, 0.1578, 0.2728, 0.2639, 0.2750, 0.2301, 0.2280, 0.2517, 0.2063, 0.3092, 0.3353, 0.2835, 0.2925, 0.2846, 0.3077, 0.3168, 0.2557, 0.3121},
+      { 0.1797, 0.1566, 0.2395, 0.1780, 0.2370, 0.2324, 0.2301, 0.2464, 0.2201, 0.1874, 0.2061, 0.2727, 0.2925, 0.1946, 0.2017, 0.2367, 0.2648, 0.2613, 0.2277, 0.3024},
+      { 0.1942, 0.1995, 0.2613, 0.2039, 0.2323, 0.2102, 0.2280, 0.2201, 0.2426, 0.1336, 0.2046, 0.3043, 0.3277, 0.2235, 0.2435, 0.2634, 0.2516, 0.2753, 0.1945, 0.2416},
+      { 0.0708, 0.0304, 0.1435, 0.0778, 0.1912, 0.2872, 0.2517, 0.1874, 0.1336, 0.2945, 0.1897, 0.2482, 0.2517, 0.2513, 0.2262, 0.2475, 0.2924, 0.2692, 0.3566, 0.3843},
+      { 0.1303, 0.1327, 0.2178, 0.1330, 0.2320, 0.2113, 0.2063, 0.2061, 0.2046, 0.1897, 0.1714, 0.3147, 0.3301, 0.1831, 0.2077, 0.2138, 0.2543, 0.2688, 0.1644, 0.2392},
+      { 0.2421, 0.2583, 0.3441, 0.2875, 0.3692, 0.2863, 0.3092, 0.2727, 0.3043, 0.2482, 0.3147, 0.4094, 0.4417, 0.3592, 0.3745, 0.3807, 0.3926, 0.4333, 0.2953, 0.3363},
+      { 0.2272, 0.2647, 0.3485, 0.2608, 0.3534, 0.3055, 0.3353, 0.2925, 0.3277, 0.2517, 0.3301, 0.4417, 0.4905, 0.3628, 0.3758, 0.3877, 0.4419, 0.4835, 0.2912, 0.3695},
+      { 0.1269, 0.1492, 0.2311, 0.1742, 0.2489, 0.2568, 0.2835, 0.1946, 0.2235, 0.2513, 0.1831, 0.3592, 0.3628, 0.3740, 0.3819, 0.3661, 0.3635, 0.3875, 0.3354, 0.3755},
+      { 0.1360, 0.1738, 0.2520, 0.1929, 0.2663, 0.2578, 0.2925, 0.2017, 0.2435, 0.2262, 0.2077, 0.3745, 0.3758, 0.3819, 0.4029, 0.3827, 0.3746, 0.3990, 0.3258, 0.3816},
+      { 0.1674, 0.1840, 0.2726, 0.2209, 0.2808, 0.2482, 0.2846, 0.2367, 0.2634, 0.2475, 0.2138, 0.3807, 0.3877, 0.3661, 0.3827, 0.3815, 0.3597, 0.3997, 0.3089, 0.3462},
+      { 0.1696, 0.1734, 0.2565, 0.1844, 0.2807, 0.2926, 0.3077, 0.2648, 0.2516, 0.2924, 0.2543, 0.3926, 0.4419, 0.3635, 0.3746, 0.3597, 0.4263, 0.4224, 0.3203, 0.4008},
+      { 0.1841, 0.1892, 0.2866, 0.2119, 0.3401, 0.2933, 0.3168, 0.2613, 0.2753, 0.2692, 0.2688, 0.4333, 0.4835, 0.3875, 0.3990, 0.3997, 0.4224, 0.4653, 0.3191, 0.3965},
+      { 0.1275, 0.1227, 0.1973, 0.1591, 0.2266, 0.2766, 0.2557, 0.2277, 0.1945, 0.3566, 0.1644, 0.2953, 0.2912, 0.3354, 0.3258, 0.3089, 0.3203, 0.3191, 0.3766, 0.3622},
+      { 0.2062, 0.1529, 0.2400, 0.1783, 0.2975, 0.3330, 0.3121, 0.3024, 0.2416, 0.3843, 0.2392, 0.3363, 0.3695, 0.3755, 0.3816, 0.3462, 0.4008, 0.3965, 0.3622, 0.5168}},
+    {
+      { 0.1400, 0.1152, 0.3776, 0.3268, 0.3087, 0.2496, 0.2131, 0.2787, 0.2388, 0.2378, 0.1888, 0.2995, 0.2650, 0.1711, 0.1740, 0.2029, 0.2022, 0.2137, 0.2355, 0.1489},
+      { 0.1152, 0.1558, 0.3902, 0.3214, 0.2938, 0.2126, 0.2102, 0.2410, 0.2322, 0.1585, 0.2098, 0.2988, 0.2910, 0.1909, 0.2025, 0.1975, 0.2053, 0.2151, 0.1906, 0.1263},
+      { 0.3776, 0.3902, 0.2881, 0.2409, 0.3045, 0.2831, 0.2772, 0.3225, 0.3150, 0.2448, 0.2737, 0.3754, 0.3908, 0.2699, 0.2629, 0.2949, 0.2932, 0.3031, 0.2547, 0.2550},
+      { 0.3268, 0.3214, 0.2409, 0.1720, 0.2194, 0.2076, 0.1927, 0.2486, 0.2398, 0.1747, 0.1919, 0.3174, 0.2859, 0.2018, 0.2137, 0.2480, 0.2103, 0.2385, 0.2253, 0.1931},
+      { 0.3087, 0.2938, 0.3045, 0.2194, 0.3881, 0.3574, 0.3381, 0.3131, 0.2875, 0.2928, 0.2785, 0.3951, 0.4284, 0.2931, 0.2998, 0.3122, 0.3482, 0.3592, 0.3112, 0.3197},
+      { 0.2496, 0.2126, 0.2831, 0.2076, 0.3574, 0.3983, 0.3515, 0.3304, 0.2886, 0.3739, 0.2842, 0.3531, 0.3546, 0.3154, 0.3170, 0.3042, 0.3538, 0.3518, 0.3617, 0.3541},
+      { 0.2131, 0.2102, 0.2772, 0.1927, 0.3381, 0.3515, 0.3825, 0.3023, 0.2812, 0.3619, 0.2732, 0.3644, 0.3866, 0.3404, 0.3451, 0.3362, 0.3625, 0.3638, 0.3692, 0.2954},
+      { 0.2787, 0.2410, 0.3225, 0.2486, 0.3131, 0.3304, 0.3023, 0.3904, 0.3064, 0.3773, 0.2499, 0.3343, 0.3796, 0.2347, 0.2437, 0.2837, 0.3182, 0.3041, 0.2980, 0.2498},
+      { 0.2388, 0.2322, 0.3150, 0.2398, 0.2875, 0.2886, 0.2812, 0.3064, 0.2891, 0.2658, 0.2938, 0.3417, 0.3656, 0.2669, 0.2759, 0.2961, 0.2988, 0.2977, 0.2722, 0.2497},
+      { 0.2378, 0.1585, 0.2448, 0.1747, 0.2928, 0.3739, 0.3619, 0.3773, 0.2658, 0.3036, 0.2539, 0.3074, 0.3218, 0.3249, 0.3031, 0.3295, 0.3795, 0.3333, 0.3843, 0.4031},
+      { 0.1888, 0.2098, 0.2737, 0.1919, 0.2785, 0.2842, 0.2732, 0.2499, 0.2938, 0.2539, 0.2406, 0.3359, 0.4096, 0.2366, 0.2382, 0.2585, 0.2988, 0.3103, 0.2415, 0.2043},
+      { 0.2995, 0.2988, 0.3754, 0.3174, 0.3951, 0.3531, 0.3644, 0.3343, 0.3417, 0.3074, 0.3359, 0.4409, 0.4761, 0.3890, 0.4078, 0.4100, 0.4262, 0.4674, 0.3811, 0.3651},
+      { 0.2650, 0.2910, 0.3908, 0.2859, 0.4284, 0.3546, 0.3866, 0.3796, 0.3656, 0.3218, 0.4096, 0.4761, 0.5409, 0.4161, 0.4321, 0.4158, 0.4857, 0.5037, 0.3605, 0.4031},
+      { 0.1711, 0.1909, 0.2699, 0.2018, 0.2931, 0.3154, 0.3404, 0.2347, 0.2669, 0.3249, 0.2366, 0.3890, 0.4161, 0.4243, 0.4347, 0.4133, 0.4112, 0.4353, 0.4190, 0.3155},
+      { 0.1740, 0.2025, 0.2629, 0.2137, 0.2998, 0.3170, 0.3451, 0.2437, 0.2759, 0.3031, 0.2382, 0.4078, 0.4321, 0.4347, 0.4558, 0.4227, 0.4263, 0.4432, 0.4082, 0.3239},
+      { 0.2029, 0.1975, 0.2949, 0.2480, 0.3122, 0.3042, 0.3362, 0.2837, 0.2961, 0.3295, 0.2585, 0.4100, 0.4158, 0.4133, 0.4227, 0.4164, 0.3977, 0.4293, 0.3977, 0.3155},
+      { 0.2022, 0.2053, 0.2932, 0.2103, 0.3482, 0.3538, 0.3625, 0.3182, 0.2988, 0.3795, 0.2988, 0.4262, 0.4857, 0.4112, 0.4263, 0.3977, 0.4872, 0.4597, 0.4281, 0.3656},
+      { 0.2137, 0.2151, 0.3031, 0.2385, 0.3592, 0.3518, 0.3638, 0.3041, 0.2977, 0.3333, 0.3103, 0.4674, 0.5037, 0.4353, 0.4432, 0.4293, 0.4597, 0.4744, 0.3960, 0.4031},
+      { 0.2355, 0.1906, 0.2547, 0.2253, 0.3112, 0.3617, 0.3692, 0.2980, 0.2722, 0.3843, 0.2415, 0.3811, 0.3605, 0.4190, 0.4082, 0.3977, 0.4281, 0.3960, 0.4500, 0.3861},
+      { 0.1489, 0.1263, 0.2550, 0.1931, 0.3197, 0.3541, 0.2954, 0.2498, 0.2497, 0.4031, 0.2043, 0.3651, 0.4031, 0.3155, 0.3239, 0.3155, 0.3656, 0.4031, 0.3861, 0.5276}}},
+  {
+    {
+      { 0.0470, 0.0404, 0.3039, 0.2745, 0.2655, 0.1947, 0.2161, 0.1975, 0.1869, 0.1498, 0.2900, 0.2613, 0.2551, 0.2149, 0.2245, 0.2192, 0.2497, 0.2430, 0.1921, 0.2776},
+      { 0.0404, 0.0672, 0.3291, 0.2718, 0.2218, 0.1685, 0.1793, 0.1776, 0.1841, 0.1203, 0.1433, 0.2491, 0.2483, 0.1778, 0.1714, 0.1937, 0.1986, 0.2008, 0.1574, 0.1690},
+      { 0.3039, 0.3291, 0.2217, 0.1598, 0.2447, 0.1941, 0.2137, 0.2236, 0.2354, 0.1858, 0.1546, 0.3358, 0.3395, 0.2342, 0.2419, 0.2410, 0.2479, 0.2804, 0.1932, 0.2247},
+      { 0.2745, 0.2718, 0.1598, 0.1133, 0.1835, 0.1340, 0.1601, 0.1680, 0.1923, 0.1235, 0.0758, 0.2601, 0.2550, 0.1739, 0.1769, 0.1693, 0.1755, 0.1977, 0.1360, 0.1272},
+      { 0.2655, 0.2218, 0.2447, 0.1835, 0.2847, 0.2116, 0.2469, 0.2367, 0.2327, 0.1787, 0.2258, 0.3577, 0.3736, 0.2399, 0.2668, 0.2695, 0.2998, 0.3235, 0.1837, 0.3002},
+      { 0.1947, 0.1685, 0.1941, 0.1340, 0.2116, 0.1558, 0.1720, 0.1739, 0.1695, 0.1430, 0.1434, 0.2434, 0.2607, 0.1708, 0.1811, 0.1755, 0.1935, 0.2230, 0.1427, 0.1997},
+      { 0.2161, 0.1793, 0.2137, 0.1601, 0.2469, 0.1720, 0.2001, 0.2029, 0.2048, 0.1409, 0.1432, 0.2737, 0.2914, 0.2217, 0.2255, 0.2068, 0.2248, 0.2533, 0.1498, 0.2436},
+      { 0.1975, 0.1776, 0.2236, 0.1680, 0.2367, 0.1739, 0.2029, 0.2381, 0.2236, 0.1588, 0.1749, 0.2698, 0.2885, 0.1958, 0.1973, 0.1998, 0.2224, 0.2421, 0.1561, 0.2441},
+      { 0.1869, 0.1841, 0.2354, 0.1923, 0.2327, 0.1695, 0.2048, 0.2236, 0.2139, 0.1515, 0.1652, 0.2768, 0.2977, 0.2170, 0.2358, 0.2275, 0.2462, 0.2508, 0.1715, 0.1818},
+      { 0.1498, 0.1203, 0.1858, 0.1235, 0.1787, 0.1430, 0.1409, 0.1588, 0.1515, 0.1251, 0.1080, 0.2232, 0.2369, 0.1624, 0.1590, 0.1527, 0.1832, 0.2081, 0.1303, 0.1888},
+      { 0.2900, 0.1433, 0.1546, 0.0758, 0.2258, 0.1434, 0.1432, 0.1749, 0.1652, 0.1080, 0.1098, 0.2799, 0.2972, 0.1688, 0.1773, 0.1798, 0.2083, 0.2465, 0.1309, 0.2317},
+      { 0.2613, 0.2491, 0.3358, 0.2601, 0.3577, 0.2434, 0.2737, 0.2698, 0.2768, 0.2232, 0.2799, 0.3848, 0.4384, 0.3288, 0.3539, 0.3454, 0.3776, 0.3988, 0.2393, 0.3338},
+      { 0.2551, 0.2483, 0.3395, 0.2550, 0.3736, 0.2607, 0.2914, 0.2885, 0.2977, 0.2369, 0.2972, 0.4384, 0.4738, 0.3554, 0.3644, 0.3580, 0.3871, 0.4261, 0.2409, 0.3623},
+      { 0.2149, 0.1778, 0.2342, 0.1739, 0.2399, 0.1708, 0.2217, 0.1958, 0.2170, 0.1624, 0.1688, 0.3288, 0.3554, 0.2848, 0.2869, 0.2776, 0.2655, 0.3142, 0.1880, 0.2753},
+      { 0.2245, 0.1714, 0.2419, 0.1769, 0.2668, 0.1811, 0.2255, 0.1973, 0.2358, 0.1590, 0.1773, 0.3539, 0.3644, 0.2869, 0.3015, 0.3038, 0.3049, 0.3329, 0.1929, 0.2744},
+      { 0.2192, 0.1937, 0.2410, 0.1693, 0.2695, 0.1755, 0.2068, 0.1998, 0.2275, 0.1527, 0.1798, 0.3454, 0.3580, 0.2776, 0.3038, 0.2972, 0.3045, 0.3425, 0.1876, 0.2462},
+      { 0.2497, 0.1986, 0.2479, 0.1755, 0.2998, 0.1935, 0.2248, 0.2224, 0.2462, 0.1832, 0.2083, 0.3776, 0.3871, 0.2655, 0.3049, 0.3045, 0.3660, 0.3754, 0.2089, 0.3029},
+      { 0.2430, 0.2008, 0.2804, 0.1977, 0.3235, 0.2230, 0.2533, 0.2421, 0.2508, 0.2081, 0.2465, 0.3988, 0.4261, 0.3142, 0.3329, 0.3425, 0.3754, 0.4097, 0.2248, 0.3174},
+      { 0.1921, 0.1574, 0.1932, 0.1360, 0.1837, 0.1427, 0.1498, 0.1561, 0.1715, 0.1303, 0.1309, 0.2393, 0.2409, 0.1880, 0.1929, 0.1876, 0.2089, 0.2248, 0.1685, 0.2126},
+      { 0.2776, 0.1690, 0.2247, 0.1272, 0.3002, 0.1997, 0.2436, 0.2441, 0.1818, 0.1888, 0.2317, 0.3338, 0.3623, 0.2753, 0.2744, 0.2462, 0.3029, 0.3174, 0.2126, 0.5010}},
+    {
+      { 0.0906, 0.0624, 0.3277, 0.2841, 0.2442, 0.1838, 0.1852, 0.1991, 0.2207, 0.1351, 0.1433, 0.2374, 0.2314, 0.1706, 0.1796, 0.1696, 0.2016, 0.1804, 0.1636, 0.2442},
+      { 0.0624, 0.0868, 0.3183, 0.2662, 0.2346, 0.1950, 0.2003, 0.1783, 0.1988, 0.1322, 0.2797, 0.2631, 0.2592, 0.2329, 0.2221, 0.2292, 0.2328, 0.2143, 0.2113, 0.2473},
+      { 0.3277, 0.3183, 0.2025, 0.1477, 0.2336, 0.1834, 0.2061, 0.2273, 0.2355, 0.1682, 0.1509, 0.3162, 0.3271, 0.2310, 0.2451, 0.2455, 0.2252, 0.2686, 0.1905, 0.2083},
+      { 0.2841, 0.2662, 0.1477, 0.1130, 0.1692, 0.1412, 0.1576, 0.1749, 0.1851, 0.1143, 0.0811, 0.2593, 0.2525, 0.1785, 0.1810, 0.1805, 0.1662, 0.1994, 0.1410, 0.1137},
+      { 0.2442, 0.2346, 0.2336, 0.1692, 0.2759, 0.2078, 0.2355, 0.2349, 0.2265, 0.1790, 0.1921, 0.3442, 0.3584, 0.2525, 0.2461, 0.2579, 0.2820, 0.3138, 0.1844, 0.2837},
+      { 0.1838, 0.1950, 0.1834, 0.1412, 0.2078, 0.1554, 0.1603, 0.1817, 0.1798, 0.1400, 0.1267, 0.2295, 0.2334, 0.1658, 0.1689, 0.1678, 0.1903, 0.2089, 0.1456, 0.1945},
+      { 0.1852, 0.2003, 0.2061, 0.1576, 0.2355, 0.1603, 0.1899, 0.2090, 0.2081, 0.1435, 0.1342, 0.2573, 0.2586, 0.2110, 0.2144, 0.2040, 0.2208, 0.2337, 0.1488, 0.2078},
+      { 0.1991, 0.1783, 0.2273, 0.1749, 0.2349, 0.1817, 0.2090, 0.2264, 0.2173, 0.1593, 0.1426, 0.2551, 0.2933, 0.1919, 0.1987, 0.1929, 0.2203, 0.2326, 0.1582, 0.1955},
+      { 0.2207, 0.1988, 0.2355, 0.1851, 0.2265, 0.1798, 0.2081, 0.2173, 0.2154, 0.1432, 0.1912, 0.2693, 0.3025, 0.2169, 0.2363, 0.2399, 0.2363, 0.2534, 0.1901, 0.1957},
+      { 0.1351, 0.1322, 0.1682, 0.1143, 0.1790, 0.1400, 0.1435, 0.1593, 0.1432, 0.1386, 0.1130, 0.2225, 0.2359, 0.1590, 0.1608, 0.1685, 0.2010, 0.2067, 0.1327, 0.2098},
+      { 0.1433, 0.2797, 0.1509, 0.0811, 0.1921, 0.1267, 0.1342, 0.1426, 0.1912, 0.1130, 0.1233, 0.2711, 0.2794, 0.1709, 0.1832, 0.1822, 0.2333, 0.2575, 0.1354, 0.2119},
+      { 0.2374, 0.2631, 0.3162, 0.2593, 0.3442, 0.2295, 0.2573, 0.2551, 0.2693, 0.2225, 0.2711, 0.3758, 0.4098, 0.3087, 0.3363, 0.3416, 0.3714, 0.4010, 0.2325, 0.3423},
+      { 0.2314, 0.2592, 0.3271, 0.2525, 0.3584, 0.2334, 0.2586, 0.2933, 0.3025, 0.2359, 0.2794, 0.4098, 0.4439, 0.3294, 0.3309, 0.3439, 0.3931, 0.4194, 0.2299, 0.3208},
+      { 0.1706, 0.2329, 0.2310, 0.1785, 0.2525, 0.1658, 0.2110, 0.1919, 0.2169, 0.1590, 0.1709, 0.3087, 0.3294, 0.2820, 0.2801, 0.2705, 0.2696, 0.3038, 0.1866, 0.2761},
+      { 0.1796, 0.2221, 0.2451, 0.1810, 0.2461, 0.1689, 0.2144, 0.1987, 0.2363, 0.1608, 0.1832, 0.3363, 0.3309, 0.2801, 0.2941, 0.2955, 0.2985, 0.3212, 0.1873, 0.2499},
+      { 0.1696, 0.2292, 0.2455, 0.1805, 0.2579, 0.1678, 0.2040, 0.1929, 0.2399, 0.1685, 0.1822, 0.3416, 0.3439, 0.2705, 0.2955, 0.3061, 0.2929, 0.3339, 0.1910, 0.2498},
+      { 0.2016, 0.2328, 0.2252, 0.1662, 0.2820, 0.1903, 0.2208, 0.2203, 0.2363, 0.2010, 0.2333, 0.3714, 0.3931, 0.2696, 0.2985, 0.2929, 0.3411, 0.3704, 0.2059, 0.2806},
+      { 0.1804, 0.2143, 0.2686, 0.1994, 0.3138, 0.2089, 0.2337, 0.2326, 0.2534, 0.2067, 0.2575, 0.4010, 0.4194, 0.3038, 0.3212, 0.3339, 0.3704, 0.4221, 0.2195, 0.3253},
+      { 0.1636, 0.2113, 0.1905, 0.1410, 0.1844, 0.1456, 0.1488, 0.1582, 0.1901, 0.1327, 0.1354, 0.2325, 0.2299, 0.1866, 0.1873, 0.1910, 0.2059, 0.2195, 0.1913, 0.1879},
+      { 0.2442, 0.2473, 0.2083, 0.1137, 0.2837, 0.1945, 0.2078, 0.1955, 0.1957, 0.2098, 0.2119, 0.3423, 0.3208, 0.2761, 0.2499, 0.2498, 0.2806, 0.3253, 0.1879, 0.4659}},
+    {
+      { 0.1507, 0.1330, 0.3371, 0.3296, 0.2792, 0.2152, 0.2163, 0.2419, 0.2545, 0.1952, 0.1546, 0.2918, 0.2765, 0.2009, 0.2076, 0.2149, 0.2347, 0.2421, 0.2004, 0.2349},
+      { 0.1330, 0.1464, 0.3455, 0.3275, 0.2608, 0.2038, 0.2097, 0.2175, 0.2382, 0.1570, 0.1509, 0.2946, 0.3045, 0.2185, 0.2192, 0.2350, 0.2211, 0.2501, 0.2048, 0.2125},
+      { 0.3371, 0.3455, 0.2903, 0.2371, 0.3175, 0.3258, 0.3237, 0.3030, 0.3120, 0.2842, 0.4218, 0.3961, 0.4016, 0.3316, 0.3411, 0.3366, 0.3526, 0.3668, 0.3400, 0.3951},
+      { 0.3296, 0.3275, 0.2371, 0.2030, 0.2575, 0.2440, 0.2501, 0.2622, 0.2651, 0.2147, 0.2269, 0.3413, 0.3314, 0.2673, 0.2731, 0.2607, 0.2570, 0.2873, 0.2442, 0.2523},
+      { 0.2792, 0.2608, 0.3175, 0.2575, 0.3448, 0.2741, 0.3041, 0.2920, 0.2780, 0.2479, 0.2884, 0.3883, 0.4150, 0.3234, 0.3114, 0.3192, 0.3406, 0.3565, 0.2494, 0.3284},
+      { 0.2152, 0.2038, 0.3258, 0.2440, 0.2741, 0.2272, 0.2316, 0.2509, 0.2507, 0.2164, 0.2039, 0.2970, 0.2992, 0.2429, 0.2517, 0.2521, 0.2650, 0.2880, 0.2184, 0.2841},
+      { 0.2163, 0.2097, 0.3237, 0.2501, 0.3041, 0.2316, 0.2492, 0.2602, 0.2648, 0.2151, 0.2125, 0.3227, 0.3281, 0.2751, 0.2894, 0.2737, 0.2818, 0.3065, 0.2267, 0.2983},
+      { 0.2419, 0.2175, 0.3030, 0.2622, 0.2920, 0.2509, 0.2602, 0.2970, 0.2757, 0.2380, 0.2306, 0.3125, 0.3490, 0.2656, 0.2715, 0.2571, 0.3001, 0.3133, 0.2287, 0.2894},
+      { 0.2545, 0.2382, 0.3120, 0.2651, 0.2780, 0.2507, 0.2648, 0.2757, 0.2784, 0.2319, 0.2532, 0.3327, 0.3748, 0.2771, 0.2942, 0.2920, 0.2884, 0.3245, 0.2448, 0.2524},
+      { 0.1952, 0.1570, 0.2842, 0.2147, 0.2479, 0.2164, 0.2151, 0.2380, 0.2319, 0.2164, 0.2130, 0.2815, 0.3064, 0.2335, 0.2346, 0.2333, 0.2604, 0.2695, 0.2178, 0.2737},
+      { 0.1546, 0.1509, 0.4218, 0.2269, 0.2884, 0.2039, 0.2125, 0.2306, 0.2532, 0.2130, 0.2131, 0.3543, 0.3866, 0.2516, 0.2592, 0.2704, 0.3055, 0.3196, 0.2184, 0.3075},
+      { 0.2918, 0.2946, 0.3961, 0.3413, 0.3883, 0.2970, 0.3227, 0.3125, 0.3327, 0.2815, 0.3543, 0.4303, 0.4840, 0.3631, 0.3847, 0.3956, 0.4074, 0.4455, 0.3034, 0.3876},
+      { 0.2765, 0.3045, 0.4016, 0.3314, 0.4150, 0.2992, 0.3281, 0.3490, 0.3748, 0.3064, 0.3866, 0.4840, 0.5041, 0.3841, 0.3821, 0.3996, 0.4271, 0.4839, 0.3152, 0.4079},
+      { 0.2009, 0.2185, 0.3316, 0.2673, 0.3234, 0.2429, 0.2751, 0.2656, 0.2771, 0.2335, 0.2516, 0.3631, 0.3841, 0.3263, 0.3428, 0.3339, 0.3289, 0.3606, 0.2646, 0.3388},
+      { 0.2076, 0.2192, 0.3411, 0.2731, 0.3114, 0.2517, 0.2894, 0.2715, 0.2942, 0.2346, 0.2592, 0.3847, 0.3821, 0.3428, 0.3673, 0.3611, 0.3367, 0.3830, 0.2725, 0.3289},
+      { 0.2149, 0.2350, 0.3366, 0.2607, 0.3192, 0.2521, 0.2737, 0.2571, 0.2920, 0.2333, 0.2704, 0.3956, 0.3996, 0.3339, 0.3611, 0.3572, 0.3495, 0.3913, 0.2705, 0.3208},
+      { 0.2347, 0.2211, 0.3526, 0.2570, 0.3406, 0.2650, 0.2818, 0.3001, 0.2884, 0.2604, 0.3055, 0.4074, 0.4271, 0.3289, 0.3367, 0.3495, 0.3860, 0.4245, 0.2719, 0.3523},
+      { 0.2421, 0.2501, 0.3668, 0.2873, 0.3565, 0.2880, 0.3065, 0.3133, 0.3245, 0.2695, 0.3196, 0.4455, 0.4839, 0.3606, 0.3830, 0.3913, 0.4245, 0.4501, 0.2871, 0.3964},
+      { 0.2004, 0.2048, 0.3400, 0.2442, 0.2494, 0.2184, 0.2267, 0.2287, 0.2448, 0.2178, 0.2184, 0.3034, 0.3152, 0.2646, 0.2725, 0.2705, 0.2719, 0.2871, 0.2522, 0.2751},
+      { 0.2349, 0.2125, 0.3951, 0.2523, 0.3284, 0.2841, 0.2983, 0.2894, 0.2524, 0.2737, 0.3075, 0.3876, 0.4079, 0.3388, 0.3289, 0.3208, 0.3523, 0.3964, 0.2751, 0.4708}},
+    {
+      { 0.0770, 0.0731, 0.3095, 0.2545, 0.2141, 0.1412, 0.1379, 0.1718, 0.2034, 0.1091, 0.0758, 0.2084, 0.1996, 0.1221, 0.1330, 0.1334, 0.1419, 0.1521, 0.1300, 0.1377},
+      { 0.0731, 0.0989, 0.3227, 0.2690, 0.1970, 0.1308, 0.1414, 0.1590, 0.1903, 0.0864, 0.0811, 0.2214, 0.2227, 0.1466, 0.1510, 0.1640, 0.1500, 0.1709, 0.1492, 0.1364},
+      { 0.3095, 0.3227, 0.2312, 0.1918, 0.2543, 0.2118, 0.2281, 0.2321, 0.2564, 0.2038, 0.2269, 0.3173, 0.3175, 0.2480, 0.2707, 0.2612, 0.2583, 0.2886, 0.2209, 0.2565},
+      { 0.2545, 0.2690, 0.1918, 0.1415, 0.2001, 0.1969, 0.2060, 0.2026, 0.2093, 0.1726, 0.2402, 0.2769, 0.2636, 0.2299, 0.2294, 0.2037, 0.2211, 0.2246, 0.2119, 0.2205},
+      { 0.2141, 0.1970, 0.2543, 0.2001, 0.2725, 0.1831, 0.2141, 0.2121, 0.2108, 0.1745, 0.1847, 0.3245, 0.3229, 0.2402, 0.2387, 0.2356, 0.2457, 0.2773, 0.1694, 0.2238},
+      { 0.1412, 0.1308, 0.2118, 0.1969, 0.1831, 0.1443, 0.1462, 0.1629, 0.1740, 0.1241, 0.1136, 0.2105, 0.2189, 0.1633, 0.1656, 0.1611, 0.1738, 0.1974, 0.1302, 0.1762},
+      { 0.1379, 0.1414, 0.2281, 0.2060, 0.2141, 0.1462, 0.1716, 0.1907, 0.1902, 0.1376, 0.1321, 0.2438, 0.2545, 0.2028, 0.2103, 0.1940, 0.1922, 0.2243, 0.1463, 0.2000},
+      { 0.1718, 0.1590, 0.2321, 0.2026, 0.2121, 0.1629, 0.1907, 0.2170, 0.2131, 0.1680, 0.1289, 0.2410, 0.2701, 0.1897, 0.1994, 0.1782, 0.2067, 0.2269, 0.1550, 0.1805},
+      { 0.2034, 0.1903, 0.2564, 0.2093, 0.2108, 0.1740, 0.1902, 0.2131, 0.2186, 0.1578, 0.1700, 0.2591, 0.2905, 0.2061, 0.2217, 0.2284, 0.2205, 0.2329, 0.1799, 0.1857},
+      { 0.1091, 0.0864, 0.2038, 0.1726, 0.1745, 0.1241, 0.1376, 0.1680, 0.1578, 0.1231, 0.1055, 0.1955, 0.1990, 0.1483, 0.1470, 0.1550, 0.1840, 0.1818, 0.1330, 0.1919},
+      { 0.0758, 0.0811, 0.2269, 0.2402, 0.1847, 0.1136, 0.1321, 0.1289, 0.1700, 0.1055, 0.1180, 0.2598, 0.2846, 0.1710, 0.1763, 0.1945, 0.2220, 0.2388, 0.1398, 0.2288},
+      { 0.2084, 0.2214, 0.3173, 0.2769, 0.3245, 0.2105, 0.2438, 0.2410, 0.2591, 0.1955, 0.2598, 0.3464, 0.4075, 0.3004, 0.3091, 0.3220, 0.3480, 0.3730, 0.2225, 0.3012},
+      { 0.1996, 0.2227, 0.3175, 0.2636, 0.3229, 0.2189, 0.2545, 0.2701, 0.2905, 0.1990, 0.2846, 0.4075, 0.4697, 0.3076, 0.3358, 0.3302, 0.3602, 0.4137, 0.2266, 0.2877},
+      { 0.1221, 0.1466, 0.2480, 0.2299, 0.2402, 0.1633, 0.2028, 0.1897, 0.2061, 0.1483, 0.1710, 0.3004, 0.3076, 0.2640, 0.2670, 0.2646, 0.2446, 0.2992, 0.1825, 0.2742},
+      { 0.1330, 0.1510, 0.2707, 0.2294, 0.2387, 0.1656, 0.2103, 0.1994, 0.2217, 0.1470, 0.1763, 0.3091, 0.3358, 0.2670, 0.2981, 0.2861, 0.2647, 0.3041, 0.1909, 0.2567},
+      { 0.1334, 0.1640, 0.2612, 0.2037, 0.2356, 0.1611, 0.1940, 0.1782, 0.2284, 0.1550, 0.1945, 0.3220, 0.3302, 0.2646, 0.2861, 0.2859, 0.2699, 0.3153, 0.1889, 0.2470},
+      { 0.1419, 0.1500, 0.2583, 0.2211, 0.2457, 0.1738, 0.1922, 0.2067, 0.2205, 0.1840, 0.2220, 0.3480, 0.3602, 0.2446, 0.2647, 0.2699, 0.2903, 0.3490, 0.1846, 0.2601},
+      { 0.1521, 0.1709, 0.2886, 0.2246, 0.2773, 0.1974, 0.2243, 0.2269, 0.2329, 0.1818, 0.2388, 0.3730, 0.4137, 0.2992, 0.3041, 0.3153, 0.3490, 0.3785, 0.2008, 0.3044},
+      { 0.1300, 0.1492, 0.2209, 0.2119, 0.1694, 0.1302, 0.1463, 0.1550, 0.1799, 0.1330, 0.1398, 0.2225, 0.2266, 0.1825, 0.1909, 0.1889, 0.1846, 0.2008, 0.1921, 0.1759},
+      { 0.1377, 0.1364, 0.2565, 0.2205, 0.2238, 0.1762, 0.2000, 0.1805, 0.1857, 0.1919, 0.2288, 0.3012, 0.2877, 0.2742, 0.2567, 0.2470, 0.2601, 0.3044, 0.1759, 0.4174}},
+    {
+      { 0.1312, 0.1192, 0.3849, 0.3370, 0.1674, 0.2302, 0.2369, 0.2407, 0.2464, 0.2007, 0.2258, 0.2697, 0.2864, 0.2031, 0.2151, 0.2191, 0.2550, 0.2392, 0.2027, 0.2481},
+      { 0.1192, 0.1303, 0.3753, 0.3153, 0.1618, 0.2218, 0.2276, 0.2160, 0.2344, 0.1715, 0.1921, 0.2856, 0.3132, 0.2306, 0.2332, 0.2243, 0.2205, 0.2480, 0.2050, 0.2561},
+      { 0.3849, 0.3753, 0.2770, 0.2165, 0.2290, 0.2813, 0.3043, 0.2938, 0.3017, 0.2783, 0.2884, 0.3798, 0.4039, 0.3033, 0.3085, 0.3134, 0.3064, 0.3447, 0.2775, 0.3159},
+      { 0.3370, 0.3153, 0.2165, 0.1711, 0.1418, 0.2147, 0.2374, 0.2481, 0.2457, 0.1972, 0.1847, 0.3248, 0.3399, 0.2383, 0.2472, 0.2407, 0.2426, 0.2711, 0.2110, 0.2369},
+      { 0.1674, 0.1618, 0.2290, 0.1418, 0.3324, 0.2749, 0.3161, 0.2637, 0.2244, 0.2497, 0.4301, 0.3716, 0.4317, 0.3376, 0.3539, 0.3224, 0.4030, 0.3936, 0.3136, 0.4426},
+      { 0.2302, 0.2218, 0.2813, 0.2147, 0.2749, 0.2604, 0.2649, 0.2876, 0.2754, 0.2410, 0.2554, 0.3128, 0.3389, 0.2783, 0.2776, 0.2769, 0.3039, 0.3063, 0.2485, 0.3145},
+      { 0.2369, 0.2276, 0.3043, 0.2374, 0.3161, 0.2649, 0.2743, 0.3072, 0.3124, 0.2277, 0.2541, 0.3275, 0.3476, 0.2989, 0.3127, 0.2944, 0.2982, 0.3156, 0.2623, 0.3137},
+      { 0.2407, 0.2160, 0.2938, 0.2481, 0.2637, 0.2876, 0.3072, 0.3092, 0.2975, 0.2592, 0.3150, 0.3286, 0.3521, 0.2956, 0.2913, 0.2869, 0.3247, 0.3223, 0.2783, 0.3557},
+      { 0.2464, 0.2344, 0.3017, 0.2457, 0.2244, 0.2754, 0.3124, 0.2975, 0.3023, 0.2492, 0.3011, 0.3266, 0.3686, 0.2913, 0.3083, 0.3085, 0.3220, 0.3372, 0.2699, 0.3115},
+      { 0.2007, 0.1715, 0.2783, 0.1972, 0.2497, 0.2410, 0.2277, 0.2592, 0.2492, 0.2275, 0.2110, 0.3000, 0.3307, 0.2509, 0.2823, 0.2562, 0.2822, 0.2939, 0.2320, 0.2785},
+      { 0.2258, 0.1921, 0.2884, 0.1847, 0.4301, 0.2554, 0.2541, 0.3150, 0.3011, 0.2110, 0.2531, 0.4245, 0.4472, 0.2725, 0.2872, 0.3006, 0.3385, 0.3810, 0.2475, 0.3408},
+      { 0.2697, 0.2856, 0.3798, 0.3248, 0.3716, 0.3128, 0.3275, 0.3286, 0.3266, 0.3000, 0.4245, 0.4273, 0.4562, 0.3800, 0.4052, 0.4032, 0.4163, 0.4331, 0.3230, 0.4149},
+      { 0.2864, 0.3132, 0.4039, 0.3399, 0.4317, 0.3389, 0.3476, 0.3521, 0.3686, 0.3307, 0.4472, 0.4562, 0.5357, 0.4116, 0.4407, 0.4087, 0.4594, 0.4555, 0.3303, 0.4215},
+      { 0.2031, 0.2306, 0.3033, 0.2383, 0.3376, 0.2783, 0.2989, 0.2956, 0.2913, 0.2509, 0.2725, 0.3800, 0.4116, 0.3481, 0.3564, 0.3566, 0.3588, 0.3837, 0.2914, 0.3741},
+      { 0.2151, 0.2332, 0.3085, 0.2472, 0.3539, 0.2776, 0.3127, 0.2913, 0.3083, 0.2823, 0.2872, 0.4052, 0.4407, 0.3564, 0.3736, 0.3859, 0.3587, 0.3933, 0.3096, 0.3744},
+      { 0.2191, 0.2243, 0.3134, 0.2407, 0.3224, 0.2769, 0.2944, 0.2869, 0.3085, 0.2562, 0.3006, 0.4032, 0.4087, 0.3566, 0.3859, 0.3798, 0.3774, 0.4008, 0.2961, 0.3686},
+      { 0.2550, 0.2205, 0.3064, 0.2426, 0.4030, 0.3039, 0.2982, 0.3247, 0.3220, 0.2822, 0.3385, 0.4163, 0.4594, 0.3588, 0.3587, 0.3774, 0.4301, 0.4254, 0.3438, 0.3895},
+      { 0.2392, 0.2480, 0.3447, 0.2711, 0.3936, 0.3063, 0.3156, 0.3223, 0.3372, 0.2939, 0.3810, 0.4331, 0.4555, 0.3837, 0.3933, 0.4008, 0.4254, 0.4412, 0.3265, 0.4422},
+      { 0.2027, 0.2050, 0.2775, 0.2110, 0.3136, 0.2485, 0.2623, 0.2783, 0.2699, 0.2320, 0.2475, 0.3230, 0.3303, 0.2914, 0.3096, 0.2961, 0.3438, 0.3265, 0.2704, 0.3177},
+      { 0.2481, 0.2561, 0.3159, 0.2369, 0.4426, 0.3145, 0.3137, 0.3557, 0.3115, 0.2785, 0.3408, 0.4149, 0.4215, 0.3741, 0.3744, 0.3686, 0.3895, 0.4422, 0.3177, 0.5122}},
+    {
+      { 0.0714, 0.0705, 0.3385, 0.2885, 0.2577, 0.1231, 0.1547, 0.2004, 0.2046, 0.1443, 0.1434, 0.2613, 0.2656, 0.1550, 0.1651, 0.1678, 0.1824, 0.1957, 0.1334, 0.1654},
+      { 0.0705, 0.0866, 0.3435, 0.2927, 0.2346, 0.1132, 0.1450, 0.1776, 0.1979, 0.1221, 0.1267, 0.2562, 0.2746, 0.1736, 0.1828, 0.1834, 0.1752, 0.2043, 0.1416, 0.1396},
+      { 0.3385, 0.3435, 0.2382, 0.1709, 0.2708, 0.1831, 0.2257, 0.2528, 0.2615, 0.2153, 0.2039, 0.3510, 0.3649, 0.2564, 0.2680, 0.2683, 0.2724, 0.3131, 0.2111, 0.2609},
+      { 0.2885, 0.2927, 0.1709, 0.1245, 0.1936, 0.1069, 0.1591, 0.1914, 0.2063, 0.1318, 0.1136, 0.2840, 0.2756, 0.1954, 0.1938, 0.1922, 0.1754, 0.2229, 0.1470, 0.1586},
+      { 0.2577, 0.2346, 0.2708, 0.1936, 0.3147, 0.2459, 0.2704, 0.2688, 0.2543, 0.2362, 0.2554, 0.3810, 0.3838, 0.2882, 0.3026, 0.2939, 0.3116, 0.3374, 0.2367, 0.3066},
+      { 0.1231, 0.1132, 0.1831, 0.1069, 0.2459, 0.2132, 0.2186, 0.1932, 0.1870, 0.2096, 0.3341, 0.2858, 0.3316, 0.2309, 0.2443, 0.2164, 0.2435, 0.2711, 0.2390, 0.3130},
+      { 0.1547, 0.1450, 0.2257, 0.1591, 0.2704, 0.2186, 0.2435, 0.2320, 0.2371, 0.2115, 0.2775, 0.3099, 0.3231, 0.2767, 0.2755, 0.2583, 0.2881, 0.2973, 0.2388, 0.3081},
+      { 0.2004, 0.1776, 0.2528, 0.1914, 0.2688, 0.1932, 0.2320, 0.2530, 0.2384, 0.2155, 0.2235, 0.3095, 0.3492, 0.2297, 0.2403, 0.2278, 0.2756, 0.2854, 0.2102, 0.2648},
+      { 0.2046, 0.1979, 0.2615, 0.2063, 0.2543, 0.1870, 0.2371, 0.2384, 0.2490, 0.1962, 0.2008, 0.3160, 0.3413, 0.2448, 0.2586, 0.2648, 0.2554, 0.2852, 0.1993, 0.2475},
+      { 0.1443, 0.1221, 0.2153, 0.1318, 0.2362, 0.2096, 0.2115, 0.2155, 0.1962, 0.2026, 0.2218, 0.2888, 0.3055, 0.2351, 0.2390, 0.2344, 0.2678, 0.2842, 0.2113, 0.2842},
+      { 0.1434, 0.1267, 0.2039, 0.1136, 0.2554, 0.3341, 0.2775, 0.2235, 0.2008, 0.2218, 0.2072, 0.3319, 0.3568, 0.2712, 0.2612, 0.2433, 0.2871, 0.3117, 0.2709, 0.3750},
+      { 0.2613, 0.2562, 0.3510, 0.2840, 0.3810, 0.2858, 0.3099, 0.3095, 0.3160, 0.2888, 0.3319, 0.4229, 0.4660, 0.3616, 0.3866, 0.3765, 0.4060, 0.4383, 0.3032, 0.3860},
+      { 0.2656, 0.2746, 0.3649, 0.2756, 0.3838, 0.3316, 0.3231, 0.3492, 0.3413, 0.3055, 0.3568, 0.4660, 0.5271, 0.3785, 0.3854, 0.3836, 0.4429, 0.4650, 0.2953, 0.4117},
+      { 0.1550, 0.1736, 0.2564, 0.1954, 0.2882, 0.2309, 0.2767, 0.2297, 0.2448, 0.2351, 0.2712, 0.3616, 0.3785, 0.3483, 0.3546, 0.3358, 0.3422, 0.3687, 0.2883, 0.3569},
+      { 0.1651, 0.1828, 0.2680, 0.1938, 0.3026, 0.2443, 0.2755, 0.2403, 0.2586, 0.2390, 0.2612, 0.3866, 0.3854, 0.3546, 0.3706, 0.3607, 0.3655, 0.3841, 0.2853, 0.3449},
+      { 0.1678, 0.1834, 0.2683, 0.1922, 0.2939, 0.2164, 0.2583, 0.2278, 0.2648, 0.2344, 0.2433, 0.3765, 0.3836, 0.3358, 0.3607, 0.3573, 0.3575, 0.3840, 0.2699, 0.3078},
+      { 0.1824, 0.1752, 0.2724, 0.1754, 0.3116, 0.2435, 0.2881, 0.2756, 0.2554, 0.2678, 0.2871, 0.4060, 0.4429, 0.3422, 0.3655, 0.3575, 0.4156, 0.4086, 0.2892, 0.3801},
+      { 0.1957, 0.2043, 0.3131, 0.2229, 0.3374, 0.2711, 0.2973, 0.2854, 0.2852, 0.2842, 0.3117, 0.4383, 0.4650, 0.3687, 0.3841, 0.3840, 0.4086, 0.4408, 0.3009, 0.4092},
+      { 0.1334, 0.1416, 0.2111, 0.1470, 0.2367, 0.2390, 0.2388, 0.2102, 0.1993, 0.2113, 0.2709, 0.3032, 0.2953, 0.2883, 0.2853, 0.2699, 0.2892, 0.3009, 0.2657, 0.3111},
+      { 0.1654, 0.1396, 0.2609, 0.1586, 0.3066, 0.3130, 0.3081, 0.2648, 0.2475, 0.2842, 0.3750, 0.3860, 0.4117, 0.3569, 0.3449, 0.3078, 0.3801, 0.4092, 0.3111, 0.5322}},
+    {
+      { 0.0789, 0.0681, 0.3413, 0.2953, 0.2623, 0.1576, 0.1082, 0.2147, 0.1978, 0.1502, 0.1432, 0.2649, 0.2738, 0.1517, 0.1598, 0.1727, 0.1822, 0.1985, 0.1439, 0.1829},
+      { 0.0681, 0.0745, 0.3468, 0.2949, 0.2381, 0.1449, 0.1155, 0.1845, 0.1945, 0.1333, 0.1342, 0.2629, 0.2721, 0.1728, 0.1777, 0.1832, 0.1747, 0.2109, 0.1473, 0.1561},
+      { 0.3413, 0.3468, 0.2285, 0.1643, 0.2695, 0.2115, 0.2035, 0.2530, 0.2572, 0.2207, 0.2125, 0.3595, 0.3649, 0.2568, 0.2686, 0.2696, 0.2618, 0.3116, 0.2200, 0.2555},
+      { 0.2953, 0.2949, 0.1643, 0.1173, 0.1913, 0.1476, 0.1344, 0.1969, 0.2064, 0.1441, 0.1321, 0.2910, 0.2747, 0.1962, 0.1963, 0.1885, 0.1836, 0.2345, 0.1580, 0.1695},
+      { 0.2623, 0.2381, 0.2695, 0.1913, 0.3046, 0.2517, 0.2482, 0.2577, 0.2448, 0.2254, 0.2541, 0.3875, 0.3862, 0.2839, 0.2960, 0.2921, 0.3106, 0.3379, 0.2407, 0.3257},
+      { 0.1576, 0.1449, 0.2115, 0.1476, 0.2517, 0.2173, 0.2151, 0.2226, 0.2051, 0.2055, 0.2775, 0.2879, 0.3138, 0.2441, 0.2525, 0.2372, 0.2645, 0.2816, 0.2240, 0.2895},
+      { 0.1082, 0.1155, 0.2035, 0.1344, 0.2482, 0.2151, 0.2205, 0.1983, 0.2052, 0.1637, 0.3296, 0.2820, 0.2757, 0.2793, 0.2785, 0.2481, 0.2735, 0.2836, 0.2448, 0.3207},
+      { 0.2147, 0.1845, 0.2530, 0.1969, 0.2577, 0.2226, 0.1983, 0.2670, 0.2444, 0.2197, 0.2359, 0.3080, 0.3407, 0.2422, 0.2446, 0.2342, 0.2753, 0.2950, 0.2202, 0.2625},
+      { 0.1978, 0.1945, 0.2572, 0.2064, 0.2448, 0.2051, 0.2052, 0.2444, 0.2457, 0.1990, 0.2140, 0.3148, 0.3448, 0.2397, 0.2588, 0.2659, 0.2686, 0.2885, 0.2053, 0.2525},
+      { 0.1502, 0.1333, 0.2207, 0.1441, 0.2254, 0.2055, 0.1637, 0.2197, 0.1990, 0.2138, 0.1983, 0.2885, 0.2967, 0.2302, 0.2342, 0.2297, 0.2620, 0.2871, 0.2063, 0.2732},
+      { 0.1432, 0.1342, 0.2125, 0.1321, 0.2541, 0.2775, 0.3296, 0.2359, 0.2140, 0.1983, 0.2112, 0.3401, 0.3570, 0.2920, 0.2973, 0.2745, 0.3231, 0.3230, 0.2530, 0.3503},
+      { 0.2649, 0.2629, 0.3595, 0.2910, 0.3875, 0.2879, 0.2820, 0.3080, 0.3148, 0.2885, 0.3401, 0.4311, 0.4506, 0.3582, 0.3854, 0.3845, 0.4170, 0.4401, 0.2990, 0.3897},
+      { 0.2738, 0.2721, 0.3649, 0.2747, 0.3862, 0.3138, 0.2757, 0.3407, 0.3448, 0.2967, 0.3570, 0.4506, 0.4794, 0.3800, 0.3827, 0.3978, 0.4344, 0.4849, 0.3070, 0.3991},
+      { 0.1517, 0.1728, 0.2568, 0.1962, 0.2839, 0.2441, 0.2793, 0.2422, 0.2397, 0.2302, 0.2920, 0.3582, 0.3800, 0.3634, 0.3657, 0.3473, 0.3460, 0.3692, 0.2916, 0.3686},
+      { 0.1598, 0.1777, 0.2686, 0.1963, 0.2960, 0.2525, 0.2785, 0.2446, 0.2588, 0.2342, 0.2973, 0.3854, 0.3827, 0.3657, 0.3871, 0.3691, 0.3770, 0.3928, 0.3023, 0.3622},
+      { 0.1727, 0.1832, 0.2696, 0.1885, 0.2921, 0.2372, 0.2481, 0.2342, 0.2659, 0.2297, 0.2745, 0.3845, 0.3978, 0.3473, 0.3691, 0.3679, 0.3695, 0.3968, 0.2853, 0.3297},
+      { 0.1822, 0.1747, 0.2618, 0.1836, 0.3106, 0.2645, 0.2735, 0.2753, 0.2686, 0.2620, 0.3231, 0.4170, 0.4344, 0.3460, 0.3770, 0.3695, 0.4277, 0.4224, 0.2926, 0.3749},
+      { 0.1985, 0.2109, 0.3116, 0.2345, 0.3379, 0.2816, 0.2836, 0.2950, 0.2885, 0.2871, 0.3230, 0.4401, 0.4849, 0.3692, 0.3928, 0.3968, 0.4224, 0.4523, 0.3111, 0.4085},
+      { 0.1439, 0.1473, 0.2200, 0.1580, 0.2407, 0.2240, 0.2448, 0.2202, 0.2053, 0.2063, 0.2530, 0.2990, 0.3070, 0.2916, 0.3023, 0.2853, 0.2926, 0.3111, 0.2629, 0.3028},
+      { 0.1829, 0.1561, 0.2555, 0.1695, 0.3257, 0.2895, 0.3207, 0.2625, 0.2525, 0.2732, 0.3503, 0.3897, 0.3991, 0.3686, 0.3622, 0.3297, 0.3749, 0.4085, 0.3028, 0.5215}},
+    {
+      { 0.0950, 0.0803, 0.3499, 0.2992, 0.2749, 0.2048, 0.1998, 0.1810, 0.2190, 0.1826, 0.1749, 0.2786, 0.2660, 0.1743, 0.1850, 0.1836, 0.2143, 0.2171, 0.1690, 0.1974},
+      { 0.0803, 0.1062, 0.3471, 0.2988, 0.2523, 0.1823, 0.1883, 0.1791, 0.2105, 0.1666, 0.1426, 0.2799, 0.2798, 0.1902, 0.2016, 0.1957, 0.2022, 0.2314, 0.1769, 0.1816},
+      { 0.3499, 0.3471, 0.2517, 0.1971, 0.2875, 0.2415, 0.2608, 0.2396, 0.2781, 0.2350, 0.2306, 0.3697, 0.3584, 0.2762, 0.2775, 0.2842, 0.2899, 0.3281, 0.2409, 0.2629},
+      { 0.2992, 0.2988, 0.1971, 0.1465, 0.2095, 0.1757, 0.1939, 0.2035, 0.2235, 0.1729, 0.1289, 0.2945, 0.2872, 0.2107, 0.2066, 0.2038, 0.2014, 0.2319, 0.1779, 0.1861},
+      { 0.2749, 0.2523, 0.2875, 0.2095, 0.3358, 0.2763, 0.3167, 0.2744, 0.2792, 0.2478, 0.3150, 0.4142, 0.3843, 0.3096, 0.3075, 0.3151, 0.3243, 0.3668, 0.2589, 0.3556},
+      { 0.2048, 0.1823, 0.2415, 0.1757, 0.2763, 0.2221, 0.2331, 0.2475, 0.2244, 0.2069, 0.2235, 0.2974, 0.2963, 0.2435, 0.2469, 0.2282, 0.2693, 0.2676, 0.2216, 0.2784},
+      { 0.1998, 0.1883, 0.2608, 0.1939, 0.3167, 0.2331, 0.2514, 0.2707, 0.2549, 0.2032, 0.2359, 0.3215, 0.3136, 0.2823, 0.2850, 0.2621, 0.2739, 0.3156, 0.2303, 0.2921},
+      { 0.1810, 0.1791, 0.2396, 0.2035, 0.2744, 0.2475, 0.2707, 0.2618, 0.2676, 0.2273, 0.3741, 0.3059, 0.3129, 0.3012, 0.2741, 0.2493, 0.2939, 0.2735, 0.2946, 0.3307},
+      { 0.2190, 0.2105, 0.2781, 0.2235, 0.2792, 0.2244, 0.2549, 0.2676, 0.2728, 0.2095, 0.2271, 0.3287, 0.3512, 0.2632, 0.2757, 0.2760, 0.2884, 0.2967, 0.2310, 0.2484},
+      { 0.1826, 0.1666, 0.2350, 0.1729, 0.2478, 0.2069, 0.2032, 0.2273, 0.2095, 0.2017, 0.1763, 0.2821, 0.2736, 0.2234, 0.2280, 0.2216, 0.2609, 0.2573, 0.2061, 0.2499},
+      { 0.1749, 0.1426, 0.2306, 0.1289, 0.3150, 0.2235, 0.2359, 0.3741, 0.2271, 0.1763, 0.2053, 0.3535, 0.3585, 0.2562, 0.2683, 0.2627, 0.3009, 0.3253, 0.2120, 0.3488},
+      { 0.2786, 0.2799, 0.3697, 0.2945, 0.4142, 0.2974, 0.3215, 0.3059, 0.3287, 0.2821, 0.3535, 0.4229, 0.4791, 0.3677, 0.3934, 0.3787, 0.4168, 0.4437, 0.2934, 0.3943},
+      { 0.2660, 0.2798, 0.3584, 0.2872, 0.3843, 0.2963, 0.3136, 0.3129, 0.3512, 0.2736, 0.3585, 0.4791, 0.5655, 0.3751, 0.4037, 0.3942, 0.4963, 0.4728, 0.3074, 0.3964},
+      { 0.1743, 0.1902, 0.2762, 0.2107, 0.3096, 0.2435, 0.2823, 0.3012, 0.2632, 0.2234, 0.2562, 0.3677, 0.3751, 0.3341, 0.3490, 0.3313, 0.3484, 0.3706, 0.2661, 0.3322},
+      { 0.1850, 0.2016, 0.2775, 0.2066, 0.3075, 0.2469, 0.2850, 0.2741, 0.2757, 0.2280, 0.2683, 0.3934, 0.4037, 0.3490, 0.3619, 0.3564, 0.3670, 0.3800, 0.2699, 0.3470},
+      { 0.1836, 0.1957, 0.2842, 0.2038, 0.3151, 0.2282, 0.2621, 0.2493, 0.2760, 0.2216, 0.2627, 0.3787, 0.3942, 0.3313, 0.3564, 0.3443, 0.3382, 0.3842, 0.2636, 0.2957},
+      { 0.2143, 0.2022, 0.2899, 0.2014, 0.3243, 0.2693, 0.2739, 0.2939, 0.2884, 0.2609, 0.3009, 0.4168, 0.4963, 0.3484, 0.3670, 0.3382, 0.4121, 0.4306, 0.2848, 0.3599},
+      { 0.2171, 0.2314, 0.3281, 0.2319, 0.3668, 0.2676, 0.3156, 0.2735, 0.2967, 0.2573, 0.3253, 0.4437, 0.4728, 0.3706, 0.3800, 0.3842, 0.4306, 0.4381, 0.2905, 0.4068},
+      { 0.1690, 0.1769, 0.2409, 0.1779, 0.2589, 0.2216, 0.2303, 0.2946, 0.2310, 0.2061, 0.2120, 0.2934, 0.3074, 0.2661, 0.2699, 0.2636, 0.2848, 0.2905, 0.2457, 0.2849},
+      { 0.1974, 0.1816, 0.2629, 0.1861, 0.3556, 0.2784, 0.2921, 0.3307, 0.2484, 0.2499, 0.3488, 0.3943, 0.3964, 0.3322, 0.3470, 0.2957, 0.3599, 0.4068, 0.2849, 0.4530}},
+    {
+      { 0.1242, 0.1098, 0.3679, 0.3250, 0.2621, 0.2133, 0.2071, 0.2297, 0.1997, 0.1820, 0.1652, 0.2724, 0.2867, 0.1929, 0.2103, 0.2137, 0.2078, 0.2326, 0.1848, 0.2055},
+      { 0.1098, 0.1267, 0.3661, 0.3172, 0.2385, 0.2008, 0.2055, 0.2154, 0.1969, 0.1532, 0.1912, 0.2798, 0.3147, 0.2233, 0.2245, 0.2253, 0.2146, 0.2405, 0.2059, 0.2402},
+      { 0.3679, 0.3661, 0.2580, 0.2018, 0.2917, 0.2546, 0.2685, 0.2817, 0.2694, 0.2335, 0.2532, 0.3687, 0.3855, 0.2892, 0.3065, 0.3063, 0.2850, 0.3264, 0.2498, 0.2897},
+      { 0.3250, 0.3172, 0.2018, 0.1559, 0.2068, 0.2032, 0.2046, 0.2266, 0.2038, 0.1682, 0.1700, 0.3007, 0.2915, 0.2247, 0.2310, 0.2319, 0.2076, 0.2493, 0.1878, 0.1976},
+      { 0.2621, 0.2385, 0.2917, 0.2068, 0.3374, 0.2669, 0.3029, 0.2774, 0.2612, 0.2487, 0.3011, 0.3915, 0.3878, 0.3115, 0.3233, 0.3176, 0.3423, 0.3785, 0.2475, 0.3594},
+      { 0.2133, 0.2008, 0.2546, 0.2032, 0.2669, 0.2131, 0.2234, 0.2422, 0.2674, 0.2062, 0.2008, 0.2892, 0.3051, 0.2430, 0.2528, 0.2501, 0.2693, 0.2852, 0.2111, 0.2704},
+      { 0.2071, 0.2055, 0.2685, 0.2046, 0.3029, 0.2234, 0.2479, 0.2584, 0.2717, 0.2129, 0.2140, 0.3243, 0.3274, 0.2802, 0.2946, 0.2687, 0.2868, 0.3108, 0.2155, 0.2876},
+      { 0.2297, 0.2154, 0.2817, 0.2266, 0.2774, 0.2422, 0.2584, 0.2764, 0.2557, 0.2323, 0.2271, 0.3117, 0.3564, 0.2620, 0.2695, 0.2583, 0.2862, 0.3025, 0.2277, 0.2969},
+      { 0.1997, 0.1969, 0.2694, 0.2038, 0.2612, 0.2674, 0.2717, 0.2557, 0.2518, 0.2256, 0.3798, 0.3148, 0.3530, 0.3027, 0.3019, 0.3082, 0.3080, 0.3347, 0.2788, 0.4133},
+      { 0.1820, 0.1532, 0.2335, 0.1682, 0.2487, 0.2062, 0.2129, 0.2323, 0.2256, 0.1975, 0.1723, 0.2780, 0.3008, 0.2243, 0.2360, 0.2360, 0.2663, 0.2765, 0.2046, 0.2938},
+      { 0.1652, 0.1912, 0.2532, 0.1700, 0.3011, 0.2008, 0.2140, 0.2271, 0.3798, 0.1723, 0.1916, 0.3419, 0.3704, 0.2618, 0.2837, 0.2877, 0.3478, 0.3184, 0.2010, 0.2916},
+      { 0.2724, 0.2798, 0.3687, 0.3007, 0.3915, 0.2892, 0.3243, 0.3117, 0.3148, 0.2780, 0.3419, 0.4350, 0.4685, 0.3712, 0.3980, 0.4013, 0.4071, 0.4655, 0.2915, 0.3965},
+      { 0.2867, 0.3147, 0.3855, 0.2915, 0.3878, 0.3051, 0.3274, 0.3564, 0.3530, 0.3008, 0.3704, 0.4685, 0.5313, 0.3949, 0.4112, 0.4117, 0.4781, 0.5044, 0.3096, 0.3930},
+      { 0.1929, 0.2233, 0.2892, 0.2247, 0.3115, 0.2430, 0.2802, 0.2620, 0.3027, 0.2243, 0.2618, 0.3712, 0.3949, 0.3441, 0.3508, 0.3422, 0.3601, 0.3691, 0.2639, 0.3454},
+      { 0.2103, 0.2245, 0.3065, 0.2310, 0.3233, 0.2528, 0.2946, 0.2695, 0.3019, 0.2360, 0.2837, 0.3980, 0.4112, 0.3508, 0.3846, 0.3667, 0.3741, 0.3977, 0.2755, 0.3384},
+      { 0.2137, 0.2253, 0.3063, 0.2319, 0.3176, 0.2501, 0.2687, 0.2583, 0.3082, 0.2360, 0.2877, 0.4013, 0.4117, 0.3422, 0.3667, 0.3757, 0.3718, 0.4018, 0.2754, 0.3214},
+      { 0.2078, 0.2146, 0.2850, 0.2076, 0.3423, 0.2693, 0.2868, 0.2862, 0.3080, 0.2663, 0.3478, 0.4071, 0.4781, 0.3601, 0.3741, 0.3718, 0.4116, 0.4363, 0.2830, 0.3817},
+      { 0.2326, 0.2405, 0.3264, 0.2493, 0.3785, 0.2852, 0.3108, 0.3025, 0.3347, 0.2765, 0.3184, 0.4655, 0.5044, 0.3691, 0.3977, 0.4018, 0.4363, 0.4790, 0.2965, 0.3847},
+      { 0.1848, 0.2059, 0.2498, 0.1878, 0.2475, 0.2111, 0.2155, 0.2277, 0.2788, 0.2046, 0.2010, 0.2915, 0.3096, 0.2639, 0.2755, 0.2754, 0.2830, 0.2965, 0.2368, 0.2700},
+      { 0.2055, 0.2402, 0.2897, 0.1976, 0.3594, 0.2704, 0.2876, 0.2969, 0.4133, 0.2938, 0.2916, 0.3965, 0.3930, 0.3454, 0.3384, 0.3214, 0.3817, 0.3847, 0.2700, 0.5237}},
+    {
+      { 0.0468, 0.0362, 0.3383, 0.2853, 0.2449, 0.1604, 0.1670, 0.1926, 0.1780, 0.0443, 0.1080, 0.2456, 0.2141, 0.1409, 0.1491, 0.1438, 0.1574, 0.1856, 0.1004, 0.1752},
+      { 0.0362, 0.0502, 0.3301, 0.2729, 0.2212, 0.1355, 0.1551, 0.1659, 0.1717, 0.0390, 0.1130, 0.2599, 0.2438, 0.1499, 0.1472, 0.1570, 0.1554, 0.1884, 0.0996, 0.1422},
+      { 0.3383, 0.3301, 0.2421, 0.1795, 0.2527, 0.2124, 0.2394, 0.2596, 0.2611, 0.1538, 0.2130, 0.3571, 0.3339, 0.2408, 0.2522, 0.2508, 0.2378, 0.3012, 0.1819, 0.2610},
+      { 0.2853, 0.2729, 0.1795, 0.1200, 0.1895, 0.1383, 0.1657, 0.1947, 0.2057, 0.0960, 0.1055, 0.2886, 0.2683, 0.1770, 0.1686, 0.1683, 0.1436, 0.2136, 0.1179, 0.1328},
+      { 0.2449, 0.2212, 0.2527, 0.1895, 0.2998, 0.2422, 0.2593, 0.2589, 0.2455, 0.1813, 0.2110, 0.3722, 0.3414, 0.2583, 0.2561, 0.2610, 0.2866, 0.3186, 0.2001, 0.2913},
+      { 0.1604, 0.1355, 0.2124, 0.1383, 0.2422, 0.2101, 0.2083, 0.1993, 0.1951, 0.1658, 0.2218, 0.2716, 0.2980, 0.2199, 0.2405, 0.2234, 0.2500, 0.2613, 0.1946, 0.2827},
+      { 0.1670, 0.1551, 0.2394, 0.1657, 0.2593, 0.2083, 0.2451, 0.2232, 0.2442, 0.1715, 0.1983, 0.3105, 0.3112, 0.2535, 0.2590, 0.2498, 0.2731, 0.2947, 0.2026, 0.2933},
+      { 0.1926, 0.1659, 0.2596, 0.1947, 0.2589, 0.1993, 0.2232, 0.2415, 0.2268, 0.1367, 0.1763, 0.2887, 0.3073, 0.2048, 0.2057, 0.2063, 0.2508, 0.2618, 0.1748, 0.2367},
+      { 0.1780, 0.1717, 0.2611, 0.2057, 0.2455, 0.1951, 0.2442, 0.2268, 0.2156, 0.1329, 0.1723, 0.3004, 0.3132, 0.2255, 0.2448, 0.2358, 0.2457, 0.2716, 0.1613, 0.2285},
+      { 0.0443, 0.0390, 0.1538, 0.0960, 0.1813, 0.1658, 0.1715, 0.1367, 0.1329, 0.1342, 0.2619, 0.2107, 0.2058, 0.2016, 0.1848, 0.1721, 0.2014, 0.2092, 0.1897, 0.2539},
+      { 0.1080, 0.1130, 0.2130, 0.1055, 0.2110, 0.2218, 0.1983, 0.1763, 0.1723, 0.2619, 0.1621, 0.3131, 0.3127, 0.2103, 0.2130, 0.2138, 0.2682, 0.2838, 0.2360, 0.2784},
+      { 0.2456, 0.2599, 0.3571, 0.2886, 0.3722, 0.2716, 0.3105, 0.2887, 0.3004, 0.2107, 0.3131, 0.3959, 0.4520, 0.3473, 0.3569, 0.3652, 0.3850, 0.4231, 0.2684, 0.3399},
+      { 0.2141, 0.2438, 0.3339, 0.2683, 0.3414, 0.2980, 0.3112, 0.3073, 0.3132, 0.2058, 0.3127, 0.4520, 0.5338, 0.3481, 0.3653, 0.3754, 0.4443, 0.4712, 0.2765, 0.3634},
+      { 0.1409, 0.1499, 0.2408, 0.1770, 0.2583, 0.2199, 0.2535, 0.2048, 0.2255, 0.2016, 0.2103, 0.3473, 0.3481, 0.3218, 0.3319, 0.3146, 0.2999, 0.3687, 0.2656, 0.3140},
+      { 0.1491, 0.1472, 0.2522, 0.1686, 0.2561, 0.2405, 0.2590, 0.2057, 0.2448, 0.1848, 0.2130, 0.3569, 0.3653, 0.3319, 0.3513, 0.3327, 0.3293, 0.3805, 0.2626, 0.3185},
+      { 0.1438, 0.1570, 0.2508, 0.1683, 0.2610, 0.2234, 0.2498, 0.2063, 0.2358, 0.1721, 0.2138, 0.3652, 0.3754, 0.3146, 0.3327, 0.3218, 0.3361, 0.3737, 0.2448, 0.3148},
+      { 0.1574, 0.1554, 0.2378, 0.1436, 0.2866, 0.2500, 0.2731, 0.2508, 0.2457, 0.2014, 0.2682, 0.3850, 0.4443, 0.2999, 0.3293, 0.3361, 0.4021, 0.4176, 0.2523, 0.3744},
+      { 0.1856, 0.1884, 0.3012, 0.2136, 0.3186, 0.2613, 0.2947, 0.2618, 0.2716, 0.2092, 0.2838, 0.4231, 0.4712, 0.3687, 0.3805, 0.3737, 0.4176, 0.4303, 0.2782, 0.3696},
+      { 0.1004, 0.0996, 0.1819, 0.1179, 0.2001, 0.1946, 0.2026, 0.1748, 0.1613, 0.1897, 0.2360, 0.2684, 0.2765, 0.2656, 0.2626, 0.2448, 0.2523, 0.2782, 0.2218, 0.2774},
+      { 0.1752, 0.1422, 0.2610, 0.1328, 0.2913, 0.2827, 0.2933, 0.2367, 0.2285, 0.2539, 0.2784, 0.3399, 0.3634, 0.3140, 0.3185, 0.3148, 0.3744, 0.3696, 0.2774, 0.4700}},
+    {
+      { 0.1052, 0.0896, 0.3615, 0.3177, 0.2591, 0.1968, 0.1900, 0.2424, 0.2096, 0.1503, 0.1098, 0.2701, 0.2775, 0.1684, 0.1629, 0.1685, 0.1980, 0.1981, 0.1670, 0.1692},
+      { 0.0896, 0.0987, 0.3571, 0.3045, 0.2471, 0.1838, 0.1821, 0.2145, 0.2050, 0.1459, 0.1233, 0.2615, 0.2760, 0.1729, 0.1759, 0.1784, 0.1799, 0.1995, 0.1583, 0.1765},
+      { 0.3615, 0.3571, 0.2478, 0.1891, 0.2949, 0.2348, 0.2608, 0.2901, 0.2835, 0.2251, 0.2131, 0.3762, 0.3951, 0.2786, 0.2878, 0.2676, 0.2809, 0.3011, 0.2283, 0.2740},
+      { 0.3177, 0.3045, 0.1891, 0.1331, 0.2266, 0.1789, 0.2071, 0.2203, 0.2194, 0.1499, 0.1180, 0.3003, 0.2830, 0.2032, 0.1986, 0.1829, 0.1853, 0.2229, 0.1645, 0.1717},
+      { 0.2591, 0.2471, 0.2949, 0.2266, 0.3089, 0.2470, 0.2887, 0.3069, 0.2878, 0.2213, 0.2531, 0.3978, 0.4048, 0.2841, 0.2795, 0.2869, 0.3093, 0.3489, 0.2216, 0.3218},
+      { 0.1968, 0.1838, 0.2348, 0.1789, 0.2470, 0.2244, 0.2413, 0.2452, 0.2236, 0.2050, 0.2072, 0.2833, 0.3384, 0.2211, 0.2330, 0.2306, 0.2746, 0.2694, 0.2068, 0.2428},
+      { 0.1900, 0.1821, 0.2608, 0.2071, 0.2887, 0.2413, 0.2511, 0.2680, 0.2605, 0.1978, 0.2112, 0.3085, 0.3271, 0.2618, 0.2662, 0.2479, 0.2536, 0.3170, 0.2160, 0.2768},
+      { 0.2424, 0.2145, 0.2901, 0.2203, 0.3069, 0.2452, 0.2680, 0.3329, 0.2684, 0.2350, 0.2053, 0.3378, 0.3586, 0.2448, 0.2433, 0.2424, 0.3235, 0.3023, 0.2324, 0.2843},
+      { 0.2096, 0.2050, 0.2835, 0.2194, 0.2878, 0.2236, 0.2605, 0.2684, 0.2529, 0.2021, 0.1916, 0.3140, 0.3291, 0.2385, 0.2531, 0.2571, 0.2516, 0.2770, 0.2064, 0.2700},
+      { 0.1503, 0.1459, 0.2251, 0.1499, 0.2213, 0.2050, 0.1978, 0.2350, 0.2021, 0.1813, 0.1621, 0.2834, 0.2707, 0.2054, 0.2078, 0.2059, 0.2367, 0.2440, 0.1714, 0.2406},
+      { 0.1098, 0.1233, 0.2131, 0.1180, 0.2531, 0.2072, 0.2112, 0.2053, 0.1916, 0.1621, 0.3132, 0.3309, 0.3653, 0.2508, 0.2503, 0.2429, 0.2877, 0.2938, 0.2196, 0.2982},
+      { 0.2701, 0.2615, 0.3762, 0.3003, 0.3978, 0.2833, 0.3085, 0.3378, 0.3140, 0.2834, 0.3309, 0.4285, 0.4520, 0.3512, 0.3829, 0.3772, 0.4003, 0.4309, 0.2846, 0.3787},
+      { 0.2775, 0.2760, 0.3951, 0.2830, 0.4048, 0.3384, 0.3271, 0.3586, 0.3291, 0.2707, 0.3653, 0.4520, 0.4921, 0.4047, 0.4155, 0.3840, 0.4317, 0.4351, 0.3043, 0.4188},
+      { 0.1684, 0.1729, 0.2786, 0.2032, 0.2841, 0.2211, 0.2618, 0.2448, 0.2385, 0.2054, 0.2508, 0.3512, 0.4047, 0.3499, 0.3568, 0.3406, 0.3376, 0.3544, 0.2434, 0.3357},
+      { 0.1629, 0.1759, 0.2878, 0.1986, 0.2795, 0.2330, 0.2662, 0.2433, 0.2531, 0.2078, 0.2503, 0.3829, 0.4155, 0.3568, 0.3891, 0.3594, 0.3535, 0.3755, 0.2483, 0.3503},
+      { 0.1685, 0.1784, 0.2676, 0.1829, 0.2869, 0.2306, 0.2479, 0.2424, 0.2571, 0.2059, 0.2429, 0.3772, 0.3840, 0.3406, 0.3594, 0.3755, 0.3724, 0.3894, 0.2489, 0.3366},
+      { 0.1980, 0.1799, 0.2809, 0.1853, 0.3093, 0.2746, 0.2536, 0.3235, 0.2516, 0.2367, 0.2877, 0.4003, 0.4317, 0.3376, 0.3535, 0.3724, 0.4129, 0.4420, 0.2563, 0.3620},
+      { 0.1981, 0.1995, 0.3011, 0.2229, 0.3489, 0.2694, 0.3170, 0.3023, 0.2770, 0.2440, 0.2938, 0.4309, 0.4351, 0.3544, 0.3755, 0.3894, 0.4420, 0.4528, 0.2805, 0.3614},
+      { 0.1670, 0.1583, 0.2283, 0.1645, 0.2216, 0.2068, 0.2160, 0.2324, 0.2064, 0.1714, 0.2196, 0.2846, 0.3043, 0.2434, 0.2483, 0.2489, 0.2563, 0.2805, 0.2231, 0.2691},
+      { 0.1692, 0.1765, 0.2740, 0.1717, 0.3218, 0.2428, 0.2768, 0.2843, 0.2700, 0.2406, 0.2982, 0.3787, 0.4188, 0.3357, 0.3503, 0.3366, 0.3620, 0.3614, 0.2691, 0.5480}},
+    {
+      { 0.2498, 0.2227, 0.4539, 0.3950, 0.3435, 0.3160, 0.3121, 0.3188, 0.3262, 0.3005, 0.2799, 0.2726, 0.3269, 0.2842, 0.2782, 0.2859, 0.3003, 0.2742, 0.2775, 0.3080},
+      { 0.2227, 0.2199, 0.4354, 0.3893, 0.3275, 0.3166, 0.3048, 0.3027, 0.3151, 0.2691, 0.2711, 0.2785, 0.3528, 0.2850, 0.2946, 0.2842, 0.2929, 0.2807, 0.2748, 0.2859},
+      { 0.4539, 0.4354, 0.3427, 0.2749, 0.3670, 0.3640, 0.3772, 0.3711, 0.3758, 0.3489, 0.3543, 0.3718, 0.4342, 0.3604, 0.3661, 0.3690, 0.3793, 0.3810, 0.3439, 0.3764},
+      { 0.3950, 0.3893, 0.2749, 0.2415, 0.2980, 0.2973, 0.3092, 0.3161, 0.3120, 0.2774, 0.2598, 0.3086, 0.3687, 0.2985, 0.3091, 0.3021, 0.3045, 0.2976, 0.2744, 0.3199},
+      { 0.3435, 0.3275, 0.3670, 0.2980, 0.4285, 0.3722, 0.3850, 0.3497, 0.3425, 0.3285, 0.4245, 0.4030, 0.4877, 0.3977, 0.3937, 0.3982, 0.4067, 0.4232, 0.3583, 0.4357},
+      { 0.3160, 0.3166, 0.3640, 0.2973, 0.3722, 0.3467, 0.3439, 0.3605, 0.3574, 0.3285, 0.3319, 0.3326, 0.3915, 0.3407, 0.3471, 0.3509, 0.3745, 0.3607, 0.3290, 0.3779},
+      { 0.3121, 0.3048, 0.3772, 0.3092, 0.3850, 0.3439, 0.3575, 0.3630, 0.3577, 0.3159, 0.3401, 0.3591, 0.4137, 0.3737, 0.3854, 0.3716, 0.3990, 0.3832, 0.3391, 0.3990},
+      { 0.3188, 0.3027, 0.3711, 0.3161, 0.3497, 0.3605, 0.3630, 0.4005, 0.3501, 0.3394, 0.3535, 0.3127, 0.3936, 0.3378, 0.3328, 0.3396, 0.3636, 0.3466, 0.3351, 0.3821},
+      { 0.3262, 0.3151, 0.3758, 0.3120, 0.3425, 0.3574, 0.3577, 0.3501, 0.3731, 0.3471, 0.3419, 0.3413, 0.4297, 0.3666, 0.3610, 0.3699, 0.3918, 0.3772, 0.3481, 0.3838},
+      { 0.3005, 0.2691, 0.3489, 0.2774, 0.3285, 0.3285, 0.3159, 0.3394, 0.3471, 0.3142, 0.3131, 0.3019, 0.3714, 0.3100, 0.3249, 0.3264, 0.3636, 0.3290, 0.3147, 0.3359},
+      { 0.2799, 0.2711, 0.3543, 0.2598, 0.4245, 0.3319, 0.3401, 0.3535, 0.3419, 0.3131, 0.3309, 0.5270, 0.5449, 0.3492, 0.3662, 0.3837, 0.4154, 0.4855, 0.3318, 0.4030},
+      { 0.2726, 0.2785, 0.3718, 0.3086, 0.4030, 0.3326, 0.3591, 0.3127, 0.3413, 0.3019, 0.5270, 0.4282, 0.4761, 0.4533, 0.4679, 0.4625, 0.4712, 0.4822, 0.3883, 0.4838},
+      { 0.3269, 0.3528, 0.4342, 0.3687, 0.4877, 0.3915, 0.4137, 0.3936, 0.4297, 0.3714, 0.5449, 0.4761, 0.5274, 0.4797, 0.5069, 0.5014, 0.5257, 0.5094, 0.4470, 0.5415},
+      { 0.2842, 0.2850, 0.3604, 0.2985, 0.3977, 0.3407, 0.3737, 0.3378, 0.3666, 0.3100, 0.3492, 0.4533, 0.4797, 0.4540, 0.4610, 0.4603, 0.4561, 0.4672, 0.3699, 0.4351},
+      { 0.2782, 0.2946, 0.3661, 0.3091, 0.3937, 0.3471, 0.3854, 0.3328, 0.3610, 0.3249, 0.3662, 0.4679, 0.5069, 0.4610, 0.4892, 0.4875, 0.4732, 0.4906, 0.3834, 0.4288},
+      { 0.2859, 0.2842, 0.3690, 0.3021, 0.3982, 0.3509, 0.3716, 0.3396, 0.3699, 0.3264, 0.3837, 0.4625, 0.5014, 0.4603, 0.4875, 0.4816, 0.4775, 0.4830, 0.3849, 0.4521},
+      { 0.3003, 0.2929, 0.3793, 0.3045, 0.4067, 0.3745, 0.3990, 0.3636, 0.3918, 0.3636, 0.4154, 0.4712, 0.5257, 0.4561, 0.4732, 0.4775, 0.5323, 0.5082, 0.3980, 0.4708},
+      { 0.2742, 0.2807, 0.3810, 0.2976, 0.4232, 0.3607, 0.3832, 0.3466, 0.3772, 0.3290, 0.4855, 0.4822, 0.5094, 0.4672, 0.4906, 0.4830, 0.5082, 0.5190, 0.4026, 0.4955},
+      { 0.2775, 0.2748, 0.3439, 0.2744, 0.3583, 0.3290, 0.3391, 0.3351, 0.3481, 0.3147, 0.3318, 0.3883, 0.4470, 0.3699, 0.3834, 0.3849, 0.3980, 0.4026, 0.3445, 0.3854},
+      { 0.3080, 0.2859, 0.3764, 0.3199, 0.4357, 0.3779, 0.3990, 0.3821, 0.3838, 0.3359, 0.4030, 0.4838, 0.5415, 0.4351, 0.4288, 0.4521, 0.4708, 0.4955, 0.3854, 0.6617}},
+    {
+      { 0.2692, 0.2411, 0.4686, 0.4117, 0.3875, 0.3392, 0.3283, 0.3292, 0.3553, 0.3188, 0.2972, 0.3547, 0.2628, 0.3055, 0.2951, 0.2911, 0.2990, 0.2858, 0.3007, 0.3280},
+      { 0.2411, 0.2392, 0.4591, 0.4049, 0.3529, 0.3418, 0.3181, 0.3318, 0.3424, 0.2901, 0.2794, 0.3682, 0.2939, 0.2988, 0.3157, 0.3025, 0.2926, 0.3022, 0.2950, 0.3216},
+      { 0.4686, 0.4591, 0.3745, 0.2954, 0.3975, 0.3741, 0.4082, 0.4001, 0.4028, 0.3648, 0.3866, 0.4523, 0.3824, 0.3870, 0.3910, 0.3848, 0.3953, 0.4160, 0.3664, 0.4050},
+      { 0.4117, 0.4049, 0.2954, 0.2533, 0.3096, 0.3072, 0.3107, 0.3489, 0.3464, 0.2807, 0.2846, 0.3947, 0.2789, 0.3193, 0.3255, 0.3114, 0.2981, 0.3326, 0.2965, 0.3312},
+      { 0.3875, 0.3529, 0.3975, 0.3096, 0.4902, 0.4021, 0.4120, 0.3974, 0.3861, 0.3609, 0.4472, 0.4952, 0.4318, 0.4146, 0.4519, 0.4387, 0.4640, 0.4614, 0.3767, 0.4072},
+      { 0.3392, 0.3418, 0.3741, 0.3072, 0.4021, 0.3673, 0.3629, 0.3946, 0.3953, 0.3489, 0.3568, 0.4028, 0.3614, 0.3560, 0.3672, 0.3523, 0.3842, 0.3959, 0.3463, 0.4188},
+      { 0.3283, 0.3181, 0.4082, 0.3107, 0.4120, 0.3629, 0.3703, 0.3835, 0.3796, 0.3349, 0.3570, 0.4238, 0.3726, 0.3967, 0.4046, 0.3868, 0.4351, 0.4093, 0.3472, 0.4308},
+      { 0.3292, 0.3318, 0.4001, 0.3489, 0.3974, 0.3946, 0.3835, 0.4159, 0.3887, 0.3581, 0.3585, 0.3947, 0.3345, 0.3676, 0.3426, 0.3547, 0.3858, 0.3651, 0.3447, 0.3947},
+      { 0.3553, 0.3424, 0.4028, 0.3464, 0.3861, 0.3953, 0.3796, 0.3887, 0.4012, 0.3581, 0.3704, 0.4207, 0.3632, 0.3725, 0.3831, 0.3810, 0.4041, 0.3846, 0.3530, 0.3782},
+      { 0.3188, 0.2901, 0.3648, 0.2807, 0.3609, 0.3489, 0.3349, 0.3581, 0.3581, 0.3404, 0.3127, 0.3771, 0.3182, 0.3358, 0.3363, 0.3414, 0.3868, 0.3469, 0.3301, 0.4096},
+      { 0.2972, 0.2794, 0.3866, 0.2846, 0.4472, 0.3568, 0.3570, 0.3585, 0.3704, 0.3127, 0.3653, 0.5449, 0.5850, 0.3673, 0.3830, 0.3908, 0.4353, 0.5042, 0.3447, 0.4568},
+      { 0.3547, 0.3682, 0.4523, 0.3947, 0.4952, 0.4028, 0.4238, 0.3947, 0.4207, 0.3771, 0.5449, 0.5273, 0.4929, 0.4932, 0.5358, 0.5337, 0.5310, 0.5531, 0.4454, 0.5268},
+      { 0.2628, 0.2939, 0.3824, 0.2789, 0.4318, 0.3614, 0.3726, 0.3345, 0.3632, 0.3182, 0.5850, 0.4929, 0.4938, 0.4702, 0.5165, 0.4962, 0.5074, 0.5213, 0.4427, 0.5098},
+      { 0.3055, 0.2988, 0.3870, 0.3193, 0.4146, 0.3560, 0.3967, 0.3676, 0.3725, 0.3358, 0.3673, 0.4932, 0.4702, 0.4793, 0.4901, 0.4915, 0.4760, 0.5033, 0.3887, 0.4687},
+      { 0.2951, 0.3157, 0.3910, 0.3255, 0.4519, 0.3672, 0.4046, 0.3426, 0.3831, 0.3363, 0.3830, 0.5358, 0.5165, 0.4901, 0.5264, 0.5241, 0.5159, 0.5374, 0.4028, 0.4580},
+      { 0.2911, 0.3025, 0.3848, 0.3114, 0.4387, 0.3523, 0.3868, 0.3547, 0.3810, 0.3414, 0.3908, 0.5337, 0.4962, 0.4915, 0.5241, 0.5235, 0.4952, 0.5315, 0.4048, 0.4874},
+      { 0.2990, 0.2926, 0.3953, 0.2981, 0.4640, 0.3842, 0.4351, 0.3858, 0.4041, 0.3868, 0.4353, 0.5310, 0.5074, 0.4760, 0.5159, 0.4952, 0.6210, 0.5577, 0.4135, 0.4743},
+      { 0.2858, 0.3022, 0.4160, 0.3326, 0.4614, 0.3959, 0.4093, 0.3651, 0.3846, 0.3469, 0.5042, 0.5531, 0.5213, 0.5033, 0.5374, 0.5315, 0.5577, 0.5514, 0.4263, 0.5316},
+      { 0.3007, 0.2950, 0.3664, 0.2965, 0.3767, 0.3463, 0.3472, 0.3447, 0.3530, 0.3301, 0.3447, 0.4454, 0.4427, 0.3887, 0.4028, 0.4048, 0.4135, 0.4263, 0.3569, 0.3995},
+      { 0.3280, 0.3216, 0.4050, 0.3312, 0.4072, 0.4188, 0.4308, 0.3947, 0.3782, 0.4096, 0.4568, 0.5268, 0.5098, 0.4687, 0.4580, 0.4874, 0.4743, 0.5316, 0.3995, 0.6654}},
+    {
+      { 0.1065, 0.0841, 0.3578, 0.3038, 0.2660, 0.1978, 0.1739, 0.2224, 0.2218, 0.1608, 0.1688, 0.2589, 0.2374, 0.0782, 0.0929, 0.1229, 0.1422, 0.1633, 0.1235, 0.1305},
+      { 0.0841, 0.0860, 0.3560, 0.2982, 0.2477, 0.1887, 0.1765, 0.2061, 0.1990, 0.1416, 0.1709, 0.2575, 0.2524, 0.1089, 0.1140, 0.1319, 0.1353, 0.1757, 0.1311, 0.1294},
+      { 0.3578, 0.3560, 0.2389, 0.1746, 0.2795, 0.2421, 0.2527, 0.2724, 0.2760, 0.2239, 0.2516, 0.3480, 0.3630, 0.1929, 0.2139, 0.2385, 0.2428, 0.2837, 0.2132, 0.2506},
+      { 0.3038, 0.2982, 0.1746, 0.1265, 0.2062, 0.1772, 0.1822, 0.2232, 0.2134, 0.1598, 0.1710, 0.2975, 0.2856, 0.1508, 0.1623, 0.1692, 0.1679, 0.2186, 0.1486, 0.1649},
+      { 0.2660, 0.2477, 0.2795, 0.2062, 0.3433, 0.2839, 0.2886, 0.2864, 0.2711, 0.2249, 0.2725, 0.3721, 0.3721, 0.2275, 0.2424, 0.2566, 0.2813, 0.3222, 0.2306, 0.3009},
+      { 0.1978, 0.1887, 0.2421, 0.1772, 0.2839, 0.2379, 0.2447, 0.2523, 0.2469, 0.2069, 0.2712, 0.2809, 0.3091, 0.1813, 0.2010, 0.2135, 0.2477, 0.2626, 0.2116, 0.2518},
+      { 0.1739, 0.1765, 0.2527, 0.1822, 0.2886, 0.2447, 0.2645, 0.2614, 0.2491, 0.2058, 0.2920, 0.3190, 0.3195, 0.2547, 0.2677, 0.2616, 0.2819, 0.3015, 0.2514, 0.2998},
+      { 0.2224, 0.2061, 0.2724, 0.2232, 0.2864, 0.2523, 0.2614, 0.2912, 0.2808, 0.2365, 0.2562, 0.3028, 0.3305, 0.1636, 0.1747, 0.1977, 0.2459, 0.2509, 0.2046, 0.2515},
+      { 0.2218, 0.1990, 0.2760, 0.2134, 0.2711, 0.2469, 0.2491, 0.2808, 0.2709, 0.2125, 0.2618, 0.3065, 0.3382, 0.1712, 0.1962, 0.2146, 0.2380, 0.2580, 0.2128, 0.2273},
+      { 0.1608, 0.1416, 0.2239, 0.1598, 0.2249, 0.2069, 0.2058, 0.2365, 0.2125, 0.1929, 0.2103, 0.2711, 0.2898, 0.1545, 0.1659, 0.1833, 0.2426, 0.2368, 0.1831, 0.2366},
+      { 0.1688, 0.1709, 0.2516, 0.1710, 0.2725, 0.2712, 0.2920, 0.2562, 0.2618, 0.2103, 0.2508, 0.3492, 0.3673, 0.3221, 0.3079, 0.2799, 0.3212, 0.3167, 0.2667, 0.3390},
+      { 0.2589, 0.2575, 0.3480, 0.2975, 0.3721, 0.2809, 0.3190, 0.3028, 0.3065, 0.2711, 0.3492, 0.4162, 0.4413, 0.3248, 0.3613, 0.3815, 0.3980, 0.4292, 0.3000, 0.3690},
+      { 0.2374, 0.2524, 0.3630, 0.2856, 0.3721, 0.3091, 0.3195, 0.3305, 0.3382, 0.2898, 0.3673, 0.4413, 0.4930, 0.3252, 0.3595, 0.3946, 0.4222, 0.4699, 0.3096, 0.3657},
+      { 0.0782, 0.1089, 0.1929, 0.1508, 0.2275, 0.1813, 0.2547, 0.1636, 0.1712, 0.1545, 0.3221, 0.3248, 0.3252, 0.3806, 0.3752, 0.3505, 0.3206, 0.3591, 0.2737, 0.3721},
+      { 0.0929, 0.1140, 0.2139, 0.1623, 0.2424, 0.2010, 0.2677, 0.1747, 0.1962, 0.1659, 0.3079, 0.3613, 0.3595, 0.3752, 0.3941, 0.3711, 0.3499, 0.3777, 0.2840, 0.3698},
+      { 0.1229, 0.1319, 0.2385, 0.1692, 0.2566, 0.2135, 0.2616, 0.1977, 0.2146, 0.1833, 0.2799, 0.3815, 0.3946, 0.3505, 0.3711, 0.3805, 0.3565, 0.4062, 0.2757, 0.3673},
+      { 0.1422, 0.1353, 0.2428, 0.1679, 0.2813, 0.2477, 0.2819, 0.2459, 0.2380, 0.2426, 0.3212, 0.3980, 0.4222, 0.3206, 0.3499, 0.3565, 0.4056, 0.4248, 0.2925, 0.3763},
+      { 0.1633, 0.1757, 0.2837, 0.2186, 0.3222, 0.2626, 0.3015, 0.2509, 0.2580, 0.2368, 0.3167, 0.4292, 0.4699, 0.3591, 0.3777, 0.4062, 0.4248, 0.4594, 0.3012, 0.4108},
+      { 0.1235, 0.1311, 0.2132, 0.1486, 0.2306, 0.2116, 0.2514, 0.2046, 0.2128, 0.1831, 0.2667, 0.3000, 0.3096, 0.2737, 0.2840, 0.2757, 0.2925, 0.3012, 0.2491, 0.2997},
+      { 0.1305, 0.1294, 0.2506, 0.1649, 0.3009, 0.2518, 0.2998, 0.2515, 0.2273, 0.2366, 0.3390, 0.3690, 0.3657, 0.3721, 0.3698, 0.3673, 0.3763, 0.4108, 0.2997, 0.5119}},
+    {
+      { 0.1261, 0.1062, 0.3671, 0.3108, 0.2746, 0.2174, 0.1937, 0.2382, 0.2425, 0.1795, 0.1773, 0.2639, 0.2534, 0.1048, 0.0871, 0.1236, 0.1498, 0.1621, 0.1466, 0.1554},
+      { 0.1062, 0.1177, 0.3683, 0.3069, 0.2575, 0.2075, 0.1959, 0.2165, 0.2159, 0.1656, 0.1832, 0.2600, 0.2628, 0.1148, 0.0872, 0.1193, 0.1363, 0.1634, 0.1448, 0.1433},
+      { 0.3671, 0.3683, 0.2451, 0.1834, 0.2778, 0.2595, 0.2711, 0.2852, 0.2837, 0.2500, 0.2592, 0.3509, 0.3554, 0.2081, 0.1871, 0.2334, 0.2454, 0.2809, 0.2278, 0.2658},
+      { 0.3108, 0.3069, 0.1834, 0.1361, 0.2169, 0.1942, 0.2046, 0.2327, 0.2264, 0.1679, 0.1763, 0.2920, 0.2901, 0.1647, 0.1403, 0.1615, 0.1641, 0.2144, 0.1619, 0.1818},
+      { 0.2746, 0.2575, 0.2778, 0.2169, 0.3439, 0.3094, 0.3171, 0.2903, 0.2804, 0.2508, 0.2872, 0.3756, 0.3829, 0.2472, 0.2230, 0.2543, 0.2958, 0.3196, 0.2439, 0.2953},
+      { 0.2174, 0.2075, 0.2595, 0.1942, 0.3094, 0.2570, 0.2567, 0.2725, 0.2794, 0.2308, 0.2612, 0.2922, 0.3131, 0.2021, 0.1956, 0.2173, 0.2483, 0.2630, 0.2233, 0.2568},
+      { 0.1937, 0.1959, 0.2711, 0.2046, 0.3171, 0.2567, 0.2843, 0.2765, 0.2730, 0.2244, 0.2973, 0.3356, 0.3399, 0.2762, 0.2649, 0.2696, 0.3015, 0.3114, 0.2656, 0.3186},
+      { 0.2382, 0.2165, 0.2852, 0.2327, 0.2903, 0.2725, 0.2765, 0.3012, 0.2914, 0.2337, 0.2683, 0.3144, 0.3434, 0.1809, 0.1607, 0.1977, 0.2406, 0.2548, 0.2309, 0.2588},
+      { 0.2425, 0.2159, 0.2837, 0.2264, 0.2804, 0.2794, 0.2730, 0.2914, 0.2968, 0.2376, 0.2837, 0.3200, 0.3415, 0.1944, 0.1849, 0.2202, 0.2549, 0.2608, 0.2364, 0.2575},
+      { 0.1795, 0.1656, 0.2500, 0.1679, 0.2508, 0.2308, 0.2244, 0.2337, 0.2376, 0.2113, 0.2130, 0.2850, 0.3018, 0.1615, 0.1450, 0.1850, 0.2455, 0.2476, 0.2077, 0.2382},
+      { 0.1773, 0.1832, 0.2592, 0.1763, 0.2872, 0.2612, 0.2973, 0.2683, 0.2837, 0.2130, 0.2503, 0.3662, 0.3830, 0.3079, 0.3425, 0.2957, 0.3429, 0.3309, 0.2554, 0.3262},
+      { 0.2639, 0.2600, 0.3509, 0.2920, 0.3756, 0.2922, 0.3356, 0.3144, 0.3200, 0.2850, 0.3662, 0.4264, 0.4532, 0.3509, 0.3476, 0.3844, 0.4046, 0.4384, 0.3305, 0.3935},
+      { 0.2534, 0.2628, 0.3554, 0.2901, 0.3829, 0.3131, 0.3399, 0.3434, 0.3415, 0.3018, 0.3830, 0.4532, 0.5267, 0.3607, 0.3560, 0.4131, 0.4476, 0.4942, 0.3242, 0.4061},
+      { 0.1048, 0.1148, 0.2081, 0.1647, 0.2472, 0.2021, 0.2762, 0.1809, 0.1944, 0.1615, 0.3079, 0.3509, 0.3607, 0.3971, 0.3918, 0.3809, 0.3554, 0.3968, 0.2863, 0.3935},
+      { 0.0871, 0.0872, 0.1871, 0.1403, 0.2230, 0.1956, 0.2649, 0.1607, 0.1849, 0.1450, 0.3425, 0.3476, 0.3560, 0.3918, 0.4013, 0.3781, 0.3517, 0.3902, 0.2832, 0.3789},
+      { 0.1236, 0.1193, 0.2334, 0.1615, 0.2543, 0.2173, 0.2696, 0.1977, 0.2202, 0.1850, 0.2957, 0.3844, 0.4131, 0.3809, 0.3781, 0.3970, 0.3729, 0.4237, 0.2872, 0.3881},
+      { 0.1498, 0.1363, 0.2454, 0.1641, 0.2958, 0.2483, 0.3015, 0.2406, 0.2549, 0.2455, 0.3429, 0.4046, 0.4476, 0.3554, 0.3517, 0.3729, 0.4345, 0.4558, 0.3047, 0.3995},
+      { 0.1621, 0.1634, 0.2809, 0.2144, 0.3196, 0.2630, 0.3114, 0.2548, 0.2608, 0.2476, 0.3309, 0.4384, 0.4942, 0.3968, 0.3902, 0.4237, 0.4558, 0.4729, 0.3208, 0.4428},
+      { 0.1466, 0.1448, 0.2278, 0.1619, 0.2439, 0.2233, 0.2656, 0.2309, 0.2364, 0.2077, 0.2554, 0.3305, 0.3242, 0.2863, 0.2832, 0.2872, 0.3047, 0.3208, 0.2646, 0.3109},
+      { 0.1554, 0.1433, 0.2658, 0.1818, 0.2953, 0.2568, 0.3186, 0.2588, 0.2575, 0.2382, 0.3262, 0.3935, 0.4061, 0.3935, 0.3789, 0.3881, 0.3995, 0.4428, 0.3109, 0.5154}},
+    {
+      { 0.1501, 0.1271, 0.3783, 0.3231, 0.2772, 0.2216, 0.2071, 0.2371, 0.2520, 0.1866, 0.1798, 0.2646, 0.2560, 0.1305, 0.1259, 0.0838, 0.1314, 0.1556, 0.1495, 0.1706},
+      { 0.1271, 0.1393, 0.3763, 0.3186, 0.2690, 0.2152, 0.1994, 0.2190, 0.2306, 0.1741, 0.1822, 0.2692, 0.2705, 0.1401, 0.1298, 0.0923, 0.1282, 0.1618, 0.1572, 0.1479},
+      { 0.3783, 0.3763, 0.2619, 0.2039, 0.2959, 0.2666, 0.2783, 0.2923, 0.2926, 0.2434, 0.2704, 0.3589, 0.3676, 0.2350, 0.2357, 0.2131, 0.2493, 0.2840, 0.2384, 0.2632},
+      { 0.3231, 0.3186, 0.2039, 0.1601, 0.2237, 0.2072, 0.2109, 0.2396, 0.2288, 0.1736, 0.1945, 0.3032, 0.2986, 0.1837, 0.1707, 0.1340, 0.1667, 0.2086, 0.1713, 0.1933},
+      { 0.2772, 0.2690, 0.2959, 0.2237, 0.3658, 0.2939, 0.3132, 0.3077, 0.2864, 0.2422, 0.3006, 0.3930, 0.3878, 0.2775, 0.2659, 0.2297, 0.2858, 0.3257, 0.2485, 0.3022},
+      { 0.2216, 0.2152, 0.2666, 0.2072, 0.2939, 0.2538, 0.2555, 0.2770, 0.2642, 0.2305, 0.2433, 0.2924, 0.3057, 0.2188, 0.2208, 0.1966, 0.2409, 0.2538, 0.2180, 0.2573},
+      { 0.2071, 0.1994, 0.2783, 0.2109, 0.3132, 0.2555, 0.2795, 0.2796, 0.2742, 0.2275, 0.2745, 0.3313, 0.3428, 0.2786, 0.2879, 0.2422, 0.2903, 0.3046, 0.2522, 0.3167},
+      { 0.2371, 0.2190, 0.2923, 0.2396, 0.3077, 0.2770, 0.2796, 0.3116, 0.2849, 0.2431, 0.2627, 0.3142, 0.3308, 0.2107, 0.1963, 0.1608, 0.2339, 0.2463, 0.2222, 0.2716},
+      { 0.2520, 0.2306, 0.2926, 0.2288, 0.2864, 0.2642, 0.2742, 0.2849, 0.2978, 0.2384, 0.2877, 0.3158, 0.3509, 0.2226, 0.2281, 0.1848, 0.2390, 0.2627, 0.2312, 0.2567},
+      { 0.1866, 0.1741, 0.2434, 0.1736, 0.2422, 0.2305, 0.2275, 0.2431, 0.2384, 0.2202, 0.2138, 0.2902, 0.2912, 0.1994, 0.1948, 0.1720, 0.2383, 0.2365, 0.2138, 0.2585},
+      { 0.1798, 0.1822, 0.2704, 0.1945, 0.3006, 0.2433, 0.2745, 0.2627, 0.2877, 0.2138, 0.2429, 0.3837, 0.3908, 0.2799, 0.2957, 0.3154, 0.3375, 0.3387, 0.2348, 0.3109},
+      { 0.2646, 0.2692, 0.3589, 0.3032, 0.3930, 0.2924, 0.3313, 0.3142, 0.3158, 0.2902, 0.3837, 0.4336, 0.4658, 0.3792, 0.3857, 0.3695, 0.4050, 0.4415, 0.3238, 0.3950},
+      { 0.2560, 0.2705, 0.3676, 0.2986, 0.3878, 0.3057, 0.3428, 0.3308, 0.3509, 0.2912, 0.3908, 0.4658, 0.5053, 0.3960, 0.4076, 0.4012, 0.4378, 0.4834, 0.3295, 0.4101},
+      { 0.1305, 0.1401, 0.2350, 0.1837, 0.2775, 0.2188, 0.2786, 0.2107, 0.2226, 0.1994, 0.2799, 0.3792, 0.3960, 0.3915, 0.3985, 0.3754, 0.3708, 0.4000, 0.2946, 0.3831},
+      { 0.1259, 0.1298, 0.2357, 0.1707, 0.2659, 0.2208, 0.2879, 0.1963, 0.2281, 0.1948, 0.2957, 0.3857, 0.4076, 0.3985, 0.4208, 0.3919, 0.3821, 0.4168, 0.2969, 0.3809},
+      { 0.0838, 0.0923, 0.2131, 0.1340, 0.2297, 0.1966, 0.2422, 0.1608, 0.1848, 0.1720, 0.3154, 0.3695, 0.4012, 0.3754, 0.3919, 0.3819, 0.3558, 0.4141, 0.2817, 0.3665},
+      { 0.1314, 0.1282, 0.2493, 0.1667, 0.2858, 0.2409, 0.2903, 0.2339, 0.2390, 0.2383, 0.3375, 0.4050, 0.4378, 0.3708, 0.3821, 0.3558, 0.4139, 0.4346, 0.2953, 0.4088},
+      { 0.1556, 0.1618, 0.2840, 0.2086, 0.3257, 0.2538, 0.3046, 0.2463, 0.2627, 0.2365, 0.3387, 0.4415, 0.4834, 0.4000, 0.4168, 0.4141, 0.4346, 0.4767, 0.3125, 0.4313},
+      { 0.1495, 0.1572, 0.2384, 0.1713, 0.2485, 0.2180, 0.2522, 0.2222, 0.2312, 0.2138, 0.2348, 0.3238, 0.3295, 0.2946, 0.2969, 0.2817, 0.2953, 0.3125, 0.2575, 0.2982},
+      { 0.1706, 0.1479, 0.2632, 0.1933, 0.3022, 0.2573, 0.3167, 0.2716, 0.2567, 0.2585, 0.3109, 0.3950, 0.4101, 0.3831, 0.3809, 0.3665, 0.4088, 0.4313, 0.2982, 0.5148}},
+    {
+      { 0.1642, 0.1439, 0.3991, 0.3392, 0.3013, 0.2394, 0.2268, 0.2594, 0.2617, 0.2142, 0.2083, 0.2944, 0.2686, 0.1658, 0.1470, 0.1318, 0.1325, 0.1851, 0.1795, 0.1775},
+      { 0.1439, 0.1566, 0.3910, 0.3359, 0.2924, 0.2337, 0.2299, 0.2455, 0.2325, 0.1825, 0.2333, 0.2976, 0.2823, 0.1828, 0.1725, 0.1498, 0.1100, 0.1939, 0.1802, 0.1938},
+      { 0.3991, 0.3910, 0.2896, 0.2107, 0.3277, 0.2934, 0.3094, 0.3245, 0.3112, 0.2782, 0.3055, 0.3979, 0.4053, 0.2675, 0.2672, 0.2679, 0.2098, 0.3172, 0.2611, 0.2996},
+      { 0.3392, 0.3359, 0.2107, 0.1642, 0.2587, 0.2272, 0.2260, 0.2530, 0.2414, 0.1855, 0.2220, 0.3228, 0.3144, 0.2073, 0.1967, 0.1760, 0.1031, 0.2340, 0.1852, 0.1967},
+      { 0.3013, 0.2924, 0.3277, 0.2587, 0.3833, 0.3476, 0.3419, 0.3601, 0.3388, 0.3101, 0.3385, 0.4238, 0.4464, 0.3178, 0.3057, 0.3065, 0.3012, 0.3647, 0.2997, 0.3125},
+      { 0.2394, 0.2337, 0.2934, 0.2272, 0.3476, 0.2990, 0.3011, 0.3013, 0.2996, 0.2627, 0.2871, 0.3447, 0.3580, 0.2642, 0.2737, 0.2635, 0.2557, 0.3096, 0.2587, 0.2930},
+      { 0.2268, 0.2299, 0.3094, 0.2260, 0.3419, 0.3011, 0.3207, 0.3155, 0.3203, 0.2718, 0.3231, 0.3658, 0.3721, 0.3268, 0.3336, 0.3031, 0.2909, 0.3429, 0.2947, 0.3565},
+      { 0.2594, 0.2455, 0.3245, 0.2530, 0.3601, 0.3013, 0.3155, 0.3543, 0.3152, 0.2779, 0.3009, 0.3589, 0.3650, 0.2628, 0.2440, 0.2368, 0.2156, 0.2906, 0.2654, 0.3037},
+      { 0.2617, 0.2325, 0.3112, 0.2414, 0.3388, 0.2996, 0.3203, 0.3152, 0.3261, 0.2703, 0.3478, 0.3588, 0.4165, 0.2740, 0.2809, 0.2621, 0.2252, 0.3036, 0.2724, 0.2980},
+      { 0.2142, 0.1825, 0.2782, 0.1855, 0.3101, 0.2627, 0.2718, 0.2779, 0.2703, 0.2627, 0.2682, 0.3393, 0.3637, 0.2439, 0.2570, 0.2474, 0.2627, 0.2988, 0.2543, 0.2988},
+      { 0.2083, 0.2333, 0.3055, 0.2220, 0.3385, 0.2871, 0.3231, 0.3009, 0.3478, 0.2682, 0.2877, 0.4154, 0.4353, 0.3212, 0.3429, 0.3375, 0.4299, 0.3882, 0.2876, 0.3646},
+      { 0.2944, 0.2976, 0.3979, 0.3228, 0.4238, 0.3447, 0.3658, 0.3589, 0.3588, 0.3393, 0.4154, 0.4661, 0.5110, 0.4127, 0.4285, 0.4278, 0.3968, 0.4851, 0.3703, 0.4592},
+      { 0.2686, 0.2823, 0.4053, 0.3144, 0.4464, 0.3580, 0.3721, 0.3650, 0.4165, 0.3637, 0.4353, 0.5110, 0.5082, 0.4367, 0.4419, 0.4423, 0.4486, 0.5227, 0.3805, 0.4710},
+      { 0.1658, 0.1828, 0.2675, 0.2073, 0.3178, 0.2642, 0.3268, 0.2628, 0.2740, 0.2439, 0.3212, 0.4127, 0.4367, 0.4143, 0.4253, 0.4109, 0.3810, 0.4379, 0.3307, 0.4074},
+      { 0.1470, 0.1725, 0.2672, 0.1967, 0.3057, 0.2737, 0.3336, 0.2440, 0.2809, 0.2570, 0.3429, 0.4285, 0.4419, 0.4253, 0.4457, 0.4246, 0.4043, 0.4526, 0.3467, 0.4253},
+      { 0.1318, 0.1498, 0.2679, 0.1760, 0.3065, 0.2635, 0.3031, 0.2368, 0.2621, 0.2474, 0.3375, 0.4278, 0.4423, 0.4109, 0.4246, 0.4246, 0.3795, 0.4636, 0.3372, 0.4048},
+      { 0.1325, 0.1100, 0.2098, 0.1031, 0.3012, 0.2557, 0.2909, 0.2156, 0.2252, 0.2627, 0.4299, 0.3968, 0.4486, 0.3810, 0.4043, 0.3795, 0.4273, 0.4269, 0.3208, 0.4363},
+      { 0.1851, 0.1939, 0.3172, 0.2340, 0.3647, 0.3096, 0.3429, 0.2906, 0.3036, 0.2988, 0.3882, 0.4851, 0.5227, 0.4379, 0.4526, 0.4636, 0.4269, 0.5117, 0.3540, 0.4721},
+      { 0.1795, 0.1802, 0.2611, 0.1852, 0.2997, 0.2587, 0.2947, 0.2654, 0.2724, 0.2543, 0.2876, 0.3703, 0.3805, 0.3307, 0.3467, 0.3372, 0.3208, 0.3540, 0.2857, 0.3378},
+      { 0.1775, 0.1938, 0.2996, 0.1967, 0.3125, 0.2930, 0.3565, 0.3037, 0.2980, 0.2988, 0.3646, 0.4592, 0.4710, 0.4074, 0.4253, 0.4048, 0.4363, 0.4721, 0.3378, 0.5814}},
+    {
+      { 0.1973, 0.1836, 0.4190, 0.3624, 0.3252, 0.2734, 0.2624, 0.2872, 0.2916, 0.2471, 0.2465, 0.2916, 0.2623, 0.1939, 0.1904, 0.1881, 0.2102, 0.1459, 0.2150, 0.2306},
+      { 0.1836, 0.1836, 0.4053, 0.3454, 0.3000, 0.2665, 0.2596, 0.2737, 0.2812, 0.2329, 0.2575, 0.2784, 0.2839, 0.1995, 0.1985, 0.1853, 0.2106, 0.1539, 0.2143, 0.2372},
+      { 0.4190, 0.4053, 0.3228, 0.2566, 0.3410, 0.3249, 0.3323, 0.3496, 0.3417, 0.3150, 0.3196, 0.3868, 0.3964, 0.2987, 0.3028, 0.3022, 0.3064, 0.2820, 0.2992, 0.3064},
+      { 0.3624, 0.3454, 0.2566, 0.2085, 0.2710, 0.2586, 0.2605, 0.2832, 0.2793, 0.2246, 0.2388, 0.3121, 0.3155, 0.2318, 0.2279, 0.2152, 0.2045, 0.1987, 0.2321, 0.2380},
+      { 0.3252, 0.3000, 0.3410, 0.2710, 0.4268, 0.3553, 0.3645, 0.3415, 0.3372, 0.3102, 0.3810, 0.4183, 0.4559, 0.3475, 0.3385, 0.3445, 0.3734, 0.3309, 0.3247, 0.4026},
+      { 0.2734, 0.2665, 0.3249, 0.2586, 0.3553, 0.3238, 0.3182, 0.3292, 0.3276, 0.2807, 0.3117, 0.3374, 0.3590, 0.2819, 0.2814, 0.2795, 0.3169, 0.2722, 0.2841, 0.3188},
+      { 0.2624, 0.2596, 0.3323, 0.2605, 0.3645, 0.3182, 0.3323, 0.3366, 0.3349, 0.2843, 0.3230, 0.3711, 0.3819, 0.3271, 0.3412, 0.3193, 0.3515, 0.3083, 0.3109, 0.3541},
+      { 0.2872, 0.2737, 0.3496, 0.2832, 0.3415, 0.3292, 0.3366, 0.3677, 0.3390, 0.2942, 0.3253, 0.3355, 0.3518, 0.2741, 0.2634, 0.2612, 0.3034, 0.2475, 0.2851, 0.3327},
+      { 0.2916, 0.2812, 0.3417, 0.2793, 0.3372, 0.3276, 0.3349, 0.3390, 0.3565, 0.3114, 0.3184, 0.3448, 0.3643, 0.2866, 0.2834, 0.2762, 0.3024, 0.2652, 0.2902, 0.3116},
+      { 0.2471, 0.2329, 0.3150, 0.2246, 0.3102, 0.2807, 0.2843, 0.2942, 0.3114, 0.2763, 0.2838, 0.3110, 0.3236, 0.2533, 0.2491, 0.2578, 0.3145, 0.2294, 0.2688, 0.3103},
+      { 0.2465, 0.2575, 0.3196, 0.2388, 0.3810, 0.3117, 0.3230, 0.3253, 0.3184, 0.2838, 0.2938, 0.4855, 0.5042, 0.3167, 0.3309, 0.3387, 0.3882, 0.4550, 0.3038, 0.3751},
+      { 0.2916, 0.2784, 0.3868, 0.3121, 0.4183, 0.3374, 0.3711, 0.3355, 0.3448, 0.3110, 0.4855, 0.4507, 0.4679, 0.4260, 0.4496, 0.4438, 0.4527, 0.4356, 0.3757, 0.4366},
+      { 0.2623, 0.2839, 0.3964, 0.3155, 0.4559, 0.3590, 0.3819, 0.3518, 0.3643, 0.3236, 0.5042, 0.4679, 0.5364, 0.4331, 0.4568, 0.4656, 0.4744, 0.4558, 0.3907, 0.4857},
+      { 0.1939, 0.1995, 0.2987, 0.2318, 0.3475, 0.2819, 0.3271, 0.2741, 0.2866, 0.2533, 0.3167, 0.4260, 0.4331, 0.4295, 0.4447, 0.4318, 0.4176, 0.4149, 0.3327, 0.4340},
+      { 0.1904, 0.1985, 0.3028, 0.2279, 0.3385, 0.2814, 0.3412, 0.2634, 0.2834, 0.2491, 0.3309, 0.4496, 0.4568, 0.4447, 0.4608, 0.4545, 0.4410, 0.4385, 0.3453, 0.4273},
+      { 0.1881, 0.1853, 0.3022, 0.2152, 0.3445, 0.2795, 0.3193, 0.2612, 0.2762, 0.2578, 0.3387, 0.4438, 0.4656, 0.4318, 0.4545, 0.4459, 0.4310, 0.4264, 0.3371, 0.4163},
+      { 0.2102, 0.2106, 0.3064, 0.2045, 0.3734, 0.3169, 0.3515, 0.3034, 0.3024, 0.3145, 0.3882, 0.4527, 0.4744, 0.4176, 0.4410, 0.4310, 0.4863, 0.4460, 0.3531, 0.4485},
+      { 0.1459, 0.1539, 0.2820, 0.1987, 0.3309, 0.2722, 0.3083, 0.2475, 0.2652, 0.2294, 0.4550, 0.4356, 0.4558, 0.4149, 0.4385, 0.4264, 0.4460, 0.4550, 0.3368, 0.4470},
+      { 0.2150, 0.2143, 0.2992, 0.2321, 0.3247, 0.2841, 0.3109, 0.2851, 0.2902, 0.2688, 0.3038, 0.3757, 0.3907, 0.3327, 0.3453, 0.3371, 0.3531, 0.3368, 0.2964, 0.3402},
+      { 0.2306, 0.2372, 0.3064, 0.2380, 0.4026, 0.3188, 0.3541, 0.3327, 0.3116, 0.3103, 0.3751, 0.4366, 0.4857, 0.4340, 0.4273, 0.4163, 0.4485, 0.4470, 0.3402, 0.5710}},
+    {
+      { 0.0948, 0.1022, 0.3639, 0.3160, 0.2498, 0.1684, 0.1650, 0.2025, 0.2482, 0.1116, 0.1309, 0.2496, 0.2405, 0.1239, 0.1316, 0.1401, 0.1454, 0.1678, 0.0772, 0.1104},
+      { 0.1022, 0.1275, 0.3634, 0.3178, 0.2443, 0.1546, 0.1622, 0.2020, 0.2304, 0.0996, 0.1354, 0.2648, 0.2630, 0.1513, 0.1606, 0.1674, 0.1555, 0.1871, 0.1021, 0.0882},
+      { 0.3639, 0.3634, 0.2379, 0.1799, 0.2676, 0.2208, 0.2412, 0.2614, 0.2746, 0.1905, 0.2184, 0.3512, 0.3606, 0.2391, 0.2586, 0.2681, 0.2450, 0.3063, 0.1733, 0.2301},
+      { 0.3160, 0.3178, 0.1799, 0.1427, 0.2061, 0.1534, 0.1729, 0.2095, 0.2168, 0.1259, 0.1398, 0.3016, 0.2920, 0.1919, 0.1969, 0.1990, 0.1680, 0.2281, 0.1147, 0.1333},
+      { 0.2498, 0.2443, 0.2676, 0.2061, 0.3095, 0.2539, 0.2659, 0.2667, 0.2549, 0.2071, 0.2475, 0.3661, 0.3782, 0.2735, 0.2775, 0.2739, 0.2840, 0.3162, 0.1872, 0.2570},
+      { 0.1684, 0.1546, 0.2208, 0.1534, 0.2539, 0.2247, 0.2292, 0.2178, 0.2087, 0.1915, 0.2709, 0.2698, 0.2888, 0.2231, 0.2329, 0.2213, 0.2542, 0.2605, 0.1878, 0.2505},
+      { 0.1650, 0.1622, 0.2412, 0.1729, 0.2659, 0.2292, 0.2444, 0.2396, 0.2402, 0.2030, 0.2530, 0.3024, 0.3050, 0.2676, 0.2785, 0.2557, 0.2761, 0.2890, 0.2068, 0.2924},
+      { 0.2025, 0.2020, 0.2614, 0.2095, 0.2667, 0.2178, 0.2396, 0.2638, 0.2503, 0.1891, 0.2120, 0.2974, 0.3286, 0.2163, 0.2202, 0.2088, 0.2515, 0.2592, 0.1486, 0.2309},
+      { 0.2482, 0.2304, 0.2746, 0.2168, 0.2549, 0.2087, 0.2402, 0.2503, 0.2571, 0.1796, 0.2010, 0.3075, 0.3394, 0.2219, 0.2549, 0.2458, 0.2451, 0.2759, 0.1652, 0.1965},
+      { 0.1116, 0.0996, 0.1905, 0.1259, 0.2071, 0.1915, 0.2030, 0.1891, 0.1796, 0.1677, 0.2360, 0.2636, 0.2777, 0.2139, 0.2206, 0.2068, 0.2500, 0.2628, 0.1644, 0.2415},
+      { 0.1309, 0.1354, 0.2184, 0.1398, 0.2475, 0.2709, 0.2530, 0.2120, 0.2010, 0.2360, 0.2196, 0.3318, 0.3447, 0.2667, 0.2554, 0.2348, 0.2876, 0.3038, 0.2814, 0.3014},
+      { 0.2496, 0.2648, 0.3512, 0.3016, 0.3661, 0.2698, 0.3024, 0.2974, 0.3075, 0.2636, 0.3318, 0.3969, 0.4486, 0.3418, 0.3727, 0.3694, 0.3789, 0.4301, 0.2561, 0.3344},
+      { 0.2405, 0.2630, 0.3606, 0.2920, 0.3782, 0.2888, 0.3050, 0.3286, 0.3394, 0.2777, 0.3447, 0.4486, 0.4505, 0.3565, 0.3827, 0.3842, 0.4258, 0.4647, 0.2584, 0.3376},
+      { 0.1239, 0.1513, 0.2391, 0.1919, 0.2735, 0.2231, 0.2676, 0.2163, 0.2219, 0.2139, 0.2667, 0.3418, 0.3565, 0.3540, 0.3580, 0.3428, 0.3282, 0.3672, 0.2810, 0.3458},
+      { 0.1316, 0.1606, 0.2586, 0.1969, 0.2775, 0.2329, 0.2785, 0.2202, 0.2549, 0.2206, 0.2554, 0.3727, 0.3827, 0.3580, 0.3789, 0.3592, 0.3438, 0.3906, 0.2696, 0.3323},
+      { 0.1401, 0.1674, 0.2681, 0.1990, 0.2739, 0.2213, 0.2557, 0.2088, 0.2458, 0.2068, 0.2348, 0.3694, 0.3842, 0.3428, 0.3592, 0.3609, 0.3427, 0.3878, 0.2494, 0.3124},
+      { 0.1454, 0.1555, 0.2450, 0.1680, 0.2840, 0.2542, 0.2761, 0.2515, 0.2451, 0.2500, 0.2876, 0.3789, 0.4258, 0.3282, 0.3438, 0.3427, 0.3822, 0.4148, 0.2568, 0.3431},
+      { 0.1678, 0.1871, 0.3063, 0.2281, 0.3162, 0.2605, 0.2890, 0.2592, 0.2759, 0.2628, 0.3038, 0.4301, 0.4647, 0.3672, 0.3906, 0.3878, 0.4148, 0.4507, 0.2634, 0.3684},
+      { 0.0772, 0.1021, 0.1733, 0.1147, 0.1872, 0.1878, 0.2068, 0.1486, 0.1652, 0.1644, 0.2814, 0.2561, 0.2584, 0.2810, 0.2696, 0.2494, 0.2568, 0.2634, 0.2580, 0.2894},
+      { 0.1104, 0.0882, 0.2301, 0.1333, 0.2570, 0.2505, 0.2924, 0.2309, 0.1965, 0.2415, 0.3014, 0.3344, 0.3376, 0.3458, 0.3323, 0.3124, 0.3431, 0.3684, 0.2894, 0.4937}},
+    {
+      { 0.1295, 0.1188, 0.3888, 0.3379, 0.2828, 0.1961, 0.2019, 0.2515, 0.2441, 0.1974, 0.2317, 0.2848, 0.2635, 0.1502, 0.1526, 0.1496, 0.1824, 0.2073, 0.1259, 0.0580},
+      { 0.1188, 0.1459, 0.3879, 0.3335, 0.2930, 0.1786, 0.2081, 0.2114, 0.2358, 0.1538, 0.2119, 0.2901, 0.2839, 0.1627, 0.1768, 0.1735, 0.1606, 0.2087, 0.1185, 0.0323},
+      { 0.3888, 0.3879, 0.2941, 0.2307, 0.3117, 0.2870, 0.2836, 0.3125, 0.3229, 0.2393, 0.3075, 0.3774, 0.3901, 0.2626, 0.2827, 0.2835, 0.2743, 0.3214, 0.2261, 0.2024},
+      { 0.3379, 0.3335, 0.2307, 0.1905, 0.2398, 0.1867, 0.2121, 0.2411, 0.2474, 0.1683, 0.2288, 0.3263, 0.3093, 0.2089, 0.2222, 0.2152, 0.2017, 0.2605, 0.1624, 0.0841},
+      { 0.2828, 0.2930, 0.3117, 0.2398, 0.3882, 0.3223, 0.3417, 0.3142, 0.2977, 0.2784, 0.3408, 0.4160, 0.4191, 0.3020, 0.3183, 0.3109, 0.3247, 0.3898, 0.2552, 0.1890},
+      { 0.1961, 0.1786, 0.2870, 0.1867, 0.3223, 0.2822, 0.2842, 0.2864, 0.2738, 0.2549, 0.3750, 0.3299, 0.3576, 0.2666, 0.2825, 0.2614, 0.2775, 0.3045, 0.2501, 0.1908},
+      { 0.2019, 0.2081, 0.2836, 0.2121, 0.3417, 0.2842, 0.3260, 0.2909, 0.2988, 0.2631, 0.3503, 0.3667, 0.3592, 0.3171, 0.3337, 0.3042, 0.3375, 0.3658, 0.2789, 0.2063},
+      { 0.2515, 0.2114, 0.3125, 0.2411, 0.3142, 0.2864, 0.2909, 0.3765, 0.3145, 0.2747, 0.3488, 0.3189, 0.3536, 0.2568, 0.2528, 0.2508, 0.2946, 0.2986, 0.2291, 0.1687},
+      { 0.2441, 0.2358, 0.3229, 0.2474, 0.2977, 0.2738, 0.2988, 0.3145, 0.2930, 0.2578, 0.2916, 0.3590, 0.3676, 0.2528, 0.2703, 0.2633, 0.2863, 0.2843, 0.2147, 0.1650},
+      { 0.1974, 0.1538, 0.2393, 0.1683, 0.2784, 0.2549, 0.2631, 0.2747, 0.2578, 0.2657, 0.2784, 0.3127, 0.3781, 0.2683, 0.2782, 0.2747, 0.3167, 0.3090, 0.2392, 0.2043},
+      { 0.2317, 0.2119, 0.3075, 0.2288, 0.3408, 0.3750, 0.3503, 0.3488, 0.2916, 0.2784, 0.2982, 0.4030, 0.4568, 0.3390, 0.3262, 0.3109, 0.3646, 0.3751, 0.3014, 0.3869},
+      { 0.2848, 0.2901, 0.3774, 0.3263, 0.4160, 0.3299, 0.3667, 0.3189, 0.3590, 0.3127, 0.4030, 0.4112, 0.4624, 0.3949, 0.4236, 0.4227, 0.4386, 0.4670, 0.3332, 0.2940},
+      { 0.2635, 0.2839, 0.3901, 0.3093, 0.4191, 0.3576, 0.3592, 0.3536, 0.3676, 0.3781, 0.4568, 0.4624, 0.5583, 0.4179, 0.4204, 0.4467, 0.4766, 0.5160, 0.3429, 0.3334},
+      { 0.1502, 0.1627, 0.2626, 0.2089, 0.3020, 0.2666, 0.3171, 0.2568, 0.2528, 0.2683, 0.3390, 0.3949, 0.4179, 0.4091, 0.4189, 0.4070, 0.3797, 0.4130, 0.3441, 0.2848},
+      { 0.1526, 0.1768, 0.2827, 0.2222, 0.3183, 0.2825, 0.3337, 0.2528, 0.2703, 0.2782, 0.3262, 0.4236, 0.4204, 0.4189, 0.4662, 0.4272, 0.4625, 0.4372, 0.3575, 0.3140},
+      { 0.1496, 0.1735, 0.2835, 0.2152, 0.3109, 0.2614, 0.3042, 0.2508, 0.2633, 0.2747, 0.3109, 0.4227, 0.4467, 0.4070, 0.4272, 0.4141, 0.4140, 0.4464, 0.3296, 0.2682},
+      { 0.1824, 0.1606, 0.2743, 0.2017, 0.3247, 0.2775, 0.3375, 0.2946, 0.2863, 0.3167, 0.3646, 0.4386, 0.4766, 0.3797, 0.4625, 0.4140, 0.4557, 0.4599, 0.3568, 0.2867},
+      { 0.2073, 0.2087, 0.3214, 0.2605, 0.3898, 0.3045, 0.3658, 0.2986, 0.2843, 0.3090, 0.3751, 0.4670, 0.5160, 0.4130, 0.4372, 0.4464, 0.4599, 0.4991, 0.3427, 0.3517},
+      { 0.1259, 0.1185, 0.2261, 0.1624, 0.2552, 0.2501, 0.2789, 0.2291, 0.2147, 0.2392, 0.3014, 0.3332, 0.3429, 0.3441, 0.3575, 0.3296, 0.3568, 0.3427, 0.2901, 0.2241},
+      { 0.0580, 0.0323, 0.2024, 0.0841, 0.1890, 0.1908, 0.2063, 0.1687, 0.1650, 0.2043, 0.3869, 0.2940, 0.3334, 0.2848, 0.3140, 0.2682, 0.2867, 0.3517, 0.2241, 0.4487}}},
+  {
+    {
+      { 0.2061, 0.1838, 0.4002, 0.3470, 0.4401, 0.2985, 0.3101, 0.3288, 0.2960, 0.2673, 0.2613, 0.5232, 0.4367, 0.3126, 0.3243, 0.3112, 0.3486, 0.4075, 0.2708, 0.3493},
+      { 0.1838, 0.2143, 0.4313, 0.3790, 0.3395, 0.2763, 0.2937, 0.2916, 0.2918, 0.2453, 0.2374, 0.3207, 0.3654, 0.2787, 0.2883, 0.2857, 0.2920, 0.3116, 0.2622, 0.2864},
+      { 0.4002, 0.4313, 0.3131, 0.2400, 0.3081, 0.3098, 0.3234, 0.3044, 0.3327, 0.2905, 0.2918, 0.3093, 0.3808, 0.3278, 0.3417, 0.3362, 0.3341, 0.3352, 0.2996, 0.3386},
+      { 0.3470, 0.3790, 0.2400, 0.2133, 0.2479, 0.2507, 0.2679, 0.2680, 0.2786, 0.2225, 0.2084, 0.2546, 0.2915, 0.2577, 0.2632, 0.2658, 0.2711, 0.2653, 0.2383, 0.2527},
+      { 0.4401, 0.3395, 0.3081, 0.2479, 0.3819, 0.3206, 0.3315, 0.3117, 0.2971, 0.2745, 0.2697, 0.4071, 0.4247, 0.3445, 0.3627, 0.3536, 0.3705, 0.3998, 0.2809, 0.3851},
+      { 0.2985, 0.2763, 0.3098, 0.2507, 0.3206, 0.2844, 0.2900, 0.2878, 0.2955, 0.2569, 0.2613, 0.2929, 0.3434, 0.2886, 0.2908, 0.2837, 0.3103, 0.3202, 0.2660, 0.3160},
+      { 0.3101, 0.2937, 0.3234, 0.2679, 0.3315, 0.2900, 0.3238, 0.2919, 0.3147, 0.2594, 0.2649, 0.2919, 0.3628, 0.3274, 0.3426, 0.3262, 0.3375, 0.3388, 0.2737, 0.3368},
+      { 0.3288, 0.2916, 0.3044, 0.2680, 0.3117, 0.2878, 0.2919, 0.3296, 0.3024, 0.2709, 0.2786, 0.3251, 0.3712, 0.2824, 0.2853, 0.2783, 0.3111, 0.3289, 0.2582, 0.3085},
+      { 0.2960, 0.2918, 0.3327, 0.2786, 0.2971, 0.2955, 0.3147, 0.3024, 0.3109, 0.2519, 0.2724, 0.2888, 0.3698, 0.3044, 0.3158, 0.3172, 0.3275, 0.3301, 0.2741, 0.3105},
+      { 0.2673, 0.2453, 0.2905, 0.2225, 0.2745, 0.2569, 0.2594, 0.2709, 0.2519, 0.2401, 0.2456, 0.2395, 0.3083, 0.2468, 0.2459, 0.2482, 0.2956, 0.2624, 0.2421, 0.2995},
+      { 0.2613, 0.2374, 0.2918, 0.2084, 0.2697, 0.2613, 0.2649, 0.2786, 0.2724, 0.2456, 0.2701, 0.2726, 0.3547, 0.2589, 0.2639, 0.2646, 0.2944, 0.2916, 0.2496, 0.2848},
+      { 0.5232, 0.3207, 0.3093, 0.2546, 0.4071, 0.2929, 0.2919, 0.3251, 0.2888, 0.2395, 0.2726, 0.3988, 0.4327, 0.3708, 0.3871, 0.3723, 0.3898, 0.4360, 0.2793, 0.4016},
+      { 0.4367, 0.3654, 0.3808, 0.2915, 0.4247, 0.3434, 0.3628, 0.3712, 0.3698, 0.3083, 0.3547, 0.4327, 0.4856, 0.4286, 0.4461, 0.4249, 0.4677, 0.5038, 0.3483, 0.4510},
+      { 0.3126, 0.2787, 0.3278, 0.2577, 0.3445, 0.2886, 0.3274, 0.2824, 0.3044, 0.2468, 0.2589, 0.3708, 0.4286, 0.4098, 0.4302, 0.4103, 0.4027, 0.4187, 0.3073, 0.3834},
+      { 0.3243, 0.2883, 0.3417, 0.2632, 0.3627, 0.2908, 0.3426, 0.2853, 0.3158, 0.2459, 0.2639, 0.3871, 0.4461, 0.4302, 0.4586, 0.4412, 0.4276, 0.4320, 0.3102, 0.4001},
+      { 0.3112, 0.2857, 0.3362, 0.2658, 0.3536, 0.2837, 0.3262, 0.2783, 0.3172, 0.2482, 0.2646, 0.3723, 0.4249, 0.4103, 0.4412, 0.4335, 0.4212, 0.4295, 0.3104, 0.3963},
+      { 0.3486, 0.2920, 0.3341, 0.2711, 0.3705, 0.3103, 0.3375, 0.3111, 0.3275, 0.2956, 0.2944, 0.3898, 0.4677, 0.4027, 0.4276, 0.4212, 0.4520, 0.4575, 0.3286, 0.4245},
+      { 0.4075, 0.3116, 0.3352, 0.2653, 0.3998, 0.3202, 0.3388, 0.3289, 0.3301, 0.2624, 0.2916, 0.4360, 0.5038, 0.4187, 0.4320, 0.4295, 0.4575, 0.4850, 0.3334, 0.4436},
+      { 0.2708, 0.2622, 0.2996, 0.2383, 0.2809, 0.2660, 0.2737, 0.2582, 0.2741, 0.2421, 0.2496, 0.2793, 0.3483, 0.3073, 0.3102, 0.3104, 0.3286, 0.3334, 0.2931, 0.3114},
+      { 0.3493, 0.2864, 0.3386, 0.2527, 0.3851, 0.3160, 0.3368, 0.3085, 0.3105, 0.2995, 0.2848, 0.4016, 0.4510, 0.3834, 0.4001, 0.3963, 0.4245, 0.4436, 0.3114, 0.6443}},
+    {
+      { 0.2395, 0.2204, 0.4341, 0.3707, 0.3524, 0.2900, 0.2942, 0.3005, 0.3163, 0.2648, 0.2491, 0.3207, 0.3452, 0.2636, 0.2736, 0.2720, 0.2855, 0.2807, 0.2603, 0.3038},
+      { 0.2204, 0.2333, 0.4447, 0.3813, 0.4095, 0.3037, 0.3183, 0.3153, 0.3235, 0.2596, 0.2631, 0.5197, 0.4345, 0.3172, 0.3334, 0.3396, 0.3529, 0.4031, 0.2877, 0.3306},
+      { 0.4341, 0.4447, 0.3136, 0.2515, 0.3117, 0.3227, 0.3431, 0.3156, 0.3384, 0.2987, 0.2946, 0.3154, 0.3960, 0.3455, 0.3584, 0.3585, 0.3514, 0.3398, 0.3177, 0.3377},
+      { 0.3707, 0.3813, 0.2515, 0.2307, 0.2647, 0.2715, 0.2877, 0.2809, 0.2878, 0.2320, 0.2214, 0.2819, 0.3316, 0.2831, 0.2912, 0.2886, 0.2838, 0.2715, 0.2627, 0.2782},
+      { 0.3524, 0.4095, 0.3117, 0.2647, 0.3546, 0.3261, 0.3513, 0.3032, 0.3181, 0.2850, 0.2856, 0.3719, 0.4207, 0.3576, 0.3666, 0.3607, 0.3820, 0.3791, 0.2893, 0.3882},
+      { 0.2900, 0.3037, 0.3227, 0.2715, 0.3261, 0.2935, 0.3002, 0.3046, 0.3046, 0.2685, 0.2562, 0.2671, 0.3377, 0.3016, 0.2942, 0.2831, 0.3080, 0.2969, 0.2719, 0.3215},
+      { 0.2942, 0.3183, 0.3431, 0.2877, 0.3513, 0.3002, 0.3522, 0.3218, 0.3317, 0.2758, 0.2629, 0.3010, 0.3675, 0.3488, 0.3527, 0.3356, 0.3377, 0.3349, 0.2793, 0.3298},
+      { 0.3005, 0.3153, 0.3156, 0.2809, 0.3032, 0.3046, 0.3218, 0.3466, 0.3193, 0.2874, 0.2799, 0.2735, 0.3564, 0.2889, 0.2911, 0.2795, 0.3185, 0.2926, 0.2698, 0.2970},
+      { 0.3163, 0.3235, 0.3384, 0.2878, 0.3181, 0.3046, 0.3317, 0.3193, 0.3291, 0.2690, 0.2798, 0.3453, 0.4114, 0.3134, 0.3239, 0.3368, 0.3450, 0.3508, 0.2933, 0.3238},
+      { 0.2648, 0.2596, 0.2987, 0.2320, 0.2850, 0.2685, 0.2758, 0.2874, 0.2690, 0.2603, 0.2599, 0.2512, 0.3262, 0.2682, 0.2758, 0.2738, 0.2993, 0.2694, 0.2583, 0.2988},
+      { 0.2491, 0.2631, 0.2946, 0.2214, 0.2856, 0.2562, 0.2629, 0.2799, 0.2798, 0.2599, 0.2615, 0.2785, 0.3682, 0.2575, 0.2600, 0.2692, 0.2976, 0.2784, 0.2648, 0.2901},
+      { 0.3207, 0.5197, 0.3154, 0.2819, 0.3719, 0.2671, 0.3010, 0.2735, 0.3453, 0.2512, 0.2785, 0.4034, 0.4590, 0.3914, 0.4078, 0.3851, 0.4102, 0.4430, 0.2578, 0.4062},
+      { 0.3452, 0.4345, 0.3960, 0.3316, 0.4207, 0.3377, 0.3675, 0.3564, 0.4114, 0.3262, 0.3682, 0.4590, 0.5126, 0.4259, 0.4569, 0.4407, 0.4803, 0.5017, 0.3394, 0.4762},
+      { 0.2636, 0.3172, 0.3455, 0.2831, 0.3576, 0.3016, 0.3488, 0.2889, 0.3134, 0.2682, 0.2575, 0.3914, 0.4259, 0.4280, 0.4372, 0.4140, 0.4072, 0.4218, 0.3056, 0.4052},
+      { 0.2736, 0.3334, 0.3584, 0.2912, 0.3666, 0.2942, 0.3527, 0.2911, 0.3239, 0.2758, 0.2600, 0.4078, 0.4569, 0.4372, 0.4573, 0.4374, 0.4300, 0.4393, 0.3100, 0.4334},
+      { 0.2720, 0.3396, 0.3585, 0.2886, 0.3607, 0.2831, 0.3356, 0.2795, 0.3368, 0.2738, 0.2692, 0.3851, 0.4407, 0.4140, 0.4374, 0.4377, 0.4267, 0.4331, 0.3155, 0.4058},
+      { 0.2855, 0.3529, 0.3514, 0.2838, 0.3820, 0.3080, 0.3377, 0.3185, 0.3450, 0.2993, 0.2976, 0.4102, 0.4803, 0.4072, 0.4300, 0.4267, 0.4487, 0.4688, 0.3207, 0.4185},
+      { 0.2807, 0.4031, 0.3398, 0.2715, 0.3791, 0.2969, 0.3349, 0.2926, 0.3508, 0.2694, 0.2784, 0.4430, 0.5017, 0.4218, 0.4393, 0.4331, 0.4688, 0.4854, 0.3038, 0.4634},
+      { 0.2603, 0.2877, 0.3177, 0.2627, 0.2893, 0.2719, 0.2793, 0.2698, 0.2933, 0.2583, 0.2648, 0.2578, 0.3394, 0.3056, 0.3100, 0.3155, 0.3207, 0.3038, 0.3137, 0.3070},
+      { 0.3038, 0.3306, 0.3377, 0.2782, 0.3882, 0.3215, 0.3298, 0.2970, 0.3238, 0.2988, 0.2901, 0.4062, 0.4762, 0.4052, 0.4334, 0.4058, 0.4185, 0.4634, 0.3070, 0.5851}},
+    {
+      { 0.3009, 0.2785, 0.4630, 0.4386, 0.3894, 0.3673, 0.3599, 0.3714, 0.3665, 0.3356, 0.3358, 0.3093, 0.3601, 0.3124, 0.3084, 0.3132, 0.3281, 0.3018, 0.3248, 0.3481},
+      { 0.2785, 0.2927, 0.4654, 0.4598, 0.3746, 0.3510, 0.3656, 0.3514, 0.3725, 0.3020, 0.3162, 0.3154, 0.3973, 0.3450, 0.3509, 0.3467, 0.3481, 0.3319, 0.3340, 0.3372},
+      { 0.4630, 0.4654, 0.4072, 0.3361, 0.4791, 0.4095, 0.4205, 0.4359, 0.4376, 0.3781, 0.3961, 0.5909, 0.5530, 0.4106, 0.4213, 0.4265, 0.4518, 0.5191, 0.3831, 0.4389},
+      { 0.4386, 0.4598, 0.3361, 0.3096, 0.3743, 0.3699, 0.3747, 0.3784, 0.3827, 0.3259, 0.3173, 0.4349, 0.4495, 0.3670, 0.3725, 0.3717, 0.3730, 0.3973, 0.3531, 0.3707},
+      { 0.3894, 0.3746, 0.4791, 0.3743, 0.4523, 0.4042, 0.4160, 0.4020, 0.3855, 0.3583, 0.3798, 0.4470, 0.4965, 0.4162, 0.4175, 0.4248, 0.4485, 0.4544, 0.3663, 0.4609},
+      { 0.3673, 0.3510, 0.4095, 0.3699, 0.4042, 0.3761, 0.3860, 0.3910, 0.3888, 0.3626, 0.3510, 0.3419, 0.4169, 0.3717, 0.3689, 0.3637, 0.3912, 0.3848, 0.3504, 0.3997},
+      { 0.3599, 0.3656, 0.4205, 0.3747, 0.4160, 0.3860, 0.4309, 0.3963, 0.4043, 0.3512, 0.3595, 0.3690, 0.4374, 0.4209, 0.4145, 0.3968, 0.4093, 0.3955, 0.3610, 0.4168},
+      { 0.3714, 0.3514, 0.4359, 0.3784, 0.4020, 0.3910, 0.3963, 0.4149, 0.4006, 0.3705, 0.3697, 0.3512, 0.4321, 0.3591, 0.3618, 0.3556, 0.3913, 0.3732, 0.3589, 0.3887},
+      { 0.3665, 0.3725, 0.4376, 0.3827, 0.3855, 0.3888, 0.4043, 0.4006, 0.4047, 0.3512, 0.3687, 0.3924, 0.4648, 0.3776, 0.3918, 0.3972, 0.4166, 0.4094, 0.3675, 0.3928},
+      { 0.3356, 0.3020, 0.3781, 0.3259, 0.3583, 0.3626, 0.3512, 0.3705, 0.3512, 0.3583, 0.3571, 0.3309, 0.4021, 0.3401, 0.3452, 0.3442, 0.3744, 0.3467, 0.3441, 0.3754},
+      { 0.3358, 0.3162, 0.3961, 0.3173, 0.3798, 0.3510, 0.3595, 0.3697, 0.3687, 0.3571, 0.3762, 0.3718, 0.4523, 0.3480, 0.3509, 0.3589, 0.3979, 0.3868, 0.3512, 0.3774},
+      { 0.3093, 0.3154, 0.5909, 0.4349, 0.4470, 0.3419, 0.3690, 0.3512, 0.3924, 0.3309, 0.3718, 0.4753, 0.5055, 0.4393, 0.4654, 0.4497, 0.4746, 0.4950, 0.3407, 0.4734},
+      { 0.3601, 0.3973, 0.5530, 0.4495, 0.4965, 0.4169, 0.4374, 0.4321, 0.4648, 0.4021, 0.4523, 0.5055, 0.5684, 0.4916, 0.5149, 0.5080, 0.5726, 0.5570, 0.4107, 0.5463},
+      { 0.3124, 0.3450, 0.4106, 0.3670, 0.4162, 0.3717, 0.4209, 0.3591, 0.3776, 0.3401, 0.3480, 0.4393, 0.4916, 0.4835, 0.4825, 0.4641, 0.4673, 0.4678, 0.3921, 0.4791},
+      { 0.3084, 0.3509, 0.4213, 0.3725, 0.4175, 0.3689, 0.4145, 0.3618, 0.3918, 0.3452, 0.3509, 0.4654, 0.5149, 0.4825, 0.4997, 0.4847, 0.4838, 0.4917, 0.3912, 0.4805},
+      { 0.3132, 0.3467, 0.4265, 0.3717, 0.4248, 0.3637, 0.3968, 0.3556, 0.3972, 0.3442, 0.3589, 0.4497, 0.5080, 0.4641, 0.4847, 0.4883, 0.4749, 0.4768, 0.3947, 0.4622},
+      { 0.3281, 0.3481, 0.4518, 0.3730, 0.4485, 0.3912, 0.4093, 0.3913, 0.4166, 0.3744, 0.3979, 0.4746, 0.5726, 0.4673, 0.4838, 0.4749, 0.5171, 0.5210, 0.4065, 0.4873},
+      { 0.3018, 0.3319, 0.5191, 0.3973, 0.4544, 0.3848, 0.3955, 0.3732, 0.4094, 0.3467, 0.3868, 0.4950, 0.5570, 0.4678, 0.4917, 0.4768, 0.5210, 0.5256, 0.3843, 0.5011},
+      { 0.3248, 0.3340, 0.3831, 0.3531, 0.3663, 0.3504, 0.3610, 0.3589, 0.3675, 0.3441, 0.3512, 0.3407, 0.4107, 0.3921, 0.3912, 0.3947, 0.4065, 0.3843, 0.3893, 0.3844},
+      { 0.3481, 0.3372, 0.4389, 0.3707, 0.4609, 0.3997, 0.4168, 0.3887, 0.3928, 0.3754, 0.3774, 0.4734, 0.5463, 0.4791, 0.4805, 0.4622, 0.4873, 0.5011, 0.3844, 0.6174}},
+    {
+      { 0.2276, 0.2199, 0.4546, 0.3887, 0.3345, 0.2950, 0.2985, 0.3001, 0.3209, 0.2589, 0.2601, 0.2546, 0.2970, 0.2601, 0.2538, 0.2575, 0.2748, 0.2423, 0.2723, 0.2909},
+      { 0.2199, 0.2421, 0.4748, 0.4037, 0.3370, 0.2933, 0.3116, 0.2875, 0.3324, 0.2396, 0.2593, 0.2819, 0.3535, 0.3025, 0.3106, 0.3170, 0.3098, 0.2850, 0.2938, 0.2982},
+      { 0.4546, 0.4748, 0.3420, 0.3000, 0.3883, 0.3673, 0.3787, 0.3665, 0.3843, 0.3304, 0.3413, 0.4349, 0.4654, 0.3928, 0.4045, 0.4038, 0.3883, 0.4200, 0.3705, 0.4030},
+      { 0.3887, 0.4037, 0.3000, 0.2665, 0.3891, 0.3380, 0.3455, 0.3374, 0.3533, 0.2859, 0.2769, 0.5326, 0.4472, 0.3518, 0.3627, 0.3614, 0.4040, 0.4308, 0.3319, 0.3912},
+      { 0.3345, 0.3370, 0.3883, 0.3891, 0.4054, 0.3504, 0.3771, 0.3290, 0.3459, 0.2994, 0.3248, 0.4057, 0.4564, 0.3918, 0.3854, 0.3960, 0.3980, 0.4055, 0.3262, 0.4045},
+      { 0.2950, 0.2933, 0.3673, 0.3380, 0.3504, 0.3109, 0.3243, 0.3193, 0.3265, 0.2905, 0.2840, 0.2844, 0.3520, 0.3210, 0.3177, 0.3079, 0.3325, 0.3213, 0.2997, 0.3376},
+      { 0.2985, 0.3116, 0.3787, 0.3455, 0.3771, 0.3243, 0.3750, 0.3377, 0.3476, 0.2872, 0.2910, 0.3190, 0.3713, 0.3805, 0.3767, 0.3575, 0.3502, 0.3423, 0.3177, 0.3636},
+      { 0.3001, 0.2875, 0.3665, 0.3374, 0.3290, 0.3193, 0.3377, 0.3552, 0.3371, 0.2898, 0.2945, 0.3114, 0.3669, 0.3139, 0.3126, 0.3019, 0.3233, 0.3214, 0.3015, 0.3329},
+      { 0.3209, 0.3324, 0.3843, 0.3533, 0.3459, 0.3265, 0.3476, 0.3371, 0.3626, 0.2899, 0.3007, 0.3476, 0.4246, 0.3455, 0.3473, 0.3667, 0.3673, 0.3592, 0.3266, 0.3509},
+      { 0.2589, 0.2396, 0.3304, 0.2859, 0.2994, 0.2905, 0.2872, 0.2898, 0.2899, 0.2795, 0.2886, 0.2562, 0.3259, 0.2784, 0.2778, 0.2951, 0.3034, 0.2750, 0.2875, 0.3174},
+      { 0.2601, 0.2593, 0.3413, 0.2769, 0.3248, 0.2840, 0.2910, 0.2945, 0.3007, 0.2886, 0.3003, 0.3086, 0.3947, 0.2975, 0.2920, 0.3032, 0.3228, 0.3121, 0.3016, 0.3263},
+      { 0.2546, 0.2819, 0.4349, 0.5326, 0.4057, 0.2844, 0.3190, 0.3114, 0.3476, 0.2562, 0.3086, 0.4232, 0.4541, 0.4050, 0.4309, 0.4213, 0.4377, 0.4511, 0.2867, 0.4274},
+      { 0.2970, 0.3535, 0.4654, 0.4472, 0.4564, 0.3520, 0.3713, 0.3669, 0.4246, 0.3259, 0.3947, 0.4541, 0.5228, 0.4385, 0.4644, 0.4560, 0.4956, 0.5073, 0.3713, 0.5020},
+      { 0.2601, 0.3025, 0.3928, 0.3518, 0.3918, 0.3210, 0.3805, 0.3139, 0.3455, 0.2784, 0.2975, 0.4050, 0.4385, 0.4507, 0.4610, 0.4353, 0.4186, 0.4212, 0.3452, 0.4300},
+      { 0.2538, 0.3106, 0.4045, 0.3627, 0.3854, 0.3177, 0.3767, 0.3126, 0.3473, 0.2778, 0.2920, 0.4309, 0.4644, 0.4610, 0.4825, 0.4502, 0.4368, 0.4419, 0.3489, 0.4363},
+      { 0.2575, 0.3170, 0.4038, 0.3614, 0.3960, 0.3079, 0.3575, 0.3019, 0.3667, 0.2951, 0.3032, 0.4213, 0.4560, 0.4353, 0.4502, 0.4505, 0.4310, 0.4374, 0.3520, 0.4270},
+      { 0.2748, 0.3098, 0.3883, 0.4040, 0.3980, 0.3325, 0.3502, 0.3233, 0.3673, 0.3034, 0.3228, 0.4377, 0.4956, 0.4186, 0.4368, 0.4310, 0.4554, 0.4674, 0.3489, 0.4220},
+      { 0.2423, 0.2850, 0.4200, 0.4308, 0.4055, 0.3213, 0.3423, 0.3214, 0.3592, 0.2750, 0.3121, 0.4511, 0.5073, 0.4212, 0.4419, 0.4374, 0.4674, 0.4783, 0.3179, 0.4665},
+      { 0.2723, 0.2938, 0.3705, 0.3319, 0.3262, 0.2997, 0.3177, 0.3015, 0.3266, 0.2875, 0.3016, 0.2867, 0.3713, 0.3452, 0.3489, 0.3520, 0.3489, 0.3179, 0.3562, 0.3360},
+      { 0.2909, 0.2982, 0.4030, 0.3912, 0.4045, 0.3376, 0.3636, 0.3329, 0.3509, 0.3174, 0.3263, 0.4274, 0.5020, 0.4300, 0.4363, 0.4270, 0.4220, 0.4665, 0.3360, 0.5886}},
+    {
+      { 0.3419, 0.2962, 0.5283, 0.4669, 0.3575, 0.3974, 0.3834, 0.4065, 0.3930, 0.3669, 0.3577, 0.4071, 0.4104, 0.3482, 0.3519, 0.3543, 0.3743, 0.3587, 0.3508, 0.3856},
+      { 0.2962, 0.2934, 0.5234, 0.4699, 0.3344, 0.3750, 0.3913, 0.3618, 0.3841, 0.3259, 0.3442, 0.3719, 0.4418, 0.3849, 0.3848, 0.3740, 0.3819, 0.3824, 0.3555, 0.3851},
+      { 0.5283, 0.5234, 0.4014, 0.3407, 0.3574, 0.4384, 0.4425, 0.4196, 0.4343, 0.4003, 0.3883, 0.4470, 0.4940, 0.4367, 0.4355, 0.4379, 0.4467, 0.4607, 0.4044, 0.4431},
+      { 0.4669, 0.4699, 0.3407, 0.3085, 0.2768, 0.3741, 0.3862, 0.3721, 0.3888, 0.3273, 0.3245, 0.4057, 0.4295, 0.3873, 0.3929, 0.3828, 0.3925, 0.3963, 0.3575, 0.3822},
+      { 0.3575, 0.3344, 0.3574, 0.2768, 0.5493, 0.4139, 0.4022, 0.4315, 0.3859, 0.3661, 0.3716, 0.6693, 0.5278, 0.3889, 0.4117, 0.4028, 0.4681, 0.5436, 0.3585, 0.4528},
+      { 0.3974, 0.3750, 0.4384, 0.3741, 0.4139, 0.4164, 0.4217, 0.4260, 0.4163, 0.3874, 0.3810, 0.4035, 0.4577, 0.4194, 0.4189, 0.4053, 0.4379, 0.4375, 0.3894, 0.4494},
+      { 0.3834, 0.3913, 0.4425, 0.3862, 0.4022, 0.4217, 0.4700, 0.4281, 0.4308, 0.3738, 0.3875, 0.4170, 0.4721, 0.4615, 0.4633, 0.4447, 0.4525, 0.4508, 0.3987, 0.4602},
+      { 0.4065, 0.3618, 0.4196, 0.3721, 0.4315, 0.4260, 0.4281, 0.5119, 0.4265, 0.4020, 0.4142, 0.4605, 0.4936, 0.3908, 0.3943, 0.3919, 0.4405, 0.4632, 0.3760, 0.4327},
+      { 0.3930, 0.3841, 0.4343, 0.3888, 0.3859, 0.4163, 0.4308, 0.4265, 0.4380, 0.3793, 0.3915, 0.4865, 0.5161, 0.4223, 0.4331, 0.4267, 0.4620, 0.4709, 0.3925, 0.4469},
+      { 0.3669, 0.3259, 0.4003, 0.3273, 0.3661, 0.3874, 0.3738, 0.4020, 0.3793, 0.3972, 0.3722, 0.3472, 0.4131, 0.3667, 0.3654, 0.3754, 0.4117, 0.3738, 0.3692, 0.3951},
+      { 0.3577, 0.3442, 0.3883, 0.3245, 0.3716, 0.3810, 0.3875, 0.4142, 0.3915, 0.3722, 0.3978, 0.4030, 0.4952, 0.3721, 0.3756, 0.3930, 0.4238, 0.4183, 0.3661, 0.4160},
+      { 0.4071, 0.3719, 0.4470, 0.4057, 0.6693, 0.4035, 0.4170, 0.4605, 0.4865, 0.3472, 0.4030, 0.5285, 0.5337, 0.4802, 0.5056, 0.4808, 0.5234, 0.5550, 0.4034, 0.5066},
+      { 0.4104, 0.4418, 0.4940, 0.4295, 0.5278, 0.4577, 0.4721, 0.4936, 0.5161, 0.4131, 0.4952, 0.5337, 0.5914, 0.5157, 0.5600, 0.5298, 0.5738, 0.6003, 0.4642, 0.5546},
+      { 0.3482, 0.3849, 0.4367, 0.3873, 0.3889, 0.4194, 0.4615, 0.3908, 0.4223, 0.3667, 0.3721, 0.4802, 0.5157, 0.5323, 0.5373, 0.5114, 0.5067, 0.5151, 0.4367, 0.5139},
+      { 0.3519, 0.3848, 0.4355, 0.3929, 0.4117, 0.4189, 0.4633, 0.3943, 0.4331, 0.3654, 0.3756, 0.5056, 0.5600, 0.5373, 0.5535, 0.5404, 0.5220, 0.5378, 0.4465, 0.5083},
+      { 0.3543, 0.3740, 0.4379, 0.3828, 0.4028, 0.4053, 0.4447, 0.3919, 0.4267, 0.3754, 0.3930, 0.4808, 0.5298, 0.5114, 0.5404, 0.5324, 0.5138, 0.5356, 0.4412, 0.4882},
+      { 0.3743, 0.3819, 0.4467, 0.3925, 0.4681, 0.4379, 0.4525, 0.4405, 0.4620, 0.4117, 0.4238, 0.5234, 0.5738, 0.5067, 0.5220, 0.5138, 0.5684, 0.5868, 0.4487, 0.5258},
+      { 0.3587, 0.3824, 0.4607, 0.3963, 0.5436, 0.4375, 0.4508, 0.4632, 0.4709, 0.3738, 0.4183, 0.5550, 0.6003, 0.5151, 0.5378, 0.5356, 0.5868, 0.6008, 0.4405, 0.5217},
+      { 0.3508, 0.3555, 0.4044, 0.3575, 0.3585, 0.3894, 0.3987, 0.3760, 0.3925, 0.3692, 0.3661, 0.4034, 0.4642, 0.4367, 0.4465, 0.4412, 0.4487, 0.4405, 0.4147, 0.4224},
+      { 0.3856, 0.3851, 0.4431, 0.3822, 0.4528, 0.4494, 0.4602, 0.4327, 0.4469, 0.3951, 0.4160, 0.5066, 0.5546, 0.5139, 0.5083, 0.4882, 0.5258, 0.5217, 0.4224, 0.6493}},
+    {
+      { 0.2062, 0.1767, 0.4147, 0.3430, 0.3342, 0.2676, 0.2698, 0.3029, 0.2817, 0.2500, 0.2434, 0.2929, 0.3247, 0.2487, 0.2509, 0.2454, 0.2780, 0.2797, 0.2399, 0.2919},
+      { 0.1767, 0.1916, 0.4250, 0.3633, 0.3094, 0.2393, 0.2694, 0.2741, 0.2789, 0.2300, 0.2295, 0.2671, 0.3364, 0.2720, 0.2825, 0.2694, 0.2764, 0.2762, 0.2428, 0.2580},
+      { 0.4147, 0.4250, 0.3122, 0.2394, 0.3335, 0.3152, 0.3403, 0.3347, 0.3450, 0.2986, 0.2970, 0.3419, 0.4093, 0.3491, 0.3579, 0.3458, 0.3457, 0.3545, 0.3127, 0.3563},
+      { 0.3430, 0.3633, 0.2394, 0.2052, 0.2585, 0.2480, 0.2720, 0.2674, 0.2827, 0.2227, 0.2105, 0.2844, 0.3201, 0.2803, 0.2792, 0.2726, 0.2597, 0.2826, 0.2507, 0.2630},
+      { 0.3342, 0.3094, 0.3335, 0.2585, 0.4080, 0.3793, 0.3870, 0.3492, 0.3240, 0.3359, 0.3128, 0.4035, 0.4402, 0.3699, 0.3821, 0.3745, 0.4127, 0.4094, 0.3427, 0.4450},
+      { 0.2676, 0.2393, 0.3152, 0.2480, 0.3793, 0.3123, 0.3127, 0.3300, 0.3134, 0.2856, 0.2858, 0.4801, 0.4158, 0.3079, 0.3134, 0.3094, 0.3616, 0.4105, 0.2872, 0.3757},
+      { 0.2698, 0.2694, 0.3403, 0.2720, 0.3870, 0.3127, 0.3479, 0.3389, 0.3335, 0.2927, 0.2879, 0.4063, 0.4103, 0.3698, 0.3806, 0.3604, 0.3891, 0.4135, 0.3151, 0.3779},
+      { 0.3029, 0.2741, 0.3347, 0.2674, 0.3492, 0.3300, 0.3389, 0.3805, 0.3368, 0.3150, 0.2974, 0.3438, 0.3878, 0.3124, 0.3077, 0.3076, 0.3561, 0.3586, 0.2980, 0.3519},
+      { 0.2817, 0.2789, 0.3450, 0.2827, 0.3240, 0.3134, 0.3335, 0.3368, 0.3280, 0.2948, 0.2892, 0.3262, 0.3893, 0.3228, 0.3309, 0.3321, 0.3503, 0.3458, 0.2980, 0.3328},
+      { 0.2500, 0.2300, 0.2986, 0.2227, 0.3359, 0.2856, 0.2927, 0.3150, 0.2948, 0.2944, 0.2716, 0.3318, 0.3603, 0.3070, 0.3094, 0.3112, 0.3578, 0.3529, 0.2863, 0.3531},
+      { 0.2434, 0.2295, 0.2970, 0.2105, 0.3128, 0.2858, 0.2879, 0.2974, 0.2892, 0.2716, 0.2833, 0.3326, 0.4028, 0.2809, 0.2922, 0.2924, 0.3447, 0.3374, 0.2698, 0.3299},
+      { 0.2929, 0.2671, 0.3419, 0.2844, 0.4035, 0.4801, 0.4063, 0.3438, 0.3262, 0.3318, 0.3326, 0.4286, 0.4701, 0.4251, 0.4274, 0.4121, 0.4563, 0.4640, 0.4062, 0.4806},
+      { 0.3247, 0.3364, 0.4093, 0.3201, 0.4402, 0.4158, 0.4103, 0.3878, 0.3893, 0.3603, 0.4028, 0.4701, 0.5218, 0.4484, 0.4731, 0.4480, 0.5139, 0.5193, 0.4194, 0.5004},
+      { 0.2487, 0.2720, 0.3491, 0.2803, 0.3699, 0.3079, 0.3698, 0.3124, 0.3228, 0.3070, 0.2809, 0.4251, 0.4484, 0.4630, 0.4720, 0.4444, 0.4539, 0.4644, 0.3647, 0.4379},
+      { 0.2509, 0.2825, 0.3579, 0.2792, 0.3821, 0.3134, 0.3806, 0.3077, 0.3309, 0.3094, 0.2922, 0.4274, 0.4731, 0.4720, 0.4918, 0.4737, 0.4691, 0.4698, 0.3743, 0.4446},
+      { 0.2454, 0.2694, 0.3458, 0.2726, 0.3745, 0.3094, 0.3604, 0.3076, 0.3321, 0.3112, 0.2924, 0.4121, 0.4480, 0.4444, 0.4737, 0.4636, 0.4632, 0.4599, 0.3747, 0.4229},
+      { 0.2780, 0.2764, 0.3457, 0.2597, 0.4127, 0.3616, 0.3891, 0.3561, 0.3503, 0.3578, 0.3447, 0.4563, 0.5139, 0.4539, 0.4691, 0.4632, 0.4998, 0.4958, 0.3884, 0.4866},
+      { 0.2797, 0.2762, 0.3545, 0.2826, 0.4094, 0.4105, 0.4135, 0.3586, 0.3458, 0.3529, 0.3374, 0.4640, 0.5193, 0.4644, 0.4698, 0.4599, 0.4958, 0.5062, 0.4228, 0.5170},
+      { 0.2399, 0.2428, 0.3127, 0.2507, 0.3427, 0.2872, 0.3151, 0.2980, 0.2980, 0.2863, 0.2698, 0.4062, 0.4194, 0.3647, 0.3743, 0.3747, 0.3884, 0.4228, 0.3355, 0.3782},
+      { 0.2919, 0.2580, 0.3563, 0.2630, 0.4450, 0.3757, 0.3779, 0.3519, 0.3328, 0.3531, 0.3299, 0.4806, 0.5004, 0.4379, 0.4446, 0.4229, 0.4866, 0.5170, 0.3782, 0.6282}},
+    {
+      { 0.2101, 0.2008, 0.4311, 0.3692, 0.3335, 0.2927, 0.2654, 0.3088, 0.3056, 0.2699, 0.2737, 0.2919, 0.3535, 0.2808, 0.2847, 0.2852, 0.3045, 0.2912, 0.2654, 0.2990},
+      { 0.2008, 0.2239, 0.4555, 0.3935, 0.3457, 0.2801, 0.2696, 0.2889, 0.3105, 0.2553, 0.2573, 0.3010, 0.3713, 0.3103, 0.3192, 0.3043, 0.3073, 0.3062, 0.2790, 0.3092},
+      { 0.4311, 0.4555, 0.3277, 0.2630, 0.3501, 0.3365, 0.3286, 0.3409, 0.3605, 0.3231, 0.3227, 0.3690, 0.4387, 0.3730, 0.3857, 0.3739, 0.3756, 0.3860, 0.3304, 0.3621},
+      { 0.3692, 0.3935, 0.2630, 0.2287, 0.2799, 0.2806, 0.2753, 0.2806, 0.3082, 0.2557, 0.2438, 0.3190, 0.3651, 0.3204, 0.3246, 0.3130, 0.3029, 0.3196, 0.2724, 0.3063},
+      { 0.3335, 0.3457, 0.3501, 0.2799, 0.4222, 0.3902, 0.4023, 0.3588, 0.3474, 0.3268, 0.3275, 0.4170, 0.4554, 0.4052, 0.4157, 0.4002, 0.4334, 0.4168, 0.3535, 0.4383},
+      { 0.2927, 0.2801, 0.3365, 0.2806, 0.3902, 0.3367, 0.3209, 0.3420, 0.3304, 0.3038, 0.3099, 0.4063, 0.4281, 0.3572, 0.3604, 0.3519, 0.3885, 0.4057, 0.3171, 0.3794},
+      { 0.2654, 0.2696, 0.3286, 0.2753, 0.4023, 0.3209, 0.3399, 0.3440, 0.3222, 0.2730, 0.2820, 0.4810, 0.4369, 0.3753, 0.3874, 0.3705, 0.3873, 0.4498, 0.3059, 0.3852},
+      { 0.3088, 0.2889, 0.3409, 0.2806, 0.3588, 0.3420, 0.3440, 0.3875, 0.3552, 0.3351, 0.3215, 0.3493, 0.4075, 0.3376, 0.3368, 0.3267, 0.3749, 0.3631, 0.3097, 0.3622},
+      { 0.3056, 0.3105, 0.3605, 0.3082, 0.3474, 0.3304, 0.3222, 0.3552, 0.3492, 0.3113, 0.3243, 0.3481, 0.4241, 0.3494, 0.3656, 0.3626, 0.3827, 0.3807, 0.3209, 0.3612},
+      { 0.2699, 0.2553, 0.3231, 0.2557, 0.3268, 0.3038, 0.2730, 0.3351, 0.3113, 0.3056, 0.3105, 0.3159, 0.3869, 0.3306, 0.3422, 0.3440, 0.3788, 0.3636, 0.3092, 0.3644},
+      { 0.2737, 0.2573, 0.3227, 0.2438, 0.3275, 0.3099, 0.2820, 0.3215, 0.3243, 0.3105, 0.3085, 0.3591, 0.4238, 0.3190, 0.3356, 0.3313, 0.3658, 0.3711, 0.3024, 0.3667},
+      { 0.2919, 0.3010, 0.3690, 0.3190, 0.4170, 0.4063, 0.4810, 0.3493, 0.3481, 0.3159, 0.3591, 0.4374, 0.4659, 0.4710, 0.4715, 0.4504, 0.4823, 0.4851, 0.3923, 0.4971},
+      { 0.3535, 0.3713, 0.4387, 0.3651, 0.4554, 0.4281, 0.4369, 0.4075, 0.4241, 0.3869, 0.4238, 0.4659, 0.5399, 0.4748, 0.4997, 0.4843, 0.5352, 0.5357, 0.4240, 0.5094},
+      { 0.2808, 0.3103, 0.3730, 0.3204, 0.4052, 0.3572, 0.3753, 0.3376, 0.3494, 0.3306, 0.3190, 0.4710, 0.4748, 0.4821, 0.4915, 0.4699, 0.4661, 0.4973, 0.3929, 0.4504},
+      { 0.2847, 0.3192, 0.3857, 0.3246, 0.4157, 0.3604, 0.3874, 0.3368, 0.3656, 0.3422, 0.3356, 0.4715, 0.4997, 0.4915, 0.5154, 0.4970, 0.4857, 0.5046, 0.4066, 0.4662},
+      { 0.2852, 0.3043, 0.3739, 0.3130, 0.4002, 0.3519, 0.3705, 0.3267, 0.3626, 0.3440, 0.3313, 0.4504, 0.4843, 0.4699, 0.4970, 0.4941, 0.4837, 0.4943, 0.4000, 0.4440},
+      { 0.3045, 0.3073, 0.3756, 0.3029, 0.4334, 0.3885, 0.3873, 0.3749, 0.3827, 0.3788, 0.3658, 0.4823, 0.5352, 0.4661, 0.4857, 0.4837, 0.5349, 0.5265, 0.4102, 0.4966},
+      { 0.2912, 0.3062, 0.3860, 0.3196, 0.4168, 0.4057, 0.4498, 0.3631, 0.3807, 0.3636, 0.3711, 0.4851, 0.5357, 0.4973, 0.5046, 0.4943, 0.5265, 0.5275, 0.4308, 0.5181},
+      { 0.2654, 0.2790, 0.3304, 0.2724, 0.3535, 0.3171, 0.3059, 0.3097, 0.3209, 0.3092, 0.3024, 0.3923, 0.4240, 0.3929, 0.4066, 0.4000, 0.4102, 0.4308, 0.3604, 0.3926},
+      { 0.2990, 0.3092, 0.3621, 0.3063, 0.4383, 0.3794, 0.3852, 0.3622, 0.3612, 0.3644, 0.3667, 0.4971, 0.5094, 0.4504, 0.4662, 0.4440, 0.4966, 0.5181, 0.3926, 0.5757}},
+    {
+      { 0.2348, 0.2063, 0.4283, 0.3661, 0.3586, 0.3080, 0.2881, 0.3032, 0.2997, 0.2706, 0.2698, 0.3251, 0.3405, 0.2487, 0.2511, 0.2529, 0.2867, 0.3035, 0.2553, 0.2794},
+      { 0.2063, 0.2197, 0.4375, 0.3833, 0.3267, 0.2840, 0.2955, 0.2658, 0.3099, 0.2322, 0.2551, 0.2735, 0.3446, 0.2666, 0.2757, 0.2737, 0.2846, 0.2770, 0.2700, 0.2764},
+      { 0.4283, 0.4375, 0.3346, 0.2634, 0.3558, 0.3411, 0.3511, 0.3292, 0.3588, 0.3067, 0.3125, 0.3512, 0.4289, 0.3525, 0.3619, 0.3537, 0.3602, 0.3743, 0.3324, 0.3708},
+      { 0.3661, 0.3833, 0.2634, 0.2324, 0.2818, 0.2788, 0.2962, 0.2853, 0.3076, 0.2532, 0.2410, 0.3114, 0.3327, 0.2821, 0.2840, 0.2867, 0.2910, 0.2952, 0.2728, 0.2867},
+      { 0.3586, 0.3267, 0.3558, 0.2818, 0.4569, 0.3915, 0.3953, 0.4409, 0.3563, 0.3079, 0.3286, 0.4605, 0.4816, 0.3750, 0.3770, 0.3773, 0.4116, 0.4391, 0.3392, 0.4231},
+      { 0.3080, 0.2840, 0.3411, 0.2788, 0.3915, 0.3355, 0.3327, 0.3471, 0.3378, 0.2897, 0.3095, 0.3438, 0.3846, 0.3153, 0.3175, 0.3165, 0.3973, 0.3656, 0.3131, 0.3477},
+      { 0.2881, 0.2955, 0.3511, 0.2962, 0.3953, 0.3327, 0.3681, 0.3446, 0.3438, 0.2876, 0.3080, 0.3493, 0.3970, 0.3667, 0.3620, 0.3535, 0.3714, 0.3783, 0.3154, 0.3650},
+      { 0.3032, 0.2658, 0.3292, 0.2853, 0.4409, 0.3471, 0.3446, 0.4068, 0.3462, 0.3199, 0.3059, 0.5297, 0.4460, 0.3374, 0.3405, 0.3240, 0.3674, 0.4665, 0.3175, 0.3574},
+      { 0.2997, 0.3099, 0.3588, 0.3076, 0.3563, 0.3378, 0.3438, 0.3462, 0.3447, 0.3047, 0.3117, 0.3508, 0.4162, 0.3249, 0.3243, 0.3396, 0.3672, 0.3618, 0.3142, 0.3464},
+      { 0.2706, 0.2322, 0.3067, 0.2532, 0.3079, 0.2897, 0.2876, 0.3199, 0.3047, 0.2703, 0.2887, 0.2614, 0.3227, 0.2605, 0.2696, 0.2756, 0.3215, 0.2873, 0.2727, 0.3343},
+      { 0.2698, 0.2551, 0.3125, 0.2410, 0.3286, 0.3095, 0.3080, 0.3059, 0.3117, 0.2887, 0.3378, 0.3127, 0.3947, 0.3028, 0.3144, 0.3142, 0.3589, 0.3355, 0.2974, 0.3189},
+      { 0.3251, 0.2735, 0.3512, 0.3114, 0.4605, 0.3438, 0.3493, 0.5297, 0.3508, 0.2614, 0.3127, 0.4362, 0.4850, 0.4114, 0.4272, 0.4256, 0.4669, 0.4752, 0.3304, 0.4705},
+      { 0.3405, 0.3446, 0.4289, 0.3327, 0.4816, 0.3846, 0.3970, 0.4460, 0.4162, 0.3227, 0.3947, 0.4850, 0.5364, 0.4517, 0.4710, 0.4573, 0.5210, 0.5248, 0.3839, 0.4971},
+      { 0.2487, 0.2666, 0.3525, 0.2821, 0.3750, 0.3153, 0.3667, 0.3374, 0.3249, 0.2605, 0.3028, 0.4114, 0.4517, 0.4387, 0.4553, 0.4273, 0.4435, 0.4495, 0.3438, 0.4084},
+      { 0.2511, 0.2757, 0.3619, 0.2840, 0.3770, 0.3175, 0.3620, 0.3405, 0.3243, 0.2696, 0.3144, 0.4272, 0.4710, 0.4553, 0.4773, 0.4568, 0.4582, 0.4686, 0.3571, 0.4324},
+      { 0.2529, 0.2737, 0.3537, 0.2867, 0.3773, 0.3165, 0.3535, 0.3240, 0.3396, 0.2756, 0.3142, 0.4256, 0.4573, 0.4273, 0.4568, 0.4550, 0.4548, 0.4596, 0.3497, 0.4250},
+      { 0.2867, 0.2846, 0.3602, 0.2910, 0.4116, 0.3973, 0.3714, 0.3674, 0.3672, 0.3215, 0.3589, 0.4669, 0.5210, 0.4435, 0.4582, 0.4548, 0.4943, 0.4937, 0.3668, 0.4626},
+      { 0.3035, 0.2770, 0.3743, 0.2952, 0.4391, 0.3656, 0.3783, 0.4665, 0.3618, 0.2873, 0.3355, 0.4752, 0.5248, 0.4495, 0.4686, 0.4596, 0.4937, 0.5076, 0.3645, 0.5062},
+      { 0.2553, 0.2700, 0.3324, 0.2728, 0.3392, 0.3131, 0.3154, 0.3175, 0.3142, 0.2727, 0.2974, 0.3304, 0.3839, 0.3438, 0.3571, 0.3497, 0.3668, 0.3645, 0.3333, 0.3441},
+      { 0.2794, 0.2764, 0.3708, 0.2867, 0.4231, 0.3477, 0.3650, 0.3574, 0.3464, 0.3343, 0.3189, 0.4705, 0.4971, 0.4084, 0.4324, 0.4250, 0.4626, 0.5062, 0.3441, 0.6211}},
+    {
+      { 0.2350, 0.2283, 0.4531, 0.3985, 0.3374, 0.3108, 0.3004, 0.3134, 0.3084, 0.2821, 0.2768, 0.2888, 0.3202, 0.2664, 0.2698, 0.2715, 0.2948, 0.2735, 0.2737, 0.2988},
+      { 0.2283, 0.2466, 0.4652, 0.4181, 0.3616, 0.3084, 0.3183, 0.3063, 0.3094, 0.2552, 0.2693, 0.3453, 0.3940, 0.3106, 0.3205, 0.3189, 0.3281, 0.3273, 0.2985, 0.3044},
+      { 0.4531, 0.4652, 0.3262, 0.2765, 0.3563, 0.3508, 0.3640, 0.3500, 0.3551, 0.3333, 0.3327, 0.3924, 0.4475, 0.3665, 0.3765, 0.3821, 0.3826, 0.3901, 0.3486, 0.3566},
+      { 0.3985, 0.4181, 0.2765, 0.2453, 0.3045, 0.3007, 0.3100, 0.3085, 0.3012, 0.2659, 0.2591, 0.3476, 0.3873, 0.3074, 0.3166, 0.3257, 0.3118, 0.3219, 0.2970, 0.3094},
+      { 0.3374, 0.3616, 0.3563, 0.3045, 0.4451, 0.3734, 0.3855, 0.3637, 0.4101, 0.3247, 0.3266, 0.4865, 0.4940, 0.3913, 0.4006, 0.4273, 0.4479, 0.4429, 0.3311, 0.3975},
+      { 0.3108, 0.3084, 0.3508, 0.3007, 0.3734, 0.3373, 0.3383, 0.3468, 0.3414, 0.3065, 0.3160, 0.3262, 0.3823, 0.3317, 0.3415, 0.3255, 0.3653, 0.3490, 0.3136, 0.3475},
+      { 0.3004, 0.3183, 0.3640, 0.3100, 0.3855, 0.3383, 0.3733, 0.3567, 0.3562, 0.3019, 0.3148, 0.3481, 0.4043, 0.3790, 0.3842, 0.3692, 0.3910, 0.3826, 0.3151, 0.3710},
+      { 0.3134, 0.3063, 0.3500, 0.3085, 0.3637, 0.3468, 0.3567, 0.3753, 0.3646, 0.3199, 0.3287, 0.3508, 0.3990, 0.3276, 0.3350, 0.3225, 0.3807, 0.3634, 0.3127, 0.3384},
+      { 0.3084, 0.3094, 0.3551, 0.3012, 0.4101, 0.3414, 0.3562, 0.3646, 0.3715, 0.3113, 0.3148, 0.5519, 0.5098, 0.3531, 0.3586, 0.3806, 0.3975, 0.4798, 0.3325, 0.4001},
+      { 0.2821, 0.2552, 0.3333, 0.2659, 0.3247, 0.3065, 0.3019, 0.3199, 0.3113, 0.2988, 0.3004, 0.3051, 0.3554, 0.3045, 0.3071, 0.3173, 0.3487, 0.3130, 0.3043, 0.3417},
+      { 0.2768, 0.2693, 0.3327, 0.2591, 0.3266, 0.3160, 0.3148, 0.3287, 0.3148, 0.3004, 0.3140, 0.3413, 0.4207, 0.3065, 0.3200, 0.3158, 0.3588, 0.3448, 0.3075, 0.3590},
+      { 0.2888, 0.3453, 0.3924, 0.3476, 0.4865, 0.3262, 0.3481, 0.3508, 0.5519, 0.3051, 0.3413, 0.4508, 0.4855, 0.4357, 0.4552, 0.4493, 0.5066, 0.4915, 0.3182, 0.4461},
+      { 0.3202, 0.3940, 0.4475, 0.3873, 0.4940, 0.3823, 0.4043, 0.3990, 0.5098, 0.3554, 0.4207, 0.4855, 0.5615, 0.4657, 0.4893, 0.4797, 0.5333, 0.5399, 0.3804, 0.4955},
+      { 0.2664, 0.3106, 0.3665, 0.3074, 0.3913, 0.3317, 0.3790, 0.3276, 0.3531, 0.3045, 0.3065, 0.4357, 0.4657, 0.4610, 0.4794, 0.4526, 0.4555, 0.4604, 0.3580, 0.4469},
+      { 0.2698, 0.3205, 0.3765, 0.3166, 0.4006, 0.3415, 0.3842, 0.3350, 0.3586, 0.3071, 0.3200, 0.4552, 0.4893, 0.4794, 0.4937, 0.4767, 0.4824, 0.4760, 0.3654, 0.4525},
+      { 0.2715, 0.3189, 0.3821, 0.3257, 0.4273, 0.3255, 0.3692, 0.3225, 0.3806, 0.3173, 0.3158, 0.4493, 0.4797, 0.4526, 0.4767, 0.4719, 0.4743, 0.4776, 0.3651, 0.4426},
+      { 0.2948, 0.3281, 0.3826, 0.3118, 0.4479, 0.3653, 0.3910, 0.3807, 0.3975, 0.3487, 0.3588, 0.5066, 0.5333, 0.4555, 0.4824, 0.4743, 0.5190, 0.5214, 0.3843, 0.4648},
+      { 0.2735, 0.3273, 0.3901, 0.3219, 0.4429, 0.3490, 0.3826, 0.3634, 0.4798, 0.3130, 0.3448, 0.4915, 0.5399, 0.4604, 0.4760, 0.4776, 0.5214, 0.5307, 0.3560, 0.4837},
+      { 0.2737, 0.2985, 0.3486, 0.2970, 0.3311, 0.3136, 0.3151, 0.3127, 0.3325, 0.3043, 0.3075, 0.3182, 0.3804, 0.3580, 0.3654, 0.3651, 0.3843, 0.3560, 0.3608, 0.3505},
+      { 0.2988, 0.3044, 0.3566, 0.3094, 0.3975, 0.3475, 0.3710, 0.3384, 0.4001, 0.3417, 0.3590, 0.4461, 0.4955, 0.4469, 0.4525, 0.4426, 0.4648, 0.4837, 0.3505, 0.5929}},
+    {
+      { 0.1724, 0.1541, 0.3757, 0.3280, 0.3067, 0.2730, 0.2575, 0.2672, 0.2511, 0.1745, 0.2232, 0.2395, 0.2691, 0.2130, 0.2074, 0.2195, 0.2408, 0.2403, 0.2248, 0.2535},
+      { 0.1541, 0.1671, 0.3983, 0.3337, 0.2826, 0.2576, 0.2646, 0.2453, 0.2611, 0.1639, 0.2225, 0.2512, 0.3147, 0.2651, 0.2713, 0.2541, 0.2593, 0.2510, 0.2334, 0.2659},
+      { 0.3757, 0.3983, 0.2954, 0.2295, 0.3150, 0.3249, 0.3388, 0.3148, 0.3301, 0.2529, 0.2815, 0.3309, 0.3886, 0.3273, 0.3318, 0.3316, 0.3359, 0.3270, 0.3007, 0.3258},
+      { 0.3280, 0.3337, 0.2295, 0.1914, 0.2485, 0.2487, 0.2574, 0.2594, 0.2620, 0.1932, 0.1955, 0.2562, 0.2899, 0.2524, 0.2572, 0.2599, 0.2565, 0.2549, 0.2410, 0.2590},
+      { 0.3067, 0.2826, 0.3150, 0.2485, 0.3730, 0.3692, 0.3556, 0.2917, 0.2843, 0.3129, 0.3000, 0.3472, 0.4153, 0.3482, 0.3408, 0.3353, 0.3760, 0.3571, 0.3384, 0.3921},
+      { 0.2730, 0.2576, 0.3249, 0.2487, 0.3692, 0.3397, 0.3300, 0.3165, 0.3187, 0.2435, 0.2888, 0.3318, 0.3587, 0.3249, 0.3313, 0.3156, 0.3641, 0.3670, 0.3031, 0.3599},
+      { 0.2575, 0.2646, 0.3388, 0.2574, 0.3556, 0.3300, 0.3616, 0.2995, 0.3286, 0.2439, 0.2885, 0.3159, 0.3703, 0.3752, 0.3782, 0.3575, 0.3835, 0.3685, 0.3175, 0.3803},
+      { 0.2672, 0.2453, 0.3148, 0.2594, 0.2917, 0.3165, 0.2995, 0.3405, 0.3002, 0.2543, 0.2821, 0.2614, 0.3190, 0.2593, 0.2589, 0.2638, 0.3215, 0.2891, 0.2744, 0.3143},
+      { 0.2511, 0.2611, 0.3301, 0.2620, 0.2843, 0.3187, 0.3286, 0.3002, 0.3114, 0.2482, 0.2780, 0.3051, 0.3708, 0.3088, 0.3183, 0.3164, 0.3309, 0.3146, 0.3000, 0.3293},
+      { 0.1745, 0.1639, 0.2529, 0.1932, 0.3129, 0.2435, 0.2439, 0.2543, 0.2482, 0.2159, 0.2107, 0.4071, 0.3644, 0.2539, 0.2680, 0.2845, 0.3139, 0.3740, 0.2482, 0.3074},
+      { 0.2232, 0.2225, 0.2815, 0.1955, 0.3000, 0.2888, 0.2885, 0.2821, 0.2780, 0.2107, 0.2834, 0.3019, 0.3771, 0.2711, 0.2850, 0.2902, 0.3393, 0.3110, 0.2636, 0.3127},
+      { 0.2395, 0.2512, 0.3309, 0.2562, 0.3472, 0.3318, 0.3159, 0.2614, 0.3051, 0.4071, 0.3019, 0.4094, 0.4639, 0.3950, 0.4107, 0.3959, 0.4341, 0.4422, 0.3957, 0.4122},
+      { 0.2691, 0.3147, 0.3886, 0.2899, 0.4153, 0.3587, 0.3703, 0.3190, 0.3708, 0.3644, 0.3771, 0.4639, 0.5377, 0.4382, 0.4571, 0.4616, 0.5014, 0.5025, 0.4050, 0.4415},
+      { 0.2130, 0.2651, 0.3273, 0.2524, 0.3482, 0.3249, 0.3752, 0.2593, 0.3088, 0.2539, 0.2711, 0.3950, 0.4382, 0.4839, 0.4948, 0.4532, 0.4728, 0.4490, 0.3972, 0.4597},
+      { 0.2074, 0.2713, 0.3318, 0.2572, 0.3408, 0.3313, 0.3782, 0.2589, 0.3183, 0.2680, 0.2850, 0.4107, 0.4571, 0.4948, 0.5163, 0.4686, 0.4696, 0.4680, 0.4077, 0.4680},
+      { 0.2195, 0.2541, 0.3316, 0.2599, 0.3353, 0.3156, 0.3575, 0.2638, 0.3164, 0.2845, 0.2902, 0.3959, 0.4616, 0.4532, 0.4686, 0.4484, 0.4512, 0.4403, 0.3883, 0.4270},
+      { 0.2408, 0.2593, 0.3359, 0.2565, 0.3760, 0.3641, 0.3835, 0.3215, 0.3309, 0.3139, 0.3393, 0.4341, 0.5014, 0.4728, 0.4696, 0.4512, 0.5095, 0.4858, 0.4083, 0.4786},
+      { 0.2403, 0.2510, 0.3270, 0.2549, 0.3571, 0.3670, 0.3685, 0.2891, 0.3146, 0.3740, 0.3110, 0.4422, 0.5025, 0.4490, 0.4680, 0.4403, 0.4858, 0.4838, 0.4236, 0.4727},
+      { 0.2248, 0.2334, 0.3007, 0.2410, 0.3384, 0.3031, 0.3175, 0.2744, 0.3000, 0.2482, 0.2636, 0.3957, 0.4050, 0.3972, 0.4077, 0.3883, 0.4083, 0.4236, 0.3489, 0.3938},
+      { 0.2535, 0.2659, 0.3258, 0.2590, 0.3921, 0.3599, 0.3803, 0.3143, 0.3293, 0.3074, 0.3127, 0.4122, 0.4415, 0.4597, 0.4680, 0.4270, 0.4786, 0.4727, 0.3938, 0.6679}},
+    {
+      { 0.2498, 0.2227, 0.4539, 0.3950, 0.3435, 0.3160, 0.3121, 0.3188, 0.3262, 0.3005, 0.2799, 0.2726, 0.3269, 0.2842, 0.2782, 0.2859, 0.3003, 0.2742, 0.2775, 0.3080},
+      { 0.2227, 0.2199, 0.4354, 0.3893, 0.3275, 0.3166, 0.3048, 0.3027, 0.3151, 0.2691, 0.2711, 0.2785, 0.3528, 0.2850, 0.2946, 0.2842, 0.2929, 0.2807, 0.2748, 0.2859},
+      { 0.4539, 0.4354, 0.3427, 0.2749, 0.3670, 0.3640, 0.3772, 0.3711, 0.3758, 0.3489, 0.3543, 0.3718, 0.4342, 0.3604, 0.3661, 0.3690, 0.3793, 0.3810, 0.3439, 0.3764},
+      { 0.3950, 0.3893, 0.2749, 0.2415, 0.2980, 0.2973, 0.3092, 0.3161, 0.3120, 0.2774, 0.2598, 0.3086, 0.3687, 0.2985, 0.3091, 0.3021, 0.3045, 0.2976, 0.2744, 0.3199},
+      { 0.3435, 0.3275, 0.3670, 0.2980, 0.4285, 0.3722, 0.3850, 0.3497, 0.3425, 0.3285, 0.4245, 0.4030, 0.4877, 0.3977, 0.3937, 0.3982, 0.4067, 0.4232, 0.3583, 0.4357},
+      { 0.3160, 0.3166, 0.3640, 0.2973, 0.3722, 0.3467, 0.3439, 0.3605, 0.3574, 0.3285, 0.3319, 0.3326, 0.3915, 0.3407, 0.3471, 0.3509, 0.3745, 0.3607, 0.3290, 0.3779},
+      { 0.3121, 0.3048, 0.3772, 0.3092, 0.3850, 0.3439, 0.3575, 0.3630, 0.3577, 0.3159, 0.3401, 0.3591, 0.4137, 0.3737, 0.3854, 0.3716, 0.3990, 0.3832, 0.3391, 0.3990},
+      { 0.3188, 0.3027, 0.3711, 0.3161, 0.3497, 0.3605, 0.3630, 0.4005, 0.3501, 0.3394, 0.3535, 0.3127, 0.3936, 0.3378, 0.3328, 0.3396, 0.3636, 0.3466, 0.3351, 0.3821},
+      { 0.3262, 0.3151, 0.3758, 0.3120, 0.3425, 0.3574, 0.3577, 0.3501, 0.3731, 0.3471, 0.3419, 0.3413, 0.4297, 0.3666, 0.3610, 0.3699, 0.3918, 0.3772, 0.3481, 0.3838},
+      { 0.3005, 0.2691, 0.3489, 0.2774, 0.3285, 0.3285, 0.3159, 0.3394, 0.3471, 0.3142, 0.3131, 0.3019, 0.3714, 0.3100, 0.3249, 0.3264, 0.3636, 0.3290, 0.3147, 0.3359},
+      { 0.2799, 0.2711, 0.3543, 0.2598, 0.4245, 0.3319, 0.3401, 0.3535, 0.3419, 0.3131, 0.3309, 0.5270, 0.5449, 0.3492, 0.3662, 0.3837, 0.4154, 0.4855, 0.3318, 0.4030},
+      { 0.2726, 0.2785, 0.3718, 0.3086, 0.4030, 0.3326, 0.3591, 0.3127, 0.3413, 0.3019, 0.5270, 0.4282, 0.4761, 0.4533, 0.4679, 0.4625, 0.4712, 0.4822, 0.3883, 0.4838},
+      { 0.3269, 0.3528, 0.4342, 0.3687, 0.4877, 0.3915, 0.4137, 0.3936, 0.4297, 0.3714, 0.5449, 0.4761, 0.5274, 0.4797, 0.5069, 0.5014, 0.5257, 0.5094, 0.4470, 0.5415},
+      { 0.2842, 0.2850, 0.3604, 0.2985, 0.3977, 0.3407, 0.3737, 0.3378, 0.3666, 0.3100, 0.3492, 0.4533, 0.4797, 0.4540, 0.4610, 0.4603, 0.4561, 0.4672, 0.3699, 0.4351},
+      { 0.2782, 0.2946, 0.3661, 0.3091, 0.3937, 0.3471, 0.3854, 0.3328, 0.3610, 0.3249, 0.3662, 0.4679, 0.5069, 0.4610, 0.4892, 0.4875, 0.4732, 0.4906, 0.3834, 0.4288},
+      { 0.2859, 0.2842, 0.3690, 0.3021, 0.3982, 0.3509, 0.3716, 0.3396, 0.3699, 0.3264, 0.3837, 0.4625, 0.5014, 0.4603, 0.4875, 0.4816, 0.4775, 0.4830, 0.3849, 0.4521},
+      { 0.3003, 0.2929, 0.3793, 0.3045, 0.4067, 0.3745, 0.3990, 0.3636, 0.3918, 0.3636, 0.4154, 0.4712, 0.5257, 0.4561, 0.4732, 0.4775, 0.5323, 0.5082, 0.3980, 0.4708},
+      { 0.2742, 0.2807, 0.3810, 0.2976, 0.4232, 0.3607, 0.3832, 0.3466, 0.3772, 0.3290, 0.4855, 0.4822, 0.5094, 0.4672, 0.4906, 0.4830, 0.5082, 0.5190, 0.4026, 0.4955},
+      { 0.2775, 0.2748, 0.3439, 0.2744, 0.3583, 0.3290, 0.3391, 0.3351, 0.3481, 0.3147, 0.3318, 0.3883, 0.4470, 0.3699, 0.3834, 0.3849, 0.3980, 0.4026, 0.3445, 0.3854},
+      { 0.3080, 0.2859, 0.3764, 0.3199, 0.4357, 0.3779, 0.3990, 0.3821, 0.3838, 0.3359, 0.4030, 0.4838, 0.5415, 0.4351, 0.4288, 0.4521, 0.4708, 0.4955, 0.3854, 0.6617}},
+    {
+      { 0.3973, 0.3494, 0.5511, 0.4841, 0.4534, 0.4368, 0.4326, 0.4596, 0.4280, 0.4037, 0.3848, 0.3988, 0.4414, 0.3842, 0.3765, 0.3796, 0.4088, 0.3912, 0.3752, 0.3984},
+      { 0.3494, 0.3470, 0.5716, 0.5063, 0.4382, 0.4198, 0.4268, 0.4202, 0.4224, 0.3844, 0.3758, 0.4034, 0.4679, 0.4135, 0.4074, 0.4024, 0.4139, 0.4021, 0.3836, 0.4082},
+      { 0.5511, 0.5716, 0.4481, 0.3725, 0.4489, 0.4652, 0.4678, 0.4705, 0.4840, 0.4271, 0.4303, 0.4753, 0.5240, 0.4533, 0.4645, 0.4553, 0.4714, 0.4597, 0.4186, 0.4541},
+      { 0.4841, 0.5063, 0.3725, 0.3365, 0.3968, 0.4118, 0.4125, 0.4077, 0.4205, 0.3772, 0.3464, 0.4232, 0.4683, 0.4058, 0.4158, 0.4176, 0.4185, 0.4224, 0.3698, 0.4125},
+      { 0.4534, 0.4382, 0.4489, 0.3968, 0.5472, 0.4750, 0.4757, 0.4436, 0.4415, 0.4207, 0.4273, 0.5285, 0.5273, 0.4696, 0.4670, 0.4672, 0.5090, 0.5203, 0.4234, 0.4785},
+      { 0.4368, 0.4198, 0.4652, 0.4118, 0.4750, 0.4699, 0.4495, 0.4684, 0.4660, 0.4298, 0.4229, 0.4286, 0.4853, 0.4401, 0.4463, 0.4397, 0.4745, 0.4550, 0.4149, 0.4541},
+      { 0.4326, 0.4268, 0.4678, 0.4125, 0.4757, 0.4495, 0.4717, 0.4570, 0.4615, 0.4186, 0.4311, 0.4374, 0.4887, 0.4766, 0.4818, 0.4694, 0.4925, 0.4726, 0.4176, 0.4568},
+      { 0.4596, 0.4202, 0.4705, 0.4077, 0.4436, 0.4684, 0.4570, 0.5367, 0.4733, 0.4439, 0.4229, 0.4362, 0.4843, 0.4122, 0.4213, 0.4158, 0.4673, 0.4606, 0.4049, 0.4465},
+      { 0.4280, 0.4224, 0.4840, 0.4205, 0.4415, 0.4660, 0.4615, 0.4733, 0.4553, 0.4173, 0.4350, 0.4508, 0.5109, 0.4468, 0.4578, 0.4531, 0.4722, 0.4665, 0.4125, 0.4513},
+      { 0.4037, 0.3844, 0.4271, 0.3772, 0.4207, 0.4298, 0.4186, 0.4439, 0.4173, 0.4290, 0.3959, 0.4094, 0.4641, 0.4232, 0.4277, 0.4236, 0.4650, 0.4348, 0.4094, 0.4409},
+      { 0.3848, 0.3758, 0.4303, 0.3464, 0.4273, 0.4229, 0.4311, 0.4229, 0.4350, 0.3959, 0.4285, 0.4282, 0.5273, 0.4162, 0.4264, 0.4336, 0.4661, 0.4507, 0.3969, 0.4112},
+      { 0.3988, 0.4034, 0.4753, 0.4232, 0.5285, 0.4286, 0.4374, 0.4362, 0.4508, 0.4094, 0.4282, 0.6269, 0.5907, 0.5019, 0.5142, 0.5113, 0.5489, 0.6023, 0.4399, 0.5145},
+      { 0.4414, 0.4679, 0.5240, 0.4683, 0.5273, 0.4853, 0.4887, 0.4843, 0.5109, 0.4641, 0.5273, 0.5907, 0.6398, 0.5325, 0.5519, 0.5526, 0.5912, 0.6068, 0.5074, 0.5465},
+      { 0.3842, 0.4135, 0.4533, 0.4058, 0.4696, 0.4401, 0.4766, 0.4122, 0.4468, 0.4232, 0.4162, 0.5019, 0.5325, 0.5467, 0.5535, 0.5333, 0.5350, 0.5295, 0.4652, 0.5183},
+      { 0.3765, 0.4074, 0.4645, 0.4158, 0.4670, 0.4463, 0.4818, 0.4213, 0.4578, 0.4277, 0.4264, 0.5142, 0.5519, 0.5535, 0.5851, 0.5549, 0.5588, 0.5435, 0.4847, 0.5057},
+      { 0.3796, 0.4024, 0.4553, 0.4176, 0.4672, 0.4397, 0.4694, 0.4158, 0.4531, 0.4236, 0.4336, 0.5113, 0.5526, 0.5333, 0.5549, 0.5426, 0.5465, 0.5402, 0.4769, 0.5138},
+      { 0.4088, 0.4139, 0.4714, 0.4185, 0.5090, 0.4745, 0.4925, 0.4673, 0.4722, 0.4650, 0.4661, 0.5489, 0.5912, 0.5350, 0.5588, 0.5465, 0.5974, 0.5773, 0.4801, 0.5455},
+      { 0.3912, 0.4021, 0.4597, 0.4224, 0.5203, 0.4550, 0.4726, 0.4606, 0.4665, 0.4348, 0.4507, 0.6023, 0.6068, 0.5295, 0.5435, 0.5402, 0.5773, 0.6016, 0.4720, 0.5283},
+      { 0.3752, 0.3836, 0.4186, 0.3698, 0.4234, 0.4149, 0.4176, 0.4049, 0.4125, 0.4094, 0.3969, 0.4399, 0.5074, 0.4652, 0.4847, 0.4769, 0.4801, 0.4720, 0.4368, 0.4515},
+      { 0.3984, 0.4082, 0.4541, 0.4125, 0.4785, 0.4541, 0.4568, 0.4465, 0.4513, 0.4409, 0.4112, 0.5145, 0.5465, 0.5183, 0.5057, 0.5138, 0.5455, 0.5283, 0.4515, 0.6735}},
+    {
+      { 0.4283, 0.3763, 0.5747, 0.4937, 0.5101, 0.4707, 0.4593, 0.4832, 0.4668, 0.4473, 0.4384, 0.4327, 0.4305, 0.4275, 0.4173, 0.4243, 0.4640, 0.4179, 0.4187, 0.4380},
+      { 0.3763, 0.3931, 0.5853, 0.5154, 0.4801, 0.4499, 0.4445, 0.4465, 0.4574, 0.4132, 0.4098, 0.4590, 0.4573, 0.4467, 0.4576, 0.4378, 0.4676, 0.4405, 0.4217, 0.4361},
+      { 0.5747, 0.5853, 0.4773, 0.4005, 0.4768, 0.5036, 0.5071, 0.5008, 0.5219, 0.4698, 0.4840, 0.5055, 0.5262, 0.4888, 0.4988, 0.4951, 0.5133, 0.4973, 0.4716, 0.4902},
+      { 0.4937, 0.5154, 0.4005, 0.3794, 0.3943, 0.4389, 0.4392, 0.4306, 0.4513, 0.4048, 0.4075, 0.4541, 0.4498, 0.4452, 0.4503, 0.4372, 0.4473, 0.4532, 0.4002, 0.4406},
+      { 0.5101, 0.4801, 0.4768, 0.3943, 0.5418, 0.4975, 0.4861, 0.5067, 0.4700, 0.4684, 0.4562, 0.5337, 0.5735, 0.4675, 0.4965, 0.4789, 0.5389, 0.5375, 0.4625, 0.5021},
+      { 0.4707, 0.4499, 0.5036, 0.4389, 0.4975, 0.4965, 0.4893, 0.5210, 0.5018, 0.4633, 0.4660, 0.4701, 0.4922, 0.4812, 0.4854, 0.4721, 0.5165, 0.4974, 0.4545, 0.5157},
+      { 0.4593, 0.4445, 0.5071, 0.4392, 0.4861, 0.4893, 0.5054, 0.4962, 0.5138, 0.4605, 0.4506, 0.4659, 0.4956, 0.5123, 0.5183, 0.5051, 0.5280, 0.4972, 0.4575, 0.5248},
+      { 0.4832, 0.4465, 0.5008, 0.4306, 0.5067, 0.5210, 0.4962, 0.5595, 0.5076, 0.4702, 0.4791, 0.4850, 0.4801, 0.4623, 0.4420, 0.4556, 0.5272, 0.4821, 0.4573, 0.5219},
+      { 0.4668, 0.4574, 0.5219, 0.4513, 0.4700, 0.5018, 0.5138, 0.5076, 0.5256, 0.4697, 0.4685, 0.4855, 0.5091, 0.4721, 0.4869, 0.4910, 0.5273, 0.5096, 0.4609, 0.5007},
+      { 0.4473, 0.4132, 0.4698, 0.4048, 0.4684, 0.4633, 0.4605, 0.4702, 0.4697, 0.4513, 0.4520, 0.4639, 0.4479, 0.4610, 0.4545, 0.4621, 0.5273, 0.4707, 0.4417, 0.4761},
+      { 0.4384, 0.4098, 0.4840, 0.4075, 0.4562, 0.4660, 0.4506, 0.4791, 0.4685, 0.4520, 0.4520, 0.4761, 0.4929, 0.4413, 0.4532, 0.4658, 0.5110, 0.4679, 0.4486, 0.4624},
+      { 0.4327, 0.4590, 0.5055, 0.4541, 0.5337, 0.4701, 0.4659, 0.4850, 0.4855, 0.4639, 0.4761, 0.5907, 0.7101, 0.5251, 0.5489, 0.5510, 0.5852, 0.6189, 0.4739, 0.5451},
+      { 0.4305, 0.4573, 0.5262, 0.4498, 0.5735, 0.4922, 0.4956, 0.4801, 0.5091, 0.4479, 0.4929, 0.7101, 0.6488, 0.5539, 0.5714, 0.5773, 0.6258, 0.6616, 0.4988, 0.5934},
+      { 0.4275, 0.4467, 0.4888, 0.4452, 0.4675, 0.4812, 0.5123, 0.4623, 0.4721, 0.4610, 0.4413, 0.5251, 0.5539, 0.5716, 0.5784, 0.5620, 0.5744, 0.5566, 0.5080, 0.5749},
+      { 0.4173, 0.4576, 0.4988, 0.4503, 0.4965, 0.4854, 0.5183, 0.4420, 0.4869, 0.4545, 0.4532, 0.5489, 0.5714, 0.5784, 0.6033, 0.5962, 0.5953, 0.5837, 0.5195, 0.5538},
+      { 0.4243, 0.4378, 0.4951, 0.4372, 0.4789, 0.4721, 0.5051, 0.4556, 0.4910, 0.4621, 0.4658, 0.5510, 0.5773, 0.5620, 0.5962, 0.5889, 0.5894, 0.5816, 0.5106, 0.5571},
+      { 0.4640, 0.4676, 0.5133, 0.4473, 0.5389, 0.5165, 0.5280, 0.5272, 0.5273, 0.5273, 0.5110, 0.5852, 0.6258, 0.5744, 0.5953, 0.5894, 0.6511, 0.6178, 0.5324, 0.5621},
+      { 0.4179, 0.4405, 0.4973, 0.4532, 0.5375, 0.4974, 0.4972, 0.4821, 0.5096, 0.4707, 0.4679, 0.6189, 0.6616, 0.5566, 0.5837, 0.5816, 0.6178, 0.6454, 0.5099, 0.5796},
+      { 0.4187, 0.4217, 0.4716, 0.4002, 0.4625, 0.4545, 0.4575, 0.4573, 0.4609, 0.4417, 0.4486, 0.4739, 0.4988, 0.5080, 0.5195, 0.5106, 0.5324, 0.5099, 0.4765, 0.5043},
+      { 0.4380, 0.4361, 0.4902, 0.4406, 0.5021, 0.5157, 0.5248, 0.5219, 0.5007, 0.4761, 0.4624, 0.5451, 0.5934, 0.5749, 0.5538, 0.5571, 0.5621, 0.5796, 0.5043, 0.7111}},
+    {
+      { 0.3044, 0.2804, 0.5125, 0.4397, 0.4246, 0.3689, 0.3562, 0.3746, 0.3764, 0.3336, 0.3288, 0.3708, 0.4109, 0.2791, 0.3015, 0.3238, 0.3458, 0.3401, 0.3018, 0.3322},
+      { 0.2804, 0.2893, 0.5213, 0.4628, 0.4148, 0.3574, 0.3696, 0.3518, 0.3692, 0.3134, 0.3087, 0.3914, 0.4571, 0.3219, 0.3470, 0.3541, 0.3687, 0.3724, 0.3164, 0.3344},
+      { 0.5125, 0.5213, 0.3774, 0.3160, 0.4099, 0.4033, 0.4160, 0.4055, 0.4229, 0.3684, 0.3631, 0.4393, 0.5016, 0.3721, 0.4022, 0.4132, 0.4145, 0.4349, 0.3693, 0.4002},
+      { 0.4397, 0.4628, 0.3160, 0.2924, 0.3623, 0.3536, 0.3660, 0.3571, 0.3716, 0.3185, 0.3004, 0.4050, 0.4473, 0.3435, 0.3680, 0.3754, 0.3605, 0.3956, 0.3287, 0.3512},
+      { 0.4246, 0.4148, 0.4099, 0.3623, 0.4975, 0.4538, 0.4625, 0.4175, 0.4155, 0.3705, 0.3800, 0.4802, 0.5070, 0.4357, 0.4462, 0.4502, 0.4635, 0.4733, 0.3972, 0.4499},
+      { 0.3689, 0.3574, 0.4033, 0.3536, 0.4538, 0.4000, 0.4083, 0.4064, 0.4085, 0.3738, 0.3616, 0.4251, 0.4850, 0.3677, 0.3958, 0.3972, 0.4299, 0.4493, 0.3656, 0.4202},
+      { 0.3562, 0.3696, 0.4160, 0.3660, 0.4625, 0.4083, 0.4323, 0.4226, 0.4144, 0.3642, 0.3582, 0.4710, 0.4985, 0.4314, 0.4527, 0.4498, 0.4616, 0.4861, 0.3959, 0.4430},
+      { 0.3746, 0.3518, 0.4055, 0.3571, 0.4175, 0.4064, 0.4226, 0.4798, 0.4057, 0.3673, 0.3677, 0.4114, 0.4626, 0.3322, 0.3565, 0.3666, 0.4153, 0.4188, 0.3370, 0.3895},
+      { 0.3764, 0.3692, 0.4229, 0.3716, 0.4155, 0.4085, 0.4144, 0.4057, 0.4287, 0.3644, 0.3712, 0.4357, 0.5074, 0.3590, 0.3848, 0.4065, 0.4244, 0.4374, 0.3649, 0.3971},
+      { 0.3336, 0.3134, 0.3684, 0.3185, 0.3705, 0.3738, 0.3642, 0.3673, 0.3644, 0.3732, 0.3473, 0.3950, 0.4648, 0.3469, 0.3752, 0.3934, 0.4224, 0.4320, 0.3592, 0.3890},
+      { 0.3288, 0.3087, 0.3631, 0.3004, 0.3800, 0.3616, 0.3582, 0.3677, 0.3712, 0.3473, 0.3512, 0.4533, 0.4932, 0.3248, 0.3509, 0.3792, 0.4127, 0.4260, 0.3418, 0.3949},
+      { 0.3708, 0.3914, 0.4393, 0.4050, 0.4802, 0.4251, 0.4710, 0.4114, 0.4357, 0.3950, 0.4533, 0.5019, 0.5251, 0.5555, 0.5459, 0.5207, 0.5396, 0.5395, 0.4606, 0.5402},
+      { 0.4109, 0.4571, 0.5016, 0.4473, 0.5070, 0.4850, 0.4985, 0.4626, 0.5074, 0.4648, 0.4932, 0.5251, 0.5817, 0.5181, 0.5395, 0.5477, 0.5769, 0.5873, 0.4915, 0.5669},
+      { 0.2791, 0.3219, 0.3721, 0.3435, 0.4357, 0.3677, 0.4314, 0.3322, 0.3590, 0.3469, 0.3248, 0.5555, 0.5181, 0.5368, 0.5447, 0.5174, 0.5009, 0.5485, 0.4486, 0.5051},
+      { 0.3015, 0.3470, 0.4022, 0.3680, 0.4462, 0.3958, 0.4527, 0.3565, 0.3848, 0.3752, 0.3509, 0.5459, 0.5395, 0.5447, 0.5755, 0.5509, 0.5279, 0.5577, 0.4712, 0.5295},
+      { 0.3238, 0.3541, 0.4132, 0.3754, 0.4502, 0.3972, 0.4498, 0.3666, 0.4065, 0.3934, 0.3792, 0.5207, 0.5477, 0.5174, 0.5509, 0.5433, 0.5276, 0.5505, 0.4776, 0.5049},
+      { 0.3458, 0.3687, 0.4145, 0.3605, 0.4635, 0.4299, 0.4616, 0.4153, 0.4244, 0.4224, 0.4127, 0.5396, 0.5769, 0.5009, 0.5279, 0.5276, 0.5807, 0.5757, 0.4779, 0.5246},
+      { 0.3401, 0.3724, 0.4349, 0.3956, 0.4733, 0.4493, 0.4861, 0.4188, 0.4374, 0.4320, 0.4260, 0.5395, 0.5873, 0.5485, 0.5577, 0.5505, 0.5757, 0.5821, 0.4986, 0.5676},
+      { 0.3018, 0.3164, 0.3693, 0.3287, 0.3972, 0.3656, 0.3959, 0.3370, 0.3649, 0.3592, 0.3418, 0.4606, 0.4915, 0.4486, 0.4712, 0.4776, 0.4779, 0.4986, 0.4320, 0.4623},
+      { 0.3322, 0.3344, 0.4002, 0.3512, 0.4499, 0.4202, 0.4430, 0.3895, 0.3971, 0.3890, 0.3949, 0.5402, 0.5669, 0.5051, 0.5295, 0.5049, 0.5246, 0.5676, 0.4623, 0.6100}},
+    {
+      { 0.3235, 0.3025, 0.5406, 0.4597, 0.4321, 0.3884, 0.3719, 0.3936, 0.3965, 0.3491, 0.3539, 0.3871, 0.4318, 0.2994, 0.2816, 0.3181, 0.3519, 0.3501, 0.3334, 0.3342},
+      { 0.3025, 0.3105, 0.5483, 0.4805, 0.4315, 0.3792, 0.3828, 0.3874, 0.3963, 0.3308, 0.3363, 0.4078, 0.4752, 0.3413, 0.3302, 0.3581, 0.3806, 0.3855, 0.3390, 0.3536},
+      { 0.5406, 0.5483, 0.3886, 0.3355, 0.4295, 0.4192, 0.4280, 0.4164, 0.4414, 0.3834, 0.3847, 0.4654, 0.5156, 0.3970, 0.3868, 0.4203, 0.4300, 0.4496, 0.3937, 0.4182},
+      { 0.4597, 0.4805, 0.3355, 0.3095, 0.3772, 0.3727, 0.3793, 0.3759, 0.3828, 0.3281, 0.3091, 0.4309, 0.4767, 0.3582, 0.3568, 0.3835, 0.3758, 0.4096, 0.3499, 0.3749},
+      { 0.4321, 0.4315, 0.4295, 0.3772, 0.5144, 0.4626, 0.4837, 0.4364, 0.4353, 0.3894, 0.4052, 0.5056, 0.5332, 0.4581, 0.4631, 0.4728, 0.4834, 0.4938, 0.4025, 0.4527},
+      { 0.3884, 0.3792, 0.4192, 0.3727, 0.4626, 0.4228, 0.4237, 0.4290, 0.4281, 0.3865, 0.3866, 0.4274, 0.4986, 0.3923, 0.3850, 0.4008, 0.4395, 0.4585, 0.3862, 0.4200},
+      { 0.3719, 0.3828, 0.4280, 0.3793, 0.4837, 0.4237, 0.4521, 0.4442, 0.4364, 0.3743, 0.3854, 0.4715, 0.5174, 0.4542, 0.4439, 0.4575, 0.4743, 0.4897, 0.4139, 0.4584},
+      { 0.3936, 0.3874, 0.4164, 0.3759, 0.4364, 0.4290, 0.4442, 0.4736, 0.4323, 0.3879, 0.3934, 0.4272, 0.4846, 0.3592, 0.3514, 0.3748, 0.4183, 0.4308, 0.3641, 0.4047},
+      { 0.3965, 0.3963, 0.4414, 0.3828, 0.4353, 0.4281, 0.4364, 0.4323, 0.4426, 0.3850, 0.3980, 0.4552, 0.5249, 0.3861, 0.3836, 0.4172, 0.4367, 0.4557, 0.3873, 0.4243},
+      { 0.3491, 0.3308, 0.3834, 0.3281, 0.3894, 0.3865, 0.3743, 0.3879, 0.3850, 0.3874, 0.3569, 0.4107, 0.4790, 0.3603, 0.3489, 0.3879, 0.4244, 0.4344, 0.3745, 0.4078},
+      { 0.3539, 0.3363, 0.3847, 0.3091, 0.4052, 0.3866, 0.3854, 0.3934, 0.3980, 0.3569, 0.3829, 0.4679, 0.5358, 0.3613, 0.3476, 0.3857, 0.4285, 0.4496, 0.3727, 0.4236},
+      { 0.3871, 0.4078, 0.4654, 0.4309, 0.5056, 0.4274, 0.4715, 0.4272, 0.4552, 0.4107, 0.4679, 0.5142, 0.5489, 0.5459, 0.5834, 0.5503, 0.5673, 0.5627, 0.4543, 0.5182},
+      { 0.4318, 0.4752, 0.5156, 0.4767, 0.5332, 0.4986, 0.5174, 0.4846, 0.5249, 0.4790, 0.5358, 0.5489, 0.6066, 0.5550, 0.5619, 0.5794, 0.6113, 0.6090, 0.5147, 0.5829},
+      { 0.2994, 0.3413, 0.3970, 0.3582, 0.4581, 0.3923, 0.4542, 0.3592, 0.3861, 0.3603, 0.3613, 0.5459, 0.5550, 0.5741, 0.5620, 0.5524, 0.5321, 0.5662, 0.4716, 0.5392},
+      { 0.2816, 0.3302, 0.3868, 0.3568, 0.4631, 0.3850, 0.4439, 0.3514, 0.3836, 0.3489, 0.3476, 0.5834, 0.5619, 0.5620, 0.5733, 0.5564, 0.5336, 0.5745, 0.4677, 0.5272},
+      { 0.3181, 0.3581, 0.4203, 0.3835, 0.4728, 0.4008, 0.4575, 0.3748, 0.4172, 0.3879, 0.3857, 0.5503, 0.5794, 0.5524, 0.5564, 0.5638, 0.5498, 0.5723, 0.4882, 0.5304},
+      { 0.3519, 0.3806, 0.4300, 0.3758, 0.4834, 0.4395, 0.4743, 0.4183, 0.4367, 0.4244, 0.4285, 0.5673, 0.6113, 0.5321, 0.5336, 0.5498, 0.5937, 0.5991, 0.4839, 0.5468},
+      { 0.3501, 0.3855, 0.4496, 0.4096, 0.4938, 0.4585, 0.4897, 0.4308, 0.4557, 0.4344, 0.4496, 0.5627, 0.6090, 0.5662, 0.5745, 0.5723, 0.5991, 0.5997, 0.5058, 0.5726},
+      { 0.3334, 0.3390, 0.3937, 0.3499, 0.4025, 0.3862, 0.4139, 0.3641, 0.3873, 0.3745, 0.3727, 0.4543, 0.5147, 0.4716, 0.4677, 0.4882, 0.4839, 0.5058, 0.4479, 0.4796},
+      { 0.3342, 0.3536, 0.4182, 0.3749, 0.4527, 0.4200, 0.4584, 0.4047, 0.4243, 0.4078, 0.4236, 0.5182, 0.5829, 0.5392, 0.5272, 0.5304, 0.5468, 0.5726, 0.4796, 0.6196}},
+    {
+      { 0.3245, 0.3048, 0.5321, 0.4576, 0.4154, 0.3821, 0.3642, 0.3776, 0.3938, 0.3440, 0.3454, 0.3723, 0.4188, 0.3206, 0.3177, 0.3105, 0.3476, 0.3382, 0.3348, 0.3350},
+      { 0.3048, 0.3185, 0.5465, 0.4843, 0.4283, 0.3741, 0.3748, 0.3748, 0.3966, 0.3313, 0.3416, 0.3851, 0.4623, 0.3522, 0.3613, 0.3410, 0.3733, 0.3754, 0.3495, 0.3416},
+      { 0.5321, 0.5465, 0.3948, 0.3418, 0.4188, 0.4233, 0.4268, 0.4198, 0.4413, 0.3899, 0.3956, 0.4497, 0.5097, 0.4110, 0.4174, 0.4104, 0.4341, 0.4438, 0.3976, 0.4152},
+      { 0.4576, 0.4843, 0.3418, 0.3171, 0.3682, 0.3671, 0.3698, 0.3651, 0.3873, 0.3260, 0.3220, 0.4213, 0.4711, 0.3719, 0.3865, 0.3727, 0.3805, 0.4056, 0.3535, 0.3710},
+      { 0.4154, 0.4283, 0.4188, 0.3682, 0.4950, 0.4503, 0.4655, 0.4225, 0.4216, 0.3839, 0.4032, 0.4808, 0.5118, 0.4511, 0.4607, 0.4625, 0.4760, 0.4893, 0.4014, 0.4564},
+      { 0.3821, 0.3741, 0.4233, 0.3671, 0.4503, 0.4061, 0.4166, 0.4189, 0.4196, 0.3836, 0.3765, 0.4121, 0.4752, 0.4003, 0.4062, 0.3835, 0.4294, 0.4374, 0.3890, 0.4166},
+      { 0.3642, 0.3748, 0.4268, 0.3698, 0.4655, 0.4166, 0.4405, 0.4344, 0.4287, 0.3811, 0.3845, 0.4504, 0.5016, 0.4597, 0.4631, 0.4353, 0.4622, 0.4755, 0.4112, 0.4462},
+      { 0.3776, 0.3748, 0.4198, 0.3651, 0.4225, 0.4189, 0.4344, 0.4709, 0.4331, 0.3819, 0.3787, 0.4256, 0.4765, 0.3740, 0.3798, 0.3563, 0.4210, 0.4200, 0.3665, 0.3967},
+      { 0.3938, 0.3966, 0.4413, 0.3873, 0.4216, 0.4196, 0.4287, 0.4331, 0.4435, 0.3801, 0.4013, 0.4493, 0.5236, 0.3964, 0.4068, 0.3994, 0.4386, 0.4478, 0.3925, 0.4129},
+      { 0.3440, 0.3313, 0.3899, 0.3260, 0.3839, 0.3836, 0.3811, 0.3819, 0.3801, 0.3825, 0.3652, 0.3959, 0.4737, 0.3854, 0.3898, 0.3639, 0.4202, 0.4282, 0.3807, 0.4100},
+      { 0.3454, 0.3416, 0.3956, 0.3220, 0.4032, 0.3765, 0.3845, 0.3787, 0.4013, 0.3652, 0.3772, 0.4625, 0.5337, 0.3815, 0.3844, 0.3695, 0.4278, 0.4438, 0.3694, 0.4227},
+      { 0.3723, 0.3851, 0.4497, 0.4213, 0.4808, 0.4121, 0.4504, 0.4256, 0.4493, 0.3959, 0.4625, 0.5113, 0.5510, 0.5207, 0.5503, 0.5802, 0.5662, 0.5626, 0.4378, 0.5100},
+      { 0.4188, 0.4623, 0.5097, 0.4711, 0.5118, 0.4752, 0.5016, 0.4765, 0.5236, 0.4737, 0.5337, 0.5510, 0.6150, 0.5556, 0.5649, 0.5672, 0.5983, 0.6011, 0.5058, 0.5826},
+      { 0.3206, 0.3522, 0.4110, 0.3719, 0.4511, 0.4003, 0.4597, 0.3740, 0.3964, 0.3854, 0.3815, 0.5207, 0.5556, 0.5661, 0.5680, 0.5415, 0.5351, 0.5608, 0.4848, 0.5393},
+      { 0.3177, 0.3613, 0.4174, 0.3865, 0.4607, 0.4062, 0.4631, 0.3798, 0.4068, 0.3898, 0.3844, 0.5503, 0.5649, 0.5680, 0.5885, 0.5618, 0.5513, 0.5741, 0.4935, 0.5449},
+      { 0.3105, 0.3410, 0.4104, 0.3727, 0.4625, 0.3835, 0.4353, 0.3563, 0.3994, 0.3639, 0.3695, 0.5802, 0.5672, 0.5415, 0.5618, 0.5460, 0.5300, 0.5737, 0.4755, 0.5164},
+      { 0.3476, 0.3733, 0.4341, 0.3805, 0.4760, 0.4294, 0.4622, 0.4210, 0.4386, 0.4202, 0.4278, 0.5662, 0.5983, 0.5351, 0.5513, 0.5300, 0.5819, 0.5888, 0.4885, 0.5306},
+      { 0.3382, 0.3754, 0.4438, 0.4056, 0.4893, 0.4374, 0.4755, 0.4200, 0.4478, 0.4282, 0.4438, 0.5626, 0.6011, 0.5608, 0.5741, 0.5737, 0.5888, 0.5993, 0.4943, 0.5699},
+      { 0.3348, 0.3495, 0.3976, 0.3535, 0.4014, 0.3890, 0.4112, 0.3665, 0.3925, 0.3807, 0.3694, 0.4378, 0.5058, 0.4848, 0.4935, 0.4755, 0.4885, 0.4943, 0.4672, 0.4808},
+      { 0.3350, 0.3416, 0.4152, 0.3710, 0.4564, 0.4166, 0.4462, 0.3967, 0.4129, 0.4100, 0.4227, 0.5100, 0.5826, 0.5393, 0.5449, 0.5164, 0.5306, 0.5699, 0.4808, 0.6298}},
+    {
+      { 0.3386, 0.3106, 0.5502, 0.4789, 0.4336, 0.4018, 0.3843, 0.4037, 0.3956, 0.3573, 0.3776, 0.3898, 0.4294, 0.3249, 0.3417, 0.3401, 0.3201, 0.3596, 0.3459, 0.3758},
+      { 0.3106, 0.3180, 0.5612, 0.4972, 0.4501, 0.3942, 0.3901, 0.3971, 0.4024, 0.3501, 0.3714, 0.4102, 0.5041, 0.3669, 0.3794, 0.3754, 0.3482, 0.3966, 0.3599, 0.3679},
+      { 0.5502, 0.5612, 0.4085, 0.3562, 0.4573, 0.4516, 0.4371, 0.4537, 0.4694, 0.4007, 0.4074, 0.4746, 0.5397, 0.4222, 0.4298, 0.4413, 0.4005, 0.4690, 0.4168, 0.4175},
+      { 0.4789, 0.4972, 0.3562, 0.3186, 0.3939, 0.3709, 0.3813, 0.3984, 0.3976, 0.3448, 0.3480, 0.4377, 0.4885, 0.3728, 0.3846, 0.3942, 0.3552, 0.4172, 0.3594, 0.3635},
+      { 0.4336, 0.4501, 0.4573, 0.3939, 0.5382, 0.4870, 0.4832, 0.4585, 0.4532, 0.4171, 0.4163, 0.5234, 0.5454, 0.4689, 0.4722, 0.4823, 0.5046, 0.5168, 0.4239, 0.4765},
+      { 0.4018, 0.3942, 0.4516, 0.3709, 0.4870, 0.4389, 0.4305, 0.4447, 0.4390, 0.4095, 0.4060, 0.4563, 0.5082, 0.4201, 0.4313, 0.4266, 0.4220, 0.4799, 0.3985, 0.4464},
+      { 0.3843, 0.3901, 0.4371, 0.3813, 0.4832, 0.4305, 0.4524, 0.4585, 0.4423, 0.4008, 0.4170, 0.4823, 0.5305, 0.4692, 0.4776, 0.4670, 0.4393, 0.4951, 0.4231, 0.4690},
+      { 0.4037, 0.3971, 0.4537, 0.3984, 0.4585, 0.4447, 0.4585, 0.4694, 0.4528, 0.4214, 0.4168, 0.4669, 0.5134, 0.3971, 0.4050, 0.3913, 0.3933, 0.4568, 0.3942, 0.4293},
+      { 0.3956, 0.4024, 0.4694, 0.3976, 0.4532, 0.4390, 0.4423, 0.4528, 0.4621, 0.4106, 0.4071, 0.5066, 0.5439, 0.4256, 0.4379, 0.4426, 0.4092, 0.4860, 0.4097, 0.4336},
+      { 0.3573, 0.3501, 0.4007, 0.3448, 0.4171, 0.4095, 0.4008, 0.4214, 0.4106, 0.3995, 0.3850, 0.4341, 0.4889, 0.3962, 0.4133, 0.4075, 0.4163, 0.4550, 0.3926, 0.4262},
+      { 0.3776, 0.3714, 0.4074, 0.3480, 0.4163, 0.4060, 0.4170, 0.4168, 0.4071, 0.3850, 0.4003, 0.4712, 0.5310, 0.3980, 0.4046, 0.4050, 0.3968, 0.4527, 0.3789, 0.4386},
+      { 0.3898, 0.4102, 0.4746, 0.4377, 0.5234, 0.4563, 0.4823, 0.4669, 0.5066, 0.4341, 0.4712, 0.5489, 0.5852, 0.5396, 0.5673, 0.5662, 0.6565, 0.5948, 0.4771, 0.5538},
+      { 0.4294, 0.5041, 0.5397, 0.4885, 0.5454, 0.5082, 0.5305, 0.5134, 0.5439, 0.4889, 0.5310, 0.5852, 0.6300, 0.5797, 0.5893, 0.5860, 0.6154, 0.6293, 0.5257, 0.6432},
+      { 0.3249, 0.3669, 0.4222, 0.3728, 0.4689, 0.4201, 0.4692, 0.3971, 0.4256, 0.3962, 0.3980, 0.5396, 0.5797, 0.5617, 0.5730, 0.5559, 0.5147, 0.5689, 0.4886, 0.5332},
+      { 0.3417, 0.3794, 0.4298, 0.3846, 0.4722, 0.4313, 0.4776, 0.4050, 0.4379, 0.4133, 0.4046, 0.5673, 0.5893, 0.5730, 0.5921, 0.5790, 0.5297, 0.5846, 0.5066, 0.5477},
+      { 0.3401, 0.3754, 0.4413, 0.3942, 0.4823, 0.4266, 0.4670, 0.3913, 0.4426, 0.4075, 0.4050, 0.5662, 0.5860, 0.5559, 0.5790, 0.5715, 0.5147, 0.5889, 0.5051, 0.5373},
+      { 0.3201, 0.3482, 0.4005, 0.3552, 0.5046, 0.4220, 0.4393, 0.3933, 0.4092, 0.4163, 0.3968, 0.6565, 0.6154, 0.5147, 0.5297, 0.5147, 0.5497, 0.6080, 0.4448, 0.5394},
+      { 0.3596, 0.3966, 0.4690, 0.4172, 0.5168, 0.4799, 0.4951, 0.4568, 0.4860, 0.4550, 0.4527, 0.5948, 0.6293, 0.5689, 0.5846, 0.5889, 0.6080, 0.6265, 0.5161, 0.5779},
+      { 0.3459, 0.3599, 0.4168, 0.3594, 0.4239, 0.3985, 0.4231, 0.3942, 0.4097, 0.3926, 0.3789, 0.4771, 0.5257, 0.4886, 0.5066, 0.5051, 0.4448, 0.5161, 0.4544, 0.4849},
+      { 0.3758, 0.3679, 0.4175, 0.3635, 0.4765, 0.4464, 0.4690, 0.4293, 0.4336, 0.4262, 0.4386, 0.5538, 0.6432, 0.5332, 0.5477, 0.5373, 0.5394, 0.5779, 0.4849, 0.6529}},
+    {
+      { 0.3973, 0.3716, 0.5565, 0.4921, 0.4831, 0.4431, 0.4261, 0.4539, 0.4520, 0.4094, 0.3988, 0.4360, 0.4509, 0.3867, 0.3855, 0.3813, 0.4164, 0.3586, 0.3896, 0.4157},
+      { 0.3716, 0.3761, 0.5727, 0.5071, 0.4764, 0.4354, 0.4304, 0.4206, 0.4492, 0.3993, 0.4010, 0.4430, 0.4927, 0.4084, 0.4145, 0.4018, 0.4240, 0.3843, 0.3926, 0.4048},
+      { 0.5565, 0.5727, 0.4487, 0.3837, 0.4644, 0.4675, 0.4749, 0.4779, 0.4982, 0.4434, 0.4455, 0.4950, 0.5480, 0.4613, 0.4705, 0.4703, 0.4844, 0.4451, 0.4414, 0.4663},
+      { 0.4921, 0.5071, 0.3837, 0.3590, 0.4061, 0.4162, 0.4225, 0.4141, 0.4354, 0.3796, 0.3730, 0.4511, 0.4833, 0.4179, 0.4341, 0.4216, 0.4283, 0.4051, 0.3818, 0.4305},
+      { 0.4831, 0.4764, 0.4644, 0.4061, 0.5524, 0.4955, 0.4933, 0.4696, 0.4745, 0.4228, 0.4331, 0.5550, 0.5898, 0.4791, 0.4891, 0.4902, 0.5257, 0.5301, 0.4445, 0.4885},
+      { 0.4431, 0.4354, 0.4675, 0.4162, 0.4955, 0.4736, 0.4758, 0.4807, 0.4786, 0.4414, 0.4383, 0.4640, 0.5103, 0.4586, 0.4614, 0.4537, 0.4963, 0.4509, 0.4411, 0.4927},
+      { 0.4261, 0.4304, 0.4749, 0.4225, 0.4933, 0.4758, 0.4932, 0.4838, 0.4845, 0.4391, 0.4401, 0.4851, 0.5303, 0.5054, 0.5129, 0.5019, 0.5225, 0.4793, 0.4574, 0.4980},
+      { 0.4539, 0.4206, 0.4779, 0.4141, 0.4696, 0.4807, 0.4838, 0.5465, 0.4920, 0.4478, 0.4437, 0.4752, 0.5188, 0.4322, 0.4372, 0.4282, 0.4846, 0.4382, 0.4163, 0.4581},
+      { 0.4520, 0.4492, 0.4982, 0.4354, 0.4745, 0.4786, 0.4845, 0.4920, 0.4848, 0.4339, 0.4655, 0.4915, 0.5362, 0.4566, 0.4628, 0.4627, 0.4954, 0.4660, 0.4366, 0.4746},
+      { 0.4094, 0.3993, 0.4434, 0.3796, 0.4228, 0.4414, 0.4391, 0.4478, 0.4339, 0.4422, 0.4231, 0.4422, 0.4923, 0.4447, 0.4431, 0.4435, 0.4776, 0.4191, 0.4333, 0.4674},
+      { 0.3988, 0.4010, 0.4455, 0.3730, 0.4331, 0.4383, 0.4401, 0.4437, 0.4655, 0.4231, 0.4309, 0.4822, 0.5531, 0.4292, 0.4384, 0.4415, 0.4851, 0.4356, 0.4301, 0.4670},
+      { 0.4360, 0.4430, 0.4950, 0.4511, 0.5550, 0.4640, 0.4851, 0.4752, 0.4915, 0.4422, 0.4822, 0.6023, 0.6189, 0.5395, 0.5627, 0.5626, 0.5948, 0.6563, 0.4815, 0.5490},
+      { 0.4509, 0.4927, 0.5480, 0.4833, 0.5898, 0.5103, 0.5303, 0.5188, 0.5362, 0.4923, 0.5531, 0.6189, 0.6617, 0.5853, 0.5960, 0.5989, 0.6134, 0.6322, 0.5357, 0.5872},
+      { 0.3867, 0.4084, 0.4613, 0.4179, 0.4791, 0.4586, 0.5054, 0.4322, 0.4566, 0.4447, 0.4292, 0.5395, 0.5853, 0.6069, 0.6163, 0.5945, 0.5863, 0.5618, 0.5189, 0.5755},
+      { 0.3855, 0.4145, 0.4705, 0.4341, 0.4891, 0.4614, 0.5129, 0.4372, 0.4628, 0.4431, 0.4384, 0.5627, 0.5960, 0.6163, 0.6416, 0.6182, 0.6078, 0.5822, 0.5331, 0.5824},
+      { 0.3813, 0.4018, 0.4703, 0.4216, 0.4902, 0.4537, 0.5019, 0.4282, 0.4627, 0.4435, 0.4415, 0.5626, 0.5989, 0.5945, 0.6182, 0.6119, 0.6001, 0.5803, 0.5283, 0.5645},
+      { 0.4164, 0.4240, 0.4844, 0.4283, 0.5257, 0.4963, 0.5225, 0.4846, 0.4954, 0.4776, 0.4851, 0.5948, 0.6134, 0.5863, 0.6078, 0.6001, 0.6400, 0.6112, 0.5302, 0.5823},
+      { 0.3586, 0.3843, 0.4451, 0.4051, 0.5301, 0.4509, 0.4793, 0.4382, 0.4660, 0.4191, 0.4356, 0.6563, 0.6322, 0.5618, 0.5822, 0.5803, 0.6112, 0.6476, 0.4938, 0.5713},
+      { 0.3896, 0.3926, 0.4414, 0.3818, 0.4445, 0.4411, 0.4574, 0.4163, 0.4366, 0.4333, 0.4301, 0.4815, 0.5357, 0.5189, 0.5331, 0.5283, 0.5302, 0.4938, 0.4825, 0.5101},
+      { 0.4157, 0.4048, 0.4663, 0.4305, 0.4885, 0.4927, 0.4980, 0.4581, 0.4746, 0.4674, 0.4670, 0.5490, 0.5872, 0.5755, 0.5824, 0.5645, 0.5823, 0.5713, 0.5101, 0.6867}},
+    {
+      { 0.2060, 0.1816, 0.4284, 0.3560, 0.3183, 0.2834, 0.2781, 0.2855, 0.2976, 0.2413, 0.2393, 0.2793, 0.3168, 0.2445, 0.2503, 0.2498, 0.2666, 0.2616, 0.2094, 0.2687},
+      { 0.1816, 0.2041, 0.4369, 0.3698, 0.3031, 0.2581, 0.2687, 0.2648, 0.2899, 0.2228, 0.2325, 0.2578, 0.3375, 0.2719, 0.2865, 0.2781, 0.2762, 0.2673, 0.2371, 0.2607},
+      { 0.4284, 0.4369, 0.3038, 0.2337, 0.3241, 0.3245, 0.3435, 0.3348, 0.3409, 0.3001, 0.3034, 0.3407, 0.4133, 0.3442, 0.3610, 0.3569, 0.3519, 0.3539, 0.2929, 0.3351},
+      { 0.3560, 0.3698, 0.2337, 0.2042, 0.2596, 0.2565, 0.2756, 0.2751, 0.2822, 0.2289, 0.2225, 0.2867, 0.3366, 0.2969, 0.3051, 0.3054, 0.2831, 0.2874, 0.2474, 0.2752},
+      { 0.3183, 0.3031, 0.3241, 0.2596, 0.3944, 0.4017, 0.3963, 0.3236, 0.3189, 0.3347, 0.3230, 0.4034, 0.4417, 0.3871, 0.3918, 0.3886, 0.4042, 0.4058, 0.3545, 0.4064},
+      { 0.2834, 0.2581, 0.3245, 0.2565, 0.4017, 0.3377, 0.3401, 0.3450, 0.3322, 0.3125, 0.3032, 0.4062, 0.4186, 0.3489, 0.3564, 0.3537, 0.3840, 0.4152, 0.2973, 0.3585},
+      { 0.2781, 0.2687, 0.3435, 0.2756, 0.3963, 0.3401, 0.3730, 0.3631, 0.3422, 0.3117, 0.2990, 0.3923, 0.4209, 0.3949, 0.4093, 0.3960, 0.4049, 0.4198, 0.3141, 0.3869},
+      { 0.2855, 0.2648, 0.3348, 0.2751, 0.3236, 0.3450, 0.3631, 0.3720, 0.3376, 0.3025, 0.2934, 0.3304, 0.3917, 0.3217, 0.3203, 0.3187, 0.3708, 0.3549, 0.2798, 0.3309},
+      { 0.2976, 0.2899, 0.3409, 0.2822, 0.3189, 0.3322, 0.3422, 0.3376, 0.3347, 0.3032, 0.2915, 0.3182, 0.3933, 0.3303, 0.3452, 0.3510, 0.3521, 0.3440, 0.2980, 0.3339},
+      { 0.2413, 0.2228, 0.3001, 0.2289, 0.3347, 0.3125, 0.3117, 0.3025, 0.3032, 0.3057, 0.2684, 0.3957, 0.4104, 0.3467, 0.3646, 0.3659, 0.3955, 0.4181, 0.2953, 0.3811},
+      { 0.2393, 0.2325, 0.3034, 0.2225, 0.3230, 0.3032, 0.2990, 0.2934, 0.2915, 0.2684, 0.2846, 0.3883, 0.4454, 0.3000, 0.3305, 0.3238, 0.3703, 0.3757, 0.2561, 0.3332},
+      { 0.2793, 0.2578, 0.3407, 0.2867, 0.4034, 0.4062, 0.3923, 0.3304, 0.3182, 0.3957, 0.3883, 0.4399, 0.4739, 0.4606, 0.4543, 0.4378, 0.4771, 0.4815, 0.4795, 0.4812},
+      { 0.3168, 0.3375, 0.4133, 0.3366, 0.4417, 0.4186, 0.4209, 0.3917, 0.3933, 0.4104, 0.4454, 0.4739, 0.5251, 0.4762, 0.4870, 0.4776, 0.5237, 0.5350, 0.4385, 0.4997},
+      { 0.2445, 0.2719, 0.3442, 0.2969, 0.3871, 0.3489, 0.3949, 0.3217, 0.3303, 0.3467, 0.3000, 0.4606, 0.4762, 0.4958, 0.5037, 0.4859, 0.4745, 0.4888, 0.4025, 0.4724},
+      { 0.2503, 0.2865, 0.3610, 0.3051, 0.3918, 0.3564, 0.4093, 0.3203, 0.3452, 0.3646, 0.3305, 0.4543, 0.4870, 0.5037, 0.5224, 0.5066, 0.4936, 0.4963, 0.4141, 0.4822},
+      { 0.2498, 0.2781, 0.3569, 0.3054, 0.3886, 0.3537, 0.3960, 0.3187, 0.3510, 0.3659, 0.3238, 0.4378, 0.4776, 0.4859, 0.5066, 0.4982, 0.4860, 0.4846, 0.4164, 0.4541},
+      { 0.2666, 0.2762, 0.3519, 0.2831, 0.4042, 0.3840, 0.4049, 0.3708, 0.3521, 0.3955, 0.3703, 0.4771, 0.5237, 0.4745, 0.4936, 0.4860, 0.5325, 0.5155, 0.4160, 0.4826},
+      { 0.2616, 0.2673, 0.3539, 0.2874, 0.4058, 0.4152, 0.4198, 0.3549, 0.3440, 0.4181, 0.3757, 0.4815, 0.5350, 0.4888, 0.4963, 0.4846, 0.5155, 0.5250, 0.4688, 0.5131},
+      { 0.2094, 0.2371, 0.2929, 0.2474, 0.3545, 0.2973, 0.3141, 0.2798, 0.2980, 0.2953, 0.2561, 0.4795, 0.4385, 0.4025, 0.4141, 0.4164, 0.4160, 0.4688, 0.3689, 0.4115},
+      { 0.2687, 0.2607, 0.3351, 0.2752, 0.4064, 0.3585, 0.3869, 0.3309, 0.3339, 0.3811, 0.3332, 0.4812, 0.4997, 0.4724, 0.4822, 0.4541, 0.4826, 0.5131, 0.4115, 0.6173}},
+    {
+      { 0.2737, 0.2771, 0.5173, 0.4491, 0.4622, 0.3746, 0.3630, 0.3814, 0.3834, 0.3428, 0.3338, 0.4016, 0.4245, 0.3405, 0.3344, 0.3456, 0.3793, 0.3828, 0.3011, 0.2767},
+      { 0.2771, 0.3036, 0.5483, 0.4665, 0.4631, 0.3469, 0.3549, 0.3710, 0.3922, 0.3126, 0.3423, 0.4062, 0.4510, 0.3541, 0.3787, 0.3635, 0.3816, 0.3860, 0.3013, 0.2638},
+      { 0.5173, 0.5483, 0.4067, 0.3567, 0.4459, 0.3991, 0.4311, 0.4239, 0.4472, 0.3683, 0.3876, 0.4734, 0.5308, 0.4187, 0.4445, 0.4267, 0.4280, 0.4578, 0.3737, 0.3203},
+      { 0.4491, 0.4665, 0.3567, 0.2997, 0.3582, 0.3427, 0.3695, 0.3485, 0.3690, 0.3136, 0.3012, 0.4274, 0.4476, 0.3718, 0.3961, 0.3811, 0.3796, 0.3918, 0.3279, 0.3105},
+      { 0.4622, 0.4631, 0.4459, 0.3582, 0.5336, 0.4855, 0.4884, 0.4407, 0.4203, 0.3826, 0.4149, 0.5066, 0.5372, 0.4489, 0.4511, 0.4469, 0.4814, 0.4907, 0.4044, 0.4282},
+      { 0.3746, 0.3469, 0.3991, 0.3427, 0.4855, 0.4194, 0.4224, 0.4371, 0.4089, 0.3765, 0.3860, 0.4806, 0.4966, 0.4168, 0.4187, 0.4093, 0.4463, 0.4848, 0.3691, 0.3835},
+      { 0.3630, 0.3549, 0.4311, 0.3695, 0.4884, 0.4224, 0.4564, 0.4455, 0.4368, 0.3687, 0.3897, 0.4971, 0.5143, 0.4556, 0.4651, 0.4430, 0.4626, 0.4914, 0.3848, 0.3878},
+      { 0.3814, 0.3710, 0.4239, 0.3485, 0.4407, 0.4371, 0.4455, 0.5355, 0.4308, 0.3907, 0.3943, 0.4705, 0.5087, 0.3880, 0.3940, 0.3916, 0.4592, 0.4534, 0.3577, 0.3490},
+      { 0.3834, 0.3922, 0.4472, 0.3690, 0.4203, 0.4089, 0.4368, 0.4308, 0.4359, 0.3790, 0.3965, 0.4461, 0.5274, 0.4128, 0.4148, 0.4103, 0.4396, 0.4550, 0.3685, 0.3661},
+      { 0.3428, 0.3126, 0.3683, 0.3136, 0.3826, 0.3765, 0.3687, 0.3907, 0.3790, 0.3397, 0.3399, 0.4122, 0.4595, 0.4019, 0.4089, 0.3994, 0.4528, 0.4346, 0.3363, 0.3651},
+      { 0.3338, 0.3423, 0.3876, 0.3012, 0.4149, 0.3860, 0.3897, 0.3943, 0.3965, 0.3399, 0.3787, 0.4838, 0.5268, 0.3690, 0.3935, 0.3950, 0.4592, 0.4366, 0.3344, 0.2940},
+      { 0.4016, 0.4062, 0.4734, 0.4274, 0.5066, 0.4806, 0.4971, 0.4705, 0.4461, 0.4122, 0.4838, 0.5145, 0.5451, 0.5402, 0.5182, 0.5100, 0.5538, 0.5490, 0.4812, 0.5282},
+      { 0.4245, 0.4510, 0.5308, 0.4476, 0.5372, 0.4966, 0.5143, 0.5087, 0.5274, 0.4595, 0.5268, 0.5451, 0.5886, 0.5525, 0.5681, 0.5573, 0.6491, 0.5977, 0.4751, 0.5781},
+      { 0.3405, 0.3541, 0.4187, 0.3718, 0.4489, 0.4168, 0.4556, 0.3880, 0.4128, 0.4019, 0.3690, 0.5402, 0.5525, 0.5387, 0.5431, 0.5185, 0.5320, 0.5454, 0.4700, 0.4095},
+      { 0.3344, 0.3787, 0.4445, 0.3961, 0.4511, 0.4187, 0.4651, 0.3940, 0.4148, 0.4089, 0.3935, 0.5182, 0.5681, 0.5431, 0.5686, 0.5476, 0.5342, 0.5454, 0.4824, 0.4121},
+      { 0.3456, 0.3635, 0.4267, 0.3811, 0.4469, 0.4093, 0.4430, 0.3916, 0.4103, 0.3994, 0.3950, 0.5100, 0.5573, 0.5185, 0.5476, 0.5374, 0.5192, 0.5391, 0.4683, 0.3936},
+      { 0.3793, 0.3816, 0.4280, 0.3796, 0.4814, 0.4463, 0.4626, 0.4592, 0.4396, 0.4528, 0.4592, 0.5538, 0.6491, 0.5320, 0.5342, 0.5192, 0.5624, 0.5772, 0.4735, 0.4538},
+      { 0.3828, 0.3860, 0.4578, 0.3918, 0.4907, 0.4848, 0.4914, 0.4534, 0.4550, 0.4346, 0.4366, 0.5490, 0.5977, 0.5454, 0.5454, 0.5391, 0.5772, 0.5674, 0.5034, 0.5366},
+      { 0.3011, 0.3013, 0.3737, 0.3279, 0.4044, 0.3691, 0.3848, 0.3577, 0.3685, 0.3363, 0.3344, 0.4812, 0.4751, 0.4700, 0.4824, 0.4683, 0.4735, 0.5034, 0.4221, 0.3593},
+      { 0.2767, 0.2638, 0.3203, 0.3105, 0.4282, 0.3835, 0.3878, 0.3490, 0.3661, 0.3651, 0.2940, 0.5282, 0.5781, 0.4095, 0.4121, 0.3936, 0.4538, 0.5366, 0.3593, 0.5084}}},
+  {
+    {
+      { 0.2077, 0.2017, 0.3828, 0.3321, 0.4542, 0.3025, 0.2926, 0.3336, 0.3219, 0.2509, 0.2551, 0.4367, 0.4669, 0.2923, 0.3011, 0.2978, 0.3072, 0.3827, 0.2501, 0.3537},
+      { 0.2017, 0.2099, 0.4130, 0.3600, 0.3114, 0.2718, 0.2885, 0.2767, 0.2894, 0.2206, 0.2314, 0.3452, 0.3077, 0.2612, 0.2575, 0.2746, 0.2683, 0.2859, 0.2540, 0.2829},
+      { 0.3828, 0.4130, 0.3219, 0.2316, 0.3216, 0.3161, 0.3291, 0.2968, 0.3165, 0.2746, 0.2765, 0.3601, 0.2757, 0.3152, 0.3309, 0.3145, 0.3076, 0.3207, 0.2885, 0.3159},
+      { 0.3321, 0.3600, 0.2316, 0.1922, 0.2352, 0.2407, 0.2593, 0.2501, 0.2512, 0.2124, 0.1996, 0.2970, 0.1937, 0.2373, 0.2503, 0.2346, 0.2500, 0.2437, 0.2167, 0.2288},
+      { 0.4542, 0.3114, 0.3216, 0.2352, 0.3816, 0.3225, 0.3247, 0.3132, 0.3006, 0.2663, 0.2864, 0.4104, 0.3483, 0.3297, 0.3435, 0.3312, 0.3720, 0.3673, 0.2838, 0.3372},
+      { 0.3025, 0.2718, 0.3161, 0.2407, 0.3225, 0.2918, 0.2883, 0.2971, 0.2906, 0.2457, 0.2656, 0.3247, 0.2785, 0.2764, 0.2771, 0.2699, 0.2881, 0.3073, 0.2733, 0.3525},
+      { 0.2926, 0.2885, 0.3291, 0.2593, 0.3247, 0.2883, 0.3014, 0.2852, 0.2979, 0.2411, 0.2738, 0.3535, 0.2941, 0.3418, 0.3349, 0.3135, 0.3300, 0.3345, 0.2582, 0.3260},
+      { 0.3336, 0.2767, 0.2968, 0.2501, 0.3132, 0.2971, 0.2852, 0.3252, 0.3012, 0.2566, 0.2660, 0.3405, 0.3234, 0.2504, 0.2650, 0.2546, 0.3119, 0.2971, 0.2444, 0.3012},
+      { 0.3219, 0.2894, 0.3165, 0.2512, 0.3006, 0.2906, 0.2979, 0.3012, 0.2927, 0.2387, 0.2867, 0.3202, 0.2934, 0.2704, 0.2842, 0.2960, 0.3275, 0.2895, 0.2716, 0.2861},
+      { 0.2509, 0.2206, 0.2746, 0.2124, 0.2663, 0.2457, 0.2411, 0.2566, 0.2387, 0.2181, 0.2141, 0.2691, 0.2267, 0.2250, 0.2213, 0.2268, 0.2548, 0.2439, 0.2272, 0.2650},
+      { 0.2551, 0.2314, 0.2765, 0.1996, 0.2864, 0.2656, 0.2738, 0.2660, 0.2867, 0.2141, 0.2775, 0.3269, 0.2628, 0.2374, 0.2534, 0.2560, 0.2686, 0.2623, 0.2405, 0.2635},
+      { 0.4367, 0.3452, 0.3601, 0.2970, 0.4104, 0.3247, 0.3535, 0.3405, 0.3202, 0.2691, 0.3269, 0.4414, 0.4305, 0.4109, 0.4318, 0.4188, 0.4294, 0.4509, 0.3168, 0.4245},
+      { 0.4669, 0.3077, 0.2757, 0.1937, 0.3483, 0.2785, 0.2941, 0.3234, 0.2934, 0.2267, 0.2628, 0.4305, 0.4484, 0.3499, 0.3919, 0.3515, 0.3806, 0.4468, 0.2738, 0.4299},
+      { 0.2923, 0.2612, 0.3152, 0.2373, 0.3297, 0.2764, 0.3418, 0.2504, 0.2704, 0.2250, 0.2374, 0.4109, 0.3499, 0.3865, 0.4178, 0.4014, 0.3952, 0.4057, 0.2896, 0.3866},
+      { 0.3011, 0.2575, 0.3309, 0.2503, 0.3435, 0.2771, 0.3349, 0.2650, 0.2842, 0.2213, 0.2534, 0.4318, 0.3919, 0.4178, 0.4615, 0.4322, 0.4084, 0.4281, 0.3006, 0.3907},
+      { 0.2978, 0.2746, 0.3145, 0.2346, 0.3312, 0.2699, 0.3135, 0.2546, 0.2960, 0.2268, 0.2560, 0.4188, 0.3515, 0.4014, 0.4322, 0.4182, 0.3998, 0.4133, 0.2886, 0.3946},
+      { 0.3072, 0.2683, 0.3076, 0.2500, 0.3720, 0.2881, 0.3300, 0.3119, 0.3275, 0.2548, 0.2686, 0.4294, 0.3806, 0.3952, 0.4084, 0.3998, 0.4430, 0.4487, 0.2979, 0.3953},
+      { 0.3827, 0.2859, 0.3207, 0.2437, 0.3673, 0.3073, 0.3345, 0.2971, 0.2895, 0.2439, 0.2623, 0.4509, 0.4468, 0.4057, 0.4281, 0.4133, 0.4487, 0.4808, 0.3107, 0.4388},
+      { 0.2501, 0.2540, 0.2885, 0.2167, 0.2838, 0.2733, 0.2582, 0.2444, 0.2716, 0.2272, 0.2405, 0.3168, 0.2738, 0.2896, 0.3006, 0.2886, 0.2979, 0.3107, 0.2795, 0.2971},
+      { 0.3537, 0.2829, 0.3159, 0.2288, 0.3372, 0.3525, 0.3260, 0.3012, 0.2861, 0.2650, 0.2635, 0.4245, 0.4299, 0.3866, 0.3907, 0.3946, 0.3953, 0.4388, 0.2971, 0.5837}},
+    {
+      { 0.2447, 0.2392, 0.4470, 0.3919, 0.3757, 0.2991, 0.3110, 0.3063, 0.3405, 0.2591, 0.2483, 0.3654, 0.3077, 0.2704, 0.2783, 0.2753, 0.2835, 0.2909, 0.2749, 0.3057},
+      { 0.2392, 0.2384, 0.4578, 0.3841, 0.3936, 0.3046, 0.3339, 0.3145, 0.3322, 0.2644, 0.2592, 0.4345, 0.5030, 0.3116, 0.3197, 0.3217, 0.3471, 0.3948, 0.2981, 0.3379},
+      { 0.4470, 0.4578, 0.3252, 0.2643, 0.3381, 0.3339, 0.3586, 0.3369, 0.3459, 0.3174, 0.3045, 0.3973, 0.3274, 0.3571, 0.3670, 0.3570, 0.3517, 0.3509, 0.3333, 0.3380},
+      { 0.3919, 0.3841, 0.2643, 0.2415, 0.2582, 0.2713, 0.2967, 0.2819, 0.2990, 0.2348, 0.2227, 0.3535, 0.2549, 0.2862, 0.2916, 0.2940, 0.2751, 0.2856, 0.2727, 0.2540},
+      { 0.3757, 0.3936, 0.3381, 0.2582, 0.4435, 0.3529, 0.3885, 0.3259, 0.3245, 0.2888, 0.3132, 0.4418, 0.3842, 0.3801, 0.3798, 0.3820, 0.4171, 0.4120, 0.3052, 0.3662},
+      { 0.2991, 0.3046, 0.3339, 0.2713, 0.3529, 0.3170, 0.3156, 0.3220, 0.3249, 0.2761, 0.2746, 0.3364, 0.2955, 0.2950, 0.2962, 0.2879, 0.3067, 0.3158, 0.2891, 0.3337},
+      { 0.3110, 0.3339, 0.3586, 0.2967, 0.3885, 0.3156, 0.3620, 0.3298, 0.3430, 0.2675, 0.2721, 0.3713, 0.3178, 0.3637, 0.3524, 0.3430, 0.3528, 0.3484, 0.2915, 0.3317},
+      { 0.3063, 0.3145, 0.3369, 0.2819, 0.3259, 0.3220, 0.3298, 0.3411, 0.3358, 0.2804, 0.2798, 0.3446, 0.2853, 0.3037, 0.3012, 0.2779, 0.3227, 0.3200, 0.2719, 0.3237},
+      { 0.3405, 0.3322, 0.3459, 0.2990, 0.3245, 0.3249, 0.3430, 0.3358, 0.3416, 0.2635, 0.3147, 0.3940, 0.3962, 0.3066, 0.3236, 0.3323, 0.3521, 0.3636, 0.2981, 0.3161},
+      { 0.2591, 0.2644, 0.3174, 0.2348, 0.2888, 0.2761, 0.2675, 0.2804, 0.2635, 0.2765, 0.2438, 0.3147, 0.2509, 0.2682, 0.2783, 0.2738, 0.3012, 0.2779, 0.2647, 0.2910},
+      { 0.2483, 0.2592, 0.3045, 0.2227, 0.3132, 0.2746, 0.2721, 0.2798, 0.3147, 0.2438, 0.2760, 0.3528, 0.2939, 0.2524, 0.2628, 0.2705, 0.2823, 0.2839, 0.2630, 0.2839},
+      { 0.3654, 0.4345, 0.3973, 0.3535, 0.4418, 0.3364, 0.3713, 0.3446, 0.3940, 0.3147, 0.3528, 0.4679, 0.4573, 0.4571, 0.4752, 0.4623, 0.5041, 0.4927, 0.3375, 0.4510},
+      { 0.3077, 0.5030, 0.3274, 0.2549, 0.3842, 0.2955, 0.3178, 0.2853, 0.3962, 0.2509, 0.2939, 0.4573, 0.4848, 0.3982, 0.4155, 0.3965, 0.4548, 0.4725, 0.2886, 0.4403},
+      { 0.2704, 0.3116, 0.3571, 0.2862, 0.3801, 0.2950, 0.3637, 0.3037, 0.3066, 0.2682, 0.2524, 0.4571, 0.3982, 0.4286, 0.4446, 0.4230, 0.4189, 0.4330, 0.3100, 0.4150},
+      { 0.2783, 0.3197, 0.3670, 0.2916, 0.3798, 0.2962, 0.3524, 0.3012, 0.3236, 0.2783, 0.2628, 0.4752, 0.4155, 0.4446, 0.4598, 0.4551, 0.4496, 0.4527, 0.3221, 0.4255},
+      { 0.2753, 0.3217, 0.3570, 0.2940, 0.3820, 0.2879, 0.3430, 0.2779, 0.3323, 0.2738, 0.2705, 0.4623, 0.3965, 0.4230, 0.4551, 0.4546, 0.4367, 0.4469, 0.3195, 0.4134},
+      { 0.2835, 0.3471, 0.3517, 0.2751, 0.4171, 0.3067, 0.3528, 0.3227, 0.3521, 0.3012, 0.2823, 0.5041, 0.4548, 0.4189, 0.4496, 0.4367, 0.4640, 0.4813, 0.3343, 0.4415},
+      { 0.2909, 0.3948, 0.3509, 0.2856, 0.4120, 0.3158, 0.3484, 0.3200, 0.3636, 0.2779, 0.2839, 0.4927, 0.4725, 0.4330, 0.4527, 0.4469, 0.4813, 0.5039, 0.3223, 0.4765},
+      { 0.2749, 0.2981, 0.3333, 0.2727, 0.3052, 0.2891, 0.2915, 0.2719, 0.2981, 0.2647, 0.2630, 0.3375, 0.2886, 0.3100, 0.3221, 0.3195, 0.3343, 0.3223, 0.3171, 0.3141},
+      { 0.3057, 0.3379, 0.3380, 0.2540, 0.3662, 0.3337, 0.3317, 0.3237, 0.3161, 0.2910, 0.2839, 0.4510, 0.4403, 0.4150, 0.4255, 0.4134, 0.4415, 0.4765, 0.3141, 0.5479}},
+    {
+      { 0.2986, 0.2802, 0.4740, 0.4441, 0.4084, 0.3589, 0.3577, 0.3675, 0.3805, 0.3228, 0.3395, 0.3808, 0.2757, 0.3224, 0.3181, 0.3041, 0.3330, 0.3059, 0.3210, 0.3294},
+      { 0.2802, 0.2822, 0.4926, 0.4687, 0.3866, 0.3541, 0.3745, 0.3489, 0.3714, 0.3053, 0.3271, 0.3960, 0.3274, 0.3559, 0.3553, 0.3567, 0.3589, 0.3464, 0.3365, 0.3374},
+      { 0.4740, 0.4926, 0.4169, 0.3457, 0.5088, 0.4327, 0.4372, 0.4407, 0.4537, 0.3977, 0.4016, 0.5530, 0.6133, 0.4148, 0.4279, 0.4222, 0.4616, 0.5255, 0.3950, 0.4441},
+      { 0.4441, 0.4687, 0.3457, 0.3050, 0.3986, 0.3704, 0.3780, 0.3774, 0.3909, 0.3187, 0.3175, 0.4654, 0.4422, 0.3632, 0.3724, 0.3722, 0.3605, 0.4161, 0.3442, 0.3802},
+      { 0.4084, 0.3866, 0.5088, 0.3986, 0.6646, 0.4249, 0.4332, 0.3961, 0.3901, 0.3621, 0.4039, 0.4940, 0.4732, 0.4287, 0.4387, 0.4287, 0.4586, 0.4733, 0.3878, 0.4303},
+      { 0.3589, 0.3541, 0.4327, 0.3704, 0.4249, 0.3848, 0.3968, 0.3980, 0.3937, 0.3707, 0.3649, 0.4093, 0.3653, 0.3728, 0.3677, 0.3638, 0.3909, 0.3946, 0.3534, 0.3859},
+      { 0.3577, 0.3745, 0.4372, 0.3780, 0.4332, 0.3968, 0.4583, 0.4104, 0.4080, 0.3648, 0.3649, 0.4387, 0.3877, 0.4287, 0.4279, 0.4051, 0.4183, 0.4189, 0.3769, 0.4285},
+      { 0.3675, 0.3489, 0.4407, 0.3774, 0.3961, 0.3980, 0.4104, 0.4270, 0.4074, 0.3745, 0.3584, 0.4289, 0.3461, 0.3626, 0.3744, 0.3583, 0.3889, 0.3863, 0.3433, 0.3913},
+      { 0.3805, 0.3714, 0.4537, 0.3909, 0.3901, 0.3937, 0.4080, 0.4074, 0.4134, 0.3475, 0.3855, 0.4475, 0.4316, 0.3930, 0.3893, 0.3918, 0.4249, 0.4360, 0.3808, 0.4072},
+      { 0.3228, 0.3053, 0.3977, 0.3187, 0.3621, 0.3707, 0.3648, 0.3745, 0.3475, 0.3471, 0.3339, 0.3886, 0.3174, 0.3458, 0.3502, 0.3437, 0.3828, 0.3495, 0.3485, 0.3908},
+      { 0.3395, 0.3271, 0.4016, 0.3175, 0.4039, 0.3649, 0.3649, 0.3584, 0.3855, 0.3339, 0.3951, 0.4342, 0.3824, 0.3630, 0.3554, 0.3676, 0.4053, 0.3964, 0.3606, 0.3901},
+      { 0.3808, 0.3960, 0.5530, 0.4654, 0.4940, 0.4093, 0.4387, 0.4289, 0.4475, 0.3886, 0.4342, 0.5240, 0.5262, 0.5016, 0.5156, 0.5097, 0.5397, 0.5480, 0.4133, 0.5308},
+      { 0.2757, 0.3274, 0.6133, 0.4422, 0.4732, 0.3653, 0.3877, 0.3461, 0.4316, 0.3174, 0.3824, 0.5262, 0.5374, 0.4501, 0.4866, 0.4712, 0.5301, 0.5164, 0.3671, 0.5222},
+      { 0.3224, 0.3559, 0.4148, 0.3632, 0.4287, 0.3728, 0.4287, 0.3626, 0.3930, 0.3458, 0.3630, 0.5016, 0.4501, 0.4922, 0.4929, 0.4733, 0.4748, 0.4892, 0.3999, 0.4700},
+      { 0.3181, 0.3553, 0.4279, 0.3724, 0.4387, 0.3677, 0.4279, 0.3744, 0.3893, 0.3502, 0.3554, 0.5156, 0.4866, 0.4929, 0.5198, 0.5072, 0.4917, 0.5081, 0.4048, 0.4721},
+      { 0.3041, 0.3567, 0.4222, 0.3722, 0.4287, 0.3638, 0.4051, 0.3583, 0.3918, 0.3437, 0.3676, 0.5097, 0.4712, 0.4733, 0.5072, 0.5048, 0.4829, 0.5035, 0.4034, 0.4945},
+      { 0.3330, 0.3589, 0.4616, 0.3605, 0.4586, 0.3909, 0.4183, 0.3889, 0.4249, 0.3828, 0.4053, 0.5397, 0.5301, 0.4748, 0.4917, 0.4829, 0.5235, 0.5507, 0.4144, 0.5126},
+      { 0.3059, 0.3464, 0.5255, 0.4161, 0.4733, 0.3946, 0.4189, 0.3863, 0.4360, 0.3495, 0.3964, 0.5480, 0.5164, 0.4892, 0.5081, 0.5035, 0.5507, 0.5454, 0.4103, 0.5360},
+      { 0.3210, 0.3365, 0.3950, 0.3442, 0.3878, 0.3534, 0.3769, 0.3433, 0.3808, 0.3485, 0.3606, 0.4133, 0.3671, 0.3999, 0.4048, 0.4034, 0.4144, 0.4103, 0.3953, 0.4101},
+      { 0.3294, 0.3374, 0.4441, 0.3802, 0.4303, 0.3859, 0.4285, 0.3913, 0.4072, 0.3908, 0.3901, 0.5308, 0.5222, 0.4700, 0.4721, 0.4945, 0.5126, 0.5360, 0.4101, 0.6264}},
+    {
+      { 0.2353, 0.2084, 0.4405, 0.3597, 0.3277, 0.2834, 0.2836, 0.2784, 0.3013, 0.2320, 0.2550, 0.2915, 0.1937, 0.2452, 0.2469, 0.2451, 0.2529, 0.2294, 0.2575, 0.2772},
+      { 0.2084, 0.2301, 0.4586, 0.3792, 0.3247, 0.2818, 0.2938, 0.2721, 0.2987, 0.2120, 0.2525, 0.3316, 0.2549, 0.2900, 0.2908, 0.2961, 0.2910, 0.2682, 0.2733, 0.2825},
+      { 0.4405, 0.4586, 0.3447, 0.2773, 0.3894, 0.3499, 0.3699, 0.3551, 0.3710, 0.3114, 0.3314, 0.4495, 0.4422, 0.3695, 0.3846, 0.3788, 0.3850, 0.4078, 0.3514, 0.3768},
+      { 0.3597, 0.3792, 0.2773, 0.2319, 0.3592, 0.3003, 0.3140, 0.3091, 0.3050, 0.2459, 0.2636, 0.4472, 0.4437, 0.3122, 0.3145, 0.3035, 0.3270, 0.3845, 0.3026, 0.3466},
+      { 0.3277, 0.3247, 0.3894, 0.3592, 0.3859, 0.3362, 0.3664, 0.3201, 0.3266, 0.2819, 0.3399, 0.4295, 0.4065, 0.3724, 0.3784, 0.3960, 0.3980, 0.3874, 0.3033, 0.3543},
+      { 0.2834, 0.2818, 0.3499, 0.3003, 0.3362, 0.3074, 0.3103, 0.3145, 0.3122, 0.2573, 0.2756, 0.3201, 0.2784, 0.2992, 0.3027, 0.2990, 0.3073, 0.3150, 0.2771, 0.3038},
+      { 0.2836, 0.2938, 0.3699, 0.3140, 0.3664, 0.3103, 0.3598, 0.3205, 0.3301, 0.2584, 0.2747, 0.3651, 0.2989, 0.3590, 0.3695, 0.3417, 0.3306, 0.3459, 0.2923, 0.3440},
+      { 0.2784, 0.2721, 0.3551, 0.3091, 0.3201, 0.3145, 0.3205, 0.3361, 0.3178, 0.2604, 0.2872, 0.3327, 0.2695, 0.2920, 0.3069, 0.2812, 0.3199, 0.2973, 0.2614, 0.3125},
+      { 0.3013, 0.2987, 0.3710, 0.3050, 0.3266, 0.3122, 0.3301, 0.3178, 0.3262, 0.2507, 0.2915, 0.3873, 0.3555, 0.3252, 0.3244, 0.3396, 0.3531, 0.3601, 0.3056, 0.3298},
+      { 0.2320, 0.2120, 0.3114, 0.2459, 0.2819, 0.2573, 0.2584, 0.2604, 0.2507, 0.2529, 0.2683, 0.2899, 0.2422, 0.2625, 0.2617, 0.2815, 0.3250, 0.2611, 0.2608, 0.2859},
+      { 0.2550, 0.2525, 0.3314, 0.2636, 0.3399, 0.2756, 0.2747, 0.2872, 0.2915, 0.2683, 0.2830, 0.3687, 0.2789, 0.2856, 0.2901, 0.2986, 0.3144, 0.3155, 0.2920, 0.3093},
+      { 0.2915, 0.3316, 0.4495, 0.4472, 0.4295, 0.3201, 0.3651, 0.3327, 0.3873, 0.2899, 0.3687, 0.4683, 0.4498, 0.4473, 0.4767, 0.4711, 0.4885, 0.4833, 0.3366, 0.4476},
+      { 0.1937, 0.2549, 0.4422, 0.4437, 0.4065, 0.2784, 0.2989, 0.2695, 0.3555, 0.2422, 0.2789, 0.4498, 0.4727, 0.3678, 0.4080, 0.4063, 0.4699, 0.4588, 0.2786, 0.4291},
+      { 0.2452, 0.2900, 0.3695, 0.3122, 0.3724, 0.2992, 0.3590, 0.2920, 0.3252, 0.2625, 0.2856, 0.4473, 0.3678, 0.4411, 0.4510, 0.4295, 0.4193, 0.4371, 0.3265, 0.4135},
+      { 0.2469, 0.2908, 0.3846, 0.3145, 0.3784, 0.3027, 0.3695, 0.3069, 0.3244, 0.2617, 0.2901, 0.4767, 0.4080, 0.4510, 0.4795, 0.4640, 0.4408, 0.4621, 0.3502, 0.4382},
+      { 0.2451, 0.2961, 0.3788, 0.3035, 0.3960, 0.2990, 0.3417, 0.2812, 0.3396, 0.2815, 0.2986, 0.4711, 0.4063, 0.4295, 0.4640, 0.4622, 0.4359, 0.4503, 0.3477, 0.4281},
+      { 0.2529, 0.2910, 0.3850, 0.3270, 0.3980, 0.3073, 0.3306, 0.3199, 0.3531, 0.3250, 0.3144, 0.4885, 0.4699, 0.4193, 0.4408, 0.4359, 0.4847, 0.4892, 0.3357, 0.4637},
+      { 0.2294, 0.2682, 0.4078, 0.3845, 0.3874, 0.3150, 0.3459, 0.2973, 0.3601, 0.2611, 0.3155, 0.4833, 0.4588, 0.4371, 0.4621, 0.4503, 0.4892, 0.4847, 0.3205, 0.4700},
+      { 0.2575, 0.2733, 0.3514, 0.3026, 0.3033, 0.2771, 0.2923, 0.2614, 0.3056, 0.2608, 0.2920, 0.3366, 0.2786, 0.3265, 0.3502, 0.3477, 0.3357, 0.3205, 0.3234, 0.3362},
+      { 0.2772, 0.2825, 0.3768, 0.3466, 0.3543, 0.3038, 0.3440, 0.3125, 0.3298, 0.2859, 0.3093, 0.4476, 0.4291, 0.4135, 0.4382, 0.4281, 0.4637, 0.4700, 0.3362, 0.6033}},
+    {
+      { 0.3212, 0.3010, 0.5278, 0.4628, 0.3728, 0.3927, 0.4007, 0.4018, 0.4146, 0.3536, 0.3736, 0.4247, 0.3483, 0.3518, 0.3686, 0.3433, 0.3812, 0.3703, 0.3597, 0.3764},
+      { 0.3010, 0.3094, 0.5298, 0.4731, 0.3684, 0.3845, 0.4059, 0.3704, 0.3975, 0.3241, 0.3584, 0.4207, 0.3842, 0.3807, 0.3840, 0.3758, 0.3864, 0.3851, 0.3674, 0.3901},
+      { 0.5278, 0.5298, 0.4062, 0.3533, 0.4005, 0.4280, 0.4564, 0.4104, 0.4293, 0.3973, 0.4150, 0.4965, 0.4732, 0.4294, 0.4421, 0.4326, 0.4287, 0.4590, 0.4244, 0.4395},
+      { 0.4628, 0.4731, 0.3533, 0.3364, 0.3269, 0.3826, 0.3951, 0.3782, 0.4059, 0.3206, 0.3229, 0.4564, 0.4065, 0.3677, 0.3906, 0.3843, 0.3997, 0.4007, 0.3758, 0.3713},
+      { 0.3728, 0.3684, 0.4005, 0.3269, 0.5862, 0.4574, 0.4435, 0.4622, 0.3924, 0.4071, 0.4317, 0.5278, 0.6756, 0.4104, 0.4162, 0.4132, 0.5011, 0.5567, 0.3878, 0.4983},
+      { 0.3927, 0.3845, 0.4280, 0.3826, 0.4574, 0.4526, 0.4478, 0.4293, 0.4342, 0.3765, 0.3838, 0.4402, 0.4105, 0.4157, 0.4172, 0.4090, 0.4660, 0.4514, 0.3880, 0.4468},
+      { 0.4007, 0.4059, 0.4564, 0.3951, 0.4435, 0.4478, 0.4704, 0.4646, 0.4410, 0.3716, 0.3862, 0.4554, 0.4189, 0.4480, 0.4644, 0.4420, 0.4355, 0.4657, 0.4000, 0.4613},
+      { 0.4018, 0.3704, 0.4104, 0.3782, 0.4622, 0.4293, 0.4646, 0.4799, 0.4359, 0.4005, 0.3843, 0.4816, 0.4754, 0.3861, 0.3935, 0.3869, 0.4403, 0.5011, 0.3790, 0.4560},
+      { 0.4146, 0.3975, 0.4293, 0.4059, 0.3924, 0.4342, 0.4410, 0.4359, 0.4401, 0.3864, 0.3878, 0.4940, 0.5067, 0.4170, 0.4313, 0.4258, 0.4698, 0.4720, 0.4106, 0.4615},
+      { 0.3536, 0.3241, 0.3973, 0.3206, 0.4071, 0.3765, 0.3716, 0.4005, 0.3864, 0.3634, 0.3414, 0.4153, 0.3662, 0.3550, 0.3628, 0.3810, 0.4330, 0.3843, 0.3534, 0.4284},
+      { 0.3736, 0.3584, 0.4150, 0.3229, 0.4317, 0.3838, 0.3862, 0.3843, 0.3878, 0.3414, 0.4048, 0.4877, 0.4318, 0.3721, 0.3829, 0.3878, 0.4464, 0.4559, 0.3782, 0.4191},
+      { 0.4247, 0.4207, 0.4965, 0.4564, 0.5278, 0.4402, 0.4554, 0.4816, 0.4940, 0.4153, 0.4877, 0.5273, 0.5735, 0.5070, 0.5332, 0.5118, 0.5454, 0.5898, 0.4417, 0.5372},
+      { 0.3483, 0.3842, 0.4732, 0.4065, 0.6756, 0.4105, 0.4189, 0.4754, 0.5067, 0.3662, 0.4318, 0.5735, 0.5814, 0.4685, 0.5112, 0.4980, 0.5664, 0.5760, 0.4235, 0.5043},
+      { 0.3518, 0.3807, 0.4294, 0.3677, 0.4104, 0.4157, 0.4480, 0.3861, 0.4170, 0.3550, 0.3721, 0.5070, 0.4685, 0.5189, 0.5278, 0.5040, 0.5128, 0.5273, 0.4324, 0.4967},
+      { 0.3686, 0.3840, 0.4421, 0.3906, 0.4162, 0.4172, 0.4644, 0.3935, 0.4313, 0.3628, 0.3829, 0.5332, 0.5112, 0.5278, 0.5531, 0.5373, 0.5221, 0.5373, 0.4496, 0.5368},
+      { 0.3433, 0.3758, 0.4326, 0.3843, 0.4132, 0.4090, 0.4420, 0.3869, 0.4258, 0.3810, 0.3878, 0.5118, 0.4980, 0.5040, 0.5373, 0.5374, 0.5325, 0.5395, 0.4478, 0.5144},
+      { 0.3812, 0.3864, 0.4287, 0.3997, 0.5011, 0.4660, 0.4355, 0.4403, 0.4698, 0.4330, 0.4464, 0.5454, 0.5664, 0.5128, 0.5221, 0.5325, 0.5789, 0.5927, 0.4666, 0.5311},
+      { 0.3703, 0.3851, 0.4590, 0.4007, 0.5567, 0.4514, 0.4657, 0.5011, 0.4720, 0.3843, 0.4559, 0.5898, 0.5760, 0.5273, 0.5373, 0.5395, 0.5927, 0.6111, 0.4586, 0.5646},
+      { 0.3597, 0.3674, 0.4244, 0.3758, 0.3878, 0.3880, 0.4000, 0.3790, 0.4106, 0.3534, 0.3782, 0.4417, 0.4235, 0.4324, 0.4496, 0.4478, 0.4666, 0.4586, 0.4196, 0.4410},
+      { 0.3764, 0.3901, 0.4395, 0.3713, 0.4983, 0.4468, 0.4613, 0.4560, 0.4615, 0.4284, 0.4191, 0.5372, 0.5043, 0.4967, 0.5368, 0.5144, 0.5311, 0.5646, 0.4410, 0.6697}},
+    {
+      { 0.2082, 0.1928, 0.4242, 0.3454, 0.3661, 0.2896, 0.2926, 0.3201, 0.3037, 0.2729, 0.2607, 0.3434, 0.2785, 0.2662, 0.2672, 0.2581, 0.2733, 0.2856, 0.2543, 0.2772},
+      { 0.1928, 0.2086, 0.4274, 0.3693, 0.3374, 0.2597, 0.2945, 0.2816, 0.2914, 0.2321, 0.2334, 0.3377, 0.2955, 0.2752, 0.2754, 0.2690, 0.2849, 0.2878, 0.2495, 0.2931},
+      { 0.4242, 0.4274, 0.3442, 0.2587, 0.3538, 0.3454, 0.3542, 0.3448, 0.3604, 0.3134, 0.2992, 0.4169, 0.3653, 0.3511, 0.3615, 0.3563, 0.3591, 0.3751, 0.3282, 0.3809},
+      { 0.3454, 0.3693, 0.2587, 0.2191, 0.2676, 0.2594, 0.2906, 0.2713, 0.2904, 0.2253, 0.2189, 0.3520, 0.2784, 0.2799, 0.2897, 0.2845, 0.2749, 0.3086, 0.2565, 0.2757},
+      { 0.3661, 0.3374, 0.3538, 0.2676, 0.4609, 0.3889, 0.4168, 0.3555, 0.3569, 0.3400, 0.3389, 0.4577, 0.4105, 0.3975, 0.3865, 0.4020, 0.4684, 0.4374, 0.3486, 0.4357},
+      { 0.2896, 0.2597, 0.3454, 0.2594, 0.3889, 0.3287, 0.3290, 0.3478, 0.3012, 0.2972, 0.3316, 0.4158, 0.5147, 0.3167, 0.3203, 0.3021, 0.3484, 0.4216, 0.2934, 0.3824},
+      { 0.2926, 0.2945, 0.3542, 0.2906, 0.4168, 0.3290, 0.3718, 0.3558, 0.3542, 0.3161, 0.3138, 0.4281, 0.4637, 0.3894, 0.3963, 0.3841, 0.4051, 0.4412, 0.3263, 0.4118},
+      { 0.3201, 0.2816, 0.3448, 0.2713, 0.3555, 0.3478, 0.3558, 0.3970, 0.3414, 0.3405, 0.2963, 0.3846, 0.3679, 0.3137, 0.3143, 0.3057, 0.3471, 0.3674, 0.3031, 0.3924},
+      { 0.3037, 0.2914, 0.3604, 0.2904, 0.3569, 0.3012, 0.3542, 0.3414, 0.3506, 0.3057, 0.3051, 0.3823, 0.3573, 0.3320, 0.3557, 0.3480, 0.3528, 0.3664, 0.3188, 0.3708},
+      { 0.2729, 0.2321, 0.3134, 0.2253, 0.3400, 0.2972, 0.3161, 0.3405, 0.3057, 0.3244, 0.2980, 0.3587, 0.3473, 0.3070, 0.3202, 0.3148, 0.3650, 0.3474, 0.3055, 0.3546},
+      { 0.2607, 0.2334, 0.2992, 0.2189, 0.3389, 0.3316, 0.3138, 0.2963, 0.3051, 0.2980, 0.3384, 0.3915, 0.3614, 0.3091, 0.3131, 0.3057, 0.3580, 0.3590, 0.2888, 0.3576},
+      { 0.3434, 0.3377, 0.4169, 0.3520, 0.4577, 0.4158, 0.4281, 0.3846, 0.3823, 0.3587, 0.3915, 0.4853, 0.4922, 0.4850, 0.4986, 0.4752, 0.5082, 0.5103, 0.4186, 0.4966},
+      { 0.2785, 0.2955, 0.3653, 0.2784, 0.4105, 0.5147, 0.4637, 0.3679, 0.3573, 0.3473, 0.3614, 0.4922, 0.5284, 0.4578, 0.4600, 0.4365, 0.4853, 0.4998, 0.4534, 0.5212},
+      { 0.2662, 0.2752, 0.3511, 0.2799, 0.3975, 0.3167, 0.3894, 0.3137, 0.3320, 0.3070, 0.3091, 0.4850, 0.4578, 0.4889, 0.5099, 0.4827, 0.4864, 0.5017, 0.3763, 0.4655},
+      { 0.2672, 0.2754, 0.3615, 0.2897, 0.3865, 0.3203, 0.3963, 0.3143, 0.3557, 0.3202, 0.3131, 0.4986, 0.4600, 0.5099, 0.5242, 0.5114, 0.5015, 0.5157, 0.3987, 0.4786},
+      { 0.2581, 0.2690, 0.3563, 0.2845, 0.4020, 0.3021, 0.3841, 0.3057, 0.3480, 0.3148, 0.3057, 0.4752, 0.4365, 0.4827, 0.5114, 0.5077, 0.4932, 0.4989, 0.3901, 0.4601},
+      { 0.2733, 0.2849, 0.3591, 0.2749, 0.4684, 0.3484, 0.4051, 0.3471, 0.3528, 0.3650, 0.3580, 0.5082, 0.4853, 0.4864, 0.5015, 0.4932, 0.5243, 0.5337, 0.4075, 0.5329},
+      { 0.2856, 0.2878, 0.3751, 0.3086, 0.4374, 0.4216, 0.4412, 0.3674, 0.3664, 0.3474, 0.3590, 0.5103, 0.4998, 0.5017, 0.5157, 0.4989, 0.5337, 0.5367, 0.4434, 0.5216},
+      { 0.2543, 0.2495, 0.3282, 0.2565, 0.3486, 0.2934, 0.3263, 0.3031, 0.3188, 0.3055, 0.2888, 0.4186, 0.4534, 0.3763, 0.3987, 0.3901, 0.4075, 0.4434, 0.3481, 0.3957},
+      { 0.2772, 0.2931, 0.3809, 0.2757, 0.4357, 0.3824, 0.4118, 0.3924, 0.3708, 0.3546, 0.3576, 0.4966, 0.5212, 0.4655, 0.4786, 0.4601, 0.5329, 0.5216, 0.3957, 0.5714}},
+    {
+      { 0.2033, 0.2039, 0.4408, 0.3655, 0.3602, 0.2892, 0.2689, 0.3090, 0.3186, 0.2796, 0.2914, 0.3628, 0.2941, 0.2923, 0.2976, 0.2987, 0.3059, 0.3008, 0.2763, 0.3127},
+      { 0.2039, 0.2244, 0.4433, 0.3952, 0.3457, 0.2716, 0.2547, 0.2969, 0.3118, 0.2654, 0.2586, 0.3675, 0.3178, 0.3140, 0.3235, 0.3152, 0.3202, 0.3179, 0.2749, 0.2899},
+      { 0.4408, 0.4433, 0.3329, 0.2711, 0.3790, 0.3518, 0.3278, 0.3583, 0.3566, 0.3260, 0.3281, 0.4374, 0.3877, 0.3714, 0.3873, 0.3823, 0.4030, 0.3991, 0.3427, 0.3745},
+      { 0.3655, 0.3952, 0.2711, 0.2534, 0.2861, 0.2868, 0.2619, 0.2870, 0.3034, 0.2560, 0.2545, 0.3713, 0.2989, 0.3140, 0.3283, 0.3207, 0.2983, 0.3287, 0.2796, 0.3171},
+      { 0.3602, 0.3457, 0.3790, 0.2861, 0.4547, 0.3817, 0.3858, 0.3608, 0.3691, 0.3518, 0.3476, 0.4721, 0.4189, 0.4045, 0.4049, 0.4165, 0.4722, 0.4373, 0.3640, 0.4495},
+      { 0.2892, 0.2716, 0.3518, 0.2868, 0.3817, 0.3479, 0.3318, 0.3536, 0.3297, 0.3301, 0.3231, 0.4103, 0.4637, 0.3597, 0.3707, 0.3639, 0.3912, 0.4171, 0.3320, 0.3952},
+      { 0.2689, 0.2547, 0.3278, 0.2619, 0.3858, 0.3318, 0.3423, 0.3489, 0.3259, 0.2990, 0.2757, 0.4369, 0.5332, 0.3744, 0.3787, 0.3867, 0.4039, 0.4508, 0.3195, 0.3918},
+      { 0.3090, 0.2969, 0.3583, 0.2870, 0.3608, 0.3536, 0.3489, 0.3995, 0.3614, 0.3351, 0.3136, 0.3970, 0.3575, 0.3366, 0.3457, 0.3403, 0.3837, 0.3730, 0.3092, 0.3902},
+      { 0.3186, 0.3118, 0.3566, 0.3034, 0.3691, 0.3297, 0.3259, 0.3614, 0.3587, 0.3191, 0.3274, 0.4043, 0.3879, 0.3597, 0.3734, 0.3695, 0.3950, 0.4026, 0.3352, 0.3670},
+      { 0.2796, 0.2654, 0.3260, 0.2560, 0.3518, 0.3301, 0.2990, 0.3351, 0.3191, 0.3449, 0.3112, 0.3703, 0.3469, 0.3422, 0.3628, 0.3549, 0.3981, 0.3764, 0.3353, 0.3866},
+      { 0.2914, 0.2586, 0.3281, 0.2545, 0.3476, 0.3231, 0.2757, 0.3136, 0.3274, 0.3112, 0.3271, 0.4137, 0.3726, 0.3195, 0.3399, 0.3428, 0.3721, 0.3819, 0.3050, 0.3592},
+      { 0.3628, 0.3675, 0.4374, 0.3713, 0.4721, 0.4103, 0.4369, 0.3970, 0.4043, 0.3703, 0.4137, 0.4887, 0.4956, 0.4985, 0.5174, 0.5016, 0.5305, 0.5303, 0.4209, 0.5143},
+      { 0.2941, 0.3178, 0.3877, 0.2989, 0.4189, 0.4637, 0.5332, 0.3575, 0.3879, 0.3469, 0.3726, 0.4956, 0.5158, 0.4922, 0.5020, 0.4667, 0.5125, 0.5178, 0.4270, 0.5466},
+      { 0.2923, 0.3140, 0.3714, 0.3140, 0.4045, 0.3597, 0.3744, 0.3366, 0.3597, 0.3422, 0.3195, 0.4985, 0.4922, 0.4763, 0.5016, 0.4882, 0.4787, 0.5156, 0.4053, 0.4885},
+      { 0.2976, 0.3235, 0.3873, 0.3283, 0.4049, 0.3707, 0.3787, 0.3457, 0.3734, 0.3628, 0.3399, 0.5174, 0.5020, 0.5016, 0.5304, 0.5207, 0.5106, 0.5262, 0.4187, 0.4904},
+      { 0.2987, 0.3152, 0.3823, 0.3207, 0.4165, 0.3639, 0.3867, 0.3403, 0.3695, 0.3549, 0.3428, 0.5016, 0.4667, 0.4882, 0.5207, 0.5170, 0.4949, 0.5278, 0.4198, 0.4659},
+      { 0.3059, 0.3202, 0.4030, 0.2983, 0.4722, 0.3912, 0.4039, 0.3837, 0.3950, 0.3981, 0.3721, 0.5305, 0.5125, 0.4787, 0.5106, 0.4949, 0.5376, 0.5547, 0.4331, 0.5217},
+      { 0.3008, 0.3179, 0.3991, 0.3287, 0.4373, 0.4171, 0.4508, 0.3730, 0.4026, 0.3764, 0.3819, 0.5303, 0.5178, 0.5156, 0.5262, 0.5278, 0.5547, 0.5447, 0.4456, 0.5321},
+      { 0.2763, 0.2749, 0.3427, 0.2796, 0.3640, 0.3320, 0.3195, 0.3092, 0.3352, 0.3353, 0.3050, 0.4209, 0.4270, 0.4053, 0.4187, 0.4198, 0.4331, 0.4456, 0.3713, 0.4221},
+      { 0.3127, 0.2899, 0.3745, 0.3171, 0.4495, 0.3952, 0.3918, 0.3902, 0.3670, 0.3866, 0.3592, 0.5143, 0.5466, 0.4885, 0.4904, 0.4659, 0.5217, 0.5321, 0.4221, 0.5660}},
+    {
+      { 0.2226, 0.2237, 0.4415, 0.3885, 0.3986, 0.3339, 0.3145, 0.3115, 0.3188, 0.2818, 0.2885, 0.3712, 0.3234, 0.2777, 0.2733, 0.2718, 0.3056, 0.3079, 0.2849, 0.3070},
+      { 0.2237, 0.2579, 0.4657, 0.4098, 0.3521, 0.3081, 0.3079, 0.2734, 0.3407, 0.2490, 0.2933, 0.3564, 0.2853, 0.2929, 0.3043, 0.3047, 0.3159, 0.3041, 0.2968, 0.3086},
+      { 0.4415, 0.4657, 0.3686, 0.2923, 0.3794, 0.3659, 0.3771, 0.3524, 0.3851, 0.3307, 0.3490, 0.4321, 0.3461, 0.3618, 0.3718, 0.3694, 0.4031, 0.3874, 0.3678, 0.4009},
+      { 0.3885, 0.4098, 0.2923, 0.2646, 0.2966, 0.3010, 0.3038, 0.2880, 0.3347, 0.2593, 0.2701, 0.3669, 0.2695, 0.2909, 0.3085, 0.3012, 0.3198, 0.3103, 0.2993, 0.3295},
+      { 0.3986, 0.3521, 0.3794, 0.2966, 0.4613, 0.3935, 0.3944, 0.4205, 0.3855, 0.3420, 0.3521, 0.4936, 0.4754, 0.4025, 0.4040, 0.3996, 0.4383, 0.4766, 0.3676, 0.4371},
+      { 0.3339, 0.3081, 0.3659, 0.3010, 0.3935, 0.3662, 0.3538, 0.3663, 0.3460, 0.3258, 0.3492, 0.3878, 0.3679, 0.3515, 0.3522, 0.3266, 0.3966, 0.3953, 0.3362, 0.3986},
+      { 0.3145, 0.3079, 0.3771, 0.3038, 0.3944, 0.3538, 0.3738, 0.3417, 0.3627, 0.3084, 0.3407, 0.4075, 0.3575, 0.3710, 0.3805, 0.3718, 0.3998, 0.4041, 0.3337, 0.3830},
+      { 0.3115, 0.2734, 0.3524, 0.2880, 0.4205, 0.3663, 0.3417, 0.3946, 0.3550, 0.3430, 0.3129, 0.4460, 0.5328, 0.3156, 0.3113, 0.3211, 0.3855, 0.4591, 0.3215, 0.3672},
+      { 0.3188, 0.3407, 0.3851, 0.3347, 0.3855, 0.3460, 0.3627, 0.3550, 0.3734, 0.3050, 0.3564, 0.3990, 0.3657, 0.3506, 0.3533, 0.3496, 0.3927, 0.3947, 0.3467, 0.3897},
+      { 0.2818, 0.2490, 0.3307, 0.2593, 0.3420, 0.3258, 0.3084, 0.3430, 0.3050, 0.2819, 0.3073, 0.3190, 0.2548, 0.2994, 0.2769, 0.2910, 0.3445, 0.3046, 0.2925, 0.3796},
+      { 0.2885, 0.2933, 0.3490, 0.2701, 0.3521, 0.3492, 0.3407, 0.3129, 0.3564, 0.3073, 0.3586, 0.3936, 0.3345, 0.3305, 0.3434, 0.3308, 0.3650, 0.3518, 0.3286, 0.3536},
+      { 0.3712, 0.3564, 0.4321, 0.3669, 0.4936, 0.3878, 0.4075, 0.4460, 0.3990, 0.3190, 0.3936, 0.4843, 0.4801, 0.4626, 0.4846, 0.4765, 0.5134, 0.5188, 0.3917, 0.5087},
+      { 0.3234, 0.2853, 0.3461, 0.2695, 0.4754, 0.3679, 0.3575, 0.5328, 0.3657, 0.2548, 0.3345, 0.4801, 0.5207, 0.4223, 0.4599, 0.4314, 0.4788, 0.5009, 0.3407, 0.5362},
+      { 0.2777, 0.2929, 0.3618, 0.2909, 0.4025, 0.3515, 0.3710, 0.3156, 0.3506, 0.2994, 0.3305, 0.4626, 0.4223, 0.4617, 0.4791, 0.4630, 0.4631, 0.4651, 0.3688, 0.4329},
+      { 0.2733, 0.3043, 0.3718, 0.3085, 0.4040, 0.3522, 0.3805, 0.3113, 0.3533, 0.2769, 0.3434, 0.4846, 0.4599, 0.4791, 0.4989, 0.4907, 0.4850, 0.4889, 0.3785, 0.4576},
+      { 0.2718, 0.3047, 0.3694, 0.3012, 0.3996, 0.3266, 0.3718, 0.3211, 0.3496, 0.2910, 0.3308, 0.4765, 0.4314, 0.4630, 0.4907, 0.4818, 0.4815, 0.4735, 0.3692, 0.4345},
+      { 0.3056, 0.3159, 0.4031, 0.3198, 0.4383, 0.3966, 0.3998, 0.3855, 0.3927, 0.3445, 0.3650, 0.5134, 0.4788, 0.4631, 0.4850, 0.4815, 0.5241, 0.5142, 0.3940, 0.4952},
+      { 0.3079, 0.3041, 0.3874, 0.3103, 0.4766, 0.3953, 0.4041, 0.4591, 0.3947, 0.3046, 0.3518, 0.5188, 0.5009, 0.4651, 0.4889, 0.4735, 0.5142, 0.5275, 0.3962, 0.5251},
+      { 0.2849, 0.2968, 0.3678, 0.2993, 0.3676, 0.3362, 0.3337, 0.3215, 0.3467, 0.2925, 0.3286, 0.3917, 0.3407, 0.3688, 0.3785, 0.3692, 0.3940, 0.3962, 0.3550, 0.3647},
+      { 0.3070, 0.3086, 0.4009, 0.3295, 0.4371, 0.3986, 0.3830, 0.3672, 0.3897, 0.3796, 0.3536, 0.5087, 0.5362, 0.4329, 0.4576, 0.4345, 0.4952, 0.5251, 0.3647, 0.6329}},
+    {
+      { 0.2928, 0.2855, 0.4953, 0.4293, 0.3924, 0.3668, 0.3489, 0.3457, 0.3619, 0.2962, 0.2977, 0.3698, 0.2934, 0.3012, 0.2985, 0.3033, 0.3257, 0.3039, 0.3245, 0.3091},
+      { 0.2855, 0.3187, 0.5101, 0.4562, 0.3979, 0.3386, 0.3437, 0.3408, 0.3614, 0.2807, 0.3025, 0.4114, 0.3962, 0.3360, 0.3477, 0.3512, 0.3756, 0.3489, 0.3394, 0.3364},
+      { 0.4953, 0.5101, 0.3840, 0.3140, 0.4026, 0.3829, 0.4109, 0.3919, 0.4088, 0.3560, 0.3748, 0.4648, 0.4316, 0.3960, 0.4145, 0.4138, 0.4018, 0.4184, 0.3912, 0.3985},
+      { 0.4293, 0.4562, 0.3140, 0.2861, 0.3237, 0.3309, 0.3437, 0.3343, 0.3354, 0.2619, 0.2905, 0.4246, 0.3555, 0.3256, 0.3529, 0.3461, 0.3262, 0.3608, 0.3283, 0.3374},
+      { 0.3924, 0.3979, 0.4026, 0.3237, 0.5263, 0.4192, 0.4252, 0.3916, 0.4343, 0.3462, 0.3686, 0.5161, 0.5067, 0.4309, 0.4440, 0.4449, 0.4604, 0.4838, 0.3816, 0.4624},
+      { 0.3668, 0.3386, 0.3829, 0.3309, 0.4192, 0.3725, 0.3783, 0.3725, 0.3817, 0.3460, 0.3413, 0.3893, 0.3573, 0.3650, 0.3675, 0.3574, 0.4006, 0.3782, 0.3487, 0.3865},
+      { 0.3489, 0.3437, 0.4109, 0.3437, 0.4252, 0.3783, 0.4191, 0.3878, 0.3838, 0.3356, 0.3448, 0.4241, 0.3879, 0.4171, 0.4237, 0.4061, 0.4406, 0.4107, 0.3529, 0.4192},
+      { 0.3457, 0.3408, 0.3919, 0.3343, 0.3916, 0.3725, 0.3878, 0.4165, 0.3929, 0.3468, 0.3512, 0.4162, 0.3657, 0.3507, 0.3592, 0.3471, 0.4242, 0.3864, 0.3361, 0.3673},
+      { 0.3619, 0.3614, 0.4088, 0.3354, 0.4343, 0.3817, 0.3838, 0.3929, 0.4123, 0.3301, 0.3530, 0.5098, 0.6017, 0.3725, 0.4050, 0.3977, 0.4211, 0.4965, 0.3522, 0.4191},
+      { 0.2962, 0.2807, 0.3560, 0.2619, 0.3462, 0.3460, 0.3356, 0.3468, 0.3301, 0.3469, 0.3132, 0.3708, 0.3377, 0.3425, 0.3476, 0.3332, 0.3832, 0.3407, 0.3277, 0.3656},
+      { 0.2977, 0.3025, 0.3748, 0.2905, 0.3686, 0.3413, 0.3448, 0.3512, 0.3530, 0.3132, 0.3291, 0.4297, 0.3632, 0.3382, 0.3415, 0.3509, 0.4165, 0.3643, 0.3394, 0.3676},
+      { 0.3698, 0.4114, 0.4648, 0.4246, 0.5161, 0.3893, 0.4241, 0.4162, 0.5098, 0.3708, 0.4297, 0.5109, 0.5091, 0.5074, 0.5249, 0.5236, 0.5439, 0.5362, 0.3933, 0.5274},
+      { 0.2934, 0.3962, 0.4316, 0.3555, 0.5067, 0.3573, 0.3879, 0.3657, 0.6017, 0.3377, 0.3632, 0.5091, 0.5416, 0.4677, 0.4934, 0.4793, 0.5722, 0.5278, 0.3576, 0.5157},
+      { 0.3012, 0.3360, 0.3960, 0.3256, 0.4309, 0.3650, 0.4171, 0.3507, 0.3725, 0.3425, 0.3382, 0.5074, 0.4677, 0.4877, 0.5155, 0.4903, 0.5214, 0.5027, 0.3855, 0.4732},
+      { 0.2985, 0.3477, 0.4145, 0.3529, 0.4440, 0.3675, 0.4237, 0.3592, 0.4050, 0.3476, 0.3415, 0.5249, 0.4934, 0.5155, 0.5516, 0.5311, 0.5548, 0.5288, 0.4016, 0.5004},
+      { 0.3033, 0.3512, 0.4138, 0.3461, 0.4449, 0.3574, 0.4061, 0.3471, 0.3977, 0.3332, 0.3509, 0.5236, 0.4793, 0.4903, 0.5311, 0.5246, 0.5269, 0.5199, 0.4037, 0.4832},
+      { 0.3257, 0.3756, 0.4018, 0.3262, 0.4604, 0.4006, 0.4406, 0.4242, 0.4211, 0.3832, 0.4165, 0.5439, 0.5722, 0.5214, 0.5548, 0.5269, 0.5743, 0.5692, 0.4136, 0.5221},
+      { 0.3039, 0.3489, 0.4184, 0.3608, 0.4838, 0.3782, 0.4107, 0.3864, 0.4965, 0.3407, 0.3643, 0.5362, 0.5278, 0.5027, 0.5288, 0.5199, 0.5692, 0.5548, 0.3991, 0.5249},
+      { 0.3245, 0.3394, 0.3912, 0.3283, 0.3816, 0.3487, 0.3529, 0.3361, 0.3522, 0.3277, 0.3394, 0.3933, 0.3576, 0.3855, 0.4016, 0.4037, 0.4136, 0.3991, 0.4030, 0.3939},
+      { 0.3091, 0.3364, 0.3985, 0.3374, 0.4624, 0.3865, 0.4192, 0.3673, 0.4191, 0.3656, 0.3676, 0.5274, 0.5157, 0.4732, 0.5004, 0.4832, 0.5221, 0.5249, 0.3939, 0.5385}},
+    {
+      { 0.1769, 0.1725, 0.4075, 0.3436, 0.3300, 0.2817, 0.2742, 0.2624, 0.2732, 0.1945, 0.2369, 0.3083, 0.2267, 0.2397, 0.2308, 0.2251, 0.2413, 0.2430, 0.2359, 0.2758},
+      { 0.1725, 0.1762, 0.4169, 0.3430, 0.3221, 0.2649, 0.2803, 0.2487, 0.2794, 0.1541, 0.2359, 0.3262, 0.2509, 0.2712, 0.2837, 0.2608, 0.2813, 0.2585, 0.2364, 0.2951},
+      { 0.4075, 0.4169, 0.3215, 0.2492, 0.3507, 0.3328, 0.3442, 0.3289, 0.3550, 0.2449, 0.3064, 0.4021, 0.3174, 0.3395, 0.3490, 0.3473, 0.3577, 0.3533, 0.2963, 0.3559},
+      { 0.3436, 0.3430, 0.2492, 0.2003, 0.2521, 0.2561, 0.2823, 0.2628, 0.2663, 0.1795, 0.1990, 0.3259, 0.2422, 0.2736, 0.2723, 0.2701, 0.2612, 0.2820, 0.2366, 0.2748},
+      { 0.3300, 0.3221, 0.3507, 0.2521, 0.4034, 0.3788, 0.3780, 0.3055, 0.3287, 0.3042, 0.3307, 0.4131, 0.3662, 0.3780, 0.3654, 0.3732, 0.4036, 0.3941, 0.3549, 0.3916},
+      { 0.2817, 0.2649, 0.3328, 0.2561, 0.3788, 0.3517, 0.3468, 0.3218, 0.3245, 0.2558, 0.3055, 0.3603, 0.3473, 0.3274, 0.3323, 0.3234, 0.3706, 0.3685, 0.3103, 0.3775},
+      { 0.2742, 0.2803, 0.3442, 0.2823, 0.3780, 0.3468, 0.3653, 0.3086, 0.3402, 0.2598, 0.2967, 0.3869, 0.3469, 0.3923, 0.3874, 0.3693, 0.3984, 0.3914, 0.3219, 0.4016},
+      { 0.2624, 0.2487, 0.3289, 0.2628, 0.3055, 0.3218, 0.3086, 0.3559, 0.2987, 0.2488, 0.2736, 0.3227, 0.2548, 0.2825, 0.2695, 0.2794, 0.3169, 0.2960, 0.2760, 0.3367},
+      { 0.2732, 0.2794, 0.3550, 0.2663, 0.3287, 0.3245, 0.3402, 0.2987, 0.3306, 0.2439, 0.3008, 0.3554, 0.3377, 0.3213, 0.3354, 0.3274, 0.3579, 0.3225, 0.3061, 0.3221},
+      { 0.1945, 0.1541, 0.2449, 0.1795, 0.3042, 0.2558, 0.2598, 0.2488, 0.2439, 0.2189, 0.2058, 0.3644, 0.4281, 0.2588, 0.2695, 0.2940, 0.3245, 0.3491, 0.2517, 0.3218},
+      { 0.2369, 0.2359, 0.3064, 0.1990, 0.3307, 0.3055, 0.2967, 0.2736, 0.3008, 0.2058, 0.2707, 0.3714, 0.3182, 0.2898, 0.3018, 0.2912, 0.3637, 0.3236, 0.2777, 0.3781},
+      { 0.3083, 0.3262, 0.4021, 0.3259, 0.4131, 0.3603, 0.3869, 0.3227, 0.3554, 0.3644, 0.3714, 0.4641, 0.4479, 0.4648, 0.4790, 0.4737, 0.4889, 0.4923, 0.4104, 0.4595},
+      { 0.2267, 0.2509, 0.3174, 0.2422, 0.3662, 0.3473, 0.3469, 0.2548, 0.3377, 0.4281, 0.3182, 0.4479, 0.4994, 0.4157, 0.4387, 0.4320, 0.4304, 0.4822, 0.4066, 0.4796},
+      { 0.2397, 0.2712, 0.3395, 0.2736, 0.3780, 0.3274, 0.3923, 0.2825, 0.3213, 0.2588, 0.2898, 0.4648, 0.4157, 0.4963, 0.5131, 0.4895, 0.4835, 0.4977, 0.3961, 0.4662},
+      { 0.2308, 0.2837, 0.3490, 0.2723, 0.3654, 0.3323, 0.3874, 0.2695, 0.3354, 0.2695, 0.3018, 0.4790, 0.4387, 0.5131, 0.5337, 0.5076, 0.4982, 0.4968, 0.4071, 0.4971},
+      { 0.2251, 0.2608, 0.3473, 0.2701, 0.3732, 0.3234, 0.3693, 0.2794, 0.3274, 0.2940, 0.2912, 0.4737, 0.4320, 0.4895, 0.5076, 0.5014, 0.4791, 0.4773, 0.3905, 0.4586},
+      { 0.2413, 0.2813, 0.3577, 0.2612, 0.4036, 0.3706, 0.3984, 0.3169, 0.3579, 0.3245, 0.3637, 0.4889, 0.4304, 0.4835, 0.4982, 0.4791, 0.5474, 0.5183, 0.4220, 0.5004},
+      { 0.2430, 0.2585, 0.3533, 0.2820, 0.3941, 0.3685, 0.3914, 0.2960, 0.3225, 0.3491, 0.3236, 0.4923, 0.4822, 0.4977, 0.4968, 0.4773, 0.5183, 0.5282, 0.4151, 0.4903},
+      { 0.2359, 0.2364, 0.2963, 0.2366, 0.3549, 0.3103, 0.3219, 0.2760, 0.3061, 0.2517, 0.2777, 0.4104, 0.4066, 0.3961, 0.4071, 0.3905, 0.4220, 0.4151, 0.3535, 0.4012},
+      { 0.2758, 0.2951, 0.3559, 0.2748, 0.3916, 0.3775, 0.4016, 0.3367, 0.3221, 0.3218, 0.3781, 0.4595, 0.4796, 0.4662, 0.4971, 0.4586, 0.5004, 0.4903, 0.4012, 0.6625}},
+    {
+      { 0.2692, 0.2411, 0.4686, 0.4117, 0.3875, 0.3392, 0.3283, 0.3292, 0.3553, 0.3188, 0.2972, 0.3547, 0.2628, 0.3055, 0.2951, 0.2911, 0.2990, 0.2858, 0.3007, 0.3280},
+      { 0.2411, 0.2392, 0.4591, 0.4049, 0.3529, 0.3418, 0.3181, 0.3318, 0.3424, 0.2901, 0.2794, 0.3682, 0.2939, 0.2988, 0.3157, 0.3025, 0.2926, 0.3022, 0.2950, 0.3216},
+      { 0.4686, 0.4591, 0.3745, 0.2954, 0.3975, 0.3741, 0.4082, 0.4001, 0.4028, 0.3648, 0.3866, 0.4523, 0.3824, 0.3870, 0.3910, 0.3848, 0.3953, 0.4160, 0.3664, 0.4050},
+      { 0.4117, 0.4049, 0.2954, 0.2533, 0.3096, 0.3072, 0.3107, 0.3489, 0.3464, 0.2807, 0.2846, 0.3947, 0.2789, 0.3193, 0.3255, 0.3114, 0.2981, 0.3326, 0.2965, 0.3312},
+      { 0.3875, 0.3529, 0.3975, 0.3096, 0.4902, 0.4021, 0.4120, 0.3974, 0.3861, 0.3609, 0.4472, 0.4952, 0.4318, 0.4146, 0.4519, 0.4387, 0.4640, 0.4614, 0.3767, 0.4072},
+      { 0.3392, 0.3418, 0.3741, 0.3072, 0.4021, 0.3673, 0.3629, 0.3946, 0.3953, 0.3489, 0.3568, 0.4028, 0.3614, 0.3560, 0.3672, 0.3523, 0.3842, 0.3959, 0.3463, 0.4188},
+      { 0.3283, 0.3181, 0.4082, 0.3107, 0.4120, 0.3629, 0.3703, 0.3835, 0.3796, 0.3349, 0.3570, 0.4238, 0.3726, 0.3967, 0.4046, 0.3868, 0.4351, 0.4093, 0.3472, 0.4308},
+      { 0.3292, 0.3318, 0.4001, 0.3489, 0.3974, 0.3946, 0.3835, 0.4159, 0.3887, 0.3581, 0.3585, 0.3947, 0.3345, 0.3676, 0.3426, 0.3547, 0.3858, 0.3651, 0.3447, 0.3947},
+      { 0.3553, 0.3424, 0.4028, 0.3464, 0.3861, 0.3953, 0.3796, 0.3887, 0.4012, 0.3581, 0.3704, 0.4207, 0.3632, 0.3725, 0.3831, 0.3810, 0.4041, 0.3846, 0.3530, 0.3782},
+      { 0.3188, 0.2901, 0.3648, 0.2807, 0.3609, 0.3489, 0.3349, 0.3581, 0.3581, 0.3404, 0.3127, 0.3771, 0.3182, 0.3358, 0.3363, 0.3414, 0.3868, 0.3469, 0.3301, 0.4096},
+      { 0.2972, 0.2794, 0.3866, 0.2846, 0.4472, 0.3568, 0.3570, 0.3585, 0.3704, 0.3127, 0.3653, 0.5449, 0.5850, 0.3673, 0.3830, 0.3908, 0.4353, 0.5042, 0.3447, 0.4568},
+      { 0.3547, 0.3682, 0.4523, 0.3947, 0.4952, 0.4028, 0.4238, 0.3947, 0.4207, 0.3771, 0.5449, 0.5273, 0.4929, 0.4932, 0.5358, 0.5337, 0.5310, 0.5531, 0.4454, 0.5268},
+      { 0.2628, 0.2939, 0.3824, 0.2789, 0.4318, 0.3614, 0.3726, 0.3345, 0.3632, 0.3182, 0.5850, 0.4929, 0.4938, 0.4702, 0.5165, 0.4962, 0.5074, 0.5213, 0.4427, 0.5098},
+      { 0.3055, 0.2988, 0.3870, 0.3193, 0.4146, 0.3560, 0.3967, 0.3676, 0.3725, 0.3358, 0.3673, 0.4932, 0.4702, 0.4793, 0.4901, 0.4915, 0.4760, 0.5033, 0.3887, 0.4687},
+      { 0.2951, 0.3157, 0.3910, 0.3255, 0.4519, 0.3672, 0.4046, 0.3426, 0.3831, 0.3363, 0.3830, 0.5358, 0.5165, 0.4901, 0.5264, 0.5241, 0.5159, 0.5374, 0.4028, 0.4580},
+      { 0.2911, 0.3025, 0.3848, 0.3114, 0.4387, 0.3523, 0.3868, 0.3547, 0.3810, 0.3414, 0.3908, 0.5337, 0.4962, 0.4915, 0.5241, 0.5235, 0.4952, 0.5315, 0.4048, 0.4874},
+      { 0.2990, 0.2926, 0.3953, 0.2981, 0.4640, 0.3842, 0.4351, 0.3858, 0.4041, 0.3868, 0.4353, 0.5310, 0.5074, 0.4760, 0.5159, 0.4952, 0.6210, 0.5577, 0.4135, 0.4743},
+      { 0.2858, 0.3022, 0.4160, 0.3326, 0.4614, 0.3959, 0.4093, 0.3651, 0.3846, 0.3469, 0.5042, 0.5531, 0.5213, 0.5033, 0.5374, 0.5315, 0.5577, 0.5514, 0.4263, 0.5316},
+      { 0.3007, 0.2950, 0.3664, 0.2965, 0.3767, 0.3463, 0.3472, 0.3447, 0.3530, 0.3301, 0.3447, 0.4454, 0.4427, 0.3887, 0.4028, 0.4048, 0.4135, 0.4263, 0.3569, 0.3995},
+      { 0.3280, 0.3216, 0.4050, 0.3312, 0.4072, 0.4188, 0.4308, 0.3947, 0.3782, 0.4096, 0.4568, 0.5268, 0.5098, 0.4687, 0.4580, 0.4874, 0.4743, 0.5316, 0.3995, 0.6654}},
+    {
+      { 0.4283, 0.3763, 0.5747, 0.4937, 0.5101, 0.4707, 0.4593, 0.4832, 0.4668, 0.4473, 0.4384, 0.4327, 0.4305, 0.4275, 0.4173, 0.4243, 0.4640, 0.4179, 0.4187, 0.4380},
+      { 0.3763, 0.3931, 0.5853, 0.5154, 0.4801, 0.4499, 0.4445, 0.4465, 0.4574, 0.4132, 0.4098, 0.4590, 0.4573, 0.4467, 0.4576, 0.4378, 0.4676, 0.4405, 0.4217, 0.4361},
+      { 0.5747, 0.5853, 0.4773, 0.4005, 0.4768, 0.5036, 0.5071, 0.5008, 0.5219, 0.4698, 0.4840, 0.5055, 0.5262, 0.4888, 0.4988, 0.4951, 0.5133, 0.4973, 0.4716, 0.4902},
+      { 0.4937, 0.5154, 0.4005, 0.3794, 0.3943, 0.4389, 0.4392, 0.4306, 0.4513, 0.4048, 0.4075, 0.4541, 0.4498, 0.4452, 0.4503, 0.4372, 0.4473, 0.4532, 0.4002, 0.4406},
+      { 0.5101, 0.4801, 0.4768, 0.3943, 0.5418, 0.4975, 0.4861, 0.5067, 0.4700, 0.4684, 0.4562, 0.5337, 0.5735, 0.4675, 0.4965, 0.4789, 0.5389, 0.5375, 0.4625, 0.5021},
+      { 0.4707, 0.4499, 0.5036, 0.4389, 0.4975, 0.4965, 0.4893, 0.5210, 0.5018, 0.4633, 0.4660, 0.4701, 0.4922, 0.4812, 0.4854, 0.4721, 0.5165, 0.4974, 0.4545, 0.5157},
+      { 0.4593, 0.4445, 0.5071, 0.4392, 0.4861, 0.4893, 0.5054, 0.4962, 0.5138, 0.4605, 0.4506, 0.4659, 0.4956, 0.5123, 0.5183, 0.5051, 0.5280, 0.4972, 0.4575, 0.5248},
+      { 0.4832, 0.4465, 0.5008, 0.4306, 0.5067, 0.5210, 0.4962, 0.5595, 0.5076, 0.4702, 0.4791, 0.4850, 0.4801, 0.4623, 0.4420, 0.4556, 0.5272, 0.4821, 0.4573, 0.5219},
+      { 0.4668, 0.4574, 0.5219, 0.4513, 0.4700, 0.5018, 0.5138, 0.5076, 0.5256, 0.4697, 0.4685, 0.4855, 0.5091, 0.4721, 0.4869, 0.4910, 0.5273, 0.5096, 0.4609, 0.5007},
+      { 0.4473, 0.4132, 0.4698, 0.4048, 0.4684, 0.4633, 0.4605, 0.4702, 0.4697, 0.4513, 0.4520, 0.4639, 0.4479, 0.4610, 0.4545, 0.4621, 0.5273, 0.4707, 0.4417, 0.4761},
+      { 0.4384, 0.4098, 0.4840, 0.4075, 0.4562, 0.4660, 0.4506, 0.4791, 0.4685, 0.4520, 0.4520, 0.4761, 0.4929, 0.4413, 0.4532, 0.4658, 0.5110, 0.4679, 0.4486, 0.4624},
+      { 0.4327, 0.4590, 0.5055, 0.4541, 0.5337, 0.4701, 0.4659, 0.4850, 0.4855, 0.4639, 0.4761, 0.5907, 0.7101, 0.5251, 0.5489, 0.5510, 0.5852, 0.6189, 0.4739, 0.5451},
+      { 0.4305, 0.4573, 0.5262, 0.4498, 0.5735, 0.4922, 0.4956, 0.4801, 0.5091, 0.4479, 0.4929, 0.7101, 0.6488, 0.5539, 0.5714, 0.5773, 0.6258, 0.6616, 0.4988, 0.5934},
+      { 0.4275, 0.4467, 0.4888, 0.4452, 0.4675, 0.4812, 0.5123, 0.4623, 0.4721, 0.4610, 0.4413, 0.5251, 0.5539, 0.5716, 0.5784, 0.5620, 0.5744, 0.5566, 0.5080, 0.5749},
+      { 0.4173, 0.4576, 0.4988, 0.4503, 0.4965, 0.4854, 0.5183, 0.4420, 0.4869, 0.4545, 0.4532, 0.5489, 0.5714, 0.5784, 0.6033, 0.5962, 0.5953, 0.5837, 0.5195, 0.5538},
+      { 0.4243, 0.4378, 0.4951, 0.4372, 0.4789, 0.4721, 0.5051, 0.4556, 0.4910, 0.4621, 0.4658, 0.5510, 0.5773, 0.5620, 0.5962, 0.5889, 0.5894, 0.5816, 0.5106, 0.5571},
+      { 0.4640, 0.4676, 0.5133, 0.4473, 0.5389, 0.5165, 0.5280, 0.5272, 0.5273, 0.5273, 0.5110, 0.5852, 0.6258, 0.5744, 0.5953, 0.5894, 0.6511, 0.6178, 0.5324, 0.5621},
+      { 0.4179, 0.4405, 0.4973, 0.4532, 0.5375, 0.4974, 0.4972, 0.4821, 0.5096, 0.4707, 0.4679, 0.6189, 0.6616, 0.5566, 0.5837, 0.5816, 0.6178, 0.6454, 0.5099, 0.5796},
+      { 0.4187, 0.4217, 0.4716, 0.4002, 0.4625, 0.4545, 0.4575, 0.4573, 0.4609, 0.4417, 0.4486, 0.4739, 0.4988, 0.5080, 0.5195, 0.5106, 0.5324, 0.5099, 0.4765, 0.5043},
+      { 0.4380, 0.4361, 0.4902, 0.4406, 0.5021, 0.5157, 0.5248, 0.5219, 0.5007, 0.4761, 0.4624, 0.5451, 0.5934, 0.5749, 0.5538, 0.5571, 0.5621, 0.5796, 0.5043, 0.7111}},
+    {
+      { 0.5221, 0.4415, 0.6162, 0.5451, 0.5912, 0.5426, 0.4848, 0.5272, 0.5439, 0.5045, 0.4738, 0.4856, 0.4484, 0.4262, 0.4126, 0.4116, 0.4874, 0.4100, 0.4557, 0.5424},
+      { 0.4415, 0.3690, 0.6129, 0.5308, 0.4842, 0.5121, 0.4845, 0.4961, 0.4866, 0.4303, 0.4439, 0.5126, 0.4848, 0.4527, 0.4613, 0.4498, 0.4990, 0.4493, 0.4298, 0.4850},
+      { 0.6162, 0.6129, 0.5285, 0.4673, 0.5539, 0.5975, 0.5281, 0.5377, 0.6155, 0.5465, 0.5041, 0.5684, 0.5374, 0.5374, 0.5170, 0.5162, 0.5492, 0.5228, 0.4996, 0.5010},
+      { 0.5451, 0.5308, 0.4673, 0.4005, 0.4481, 0.4876, 0.4886, 0.4673, 0.4948, 0.4881, 0.4697, 0.5228, 0.4727, 0.4921, 0.5031, 0.4597, 0.4888, 0.4735, 0.4426, 0.4808},
+      { 0.5912, 0.4842, 0.5539, 0.4481, 0.4826, 0.5725, 0.5621, 0.5085, 0.5452, 0.5269, 0.5357, 0.5914, 0.5814, 0.5272, 0.5304, 0.5196, 0.5620, 0.5860, 0.4962, 0.5501},
+      { 0.5426, 0.5121, 0.5975, 0.4876, 0.5725, 0.5816, 0.5513, 0.5616, 0.5440, 0.5519, 0.5271, 0.5218, 0.5284, 0.5382, 0.5332, 0.5224, 0.5834, 0.5415, 0.5023, 0.5098},
+      { 0.4848, 0.4845, 0.5281, 0.4886, 0.5621, 0.5513, 0.5639, 0.5537, 0.5465, 0.5288, 0.4794, 0.5399, 0.5158, 0.5686, 0.5690, 0.5237, 0.6094, 0.5172, 0.4809, 0.5467},
+      { 0.5272, 0.4961, 0.5377, 0.4673, 0.5085, 0.5616, 0.5537, 0.5951, 0.5484, 0.5433, 0.5655, 0.5364, 0.5207, 0.4931, 0.4828, 0.4603, 0.5374, 0.5019, 0.4801, 0.5014},
+      { 0.5439, 0.4866, 0.6155, 0.4948, 0.5452, 0.5440, 0.5465, 0.5484, 0.5972, 0.4950, 0.5313, 0.5615, 0.5416, 0.5109, 0.5121, 0.5134, 0.5553, 0.5326, 0.4890, 0.5231},
+      { 0.5045, 0.4303, 0.5465, 0.4881, 0.5269, 0.5519, 0.5288, 0.5433, 0.4950, 0.5433, 0.5338, 0.5377, 0.4994, 0.5251, 0.5204, 0.4951, 0.5451, 0.5174, 0.4905, 0.5409},
+      { 0.4738, 0.4439, 0.5041, 0.4697, 0.5357, 0.5271, 0.4794, 0.5655, 0.5313, 0.5338, 0.4921, 0.5274, 0.4938, 0.4930, 0.5267, 0.5053, 0.5082, 0.5364, 0.4505, 0.5583},
+      { 0.4856, 0.5126, 0.5684, 0.5228, 0.5914, 0.5218, 0.5399, 0.5364, 0.5615, 0.5377, 0.5274, 0.6398, 0.6488, 0.5817, 0.6066, 0.6150, 0.6300, 0.6617, 0.5251, 0.5886},
+      { 0.4484, 0.4848, 0.5374, 0.4727, 0.5814, 0.5284, 0.5158, 0.5207, 0.5416, 0.4994, 0.4938, 0.6488, 0.7321, 0.5636, 0.5800, 0.6060, 0.6293, 0.6738, 0.5166, 0.5893},
+      { 0.4262, 0.4527, 0.5374, 0.4921, 0.5272, 0.5382, 0.5686, 0.4931, 0.5109, 0.5251, 0.4930, 0.5817, 0.5636, 0.6263, 0.6287, 0.6167, 0.6237, 0.6151, 0.5364, 0.5892},
+      { 0.4126, 0.4613, 0.5170, 0.5031, 0.5304, 0.5332, 0.5690, 0.4828, 0.5121, 0.5204, 0.5267, 0.6066, 0.5800, 0.6287, 0.6511, 0.6481, 0.6493, 0.6419, 0.5521, 0.6112},
+      { 0.4116, 0.4498, 0.5162, 0.4597, 0.5196, 0.5224, 0.5237, 0.4603, 0.5134, 0.4951, 0.5053, 0.6150, 0.6060, 0.6167, 0.6481, 0.6418, 0.6263, 0.6247, 0.5465, 0.5778},
+      { 0.4874, 0.4990, 0.5492, 0.4888, 0.5620, 0.5834, 0.6094, 0.5374, 0.5553, 0.5451, 0.5082, 0.6300, 0.6293, 0.6237, 0.6493, 0.6263, 0.6335, 0.6490, 0.5784, 0.5507},
+      { 0.4100, 0.4493, 0.5228, 0.4735, 0.5860, 0.5415, 0.5172, 0.5019, 0.5326, 0.5174, 0.5364, 0.6617, 0.6738, 0.6151, 0.6419, 0.6247, 0.6490, 0.7147, 0.5504, 0.5895},
+      { 0.4557, 0.4298, 0.4996, 0.4426, 0.4962, 0.5023, 0.4809, 0.4801, 0.4890, 0.4905, 0.4505, 0.5251, 0.5166, 0.5364, 0.5521, 0.5465, 0.5784, 0.5504, 0.5173, 0.5545},
+      { 0.5424, 0.4850, 0.5010, 0.4808, 0.5501, 0.5098, 0.5467, 0.5014, 0.5231, 0.5409, 0.5583, 0.5886, 0.5893, 0.5892, 0.6112, 0.5778, 0.5507, 0.5895, 0.5545, 0.7990}},
+    {
+      { 0.2768, 0.2768, 0.5012, 0.4206, 0.4218, 0.3679, 0.3581, 0.3594, 0.3874, 0.3350, 0.3554, 0.4286, 0.3499, 0.2836, 0.3074, 0.3271, 0.3584, 0.3658, 0.3037, 0.3585},
+      { 0.2768, 0.2770, 0.5082, 0.4463, 0.4020, 0.3525, 0.3588, 0.3477, 0.3538, 0.3046, 0.3294, 0.4259, 0.3982, 0.3114, 0.3412, 0.3564, 0.3797, 0.3806, 0.3133, 0.3563},
+      { 0.5012, 0.5082, 0.3757, 0.3098, 0.4160, 0.4165, 0.4200, 0.4123, 0.4230, 0.3772, 0.3841, 0.4916, 0.4501, 0.3685, 0.3986, 0.4147, 0.4405, 0.4462, 0.3744, 0.4084},
+      { 0.4206, 0.4463, 0.3098, 0.2747, 0.3506, 0.3293, 0.3502, 0.3299, 0.3505, 0.3010, 0.3076, 0.4385, 0.3678, 0.3355, 0.3680, 0.3716, 0.3737, 0.4054, 0.3102, 0.3621},
+      { 0.4218, 0.4020, 0.4160, 0.3506, 0.5182, 0.4606, 0.4521, 0.4261, 0.4063, 0.3935, 0.4116, 0.5157, 0.4685, 0.4270, 0.4553, 0.4626, 0.5057, 0.4935, 0.3960, 0.4681},
+      { 0.3679, 0.3525, 0.4165, 0.3293, 0.4606, 0.4218, 0.4162, 0.4098, 0.4000, 0.3874, 0.3785, 0.4484, 0.4578, 0.3760, 0.4073, 0.4073, 0.4605, 0.4621, 0.3698, 0.4329},
+      { 0.3581, 0.3588, 0.4200, 0.3502, 0.4521, 0.4162, 0.4327, 0.4092, 0.4091, 0.3730, 0.3800, 0.4748, 0.4922, 0.4307, 0.4563, 0.4524, 0.4816, 0.4901, 0.3933, 0.4499},
+      { 0.3594, 0.3477, 0.4123, 0.3299, 0.4261, 0.4098, 0.4092, 0.4634, 0.4249, 0.3786, 0.3751, 0.4517, 0.4223, 0.3391, 0.3602, 0.3753, 0.4162, 0.4412, 0.3507, 0.3949},
+      { 0.3874, 0.3538, 0.4230, 0.3505, 0.4063, 0.4000, 0.4091, 0.4249, 0.4094, 0.3780, 0.3949, 0.4657, 0.4677, 0.3599, 0.3974, 0.4184, 0.4576, 0.4540, 0.3685, 0.4221},
+      { 0.3350, 0.3046, 0.3772, 0.3010, 0.3935, 0.3874, 0.3730, 0.3786, 0.3780, 0.4016, 0.3481, 0.4382, 0.4157, 0.3427, 0.3859, 0.4035, 0.4530, 0.4520, 0.3628, 0.4161},
+      { 0.3554, 0.3294, 0.3841, 0.3076, 0.4116, 0.3785, 0.3800, 0.3751, 0.3949, 0.3481, 0.4047, 0.4797, 0.4702, 0.3252, 0.3607, 0.3960, 0.4367, 0.4331, 0.3565, 0.4179},
+      { 0.4286, 0.4259, 0.4916, 0.4385, 0.5157, 0.4484, 0.4748, 0.4517, 0.4657, 0.4382, 0.4797, 0.5325, 0.5539, 0.5181, 0.5550, 0.5556, 0.5797, 0.5853, 0.4762, 0.5525},
+      { 0.3499, 0.3982, 0.4501, 0.3678, 0.4685, 0.4578, 0.4922, 0.4223, 0.4677, 0.4157, 0.4702, 0.5539, 0.5636, 0.5717, 0.5775, 0.5638, 0.5891, 0.5757, 0.4918, 0.6005},
+      { 0.2836, 0.3114, 0.3685, 0.3355, 0.4270, 0.3760, 0.4307, 0.3391, 0.3599, 0.3427, 0.3252, 0.5181, 0.5717, 0.5359, 0.5468, 0.5298, 0.5074, 0.5466, 0.4442, 0.5081},
+      { 0.3074, 0.3412, 0.3986, 0.3680, 0.4553, 0.4073, 0.4563, 0.3602, 0.3974, 0.3859, 0.3607, 0.5550, 0.5775, 0.5468, 0.5907, 0.5721, 0.5564, 0.5829, 0.4799, 0.5291},
+      { 0.3271, 0.3564, 0.4147, 0.3716, 0.4626, 0.4073, 0.4524, 0.3753, 0.4184, 0.4035, 0.3960, 0.5556, 0.5638, 0.5298, 0.5721, 0.5731, 0.5571, 0.5856, 0.4870, 0.5338},
+      { 0.3584, 0.3797, 0.4405, 0.3737, 0.5057, 0.4605, 0.4816, 0.4162, 0.4576, 0.4530, 0.4367, 0.5797, 0.5891, 0.5074, 0.5564, 0.5571, 0.6035, 0.6188, 0.4909, 0.5332},
+      { 0.3658, 0.3806, 0.4462, 0.4054, 0.4935, 0.4621, 0.4901, 0.4412, 0.4540, 0.4520, 0.4331, 0.5853, 0.5757, 0.5466, 0.5829, 0.5856, 0.6188, 0.6204, 0.5084, 0.5813},
+      { 0.3037, 0.3133, 0.3744, 0.3102, 0.3960, 0.3698, 0.3933, 0.3507, 0.3685, 0.3628, 0.3565, 0.4762, 0.4918, 0.4442, 0.4799, 0.4870, 0.4909, 0.5084, 0.4193, 0.4718},
+      { 0.3585, 0.3563, 0.4084, 0.3621, 0.4681, 0.4329, 0.4499, 0.3949, 0.4221, 0.4161, 0.4179, 0.5525, 0.6005, 0.5081, 0.5291, 0.5338, 0.5332, 0.5813, 0.4718, 0.6185}},
+    {
+      { 0.3582, 0.3157, 0.5444, 0.4646, 0.4614, 0.3924, 0.3821, 0.3970, 0.4465, 0.3581, 0.3644, 0.4461, 0.3919, 0.3194, 0.3102, 0.3485, 0.3734, 0.3799, 0.3397, 0.3456},
+      { 0.3157, 0.3283, 0.5426, 0.4770, 0.4457, 0.3861, 0.3885, 0.3661, 0.4035, 0.3405, 0.3309, 0.4569, 0.4155, 0.3509, 0.3448, 0.3750, 0.4009, 0.4041, 0.3466, 0.3522},
+      { 0.5444, 0.5426, 0.3896, 0.3438, 0.4546, 0.4304, 0.4503, 0.4530, 0.4372, 0.3928, 0.3821, 0.5149, 0.4866, 0.3989, 0.3870, 0.4315, 0.4521, 0.4655, 0.3957, 0.4306},
+      { 0.4646, 0.4770, 0.3438, 0.3241, 0.3928, 0.3661, 0.3783, 0.3597, 0.3851, 0.3345, 0.3358, 0.4644, 0.4080, 0.3635, 0.3613, 0.3868, 0.3867, 0.4294, 0.3407, 0.3757},
+      { 0.4614, 0.4457, 0.4546, 0.3928, 0.5153, 0.4795, 0.4715, 0.4583, 0.4578, 0.4016, 0.4407, 0.5600, 0.5112, 0.4612, 0.4612, 0.4837, 0.5288, 0.5211, 0.4148, 0.4897},
+      { 0.3924, 0.3861, 0.4304, 0.3661, 0.4795, 0.4468, 0.4368, 0.4382, 0.4233, 0.4130, 0.3854, 0.4731, 0.4600, 0.4069, 0.4082, 0.4269, 0.4606, 0.4783, 0.3993, 0.4461},
+      { 0.3821, 0.3885, 0.4503, 0.3783, 0.4715, 0.4368, 0.4604, 0.4528, 0.4248, 0.3877, 0.3827, 0.4997, 0.5020, 0.4653, 0.4613, 0.4713, 0.4929, 0.5061, 0.4239, 0.4623},
+      { 0.3970, 0.3661, 0.4530, 0.3597, 0.4583, 0.4382, 0.4528, 0.4823, 0.4474, 0.4088, 0.4037, 0.4710, 0.4599, 0.3687, 0.3672, 0.3926, 0.4496, 0.4574, 0.3683, 0.4150},
+      { 0.4465, 0.4035, 0.4372, 0.3851, 0.4578, 0.4233, 0.4248, 0.4474, 0.4487, 0.3906, 0.4112, 0.4893, 0.4934, 0.3941, 0.3999, 0.4376, 0.4662, 0.4787, 0.4042, 0.4426},
+      { 0.3581, 0.3405, 0.3928, 0.3345, 0.4016, 0.4130, 0.3877, 0.4088, 0.3906, 0.3808, 0.3653, 0.4571, 0.4387, 0.3685, 0.3619, 0.3952, 0.4359, 0.4496, 0.3758, 0.4321},
+      { 0.3644, 0.3309, 0.3821, 0.3358, 0.4407, 0.3854, 0.3827, 0.4037, 0.4112, 0.3653, 0.4155, 0.5069, 0.5165, 0.3595, 0.3560, 0.4076, 0.4419, 0.4568, 0.3827, 0.4204},
+      { 0.4461, 0.4569, 0.5149, 0.4644, 0.5600, 0.4731, 0.4997, 0.4710, 0.4893, 0.4571, 0.5069, 0.5519, 0.5714, 0.5395, 0.5619, 0.5649, 0.5893, 0.5960, 0.4870, 0.5681},
+      { 0.3919, 0.4155, 0.4866, 0.4080, 0.5112, 0.4600, 0.5020, 0.4599, 0.4934, 0.4387, 0.5165, 0.5714, 0.5800, 0.5775, 0.6192, 0.5946, 0.6184, 0.6170, 0.4965, 0.6001},
+      { 0.3194, 0.3509, 0.3989, 0.3635, 0.4612, 0.4069, 0.4653, 0.3687, 0.3941, 0.3685, 0.3595, 0.5395, 0.5775, 0.5726, 0.5632, 0.5640, 0.5405, 0.5719, 0.4793, 0.5470},
+      { 0.3102, 0.3448, 0.3870, 0.3613, 0.4612, 0.4082, 0.4613, 0.3672, 0.3999, 0.3619, 0.3560, 0.5619, 0.6192, 0.5632, 0.5851, 0.5705, 0.5538, 0.5908, 0.4790, 0.5334},
+      { 0.3485, 0.3750, 0.4315, 0.3868, 0.4837, 0.4269, 0.4713, 0.3926, 0.4376, 0.3952, 0.4076, 0.5649, 0.5946, 0.5640, 0.5705, 0.5869, 0.5727, 0.6031, 0.5055, 0.5552},
+      { 0.3734, 0.4009, 0.4521, 0.3867, 0.5288, 0.4606, 0.4929, 0.4496, 0.4662, 0.4359, 0.4419, 0.5893, 0.6184, 0.5405, 0.5538, 0.5727, 0.6027, 0.6308, 0.5039, 0.5494},
+      { 0.3799, 0.4041, 0.4655, 0.4294, 0.5211, 0.4783, 0.5061, 0.4574, 0.4787, 0.4496, 0.4568, 0.5960, 0.6170, 0.5719, 0.5908, 0.6031, 0.6308, 0.6352, 0.5211, 0.5876},
+      { 0.3397, 0.3466, 0.3957, 0.3407, 0.4148, 0.3993, 0.4239, 0.3683, 0.4042, 0.3758, 0.3827, 0.4870, 0.4965, 0.4793, 0.4790, 0.5055, 0.5039, 0.5211, 0.4527, 0.4897},
+      { 0.3456, 0.3522, 0.4306, 0.3757, 0.4897, 0.4461, 0.4623, 0.4150, 0.4426, 0.4321, 0.4204, 0.5681, 0.6001, 0.5470, 0.5334, 0.5552, 0.5494, 0.5876, 0.4897, 0.6440}},
+    {
+      { 0.3248, 0.3171, 0.5252, 0.4634, 0.4338, 0.3786, 0.3745, 0.3943, 0.4380, 0.3643, 0.3580, 0.4249, 0.3515, 0.3311, 0.3324, 0.3302, 0.3636, 0.3636, 0.3368, 0.3651},
+      { 0.3171, 0.3330, 0.5371, 0.4644, 0.4169, 0.3848, 0.3839, 0.3757, 0.3970, 0.3428, 0.3439, 0.4407, 0.3965, 0.3604, 0.3712, 0.3564, 0.3858, 0.3956, 0.3476, 0.3667},
+      { 0.5252, 0.5371, 0.3908, 0.3465, 0.4324, 0.4336, 0.4392, 0.4322, 0.4355, 0.3968, 0.3996, 0.5080, 0.4712, 0.4260, 0.4244, 0.4172, 0.4399, 0.4519, 0.3979, 0.4230},
+      { 0.4634, 0.4644, 0.3465, 0.3237, 0.3831, 0.3647, 0.3742, 0.3607, 0.3726, 0.3295, 0.3302, 0.4560, 0.4063, 0.3798, 0.3938, 0.3792, 0.3760, 0.4166, 0.3444, 0.3663},
+      { 0.4338, 0.4169, 0.4324, 0.3831, 0.5080, 0.4700, 0.4670, 0.4469, 0.4500, 0.3978, 0.4087, 0.5298, 0.4980, 0.4557, 0.4663, 0.4699, 0.5084, 0.5061, 0.4067, 0.4773},
+      { 0.3786, 0.3848, 0.4336, 0.3647, 0.4700, 0.4150, 0.4175, 0.4230, 0.4243, 0.4047, 0.3836, 0.4480, 0.4365, 0.4198, 0.4272, 0.4037, 0.4439, 0.4593, 0.3913, 0.4323},
+      { 0.3745, 0.3839, 0.4392, 0.3742, 0.4670, 0.4175, 0.4444, 0.4269, 0.4329, 0.3864, 0.3978, 0.4843, 0.4667, 0.4768, 0.4795, 0.4577, 0.4877, 0.4996, 0.4209, 0.4605},
+      { 0.3943, 0.3757, 0.4322, 0.3607, 0.4469, 0.4230, 0.4269, 0.4693, 0.4409, 0.4024, 0.3942, 0.4573, 0.4314, 0.3798, 0.3798, 0.3738, 0.4341, 0.4367, 0.3626, 0.4183},
+      { 0.4380, 0.3970, 0.4355, 0.3726, 0.4500, 0.4243, 0.4329, 0.4409, 0.4471, 0.3902, 0.4117, 0.4797, 0.4793, 0.4179, 0.4275, 0.4147, 0.4522, 0.4706, 0.3867, 0.4377},
+      { 0.3643, 0.3428, 0.3968, 0.3295, 0.3978, 0.4047, 0.3864, 0.4024, 0.3902, 0.4050, 0.3754, 0.4616, 0.4320, 0.3920, 0.3983, 0.3771, 0.4340, 0.4501, 0.3877, 0.4158},
+      { 0.3580, 0.3439, 0.3996, 0.3302, 0.4087, 0.3836, 0.3978, 0.3942, 0.4117, 0.3754, 0.3840, 0.5014, 0.4962, 0.3946, 0.4131, 0.4012, 0.4423, 0.4656, 0.3842, 0.4467},
+      { 0.4249, 0.4407, 0.5080, 0.4560, 0.5298, 0.4480, 0.4843, 0.4573, 0.4797, 0.4616, 0.5014, 0.5526, 0.5773, 0.5477, 0.5794, 0.5672, 0.5860, 0.5989, 0.4776, 0.5573},
+      { 0.3515, 0.3965, 0.4712, 0.4063, 0.4980, 0.4365, 0.4667, 0.4314, 0.4793, 0.4320, 0.4962, 0.5773, 0.6060, 0.5638, 0.5946, 0.6365, 0.6341, 0.6276, 0.4651, 0.6110},
+      { 0.3311, 0.3604, 0.4260, 0.3798, 0.4557, 0.4198, 0.4768, 0.3798, 0.4179, 0.3920, 0.3946, 0.5477, 0.5638, 0.5822, 0.5884, 0.5652, 0.5538, 0.5840, 0.4919, 0.5612},
+      { 0.3324, 0.3712, 0.4244, 0.3938, 0.4663, 0.4272, 0.4795, 0.3798, 0.4275, 0.3983, 0.4131, 0.5794, 0.5946, 0.5884, 0.6174, 0.5881, 0.5770, 0.6085, 0.5072, 0.5642},
+      { 0.3302, 0.3564, 0.4172, 0.3792, 0.4699, 0.4037, 0.4577, 0.3738, 0.4147, 0.3771, 0.4012, 0.5672, 0.6365, 0.5652, 0.5881, 0.5742, 0.5589, 0.6036, 0.4894, 0.5402},
+      { 0.3636, 0.3858, 0.4399, 0.3760, 0.5084, 0.4439, 0.4877, 0.4341, 0.4522, 0.4340, 0.4423, 0.5860, 0.6341, 0.5538, 0.5770, 0.5589, 0.5991, 0.6357, 0.4925, 0.5559},
+      { 0.3636, 0.3956, 0.4519, 0.4166, 0.5061, 0.4593, 0.4996, 0.4367, 0.4706, 0.4501, 0.4656, 0.5989, 0.6276, 0.5840, 0.6085, 0.6036, 0.6357, 0.6474, 0.5127, 0.5966},
+      { 0.3368, 0.3476, 0.3979, 0.3444, 0.4067, 0.3913, 0.4209, 0.3626, 0.3867, 0.3877, 0.3842, 0.4776, 0.4651, 0.4919, 0.5072, 0.4894, 0.4925, 0.5127, 0.4504, 0.4845},
+      { 0.3651, 0.3667, 0.4230, 0.3663, 0.4773, 0.4323, 0.4605, 0.4183, 0.4377, 0.4158, 0.4467, 0.5573, 0.6110, 0.5612, 0.5642, 0.5402, 0.5559, 0.5966, 0.4845, 0.6333}},
+    {
+      { 0.3763, 0.3530, 0.5718, 0.5180, 0.5041, 0.4318, 0.4130, 0.4502, 0.4522, 0.4132, 0.3871, 0.4677, 0.3806, 0.3689, 0.3706, 0.3858, 0.3799, 0.4083, 0.3696, 0.3836},
+      { 0.3530, 0.3485, 0.5827, 0.5111, 0.4642, 0.4352, 0.4171, 0.4201, 0.4293, 0.3934, 0.3931, 0.4803, 0.4548, 0.3984, 0.4064, 0.4063, 0.3648, 0.4397, 0.3843, 0.3984},
+      { 0.5718, 0.5827, 0.4342, 0.3702, 0.4881, 0.4900, 0.4822, 0.4956, 0.4575, 0.4474, 0.4271, 0.5726, 0.5301, 0.4396, 0.4511, 0.4692, 0.4354, 0.5182, 0.4310, 0.4578},
+      { 0.5180, 0.5111, 0.3702, 0.4117, 0.4364, 0.4084, 0.3991, 0.4133, 0.4180, 0.3811, 0.3602, 0.4956, 0.4699, 0.3970, 0.4105, 0.4221, 0.3983, 0.4511, 0.3644, 0.4235},
+      { 0.5041, 0.4642, 0.4881, 0.4364, 0.5926, 0.5533, 0.5238, 0.5236, 0.5081, 0.4852, 0.4594, 0.5738, 0.5664, 0.5080, 0.5175, 0.5062, 0.4998, 0.5615, 0.4534, 0.5747},
+      { 0.4318, 0.4352, 0.4900, 0.4084, 0.5533, 0.4905, 0.4811, 0.5157, 0.4641, 0.4715, 0.4429, 0.5139, 0.4853, 0.4679, 0.4679, 0.4683, 0.4755, 0.5124, 0.4476, 0.4782},
+      { 0.4130, 0.4171, 0.4822, 0.3991, 0.5238, 0.4811, 0.4938, 0.4756, 0.4792, 0.4479, 0.4344, 0.5352, 0.5125, 0.4998, 0.5202, 0.5091, 0.4766, 0.5488, 0.4491, 0.5101},
+      { 0.4502, 0.4201, 0.4956, 0.4133, 0.5236, 0.5157, 0.4756, 0.5316, 0.4774, 0.4732, 0.4963, 0.5210, 0.4788, 0.4324, 0.4258, 0.4149, 0.4718, 0.4940, 0.4182, 0.4698},
+      { 0.4522, 0.4293, 0.4575, 0.4180, 0.5081, 0.4641, 0.4792, 0.4774, 0.4861, 0.4339, 0.4781, 0.5333, 0.5722, 0.4520, 0.4649, 0.4734, 0.4675, 0.5322, 0.4152, 0.4640},
+      { 0.4132, 0.3934, 0.4474, 0.3811, 0.4852, 0.4715, 0.4479, 0.4732, 0.4339, 0.4599, 0.4443, 0.5014, 0.4304, 0.4360, 0.4444, 0.4491, 0.4834, 0.4910, 0.4419, 0.4857},
+      { 0.3871, 0.3931, 0.4271, 0.3602, 0.4594, 0.4429, 0.4344, 0.4963, 0.4781, 0.4443, 0.4317, 0.5257, 0.5074, 0.4222, 0.4476, 0.4378, 0.4486, 0.4744, 0.4258, 0.4766},
+      { 0.4677, 0.4803, 0.5726, 0.4956, 0.5738, 0.5139, 0.5352, 0.5210, 0.5333, 0.5014, 0.5257, 0.5912, 0.6258, 0.5769, 0.6113, 0.5983, 0.6154, 0.6134, 0.5237, 0.6491},
+      { 0.3806, 0.4548, 0.5301, 0.4699, 0.5664, 0.4853, 0.5125, 0.4788, 0.5722, 0.4304, 0.5074, 0.6258, 0.6293, 0.5891, 0.6184, 0.6341, 0.6943, 0.6562, 0.5197, 0.6641},
+      { 0.3689, 0.3984, 0.4396, 0.3970, 0.5080, 0.4679, 0.4998, 0.4324, 0.4520, 0.4360, 0.4222, 0.5769, 0.5891, 0.5934, 0.6097, 0.6045, 0.5300, 0.6078, 0.5128, 0.5914},
+      { 0.3706, 0.4064, 0.4511, 0.4105, 0.5175, 0.4679, 0.5202, 0.4258, 0.4649, 0.4444, 0.4476, 0.6113, 0.6184, 0.6097, 0.6414, 0.6428, 0.5655, 0.6361, 0.5355, 0.6068},
+      { 0.3858, 0.4063, 0.4692, 0.4221, 0.5062, 0.4683, 0.5091, 0.4149, 0.4734, 0.4491, 0.4378, 0.5983, 0.6341, 0.6045, 0.6428, 0.6289, 0.5600, 0.6331, 0.5364, 0.5822},
+      { 0.3799, 0.3648, 0.4354, 0.3983, 0.4998, 0.4755, 0.4766, 0.4718, 0.4675, 0.4834, 0.4486, 0.6154, 0.6943, 0.5300, 0.5655, 0.5600, 0.5986, 0.6481, 0.4782, 0.5665},
+      { 0.4083, 0.4397, 0.5182, 0.4511, 0.5615, 0.5124, 0.5488, 0.4940, 0.5322, 0.4910, 0.4744, 0.6134, 0.6562, 0.6078, 0.6361, 0.6331, 0.6481, 0.6780, 0.5478, 0.6442},
+      { 0.3696, 0.3843, 0.4310, 0.3644, 0.4534, 0.4476, 0.4491, 0.4182, 0.4152, 0.4419, 0.4258, 0.5237, 0.5197, 0.5128, 0.5355, 0.5364, 0.4782, 0.5478, 0.4703, 0.5158},
+      { 0.3836, 0.3984, 0.4578, 0.4235, 0.5747, 0.4782, 0.5101, 0.4698, 0.4640, 0.4857, 0.4766, 0.6491, 0.6641, 0.5914, 0.6068, 0.5822, 0.5665, 0.6442, 0.5158, 0.7068}},
+    {
+      { 0.4262, 0.3992, 0.5896, 0.5323, 0.5143, 0.4787, 0.4470, 0.4895, 0.4902, 0.4494, 0.4261, 0.5038, 0.4468, 0.4171, 0.4153, 0.4191, 0.4447, 0.3865, 0.4235, 0.4467},
+      { 0.3992, 0.4204, 0.5998, 0.5333, 0.4950, 0.4602, 0.4556, 0.4456, 0.4672, 0.4299, 0.4194, 0.5017, 0.4725, 0.4399, 0.4559, 0.4449, 0.4613, 0.4096, 0.4377, 0.4545},
+      { 0.5896, 0.5998, 0.4710, 0.4140, 0.4905, 0.5208, 0.5018, 0.5093, 0.5080, 0.4801, 0.4839, 0.5570, 0.5164, 0.4855, 0.4934, 0.5036, 0.5051, 0.4783, 0.4906, 0.4966},
+      { 0.5323, 0.5333, 0.4140, 0.3996, 0.4376, 0.4500, 0.4474, 0.4391, 0.4472, 0.4247, 0.4137, 0.5073, 0.4588, 0.4507, 0.4707, 0.4516, 0.4700, 0.4313, 0.4232, 0.4279},
+      { 0.5143, 0.4950, 0.4905, 0.4376, 0.5384, 0.5175, 0.5150, 0.4985, 0.4898, 0.4770, 0.4555, 0.6003, 0.5760, 0.4965, 0.5190, 0.5102, 0.5556, 0.5358, 0.4682, 0.5348},
+      { 0.4787, 0.4602, 0.5208, 0.4500, 0.5175, 0.5176, 0.5032, 0.5157, 0.5097, 0.4866, 0.4650, 0.5193, 0.4998, 0.4856, 0.5028, 0.5002, 0.5446, 0.4795, 0.4727, 0.5239},
+      { 0.4470, 0.4556, 0.5018, 0.4474, 0.5150, 0.5032, 0.5060, 0.4918, 0.5041, 0.4706, 0.4849, 0.5357, 0.5178, 0.5361, 0.5566, 0.5410, 0.5456, 0.5092, 0.4879, 0.5225},
+      { 0.4895, 0.4456, 0.5093, 0.4391, 0.4985, 0.5157, 0.4918, 0.5544, 0.5243, 0.4776, 0.4728, 0.5248, 0.5009, 0.4540, 0.4630, 0.4497, 0.5234, 0.4599, 0.4541, 0.5086},
+      { 0.4902, 0.4672, 0.5080, 0.4472, 0.4898, 0.5097, 0.5041, 0.5243, 0.4994, 0.4908, 0.5044, 0.5399, 0.5278, 0.4903, 0.4998, 0.5106, 0.5363, 0.4944, 0.4775, 0.5279},
+      { 0.4494, 0.4299, 0.4801, 0.4247, 0.4770, 0.4866, 0.4706, 0.4776, 0.4908, 0.5026, 0.4712, 0.5025, 0.4822, 0.4741, 0.4792, 0.4815, 0.5259, 0.4554, 0.4835, 0.5037},
+      { 0.4261, 0.4194, 0.4839, 0.4137, 0.4555, 0.4650, 0.4849, 0.4728, 0.5044, 0.4712, 0.4351, 0.5094, 0.5213, 0.4699, 0.4942, 0.4834, 0.5227, 0.4558, 0.4647, 0.5160},
+      { 0.5038, 0.5017, 0.5570, 0.5073, 0.6003, 0.5193, 0.5357, 0.5248, 0.5399, 0.5025, 0.5094, 0.6068, 0.6616, 0.5873, 0.6090, 0.6011, 0.6293, 0.6322, 0.5350, 0.5977},
+      { 0.4468, 0.4725, 0.5164, 0.4588, 0.5760, 0.4998, 0.5178, 0.5009, 0.5278, 0.4822, 0.5213, 0.6616, 0.6738, 0.5757, 0.6170, 0.6276, 0.6562, 0.7091, 0.5276, 0.6237},
+      { 0.4171, 0.4399, 0.4855, 0.4507, 0.4965, 0.4856, 0.5361, 0.4540, 0.4903, 0.4741, 0.4699, 0.5873, 0.5757, 0.6340, 0.6515, 0.6380, 0.6263, 0.5941, 0.5531, 0.6103},
+      { 0.4153, 0.4559, 0.4934, 0.4707, 0.5190, 0.5028, 0.5566, 0.4630, 0.4998, 0.4792, 0.4942, 0.6090, 0.6170, 0.6515, 0.6854, 0.6684, 0.6607, 0.6173, 0.5752, 0.6173},
+      { 0.4191, 0.4449, 0.5036, 0.4516, 0.5102, 0.5002, 0.5410, 0.4497, 0.5106, 0.4815, 0.4834, 0.6011, 0.6276, 0.6380, 0.6684, 0.6638, 0.6508, 0.6209, 0.5674, 0.6074},
+      { 0.4447, 0.4613, 0.5051, 0.4700, 0.5556, 0.5446, 0.5456, 0.5234, 0.5363, 0.5259, 0.5227, 0.6293, 0.6562, 0.6263, 0.6607, 0.6508, 0.6830, 0.6531, 0.5732, 0.6291},
+      { 0.3865, 0.4096, 0.4783, 0.4313, 0.5358, 0.4795, 0.5092, 0.4599, 0.4944, 0.4554, 0.4558, 0.6322, 0.7091, 0.5941, 0.6173, 0.6209, 0.6531, 0.6774, 0.5320, 0.6094},
+      { 0.4235, 0.4377, 0.4906, 0.4232, 0.4682, 0.4727, 0.4879, 0.4541, 0.4775, 0.4835, 0.4647, 0.5350, 0.5276, 0.5531, 0.5752, 0.5674, 0.5732, 0.5320, 0.5163, 0.5363},
+      { 0.4467, 0.4545, 0.4966, 0.4279, 0.5348, 0.5239, 0.5225, 0.5086, 0.5279, 0.5037, 0.5160, 0.5977, 0.6237, 0.6103, 0.6173, 0.6074, 0.6291, 0.6094, 0.5363, 0.7255}},
+    {
+      { 0.1858, 0.1693, 0.4245, 0.3563, 0.3326, 0.2823, 0.2680, 0.2895, 0.2967, 0.2450, 0.2409, 0.3483, 0.2738, 0.2467, 0.2440, 0.2435, 0.2613, 0.2685, 0.2024, 0.2587},
+      { 0.1693, 0.1920, 0.4338, 0.3646, 0.3149, 0.2714, 0.2752, 0.2716, 0.2925, 0.2017, 0.2299, 0.3394, 0.2886, 0.2596, 0.2759, 0.2725, 0.2817, 0.2787, 0.2231, 0.2435},
+      { 0.4245, 0.4338, 0.3049, 0.2414, 0.3330, 0.3315, 0.3470, 0.3434, 0.3500, 0.3026, 0.3152, 0.4107, 0.3671, 0.3344, 0.3509, 0.3586, 0.3556, 0.3782, 0.2832, 0.3346},
+      { 0.3563, 0.3646, 0.2414, 0.2021, 0.2680, 0.2593, 0.2727, 0.2556, 0.2795, 0.2140, 0.2266, 0.3713, 0.2786, 0.2821, 0.2947, 0.2928, 0.2725, 0.3153, 0.2270, 0.2687},
+      { 0.3326, 0.3149, 0.3330, 0.2680, 0.4396, 0.3956, 0.4084, 0.3455, 0.3370, 0.3439, 0.3303, 0.4642, 0.4235, 0.3902, 0.3966, 0.4067, 0.4495, 0.4333, 0.3340, 0.3890},
+      { 0.2823, 0.2714, 0.3315, 0.2593, 0.3956, 0.3396, 0.3438, 0.3501, 0.3201, 0.3200, 0.2953, 0.4194, 0.4534, 0.3484, 0.3570, 0.3432, 0.3836, 0.4214, 0.2858, 0.3652},
+      { 0.2680, 0.2752, 0.3470, 0.2727, 0.4084, 0.3438, 0.3701, 0.3525, 0.3542, 0.3298, 0.3070, 0.4240, 0.4270, 0.3974, 0.4163, 0.4019, 0.4184, 0.4342, 0.3037, 0.3883},
+      { 0.2895, 0.2716, 0.3434, 0.2556, 0.3455, 0.3501, 0.3525, 0.4005, 0.3425, 0.3137, 0.3074, 0.3839, 0.3407, 0.3150, 0.3179, 0.3182, 0.3766, 0.3604, 0.2783, 0.3414},
+      { 0.2967, 0.2925, 0.3500, 0.2795, 0.3370, 0.3201, 0.3542, 0.3425, 0.3406, 0.2932, 0.3096, 0.3804, 0.3576, 0.3251, 0.3445, 0.3473, 0.3642, 0.3727, 0.2782, 0.3272},
+      { 0.2450, 0.2017, 0.3026, 0.2140, 0.3439, 0.3200, 0.3298, 0.3137, 0.2932, 0.2988, 0.2765, 0.4050, 0.4066, 0.3479, 0.3647, 0.3589, 0.4047, 0.4004, 0.2912, 0.3605},
+      { 0.2409, 0.2299, 0.3152, 0.2266, 0.3303, 0.2953, 0.3070, 0.3074, 0.3096, 0.2765, 0.3043, 0.4470, 0.4427, 0.3096, 0.3242, 0.3295, 0.3805, 0.3907, 0.2584, 0.3429},
+      { 0.3483, 0.3394, 0.4107, 0.3713, 0.4642, 0.4194, 0.4240, 0.3839, 0.3804, 0.4050, 0.4470, 0.5074, 0.4988, 0.4915, 0.5147, 0.5058, 0.5257, 0.5357, 0.4385, 0.4751},
+      { 0.2738, 0.2886, 0.3671, 0.2786, 0.4235, 0.4534, 0.4270, 0.3407, 0.3576, 0.4066, 0.4427, 0.4988, 0.5166, 0.4918, 0.4965, 0.4651, 0.5197, 0.5276, 0.5005, 0.5460},
+      { 0.2467, 0.2596, 0.3344, 0.2821, 0.3902, 0.3484, 0.3974, 0.3150, 0.3251, 0.3479, 0.3096, 0.4915, 0.4918, 0.4899, 0.5138, 0.5000, 0.4792, 0.5219, 0.3852, 0.4586},
+      { 0.2440, 0.2759, 0.3509, 0.2947, 0.3966, 0.3570, 0.4163, 0.3179, 0.3445, 0.3647, 0.3242, 0.5147, 0.4965, 0.5138, 0.5463, 0.5342, 0.5164, 0.5359, 0.4089, 0.4845},
+      { 0.2435, 0.2725, 0.3586, 0.2928, 0.4067, 0.3432, 0.4019, 0.3182, 0.3473, 0.3589, 0.3295, 0.5058, 0.4651, 0.5000, 0.5342, 0.5318, 0.5099, 0.5326, 0.4044, 0.4741},
+      { 0.2613, 0.2817, 0.3556, 0.2725, 0.4495, 0.3836, 0.4184, 0.3766, 0.3642, 0.4047, 0.3805, 0.5257, 0.5197, 0.4792, 0.5164, 0.5099, 0.5644, 0.5597, 0.4040, 0.4913},
+      { 0.2685, 0.2787, 0.3782, 0.3153, 0.4333, 0.4214, 0.4342, 0.3604, 0.3727, 0.4004, 0.3907, 0.5357, 0.5276, 0.5219, 0.5359, 0.5326, 0.5597, 0.5709, 0.4595, 0.5218},
+      { 0.2024, 0.2231, 0.2832, 0.2270, 0.3340, 0.2858, 0.3037, 0.2783, 0.2782, 0.2912, 0.2584, 0.4385, 0.5005, 0.3852, 0.4089, 0.4044, 0.4040, 0.4595, 0.3470, 0.3925},
+      { 0.2587, 0.2435, 0.3346, 0.2687, 0.3890, 0.3652, 0.3883, 0.3414, 0.3272, 0.3605, 0.3429, 0.4751, 0.5460, 0.4586, 0.4845, 0.4741, 0.4913, 0.5218, 0.3925, 0.5503}},
+    {
+      { 0.2921, 0.2780, 0.5293, 0.4337, 0.4504, 0.3892, 0.3942, 0.3729, 0.3876, 0.3343, 0.3623, 0.4510, 0.4299, 0.3357, 0.3418, 0.3449, 0.3550, 0.4066, 0.3128, 0.2744},
+      { 0.2780, 0.3153, 0.5538, 0.4770, 0.4898, 0.3625, 0.3809, 0.3666, 0.4006, 0.3068, 0.3208, 0.4762, 0.4403, 0.3856, 0.3745, 0.3715, 0.3844, 0.4001, 0.3154, 0.2904},
+      { 0.5293, 0.5538, 0.4613, 0.3688, 0.4988, 0.4343, 0.4502, 0.4549, 0.4657, 0.3889, 0.4079, 0.5463, 0.5222, 0.4235, 0.4635, 0.4554, 0.4751, 0.4933, 0.4053, 0.3892},
+      { 0.4337, 0.4770, 0.3688, 0.3300, 0.4059, 0.3526, 0.4087, 0.3347, 0.3998, 0.3428, 0.2877, 0.5020, 0.4291, 0.3737, 0.3877, 0.3867, 0.3835, 0.4354, 0.3197, 0.2746},
+      { 0.4504, 0.4898, 0.4988, 0.4059, 0.5936, 0.4796, 0.5065, 0.4381, 0.4481, 0.4322, 0.4215, 0.5546, 0.5043, 0.4723, 0.4956, 0.4791, 0.5286, 0.5391, 0.4254, 0.4630},
+      { 0.3892, 0.3625, 0.4343, 0.3526, 0.4796, 0.4474, 0.4487, 0.4588, 0.4563, 0.4051, 0.4117, 0.5004, 0.5212, 0.4438, 0.4580, 0.4398, 0.4924, 0.4894, 0.4048, 0.4712},
+      { 0.3942, 0.3809, 0.4502, 0.4087, 0.5065, 0.4487, 0.4300, 0.4562, 0.4633, 0.4100, 0.3991, 0.5094, 0.5466, 0.4665, 0.4687, 0.4723, 0.5066, 0.5101, 0.4218, 0.4153},
+      { 0.3729, 0.3666, 0.4549, 0.3347, 0.4381, 0.4588, 0.4562, 0.5369, 0.4565, 0.4463, 0.3964, 0.4971, 0.5362, 0.3966, 0.4086, 0.3977, 0.4420, 0.4756, 0.3549, 0.3589},
+      { 0.3876, 0.4006, 0.4657, 0.3998, 0.4481, 0.4563, 0.4633, 0.4565, 0.4943, 0.4361, 0.3930, 0.4955, 0.5157, 0.4509, 0.4738, 0.4437, 0.5045, 0.4870, 0.3929, 0.3887},
+      { 0.3343, 0.3068, 0.3889, 0.3428, 0.4322, 0.4051, 0.4100, 0.4463, 0.4361, 0.4087, 0.3634, 0.4415, 0.4796, 0.4065, 0.4235, 0.4064, 0.4485, 0.4601, 0.3695, 0.4031},
+      { 0.3623, 0.3208, 0.4079, 0.2877, 0.4215, 0.4117, 0.3991, 0.3964, 0.3930, 0.3634, 0.4188, 0.5415, 0.5098, 0.3657, 0.4061, 0.4101, 0.4710, 0.4857, 0.3376, 0.3334},
+      { 0.4510, 0.4762, 0.5463, 0.5020, 0.5546, 0.5004, 0.5094, 0.4971, 0.4955, 0.4415, 0.5415, 0.5465, 0.5934, 0.5669, 0.5829, 0.5826, 0.6432, 0.5872, 0.4997, 0.5781},
+      { 0.4299, 0.4403, 0.5222, 0.4291, 0.5043, 0.5212, 0.5466, 0.5362, 0.5157, 0.4796, 0.5098, 0.5934, 0.5893, 0.6005, 0.6001, 0.6110, 0.6641, 0.6237, 0.5460, 0.7267},
+      { 0.3357, 0.3856, 0.4235, 0.3737, 0.4723, 0.4438, 0.4665, 0.3966, 0.4509, 0.4065, 0.3657, 0.5669, 0.6005, 0.5695, 0.5783, 0.5530, 0.5398, 0.5685, 0.4876, 0.4407},
+      { 0.3418, 0.3745, 0.4635, 0.3877, 0.4956, 0.4580, 0.4687, 0.4086, 0.4738, 0.4235, 0.4061, 0.5829, 0.6001, 0.5783, 0.6140, 0.5885, 0.5654, 0.5891, 0.5025, 0.4461},
+      { 0.3449, 0.3715, 0.4554, 0.3867, 0.4791, 0.4398, 0.4723, 0.3977, 0.4437, 0.4064, 0.4101, 0.5826, 0.6110, 0.5530, 0.5885, 0.5819, 0.5563, 0.5943, 0.4879, 0.4509},
+      { 0.3550, 0.3844, 0.4751, 0.3835, 0.5286, 0.4924, 0.5066, 0.4420, 0.5045, 0.4485, 0.4710, 0.6432, 0.6641, 0.5398, 0.5654, 0.5563, 0.6169, 0.6529, 0.4857, 0.4537},
+      { 0.4066, 0.4001, 0.4933, 0.4354, 0.5391, 0.4894, 0.5101, 0.4756, 0.4870, 0.4601, 0.4857, 0.5872, 0.6237, 0.5685, 0.5891, 0.5943, 0.6529, 0.6090, 0.5100, 0.6071},
+      { 0.3128, 0.3154, 0.4053, 0.3197, 0.4254, 0.4048, 0.4218, 0.3549, 0.3929, 0.3695, 0.3376, 0.4997, 0.5460, 0.4876, 0.5025, 0.4879, 0.4857, 0.5100, 0.4395, 0.3949},
+      { 0.2744, 0.2904, 0.3892, 0.2746, 0.4630, 0.4712, 0.4153, 0.3589, 0.3887, 0.4031, 0.3334, 0.5781, 0.7267, 0.4407, 0.4461, 0.4509, 0.4537, 0.6071, 0.3949, 0.5665}}},
+  {
+    {
+      { 0.1068, 0.1069, 0.3411, 0.3178, 0.3054, 0.2718, 0.3320, 0.2868, 0.2399, 0.2118, 0.2149, 0.3126, 0.2923, 0.3077, 0.2945, 0.2701, 0.2907, 0.2804, 0.2214, 0.3208},
+      { 0.1069, 0.1107, 0.3529, 0.3030, 0.2536, 0.1948, 0.2130, 0.2171, 0.2053, 0.1417, 0.1706, 0.2636, 0.2704, 0.1506, 0.1642, 0.1661, 0.1744, 0.1940, 0.1547, 0.1759},
+      { 0.3411, 0.3529, 0.2239, 0.1596, 0.2624, 0.2186, 0.2272, 0.2323, 0.2519, 0.1842, 0.2009, 0.3124, 0.3224, 0.1539, 0.1669, 0.1927, 0.1931, 0.2394, 0.1721, 0.1962},
+      { 0.3178, 0.3030, 0.1596, 0.1168, 0.2030, 0.1630, 0.1669, 0.1782, 0.2057, 0.1225, 0.1221, 0.2601, 0.2452, 0.0970, 0.1131, 0.1269, 0.1180, 0.1628, 0.1191, 0.1059},
+      { 0.3054, 0.2536, 0.2624, 0.2030, 0.2929, 0.2545, 0.2830, 0.2373, 0.2345, 0.1872, 0.2031, 0.3482, 0.3518, 0.2344, 0.2391, 0.2368, 0.2543, 0.2888, 0.2087, 0.2604},
+      { 0.2718, 0.1948, 0.2186, 0.1630, 0.2545, 0.1973, 0.2026, 0.2060, 0.2070, 0.1579, 0.1550, 0.2487, 0.2662, 0.1573, 0.1715, 0.1785, 0.1880, 0.2159, 0.1629, 0.2195},
+      { 0.3320, 0.2130, 0.2272, 0.1669, 0.2830, 0.2026, 0.2371, 0.2312, 0.2247, 0.1540, 0.1517, 0.2808, 0.2923, 0.2106, 0.2316, 0.2167, 0.2247, 0.2519, 0.1791, 0.2547},
+      { 0.2868, 0.2171, 0.2323, 0.1782, 0.2373, 0.2060, 0.2312, 0.2693, 0.2298, 0.1785, 0.1743, 0.2487, 0.2777, 0.1657, 0.1677, 0.1739, 0.1973, 0.2111, 0.1612, 0.2011},
+      { 0.2399, 0.2053, 0.2519, 0.2057, 0.2345, 0.2070, 0.2247, 0.2298, 0.2290, 0.1667, 0.1929, 0.2664, 0.3012, 0.1662, 0.1745, 0.1875, 0.2076, 0.2170, 0.1660, 0.1801},
+      { 0.2118, 0.1417, 0.1842, 0.1225, 0.1872, 0.1579, 0.1540, 0.1785, 0.1667, 0.1179, 0.1409, 0.2130, 0.2397, 0.0829, 0.0990, 0.1252, 0.1461, 0.1740, 0.1269, 0.1711},
+      { 0.2149, 0.1706, 0.2009, 0.1221, 0.2031, 0.1550, 0.1517, 0.1743, 0.1929, 0.1409, 0.1684, 0.2842, 0.3055, 0.0782, 0.1048, 0.1305, 0.1658, 0.1939, 0.1239, 0.1502},
+      { 0.3126, 0.2636, 0.3124, 0.2601, 0.3482, 0.2487, 0.2808, 0.2487, 0.2664, 0.2130, 0.2842, 0.3842, 0.4275, 0.2791, 0.2994, 0.3206, 0.3249, 0.3867, 0.2445, 0.3405},
+      { 0.2923, 0.2704, 0.3224, 0.2452, 0.3518, 0.2662, 0.2923, 0.2777, 0.3012, 0.2397, 0.3055, 0.4275, 0.4262, 0.2836, 0.3194, 0.3311, 0.3689, 0.4171, 0.2467, 0.3357},
+      { 0.3077, 0.1506, 0.1539, 0.0970, 0.2344, 0.1573, 0.2106, 0.1657, 0.1662, 0.0829, 0.0782, 0.2791, 0.2836, 0.2778, 0.2862, 0.2591, 0.2471, 0.2930, 0.1554, 0.2790},
+      { 0.2945, 0.1642, 0.1669, 0.1131, 0.2391, 0.1715, 0.2316, 0.1677, 0.1745, 0.0990, 0.1048, 0.2994, 0.3194, 0.2862, 0.3121, 0.2818, 0.2713, 0.3143, 0.1740, 0.2869},
+      { 0.2701, 0.1661, 0.1927, 0.1269, 0.2368, 0.1785, 0.2167, 0.1739, 0.1875, 0.1252, 0.1305, 0.3206, 0.3311, 0.2591, 0.2818, 0.2927, 0.2775, 0.3294, 0.1820, 0.2725},
+      { 0.2907, 0.1744, 0.1931, 0.1180, 0.2543, 0.1880, 0.2247, 0.1973, 0.2076, 0.1461, 0.1658, 0.3249, 0.3689, 0.2471, 0.2713, 0.2775, 0.3206, 0.3398, 0.1888, 0.2972},
+      { 0.2804, 0.1940, 0.2394, 0.1628, 0.2888, 0.2159, 0.2519, 0.2111, 0.2170, 0.1740, 0.1939, 0.3867, 0.4171, 0.2930, 0.3143, 0.3294, 0.3398, 0.4030, 0.2198, 0.3377},
+      { 0.2214, 0.1547, 0.1721, 0.1191, 0.2087, 0.1629, 0.1791, 0.1612, 0.1660, 0.1269, 0.1239, 0.2445, 0.2467, 0.1554, 0.1740, 0.1820, 0.1888, 0.2198, 0.1702, 0.1992},
+      { 0.3208, 0.1759, 0.1962, 0.1059, 0.2604, 0.2195, 0.2547, 0.2011, 0.1801, 0.1711, 0.1502, 0.3405, 0.3357, 0.2790, 0.2869, 0.2725, 0.2972, 0.3377, 0.1992, 0.4842}},
+    {
+      { 0.1376, 0.1381, 0.3783, 0.3291, 0.3067, 0.2351, 0.2300, 0.2530, 0.2597, 0.1918, 0.1778, 0.2787, 0.2612, 0.1506, 0.1617, 0.1693, 0.1960, 0.1965, 0.1703, 0.2039},
+      { 0.1381, 0.1619, 0.3929, 0.3493, 0.3003, 0.2694, 0.3058, 0.2749, 0.2765, 0.1986, 0.2329, 0.3172, 0.3116, 0.3078, 0.2794, 0.2491, 0.2679, 0.2685, 0.2396, 0.3004},
+      { 0.3783, 0.3929, 0.2504, 0.1928, 0.2852, 0.2462, 0.2636, 0.2519, 0.2853, 0.2147, 0.2185, 0.3450, 0.3559, 0.2182, 0.2250, 0.2409, 0.2254, 0.2701, 0.2210, 0.2212},
+      { 0.3291, 0.3493, 0.1928, 0.1683, 0.2323, 0.2038, 0.2157, 0.2076, 0.2462, 0.1487, 0.1466, 0.3025, 0.2900, 0.1659, 0.1719, 0.1755, 0.1608, 0.2037, 0.1663, 0.1437},
+      { 0.3067, 0.3003, 0.2852, 0.2323, 0.3443, 0.2858, 0.3009, 0.2622, 0.2705, 0.2222, 0.2306, 0.3849, 0.3807, 0.2473, 0.2538, 0.2618, 0.2850, 0.3158, 0.2218, 0.2791},
+      { 0.2351, 0.2694, 0.2462, 0.2038, 0.2858, 0.2207, 0.2387, 0.2343, 0.2424, 0.1836, 0.1736, 0.2720, 0.2752, 0.1778, 0.1781, 0.1815, 0.1988, 0.2339, 0.1799, 0.2045},
+      { 0.2300, 0.3058, 0.2636, 0.2157, 0.3009, 0.2387, 0.2947, 0.2478, 0.2669, 0.1824, 0.1728, 0.3103, 0.3140, 0.2592, 0.2624, 0.2459, 0.2569, 0.2782, 0.1977, 0.2666},
+      { 0.2530, 0.2749, 0.2519, 0.2076, 0.2622, 0.2343, 0.2478, 0.2750, 0.2681, 0.1992, 0.1902, 0.2666, 0.2929, 0.1416, 0.1504, 0.1620, 0.1984, 0.2128, 0.1622, 0.1736},
+      { 0.2597, 0.2765, 0.2853, 0.2462, 0.2705, 0.2424, 0.2669, 0.2681, 0.2784, 0.2007, 0.2233, 0.3106, 0.3360, 0.2233, 0.2261, 0.2282, 0.2439, 0.2585, 0.2095, 0.2164},
+      { 0.1918, 0.1986, 0.2147, 0.1487, 0.2222, 0.1836, 0.1824, 0.1992, 0.2007, 0.1725, 0.1499, 0.2651, 0.2712, 0.1112, 0.1253, 0.1543, 0.1844, 0.2037, 0.1492, 0.1909},
+      { 0.1778, 0.2329, 0.2185, 0.1466, 0.2306, 0.1736, 0.1728, 0.1902, 0.2233, 0.1499, 0.1729, 0.2850, 0.2988, 0.1089, 0.1148, 0.1401, 0.1828, 0.1995, 0.1513, 0.1627},
+      { 0.2787, 0.3172, 0.3450, 0.3025, 0.3849, 0.2720, 0.3103, 0.2666, 0.3106, 0.2651, 0.2850, 0.4135, 0.4467, 0.3219, 0.3413, 0.3522, 0.3669, 0.4084, 0.2719, 0.3541},
+      { 0.2612, 0.3116, 0.3559, 0.2900, 0.3807, 0.2752, 0.3140, 0.2929, 0.3360, 0.2712, 0.2988, 0.4467, 0.4527, 0.3114, 0.3509, 0.3604, 0.3984, 0.4399, 0.2596, 0.3856},
+      { 0.1506, 0.3078, 0.2182, 0.1659, 0.2473, 0.1778, 0.2592, 0.1416, 0.2233, 0.1112, 0.1089, 0.3219, 0.3114, 0.3327, 0.3306, 0.2888, 0.2894, 0.3203, 0.1746, 0.3132},
+      { 0.1617, 0.2794, 0.2250, 0.1719, 0.2538, 0.1781, 0.2624, 0.1504, 0.2261, 0.1253, 0.1148, 0.3413, 0.3509, 0.3306, 0.3464, 0.3152, 0.3024, 0.3409, 0.1886, 0.3118},
+      { 0.1693, 0.2491, 0.2409, 0.1755, 0.2618, 0.1815, 0.2459, 0.1620, 0.2282, 0.1543, 0.1401, 0.3522, 0.3604, 0.2888, 0.3152, 0.3185, 0.3027, 0.3550, 0.2024, 0.2950},
+      { 0.1960, 0.2679, 0.2254, 0.1608, 0.2850, 0.1988, 0.2569, 0.1984, 0.2439, 0.1844, 0.1828, 0.3669, 0.3984, 0.2894, 0.3024, 0.3027, 0.3497, 0.3755, 0.2129, 0.3247},
+      { 0.1965, 0.2685, 0.2701, 0.2037, 0.3158, 0.2339, 0.2782, 0.2128, 0.2585, 0.2037, 0.1995, 0.4084, 0.4399, 0.3203, 0.3409, 0.3550, 0.3755, 0.4221, 0.2347, 0.3561},
+      { 0.1703, 0.2396, 0.2210, 0.1663, 0.2218, 0.1799, 0.1977, 0.1622, 0.2095, 0.1492, 0.1513, 0.2719, 0.2596, 0.1746, 0.1886, 0.2024, 0.2129, 0.2347, 0.2077, 0.1984},
+      { 0.2039, 0.3004, 0.2212, 0.1437, 0.2791, 0.2045, 0.2666, 0.1736, 0.2164, 0.1909, 0.1627, 0.3541, 0.3856, 0.3132, 0.3118, 0.2950, 0.3247, 0.3561, 0.1984, 0.4440}},
+    {
+      { 0.1987, 0.1954, 0.4045, 0.3889, 0.3581, 0.2641, 0.2544, 0.2918, 0.3039, 0.2259, 0.2342, 0.3278, 0.3152, 0.1539, 0.1634, 0.1947, 0.2091, 0.2202, 0.2038, 0.2025},
+      { 0.1954, 0.2163, 0.4333, 0.4224, 0.3418, 0.2687, 0.2798, 0.2820, 0.3041, 0.2106, 0.2310, 0.3455, 0.3571, 0.2182, 0.2212, 0.2381, 0.2412, 0.2579, 0.2318, 0.2183},
+      { 0.4045, 0.4333, 0.3323, 0.2743, 0.3560, 0.3623, 0.3951, 0.3640, 0.3691, 0.3155, 0.3316, 0.4106, 0.4148, 0.3991, 0.3868, 0.3607, 0.3911, 0.3754, 0.3355, 0.3919},
+      { 0.3889, 0.4224, 0.2743, 0.2554, 0.3217, 0.3027, 0.3226, 0.3062, 0.3334, 0.2556, 0.2480, 0.3928, 0.3695, 0.2937, 0.2979, 0.2941, 0.2877, 0.3146, 0.2780, 0.2804},
+      { 0.3581, 0.3418, 0.3560, 0.3217, 0.4111, 0.3645, 0.3769, 0.3262, 0.3393, 0.2896, 0.3033, 0.4367, 0.4294, 0.3210, 0.3289, 0.3345, 0.3493, 0.3734, 0.3004, 0.3519},
+      { 0.2641, 0.2687, 0.3623, 0.3027, 0.3645, 0.2866, 0.3014, 0.3093, 0.3051, 0.2558, 0.2564, 0.3491, 0.3511, 0.2536, 0.2542, 0.2620, 0.2815, 0.3066, 0.2580, 0.2823},
+      { 0.2544, 0.2798, 0.3951, 0.3226, 0.3769, 0.3014, 0.3550, 0.3181, 0.3259, 0.2530, 0.2568, 0.3730, 0.3714, 0.3244, 0.3285, 0.3154, 0.3113, 0.3420, 0.2815, 0.3305},
+      { 0.2918, 0.2820, 0.3640, 0.3062, 0.3262, 0.3093, 0.3181, 0.3550, 0.3262, 0.2750, 0.2762, 0.3525, 0.3618, 0.2392, 0.2431, 0.2511, 0.2748, 0.3032, 0.2564, 0.2829},
+      { 0.3039, 0.3041, 0.3691, 0.3334, 0.3393, 0.3051, 0.3259, 0.3262, 0.3336, 0.2728, 0.2892, 0.3665, 0.3960, 0.2763, 0.2797, 0.2931, 0.3027, 0.3187, 0.2707, 0.2819},
+      { 0.2259, 0.2106, 0.3155, 0.2556, 0.2896, 0.2558, 0.2530, 0.2750, 0.2728, 0.2419, 0.2408, 0.3273, 0.3395, 0.1904, 0.2032, 0.2264, 0.2620, 0.2785, 0.2311, 0.2699},
+      { 0.2342, 0.2310, 0.3316, 0.2480, 0.3033, 0.2564, 0.2568, 0.2762, 0.2892, 0.2408, 0.2786, 0.3604, 0.3870, 0.1929, 0.2081, 0.2350, 0.2675, 0.2987, 0.2391, 0.2626},
+      { 0.3278, 0.3455, 0.4106, 0.3928, 0.4367, 0.3491, 0.3730, 0.3525, 0.3665, 0.3273, 0.3604, 0.4533, 0.4888, 0.3721, 0.3970, 0.4110, 0.4222, 0.4613, 0.3442, 0.4187},
+      { 0.3152, 0.3571, 0.4148, 0.3695, 0.4294, 0.3511, 0.3714, 0.3618, 0.3960, 0.3395, 0.3870, 0.4888, 0.5374, 0.3685, 0.3989, 0.4260, 0.4396, 0.4855, 0.3344, 0.4235},
+      { 0.1539, 0.2182, 0.3991, 0.2937, 0.3210, 0.2536, 0.3244, 0.2392, 0.2763, 0.1904, 0.1929, 0.3721, 0.3685, 0.3931, 0.3880, 0.3568, 0.3360, 0.3735, 0.2683, 0.3760},
+      { 0.1634, 0.2212, 0.3868, 0.2979, 0.3289, 0.2542, 0.3285, 0.2431, 0.2797, 0.2032, 0.2081, 0.3970, 0.3989, 0.3880, 0.4022, 0.3747, 0.3516, 0.3944, 0.2805, 0.3776},
+      { 0.1947, 0.2381, 0.3607, 0.2941, 0.3345, 0.2620, 0.3154, 0.2511, 0.2931, 0.2264, 0.2350, 0.4110, 0.4260, 0.3568, 0.3747, 0.3815, 0.3608, 0.4058, 0.2931, 0.3608},
+      { 0.2091, 0.2412, 0.3911, 0.2877, 0.3493, 0.2815, 0.3113, 0.2748, 0.3027, 0.2620, 0.2675, 0.4222, 0.4396, 0.3360, 0.3516, 0.3608, 0.4002, 0.4268, 0.2953, 0.3795},
+      { 0.2202, 0.2579, 0.3754, 0.3146, 0.3734, 0.3066, 0.3420, 0.3032, 0.3187, 0.2785, 0.2987, 0.4613, 0.4855, 0.3735, 0.3944, 0.4058, 0.4268, 0.4684, 0.3170, 0.4106},
+      { 0.2038, 0.2318, 0.3355, 0.2780, 0.3004, 0.2580, 0.2815, 0.2564, 0.2707, 0.2311, 0.2391, 0.3442, 0.3344, 0.2683, 0.2805, 0.2931, 0.2953, 0.3170, 0.2934, 0.3003},
+      { 0.2025, 0.2183, 0.3919, 0.2804, 0.3519, 0.2823, 0.3305, 0.2829, 0.2819, 0.2699, 0.2626, 0.4187, 0.4235, 0.3760, 0.3776, 0.3608, 0.3795, 0.4106, 0.3003, 0.4873}},
+    {
+      { 0.1534, 0.1412, 0.3884, 0.3307, 0.2857, 0.2023, 0.1972, 0.2347, 0.2504, 0.1637, 0.1739, 0.2577, 0.2373, 0.0970, 0.1137, 0.1348, 0.1500, 0.1534, 0.1467, 0.1426},
+      { 0.1412, 0.1666, 0.4212, 0.3630, 0.2797, 0.2072, 0.2304, 0.2274, 0.2520, 0.1477, 0.1785, 0.2831, 0.2862, 0.1659, 0.1708, 0.1815, 0.1800, 0.1966, 0.1786, 0.1611},
+      { 0.3884, 0.4212, 0.2813, 0.2339, 0.3150, 0.2835, 0.3115, 0.2892, 0.3237, 0.2542, 0.2673, 0.3670, 0.3632, 0.2937, 0.3037, 0.3052, 0.2965, 0.3125, 0.2783, 0.2988},
+      { 0.3307, 0.3630, 0.2339, 0.2059, 0.2838, 0.3020, 0.3461, 0.2755, 0.2839, 0.2355, 0.2299, 0.3518, 0.3122, 0.3550, 0.3334, 0.3099, 0.3305, 0.3040, 0.2883, 0.3396},
+      { 0.2857, 0.2797, 0.3150, 0.2838, 0.3342, 0.3043, 0.3209, 0.2714, 0.2866, 0.2265, 0.2383, 0.3873, 0.3677, 0.2799, 0.2866, 0.2886, 0.2817, 0.3274, 0.2568, 0.3065},
+      { 0.2023, 0.2072, 0.2835, 0.3020, 0.3043, 0.2256, 0.2424, 0.2500, 0.2459, 0.1835, 0.1954, 0.2803, 0.2799, 0.1989, 0.2015, 0.2091, 0.2165, 0.2493, 0.2002, 0.2239},
+      { 0.1972, 0.2304, 0.3115, 0.3461, 0.3209, 0.2424, 0.3053, 0.2672, 0.2727, 0.1870, 0.1962, 0.3204, 0.3140, 0.2825, 0.2845, 0.2679, 0.2608, 0.2994, 0.2322, 0.2820},
+      { 0.2347, 0.2274, 0.2892, 0.2755, 0.2714, 0.2500, 0.2672, 0.2891, 0.2715, 0.2112, 0.2107, 0.2821, 0.2909, 0.1760, 0.1864, 0.1911, 0.2123, 0.2327, 0.1981, 0.2142},
+      { 0.2504, 0.2520, 0.3237, 0.2839, 0.2866, 0.2459, 0.2727, 0.2715, 0.2818, 0.2042, 0.2247, 0.3074, 0.3256, 0.2284, 0.2316, 0.2458, 0.2406, 0.2646, 0.2196, 0.2285},
+      { 0.1637, 0.1477, 0.2542, 0.2355, 0.2265, 0.1835, 0.1870, 0.2112, 0.2042, 0.1603, 0.1770, 0.2524, 0.2736, 0.1266, 0.1454, 0.1675, 0.1815, 0.2044, 0.1742, 0.2018},
+      { 0.1739, 0.1785, 0.2673, 0.2299, 0.2383, 0.1954, 0.1962, 0.2107, 0.2247, 0.1770, 0.2032, 0.2985, 0.3193, 0.1508, 0.1647, 0.1837, 0.2073, 0.2318, 0.1919, 0.2089},
+      { 0.2577, 0.2831, 0.3670, 0.3518, 0.3873, 0.2803, 0.3204, 0.2821, 0.3074, 0.2524, 0.2985, 0.4058, 0.4452, 0.3435, 0.3582, 0.3719, 0.3728, 0.4179, 0.2969, 0.3718},
+      { 0.2373, 0.2862, 0.3632, 0.3122, 0.3677, 0.2799, 0.3140, 0.2909, 0.3256, 0.2736, 0.3193, 0.4452, 0.4921, 0.3355, 0.3635, 0.3798, 0.3970, 0.4507, 0.2821, 0.3737},
+      { 0.0970, 0.1659, 0.2937, 0.3550, 0.2799, 0.1989, 0.2825, 0.1760, 0.2284, 0.1266, 0.1508, 0.3435, 0.3355, 0.3633, 0.3546, 0.3256, 0.3074, 0.3426, 0.2162, 0.3386},
+      { 0.1137, 0.1708, 0.3037, 0.3334, 0.2866, 0.2015, 0.2845, 0.1864, 0.2316, 0.1454, 0.1647, 0.3582, 0.3635, 0.3546, 0.3680, 0.3396, 0.3153, 0.3637, 0.2326, 0.3452},
+      { 0.1348, 0.1815, 0.3052, 0.3099, 0.2886, 0.2091, 0.2679, 0.1911, 0.2458, 0.1675, 0.1837, 0.3719, 0.3798, 0.3256, 0.3396, 0.3452, 0.3207, 0.3680, 0.2430, 0.3208},
+      { 0.1500, 0.1800, 0.2965, 0.3305, 0.2817, 0.2165, 0.2608, 0.2123, 0.2406, 0.1815, 0.2073, 0.3728, 0.3970, 0.3074, 0.3153, 0.3207, 0.3553, 0.3774, 0.2390, 0.3241},
+      { 0.1534, 0.1966, 0.3125, 0.3040, 0.3274, 0.2493, 0.2994, 0.2327, 0.2646, 0.2044, 0.2318, 0.4179, 0.4507, 0.3426, 0.3637, 0.3680, 0.3774, 0.4339, 0.2672, 0.3676},
+      { 0.1467, 0.1786, 0.2783, 0.2883, 0.2568, 0.2002, 0.2322, 0.1981, 0.2196, 0.1742, 0.1919, 0.2969, 0.2821, 0.2162, 0.2326, 0.2430, 0.2390, 0.2672, 0.2535, 0.2434},
+      { 0.1426, 0.1611, 0.2988, 0.3396, 0.3065, 0.2239, 0.2820, 0.2142, 0.2285, 0.2018, 0.2089, 0.3718, 0.3737, 0.3386, 0.3452, 0.3208, 0.3241, 0.3676, 0.2434, 0.4688}},
+    {
+      { 0.2031, 0.1925, 0.4589, 0.4065, 0.2719, 0.3009, 0.3100, 0.3068, 0.3094, 0.2608, 0.2399, 0.3445, 0.3297, 0.2344, 0.2446, 0.2524, 0.2806, 0.2798, 0.2435, 0.2732},
+      { 0.1925, 0.2181, 0.4680, 0.4098, 0.2755, 0.2890, 0.3053, 0.2911, 0.3063, 0.2347, 0.2525, 0.3576, 0.3801, 0.2473, 0.2644, 0.2701, 0.2900, 0.3050, 0.2586, 0.2626},
+      { 0.4589, 0.4680, 0.3336, 0.2707, 0.2886, 0.3469, 0.3657, 0.3508, 0.3672, 0.3038, 0.3234, 0.4162, 0.4287, 0.3210, 0.3415, 0.3482, 0.3586, 0.3798, 0.3201, 0.3506},
+      { 0.4065, 0.4098, 0.2707, 0.2419, 0.2221, 0.2964, 0.3105, 0.2962, 0.3162, 0.2417, 0.2402, 0.3918, 0.3724, 0.2799, 0.2932, 0.2959, 0.2892, 0.3203, 0.2682, 0.2763},
+      { 0.2719, 0.2755, 0.2886, 0.2221, 0.3993, 0.3726, 0.4207, 0.3623, 0.3193, 0.3109, 0.3376, 0.3889, 0.4104, 0.4676, 0.4252, 0.3725, 0.4477, 0.3894, 0.3256, 0.4628},
+      { 0.3009, 0.2890, 0.3469, 0.2964, 0.3726, 0.3335, 0.3412, 0.3411, 0.3427, 0.2837, 0.2882, 0.3699, 0.3975, 0.2886, 0.3054, 0.3099, 0.3460, 0.3600, 0.2942, 0.3355},
+      { 0.3100, 0.3053, 0.3657, 0.3105, 0.4207, 0.3412, 0.3704, 0.3847, 0.3725, 0.2798, 0.2839, 0.4052, 0.4045, 0.3514, 0.3651, 0.3593, 0.3763, 0.3993, 0.3273, 0.3764},
+      { 0.3068, 0.2911, 0.3508, 0.2962, 0.3623, 0.3411, 0.3847, 0.4162, 0.3633, 0.3082, 0.3096, 0.3750, 0.4025, 0.3166, 0.3291, 0.3145, 0.3659, 0.3553, 0.2973, 0.3497},
+      { 0.3094, 0.3063, 0.3672, 0.3162, 0.3193, 0.3427, 0.3725, 0.3633, 0.3605, 0.3043, 0.3115, 0.3913, 0.4309, 0.3290, 0.3448, 0.3384, 0.3742, 0.3802, 0.3151, 0.3377},
+      { 0.2608, 0.2347, 0.3038, 0.2417, 0.3109, 0.2837, 0.2798, 0.3082, 0.3043, 0.2702, 0.2583, 0.3482, 0.3780, 0.2189, 0.2416, 0.2630, 0.2984, 0.3325, 0.2489, 0.2931},
+      { 0.2399, 0.2525, 0.3234, 0.2402, 0.3376, 0.2882, 0.2839, 0.3096, 0.3115, 0.2583, 0.2841, 0.3977, 0.4146, 0.2275, 0.2472, 0.2775, 0.3178, 0.3475, 0.2735, 0.3020},
+      { 0.3445, 0.3576, 0.4162, 0.3918, 0.3889, 0.3699, 0.4052, 0.3750, 0.3913, 0.3482, 0.3977, 0.4696, 0.4675, 0.4357, 0.4581, 0.4511, 0.4689, 0.4791, 0.3871, 0.4489},
+      { 0.3297, 0.3801, 0.4287, 0.3724, 0.4104, 0.3975, 0.4045, 0.4025, 0.4309, 0.3780, 0.4146, 0.4675, 0.5272, 0.4270, 0.4612, 0.4557, 0.5080, 0.4965, 0.3902, 0.4723},
+      { 0.2344, 0.2473, 0.3210, 0.2799, 0.4676, 0.2886, 0.3514, 0.3166, 0.3290, 0.2189, 0.2275, 0.4357, 0.4270, 0.4438, 0.4460, 0.4147, 0.4069, 0.4410, 0.3352, 0.4142},
+      { 0.2446, 0.2644, 0.3415, 0.2932, 0.4252, 0.3054, 0.3651, 0.3291, 0.3448, 0.2416, 0.2472, 0.4581, 0.4612, 0.4460, 0.4673, 0.4407, 0.4213, 0.4543, 0.3539, 0.4226},
+      { 0.2524, 0.2701, 0.3482, 0.2959, 0.3725, 0.3099, 0.3593, 0.3145, 0.3384, 0.2630, 0.2775, 0.4511, 0.4557, 0.4147, 0.4407, 0.4333, 0.4267, 0.4535, 0.3583, 0.4072},
+      { 0.2806, 0.2900, 0.3586, 0.2892, 0.4477, 0.3460, 0.3763, 0.3659, 0.3742, 0.2984, 0.3178, 0.4689, 0.5080, 0.4069, 0.4213, 0.4267, 0.4895, 0.4810, 0.3663, 0.4520},
+      { 0.2798, 0.3050, 0.3798, 0.3203, 0.3894, 0.3600, 0.3993, 0.3553, 0.3802, 0.3325, 0.3475, 0.4791, 0.4965, 0.4410, 0.4543, 0.4535, 0.4810, 0.4916, 0.3863, 0.4629},
+      { 0.2435, 0.2586, 0.3201, 0.2682, 0.3256, 0.2942, 0.3273, 0.2973, 0.3151, 0.2489, 0.2735, 0.3871, 0.3902, 0.3352, 0.3539, 0.3583, 0.3663, 0.3863, 0.3413, 0.3636},
+      { 0.2732, 0.2626, 0.3506, 0.2763, 0.4628, 0.3355, 0.3764, 0.3497, 0.3377, 0.2931, 0.3020, 0.4489, 0.4723, 0.4142, 0.4226, 0.4072, 0.4520, 0.4629, 0.3636, 0.5255}},
+    {
+      { 0.1216, 0.1033, 0.3716, 0.3110, 0.2925, 0.2083, 0.2196, 0.2440, 0.2348, 0.1988, 0.1708, 0.2886, 0.2764, 0.1573, 0.1656, 0.1841, 0.2078, 0.2111, 0.1693, 0.2165},
+      { 0.1033, 0.1294, 0.3931, 0.3387, 0.2825, 0.1931, 0.2249, 0.2206, 0.2343, 0.1695, 0.1658, 0.3016, 0.2950, 0.1778, 0.1843, 0.1918, 0.2007, 0.2214, 0.1760, 0.1955},
+      { 0.3716, 0.3931, 0.2663, 0.2013, 0.3084, 0.2542, 0.2850, 0.2777, 0.2974, 0.2354, 0.2429, 0.3717, 0.3728, 0.2536, 0.2682, 0.2762, 0.2767, 0.3107, 0.2497, 0.2896},
+      { 0.3110, 0.3387, 0.2013, 0.1619, 0.2483, 0.1950, 0.2310, 0.2155, 0.2534, 0.1696, 0.1633, 0.3210, 0.2992, 0.1989, 0.2096, 0.2150, 0.2096, 0.2476, 0.1904, 0.2149},
+      { 0.2925, 0.2825, 0.3084, 0.2483, 0.3572, 0.3031, 0.3404, 0.2911, 0.3030, 0.2791, 0.2783, 0.4194, 0.4157, 0.2886, 0.3028, 0.3015, 0.3474, 0.3628, 0.2755, 0.3400},
+      { 0.2083, 0.1931, 0.2542, 0.1950, 0.3031, 0.3011, 0.3233, 0.2902, 0.2609, 0.2573, 0.2309, 0.3079, 0.3167, 0.3499, 0.3226, 0.2855, 0.3224, 0.3113, 0.2759, 0.3820},
+      { 0.2196, 0.2249, 0.2850, 0.2310, 0.3404, 0.3233, 0.3484, 0.3106, 0.2919, 0.2801, 0.2441, 0.3572, 0.3597, 0.3515, 0.3561, 0.3336, 0.3691, 0.3566, 0.3306, 0.3972},
+      { 0.2440, 0.2206, 0.2777, 0.2155, 0.2911, 0.2902, 0.3106, 0.3357, 0.2877, 0.2644, 0.2435, 0.3153, 0.3515, 0.2270, 0.2380, 0.2431, 0.2838, 0.2778, 0.2408, 0.2969},
+      { 0.2348, 0.2343, 0.2974, 0.2534, 0.3030, 0.2609, 0.2919, 0.2877, 0.2909, 0.2484, 0.2430, 0.3317, 0.3650, 0.2323, 0.2478, 0.2582, 0.2842, 0.2983, 0.2428, 0.2831},
+      { 0.1988, 0.1695, 0.2354, 0.1696, 0.2791, 0.2573, 0.2801, 0.2644, 0.2484, 0.2639, 0.2199, 0.3249, 0.3274, 0.2506, 0.2611, 0.2580, 0.3070, 0.3100, 0.2568, 0.3154},
+      { 0.1708, 0.1658, 0.2429, 0.1633, 0.2783, 0.2309, 0.2441, 0.2435, 0.2430, 0.2199, 0.2211, 0.3407, 0.3560, 0.1813, 0.2021, 0.2188, 0.2642, 0.2819, 0.2231, 0.2666},
+      { 0.2886, 0.3016, 0.3717, 0.3210, 0.4194, 0.3079, 0.3572, 0.3153, 0.3317, 0.3249, 0.3407, 0.4401, 0.4812, 0.3677, 0.3923, 0.4003, 0.4201, 0.4586, 0.3489, 0.4168},
+      { 0.2764, 0.2950, 0.3728, 0.2992, 0.4157, 0.3167, 0.3597, 0.3515, 0.3650, 0.3274, 0.3560, 0.4812, 0.5382, 0.3760, 0.4069, 0.4198, 0.4679, 0.4856, 0.3484, 0.4438},
+      { 0.1573, 0.1778, 0.2536, 0.1989, 0.2886, 0.3499, 0.3515, 0.2270, 0.2323, 0.2506, 0.1813, 0.3677, 0.3760, 0.4277, 0.4228, 0.3907, 0.3804, 0.4045, 0.3776, 0.4461},
+      { 0.1656, 0.1843, 0.2682, 0.2096, 0.3028, 0.3226, 0.3561, 0.2380, 0.2478, 0.2611, 0.2021, 0.3923, 0.4069, 0.4228, 0.4374, 0.4115, 0.3978, 0.4307, 0.3749, 0.4456},
+      { 0.1841, 0.1918, 0.2762, 0.2150, 0.3015, 0.2855, 0.3336, 0.2431, 0.2582, 0.2580, 0.2188, 0.4003, 0.4198, 0.3907, 0.4115, 0.4127, 0.3996, 0.4329, 0.3513, 0.4102},
+      { 0.2078, 0.2007, 0.2767, 0.2096, 0.3474, 0.3224, 0.3691, 0.2838, 0.2842, 0.3070, 0.2642, 0.4201, 0.4679, 0.3804, 0.3978, 0.3996, 0.4675, 0.4603, 0.3614, 0.4473},
+      { 0.2111, 0.2214, 0.3107, 0.2476, 0.3628, 0.3113, 0.3566, 0.2778, 0.2983, 0.3100, 0.2819, 0.4586, 0.4856, 0.4045, 0.4307, 0.4329, 0.4603, 0.4923, 0.3614, 0.4646},
+      { 0.1693, 0.1760, 0.2497, 0.1904, 0.2755, 0.2759, 0.3306, 0.2408, 0.2428, 0.2568, 0.2231, 0.3489, 0.3484, 0.3776, 0.3749, 0.3513, 0.3614, 0.3614, 0.3404, 0.3913},
+      { 0.2165, 0.1955, 0.2896, 0.2149, 0.3400, 0.3820, 0.3972, 0.2969, 0.2831, 0.3154, 0.2666, 0.4168, 0.4438, 0.4461, 0.4456, 0.4102, 0.4473, 0.4646, 0.3913, 0.5640}},
+    {
+      { 0.1615, 0.1420, 0.4104, 0.3542, 0.3436, 0.2524, 0.2377, 0.2778, 0.2673, 0.2340, 0.2217, 0.3274, 0.3418, 0.2106, 0.2266, 0.2344, 0.2559, 0.2564, 0.2128, 0.2495},
+      { 0.1420, 0.1723, 0.4500, 0.3995, 0.3385, 0.2542, 0.2670, 0.2633, 0.2786, 0.2088, 0.2110, 0.3488, 0.3637, 0.2592, 0.2660, 0.2634, 0.2675, 0.2873, 0.2251, 0.2617},
+      { 0.4104, 0.4500, 0.3060, 0.2377, 0.3453, 0.3037, 0.3172, 0.3078, 0.3454, 0.2745, 0.2751, 0.4209, 0.4287, 0.3244, 0.3361, 0.3335, 0.3293, 0.3694, 0.2903, 0.3290},
+      { 0.3542, 0.3995, 0.2377, 0.2082, 0.2902, 0.2543, 0.2761, 0.2564, 0.2940, 0.2103, 0.2028, 0.3805, 0.3590, 0.2825, 0.2931, 0.2801, 0.2643, 0.3098, 0.2371, 0.2589},
+      { 0.3436, 0.3385, 0.3453, 0.2902, 0.4243, 0.3675, 0.3691, 0.3359, 0.3423, 0.3143, 0.2989, 0.4615, 0.4480, 0.3514, 0.3732, 0.3615, 0.3953, 0.4077, 0.3191, 0.3824},
+      { 0.2524, 0.2542, 0.3037, 0.2543, 0.3675, 0.3325, 0.3420, 0.3343, 0.3134, 0.2868, 0.2767, 0.3698, 0.3894, 0.3515, 0.3639, 0.3428, 0.3740, 0.3818, 0.3164, 0.3870},
+      { 0.2377, 0.2670, 0.3172, 0.2761, 0.3691, 0.3420, 0.3977, 0.3486, 0.3211, 0.2712, 0.2793, 0.3753, 0.3744, 0.4536, 0.4388, 0.3866, 0.3973, 0.3999, 0.3485, 0.4462},
+      { 0.2778, 0.2633, 0.3078, 0.2564, 0.3359, 0.3343, 0.3486, 0.3812, 0.3236, 0.2974, 0.2823, 0.3667, 0.3710, 0.2898, 0.3008, 0.2947, 0.3428, 0.3355, 0.2825, 0.3466},
+      { 0.2673, 0.2786, 0.3454, 0.2940, 0.3423, 0.3134, 0.3211, 0.3236, 0.3317, 0.2796, 0.2802, 0.3790, 0.4171, 0.3023, 0.3144, 0.3171, 0.3431, 0.3549, 0.2788, 0.3272},
+      { 0.2340, 0.2088, 0.2745, 0.2103, 0.3143, 0.2868, 0.2712, 0.2974, 0.2796, 0.2904, 0.2535, 0.3752, 0.3923, 0.2716, 0.2981, 0.3090, 0.3509, 0.3732, 0.2835, 0.3404},
+      { 0.2217, 0.2110, 0.2751, 0.2028, 0.2989, 0.2767, 0.2793, 0.2823, 0.2802, 0.2535, 0.2618, 0.3737, 0.3967, 0.2547, 0.2762, 0.2786, 0.3268, 0.3271, 0.2676, 0.3171},
+      { 0.3274, 0.3488, 0.4209, 0.3805, 0.4615, 0.3698, 0.3753, 0.3667, 0.3790, 0.3752, 0.3737, 0.4766, 0.5123, 0.4314, 0.4542, 0.4597, 0.4692, 0.5054, 0.3949, 0.4556},
+      { 0.3418, 0.3637, 0.4287, 0.3590, 0.4480, 0.3894, 0.3744, 0.3710, 0.4171, 0.3923, 0.3967, 0.5123, 0.5686, 0.4307, 0.4653, 0.4768, 0.4998, 0.5361, 0.3974, 0.4665},
+      { 0.2106, 0.2592, 0.3244, 0.2825, 0.3514, 0.3515, 0.4536, 0.2898, 0.3023, 0.2716, 0.2547, 0.4314, 0.4307, 0.5024, 0.4958, 0.4591, 0.4377, 0.4659, 0.4092, 0.4919},
+      { 0.2266, 0.2660, 0.3361, 0.2931, 0.3732, 0.3639, 0.4388, 0.3008, 0.3144, 0.2981, 0.2762, 0.4542, 0.4653, 0.4958, 0.5127, 0.4802, 0.4578, 0.4884, 0.4271, 0.4989},
+      { 0.2344, 0.2634, 0.3335, 0.2801, 0.3615, 0.3428, 0.3866, 0.2947, 0.3171, 0.3090, 0.2786, 0.4597, 0.4768, 0.4591, 0.4802, 0.4787, 0.4622, 0.4958, 0.4085, 0.4591},
+      { 0.2559, 0.2675, 0.3293, 0.2643, 0.3953, 0.3740, 0.3973, 0.3428, 0.3431, 0.3509, 0.3268, 0.4692, 0.4998, 0.4377, 0.4578, 0.4622, 0.5243, 0.5048, 0.4118, 0.4861},
+      { 0.2564, 0.2873, 0.3694, 0.3098, 0.4077, 0.3818, 0.3999, 0.3355, 0.3549, 0.3732, 0.3271, 0.5054, 0.5361, 0.4659, 0.4884, 0.4958, 0.5048, 0.5465, 0.4245, 0.4992},
+      { 0.2128, 0.2251, 0.2903, 0.2371, 0.3191, 0.3164, 0.3485, 0.2825, 0.2788, 0.2835, 0.2676, 0.3949, 0.3974, 0.4092, 0.4271, 0.4085, 0.4118, 0.4245, 0.3798, 0.4259},
+      { 0.2495, 0.2617, 0.3290, 0.2589, 0.3824, 0.3870, 0.4462, 0.3466, 0.3272, 0.3404, 0.3171, 0.4556, 0.4665, 0.4919, 0.4989, 0.4591, 0.4861, 0.4992, 0.4259, 0.5744}},
+    {
+      { 0.1580, 0.1317, 0.3869, 0.3349, 0.3023, 0.2477, 0.2454, 0.2415, 0.2608, 0.1916, 0.1958, 0.2824, 0.2504, 0.1657, 0.1706, 0.1891, 0.2214, 0.2085, 0.1763, 0.2240},
+      { 0.1317, 0.1566, 0.4004, 0.3483, 0.2928, 0.2296, 0.2181, 0.2258, 0.2529, 0.1611, 0.1919, 0.2889, 0.3037, 0.1416, 0.1659, 0.1852, 0.1983, 0.2117, 0.1785, 0.1745},
+      { 0.3869, 0.4004, 0.2831, 0.2183, 0.3072, 0.2835, 0.2848, 0.2814, 0.3112, 0.2473, 0.2656, 0.3591, 0.3626, 0.2392, 0.2523, 0.2780, 0.2824, 0.3127, 0.2590, 0.2810},
+      { 0.3349, 0.3483, 0.2183, 0.1841, 0.2574, 0.2227, 0.2331, 0.2362, 0.2693, 0.1817, 0.1897, 0.3139, 0.2920, 0.1760, 0.1932, 0.2121, 0.2074, 0.2405, 0.1999, 0.1964},
+      { 0.3023, 0.2928, 0.3072, 0.2574, 0.3800, 0.3365, 0.3589, 0.3405, 0.3055, 0.2533, 0.2956, 0.3908, 0.3861, 0.3166, 0.3207, 0.3156, 0.3404, 0.3626, 0.2895, 0.3395},
+      { 0.2477, 0.2296, 0.2835, 0.2227, 0.3365, 0.2740, 0.2878, 0.3234, 0.2772, 0.2299, 0.2297, 0.3124, 0.3137, 0.2270, 0.2410, 0.2526, 0.2895, 0.2906, 0.2499, 0.2933},
+      { 0.2454, 0.2181, 0.2848, 0.2331, 0.3589, 0.2878, 0.3186, 0.3765, 0.2855, 0.2134, 0.2422, 0.3376, 0.3366, 0.2898, 0.2934, 0.2931, 0.3154, 0.3317, 0.2700, 0.3556},
+      { 0.2415, 0.2258, 0.2814, 0.2362, 0.3405, 0.3234, 0.3765, 0.3802, 0.3123, 0.2659, 0.3012, 0.3374, 0.3156, 0.3936, 0.3560, 0.3215, 0.3727, 0.3242, 0.2931, 0.3708},
+      { 0.2608, 0.2529, 0.3112, 0.2693, 0.3055, 0.2772, 0.2855, 0.3123, 0.3006, 0.2289, 0.2620, 0.3276, 0.3507, 0.2226, 0.2437, 0.2559, 0.2878, 0.2913, 0.2418, 0.2581},
+      { 0.1916, 0.1611, 0.2473, 0.1817, 0.2533, 0.2299, 0.2134, 0.2659, 0.2289, 0.1998, 0.2048, 0.2593, 0.2825, 0.1423, 0.1534, 0.1771, 0.2281, 0.2319, 0.1946, 0.2347},
+      { 0.1958, 0.1919, 0.2656, 0.1897, 0.2956, 0.2297, 0.2422, 0.3012, 0.2620, 0.2048, 0.2448, 0.3378, 0.3676, 0.1636, 0.1809, 0.2107, 0.2628, 0.2741, 0.2163, 0.2568},
+      { 0.2824, 0.2889, 0.3591, 0.3139, 0.3908, 0.3124, 0.3376, 0.3374, 0.3276, 0.2593, 0.3378, 0.4122, 0.4623, 0.3322, 0.3592, 0.3740, 0.3971, 0.4322, 0.3217, 0.3880},
+      { 0.2504, 0.3037, 0.3626, 0.2920, 0.3861, 0.3137, 0.3366, 0.3156, 0.3507, 0.2825, 0.3676, 0.4623, 0.4931, 0.3391, 0.3687, 0.3798, 0.4324, 0.4540, 0.3150, 0.3966},
+      { 0.1657, 0.1416, 0.2392, 0.1760, 0.3166, 0.2270, 0.2898, 0.3936, 0.2226, 0.1423, 0.1636, 0.3322, 0.3391, 0.3567, 0.3653, 0.3413, 0.3258, 0.3615, 0.2459, 0.3770},
+      { 0.1706, 0.1659, 0.2523, 0.1932, 0.3207, 0.2410, 0.2934, 0.3560, 0.2437, 0.1534, 0.1809, 0.3592, 0.3687, 0.3653, 0.3838, 0.3625, 0.3541, 0.3864, 0.2650, 0.3732},
+      { 0.1891, 0.1852, 0.2780, 0.2121, 0.3156, 0.2526, 0.2931, 0.3215, 0.2559, 0.1771, 0.2107, 0.3740, 0.3798, 0.3413, 0.3625, 0.3693, 0.3590, 0.3934, 0.2808, 0.3576},
+      { 0.2214, 0.1983, 0.2824, 0.2074, 0.3404, 0.2895, 0.3154, 0.3727, 0.2878, 0.2281, 0.2628, 0.3971, 0.4324, 0.3258, 0.3541, 0.3590, 0.4089, 0.4171, 0.3000, 0.3902},
+      { 0.2085, 0.2117, 0.3127, 0.2405, 0.3626, 0.2906, 0.3317, 0.3242, 0.2913, 0.2319, 0.2741, 0.4322, 0.4540, 0.3615, 0.3864, 0.3934, 0.4171, 0.4525, 0.3179, 0.4114},
+      { 0.1763, 0.1785, 0.2590, 0.1999, 0.2895, 0.2499, 0.2700, 0.2931, 0.2418, 0.1946, 0.2163, 0.3217, 0.3150, 0.2459, 0.2650, 0.2808, 0.3000, 0.3179, 0.2699, 0.3003},
+      { 0.2240, 0.1745, 0.2810, 0.1964, 0.3395, 0.2933, 0.3556, 0.3708, 0.2581, 0.2347, 0.2568, 0.3880, 0.3966, 0.3770, 0.3732, 0.3576, 0.3902, 0.4114, 0.3003, 0.5113}},
+    {
+      { 0.1639, 0.1530, 0.4082, 0.3660, 0.3179, 0.2510, 0.2397, 0.2693, 0.2559, 0.2094, 0.2170, 0.3044, 0.2704, 0.1662, 0.1707, 0.1873, 0.2164, 0.2088, 0.1904, 0.2090},
+      { 0.1530, 0.1773, 0.4414, 0.3934, 0.3180, 0.2498, 0.2654, 0.2587, 0.2600, 0.1868, 0.2169, 0.3134, 0.3066, 0.2233, 0.2253, 0.2277, 0.2363, 0.2461, 0.2161, 0.2293},
+      { 0.4082, 0.4414, 0.2863, 0.2316, 0.3252, 0.3030, 0.3134, 0.3043, 0.3188, 0.2685, 0.2771, 0.3776, 0.3930, 0.2763, 0.2916, 0.2970, 0.3017, 0.3242, 0.2677, 0.2940},
+      { 0.3660, 0.3934, 0.2316, 0.2041, 0.2674, 0.2516, 0.2592, 0.2527, 0.2689, 0.1987, 0.2061, 0.3455, 0.3252, 0.2284, 0.2367, 0.2373, 0.2391, 0.2607, 0.2140, 0.2180},
+      { 0.3179, 0.3180, 0.3252, 0.2674, 0.4227, 0.3475, 0.3601, 0.3197, 0.3316, 0.2726, 0.2913, 0.4223, 0.4170, 0.3290, 0.3376, 0.3298, 0.3718, 0.3773, 0.2848, 0.3469},
+      { 0.2510, 0.2498, 0.3030, 0.2516, 0.3475, 0.2830, 0.2883, 0.2945, 0.3144, 0.2494, 0.2448, 0.3228, 0.3320, 0.2323, 0.2407, 0.2506, 0.2894, 0.2978, 0.2435, 0.2811},
+      { 0.2397, 0.2654, 0.3134, 0.2592, 0.3601, 0.2883, 0.3287, 0.3078, 0.3634, 0.2412, 0.2397, 0.3494, 0.3597, 0.3023, 0.3076, 0.3030, 0.3272, 0.3317, 0.2644, 0.3210},
+      { 0.2693, 0.2587, 0.3043, 0.2527, 0.3197, 0.2945, 0.3078, 0.3375, 0.3273, 0.2619, 0.2632, 0.3249, 0.3506, 0.2226, 0.2286, 0.2393, 0.2883, 0.2812, 0.2370, 0.2584},
+      { 0.2559, 0.2600, 0.3188, 0.2689, 0.3316, 0.3144, 0.3634, 0.3273, 0.3176, 0.2587, 0.3027, 0.3531, 0.3725, 0.3930, 0.3632, 0.3308, 0.3572, 0.3356, 0.3063, 0.3904},
+      { 0.2094, 0.1868, 0.2685, 0.1987, 0.2726, 0.2494, 0.2412, 0.2619, 0.2587, 0.2303, 0.2255, 0.3088, 0.3213, 0.1681, 0.1893, 0.2190, 0.2635, 0.2708, 0.2235, 0.2669},
+      { 0.2170, 0.2169, 0.2771, 0.2061, 0.2913, 0.2448, 0.2397, 0.2632, 0.3027, 0.2255, 0.2385, 0.3666, 0.3725, 0.1712, 0.1944, 0.2226, 0.2740, 0.2866, 0.2219, 0.2528},
+      { 0.3044, 0.3134, 0.3776, 0.3455, 0.4223, 0.3228, 0.3494, 0.3249, 0.3531, 0.3088, 0.3666, 0.4468, 0.4721, 0.3590, 0.3861, 0.3964, 0.4256, 0.4566, 0.3303, 0.4128},
+      { 0.2704, 0.3066, 0.3930, 0.3252, 0.4170, 0.3320, 0.3597, 0.3506, 0.3725, 0.3213, 0.3725, 0.4721, 0.5109, 0.3599, 0.3941, 0.4179, 0.4520, 0.4903, 0.3251, 0.4509},
+      { 0.1662, 0.2233, 0.2763, 0.2284, 0.3290, 0.2323, 0.3023, 0.2226, 0.3930, 0.1681, 0.1712, 0.3590, 0.3599, 0.3760, 0.3826, 0.3600, 0.3702, 0.3746, 0.2505, 0.3643},
+      { 0.1707, 0.2253, 0.2916, 0.2367, 0.3376, 0.2407, 0.3076, 0.2286, 0.3632, 0.1893, 0.1944, 0.3861, 0.3941, 0.3826, 0.4021, 0.3819, 0.3840, 0.3992, 0.2705, 0.3718},
+      { 0.1873, 0.2277, 0.2970, 0.2373, 0.3298, 0.2506, 0.3030, 0.2393, 0.3308, 0.2190, 0.2226, 0.3964, 0.4179, 0.3600, 0.3819, 0.3872, 0.3803, 0.4104, 0.2866, 0.3685},
+      { 0.2164, 0.2363, 0.3017, 0.2391, 0.3718, 0.2894, 0.3272, 0.2883, 0.3572, 0.2635, 0.2740, 0.4256, 0.4520, 0.3702, 0.3840, 0.3803, 0.4370, 0.4438, 0.3059, 0.4073},
+      { 0.2088, 0.2461, 0.3242, 0.2607, 0.3773, 0.2978, 0.3317, 0.2812, 0.3356, 0.2708, 0.2866, 0.4566, 0.4903, 0.3746, 0.3992, 0.4104, 0.4438, 0.4744, 0.3180, 0.4167},
+      { 0.1904, 0.2161, 0.2677, 0.2140, 0.2848, 0.2435, 0.2644, 0.2370, 0.3063, 0.2235, 0.2219, 0.3303, 0.3251, 0.2505, 0.2705, 0.2866, 0.3059, 0.3180, 0.2728, 0.2892},
+      { 0.2090, 0.2293, 0.2940, 0.2180, 0.3469, 0.2811, 0.3210, 0.2584, 0.3904, 0.2669, 0.2528, 0.4128, 0.4509, 0.3643, 0.3718, 0.3685, 0.4073, 0.4167, 0.2892, 0.5009}},
+    {
+      { 0.0774, 0.0659, 0.3443, 0.2918, 0.2614, 0.1924, 0.1791, 0.2052, 0.1992, 0.1155, 0.1624, 0.2468, 0.2250, 0.0829, 0.0966, 0.1227, 0.1513, 0.1552, 0.1302, 0.1759},
+      { 0.0659, 0.0959, 0.3530, 0.2885, 0.2429, 0.1807, 0.1813, 0.1784, 0.2036, 0.1013, 0.1590, 0.2682, 0.2682, 0.1112, 0.1330, 0.1543, 0.1681, 0.1833, 0.1532, 0.1807},
+      { 0.3443, 0.3530, 0.2460, 0.1838, 0.2708, 0.2436, 0.2435, 0.2614, 0.2749, 0.2046, 0.2335, 0.3401, 0.3458, 0.1904, 0.2049, 0.2343, 0.2492, 0.2698, 0.2220, 0.2586},
+      { 0.2918, 0.2885, 0.1838, 0.1306, 0.2084, 0.1739, 0.1742, 0.2138, 0.2086, 0.1454, 0.1483, 0.2784, 0.2625, 0.1266, 0.1391, 0.1632, 0.1579, 0.2036, 0.1664, 0.1692},
+      { 0.2614, 0.2429, 0.2708, 0.2084, 0.3153, 0.3026, 0.2903, 0.2521, 0.2456, 0.2070, 0.2509, 0.3667, 0.3550, 0.2189, 0.2198, 0.2493, 0.2741, 0.3008, 0.2500, 0.3031},
+      { 0.1924, 0.1807, 0.2436, 0.1739, 0.3026, 0.3036, 0.2975, 0.2633, 0.2516, 0.2449, 0.2351, 0.3070, 0.3070, 0.2506, 0.2560, 0.2570, 0.3022, 0.3040, 0.2812, 0.3382},
+      { 0.1791, 0.1813, 0.2435, 0.1742, 0.2903, 0.2975, 0.2979, 0.2458, 0.2455, 0.2752, 0.2302, 0.3306, 0.3422, 0.2716, 0.2887, 0.2930, 0.3287, 0.3263, 0.3206, 0.3566},
+      { 0.2052, 0.1784, 0.2614, 0.2138, 0.2521, 0.2633, 0.2458, 0.2721, 0.2438, 0.2380, 0.2234, 0.2605, 0.2994, 0.1423, 0.1490, 0.1744, 0.2264, 0.2168, 0.2021, 0.2530},
+      { 0.1992, 0.2036, 0.2749, 0.2086, 0.2456, 0.2516, 0.2455, 0.2438, 0.2430, 0.1996, 0.2243, 0.3045, 0.3425, 0.1681, 0.1845, 0.2216, 0.2425, 0.2628, 0.2218, 0.2594},
+      { 0.1155, 0.1013, 0.2046, 0.1454, 0.2070, 0.2449, 0.2752, 0.2380, 0.1996, 0.1996, 0.2016, 0.2539, 0.2588, 0.3168, 0.2903, 0.2537, 0.2982, 0.2626, 0.2513, 0.3249},
+      { 0.1624, 0.1590, 0.2335, 0.1483, 0.2509, 0.2351, 0.2302, 0.2234, 0.2243, 0.2016, 0.2054, 0.3100, 0.3358, 0.1545, 0.1615, 0.1994, 0.2439, 0.2533, 0.2139, 0.2683},
+      { 0.2468, 0.2682, 0.3401, 0.2784, 0.3667, 0.3070, 0.3306, 0.2605, 0.3045, 0.2539, 0.3100, 0.4232, 0.4610, 0.3469, 0.3603, 0.3854, 0.3962, 0.4447, 0.3467, 0.4019},
+      { 0.2250, 0.2682, 0.3458, 0.2625, 0.3550, 0.3070, 0.3422, 0.2994, 0.3425, 0.2588, 0.3358, 0.4610, 0.5251, 0.3427, 0.3685, 0.3920, 0.4360, 0.4741, 0.3479, 0.4065},
+      { 0.0829, 0.1112, 0.1904, 0.1266, 0.2189, 0.2506, 0.2716, 0.1423, 0.1681, 0.3168, 0.1545, 0.3469, 0.3427, 0.3937, 0.3989, 0.3780, 0.3538, 0.3963, 0.3848, 0.4184},
+      { 0.0966, 0.1330, 0.2049, 0.1391, 0.2198, 0.2560, 0.2887, 0.1490, 0.1845, 0.2903, 0.1615, 0.3603, 0.3685, 0.3989, 0.4161, 0.3940, 0.3770, 0.4105, 0.3857, 0.4210},
+      { 0.1227, 0.1543, 0.2343, 0.1632, 0.2493, 0.2570, 0.2930, 0.1744, 0.2216, 0.2537, 0.1994, 0.3854, 0.3920, 0.3780, 0.3940, 0.3948, 0.3866, 0.4184, 0.3664, 0.3943},
+      { 0.1513, 0.1681, 0.2492, 0.1579, 0.2741, 0.3022, 0.3287, 0.2264, 0.2425, 0.2982, 0.2439, 0.3962, 0.4360, 0.3538, 0.3770, 0.3866, 0.4541, 0.4394, 0.3770, 0.4441},
+      { 0.1552, 0.1833, 0.2698, 0.2036, 0.3008, 0.3040, 0.3263, 0.2168, 0.2628, 0.2626, 0.2533, 0.4447, 0.4741, 0.3963, 0.4105, 0.4184, 0.4394, 0.4761, 0.3734, 0.4377},
+      { 0.1302, 0.1532, 0.2220, 0.1664, 0.2500, 0.2812, 0.3206, 0.2021, 0.2218, 0.2513, 0.2139, 0.3467, 0.3479, 0.3848, 0.3857, 0.3664, 0.3770, 0.3734, 0.3736, 0.4084},
+      { 0.1759, 0.1807, 0.2586, 0.1692, 0.3031, 0.3382, 0.3566, 0.2530, 0.2594, 0.3249, 0.2683, 0.4019, 0.4065, 0.4184, 0.4210, 0.3943, 0.4441, 0.4377, 0.4084, 0.5770}},
+    {
+      { 0.1065, 0.0841, 0.3578, 0.3038, 0.2660, 0.1978, 0.1739, 0.2224, 0.2218, 0.1608, 0.1688, 0.2589, 0.2374, 0.0782, 0.0929, 0.1229, 0.1422, 0.1633, 0.1235, 0.1305},
+      { 0.0841, 0.0860, 0.3560, 0.2982, 0.2477, 0.1887, 0.1765, 0.2061, 0.1990, 0.1416, 0.1709, 0.2575, 0.2524, 0.1089, 0.1140, 0.1319, 0.1353, 0.1757, 0.1311, 0.1294},
+      { 0.3578, 0.3560, 0.2389, 0.1746, 0.2795, 0.2421, 0.2527, 0.2724, 0.2760, 0.2239, 0.2516, 0.3480, 0.3630, 0.1929, 0.2139, 0.2385, 0.2428, 0.2837, 0.2132, 0.2506},
+      { 0.3038, 0.2982, 0.1746, 0.1265, 0.2062, 0.1772, 0.1822, 0.2232, 0.2134, 0.1598, 0.1710, 0.2975, 0.2856, 0.1508, 0.1623, 0.1692, 0.1679, 0.2186, 0.1486, 0.1649},
+      { 0.2660, 0.2477, 0.2795, 0.2062, 0.3433, 0.2839, 0.2886, 0.2864, 0.2711, 0.2249, 0.2725, 0.3721, 0.3721, 0.2275, 0.2424, 0.2566, 0.2813, 0.3222, 0.2306, 0.3009},
+      { 0.1978, 0.1887, 0.2421, 0.1772, 0.2839, 0.2379, 0.2447, 0.2523, 0.2469, 0.2069, 0.2712, 0.2809, 0.3091, 0.1813, 0.2010, 0.2135, 0.2477, 0.2626, 0.2116, 0.2518},
+      { 0.1739, 0.1765, 0.2527, 0.1822, 0.2886, 0.2447, 0.2645, 0.2614, 0.2491, 0.2058, 0.2920, 0.3190, 0.3195, 0.2547, 0.2677, 0.2616, 0.2819, 0.3015, 0.2514, 0.2998},
+      { 0.2224, 0.2061, 0.2724, 0.2232, 0.2864, 0.2523, 0.2614, 0.2912, 0.2808, 0.2365, 0.2562, 0.3028, 0.3305, 0.1636, 0.1747, 0.1977, 0.2459, 0.2509, 0.2046, 0.2515},
+      { 0.2218, 0.1990, 0.2760, 0.2134, 0.2711, 0.2469, 0.2491, 0.2808, 0.2709, 0.2125, 0.2618, 0.3065, 0.3382, 0.1712, 0.1962, 0.2146, 0.2380, 0.2580, 0.2128, 0.2273},
+      { 0.1608, 0.1416, 0.2239, 0.1598, 0.2249, 0.2069, 0.2058, 0.2365, 0.2125, 0.1929, 0.2103, 0.2711, 0.2898, 0.1545, 0.1659, 0.1833, 0.2426, 0.2368, 0.1831, 0.2366},
+      { 0.1688, 0.1709, 0.2516, 0.1710, 0.2725, 0.2712, 0.2920, 0.2562, 0.2618, 0.2103, 0.2508, 0.3492, 0.3673, 0.3221, 0.3079, 0.2799, 0.3212, 0.3167, 0.2667, 0.3390},
+      { 0.2589, 0.2575, 0.3480, 0.2975, 0.3721, 0.2809, 0.3190, 0.3028, 0.3065, 0.2711, 0.3492, 0.4162, 0.4413, 0.3248, 0.3613, 0.3815, 0.3980, 0.4292, 0.3000, 0.3690},
+      { 0.2374, 0.2524, 0.3630, 0.2856, 0.3721, 0.3091, 0.3195, 0.3305, 0.3382, 0.2898, 0.3673, 0.4413, 0.4930, 0.3252, 0.3595, 0.3946, 0.4222, 0.4699, 0.3096, 0.3657},
+      { 0.0782, 0.1089, 0.1929, 0.1508, 0.2275, 0.1813, 0.2547, 0.1636, 0.1712, 0.1545, 0.3221, 0.3248, 0.3252, 0.3806, 0.3752, 0.3505, 0.3206, 0.3591, 0.2737, 0.3721},
+      { 0.0929, 0.1140, 0.2139, 0.1623, 0.2424, 0.2010, 0.2677, 0.1747, 0.1962, 0.1659, 0.3079, 0.3613, 0.3595, 0.3752, 0.3941, 0.3711, 0.3499, 0.3777, 0.2840, 0.3698},
+      { 0.1229, 0.1319, 0.2385, 0.1692, 0.2566, 0.2135, 0.2616, 0.1977, 0.2146, 0.1833, 0.2799, 0.3815, 0.3946, 0.3505, 0.3711, 0.3805, 0.3565, 0.4062, 0.2757, 0.3673},
+      { 0.1422, 0.1353, 0.2428, 0.1679, 0.2813, 0.2477, 0.2819, 0.2459, 0.2380, 0.2426, 0.3212, 0.3980, 0.4222, 0.3206, 0.3499, 0.3565, 0.4056, 0.4248, 0.2925, 0.3763},
+      { 0.1633, 0.1757, 0.2837, 0.2186, 0.3222, 0.2626, 0.3015, 0.2509, 0.2580, 0.2368, 0.3167, 0.4292, 0.4699, 0.3591, 0.3777, 0.4062, 0.4248, 0.4594, 0.3012, 0.4108},
+      { 0.1235, 0.1311, 0.2132, 0.1486, 0.2306, 0.2116, 0.2514, 0.2046, 0.2128, 0.1831, 0.2667, 0.3000, 0.3096, 0.2737, 0.2840, 0.2757, 0.2925, 0.3012, 0.2491, 0.2997},
+      { 0.1305, 0.1294, 0.2506, 0.1649, 0.3009, 0.2518, 0.2998, 0.2515, 0.2273, 0.2366, 0.3390, 0.3690, 0.3657, 0.3721, 0.3698, 0.3673, 0.3763, 0.4108, 0.2997, 0.5119}},
+    {
+      { 0.3044, 0.2804, 0.5125, 0.4397, 0.4246, 0.3689, 0.3562, 0.3746, 0.3764, 0.3336, 0.3288, 0.3708, 0.4109, 0.2791, 0.3015, 0.3238, 0.3458, 0.3401, 0.3018, 0.3322},
+      { 0.2804, 0.2893, 0.5213, 0.4628, 0.4148, 0.3574, 0.3696, 0.3518, 0.3692, 0.3134, 0.3087, 0.3914, 0.4571, 0.3219, 0.3470, 0.3541, 0.3687, 0.3724, 0.3164, 0.3344},
+      { 0.5125, 0.5213, 0.3774, 0.3160, 0.4099, 0.4033, 0.4160, 0.4055, 0.4229, 0.3684, 0.3631, 0.4393, 0.5016, 0.3721, 0.4022, 0.4132, 0.4145, 0.4349, 0.3693, 0.4002},
+      { 0.4397, 0.4628, 0.3160, 0.2924, 0.3623, 0.3536, 0.3660, 0.3571, 0.3716, 0.3185, 0.3004, 0.4050, 0.4473, 0.3435, 0.3680, 0.3754, 0.3605, 0.3956, 0.3287, 0.3512},
+      { 0.4246, 0.4148, 0.4099, 0.3623, 0.4975, 0.4538, 0.4625, 0.4175, 0.4155, 0.3705, 0.3800, 0.4802, 0.5070, 0.4357, 0.4462, 0.4502, 0.4635, 0.4733, 0.3972, 0.4499},
+      { 0.3689, 0.3574, 0.4033, 0.3536, 0.4538, 0.4000, 0.4083, 0.4064, 0.4085, 0.3738, 0.3616, 0.4251, 0.4850, 0.3677, 0.3958, 0.3972, 0.4299, 0.4493, 0.3656, 0.4202},
+      { 0.3562, 0.3696, 0.4160, 0.3660, 0.4625, 0.4083, 0.4323, 0.4226, 0.4144, 0.3642, 0.3582, 0.4710, 0.4985, 0.4314, 0.4527, 0.4498, 0.4616, 0.4861, 0.3959, 0.4430},
+      { 0.3746, 0.3518, 0.4055, 0.3571, 0.4175, 0.4064, 0.4226, 0.4798, 0.4057, 0.3673, 0.3677, 0.4114, 0.4626, 0.3322, 0.3565, 0.3666, 0.4153, 0.4188, 0.3370, 0.3895},
+      { 0.3764, 0.3692, 0.4229, 0.3716, 0.4155, 0.4085, 0.4144, 0.4057, 0.4287, 0.3644, 0.3712, 0.4357, 0.5074, 0.3590, 0.3848, 0.4065, 0.4244, 0.4374, 0.3649, 0.3971},
+      { 0.3336, 0.3134, 0.3684, 0.3185, 0.3705, 0.3738, 0.3642, 0.3673, 0.3644, 0.3732, 0.3473, 0.3950, 0.4648, 0.3469, 0.3752, 0.3934, 0.4224, 0.4320, 0.3592, 0.3890},
+      { 0.3288, 0.3087, 0.3631, 0.3004, 0.3800, 0.3616, 0.3582, 0.3677, 0.3712, 0.3473, 0.3512, 0.4533, 0.4932, 0.3248, 0.3509, 0.3792, 0.4127, 0.4260, 0.3418, 0.3949},
+      { 0.3708, 0.3914, 0.4393, 0.4050, 0.4802, 0.4251, 0.4710, 0.4114, 0.4357, 0.3950, 0.4533, 0.5019, 0.5251, 0.5555, 0.5459, 0.5207, 0.5396, 0.5395, 0.4606, 0.5402},
+      { 0.4109, 0.4571, 0.5016, 0.4473, 0.5070, 0.4850, 0.4985, 0.4626, 0.5074, 0.4648, 0.4932, 0.5251, 0.5817, 0.5181, 0.5395, 0.5477, 0.5769, 0.5873, 0.4915, 0.5669},
+      { 0.2791, 0.3219, 0.3721, 0.3435, 0.4357, 0.3677, 0.4314, 0.3322, 0.3590, 0.3469, 0.3248, 0.5555, 0.5181, 0.5368, 0.5447, 0.5174, 0.5009, 0.5485, 0.4486, 0.5051},
+      { 0.3015, 0.3470, 0.4022, 0.3680, 0.4462, 0.3958, 0.4527, 0.3565, 0.3848, 0.3752, 0.3509, 0.5459, 0.5395, 0.5447, 0.5755, 0.5509, 0.5279, 0.5577, 0.4712, 0.5295},
+      { 0.3238, 0.3541, 0.4132, 0.3754, 0.4502, 0.3972, 0.4498, 0.3666, 0.4065, 0.3934, 0.3792, 0.5207, 0.5477, 0.5174, 0.5509, 0.5433, 0.5276, 0.5505, 0.4776, 0.5049},
+      { 0.3458, 0.3687, 0.4145, 0.3605, 0.4635, 0.4299, 0.4616, 0.4153, 0.4244, 0.4224, 0.4127, 0.5396, 0.5769, 0.5009, 0.5279, 0.5276, 0.5807, 0.5757, 0.4779, 0.5246},
+      { 0.3401, 0.3724, 0.4349, 0.3956, 0.4733, 0.4493, 0.4861, 0.4188, 0.4374, 0.4320, 0.4260, 0.5395, 0.5873, 0.5485, 0.5577, 0.5505, 0.5757, 0.5821, 0.4986, 0.5676},
+      { 0.3018, 0.3164, 0.3693, 0.3287, 0.3972, 0.3656, 0.3959, 0.3370, 0.3649, 0.3592, 0.3418, 0.4606, 0.4915, 0.4486, 0.4712, 0.4776, 0.4779, 0.4986, 0.4320, 0.4623},
+      { 0.3322, 0.3344, 0.4002, 0.3512, 0.4499, 0.4202, 0.4430, 0.3895, 0.3971, 0.3890, 0.3949, 0.5402, 0.5669, 0.5051, 0.5295, 0.5049, 0.5246, 0.5676, 0.4623, 0.6100}},
+    {
+      { 0.2768, 0.2768, 0.5012, 0.4206, 0.4218, 0.3679, 0.3581, 0.3594, 0.3874, 0.3350, 0.3554, 0.4286, 0.3499, 0.2836, 0.3074, 0.3271, 0.3584, 0.3658, 0.3037, 0.3585},
+      { 0.2768, 0.2770, 0.5082, 0.4463, 0.4020, 0.3525, 0.3588, 0.3477, 0.3538, 0.3046, 0.3294, 0.4259, 0.3982, 0.3114, 0.3412, 0.3564, 0.3797, 0.3806, 0.3133, 0.3563},
+      { 0.5012, 0.5082, 0.3757, 0.3098, 0.4160, 0.4165, 0.4200, 0.4123, 0.4230, 0.3772, 0.3841, 0.4916, 0.4501, 0.3685, 0.3986, 0.4147, 0.4405, 0.4462, 0.3744, 0.4084},
+      { 0.4206, 0.4463, 0.3098, 0.2747, 0.3506, 0.3293, 0.3502, 0.3299, 0.3505, 0.3010, 0.3076, 0.4385, 0.3678, 0.3355, 0.3680, 0.3716, 0.3737, 0.4054, 0.3102, 0.3621},
+      { 0.4218, 0.4020, 0.4160, 0.3506, 0.5182, 0.4606, 0.4521, 0.4261, 0.4063, 0.3935, 0.4116, 0.5157, 0.4685, 0.4270, 0.4553, 0.4626, 0.5057, 0.4935, 0.3960, 0.4681},
+      { 0.3679, 0.3525, 0.4165, 0.3293, 0.4606, 0.4218, 0.4162, 0.4098, 0.4000, 0.3874, 0.3785, 0.4484, 0.4578, 0.3760, 0.4073, 0.4073, 0.4605, 0.4621, 0.3698, 0.4329},
+      { 0.3581, 0.3588, 0.4200, 0.3502, 0.4521, 0.4162, 0.4327, 0.4092, 0.4091, 0.3730, 0.3800, 0.4748, 0.4922, 0.4307, 0.4563, 0.4524, 0.4816, 0.4901, 0.3933, 0.4499},
+      { 0.3594, 0.3477, 0.4123, 0.3299, 0.4261, 0.4098, 0.4092, 0.4634, 0.4249, 0.3786, 0.3751, 0.4517, 0.4223, 0.3391, 0.3602, 0.3753, 0.4162, 0.4412, 0.3507, 0.3949},
+      { 0.3874, 0.3538, 0.4230, 0.3505, 0.4063, 0.4000, 0.4091, 0.4249, 0.4094, 0.3780, 0.3949, 0.4657, 0.4677, 0.3599, 0.3974, 0.4184, 0.4576, 0.4540, 0.3685, 0.4221},
+      { 0.3350, 0.3046, 0.3772, 0.3010, 0.3935, 0.3874, 0.3730, 0.3786, 0.3780, 0.4016, 0.3481, 0.4382, 0.4157, 0.3427, 0.3859, 0.4035, 0.4530, 0.4520, 0.3628, 0.4161},
+      { 0.3554, 0.3294, 0.3841, 0.3076, 0.4116, 0.3785, 0.3800, 0.3751, 0.3949, 0.3481, 0.4047, 0.4797, 0.4702, 0.3252, 0.3607, 0.3960, 0.4367, 0.4331, 0.3565, 0.4179},
+      { 0.4286, 0.4259, 0.4916, 0.4385, 0.5157, 0.4484, 0.4748, 0.4517, 0.4657, 0.4382, 0.4797, 0.5325, 0.5539, 0.5181, 0.5550, 0.5556, 0.5797, 0.5853, 0.4762, 0.5525},
+      { 0.3499, 0.3982, 0.4501, 0.3678, 0.4685, 0.4578, 0.4922, 0.4223, 0.4677, 0.4157, 0.4702, 0.5539, 0.5636, 0.5717, 0.5775, 0.5638, 0.5891, 0.5757, 0.4918, 0.6005},
+      { 0.2836, 0.3114, 0.3685, 0.3355, 0.4270, 0.3760, 0.4307, 0.3391, 0.3599, 0.3427, 0.3252, 0.5181, 0.5717, 0.5359, 0.5468, 0.5298, 0.5074, 0.5466, 0.4442, 0.5081},
+      { 0.3074, 0.3412, 0.3986, 0.3680, 0.4553, 0.4073, 0.4563, 0.3602, 0.3974, 0.3859, 0.3607, 0.5550, 0.5775, 0.5468, 0.5907, 0.5721, 0.5564, 0.5829, 0.4799, 0.5291},
+      { 0.3271, 0.3564, 0.4147, 0.3716, 0.4626, 0.4073, 0.4524, 0.3753, 0.4184, 0.4035, 0.3960, 0.5556, 0.5638, 0.5298, 0.5721, 0.5731, 0.5571, 0.5856, 0.4870, 0.5338},
+      { 0.3584, 0.3797, 0.4405, 0.3737, 0.5057, 0.4605, 0.4816, 0.4162, 0.4576, 0.4530, 0.4367, 0.5797, 0.5891, 0.5074, 0.5564, 0.5571, 0.6035, 0.6188, 0.4909, 0.5332},
+      { 0.3658, 0.3806, 0.4462, 0.4054, 0.4935, 0.4621, 0.4901, 0.4412, 0.4540, 0.4520, 0.4331, 0.5853, 0.5757, 0.5466, 0.5829, 0.5856, 0.6188, 0.6204, 0.5084, 0.5813},
+      { 0.3037, 0.3133, 0.3744, 0.3102, 0.3960, 0.3698, 0.3933, 0.3507, 0.3685, 0.3628, 0.3565, 0.4762, 0.4918, 0.4442, 0.4799, 0.4870, 0.4909, 0.5084, 0.4193, 0.4718},
+      { 0.3585, 0.3563, 0.4084, 0.3621, 0.4681, 0.4329, 0.4499, 0.3949, 0.4221, 0.4161, 0.4179, 0.5525, 0.6005, 0.5081, 0.5291, 0.5338, 0.5332, 0.5813, 0.4718, 0.6185}},
+    {
+      { 0.2283, 0.2153, 0.4653, 0.4027, 0.4194, 0.3314, 0.3205, 0.3366, 0.3391, 0.3090, 0.2848, 0.4098, 0.3865, 0.2778, 0.3027, 0.3149, 0.3152, 0.3423, 0.2794, 0.3071},
+      { 0.2153, 0.2372, 0.5029, 0.4487, 0.4110, 0.3362, 0.3545, 0.3339, 0.3294, 0.2925, 0.2820, 0.4280, 0.4286, 0.3327, 0.3490, 0.3485, 0.3435, 0.3727, 0.3001, 0.3282},
+      { 0.4653, 0.5029, 0.3531, 0.2822, 0.4048, 0.3733, 0.3944, 0.3578, 0.3885, 0.3433, 0.3263, 0.4835, 0.4922, 0.3931, 0.4154, 0.4167, 0.4051, 0.4398, 0.3614, 0.3973},
+      { 0.4027, 0.4487, 0.2822, 0.2640, 0.3479, 0.3228, 0.3490, 0.3140, 0.3365, 0.2821, 0.2640, 0.4507, 0.4411, 0.3633, 0.3826, 0.3758, 0.3428, 0.4055, 0.3169, 0.3462},
+      { 0.4194, 0.4110, 0.4048, 0.3479, 0.5028, 0.4815, 0.4740, 0.4160, 0.3985, 0.3845, 0.3481, 0.5323, 0.5189, 0.4438, 0.4745, 0.4645, 0.4710, 0.5039, 0.3952, 0.4628},
+      { 0.3314, 0.3362, 0.3733, 0.3228, 0.4815, 0.4272, 0.4312, 0.4073, 0.3929, 0.3686, 0.3483, 0.4630, 0.4889, 0.4277, 0.4495, 0.4354, 0.4479, 0.4798, 0.3952, 0.4639},
+      { 0.3205, 0.3545, 0.3944, 0.3490, 0.4740, 0.4312, 0.4737, 0.4431, 0.4095, 0.3689, 0.3634, 0.4821, 0.4763, 0.5024, 0.5178, 0.4895, 0.4802, 0.5085, 0.4399, 0.5110},
+      { 0.3366, 0.3339, 0.3578, 0.3140, 0.4160, 0.4073, 0.4431, 0.4919, 0.3955, 0.3529, 0.3341, 0.4387, 0.4617, 0.3567, 0.3878, 0.3737, 0.4232, 0.4226, 0.3301, 0.4036},
+      { 0.3391, 0.3294, 0.3885, 0.3365, 0.3985, 0.3929, 0.4095, 0.3955, 0.3855, 0.3446, 0.3441, 0.4610, 0.4877, 0.3760, 0.3989, 0.4139, 0.4162, 0.4364, 0.3502, 0.3929},
+      { 0.3090, 0.2925, 0.3433, 0.2821, 0.3845, 0.3686, 0.3689, 0.3529, 0.3446, 0.3740, 0.3218, 0.4839, 0.4963, 0.3937, 0.4325, 0.4380, 0.4526, 0.5129, 0.3740, 0.4243},
+      { 0.2848, 0.2820, 0.3263, 0.2640, 0.3481, 0.3483, 0.3634, 0.3341, 0.3441, 0.3218, 0.3499, 0.4540, 0.4793, 0.3806, 0.3971, 0.3915, 0.4143, 0.4295, 0.3540, 0.4091},
+      { 0.4098, 0.4280, 0.4835, 0.4507, 0.5323, 0.4630, 0.4821, 0.4387, 0.4610, 0.4839, 0.4540, 0.5467, 0.5716, 0.5368, 0.5741, 0.5661, 0.5617, 0.6069, 0.4958, 0.5387},
+      { 0.3865, 0.4286, 0.4922, 0.4411, 0.5189, 0.4889, 0.4763, 0.4617, 0.4877, 0.4963, 0.4793, 0.5716, 0.6263, 0.5359, 0.5726, 0.5822, 0.5934, 0.6340, 0.4899, 0.5695},
+      { 0.2778, 0.3327, 0.3931, 0.3633, 0.4438, 0.4277, 0.5024, 0.3567, 0.3760, 0.3937, 0.3806, 0.5368, 0.5359, 0.6419, 0.6334, 0.5902, 0.5397, 0.5876, 0.5310, 0.5919},
+      { 0.3027, 0.3490, 0.4154, 0.3826, 0.4745, 0.4495, 0.5178, 0.3878, 0.3989, 0.4325, 0.3971, 0.5741, 0.5726, 0.6334, 0.6609, 0.6195, 0.5804, 0.6168, 0.5592, 0.6095},
+      { 0.3149, 0.3485, 0.4167, 0.3758, 0.4645, 0.4354, 0.4895, 0.3737, 0.4139, 0.4380, 0.3915, 0.5661, 0.5822, 0.5902, 0.6195, 0.6049, 0.5725, 0.6141, 0.5369, 0.5766},
+      { 0.3152, 0.3435, 0.4051, 0.3428, 0.4710, 0.4479, 0.4802, 0.4232, 0.4162, 0.4526, 0.4143, 0.5617, 0.5934, 0.5397, 0.5804, 0.5725, 0.6092, 0.6233, 0.5143, 0.5751},
+      { 0.3423, 0.3727, 0.4398, 0.4055, 0.5039, 0.4798, 0.5085, 0.4226, 0.4364, 0.5129, 0.4295, 0.6069, 0.6340, 0.5876, 0.6168, 0.6141, 0.6233, 0.6615, 0.5453, 0.6098},
+      { 0.2794, 0.3001, 0.3614, 0.3169, 0.3952, 0.3952, 0.4399, 0.3301, 0.3502, 0.3740, 0.3540, 0.4958, 0.4899, 0.5310, 0.5592, 0.5369, 0.5143, 0.5453, 0.4725, 0.5132},
+      { 0.3071, 0.3282, 0.3973, 0.3462, 0.4628, 0.4639, 0.5110, 0.4036, 0.3929, 0.4243, 0.4091, 0.5387, 0.5695, 0.5919, 0.6095, 0.5766, 0.5751, 0.6098, 0.5132, 0.6443}},
+    {
+      { 0.2561, 0.2322, 0.4791, 0.4133, 0.4241, 0.3461, 0.3321, 0.3556, 0.3496, 0.3135, 0.2869, 0.4302, 0.4178, 0.2862, 0.2865, 0.3146, 0.3260, 0.3427, 0.2895, 0.3212},
+      { 0.2322, 0.2517, 0.5040, 0.4435, 0.4157, 0.3411, 0.3543, 0.3431, 0.3414, 0.2954, 0.2801, 0.4372, 0.4446, 0.3306, 0.3292, 0.3453, 0.3440, 0.3725, 0.3059, 0.3318},
+      { 0.4791, 0.5040, 0.3516, 0.2840, 0.4118, 0.3780, 0.3951, 0.3796, 0.4063, 0.3524, 0.3428, 0.4825, 0.4929, 0.3880, 0.3861, 0.4081, 0.4024, 0.4371, 0.3606, 0.3961},
+      { 0.4133, 0.4435, 0.2840, 0.2704, 0.3479, 0.3237, 0.3447, 0.3217, 0.3390, 0.2876, 0.2670, 0.4610, 0.4510, 0.3546, 0.3563, 0.3677, 0.3451, 0.4073, 0.3187, 0.3463},
+      { 0.4241, 0.4157, 0.4118, 0.3479, 0.5278, 0.4870, 0.4866, 0.4339, 0.4265, 0.3951, 0.3564, 0.5373, 0.5278, 0.4460, 0.4515, 0.4612, 0.4760, 0.5126, 0.4110, 0.4739},
+      { 0.3461, 0.3411, 0.3780, 0.3237, 0.4870, 0.4204, 0.4268, 0.4163, 0.4062, 0.3755, 0.3546, 0.4720, 0.5099, 0.4228, 0.4365, 0.4354, 0.4573, 0.4863, 0.3940, 0.4516},
+      { 0.3321, 0.3543, 0.3951, 0.3447, 0.4866, 0.4268, 0.4634, 0.4418, 0.4115, 0.3759, 0.3657, 0.4915, 0.5016, 0.4958, 0.5105, 0.4937, 0.4910, 0.5184, 0.4363, 0.5002},
+      { 0.3556, 0.3431, 0.3796, 0.3217, 0.4339, 0.4163, 0.4418, 0.4708, 0.4098, 0.3739, 0.3490, 0.4553, 0.4791, 0.3653, 0.3794, 0.3823, 0.4223, 0.4308, 0.3448, 0.4100},
+      { 0.3496, 0.3414, 0.4063, 0.3390, 0.4265, 0.4062, 0.4115, 0.4098, 0.4148, 0.3616, 0.3508, 0.4794, 0.5155, 0.3826, 0.3875, 0.4141, 0.4178, 0.4503, 0.3618, 0.4030},
+      { 0.3135, 0.2954, 0.3524, 0.2876, 0.3951, 0.3755, 0.3759, 0.3739, 0.3616, 0.3904, 0.3319, 0.4948, 0.5131, 0.3989, 0.4094, 0.4341, 0.4541, 0.5054, 0.3819, 0.4347},
+      { 0.2869, 0.2801, 0.3428, 0.2670, 0.3564, 0.3546, 0.3657, 0.3490, 0.3508, 0.3319, 0.3568, 0.4610, 0.4901, 0.3752, 0.3918, 0.3985, 0.4253, 0.4447, 0.3580, 0.4189},
+      { 0.4302, 0.4372, 0.4825, 0.4610, 0.5373, 0.4720, 0.4915, 0.4553, 0.4794, 0.4948, 0.4610, 0.5535, 0.5784, 0.5447, 0.5620, 0.5680, 0.5730, 0.6163, 0.5037, 0.5431},
+      { 0.4178, 0.4446, 0.4929, 0.4510, 0.5278, 0.5099, 0.5016, 0.4791, 0.5155, 0.5131, 0.4901, 0.5784, 0.6287, 0.5468, 0.5632, 0.5884, 0.6097, 0.6515, 0.5138, 0.5783},
+      { 0.2862, 0.3306, 0.3880, 0.3546, 0.4460, 0.4228, 0.4958, 0.3653, 0.3826, 0.3989, 0.3752, 0.5447, 0.5468, 0.6334, 0.6319, 0.5974, 0.5558, 0.6024, 0.5189, 0.5865},
+      { 0.2865, 0.3292, 0.3861, 0.3563, 0.4515, 0.4365, 0.5105, 0.3794, 0.3875, 0.4094, 0.3918, 0.5620, 0.5632, 0.6319, 0.6504, 0.6151, 0.5805, 0.6167, 0.5402, 0.6067},
+      { 0.3146, 0.3453, 0.4081, 0.3677, 0.4612, 0.4354, 0.4937, 0.3823, 0.4141, 0.4341, 0.3985, 0.5680, 0.5884, 0.5974, 0.6151, 0.6110, 0.5823, 0.6227, 0.5381, 0.5814},
+      { 0.3260, 0.3440, 0.4024, 0.3451, 0.4760, 0.4573, 0.4910, 0.4223, 0.4178, 0.4541, 0.4253, 0.5730, 0.6097, 0.5558, 0.5805, 0.5823, 0.6134, 0.6397, 0.5270, 0.5798},
+      { 0.3427, 0.3725, 0.4371, 0.4073, 0.5126, 0.4863, 0.5184, 0.4308, 0.4503, 0.5054, 0.4447, 0.6163, 0.6515, 0.6024, 0.6167, 0.6227, 0.6397, 0.6811, 0.5610, 0.6214},
+      { 0.2895, 0.3059, 0.3606, 0.3187, 0.4110, 0.3940, 0.4363, 0.3448, 0.3618, 0.3819, 0.3580, 0.5037, 0.5138, 0.5189, 0.5402, 0.5381, 0.5270, 0.5610, 0.4706, 0.5073},
+      { 0.3212, 0.3318, 0.3961, 0.3463, 0.4739, 0.4516, 0.5002, 0.4100, 0.4030, 0.4347, 0.4189, 0.5431, 0.5783, 0.5865, 0.6067, 0.5814, 0.5798, 0.6214, 0.5073, 0.6155}},
+    {
+      { 0.2378, 0.2190, 0.4695, 0.4062, 0.3989, 0.3171, 0.3018, 0.3258, 0.3322, 0.2899, 0.2776, 0.4103, 0.4014, 0.2591, 0.2775, 0.2767, 0.2955, 0.3157, 0.2703, 0.2824},
+      { 0.2190, 0.2477, 0.4950, 0.4310, 0.3932, 0.3137, 0.3203, 0.3173, 0.3256, 0.2678, 0.2705, 0.4140, 0.4230, 0.2888, 0.3165, 0.3044, 0.3223, 0.3493, 0.2822, 0.2885},
+      { 0.4695, 0.4950, 0.3382, 0.2727, 0.3903, 0.3587, 0.3710, 0.3604, 0.3836, 0.3339, 0.3339, 0.4641, 0.4733, 0.3568, 0.3808, 0.3784, 0.3826, 0.4237, 0.3440, 0.3696},
+      { 0.4062, 0.4310, 0.2727, 0.2524, 0.3255, 0.3083, 0.3162, 0.3097, 0.3233, 0.2679, 0.2646, 0.4353, 0.4295, 0.3256, 0.3496, 0.3379, 0.3291, 0.3822, 0.3005, 0.3125},
+      { 0.3989, 0.3932, 0.3903, 0.3255, 0.4710, 0.4456, 0.4488, 0.3974, 0.3968, 0.3658, 0.3566, 0.5114, 0.5040, 0.4147, 0.4411, 0.4303, 0.4512, 0.4827, 0.3835, 0.4390},
+      { 0.3171, 0.3137, 0.3587, 0.3083, 0.4456, 0.3875, 0.3911, 0.3822, 0.3842, 0.3529, 0.3358, 0.4444, 0.4827, 0.3907, 0.4189, 0.4030, 0.4349, 0.4594, 0.3738, 0.4166},
+      { 0.3018, 0.3203, 0.3710, 0.3162, 0.4488, 0.3911, 0.4274, 0.4090, 0.3945, 0.3566, 0.3473, 0.4699, 0.4882, 0.4591, 0.4866, 0.4680, 0.4718, 0.4943, 0.4051, 0.4614},
+      { 0.3258, 0.3173, 0.3604, 0.3097, 0.3974, 0.3822, 0.4090, 0.4457, 0.3852, 0.3382, 0.3313, 0.4273, 0.4630, 0.3413, 0.3650, 0.3439, 0.3979, 0.4060, 0.3256, 0.3834},
+      { 0.3322, 0.3256, 0.3836, 0.3233, 0.3968, 0.3842, 0.3945, 0.3852, 0.3818, 0.3404, 0.3422, 0.4526, 0.4903, 0.3600, 0.3840, 0.3807, 0.4048, 0.4261, 0.3487, 0.3801},
+      { 0.2899, 0.2678, 0.3339, 0.2679, 0.3658, 0.3529, 0.3566, 0.3382, 0.3404, 0.3508, 0.3146, 0.4532, 0.4895, 0.3780, 0.4064, 0.3890, 0.4266, 0.4726, 0.3661, 0.4133},
+      { 0.2776, 0.2705, 0.3339, 0.2646, 0.3566, 0.3358, 0.3473, 0.3313, 0.3422, 0.3146, 0.3406, 0.4603, 0.4915, 0.3505, 0.3809, 0.3754, 0.4109, 0.4318, 0.3428, 0.4070},
+      { 0.4103, 0.4140, 0.4641, 0.4353, 0.5114, 0.4444, 0.4699, 0.4273, 0.4526, 0.4532, 0.4603, 0.5333, 0.5620, 0.5174, 0.5524, 0.5415, 0.5559, 0.5945, 0.4859, 0.5185},
+      { 0.4014, 0.4230, 0.4733, 0.4295, 0.5040, 0.4827, 0.4882, 0.4630, 0.4903, 0.4895, 0.4915, 0.5620, 0.6167, 0.5298, 0.5640, 0.5652, 0.6045, 0.6380, 0.5000, 0.5530},
+      { 0.2591, 0.2888, 0.3568, 0.3256, 0.4147, 0.3907, 0.4591, 0.3413, 0.3600, 0.3780, 0.3505, 0.5174, 0.5298, 0.5902, 0.5974, 0.5803, 0.5408, 0.5801, 0.4937, 0.5551},
+      { 0.2775, 0.3165, 0.3808, 0.3496, 0.4411, 0.4189, 0.4866, 0.3650, 0.3840, 0.4064, 0.3809, 0.5524, 0.5640, 0.5974, 0.6318, 0.6051, 0.5763, 0.6119, 0.5264, 0.5823},
+      { 0.2767, 0.3044, 0.3784, 0.3379, 0.4303, 0.4030, 0.4680, 0.3439, 0.3807, 0.3890, 0.3754, 0.5415, 0.5652, 0.5803, 0.6051, 0.5848, 0.5593, 0.6007, 0.5152, 0.5594},
+      { 0.2955, 0.3223, 0.3826, 0.3291, 0.4512, 0.4349, 0.4718, 0.3979, 0.4048, 0.4266, 0.4109, 0.5559, 0.6045, 0.5408, 0.5763, 0.5593, 0.5994, 0.6211, 0.5097, 0.5619},
+      { 0.3157, 0.3493, 0.4237, 0.3822, 0.4827, 0.4594, 0.4943, 0.4060, 0.4261, 0.4726, 0.4318, 0.5945, 0.6380, 0.5801, 0.6119, 0.6007, 0.6211, 0.6612, 0.5417, 0.6009},
+      { 0.2703, 0.2822, 0.3440, 0.3005, 0.3835, 0.3738, 0.4051, 0.3256, 0.3487, 0.3661, 0.3428, 0.4859, 0.5000, 0.4937, 0.5264, 0.5152, 0.5097, 0.5417, 0.4636, 0.4892},
+      { 0.2824, 0.2885, 0.3696, 0.3125, 0.4390, 0.4166, 0.4614, 0.3834, 0.3801, 0.4133, 0.4070, 0.5185, 0.5530, 0.5551, 0.5823, 0.5594, 0.5619, 0.6009, 0.4892, 0.6028}},
+    {
+      { 0.2470, 0.2207, 0.4758, 0.4087, 0.3943, 0.3201, 0.3080, 0.3359, 0.3321, 0.2902, 0.2655, 0.4027, 0.3952, 0.2471, 0.2741, 0.2821, 0.2465, 0.3141, 0.2567, 0.2893},
+      { 0.2207, 0.2346, 0.4959, 0.4206, 0.3813, 0.3129, 0.3239, 0.3262, 0.3251, 0.2631, 0.2696, 0.4072, 0.4189, 0.2894, 0.3126, 0.3051, 0.2712, 0.3429, 0.2687, 0.3093},
+      { 0.4758, 0.4959, 0.3310, 0.2704, 0.4011, 0.3648, 0.3686, 0.3810, 0.3864, 0.3292, 0.3289, 0.4673, 0.4748, 0.3360, 0.3617, 0.3716, 0.3326, 0.4154, 0.3199, 0.3566},
+      { 0.4087, 0.4206, 0.2704, 0.2415, 0.3350, 0.3030, 0.3199, 0.3094, 0.3170, 0.2554, 0.2446, 0.4186, 0.4193, 0.3074, 0.3276, 0.3304, 0.2822, 0.3708, 0.2768, 0.3146},
+      { 0.3943, 0.3813, 0.4011, 0.3350, 0.4819, 0.4470, 0.4473, 0.4204, 0.3985, 0.3662, 0.3588, 0.5067, 0.5128, 0.4069, 0.4343, 0.4271, 0.4205, 0.4702, 0.3710, 0.4256},
+      { 0.3201, 0.3129, 0.3648, 0.3030, 0.4470, 0.3855, 0.4021, 0.4095, 0.3924, 0.3627, 0.3422, 0.4539, 0.4864, 0.3804, 0.4059, 0.4063, 0.4107, 0.4585, 0.3689, 0.4157},
+      { 0.3080, 0.3239, 0.3686, 0.3199, 0.4473, 0.4021, 0.4342, 0.4148, 0.4011, 0.3598, 0.3460, 0.4661, 0.4787, 0.4377, 0.4669, 0.4577, 0.4648, 0.4904, 0.3979, 0.4549},
+      { 0.3359, 0.3262, 0.3810, 0.3094, 0.4204, 0.4095, 0.4148, 0.4524, 0.4011, 0.3565, 0.3484, 0.4435, 0.4631, 0.3258, 0.3536, 0.3537, 0.3728, 0.4116, 0.3255, 0.3864},
+      { 0.3321, 0.3251, 0.3864, 0.3170, 0.3985, 0.3924, 0.4011, 0.4011, 0.4158, 0.3496, 0.3601, 0.4555, 0.5214, 0.3702, 0.3921, 0.3876, 0.3709, 0.4279, 0.3378, 0.3875},
+      { 0.2902, 0.2631, 0.3292, 0.2554, 0.3662, 0.3627, 0.3598, 0.3565, 0.3496, 0.3597, 0.2999, 0.4728, 0.4835, 0.3538, 0.3868, 0.4007, 0.4026, 0.4702, 0.3635, 0.4112},
+      { 0.2655, 0.2696, 0.3289, 0.2446, 0.3588, 0.3422, 0.3460, 0.3484, 0.3601, 0.2999, 0.3376, 0.4561, 0.4760, 0.3206, 0.3554, 0.3708, 0.3810, 0.4176, 0.3282, 0.3797},
+      { 0.4027, 0.4072, 0.4673, 0.4186, 0.5067, 0.4539, 0.4661, 0.4435, 0.4555, 0.4728, 0.4561, 0.5350, 0.5744, 0.5009, 0.5321, 0.5351, 0.5147, 0.5863, 0.4745, 0.5320},
+      { 0.3952, 0.4189, 0.4748, 0.4193, 0.5128, 0.4864, 0.4787, 0.4631, 0.5214, 0.4835, 0.4760, 0.5744, 0.6237, 0.5074, 0.5405, 0.5538, 0.5300, 0.6263, 0.4792, 0.5398},
+      { 0.2471, 0.2894, 0.3360, 0.3074, 0.4069, 0.3804, 0.4377, 0.3258, 0.3702, 0.3538, 0.3206, 0.5009, 0.5074, 0.5397, 0.5558, 0.5408, 0.5491, 0.5516, 0.4661, 0.5362},
+      { 0.2741, 0.3126, 0.3617, 0.3276, 0.4343, 0.4059, 0.4669, 0.3536, 0.3921, 0.3868, 0.3554, 0.5321, 0.5405, 0.5558, 0.5899, 0.5724, 0.5457, 0.5853, 0.5011, 0.5646},
+      { 0.2821, 0.3051, 0.3716, 0.3304, 0.4271, 0.4063, 0.4577, 0.3537, 0.3876, 0.4007, 0.3708, 0.5351, 0.5538, 0.5408, 0.5724, 0.5669, 0.5131, 0.5900, 0.5029, 0.5394},
+      { 0.2465, 0.2712, 0.3326, 0.2822, 0.4205, 0.4107, 0.4648, 0.3728, 0.3709, 0.4026, 0.3810, 0.5147, 0.5300, 0.5491, 0.5457, 0.5131, 0.5517, 0.5613, 0.4674, 0.5330},
+      { 0.3141, 0.3429, 0.4154, 0.3708, 0.4702, 0.4585, 0.4904, 0.4116, 0.4279, 0.4702, 0.4176, 0.5863, 0.6263, 0.5516, 0.5853, 0.5900, 0.5613, 0.6428, 0.5253, 0.5909},
+      { 0.2567, 0.2687, 0.3199, 0.2768, 0.3710, 0.3689, 0.3979, 0.3255, 0.3378, 0.3635, 0.3282, 0.4745, 0.4792, 0.4661, 0.5011, 0.5029, 0.4674, 0.5253, 0.4377, 0.4699},
+      { 0.2893, 0.3093, 0.3566, 0.3146, 0.4256, 0.4157, 0.4549, 0.3864, 0.3875, 0.4112, 0.3797, 0.5320, 0.5398, 0.5362, 0.5646, 0.5394, 0.5330, 0.5909, 0.4699, 0.6053}},
+    {
+      { 0.2773, 0.2604, 0.4915, 0.4154, 0.4094, 0.3531, 0.3454, 0.3617, 0.3578, 0.3215, 0.3142, 0.4187, 0.4057, 0.2930, 0.3191, 0.3269, 0.3451, 0.2919, 0.3000, 0.3381},
+      { 0.2604, 0.2766, 0.5010, 0.4393, 0.4048, 0.3433, 0.3568, 0.3586, 0.3557, 0.3088, 0.3038, 0.4218, 0.4330, 0.3203, 0.3467, 0.3449, 0.3631, 0.3248, 0.3108, 0.3348},
+      { 0.4915, 0.5010, 0.3719, 0.3070, 0.4027, 0.3991, 0.3997, 0.3930, 0.4171, 0.3672, 0.3606, 0.4678, 0.4892, 0.3735, 0.4008, 0.4100, 0.4135, 0.3968, 0.3661, 0.4065},
+      { 0.4154, 0.4393, 0.3070, 0.2803, 0.3590, 0.3416, 0.3506, 0.3414, 0.3489, 0.3033, 0.2992, 0.4212, 0.4371, 0.3426, 0.3677, 0.3672, 0.3592, 0.3490, 0.3202, 0.3526},
+      { 0.4094, 0.4048, 0.4027, 0.3590, 0.4961, 0.4739, 0.4801, 0.4195, 0.4152, 0.3942, 0.3837, 0.5151, 0.5273, 0.4410, 0.4612, 0.4554, 0.4797, 0.4600, 0.4009, 0.4705},
+      { 0.3531, 0.3433, 0.3991, 0.3416, 0.4739, 0.4188, 0.4305, 0.4174, 0.4162, 0.3912, 0.3687, 0.4644, 0.5017, 0.4045, 0.4366, 0.4382, 0.4660, 0.4421, 0.3936, 0.4451},
+      { 0.3454, 0.3568, 0.3997, 0.3506, 0.4801, 0.4305, 0.4482, 0.4423, 0.4203, 0.3935, 0.3692, 0.4973, 0.5156, 0.4659, 0.4943, 0.4869, 0.4985, 0.5021, 0.4262, 0.4850},
+      { 0.3617, 0.3586, 0.3930, 0.3414, 0.4195, 0.4174, 0.4423, 0.4767, 0.4193, 0.3806, 0.3706, 0.4495, 0.4651, 0.3615, 0.3901, 0.3843, 0.4430, 0.3980, 0.3570, 0.4125},
+      { 0.3578, 0.3557, 0.4171, 0.3489, 0.4152, 0.4162, 0.4203, 0.4193, 0.4124, 0.3684, 0.3691, 0.4604, 0.5027, 0.3746, 0.4011, 0.4116, 0.4450, 0.4138, 0.3703, 0.4162},
+      { 0.3215, 0.3088, 0.3672, 0.3033, 0.3942, 0.3912, 0.3935, 0.3806, 0.3684, 0.4048, 0.3687, 0.4490, 0.4977, 0.3963, 0.4244, 0.4335, 0.4661, 0.4295, 0.3875, 0.4353},
+      { 0.3142, 0.3038, 0.3606, 0.2992, 0.3837, 0.3687, 0.3692, 0.3706, 0.3691, 0.3687, 0.3544, 0.4672, 0.5033, 0.3591, 0.3968, 0.4000, 0.4379, 0.4149, 0.3672, 0.4130},
+      { 0.4187, 0.4218, 0.4678, 0.4212, 0.5151, 0.4644, 0.4973, 0.4495, 0.4604, 0.4490, 0.4672, 0.5295, 0.5566, 0.5485, 0.5662, 0.5608, 0.5689, 0.5618, 0.4888, 0.5454},
+      { 0.4057, 0.4330, 0.4892, 0.4371, 0.5273, 0.5017, 0.5156, 0.4651, 0.5027, 0.4977, 0.5033, 0.5566, 0.6151, 0.5466, 0.5719, 0.5840, 0.6078, 0.5941, 0.5219, 0.5685},
+      { 0.2930, 0.3203, 0.3735, 0.3426, 0.4410, 0.4045, 0.4659, 0.3615, 0.3746, 0.3963, 0.3591, 0.5485, 0.5466, 0.5876, 0.6024, 0.5801, 0.5516, 0.6019, 0.4994, 0.5590},
+      { 0.3191, 0.3467, 0.4008, 0.3677, 0.4612, 0.4366, 0.4943, 0.3901, 0.4011, 0.4244, 0.3968, 0.5662, 0.5719, 0.6024, 0.6413, 0.6156, 0.5881, 0.6120, 0.5325, 0.5891},
+      { 0.3269, 0.3449, 0.4100, 0.3672, 0.4554, 0.4382, 0.4869, 0.3843, 0.4116, 0.4335, 0.4000, 0.5608, 0.5840, 0.5801, 0.6156, 0.6098, 0.5868, 0.5929, 0.5312, 0.5681},
+      { 0.3451, 0.3631, 0.4135, 0.3592, 0.4797, 0.4660, 0.4985, 0.4430, 0.4450, 0.4661, 0.4379, 0.5689, 0.6078, 0.5516, 0.5881, 0.5868, 0.6276, 0.6126, 0.5221, 0.5793},
+      { 0.2919, 0.3248, 0.3968, 0.3490, 0.4600, 0.4421, 0.5021, 0.3980, 0.4138, 0.4295, 0.4149, 0.5618, 0.5941, 0.6019, 0.6120, 0.5929, 0.6126, 0.6096, 0.5194, 0.5965},
+      { 0.3000, 0.3108, 0.3661, 0.3202, 0.4009, 0.3936, 0.4262, 0.3570, 0.3703, 0.3875, 0.3672, 0.4888, 0.5219, 0.4994, 0.5325, 0.5312, 0.5221, 0.5194, 0.4638, 0.4992},
+      { 0.3381, 0.3348, 0.4065, 0.3526, 0.4705, 0.4451, 0.4850, 0.4125, 0.4162, 0.4353, 0.4130, 0.5454, 0.5685, 0.5590, 0.5891, 0.5681, 0.5793, 0.5965, 0.4992, 0.6361}},
+    {
+      { 0.1281, 0.1164, 0.3864, 0.3289, 0.3000, 0.2403, 0.2165, 0.2414, 0.2509, 0.2018, 0.1880, 0.3073, 0.2896, 0.1554, 0.1676, 0.1925, 0.2093, 0.2126, 0.1632, 0.1992},
+      { 0.1164, 0.1401, 0.4058, 0.3429, 0.2859, 0.2197, 0.2207, 0.2290, 0.2398, 0.1828, 0.1866, 0.3056, 0.3100, 0.1746, 0.1930, 0.2141, 0.2187, 0.2392, 0.1932, 0.2033},
+      { 0.3864, 0.4058, 0.2521, 0.1950, 0.3079, 0.2801, 0.2944, 0.2912, 0.3029, 0.2593, 0.2646, 0.3921, 0.3999, 0.2683, 0.2921, 0.3123, 0.3004, 0.3434, 0.2682, 0.3004},
+      { 0.3289, 0.3429, 0.1950, 0.1606, 0.2541, 0.2246, 0.2269, 0.2285, 0.2474, 0.1898, 0.1825, 0.3452, 0.3265, 0.2162, 0.2390, 0.2586, 0.2325, 0.2787, 0.2202, 0.2379},
+      { 0.3000, 0.2859, 0.3079, 0.2541, 0.3763, 0.3699, 0.3773, 0.3262, 0.3047, 0.3106, 0.2914, 0.4367, 0.4324, 0.3352, 0.3553, 0.3630, 0.3783, 0.4061, 0.3049, 0.3687},
+      { 0.2403, 0.2197, 0.2801, 0.2246, 0.3699, 0.3758, 0.3847, 0.3397, 0.2968, 0.3214, 0.2883, 0.3647, 0.3763, 0.3776, 0.3725, 0.3512, 0.3830, 0.3777, 0.3462, 0.4177},
+      { 0.2165, 0.2207, 0.2944, 0.2269, 0.3773, 0.3847, 0.3990, 0.3511, 0.3023, 0.3435, 0.2916, 0.3929, 0.4053, 0.4092, 0.4158, 0.4027, 0.4162, 0.4168, 0.4003, 0.4560},
+      { 0.2414, 0.2290, 0.2912, 0.2285, 0.3262, 0.3397, 0.3511, 0.3593, 0.3019, 0.2882, 0.2661, 0.3438, 0.3688, 0.2459, 0.2644, 0.2723, 0.3208, 0.3152, 0.2590, 0.3168},
+      { 0.2509, 0.2398, 0.3029, 0.2474, 0.3047, 0.2968, 0.3023, 0.3019, 0.2898, 0.2755, 0.2639, 0.3580, 0.3855, 0.2505, 0.2693, 0.2979, 0.3122, 0.3307, 0.2671, 0.2986},
+      { 0.2018, 0.1828, 0.2593, 0.1898, 0.3106, 0.3214, 0.3435, 0.2882, 0.2755, 0.3334, 0.2656, 0.3972, 0.3961, 0.3848, 0.4001, 0.3848, 0.4161, 0.4289, 0.3354, 0.4190},
+      { 0.1880, 0.1866, 0.2646, 0.1825, 0.2914, 0.2883, 0.2916, 0.2661, 0.2639, 0.2656, 0.2434, 0.3699, 0.3887, 0.2737, 0.2863, 0.2946, 0.3307, 0.3327, 0.2810, 0.3441},
+      { 0.3073, 0.3056, 0.3921, 0.3452, 0.4367, 0.3647, 0.3929, 0.3438, 0.3580, 0.3972, 0.3699, 0.4652, 0.5080, 0.4486, 0.4716, 0.4848, 0.4886, 0.5189, 0.4025, 0.4700},
+      { 0.2896, 0.3100, 0.3999, 0.3265, 0.4324, 0.3763, 0.4053, 0.3688, 0.3855, 0.3961, 0.3887, 0.5080, 0.5364, 0.4442, 0.4793, 0.4919, 0.5128, 0.5531, 0.3852, 0.4876},
+      { 0.1554, 0.1746, 0.2683, 0.2162, 0.3352, 0.3776, 0.4092, 0.2459, 0.2505, 0.3848, 0.2737, 0.4486, 0.4442, 0.5310, 0.5189, 0.4937, 0.4661, 0.4994, 0.5052, 0.5401},
+      { 0.1676, 0.1930, 0.2921, 0.2390, 0.3553, 0.3725, 0.4158, 0.2644, 0.2693, 0.4001, 0.2863, 0.4716, 0.4793, 0.5189, 0.5311, 0.5129, 0.4866, 0.5176, 0.4899, 0.5408},
+      { 0.1925, 0.2141, 0.3123, 0.2586, 0.3630, 0.3512, 0.4027, 0.2723, 0.2979, 0.3848, 0.2946, 0.4848, 0.4919, 0.4937, 0.5129, 0.5107, 0.4888, 0.5285, 0.4485, 0.5053},
+      { 0.2093, 0.2187, 0.3004, 0.2325, 0.3783, 0.3830, 0.4162, 0.3208, 0.3122, 0.4161, 0.3307, 0.4886, 0.5128, 0.4661, 0.4866, 0.4888, 0.5381, 0.5330, 0.4391, 0.5269},
+      { 0.2126, 0.2392, 0.3434, 0.2787, 0.4061, 0.3777, 0.4168, 0.3152, 0.3307, 0.4289, 0.3327, 0.5189, 0.5531, 0.4994, 0.5176, 0.5285, 0.5330, 0.5697, 0.4395, 0.5343},
+      { 0.1632, 0.1932, 0.2682, 0.2202, 0.3049, 0.3462, 0.4003, 0.2590, 0.2671, 0.3354, 0.2810, 0.4025, 0.3852, 0.5052, 0.4899, 0.4485, 0.4391, 0.4395, 0.4407, 0.4880},
+      { 0.1992, 0.2033, 0.3004, 0.2379, 0.3687, 0.4177, 0.4560, 0.3168, 0.2986, 0.4190, 0.3441, 0.4700, 0.4876, 0.5401, 0.5408, 0.5053, 0.5269, 0.5343, 0.4880, 0.6682}},
+    {
+      { 0.2128, 0.1902, 0.4493, 0.3813, 0.3749, 0.3256, 0.3320, 0.3046, 0.3161, 0.2915, 0.2753, 0.3834, 0.3866, 0.2790, 0.2822, 0.2906, 0.3229, 0.3241, 0.2521, 0.1951},
+      { 0.1902, 0.2259, 0.4832, 0.4067, 0.3794, 0.2993, 0.3250, 0.2965, 0.3295, 0.2549, 0.2761, 0.4052, 0.4150, 0.3132, 0.3279, 0.3333, 0.3217, 0.3481, 0.2625, 0.1969},
+      { 0.4493, 0.4832, 0.3559, 0.2658, 0.3800, 0.3484, 0.3673, 0.3423, 0.3814, 0.3039, 0.3388, 0.4791, 0.4700, 0.3760, 0.3965, 0.3992, 0.3909, 0.4238, 0.3411, 0.3079},
+      { 0.3813, 0.4067, 0.2658, 0.2490, 0.3154, 0.2904, 0.3042, 0.2840, 0.3211, 0.2423, 0.2742, 0.4300, 0.4135, 0.3386, 0.3576, 0.3586, 0.3474, 0.3805, 0.2990, 0.2591},
+      { 0.3749, 0.3794, 0.3800, 0.3154, 0.4632, 0.4357, 0.4612, 0.3792, 0.3873, 0.3811, 0.3741, 0.5139, 0.4967, 0.4142, 0.4492, 0.4323, 0.4416, 0.4774, 0.3769, 0.3496},
+      { 0.3256, 0.2993, 0.3484, 0.2904, 0.4357, 0.4288, 0.4333, 0.4006, 0.3701, 0.3759, 0.3569, 0.4379, 0.4655, 0.4461, 0.4517, 0.4203, 0.4584, 0.4518, 0.4044, 0.3782},
+      { 0.3320, 0.3250, 0.3673, 0.3042, 0.4612, 0.4333, 0.4734, 0.4546, 0.3890, 0.3878, 0.3686, 0.4504, 0.4885, 0.4919, 0.4971, 0.4669, 0.4751, 0.4908, 0.4448, 0.3928},
+      { 0.3046, 0.2965, 0.3423, 0.2840, 0.3792, 0.4006, 0.4546, 0.5349, 0.3606, 0.3701, 0.3322, 0.4084, 0.4329, 0.3770, 0.4115, 0.3783, 0.4144, 0.3985, 0.3297, 0.3146},
+      { 0.3161, 0.3295, 0.3814, 0.3211, 0.3873, 0.3701, 0.3890, 0.3606, 0.3824, 0.3327, 0.3454, 0.4469, 0.4732, 0.3643, 0.3832, 0.3882, 0.4155, 0.4294, 0.3381, 0.3084},
+      { 0.2915, 0.2549, 0.3039, 0.2423, 0.3811, 0.3759, 0.3878, 0.3701, 0.3327, 0.3945, 0.3140, 0.4597, 0.4662, 0.4184, 0.4435, 0.4289, 0.4606, 0.4883, 0.3755, 0.3155},
+      { 0.2753, 0.2761, 0.3388, 0.2742, 0.3741, 0.3569, 0.3686, 0.3322, 0.3454, 0.3140, 0.3357, 0.4351, 0.4687, 0.3721, 0.3935, 0.3831, 0.4074, 0.4340, 0.3458, 0.2848},
+      { 0.3834, 0.4052, 0.4791, 0.4300, 0.5139, 0.4379, 0.4504, 0.4084, 0.4469, 0.4597, 0.4351, 0.5183, 0.5749, 0.5051, 0.5392, 0.5393, 0.5332, 0.5755, 0.4724, 0.4095},
+      { 0.3866, 0.4150, 0.4700, 0.4135, 0.4967, 0.4655, 0.4885, 0.4329, 0.4732, 0.4662, 0.4687, 0.5749, 0.5892, 0.5081, 0.5470, 0.5612, 0.5914, 0.6103, 0.4586, 0.4407},
+      { 0.2790, 0.3132, 0.3760, 0.3386, 0.4142, 0.4461, 0.4919, 0.3770, 0.3643, 0.4184, 0.3721, 0.5051, 0.5081, 0.5919, 0.5865, 0.5551, 0.5362, 0.5590, 0.5401, 0.4435},
+      { 0.2822, 0.3279, 0.3965, 0.3576, 0.4492, 0.4517, 0.4971, 0.4115, 0.3832, 0.4435, 0.3935, 0.5392, 0.5470, 0.5865, 0.6046, 0.5790, 0.5634, 0.5850, 0.5545, 0.4342},
+      { 0.2906, 0.3333, 0.3992, 0.3586, 0.4323, 0.4203, 0.4669, 0.3783, 0.3882, 0.4289, 0.3831, 0.5393, 0.5612, 0.5551, 0.5790, 0.5706, 0.5556, 0.5844, 0.5217, 0.4037},
+      { 0.3229, 0.3217, 0.3909, 0.3474, 0.4416, 0.4584, 0.4751, 0.4144, 0.4155, 0.4606, 0.4074, 0.5332, 0.5914, 0.5362, 0.5634, 0.5556, 0.5997, 0.6001, 0.5082, 0.4581},
+      { 0.3241, 0.3481, 0.4238, 0.3805, 0.4774, 0.4518, 0.4908, 0.3985, 0.4294, 0.4883, 0.4340, 0.5755, 0.6103, 0.5590, 0.5850, 0.5844, 0.6001, 0.6216, 0.5241, 0.4507},
+      { 0.2521, 0.2625, 0.3411, 0.2990, 0.3769, 0.4044, 0.4448, 0.3297, 0.3381, 0.3755, 0.3458, 0.4724, 0.4586, 0.5401, 0.5545, 0.5217, 0.5082, 0.5241, 0.4838, 0.3739},
+      { 0.1951, 0.1969, 0.3079, 0.2591, 0.3496, 0.3782, 0.3928, 0.3146, 0.3084, 0.3155, 0.2848, 0.4095, 0.4407, 0.4435, 0.4342, 0.4037, 0.4581, 0.4507, 0.3739, 0.5100}}},
+  {
+    {
+      { 0.1105, 0.1119, 0.3429, 0.3133, 0.3136, 0.2533, 0.3126, 0.2889, 0.2464, 0.2002, 0.2245, 0.3243, 0.3011, 0.2945, 0.3148, 0.2854, 0.3106, 0.2917, 0.1999, 0.3128},
+      { 0.1119, 0.1250, 0.3661, 0.3106, 0.2634, 0.2029, 0.2145, 0.2237, 0.2168, 0.1514, 0.1796, 0.2736, 0.2783, 0.1617, 0.1576, 0.1626, 0.1865, 0.2026, 0.1576, 0.1767},
+      { 0.3429, 0.3661, 0.2328, 0.1667, 0.2612, 0.2326, 0.2358, 0.2457, 0.2561, 0.1951, 0.2076, 0.3084, 0.3181, 0.1634, 0.1485, 0.1823, 0.1871, 0.2282, 0.1857, 0.2032},
+      { 0.3133, 0.3106, 0.1667, 0.1305, 0.1999, 0.1725, 0.1739, 0.1910, 0.2132, 0.1313, 0.1330, 0.2538, 0.2469, 0.1137, 0.0924, 0.1144, 0.1076, 0.1516, 0.1337, 0.1259},
+      { 0.3136, 0.2634, 0.2612, 0.1999, 0.3120, 0.2642, 0.2834, 0.2454, 0.2416, 0.1764, 0.2151, 0.3519, 0.3686, 0.2446, 0.2265, 0.2345, 0.2581, 0.2924, 0.2068, 0.2630},
+      { 0.2533, 0.2029, 0.2326, 0.1725, 0.2642, 0.1997, 0.2097, 0.2135, 0.2283, 0.1642, 0.1651, 0.2509, 0.2672, 0.1656, 0.1560, 0.1702, 0.1905, 0.2138, 0.1675, 0.2166},
+      { 0.3126, 0.2145, 0.2358, 0.1739, 0.2834, 0.2097, 0.2383, 0.2338, 0.2301, 0.1588, 0.1598, 0.2847, 0.2976, 0.2266, 0.2110, 0.2118, 0.2266, 0.2569, 0.1866, 0.2317},
+      { 0.2889, 0.2237, 0.2457, 0.1910, 0.2454, 0.2135, 0.2338, 0.2801, 0.2390, 0.1748, 0.1850, 0.2511, 0.2733, 0.1706, 0.1619, 0.1762, 0.2031, 0.2032, 0.1613, 0.2168},
+      { 0.2464, 0.2168, 0.2561, 0.2132, 0.2416, 0.2283, 0.2301, 0.2390, 0.2341, 0.1727, 0.2103, 0.2698, 0.2985, 0.1707, 0.1609, 0.1802, 0.2029, 0.2138, 0.1767, 0.1762},
+      { 0.2002, 0.1514, 0.1951, 0.1313, 0.1764, 0.1642, 0.1588, 0.1748, 0.1727, 0.1331, 0.1491, 0.2074, 0.2308, 0.0966, 0.0771, 0.1180, 0.1426, 0.1662, 0.1360, 0.1740},
+      { 0.2245, 0.1796, 0.2076, 0.1330, 0.2151, 0.1651, 0.1598, 0.1850, 0.2103, 0.1491, 0.1629, 0.2782, 0.2951, 0.0929, 0.0871, 0.1259, 0.1470, 0.1904, 0.1316, 0.1526},
+      { 0.3243, 0.2736, 0.3084, 0.2538, 0.3519, 0.2509, 0.2847, 0.2511, 0.2698, 0.2074, 0.2782, 0.3765, 0.4173, 0.3015, 0.2816, 0.3177, 0.3417, 0.3855, 0.2503, 0.3344},
+      { 0.3011, 0.2783, 0.3181, 0.2469, 0.3686, 0.2672, 0.2976, 0.2733, 0.2985, 0.2308, 0.2951, 0.4173, 0.4126, 0.3074, 0.3102, 0.3324, 0.3706, 0.4153, 0.2440, 0.3418},
+      { 0.2945, 0.1617, 0.1634, 0.1137, 0.2446, 0.1656, 0.2266, 0.1706, 0.1707, 0.0966, 0.0929, 0.3015, 0.3074, 0.3027, 0.2865, 0.2775, 0.2741, 0.3191, 0.1676, 0.2822},
+      { 0.3148, 0.1576, 0.1485, 0.0924, 0.2265, 0.1560, 0.2110, 0.1619, 0.1609, 0.0771, 0.0871, 0.2816, 0.3102, 0.2865, 0.2985, 0.2777, 0.2568, 0.3118, 0.1472, 0.2696},
+      { 0.2854, 0.1626, 0.1823, 0.1144, 0.2345, 0.1702, 0.2118, 0.1762, 0.1802, 0.1180, 0.1259, 0.3177, 0.3324, 0.2775, 0.2777, 0.2946, 0.2830, 0.3386, 0.1741, 0.2817},
+      { 0.3106, 0.1865, 0.1871, 0.1076, 0.2581, 0.1905, 0.2266, 0.2031, 0.2029, 0.1426, 0.1470, 0.3417, 0.3706, 0.2741, 0.2568, 0.2830, 0.3213, 0.3620, 0.1877, 0.3149},
+      { 0.2917, 0.2026, 0.2282, 0.1516, 0.2924, 0.2138, 0.2569, 0.2032, 0.2138, 0.1662, 0.1904, 0.3855, 0.4153, 0.3191, 0.3118, 0.3386, 0.3620, 0.4032, 0.2183, 0.3372},
+      { 0.1999, 0.1576, 0.1857, 0.1337, 0.2068, 0.1675, 0.1866, 0.1613, 0.1767, 0.1360, 0.1316, 0.2503, 0.2440, 0.1676, 0.1472, 0.1741, 0.1877, 0.2183, 0.1849, 0.1994},
+      { 0.3128, 0.1767, 0.2032, 0.1259, 0.2630, 0.2166, 0.2317, 0.2168, 0.1762, 0.1740, 0.1526, 0.3344, 0.3418, 0.2822, 0.2696, 0.2817, 0.3149, 0.3372, 0.1994, 0.4796}},
+    {
+      { 0.1701, 0.1632, 0.3905, 0.3453, 0.3085, 0.2476, 0.2429, 0.2677, 0.2763, 0.1980, 0.1714, 0.2883, 0.2575, 0.1642, 0.1576, 0.1772, 0.2081, 0.1971, 0.1841, 0.1960},
+      { 0.1632, 0.1744, 0.4042, 0.3543, 0.3190, 0.2643, 0.2919, 0.2943, 0.2818, 0.1934, 0.2221, 0.3334, 0.3197, 0.2794, 0.3084, 0.2660, 0.2939, 0.2767, 0.2296, 0.2771},
+      { 0.3905, 0.4042, 0.2633, 0.2091, 0.2903, 0.2628, 0.2697, 0.2660, 0.2968, 0.2233, 0.2192, 0.3509, 0.3553, 0.2212, 0.2030, 0.2390, 0.2266, 0.2630, 0.2401, 0.2258},
+      { 0.3453, 0.3543, 0.2091, 0.1840, 0.2354, 0.2156, 0.2217, 0.2278, 0.2559, 0.1527, 0.1510, 0.3106, 0.2908, 0.1708, 0.1492, 0.1717, 0.1619, 0.1984, 0.1802, 0.1527},
+      { 0.3085, 0.3190, 0.2903, 0.2354, 0.3504, 0.2969, 0.3115, 0.2662, 0.2770, 0.2340, 0.2332, 0.3848, 0.3840, 0.2644, 0.2440, 0.2652, 0.2781, 0.3118, 0.2403, 0.2746},
+      { 0.2476, 0.2643, 0.2628, 0.2156, 0.2969, 0.2353, 0.2403, 0.2492, 0.2558, 0.1955, 0.1828, 0.2825, 0.2754, 0.1843, 0.1606, 0.1799, 0.2007, 0.2288, 0.1918, 0.2146},
+      { 0.2429, 0.2919, 0.2697, 0.2217, 0.3115, 0.2403, 0.2934, 0.2554, 0.2708, 0.1912, 0.1777, 0.3192, 0.3235, 0.2660, 0.2472, 0.2423, 0.2516, 0.2777, 0.2119, 0.2542},
+      { 0.2677, 0.2943, 0.2660, 0.2278, 0.2662, 0.2492, 0.2554, 0.2836, 0.2812, 0.2025, 0.2016, 0.2757, 0.3043, 0.1659, 0.1324, 0.1631, 0.1991, 0.2110, 0.1830, 0.2050},
+      { 0.2763, 0.2818, 0.2968, 0.2559, 0.2770, 0.2558, 0.2708, 0.2812, 0.2871, 0.2022, 0.2245, 0.3205, 0.3477, 0.2253, 0.2283, 0.2323, 0.2560, 0.2489, 0.2222, 0.2262},
+      { 0.1980, 0.1934, 0.2233, 0.1527, 0.2340, 0.1955, 0.1912, 0.2025, 0.2022, 0.1757, 0.1472, 0.2713, 0.2837, 0.1330, 0.1165, 0.1581, 0.1864, 0.1996, 0.1738, 0.2025},
+      { 0.1714, 0.2221, 0.2192, 0.1510, 0.2332, 0.1828, 0.1777, 0.2016, 0.2245, 0.1472, 0.1759, 0.2946, 0.3157, 0.1140, 0.0872, 0.1298, 0.1725, 0.1985, 0.1606, 0.1768},
+      { 0.2883, 0.3334, 0.3509, 0.3106, 0.3848, 0.2825, 0.3192, 0.2757, 0.3205, 0.2713, 0.2946, 0.4074, 0.4576, 0.3470, 0.3302, 0.3613, 0.3794, 0.4145, 0.2865, 0.3787},
+      { 0.2575, 0.3197, 0.3553, 0.2908, 0.3840, 0.2754, 0.3235, 0.3043, 0.3477, 0.2837, 0.3157, 0.4576, 0.4613, 0.3412, 0.3448, 0.3712, 0.4064, 0.4559, 0.2759, 0.3745},
+      { 0.1642, 0.2794, 0.2212, 0.1708, 0.2644, 0.1843, 0.2660, 0.1659, 0.2253, 0.1330, 0.1140, 0.3470, 0.3412, 0.3490, 0.3292, 0.3165, 0.3126, 0.3467, 0.1930, 0.3279},
+      { 0.1576, 0.3084, 0.2030, 0.1492, 0.2440, 0.1606, 0.2472, 0.1324, 0.2283, 0.1165, 0.0872, 0.3302, 0.3448, 0.3292, 0.3338, 0.3140, 0.3040, 0.3405, 0.1698, 0.3203},
+      { 0.1772, 0.2660, 0.2390, 0.1717, 0.2652, 0.1799, 0.2423, 0.1631, 0.2323, 0.1581, 0.1298, 0.3613, 0.3712, 0.3165, 0.3140, 0.3325, 0.3167, 0.3684, 0.2065, 0.3129},
+      { 0.2081, 0.2939, 0.2266, 0.1619, 0.2781, 0.2007, 0.2516, 0.1991, 0.2560, 0.1864, 0.1725, 0.3794, 0.4064, 0.3126, 0.3040, 0.3167, 0.3589, 0.3878, 0.2194, 0.3370},
+      { 0.1971, 0.2767, 0.2630, 0.1984, 0.3118, 0.2288, 0.2777, 0.2110, 0.2489, 0.1996, 0.1985, 0.4145, 0.4559, 0.3467, 0.3405, 0.3684, 0.3878, 0.4340, 0.2376, 0.3767},
+      { 0.1841, 0.2296, 0.2401, 0.1802, 0.2403, 0.1918, 0.2119, 0.1830, 0.2222, 0.1738, 0.1606, 0.2865, 0.2759, 0.1930, 0.1698, 0.2065, 0.2194, 0.2376, 0.2385, 0.2191},
+      { 0.1960, 0.2771, 0.2258, 0.1527, 0.2746, 0.2146, 0.2542, 0.2050, 0.2262, 0.2025, 0.1768, 0.3787, 0.3745, 0.3279, 0.3203, 0.3129, 0.3370, 0.3767, 0.2191, 0.4655}},
+    {
+      { 0.2281, 0.2261, 0.4204, 0.4123, 0.3559, 0.2915, 0.2746, 0.3060, 0.3288, 0.2424, 0.2419, 0.3417, 0.3309, 0.1669, 0.1485, 0.1921, 0.2074, 0.2248, 0.2218, 0.2165},
+      { 0.2261, 0.2473, 0.4431, 0.4371, 0.3610, 0.2856, 0.2917, 0.3032, 0.3268, 0.2241, 0.2451, 0.3584, 0.3670, 0.2250, 0.2030, 0.2411, 0.2448, 0.2644, 0.2555, 0.2347},
+      { 0.4204, 0.4431, 0.3440, 0.2912, 0.3737, 0.3688, 0.3948, 0.3840, 0.3895, 0.3230, 0.3411, 0.4213, 0.4279, 0.3868, 0.4221, 0.3878, 0.4092, 0.3917, 0.3385, 0.3938},
+      { 0.4123, 0.4371, 0.2912, 0.2779, 0.3320, 0.3193, 0.3358, 0.3329, 0.3508, 0.2620, 0.2707, 0.4045, 0.3846, 0.3037, 0.2956, 0.3060, 0.2977, 0.3252, 0.2942, 0.3009},
+      { 0.3559, 0.3610, 0.3737, 0.3320, 0.4291, 0.3732, 0.3896, 0.3420, 0.3592, 0.3024, 0.3085, 0.4355, 0.4421, 0.3415, 0.3223, 0.3399, 0.3641, 0.3836, 0.3196, 0.3703},
+      { 0.2915, 0.2856, 0.3688, 0.3193, 0.3732, 0.3075, 0.3151, 0.3222, 0.3297, 0.2757, 0.2680, 0.3579, 0.3615, 0.2682, 0.2412, 0.2627, 0.2793, 0.3138, 0.2753, 0.2998},
+      { 0.2746, 0.2917, 0.3948, 0.3358, 0.3896, 0.3151, 0.3587, 0.3359, 0.3390, 0.2720, 0.2686, 0.3857, 0.3873, 0.3361, 0.3189, 0.3171, 0.3178, 0.3463, 0.2969, 0.3407},
+      { 0.3060, 0.3032, 0.3840, 0.3329, 0.3420, 0.3222, 0.3359, 0.3626, 0.3491, 0.2854, 0.2775, 0.3619, 0.3718, 0.2523, 0.2337, 0.2564, 0.2894, 0.3152, 0.2744, 0.2825},
+      { 0.3288, 0.3268, 0.3895, 0.3508, 0.3592, 0.3297, 0.3390, 0.3491, 0.3626, 0.2882, 0.3065, 0.3765, 0.4145, 0.2916, 0.2723, 0.3042, 0.3099, 0.3291, 0.2919, 0.2961},
+      { 0.2424, 0.2241, 0.3230, 0.2620, 0.3024, 0.2757, 0.2720, 0.2854, 0.2882, 0.2617, 0.2522, 0.3318, 0.3490, 0.2049, 0.1817, 0.2306, 0.2598, 0.2788, 0.2520, 0.2629},
+      { 0.2419, 0.2451, 0.3411, 0.2707, 0.3085, 0.2680, 0.2686, 0.2775, 0.3065, 0.2522, 0.2878, 0.3661, 0.3910, 0.2139, 0.1871, 0.2357, 0.2672, 0.3028, 0.2586, 0.2827},
+      { 0.3417, 0.3584, 0.4213, 0.4045, 0.4355, 0.3579, 0.3857, 0.3619, 0.3765, 0.3318, 0.3661, 0.4645, 0.4988, 0.4022, 0.3868, 0.4174, 0.4298, 0.4705, 0.3610, 0.4445},
+      { 0.3309, 0.3670, 0.4279, 0.3846, 0.4421, 0.3615, 0.3873, 0.3718, 0.4145, 0.3490, 0.3910, 0.4988, 0.5170, 0.3986, 0.3870, 0.4244, 0.4511, 0.4934, 0.3509, 0.4635},
+      { 0.1669, 0.2250, 0.3868, 0.3037, 0.3415, 0.2682, 0.3361, 0.2523, 0.2916, 0.2049, 0.2139, 0.4022, 0.3986, 0.4154, 0.3861, 0.3808, 0.3617, 0.4008, 0.2921, 0.3965},
+      { 0.1485, 0.2030, 0.4221, 0.2956, 0.3223, 0.2412, 0.3189, 0.2337, 0.2723, 0.1817, 0.1871, 0.3868, 0.3870, 0.3861, 0.3906, 0.3779, 0.3586, 0.3927, 0.2680, 0.3775},
+      { 0.1921, 0.2411, 0.3878, 0.3060, 0.3399, 0.2627, 0.3171, 0.2564, 0.3042, 0.2306, 0.2357, 0.4174, 0.4244, 0.3808, 0.3779, 0.3969, 0.3802, 0.4217, 0.3035, 0.3734},
+      { 0.2074, 0.2448, 0.4092, 0.2977, 0.3641, 0.2793, 0.3178, 0.2894, 0.3099, 0.2598, 0.2672, 0.4298, 0.4511, 0.3617, 0.3586, 0.3802, 0.4272, 0.4433, 0.3048, 0.3897},
+      { 0.2248, 0.2644, 0.3917, 0.3252, 0.3836, 0.3138, 0.3463, 0.3152, 0.3291, 0.2788, 0.3028, 0.4705, 0.4934, 0.4008, 0.3927, 0.4217, 0.4433, 0.4781, 0.3322, 0.4285},
+      { 0.2218, 0.2555, 0.3385, 0.2942, 0.3196, 0.2753, 0.2969, 0.2744, 0.2919, 0.2520, 0.2586, 0.3610, 0.3509, 0.2921, 0.2680, 0.3035, 0.3048, 0.3322, 0.3223, 0.3188},
+      { 0.2165, 0.2347, 0.3938, 0.3009, 0.3703, 0.2998, 0.3407, 0.2825, 0.2961, 0.2629, 0.2827, 0.4445, 0.4635, 0.3965, 0.3775, 0.3734, 0.3897, 0.4285, 0.3188, 0.5167}},
+    {
+      { 0.1595, 0.1584, 0.4029, 0.3407, 0.2929, 0.2124, 0.2050, 0.2423, 0.2658, 0.1673, 0.1769, 0.2632, 0.2503, 0.1131, 0.0924, 0.1280, 0.1407, 0.1493, 0.1581, 0.1570},
+      { 0.1584, 0.1883, 0.4418, 0.3770, 0.2905, 0.2164, 0.2402, 0.2414, 0.2710, 0.1538, 0.1810, 0.2912, 0.2916, 0.1719, 0.1492, 0.1781, 0.1752, 0.1947, 0.1958, 0.1593},
+      { 0.4029, 0.4418, 0.2956, 0.2416, 0.3224, 0.2904, 0.3150, 0.3063, 0.3328, 0.2602, 0.2731, 0.3725, 0.3724, 0.2979, 0.2956, 0.3093, 0.2960, 0.3179, 0.2920, 0.3020},
+      { 0.3407, 0.3770, 0.2416, 0.2151, 0.2929, 0.2917, 0.3522, 0.2951, 0.2948, 0.2292, 0.2294, 0.3627, 0.3145, 0.3334, 0.3472, 0.3192, 0.3481, 0.3188, 0.2817, 0.3387},
+      { 0.2929, 0.2905, 0.3224, 0.2929, 0.3671, 0.3049, 0.3278, 0.2740, 0.2974, 0.2270, 0.2472, 0.3929, 0.3906, 0.2932, 0.2728, 0.2921, 0.2918, 0.3298, 0.2684, 0.3075},
+      { 0.2124, 0.2164, 0.2904, 0.2917, 0.3049, 0.2275, 0.2406, 0.2524, 0.2598, 0.1896, 0.1938, 0.2792, 0.2897, 0.2096, 0.1832, 0.2044, 0.2092, 0.2429, 0.2115, 0.2301},
+      { 0.2050, 0.2402, 0.3150, 0.3522, 0.3278, 0.2406, 0.3039, 0.2660, 0.2738, 0.1862, 0.1963, 0.3246, 0.3283, 0.2931, 0.2718, 0.2695, 0.2624, 0.2957, 0.2358, 0.2801},
+      { 0.2423, 0.2414, 0.3063, 0.2951, 0.2740, 0.2524, 0.2660, 0.2930, 0.2830, 0.2067, 0.2066, 0.2840, 0.3085, 0.1932, 0.1735, 0.1930, 0.2198, 0.2386, 0.2127, 0.2219},
+      { 0.2658, 0.2710, 0.3328, 0.2948, 0.2974, 0.2598, 0.2738, 0.2830, 0.3033, 0.2098, 0.2310, 0.3166, 0.3529, 0.2367, 0.2211, 0.2481, 0.2413, 0.2642, 0.2389, 0.2337},
+      { 0.1673, 0.1538, 0.2602, 0.2292, 0.2270, 0.1896, 0.1862, 0.2067, 0.2098, 0.1869, 0.1686, 0.2572, 0.2723, 0.1391, 0.1197, 0.1653, 0.1779, 0.2066, 0.1929, 0.2137},
+      { 0.1769, 0.1810, 0.2731, 0.2294, 0.2472, 0.1938, 0.1963, 0.2066, 0.2310, 0.1686, 0.1986, 0.3091, 0.3255, 0.1623, 0.1403, 0.1707, 0.1967, 0.2279, 0.1969, 0.2222},
+      { 0.2632, 0.2912, 0.3725, 0.3627, 0.3929, 0.2792, 0.3246, 0.2840, 0.3166, 0.2572, 0.3091, 0.4158, 0.4503, 0.3680, 0.3568, 0.3865, 0.3846, 0.4341, 0.3051, 0.3961},
+      { 0.2503, 0.2916, 0.3724, 0.3145, 0.3906, 0.2897, 0.3283, 0.3085, 0.3529, 0.2723, 0.3255, 0.4503, 0.5031, 0.3680, 0.3613, 0.3938, 0.4105, 0.4707, 0.2947, 0.3877},
+      { 0.1131, 0.1719, 0.2979, 0.3334, 0.2932, 0.2096, 0.2931, 0.1932, 0.2367, 0.1391, 0.1623, 0.3680, 0.3680, 0.3826, 0.3563, 0.3496, 0.3276, 0.3677, 0.2390, 0.3576},
+      { 0.0924, 0.1492, 0.2956, 0.3472, 0.2728, 0.1832, 0.2718, 0.1735, 0.2211, 0.1197, 0.1403, 0.3568, 0.3613, 0.3563, 0.3616, 0.3458, 0.3274, 0.3689, 0.2173, 0.3500},
+      { 0.1280, 0.1781, 0.3093, 0.3192, 0.2921, 0.2044, 0.2695, 0.1930, 0.2481, 0.1653, 0.1707, 0.3865, 0.3938, 0.3496, 0.3458, 0.3641, 0.3383, 0.3884, 0.2485, 0.3379},
+      { 0.1407, 0.1752, 0.2960, 0.3481, 0.2918, 0.2092, 0.2624, 0.2198, 0.2413, 0.1779, 0.1967, 0.3846, 0.4105, 0.3276, 0.3274, 0.3383, 0.3752, 0.3991, 0.2452, 0.3401},
+      { 0.1493, 0.1947, 0.3179, 0.3188, 0.3298, 0.2429, 0.2957, 0.2386, 0.2642, 0.2066, 0.2279, 0.4341, 0.4707, 0.3677, 0.3689, 0.3884, 0.3991, 0.4529, 0.2699, 0.3859},
+      { 0.1581, 0.1958, 0.2920, 0.2817, 0.2684, 0.2115, 0.2358, 0.2127, 0.2389, 0.1929, 0.1969, 0.3051, 0.2947, 0.2390, 0.2173, 0.2485, 0.2452, 0.2699, 0.2797, 0.2740},
+      { 0.1570, 0.1593, 0.3020, 0.3387, 0.3075, 0.2301, 0.2801, 0.2219, 0.2337, 0.2137, 0.2222, 0.3961, 0.3877, 0.3576, 0.3500, 0.3379, 0.3401, 0.3859, 0.2740, 0.4893}},
+    {
+      { 0.2193, 0.2096, 0.4643, 0.4041, 0.2788, 0.3034, 0.3108, 0.3126, 0.3129, 0.2610, 0.2668, 0.3627, 0.3435, 0.2391, 0.2265, 0.2399, 0.2653, 0.2718, 0.2454, 0.2782},
+      { 0.2096, 0.2350, 0.4763, 0.4178, 0.2835, 0.3083, 0.3097, 0.3013, 0.3260, 0.2404, 0.2461, 0.3666, 0.3798, 0.2538, 0.2440, 0.2578, 0.2888, 0.3053, 0.2642, 0.2708},
+      { 0.4643, 0.4763, 0.3265, 0.2785, 0.3070, 0.3510, 0.3596, 0.3463, 0.3692, 0.3178, 0.3114, 0.4175, 0.4387, 0.3289, 0.3223, 0.3394, 0.3477, 0.3700, 0.3264, 0.3569},
+      { 0.4041, 0.4178, 0.2785, 0.2554, 0.2494, 0.3017, 0.3168, 0.3052, 0.3217, 0.2489, 0.2387, 0.3854, 0.3784, 0.2866, 0.2728, 0.2895, 0.2936, 0.3111, 0.2765, 0.2938},
+      { 0.2788, 0.2835, 0.3070, 0.2494, 0.4065, 0.3797, 0.4038, 0.3649, 0.3470, 0.3090, 0.3539, 0.4117, 0.4162, 0.4252, 0.4651, 0.3923, 0.4543, 0.4064, 0.3198, 0.4314},
+      { 0.3034, 0.3083, 0.3510, 0.3017, 0.3797, 0.3338, 0.3495, 0.3451, 0.3568, 0.2929, 0.3026, 0.3821, 0.3865, 0.3028, 0.2873, 0.2980, 0.3468, 0.3596, 0.2964, 0.3531},
+      { 0.3108, 0.3097, 0.3596, 0.3168, 0.4038, 0.3495, 0.3864, 0.3787, 0.3802, 0.2860, 0.2960, 0.4157, 0.4049, 0.3732, 0.3531, 0.3548, 0.3786, 0.3967, 0.3323, 0.3936},
+      { 0.3126, 0.3013, 0.3463, 0.3052, 0.3649, 0.3451, 0.3787, 0.4243, 0.3754, 0.2963, 0.3075, 0.3770, 0.4040, 0.3207, 0.3086, 0.3083, 0.3632, 0.3447, 0.2914, 0.3449},
+      { 0.3129, 0.3260, 0.3692, 0.3217, 0.3470, 0.3568, 0.3802, 0.3754, 0.3919, 0.3084, 0.3233, 0.4006, 0.4440, 0.3376, 0.3462, 0.3355, 0.3919, 0.3791, 0.3254, 0.3460},
+      { 0.2610, 0.2404, 0.3178, 0.2489, 0.3090, 0.2929, 0.2860, 0.2963, 0.3084, 0.2916, 0.2561, 0.3408, 0.3654, 0.2198, 0.2105, 0.2519, 0.2912, 0.3053, 0.2663, 0.2998},
+      { 0.2668, 0.2461, 0.3114, 0.2387, 0.3539, 0.3026, 0.2960, 0.3075, 0.3233, 0.2561, 0.2795, 0.3937, 0.4519, 0.2424, 0.2230, 0.2659, 0.3057, 0.3385, 0.2775, 0.3183},
+      { 0.3627, 0.3666, 0.4175, 0.3854, 0.4117, 0.3821, 0.4157, 0.3770, 0.4006, 0.3408, 0.3937, 0.4670, 0.4965, 0.4462, 0.4631, 0.4607, 0.4722, 0.4891, 0.3918, 0.4511},
+      { 0.3435, 0.3798, 0.4387, 0.3784, 0.4162, 0.3865, 0.4049, 0.4040, 0.4440, 0.3654, 0.4519, 0.4965, 0.5304, 0.4553, 0.4612, 0.4663, 0.5175, 0.5190, 0.3966, 0.4956},
+      { 0.2391, 0.2538, 0.3289, 0.2866, 0.4252, 0.3028, 0.3732, 0.3207, 0.3376, 0.2198, 0.2424, 0.4462, 0.4553, 0.4745, 0.4515, 0.4411, 0.4343, 0.4612, 0.3553, 0.4492},
+      { 0.2265, 0.2440, 0.3223, 0.2728, 0.4651, 0.2873, 0.3531, 0.3086, 0.3462, 0.2105, 0.2230, 0.4631, 0.4612, 0.4515, 0.4624, 0.4426, 0.4193, 0.4579, 0.3450, 0.4295},
+      { 0.2399, 0.2578, 0.3394, 0.2895, 0.3923, 0.2980, 0.3548, 0.3083, 0.3355, 0.2519, 0.2659, 0.4607, 0.4663, 0.4411, 0.4426, 0.4502, 0.4398, 0.4662, 0.3605, 0.4225},
+      { 0.2653, 0.2888, 0.3477, 0.2936, 0.4543, 0.3468, 0.3786, 0.3632, 0.3919, 0.2912, 0.3057, 0.4722, 0.5175, 0.4343, 0.4193, 0.4398, 0.5090, 0.4961, 0.3734, 0.4566},
+      { 0.2718, 0.3053, 0.3700, 0.3111, 0.4064, 0.3596, 0.3967, 0.3447, 0.3791, 0.3053, 0.3385, 0.4891, 0.5190, 0.4612, 0.4579, 0.4662, 0.4961, 0.5098, 0.3964, 0.4795},
+      { 0.2454, 0.2642, 0.3264, 0.2765, 0.3198, 0.2964, 0.3323, 0.2914, 0.3254, 0.2663, 0.2775, 0.3918, 0.3966, 0.3553, 0.3450, 0.3605, 0.3734, 0.3964, 0.3490, 0.3746},
+      { 0.2782, 0.2708, 0.3569, 0.2938, 0.4314, 0.3531, 0.3936, 0.3449, 0.3460, 0.2998, 0.3183, 0.4511, 0.4956, 0.4492, 0.4295, 0.4225, 0.4566, 0.4795, 0.3746, 0.5431}},
+    {
+      { 0.1260, 0.1176, 0.3776, 0.3194, 0.2877, 0.2179, 0.2256, 0.2506, 0.2476, 0.1987, 0.1811, 0.2908, 0.2771, 0.1715, 0.1560, 0.1803, 0.2087, 0.2060, 0.1818, 0.2170},
+      { 0.1176, 0.1414, 0.3941, 0.3350, 0.2818, 0.2059, 0.2301, 0.2276, 0.2381, 0.1697, 0.1689, 0.2942, 0.2962, 0.1781, 0.1606, 0.1784, 0.1914, 0.2127, 0.1812, 0.1919},
+      { 0.3776, 0.3941, 0.2696, 0.2087, 0.3086, 0.2681, 0.2889, 0.2803, 0.3012, 0.2509, 0.2517, 0.3689, 0.3677, 0.2542, 0.2412, 0.2645, 0.2739, 0.3052, 0.2585, 0.2792},
+      { 0.3194, 0.3350, 0.2087, 0.1561, 0.2409, 0.2041, 0.2356, 0.2218, 0.2494, 0.1723, 0.1656, 0.3177, 0.3027, 0.2015, 0.1832, 0.2017, 0.1980, 0.2426, 0.1942, 0.2127},
+      { 0.2877, 0.2818, 0.3086, 0.2409, 0.3711, 0.3171, 0.3429, 0.3060, 0.3124, 0.2818, 0.2776, 0.4189, 0.4172, 0.3054, 0.2873, 0.2943, 0.3343, 0.3584, 0.2847, 0.3374},
+      { 0.2179, 0.2059, 0.2681, 0.2041, 0.3171, 0.2962, 0.3100, 0.2950, 0.2822, 0.2641, 0.2443, 0.3134, 0.3203, 0.3226, 0.3524, 0.2998, 0.3385, 0.3121, 0.2671, 0.3515},
+      { 0.2256, 0.2301, 0.2889, 0.2356, 0.3429, 0.3100, 0.3516, 0.3222, 0.3026, 0.2752, 0.2525, 0.3604, 0.3707, 0.3639, 0.3639, 0.3437, 0.3771, 0.3653, 0.3269, 0.3813},
+      { 0.2506, 0.2276, 0.2803, 0.2218, 0.3060, 0.2950, 0.3222, 0.3364, 0.2938, 0.2790, 0.2469, 0.3175, 0.3522, 0.2410, 0.2334, 0.2386, 0.2869, 0.2829, 0.2523, 0.3057},
+      { 0.2476, 0.2381, 0.3012, 0.2494, 0.3124, 0.2822, 0.3026, 0.2938, 0.2970, 0.2557, 0.2528, 0.3415, 0.3675, 0.2407, 0.2243, 0.2476, 0.2783, 0.2917, 0.2529, 0.2806},
+      { 0.1987, 0.1697, 0.2509, 0.1723, 0.2818, 0.2641, 0.2752, 0.2790, 0.2557, 0.2690, 0.2405, 0.3313, 0.3323, 0.2560, 0.2422, 0.2590, 0.3062, 0.3102, 0.2578, 0.3170},
+      { 0.1811, 0.1689, 0.2517, 0.1656, 0.2776, 0.2443, 0.2525, 0.2469, 0.2528, 0.2405, 0.2330, 0.3471, 0.3672, 0.2010, 0.1956, 0.2208, 0.2737, 0.2814, 0.2329, 0.2825},
+      { 0.2908, 0.2942, 0.3689, 0.3177, 0.4189, 0.3134, 0.3604, 0.3175, 0.3415, 0.3313, 0.3471, 0.4463, 0.4854, 0.3958, 0.3850, 0.4062, 0.4313, 0.4614, 0.3564, 0.4187},
+      { 0.2771, 0.2962, 0.3677, 0.3027, 0.4172, 0.3203, 0.3707, 0.3522, 0.3675, 0.3323, 0.3672, 0.4854, 0.5332, 0.4073, 0.4082, 0.4272, 0.4679, 0.5028, 0.3570, 0.4580},
+      { 0.1715, 0.1781, 0.2542, 0.2015, 0.3054, 0.3226, 0.3639, 0.2410, 0.2407, 0.2560, 0.2010, 0.3958, 0.4073, 0.4495, 0.4365, 0.4189, 0.4059, 0.4366, 0.3725, 0.4517},
+      { 0.1560, 0.1606, 0.2412, 0.1832, 0.2873, 0.3524, 0.3639, 0.2334, 0.2243, 0.2422, 0.1956, 0.3850, 0.4082, 0.4365, 0.4373, 0.4154, 0.4028, 0.4343, 0.3820, 0.4497},
+      { 0.1803, 0.1784, 0.2645, 0.2017, 0.2943, 0.2998, 0.3437, 0.2386, 0.2476, 0.2590, 0.2208, 0.4062, 0.4272, 0.4189, 0.4154, 0.4270, 0.4161, 0.4517, 0.3615, 0.4245},
+      { 0.2087, 0.1914, 0.2739, 0.1980, 0.3343, 0.3385, 0.3771, 0.2869, 0.2783, 0.3062, 0.2737, 0.4313, 0.4679, 0.4059, 0.4028, 0.4161, 0.4803, 0.4885, 0.3747, 0.4686},
+      { 0.2060, 0.2127, 0.3052, 0.2426, 0.3584, 0.3121, 0.3653, 0.2829, 0.2917, 0.3102, 0.2814, 0.4614, 0.5028, 0.4366, 0.4343, 0.4517, 0.4885, 0.5094, 0.3715, 0.4720},
+      { 0.1818, 0.1812, 0.2585, 0.1942, 0.2847, 0.2671, 0.3269, 0.2523, 0.2529, 0.2578, 0.2329, 0.3564, 0.3570, 0.3725, 0.3820, 0.3615, 0.3747, 0.3715, 0.3301, 0.3816},
+      { 0.2170, 0.1919, 0.2792, 0.2127, 0.3374, 0.3515, 0.3813, 0.3057, 0.2806, 0.3170, 0.2825, 0.4187, 0.4580, 0.4517, 0.4497, 0.4245, 0.4686, 0.4720, 0.3816, 0.5456}},
+    {
+      { 0.1677, 0.1649, 0.4225, 0.3655, 0.3452, 0.2518, 0.2384, 0.2824, 0.2832, 0.2334, 0.2255, 0.3426, 0.3349, 0.2316, 0.2110, 0.2382, 0.2535, 0.2597, 0.2214, 0.2532},
+      { 0.1649, 0.2010, 0.4585, 0.4033, 0.3518, 0.2594, 0.2644, 0.2741, 0.2916, 0.2256, 0.2144, 0.3527, 0.3524, 0.2624, 0.2472, 0.2561, 0.2638, 0.2866, 0.2337, 0.2519},
+      { 0.4225, 0.4585, 0.3128, 0.2476, 0.3452, 0.3184, 0.3116, 0.3217, 0.3439, 0.2873, 0.2894, 0.4145, 0.4279, 0.3285, 0.3189, 0.3248, 0.3251, 0.3653, 0.3012, 0.3317},
+      { 0.3655, 0.4033, 0.2476, 0.2164, 0.2921, 0.2596, 0.2739, 0.2607, 0.2984, 0.2223, 0.2103, 0.3767, 0.3695, 0.2845, 0.2718, 0.2726, 0.2602, 0.3039, 0.2434, 0.2670},
+      { 0.3452, 0.3518, 0.3452, 0.2921, 0.4431, 0.3803, 0.3831, 0.3403, 0.3559, 0.3187, 0.3127, 0.4633, 0.4644, 0.3651, 0.3531, 0.3569, 0.3921, 0.4121, 0.3356, 0.3794},
+      { 0.2518, 0.2594, 0.3184, 0.2596, 0.3803, 0.3263, 0.3286, 0.3359, 0.3256, 0.2980, 0.2755, 0.3806, 0.3963, 0.3561, 0.3639, 0.3467, 0.3857, 0.3859, 0.3131, 0.3730},
+      { 0.2384, 0.2644, 0.3116, 0.2739, 0.3831, 0.3286, 0.3763, 0.3518, 0.3299, 0.2704, 0.2785, 0.3874, 0.3787, 0.4388, 0.4684, 0.4005, 0.4194, 0.4110, 0.3340, 0.4269},
+      { 0.2824, 0.2741, 0.3217, 0.2607, 0.3403, 0.3359, 0.3518, 0.3755, 0.3411, 0.3043, 0.2850, 0.3620, 0.3805, 0.2934, 0.2932, 0.2952, 0.3414, 0.3350, 0.2858, 0.3393},
+      { 0.2832, 0.2916, 0.3439, 0.2984, 0.3559, 0.3256, 0.3299, 0.3411, 0.3466, 0.2945, 0.2946, 0.3842, 0.4237, 0.3076, 0.2924, 0.3120, 0.3349, 0.3530, 0.2904, 0.3332},
+      { 0.2334, 0.2256, 0.2873, 0.2223, 0.3187, 0.2980, 0.2704, 0.3043, 0.2945, 0.2888, 0.2590, 0.3782, 0.3874, 0.2887, 0.2738, 0.3022, 0.3449, 0.3632, 0.2925, 0.3451},
+      { 0.2255, 0.2144, 0.2894, 0.2103, 0.3127, 0.2755, 0.2785, 0.2850, 0.2946, 0.2590, 0.2662, 0.3854, 0.4046, 0.2677, 0.2649, 0.2879, 0.3336, 0.3412, 0.2785, 0.3337},
+      { 0.3426, 0.3527, 0.4145, 0.3767, 0.4633, 0.3806, 0.3874, 0.3620, 0.3842, 0.3782, 0.3854, 0.4818, 0.5183, 0.4527, 0.4439, 0.4631, 0.4776, 0.5129, 0.4093, 0.4651},
+      { 0.3349, 0.3524, 0.4279, 0.3695, 0.4644, 0.3963, 0.3787, 0.3805, 0.4237, 0.3874, 0.4046, 0.5183, 0.5690, 0.4563, 0.4613, 0.4795, 0.5202, 0.5566, 0.4163, 0.4687},
+      { 0.2316, 0.2624, 0.3285, 0.2845, 0.3651, 0.3561, 0.4388, 0.2934, 0.3076, 0.2887, 0.2677, 0.4527, 0.4563, 0.5178, 0.5105, 0.4866, 0.4669, 0.4943, 0.4158, 0.4971},
+      { 0.2110, 0.2472, 0.3189, 0.2718, 0.3531, 0.3639, 0.4684, 0.2932, 0.2924, 0.2738, 0.2649, 0.4439, 0.4613, 0.5105, 0.5161, 0.4883, 0.4689, 0.4920, 0.4249, 0.5072},
+      { 0.2382, 0.2561, 0.3248, 0.2726, 0.3569, 0.3467, 0.4005, 0.2952, 0.3120, 0.3022, 0.2879, 0.4631, 0.4795, 0.4866, 0.4883, 0.4975, 0.4779, 0.5116, 0.4176, 0.4709},
+      { 0.2535, 0.2638, 0.3251, 0.2602, 0.3921, 0.3857, 0.4194, 0.3414, 0.3349, 0.3449, 0.3336, 0.4776, 0.5202, 0.4669, 0.4689, 0.4779, 0.5212, 0.5334, 0.4220, 0.4980},
+      { 0.2597, 0.2866, 0.3653, 0.3039, 0.4121, 0.3859, 0.4110, 0.3350, 0.3530, 0.3632, 0.3412, 0.5129, 0.5566, 0.4943, 0.4920, 0.5116, 0.5334, 0.5665, 0.4398, 0.5098},
+      { 0.2214, 0.2337, 0.3012, 0.2434, 0.3356, 0.3131, 0.3340, 0.2858, 0.2904, 0.2925, 0.2785, 0.4093, 0.4163, 0.4158, 0.4249, 0.4176, 0.4220, 0.4398, 0.3815, 0.4122},
+      { 0.2532, 0.2519, 0.3317, 0.2670, 0.3794, 0.3730, 0.4269, 0.3393, 0.3332, 0.3451, 0.3337, 0.4651, 0.4687, 0.4971, 0.5072, 0.4709, 0.4980, 0.5098, 0.4122, 0.5532}},
+    {
+      { 0.1560, 0.1456, 0.3921, 0.3524, 0.3135, 0.2404, 0.2428, 0.2506, 0.2748, 0.1893, 0.1973, 0.2853, 0.2650, 0.1677, 0.1619, 0.1858, 0.2070, 0.2015, 0.1838, 0.2213},
+      { 0.1456, 0.1770, 0.4137, 0.3649, 0.3008, 0.2304, 0.2261, 0.2302, 0.2707, 0.1680, 0.1987, 0.2911, 0.3012, 0.1504, 0.1324, 0.1685, 0.1931, 0.1993, 0.1899, 0.1827},
+      { 0.3921, 0.4137, 0.2909, 0.2465, 0.3155, 0.2910, 0.2980, 0.2912, 0.3196, 0.2532, 0.2715, 0.3618, 0.3744, 0.2431, 0.2337, 0.2701, 0.2743, 0.3022, 0.2706, 0.2989},
+      { 0.3524, 0.3649, 0.2465, 0.2001, 0.2631, 0.2328, 0.2442, 0.2463, 0.2776, 0.1887, 0.1994, 0.3126, 0.3069, 0.1864, 0.1735, 0.2024, 0.2047, 0.2347, 0.2093, 0.2167},
+      { 0.3135, 0.3008, 0.3155, 0.2631, 0.3735, 0.3295, 0.3647, 0.3243, 0.3188, 0.2468, 0.2913, 0.3943, 0.3935, 0.3291, 0.3086, 0.3221, 0.3364, 0.3738, 0.2877, 0.3514},
+      { 0.2404, 0.2304, 0.2910, 0.2328, 0.3295, 0.2686, 0.2797, 0.3114, 0.2878, 0.2269, 0.2403, 0.3077, 0.3143, 0.2380, 0.2334, 0.2470, 0.2890, 0.2909, 0.2427, 0.2919},
+      { 0.2428, 0.2261, 0.2980, 0.2442, 0.3647, 0.2797, 0.3202, 0.3692, 0.2929, 0.2191, 0.2446, 0.3368, 0.3457, 0.3008, 0.2932, 0.2969, 0.3130, 0.3359, 0.2706, 0.3383},
+      { 0.2506, 0.2302, 0.2912, 0.2463, 0.3243, 0.3114, 0.3692, 0.3904, 0.3271, 0.2723, 0.2741, 0.3405, 0.3113, 0.3560, 0.4049, 0.3562, 0.3822, 0.3413, 0.2807, 0.3739},
+      { 0.2748, 0.2707, 0.3196, 0.2776, 0.3188, 0.2878, 0.2929, 0.3271, 0.3157, 0.2287, 0.2695, 0.3350, 0.3592, 0.2286, 0.2216, 0.2446, 0.2812, 0.2797, 0.2494, 0.2813},
+      { 0.1893, 0.1680, 0.2532, 0.1887, 0.2468, 0.2269, 0.2191, 0.2723, 0.2287, 0.2078, 0.2057, 0.2589, 0.2695, 0.1490, 0.1255, 0.1705, 0.2133, 0.2218, 0.2017, 0.2437},
+      { 0.1973, 0.1987, 0.2715, 0.1994, 0.2913, 0.2403, 0.2446, 0.2741, 0.2695, 0.2057, 0.2433, 0.3328, 0.3426, 0.1747, 0.1607, 0.1963, 0.2440, 0.2634, 0.2202, 0.2528},
+      { 0.2853, 0.2911, 0.3618, 0.3126, 0.3943, 0.3077, 0.3368, 0.3405, 0.3350, 0.2589, 0.3328, 0.4213, 0.4420, 0.3565, 0.3514, 0.3798, 0.4050, 0.4372, 0.3203, 0.3940},
+      { 0.2650, 0.3012, 0.3744, 0.3069, 0.3935, 0.3143, 0.3457, 0.3113, 0.3592, 0.2695, 0.3426, 0.4420, 0.4828, 0.3602, 0.3672, 0.3798, 0.4258, 0.4630, 0.3179, 0.4086},
+      { 0.1677, 0.1504, 0.2431, 0.1864, 0.3291, 0.2380, 0.3008, 0.3560, 0.2286, 0.1490, 0.1747, 0.3565, 0.3602, 0.3878, 0.3794, 0.3650, 0.3536, 0.3901, 0.2644, 0.4115},
+      { 0.1619, 0.1324, 0.2337, 0.1735, 0.3086, 0.2334, 0.2932, 0.4049, 0.2216, 0.1255, 0.1607, 0.3514, 0.3672, 0.3794, 0.3833, 0.3674, 0.3447, 0.3804, 0.2554, 0.4221},
+      { 0.1858, 0.1685, 0.2701, 0.2024, 0.3221, 0.2470, 0.2969, 0.3562, 0.2446, 0.1705, 0.1963, 0.3798, 0.3798, 0.3650, 0.3674, 0.3786, 0.3642, 0.4051, 0.2781, 0.3984},
+      { 0.2070, 0.1931, 0.2743, 0.2047, 0.3364, 0.2890, 0.3130, 0.3822, 0.2812, 0.2133, 0.2440, 0.4050, 0.4258, 0.3536, 0.3447, 0.3642, 0.4084, 0.4270, 0.2952, 0.4195},
+      { 0.2015, 0.1993, 0.3022, 0.2347, 0.3738, 0.2909, 0.3359, 0.3413, 0.2797, 0.2218, 0.2634, 0.4372, 0.4630, 0.3901, 0.3804, 0.4051, 0.4270, 0.4626, 0.3145, 0.4402},
+      { 0.1838, 0.1899, 0.2706, 0.2093, 0.2877, 0.2427, 0.2706, 0.2807, 0.2494, 0.2017, 0.2202, 0.3203, 0.3179, 0.2644, 0.2554, 0.2781, 0.2952, 0.3145, 0.2750, 0.3069},
+      { 0.2213, 0.1827, 0.2989, 0.2167, 0.3514, 0.2919, 0.3383, 0.3739, 0.2813, 0.2437, 0.2528, 0.3940, 0.4086, 0.4115, 0.4221, 0.3984, 0.4195, 0.4402, 0.3069, 0.4971}},
+    {
+      { 0.2071, 0.1785, 0.4306, 0.3813, 0.3408, 0.2685, 0.2624, 0.2939, 0.2787, 0.2198, 0.2358, 0.3158, 0.2842, 0.1745, 0.1609, 0.1859, 0.2061, 0.2090, 0.2062, 0.2182},
+      { 0.1785, 0.1994, 0.4561, 0.4097, 0.3317, 0.2654, 0.2727, 0.2853, 0.2767, 0.2012, 0.2363, 0.3239, 0.3236, 0.2261, 0.2283, 0.2313, 0.2479, 0.2465, 0.2267, 0.2331},
+      { 0.4306, 0.4561, 0.3010, 0.2464, 0.3396, 0.3177, 0.3263, 0.3308, 0.3284, 0.2830, 0.2942, 0.3918, 0.3893, 0.2797, 0.2723, 0.2962, 0.2979, 0.3226, 0.2877, 0.2935},
+      { 0.3813, 0.4097, 0.2464, 0.2231, 0.2876, 0.2665, 0.2761, 0.2734, 0.2808, 0.2127, 0.2217, 0.3473, 0.3244, 0.2316, 0.2211, 0.2394, 0.2393, 0.2622, 0.2310, 0.2162},
+      { 0.3408, 0.3317, 0.3396, 0.2876, 0.4164, 0.3536, 0.3733, 0.3217, 0.3607, 0.2768, 0.3083, 0.4331, 0.4313, 0.3448, 0.3462, 0.3394, 0.3715, 0.3778, 0.2979, 0.3499},
+      { 0.2685, 0.2654, 0.3177, 0.2665, 0.3536, 0.2939, 0.3008, 0.3061, 0.3158, 0.2576, 0.2586, 0.3309, 0.3557, 0.2478, 0.2243, 0.2485, 0.2851, 0.2938, 0.2582, 0.2847},
+      { 0.2624, 0.2727, 0.3263, 0.2761, 0.3733, 0.3008, 0.3429, 0.3224, 0.3555, 0.2431, 0.2588, 0.3656, 0.3734, 0.3144, 0.2924, 0.3021, 0.3333, 0.3376, 0.2748, 0.3241},
+      { 0.2939, 0.2853, 0.3308, 0.2734, 0.3217, 0.3061, 0.3224, 0.3590, 0.3516, 0.2776, 0.2757, 0.3243, 0.3533, 0.2437, 0.2216, 0.2400, 0.2868, 0.2786, 0.2565, 0.2839},
+      { 0.2787, 0.2767, 0.3284, 0.2808, 0.3607, 0.3158, 0.3555, 0.3516, 0.3413, 0.2695, 0.3019, 0.3586, 0.4050, 0.3632, 0.4153, 0.3587, 0.3737, 0.3541, 0.2944, 0.3491},
+      { 0.2198, 0.2012, 0.2830, 0.2127, 0.2768, 0.2576, 0.2431, 0.2776, 0.2695, 0.2318, 0.2448, 0.3183, 0.3354, 0.1845, 0.1693, 0.2158, 0.2583, 0.2634, 0.2435, 0.2759},
+      { 0.2358, 0.2363, 0.2942, 0.2217, 0.3083, 0.2586, 0.2588, 0.2757, 0.3019, 0.2448, 0.2531, 0.3610, 0.3831, 0.1962, 0.1849, 0.2281, 0.2809, 0.2834, 0.2549, 0.2703},
+      { 0.3158, 0.3239, 0.3918, 0.3473, 0.4331, 0.3309, 0.3656, 0.3243, 0.3586, 0.3183, 0.3610, 0.4578, 0.4869, 0.3848, 0.3836, 0.4068, 0.4379, 0.4628, 0.3452, 0.4148},
+      { 0.2842, 0.3236, 0.3893, 0.3244, 0.4313, 0.3557, 0.3734, 0.3533, 0.4050, 0.3354, 0.3831, 0.4869, 0.5121, 0.3974, 0.3999, 0.4275, 0.4649, 0.4998, 0.3445, 0.4738},
+      { 0.1745, 0.2261, 0.2797, 0.2316, 0.3448, 0.2478, 0.3144, 0.2437, 0.3632, 0.1845, 0.1962, 0.3848, 0.3974, 0.3989, 0.3875, 0.3840, 0.3921, 0.4011, 0.2693, 0.3832},
+      { 0.1609, 0.2283, 0.2723, 0.2211, 0.3462, 0.2243, 0.2924, 0.2216, 0.4153, 0.1693, 0.1849, 0.3836, 0.3999, 0.3875, 0.3991, 0.3892, 0.3967, 0.4032, 0.2560, 0.3808},
+      { 0.1859, 0.2313, 0.2962, 0.2394, 0.3394, 0.2485, 0.3021, 0.2400, 0.3587, 0.2158, 0.2281, 0.4068, 0.4275, 0.3840, 0.3892, 0.4012, 0.3968, 0.4228, 0.2886, 0.3833},
+      { 0.2061, 0.2479, 0.2979, 0.2393, 0.3715, 0.2851, 0.3333, 0.2868, 0.3737, 0.2583, 0.2809, 0.4379, 0.4649, 0.3921, 0.3967, 0.3968, 0.4507, 0.4693, 0.3192, 0.4102},
+      { 0.2090, 0.2465, 0.3226, 0.2622, 0.3778, 0.2938, 0.3376, 0.2786, 0.3541, 0.2634, 0.2834, 0.4628, 0.4998, 0.4011, 0.4032, 0.4228, 0.4693, 0.4905, 0.3210, 0.4294},
+      { 0.2062, 0.2267, 0.2877, 0.2310, 0.2979, 0.2582, 0.2748, 0.2565, 0.2944, 0.2435, 0.2549, 0.3452, 0.3445, 0.2693, 0.2560, 0.2886, 0.3192, 0.3210, 0.2951, 0.3012},
+      { 0.2182, 0.2331, 0.2935, 0.2162, 0.3499, 0.2847, 0.3241, 0.2839, 0.3491, 0.2759, 0.2703, 0.4148, 0.4738, 0.3832, 0.3808, 0.3833, 0.4102, 0.4294, 0.3012, 0.4868}},
+    {
+      { 0.0912, 0.0708, 0.3430, 0.2880, 0.2555, 0.2022, 0.1812, 0.2045, 0.1986, 0.1131, 0.1590, 0.2459, 0.2213, 0.0990, 0.0771, 0.1210, 0.1504, 0.1545, 0.1477, 0.1863},
+      { 0.0708, 0.1075, 0.3580, 0.2863, 0.2578, 0.1895, 0.1913, 0.1835, 0.2102, 0.1015, 0.1608, 0.2758, 0.2783, 0.1253, 0.1165, 0.1442, 0.1674, 0.1829, 0.1584, 0.1767},
+      { 0.3430, 0.3580, 0.2476, 0.1846, 0.2751, 0.2525, 0.2532, 0.2676, 0.2749, 0.2009, 0.2346, 0.3452, 0.3502, 0.2032, 0.1817, 0.2293, 0.2401, 0.2669, 0.2313, 0.2695},
+      { 0.2880, 0.2863, 0.1846, 0.1367, 0.2119, 0.1807, 0.1841, 0.2108, 0.2112, 0.1520, 0.1470, 0.2778, 0.2617, 0.1454, 0.1197, 0.1652, 0.1603, 0.2016, 0.1762, 0.1798},
+      { 0.2555, 0.2578, 0.2751, 0.2119, 0.3355, 0.3082, 0.3063, 0.2553, 0.2554, 0.2156, 0.2823, 0.3654, 0.3628, 0.2416, 0.2105, 0.2510, 0.2787, 0.3022, 0.2728, 0.3071},
+      { 0.2022, 0.1895, 0.2525, 0.1807, 0.3082, 0.3035, 0.3014, 0.2656, 0.2598, 0.2265, 0.2390, 0.3094, 0.3202, 0.2611, 0.2422, 0.2568, 0.2926, 0.3046, 0.2756, 0.3377},
+      { 0.1812, 0.1913, 0.2532, 0.1841, 0.3063, 0.3014, 0.3121, 0.2545, 0.2589, 0.2520, 0.2342, 0.3422, 0.3628, 0.2981, 0.2738, 0.2943, 0.3279, 0.3413, 0.3175, 0.3597},
+      { 0.2045, 0.1835, 0.2676, 0.2108, 0.2553, 0.2656, 0.2545, 0.2675, 0.2545, 0.2360, 0.2280, 0.2696, 0.2769, 0.1534, 0.1255, 0.1708, 0.2217, 0.2172, 0.2125, 0.2630},
+      { 0.1986, 0.2102, 0.2749, 0.2112, 0.2554, 0.2598, 0.2589, 0.2545, 0.2572, 0.2140, 0.2360, 0.3071, 0.3476, 0.1893, 0.1693, 0.2172, 0.2422, 0.2560, 0.2395, 0.2741},
+      { 0.1131, 0.1015, 0.2009, 0.1520, 0.2156, 0.2265, 0.2520, 0.2360, 0.2140, 0.1904, 0.1848, 0.2680, 0.2695, 0.2903, 0.2994, 0.2583, 0.3005, 0.2710, 0.2262, 0.3031},
+      { 0.1590, 0.1608, 0.2346, 0.1470, 0.2823, 0.2390, 0.2342, 0.2280, 0.2360, 0.1848, 0.2078, 0.3249, 0.3363, 0.1659, 0.1450, 0.1948, 0.2570, 0.2491, 0.2206, 0.2782},
+      { 0.2459, 0.2758, 0.3452, 0.2778, 0.3654, 0.3094, 0.3422, 0.2696, 0.3071, 0.2680, 0.3249, 0.4277, 0.4545, 0.3752, 0.3489, 0.3898, 0.4133, 0.4431, 0.3646, 0.4089},
+      { 0.2213, 0.2783, 0.3502, 0.2617, 0.3628, 0.3202, 0.3628, 0.2769, 0.3476, 0.2695, 0.3363, 0.4545, 0.5204, 0.3859, 0.3619, 0.3983, 0.4444, 0.4792, 0.3647, 0.4235},
+      { 0.0990, 0.1253, 0.2032, 0.1454, 0.2416, 0.2611, 0.2981, 0.1534, 0.1893, 0.2903, 0.1659, 0.3752, 0.3859, 0.4325, 0.4094, 0.4064, 0.3868, 0.4244, 0.4001, 0.4435},
+      { 0.0771, 0.1165, 0.1817, 0.1197, 0.2105, 0.2422, 0.2738, 0.1255, 0.1693, 0.2994, 0.1450, 0.3489, 0.3619, 0.4094, 0.4096, 0.3969, 0.3743, 0.4076, 0.3928, 0.4166},
+      { 0.1210, 0.1442, 0.2293, 0.1652, 0.2510, 0.2568, 0.2943, 0.1708, 0.2172, 0.2583, 0.1948, 0.3898, 0.3983, 0.4064, 0.3969, 0.4041, 0.3941, 0.4295, 0.3808, 0.4049},
+      { 0.1504, 0.1674, 0.2401, 0.1603, 0.2787, 0.2926, 0.3279, 0.2217, 0.2422, 0.3005, 0.2570, 0.4133, 0.4444, 0.3868, 0.3743, 0.3941, 0.4690, 0.4559, 0.3889, 0.4483},
+      { 0.1545, 0.1829, 0.2669, 0.2016, 0.3022, 0.3046, 0.3413, 0.2172, 0.2560, 0.2710, 0.2491, 0.4431, 0.4792, 0.4244, 0.4076, 0.4295, 0.4559, 0.4881, 0.3933, 0.4532},
+      { 0.1477, 0.1584, 0.2313, 0.1762, 0.2728, 0.2756, 0.3175, 0.2125, 0.2395, 0.2262, 0.2206, 0.3646, 0.3647, 0.4001, 0.3928, 0.3808, 0.3889, 0.3933, 0.3588, 0.4103},
+      { 0.1863, 0.1767, 0.2695, 0.1798, 0.3071, 0.3377, 0.3597, 0.2630, 0.2741, 0.3031, 0.2782, 0.4089, 0.4235, 0.4435, 0.4166, 0.4049, 0.4483, 0.4532, 0.4103, 0.5889}},
+    {
+      { 0.1261, 0.1062, 0.3671, 0.3108, 0.2746, 0.2174, 0.1937, 0.2382, 0.2425, 0.1795, 0.1773, 0.2639, 0.2534, 0.1048, 0.0871, 0.1236, 0.1498, 0.1621, 0.1466, 0.1554},
+      { 0.1062, 0.1177, 0.3683, 0.3069, 0.2575, 0.2075, 0.1959, 0.2165, 0.2159, 0.1656, 0.1832, 0.2600, 0.2628, 0.1148, 0.0872, 0.1193, 0.1363, 0.1634, 0.1448, 0.1433},
+      { 0.3671, 0.3683, 0.2451, 0.1834, 0.2778, 0.2595, 0.2711, 0.2852, 0.2837, 0.2500, 0.2592, 0.3509, 0.3554, 0.2081, 0.1871, 0.2334, 0.2454, 0.2809, 0.2278, 0.2658},
+      { 0.3108, 0.3069, 0.1834, 0.1361, 0.2169, 0.1942, 0.2046, 0.2327, 0.2264, 0.1679, 0.1763, 0.2920, 0.2901, 0.1647, 0.1403, 0.1615, 0.1641, 0.2144, 0.1619, 0.1818},
+      { 0.2746, 0.2575, 0.2778, 0.2169, 0.3439, 0.3094, 0.3171, 0.2903, 0.2804, 0.2508, 0.2872, 0.3756, 0.3829, 0.2472, 0.2230, 0.2543, 0.2958, 0.3196, 0.2439, 0.2953},
+      { 0.2174, 0.2075, 0.2595, 0.1942, 0.3094, 0.2570, 0.2567, 0.2725, 0.2794, 0.2308, 0.2612, 0.2922, 0.3131, 0.2021, 0.1956, 0.2173, 0.2483, 0.2630, 0.2233, 0.2568},
+      { 0.1937, 0.1959, 0.2711, 0.2046, 0.3171, 0.2567, 0.2843, 0.2765, 0.2730, 0.2244, 0.2973, 0.3356, 0.3399, 0.2762, 0.2649, 0.2696, 0.3015, 0.3114, 0.2656, 0.3186},
+      { 0.2382, 0.2165, 0.2852, 0.2327, 0.2903, 0.2725, 0.2765, 0.3012, 0.2914, 0.2337, 0.2683, 0.3144, 0.3434, 0.1809, 0.1607, 0.1977, 0.2406, 0.2548, 0.2309, 0.2588},
+      { 0.2425, 0.2159, 0.2837, 0.2264, 0.2804, 0.2794, 0.2730, 0.2914, 0.2968, 0.2376, 0.2837, 0.3200, 0.3415, 0.1944, 0.1849, 0.2202, 0.2549, 0.2608, 0.2364, 0.2575},
+      { 0.1795, 0.1656, 0.2500, 0.1679, 0.2508, 0.2308, 0.2244, 0.2337, 0.2376, 0.2113, 0.2130, 0.2850, 0.3018, 0.1615, 0.1450, 0.1850, 0.2455, 0.2476, 0.2077, 0.2382},
+      { 0.1773, 0.1832, 0.2592, 0.1763, 0.2872, 0.2612, 0.2973, 0.2683, 0.2837, 0.2130, 0.2503, 0.3662, 0.3830, 0.3079, 0.3425, 0.2957, 0.3429, 0.3309, 0.2554, 0.3262},
+      { 0.2639, 0.2600, 0.3509, 0.2920, 0.3756, 0.2922, 0.3356, 0.3144, 0.3200, 0.2850, 0.3662, 0.4264, 0.4532, 0.3509, 0.3476, 0.3844, 0.4046, 0.4384, 0.3305, 0.3935},
+      { 0.2534, 0.2628, 0.3554, 0.2901, 0.3829, 0.3131, 0.3399, 0.3434, 0.3415, 0.3018, 0.3830, 0.4532, 0.5267, 0.3607, 0.3560, 0.4131, 0.4476, 0.4942, 0.3242, 0.4061},
+      { 0.1048, 0.1148, 0.2081, 0.1647, 0.2472, 0.2021, 0.2762, 0.1809, 0.1944, 0.1615, 0.3079, 0.3509, 0.3607, 0.3971, 0.3918, 0.3809, 0.3554, 0.3968, 0.2863, 0.3935},
+      { 0.0871, 0.0872, 0.1871, 0.1403, 0.2230, 0.1956, 0.2649, 0.1607, 0.1849, 0.1450, 0.3425, 0.3476, 0.3560, 0.3918, 0.4013, 0.3781, 0.3517, 0.3902, 0.2832, 0.3789},
+      { 0.1236, 0.1193, 0.2334, 0.1615, 0.2543, 0.2173, 0.2696, 0.1977, 0.2202, 0.1850, 0.2957, 0.3844, 0.4131, 0.3809, 0.3781, 0.3970, 0.3729, 0.4237, 0.2872, 0.3881},
+      { 0.1498, 0.1363, 0.2454, 0.1641, 0.2958, 0.2483, 0.3015, 0.2406, 0.2549, 0.2455, 0.3429, 0.4046, 0.4476, 0.3554, 0.3517, 0.3729, 0.4345, 0.4558, 0.3047, 0.3995},
+      { 0.1621, 0.1634, 0.2809, 0.2144, 0.3196, 0.2630, 0.3114, 0.2548, 0.2608, 0.2476, 0.3309, 0.4384, 0.4942, 0.3968, 0.3902, 0.4237, 0.4558, 0.4729, 0.3208, 0.4428},
+      { 0.1466, 0.1448, 0.2278, 0.1619, 0.2439, 0.2233, 0.2656, 0.2309, 0.2364, 0.2077, 0.2554, 0.3305, 0.3242, 0.2863, 0.2832, 0.2872, 0.3047, 0.3208, 0.2646, 0.3109},
+      { 0.1554, 0.1433, 0.2658, 0.1818, 0.2953, 0.2568, 0.3186, 0.2588, 0.2575, 0.2382, 0.3262, 0.3935, 0.4061, 0.3935, 0.3789, 0.3881, 0.3995, 0.4428, 0.3109, 0.5154}},
+    {
+      { 0.3235, 0.3025, 0.5406, 0.4597, 0.4321, 0.3884, 0.3719, 0.3936, 0.3965, 0.3491, 0.3539, 0.3871, 0.4318, 0.2994, 0.2816, 0.3181, 0.3519, 0.3501, 0.3334, 0.3342},
+      { 0.3025, 0.3105, 0.5483, 0.4805, 0.4315, 0.3792, 0.3828, 0.3874, 0.3963, 0.3308, 0.3363, 0.4078, 0.4752, 0.3413, 0.3302, 0.3581, 0.3806, 0.3855, 0.3390, 0.3536},
+      { 0.5406, 0.5483, 0.3886, 0.3355, 0.4295, 0.4192, 0.4280, 0.4164, 0.4414, 0.3834, 0.3847, 0.4654, 0.5156, 0.3970, 0.3868, 0.4203, 0.4300, 0.4496, 0.3937, 0.4182},
+      { 0.4597, 0.4805, 0.3355, 0.3095, 0.3772, 0.3727, 0.3793, 0.3759, 0.3828, 0.3281, 0.3091, 0.4309, 0.4767, 0.3582, 0.3568, 0.3835, 0.3758, 0.4096, 0.3499, 0.3749},
+      { 0.4321, 0.4315, 0.4295, 0.3772, 0.5144, 0.4626, 0.4837, 0.4364, 0.4353, 0.3894, 0.4052, 0.5056, 0.5332, 0.4581, 0.4631, 0.4728, 0.4834, 0.4938, 0.4025, 0.4527},
+      { 0.3884, 0.3792, 0.4192, 0.3727, 0.4626, 0.4228, 0.4237, 0.4290, 0.4281, 0.3865, 0.3866, 0.4274, 0.4986, 0.3923, 0.3850, 0.4008, 0.4395, 0.4585, 0.3862, 0.4200},
+      { 0.3719, 0.3828, 0.4280, 0.3793, 0.4837, 0.4237, 0.4521, 0.4442, 0.4364, 0.3743, 0.3854, 0.4715, 0.5174, 0.4542, 0.4439, 0.4575, 0.4743, 0.4897, 0.4139, 0.4584},
+      { 0.3936, 0.3874, 0.4164, 0.3759, 0.4364, 0.4290, 0.4442, 0.4736, 0.4323, 0.3879, 0.3934, 0.4272, 0.4846, 0.3592, 0.3514, 0.3748, 0.4183, 0.4308, 0.3641, 0.4047},
+      { 0.3965, 0.3963, 0.4414, 0.3828, 0.4353, 0.4281, 0.4364, 0.4323, 0.4426, 0.3850, 0.3980, 0.4552, 0.5249, 0.3861, 0.3836, 0.4172, 0.4367, 0.4557, 0.3873, 0.4243},
+      { 0.3491, 0.3308, 0.3834, 0.3281, 0.3894, 0.3865, 0.3743, 0.3879, 0.3850, 0.3874, 0.3569, 0.4107, 0.4790, 0.3603, 0.3489, 0.3879, 0.4244, 0.4344, 0.3745, 0.4078},
+      { 0.3539, 0.3363, 0.3847, 0.3091, 0.4052, 0.3866, 0.3854, 0.3934, 0.3980, 0.3569, 0.3829, 0.4679, 0.5358, 0.3613, 0.3476, 0.3857, 0.4285, 0.4496, 0.3727, 0.4236},
+      { 0.3871, 0.4078, 0.4654, 0.4309, 0.5056, 0.4274, 0.4715, 0.4272, 0.4552, 0.4107, 0.4679, 0.5142, 0.5489, 0.5459, 0.5834, 0.5503, 0.5673, 0.5627, 0.4543, 0.5182},
+      { 0.4318, 0.4752, 0.5156, 0.4767, 0.5332, 0.4986, 0.5174, 0.4846, 0.5249, 0.4790, 0.5358, 0.5489, 0.6066, 0.5550, 0.5619, 0.5794, 0.6113, 0.6090, 0.5147, 0.5829},
+      { 0.2994, 0.3413, 0.3970, 0.3582, 0.4581, 0.3923, 0.4542, 0.3592, 0.3861, 0.3603, 0.3613, 0.5459, 0.5550, 0.5741, 0.5620, 0.5524, 0.5321, 0.5662, 0.4716, 0.5392},
+      { 0.2816, 0.3302, 0.3868, 0.3568, 0.4631, 0.3850, 0.4439, 0.3514, 0.3836, 0.3489, 0.3476, 0.5834, 0.5619, 0.5620, 0.5733, 0.5564, 0.5336, 0.5745, 0.4677, 0.5272},
+      { 0.3181, 0.3581, 0.4203, 0.3835, 0.4728, 0.4008, 0.4575, 0.3748, 0.4172, 0.3879, 0.3857, 0.5503, 0.5794, 0.5524, 0.5564, 0.5638, 0.5498, 0.5723, 0.4882, 0.5304},
+      { 0.3519, 0.3806, 0.4300, 0.3758, 0.4834, 0.4395, 0.4743, 0.4183, 0.4367, 0.4244, 0.4285, 0.5673, 0.6113, 0.5321, 0.5336, 0.5498, 0.5937, 0.5991, 0.4839, 0.5468},
+      { 0.3501, 0.3855, 0.4496, 0.4096, 0.4938, 0.4585, 0.4897, 0.4308, 0.4557, 0.4344, 0.4496, 0.5627, 0.6090, 0.5662, 0.5745, 0.5723, 0.5991, 0.5997, 0.5058, 0.5726},
+      { 0.3334, 0.3390, 0.3937, 0.3499, 0.4025, 0.3862, 0.4139, 0.3641, 0.3873, 0.3745, 0.3727, 0.4543, 0.5147, 0.4716, 0.4677, 0.4882, 0.4839, 0.5058, 0.4479, 0.4796},
+      { 0.3342, 0.3536, 0.4182, 0.3749, 0.4527, 0.4200, 0.4584, 0.4047, 0.4243, 0.4078, 0.4236, 0.5182, 0.5829, 0.5392, 0.5272, 0.5304, 0.5468, 0.5726, 0.4796, 0.6196}},
+    {
+      { 0.3582, 0.3157, 0.5444, 0.4646, 0.4614, 0.3924, 0.3821, 0.3970, 0.4465, 0.3581, 0.3644, 0.4461, 0.3919, 0.3194, 0.3102, 0.3485, 0.3734, 0.3799, 0.3397, 0.3456},
+      { 0.3157, 0.3283, 0.5426, 0.4770, 0.4457, 0.3861, 0.3885, 0.3661, 0.4035, 0.3405, 0.3309, 0.4569, 0.4155, 0.3509, 0.3448, 0.3750, 0.4009, 0.4041, 0.3466, 0.3522},
+      { 0.5444, 0.5426, 0.3896, 0.3438, 0.4546, 0.4304, 0.4503, 0.4530, 0.4372, 0.3928, 0.3821, 0.5149, 0.4866, 0.3989, 0.3870, 0.4315, 0.4521, 0.4655, 0.3957, 0.4306},
+      { 0.4646, 0.4770, 0.3438, 0.3241, 0.3928, 0.3661, 0.3783, 0.3597, 0.3851, 0.3345, 0.3358, 0.4644, 0.4080, 0.3635, 0.3613, 0.3868, 0.3867, 0.4294, 0.3407, 0.3757},
+      { 0.4614, 0.4457, 0.4546, 0.3928, 0.5153, 0.4795, 0.4715, 0.4583, 0.4578, 0.4016, 0.4407, 0.5600, 0.5112, 0.4612, 0.4612, 0.4837, 0.5288, 0.5211, 0.4148, 0.4897},
+      { 0.3924, 0.3861, 0.4304, 0.3661, 0.4795, 0.4468, 0.4368, 0.4382, 0.4233, 0.4130, 0.3854, 0.4731, 0.4600, 0.4069, 0.4082, 0.4269, 0.4606, 0.4783, 0.3993, 0.4461},
+      { 0.3821, 0.3885, 0.4503, 0.3783, 0.4715, 0.4368, 0.4604, 0.4528, 0.4248, 0.3877, 0.3827, 0.4997, 0.5020, 0.4653, 0.4613, 0.4713, 0.4929, 0.5061, 0.4239, 0.4623},
+      { 0.3970, 0.3661, 0.4530, 0.3597, 0.4583, 0.4382, 0.4528, 0.4823, 0.4474, 0.4088, 0.4037, 0.4710, 0.4599, 0.3687, 0.3672, 0.3926, 0.4496, 0.4574, 0.3683, 0.4150},
+      { 0.4465, 0.4035, 0.4372, 0.3851, 0.4578, 0.4233, 0.4248, 0.4474, 0.4487, 0.3906, 0.4112, 0.4893, 0.4934, 0.3941, 0.3999, 0.4376, 0.4662, 0.4787, 0.4042, 0.4426},
+      { 0.3581, 0.3405, 0.3928, 0.3345, 0.4016, 0.4130, 0.3877, 0.4088, 0.3906, 0.3808, 0.3653, 0.4571, 0.4387, 0.3685, 0.3619, 0.3952, 0.4359, 0.4496, 0.3758, 0.4321},
+      { 0.3644, 0.3309, 0.3821, 0.3358, 0.4407, 0.3854, 0.3827, 0.4037, 0.4112, 0.3653, 0.4155, 0.5069, 0.5165, 0.3595, 0.3560, 0.4076, 0.4419, 0.4568, 0.3827, 0.4204},
+      { 0.4461, 0.4569, 0.5149, 0.4644, 0.5600, 0.4731, 0.4997, 0.4710, 0.4893, 0.4571, 0.5069, 0.5519, 0.5714, 0.5395, 0.5619, 0.5649, 0.5893, 0.5960, 0.4870, 0.5681},
+      { 0.3919, 0.4155, 0.4866, 0.4080, 0.5112, 0.4600, 0.5020, 0.4599, 0.4934, 0.4387, 0.5165, 0.5714, 0.5800, 0.5775, 0.6192, 0.5946, 0.6184, 0.6170, 0.4965, 0.6001},
+      { 0.3194, 0.3509, 0.3989, 0.3635, 0.4612, 0.4069, 0.4653, 0.3687, 0.3941, 0.3685, 0.3595, 0.5395, 0.5775, 0.5726, 0.5632, 0.5640, 0.5405, 0.5719, 0.4793, 0.5470},
+      { 0.3102, 0.3448, 0.3870, 0.3613, 0.4612, 0.4082, 0.4613, 0.3672, 0.3999, 0.3619, 0.3560, 0.5619, 0.6192, 0.5632, 0.5851, 0.5705, 0.5538, 0.5908, 0.4790, 0.5334},
+      { 0.3485, 0.3750, 0.4315, 0.3868, 0.4837, 0.4269, 0.4713, 0.3926, 0.4376, 0.3952, 0.4076, 0.5649, 0.5946, 0.5640, 0.5705, 0.5869, 0.5727, 0.6031, 0.5055, 0.5552},
+      { 0.3734, 0.4009, 0.4521, 0.3867, 0.5288, 0.4606, 0.4929, 0.4496, 0.4662, 0.4359, 0.4419, 0.5893, 0.6184, 0.5405, 0.5538, 0.5727, 0.6027, 0.6308, 0.5039, 0.5494},
+      { 0.3799, 0.4041, 0.4655, 0.4294, 0.5211, 0.4783, 0.5061, 0.4574, 0.4787, 0.4496, 0.4568, 0.5960, 0.6170, 0.5719, 0.5908, 0.6031, 0.6308, 0.6352, 0.5211, 0.5876},
+      { 0.3397, 0.3466, 0.3957, 0.3407, 0.4148, 0.3993, 0.4239, 0.3683, 0.4042, 0.3758, 0.3827, 0.4870, 0.4965, 0.4793, 0.4790, 0.5055, 0.5039, 0.5211, 0.4527, 0.4897},
+      { 0.3456, 0.3522, 0.4306, 0.3757, 0.4897, 0.4461, 0.4623, 0.4150, 0.4426, 0.4321, 0.4204, 0.5681, 0.6001, 0.5470, 0.5334, 0.5552, 0.5494, 0.5876, 0.4897, 0.6440}},
+    {
+      { 0.2561, 0.2322, 0.4791, 0.4133, 0.4241, 0.3461, 0.3321, 0.3556, 0.3496, 0.3135, 0.2869, 0.4302, 0.4178, 0.2862, 0.2865, 0.3146, 0.3260, 0.3427, 0.2895, 0.3212},
+      { 0.2322, 0.2517, 0.5040, 0.4435, 0.4157, 0.3411, 0.3543, 0.3431, 0.3414, 0.2954, 0.2801, 0.4372, 0.4446, 0.3306, 0.3292, 0.3453, 0.3440, 0.3725, 0.3059, 0.3318},
+      { 0.4791, 0.5040, 0.3516, 0.2840, 0.4118, 0.3780, 0.3951, 0.3796, 0.4063, 0.3524, 0.3428, 0.4825, 0.4929, 0.3880, 0.3861, 0.4081, 0.4024, 0.4371, 0.3606, 0.3961},
+      { 0.4133, 0.4435, 0.2840, 0.2704, 0.3479, 0.3237, 0.3447, 0.3217, 0.3390, 0.2876, 0.2670, 0.4610, 0.4510, 0.3546, 0.3563, 0.3677, 0.3451, 0.4073, 0.3187, 0.3463},
+      { 0.4241, 0.4157, 0.4118, 0.3479, 0.5278, 0.4870, 0.4866, 0.4339, 0.4265, 0.3951, 0.3564, 0.5373, 0.5278, 0.4460, 0.4515, 0.4612, 0.4760, 0.5126, 0.4110, 0.4739},
+      { 0.3461, 0.3411, 0.3780, 0.3237, 0.4870, 0.4204, 0.4268, 0.4163, 0.4062, 0.3755, 0.3546, 0.4720, 0.5099, 0.4228, 0.4365, 0.4354, 0.4573, 0.4863, 0.3940, 0.4516},
+      { 0.3321, 0.3543, 0.3951, 0.3447, 0.4866, 0.4268, 0.4634, 0.4418, 0.4115, 0.3759, 0.3657, 0.4915, 0.5016, 0.4958, 0.5105, 0.4937, 0.4910, 0.5184, 0.4363, 0.5002},
+      { 0.3556, 0.3431, 0.3796, 0.3217, 0.4339, 0.4163, 0.4418, 0.4708, 0.4098, 0.3739, 0.3490, 0.4553, 0.4791, 0.3653, 0.3794, 0.3823, 0.4223, 0.4308, 0.3448, 0.4100},
+      { 0.3496, 0.3414, 0.4063, 0.3390, 0.4265, 0.4062, 0.4115, 0.4098, 0.4148, 0.3616, 0.3508, 0.4794, 0.5155, 0.3826, 0.3875, 0.4141, 0.4178, 0.4503, 0.3618, 0.4030},
+      { 0.3135, 0.2954, 0.3524, 0.2876, 0.3951, 0.3755, 0.3759, 0.3739, 0.3616, 0.3904, 0.3319, 0.4948, 0.5131, 0.3989, 0.4094, 0.4341, 0.4541, 0.5054, 0.3819, 0.4347},
+      { 0.2869, 0.2801, 0.3428, 0.2670, 0.3564, 0.3546, 0.3657, 0.3490, 0.3508, 0.3319, 0.3568, 0.4610, 0.4901, 0.3752, 0.3918, 0.3985, 0.4253, 0.4447, 0.3580, 0.4189},
+      { 0.4302, 0.4372, 0.4825, 0.4610, 0.5373, 0.4720, 0.4915, 0.4553, 0.4794, 0.4948, 0.4610, 0.5535, 0.5784, 0.5447, 0.5620, 0.5680, 0.5730, 0.6163, 0.5037, 0.5431},
+      { 0.4178, 0.4446, 0.4929, 0.4510, 0.5278, 0.5099, 0.5016, 0.4791, 0.5155, 0.5131, 0.4901, 0.5784, 0.6287, 0.5468, 0.5632, 0.5884, 0.6097, 0.6515, 0.5138, 0.5783},
+      { 0.2862, 0.3306, 0.3880, 0.3546, 0.4460, 0.4228, 0.4958, 0.3653, 0.3826, 0.3989, 0.3752, 0.5447, 0.5468, 0.6334, 0.6319, 0.5974, 0.5558, 0.6024, 0.5189, 0.5865},
+      { 0.2865, 0.3292, 0.3861, 0.3563, 0.4515, 0.4365, 0.5105, 0.3794, 0.3875, 0.4094, 0.3918, 0.5620, 0.5632, 0.6319, 0.6504, 0.6151, 0.5805, 0.6167, 0.5402, 0.6067},
+      { 0.3146, 0.3453, 0.4081, 0.3677, 0.4612, 0.4354, 0.4937, 0.3823, 0.4141, 0.4341, 0.3985, 0.5680, 0.5884, 0.5974, 0.6151, 0.6110, 0.5823, 0.6227, 0.5381, 0.5814},
+      { 0.3260, 0.3440, 0.4024, 0.3451, 0.4760, 0.4573, 0.4910, 0.4223, 0.4178, 0.4541, 0.4253, 0.5730, 0.6097, 0.5558, 0.5805, 0.5823, 0.6134, 0.6397, 0.5270, 0.5798},
+      { 0.3427, 0.3725, 0.4371, 0.4073, 0.5126, 0.4863, 0.5184, 0.4308, 0.4503, 0.5054, 0.4447, 0.6163, 0.6515, 0.6024, 0.6167, 0.6227, 0.6397, 0.6811, 0.5610, 0.6214},
+      { 0.2895, 0.3059, 0.3606, 0.3187, 0.4110, 0.3940, 0.4363, 0.3448, 0.3618, 0.3819, 0.3580, 0.5037, 0.5138, 0.5189, 0.5402, 0.5381, 0.5270, 0.5610, 0.4706, 0.5073},
+      { 0.3212, 0.3318, 0.3961, 0.3463, 0.4739, 0.4516, 0.5002, 0.4100, 0.4030, 0.4347, 0.4189, 0.5431, 0.5783, 0.5865, 0.6067, 0.5814, 0.5798, 0.6214, 0.5073, 0.6155}},
+    {
+      { 0.2970, 0.2685, 0.5146, 0.4462, 0.4483, 0.3749, 0.3571, 0.3750, 0.3758, 0.3325, 0.3015, 0.4586, 0.4615, 0.3121, 0.2985, 0.3323, 0.3444, 0.3615, 0.3084, 0.3343},
+      { 0.2685, 0.2804, 0.5339, 0.4662, 0.4373, 0.3630, 0.3744, 0.3641, 0.3729, 0.3086, 0.2941, 0.4573, 0.4598, 0.3464, 0.3338, 0.3642, 0.3629, 0.3987, 0.3223, 0.3369},
+      { 0.5146, 0.5339, 0.3711, 0.3100, 0.4264, 0.4040, 0.4186, 0.3928, 0.4296, 0.3691, 0.3673, 0.4997, 0.5198, 0.4022, 0.3906, 0.4270, 0.4186, 0.4564, 0.3795, 0.4066},
+      { 0.4462, 0.4662, 0.3100, 0.2969, 0.3709, 0.3526, 0.3678, 0.3435, 0.3607, 0.3124, 0.2981, 0.4825, 0.4795, 0.3680, 0.3616, 0.3868, 0.3711, 0.4293, 0.3336, 0.3590},
+      { 0.4483, 0.4373, 0.4264, 0.3709, 0.5648, 0.5237, 0.5122, 0.4598, 0.4546, 0.4244, 0.3736, 0.5535, 0.5531, 0.4673, 0.4624, 0.4767, 0.4925, 0.5324, 0.4238, 0.4936},
+      { 0.3749, 0.3630, 0.4040, 0.3526, 0.5237, 0.4394, 0.4385, 0.4352, 0.4317, 0.4008, 0.3706, 0.4918, 0.5242, 0.4374, 0.4373, 0.4508, 0.4685, 0.5037, 0.4100, 0.4643},
+      { 0.3571, 0.3744, 0.4186, 0.3678, 0.5122, 0.4385, 0.4765, 0.4612, 0.4387, 0.4013, 0.3871, 0.5154, 0.5304, 0.5127, 0.5161, 0.5119, 0.5159, 0.5438, 0.4446, 0.5147},
+      { 0.3750, 0.3641, 0.3928, 0.3435, 0.4598, 0.4352, 0.4612, 0.4970, 0.4326, 0.3753, 0.3619, 0.4773, 0.4989, 0.3838, 0.3833, 0.3974, 0.4456, 0.4600, 0.3541, 0.4196},
+      { 0.3758, 0.3729, 0.4296, 0.3607, 0.4546, 0.4317, 0.4387, 0.4326, 0.4260, 0.3765, 0.3846, 0.4937, 0.5516, 0.4021, 0.3991, 0.4301, 0.4290, 0.4716, 0.3769, 0.4170},
+      { 0.3325, 0.3086, 0.3691, 0.3124, 0.4244, 0.4008, 0.4013, 0.3753, 0.3765, 0.3909, 0.3513, 0.5163, 0.5337, 0.4161, 0.4096, 0.4415, 0.4625, 0.5187, 0.4029, 0.4558},
+      { 0.3015, 0.2941, 0.3673, 0.2981, 0.3736, 0.3706, 0.3871, 0.3619, 0.3846, 0.3513, 0.3891, 0.4892, 0.5264, 0.3941, 0.4013, 0.4208, 0.4457, 0.4608, 0.3789, 0.4662},
+      { 0.4586, 0.4573, 0.4997, 0.4825, 0.5535, 0.4918, 0.5154, 0.4773, 0.4937, 0.5163, 0.4892, 0.5851, 0.6033, 0.5755, 0.5733, 0.5885, 0.5921, 0.6416, 0.5224, 0.5686},
+      { 0.4615, 0.4598, 0.5198, 0.4795, 0.5531, 0.5242, 0.5304, 0.4989, 0.5516, 0.5337, 0.5264, 0.6033, 0.6511, 0.5907, 0.5851, 0.6174, 0.6414, 0.6854, 0.5463, 0.6140},
+      { 0.3121, 0.3464, 0.4022, 0.3680, 0.4673, 0.4374, 0.5127, 0.3838, 0.4021, 0.4161, 0.3941, 0.5755, 0.5907, 0.6609, 0.6504, 0.6318, 0.5899, 0.6413, 0.5311, 0.6046},
+      { 0.2985, 0.3338, 0.3906, 0.3616, 0.4624, 0.4373, 0.5161, 0.3833, 0.3991, 0.4096, 0.4013, 0.5733, 0.5851, 0.6504, 0.6780, 0.6417, 0.6041, 0.6427, 0.5345, 0.6102},
+      { 0.3323, 0.3642, 0.4270, 0.3868, 0.4767, 0.4508, 0.5119, 0.3974, 0.4301, 0.4415, 0.4208, 0.5885, 0.6174, 0.6318, 0.6417, 0.6428, 0.6102, 0.6488, 0.5516, 0.5996},
+      { 0.3444, 0.3629, 0.4186, 0.3711, 0.4925, 0.4685, 0.5159, 0.4456, 0.4290, 0.4625, 0.4457, 0.5921, 0.6414, 0.5899, 0.6041, 0.6102, 0.6435, 0.6689, 0.5387, 0.5987},
+      { 0.3615, 0.3987, 0.4564, 0.4293, 0.5324, 0.5037, 0.5438, 0.4600, 0.4716, 0.5187, 0.4608, 0.6416, 0.6854, 0.6413, 0.6427, 0.6488, 0.6689, 0.7103, 0.5838, 0.6469},
+      { 0.3084, 0.3223, 0.3795, 0.3336, 0.4238, 0.4100, 0.4446, 0.3541, 0.3769, 0.4029, 0.3789, 0.5224, 0.5463, 0.5311, 0.5345, 0.5516, 0.5387, 0.5838, 0.4835, 0.5180},
+      { 0.3343, 0.3369, 0.4066, 0.3590, 0.4936, 0.4643, 0.5147, 0.4196, 0.4170, 0.4558, 0.4662, 0.5686, 0.6140, 0.6046, 0.6102, 0.5996, 0.5987, 0.6469, 0.5180, 0.6305}},
+    {
+      { 0.2720, 0.2540, 0.4970, 0.4266, 0.4140, 0.3445, 0.3245, 0.3470, 0.3523, 0.3185, 0.3038, 0.4412, 0.4322, 0.2818, 0.2777, 0.3016, 0.3172, 0.3357, 0.2927, 0.3029},
+      { 0.2540, 0.2636, 0.5160, 0.4481, 0.4167, 0.3423, 0.3403, 0.3480, 0.3527, 0.2944, 0.2955, 0.4374, 0.4551, 0.3152, 0.3140, 0.3307, 0.3425, 0.3690, 0.3075, 0.3071},
+      { 0.4970, 0.5160, 0.3523, 0.2994, 0.4033, 0.3826, 0.3911, 0.3873, 0.4170, 0.3559, 0.3611, 0.4847, 0.5072, 0.3747, 0.3779, 0.4018, 0.4022, 0.4409, 0.3685, 0.3935},
+      { 0.4266, 0.4481, 0.2994, 0.2781, 0.3456, 0.3299, 0.3380, 0.3400, 0.3460, 0.2950, 0.2861, 0.4502, 0.4640, 0.3396, 0.3458, 0.3599, 0.3604, 0.4055, 0.3209, 0.3345},
+      { 0.4140, 0.4167, 0.4033, 0.3456, 0.4975, 0.4610, 0.4755, 0.4315, 0.4336, 0.3867, 0.3859, 0.5404, 0.5373, 0.4407, 0.4426, 0.4499, 0.4724, 0.5086, 0.4088, 0.4551},
+      { 0.3445, 0.3423, 0.3826, 0.3299, 0.4610, 0.4026, 0.4069, 0.4091, 0.4075, 0.3746, 0.3607, 0.4737, 0.5114, 0.4115, 0.4154, 0.4169, 0.4483, 0.4813, 0.3930, 0.4344},
+      { 0.3245, 0.3403, 0.3911, 0.3380, 0.4755, 0.4069, 0.4437, 0.4326, 0.4131, 0.3792, 0.3691, 0.4970, 0.5207, 0.4802, 0.4883, 0.4848, 0.4949, 0.5182, 0.4230, 0.4758},
+      { 0.3470, 0.3480, 0.3873, 0.3400, 0.4315, 0.4091, 0.4326, 0.4588, 0.4166, 0.3674, 0.3564, 0.4568, 0.4907, 0.3625, 0.3674, 0.3677, 0.4253, 0.4318, 0.3466, 0.3962},
+      { 0.3523, 0.3527, 0.4170, 0.3460, 0.4336, 0.4075, 0.4131, 0.4166, 0.4185, 0.3658, 0.3667, 0.4767, 0.5311, 0.3819, 0.3892, 0.4015, 0.4274, 0.4521, 0.3676, 0.3957},
+      { 0.3185, 0.2944, 0.3559, 0.2950, 0.3867, 0.3746, 0.3792, 0.3674, 0.3658, 0.3648, 0.3327, 0.4686, 0.5076, 0.3940, 0.3969, 0.4066, 0.4375, 0.4816, 0.3827, 0.4227},
+      { 0.3038, 0.2955, 0.3611, 0.2861, 0.3859, 0.3607, 0.3691, 0.3564, 0.3667, 0.3327, 0.3594, 0.4875, 0.5241, 0.3711, 0.3781, 0.3919, 0.4246, 0.4545, 0.3592, 0.4272},
+      { 0.4412, 0.4374, 0.4847, 0.4502, 0.5404, 0.4737, 0.4970, 0.4568, 0.4767, 0.4686, 0.4875, 0.5549, 0.5962, 0.5509, 0.5564, 0.5618, 0.5790, 0.6182, 0.5066, 0.5476},
+      { 0.4322, 0.4551, 0.5072, 0.4640, 0.5373, 0.5114, 0.5207, 0.4907, 0.5311, 0.5076, 0.5241, 0.5962, 0.6481, 0.5721, 0.5705, 0.5881, 0.6428, 0.6684, 0.5342, 0.5885},
+      { 0.2818, 0.3152, 0.3747, 0.3396, 0.4407, 0.4115, 0.4802, 0.3625, 0.3819, 0.3940, 0.3711, 0.5509, 0.5721, 0.6195, 0.6151, 0.6051, 0.5724, 0.6156, 0.5129, 0.5790},
+      { 0.2777, 0.3140, 0.3779, 0.3458, 0.4426, 0.4154, 0.4883, 0.3674, 0.3892, 0.3969, 0.3781, 0.5564, 0.5705, 0.6151, 0.6417, 0.6296, 0.5946, 0.6234, 0.5192, 0.5889},
+      { 0.3016, 0.3307, 0.4018, 0.3599, 0.4499, 0.4169, 0.4848, 0.3677, 0.4015, 0.4066, 0.3919, 0.5618, 0.5881, 0.6051, 0.6296, 0.6154, 0.5907, 0.6257, 0.5272, 0.5770},
+      { 0.3172, 0.3425, 0.4022, 0.3604, 0.4724, 0.4483, 0.4949, 0.4253, 0.4274, 0.4375, 0.4246, 0.5790, 0.6428, 0.5724, 0.5946, 0.5907, 0.6236, 0.6467, 0.5239, 0.5807},
+      { 0.3357, 0.3690, 0.4409, 0.4055, 0.5086, 0.4813, 0.5182, 0.4318, 0.4521, 0.4816, 0.4545, 0.6182, 0.6684, 0.6156, 0.6234, 0.6257, 0.6467, 0.6918, 0.5642, 0.6321},
+      { 0.2927, 0.3075, 0.3685, 0.3209, 0.4088, 0.3930, 0.4230, 0.3466, 0.3676, 0.3827, 0.3592, 0.5066, 0.5342, 0.5129, 0.5192, 0.5272, 0.5239, 0.5642, 0.4801, 0.5029},
+      { 0.3029, 0.3071, 0.3935, 0.3345, 0.4551, 0.4344, 0.4758, 0.3962, 0.3957, 0.4227, 0.4272, 0.5476, 0.5885, 0.5790, 0.5889, 0.5770, 0.5807, 0.6321, 0.5029, 0.6193}},
+    {
+      { 0.2779, 0.2563, 0.4883, 0.4162, 0.4157, 0.3367, 0.3193, 0.3495, 0.3509, 0.3054, 0.3049, 0.4276, 0.4084, 0.2713, 0.2568, 0.2906, 0.2708, 0.3247, 0.2770, 0.2952},
+      { 0.2563, 0.2593, 0.5141, 0.4403, 0.4192, 0.3386, 0.3340, 0.3471, 0.3497, 0.2881, 0.2985, 0.4300, 0.4496, 0.3024, 0.3040, 0.3233, 0.2972, 0.3638, 0.2911, 0.3076},
+      { 0.4883, 0.5141, 0.3519, 0.2781, 0.4185, 0.3877, 0.3891, 0.3889, 0.4110, 0.3431, 0.3367, 0.4838, 0.4917, 0.3516, 0.3586, 0.3936, 0.3528, 0.4327, 0.3459, 0.3672},
+      { 0.4162, 0.4403, 0.2781, 0.2549, 0.3432, 0.3070, 0.3219, 0.3190, 0.3258, 0.2813, 0.2647, 0.4368, 0.4408, 0.3153, 0.3274, 0.3455, 0.3117, 0.3880, 0.2922, 0.3251},
+      { 0.4157, 0.4192, 0.4185, 0.3432, 0.4800, 0.4704, 0.4634, 0.4630, 0.4364, 0.3753, 0.3587, 0.5220, 0.5221, 0.4213, 0.4193, 0.4367, 0.4381, 0.4971, 0.3946, 0.4348},
+      { 0.3367, 0.3386, 0.3877, 0.3070, 0.4704, 0.4074, 0.4136, 0.4049, 0.4175, 0.3794, 0.3655, 0.4691, 0.5015, 0.3978, 0.4028, 0.4150, 0.4200, 0.4760, 0.3831, 0.4292},
+      { 0.3193, 0.3340, 0.3891, 0.3219, 0.4634, 0.4136, 0.4392, 0.4255, 0.4227, 0.3732, 0.3770, 0.4857, 0.5106, 0.4578, 0.4689, 0.4745, 0.4647, 0.5071, 0.4114, 0.4655},
+      { 0.3495, 0.3471, 0.3889, 0.3190, 0.4630, 0.4049, 0.4255, 0.4632, 0.4194, 0.3782, 0.3670, 0.4582, 0.4850, 0.3541, 0.3447, 0.3684, 0.3932, 0.4220, 0.3355, 0.3957},
+      { 0.3509, 0.3497, 0.4110, 0.3258, 0.4364, 0.4175, 0.4227, 0.4194, 0.4312, 0.3712, 0.3741, 0.4824, 0.5548, 0.3840, 0.3967, 0.4038, 0.4136, 0.4492, 0.3645, 0.4002},
+      { 0.3054, 0.2881, 0.3431, 0.2813, 0.3753, 0.3794, 0.3732, 0.3782, 0.3712, 0.3447, 0.3293, 0.4696, 0.4982, 0.3770, 0.3743, 0.4083, 0.4050, 0.4784, 0.3746, 0.4263},
+      { 0.3049, 0.2985, 0.3367, 0.2647, 0.3587, 0.3655, 0.3770, 0.3670, 0.3741, 0.3293, 0.3535, 0.4732, 0.5159, 0.3499, 0.3517, 0.3821, 0.4043, 0.4410, 0.3438, 0.4625},
+      { 0.4276, 0.4300, 0.4838, 0.4368, 0.5220, 0.4691, 0.4857, 0.4582, 0.4824, 0.4696, 0.4732, 0.5588, 0.5953, 0.5279, 0.5336, 0.5513, 0.5297, 0.6078, 0.4936, 0.5342},
+      { 0.4084, 0.4496, 0.4917, 0.4408, 0.5221, 0.5015, 0.5106, 0.4850, 0.5548, 0.4982, 0.5159, 0.5953, 0.6493, 0.5564, 0.5538, 0.5770, 0.5655, 0.6607, 0.5164, 0.5654},
+      { 0.2713, 0.3024, 0.3516, 0.3153, 0.4213, 0.3978, 0.4578, 0.3541, 0.3840, 0.3770, 0.3499, 0.5279, 0.5564, 0.5804, 0.5805, 0.5763, 0.5457, 0.5881, 0.4866, 0.5634},
+      { 0.2568, 0.3040, 0.3586, 0.3274, 0.4193, 0.4028, 0.4689, 0.3447, 0.3967, 0.3743, 0.3517, 0.5336, 0.5538, 0.5805, 0.6041, 0.5946, 0.5993, 0.5990, 0.4939, 0.5646},
+      { 0.2906, 0.3233, 0.3936, 0.3455, 0.4367, 0.4150, 0.4745, 0.3684, 0.4038, 0.4083, 0.3821, 0.5513, 0.5770, 0.5763, 0.5946, 0.5952, 0.5429, 0.6094, 0.5137, 0.5600},
+      { 0.2708, 0.2972, 0.3528, 0.3117, 0.4381, 0.4200, 0.4647, 0.3932, 0.4136, 0.4050, 0.4043, 0.5297, 0.5655, 0.5457, 0.5993, 0.5429, 0.5907, 0.5859, 0.4689, 0.5484},
+      { 0.3247, 0.3638, 0.4327, 0.3880, 0.4971, 0.4760, 0.5071, 0.4220, 0.4492, 0.4784, 0.4410, 0.6078, 0.6607, 0.5881, 0.5990, 0.6094, 0.5859, 0.6690, 0.5474, 0.6120},
+      { 0.2770, 0.2911, 0.3459, 0.2922, 0.3946, 0.3831, 0.4114, 0.3355, 0.3645, 0.3746, 0.3438, 0.4936, 0.5164, 0.4866, 0.4939, 0.5137, 0.4689, 0.5474, 0.4528, 0.4818},
+      { 0.2952, 0.3076, 0.3672, 0.3251, 0.4348, 0.4292, 0.4655, 0.3957, 0.4002, 0.4263, 0.4625, 0.5342, 0.5654, 0.5634, 0.5646, 0.5600, 0.5484, 0.6120, 0.4818, 0.6149}},
+    {
+      { 0.2990, 0.2763, 0.5077, 0.4302, 0.4120, 0.3700, 0.3594, 0.3719, 0.3852, 0.3440, 0.3329, 0.4320, 0.4281, 0.3143, 0.3118, 0.3379, 0.3552, 0.3181, 0.3258, 0.3458},
+      { 0.2763, 0.2932, 0.5165, 0.4579, 0.4289, 0.3663, 0.3714, 0.3639, 0.3796, 0.3297, 0.3212, 0.4393, 0.4527, 0.3409, 0.3405, 0.3586, 0.3729, 0.3468, 0.3332, 0.3550},
+      { 0.5077, 0.5165, 0.3828, 0.3243, 0.4258, 0.4074, 0.4135, 0.4134, 0.4396, 0.3857, 0.3830, 0.4917, 0.5081, 0.3944, 0.3927, 0.4237, 0.4236, 0.4168, 0.3843, 0.4197},
+      { 0.4302, 0.4579, 0.3243, 0.3078, 0.3684, 0.3549, 0.3658, 0.3649, 0.3698, 0.3218, 0.3041, 0.4419, 0.4621, 0.3637, 0.3689, 0.3877, 0.3839, 0.3735, 0.3390, 0.3736},
+      { 0.4120, 0.4289, 0.4258, 0.3684, 0.5123, 0.4797, 0.4887, 0.4401, 0.4482, 0.4012, 0.3933, 0.5378, 0.5373, 0.4543, 0.4579, 0.4689, 0.5008, 0.4855, 0.4209, 0.4712},
+      { 0.3700, 0.3663, 0.4074, 0.3549, 0.4797, 0.4323, 0.4376, 0.4365, 0.4314, 0.4053, 0.3841, 0.4698, 0.5157, 0.4307, 0.4343, 0.4489, 0.4780, 0.4560, 0.4121, 0.4524},
+      { 0.3594, 0.3714, 0.4135, 0.3658, 0.4887, 0.4376, 0.4603, 0.4615, 0.4415, 0.3970, 0.3928, 0.5046, 0.5262, 0.4884, 0.4920, 0.5013, 0.5111, 0.5017, 0.4385, 0.4916},
+      { 0.3719, 0.3639, 0.4134, 0.3649, 0.4401, 0.4365, 0.4615, 0.4899, 0.4317, 0.3990, 0.3800, 0.4686, 0.4889, 0.3864, 0.3804, 0.3964, 0.4470, 0.4230, 0.3811, 0.4223},
+      { 0.3852, 0.3796, 0.4396, 0.3698, 0.4482, 0.4314, 0.4415, 0.4317, 0.4356, 0.3953, 0.3977, 0.4760, 0.5288, 0.3992, 0.4032, 0.4282, 0.4572, 0.4373, 0.3915, 0.4383},
+      { 0.3440, 0.3297, 0.3857, 0.3218, 0.4012, 0.4053, 0.3970, 0.3990, 0.3953, 0.4011, 0.3805, 0.4680, 0.4968, 0.4105, 0.4076, 0.4376, 0.4653, 0.4418, 0.3990, 0.4432},
+      { 0.3329, 0.3212, 0.3830, 0.3041, 0.3933, 0.3841, 0.3928, 0.3800, 0.3977, 0.3805, 0.3755, 0.4906, 0.5374, 0.3777, 0.3902, 0.4168, 0.4526, 0.4385, 0.3906, 0.4372},
+      { 0.4320, 0.4393, 0.4917, 0.4419, 0.5378, 0.4698, 0.5046, 0.4686, 0.4760, 0.4680, 0.4906, 0.5435, 0.5837, 0.5577, 0.5745, 0.5741, 0.5846, 0.5822, 0.4963, 0.5454},
+      { 0.4281, 0.4527, 0.5081, 0.4621, 0.5373, 0.5157, 0.5262, 0.4889, 0.5288, 0.4968, 0.5374, 0.5837, 0.6419, 0.5829, 0.5908, 0.6085, 0.6361, 0.6173, 0.5359, 0.5891},
+      { 0.3143, 0.3409, 0.3944, 0.3637, 0.4543, 0.4307, 0.4884, 0.3864, 0.3992, 0.4105, 0.3777, 0.5577, 0.5829, 0.6168, 0.6167, 0.6119, 0.5853, 0.6120, 0.5176, 0.5850},
+      { 0.3118, 0.3405, 0.3927, 0.3689, 0.4579, 0.4343, 0.4920, 0.3804, 0.4032, 0.4076, 0.3902, 0.5745, 0.5908, 0.6167, 0.6427, 0.6234, 0.5990, 0.6406, 0.5248, 0.5880},
+      { 0.3379, 0.3586, 0.4237, 0.3877, 0.4689, 0.4489, 0.5013, 0.3964, 0.4282, 0.4376, 0.4168, 0.5741, 0.6085, 0.6119, 0.6234, 0.6305, 0.6071, 0.6175, 0.5437, 0.5865},
+      { 0.3552, 0.3729, 0.4236, 0.3839, 0.5008, 0.4780, 0.5111, 0.4470, 0.4572, 0.4653, 0.4526, 0.5846, 0.6361, 0.5853, 0.5990, 0.6071, 0.6398, 0.6363, 0.5387, 0.5952},
+      { 0.3181, 0.3468, 0.4168, 0.3735, 0.4855, 0.4560, 0.5017, 0.4230, 0.4373, 0.4418, 0.4385, 0.5822, 0.6173, 0.6120, 0.6406, 0.6175, 0.6363, 0.6357, 0.5246, 0.6059},
+      { 0.3258, 0.3332, 0.3843, 0.3390, 0.4209, 0.4121, 0.4385, 0.3811, 0.3915, 0.3990, 0.3906, 0.4963, 0.5359, 0.5176, 0.5248, 0.5437, 0.5387, 0.5246, 0.4780, 0.5095},
+      { 0.3458, 0.3550, 0.4197, 0.3736, 0.4712, 0.4524, 0.4916, 0.4223, 0.4383, 0.4432, 0.4372, 0.5454, 0.5891, 0.5850, 0.5880, 0.5865, 0.5952, 0.6059, 0.5095, 0.6376}},
+    {
+      { 0.1477, 0.1278, 0.3951, 0.3370, 0.3010, 0.2508, 0.2315, 0.2526, 0.2620, 0.2144, 0.1929, 0.3102, 0.3006, 0.1740, 0.1472, 0.1875, 0.2071, 0.2158, 0.1748, 0.2206},
+      { 0.1278, 0.1515, 0.4145, 0.3502, 0.2991, 0.2338, 0.2324, 0.2430, 0.2495, 0.1971, 0.1873, 0.3100, 0.3221, 0.1886, 0.1698, 0.2132, 0.2211, 0.2411, 0.1990, 0.2171},
+      { 0.3951, 0.4145, 0.2640, 0.2064, 0.3196, 0.2971, 0.3081, 0.3059, 0.3073, 0.2689, 0.2725, 0.3912, 0.4048, 0.2805, 0.2680, 0.3093, 0.3055, 0.3477, 0.2785, 0.3161},
+      { 0.3370, 0.3502, 0.2064, 0.1685, 0.2586, 0.2389, 0.2436, 0.2402, 0.2504, 0.2038, 0.1909, 0.3489, 0.3502, 0.2326, 0.2173, 0.2569, 0.2357, 0.2834, 0.2340, 0.2597},
+      { 0.3010, 0.2991, 0.3196, 0.2586, 0.3953, 0.3828, 0.3852, 0.3266, 0.3196, 0.3239, 0.3096, 0.4465, 0.4496, 0.3539, 0.3450, 0.3718, 0.3894, 0.4154, 0.3166, 0.3711},
+      { 0.2508, 0.2338, 0.2971, 0.2389, 0.3828, 0.3589, 0.3671, 0.3525, 0.3263, 0.3176, 0.2853, 0.3743, 0.3987, 0.3749, 0.3820, 0.3646, 0.3979, 0.3897, 0.3258, 0.4005},
+      { 0.2315, 0.2324, 0.3081, 0.2436, 0.3852, 0.3671, 0.3989, 0.3608, 0.3194, 0.3382, 0.3023, 0.4066, 0.4187, 0.4271, 0.4249, 0.4183, 0.4307, 0.4302, 0.3821, 0.4457},
+      { 0.2526, 0.2430, 0.3059, 0.2402, 0.3266, 0.3525, 0.3608, 0.3698, 0.3197, 0.3064, 0.2699, 0.3571, 0.3785, 0.2650, 0.2554, 0.2748, 0.3328, 0.3315, 0.2647, 0.3299},
+      { 0.2620, 0.2495, 0.3073, 0.2504, 0.3196, 0.3263, 0.3194, 0.3197, 0.3064, 0.2943, 0.2755, 0.3654, 0.4016, 0.2705, 0.2560, 0.3007, 0.3171, 0.3401, 0.2820, 0.3233},
+      { 0.2144, 0.1971, 0.2689, 0.2038, 0.3239, 0.3176, 0.3382, 0.3064, 0.2943, 0.3259, 0.2626, 0.4077, 0.4071, 0.3857, 0.3928, 0.3887, 0.4227, 0.4273, 0.3258, 0.4082},
+      { 0.1929, 0.1873, 0.2725, 0.1909, 0.3096, 0.2853, 0.3023, 0.2699, 0.2755, 0.2626, 0.2483, 0.3834, 0.4028, 0.2840, 0.2832, 0.2969, 0.3467, 0.3453, 0.2696, 0.3575},
+      { 0.3102, 0.3100, 0.3912, 0.3489, 0.4465, 0.3743, 0.4066, 0.3571, 0.3654, 0.4077, 0.3834, 0.4847, 0.5195, 0.4712, 0.4677, 0.4935, 0.5066, 0.5331, 0.4141, 0.4824},
+      { 0.3006, 0.3221, 0.4048, 0.3502, 0.4496, 0.3987, 0.4187, 0.3785, 0.4016, 0.4071, 0.4028, 0.5195, 0.5521, 0.4799, 0.4790, 0.5072, 0.5355, 0.5752, 0.4089, 0.5025},
+      { 0.1740, 0.1886, 0.2805, 0.2326, 0.3539, 0.3749, 0.4271, 0.2650, 0.2705, 0.3857, 0.2840, 0.4712, 0.4799, 0.5592, 0.5402, 0.5264, 0.5011, 0.5325, 0.4899, 0.5545},
+      { 0.1472, 0.1698, 0.2680, 0.2173, 0.3450, 0.3820, 0.4249, 0.2554, 0.2560, 0.3928, 0.2832, 0.4677, 0.4790, 0.5402, 0.5345, 0.5192, 0.4939, 0.5248, 0.5148, 0.5549},
+      { 0.1875, 0.2132, 0.3093, 0.2569, 0.3718, 0.3646, 0.4183, 0.2748, 0.3007, 0.3887, 0.2969, 0.4935, 0.5072, 0.5264, 0.5192, 0.5306, 0.5099, 0.5472, 0.4690, 0.5233},
+      { 0.2071, 0.2211, 0.3055, 0.2357, 0.3894, 0.3979, 0.4307, 0.3328, 0.3171, 0.4227, 0.3467, 0.5066, 0.5355, 0.5011, 0.4939, 0.5099, 0.5639, 0.5639, 0.4634, 0.5444},
+      { 0.2158, 0.2411, 0.3477, 0.2834, 0.4154, 0.3897, 0.4302, 0.3315, 0.3401, 0.4273, 0.3453, 0.5331, 0.5752, 0.5325, 0.5248, 0.5472, 0.5639, 0.5941, 0.4581, 0.5553},
+      { 0.1748, 0.1990, 0.2785, 0.2340, 0.3166, 0.3258, 0.3821, 0.2647, 0.2820, 0.3258, 0.2696, 0.4141, 0.4089, 0.4899, 0.5148, 0.4690, 0.4634, 0.4581, 0.4152, 0.4722},
+      { 0.2206, 0.2171, 0.3161, 0.2597, 0.3711, 0.4005, 0.4457, 0.3299, 0.3233, 0.4082, 0.3575, 0.4824, 0.5025, 0.5545, 0.5549, 0.5233, 0.5444, 0.5553, 0.4722, 0.6320}},
+    {
+      { 0.1899, 0.2164, 0.4574, 0.3889, 0.3994, 0.3186, 0.3285, 0.3331, 0.3188, 0.2879, 0.2744, 0.4001, 0.3907, 0.2869, 0.2696, 0.2912, 0.3364, 0.3299, 0.2476, 0.2240},
+      { 0.2164, 0.2551, 0.4966, 0.4041, 0.3849, 0.3092, 0.3329, 0.3240, 0.3399, 0.2803, 0.2499, 0.4334, 0.4255, 0.3118, 0.3203, 0.3356, 0.3496, 0.3617, 0.2720, 0.2242},
+      { 0.4574, 0.4966, 0.3475, 0.2793, 0.3929, 0.3553, 0.3821, 0.3674, 0.3996, 0.3565, 0.3289, 0.4805, 0.4721, 0.3776, 0.3775, 0.4005, 0.4023, 0.4313, 0.3523, 0.3273},
+      { 0.3889, 0.4041, 0.2793, 0.2634, 0.3370, 0.2892, 0.3154, 0.3001, 0.3277, 0.2630, 0.2567, 0.4363, 0.4382, 0.3452, 0.3500, 0.3630, 0.3463, 0.3932, 0.2990, 0.2716},
+      { 0.3994, 0.3849, 0.3929, 0.3370, 0.4896, 0.4494, 0.4586, 0.4179, 0.4191, 0.3822, 0.3744, 0.5083, 0.5368, 0.4226, 0.4295, 0.4358, 0.4666, 0.4794, 0.3899, 0.3647},
+      { 0.3186, 0.3092, 0.3553, 0.2892, 0.4494, 0.4193, 0.4269, 0.4121, 0.3929, 0.3700, 0.3449, 0.4446, 0.4786, 0.4456, 0.4497, 0.4234, 0.4645, 0.4635, 0.3907, 0.3706},
+      { 0.3285, 0.3329, 0.3821, 0.3154, 0.4586, 0.4269, 0.4676, 0.4596, 0.3997, 0.3852, 0.3622, 0.4662, 0.4904, 0.4989, 0.5072, 0.4770, 0.4908, 0.4958, 0.4356, 0.3798},
+      { 0.3331, 0.3240, 0.3674, 0.3001, 0.4179, 0.4121, 0.4596, 0.5180, 0.4022, 0.3747, 0.3470, 0.4324, 0.4576, 0.3732, 0.4221, 0.4040, 0.4349, 0.4111, 0.3420, 0.3354},
+      { 0.3188, 0.3399, 0.3996, 0.3277, 0.4191, 0.3929, 0.3997, 0.4022, 0.4015, 0.3570, 0.3384, 0.4525, 0.5004, 0.3718, 0.3808, 0.3935, 0.4334, 0.4414, 0.3500, 0.3367},
+      { 0.2879, 0.2803, 0.3565, 0.2630, 0.3822, 0.3700, 0.3852, 0.3747, 0.3570, 0.3814, 0.3185, 0.4680, 0.4971, 0.4210, 0.4166, 0.4255, 0.4659, 0.4901, 0.3816, 0.3239},
+      { 0.2744, 0.2499, 0.3289, 0.2567, 0.3744, 0.3449, 0.3622, 0.3470, 0.3384, 0.3185, 0.3503, 0.4288, 0.4580, 0.3698, 0.3789, 0.3809, 0.4253, 0.4273, 0.3323, 0.3140},
+      { 0.4001, 0.4334, 0.4805, 0.4363, 0.5083, 0.4446, 0.4662, 0.4324, 0.4525, 0.4680, 0.4288, 0.5057, 0.5538, 0.5295, 0.5272, 0.5449, 0.5477, 0.5824, 0.4822, 0.4121},
+      { 0.3907, 0.4255, 0.4721, 0.4382, 0.5368, 0.4786, 0.4904, 0.4576, 0.5004, 0.4971, 0.4580, 0.5538, 0.6112, 0.5291, 0.5334, 0.5642, 0.6068, 0.6173, 0.4845, 0.4461},
+      { 0.2869, 0.3118, 0.3776, 0.3452, 0.4226, 0.4456, 0.4989, 0.3732, 0.3718, 0.4210, 0.3698, 0.5295, 0.5291, 0.6095, 0.6067, 0.5823, 0.5646, 0.5891, 0.5408, 0.4342},
+      { 0.2696, 0.3203, 0.3775, 0.3500, 0.4295, 0.4497, 0.5072, 0.4221, 0.3808, 0.4166, 0.3789, 0.5272, 0.5334, 0.6067, 0.6102, 0.5889, 0.5646, 0.5880, 0.5549, 0.4653},
+      { 0.2912, 0.3356, 0.4005, 0.3630, 0.4358, 0.4234, 0.4770, 0.4040, 0.3935, 0.4255, 0.3809, 0.5449, 0.5642, 0.5823, 0.5889, 0.5854, 0.5755, 0.5952, 0.5356, 0.4155},
+      { 0.3364, 0.3496, 0.4023, 0.3463, 0.4666, 0.4645, 0.4908, 0.4349, 0.4334, 0.4659, 0.4253, 0.5477, 0.6068, 0.5646, 0.5646, 0.5755, 0.6156, 0.6199, 0.5311, 0.4630},
+      { 0.3299, 0.3617, 0.4313, 0.3932, 0.4794, 0.4635, 0.4958, 0.4111, 0.4414, 0.4901, 0.4273, 0.5824, 0.6173, 0.5891, 0.5880, 0.5952, 0.6199, 0.6456, 0.5429, 0.4666},
+      { 0.2476, 0.2720, 0.3523, 0.2990, 0.3899, 0.3907, 0.4356, 0.3420, 0.3500, 0.3816, 0.3323, 0.4822, 0.4845, 0.5408, 0.5549, 0.5356, 0.5311, 0.5429, 0.4798, 0.3757},
+      { 0.2240, 0.2242, 0.3273, 0.2716, 0.3647, 0.3706, 0.3798, 0.3354, 0.3367, 0.3239, 0.3140, 0.4121, 0.4461, 0.4342, 0.4653, 0.4155, 0.4630, 0.4666, 0.3757, 0.5124}}},
+  {
+    {
+      { 0.1023, 0.1002, 0.3310, 0.2970, 0.3012, 0.2382, 0.2817, 0.2648, 0.2400, 0.2086, 0.2192, 0.3112, 0.2978, 0.2701, 0.2854, 0.2954, 0.3074, 0.2885, 0.1924, 0.2833},
+      { 0.1002, 0.1379, 0.3681, 0.3154, 0.2608, 0.2043, 0.2146, 0.2204, 0.2266, 0.1520, 0.1696, 0.2720, 0.2753, 0.1693, 0.1772, 0.1443, 0.1866, 0.1965, 0.1678, 0.1746},
+      { 0.3310, 0.3681, 0.2360, 0.1681, 0.2562, 0.2319, 0.2310, 0.2351, 0.2564, 0.1985, 0.2149, 0.3132, 0.3041, 0.1947, 0.1921, 0.1702, 0.1872, 0.2237, 0.1998, 0.2134},
+      { 0.2970, 0.3154, 0.1681, 0.1306, 0.1928, 0.1722, 0.1746, 0.1877, 0.2080, 0.1361, 0.1334, 0.2575, 0.2451, 0.1348, 0.1280, 0.0975, 0.1146, 0.1470, 0.1412, 0.1290},
+      { 0.3012, 0.2608, 0.2562, 0.1928, 0.3024, 0.2484, 0.2671, 0.2337, 0.2415, 0.1885, 0.2191, 0.3543, 0.3433, 0.2524, 0.2399, 0.2292, 0.2602, 0.2747, 0.2109, 0.2646},
+      { 0.2382, 0.2043, 0.2319, 0.1722, 0.2484, 0.1965, 0.2012, 0.2072, 0.2156, 0.1673, 0.1678, 0.2454, 0.2581, 0.1841, 0.1803, 0.1621, 0.1895, 0.2060, 0.1749, 0.2106},
+      { 0.2817, 0.2146, 0.2310, 0.1746, 0.2671, 0.2012, 0.2345, 0.2209, 0.2281, 0.1599, 0.1727, 0.2852, 0.2987, 0.2344, 0.2382, 0.1924, 0.2182, 0.2426, 0.1899, 0.2512},
+      { 0.2648, 0.2204, 0.2351, 0.1877, 0.2337, 0.2072, 0.2209, 0.2515, 0.2325, 0.1902, 0.1836, 0.2529, 0.2718, 0.1891, 0.1858, 0.1768, 0.1973, 0.2112, 0.1698, 0.2113},
+      { 0.2400, 0.2266, 0.2564, 0.2080, 0.2415, 0.2156, 0.2281, 0.2325, 0.2463, 0.1779, 0.2137, 0.2715, 0.3033, 0.1873, 0.1859, 0.1684, 0.2033, 0.2097, 0.1851, 0.1860},
+      { 0.2086, 0.1520, 0.1985, 0.1361, 0.1885, 0.1673, 0.1599, 0.1902, 0.1779, 0.1519, 0.1438, 0.2195, 0.2251, 0.1227, 0.1210, 0.1289, 0.1655, 0.1724, 0.1674, 0.2029},
+      { 0.2192, 0.1696, 0.2149, 0.1334, 0.2191, 0.1678, 0.1727, 0.1836, 0.2137, 0.1438, 0.1685, 0.2859, 0.2911, 0.1229, 0.1236, 0.0838, 0.1318, 0.1881, 0.1401, 0.1496},
+      { 0.3112, 0.2720, 0.3132, 0.2575, 0.3543, 0.2454, 0.2852, 0.2529, 0.2715, 0.2195, 0.2859, 0.3796, 0.4243, 0.3238, 0.3181, 0.3105, 0.3401, 0.3813, 0.2498, 0.3456},
+      { 0.2978, 0.2753, 0.3041, 0.2451, 0.3433, 0.2581, 0.2987, 0.2718, 0.3033, 0.2251, 0.2911, 0.4243, 0.4116, 0.3271, 0.3485, 0.3302, 0.3858, 0.4191, 0.2435, 0.3449},
+      { 0.2701, 0.1693, 0.1947, 0.1348, 0.2524, 0.1841, 0.2344, 0.1891, 0.1873, 0.1227, 0.1229, 0.3238, 0.3271, 0.3149, 0.3146, 0.2767, 0.2821, 0.3269, 0.1925, 0.2906},
+      { 0.2854, 0.1772, 0.1921, 0.1280, 0.2399, 0.1803, 0.2382, 0.1858, 0.1859, 0.1210, 0.1236, 0.3181, 0.3485, 0.3146, 0.3323, 0.3016, 0.2906, 0.3379, 0.1875, 0.2912},
+      { 0.2954, 0.1443, 0.1702, 0.0975, 0.2292, 0.1621, 0.1924, 0.1768, 0.1684, 0.1289, 0.0838, 0.3105, 0.3302, 0.2767, 0.3016, 0.2767, 0.2666, 0.3248, 0.1572, 0.2713},
+      { 0.3074, 0.1866, 0.1872, 0.1146, 0.2602, 0.1895, 0.2182, 0.1973, 0.2033, 0.1655, 0.1318, 0.3401, 0.3858, 0.2821, 0.2906, 0.2666, 0.3172, 0.3497, 0.1851, 0.3030},
+      { 0.2885, 0.1965, 0.2237, 0.1470, 0.2747, 0.2060, 0.2426, 0.2112, 0.2097, 0.1724, 0.1881, 0.3813, 0.4191, 0.3269, 0.3379, 0.3248, 0.3497, 0.4028, 0.2145, 0.3303},
+      { 0.1924, 0.1678, 0.1998, 0.1412, 0.2109, 0.1749, 0.1899, 0.1698, 0.1851, 0.1674, 0.1401, 0.2498, 0.2435, 0.1925, 0.1875, 0.1572, 0.1851, 0.2145, 0.1990, 0.1984},
+      { 0.2833, 0.1746, 0.2134, 0.1290, 0.2646, 0.2106, 0.2512, 0.2113, 0.1860, 0.2029, 0.1496, 0.3456, 0.3449, 0.2906, 0.2912, 0.2713, 0.3030, 0.3303, 0.1984, 0.4428}},
+    {
+      { 0.1637, 0.1574, 0.3969, 0.3533, 0.3012, 0.2459, 0.2422, 0.2470, 0.2855, 0.1930, 0.1937, 0.2857, 0.2746, 0.1661, 0.1626, 0.1443, 0.2014, 0.1879, 0.1886, 0.1931},
+      { 0.1574, 0.1759, 0.4040, 0.3542, 0.3121, 0.2482, 0.2740, 0.2775, 0.2872, 0.1894, 0.2292, 0.3396, 0.3217, 0.2491, 0.2660, 0.2951, 0.3056, 0.2836, 0.2236, 0.2474},
+      { 0.3969, 0.4040, 0.2744, 0.2172, 0.2855, 0.2642, 0.2724, 0.2783, 0.2985, 0.2298, 0.2350, 0.3467, 0.3567, 0.2381, 0.2411, 0.2231, 0.2295, 0.2555, 0.2530, 0.2316},
+      { 0.3533, 0.3542, 0.2172, 0.1863, 0.2348, 0.2182, 0.2209, 0.2372, 0.2585, 0.1642, 0.1640, 0.3170, 0.2961, 0.1815, 0.1781, 0.1553, 0.1665, 0.1904, 0.1950, 0.1600},
+      { 0.3012, 0.3121, 0.2855, 0.2348, 0.3249, 0.2794, 0.2977, 0.2612, 0.2780, 0.2189, 0.2243, 0.3740, 0.3758, 0.2701, 0.2578, 0.2447, 0.2800, 0.2924, 0.2385, 0.2686},
+      { 0.2459, 0.2482, 0.2642, 0.2182, 0.2794, 0.2279, 0.2285, 0.2453, 0.2506, 0.1904, 0.1834, 0.2694, 0.2690, 0.1918, 0.1784, 0.1563, 0.1872, 0.2096, 0.2020, 0.2053},
+      { 0.2422, 0.2740, 0.2724, 0.2209, 0.2977, 0.2285, 0.2788, 0.2550, 0.2727, 0.1935, 0.1832, 0.3043, 0.3152, 0.2634, 0.2561, 0.2163, 0.2334, 0.2568, 0.2112, 0.2480},
+      { 0.2470, 0.2775, 0.2783, 0.2372, 0.2612, 0.2453, 0.2550, 0.2796, 0.2780, 0.2000, 0.1957, 0.2737, 0.3047, 0.1852, 0.1685, 0.1440, 0.1915, 0.2090, 0.1919, 0.2043},
+      { 0.2855, 0.2872, 0.2985, 0.2585, 0.2780, 0.2506, 0.2727, 0.2780, 0.2982, 0.2008, 0.2253, 0.3189, 0.3512, 0.2277, 0.2313, 0.2343, 0.2555, 0.2524, 0.2296, 0.2200},
+      { 0.1930, 0.1894, 0.2298, 0.1642, 0.2189, 0.1904, 0.1935, 0.2000, 0.2008, 0.1833, 0.1570, 0.2541, 0.2608, 0.1543, 0.1442, 0.1427, 0.1860, 0.1928, 0.1840, 0.1975},
+      { 0.1937, 0.2292, 0.2350, 0.1640, 0.2243, 0.1834, 0.1832, 0.1957, 0.2253, 0.1570, 0.1784, 0.2842, 0.3025, 0.1319, 0.1193, 0.0923, 0.1498, 0.1853, 0.1674, 0.1735},
+      { 0.2857, 0.3396, 0.3467, 0.3170, 0.3740, 0.2694, 0.3043, 0.2737, 0.3189, 0.2541, 0.2842, 0.4024, 0.4378, 0.3541, 0.3581, 0.3410, 0.3754, 0.4018, 0.2781, 0.3635},
+      { 0.2746, 0.3217, 0.3567, 0.2961, 0.3758, 0.2690, 0.3152, 0.3047, 0.3512, 0.2608, 0.3025, 0.4378, 0.4498, 0.3564, 0.3750, 0.3564, 0.4063, 0.4449, 0.2725, 0.3715},
+      { 0.1661, 0.2491, 0.2381, 0.1815, 0.2701, 0.1918, 0.2634, 0.1852, 0.2277, 0.1543, 0.1319, 0.3541, 0.3564, 0.3485, 0.3453, 0.3044, 0.3051, 0.3449, 0.2141, 0.3333},
+      { 0.1626, 0.2660, 0.2411, 0.1781, 0.2578, 0.1784, 0.2561, 0.1685, 0.2313, 0.1442, 0.1193, 0.3581, 0.3750, 0.3453, 0.3642, 0.3307, 0.3233, 0.3586, 0.2132, 0.3356},
+      { 0.1443, 0.2951, 0.2231, 0.1553, 0.2447, 0.1563, 0.2163, 0.1440, 0.2343, 0.1427, 0.0923, 0.3410, 0.3564, 0.3044, 0.3307, 0.3129, 0.2957, 0.3459, 0.1854, 0.3011},
+      { 0.2014, 0.3056, 0.2295, 0.1665, 0.2800, 0.1872, 0.2334, 0.1915, 0.2555, 0.1860, 0.1498, 0.3754, 0.4063, 0.3051, 0.3233, 0.2957, 0.3485, 0.3730, 0.2105, 0.3167},
+      { 0.1879, 0.2836, 0.2555, 0.1904, 0.2924, 0.2096, 0.2568, 0.2090, 0.2524, 0.1928, 0.1853, 0.4018, 0.4449, 0.3449, 0.3586, 0.3459, 0.3730, 0.4264, 0.2332, 0.3638},
+      { 0.1886, 0.2236, 0.2530, 0.1950, 0.2385, 0.2020, 0.2112, 0.1919, 0.2296, 0.1840, 0.1674, 0.2781, 0.2725, 0.2141, 0.2132, 0.1854, 0.2105, 0.2332, 0.2561, 0.2232},
+      { 0.1931, 0.2474, 0.2316, 0.1600, 0.2686, 0.2053, 0.2480, 0.2043, 0.2200, 0.1975, 0.1735, 0.3635, 0.3715, 0.3333, 0.3356, 0.3011, 0.3167, 0.3638, 0.2232, 0.4519}},
+    {
+      { 0.2454, 0.2414, 0.4272, 0.4204, 0.3590, 0.2969, 0.2725, 0.3080, 0.3405, 0.2489, 0.2410, 0.3362, 0.3145, 0.1927, 0.1823, 0.1702, 0.2106, 0.2098, 0.2410, 0.2273},
+      { 0.2414, 0.2569, 0.4411, 0.4373, 0.3638, 0.2920, 0.2844, 0.3113, 0.3350, 0.2334, 0.2455, 0.3585, 0.3570, 0.2409, 0.2390, 0.2231, 0.2467, 0.2551, 0.2657, 0.2390},
+      { 0.4272, 0.4411, 0.3478, 0.2940, 0.3758, 0.3619, 0.3797, 0.3824, 0.3869, 0.3354, 0.3366, 0.4265, 0.4222, 0.3607, 0.3878, 0.4238, 0.4238, 0.3955, 0.3365, 0.3879},
+      { 0.4204, 0.4373, 0.2940, 0.2713, 0.3325, 0.3173, 0.3240, 0.3429, 0.3531, 0.2668, 0.2612, 0.4038, 0.3788, 0.3052, 0.3093, 0.3021, 0.3074, 0.3239, 0.2955, 0.2960},
+      { 0.3590, 0.3638, 0.3758, 0.3325, 0.4123, 0.3606, 0.3748, 0.3373, 0.3596, 0.3054, 0.3134, 0.4379, 0.4326, 0.3482, 0.3394, 0.3313, 0.3649, 0.3699, 0.3243, 0.3665},
+      { 0.2969, 0.2920, 0.3619, 0.3173, 0.3606, 0.3076, 0.3011, 0.3228, 0.3257, 0.2794, 0.2683, 0.3458, 0.3563, 0.2762, 0.2645, 0.2501, 0.2756, 0.3011, 0.2813, 0.2905},
+      { 0.2725, 0.2844, 0.3797, 0.3240, 0.3748, 0.3011, 0.3359, 0.3306, 0.3342, 0.2717, 0.2696, 0.3739, 0.3823, 0.3335, 0.3248, 0.2945, 0.3088, 0.3313, 0.2922, 0.3285},
+      { 0.3080, 0.3113, 0.3824, 0.3429, 0.3373, 0.3228, 0.3306, 0.3684, 0.3591, 0.2973, 0.2842, 0.3537, 0.3694, 0.2780, 0.2701, 0.2419, 0.2784, 0.3063, 0.2871, 0.2912},
+      { 0.3405, 0.3350, 0.3869, 0.3531, 0.3596, 0.3257, 0.3342, 0.3591, 0.3702, 0.2884, 0.3063, 0.3821, 0.4138, 0.2970, 0.2962, 0.2978, 0.3169, 0.3265, 0.3015, 0.3058},
+      { 0.2489, 0.2334, 0.3354, 0.2668, 0.3054, 0.2794, 0.2717, 0.2973, 0.2884, 0.2642, 0.2508, 0.3316, 0.3473, 0.2343, 0.2293, 0.2241, 0.2743, 0.2784, 0.2726, 0.2949},
+      { 0.2410, 0.2455, 0.3366, 0.2612, 0.3134, 0.2683, 0.2696, 0.2842, 0.3063, 0.2508, 0.2676, 0.3690, 0.3848, 0.2385, 0.2334, 0.2131, 0.2679, 0.3022, 0.2681, 0.2835},
+      { 0.3362, 0.3585, 0.4265, 0.4038, 0.4379, 0.3458, 0.3739, 0.3537, 0.3821, 0.3316, 0.3690, 0.4553, 0.4951, 0.4132, 0.4203, 0.4104, 0.4413, 0.4703, 0.3569, 0.4267},
+      { 0.3145, 0.3570, 0.4222, 0.3788, 0.4326, 0.3563, 0.3823, 0.3694, 0.4138, 0.3473, 0.3848, 0.4951, 0.5162, 0.4147, 0.4315, 0.4172, 0.4692, 0.5036, 0.3586, 0.4554},
+      { 0.1927, 0.2409, 0.3607, 0.3052, 0.3482, 0.2762, 0.3335, 0.2780, 0.2970, 0.2343, 0.2385, 0.4132, 0.4147, 0.4167, 0.4081, 0.3784, 0.3716, 0.4100, 0.3123, 0.3992},
+      { 0.1823, 0.2390, 0.3878, 0.3093, 0.3394, 0.2645, 0.3248, 0.2701, 0.2962, 0.2293, 0.2334, 0.4203, 0.4315, 0.4081, 0.4270, 0.4018, 0.3936, 0.4237, 0.3093, 0.4005},
+      { 0.1702, 0.2231, 0.4238, 0.3021, 0.3313, 0.2501, 0.2945, 0.2419, 0.2978, 0.2241, 0.2131, 0.4104, 0.4172, 0.3784, 0.4018, 0.3898, 0.3728, 0.4104, 0.2919, 0.3701},
+      { 0.2106, 0.2467, 0.4238, 0.3074, 0.3649, 0.2756, 0.3088, 0.2784, 0.3169, 0.2743, 0.2679, 0.4413, 0.4692, 0.3716, 0.3936, 0.3728, 0.4193, 0.4430, 0.3088, 0.3896},
+      { 0.2098, 0.2551, 0.3955, 0.3239, 0.3699, 0.3011, 0.3313, 0.3063, 0.3265, 0.2784, 0.3022, 0.4703, 0.5036, 0.4100, 0.4237, 0.4104, 0.4430, 0.4759, 0.3251, 0.4254},
+      { 0.2410, 0.2657, 0.3365, 0.2955, 0.3243, 0.2813, 0.2922, 0.2871, 0.3015, 0.2726, 0.2681, 0.3569, 0.3586, 0.3123, 0.3093, 0.2919, 0.3088, 0.3251, 0.3371, 0.3223},
+      { 0.2273, 0.2390, 0.3879, 0.2960, 0.3665, 0.2905, 0.3285, 0.2912, 0.3058, 0.2949, 0.2835, 0.4267, 0.4554, 0.3992, 0.4005, 0.3701, 0.3896, 0.4254, 0.3223, 0.4851}},
+    {
+      { 0.1665, 0.1685, 0.4046, 0.3346, 0.2871, 0.2143, 0.2009, 0.2379, 0.2766, 0.1686, 0.1693, 0.2658, 0.2346, 0.1269, 0.1144, 0.0975, 0.1302, 0.1364, 0.1753, 0.1541},
+      { 0.1685, 0.1995, 0.4372, 0.3589, 0.2972, 0.2219, 0.2219, 0.2430, 0.2791, 0.1624, 0.1805, 0.2886, 0.2940, 0.1755, 0.1717, 0.1553, 0.1732, 0.1817, 0.2094, 0.1611},
+      { 0.4046, 0.4372, 0.2923, 0.2361, 0.3192, 0.2920, 0.3057, 0.3068, 0.3311, 0.2630, 0.2607, 0.3717, 0.3722, 0.2941, 0.3060, 0.3021, 0.3016, 0.3163, 0.2958, 0.3017},
+      { 0.3346, 0.3589, 0.2361, 0.2076, 0.2785, 0.2720, 0.3099, 0.2776, 0.2904, 0.2199, 0.2037, 0.3614, 0.3035, 0.3099, 0.3192, 0.3206, 0.3403, 0.3163, 0.2562, 0.3004},
+      { 0.2871, 0.2972, 0.3192, 0.2785, 0.3451, 0.2895, 0.3024, 0.2742, 0.2906, 0.2313, 0.2407, 0.3828, 0.3843, 0.2959, 0.2895, 0.2750, 0.2876, 0.3129, 0.2667, 0.2972},
+      { 0.2143, 0.2219, 0.2920, 0.2720, 0.2895, 0.2304, 0.2282, 0.2447, 0.2577, 0.1928, 0.1922, 0.2726, 0.2845, 0.2150, 0.2017, 0.1868, 0.2019, 0.2290, 0.2191, 0.2193},
+      { 0.2009, 0.2219, 0.3057, 0.3099, 0.3024, 0.2282, 0.2713, 0.2580, 0.2687, 0.1840, 0.1885, 0.3130, 0.3207, 0.2801, 0.2726, 0.2393, 0.2453, 0.2709, 0.2334, 0.2633},
+      { 0.2379, 0.2430, 0.3068, 0.2776, 0.2742, 0.2447, 0.2580, 0.2945, 0.2856, 0.2118, 0.2038, 0.2867, 0.3012, 0.2121, 0.2024, 0.1746, 0.2101, 0.2290, 0.2217, 0.2276},
+      { 0.2766, 0.2791, 0.3311, 0.2904, 0.2906, 0.2577, 0.2687, 0.2856, 0.3082, 0.2114, 0.2319, 0.3257, 0.3461, 0.2373, 0.2394, 0.2390, 0.2495, 0.2604, 0.2476, 0.2352},
+      { 0.1686, 0.1624, 0.2630, 0.2199, 0.2313, 0.1928, 0.1840, 0.2118, 0.2114, 0.1881, 0.1683, 0.2599, 0.2701, 0.1632, 0.1652, 0.1806, 0.2078, 0.2103, 0.2209, 0.2480},
+      { 0.1693, 0.1805, 0.2607, 0.2037, 0.2407, 0.1922, 0.1885, 0.2038, 0.2319, 0.1683, 0.1829, 0.3021, 0.3114, 0.1692, 0.1615, 0.1340, 0.1760, 0.2152, 0.1990, 0.2152},
+      { 0.2658, 0.2886, 0.3717, 0.3614, 0.3828, 0.2726, 0.3130, 0.2867, 0.3257, 0.2599, 0.3021, 0.4176, 0.4372, 0.3754, 0.3835, 0.3727, 0.3942, 0.4216, 0.3054, 0.3811},
+      { 0.2346, 0.2940, 0.3722, 0.3035, 0.3843, 0.2845, 0.3207, 0.3012, 0.3461, 0.2701, 0.3114, 0.4372, 0.4597, 0.3716, 0.3868, 0.3792, 0.4221, 0.4516, 0.2928, 0.3867},
+      { 0.1269, 0.1755, 0.2941, 0.3099, 0.2959, 0.2150, 0.2801, 0.2121, 0.2373, 0.1632, 0.1692, 0.3754, 0.3716, 0.3758, 0.3677, 0.3379, 0.3304, 0.3672, 0.2586, 0.3586},
+      { 0.1144, 0.1717, 0.3060, 0.3192, 0.2895, 0.2017, 0.2726, 0.2024, 0.2394, 0.1652, 0.1615, 0.3835, 0.3868, 0.3677, 0.3868, 0.3599, 0.3455, 0.3877, 0.2569, 0.3630},
+      { 0.0975, 0.1553, 0.3021, 0.3206, 0.2750, 0.1868, 0.2393, 0.1746, 0.2390, 0.1806, 0.1340, 0.3727, 0.3792, 0.3379, 0.3599, 0.3460, 0.3300, 0.3741, 0.2328, 0.3306},
+      { 0.1302, 0.1732, 0.3016, 0.3403, 0.2876, 0.2019, 0.2453, 0.2101, 0.2495, 0.2078, 0.1760, 0.3942, 0.4221, 0.3304, 0.3455, 0.3300, 0.3742, 0.3969, 0.2481, 0.3300},
+      { 0.1364, 0.1817, 0.3163, 0.3163, 0.3129, 0.2290, 0.2709, 0.2290, 0.2604, 0.2103, 0.2152, 0.4216, 0.4516, 0.3672, 0.3877, 0.3741, 0.3969, 0.4454, 0.2622, 0.3739},
+      { 0.1753, 0.2094, 0.2958, 0.2562, 0.2667, 0.2191, 0.2334, 0.2217, 0.2476, 0.2209, 0.1990, 0.3054, 0.2928, 0.2586, 0.2569, 0.2328, 0.2481, 0.2622, 0.2982, 0.2680},
+      { 0.1541, 0.1611, 0.3017, 0.3004, 0.2972, 0.2193, 0.2633, 0.2276, 0.2352, 0.2480, 0.2152, 0.3811, 0.3867, 0.3586, 0.3630, 0.3306, 0.3300, 0.3739, 0.2680, 0.4554}},
+    {
+      { 0.2195, 0.2190, 0.4622, 0.4088, 0.2728, 0.2964, 0.2913, 0.3056, 0.3232, 0.2540, 0.2695, 0.3536, 0.3312, 0.2368, 0.2345, 0.2292, 0.2739, 0.2650, 0.2488, 0.2602},
+      { 0.2190, 0.2385, 0.4717, 0.4156, 0.2631, 0.2923, 0.2914, 0.2979, 0.3208, 0.2324, 0.2579, 0.3607, 0.3820, 0.2618, 0.2652, 0.2447, 0.2925, 0.2898, 0.2664, 0.2595},
+      { 0.4622, 0.4717, 0.3371, 0.2759, 0.2889, 0.3480, 0.3474, 0.3426, 0.3672, 0.3161, 0.3192, 0.4248, 0.4287, 0.3345, 0.3399, 0.3313, 0.3529, 0.3646, 0.3301, 0.3416},
+      { 0.4088, 0.4156, 0.2759, 0.2461, 0.2112, 0.2955, 0.2930, 0.2969, 0.3108, 0.2412, 0.2356, 0.3960, 0.3960, 0.2886, 0.2921, 0.2750, 0.2916, 0.3120, 0.2812, 0.2936},
+      { 0.2728, 0.2631, 0.2889, 0.2112, 0.4146, 0.3430, 0.3674, 0.3483, 0.3404, 0.2943, 0.3224, 0.4028, 0.4132, 0.3725, 0.3923, 0.4444, 0.4656, 0.4144, 0.2712, 0.3923},
+      { 0.2964, 0.2923, 0.3480, 0.2955, 0.3430, 0.3206, 0.3255, 0.3420, 0.3382, 0.2901, 0.2939, 0.3745, 0.4020, 0.3015, 0.2943, 0.2802, 0.3312, 0.3385, 0.2921, 0.3293},
+      { 0.2913, 0.2914, 0.3474, 0.2930, 0.3674, 0.3255, 0.3543, 0.3701, 0.3492, 0.2749, 0.2921, 0.4002, 0.4165, 0.3615, 0.3569, 0.3242, 0.3595, 0.3764, 0.3166, 0.3670},
+      { 0.3056, 0.2979, 0.3426, 0.2969, 0.3483, 0.3420, 0.3701, 0.4181, 0.3714, 0.3056, 0.3151, 0.3773, 0.3996, 0.3156, 0.3221, 0.3053, 0.3647, 0.3474, 0.2964, 0.3599},
+      { 0.3232, 0.3208, 0.3672, 0.3108, 0.3404, 0.3382, 0.3492, 0.3714, 0.3790, 0.2983, 0.3176, 0.4273, 0.4449, 0.3298, 0.3394, 0.3345, 0.3809, 0.3779, 0.3133, 0.3594},
+      { 0.2540, 0.2324, 0.3161, 0.2412, 0.2943, 0.2901, 0.2749, 0.3056, 0.2983, 0.2737, 0.2610, 0.3353, 0.3732, 0.2493, 0.2510, 0.2425, 0.3099, 0.3040, 0.2808, 0.3122},
+      { 0.2695, 0.2579, 0.3192, 0.2356, 0.3224, 0.2939, 0.2921, 0.3151, 0.3176, 0.2610, 0.2869, 0.3982, 0.4387, 0.2566, 0.2543, 0.2297, 0.3065, 0.3445, 0.2739, 0.3109},
+      { 0.3536, 0.3607, 0.4248, 0.3960, 0.4028, 0.3745, 0.4002, 0.3773, 0.4273, 0.3353, 0.3982, 0.4672, 0.4789, 0.4502, 0.4728, 0.4625, 0.4823, 0.4902, 0.3886, 0.4469},
+      { 0.3312, 0.3820, 0.4287, 0.3960, 0.4132, 0.4020, 0.4165, 0.3996, 0.4449, 0.3732, 0.4387, 0.4789, 0.5196, 0.4626, 0.4837, 0.4699, 0.5062, 0.5102, 0.4067, 0.4791},
+      { 0.2368, 0.2618, 0.3345, 0.2886, 0.3725, 0.3015, 0.3615, 0.3156, 0.3298, 0.2493, 0.2566, 0.4502, 0.4626, 0.4645, 0.4612, 0.4303, 0.4271, 0.4554, 0.3630, 0.4323},
+      { 0.2345, 0.2652, 0.3399, 0.2921, 0.3923, 0.2943, 0.3569, 0.3221, 0.3394, 0.2510, 0.2543, 0.4728, 0.4837, 0.4612, 0.4767, 0.4499, 0.4367, 0.4689, 0.3718, 0.4358},
+      { 0.2292, 0.2447, 0.3313, 0.2750, 0.4444, 0.2802, 0.3242, 0.3053, 0.3345, 0.2425, 0.2297, 0.4625, 0.4699, 0.4303, 0.4499, 0.4347, 0.4220, 0.4603, 0.3419, 0.4122},
+      { 0.2739, 0.2925, 0.3529, 0.2916, 0.4656, 0.3312, 0.3595, 0.3647, 0.3809, 0.3099, 0.3065, 0.4823, 0.5062, 0.4271, 0.4367, 0.4220, 0.4863, 0.4876, 0.3649, 0.4327},
+      { 0.2650, 0.2898, 0.3646, 0.3120, 0.4144, 0.3385, 0.3764, 0.3474, 0.3779, 0.3040, 0.3445, 0.4902, 0.5102, 0.4554, 0.4689, 0.4603, 0.4876, 0.5131, 0.3862, 0.4609},
+      { 0.2488, 0.2664, 0.3301, 0.2812, 0.2712, 0.2921, 0.3166, 0.2964, 0.3133, 0.2808, 0.2739, 0.3886, 0.4067, 0.3630, 0.3718, 0.3419, 0.3649, 0.3862, 0.3638, 0.3618},
+      { 0.2602, 0.2595, 0.3416, 0.2936, 0.3923, 0.3293, 0.3670, 0.3599, 0.3594, 0.3122, 0.3109, 0.4469, 0.4791, 0.4323, 0.4358, 0.4122, 0.4327, 0.4609, 0.3618, 0.5280}},
+    {
+      { 0.1195, 0.1189, 0.3750, 0.3125, 0.2804, 0.1883, 0.2138, 0.2395, 0.2414, 0.1872, 0.1755, 0.2837, 0.2699, 0.1785, 0.1702, 0.1621, 0.1990, 0.1994, 0.1724, 0.1866},
+      { 0.1189, 0.1385, 0.3920, 0.3318, 0.2785, 0.1728, 0.2111, 0.2221, 0.2368, 0.1623, 0.1678, 0.2831, 0.2879, 0.1815, 0.1799, 0.1563, 0.1836, 0.2033, 0.1714, 0.1798},
+      { 0.3750, 0.3920, 0.2726, 0.2051, 0.2996, 0.2574, 0.2763, 0.2832, 0.3006, 0.2375, 0.2521, 0.3637, 0.3638, 0.2620, 0.2627, 0.2501, 0.2724, 0.2969, 0.2546, 0.2778},
+      { 0.3125, 0.3318, 0.2051, 0.1582, 0.2226, 0.1870, 0.2225, 0.2133, 0.2367, 0.1629, 0.1611, 0.3079, 0.2990, 0.2091, 0.2044, 0.1868, 0.1943, 0.2287, 0.1870, 0.2098},
+      { 0.2804, 0.2785, 0.2996, 0.2226, 0.3682, 0.3081, 0.3273, 0.2936, 0.2947, 0.2675, 0.2769, 0.4053, 0.4090, 0.3099, 0.2980, 0.2802, 0.3301, 0.3449, 0.2743, 0.3349},
+      { 0.1883, 0.1728, 0.2574, 0.1870, 0.3081, 0.2429, 0.2770, 0.2717, 0.2668, 0.2373, 0.2164, 0.3094, 0.3021, 0.2855, 0.2998, 0.3241, 0.3202, 0.3042, 0.2373, 0.3110},
+      { 0.2138, 0.2111, 0.2763, 0.2225, 0.3273, 0.2770, 0.3135, 0.3014, 0.2886, 0.2613, 0.2372, 0.3519, 0.3639, 0.3428, 0.3467, 0.3264, 0.3563, 0.3539, 0.2938, 0.3490},
+      { 0.2395, 0.2221, 0.2832, 0.2133, 0.2936, 0.2717, 0.3014, 0.3354, 0.2908, 0.2661, 0.2282, 0.3165, 0.3266, 0.2526, 0.2470, 0.2395, 0.2830, 0.2784, 0.2420, 0.2875},
+      { 0.2414, 0.2368, 0.3006, 0.2367, 0.2947, 0.2668, 0.2886, 0.2908, 0.2907, 0.2438, 0.2501, 0.3255, 0.3574, 0.2506, 0.2485, 0.2266, 0.2625, 0.2818, 0.2460, 0.2750},
+      { 0.1872, 0.1623, 0.2375, 0.1629, 0.2675, 0.2373, 0.2613, 0.2661, 0.2438, 0.2541, 0.2234, 0.3156, 0.3234, 0.2570, 0.2568, 0.2454, 0.3037, 0.3018, 0.2482, 0.3042},
+      { 0.1755, 0.1678, 0.2521, 0.1611, 0.2769, 0.2164, 0.2372, 0.2282, 0.2501, 0.2234, 0.2306, 0.3509, 0.3523, 0.2135, 0.2173, 0.1966, 0.2635, 0.2795, 0.2213, 0.2614},
+      { 0.2837, 0.2831, 0.3637, 0.3079, 0.4053, 0.3094, 0.3519, 0.3165, 0.3255, 0.3156, 0.3509, 0.4397, 0.4721, 0.3972, 0.4008, 0.3835, 0.4266, 0.4537, 0.3537, 0.4093},
+      { 0.2699, 0.2879, 0.3638, 0.2990, 0.4090, 0.3021, 0.3639, 0.3266, 0.3574, 0.3234, 0.3523, 0.4721, 0.5224, 0.4073, 0.4269, 0.4037, 0.4683, 0.5002, 0.3432, 0.4398},
+      { 0.1785, 0.1815, 0.2620, 0.2091, 0.3099, 0.2855, 0.3428, 0.2526, 0.2506, 0.2570, 0.2135, 0.3972, 0.4073, 0.4354, 0.4354, 0.4030, 0.4063, 0.4382, 0.3512, 0.4203},
+      { 0.1702, 0.1799, 0.2627, 0.2044, 0.2980, 0.2998, 0.3467, 0.2470, 0.2485, 0.2568, 0.2173, 0.4008, 0.4269, 0.4354, 0.4508, 0.4169, 0.4150, 0.4489, 0.3646, 0.4234},
+      { 0.1621, 0.1563, 0.2501, 0.1868, 0.2802, 0.3241, 0.3264, 0.2395, 0.2266, 0.2454, 0.1966, 0.3835, 0.4037, 0.4030, 0.4169, 0.3979, 0.3865, 0.4262, 0.3592, 0.4141},
+      { 0.1990, 0.1836, 0.2724, 0.1943, 0.3301, 0.3202, 0.3563, 0.2830, 0.2625, 0.3037, 0.2635, 0.4266, 0.4683, 0.4063, 0.4150, 0.3865, 0.4562, 0.4670, 0.3682, 0.4536},
+      { 0.1994, 0.2033, 0.2969, 0.2287, 0.3449, 0.3042, 0.3539, 0.2784, 0.2818, 0.3018, 0.2795, 0.4537, 0.5002, 0.4382, 0.4489, 0.4262, 0.4670, 0.4945, 0.3678, 0.4546},
+      { 0.1724, 0.1714, 0.2546, 0.1870, 0.2743, 0.2373, 0.2938, 0.2420, 0.2460, 0.2482, 0.2213, 0.3537, 0.3432, 0.3512, 0.3646, 0.3592, 0.3682, 0.3678, 0.3187, 0.3523},
+      { 0.1866, 0.1798, 0.2778, 0.2098, 0.3349, 0.3110, 0.3490, 0.2875, 0.2750, 0.3042, 0.2614, 0.4093, 0.4398, 0.4203, 0.4234, 0.4141, 0.4536, 0.4546, 0.3523, 0.5436}},
+    {
+      { 0.1611, 0.1510, 0.4019, 0.3400, 0.3244, 0.2314, 0.2060, 0.2607, 0.2687, 0.2105, 0.2068, 0.3262, 0.3135, 0.2167, 0.2118, 0.1924, 0.2266, 0.2404, 0.2062, 0.2154},
+      { 0.1510, 0.1736, 0.4279, 0.3714, 0.3190, 0.2291, 0.2159, 0.2489, 0.2677, 0.1952, 0.2040, 0.3356, 0.3430, 0.2459, 0.2423, 0.2163, 0.2382, 0.2555, 0.2154, 0.2202},
+      { 0.4019, 0.4279, 0.2846, 0.2226, 0.3278, 0.2913, 0.2791, 0.3043, 0.3194, 0.2659, 0.2737, 0.3968, 0.4051, 0.3154, 0.3171, 0.2945, 0.3044, 0.3368, 0.2792, 0.2971},
+      { 0.3400, 0.3714, 0.2226, 0.1909, 0.2646, 0.2347, 0.2299, 0.2425, 0.2644, 0.1954, 0.1940, 0.3575, 0.3417, 0.2679, 0.2695, 0.2393, 0.2408, 0.2813, 0.2242, 0.2328},
+      { 0.3244, 0.3190, 0.3278, 0.2646, 0.4069, 0.3473, 0.3439, 0.3199, 0.3272, 0.3116, 0.2944, 0.4447, 0.4420, 0.3593, 0.3548, 0.3242, 0.3756, 0.3857, 0.3179, 0.3661},
+      { 0.2314, 0.2291, 0.2913, 0.2347, 0.3473, 0.2933, 0.2904, 0.3038, 0.2994, 0.2706, 0.2583, 0.3604, 0.3841, 0.3336, 0.3437, 0.3264, 0.3578, 0.3620, 0.2885, 0.3418},
+      { 0.2060, 0.2159, 0.2791, 0.2299, 0.3439, 0.2904, 0.3405, 0.3236, 0.2958, 0.2587, 0.2481, 0.3705, 0.3867, 0.3866, 0.4005, 0.4047, 0.3943, 0.3889, 0.3008, 0.3953},
+      { 0.2607, 0.2489, 0.3043, 0.2425, 0.3199, 0.3038, 0.3236, 0.3556, 0.3178, 0.2864, 0.2621, 0.3535, 0.3718, 0.2931, 0.2969, 0.2676, 0.3305, 0.3262, 0.2705, 0.3133},
+      { 0.2687, 0.2677, 0.3194, 0.2644, 0.3272, 0.2994, 0.2958, 0.3178, 0.3186, 0.2721, 0.2687, 0.3692, 0.4061, 0.3030, 0.3021, 0.2801, 0.3144, 0.3321, 0.2798, 0.3063},
+      { 0.2105, 0.1952, 0.2659, 0.1954, 0.3116, 0.2706, 0.2587, 0.2864, 0.2721, 0.2767, 0.2498, 0.3575, 0.3693, 0.2930, 0.2943, 0.2639, 0.3192, 0.3396, 0.2846, 0.3362},
+      { 0.2068, 0.2040, 0.2737, 0.1940, 0.2944, 0.2583, 0.2481, 0.2621, 0.2687, 0.2498, 0.2479, 0.3716, 0.3868, 0.2616, 0.2696, 0.2422, 0.3031, 0.3193, 0.2557, 0.3042},
+      { 0.3262, 0.3356, 0.3968, 0.3575, 0.4447, 0.3604, 0.3705, 0.3535, 0.3692, 0.3575, 0.3716, 0.4694, 0.5051, 0.4498, 0.4575, 0.4353, 0.4670, 0.5019, 0.3960, 0.4430},
+      { 0.3135, 0.3430, 0.4051, 0.3417, 0.4420, 0.3841, 0.3867, 0.3718, 0.4061, 0.3693, 0.3868, 0.5051, 0.5237, 0.4524, 0.4713, 0.4577, 0.5091, 0.5410, 0.4019, 0.4723},
+      { 0.2167, 0.2459, 0.3154, 0.2679, 0.3593, 0.3336, 0.3866, 0.2931, 0.3030, 0.2930, 0.2616, 0.4498, 0.4524, 0.4895, 0.4937, 0.4680, 0.4577, 0.4869, 0.4027, 0.4669},
+      { 0.2118, 0.2423, 0.3171, 0.2695, 0.3548, 0.3437, 0.4005, 0.2969, 0.3021, 0.2943, 0.2696, 0.4575, 0.4713, 0.4937, 0.5119, 0.4848, 0.4745, 0.5013, 0.4183, 0.4770},
+      { 0.1924, 0.2163, 0.2945, 0.2393, 0.3242, 0.3264, 0.4047, 0.2676, 0.2801, 0.2639, 0.2422, 0.4353, 0.4577, 0.4680, 0.4848, 0.4727, 0.4581, 0.4873, 0.3958, 0.4519},
+      { 0.2266, 0.2382, 0.3044, 0.2408, 0.3756, 0.3578, 0.3943, 0.3305, 0.3144, 0.3192, 0.3031, 0.4670, 0.5091, 0.4577, 0.4745, 0.4581, 0.5050, 0.5181, 0.4101, 0.4764},
+      { 0.2404, 0.2555, 0.3368, 0.2813, 0.3857, 0.3620, 0.3889, 0.3262, 0.3321, 0.3396, 0.3193, 0.5019, 0.5410, 0.4869, 0.5013, 0.4873, 0.5181, 0.5565, 0.4247, 0.4952},
+      { 0.2062, 0.2154, 0.2792, 0.2242, 0.3179, 0.2885, 0.3008, 0.2705, 0.2798, 0.2846, 0.2557, 0.3960, 0.4019, 0.4027, 0.4183, 0.3958, 0.4101, 0.4247, 0.3767, 0.4022},
+      { 0.2154, 0.2202, 0.2971, 0.2328, 0.3661, 0.3418, 0.3953, 0.3133, 0.3063, 0.3362, 0.3042, 0.4430, 0.4723, 0.4669, 0.4770, 0.4519, 0.4764, 0.4952, 0.4022, 0.5467}},
+    {
+      { 0.1467, 0.1358, 0.3866, 0.3365, 0.3020, 0.2340, 0.2326, 0.2298, 0.2578, 0.1978, 0.1998, 0.2783, 0.2546, 0.1739, 0.1762, 0.1768, 0.2024, 0.1985, 0.1776, 0.2044},
+      { 0.1358, 0.1679, 0.4040, 0.3489, 0.2783, 0.2219, 0.2188, 0.2128, 0.2571, 0.1670, 0.1929, 0.2795, 0.2779, 0.1620, 0.1631, 0.1440, 0.1724, 0.1853, 0.1876, 0.1805},
+      { 0.3866, 0.4040, 0.2786, 0.2193, 0.2978, 0.2828, 0.2798, 0.2799, 0.3105, 0.2493, 0.2571, 0.3556, 0.3583, 0.2511, 0.2564, 0.2419, 0.2606, 0.2848, 0.2588, 0.2715},
+      { 0.3365, 0.3489, 0.2193, 0.1838, 0.2390, 0.2206, 0.2255, 0.2349, 0.2516, 0.1814, 0.1782, 0.3019, 0.2812, 0.1911, 0.1930, 0.1746, 0.1921, 0.2124, 0.1997, 0.2076},
+      { 0.3020, 0.2783, 0.2978, 0.2390, 0.3563, 0.3137, 0.3377, 0.3111, 0.3021, 0.2397, 0.2869, 0.3919, 0.3869, 0.3145, 0.3083, 0.3053, 0.3342, 0.3490, 0.2696, 0.3310},
+      { 0.2340, 0.2219, 0.2828, 0.2206, 0.3137, 0.2598, 0.2654, 0.2788, 0.2750, 0.2298, 0.2278, 0.3076, 0.3057, 0.2431, 0.2386, 0.2395, 0.2636, 0.2749, 0.2381, 0.2832},
+      { 0.2326, 0.2188, 0.2798, 0.2255, 0.3377, 0.2654, 0.2999, 0.3265, 0.2818, 0.2114, 0.2342, 0.3267, 0.3403, 0.2947, 0.2952, 0.2676, 0.2961, 0.3158, 0.2585, 0.3098},
+      { 0.2298, 0.2128, 0.2799, 0.2349, 0.3111, 0.2788, 0.3265, 0.3567, 0.3185, 0.2550, 0.2493, 0.3240, 0.3211, 0.3215, 0.3562, 0.3755, 0.3629, 0.3385, 0.2544, 0.3307},
+      { 0.2578, 0.2571, 0.3105, 0.2516, 0.3021, 0.2750, 0.2818, 0.3185, 0.2962, 0.2356, 0.2583, 0.3225, 0.3471, 0.2393, 0.2400, 0.2208, 0.2686, 0.2764, 0.2402, 0.2722},
+      { 0.1978, 0.1670, 0.2493, 0.1814, 0.2397, 0.2298, 0.2114, 0.2550, 0.2356, 0.2195, 0.2063, 0.2638, 0.2794, 0.1744, 0.1708, 0.1970, 0.2323, 0.2328, 0.2367, 0.2837},
+      { 0.1998, 0.1929, 0.2571, 0.1782, 0.2869, 0.2278, 0.2342, 0.2493, 0.2583, 0.2063, 0.2424, 0.3396, 0.3547, 0.1977, 0.1977, 0.1608, 0.2368, 0.2612, 0.2088, 0.2508},
+      { 0.2783, 0.2795, 0.3556, 0.3019, 0.3919, 0.3076, 0.3267, 0.3240, 0.3225, 0.2638, 0.3396, 0.4158, 0.4556, 0.3666, 0.3748, 0.3563, 0.3913, 0.4282, 0.3187, 0.3916},
+      { 0.2546, 0.2779, 0.3583, 0.2812, 0.3869, 0.3057, 0.3403, 0.3211, 0.3471, 0.2794, 0.3547, 0.4556, 0.4603, 0.3753, 0.3926, 0.3738, 0.4149, 0.4497, 0.3182, 0.3977},
+      { 0.1739, 0.1620, 0.2511, 0.1911, 0.3145, 0.2431, 0.2947, 0.3215, 0.2393, 0.1744, 0.1977, 0.3666, 0.3753, 0.3737, 0.3823, 0.3439, 0.3537, 0.3843, 0.2723, 0.3783},
+      { 0.1762, 0.1631, 0.2564, 0.1930, 0.3083, 0.2386, 0.2952, 0.3562, 0.2400, 0.1708, 0.1977, 0.3748, 0.3926, 0.3823, 0.3974, 0.3677, 0.3684, 0.3964, 0.2748, 0.4040},
+      { 0.1768, 0.1440, 0.2419, 0.1746, 0.3053, 0.2395, 0.2676, 0.3755, 0.2208, 0.1970, 0.1608, 0.3563, 0.3738, 0.3439, 0.3677, 0.3510, 0.3371, 0.3772, 0.2495, 0.3722},
+      { 0.2024, 0.1724, 0.2606, 0.1921, 0.3342, 0.2636, 0.2961, 0.3629, 0.2686, 0.2323, 0.2368, 0.3913, 0.4149, 0.3537, 0.3684, 0.3371, 0.3969, 0.4163, 0.2815, 0.4044},
+      { 0.1985, 0.1853, 0.2848, 0.2124, 0.3490, 0.2749, 0.3158, 0.3385, 0.2764, 0.2328, 0.2612, 0.4282, 0.4497, 0.3843, 0.3964, 0.3772, 0.4163, 0.4456, 0.3032, 0.4231},
+      { 0.1776, 0.1876, 0.2588, 0.1997, 0.2696, 0.2381, 0.2585, 0.2544, 0.2402, 0.2367, 0.2088, 0.3187, 0.3182, 0.2723, 0.2748, 0.2495, 0.2815, 0.3032, 0.2781, 0.2841},
+      { 0.2044, 0.1805, 0.2715, 0.2076, 0.3310, 0.2832, 0.3098, 0.3307, 0.2722, 0.2837, 0.2508, 0.3916, 0.3977, 0.3783, 0.4040, 0.3722, 0.4044, 0.4231, 0.2841, 0.4862}},
+    {
+      { 0.2061, 0.1923, 0.4379, 0.3925, 0.3318, 0.2706, 0.2573, 0.2888, 0.2803, 0.2330, 0.2275, 0.3172, 0.2960, 0.1875, 0.1802, 0.1684, 0.2131, 0.2037, 0.2213, 0.2131},
+      { 0.1923, 0.2103, 0.4611, 0.4118, 0.3354, 0.2711, 0.2704, 0.2857, 0.2793, 0.2152, 0.2399, 0.3368, 0.3323, 0.2282, 0.2323, 0.2343, 0.2547, 0.2481, 0.2418, 0.2318},
+      { 0.4379, 0.4611, 0.3098, 0.2597, 0.3331, 0.3179, 0.3241, 0.3314, 0.3366, 0.2937, 0.2920, 0.3972, 0.3918, 0.2931, 0.3042, 0.2978, 0.3079, 0.3224, 0.3012, 0.2990},
+      { 0.3925, 0.4118, 0.2597, 0.2231, 0.2759, 0.2713, 0.2735, 0.2822, 0.2836, 0.2144, 0.2284, 0.3667, 0.3396, 0.2458, 0.2481, 0.2390, 0.2421, 0.2646, 0.2438, 0.2376},
+      { 0.3318, 0.3354, 0.3331, 0.2759, 0.3933, 0.3405, 0.3583, 0.3153, 0.3421, 0.2914, 0.3085, 0.4267, 0.4258, 0.3384, 0.3355, 0.3345, 0.3750, 0.3665, 0.2965, 0.3445},
+      { 0.2706, 0.2711, 0.3179, 0.2713, 0.3405, 0.2894, 0.2911, 0.3065, 0.2988, 0.2611, 0.2648, 0.3321, 0.3480, 0.2582, 0.2476, 0.2266, 0.2729, 0.2797, 0.2592, 0.2748},
+      { 0.2573, 0.2704, 0.3241, 0.2735, 0.3583, 0.2911, 0.3225, 0.3169, 0.3380, 0.2521, 0.2659, 0.3626, 0.3695, 0.3171, 0.3120, 0.2801, 0.3085, 0.3227, 0.2748, 0.3077},
+      { 0.2888, 0.2857, 0.3314, 0.2822, 0.3153, 0.3065, 0.3169, 0.3471, 0.3367, 0.2654, 0.2760, 0.3396, 0.3496, 0.2559, 0.2446, 0.2208, 0.2740, 0.2767, 0.2578, 0.2799},
+      { 0.2803, 0.2793, 0.3366, 0.2836, 0.3421, 0.2988, 0.3380, 0.3367, 0.3460, 0.2682, 0.3082, 0.3806, 0.3977, 0.3308, 0.3587, 0.3956, 0.3818, 0.3533, 0.2824, 0.3518},
+      { 0.2330, 0.2152, 0.2937, 0.2144, 0.2914, 0.2611, 0.2521, 0.2654, 0.2682, 0.2428, 0.2358, 0.3164, 0.3274, 0.2216, 0.2172, 0.2136, 0.2683, 0.2670, 0.2634, 0.2961},
+      { 0.2275, 0.2399, 0.2920, 0.2284, 0.3085, 0.2648, 0.2659, 0.2760, 0.3082, 0.2358, 0.2571, 0.3699, 0.3810, 0.2146, 0.2202, 0.1848, 0.2621, 0.2762, 0.2458, 0.2633},
+      { 0.3172, 0.3368, 0.3972, 0.3667, 0.4267, 0.3321, 0.3626, 0.3396, 0.3806, 0.3164, 0.3699, 0.4531, 0.4910, 0.4065, 0.4172, 0.3994, 0.4426, 0.4627, 0.3510, 0.4103},
+      { 0.2960, 0.3323, 0.3918, 0.3396, 0.4258, 0.3480, 0.3695, 0.3496, 0.3977, 0.3274, 0.3810, 0.4910, 0.5134, 0.4184, 0.4376, 0.4147, 0.4734, 0.5106, 0.3473, 0.4437},
+      { 0.1875, 0.2282, 0.2931, 0.2458, 0.3384, 0.2582, 0.3171, 0.2559, 0.3308, 0.2216, 0.2146, 0.4065, 0.4184, 0.4139, 0.4141, 0.3807, 0.3876, 0.4116, 0.2979, 0.3882},
+      { 0.1802, 0.2323, 0.3042, 0.2481, 0.3355, 0.2476, 0.3120, 0.2446, 0.3587, 0.2172, 0.2202, 0.4172, 0.4376, 0.4141, 0.4301, 0.4015, 0.4038, 0.4282, 0.3007, 0.3935},
+      { 0.1684, 0.2343, 0.2978, 0.2390, 0.3345, 0.2266, 0.2801, 0.2208, 0.3956, 0.2136, 0.1848, 0.3994, 0.4147, 0.3807, 0.4015, 0.3919, 0.3896, 0.4128, 0.2705, 0.3646},
+      { 0.2131, 0.2547, 0.3079, 0.2421, 0.3750, 0.2729, 0.3085, 0.2740, 0.3818, 0.2683, 0.2621, 0.4426, 0.4734, 0.3876, 0.4038, 0.3896, 0.4421, 0.4521, 0.3079, 0.4056},
+      { 0.2037, 0.2481, 0.3224, 0.2646, 0.3665, 0.2797, 0.3227, 0.2767, 0.3533, 0.2670, 0.2762, 0.4627, 0.5106, 0.4116, 0.4282, 0.4128, 0.4521, 0.4838, 0.3194, 0.4186},
+      { 0.2213, 0.2418, 0.3012, 0.2438, 0.2965, 0.2592, 0.2748, 0.2578, 0.2824, 0.2634, 0.2458, 0.3510, 0.3473, 0.2979, 0.3007, 0.2705, 0.3079, 0.3194, 0.3153, 0.3027},
+      { 0.2131, 0.2318, 0.2990, 0.2376, 0.3445, 0.2748, 0.3077, 0.2799, 0.3518, 0.2961, 0.2633, 0.4103, 0.4437, 0.3882, 0.3935, 0.3646, 0.4056, 0.4186, 0.3027, 0.5032}},
+    {
+      { 0.0889, 0.0814, 0.3445, 0.2900, 0.2634, 0.1989, 0.1877, 0.2055, 0.1996, 0.0945, 0.1527, 0.2482, 0.2268, 0.1252, 0.1180, 0.1289, 0.1631, 0.1642, 0.1618, 0.1993},
+      { 0.0814, 0.1198, 0.3602, 0.2969, 0.2549, 0.1894, 0.1988, 0.1866, 0.2126, 0.0750, 0.1685, 0.2738, 0.2738, 0.1543, 0.1581, 0.1427, 0.1764, 0.1914, 0.1670, 0.1834},
+      { 0.3445, 0.3602, 0.2452, 0.1917, 0.2731, 0.2567, 0.2504, 0.2555, 0.2783, 0.1897, 0.2333, 0.3442, 0.3437, 0.2264, 0.2306, 0.2241, 0.2534, 0.2773, 0.2431, 0.2621},
+      { 0.2900, 0.2969, 0.1917, 0.1445, 0.2061, 0.1842, 0.1935, 0.2020, 0.2110, 0.1313, 0.1550, 0.2951, 0.2815, 0.1675, 0.1653, 0.1806, 0.1868, 0.2138, 0.1892, 0.2158},
+      { 0.2634, 0.2549, 0.2731, 0.2061, 0.3255, 0.3091, 0.3084, 0.2463, 0.2574, 0.2236, 0.2562, 0.3754, 0.3810, 0.2630, 0.2519, 0.2425, 0.2917, 0.3126, 0.2744, 0.3084},
+      { 0.1989, 0.1894, 0.2567, 0.1842, 0.3091, 0.2854, 0.2929, 0.2592, 0.2560, 0.2187, 0.2344, 0.3112, 0.3148, 0.2580, 0.2590, 0.2454, 0.2943, 0.3003, 0.2635, 0.3113},
+      { 0.1877, 0.1988, 0.2504, 0.1935, 0.3084, 0.2929, 0.3056, 0.2476, 0.2633, 0.2405, 0.2297, 0.3440, 0.3549, 0.3090, 0.3022, 0.2639, 0.3168, 0.3381, 0.3035, 0.3436},
+      { 0.2055, 0.1866, 0.2555, 0.2020, 0.2463, 0.2592, 0.2476, 0.2600, 0.2494, 0.2255, 0.2216, 0.2756, 0.2910, 0.1771, 0.1705, 0.1970, 0.2382, 0.2402, 0.2343, 0.2961},
+      { 0.1996, 0.2126, 0.2783, 0.2110, 0.2574, 0.2560, 0.2633, 0.2494, 0.2546, 0.2095, 0.2360, 0.3173, 0.3332, 0.2190, 0.2158, 0.2136, 0.2552, 0.2663, 0.2434, 0.2721},
+      { 0.0945, 0.0750, 0.1897, 0.1313, 0.2236, 0.2187, 0.2405, 0.2255, 0.2095, 0.1969, 0.1721, 0.2845, 0.2940, 0.2537, 0.2583, 0.3235, 0.3294, 0.2963, 0.2475, 0.3295},
+      { 0.1527, 0.1685, 0.2333, 0.1550, 0.2562, 0.2344, 0.2297, 0.2216, 0.2360, 0.1721, 0.2059, 0.3264, 0.3414, 0.1833, 0.1850, 0.1720, 0.2474, 0.2578, 0.2068, 0.2747},
+      { 0.2482, 0.2738, 0.3442, 0.2951, 0.3754, 0.3112, 0.3440, 0.2756, 0.3173, 0.2845, 0.3264, 0.4236, 0.4621, 0.3934, 0.3879, 0.3639, 0.4075, 0.4435, 0.3659, 0.3994},
+      { 0.2268, 0.2738, 0.3437, 0.2815, 0.3810, 0.3148, 0.3549, 0.2910, 0.3332, 0.2940, 0.3414, 0.4621, 0.4951, 0.4035, 0.3952, 0.3771, 0.4491, 0.4815, 0.3589, 0.4064},
+      { 0.1252, 0.1543, 0.2264, 0.1675, 0.2630, 0.2580, 0.3090, 0.1771, 0.2190, 0.2537, 0.1833, 0.3934, 0.4035, 0.4380, 0.4341, 0.3890, 0.4007, 0.4335, 0.3848, 0.4289},
+      { 0.1180, 0.1581, 0.2306, 0.1653, 0.2519, 0.2590, 0.3022, 0.1705, 0.2158, 0.2583, 0.1850, 0.3879, 0.3952, 0.4341, 0.4415, 0.4066, 0.4083, 0.4376, 0.3887, 0.4255},
+      { 0.1289, 0.1427, 0.2241, 0.1806, 0.2425, 0.2454, 0.2639, 0.1970, 0.2136, 0.3235, 0.1720, 0.3639, 0.3771, 0.3890, 0.4066, 0.3808, 0.3725, 0.4105, 0.3681, 0.3761},
+      { 0.1631, 0.1764, 0.2534, 0.1868, 0.2917, 0.2943, 0.3168, 0.2382, 0.2552, 0.3294, 0.2474, 0.4075, 0.4491, 0.4007, 0.4083, 0.3725, 0.4626, 0.4487, 0.3906, 0.4352},
+      { 0.1642, 0.1914, 0.2773, 0.2138, 0.3126, 0.3003, 0.3381, 0.2402, 0.2663, 0.2963, 0.2578, 0.4435, 0.4815, 0.4335, 0.4376, 0.4105, 0.4487, 0.4871, 0.3946, 0.4417},
+      { 0.1618, 0.1670, 0.2431, 0.1892, 0.2744, 0.2635, 0.3035, 0.2343, 0.2434, 0.2475, 0.2068, 0.3659, 0.3589, 0.3848, 0.3887, 0.3681, 0.3906, 0.3946, 0.3411, 0.3968},
+      { 0.1993, 0.1834, 0.2621, 0.2158, 0.3084, 0.3113, 0.3436, 0.2961, 0.2721, 0.3295, 0.2747, 0.3994, 0.4064, 0.4289, 0.4255, 0.3761, 0.4352, 0.4417, 0.3968, 0.5694}},
+    {
+      { 0.1501, 0.1271, 0.3783, 0.3231, 0.2772, 0.2216, 0.2071, 0.2371, 0.2520, 0.1866, 0.1798, 0.2646, 0.2560, 0.1305, 0.1259, 0.0838, 0.1314, 0.1556, 0.1495, 0.1706},
+      { 0.1271, 0.1393, 0.3763, 0.3186, 0.2690, 0.2152, 0.1994, 0.2190, 0.2306, 0.1741, 0.1822, 0.2692, 0.2705, 0.1401, 0.1298, 0.0923, 0.1282, 0.1618, 0.1572, 0.1479},
+      { 0.3783, 0.3763, 0.2619, 0.2039, 0.2959, 0.2666, 0.2783, 0.2923, 0.2926, 0.2434, 0.2704, 0.3589, 0.3676, 0.2350, 0.2357, 0.2131, 0.2493, 0.2840, 0.2384, 0.2632},
+      { 0.3231, 0.3186, 0.2039, 0.1601, 0.2237, 0.2072, 0.2109, 0.2396, 0.2288, 0.1736, 0.1945, 0.3032, 0.2986, 0.1837, 0.1707, 0.1340, 0.1667, 0.2086, 0.1713, 0.1933},
+      { 0.2772, 0.2690, 0.2959, 0.2237, 0.3658, 0.2939, 0.3132, 0.3077, 0.2864, 0.2422, 0.3006, 0.3930, 0.3878, 0.2775, 0.2659, 0.2297, 0.2858, 0.3257, 0.2485, 0.3022},
+      { 0.2216, 0.2152, 0.2666, 0.2072, 0.2939, 0.2538, 0.2555, 0.2770, 0.2642, 0.2305, 0.2433, 0.2924, 0.3057, 0.2188, 0.2208, 0.1966, 0.2409, 0.2538, 0.2180, 0.2573},
+      { 0.2071, 0.1994, 0.2783, 0.2109, 0.3132, 0.2555, 0.2795, 0.2796, 0.2742, 0.2275, 0.2745, 0.3313, 0.3428, 0.2786, 0.2879, 0.2422, 0.2903, 0.3046, 0.2522, 0.3167},
+      { 0.2371, 0.2190, 0.2923, 0.2396, 0.3077, 0.2770, 0.2796, 0.3116, 0.2849, 0.2431, 0.2627, 0.3142, 0.3308, 0.2107, 0.1963, 0.1608, 0.2339, 0.2463, 0.2222, 0.2716},
+      { 0.2520, 0.2306, 0.2926, 0.2288, 0.2864, 0.2642, 0.2742, 0.2849, 0.2978, 0.2384, 0.2877, 0.3158, 0.3509, 0.2226, 0.2281, 0.1848, 0.2390, 0.2627, 0.2312, 0.2567},
+      { 0.1866, 0.1741, 0.2434, 0.1736, 0.2422, 0.2305, 0.2275, 0.2431, 0.2384, 0.2202, 0.2138, 0.2902, 0.2912, 0.1994, 0.1948, 0.1720, 0.2383, 0.2365, 0.2138, 0.2585},
+      { 0.1798, 0.1822, 0.2704, 0.1945, 0.3006, 0.2433, 0.2745, 0.2627, 0.2877, 0.2138, 0.2429, 0.3837, 0.3908, 0.2799, 0.2957, 0.3154, 0.3375, 0.3387, 0.2348, 0.3109},
+      { 0.2646, 0.2692, 0.3589, 0.3032, 0.3930, 0.2924, 0.3313, 0.3142, 0.3158, 0.2902, 0.3837, 0.4336, 0.4658, 0.3792, 0.3857, 0.3695, 0.4050, 0.4415, 0.3238, 0.3950},
+      { 0.2560, 0.2705, 0.3676, 0.2986, 0.3878, 0.3057, 0.3428, 0.3308, 0.3509, 0.2912, 0.3908, 0.4658, 0.5053, 0.3960, 0.4076, 0.4012, 0.4378, 0.4834, 0.3295, 0.4101},
+      { 0.1305, 0.1401, 0.2350, 0.1837, 0.2775, 0.2188, 0.2786, 0.2107, 0.2226, 0.1994, 0.2799, 0.3792, 0.3960, 0.3915, 0.3985, 0.3754, 0.3708, 0.4000, 0.2946, 0.3831},
+      { 0.1259, 0.1298, 0.2357, 0.1707, 0.2659, 0.2208, 0.2879, 0.1963, 0.2281, 0.1948, 0.2957, 0.3857, 0.4076, 0.3985, 0.4208, 0.3919, 0.3821, 0.4168, 0.2969, 0.3809},
+      { 0.0838, 0.0923, 0.2131, 0.1340, 0.2297, 0.1966, 0.2422, 0.1608, 0.1848, 0.1720, 0.3154, 0.3695, 0.4012, 0.3754, 0.3919, 0.3819, 0.3558, 0.4141, 0.2817, 0.3665},
+      { 0.1314, 0.1282, 0.2493, 0.1667, 0.2858, 0.2409, 0.2903, 0.2339, 0.2390, 0.2383, 0.3375, 0.4050, 0.4378, 0.3708, 0.3821, 0.3558, 0.4139, 0.4346, 0.2953, 0.4088},
+      { 0.1556, 0.1618, 0.2840, 0.2086, 0.3257, 0.2538, 0.3046, 0.2463, 0.2627, 0.2365, 0.3387, 0.4415, 0.4834, 0.4000, 0.4168, 0.4141, 0.4346, 0.4767, 0.3125, 0.4313},
+      { 0.1495, 0.1572, 0.2384, 0.1713, 0.2485, 0.2180, 0.2522, 0.2222, 0.2312, 0.2138, 0.2348, 0.3238, 0.3295, 0.2946, 0.2969, 0.2817, 0.2953, 0.3125, 0.2575, 0.2982},
+      { 0.1706, 0.1479, 0.2632, 0.1933, 0.3022, 0.2573, 0.3167, 0.2716, 0.2567, 0.2585, 0.3109, 0.3950, 0.4101, 0.3831, 0.3809, 0.3665, 0.4088, 0.4313, 0.2982, 0.5148}},
+    {
+      { 0.3245, 0.3048, 0.5321, 0.4576, 0.4154, 0.3821, 0.3642, 0.3776, 0.3938, 0.3440, 0.3454, 0.3723, 0.4188, 0.3206, 0.3177, 0.3105, 0.3476, 0.3382, 0.3348, 0.3350},
+      { 0.3048, 0.3185, 0.5465, 0.4843, 0.4283, 0.3741, 0.3748, 0.3748, 0.3966, 0.3313, 0.3416, 0.3851, 0.4623, 0.3522, 0.3613, 0.3410, 0.3733, 0.3754, 0.3495, 0.3416},
+      { 0.5321, 0.5465, 0.3948, 0.3418, 0.4188, 0.4233, 0.4268, 0.4198, 0.4413, 0.3899, 0.3956, 0.4497, 0.5097, 0.4110, 0.4174, 0.4104, 0.4341, 0.4438, 0.3976, 0.4152},
+      { 0.4576, 0.4843, 0.3418, 0.3171, 0.3682, 0.3671, 0.3698, 0.3651, 0.3873, 0.3260, 0.3220, 0.4213, 0.4711, 0.3719, 0.3865, 0.3727, 0.3805, 0.4056, 0.3535, 0.3710},
+      { 0.4154, 0.4283, 0.4188, 0.3682, 0.4950, 0.4503, 0.4655, 0.4225, 0.4216, 0.3839, 0.4032, 0.4808, 0.5118, 0.4511, 0.4607, 0.4625, 0.4760, 0.4893, 0.4014, 0.4564},
+      { 0.3821, 0.3741, 0.4233, 0.3671, 0.4503, 0.4061, 0.4166, 0.4189, 0.4196, 0.3836, 0.3765, 0.4121, 0.4752, 0.4003, 0.4062, 0.3835, 0.4294, 0.4374, 0.3890, 0.4166},
+      { 0.3642, 0.3748, 0.4268, 0.3698, 0.4655, 0.4166, 0.4405, 0.4344, 0.4287, 0.3811, 0.3845, 0.4504, 0.5016, 0.4597, 0.4631, 0.4353, 0.4622, 0.4755, 0.4112, 0.4462},
+      { 0.3776, 0.3748, 0.4198, 0.3651, 0.4225, 0.4189, 0.4344, 0.4709, 0.4331, 0.3819, 0.3787, 0.4256, 0.4765, 0.3740, 0.3798, 0.3563, 0.4210, 0.4200, 0.3665, 0.3967},
+      { 0.3938, 0.3966, 0.4413, 0.3873, 0.4216, 0.4196, 0.4287, 0.4331, 0.4435, 0.3801, 0.4013, 0.4493, 0.5236, 0.3964, 0.4068, 0.3994, 0.4386, 0.4478, 0.3925, 0.4129},
+      { 0.3440, 0.3313, 0.3899, 0.3260, 0.3839, 0.3836, 0.3811, 0.3819, 0.3801, 0.3825, 0.3652, 0.3959, 0.4737, 0.3854, 0.3898, 0.3639, 0.4202, 0.4282, 0.3807, 0.4100},
+      { 0.3454, 0.3416, 0.3956, 0.3220, 0.4032, 0.3765, 0.3845, 0.3787, 0.4013, 0.3652, 0.3772, 0.4625, 0.5337, 0.3815, 0.3844, 0.3695, 0.4278, 0.4438, 0.3694, 0.4227},
+      { 0.3723, 0.3851, 0.4497, 0.4213, 0.4808, 0.4121, 0.4504, 0.4256, 0.4493, 0.3959, 0.4625, 0.5113, 0.5510, 0.5207, 0.5503, 0.5802, 0.5662, 0.5626, 0.4378, 0.5100},
+      { 0.4188, 0.4623, 0.5097, 0.4711, 0.5118, 0.4752, 0.5016, 0.4765, 0.5236, 0.4737, 0.5337, 0.5510, 0.6150, 0.5556, 0.5649, 0.5672, 0.5983, 0.6011, 0.5058, 0.5826},
+      { 0.3206, 0.3522, 0.4110, 0.3719, 0.4511, 0.4003, 0.4597, 0.3740, 0.3964, 0.3854, 0.3815, 0.5207, 0.5556, 0.5661, 0.5680, 0.5415, 0.5351, 0.5608, 0.4848, 0.5393},
+      { 0.3177, 0.3613, 0.4174, 0.3865, 0.4607, 0.4062, 0.4631, 0.3798, 0.4068, 0.3898, 0.3844, 0.5503, 0.5649, 0.5680, 0.5885, 0.5618, 0.5513, 0.5741, 0.4935, 0.5449},
+      { 0.3105, 0.3410, 0.4104, 0.3727, 0.4625, 0.3835, 0.4353, 0.3563, 0.3994, 0.3639, 0.3695, 0.5802, 0.5672, 0.5415, 0.5618, 0.5460, 0.5300, 0.5737, 0.4755, 0.5164},
+      { 0.3476, 0.3733, 0.4341, 0.3805, 0.4760, 0.4294, 0.4622, 0.4210, 0.4386, 0.4202, 0.4278, 0.5662, 0.5983, 0.5351, 0.5513, 0.5300, 0.5819, 0.5888, 0.4885, 0.5306},
+      { 0.3382, 0.3754, 0.4438, 0.4056, 0.4893, 0.4374, 0.4755, 0.4200, 0.4478, 0.4282, 0.4438, 0.5626, 0.6011, 0.5608, 0.5741, 0.5737, 0.5888, 0.5993, 0.4943, 0.5699},
+      { 0.3348, 0.3495, 0.3976, 0.3535, 0.4014, 0.3890, 0.4112, 0.3665, 0.3925, 0.3807, 0.3694, 0.4378, 0.5058, 0.4848, 0.4935, 0.4755, 0.4885, 0.4943, 0.4672, 0.4808},
+      { 0.3350, 0.3416, 0.4152, 0.3710, 0.4564, 0.4166, 0.4462, 0.3967, 0.4129, 0.4100, 0.4227, 0.5100, 0.5826, 0.5393, 0.5449, 0.5164, 0.5306, 0.5699, 0.4808, 0.6298}},
+    {
+      { 0.3248, 0.3171, 0.5252, 0.4634, 0.4338, 0.3786, 0.3745, 0.3943, 0.4380, 0.3643, 0.3580, 0.4249, 0.3515, 0.3311, 0.3324, 0.3302, 0.3636, 0.3636, 0.3368, 0.3651},
+      { 0.3171, 0.3330, 0.5371, 0.4644, 0.4169, 0.3848, 0.3839, 0.3757, 0.3970, 0.3428, 0.3439, 0.4407, 0.3965, 0.3604, 0.3712, 0.3564, 0.3858, 0.3956, 0.3476, 0.3667},
+      { 0.5252, 0.5371, 0.3908, 0.3465, 0.4324, 0.4336, 0.4392, 0.4322, 0.4355, 0.3968, 0.3996, 0.5080, 0.4712, 0.4260, 0.4244, 0.4172, 0.4399, 0.4519, 0.3979, 0.4230},
+      { 0.4634, 0.4644, 0.3465, 0.3237, 0.3831, 0.3647, 0.3742, 0.3607, 0.3726, 0.3295, 0.3302, 0.4560, 0.4063, 0.3798, 0.3938, 0.3792, 0.3760, 0.4166, 0.3444, 0.3663},
+      { 0.4338, 0.4169, 0.4324, 0.3831, 0.5080, 0.4700, 0.4670, 0.4469, 0.4500, 0.3978, 0.4087, 0.5298, 0.4980, 0.4557, 0.4663, 0.4699, 0.5084, 0.5061, 0.4067, 0.4773},
+      { 0.3786, 0.3848, 0.4336, 0.3647, 0.4700, 0.4150, 0.4175, 0.4230, 0.4243, 0.4047, 0.3836, 0.4480, 0.4365, 0.4198, 0.4272, 0.4037, 0.4439, 0.4593, 0.3913, 0.4323},
+      { 0.3745, 0.3839, 0.4392, 0.3742, 0.4670, 0.4175, 0.4444, 0.4269, 0.4329, 0.3864, 0.3978, 0.4843, 0.4667, 0.4768, 0.4795, 0.4577, 0.4877, 0.4996, 0.4209, 0.4605},
+      { 0.3943, 0.3757, 0.4322, 0.3607, 0.4469, 0.4230, 0.4269, 0.4693, 0.4409, 0.4024, 0.3942, 0.4573, 0.4314, 0.3798, 0.3798, 0.3738, 0.4341, 0.4367, 0.3626, 0.4183},
+      { 0.4380, 0.3970, 0.4355, 0.3726, 0.4500, 0.4243, 0.4329, 0.4409, 0.4471, 0.3902, 0.4117, 0.4797, 0.4793, 0.4179, 0.4275, 0.4147, 0.4522, 0.4706, 0.3867, 0.4377},
+      { 0.3643, 0.3428, 0.3968, 0.3295, 0.3978, 0.4047, 0.3864, 0.4024, 0.3902, 0.4050, 0.3754, 0.4616, 0.4320, 0.3920, 0.3983, 0.3771, 0.4340, 0.4501, 0.3877, 0.4158},
+      { 0.3580, 0.3439, 0.3996, 0.3302, 0.4087, 0.3836, 0.3978, 0.3942, 0.4117, 0.3754, 0.3840, 0.5014, 0.4962, 0.3946, 0.4131, 0.4012, 0.4423, 0.4656, 0.3842, 0.4467},
+      { 0.4249, 0.4407, 0.5080, 0.4560, 0.5298, 0.4480, 0.4843, 0.4573, 0.4797, 0.4616, 0.5014, 0.5526, 0.5773, 0.5477, 0.5794, 0.5672, 0.5860, 0.5989, 0.4776, 0.5573},
+      { 0.3515, 0.3965, 0.4712, 0.4063, 0.4980, 0.4365, 0.4667, 0.4314, 0.4793, 0.4320, 0.4962, 0.5773, 0.6060, 0.5638, 0.5946, 0.6365, 0.6341, 0.6276, 0.4651, 0.6110},
+      { 0.3311, 0.3604, 0.4260, 0.3798, 0.4557, 0.4198, 0.4768, 0.3798, 0.4179, 0.3920, 0.3946, 0.5477, 0.5638, 0.5822, 0.5884, 0.5652, 0.5538, 0.5840, 0.4919, 0.5612},
+      { 0.3324, 0.3712, 0.4244, 0.3938, 0.4663, 0.4272, 0.4795, 0.3798, 0.4275, 0.3983, 0.4131, 0.5794, 0.5946, 0.5884, 0.6174, 0.5881, 0.5770, 0.6085, 0.5072, 0.5642},
+      { 0.3302, 0.3564, 0.4172, 0.3792, 0.4699, 0.4037, 0.4577, 0.3738, 0.4147, 0.3771, 0.4012, 0.5672, 0.6365, 0.5652, 0.5881, 0.5742, 0.5589, 0.6036, 0.4894, 0.5402},
+      { 0.3636, 0.3858, 0.4399, 0.3760, 0.5084, 0.4439, 0.4877, 0.4341, 0.4522, 0.4340, 0.4423, 0.5860, 0.6341, 0.5538, 0.5770, 0.5589, 0.5991, 0.6357, 0.4925, 0.5559},
+      { 0.3636, 0.3956, 0.4519, 0.4166, 0.5061, 0.4593, 0.4996, 0.4367, 0.4706, 0.4501, 0.4656, 0.5989, 0.6276, 0.5840, 0.6085, 0.6036, 0.6357, 0.6474, 0.5127, 0.5966},
+      { 0.3368, 0.3476, 0.3979, 0.3444, 0.4067, 0.3913, 0.4209, 0.3626, 0.3867, 0.3877, 0.3842, 0.4776, 0.4651, 0.4919, 0.5072, 0.4894, 0.4925, 0.5127, 0.4504, 0.4845},
+      { 0.3651, 0.3667, 0.4230, 0.3663, 0.4773, 0.4323, 0.4605, 0.4183, 0.4377, 0.4158, 0.4467, 0.5573, 0.6110, 0.5612, 0.5642, 0.5402, 0.5559, 0.5966, 0.4845, 0.6333}},
+    {
+      { 0.2378, 0.2190, 0.4695, 0.4062, 0.3989, 0.3171, 0.3018, 0.3258, 0.3322, 0.2899, 0.2776, 0.4103, 0.4014, 0.2591, 0.2775, 0.2767, 0.2955, 0.3157, 0.2703, 0.2824},
+      { 0.2190, 0.2477, 0.4950, 0.4310, 0.3932, 0.3137, 0.3203, 0.3173, 0.3256, 0.2678, 0.2705, 0.4140, 0.4230, 0.2888, 0.3165, 0.3044, 0.3223, 0.3493, 0.2822, 0.2885},
+      { 0.4695, 0.4950, 0.3382, 0.2727, 0.3903, 0.3587, 0.3710, 0.3604, 0.3836, 0.3339, 0.3339, 0.4641, 0.4733, 0.3568, 0.3808, 0.3784, 0.3826, 0.4237, 0.3440, 0.3696},
+      { 0.4062, 0.4310, 0.2727, 0.2524, 0.3255, 0.3083, 0.3162, 0.3097, 0.3233, 0.2679, 0.2646, 0.4353, 0.4295, 0.3256, 0.3496, 0.3379, 0.3291, 0.3822, 0.3005, 0.3125},
+      { 0.3989, 0.3932, 0.3903, 0.3255, 0.4710, 0.4456, 0.4488, 0.3974, 0.3968, 0.3658, 0.3566, 0.5114, 0.5040, 0.4147, 0.4411, 0.4303, 0.4512, 0.4827, 0.3835, 0.4390},
+      { 0.3171, 0.3137, 0.3587, 0.3083, 0.4456, 0.3875, 0.3911, 0.3822, 0.3842, 0.3529, 0.3358, 0.4444, 0.4827, 0.3907, 0.4189, 0.4030, 0.4349, 0.4594, 0.3738, 0.4166},
+      { 0.3018, 0.3203, 0.3710, 0.3162, 0.4488, 0.3911, 0.4274, 0.4090, 0.3945, 0.3566, 0.3473, 0.4699, 0.4882, 0.4591, 0.4866, 0.4680, 0.4718, 0.4943, 0.4051, 0.4614},
+      { 0.3258, 0.3173, 0.3604, 0.3097, 0.3974, 0.3822, 0.4090, 0.4457, 0.3852, 0.3382, 0.3313, 0.4273, 0.4630, 0.3413, 0.3650, 0.3439, 0.3979, 0.4060, 0.3256, 0.3834},
+      { 0.3322, 0.3256, 0.3836, 0.3233, 0.3968, 0.3842, 0.3945, 0.3852, 0.3818, 0.3404, 0.3422, 0.4526, 0.4903, 0.3600, 0.3840, 0.3807, 0.4048, 0.4261, 0.3487, 0.3801},
+      { 0.2899, 0.2678, 0.3339, 0.2679, 0.3658, 0.3529, 0.3566, 0.3382, 0.3404, 0.3508, 0.3146, 0.4532, 0.4895, 0.3780, 0.4064, 0.3890, 0.4266, 0.4726, 0.3661, 0.4133},
+      { 0.2776, 0.2705, 0.3339, 0.2646, 0.3566, 0.3358, 0.3473, 0.3313, 0.3422, 0.3146, 0.3406, 0.4603, 0.4915, 0.3505, 0.3809, 0.3754, 0.4109, 0.4318, 0.3428, 0.4070},
+      { 0.4103, 0.4140, 0.4641, 0.4353, 0.5114, 0.4444, 0.4699, 0.4273, 0.4526, 0.4532, 0.4603, 0.5333, 0.5620, 0.5174, 0.5524, 0.5415, 0.5559, 0.5945, 0.4859, 0.5185},
+      { 0.4014, 0.4230, 0.4733, 0.4295, 0.5040, 0.4827, 0.4882, 0.4630, 0.4903, 0.4895, 0.4915, 0.5620, 0.6167, 0.5298, 0.5640, 0.5652, 0.6045, 0.6380, 0.5000, 0.5530},
+      { 0.2591, 0.2888, 0.3568, 0.3256, 0.4147, 0.3907, 0.4591, 0.3413, 0.3600, 0.3780, 0.3505, 0.5174, 0.5298, 0.5902, 0.5974, 0.5803, 0.5408, 0.5801, 0.4937, 0.5551},
+      { 0.2775, 0.3165, 0.3808, 0.3496, 0.4411, 0.4189, 0.4866, 0.3650, 0.3840, 0.4064, 0.3809, 0.5524, 0.5640, 0.5974, 0.6318, 0.6051, 0.5763, 0.6119, 0.5264, 0.5823},
+      { 0.2767, 0.3044, 0.3784, 0.3379, 0.4303, 0.4030, 0.4680, 0.3439, 0.3807, 0.3890, 0.3754, 0.5415, 0.5652, 0.5803, 0.6051, 0.5848, 0.5593, 0.6007, 0.5152, 0.5594},
+      { 0.2955, 0.3223, 0.3826, 0.3291, 0.4512, 0.4349, 0.4718, 0.3979, 0.4048, 0.4266, 0.4109, 0.5559, 0.6045, 0.5408, 0.5763, 0.5593, 0.5994, 0.6211, 0.5097, 0.5619},
+      { 0.3157, 0.3493, 0.4237, 0.3822, 0.4827, 0.4594, 0.4943, 0.4060, 0.4261, 0.4726, 0.4318, 0.5945, 0.6380, 0.5801, 0.6119, 0.6007, 0.6211, 0.6612, 0.5417, 0.6009},
+      { 0.2703, 0.2822, 0.3440, 0.3005, 0.3835, 0.3738, 0.4051, 0.3256, 0.3487, 0.3661, 0.3428, 0.4859, 0.5000, 0.4937, 0.5264, 0.5152, 0.5097, 0.5417, 0.4636, 0.4892},
+      { 0.2824, 0.2885, 0.3696, 0.3125, 0.4390, 0.4166, 0.4614, 0.3834, 0.3801, 0.4133, 0.4070, 0.5185, 0.5530, 0.5551, 0.5823, 0.5594, 0.5619, 0.6009, 0.4892, 0.6028}},
+    {
+      { 0.2720, 0.2540, 0.4970, 0.4266, 0.4140, 0.3445, 0.3245, 0.3470, 0.3523, 0.3185, 0.3038, 0.4412, 0.4322, 0.2818, 0.2777, 0.3016, 0.3172, 0.3357, 0.2927, 0.3029},
+      { 0.2540, 0.2636, 0.5160, 0.4481, 0.4167, 0.3423, 0.3403, 0.3480, 0.3527, 0.2944, 0.2955, 0.4374, 0.4551, 0.3152, 0.3140, 0.3307, 0.3425, 0.3690, 0.3075, 0.3071},
+      { 0.4970, 0.5160, 0.3523, 0.2994, 0.4033, 0.3826, 0.3911, 0.3873, 0.4170, 0.3559, 0.3611, 0.4847, 0.5072, 0.3747, 0.3779, 0.4018, 0.4022, 0.4409, 0.3685, 0.3935},
+      { 0.4266, 0.4481, 0.2994, 0.2781, 0.3456, 0.3299, 0.3380, 0.3400, 0.3460, 0.2950, 0.2861, 0.4502, 0.4640, 0.3396, 0.3458, 0.3599, 0.3604, 0.4055, 0.3209, 0.3345},
+      { 0.4140, 0.4167, 0.4033, 0.3456, 0.4975, 0.4610, 0.4755, 0.4315, 0.4336, 0.3867, 0.3859, 0.5404, 0.5373, 0.4407, 0.4426, 0.4499, 0.4724, 0.5086, 0.4088, 0.4551},
+      { 0.3445, 0.3423, 0.3826, 0.3299, 0.4610, 0.4026, 0.4069, 0.4091, 0.4075, 0.3746, 0.3607, 0.4737, 0.5114, 0.4115, 0.4154, 0.4169, 0.4483, 0.4813, 0.3930, 0.4344},
+      { 0.3245, 0.3403, 0.3911, 0.3380, 0.4755, 0.4069, 0.4437, 0.4326, 0.4131, 0.3792, 0.3691, 0.4970, 0.5207, 0.4802, 0.4883, 0.4848, 0.4949, 0.5182, 0.4230, 0.4758},
+      { 0.3470, 0.3480, 0.3873, 0.3400, 0.4315, 0.4091, 0.4326, 0.4588, 0.4166, 0.3674, 0.3564, 0.4568, 0.4907, 0.3625, 0.3674, 0.3677, 0.4253, 0.4318, 0.3466, 0.3962},
+      { 0.3523, 0.3527, 0.4170, 0.3460, 0.4336, 0.4075, 0.4131, 0.4166, 0.4185, 0.3658, 0.3667, 0.4767, 0.5311, 0.3819, 0.3892, 0.4015, 0.4274, 0.4521, 0.3676, 0.3957},
+      { 0.3185, 0.2944, 0.3559, 0.2950, 0.3867, 0.3746, 0.3792, 0.3674, 0.3658, 0.3648, 0.3327, 0.4686, 0.5076, 0.3940, 0.3969, 0.4066, 0.4375, 0.4816, 0.3827, 0.4227},
+      { 0.3038, 0.2955, 0.3611, 0.2861, 0.3859, 0.3607, 0.3691, 0.3564, 0.3667, 0.3327, 0.3594, 0.4875, 0.5241, 0.3711, 0.3781, 0.3919, 0.4246, 0.4545, 0.3592, 0.4272},
+      { 0.4412, 0.4374, 0.4847, 0.4502, 0.5404, 0.4737, 0.4970, 0.4568, 0.4767, 0.4686, 0.4875, 0.5549, 0.5962, 0.5509, 0.5564, 0.5618, 0.5790, 0.6182, 0.5066, 0.5476},
+      { 0.4322, 0.4551, 0.5072, 0.4640, 0.5373, 0.5114, 0.5207, 0.4907, 0.5311, 0.5076, 0.5241, 0.5962, 0.6481, 0.5721, 0.5705, 0.5881, 0.6428, 0.6684, 0.5342, 0.5885},
+      { 0.2818, 0.3152, 0.3747, 0.3396, 0.4407, 0.4115, 0.4802, 0.3625, 0.3819, 0.3940, 0.3711, 0.5509, 0.5721, 0.6195, 0.6151, 0.6051, 0.5724, 0.6156, 0.5129, 0.5790},
+      { 0.2777, 0.3140, 0.3779, 0.3458, 0.4426, 0.4154, 0.4883, 0.3674, 0.3892, 0.3969, 0.3781, 0.5564, 0.5705, 0.6151, 0.6417, 0.6296, 0.5946, 0.6234, 0.5192, 0.5889},
+      { 0.3016, 0.3307, 0.4018, 0.3599, 0.4499, 0.4169, 0.4848, 0.3677, 0.4015, 0.4066, 0.3919, 0.5618, 0.5881, 0.6051, 0.6296, 0.6154, 0.5907, 0.6257, 0.5272, 0.5770},
+      { 0.3172, 0.3425, 0.4022, 0.3604, 0.4724, 0.4483, 0.4949, 0.4253, 0.4274, 0.4375, 0.4246, 0.5790, 0.6428, 0.5724, 0.5946, 0.5907, 0.6236, 0.6467, 0.5239, 0.5807},
+      { 0.3357, 0.3690, 0.4409, 0.4055, 0.5086, 0.4813, 0.5182, 0.4318, 0.4521, 0.4816, 0.4545, 0.6182, 0.6684, 0.6156, 0.6234, 0.6257, 0.6467, 0.6918, 0.5642, 0.6321},
+      { 0.2927, 0.3075, 0.3685, 0.3209, 0.4088, 0.3930, 0.4230, 0.3466, 0.3676, 0.3827, 0.3592, 0.5066, 0.5342, 0.5129, 0.5192, 0.5272, 0.5239, 0.5642, 0.4801, 0.5029},
+      { 0.3029, 0.3071, 0.3935, 0.3345, 0.4551, 0.4344, 0.4758, 0.3962, 0.3957, 0.4227, 0.4272, 0.5476, 0.5885, 0.5790, 0.5889, 0.5770, 0.5807, 0.6321, 0.5029, 0.6193}},
+    {
+      { 0.2724, 0.2625, 0.5054, 0.4305, 0.4107, 0.3358, 0.3197, 0.3431, 0.3558, 0.2977, 0.2972, 0.4335, 0.4182, 0.2927, 0.2946, 0.2767, 0.3083, 0.3211, 0.2931, 0.2960},
+      { 0.2625, 0.2761, 0.5229, 0.4557, 0.4148, 0.3366, 0.3332, 0.3428, 0.3612, 0.2847, 0.3061, 0.4377, 0.4546, 0.3185, 0.3325, 0.3129, 0.3406, 0.3645, 0.3120, 0.3020},
+      { 0.5054, 0.5229, 0.3508, 0.2985, 0.4016, 0.3865, 0.3873, 0.3840, 0.4032, 0.3591, 0.3572, 0.4883, 0.5048, 0.3815, 0.3969, 0.3898, 0.3973, 0.4350, 0.3668, 0.3865},
+      { 0.4305, 0.4557, 0.2985, 0.2713, 0.3463, 0.3313, 0.3343, 0.3403, 0.3419, 0.2897, 0.2859, 0.4505, 0.4622, 0.3452, 0.3641, 0.3460, 0.3536, 0.3969, 0.3201, 0.3338},
+      { 0.4107, 0.4148, 0.4016, 0.3463, 0.4788, 0.4467, 0.4632, 0.4147, 0.4197, 0.3849, 0.3798, 0.5324, 0.5374, 0.4333, 0.4502, 0.4347, 0.4591, 0.4959, 0.3969, 0.4400},
+      { 0.3358, 0.3366, 0.3865, 0.3313, 0.4467, 0.3987, 0.4018, 0.3932, 0.3991, 0.3634, 0.3573, 0.4636, 0.5077, 0.4127, 0.4270, 0.3979, 0.4340, 0.4698, 0.3908, 0.4213},
+      { 0.3197, 0.3332, 0.3873, 0.3343, 0.4632, 0.4018, 0.4360, 0.4245, 0.4106, 0.3704, 0.3679, 0.4941, 0.5170, 0.4787, 0.4975, 0.4727, 0.4889, 0.5161, 0.4192, 0.4665},
+      { 0.3431, 0.3428, 0.3840, 0.3403, 0.4147, 0.3932, 0.4245, 0.4601, 0.4116, 0.3513, 0.3443, 0.4550, 0.4818, 0.3693, 0.3786, 0.3510, 0.4029, 0.4246, 0.3462, 0.3931},
+      { 0.3558, 0.3612, 0.4032, 0.3419, 0.4197, 0.3991, 0.4106, 0.4116, 0.4177, 0.3573, 0.3757, 0.4719, 0.5246, 0.3872, 0.4012, 0.3919, 0.4231, 0.4479, 0.3639, 0.4001},
+      { 0.2977, 0.2847, 0.3591, 0.2897, 0.3849, 0.3634, 0.3704, 0.3513, 0.3573, 0.3658, 0.3218, 0.4484, 0.5014, 0.3948, 0.4041, 0.3808, 0.4280, 0.4550, 0.3815, 0.4164},
+      { 0.2972, 0.3061, 0.3572, 0.2859, 0.3798, 0.3573, 0.3679, 0.3443, 0.3757, 0.3218, 0.3755, 0.4816, 0.5235, 0.3805, 0.3970, 0.3819, 0.4246, 0.4459, 0.3609, 0.4141},
+      { 0.4335, 0.4377, 0.4883, 0.4505, 0.5324, 0.4636, 0.4941, 0.4550, 0.4719, 0.4484, 0.4816, 0.5426, 0.5889, 0.5433, 0.5638, 0.5460, 0.5715, 0.6119, 0.4982, 0.5374},
+      { 0.4182, 0.4546, 0.5048, 0.4622, 0.5374, 0.5077, 0.5170, 0.4818, 0.5246, 0.5014, 0.5235, 0.5889, 0.6418, 0.5731, 0.5869, 0.5742, 0.6289, 0.6638, 0.5318, 0.5819},
+      { 0.2927, 0.3185, 0.3815, 0.3452, 0.4333, 0.4127, 0.4787, 0.3693, 0.3872, 0.3948, 0.3805, 0.5433, 0.5731, 0.6049, 0.6110, 0.5848, 0.5669, 0.6098, 0.5107, 0.5706},
+      { 0.2946, 0.3325, 0.3969, 0.3641, 0.4502, 0.4270, 0.4975, 0.3786, 0.4012, 0.4041, 0.3970, 0.5638, 0.5869, 0.6110, 0.6428, 0.6154, 0.5952, 0.6305, 0.5306, 0.5854},
+      { 0.2767, 0.3129, 0.3898, 0.3460, 0.4347, 0.3979, 0.4727, 0.3510, 0.3919, 0.3808, 0.3819, 0.5460, 0.5742, 0.5848, 0.6154, 0.6246, 0.5807, 0.6175, 0.5014, 0.5600},
+      { 0.3083, 0.3406, 0.3973, 0.3536, 0.4591, 0.4340, 0.4889, 0.4029, 0.4231, 0.4280, 0.4246, 0.5715, 0.6289, 0.5669, 0.5952, 0.5807, 0.6082, 0.6431, 0.5115, 0.5759},
+      { 0.3211, 0.3645, 0.4350, 0.3969, 0.4959, 0.4698, 0.5161, 0.4246, 0.4479, 0.4550, 0.4459, 0.6119, 0.6638, 0.6098, 0.6305, 0.6175, 0.6431, 0.6923, 0.5514, 0.6256},
+      { 0.2931, 0.3120, 0.3668, 0.3201, 0.3969, 0.3908, 0.4192, 0.3462, 0.3639, 0.3815, 0.3609, 0.4982, 0.5318, 0.5107, 0.5306, 0.5014, 0.5115, 0.5514, 0.4824, 0.4968},
+      { 0.2960, 0.3020, 0.3865, 0.3338, 0.4400, 0.4213, 0.4665, 0.3931, 0.4001, 0.4164, 0.4141, 0.5374, 0.5819, 0.5706, 0.5854, 0.5600, 0.5759, 0.6256, 0.4968, 0.6572}},
+    {
+      { 0.2617, 0.2429, 0.4944, 0.4318, 0.4080, 0.3392, 0.3127, 0.3483, 0.3443, 0.2914, 0.3045, 0.4212, 0.3998, 0.2775, 0.2830, 0.2666, 0.2626, 0.3068, 0.2751, 0.2885},
+      { 0.2429, 0.2536, 0.5161, 0.4411, 0.4058, 0.3246, 0.3194, 0.3412, 0.3477, 0.2797, 0.2929, 0.4267, 0.4367, 0.3027, 0.3167, 0.2957, 0.2732, 0.3453, 0.2919, 0.2816},
+      { 0.4944, 0.5161, 0.3561, 0.2824, 0.3947, 0.3728, 0.3769, 0.3856, 0.3996, 0.3449, 0.3495, 0.4749, 0.4829, 0.3608, 0.3802, 0.3728, 0.3434, 0.4251, 0.3424, 0.3596},
+      { 0.4318, 0.4411, 0.2824, 0.2592, 0.3259, 0.3090, 0.3165, 0.3195, 0.3352, 0.2609, 0.2699, 0.4310, 0.4359, 0.3207, 0.3383, 0.3300, 0.2963, 0.3719, 0.2906, 0.3009},
+      { 0.4080, 0.4058, 0.3947, 0.3259, 0.4886, 0.4393, 0.4467, 0.4096, 0.4250, 0.3597, 0.3774, 0.5138, 0.5325, 0.4267, 0.4398, 0.4220, 0.4317, 0.4833, 0.3790, 0.4333},
+      { 0.3392, 0.3246, 0.3728, 0.3090, 0.4393, 0.3901, 0.3965, 0.3989, 0.3935, 0.3565, 0.3575, 0.4632, 0.4932, 0.3996, 0.4161, 0.3865, 0.3922, 0.4570, 0.3724, 0.4040},
+      { 0.3127, 0.3194, 0.3769, 0.3165, 0.4467, 0.3965, 0.4312, 0.4138, 0.4166, 0.3601, 0.3695, 0.4837, 0.4949, 0.4622, 0.4779, 0.4581, 0.4398, 0.4972, 0.4011, 0.4552},
+      { 0.3483, 0.3412, 0.3856, 0.3195, 0.4096, 0.3989, 0.4138, 0.4489, 0.4207, 0.3484, 0.3382, 0.4548, 0.4815, 0.3590, 0.3642, 0.3371, 0.3656, 0.4113, 0.3344, 0.3785},
+      { 0.3443, 0.3477, 0.3996, 0.3352, 0.4250, 0.3935, 0.4166, 0.4207, 0.4171, 0.3469, 0.3718, 0.4743, 0.5269, 0.3803, 0.3968, 0.3896, 0.3858, 0.4345, 0.3512, 0.3858},
+      { 0.2914, 0.2797, 0.3449, 0.2609, 0.3597, 0.3565, 0.3601, 0.3484, 0.3469, 0.3547, 0.3361, 0.4512, 0.4791, 0.3866, 0.3941, 0.3725, 0.3765, 0.4556, 0.3597, 0.3977},
+      { 0.3045, 0.2929, 0.3495, 0.2699, 0.3774, 0.3575, 0.3695, 0.3382, 0.3718, 0.3361, 0.3724, 0.4775, 0.4952, 0.3565, 0.3729, 0.3558, 0.3795, 0.4310, 0.3427, 0.4140},
+      { 0.4212, 0.4267, 0.4749, 0.4310, 0.5138, 0.4632, 0.4837, 0.4548, 0.4743, 0.4512, 0.4775, 0.5465, 0.5894, 0.5276, 0.5498, 0.5300, 0.5147, 0.6001, 0.4860, 0.5192},
+      { 0.3998, 0.4367, 0.4829, 0.4359, 0.5325, 0.4932, 0.4949, 0.4815, 0.5269, 0.4791, 0.4952, 0.5894, 0.6263, 0.5571, 0.5727, 0.5589, 0.5600, 0.6508, 0.5099, 0.5563},
+      { 0.2775, 0.3027, 0.3608, 0.3207, 0.4267, 0.3996, 0.4622, 0.3590, 0.3803, 0.3866, 0.3565, 0.5276, 0.5571, 0.5725, 0.5823, 0.5593, 0.5131, 0.5868, 0.4888, 0.5556},
+      { 0.2830, 0.3167, 0.3802, 0.3383, 0.4398, 0.4161, 0.4779, 0.3642, 0.3968, 0.3941, 0.3729, 0.5498, 0.5727, 0.5823, 0.6102, 0.5907, 0.5429, 0.6071, 0.5099, 0.5755},
+      { 0.2666, 0.2957, 0.3728, 0.3300, 0.4220, 0.3865, 0.4581, 0.3371, 0.3896, 0.3725, 0.3558, 0.5300, 0.5589, 0.5593, 0.5907, 0.5807, 0.5527, 0.5984, 0.4895, 0.5473},
+      { 0.2626, 0.2732, 0.3434, 0.2963, 0.4317, 0.3922, 0.4398, 0.3656, 0.3858, 0.3765, 0.3795, 0.5147, 0.5600, 0.5131, 0.5429, 0.5527, 0.5652, 0.5802, 0.4464, 0.5332},
+      { 0.3068, 0.3453, 0.4251, 0.3719, 0.4833, 0.4570, 0.4972, 0.4113, 0.4345, 0.4556, 0.4310, 0.6001, 0.6508, 0.5868, 0.6071, 0.5984, 0.5802, 0.6653, 0.5315, 0.6120},
+      { 0.2751, 0.2919, 0.3424, 0.2906, 0.3790, 0.3724, 0.4011, 0.3344, 0.3512, 0.3597, 0.3427, 0.4860, 0.5099, 0.4888, 0.5099, 0.4895, 0.4464, 0.5315, 0.4480, 0.4739},
+      { 0.2885, 0.2816, 0.3596, 0.3009, 0.4333, 0.4040, 0.4552, 0.3785, 0.3858, 0.3977, 0.4140, 0.5192, 0.5563, 0.5556, 0.5755, 0.5473, 0.5332, 0.6120, 0.4739, 0.5979}},
+    {
+      { 0.3145, 0.2961, 0.5127, 0.4431, 0.4243, 0.3749, 0.3580, 0.3716, 0.3809, 0.3421, 0.3425, 0.4295, 0.4133, 0.3294, 0.3386, 0.3248, 0.3500, 0.3062, 0.3301, 0.3347},
+      { 0.2961, 0.3051, 0.5204, 0.4561, 0.4309, 0.3656, 0.3666, 0.3700, 0.3819, 0.3381, 0.3339, 0.4331, 0.4469, 0.3550, 0.3684, 0.3459, 0.3737, 0.3381, 0.3406, 0.3397},
+      { 0.5127, 0.5204, 0.3844, 0.3287, 0.4090, 0.4142, 0.4142, 0.4118, 0.4417, 0.3845, 0.3913, 0.4768, 0.5035, 0.4058, 0.4217, 0.4104, 0.4233, 0.4088, 0.3892, 0.4129},
+      { 0.4431, 0.4561, 0.3287, 0.2973, 0.3612, 0.3508, 0.3603, 0.3641, 0.3682, 0.3180, 0.3153, 0.4374, 0.4503, 0.3680, 0.3884, 0.3741, 0.3866, 0.3682, 0.3376, 0.3658},
+      { 0.4243, 0.4309, 0.4090, 0.3612, 0.4925, 0.4588, 0.4793, 0.4316, 0.4422, 0.3874, 0.4008, 0.5356, 0.5395, 0.4535, 0.4662, 0.4603, 0.4880, 0.4846, 0.4103, 0.4629},
+      { 0.3749, 0.3656, 0.4142, 0.3508, 0.4588, 0.4230, 0.4327, 0.4304, 0.4239, 0.3966, 0.3840, 0.4599, 0.4989, 0.4329, 0.4517, 0.4262, 0.4684, 0.4369, 0.4082, 0.4451},
+      { 0.3580, 0.3666, 0.4142, 0.3603, 0.4793, 0.4327, 0.4689, 0.4507, 0.4339, 0.3971, 0.3968, 0.4943, 0.5278, 0.4958, 0.5116, 0.4873, 0.5085, 0.4871, 0.4388, 0.4881},
+      { 0.3716, 0.3700, 0.4118, 0.3641, 0.4316, 0.4304, 0.4507, 0.4788, 0.4305, 0.3828, 0.3842, 0.4596, 0.4735, 0.3934, 0.4051, 0.3772, 0.4333, 0.4071, 0.3721, 0.4086},
+      { 0.3809, 0.3819, 0.4417, 0.3682, 0.4422, 0.4239, 0.4339, 0.4305, 0.4342, 0.3940, 0.4018, 0.4776, 0.5199, 0.4104, 0.4228, 0.4128, 0.4568, 0.4312, 0.3871, 0.4310},
+      { 0.3421, 0.3381, 0.3845, 0.3180, 0.3874, 0.3966, 0.3971, 0.3828, 0.3940, 0.3832, 0.3737, 0.4403, 0.4773, 0.4184, 0.4295, 0.4105, 0.4573, 0.4245, 0.3997, 0.4293},
+      { 0.3425, 0.3339, 0.3913, 0.3153, 0.4008, 0.3840, 0.3968, 0.3842, 0.4018, 0.3737, 0.3894, 0.4830, 0.5315, 0.4062, 0.4237, 0.4141, 0.4636, 0.4264, 0.3878, 0.4464},
+      { 0.4295, 0.4331, 0.4768, 0.4374, 0.5356, 0.4599, 0.4943, 0.4596, 0.4776, 0.4403, 0.4830, 0.5402, 0.5816, 0.5505, 0.5723, 0.5737, 0.5889, 0.5803, 0.4846, 0.5391},
+      { 0.4133, 0.4469, 0.5035, 0.4503, 0.5395, 0.4989, 0.5278, 0.4735, 0.5199, 0.4773, 0.5315, 0.5816, 0.6247, 0.5856, 0.6031, 0.6036, 0.6331, 0.6209, 0.5326, 0.5943},
+      { 0.3294, 0.3550, 0.4058, 0.3680, 0.4535, 0.4329, 0.4958, 0.3934, 0.4104, 0.4184, 0.4062, 0.5505, 0.5856, 0.6141, 0.6227, 0.6007, 0.5900, 0.5929, 0.5285, 0.5844},
+      { 0.3386, 0.3684, 0.4217, 0.3884, 0.4662, 0.4517, 0.5116, 0.4051, 0.4228, 0.4295, 0.4237, 0.5723, 0.6031, 0.6227, 0.6488, 0.6257, 0.6094, 0.6175, 0.5472, 0.5952},
+      { 0.3248, 0.3459, 0.4104, 0.3741, 0.4603, 0.4262, 0.4873, 0.3772, 0.4128, 0.4105, 0.4141, 0.5737, 0.6036, 0.6007, 0.6257, 0.6175, 0.5984, 0.6326, 0.5291, 0.5667},
+      { 0.3500, 0.3737, 0.4233, 0.3866, 0.4880, 0.4684, 0.5085, 0.4333, 0.4568, 0.4573, 0.4636, 0.5889, 0.6331, 0.5900, 0.6094, 0.5984, 0.6361, 0.6350, 0.5315, 0.5869},
+      { 0.3062, 0.3381, 0.4088, 0.3682, 0.4846, 0.4369, 0.4871, 0.4071, 0.4312, 0.4245, 0.4264, 0.5803, 0.6209, 0.5929, 0.6175, 0.6326, 0.6350, 0.6413, 0.5079, 0.6030},
+      { 0.3301, 0.3406, 0.3892, 0.3376, 0.4103, 0.4082, 0.4388, 0.3721, 0.3871, 0.3997, 0.3878, 0.4846, 0.5326, 0.5285, 0.5472, 0.5291, 0.5315, 0.5079, 0.4905, 0.5110},
+      { 0.3347, 0.3397, 0.4129, 0.3658, 0.4629, 0.4451, 0.4881, 0.4086, 0.4310, 0.4293, 0.4464, 0.5391, 0.5943, 0.5844, 0.5952, 0.5667, 0.5869, 0.6030, 0.5110, 0.6393}},
+    {
+      { 0.1435, 0.1391, 0.4053, 0.3486, 0.3103, 0.2385, 0.2281, 0.2531, 0.2685, 0.2003, 0.1876, 0.3104, 0.2886, 0.1820, 0.1741, 0.1572, 0.1933, 0.2067, 0.1702, 0.1989},
+      { 0.1391, 0.1675, 0.4252, 0.3611, 0.3058, 0.2261, 0.2275, 0.2452, 0.2626, 0.1799, 0.1910, 0.3155, 0.3195, 0.2024, 0.2065, 0.1854, 0.2134, 0.2296, 0.1957, 0.2072},
+      { 0.4053, 0.4252, 0.2720, 0.2156, 0.3192, 0.2906, 0.3052, 0.3019, 0.3123, 0.2557, 0.2705, 0.3947, 0.4034, 0.2931, 0.3035, 0.2919, 0.3011, 0.3407, 0.2746, 0.3071},
+      { 0.3486, 0.3611, 0.2156, 0.1810, 0.2585, 0.2339, 0.2423, 0.2460, 0.2585, 0.1951, 0.1889, 0.3520, 0.3477, 0.2430, 0.2485, 0.2328, 0.2384, 0.2749, 0.2290, 0.2439},
+      { 0.3103, 0.3058, 0.3192, 0.2585, 0.3774, 0.3742, 0.3735, 0.3224, 0.3173, 0.3018, 0.2961, 0.4412, 0.4478, 0.3583, 0.3605, 0.3419, 0.3762, 0.4073, 0.3121, 0.3684},
+      { 0.2385, 0.2261, 0.2906, 0.2339, 0.3742, 0.3258, 0.3379, 0.3323, 0.3102, 0.2926, 0.2699, 0.3747, 0.3901, 0.3513, 0.3615, 0.3592, 0.3802, 0.3802, 0.3035, 0.3659},
+      { 0.2281, 0.2275, 0.3052, 0.2423, 0.3735, 0.3379, 0.3725, 0.3468, 0.3165, 0.3143, 0.2853, 0.4000, 0.4198, 0.4085, 0.4176, 0.3958, 0.4195, 0.4209, 0.3429, 0.4084},
+      { 0.2531, 0.2452, 0.3019, 0.2460, 0.3224, 0.3323, 0.3468, 0.3638, 0.3157, 0.2865, 0.2636, 0.3497, 0.3692, 0.2808, 0.2781, 0.2495, 0.3129, 0.3174, 0.2605, 0.3092},
+      { 0.2685, 0.2626, 0.3123, 0.2585, 0.3173, 0.3102, 0.3165, 0.3157, 0.3087, 0.2736, 0.2754, 0.3651, 0.4037, 0.2866, 0.2886, 0.2705, 0.3045, 0.3260, 0.2786, 0.3075},
+      { 0.2003, 0.1799, 0.2557, 0.1951, 0.3018, 0.2926, 0.3143, 0.2865, 0.2736, 0.2970, 0.2448, 0.3883, 0.3905, 0.3664, 0.3808, 0.3681, 0.4063, 0.4141, 0.3089, 0.3977},
+      { 0.1876, 0.1910, 0.2705, 0.1889, 0.2961, 0.2699, 0.2853, 0.2636, 0.2754, 0.2448, 0.2489, 0.3849, 0.4048, 0.2757, 0.2872, 0.2817, 0.3372, 0.3371, 0.2494, 0.3296},
+      { 0.3104, 0.3155, 0.3947, 0.3520, 0.4412, 0.3747, 0.4000, 0.3497, 0.3651, 0.3883, 0.3849, 0.4769, 0.5106, 0.4776, 0.4882, 0.4755, 0.5051, 0.5283, 0.4164, 0.4683},
+      { 0.2886, 0.3195, 0.4034, 0.3477, 0.4478, 0.3901, 0.4198, 0.3692, 0.4037, 0.3905, 0.4048, 0.5106, 0.5465, 0.4870, 0.5055, 0.4894, 0.5364, 0.5674, 0.4044, 0.4879},
+      { 0.1820, 0.2024, 0.2931, 0.2430, 0.3583, 0.3513, 0.4085, 0.2808, 0.2866, 0.3664, 0.2757, 0.4776, 0.4870, 0.5369, 0.5381, 0.5152, 0.5029, 0.5312, 0.4485, 0.5217},
+      { 0.1741, 0.2065, 0.3035, 0.2485, 0.3605, 0.3615, 0.4176, 0.2781, 0.2886, 0.3808, 0.2872, 0.4882, 0.5055, 0.5381, 0.5516, 0.5272, 0.5137, 0.5437, 0.4690, 0.5356},
+      { 0.1572, 0.1854, 0.2919, 0.2328, 0.3419, 0.3592, 0.3958, 0.2495, 0.2705, 0.3681, 0.2817, 0.4755, 0.4894, 0.5152, 0.5272, 0.5014, 0.4895, 0.5291, 0.4775, 0.5066},
+      { 0.1933, 0.2134, 0.3011, 0.2384, 0.3762, 0.3802, 0.4195, 0.3129, 0.3045, 0.4063, 0.3372, 0.5051, 0.5364, 0.5029, 0.5137, 0.4895, 0.5427, 0.5561, 0.4528, 0.5312},
+      { 0.2067, 0.2296, 0.3407, 0.2749, 0.4073, 0.3802, 0.4209, 0.3174, 0.3260, 0.4141, 0.3371, 0.5283, 0.5674, 0.5312, 0.5437, 0.5291, 0.5561, 0.5901, 0.4565, 0.5410},
+      { 0.1702, 0.1957, 0.2746, 0.2290, 0.3121, 0.3035, 0.3429, 0.2605, 0.2786, 0.3089, 0.2494, 0.4164, 0.4044, 0.4485, 0.4690, 0.4775, 0.4528, 0.4565, 0.3912, 0.4468},
+      { 0.1989, 0.2072, 0.3071, 0.2439, 0.3684, 0.3659, 0.4084, 0.3092, 0.3075, 0.3977, 0.3296, 0.4683, 0.4879, 0.5217, 0.5356, 0.5066, 0.5312, 0.5410, 0.4468, 0.6081}},
+    {
+      { 0.1863, 0.1975, 0.4430, 0.3908, 0.3741, 0.2797, 0.2884, 0.2952, 0.3073, 0.2440, 0.2462, 0.3963, 0.3946, 0.2725, 0.2817, 0.2713, 0.3016, 0.3084, 0.2344, 0.1730},
+      { 0.1975, 0.2325, 0.4885, 0.4132, 0.3740, 0.2763, 0.2920, 0.2976, 0.3219, 0.2411, 0.2498, 0.4058, 0.4134, 0.2950, 0.3129, 0.3011, 0.3194, 0.3406, 0.2496, 0.1995},
+      { 0.4430, 0.4885, 0.3370, 0.2615, 0.3777, 0.3283, 0.3514, 0.3281, 0.3791, 0.3086, 0.3208, 0.4622, 0.4945, 0.3608, 0.3734, 0.3701, 0.3721, 0.4179, 0.3246, 0.2967},
+      { 0.3908, 0.4132, 0.2615, 0.2510, 0.3375, 0.2686, 0.2931, 0.2709, 0.3081, 0.2340, 0.2470, 0.4270, 0.4281, 0.3208, 0.3379, 0.3306, 0.3332, 0.3754, 0.2793, 0.2448},
+      { 0.3741, 0.3740, 0.3777, 0.3375, 0.4278, 0.4295, 0.4282, 0.3816, 0.3788, 0.3351, 0.3686, 0.4882, 0.5144, 0.4072, 0.4225, 0.4122, 0.4273, 0.4660, 0.3575, 0.3562},
+      { 0.2797, 0.2763, 0.3283, 0.2686, 0.4295, 0.3547, 0.3867, 0.3765, 0.3635, 0.3289, 0.3078, 0.4229, 0.4601, 0.4102, 0.4245, 0.4141, 0.4342, 0.4388, 0.3521, 0.3277},
+      { 0.2884, 0.2920, 0.3514, 0.2931, 0.4282, 0.3867, 0.4164, 0.4122, 0.3794, 0.3496, 0.3297, 0.4440, 0.4659, 0.4591, 0.4709, 0.4519, 0.4602, 0.4697, 0.3921, 0.3474},
+      { 0.2952, 0.2976, 0.3281, 0.2709, 0.3816, 0.3765, 0.4122, 0.4815, 0.3764, 0.3301, 0.2957, 0.4250, 0.4345, 0.3576, 0.3984, 0.3722, 0.4171, 0.3943, 0.3194, 0.3044},
+      { 0.3073, 0.3219, 0.3791, 0.3081, 0.3788, 0.3635, 0.3794, 0.3764, 0.3731, 0.3221, 0.3214, 0.4426, 0.4832, 0.3685, 0.3833, 0.3646, 0.3980, 0.4196, 0.3288, 0.2949},
+      { 0.2440, 0.2411, 0.3086, 0.2340, 0.3351, 0.3289, 0.3496, 0.3301, 0.3221, 0.3409, 0.3148, 0.4270, 0.4586, 0.3943, 0.4049, 0.3761, 0.4235, 0.4421, 0.3462, 0.3155},
+      { 0.2462, 0.2498, 0.3208, 0.2470, 0.3686, 0.3078, 0.3297, 0.2957, 0.3214, 0.3148, 0.3366, 0.4521, 0.4874, 0.3673, 0.3881, 0.3665, 0.4048, 0.4163, 0.3124, 0.2682},
+      { 0.3963, 0.4058, 0.4622, 0.4270, 0.4882, 0.4229, 0.4440, 0.4250, 0.4426, 0.4270, 0.4521, 0.5138, 0.5571, 0.5049, 0.5304, 0.5164, 0.5373, 0.5645, 0.4541, 0.3936},
+      { 0.3946, 0.4134, 0.4945, 0.4281, 0.5144, 0.4601, 0.4659, 0.4345, 0.4832, 0.4586, 0.4874, 0.5571, 0.5778, 0.5338, 0.5552, 0.5402, 0.5822, 0.6074, 0.4741, 0.4509},
+      { 0.2725, 0.2950, 0.3608, 0.3208, 0.4072, 0.4102, 0.4591, 0.3576, 0.3685, 0.3943, 0.3673, 0.5049, 0.5338, 0.5766, 0.5814, 0.5594, 0.5394, 0.5681, 0.5053, 0.4037},
+      { 0.2817, 0.3129, 0.3734, 0.3379, 0.4225, 0.4245, 0.4709, 0.3984, 0.3833, 0.4049, 0.3881, 0.5304, 0.5552, 0.5814, 0.5996, 0.5770, 0.5600, 0.5865, 0.5233, 0.4155},
+      { 0.2713, 0.3011, 0.3701, 0.3306, 0.4122, 0.4141, 0.4519, 0.3722, 0.3646, 0.3761, 0.3665, 0.5164, 0.5402, 0.5594, 0.5770, 0.5600, 0.5473, 0.5667, 0.5066, 0.4443},
+      { 0.3016, 0.3194, 0.3721, 0.3332, 0.4273, 0.4342, 0.4602, 0.4171, 0.3980, 0.4235, 0.4048, 0.5373, 0.5822, 0.5394, 0.5600, 0.5473, 0.5929, 0.6004, 0.5023, 0.4426},
+      { 0.3084, 0.3406, 0.4179, 0.3754, 0.4660, 0.4388, 0.4697, 0.3943, 0.4196, 0.4421, 0.4163, 0.5645, 0.6074, 0.5681, 0.5865, 0.5667, 0.6004, 0.6333, 0.5188, 0.4329},
+      { 0.2344, 0.2496, 0.3246, 0.2793, 0.3575, 0.3521, 0.3921, 0.3194, 0.3288, 0.3462, 0.3124, 0.4541, 0.4741, 0.5053, 0.5233, 0.5066, 0.5023, 0.5188, 0.4525, 0.3284},
+      { 0.1730, 0.1995, 0.2967, 0.2448, 0.3562, 0.3277, 0.3474, 0.3044, 0.2949, 0.3155, 0.2682, 0.3936, 0.4509, 0.4037, 0.4155, 0.4443, 0.4426, 0.4329, 0.3284, 0.5019}}},
+  {
+    {
+      { 0.1537, 0.1640, 0.3454, 0.3494, 0.3473, 0.3022, 0.3217, 0.2982, 0.3079, 0.2482, 0.2497, 0.3486, 0.3072, 0.2907, 0.3106, 0.3074, 0.4305, 0.3339, 0.2461, 0.3272},
+      { 0.1640, 0.1681, 0.3834, 0.3327, 0.2890, 0.2308, 0.2297, 0.2528, 0.2533, 0.1840, 0.2016, 0.2855, 0.2835, 0.1960, 0.2081, 0.2014, 0.2100, 0.2211, 0.1918, 0.2129},
+      { 0.3454, 0.3834, 0.2534, 0.1894, 0.2767, 0.2487, 0.2452, 0.2479, 0.2728, 0.2137, 0.2347, 0.3281, 0.3330, 0.2091, 0.2074, 0.2106, 0.1567, 0.2556, 0.2098, 0.2389},
+      { 0.3494, 0.3327, 0.1894, 0.1555, 0.2101, 0.1868, 0.1800, 0.2039, 0.2177, 0.1426, 0.1419, 0.2748, 0.2529, 0.1500, 0.1407, 0.1302, 0.0613, 0.1591, 0.1505, 0.1397},
+      { 0.3473, 0.2890, 0.2767, 0.2101, 0.3104, 0.2754, 0.2995, 0.2803, 0.2700, 0.2195, 0.2550, 0.3743, 0.3812, 0.2806, 0.2653, 0.2739, 0.2811, 0.3207, 0.2330, 0.2937},
+      { 0.3022, 0.2308, 0.2487, 0.1868, 0.2754, 0.2182, 0.2266, 0.2480, 0.2239, 0.1873, 0.1824, 0.2780, 0.2733, 0.2078, 0.2087, 0.1990, 0.1954, 0.2407, 0.1880, 0.2456},
+      { 0.3217, 0.2297, 0.2452, 0.1800, 0.2995, 0.2266, 0.2467, 0.2566, 0.2503, 0.1738, 0.1822, 0.3045, 0.3059, 0.2559, 0.2535, 0.2266, 0.2131, 0.2696, 0.1965, 0.2782},
+      { 0.2982, 0.2528, 0.2479, 0.2039, 0.2803, 0.2480, 0.2566, 0.2625, 0.2574, 0.2157, 0.2143, 0.2867, 0.3056, 0.2214, 0.2070, 0.2024, 0.2403, 0.2481, 0.1957, 0.2439},
+      { 0.3079, 0.2533, 0.2728, 0.2177, 0.2700, 0.2239, 0.2503, 0.2574, 0.2668, 0.1796, 0.2078, 0.2948, 0.3257, 0.2164, 0.2061, 0.2131, 0.1905, 0.2377, 0.2044, 0.2167},
+      { 0.2482, 0.1840, 0.2137, 0.1426, 0.2195, 0.1873, 0.1738, 0.2157, 0.1796, 0.1487, 0.1574, 0.2408, 0.2413, 0.1513, 0.1504, 0.1631, 0.1540, 0.2020, 0.1696, 0.2022},
+      { 0.2497, 0.2016, 0.2347, 0.1419, 0.2550, 0.1824, 0.1822, 0.2143, 0.2078, 0.1574, 0.1980, 0.3003, 0.2990, 0.1422, 0.1498, 0.1314, 0.1325, 0.2102, 0.1454, 0.1824},
+      { 0.3486, 0.2855, 0.3281, 0.2748, 0.3743, 0.2780, 0.3045, 0.2867, 0.2948, 0.2408, 0.3003, 0.4088, 0.4640, 0.3458, 0.3519, 0.3476, 0.3201, 0.4164, 0.2666, 0.3793},
+      { 0.3072, 0.2835, 0.3330, 0.2529, 0.3812, 0.2733, 0.3059, 0.3056, 0.3257, 0.2413, 0.2990, 0.4640, 0.4874, 0.3584, 0.3734, 0.3636, 0.3799, 0.4447, 0.2613, 0.3550},
+      { 0.2907, 0.1960, 0.2091, 0.1500, 0.2806, 0.2078, 0.2559, 0.2214, 0.2164, 0.1513, 0.1422, 0.3458, 0.3584, 0.3152, 0.3260, 0.2955, 0.2465, 0.3451, 0.2093, 0.3229},
+      { 0.3106, 0.2081, 0.2074, 0.1407, 0.2653, 0.2087, 0.2535, 0.2070, 0.2061, 0.1504, 0.1498, 0.3519, 0.3734, 0.3260, 0.3444, 0.3172, 0.2708, 0.3552, 0.2071, 0.3364},
+      { 0.3074, 0.2014, 0.2106, 0.1302, 0.2739, 0.1990, 0.2266, 0.2024, 0.2131, 0.1631, 0.1314, 0.3476, 0.3636, 0.2955, 0.3172, 0.3083, 0.2626, 0.3500, 0.1933, 0.3016},
+      { 0.4305, 0.2100, 0.1567, 0.0613, 0.2811, 0.1954, 0.2131, 0.2403, 0.1905, 0.1540, 0.1325, 0.3201, 0.3799, 0.2465, 0.2708, 0.2626, 0.3293, 0.3178, 0.1560, 0.3180},
+      { 0.3339, 0.2211, 0.2556, 0.1591, 0.3207, 0.2407, 0.2696, 0.2481, 0.2377, 0.2020, 0.2102, 0.4164, 0.4447, 0.3451, 0.3552, 0.3500, 0.3178, 0.4278, 0.2421, 0.3695},
+      { 0.2461, 0.1918, 0.2098, 0.1505, 0.2330, 0.1880, 0.1965, 0.1957, 0.2044, 0.1696, 0.1454, 0.2666, 0.2613, 0.2093, 0.2071, 0.1933, 0.1560, 0.2421, 0.2009, 0.2168},
+      { 0.3272, 0.2129, 0.2389, 0.1397, 0.2937, 0.2456, 0.2782, 0.2439, 0.2167, 0.2022, 0.1824, 0.3793, 0.3550, 0.3229, 0.3364, 0.3016, 0.3180, 0.3695, 0.2168, 0.4863}},
+    {
+      { 0.1780, 0.1665, 0.3984, 0.3579, 0.2952, 0.2456, 0.2412, 0.2534, 0.2802, 0.1935, 0.1986, 0.2920, 0.2683, 0.1744, 0.1865, 0.1866, 0.2100, 0.2021, 0.1963, 0.2033},
+      { 0.1665, 0.2033, 0.4023, 0.3561, 0.3351, 0.2719, 0.2925, 0.2781, 0.3145, 0.2149, 0.2328, 0.3529, 0.3471, 0.2679, 0.2939, 0.3056, 0.3847, 0.3229, 0.2646, 0.3007},
+      { 0.3984, 0.4023, 0.2643, 0.2017, 0.2809, 0.2534, 0.2597, 0.2708, 0.2885, 0.2108, 0.2211, 0.3481, 0.3589, 0.2412, 0.2448, 0.2467, 0.1647, 0.2722, 0.2352, 0.2420},
+      { 0.3579, 0.3561, 0.2017, 0.1831, 0.2324, 0.2036, 0.2016, 0.2204, 0.2378, 0.1306, 0.1500, 0.3098, 0.2910, 0.1800, 0.1752, 0.1732, 0.0999, 0.1913, 0.1766, 0.1470},
+      { 0.2952, 0.3351, 0.2809, 0.2324, 0.3377, 0.2735, 0.2920, 0.2667, 0.2788, 0.2124, 0.2205, 0.3819, 0.3864, 0.2900, 0.2888, 0.2925, 0.2505, 0.3249, 0.2345, 0.3128},
+      { 0.2456, 0.2719, 0.2534, 0.2036, 0.2735, 0.2136, 0.2252, 0.2407, 0.2465, 0.1754, 0.1752, 0.2764, 0.2849, 0.2007, 0.1914, 0.1836, 0.1535, 0.2356, 0.1854, 0.2092},
+      { 0.2412, 0.2925, 0.2597, 0.2016, 0.2920, 0.2252, 0.2600, 0.2504, 0.2658, 0.1806, 0.1747, 0.3073, 0.3202, 0.2675, 0.2638, 0.2382, 0.2002, 0.2674, 0.2007, 0.2439},
+      { 0.2534, 0.2781, 0.2708, 0.2204, 0.2667, 0.2407, 0.2504, 0.2642, 0.2756, 0.1959, 0.2022, 0.2846, 0.3159, 0.1983, 0.1931, 0.1724, 0.1445, 0.2267, 0.1850, 0.2220},
+      { 0.2802, 0.3145, 0.2885, 0.2378, 0.2788, 0.2465, 0.2658, 0.2756, 0.3177, 0.1941, 0.2146, 0.3281, 0.3756, 0.2363, 0.2479, 0.2547, 0.2534, 0.2662, 0.2292, 0.2463},
+      { 0.1935, 0.2149, 0.2108, 0.1306, 0.2124, 0.1754, 0.1806, 0.1959, 0.1941, 0.1803, 0.1554, 0.2593, 0.2813, 0.1681, 0.1674, 0.1764, 0.1490, 0.2137, 0.1734, 0.2053},
+      { 0.1986, 0.2328, 0.2211, 0.1500, 0.2205, 0.1752, 0.1747, 0.2022, 0.2146, 0.1554, 0.1799, 0.2929, 0.2926, 0.1353, 0.1363, 0.1282, 0.1100, 0.2106, 0.1555, 0.1606},
+      { 0.2920, 0.3529, 0.3481, 0.3098, 0.3819, 0.2764, 0.3073, 0.2846, 0.3281, 0.2593, 0.2929, 0.4139, 0.4676, 0.3687, 0.3806, 0.3733, 0.3482, 0.4240, 0.2762, 0.3816},
+      { 0.2683, 0.3471, 0.3589, 0.2910, 0.3864, 0.2849, 0.3202, 0.3159, 0.3756, 0.2813, 0.2926, 0.4676, 0.4990, 0.3797, 0.4009, 0.3858, 0.3648, 0.4613, 0.2817, 0.3844},
+      { 0.1744, 0.2679, 0.2412, 0.1800, 0.2900, 0.2007, 0.2675, 0.1983, 0.2363, 0.1681, 0.1353, 0.3687, 0.3797, 0.3435, 0.3440, 0.3223, 0.2712, 0.3631, 0.2187, 0.3217},
+      { 0.1865, 0.2939, 0.2448, 0.1752, 0.2888, 0.1914, 0.2638, 0.1931, 0.2479, 0.1674, 0.1363, 0.3806, 0.4009, 0.3440, 0.3629, 0.3425, 0.2972, 0.3729, 0.2211, 0.3496},
+      { 0.1866, 0.3056, 0.2467, 0.1732, 0.2925, 0.1836, 0.2382, 0.1724, 0.2547, 0.1764, 0.1282, 0.3733, 0.3858, 0.3223, 0.3425, 0.3406, 0.2732, 0.3737, 0.2134, 0.3194},
+      { 0.2100, 0.3847, 0.1647, 0.0999, 0.2505, 0.1535, 0.2002, 0.1445, 0.2534, 0.1490, 0.1100, 0.3482, 0.3648, 0.2712, 0.2972, 0.2732, 0.3253, 0.3441, 0.1468, 0.3119},
+      { 0.2021, 0.3229, 0.2722, 0.1913, 0.3249, 0.2356, 0.2674, 0.2267, 0.2662, 0.2137, 0.2106, 0.4240, 0.4613, 0.3631, 0.3729, 0.3737, 0.3441, 0.4605, 0.2346, 0.3797},
+      { 0.1963, 0.2646, 0.2352, 0.1766, 0.2345, 0.1854, 0.2007, 0.1850, 0.2292, 0.1734, 0.1555, 0.2762, 0.2817, 0.2187, 0.2211, 0.2134, 0.1468, 0.2346, 0.2305, 0.2225},
+      { 0.2033, 0.3007, 0.2420, 0.1470, 0.3128, 0.2092, 0.2439, 0.2220, 0.2463, 0.2053, 0.1606, 0.3816, 0.3844, 0.3217, 0.3496, 0.3194, 0.3119, 0.3797, 0.2225, 0.4541}},
+    {
+      { 0.2326, 0.2121, 0.4281, 0.4112, 0.3471, 0.2780, 0.2493, 0.3146, 0.3114, 0.2389, 0.2479, 0.3341, 0.3076, 0.1931, 0.1871, 0.1872, 0.1567, 0.2211, 0.2143, 0.2001},
+      { 0.2121, 0.2241, 0.4429, 0.4165, 0.3486, 0.2612, 0.2533, 0.2880, 0.3023, 0.2118, 0.2252, 0.3514, 0.3517, 0.2254, 0.2266, 0.2295, 0.1647, 0.2417, 0.2321, 0.2066},
+      { 0.4281, 0.4429, 0.3616, 0.2988, 0.3982, 0.3825, 0.3980, 0.3875, 0.4266, 0.3432, 0.3526, 0.4518, 0.4616, 0.3911, 0.4092, 0.4238, 0.4782, 0.4428, 0.3504, 0.4649},
+      { 0.4112, 0.4165, 0.2988, 0.2575, 0.3164, 0.3055, 0.3047, 0.3152, 0.3368, 0.2632, 0.2583, 0.3883, 0.3850, 0.2965, 0.2960, 0.3016, 0.2729, 0.3215, 0.2839, 0.2949},
+      { 0.3471, 0.3486, 0.3982, 0.3164, 0.4089, 0.3488, 0.3665, 0.3350, 0.3591, 0.2990, 0.3064, 0.4467, 0.4287, 0.3586, 0.3477, 0.3529, 0.3341, 0.3845, 0.3053, 0.3686},
+      { 0.2780, 0.2612, 0.3825, 0.3055, 0.3488, 0.2824, 0.2907, 0.3194, 0.3144, 0.2692, 0.2724, 0.3457, 0.3591, 0.2767, 0.2739, 0.2724, 0.2538, 0.3150, 0.2603, 0.2865},
+      { 0.2493, 0.2533, 0.3980, 0.3047, 0.3665, 0.2907, 0.3198, 0.3162, 0.3231, 0.2509, 0.2618, 0.3756, 0.4030, 0.3293, 0.3251, 0.3044, 0.2582, 0.3448, 0.2701, 0.3261},
+      { 0.3146, 0.2880, 0.3875, 0.3152, 0.3350, 0.3194, 0.3162, 0.3611, 0.3436, 0.2889, 0.2899, 0.3602, 0.4031, 0.2824, 0.2743, 0.2606, 0.2403, 0.3164, 0.2738, 0.3007},
+      { 0.3114, 0.3023, 0.4266, 0.3368, 0.3591, 0.3144, 0.3231, 0.3436, 0.3461, 0.2850, 0.2850, 0.3826, 0.4018, 0.3017, 0.2979, 0.3079, 0.2607, 0.3315, 0.2881, 0.3009},
+      { 0.2389, 0.2118, 0.3432, 0.2632, 0.2990, 0.2692, 0.2509, 0.2889, 0.2850, 0.2737, 0.2378, 0.3359, 0.3577, 0.2492, 0.2401, 0.2534, 0.2442, 0.3074, 0.2565, 0.2932},
+      { 0.2479, 0.2252, 0.3526, 0.2583, 0.3064, 0.2724, 0.2618, 0.2899, 0.2850, 0.2378, 0.2809, 0.3793, 0.3953, 0.2428, 0.2454, 0.2493, 0.2098, 0.3064, 0.2450, 0.2743},
+      { 0.3341, 0.3514, 0.4518, 0.3883, 0.4467, 0.3457, 0.3756, 0.3602, 0.3826, 0.3359, 0.3793, 0.4714, 0.5133, 0.4145, 0.4300, 0.4341, 0.4005, 0.4844, 0.3519, 0.4280},
+      { 0.3076, 0.3517, 0.4616, 0.3850, 0.4287, 0.3591, 0.4030, 0.4031, 0.4018, 0.3577, 0.3953, 0.5133, 0.5492, 0.4405, 0.4521, 0.4399, 0.4354, 0.5051, 0.3556, 0.4751},
+      { 0.1931, 0.2254, 0.3911, 0.2965, 0.3586, 0.2767, 0.3293, 0.2824, 0.3017, 0.2492, 0.2428, 0.4145, 0.4405, 0.4051, 0.4024, 0.3826, 0.3326, 0.4135, 0.3004, 0.3909},
+      { 0.1871, 0.2266, 0.4092, 0.2960, 0.3477, 0.2739, 0.3251, 0.2743, 0.2979, 0.2401, 0.2454, 0.4300, 0.4521, 0.4024, 0.4186, 0.4022, 0.3528, 0.4236, 0.3055, 0.4023},
+      { 0.1872, 0.2295, 0.4238, 0.3016, 0.3529, 0.2724, 0.3044, 0.2606, 0.3079, 0.2534, 0.2493, 0.4341, 0.4399, 0.3826, 0.4022, 0.3973, 0.3434, 0.4233, 0.3011, 0.3721},
+      { 0.1567, 0.1647, 0.4782, 0.2729, 0.3341, 0.2538, 0.2582, 0.2403, 0.2607, 0.2442, 0.2098, 0.4005, 0.4354, 0.3326, 0.3528, 0.3434, 0.3592, 0.4136, 0.2422, 0.3703},
+      { 0.2211, 0.2417, 0.4428, 0.3215, 0.3845, 0.3150, 0.3448, 0.3164, 0.3315, 0.3074, 0.3064, 0.4844, 0.5051, 0.4135, 0.4236, 0.4233, 0.4136, 0.4902, 0.3226, 0.4403},
+      { 0.2143, 0.2321, 0.3504, 0.2839, 0.3053, 0.2603, 0.2701, 0.2738, 0.2881, 0.2565, 0.2450, 0.3519, 0.3556, 0.3004, 0.3055, 0.3011, 0.2422, 0.3226, 0.3008, 0.3024},
+      { 0.2001, 0.2066, 0.4649, 0.2949, 0.3686, 0.2865, 0.3261, 0.3007, 0.3009, 0.2932, 0.2743, 0.4280, 0.4751, 0.3909, 0.4023, 0.3721, 0.3703, 0.4403, 0.3024, 0.4879}},
+    {
+      { 0.1338, 0.1521, 0.3918, 0.3310, 0.2922, 0.1963, 0.1915, 0.2333, 0.2451, 0.1550, 0.1755, 0.2711, 0.2500, 0.1180, 0.1076, 0.1146, 0.0613, 0.1415, 0.1537, 0.1427},
+      { 0.1521, 0.1797, 0.4280, 0.3597, 0.2881, 0.1996, 0.1990, 0.2289, 0.2484, 0.1370, 0.1662, 0.2838, 0.2751, 0.1608, 0.1619, 0.1665, 0.0999, 0.1802, 0.1875, 0.1375},
+      { 0.3918, 0.4280, 0.2946, 0.2509, 0.3100, 0.2846, 0.2983, 0.3026, 0.3279, 0.2454, 0.2570, 0.3730, 0.3605, 0.2877, 0.2977, 0.3074, 0.2729, 0.3224, 0.2770, 0.2913},
+      { 0.3310, 0.3597, 0.2509, 0.2196, 0.2851, 0.2906, 0.3304, 0.2760, 0.3159, 0.2216, 0.2211, 0.4040, 0.3270, 0.3305, 0.3481, 0.3403, 0.4273, 0.3535, 0.2913, 0.3567},
+      { 0.2922, 0.2881, 0.3100, 0.2851, 0.3236, 0.2806, 0.2938, 0.2673, 0.2792, 0.2172, 0.2426, 0.3925, 0.3997, 0.2892, 0.2936, 0.2916, 0.2603, 0.3317, 0.2354, 0.3034},
+      { 0.1963, 0.1996, 0.2846, 0.2906, 0.2806, 0.1998, 0.2180, 0.2306, 0.2400, 0.1736, 0.1754, 0.2597, 0.2749, 0.2096, 0.1980, 0.1943, 0.1429, 0.2328, 0.1882, 0.2144},
+      { 0.1915, 0.1990, 0.2983, 0.3304, 0.2938, 0.2180, 0.2625, 0.2499, 0.2569, 0.1724, 0.1836, 0.3029, 0.2983, 0.2643, 0.2602, 0.2408, 0.1979, 0.2724, 0.2019, 0.2559},
+      { 0.2333, 0.2289, 0.3026, 0.2760, 0.2673, 0.2306, 0.2499, 0.2778, 0.2701, 0.2018, 0.2014, 0.2910, 0.3198, 0.2074, 0.2047, 0.1921, 0.1499, 0.2352, 0.1932, 0.2145},
+      { 0.2451, 0.2484, 0.3279, 0.3159, 0.2792, 0.2400, 0.2569, 0.2701, 0.2817, 0.1914, 0.2076, 0.3118, 0.3262, 0.2391, 0.2393, 0.2421, 0.1996, 0.2728, 0.2236, 0.2232},
+      { 0.1550, 0.1370, 0.2454, 0.2216, 0.2172, 0.1736, 0.1724, 0.2018, 0.1914, 0.1648, 0.1436, 0.2565, 0.2612, 0.1579, 0.1603, 0.1868, 0.1505, 0.2030, 0.1844, 0.2103},
+      { 0.1755, 0.1662, 0.2570, 0.2211, 0.2426, 0.1754, 0.1836, 0.2014, 0.2076, 0.1436, 0.1853, 0.3045, 0.2981, 0.1679, 0.1641, 0.1667, 0.1031, 0.2045, 0.1680, 0.2017},
+      { 0.2711, 0.2838, 0.3730, 0.4040, 0.3925, 0.2597, 0.3029, 0.2910, 0.3118, 0.2565, 0.3045, 0.4185, 0.4473, 0.3605, 0.3758, 0.3805, 0.3552, 0.4283, 0.2831, 0.3796},
+      { 0.2500, 0.2751, 0.3605, 0.3270, 0.3997, 0.2749, 0.2983, 0.3198, 0.3262, 0.2612, 0.2981, 0.4473, 0.4888, 0.3737, 0.3867, 0.3760, 0.3983, 0.4700, 0.2725, 0.3835},
+      { 0.1180, 0.1608, 0.2877, 0.3305, 0.2892, 0.2096, 0.2643, 0.2074, 0.2391, 0.1579, 0.1679, 0.3605, 0.3737, 0.3428, 0.3451, 0.3291, 0.2822, 0.3592, 0.2325, 0.3474},
+      { 0.1076, 0.1619, 0.2977, 0.3481, 0.2936, 0.1980, 0.2602, 0.2047, 0.2393, 0.1603, 0.1641, 0.3758, 0.3867, 0.3451, 0.3711, 0.3604, 0.3117, 0.3839, 0.2357, 0.3463},
+      { 0.1146, 0.1665, 0.3074, 0.3403, 0.2916, 0.1943, 0.2408, 0.1921, 0.2421, 0.1868, 0.1667, 0.3805, 0.3760, 0.3291, 0.3604, 0.3536, 0.2963, 0.3866, 0.2384, 0.3332},
+      { 0.0613, 0.0999, 0.2729, 0.4273, 0.2603, 0.1429, 0.1979, 0.1499, 0.1996, 0.1505, 0.1031, 0.3552, 0.3983, 0.2822, 0.3117, 0.2963, 0.3116, 0.3606, 0.1653, 0.3012},
+      { 0.1415, 0.1802, 0.3224, 0.3535, 0.3317, 0.2328, 0.2724, 0.2352, 0.2728, 0.2030, 0.2045, 0.4283, 0.4700, 0.3592, 0.3839, 0.3866, 0.3606, 0.4620, 0.2488, 0.3847},
+      { 0.1537, 0.1875, 0.2770, 0.2913, 0.2354, 0.1882, 0.2019, 0.1932, 0.2236, 0.1844, 0.1680, 0.2831, 0.2725, 0.2325, 0.2357, 0.2384, 0.1653, 0.2488, 0.2580, 0.2345},
+      { 0.1427, 0.1375, 0.2913, 0.3567, 0.3034, 0.2144, 0.2559, 0.2145, 0.2232, 0.2103, 0.2017, 0.3796, 0.3835, 0.3474, 0.3463, 0.3332, 0.3012, 0.3847, 0.2345, 0.4419}},
+    {
+      { 0.2268, 0.2198, 0.4690, 0.4236, 0.3605, 0.3159, 0.3073, 0.3377, 0.3466, 0.2682, 0.2998, 0.3705, 0.3720, 0.2543, 0.2581, 0.2602, 0.2811, 0.2957, 0.2452, 0.2829},
+      { 0.2198, 0.2443, 0.4698, 0.4198, 0.3536, 0.3116, 0.3143, 0.3045, 0.3430, 0.2453, 0.2820, 0.3820, 0.4171, 0.2850, 0.2781, 0.2800, 0.2505, 0.3226, 0.2773, 0.2549},
+      { 0.4690, 0.4698, 0.3564, 0.2860, 0.3416, 0.3713, 0.3824, 0.3613, 0.3784, 0.3148, 0.3406, 0.4485, 0.4586, 0.3493, 0.3641, 0.3649, 0.3341, 0.3898, 0.3282, 0.3637},
+      { 0.4236, 0.4198, 0.2860, 0.2444, 0.2675, 0.2931, 0.2976, 0.3048, 0.3074, 0.2532, 0.2457, 0.3980, 0.3980, 0.2817, 0.2918, 0.2876, 0.2603, 0.3319, 0.2842, 0.2906},
+      { 0.3605, 0.3536, 0.3416, 0.2675, 0.4872, 0.4205, 0.4430, 0.4169, 0.4452, 0.3593, 0.4030, 0.4681, 0.5011, 0.4477, 0.4543, 0.4656, 0.6784, 0.5046, 0.3695, 0.4623},
+      { 0.3159, 0.3116, 0.3713, 0.2931, 0.4205, 0.3532, 0.3543, 0.3592, 0.3630, 0.3173, 0.3116, 0.4127, 0.4684, 0.3474, 0.3343, 0.3301, 0.3281, 0.3877, 0.3113, 0.3757},
+      { 0.3073, 0.3143, 0.3824, 0.2976, 0.4430, 0.3543, 0.3859, 0.3896, 0.3985, 0.2883, 0.3106, 0.4334, 0.4722, 0.3953, 0.3921, 0.3756, 0.3642, 0.4142, 0.3313, 0.3761},
+      { 0.3377, 0.3045, 0.3613, 0.3048, 0.4169, 0.3592, 0.3896, 0.4258, 0.4047, 0.3271, 0.3243, 0.4116, 0.4383, 0.3404, 0.3364, 0.3342, 0.3663, 0.3733, 0.2998, 0.3646},
+      { 0.3466, 0.3430, 0.3784, 0.3074, 0.4452, 0.3630, 0.3985, 0.4047, 0.3946, 0.3222, 0.3423, 0.4479, 0.4604, 0.3718, 0.3715, 0.3750, 0.4576, 0.4213, 0.3383, 0.3802},
+      { 0.2682, 0.2453, 0.3148, 0.2532, 0.3593, 0.3173, 0.2883, 0.3271, 0.3222, 0.2781, 0.2866, 0.3760, 0.4036, 0.2741, 0.2787, 0.2917, 0.2806, 0.3522, 0.2807, 0.3482},
+      { 0.2998, 0.2820, 0.3406, 0.2457, 0.4030, 0.3116, 0.3106, 0.3243, 0.3423, 0.2866, 0.3093, 0.4067, 0.4640, 0.2813, 0.2958, 0.2858, 0.3012, 0.3734, 0.2840, 0.3247},
+      { 0.3705, 0.3820, 0.4485, 0.3980, 0.4681, 0.4127, 0.4334, 0.4116, 0.4479, 0.3760, 0.4067, 0.5090, 0.5389, 0.4635, 0.4834, 0.4760, 0.5046, 0.5257, 0.4042, 0.4814},
+      { 0.3720, 0.4171, 0.4586, 0.3980, 0.5011, 0.4684, 0.4722, 0.4383, 0.4604, 0.4036, 0.4640, 0.5389, 0.5620, 0.5057, 0.5288, 0.5084, 0.4998, 0.5556, 0.4495, 0.5286},
+      { 0.2543, 0.2850, 0.3493, 0.2817, 0.4477, 0.3474, 0.3953, 0.3404, 0.3718, 0.2741, 0.2813, 0.4635, 0.5057, 0.4710, 0.4760, 0.4512, 0.4205, 0.4797, 0.3783, 0.4416},
+      { 0.2581, 0.2781, 0.3641, 0.2918, 0.4543, 0.3343, 0.3921, 0.3364, 0.3715, 0.2787, 0.2958, 0.4834, 0.5288, 0.4760, 0.4925, 0.4724, 0.4381, 0.5008, 0.3894, 0.4666},
+      { 0.2602, 0.2800, 0.3649, 0.2876, 0.4656, 0.3301, 0.3756, 0.3342, 0.3750, 0.2917, 0.2858, 0.4760, 0.5084, 0.4512, 0.4724, 0.4591, 0.4317, 0.4880, 0.3762, 0.4273},
+      { 0.2811, 0.2505, 0.3341, 0.2603, 0.6784, 0.3281, 0.3642, 0.3663, 0.4576, 0.2806, 0.3012, 0.5046, 0.4998, 0.4205, 0.4381, 0.4317, 0.4972, 0.4871, 0.3481, 0.4270},
+      { 0.2957, 0.3226, 0.3898, 0.3319, 0.5046, 0.3877, 0.4142, 0.3733, 0.4213, 0.3522, 0.3734, 0.5257, 0.5556, 0.4797, 0.5008, 0.4880, 0.4871, 0.5464, 0.4030, 0.4899},
+      { 0.2452, 0.2773, 0.3282, 0.2842, 0.3695, 0.3113, 0.3313, 0.2998, 0.3383, 0.2807, 0.2840, 0.4042, 0.4495, 0.3783, 0.3894, 0.3762, 0.3481, 0.4030, 0.3484, 0.3744},
+      { 0.2829, 0.2549, 0.3637, 0.2906, 0.4623, 0.3757, 0.3761, 0.3646, 0.3802, 0.3482, 0.3247, 0.4814, 0.5286, 0.4416, 0.4666, 0.4273, 0.4270, 0.4899, 0.3744, 0.5239}},
+    {
+      { 0.1399, 0.1325, 0.3895, 0.3239, 0.3066, 0.2294, 0.2261, 0.2774, 0.2567, 0.2188, 0.1935, 0.3103, 0.2881, 0.1880, 0.1905, 0.1895, 0.1954, 0.2318, 0.1866, 0.2145},
+      { 0.1325, 0.1453, 0.4073, 0.3373, 0.2947, 0.2128, 0.2373, 0.2477, 0.2485, 0.1876, 0.1903, 0.3080, 0.3067, 0.1988, 0.2007, 0.1872, 0.1535, 0.2309, 0.1915, 0.2028},
+      { 0.3895, 0.4073, 0.2868, 0.2145, 0.3174, 0.2849, 0.3068, 0.3002, 0.3164, 0.2596, 0.2650, 0.3912, 0.3909, 0.2815, 0.2793, 0.2756, 0.2538, 0.3283, 0.2625, 0.2958},
+      { 0.3239, 0.3373, 0.2145, 0.1645, 0.2405, 0.2208, 0.2338, 0.2220, 0.2450, 0.1745, 0.1738, 0.3325, 0.3073, 0.2165, 0.2092, 0.2019, 0.1429, 0.2547, 0.2004, 0.2084},
+      { 0.3066, 0.2947, 0.3174, 0.2405, 0.3901, 0.3437, 0.3679, 0.3536, 0.3301, 0.3101, 0.3039, 0.4379, 0.4660, 0.3460, 0.3468, 0.3312, 0.3281, 0.3968, 0.3041, 0.4006},
+      { 0.2294, 0.2128, 0.2849, 0.2208, 0.3437, 0.3024, 0.3286, 0.3137, 0.3263, 0.2852, 0.2435, 0.3616, 0.3484, 0.3224, 0.3385, 0.3202, 0.4269, 0.3601, 0.2923, 0.3563},
+      { 0.2261, 0.2373, 0.3068, 0.2338, 0.3679, 0.3286, 0.3573, 0.3430, 0.3338, 0.3125, 0.2645, 0.3885, 0.3912, 0.3740, 0.3857, 0.3578, 0.3876, 0.3949, 0.3303, 0.3954},
+      { 0.2774, 0.2477, 0.3002, 0.2220, 0.3536, 0.3137, 0.3430, 0.3587, 0.3119, 0.2956, 0.2693, 0.3973, 0.3966, 0.2895, 0.2890, 0.2636, 0.3126, 0.3172, 0.2773, 0.3408},
+      { 0.2567, 0.2485, 0.3164, 0.2450, 0.3301, 0.3263, 0.3338, 0.3119, 0.3344, 0.2864, 0.2693, 0.3653, 0.4006, 0.2894, 0.2851, 0.2729, 0.2576, 0.3309, 0.2953, 0.3337},
+      { 0.2188, 0.1876, 0.2596, 0.1745, 0.3101, 0.2852, 0.3125, 0.2956, 0.2864, 0.2929, 0.2500, 0.3641, 0.3706, 0.3022, 0.2926, 0.2943, 0.3120, 0.3495, 0.2926, 0.3538},
+      { 0.1935, 0.1903, 0.2650, 0.1738, 0.3039, 0.2435, 0.2645, 0.2693, 0.2693, 0.2500, 0.2746, 0.3745, 0.3842, 0.2477, 0.2483, 0.2409, 0.2557, 0.3169, 0.2542, 0.2775},
+      { 0.3103, 0.3080, 0.3912, 0.3325, 0.4379, 0.3616, 0.3885, 0.3973, 0.3653, 0.3641, 0.3745, 0.4745, 0.5165, 0.4299, 0.4395, 0.4294, 0.4220, 0.4963, 0.3840, 0.4463},
+      { 0.2881, 0.3067, 0.3909, 0.3073, 0.4660, 0.3484, 0.3912, 0.3966, 0.4006, 0.3706, 0.3842, 0.5165, 0.5834, 0.4605, 0.4606, 0.4439, 0.4755, 0.5446, 0.3836, 0.4924},
+      { 0.1880, 0.1988, 0.2815, 0.2165, 0.3460, 0.3224, 0.3740, 0.2895, 0.2894, 0.3022, 0.2477, 0.4299, 0.4605, 0.4479, 0.4573, 0.4349, 0.4107, 0.4660, 0.3830, 0.4584},
+      { 0.1905, 0.2007, 0.2793, 0.2092, 0.3468, 0.3385, 0.3857, 0.2890, 0.2851, 0.2926, 0.2483, 0.4395, 0.4606, 0.4573, 0.4685, 0.4483, 0.4200, 0.4780, 0.3979, 0.4645},
+      { 0.1895, 0.1872, 0.2756, 0.2019, 0.3312, 0.3202, 0.3578, 0.2636, 0.2729, 0.2943, 0.2409, 0.4294, 0.4439, 0.4349, 0.4483, 0.4340, 0.3922, 0.4684, 0.3802, 0.4342},
+      { 0.1954, 0.1535, 0.2538, 0.1429, 0.3281, 0.4269, 0.3876, 0.3126, 0.2576, 0.3120, 0.2557, 0.4220, 0.4755, 0.4107, 0.4200, 0.3922, 0.4538, 0.4723, 0.3971, 0.4936},
+      { 0.2318, 0.2309, 0.3283, 0.2547, 0.3968, 0.3601, 0.3949, 0.3172, 0.3309, 0.3495, 0.3169, 0.4963, 0.5446, 0.4660, 0.4780, 0.4684, 0.4723, 0.5293, 0.4049, 0.5040},
+      { 0.1866, 0.1915, 0.2625, 0.2004, 0.3041, 0.2923, 0.3303, 0.2773, 0.2953, 0.2926, 0.2542, 0.3840, 0.3836, 0.3830, 0.3979, 0.3802, 0.3971, 0.4049, 0.3618, 0.3996},
+      { 0.2145, 0.2028, 0.2958, 0.2084, 0.4006, 0.3563, 0.3954, 0.3408, 0.3337, 0.3538, 0.2775, 0.4463, 0.4924, 0.4584, 0.4645, 0.4342, 0.4936, 0.5040, 0.3996, 0.5726}},
+    {
+      { 0.1743, 0.1559, 0.4122, 0.3447, 0.3281, 0.2543, 0.2335, 0.2806, 0.2753, 0.2298, 0.2248, 0.3375, 0.3300, 0.2247, 0.2266, 0.2182, 0.2131, 0.2532, 0.2100, 0.2404},
+      { 0.1559, 0.1746, 0.4373, 0.3686, 0.3362, 0.2482, 0.2417, 0.2635, 0.2653, 0.2011, 0.2208, 0.3377, 0.3528, 0.2569, 0.2516, 0.2334, 0.2002, 0.2693, 0.2225, 0.2328},
+      { 0.4122, 0.4373, 0.2999, 0.2308, 0.3360, 0.3135, 0.2972, 0.3271, 0.3234, 0.2830, 0.2818, 0.4093, 0.4183, 0.3113, 0.3178, 0.3088, 0.2582, 0.3512, 0.2776, 0.3040},
+      { 0.3447, 0.3686, 0.2308, 0.2003, 0.2661, 0.2408, 0.2526, 0.2511, 0.2594, 0.1918, 0.1922, 0.3502, 0.3306, 0.2608, 0.2624, 0.2453, 0.1979, 0.2783, 0.2184, 0.2266},
+      { 0.3281, 0.3362, 0.3360, 0.2661, 0.4289, 0.3839, 0.3882, 0.3356, 0.3513, 0.3211, 0.2982, 0.4525, 0.4355, 0.3763, 0.3786, 0.3595, 0.3642, 0.4130, 0.3371, 0.3731},
+      { 0.2543, 0.2482, 0.3135, 0.2408, 0.3839, 0.3296, 0.3302, 0.3254, 0.3364, 0.3009, 0.2881, 0.3891, 0.4051, 0.3691, 0.3771, 0.3563, 0.3876, 0.3892, 0.3165, 0.3755},
+      { 0.2335, 0.2417, 0.2972, 0.2526, 0.3882, 0.3302, 0.3710, 0.3425, 0.3553, 0.2989, 0.2735, 0.3873, 0.4039, 0.3973, 0.4194, 0.3943, 0.4969, 0.4203, 0.3301, 0.4187},
+      { 0.2806, 0.2635, 0.3271, 0.2511, 0.3356, 0.3254, 0.3425, 0.3599, 0.3367, 0.3099, 0.2739, 0.3714, 0.3998, 0.3154, 0.3130, 0.2961, 0.3298, 0.3576, 0.2833, 0.3332},
+      { 0.2753, 0.2653, 0.3234, 0.2594, 0.3513, 0.3364, 0.3553, 0.3367, 0.3384, 0.2927, 0.2868, 0.3910, 0.4406, 0.3272, 0.3333, 0.3085, 0.2899, 0.3571, 0.3016, 0.3322},
+      { 0.2298, 0.2011, 0.2830, 0.1918, 0.3211, 0.3009, 0.2989, 0.3099, 0.2927, 0.2953, 0.2731, 0.3835, 0.3984, 0.3287, 0.3279, 0.3168, 0.3168, 0.3801, 0.3077, 0.3625},
+      { 0.2248, 0.2208, 0.2818, 0.1922, 0.2982, 0.2881, 0.2735, 0.2739, 0.2868, 0.2731, 0.2536, 0.3990, 0.4351, 0.2819, 0.3015, 0.2903, 0.2909, 0.3515, 0.2761, 0.3375},
+      { 0.3375, 0.3377, 0.4093, 0.3502, 0.4525, 0.3891, 0.3873, 0.3714, 0.3910, 0.3835, 0.3990, 0.4925, 0.5280, 0.4616, 0.4743, 0.4622, 0.4393, 0.5225, 0.4049, 0.4626},
+      { 0.3300, 0.3528, 0.4183, 0.3306, 0.4355, 0.4051, 0.4039, 0.3998, 0.4406, 0.3984, 0.4351, 0.5280, 0.6094, 0.4816, 0.4929, 0.4877, 0.4766, 0.5456, 0.4184, 0.5066},
+      { 0.2247, 0.2569, 0.3113, 0.2608, 0.3763, 0.3691, 0.3973, 0.3154, 0.3272, 0.3287, 0.2819, 0.4616, 0.4816, 0.4802, 0.4910, 0.4718, 0.4648, 0.4985, 0.4162, 0.4751},
+      { 0.2266, 0.2516, 0.3178, 0.2624, 0.3786, 0.3771, 0.4194, 0.3130, 0.3333, 0.3279, 0.3015, 0.4743, 0.4929, 0.4910, 0.5159, 0.4949, 0.4647, 0.5111, 0.4307, 0.4908},
+      { 0.2182, 0.2334, 0.3088, 0.2453, 0.3595, 0.3563, 0.3943, 0.2961, 0.3085, 0.3168, 0.2903, 0.4622, 0.4877, 0.4718, 0.4949, 0.4889, 0.4398, 0.5085, 0.4195, 0.4602},
+      { 0.2131, 0.2002, 0.2582, 0.1979, 0.3642, 0.3876, 0.4969, 0.3298, 0.2899, 0.3168, 0.2909, 0.4393, 0.4766, 0.4648, 0.4647, 0.4398, 0.5017, 0.4793, 0.3989, 0.5200},
+      { 0.2532, 0.2693, 0.3512, 0.2783, 0.4130, 0.3892, 0.4203, 0.3576, 0.3571, 0.3801, 0.3515, 0.5225, 0.5456, 0.4985, 0.5111, 0.5085, 0.4793, 0.5721, 0.4362, 0.5100},
+      { 0.2100, 0.2225, 0.2776, 0.2184, 0.3371, 0.3165, 0.3301, 0.2833, 0.3016, 0.3077, 0.2761, 0.4049, 0.4184, 0.4162, 0.4307, 0.4195, 0.3989, 0.4362, 0.3858, 0.4119},
+      { 0.2404, 0.2328, 0.3040, 0.2266, 0.3731, 0.3755, 0.4187, 0.3332, 0.3322, 0.3625, 0.3375, 0.4626, 0.5066, 0.4751, 0.4908, 0.4602, 0.5200, 0.5100, 0.4119, 0.5565}},
+    {
+      { 0.1614, 0.1665, 0.4132, 0.3683, 0.3345, 0.2711, 0.2632, 0.2595, 0.2782, 0.2173, 0.2224, 0.3111, 0.3119, 0.1973, 0.2031, 0.1973, 0.2403, 0.2428, 0.2148, 0.2475},
+      { 0.1665, 0.1996, 0.4326, 0.3725, 0.3059, 0.2600, 0.2391, 0.2513, 0.2772, 0.2100, 0.2203, 0.3185, 0.3227, 0.1984, 0.1991, 0.1915, 0.1445, 0.2284, 0.2142, 0.2180},
+      { 0.4132, 0.4326, 0.3048, 0.2372, 0.3283, 0.3127, 0.3109, 0.3114, 0.3392, 0.2771, 0.3001, 0.3913, 0.3889, 0.2748, 0.2894, 0.2784, 0.2403, 0.3289, 0.2809, 0.3055},
+      { 0.3683, 0.3725, 0.2372, 0.2008, 0.2546, 0.2428, 0.2469, 0.2656, 0.2608, 0.2062, 0.2067, 0.3233, 0.3199, 0.2123, 0.2198, 0.2101, 0.1499, 0.2401, 0.2162, 0.2442},
+      { 0.3345, 0.3059, 0.3283, 0.2546, 0.4010, 0.3666, 0.3798, 0.3828, 0.3442, 0.2943, 0.3247, 0.4405, 0.4403, 0.3659, 0.3632, 0.3647, 0.3663, 0.4067, 0.3196, 0.4071},
+      { 0.2711, 0.2600, 0.3127, 0.2428, 0.3666, 0.3060, 0.3194, 0.3341, 0.3267, 0.2716, 0.2756, 0.3561, 0.3471, 0.2838, 0.2869, 0.2830, 0.3126, 0.3303, 0.2842, 0.3308},
+      { 0.2632, 0.2391, 0.3109, 0.2469, 0.3798, 0.3194, 0.3488, 0.3892, 0.3245, 0.2617, 0.2753, 0.3749, 0.3837, 0.3428, 0.3414, 0.3305, 0.3298, 0.3799, 0.3029, 0.3848},
+      { 0.2595, 0.2513, 0.3114, 0.2656, 0.3828, 0.3341, 0.3892, 0.4125, 0.3714, 0.3022, 0.2939, 0.3674, 0.3855, 0.3727, 0.3822, 0.3629, 0.4947, 0.3835, 0.2957, 0.4034},
+      { 0.2782, 0.2772, 0.3392, 0.2608, 0.3442, 0.3267, 0.3245, 0.3714, 0.3293, 0.2790, 0.2862, 0.3807, 0.4242, 0.2883, 0.2868, 0.2740, 0.2651, 0.3281, 0.2901, 0.3284},
+      { 0.2173, 0.2100, 0.2771, 0.2062, 0.2943, 0.2716, 0.2617, 0.3022, 0.2790, 0.2523, 0.2508, 0.3215, 0.3169, 0.2264, 0.2217, 0.2382, 0.2335, 0.2812, 0.2648, 0.3182},
+      { 0.2224, 0.2203, 0.3001, 0.2067, 0.3247, 0.2756, 0.2753, 0.2939, 0.2862, 0.2508, 0.3235, 0.3636, 0.3858, 0.2459, 0.2406, 0.2339, 0.2156, 0.3034, 0.2515, 0.2946},
+      { 0.3111, 0.3185, 0.3913, 0.3233, 0.4405, 0.3561, 0.3749, 0.3674, 0.3807, 0.3215, 0.3636, 0.4673, 0.5272, 0.4153, 0.4183, 0.4210, 0.3933, 0.4846, 0.3708, 0.4592},
+      { 0.3119, 0.3227, 0.3889, 0.3199, 0.4403, 0.3471, 0.3837, 0.3855, 0.4242, 0.3169, 0.3858, 0.5272, 0.5374, 0.4162, 0.4496, 0.4341, 0.4718, 0.5234, 0.3766, 0.4420},
+      { 0.1973, 0.1984, 0.2748, 0.2123, 0.3659, 0.2838, 0.3428, 0.3727, 0.2883, 0.2264, 0.2459, 0.4153, 0.4162, 0.4232, 0.4223, 0.3979, 0.3728, 0.4430, 0.3208, 0.4144},
+      { 0.2031, 0.1991, 0.2894, 0.2198, 0.3632, 0.2869, 0.3414, 0.3822, 0.2868, 0.2217, 0.2406, 0.4183, 0.4496, 0.4223, 0.4456, 0.4253, 0.3932, 0.4470, 0.3328, 0.4349},
+      { 0.1973, 0.1915, 0.2784, 0.2101, 0.3647, 0.2830, 0.3305, 0.3629, 0.2740, 0.2382, 0.2339, 0.4210, 0.4341, 0.3979, 0.4253, 0.4029, 0.3656, 0.4333, 0.3129, 0.4171},
+      { 0.2403, 0.1445, 0.2403, 0.1499, 0.3663, 0.3126, 0.3298, 0.4947, 0.2651, 0.2335, 0.2156, 0.3933, 0.4718, 0.3728, 0.3932, 0.3656, 0.4296, 0.4193, 0.2909, 0.4360},
+      { 0.2428, 0.2284, 0.3289, 0.2401, 0.4067, 0.3303, 0.3799, 0.3835, 0.3281, 0.2812, 0.3034, 0.4846, 0.5234, 0.4430, 0.4470, 0.4333, 0.4193, 0.5236, 0.3618, 0.4801},
+      { 0.2148, 0.2142, 0.2809, 0.2162, 0.3196, 0.2842, 0.3029, 0.2957, 0.2901, 0.2648, 0.2515, 0.3708, 0.3766, 0.3208, 0.3328, 0.3129, 0.2909, 0.3618, 0.3087, 0.3486},
+      { 0.2475, 0.2180, 0.3055, 0.2442, 0.4071, 0.3308, 0.3848, 0.4034, 0.3284, 0.3182, 0.2946, 0.4592, 0.4420, 0.4144, 0.4349, 0.4171, 0.4360, 0.4801, 0.3486, 0.5594}},
+    {
+      { 0.1934, 0.2041, 0.4484, 0.3954, 0.3595, 0.2820, 0.2691, 0.2841, 0.2916, 0.2376, 0.2462, 0.3275, 0.3275, 0.2076, 0.2029, 0.2033, 0.1905, 0.2330, 0.2276, 0.2285},
+      { 0.2041, 0.2150, 0.4670, 0.4099, 0.3697, 0.2720, 0.2747, 0.2853, 0.3055, 0.2274, 0.2363, 0.3450, 0.3521, 0.2439, 0.2560, 0.2555, 0.2534, 0.2647, 0.2467, 0.2368},
+      { 0.4484, 0.4670, 0.3203, 0.2650, 0.3716, 0.3325, 0.3383, 0.3415, 0.3451, 0.2999, 0.2884, 0.4166, 0.4249, 0.3027, 0.3099, 0.3169, 0.2607, 0.3488, 0.2994, 0.2975},
+      { 0.3954, 0.4099, 0.2650, 0.2250, 0.2988, 0.2735, 0.2673, 0.2830, 0.2829, 0.2278, 0.2205, 0.3673, 0.3531, 0.2406, 0.2413, 0.2495, 0.1996, 0.2844, 0.2340, 0.2261},
+      { 0.3595, 0.3697, 0.3716, 0.2988, 0.4350, 0.3741, 0.3958, 0.3637, 0.4068, 0.3185, 0.3220, 0.4620, 0.4698, 0.3742, 0.3919, 0.3809, 0.4576, 0.4166, 0.3160, 0.3890},
+      { 0.2820, 0.2720, 0.3325, 0.2735, 0.3741, 0.2952, 0.3038, 0.3232, 0.3326, 0.2785, 0.2554, 0.3503, 0.3528, 0.2842, 0.2783, 0.2625, 0.2576, 0.3172, 0.2587, 0.2927},
+      { 0.2691, 0.2747, 0.3383, 0.2673, 0.3958, 0.3038, 0.3526, 0.3385, 0.3933, 0.2645, 0.2686, 0.3827, 0.3950, 0.3431, 0.3349, 0.3144, 0.2899, 0.3548, 0.2755, 0.3370},
+      { 0.2841, 0.2853, 0.3415, 0.2830, 0.3637, 0.3232, 0.3385, 0.3567, 0.3635, 0.2891, 0.2884, 0.3672, 0.3927, 0.2878, 0.2812, 0.2686, 0.2651, 0.3140, 0.2684, 0.3059},
+      { 0.2916, 0.3055, 0.3451, 0.2829, 0.4068, 0.3326, 0.3933, 0.3635, 0.4207, 0.3005, 0.3080, 0.3975, 0.4211, 0.3572, 0.3737, 0.3818, 0.5206, 0.3814, 0.3105, 0.3892},
+      { 0.2376, 0.2274, 0.2999, 0.2278, 0.3185, 0.2785, 0.2645, 0.2891, 0.3005, 0.2438, 0.2457, 0.3309, 0.3579, 0.2425, 0.2422, 0.2552, 0.2244, 0.3085, 0.2516, 0.2988},
+      { 0.2462, 0.2363, 0.2884, 0.2205, 0.3220, 0.2554, 0.2686, 0.2884, 0.3080, 0.2457, 0.2516, 0.3918, 0.4041, 0.2380, 0.2549, 0.2390, 0.2252, 0.3024, 0.2451, 0.2863},
+      { 0.3275, 0.3450, 0.4166, 0.3673, 0.4620, 0.3503, 0.3827, 0.3672, 0.3975, 0.3309, 0.3918, 0.4722, 0.5273, 0.4244, 0.4367, 0.4386, 0.4092, 0.4954, 0.3521, 0.4396},
+      { 0.3275, 0.3521, 0.4249, 0.3531, 0.4698, 0.3528, 0.3950, 0.3927, 0.4211, 0.3579, 0.4041, 0.5273, 0.5553, 0.4576, 0.4662, 0.4522, 0.4675, 0.5363, 0.3642, 0.5045},
+      { 0.2076, 0.2439, 0.3027, 0.2406, 0.3742, 0.2842, 0.3431, 0.2878, 0.3572, 0.2425, 0.2380, 0.4244, 0.4576, 0.4162, 0.4178, 0.4048, 0.3709, 0.4450, 0.3122, 0.4155},
+      { 0.2029, 0.2560, 0.3099, 0.2413, 0.3919, 0.2783, 0.3349, 0.2812, 0.3737, 0.2422, 0.2549, 0.4367, 0.4662, 0.4178, 0.4290, 0.4274, 0.4136, 0.4572, 0.3171, 0.4334},
+      { 0.2033, 0.2555, 0.3169, 0.2495, 0.3809, 0.2625, 0.3144, 0.2686, 0.3818, 0.2552, 0.2390, 0.4386, 0.4522, 0.4048, 0.4274, 0.4231, 0.3858, 0.4568, 0.3045, 0.3980},
+      { 0.1905, 0.2534, 0.2607, 0.1996, 0.4576, 0.2576, 0.2899, 0.2651, 0.5206, 0.2244, 0.2252, 0.4092, 0.4675, 0.3709, 0.4136, 0.3858, 0.4706, 0.4499, 0.2503, 0.4147},
+      { 0.2330, 0.2647, 0.3488, 0.2844, 0.4166, 0.3172, 0.3548, 0.3140, 0.3814, 0.3085, 0.3024, 0.4954, 0.5363, 0.4450, 0.4572, 0.4568, 0.4499, 0.5208, 0.3366, 0.4703},
+      { 0.2276, 0.2467, 0.2994, 0.2340, 0.3160, 0.2587, 0.2755, 0.2684, 0.3105, 0.2516, 0.2451, 0.3521, 0.3642, 0.3122, 0.3171, 0.3045, 0.2503, 0.3366, 0.2954, 0.3119},
+      { 0.2285, 0.2368, 0.2975, 0.2261, 0.3890, 0.2927, 0.3370, 0.3059, 0.3892, 0.2988, 0.2863, 0.4396, 0.5045, 0.4155, 0.4334, 0.3980, 0.4147, 0.4703, 0.3119, 0.4601}},
+    {
+      { 0.1383, 0.1009, 0.3648, 0.3224, 0.2903, 0.2327, 0.2048, 0.2417, 0.2114, 0.1562, 0.1832, 0.2956, 0.2548, 0.1461, 0.1426, 0.1655, 0.1540, 0.1972, 0.1830, 0.2197},
+      { 0.1009, 0.1512, 0.3841, 0.3100, 0.2766, 0.2256, 0.2168, 0.2140, 0.2347, 0.1399, 0.2010, 0.2993, 0.3012, 0.1844, 0.1864, 0.1860, 0.1490, 0.2162, 0.1961, 0.2000},
+      { 0.3648, 0.3841, 0.2934, 0.2080, 0.3135, 0.2884, 0.2847, 0.2889, 0.3021, 0.2308, 0.2604, 0.3744, 0.3828, 0.2620, 0.2598, 0.2743, 0.2442, 0.3162, 0.2653, 0.2868},
+      { 0.3224, 0.3100, 0.2080, 0.1610, 0.2243, 0.2102, 0.2010, 0.2274, 0.2210, 0.1723, 0.1840, 0.3034, 0.3250, 0.1815, 0.1779, 0.2078, 0.1505, 0.2416, 0.2122, 0.2366},
+      { 0.2903, 0.2766, 0.3135, 0.2243, 0.3772, 0.3484, 0.3397, 0.2830, 0.2948, 0.2821, 0.2822, 0.4117, 0.4330, 0.2984, 0.2912, 0.3099, 0.2806, 0.3674, 0.3000, 0.3525},
+      { 0.2327, 0.2256, 0.2884, 0.2102, 0.3484, 0.3190, 0.3260, 0.2947, 0.3096, 0.2701, 0.2678, 0.3578, 0.3650, 0.3070, 0.3062, 0.3037, 0.3120, 0.3564, 0.3072, 0.3714},
+      { 0.2048, 0.2168, 0.2847, 0.2010, 0.3397, 0.3260, 0.3463, 0.2768, 0.2993, 0.2766, 0.2620, 0.3788, 0.3981, 0.3509, 0.3449, 0.3192, 0.3168, 0.3847, 0.3393, 0.3848},
+      { 0.2417, 0.2140, 0.2889, 0.2274, 0.2830, 0.2947, 0.2768, 0.3065, 0.2840, 0.2668, 0.2609, 0.3215, 0.3445, 0.2281, 0.2133, 0.2323, 0.2335, 0.2775, 0.2625, 0.3230},
+      { 0.2114, 0.2347, 0.3021, 0.2210, 0.2948, 0.3096, 0.2993, 0.2840, 0.2984, 0.2979, 0.2663, 0.3487, 0.3832, 0.2635, 0.2583, 0.2683, 0.2244, 0.3202, 0.2937, 0.3239},
+      { 0.1562, 0.1399, 0.2308, 0.1723, 0.2821, 0.2701, 0.2766, 0.2668, 0.2979, 0.2407, 0.2014, 0.3139, 0.3245, 0.2982, 0.3005, 0.3294, 0.4164, 0.3368, 0.2924, 0.3795},
+      { 0.1832, 0.2010, 0.2604, 0.1840, 0.2822, 0.2678, 0.2620, 0.2609, 0.2663, 0.2014, 0.2367, 0.3636, 0.3868, 0.2426, 0.2455, 0.2383, 0.2627, 0.3145, 0.2500, 0.3167},
+      { 0.2956, 0.2993, 0.3744, 0.3034, 0.4117, 0.3578, 0.3788, 0.3215, 0.3487, 0.3139, 0.3636, 0.4650, 0.5273, 0.4224, 0.4244, 0.4202, 0.4163, 0.4776, 0.3955, 0.4528},
+      { 0.2548, 0.3012, 0.3828, 0.3250, 0.4330, 0.3650, 0.3981, 0.3445, 0.3832, 0.3245, 0.3868, 0.5273, 0.5451, 0.4530, 0.4359, 0.4340, 0.4834, 0.5259, 0.4047, 0.4485},
+      { 0.1461, 0.1844, 0.2620, 0.1815, 0.2984, 0.3070, 0.3509, 0.2281, 0.2635, 0.2982, 0.2426, 0.4224, 0.4530, 0.4526, 0.4541, 0.4266, 0.4026, 0.4661, 0.4161, 0.4606},
+      { 0.1426, 0.1864, 0.2598, 0.1779, 0.2912, 0.3062, 0.3449, 0.2133, 0.2583, 0.3005, 0.2455, 0.4244, 0.4359, 0.4541, 0.4625, 0.4375, 0.4050, 0.4653, 0.4227, 0.4659},
+      { 0.1655, 0.1860, 0.2743, 0.2078, 0.3099, 0.3037, 0.3192, 0.2323, 0.2683, 0.3294, 0.2383, 0.4202, 0.4340, 0.4266, 0.4375, 0.4280, 0.3765, 0.4573, 0.4063, 0.4235},
+      { 0.1540, 0.1490, 0.2442, 0.1505, 0.2806, 0.3120, 0.3168, 0.2335, 0.2244, 0.4164, 0.2627, 0.4163, 0.4834, 0.4026, 0.4050, 0.3765, 0.4116, 0.4423, 0.3986, 0.4553},
+      { 0.1972, 0.2162, 0.3162, 0.2416, 0.3674, 0.3564, 0.3847, 0.2775, 0.3202, 0.3368, 0.3145, 0.4776, 0.5259, 0.4661, 0.4653, 0.4573, 0.4423, 0.5269, 0.4284, 0.4902},
+      { 0.1830, 0.1961, 0.2653, 0.2122, 0.3000, 0.3072, 0.3393, 0.2625, 0.2937, 0.2924, 0.2500, 0.3955, 0.4047, 0.4161, 0.4227, 0.4063, 0.3986, 0.4284, 0.3720, 0.4329},
+      { 0.2197, 0.2000, 0.2868, 0.2366, 0.3525, 0.3714, 0.3848, 0.3230, 0.3239, 0.3795, 0.3167, 0.4528, 0.4485, 0.4606, 0.4659, 0.4235, 0.4553, 0.4902, 0.4329, 0.6394}},
+    {
+      { 0.1642, 0.1439, 0.3991, 0.3392, 0.3013, 0.2394, 0.2268, 0.2594, 0.2617, 0.2142, 0.2083, 0.2944, 0.2686, 0.1658, 0.1470, 0.1318, 0.1325, 0.1851, 0.1795, 0.1775},
+      { 0.1439, 0.1566, 0.3910, 0.3359, 0.2924, 0.2337, 0.2299, 0.2455, 0.2325, 0.1825, 0.2333, 0.2976, 0.2823, 0.1828, 0.1725, 0.1498, 0.1100, 0.1939, 0.1802, 0.1938},
+      { 0.3991, 0.3910, 0.2896, 0.2107, 0.3277, 0.2934, 0.3094, 0.3245, 0.3112, 0.2782, 0.3055, 0.3979, 0.4053, 0.2675, 0.2672, 0.2679, 0.2098, 0.3172, 0.2611, 0.2996},
+      { 0.3392, 0.3359, 0.2107, 0.1642, 0.2587, 0.2272, 0.2260, 0.2530, 0.2414, 0.1855, 0.2220, 0.3228, 0.3144, 0.2073, 0.1967, 0.1760, 0.1031, 0.2340, 0.1852, 0.1967},
+      { 0.3013, 0.2924, 0.3277, 0.2587, 0.3833, 0.3476, 0.3419, 0.3601, 0.3388, 0.3101, 0.3385, 0.4238, 0.4464, 0.3178, 0.3057, 0.3065, 0.3012, 0.3647, 0.2997, 0.3125},
+      { 0.2394, 0.2337, 0.2934, 0.2272, 0.3476, 0.2990, 0.3011, 0.3013, 0.2996, 0.2627, 0.2871, 0.3447, 0.3580, 0.2642, 0.2737, 0.2635, 0.2557, 0.3096, 0.2587, 0.2930},
+      { 0.2268, 0.2299, 0.3094, 0.2260, 0.3419, 0.3011, 0.3207, 0.3155, 0.3203, 0.2718, 0.3231, 0.3658, 0.3721, 0.3268, 0.3336, 0.3031, 0.2909, 0.3429, 0.2947, 0.3565},
+      { 0.2594, 0.2455, 0.3245, 0.2530, 0.3601, 0.3013, 0.3155, 0.3543, 0.3152, 0.2779, 0.3009, 0.3589, 0.3650, 0.2628, 0.2440, 0.2368, 0.2156, 0.2906, 0.2654, 0.3037},
+      { 0.2617, 0.2325, 0.3112, 0.2414, 0.3388, 0.2996, 0.3203, 0.3152, 0.3261, 0.2703, 0.3478, 0.3588, 0.4165, 0.2740, 0.2809, 0.2621, 0.2252, 0.3036, 0.2724, 0.2980},
+      { 0.2142, 0.1825, 0.2782, 0.1855, 0.3101, 0.2627, 0.2718, 0.2779, 0.2703, 0.2627, 0.2682, 0.3393, 0.3637, 0.2439, 0.2570, 0.2474, 0.2627, 0.2988, 0.2543, 0.2988},
+      { 0.2083, 0.2333, 0.3055, 0.2220, 0.3385, 0.2871, 0.3231, 0.3009, 0.3478, 0.2682, 0.2877, 0.4154, 0.4353, 0.3212, 0.3429, 0.3375, 0.4299, 0.3882, 0.2876, 0.3646},
+      { 0.2944, 0.2976, 0.3979, 0.3228, 0.4238, 0.3447, 0.3658, 0.3589, 0.3588, 0.3393, 0.4154, 0.4661, 0.5110, 0.4127, 0.4285, 0.4278, 0.3968, 0.4851, 0.3703, 0.4592},
+      { 0.2686, 0.2823, 0.4053, 0.3144, 0.4464, 0.3580, 0.3721, 0.3650, 0.4165, 0.3637, 0.4353, 0.5110, 0.5082, 0.4367, 0.4419, 0.4423, 0.4486, 0.5227, 0.3805, 0.4710},
+      { 0.1658, 0.1828, 0.2675, 0.2073, 0.3178, 0.2642, 0.3268, 0.2628, 0.2740, 0.2439, 0.3212, 0.4127, 0.4367, 0.4143, 0.4253, 0.4109, 0.3810, 0.4379, 0.3307, 0.4074},
+      { 0.1470, 0.1725, 0.2672, 0.1967, 0.3057, 0.2737, 0.3336, 0.2440, 0.2809, 0.2570, 0.3429, 0.4285, 0.4419, 0.4253, 0.4457, 0.4246, 0.4043, 0.4526, 0.3467, 0.4253},
+      { 0.1318, 0.1498, 0.2679, 0.1760, 0.3065, 0.2635, 0.3031, 0.2368, 0.2621, 0.2474, 0.3375, 0.4278, 0.4423, 0.4109, 0.4246, 0.4246, 0.3795, 0.4636, 0.3372, 0.4048},
+      { 0.1325, 0.1100, 0.2098, 0.1031, 0.3012, 0.2557, 0.2909, 0.2156, 0.2252, 0.2627, 0.4299, 0.3968, 0.4486, 0.3810, 0.4043, 0.3795, 0.4273, 0.4269, 0.3208, 0.4363},
+      { 0.1851, 0.1939, 0.3172, 0.2340, 0.3647, 0.3096, 0.3429, 0.2906, 0.3036, 0.2988, 0.3882, 0.4851, 0.5227, 0.4379, 0.4526, 0.4636, 0.4269, 0.5117, 0.3540, 0.4721},
+      { 0.1795, 0.1802, 0.2611, 0.1852, 0.2997, 0.2587, 0.2947, 0.2654, 0.2724, 0.2543, 0.2876, 0.3703, 0.3805, 0.3307, 0.3467, 0.3372, 0.3208, 0.3540, 0.2857, 0.3378},
+      { 0.1775, 0.1938, 0.2996, 0.1967, 0.3125, 0.2930, 0.3565, 0.3037, 0.2980, 0.2988, 0.3646, 0.4592, 0.4710, 0.4074, 0.4253, 0.4048, 0.4363, 0.4721, 0.3378, 0.5814}},
+    {
+      { 0.3386, 0.3106, 0.5502, 0.4789, 0.4336, 0.4018, 0.3843, 0.4037, 0.3956, 0.3573, 0.3776, 0.3898, 0.4294, 0.3249, 0.3417, 0.3401, 0.3201, 0.3596, 0.3459, 0.3758},
+      { 0.3106, 0.3180, 0.5612, 0.4972, 0.4501, 0.3942, 0.3901, 0.3971, 0.4024, 0.3501, 0.3714, 0.4102, 0.5041, 0.3669, 0.3794, 0.3754, 0.3482, 0.3966, 0.3599, 0.3679},
+      { 0.5502, 0.5612, 0.4085, 0.3562, 0.4573, 0.4516, 0.4371, 0.4537, 0.4694, 0.4007, 0.4074, 0.4746, 0.5397, 0.4222, 0.4298, 0.4413, 0.4005, 0.4690, 0.4168, 0.4175},
+      { 0.4789, 0.4972, 0.3562, 0.3186, 0.3939, 0.3709, 0.3813, 0.3984, 0.3976, 0.3448, 0.3480, 0.4377, 0.4885, 0.3728, 0.3846, 0.3942, 0.3552, 0.4172, 0.3594, 0.3635},
+      { 0.4336, 0.4501, 0.4573, 0.3939, 0.5382, 0.4870, 0.4832, 0.4585, 0.4532, 0.4171, 0.4163, 0.5234, 0.5454, 0.4689, 0.4722, 0.4823, 0.5046, 0.5168, 0.4239, 0.4765},
+      { 0.4018, 0.3942, 0.4516, 0.3709, 0.4870, 0.4389, 0.4305, 0.4447, 0.4390, 0.4095, 0.4060, 0.4563, 0.5082, 0.4201, 0.4313, 0.4266, 0.4220, 0.4799, 0.3985, 0.4464},
+      { 0.3843, 0.3901, 0.4371, 0.3813, 0.4832, 0.4305, 0.4524, 0.4585, 0.4423, 0.4008, 0.4170, 0.4823, 0.5305, 0.4692, 0.4776, 0.4670, 0.4393, 0.4951, 0.4231, 0.4690},
+      { 0.4037, 0.3971, 0.4537, 0.3984, 0.4585, 0.4447, 0.4585, 0.4694, 0.4528, 0.4214, 0.4168, 0.4669, 0.5134, 0.3971, 0.4050, 0.3913, 0.3933, 0.4568, 0.3942, 0.4293},
+      { 0.3956, 0.4024, 0.4694, 0.3976, 0.4532, 0.4390, 0.4423, 0.4528, 0.4621, 0.4106, 0.4071, 0.5066, 0.5439, 0.4256, 0.4379, 0.4426, 0.4092, 0.4860, 0.4097, 0.4336},
+      { 0.3573, 0.3501, 0.4007, 0.3448, 0.4171, 0.4095, 0.4008, 0.4214, 0.4106, 0.3995, 0.3850, 0.4341, 0.4889, 0.3962, 0.4133, 0.4075, 0.4163, 0.4550, 0.3926, 0.4262},
+      { 0.3776, 0.3714, 0.4074, 0.3480, 0.4163, 0.4060, 0.4170, 0.4168, 0.4071, 0.3850, 0.4003, 0.4712, 0.5310, 0.3980, 0.4046, 0.4050, 0.3968, 0.4527, 0.3789, 0.4386},
+      { 0.3898, 0.4102, 0.4746, 0.4377, 0.5234, 0.4563, 0.4823, 0.4669, 0.5066, 0.4341, 0.4712, 0.5489, 0.5852, 0.5396, 0.5673, 0.5662, 0.6565, 0.5948, 0.4771, 0.5538},
+      { 0.4294, 0.5041, 0.5397, 0.4885, 0.5454, 0.5082, 0.5305, 0.5134, 0.5439, 0.4889, 0.5310, 0.5852, 0.6300, 0.5797, 0.5893, 0.5860, 0.6154, 0.6293, 0.5257, 0.6432},
+      { 0.3249, 0.3669, 0.4222, 0.3728, 0.4689, 0.4201, 0.4692, 0.3971, 0.4256, 0.3962, 0.3980, 0.5396, 0.5797, 0.5617, 0.5730, 0.5559, 0.5147, 0.5689, 0.4886, 0.5332},
+      { 0.3417, 0.3794, 0.4298, 0.3846, 0.4722, 0.4313, 0.4776, 0.4050, 0.4379, 0.4133, 0.4046, 0.5673, 0.5893, 0.5730, 0.5921, 0.5790, 0.5297, 0.5846, 0.5066, 0.5477},
+      { 0.3401, 0.3754, 0.4413, 0.3942, 0.4823, 0.4266, 0.4670, 0.3913, 0.4426, 0.4075, 0.4050, 0.5662, 0.5860, 0.5559, 0.5790, 0.5715, 0.5147, 0.5889, 0.5051, 0.5373},
+      { 0.3201, 0.3482, 0.4005, 0.3552, 0.5046, 0.4220, 0.4393, 0.3933, 0.4092, 0.4163, 0.3968, 0.6565, 0.6154, 0.5147, 0.5297, 0.5147, 0.5497, 0.6080, 0.4448, 0.5394},
+      { 0.3596, 0.3966, 0.4690, 0.4172, 0.5168, 0.4799, 0.4951, 0.4568, 0.4860, 0.4550, 0.4527, 0.5948, 0.6293, 0.5689, 0.5846, 0.5889, 0.6080, 0.6265, 0.5161, 0.5779},
+      { 0.3459, 0.3599, 0.4168, 0.3594, 0.4239, 0.3985, 0.4231, 0.3942, 0.4097, 0.3926, 0.3789, 0.4771, 0.5257, 0.4886, 0.5066, 0.5051, 0.4448, 0.5161, 0.4544, 0.4849},
+      { 0.3758, 0.3679, 0.4175, 0.3635, 0.4765, 0.4464, 0.4690, 0.4293, 0.4336, 0.4262, 0.4386, 0.5538, 0.6432, 0.5332, 0.5477, 0.5373, 0.5394, 0.5779, 0.4849, 0.6529}},
+    {
+      { 0.3763, 0.3530, 0.5718, 0.5180, 0.5041, 0.4318, 0.4130, 0.4502, 0.4522, 0.4132, 0.3871, 0.4677, 0.3806, 0.3689, 0.3706, 0.3858, 0.3799, 0.4083, 0.3696, 0.3836},
+      { 0.3530, 0.3485, 0.5827, 0.5111, 0.4642, 0.4352, 0.4171, 0.4201, 0.4293, 0.3934, 0.3931, 0.4803, 0.4548, 0.3984, 0.4064, 0.4063, 0.3648, 0.4397, 0.3843, 0.3984},
+      { 0.5718, 0.5827, 0.4342, 0.3702, 0.4881, 0.4900, 0.4822, 0.4956, 0.4575, 0.4474, 0.4271, 0.5726, 0.5301, 0.4396, 0.4511, 0.4692, 0.4354, 0.5182, 0.4310, 0.4578},
+      { 0.5180, 0.5111, 0.3702, 0.4117, 0.4364, 0.4084, 0.3991, 0.4133, 0.4180, 0.3811, 0.3602, 0.4956, 0.4699, 0.3970, 0.4105, 0.4221, 0.3983, 0.4511, 0.3644, 0.4235},
+      { 0.5041, 0.4642, 0.4881, 0.4364, 0.5926, 0.5533, 0.5238, 0.5236, 0.5081, 0.4852, 0.4594, 0.5738, 0.5664, 0.5080, 0.5175, 0.5062, 0.4998, 0.5615, 0.4534, 0.5747},
+      { 0.4318, 0.4352, 0.4900, 0.4084, 0.5533, 0.4905, 0.4811, 0.5157, 0.4641, 0.4715, 0.4429, 0.5139, 0.4853, 0.4679, 0.4679, 0.4683, 0.4755, 0.5124, 0.4476, 0.4782},
+      { 0.4130, 0.4171, 0.4822, 0.3991, 0.5238, 0.4811, 0.4938, 0.4756, 0.4792, 0.4479, 0.4344, 0.5352, 0.5125, 0.4998, 0.5202, 0.5091, 0.4766, 0.5488, 0.4491, 0.5101},
+      { 0.4502, 0.4201, 0.4956, 0.4133, 0.5236, 0.5157, 0.4756, 0.5316, 0.4774, 0.4732, 0.4963, 0.5210, 0.4788, 0.4324, 0.4258, 0.4149, 0.4718, 0.4940, 0.4182, 0.4698},
+      { 0.4522, 0.4293, 0.4575, 0.4180, 0.5081, 0.4641, 0.4792, 0.4774, 0.4861, 0.4339, 0.4781, 0.5333, 0.5722, 0.4520, 0.4649, 0.4734, 0.4675, 0.5322, 0.4152, 0.4640},
+      { 0.4132, 0.3934, 0.4474, 0.3811, 0.4852, 0.4715, 0.4479, 0.4732, 0.4339, 0.4599, 0.4443, 0.5014, 0.4304, 0.4360, 0.4444, 0.4491, 0.4834, 0.4910, 0.4419, 0.4857},
+      { 0.3871, 0.3931, 0.4271, 0.3602, 0.4594, 0.4429, 0.4344, 0.4963, 0.4781, 0.4443, 0.4317, 0.5257, 0.5074, 0.4222, 0.4476, 0.4378, 0.4486, 0.4744, 0.4258, 0.4766},
+      { 0.4677, 0.4803, 0.5726, 0.4956, 0.5738, 0.5139, 0.5352, 0.5210, 0.5333, 0.5014, 0.5257, 0.5912, 0.6258, 0.5769, 0.6113, 0.5983, 0.6154, 0.6134, 0.5237, 0.6491},
+      { 0.3806, 0.4548, 0.5301, 0.4699, 0.5664, 0.4853, 0.5125, 0.4788, 0.5722, 0.4304, 0.5074, 0.6258, 0.6293, 0.5891, 0.6184, 0.6341, 0.6943, 0.6562, 0.5197, 0.6641},
+      { 0.3689, 0.3984, 0.4396, 0.3970, 0.5080, 0.4679, 0.4998, 0.4324, 0.4520, 0.4360, 0.4222, 0.5769, 0.5891, 0.5934, 0.6097, 0.6045, 0.5300, 0.6078, 0.5128, 0.5914},
+      { 0.3706, 0.4064, 0.4511, 0.4105, 0.5175, 0.4679, 0.5202, 0.4258, 0.4649, 0.4444, 0.4476, 0.6113, 0.6184, 0.6097, 0.6414, 0.6428, 0.5655, 0.6361, 0.5355, 0.6068},
+      { 0.3858, 0.4063, 0.4692, 0.4221, 0.5062, 0.4683, 0.5091, 0.4149, 0.4734, 0.4491, 0.4378, 0.5983, 0.6341, 0.6045, 0.6428, 0.6289, 0.5600, 0.6331, 0.5364, 0.5822},
+      { 0.3799, 0.3648, 0.4354, 0.3983, 0.4998, 0.4755, 0.4766, 0.4718, 0.4675, 0.4834, 0.4486, 0.6154, 0.6943, 0.5300, 0.5655, 0.5600, 0.5986, 0.6481, 0.4782, 0.5665},
+      { 0.4083, 0.4397, 0.5182, 0.4511, 0.5615, 0.5124, 0.5488, 0.4940, 0.5322, 0.4910, 0.4744, 0.6134, 0.6562, 0.6078, 0.6361, 0.6331, 0.6481, 0.6780, 0.5478, 0.6442},
+      { 0.3696, 0.3843, 0.4310, 0.3644, 0.4534, 0.4476, 0.4491, 0.4182, 0.4152, 0.4419, 0.4258, 0.5237, 0.5197, 0.5128, 0.5355, 0.5364, 0.4782, 0.5478, 0.4703, 0.5158},
+      { 0.3836, 0.3984, 0.4578, 0.4235, 0.5747, 0.4782, 0.5101, 0.4698, 0.4640, 0.4857, 0.4766, 0.6491, 0.6641, 0.5914, 0.6068, 0.5822, 0.5665, 0.6442, 0.5158, 0.7068}},
+    {
+      { 0.2470, 0.2207, 0.4758, 0.4087, 0.3943, 0.3201, 0.3080, 0.3359, 0.3321, 0.2902, 0.2655, 0.4027, 0.3952, 0.2471, 0.2741, 0.2821, 0.2465, 0.3141, 0.2567, 0.2893},
+      { 0.2207, 0.2346, 0.4959, 0.4206, 0.3813, 0.3129, 0.3239, 0.3262, 0.3251, 0.2631, 0.2696, 0.4072, 0.4189, 0.2894, 0.3126, 0.3051, 0.2712, 0.3429, 0.2687, 0.3093},
+      { 0.4758, 0.4959, 0.3310, 0.2704, 0.4011, 0.3648, 0.3686, 0.3810, 0.3864, 0.3292, 0.3289, 0.4673, 0.4748, 0.3360, 0.3617, 0.3716, 0.3326, 0.4154, 0.3199, 0.3566},
+      { 0.4087, 0.4206, 0.2704, 0.2415, 0.3350, 0.3030, 0.3199, 0.3094, 0.3170, 0.2554, 0.2446, 0.4186, 0.4193, 0.3074, 0.3276, 0.3304, 0.2822, 0.3708, 0.2768, 0.3146},
+      { 0.3943, 0.3813, 0.4011, 0.3350, 0.4819, 0.4470, 0.4473, 0.4204, 0.3985, 0.3662, 0.3588, 0.5067, 0.5128, 0.4069, 0.4343, 0.4271, 0.4205, 0.4702, 0.3710, 0.4256},
+      { 0.3201, 0.3129, 0.3648, 0.3030, 0.4470, 0.3855, 0.4021, 0.4095, 0.3924, 0.3627, 0.3422, 0.4539, 0.4864, 0.3804, 0.4059, 0.4063, 0.4107, 0.4585, 0.3689, 0.4157},
+      { 0.3080, 0.3239, 0.3686, 0.3199, 0.4473, 0.4021, 0.4342, 0.4148, 0.4011, 0.3598, 0.3460, 0.4661, 0.4787, 0.4377, 0.4669, 0.4577, 0.4648, 0.4904, 0.3979, 0.4549},
+      { 0.3359, 0.3262, 0.3810, 0.3094, 0.4204, 0.4095, 0.4148, 0.4524, 0.4011, 0.3565, 0.3484, 0.4435, 0.4631, 0.3258, 0.3536, 0.3537, 0.3728, 0.4116, 0.3255, 0.3864},
+      { 0.3321, 0.3251, 0.3864, 0.3170, 0.3985, 0.3924, 0.4011, 0.4011, 0.4158, 0.3496, 0.3601, 0.4555, 0.5214, 0.3702, 0.3921, 0.3876, 0.3709, 0.4279, 0.3378, 0.3875},
+      { 0.2902, 0.2631, 0.3292, 0.2554, 0.3662, 0.3627, 0.3598, 0.3565, 0.3496, 0.3597, 0.2999, 0.4728, 0.4835, 0.3538, 0.3868, 0.4007, 0.4026, 0.4702, 0.3635, 0.4112},
+      { 0.2655, 0.2696, 0.3289, 0.2446, 0.3588, 0.3422, 0.3460, 0.3484, 0.3601, 0.2999, 0.3376, 0.4561, 0.4760, 0.3206, 0.3554, 0.3708, 0.3810, 0.4176, 0.3282, 0.3797},
+      { 0.4027, 0.4072, 0.4673, 0.4186, 0.5067, 0.4539, 0.4661, 0.4435, 0.4555, 0.4728, 0.4561, 0.5350, 0.5744, 0.5009, 0.5321, 0.5351, 0.5147, 0.5863, 0.4745, 0.5320},
+      { 0.3952, 0.4189, 0.4748, 0.4193, 0.5128, 0.4864, 0.4787, 0.4631, 0.5214, 0.4835, 0.4760, 0.5744, 0.6237, 0.5074, 0.5405, 0.5538, 0.5300, 0.6263, 0.4792, 0.5398},
+      { 0.2471, 0.2894, 0.3360, 0.3074, 0.4069, 0.3804, 0.4377, 0.3258, 0.3702, 0.3538, 0.3206, 0.5009, 0.5074, 0.5397, 0.5558, 0.5408, 0.5491, 0.5516, 0.4661, 0.5362},
+      { 0.2741, 0.3126, 0.3617, 0.3276, 0.4343, 0.4059, 0.4669, 0.3536, 0.3921, 0.3868, 0.3554, 0.5321, 0.5405, 0.5558, 0.5899, 0.5724, 0.5457, 0.5853, 0.5011, 0.5646},
+      { 0.2821, 0.3051, 0.3716, 0.3304, 0.4271, 0.4063, 0.4577, 0.3537, 0.3876, 0.4007, 0.3708, 0.5351, 0.5538, 0.5408, 0.5724, 0.5669, 0.5131, 0.5900, 0.5029, 0.5394},
+      { 0.2465, 0.2712, 0.3326, 0.2822, 0.4205, 0.4107, 0.4648, 0.3728, 0.3709, 0.4026, 0.3810, 0.5147, 0.5300, 0.5491, 0.5457, 0.5131, 0.5517, 0.5613, 0.4674, 0.5330},
+      { 0.3141, 0.3429, 0.4154, 0.3708, 0.4702, 0.4585, 0.4904, 0.4116, 0.4279, 0.4702, 0.4176, 0.5863, 0.6263, 0.5516, 0.5853, 0.5900, 0.5613, 0.6428, 0.5253, 0.5909},
+      { 0.2567, 0.2687, 0.3199, 0.2768, 0.3710, 0.3689, 0.3979, 0.3255, 0.3378, 0.3635, 0.3282, 0.4745, 0.4792, 0.4661, 0.5011, 0.5029, 0.4674, 0.5253, 0.4377, 0.4699},
+      { 0.2893, 0.3093, 0.3566, 0.3146, 0.4256, 0.4157, 0.4549, 0.3864, 0.3875, 0.4112, 0.3797, 0.5320, 0.5398, 0.5362, 0.5646, 0.5394, 0.5330, 0.5909, 0.4699, 0.6053}},
+    {
+      { 0.2779, 0.2563, 0.4883, 0.4162, 0.4157, 0.3367, 0.3193, 0.3495, 0.3509, 0.3054, 0.3049, 0.4276, 0.4084, 0.2713, 0.2568, 0.2906, 0.2708, 0.3247, 0.2770, 0.2952},
+      { 0.2563, 0.2593, 0.5141, 0.4403, 0.4192, 0.3386, 0.3340, 0.3471, 0.3497, 0.2881, 0.2985, 0.4300, 0.4496, 0.3024, 0.3040, 0.3233, 0.2972, 0.3638, 0.2911, 0.3076},
+      { 0.4883, 0.5141, 0.3519, 0.2781, 0.4185, 0.3877, 0.3891, 0.3889, 0.4110, 0.3431, 0.3367, 0.4838, 0.4917, 0.3516, 0.3586, 0.3936, 0.3528, 0.4327, 0.3459, 0.3672},
+      { 0.4162, 0.4403, 0.2781, 0.2549, 0.3432, 0.3070, 0.3219, 0.3190, 0.3258, 0.2813, 0.2647, 0.4368, 0.4408, 0.3153, 0.3274, 0.3455, 0.3117, 0.3880, 0.2922, 0.3251},
+      { 0.4157, 0.4192, 0.4185, 0.3432, 0.4800, 0.4704, 0.4634, 0.4630, 0.4364, 0.3753, 0.3587, 0.5220, 0.5221, 0.4213, 0.4193, 0.4367, 0.4381, 0.4971, 0.3946, 0.4348},
+      { 0.3367, 0.3386, 0.3877, 0.3070, 0.4704, 0.4074, 0.4136, 0.4049, 0.4175, 0.3794, 0.3655, 0.4691, 0.5015, 0.3978, 0.4028, 0.4150, 0.4200, 0.4760, 0.3831, 0.4292},
+      { 0.3193, 0.3340, 0.3891, 0.3219, 0.4634, 0.4136, 0.4392, 0.4255, 0.4227, 0.3732, 0.3770, 0.4857, 0.5106, 0.4578, 0.4689, 0.4745, 0.4647, 0.5071, 0.4114, 0.4655},
+      { 0.3495, 0.3471, 0.3889, 0.3190, 0.4630, 0.4049, 0.4255, 0.4632, 0.4194, 0.3782, 0.3670, 0.4582, 0.4850, 0.3541, 0.3447, 0.3684, 0.3932, 0.4220, 0.3355, 0.3957},
+      { 0.3509, 0.3497, 0.4110, 0.3258, 0.4364, 0.4175, 0.4227, 0.4194, 0.4312, 0.3712, 0.3741, 0.4824, 0.5548, 0.3840, 0.3967, 0.4038, 0.4136, 0.4492, 0.3645, 0.4002},
+      { 0.3054, 0.2881, 0.3431, 0.2813, 0.3753, 0.3794, 0.3732, 0.3782, 0.3712, 0.3447, 0.3293, 0.4696, 0.4982, 0.3770, 0.3743, 0.4083, 0.4050, 0.4784, 0.3746, 0.4263},
+      { 0.3049, 0.2985, 0.3367, 0.2647, 0.3587, 0.3655, 0.3770, 0.3670, 0.3741, 0.3293, 0.3535, 0.4732, 0.5159, 0.3499, 0.3517, 0.3821, 0.4043, 0.4410, 0.3438, 0.4625},
+      { 0.4276, 0.4300, 0.4838, 0.4368, 0.5220, 0.4691, 0.4857, 0.4582, 0.4824, 0.4696, 0.4732, 0.5588, 0.5953, 0.5279, 0.5336, 0.5513, 0.5297, 0.6078, 0.4936, 0.5342},
+      { 0.4084, 0.4496, 0.4917, 0.4408, 0.5221, 0.5015, 0.5106, 0.4850, 0.5548, 0.4982, 0.5159, 0.5953, 0.6493, 0.5564, 0.5538, 0.5770, 0.5655, 0.6607, 0.5164, 0.5654},
+      { 0.2713, 0.3024, 0.3516, 0.3153, 0.4213, 0.3978, 0.4578, 0.3541, 0.3840, 0.3770, 0.3499, 0.5279, 0.5564, 0.5804, 0.5805, 0.5763, 0.5457, 0.5881, 0.4866, 0.5634},
+      { 0.2568, 0.3040, 0.3586, 0.3274, 0.4193, 0.4028, 0.4689, 0.3447, 0.3967, 0.3743, 0.3517, 0.5336, 0.5538, 0.5805, 0.6041, 0.5946, 0.5993, 0.5990, 0.4939, 0.5646},
+      { 0.2906, 0.3233, 0.3936, 0.3455, 0.4367, 0.4150, 0.4745, 0.3684, 0.4038, 0.4083, 0.3821, 0.5513, 0.5770, 0.5763, 0.5946, 0.5952, 0.5429, 0.6094, 0.5137, 0.5600},
+      { 0.2708, 0.2972, 0.3528, 0.3117, 0.4381, 0.4200, 0.4647, 0.3932, 0.4136, 0.4050, 0.4043, 0.5297, 0.5655, 0.5457, 0.5993, 0.5429, 0.5907, 0.5859, 0.4689, 0.5484},
+      { 0.3247, 0.3638, 0.4327, 0.3880, 0.4971, 0.4760, 0.5071, 0.4220, 0.4492, 0.4784, 0.4410, 0.6078, 0.6607, 0.5881, 0.5990, 0.6094, 0.5859, 0.6690, 0.5474, 0.6120},
+      { 0.2770, 0.2911, 0.3459, 0.2922, 0.3946, 0.3831, 0.4114, 0.3355, 0.3645, 0.3746, 0.3438, 0.4936, 0.5164, 0.4866, 0.4939, 0.5137, 0.4689, 0.5474, 0.4528, 0.4818},
+      { 0.2952, 0.3076, 0.3672, 0.3251, 0.4348, 0.4292, 0.4655, 0.3957, 0.4002, 0.4263, 0.4625, 0.5342, 0.5654, 0.5634, 0.5646, 0.5600, 0.5484, 0.6120, 0.4818, 0.6149}},
+    {
+      { 0.2617, 0.2429, 0.4944, 0.4318, 0.4080, 0.3392, 0.3127, 0.3483, 0.3443, 0.2914, 0.3045, 0.4212, 0.3998, 0.2775, 0.2830, 0.2666, 0.2626, 0.3068, 0.2751, 0.2885},
+      { 0.2429, 0.2536, 0.5161, 0.4411, 0.4058, 0.3246, 0.3194, 0.3412, 0.3477, 0.2797, 0.2929, 0.4267, 0.4367, 0.3027, 0.3167, 0.2957, 0.2732, 0.3453, 0.2919, 0.2816},
+      { 0.4944, 0.5161, 0.3561, 0.2824, 0.3947, 0.3728, 0.3769, 0.3856, 0.3996, 0.3449, 0.3495, 0.4749, 0.4829, 0.3608, 0.3802, 0.3728, 0.3434, 0.4251, 0.3424, 0.3596},
+      { 0.4318, 0.4411, 0.2824, 0.2592, 0.3259, 0.3090, 0.3165, 0.3195, 0.3352, 0.2609, 0.2699, 0.4310, 0.4359, 0.3207, 0.3383, 0.3300, 0.2963, 0.3719, 0.2906, 0.3009},
+      { 0.4080, 0.4058, 0.3947, 0.3259, 0.4886, 0.4393, 0.4467, 0.4096, 0.4250, 0.3597, 0.3774, 0.5138, 0.5325, 0.4267, 0.4398, 0.4220, 0.4317, 0.4833, 0.3790, 0.4333},
+      { 0.3392, 0.3246, 0.3728, 0.3090, 0.4393, 0.3901, 0.3965, 0.3989, 0.3935, 0.3565, 0.3575, 0.4632, 0.4932, 0.3996, 0.4161, 0.3865, 0.3922, 0.4570, 0.3724, 0.4040},
+      { 0.3127, 0.3194, 0.3769, 0.3165, 0.4467, 0.3965, 0.4312, 0.4138, 0.4166, 0.3601, 0.3695, 0.4837, 0.4949, 0.4622, 0.4779, 0.4581, 0.4398, 0.4972, 0.4011, 0.4552},
+      { 0.3483, 0.3412, 0.3856, 0.3195, 0.4096, 0.3989, 0.4138, 0.4489, 0.4207, 0.3484, 0.3382, 0.4548, 0.4815, 0.3590, 0.3642, 0.3371, 0.3656, 0.4113, 0.3344, 0.3785},
+      { 0.3443, 0.3477, 0.3996, 0.3352, 0.4250, 0.3935, 0.4166, 0.4207, 0.4171, 0.3469, 0.3718, 0.4743, 0.5269, 0.3803, 0.3968, 0.3896, 0.3858, 0.4345, 0.3512, 0.3858},
+      { 0.2914, 0.2797, 0.3449, 0.2609, 0.3597, 0.3565, 0.3601, 0.3484, 0.3469, 0.3547, 0.3361, 0.4512, 0.4791, 0.3866, 0.3941, 0.3725, 0.3765, 0.4556, 0.3597, 0.3977},
+      { 0.3045, 0.2929, 0.3495, 0.2699, 0.3774, 0.3575, 0.3695, 0.3382, 0.3718, 0.3361, 0.3724, 0.4775, 0.4952, 0.3565, 0.3729, 0.3558, 0.3795, 0.4310, 0.3427, 0.4140},
+      { 0.4212, 0.4267, 0.4749, 0.4310, 0.5138, 0.4632, 0.4837, 0.4548, 0.4743, 0.4512, 0.4775, 0.5465, 0.5894, 0.5276, 0.5498, 0.5300, 0.5147, 0.6001, 0.4860, 0.5192},
+      { 0.3998, 0.4367, 0.4829, 0.4359, 0.5325, 0.4932, 0.4949, 0.4815, 0.5269, 0.4791, 0.4952, 0.5894, 0.6263, 0.5571, 0.5727, 0.5589, 0.5600, 0.6508, 0.5099, 0.5563},
+      { 0.2775, 0.3027, 0.3608, 0.3207, 0.4267, 0.3996, 0.4622, 0.3590, 0.3803, 0.3866, 0.3565, 0.5276, 0.5571, 0.5725, 0.5823, 0.5593, 0.5131, 0.5868, 0.4888, 0.5556},
+      { 0.2830, 0.3167, 0.3802, 0.3383, 0.4398, 0.4161, 0.4779, 0.3642, 0.3968, 0.3941, 0.3729, 0.5498, 0.5727, 0.5823, 0.6102, 0.5907, 0.5429, 0.6071, 0.5099, 0.5755},
+      { 0.2666, 0.2957, 0.3728, 0.3300, 0.4220, 0.3865, 0.4581, 0.3371, 0.3896, 0.3725, 0.3558, 0.5300, 0.5589, 0.5593, 0.5907, 0.5807, 0.5527, 0.5984, 0.4895, 0.5473},
+      { 0.2626, 0.2732, 0.3434, 0.2963, 0.4317, 0.3922, 0.4398, 0.3656, 0.3858, 0.3765, 0.3795, 0.5147, 0.5600, 0.5131, 0.5429, 0.5527, 0.5652, 0.5802, 0.4464, 0.5332},
+      { 0.3068, 0.3453, 0.4251, 0.3719, 0.4833, 0.4570, 0.4972, 0.4113, 0.4345, 0.4556, 0.4310, 0.6001, 0.6508, 0.5868, 0.6071, 0.5984, 0.5802, 0.6653, 0.5315, 0.6120},
+      { 0.2751, 0.2919, 0.3424, 0.2906, 0.3790, 0.3724, 0.4011, 0.3344, 0.3512, 0.3597, 0.3427, 0.4860, 0.5099, 0.4888, 0.5099, 0.4895, 0.4464, 0.5315, 0.4480, 0.4739},
+      { 0.2885, 0.2816, 0.3596, 0.3009, 0.4333, 0.4040, 0.4552, 0.3785, 0.3858, 0.3977, 0.4140, 0.5192, 0.5563, 0.5556, 0.5755, 0.5473, 0.5332, 0.6120, 0.4739, 0.5979}},
+    {
+      { 0.3295, 0.2967, 0.5392, 0.4755, 0.4364, 0.3994, 0.3705, 0.3781, 0.4020, 0.3718, 0.3660, 0.4520, 0.4430, 0.3206, 0.3213, 0.3172, 0.3293, 0.3685, 0.3142, 0.3415},
+      { 0.2967, 0.3005, 0.5543, 0.4644, 0.4569, 0.3730, 0.3589, 0.3558, 0.3931, 0.3237, 0.3411, 0.4487, 0.4640, 0.3497, 0.3589, 0.3485, 0.3253, 0.3944, 0.3241, 0.3267},
+      { 0.5392, 0.5543, 0.3899, 0.3233, 0.4813, 0.4235, 0.4292, 0.4664, 0.4581, 0.4009, 0.3860, 0.5171, 0.5235, 0.4002, 0.4272, 0.4193, 0.3592, 0.4628, 0.3847, 0.4321},
+      { 0.4755, 0.4644, 0.3233, 0.2977, 0.3969, 0.3620, 0.3682, 0.3681, 0.3795, 0.3254, 0.2903, 0.4554, 0.4847, 0.3553, 0.3752, 0.3742, 0.3116, 0.4016, 0.3283, 0.3532},
+      { 0.4364, 0.4569, 0.4813, 0.3969, 0.5146, 0.4952, 0.5090, 0.5024, 0.5162, 0.4526, 0.4301, 0.5684, 0.5789, 0.4895, 0.5090, 0.4863, 0.4972, 0.5377, 0.4304, 0.5066},
+      { 0.3994, 0.3730, 0.4235, 0.3620, 0.4952, 0.4540, 0.4543, 0.4566, 0.4599, 0.4379, 0.4156, 0.4998, 0.5243, 0.4675, 0.4803, 0.4562, 0.4538, 0.5183, 0.4333, 0.4714},
+      { 0.3705, 0.3589, 0.4292, 0.3682, 0.5090, 0.4543, 0.4955, 0.4620, 0.4643, 0.4217, 0.4277, 0.5349, 0.5376, 0.5243, 0.5212, 0.5050, 0.5017, 0.5488, 0.4535, 0.5201},
+      { 0.3781, 0.3558, 0.4664, 0.3681, 0.5024, 0.4566, 0.4620, 0.4845, 0.4641, 0.4279, 0.4121, 0.4943, 0.5241, 0.4089, 0.4084, 0.3969, 0.4296, 0.4796, 0.3834, 0.4388},
+      { 0.4020, 0.3931, 0.4581, 0.3795, 0.5162, 0.4599, 0.4643, 0.4641, 0.5061, 0.4364, 0.4116, 0.5190, 0.5743, 0.4370, 0.4507, 0.4421, 0.4706, 0.4798, 0.4106, 0.4588},
+      { 0.3718, 0.3237, 0.4009, 0.3254, 0.4526, 0.4379, 0.4217, 0.4279, 0.4364, 0.4527, 0.4021, 0.5095, 0.5474, 0.4541, 0.4690, 0.4626, 0.4116, 0.5173, 0.4263, 0.4872},
+      { 0.3660, 0.3411, 0.3860, 0.2903, 0.4301, 0.4156, 0.4277, 0.4121, 0.4116, 0.4021, 0.4129, 0.5323, 0.6210, 0.4056, 0.4345, 0.4139, 0.4273, 0.4863, 0.3822, 0.4557},
+      { 0.4520, 0.4487, 0.5171, 0.4554, 0.5684, 0.4998, 0.5349, 0.4943, 0.5190, 0.5095, 0.5323, 0.5974, 0.6511, 0.5807, 0.5937, 0.5819, 0.5497, 0.6400, 0.5325, 0.5624},
+      { 0.4430, 0.4640, 0.5235, 0.4847, 0.5789, 0.5243, 0.5376, 0.5241, 0.5743, 0.5474, 0.6210, 0.6511, 0.6335, 0.6035, 0.6027, 0.5991, 0.5986, 0.6830, 0.5644, 0.6169},
+      { 0.3206, 0.3497, 0.4002, 0.3553, 0.4895, 0.4675, 0.5243, 0.4089, 0.4370, 0.4541, 0.4056, 0.5807, 0.6035, 0.6092, 0.6134, 0.5994, 0.5517, 0.6276, 0.5381, 0.5997},
+      { 0.3213, 0.3589, 0.4272, 0.3752, 0.5090, 0.4803, 0.5212, 0.4084, 0.4507, 0.4690, 0.4345, 0.5937, 0.6027, 0.6134, 0.6435, 0.6236, 0.5907, 0.6398, 0.5639, 0.6156},
+      { 0.3172, 0.3485, 0.4193, 0.3742, 0.4863, 0.4562, 0.5050, 0.3969, 0.4421, 0.4626, 0.4139, 0.5819, 0.5991, 0.5994, 0.6236, 0.6082, 0.5652, 0.6361, 0.5427, 0.5929},
+      { 0.3293, 0.3253, 0.3592, 0.3116, 0.4972, 0.4538, 0.5017, 0.4296, 0.4706, 0.4116, 0.4273, 0.5497, 0.5986, 0.5517, 0.5907, 0.5652, 0.6937, 0.6086, 0.4842, 0.5985},
+      { 0.3685, 0.3944, 0.4628, 0.4016, 0.5377, 0.5183, 0.5488, 0.4796, 0.4798, 0.5173, 0.4863, 0.6400, 0.6830, 0.6276, 0.6398, 0.6361, 0.6086, 0.7026, 0.5711, 0.6691},
+      { 0.3142, 0.3241, 0.3847, 0.3283, 0.4304, 0.4333, 0.4535, 0.3834, 0.4106, 0.4263, 0.3822, 0.5325, 0.5644, 0.5381, 0.5639, 0.5427, 0.4842, 0.5711, 0.4915, 0.5157},
+      { 0.3415, 0.3267, 0.4321, 0.3532, 0.5066, 0.4714, 0.5201, 0.4388, 0.4588, 0.4872, 0.4557, 0.5624, 0.6169, 0.5997, 0.6156, 0.5929, 0.5985, 0.6691, 0.5157, 0.6577}},
+    {
+      { 0.3392, 0.3178, 0.5375, 0.4707, 0.4557, 0.3907, 0.3798, 0.4121, 0.3910, 0.3772, 0.3754, 0.4575, 0.4487, 0.3398, 0.3620, 0.3497, 0.3178, 0.3253, 0.3422, 0.3626},
+      { 0.3178, 0.3069, 0.5517, 0.4765, 0.4552, 0.3889, 0.3895, 0.4081, 0.4178, 0.3516, 0.3704, 0.4688, 0.4813, 0.3755, 0.3878, 0.3730, 0.3441, 0.3657, 0.3637, 0.3629},
+      { 0.5375, 0.5517, 0.4191, 0.3548, 0.4592, 0.4470, 0.4495, 0.4530, 0.4699, 0.4046, 0.4245, 0.5210, 0.5507, 0.4268, 0.4433, 0.4430, 0.4136, 0.4537, 0.4097, 0.4363},
+      { 0.4707, 0.4765, 0.3548, 0.3093, 0.3925, 0.3749, 0.3850, 0.3991, 0.3868, 0.3363, 0.3490, 0.4674, 0.4892, 0.3774, 0.3991, 0.3969, 0.3606, 0.4001, 0.3436, 0.3864},
+      { 0.4557, 0.4552, 0.4592, 0.3925, 0.5384, 0.5028, 0.5054, 0.4863, 0.4760, 0.4434, 0.4254, 0.5868, 0.5927, 0.4810, 0.4961, 0.4876, 0.4871, 0.5150, 0.4428, 0.4927},
+      { 0.3907, 0.3889, 0.4470, 0.3749, 0.5028, 0.4582, 0.4663, 0.4634, 0.4664, 0.4323, 0.4086, 0.4958, 0.5337, 0.4603, 0.4885, 0.4670, 0.4723, 0.4666, 0.4325, 0.4655},
+      { 0.3798, 0.3895, 0.4495, 0.3850, 0.5054, 0.4663, 0.4830, 0.4949, 0.4717, 0.4241, 0.4224, 0.5265, 0.5547, 0.5048, 0.5334, 0.5181, 0.4793, 0.5124, 0.4546, 0.5187},
+      { 0.4121, 0.4081, 0.4530, 0.3991, 0.4863, 0.4634, 0.4949, 0.5218, 0.4762, 0.4403, 0.4306, 0.4937, 0.5142, 0.4171, 0.4270, 0.4163, 0.4193, 0.4400, 0.4033, 0.4363},
+      { 0.3910, 0.4178, 0.4699, 0.3868, 0.4760, 0.4664, 0.4717, 0.4762, 0.4781, 0.4298, 0.4363, 0.5214, 0.5692, 0.4438, 0.4693, 0.4521, 0.4499, 0.4972, 0.4157, 0.4649},
+      { 0.3772, 0.3516, 0.4046, 0.3363, 0.4434, 0.4323, 0.4241, 0.4403, 0.4298, 0.4291, 0.4176, 0.4858, 0.5183, 0.4394, 0.4559, 0.4487, 0.4423, 0.4513, 0.4224, 0.4597},
+      { 0.3754, 0.3704, 0.4245, 0.3490, 0.4254, 0.4086, 0.4224, 0.4306, 0.4363, 0.4176, 0.4420, 0.5082, 0.5577, 0.4248, 0.4558, 0.4346, 0.4269, 0.4460, 0.4148, 0.4599},
+      { 0.4575, 0.4688, 0.5210, 0.4674, 0.5868, 0.4958, 0.5265, 0.4937, 0.5214, 0.4858, 0.5082, 0.5773, 0.6178, 0.5757, 0.5991, 0.5888, 0.6080, 0.6112, 0.5155, 0.5772},
+      { 0.4487, 0.4813, 0.5507, 0.4892, 0.5927, 0.5337, 0.5547, 0.5142, 0.5692, 0.5183, 0.5577, 0.6178, 0.6490, 0.6188, 0.6308, 0.6357, 0.6481, 0.6531, 0.5597, 0.6529},
+      { 0.3398, 0.3755, 0.4268, 0.3774, 0.4810, 0.4603, 0.5048, 0.4171, 0.4438, 0.4394, 0.4248, 0.5757, 0.6188, 0.6233, 0.6397, 0.6211, 0.5613, 0.6126, 0.5330, 0.6001},
+      { 0.3620, 0.3878, 0.4433, 0.3991, 0.4961, 0.4885, 0.5334, 0.4270, 0.4693, 0.4559, 0.4558, 0.5991, 0.6308, 0.6397, 0.6689, 0.6467, 0.5859, 0.6363, 0.5639, 0.6199},
+      { 0.3497, 0.3730, 0.4430, 0.3969, 0.4876, 0.4670, 0.5181, 0.4163, 0.4521, 0.4487, 0.4346, 0.5888, 0.6357, 0.6211, 0.6467, 0.6431, 0.5802, 0.6350, 0.5561, 0.6004},
+      { 0.3178, 0.3441, 0.4136, 0.3606, 0.4871, 0.4723, 0.4793, 0.4193, 0.4499, 0.4423, 0.4269, 0.6080, 0.6481, 0.5613, 0.5859, 0.5802, 0.6086, 0.6793, 0.5126, 0.5794},
+      { 0.3253, 0.3657, 0.4537, 0.4001, 0.5150, 0.4666, 0.5124, 0.4400, 0.4972, 0.4513, 0.4460, 0.6112, 0.6531, 0.6126, 0.6363, 0.6350, 0.6793, 0.6672, 0.5409, 0.6332},
+      { 0.3422, 0.3637, 0.4097, 0.3436, 0.4428, 0.4325, 0.4546, 0.4033, 0.4157, 0.4224, 0.4148, 0.5155, 0.5597, 0.5330, 0.5639, 0.5561, 0.5126, 0.5409, 0.4877, 0.5289},
+      { 0.3626, 0.3629, 0.4363, 0.3864, 0.4927, 0.4655, 0.5187, 0.4363, 0.4649, 0.4597, 0.4599, 0.5772, 0.6529, 0.6001, 0.6199, 0.6004, 0.5794, 0.6332, 0.5289, 0.6766}},
+    {
+      { 0.1559, 0.1493, 0.4082, 0.3552, 0.3265, 0.2564, 0.2374, 0.2642, 0.2717, 0.2201, 0.2089, 0.3286, 0.2979, 0.1888, 0.1877, 0.1851, 0.1560, 0.2293, 0.1714, 0.2172},
+      { 0.1493, 0.1746, 0.4244, 0.3612, 0.3105, 0.2347, 0.2183, 0.2524, 0.2636, 0.1867, 0.2059, 0.3207, 0.3343, 0.2129, 0.2194, 0.2105, 0.1468, 0.2394, 0.2020, 0.2141},
+      { 0.4082, 0.4244, 0.2726, 0.2026, 0.3205, 0.2954, 0.3074, 0.3125, 0.3143, 0.2622, 0.2719, 0.4065, 0.4144, 0.2953, 0.3048, 0.3088, 0.2422, 0.3434, 0.2656, 0.3025},
+      { 0.3552, 0.3612, 0.2026, 0.1685, 0.2505, 0.2370, 0.2286, 0.2390, 0.2415, 0.1974, 0.1846, 0.3489, 0.3357, 0.2390, 0.2452, 0.2481, 0.1653, 0.2699, 0.2269, 0.2325},
+      { 0.3265, 0.3105, 0.3205, 0.2505, 0.4000, 0.3932, 0.3789, 0.3470, 0.3196, 0.3265, 0.3438, 0.4487, 0.4666, 0.3663, 0.3734, 0.3649, 0.3481, 0.4104, 0.3126, 0.3784},
+      { 0.2564, 0.2347, 0.2954, 0.2370, 0.3932, 0.3515, 0.3566, 0.3406, 0.3367, 0.3242, 0.2892, 0.3884, 0.4075, 0.3614, 0.3747, 0.3682, 0.3971, 0.4059, 0.3189, 0.3881},
+      { 0.2374, 0.2183, 0.3074, 0.2286, 0.3789, 0.3566, 0.3883, 0.3493, 0.3370, 0.3461, 0.2926, 0.4102, 0.4331, 0.4118, 0.4220, 0.4101, 0.3989, 0.4356, 0.3579, 0.4178},
+      { 0.2642, 0.2524, 0.3125, 0.2390, 0.3470, 0.3406, 0.3493, 0.3684, 0.3313, 0.3116, 0.2848, 0.3668, 0.3940, 0.3000, 0.2952, 0.2815, 0.2909, 0.3441, 0.2693, 0.3305},
+      { 0.2717, 0.2636, 0.3143, 0.2415, 0.3196, 0.3367, 0.3370, 0.3313, 0.3251, 0.3020, 0.2830, 0.3843, 0.4136, 0.3059, 0.3192, 0.3079, 0.2503, 0.3549, 0.3081, 0.3450},
+      { 0.2201, 0.1867, 0.2622, 0.1974, 0.3265, 0.3242, 0.3461, 0.3116, 0.3020, 0.3266, 0.2523, 0.4083, 0.4220, 0.3770, 0.3889, 0.3906, 0.3986, 0.4281, 0.3203, 0.4281},
+      { 0.2089, 0.2059, 0.2719, 0.1846, 0.3438, 0.2892, 0.2926, 0.2848, 0.2830, 0.2523, 0.2563, 0.3980, 0.4135, 0.2925, 0.3047, 0.2953, 0.3208, 0.3531, 0.2568, 0.3568},
+      { 0.3286, 0.3207, 0.4065, 0.3489, 0.4487, 0.3884, 0.4102, 0.3668, 0.3843, 0.4083, 0.3980, 0.4801, 0.5324, 0.4779, 0.4839, 0.4885, 0.4448, 0.5302, 0.4160, 0.4735},
+      { 0.2979, 0.3343, 0.4144, 0.3357, 0.4666, 0.4075, 0.4331, 0.3940, 0.4136, 0.4220, 0.4135, 0.5324, 0.5784, 0.4909, 0.5039, 0.4925, 0.4782, 0.5732, 0.4040, 0.4857},
+      { 0.1888, 0.2129, 0.2953, 0.2390, 0.3663, 0.3614, 0.4118, 0.3000, 0.3059, 0.3770, 0.2925, 0.4779, 0.4909, 0.5143, 0.5270, 0.5097, 0.4674, 0.5221, 0.4391, 0.5082},
+      { 0.1877, 0.2194, 0.3048, 0.2452, 0.3734, 0.3747, 0.4220, 0.2952, 0.3192, 0.3889, 0.3047, 0.4839, 0.5039, 0.5270, 0.5387, 0.5239, 0.4689, 0.5387, 0.4634, 0.5311},
+      { 0.1851, 0.2105, 0.3088, 0.2481, 0.3649, 0.3682, 0.4101, 0.2815, 0.3079, 0.3906, 0.2953, 0.4885, 0.4925, 0.5097, 0.5239, 0.5115, 0.4464, 0.5315, 0.4528, 0.5023},
+      { 0.1560, 0.1468, 0.2422, 0.1653, 0.3481, 0.3971, 0.3989, 0.2909, 0.2503, 0.3986, 0.3208, 0.4448, 0.4782, 0.4674, 0.4689, 0.4464, 0.4842, 0.5126, 0.4876, 0.4948},
+      { 0.2293, 0.2394, 0.3434, 0.2699, 0.4104, 0.4059, 0.4356, 0.3441, 0.3549, 0.4281, 0.3531, 0.5302, 0.5732, 0.5221, 0.5387, 0.5315, 0.5126, 0.5831, 0.4580, 0.5408},
+      { 0.1714, 0.2020, 0.2656, 0.2269, 0.3126, 0.3189, 0.3579, 0.2693, 0.3081, 0.3203, 0.2568, 0.4160, 0.4040, 0.4391, 0.4634, 0.4528, 0.4876, 0.4580, 0.4022, 0.4382},
+      { 0.2172, 0.2141, 0.3025, 0.2325, 0.3784, 0.3881, 0.4178, 0.3305, 0.3450, 0.4281, 0.3568, 0.4735, 0.4857, 0.5082, 0.5311, 0.5023, 0.4948, 0.5408, 0.4382, 0.5992}},
+    {
+      { 0.2691, 0.2292, 0.4838, 0.4137, 0.4270, 0.3526, 0.3375, 0.3671, 0.3335, 0.3216, 0.3029, 0.4245, 0.3953, 0.2972, 0.3149, 0.3030, 0.3180, 0.3614, 0.2952, 0.2507},
+      { 0.2292, 0.2429, 0.5047, 0.4153, 0.4202, 0.3323, 0.3429, 0.3448, 0.3422, 0.3129, 0.2806, 0.4185, 0.4415, 0.3247, 0.3370, 0.3167, 0.3119, 0.3597, 0.2814, 0.2582},
+      { 0.4838, 0.5047, 0.3638, 0.2884, 0.4094, 0.3830, 0.3980, 0.3822, 0.4344, 0.3620, 0.3523, 0.4873, 0.5126, 0.3795, 0.3897, 0.3896, 0.3703, 0.4432, 0.3424, 0.3245},
+      { 0.4137, 0.4153, 0.2884, 0.2345, 0.3599, 0.3009, 0.3307, 0.3095, 0.3272, 0.2774, 0.2601, 0.4220, 0.4637, 0.3241, 0.3401, 0.3300, 0.3012, 0.3799, 0.2946, 0.2985},
+      { 0.4270, 0.4202, 0.4094, 0.3599, 0.4737, 0.4827, 0.4915, 0.4359, 0.4351, 0.4101, 0.3895, 0.5258, 0.5311, 0.4520, 0.4566, 0.4327, 0.4270, 0.4869, 0.3903, 0.4075},
+      { 0.3526, 0.3323, 0.3830, 0.3009, 0.4827, 0.4385, 0.4508, 0.4316, 0.4200, 0.4077, 0.3801, 0.4866, 0.5329, 0.4473, 0.4686, 0.4536, 0.4936, 0.4981, 0.4095, 0.3869},
+      { 0.3375, 0.3429, 0.3980, 0.3307, 0.4915, 0.4508, 0.4926, 0.4552, 0.4395, 0.4214, 0.3749, 0.4966, 0.5217, 0.4861, 0.4980, 0.4764, 0.5200, 0.5019, 0.4382, 0.4202},
+      { 0.3671, 0.3448, 0.3822, 0.3095, 0.4359, 0.4316, 0.4552, 0.5348, 0.4580, 0.4339, 0.3599, 0.4626, 0.4952, 0.3902, 0.4195, 0.4044, 0.4360, 0.4278, 0.3634, 0.3707},
+      { 0.3335, 0.3422, 0.4344, 0.3272, 0.4351, 0.4200, 0.4395, 0.4580, 0.4320, 0.3764, 0.3817, 0.4648, 0.5221, 0.4073, 0.4102, 0.4056, 0.4147, 0.4545, 0.3831, 0.4008},
+      { 0.3216, 0.3129, 0.3620, 0.2774, 0.4101, 0.4077, 0.4214, 0.4339, 0.3764, 0.4150, 0.3744, 0.4786, 0.5004, 0.4441, 0.4483, 0.4352, 0.4553, 0.5000, 0.4008, 0.3656},
+      { 0.3029, 0.2806, 0.3523, 0.2601, 0.3895, 0.3801, 0.3749, 0.3599, 0.3817, 0.3744, 0.3620, 0.4708, 0.4743, 0.3763, 0.3995, 0.4088, 0.4363, 0.4485, 0.3431, 0.2867},
+      { 0.4245, 0.4185, 0.4873, 0.4220, 0.5258, 0.4866, 0.4966, 0.4626, 0.4648, 0.4786, 0.4708, 0.5455, 0.5621, 0.5246, 0.5468, 0.5306, 0.5394, 0.5823, 0.4826, 0.4538},
+      { 0.3953, 0.4415, 0.5126, 0.4637, 0.5311, 0.5329, 0.5217, 0.4952, 0.5221, 0.5004, 0.4743, 0.5621, 0.5507, 0.5332, 0.5494, 0.5559, 0.5665, 0.6291, 0.4913, 0.4537},
+      { 0.2972, 0.3247, 0.3795, 0.3241, 0.4520, 0.4473, 0.4861, 0.3902, 0.4073, 0.4441, 0.3763, 0.5246, 0.5332, 0.5751, 0.5798, 0.5619, 0.5330, 0.5793, 0.5269, 0.4581},
+      { 0.3149, 0.3370, 0.3897, 0.3401, 0.4566, 0.4686, 0.4980, 0.4195, 0.4102, 0.4483, 0.3995, 0.5468, 0.5494, 0.5798, 0.5987, 0.5807, 0.5484, 0.5952, 0.5444, 0.4630},
+      { 0.3030, 0.3167, 0.3896, 0.3300, 0.4327, 0.4536, 0.4764, 0.4044, 0.4056, 0.4352, 0.4088, 0.5306, 0.5559, 0.5619, 0.5807, 0.5759, 0.5332, 0.5869, 0.5312, 0.4426},
+      { 0.3180, 0.3119, 0.3703, 0.3012, 0.4270, 0.4936, 0.5200, 0.4360, 0.4147, 0.4553, 0.4363, 0.5394, 0.5665, 0.5330, 0.5484, 0.5332, 0.5985, 0.5794, 0.4948, 0.5685},
+      { 0.3614, 0.3597, 0.4432, 0.3799, 0.4869, 0.4981, 0.5019, 0.4278, 0.4545, 0.5000, 0.4485, 0.5823, 0.6291, 0.5793, 0.5952, 0.5869, 0.5794, 0.6377, 0.5405, 0.5063},
+      { 0.2952, 0.2814, 0.3424, 0.2946, 0.3903, 0.4095, 0.4382, 0.3634, 0.3831, 0.4008, 0.3431, 0.4826, 0.4913, 0.5269, 0.5444, 0.5312, 0.4948, 0.5405, 0.4714, 0.3927},
+      { 0.2507, 0.2582, 0.3245, 0.2985, 0.4075, 0.3869, 0.4202, 0.3707, 0.4008, 0.3656, 0.2867, 0.4538, 0.4537, 0.4581, 0.4630, 0.4426, 0.5685, 0.5063, 0.3927, 0.5540}}},
+  {
+    {
+      { 0.1704, 0.1508, 0.3518, 0.3142, 0.3731, 0.2848, 0.3000, 0.2923, 0.2723, 0.2509, 0.2430, 0.4075, 0.3827, 0.2804, 0.2917, 0.2885, 0.3339, 0.3806, 0.2522, 0.3233},
+      { 0.1508, 0.1601, 0.3746, 0.3218, 0.2810, 0.2276, 0.2411, 0.2376, 0.2449, 0.1896, 0.1804, 0.2807, 0.2909, 0.1965, 0.1971, 0.1879, 0.2021, 0.1943, 0.1986, 0.2109},
+      { 0.3518, 0.3746, 0.2657, 0.1934, 0.2665, 0.2512, 0.2589, 0.2593, 0.2848, 0.2228, 0.2421, 0.3018, 0.3059, 0.2202, 0.2248, 0.2098, 0.2211, 0.1937, 0.2223, 0.2371},
+      { 0.3142, 0.3218, 0.1934, 0.1651, 0.2036, 0.1856, 0.1963, 0.2136, 0.2274, 0.1550, 0.1521, 0.2423, 0.2294, 0.1534, 0.1493, 0.1364, 0.1415, 0.1199, 0.1641, 0.1478},
+      { 0.3731, 0.2810, 0.2665, 0.2036, 0.3402, 0.2915, 0.2961, 0.2766, 0.2720, 0.2269, 0.2392, 0.3587, 0.3703, 0.2798, 0.2718, 0.2650, 0.2957, 0.2816, 0.2319, 0.3111},
+      { 0.2848, 0.2276, 0.2512, 0.1856, 0.2915, 0.2422, 0.2414, 0.2487, 0.2471, 0.2086, 0.1957, 0.2797, 0.2856, 0.2111, 0.2060, 0.1994, 0.2318, 0.2157, 0.2121, 0.2503},
+      { 0.3000, 0.2411, 0.2589, 0.1963, 0.2961, 0.2414, 0.2575, 0.2634, 0.2576, 0.1917, 0.1985, 0.2912, 0.3008, 0.2564, 0.2597, 0.2404, 0.2532, 0.2259, 0.2161, 0.2650},
+      { 0.2923, 0.2376, 0.2593, 0.2136, 0.2766, 0.2487, 0.2634, 0.2967, 0.2681, 0.2300, 0.2171, 0.3035, 0.3079, 0.2085, 0.2015, 0.1985, 0.2428, 0.2329, 0.2016, 0.2537},
+      { 0.2723, 0.2449, 0.2848, 0.2274, 0.2720, 0.2471, 0.2576, 0.2681, 0.2604, 0.2023, 0.2326, 0.2735, 0.3039, 0.2088, 0.2090, 0.2037, 0.2330, 0.1938, 0.2065, 0.2308},
+      { 0.2509, 0.1896, 0.2228, 0.1550, 0.2269, 0.2086, 0.1917, 0.2300, 0.2023, 0.1875, 0.1856, 0.2403, 0.2430, 0.1552, 0.1545, 0.1642, 0.1972, 0.1450, 0.1841, 0.2137},
+      { 0.2430, 0.1804, 0.2421, 0.1521, 0.2392, 0.1957, 0.1985, 0.2171, 0.2326, 0.1856, 0.1981, 0.2742, 0.2858, 0.1633, 0.1621, 0.1556, 0.1851, 0.1459, 0.1678, 0.2073},
+      { 0.4075, 0.2807, 0.3018, 0.2423, 0.3587, 0.2797, 0.2912, 0.3035, 0.2735, 0.2403, 0.2742, 0.3912, 0.4179, 0.3401, 0.3501, 0.3382, 0.3596, 0.3586, 0.2616, 0.3828},
+      { 0.3827, 0.2909, 0.3059, 0.2294, 0.3703, 0.2856, 0.3008, 0.3079, 0.3039, 0.2430, 0.2858, 0.4179, 0.4100, 0.3658, 0.3799, 0.3636, 0.4083, 0.3865, 0.2685, 0.4066},
+      { 0.2804, 0.1965, 0.2202, 0.1534, 0.2798, 0.2111, 0.2564, 0.2085, 0.2088, 0.1552, 0.1633, 0.3401, 0.3658, 0.3423, 0.3427, 0.3157, 0.3141, 0.2919, 0.2126, 0.3241},
+      { 0.2917, 0.1971, 0.2248, 0.1493, 0.2718, 0.2060, 0.2597, 0.2015, 0.2090, 0.1545, 0.1621, 0.3501, 0.3799, 0.3427, 0.3615, 0.3357, 0.3247, 0.3181, 0.2158, 0.3299},
+      { 0.2885, 0.1879, 0.2098, 0.1364, 0.2650, 0.1994, 0.2404, 0.1985, 0.2037, 0.1642, 0.1556, 0.3382, 0.3636, 0.3157, 0.3357, 0.3211, 0.3068, 0.3062, 0.2067, 0.3084},
+      { 0.3339, 0.2021, 0.2211, 0.1415, 0.2957, 0.2318, 0.2532, 0.2428, 0.2330, 0.1972, 0.1851, 0.3596, 0.4083, 0.3141, 0.3247, 0.3068, 0.3685, 0.3253, 0.2293, 0.3614},
+      { 0.3806, 0.1943, 0.1937, 0.1199, 0.2816, 0.2157, 0.2259, 0.2329, 0.1938, 0.1450, 0.1459, 0.3586, 0.3865, 0.2919, 0.3181, 0.3062, 0.3253, 0.3764, 0.1946, 0.3414},
+      { 0.2522, 0.1986, 0.2223, 0.1641, 0.2319, 0.2121, 0.2161, 0.2016, 0.2065, 0.1841, 0.1678, 0.2616, 0.2685, 0.2126, 0.2158, 0.2067, 0.2293, 0.1946, 0.2205, 0.2298},
+      { 0.3233, 0.2109, 0.2371, 0.1478, 0.3111, 0.2503, 0.2650, 0.2537, 0.2308, 0.2137, 0.2073, 0.3828, 0.4066, 0.3241, 0.3299, 0.3084, 0.3614, 0.3414, 0.2298, 0.4943}},
+    {
+      { 0.1779, 0.1721, 0.3947, 0.3421, 0.3073, 0.2539, 0.2471, 0.2577, 0.2740, 0.2168, 0.2008, 0.3116, 0.2859, 0.1940, 0.2026, 0.1965, 0.2211, 0.1943, 0.2068, 0.2383},
+      { 0.1721, 0.1979, 0.3979, 0.3468, 0.3600, 0.2675, 0.2790, 0.2685, 0.2898, 0.2228, 0.2143, 0.4031, 0.3948, 0.2685, 0.2767, 0.2836, 0.3229, 0.3918, 0.2518, 0.2889},
+      { 0.3947, 0.3979, 0.2707, 0.2144, 0.2793, 0.2676, 0.2834, 0.2789, 0.3029, 0.2360, 0.2501, 0.3319, 0.3464, 0.2579, 0.2644, 0.2551, 0.2417, 0.2315, 0.2491, 0.2512},
+      { 0.3421, 0.3468, 0.2144, 0.1862, 0.2217, 0.2197, 0.2246, 0.2302, 0.2568, 0.1691, 0.1709, 0.2850, 0.2682, 0.1966, 0.1947, 0.1817, 0.1802, 0.1634, 0.1918, 0.1751},
+      { 0.3073, 0.3600, 0.2793, 0.2217, 0.3350, 0.2933, 0.3100, 0.2779, 0.2881, 0.2356, 0.2480, 0.3824, 0.3851, 0.3050, 0.3053, 0.2898, 0.3226, 0.2765, 0.2583, 0.3163},
+      { 0.2539, 0.2675, 0.2676, 0.2197, 0.2933, 0.2399, 0.2484, 0.2569, 0.2621, 0.2067, 0.2043, 0.2762, 0.2878, 0.2214, 0.2127, 0.2033, 0.2309, 0.1985, 0.2110, 0.2389},
+      { 0.2471, 0.2790, 0.2834, 0.2246, 0.3100, 0.2484, 0.2901, 0.2685, 0.2846, 0.2082, 0.2109, 0.3062, 0.3179, 0.2873, 0.2866, 0.2555, 0.2693, 0.2353, 0.2206, 0.2643},
+      { 0.2577, 0.2685, 0.2789, 0.2302, 0.2779, 0.2569, 0.2685, 0.2864, 0.2893, 0.2235, 0.2314, 0.2770, 0.3041, 0.2117, 0.1993, 0.1853, 0.2284, 0.1771, 0.2022, 0.2246},
+      { 0.2740, 0.2898, 0.3029, 0.2568, 0.2881, 0.2621, 0.2846, 0.2893, 0.2888, 0.2205, 0.2405, 0.3273, 0.3489, 0.2461, 0.2465, 0.2481, 0.2647, 0.2640, 0.2357, 0.2554},
+      { 0.2168, 0.2228, 0.2360, 0.1691, 0.2356, 0.2067, 0.2082, 0.2235, 0.2205, 0.1958, 0.1884, 0.2510, 0.2585, 0.1833, 0.1829, 0.1914, 0.2162, 0.1527, 0.1892, 0.2151},
+      { 0.2008, 0.2143, 0.2501, 0.1709, 0.2480, 0.2043, 0.2109, 0.2314, 0.2405, 0.1884, 0.1995, 0.2807, 0.3022, 0.1757, 0.1634, 0.1618, 0.1939, 0.1539, 0.1871, 0.2087},
+      { 0.3116, 0.4031, 0.3319, 0.2850, 0.3824, 0.2762, 0.3062, 0.2770, 0.3273, 0.2510, 0.2807, 0.4021, 0.4405, 0.3724, 0.3855, 0.3754, 0.3966, 0.3843, 0.2673, 0.3860},
+      { 0.2859, 0.3948, 0.3464, 0.2682, 0.3851, 0.2878, 0.3179, 0.3041, 0.3489, 0.2585, 0.3022, 0.4405, 0.4493, 0.3806, 0.4041, 0.3956, 0.4397, 0.4096, 0.2787, 0.4001},
+      { 0.1940, 0.2685, 0.2579, 0.1966, 0.3050, 0.2214, 0.2873, 0.2117, 0.2461, 0.1833, 0.1757, 0.3724, 0.3806, 0.3727, 0.3725, 0.3493, 0.3429, 0.3248, 0.2392, 0.3481},
+      { 0.2026, 0.2767, 0.2644, 0.1947, 0.3053, 0.2127, 0.2866, 0.1993, 0.2465, 0.1829, 0.1634, 0.3855, 0.4041, 0.3725, 0.3987, 0.3690, 0.3638, 0.3468, 0.2411, 0.3617},
+      { 0.1965, 0.2836, 0.2551, 0.1817, 0.2898, 0.2033, 0.2555, 0.1853, 0.2481, 0.1914, 0.1618, 0.3754, 0.3956, 0.3493, 0.3690, 0.3645, 0.3453, 0.3381, 0.2296, 0.3406},
+      { 0.2211, 0.3229, 0.2417, 0.1802, 0.3226, 0.2309, 0.2693, 0.2284, 0.2647, 0.2162, 0.1939, 0.3966, 0.4397, 0.3429, 0.3638, 0.3453, 0.3944, 0.3657, 0.2394, 0.3597},
+      { 0.1943, 0.3918, 0.2315, 0.1634, 0.2765, 0.1985, 0.2353, 0.1771, 0.2640, 0.1527, 0.1539, 0.3843, 0.4096, 0.3248, 0.3468, 0.3381, 0.3657, 0.3876, 0.2087, 0.3657},
+      { 0.2068, 0.2518, 0.2491, 0.1918, 0.2583, 0.2110, 0.2206, 0.2022, 0.2357, 0.1892, 0.1871, 0.2673, 0.2787, 0.2392, 0.2411, 0.2296, 0.2394, 0.2087, 0.2438, 0.2278},
+      { 0.2383, 0.2889, 0.2512, 0.1751, 0.3163, 0.2389, 0.2643, 0.2246, 0.2554, 0.2151, 0.2087, 0.3860, 0.4001, 0.3481, 0.3617, 0.3406, 0.3597, 0.3657, 0.2278, 0.5060}},
+    {
+      { 0.2553, 0.2425, 0.4432, 0.4183, 0.3672, 0.3164, 0.2991, 0.3397, 0.3343, 0.2849, 0.2804, 0.3352, 0.3207, 0.2394, 0.2282, 0.2237, 0.2556, 0.1937, 0.2655, 0.2658},
+      { 0.2425, 0.2559, 0.4460, 0.4291, 0.3573, 0.3020, 0.3089, 0.3118, 0.3280, 0.2477, 0.2686, 0.3398, 0.3509, 0.2701, 0.2630, 0.2555, 0.2722, 0.2315, 0.2718, 0.2624},
+      { 0.4432, 0.4460, 0.3735, 0.3136, 0.4491, 0.3890, 0.3915, 0.4138, 0.4084, 0.3541, 0.3668, 0.5191, 0.5255, 0.3754, 0.3917, 0.3955, 0.4428, 0.5173, 0.3563, 0.4194},
+      { 0.4183, 0.4291, 0.3136, 0.2839, 0.3476, 0.3276, 0.3335, 0.3484, 0.3509, 0.2854, 0.2886, 0.4200, 0.4078, 0.3125, 0.3179, 0.3163, 0.3224, 0.3435, 0.3035, 0.3245},
+      { 0.3672, 0.3573, 0.4491, 0.3476, 0.4304, 0.3827, 0.3875, 0.3598, 0.3594, 0.3236, 0.3447, 0.4607, 0.4590, 0.3798, 0.3700, 0.3646, 0.3898, 0.3821, 0.3398, 0.3932},
+      { 0.3164, 0.3020, 0.3890, 0.3276, 0.3827, 0.3372, 0.3370, 0.3504, 0.3429, 0.3121, 0.3131, 0.3545, 0.3751, 0.3107, 0.3052, 0.2969, 0.3283, 0.2960, 0.3048, 0.3309},
+      { 0.2991, 0.3089, 0.3915, 0.3335, 0.3875, 0.3370, 0.3679, 0.3564, 0.3646, 0.3015, 0.3116, 0.3860, 0.3991, 0.3694, 0.3653, 0.3368, 0.3512, 0.3240, 0.3189, 0.3552},
+      { 0.3397, 0.3118, 0.4138, 0.3484, 0.3598, 0.3504, 0.3564, 0.4007, 0.3671, 0.3225, 0.3281, 0.3743, 0.3874, 0.3127, 0.3022, 0.2848, 0.3289, 0.2952, 0.3124, 0.3308},
+      { 0.3343, 0.3280, 0.4084, 0.3509, 0.3594, 0.3429, 0.3646, 0.3671, 0.3729, 0.3190, 0.3264, 0.3901, 0.4184, 0.3242, 0.3226, 0.3224, 0.3488, 0.3324, 0.3168, 0.3385},
+      { 0.2849, 0.2477, 0.3541, 0.2854, 0.3236, 0.3121, 0.3015, 0.3225, 0.3190, 0.3164, 0.3012, 0.3270, 0.3533, 0.2698, 0.2669, 0.2773, 0.3162, 0.2512, 0.2866, 0.3031},
+      { 0.2804, 0.2686, 0.3668, 0.2886, 0.3447, 0.3131, 0.3116, 0.3281, 0.3264, 0.3012, 0.3011, 0.3810, 0.4160, 0.2837, 0.2809, 0.2840, 0.3172, 0.2820, 0.3063, 0.3214},
+      { 0.3352, 0.3398, 0.5191, 0.4200, 0.4607, 0.3545, 0.3860, 0.3743, 0.3901, 0.3270, 0.3810, 0.4597, 0.4973, 0.4349, 0.4496, 0.4438, 0.4690, 0.4451, 0.3539, 0.4578},
+      { 0.3207, 0.3509, 0.5255, 0.4078, 0.4590, 0.3751, 0.3991, 0.3874, 0.4184, 0.3533, 0.4160, 0.4973, 0.5228, 0.4462, 0.4655, 0.4519, 0.5182, 0.4783, 0.3782, 0.4933},
+      { 0.2394, 0.2701, 0.3754, 0.3125, 0.3798, 0.3107, 0.3694, 0.3127, 0.3242, 0.2698, 0.2837, 0.4349, 0.4462, 0.4398, 0.4371, 0.4237, 0.4154, 0.3968, 0.3434, 0.4238},
+      { 0.2282, 0.2630, 0.3917, 0.3179, 0.3700, 0.3052, 0.3653, 0.3022, 0.3226, 0.2669, 0.2809, 0.4496, 0.4655, 0.4371, 0.4564, 0.4409, 0.4327, 0.4168, 0.3477, 0.4313},
+      { 0.2237, 0.2555, 0.3955, 0.3163, 0.3646, 0.2969, 0.3368, 0.2848, 0.3224, 0.2773, 0.2840, 0.4438, 0.4519, 0.4237, 0.4409, 0.4350, 0.4251, 0.4088, 0.3407, 0.4179},
+      { 0.2556, 0.2722, 0.4428, 0.3224, 0.3898, 0.3283, 0.3512, 0.3289, 0.3488, 0.3162, 0.3172, 0.4690, 0.5182, 0.4154, 0.4327, 0.4251, 0.4628, 0.4537, 0.3434, 0.4432},
+      { 0.1937, 0.2315, 0.5173, 0.3435, 0.3821, 0.2960, 0.3240, 0.2952, 0.3324, 0.2512, 0.2820, 0.4451, 0.4783, 0.3968, 0.4168, 0.4088, 0.4537, 0.4457, 0.3055, 0.4348},
+      { 0.2655, 0.2718, 0.3563, 0.3035, 0.3398, 0.3048, 0.3189, 0.3124, 0.3168, 0.2866, 0.3063, 0.3539, 0.3782, 0.3434, 0.3477, 0.3407, 0.3434, 0.3055, 0.3381, 0.3400},
+      { 0.2658, 0.2624, 0.4194, 0.3245, 0.3932, 0.3309, 0.3552, 0.3308, 0.3385, 0.3031, 0.3214, 0.4578, 0.4933, 0.4238, 0.4313, 0.4179, 0.4432, 0.4348, 0.3400, 0.5407}},
+    {
+      { 0.1574, 0.1673, 0.4050, 0.3355, 0.2896, 0.2293, 0.2195, 0.2376, 0.2605, 0.1863, 0.1977, 0.2653, 0.2437, 0.1628, 0.1516, 0.1470, 0.1591, 0.1199, 0.1905, 0.1867},
+      { 0.1673, 0.1892, 0.4217, 0.3523, 0.2872, 0.2264, 0.2315, 0.2317, 0.2681, 0.1732, 0.1994, 0.2715, 0.2856, 0.2037, 0.1984, 0.1904, 0.1913, 0.1634, 0.2122, 0.1923},
+      { 0.4050, 0.4217, 0.3055, 0.2534, 0.3374, 0.3090, 0.3147, 0.3190, 0.3414, 0.2803, 0.2873, 0.3973, 0.4161, 0.3146, 0.3252, 0.3239, 0.3215, 0.3435, 0.3035, 0.3260},
+      { 0.3355, 0.3523, 0.2534, 0.2205, 0.3145, 0.2917, 0.3040, 0.2888, 0.2989, 0.2384, 0.2246, 0.4308, 0.3845, 0.3040, 0.3188, 0.3163, 0.3535, 0.3938, 0.2756, 0.3194},
+      { 0.2896, 0.2872, 0.3374, 0.3145, 0.3565, 0.3077, 0.3171, 0.2868, 0.2952, 0.2436, 0.2711, 0.3963, 0.4007, 0.3203, 0.3111, 0.3120, 0.3319, 0.3123, 0.2752, 0.3181},
+      { 0.2293, 0.2264, 0.3090, 0.2917, 0.3077, 0.2460, 0.2555, 0.2629, 0.2712, 0.2107, 0.2229, 0.2826, 0.3086, 0.2476, 0.2426, 0.2287, 0.2547, 0.2217, 0.2257, 0.2651},
+      { 0.2195, 0.2315, 0.3147, 0.3040, 0.3171, 0.2555, 0.2957, 0.2845, 0.2857, 0.2121, 0.2345, 0.3196, 0.3287, 0.3098, 0.3039, 0.2813, 0.2783, 0.2635, 0.2506, 0.3064},
+      { 0.2376, 0.2317, 0.3190, 0.2888, 0.2868, 0.2629, 0.2845, 0.3058, 0.2896, 0.2430, 0.2319, 0.2952, 0.3103, 0.2405, 0.2347, 0.2124, 0.2401, 0.2081, 0.2345, 0.2547},
+      { 0.2605, 0.2681, 0.3414, 0.2989, 0.2952, 0.2712, 0.2857, 0.2896, 0.3046, 0.2357, 0.2493, 0.3219, 0.3608, 0.2607, 0.2622, 0.2646, 0.2844, 0.2614, 0.2504, 0.2773},
+      { 0.1863, 0.1732, 0.2803, 0.2384, 0.2436, 0.2107, 0.2121, 0.2430, 0.2357, 0.1924, 0.2136, 0.2549, 0.2820, 0.2036, 0.2016, 0.2138, 0.2416, 0.1723, 0.2119, 0.2385},
+      { 0.1977, 0.1994, 0.2873, 0.2246, 0.2711, 0.2229, 0.2345, 0.2319, 0.2493, 0.2136, 0.2229, 0.2976, 0.3326, 0.2186, 0.2144, 0.2086, 0.2340, 0.1987, 0.2281, 0.2605},
+      { 0.2653, 0.2715, 0.3973, 0.4308, 0.3963, 0.2826, 0.3196, 0.2952, 0.3219, 0.2549, 0.2976, 0.4224, 0.4532, 0.3956, 0.4096, 0.4056, 0.4172, 0.4051, 0.2874, 0.3918},
+      { 0.2437, 0.2856, 0.4161, 0.3845, 0.4007, 0.3086, 0.3287, 0.3103, 0.3608, 0.2820, 0.3326, 0.4532, 0.4735, 0.4054, 0.4294, 0.4166, 0.4511, 0.4313, 0.3153, 0.4354},
+      { 0.1628, 0.2037, 0.3146, 0.3040, 0.3203, 0.2476, 0.3098, 0.2405, 0.2607, 0.2036, 0.2186, 0.3956, 0.4054, 0.4055, 0.4073, 0.3822, 0.3708, 0.3490, 0.2787, 0.3805},
+      { 0.1516, 0.1984, 0.3252, 0.3188, 0.3111, 0.2426, 0.3039, 0.2347, 0.2622, 0.2016, 0.2144, 0.4096, 0.4294, 0.4073, 0.4293, 0.4055, 0.3880, 0.3735, 0.2834, 0.3932},
+      { 0.1470, 0.1904, 0.3239, 0.3163, 0.3120, 0.2287, 0.2813, 0.2124, 0.2646, 0.2138, 0.2086, 0.4056, 0.4166, 0.3822, 0.4055, 0.3969, 0.3719, 0.3682, 0.2749, 0.3754},
+      { 0.1591, 0.1913, 0.3215, 0.3535, 0.3319, 0.2547, 0.2783, 0.2401, 0.2844, 0.2416, 0.2340, 0.4172, 0.4511, 0.3708, 0.3880, 0.3719, 0.4016, 0.4001, 0.2699, 0.3799},
+      { 0.1199, 0.1634, 0.3435, 0.3938, 0.3123, 0.2217, 0.2635, 0.2081, 0.2614, 0.1723, 0.1987, 0.4051, 0.4313, 0.3490, 0.3735, 0.3682, 0.4001, 0.4132, 0.2264, 0.3789},
+      { 0.1905, 0.2122, 0.3035, 0.2756, 0.2752, 0.2257, 0.2506, 0.2345, 0.2504, 0.2119, 0.2281, 0.2874, 0.3153, 0.2787, 0.2834, 0.2749, 0.2699, 0.2264, 0.2787, 0.2795},
+      { 0.1867, 0.1923, 0.3260, 0.3194, 0.3181, 0.2651, 0.3064, 0.2547, 0.2773, 0.2385, 0.2605, 0.3918, 0.4354, 0.3805, 0.3932, 0.3754, 0.3799, 0.3789, 0.2795, 0.5087}},
+    {
+      { 0.2908, 0.2692, 0.4881, 0.4344, 0.3611, 0.3461, 0.3417, 0.3620, 0.3535, 0.3132, 0.3235, 0.3998, 0.3673, 0.2888, 0.2924, 0.2747, 0.3207, 0.2816, 0.2937, 0.3302},
+      { 0.2692, 0.2642, 0.4935, 0.4342, 0.3533, 0.3447, 0.3444, 0.3312, 0.3551, 0.3025, 0.3138, 0.3791, 0.4120, 0.3158, 0.3118, 0.2924, 0.3249, 0.2765, 0.3022, 0.3166},
+      { 0.4881, 0.4935, 0.3676, 0.3075, 0.3636, 0.3964, 0.3903, 0.3946, 0.3998, 0.3585, 0.3565, 0.4544, 0.4733, 0.3734, 0.3836, 0.3699, 0.3845, 0.3821, 0.3591, 0.3895},
+      { 0.4344, 0.4342, 0.3075, 0.2840, 0.2756, 0.3307, 0.3397, 0.3416, 0.3454, 0.2974, 0.2773, 0.4055, 0.3874, 0.3274, 0.3298, 0.3129, 0.3317, 0.3123, 0.3074, 0.3444},
+      { 0.3611, 0.3533, 0.3636, 0.2756, 0.5272, 0.4184, 0.4152, 0.4123, 0.3860, 0.3605, 0.3936, 0.5436, 0.5567, 0.3894, 0.4064, 0.4144, 0.5046, 0.5732, 0.3517, 0.4472},
+      { 0.3461, 0.3447, 0.3964, 0.3307, 0.4184, 0.3778, 0.3785, 0.4015, 0.3881, 0.3438, 0.3374, 0.4094, 0.4374, 0.3628, 0.3584, 0.3449, 0.3968, 0.3544, 0.3487, 0.3979},
+      { 0.3417, 0.3444, 0.3903, 0.3397, 0.4152, 0.3785, 0.4059, 0.4066, 0.4038, 0.3283, 0.3379, 0.4168, 0.4373, 0.4077, 0.4121, 0.3857, 0.4130, 0.3795, 0.3606, 0.4069},
+      { 0.3620, 0.3312, 0.3946, 0.3416, 0.4123, 0.4015, 0.4066, 0.5173, 0.4250, 0.3671, 0.3668, 0.4391, 0.4766, 0.3626, 0.3738, 0.3490, 0.4067, 0.4008, 0.3532, 0.3910},
+      { 0.3535, 0.3551, 0.3998, 0.3454, 0.3860, 0.3881, 0.4038, 0.4250, 0.4089, 0.3460, 0.3785, 0.4429, 0.4838, 0.3773, 0.3778, 0.3665, 0.4166, 0.4221, 0.3472, 0.3892},
+      { 0.3132, 0.3025, 0.3585, 0.2974, 0.3605, 0.3438, 0.3283, 0.3671, 0.3460, 0.3701, 0.3186, 0.3571, 0.3941, 0.3008, 0.3022, 0.3126, 0.3674, 0.2773, 0.3401, 0.3592},
+      { 0.3235, 0.3138, 0.3565, 0.2773, 0.3936, 0.3374, 0.3379, 0.3668, 0.3785, 0.3186, 0.3489, 0.4232, 0.4614, 0.3222, 0.3196, 0.3257, 0.3647, 0.3309, 0.3162, 0.3898},
+      { 0.3998, 0.3791, 0.4544, 0.4055, 0.5436, 0.4094, 0.4168, 0.4391, 0.4429, 0.3571, 0.4232, 0.5203, 0.5375, 0.4733, 0.4938, 0.4893, 0.5168, 0.5301, 0.4058, 0.4907},
+      { 0.3673, 0.4120, 0.4733, 0.3874, 0.5567, 0.4374, 0.4373, 0.4766, 0.4838, 0.3941, 0.4614, 0.5375, 0.5860, 0.4935, 0.5211, 0.5061, 0.5615, 0.5358, 0.4333, 0.5391},
+      { 0.2888, 0.3158, 0.3734, 0.3274, 0.3894, 0.3628, 0.4077, 0.3626, 0.3773, 0.3008, 0.3222, 0.4733, 0.4935, 0.5039, 0.5126, 0.4827, 0.4702, 0.4600, 0.4061, 0.4774},
+      { 0.2924, 0.3118, 0.3836, 0.3298, 0.4064, 0.3584, 0.4121, 0.3738, 0.3778, 0.3022, 0.3196, 0.4938, 0.5211, 0.5126, 0.5324, 0.5086, 0.4971, 0.4855, 0.4154, 0.4794},
+      { 0.2747, 0.2924, 0.3699, 0.3129, 0.4144, 0.3449, 0.3857, 0.3490, 0.3665, 0.3126, 0.3257, 0.4893, 0.5061, 0.4827, 0.5086, 0.4959, 0.4833, 0.4846, 0.4073, 0.4660},
+      { 0.3207, 0.3249, 0.3845, 0.3317, 0.5046, 0.3968, 0.4130, 0.4067, 0.4166, 0.3674, 0.3647, 0.5168, 0.5615, 0.4702, 0.4971, 0.4833, 0.5377, 0.5150, 0.4104, 0.4869},
+      { 0.2816, 0.2765, 0.3821, 0.3123, 0.5732, 0.3544, 0.3795, 0.4008, 0.4221, 0.2773, 0.3309, 0.5301, 0.5358, 0.4600, 0.4855, 0.4846, 0.5150, 0.5335, 0.3768, 0.4855},
+      { 0.2937, 0.3022, 0.3591, 0.3074, 0.3517, 0.3487, 0.3606, 0.3532, 0.3472, 0.3401, 0.3162, 0.4058, 0.4333, 0.4061, 0.4154, 0.4073, 0.4104, 0.3768, 0.3879, 0.4086},
+      { 0.3302, 0.3166, 0.3895, 0.3444, 0.4472, 0.3979, 0.4069, 0.3910, 0.3892, 0.3592, 0.3898, 0.4907, 0.5391, 0.4774, 0.4794, 0.4660, 0.4869, 0.4855, 0.4086, 0.5843}},
+    {
+      { 0.1851, 0.1666, 0.4049, 0.3419, 0.3254, 0.2548, 0.2593, 0.2818, 0.2771, 0.2463, 0.2230, 0.3202, 0.3073, 0.2159, 0.2138, 0.2060, 0.2407, 0.2157, 0.2206, 0.2531},
+      { 0.1666, 0.1829, 0.4186, 0.3574, 0.3159, 0.2277, 0.2545, 0.2623, 0.2790, 0.2155, 0.2089, 0.2969, 0.3158, 0.2339, 0.2288, 0.2096, 0.2356, 0.1985, 0.2138, 0.2390},
+      { 0.4049, 0.4186, 0.3071, 0.2383, 0.3301, 0.2946, 0.3189, 0.3258, 0.3385, 0.2891, 0.2880, 0.3848, 0.3946, 0.3066, 0.3138, 0.3011, 0.3150, 0.2960, 0.2874, 0.3212},
+      { 0.3419, 0.3574, 0.2383, 0.1935, 0.2583, 0.2275, 0.2541, 0.2588, 0.2759, 0.2159, 0.1974, 0.3213, 0.3150, 0.2493, 0.2429, 0.2290, 0.2328, 0.2217, 0.2298, 0.2478},
+      { 0.3254, 0.3159, 0.3301, 0.2583, 0.4081, 0.3712, 0.3773, 0.3357, 0.3335, 0.3290, 0.3063, 0.4375, 0.4514, 0.3600, 0.3596, 0.3385, 0.3877, 0.3544, 0.3247, 0.4086},
+      { 0.2548, 0.2277, 0.2946, 0.2275, 0.3712, 0.3074, 0.3155, 0.3315, 0.3043, 0.2895, 0.2711, 0.4105, 0.4216, 0.3113, 0.3121, 0.3042, 0.3601, 0.4230, 0.2916, 0.3583},
+      { 0.2593, 0.2545, 0.3189, 0.2541, 0.3773, 0.3155, 0.3514, 0.3481, 0.3244, 0.3090, 0.2816, 0.4057, 0.4171, 0.3818, 0.3859, 0.3620, 0.3892, 0.3896, 0.3282, 0.3847},
+      { 0.2818, 0.2623, 0.3258, 0.2588, 0.3357, 0.3315, 0.3481, 0.3843, 0.3371, 0.3104, 0.2676, 0.3656, 0.3953, 0.2906, 0.2909, 0.2749, 0.3303, 0.3039, 0.2899, 0.3334},
+      { 0.2771, 0.2790, 0.3385, 0.2759, 0.3335, 0.3043, 0.3244, 0.3371, 0.3277, 0.2965, 0.2852, 0.3490, 0.3782, 0.2978, 0.2938, 0.2797, 0.3172, 0.2824, 0.2894, 0.3101},
+      { 0.2463, 0.2155, 0.2891, 0.2159, 0.3290, 0.2895, 0.3090, 0.3104, 0.2965, 0.3037, 0.2613, 0.3670, 0.3685, 0.3040, 0.3046, 0.3003, 0.3564, 0.3175, 0.2933, 0.3518},
+      { 0.2230, 0.2089, 0.2880, 0.1974, 0.3063, 0.2711, 0.2816, 0.2676, 0.2852, 0.2613, 0.2694, 0.3607, 0.3959, 0.2626, 0.2630, 0.2538, 0.3096, 0.2722, 0.2605, 0.3045},
+      { 0.3202, 0.2969, 0.3848, 0.3213, 0.4375, 0.4105, 0.4057, 0.3656, 0.3490, 0.3670, 0.3607, 0.4550, 0.4974, 0.4493, 0.4585, 0.4374, 0.4799, 0.4509, 0.4152, 0.4848},
+      { 0.3073, 0.3158, 0.3946, 0.3150, 0.4514, 0.4216, 0.4171, 0.3953, 0.3782, 0.3685, 0.3959, 0.4974, 0.5415, 0.4621, 0.4783, 0.4593, 0.5124, 0.4795, 0.4214, 0.4894},
+      { 0.2159, 0.2339, 0.3066, 0.2493, 0.3600, 0.3113, 0.3818, 0.2906, 0.2978, 0.3040, 0.2626, 0.4493, 0.4621, 0.4798, 0.4863, 0.4594, 0.4585, 0.4421, 0.3777, 0.4518},
+      { 0.2138, 0.2288, 0.3138, 0.2429, 0.3596, 0.3121, 0.3859, 0.2909, 0.2938, 0.3046, 0.2630, 0.4585, 0.4783, 0.4863, 0.5037, 0.4813, 0.4760, 0.4560, 0.3897, 0.4635},
+      { 0.2060, 0.2096, 0.3011, 0.2290, 0.3385, 0.3042, 0.3620, 0.2749, 0.2797, 0.3003, 0.2538, 0.4374, 0.4593, 0.4594, 0.4813, 0.4698, 0.4570, 0.4369, 0.3802, 0.4388},
+      { 0.2407, 0.2356, 0.3150, 0.2328, 0.3877, 0.3601, 0.3892, 0.3303, 0.3172, 0.3564, 0.3096, 0.4799, 0.5124, 0.4585, 0.4760, 0.4570, 0.5183, 0.4666, 0.4059, 0.4981},
+      { 0.2157, 0.1985, 0.2960, 0.2217, 0.3544, 0.4230, 0.3896, 0.3039, 0.2824, 0.3175, 0.2722, 0.4509, 0.4795, 0.4421, 0.4560, 0.4369, 0.4666, 0.4758, 0.4126, 0.5030},
+      { 0.2206, 0.2138, 0.2874, 0.2298, 0.3247, 0.2916, 0.3282, 0.2899, 0.2894, 0.2933, 0.2605, 0.4152, 0.4214, 0.3777, 0.3897, 0.3802, 0.4059, 0.4126, 0.3432, 0.3919},
+      { 0.2531, 0.2390, 0.3212, 0.2478, 0.4086, 0.3583, 0.3847, 0.3334, 0.3101, 0.3518, 0.3045, 0.4848, 0.4894, 0.4518, 0.4635, 0.4388, 0.4981, 0.5030, 0.3919, 0.5793}},
+    {
+      { 0.1978, 0.1830, 0.4258, 0.3533, 0.3286, 0.2703, 0.2460, 0.2891, 0.2847, 0.2609, 0.2533, 0.3388, 0.3345, 0.2519, 0.2569, 0.2426, 0.2696, 0.2259, 0.2436, 0.2629},
+      { 0.1830, 0.2071, 0.4401, 0.3738, 0.3309, 0.2644, 0.2502, 0.2779, 0.2885, 0.2461, 0.2337, 0.3349, 0.3484, 0.2782, 0.2777, 0.2568, 0.2674, 0.2353, 0.2517, 0.2715},
+      { 0.4258, 0.4401, 0.3183, 0.2552, 0.3409, 0.3270, 0.3107, 0.3299, 0.3504, 0.3111, 0.3065, 0.3955, 0.4189, 0.3420, 0.3463, 0.3313, 0.3448, 0.3240, 0.3090, 0.3405},
+      { 0.3533, 0.3738, 0.2552, 0.2152, 0.2705, 0.2675, 0.2696, 0.2723, 0.2956, 0.2403, 0.2243, 0.3423, 0.3459, 0.2994, 0.2957, 0.2709, 0.2724, 0.2635, 0.2594, 0.2731},
+      { 0.3286, 0.3309, 0.3409, 0.2705, 0.4163, 0.3891, 0.3883, 0.3496, 0.3441, 0.3242, 0.3156, 0.4508, 0.4657, 0.3993, 0.3967, 0.3764, 0.4142, 0.3795, 0.3524, 0.4189},
+      { 0.2703, 0.2644, 0.3270, 0.2675, 0.3891, 0.3409, 0.3310, 0.3417, 0.3302, 0.3193, 0.2973, 0.4135, 0.4412, 0.3566, 0.3653, 0.3539, 0.3949, 0.3896, 0.3281, 0.3880},
+      { 0.2460, 0.2502, 0.3107, 0.2696, 0.3883, 0.3310, 0.3548, 0.3563, 0.3191, 0.2905, 0.2836, 0.4498, 0.4508, 0.3999, 0.4110, 0.3889, 0.4203, 0.4947, 0.3293, 0.4062},
+      { 0.2891, 0.2779, 0.3299, 0.2723, 0.3496, 0.3417, 0.3563, 0.3883, 0.3467, 0.3157, 0.3156, 0.3783, 0.4041, 0.3317, 0.3359, 0.3158, 0.3799, 0.3294, 0.3059, 0.3525},
+      { 0.2847, 0.2885, 0.3504, 0.2956, 0.3441, 0.3302, 0.3191, 0.3467, 0.3503, 0.3046, 0.3108, 0.3826, 0.4107, 0.3317, 0.3376, 0.3227, 0.3548, 0.3202, 0.3099, 0.3513},
+      { 0.2609, 0.2461, 0.3111, 0.2403, 0.3242, 0.3193, 0.2905, 0.3157, 0.3046, 0.3159, 0.2947, 0.3685, 0.3914, 0.3263, 0.3413, 0.3381, 0.3847, 0.3210, 0.3168, 0.3638},
+      { 0.2533, 0.2337, 0.3065, 0.2243, 0.3156, 0.2973, 0.2836, 0.3156, 0.3108, 0.2947, 0.3170, 0.3832, 0.4093, 0.3015, 0.3114, 0.3046, 0.3429, 0.3083, 0.2890, 0.3658},
+      { 0.3388, 0.3349, 0.3955, 0.3423, 0.4508, 0.4135, 0.4498, 0.3783, 0.3826, 0.3685, 0.3832, 0.4726, 0.4972, 0.4861, 0.4897, 0.4755, 0.4951, 0.4793, 0.4198, 0.4914},
+      { 0.3345, 0.3484, 0.4189, 0.3459, 0.4657, 0.4412, 0.4508, 0.4041, 0.4107, 0.3914, 0.4093, 0.4972, 0.5172, 0.4901, 0.5061, 0.4996, 0.5488, 0.5092, 0.4342, 0.5101},
+      { 0.2519, 0.2782, 0.3420, 0.2994, 0.3993, 0.3566, 0.3999, 0.3317, 0.3317, 0.3263, 0.3015, 0.4861, 0.4901, 0.5085, 0.5184, 0.4943, 0.4904, 0.5021, 0.4168, 0.4908},
+      { 0.2569, 0.2777, 0.3463, 0.2957, 0.3967, 0.3653, 0.4110, 0.3359, 0.3376, 0.3413, 0.3114, 0.4897, 0.5061, 0.5184, 0.5438, 0.5182, 0.5071, 0.5017, 0.4302, 0.4958},
+      { 0.2426, 0.2568, 0.3313, 0.2709, 0.3764, 0.3539, 0.3889, 0.3158, 0.3227, 0.3381, 0.3046, 0.4755, 0.4996, 0.4943, 0.5182, 0.5161, 0.4972, 0.4871, 0.4209, 0.4697},
+      { 0.2696, 0.2674, 0.3448, 0.2724, 0.4142, 0.3949, 0.4203, 0.3799, 0.3548, 0.3847, 0.3429, 0.4951, 0.5488, 0.4904, 0.5071, 0.4972, 0.5488, 0.5124, 0.4356, 0.5019},
+      { 0.2259, 0.2353, 0.3240, 0.2635, 0.3795, 0.3896, 0.4947, 0.3294, 0.3202, 0.3210, 0.3083, 0.4793, 0.5092, 0.5021, 0.5017, 0.4871, 0.5124, 0.5117, 0.4260, 0.5250},
+      { 0.2436, 0.2517, 0.3090, 0.2594, 0.3524, 0.3281, 0.3293, 0.3059, 0.3099, 0.3168, 0.2890, 0.4198, 0.4342, 0.4168, 0.4302, 0.4209, 0.4356, 0.4260, 0.3721, 0.4173},
+      { 0.2629, 0.2715, 0.3405, 0.2731, 0.4189, 0.3880, 0.4062, 0.3525, 0.3513, 0.3638, 0.3658, 0.4914, 0.5101, 0.4908, 0.4958, 0.4697, 0.5019, 0.5250, 0.4173, 0.5916}},
+    {
+      { 0.2111, 0.1842, 0.4194, 0.3617, 0.3451, 0.2793, 0.2706, 0.2908, 0.2842, 0.2480, 0.2421, 0.3289, 0.2971, 0.2111, 0.2032, 0.2112, 0.2481, 0.2329, 0.2239, 0.2516},
+      { 0.1842, 0.2023, 0.4308, 0.3687, 0.3197, 0.2601, 0.2595, 0.2532, 0.2887, 0.2137, 0.2326, 0.2926, 0.3200, 0.2128, 0.2110, 0.2090, 0.2267, 0.1771, 0.2267, 0.2305},
+      { 0.4194, 0.4308, 0.3273, 0.2558, 0.3548, 0.3233, 0.3299, 0.3257, 0.3512, 0.3009, 0.3133, 0.3732, 0.3863, 0.3032, 0.3152, 0.3063, 0.3164, 0.2952, 0.3050, 0.3243},
+      { 0.3617, 0.3687, 0.2558, 0.2180, 0.2788, 0.2576, 0.2747, 0.2798, 0.2817, 0.2261, 0.2269, 0.3214, 0.2973, 0.2327, 0.2386, 0.2290, 0.2352, 0.2081, 0.2307, 0.2455},
+      { 0.3451, 0.3197, 0.3548, 0.2788, 0.4392, 0.3813, 0.3850, 0.4233, 0.3570, 0.2890, 0.3223, 0.4632, 0.5011, 0.3553, 0.3447, 0.3474, 0.3733, 0.4008, 0.3179, 0.4045},
+      { 0.2793, 0.2601, 0.3233, 0.2576, 0.3813, 0.3125, 0.3135, 0.3556, 0.3182, 0.2774, 0.2854, 0.3586, 0.3674, 0.2778, 0.2829, 0.2784, 0.3172, 0.3039, 0.2823, 0.3354},
+      { 0.2706, 0.2595, 0.3299, 0.2747, 0.3850, 0.3135, 0.3424, 0.3651, 0.3238, 0.2655, 0.2950, 0.3631, 0.3730, 0.3355, 0.3350, 0.3262, 0.3576, 0.3294, 0.2968, 0.3413},
+      { 0.2908, 0.2532, 0.3257, 0.2798, 0.4233, 0.3556, 0.3651, 0.4272, 0.3428, 0.3292, 0.2735, 0.4665, 0.4591, 0.3242, 0.3413, 0.3385, 0.3835, 0.4818, 0.3085, 0.3649},
+      { 0.2842, 0.2887, 0.3512, 0.2817, 0.3570, 0.3182, 0.3238, 0.3428, 0.3301, 0.2836, 0.3025, 0.3634, 0.3864, 0.2812, 0.2786, 0.2767, 0.3140, 0.2898, 0.2828, 0.3079},
+      { 0.2480, 0.2137, 0.3009, 0.2261, 0.2890, 0.2774, 0.2655, 0.3292, 0.2836, 0.2756, 0.2618, 0.2891, 0.2960, 0.2168, 0.2172, 0.2402, 0.2775, 0.2150, 0.2613, 0.3041},
+      { 0.2421, 0.2326, 0.3133, 0.2269, 0.3223, 0.2854, 0.2950, 0.2735, 0.3025, 0.2618, 0.3023, 0.3466, 0.3651, 0.2509, 0.2548, 0.2463, 0.2906, 0.2475, 0.2592, 0.2986},
+      { 0.3289, 0.2926, 0.3732, 0.3214, 0.4632, 0.3586, 0.3631, 0.4665, 0.3634, 0.2891, 0.3466, 0.4606, 0.4821, 0.4188, 0.4308, 0.4200, 0.4568, 0.4382, 0.3549, 0.4534},
+      { 0.2971, 0.3200, 0.3863, 0.2973, 0.5011, 0.3674, 0.3730, 0.4591, 0.3864, 0.2960, 0.3651, 0.4821, 0.5019, 0.4412, 0.4574, 0.4367, 0.4940, 0.4599, 0.3604, 0.4756},
+      { 0.2111, 0.2128, 0.3032, 0.2327, 0.3553, 0.2778, 0.3355, 0.3242, 0.2812, 0.2168, 0.2509, 0.4188, 0.4412, 0.4226, 0.4308, 0.4060, 0.4116, 0.3980, 0.3152, 0.3985},
+      { 0.2032, 0.2110, 0.3152, 0.2386, 0.3447, 0.2829, 0.3350, 0.3413, 0.2786, 0.2172, 0.2548, 0.4308, 0.4574, 0.4308, 0.4600, 0.4318, 0.4220, 0.4230, 0.3315, 0.4111},
+      { 0.2112, 0.2090, 0.3063, 0.2290, 0.3474, 0.2784, 0.3262, 0.3385, 0.2767, 0.2402, 0.2463, 0.4200, 0.4367, 0.4060, 0.4318, 0.4246, 0.4113, 0.4071, 0.3174, 0.3943},
+      { 0.2481, 0.2267, 0.3164, 0.2352, 0.3733, 0.3172, 0.3576, 0.3835, 0.3140, 0.2775, 0.2906, 0.4568, 0.4940, 0.4116, 0.4220, 0.4113, 0.4796, 0.4400, 0.3441, 0.4278},
+      { 0.2329, 0.1771, 0.2952, 0.2081, 0.4008, 0.3039, 0.3294, 0.4818, 0.2898, 0.2150, 0.2475, 0.4382, 0.4599, 0.3980, 0.4230, 0.4071, 0.4400, 0.4390, 0.3008, 0.4686},
+      { 0.2239, 0.2267, 0.3050, 0.2307, 0.3179, 0.2823, 0.2968, 0.3085, 0.2828, 0.2613, 0.2592, 0.3549, 0.3604, 0.3152, 0.3315, 0.3174, 0.3441, 0.3008, 0.3065, 0.3257},
+      { 0.2516, 0.2305, 0.3243, 0.2455, 0.4045, 0.3354, 0.3413, 0.3649, 0.3079, 0.3041, 0.2986, 0.4534, 0.4756, 0.3985, 0.4111, 0.3943, 0.4278, 0.4686, 0.3257, 0.5267}},
+    {
+      { 0.2321, 0.2139, 0.4455, 0.3900, 0.3416, 0.3003, 0.2871, 0.3040, 0.2979, 0.2568, 0.2508, 0.3301, 0.2895, 0.2170, 0.2138, 0.2097, 0.2377, 0.1938, 0.2459, 0.2442},
+      { 0.2139, 0.2297, 0.4653, 0.4048, 0.3546, 0.2881, 0.2913, 0.2919, 0.3083, 0.2285, 0.2534, 0.3508, 0.3636, 0.2585, 0.2489, 0.2524, 0.2662, 0.2640, 0.2579, 0.2570},
+      { 0.4455, 0.4653, 0.3371, 0.2742, 0.3601, 0.3461, 0.3551, 0.3524, 0.3502, 0.3089, 0.3245, 0.4094, 0.4360, 0.3187, 0.3291, 0.3265, 0.3315, 0.3324, 0.3207, 0.3281},
+      { 0.3900, 0.4048, 0.2742, 0.2346, 0.2992, 0.2863, 0.2899, 0.2948, 0.2872, 0.2277, 0.2329, 0.3592, 0.3601, 0.2646, 0.2642, 0.2604, 0.2728, 0.2614, 0.2584, 0.2537},
+      { 0.3416, 0.3546, 0.3601, 0.2992, 0.4326, 0.3764, 0.3911, 0.3565, 0.4257, 0.3074, 0.3372, 0.4709, 0.4720, 0.3802, 0.3791, 0.3779, 0.4213, 0.4221, 0.3369, 0.3751},
+      { 0.3003, 0.2881, 0.3461, 0.2863, 0.3764, 0.3215, 0.3298, 0.3329, 0.3381, 0.2870, 0.2852, 0.3458, 0.3664, 0.2983, 0.2917, 0.2818, 0.3309, 0.2824, 0.2900, 0.3223},
+      { 0.2871, 0.2913, 0.3551, 0.2899, 0.3911, 0.3298, 0.3520, 0.3459, 0.3545, 0.2779, 0.2885, 0.3807, 0.4026, 0.3549, 0.3530, 0.3321, 0.3571, 0.3202, 0.3053, 0.3533},
+      { 0.3040, 0.2919, 0.3524, 0.2948, 0.3565, 0.3329, 0.3459, 0.3749, 0.3650, 0.2916, 0.2967, 0.3618, 0.3947, 0.2913, 0.2797, 0.2764, 0.3281, 0.2898, 0.2986, 0.3194},
+      { 0.2979, 0.3083, 0.3502, 0.2872, 0.4257, 0.3381, 0.3545, 0.3650, 0.3598, 0.2972, 0.3347, 0.4798, 0.4965, 0.3356, 0.3541, 0.3533, 0.3814, 0.5064, 0.3092, 0.3843},
+      { 0.2568, 0.2285, 0.3089, 0.2277, 0.3074, 0.2870, 0.2779, 0.2916, 0.2972, 0.2745, 0.2716, 0.3146, 0.3225, 0.2628, 0.2560, 0.2663, 0.3202, 0.2256, 0.2753, 0.2977},
+      { 0.2508, 0.2534, 0.3245, 0.2329, 0.3372, 0.2852, 0.2885, 0.2967, 0.3347, 0.2716, 0.2770, 0.3772, 0.3846, 0.2580, 0.2608, 0.2627, 0.3036, 0.2652, 0.2759, 0.2843},
+      { 0.3301, 0.3508, 0.4094, 0.3592, 0.4709, 0.3458, 0.3807, 0.3618, 0.4798, 0.3146, 0.3772, 0.4665, 0.5096, 0.4374, 0.4557, 0.4478, 0.4860, 0.4660, 0.3440, 0.4550},
+      { 0.2895, 0.3636, 0.4360, 0.3601, 0.4720, 0.3664, 0.4026, 0.3947, 0.4965, 0.3225, 0.3846, 0.5096, 0.5326, 0.4540, 0.4787, 0.4706, 0.5322, 0.4944, 0.3727, 0.4870},
+      { 0.2170, 0.2585, 0.3187, 0.2646, 0.3802, 0.2983, 0.3549, 0.2913, 0.3356, 0.2628, 0.2580, 0.4374, 0.4540, 0.4364, 0.4503, 0.4261, 0.4279, 0.4138, 0.3307, 0.4294},
+      { 0.2138, 0.2489, 0.3291, 0.2642, 0.3791, 0.2917, 0.3530, 0.2797, 0.3541, 0.2560, 0.2608, 0.4557, 0.4787, 0.4503, 0.4716, 0.4521, 0.4492, 0.4373, 0.3401, 0.4414},
+      { 0.2097, 0.2524, 0.3265, 0.2604, 0.3779, 0.2818, 0.3321, 0.2764, 0.3533, 0.2663, 0.2627, 0.4478, 0.4706, 0.4261, 0.4521, 0.4479, 0.4345, 0.4312, 0.3260, 0.4196},
+      { 0.2377, 0.2662, 0.3315, 0.2728, 0.4213, 0.3309, 0.3571, 0.3281, 0.3814, 0.3202, 0.3036, 0.4860, 0.5322, 0.4279, 0.4492, 0.4345, 0.4798, 0.4972, 0.3549, 0.4545},
+      { 0.1938, 0.2640, 0.3324, 0.2614, 0.4221, 0.2824, 0.3202, 0.2898, 0.5064, 0.2256, 0.2652, 0.4660, 0.4944, 0.4138, 0.4373, 0.4312, 0.4972, 0.4683, 0.2980, 0.4479},
+      { 0.2459, 0.2579, 0.3207, 0.2584, 0.3369, 0.2900, 0.3053, 0.2986, 0.3092, 0.2753, 0.2759, 0.3440, 0.3727, 0.3307, 0.3401, 0.3260, 0.3549, 0.2980, 0.3281, 0.3239},
+      { 0.2442, 0.2570, 0.3281, 0.2537, 0.3751, 0.3223, 0.3533, 0.3194, 0.3843, 0.2977, 0.2843, 0.4550, 0.4870, 0.4294, 0.4414, 0.4196, 0.4545, 0.4479, 0.3239, 0.5682}},
+    {
+      { 0.1436, 0.1427, 0.3861, 0.3272, 0.2916, 0.2510, 0.2363, 0.2496, 0.2441, 0.1641, 0.2081, 0.2624, 0.2439, 0.1740, 0.1662, 0.1724, 0.2020, 0.1450, 0.1994, 0.2223},
+      { 0.1427, 0.1509, 0.3983, 0.3250, 0.2857, 0.2444, 0.2477, 0.2284, 0.2431, 0.1559, 0.2067, 0.2694, 0.2779, 0.2037, 0.1996, 0.1928, 0.2137, 0.1527, 0.2205, 0.2220},
+      { 0.3861, 0.3983, 0.2956, 0.2231, 0.3083, 0.3166, 0.3202, 0.3110, 0.3287, 0.2359, 0.2695, 0.3467, 0.3495, 0.2785, 0.2788, 0.2784, 0.3074, 0.2512, 0.2801, 0.3092},
+      { 0.3272, 0.3250, 0.2231, 0.1705, 0.2370, 0.2384, 0.2382, 0.2482, 0.2531, 0.1861, 0.1818, 0.2750, 0.2611, 0.2044, 0.2066, 0.2103, 0.2030, 0.1723, 0.2252, 0.2389},
+      { 0.2916, 0.2857, 0.3083, 0.2370, 0.3528, 0.3784, 0.3593, 0.2903, 0.2978, 0.2998, 0.2939, 0.3738, 0.3843, 0.3325, 0.3053, 0.3040, 0.3522, 0.2773, 0.3243, 0.3780},
+      { 0.2510, 0.2444, 0.3166, 0.2384, 0.3784, 0.3364, 0.3346, 0.3092, 0.3166, 0.2615, 0.2842, 0.3529, 0.3474, 0.3100, 0.3102, 0.3018, 0.3495, 0.3175, 0.3151, 0.3659},
+      { 0.2363, 0.2477, 0.3202, 0.2382, 0.3593, 0.3346, 0.3622, 0.3031, 0.3236, 0.2658, 0.2871, 0.3636, 0.3764, 0.3732, 0.3632, 0.3396, 0.3801, 0.3210, 0.3444, 0.3952},
+      { 0.2496, 0.2284, 0.3110, 0.2482, 0.2903, 0.3092, 0.3031, 0.3222, 0.3127, 0.2581, 0.2573, 0.2873, 0.3046, 0.2319, 0.2218, 0.2328, 0.2812, 0.2150, 0.2674, 0.3141},
+      { 0.2441, 0.2431, 0.3287, 0.2531, 0.2978, 0.3166, 0.3236, 0.3127, 0.2929, 0.2536, 0.2765, 0.3130, 0.3407, 0.2708, 0.2634, 0.2670, 0.3085, 0.2256, 0.2918, 0.3183},
+      { 0.1641, 0.1559, 0.2359, 0.1861, 0.2998, 0.2615, 0.2658, 0.2581, 0.2536, 0.2249, 0.2092, 0.3740, 0.3491, 0.2626, 0.2710, 0.2963, 0.3368, 0.3901, 0.2692, 0.3333},
+      { 0.2081, 0.2067, 0.2695, 0.1818, 0.2939, 0.2842, 0.2871, 0.2573, 0.2765, 0.2092, 0.2440, 0.3290, 0.3469, 0.2368, 0.2476, 0.2365, 0.2988, 0.2294, 0.2628, 0.3090},
+      { 0.2624, 0.2694, 0.3467, 0.2750, 0.3738, 0.3529, 0.3636, 0.2873, 0.3130, 0.3740, 0.3290, 0.4348, 0.4707, 0.4320, 0.4344, 0.4282, 0.4550, 0.4191, 0.4181, 0.4346},
+      { 0.2439, 0.2779, 0.3495, 0.2611, 0.3843, 0.3474, 0.3764, 0.3046, 0.3407, 0.3491, 0.3469, 0.4707, 0.5174, 0.4520, 0.4496, 0.4501, 0.4910, 0.4554, 0.4004, 0.4601},
+      { 0.1740, 0.2037, 0.2785, 0.2044, 0.3325, 0.3100, 0.3732, 0.2319, 0.2708, 0.2626, 0.2368, 0.4320, 0.4520, 0.5129, 0.5054, 0.4726, 0.4702, 0.4295, 0.4289, 0.4883},
+      { 0.1662, 0.1996, 0.2788, 0.2066, 0.3053, 0.3102, 0.3632, 0.2218, 0.2634, 0.2710, 0.2476, 0.4344, 0.4496, 0.5054, 0.5187, 0.4816, 0.4784, 0.4418, 0.4273, 0.4901},
+      { 0.1724, 0.1928, 0.2784, 0.2103, 0.3040, 0.3018, 0.3396, 0.2328, 0.2670, 0.2963, 0.2365, 0.4282, 0.4501, 0.4726, 0.4816, 0.4550, 0.4556, 0.4245, 0.4141, 0.4421},
+      { 0.2020, 0.2137, 0.3074, 0.2030, 0.3522, 0.3495, 0.3801, 0.2812, 0.3085, 0.3368, 0.2988, 0.4550, 0.4910, 0.4702, 0.4784, 0.4556, 0.5173, 0.4513, 0.4281, 0.5000},
+      { 0.1450, 0.1527, 0.2512, 0.1723, 0.2773, 0.3175, 0.3210, 0.2150, 0.2256, 0.3901, 0.2294, 0.4191, 0.4554, 0.4295, 0.4418, 0.4245, 0.4513, 0.4558, 0.4201, 0.4462},
+      { 0.1994, 0.2205, 0.2801, 0.2252, 0.3243, 0.3151, 0.3444, 0.2674, 0.2918, 0.2692, 0.2628, 0.4181, 0.4004, 0.4289, 0.4273, 0.4141, 0.4281, 0.4201, 0.3769, 0.4259},
+      { 0.2223, 0.2220, 0.3092, 0.2389, 0.3780, 0.3659, 0.3952, 0.3141, 0.3183, 0.3333, 0.3090, 0.4346, 0.4601, 0.4883, 0.4901, 0.4421, 0.5000, 0.4462, 0.4259, 0.6768}},
+    {
+      { 0.1973, 0.1836, 0.4190, 0.3624, 0.3252, 0.2734, 0.2624, 0.2872, 0.2916, 0.2471, 0.2465, 0.2916, 0.2623, 0.1939, 0.1904, 0.1881, 0.2102, 0.1459, 0.2150, 0.2306},
+      { 0.1836, 0.1836, 0.4053, 0.3454, 0.3000, 0.2665, 0.2596, 0.2737, 0.2812, 0.2329, 0.2575, 0.2784, 0.2839, 0.1995, 0.1985, 0.1853, 0.2106, 0.1539, 0.2143, 0.2372},
+      { 0.4190, 0.4053, 0.3228, 0.2566, 0.3410, 0.3249, 0.3323, 0.3496, 0.3417, 0.3150, 0.3196, 0.3868, 0.3964, 0.2987, 0.3028, 0.3022, 0.3064, 0.2820, 0.2992, 0.3064},
+      { 0.3624, 0.3454, 0.2566, 0.2085, 0.2710, 0.2586, 0.2605, 0.2832, 0.2793, 0.2246, 0.2388, 0.3121, 0.3155, 0.2318, 0.2279, 0.2152, 0.2045, 0.1987, 0.2321, 0.2380},
+      { 0.3252, 0.3000, 0.3410, 0.2710, 0.4268, 0.3553, 0.3645, 0.3415, 0.3372, 0.3102, 0.3810, 0.4183, 0.4559, 0.3475, 0.3385, 0.3445, 0.3734, 0.3309, 0.3247, 0.4026},
+      { 0.2734, 0.2665, 0.3249, 0.2586, 0.3553, 0.3238, 0.3182, 0.3292, 0.3276, 0.2807, 0.3117, 0.3374, 0.3590, 0.2819, 0.2814, 0.2795, 0.3169, 0.2722, 0.2841, 0.3188},
+      { 0.2624, 0.2596, 0.3323, 0.2605, 0.3645, 0.3182, 0.3323, 0.3366, 0.3349, 0.2843, 0.3230, 0.3711, 0.3819, 0.3271, 0.3412, 0.3193, 0.3515, 0.3083, 0.3109, 0.3541},
+      { 0.2872, 0.2737, 0.3496, 0.2832, 0.3415, 0.3292, 0.3366, 0.3677, 0.3390, 0.2942, 0.3253, 0.3355, 0.3518, 0.2741, 0.2634, 0.2612, 0.3034, 0.2475, 0.2851, 0.3327},
+      { 0.2916, 0.2812, 0.3417, 0.2793, 0.3372, 0.3276, 0.3349, 0.3390, 0.3565, 0.3114, 0.3184, 0.3448, 0.3643, 0.2866, 0.2834, 0.2762, 0.3024, 0.2652, 0.2902, 0.3116},
+      { 0.2471, 0.2329, 0.3150, 0.2246, 0.3102, 0.2807, 0.2843, 0.2942, 0.3114, 0.2763, 0.2838, 0.3110, 0.3236, 0.2533, 0.2491, 0.2578, 0.3145, 0.2294, 0.2688, 0.3103},
+      { 0.2465, 0.2575, 0.3196, 0.2388, 0.3810, 0.3117, 0.3230, 0.3253, 0.3184, 0.2838, 0.2938, 0.4855, 0.5042, 0.3167, 0.3309, 0.3387, 0.3882, 0.4550, 0.3038, 0.3751},
+      { 0.2916, 0.2784, 0.3868, 0.3121, 0.4183, 0.3374, 0.3711, 0.3355, 0.3448, 0.3110, 0.4855, 0.4507, 0.4679, 0.4260, 0.4496, 0.4438, 0.4527, 0.4356, 0.3757, 0.4366},
+      { 0.2623, 0.2839, 0.3964, 0.3155, 0.4559, 0.3590, 0.3819, 0.3518, 0.3643, 0.3236, 0.5042, 0.4679, 0.5364, 0.4331, 0.4568, 0.4656, 0.4744, 0.4558, 0.3907, 0.4857},
+      { 0.1939, 0.1995, 0.2987, 0.2318, 0.3475, 0.2819, 0.3271, 0.2741, 0.2866, 0.2533, 0.3167, 0.4260, 0.4331, 0.4295, 0.4447, 0.4318, 0.4176, 0.4149, 0.3327, 0.4340},
+      { 0.1904, 0.1985, 0.3028, 0.2279, 0.3385, 0.2814, 0.3412, 0.2634, 0.2834, 0.2491, 0.3309, 0.4496, 0.4568, 0.4447, 0.4608, 0.4545, 0.4410, 0.4385, 0.3453, 0.4273},
+      { 0.1881, 0.1853, 0.3022, 0.2152, 0.3445, 0.2795, 0.3193, 0.2612, 0.2762, 0.2578, 0.3387, 0.4438, 0.4656, 0.4318, 0.4545, 0.4459, 0.4310, 0.4264, 0.3371, 0.4163},
+      { 0.2102, 0.2106, 0.3064, 0.2045, 0.3734, 0.3169, 0.3515, 0.3034, 0.3024, 0.3145, 0.3882, 0.4527, 0.4744, 0.4176, 0.4410, 0.4310, 0.4863, 0.4460, 0.3531, 0.4485},
+      { 0.1459, 0.1539, 0.2820, 0.1987, 0.3309, 0.2722, 0.3083, 0.2475, 0.2652, 0.2294, 0.4550, 0.4356, 0.4558, 0.4149, 0.4385, 0.4264, 0.4460, 0.4550, 0.3368, 0.4470},
+      { 0.2150, 0.2143, 0.2992, 0.2321, 0.3247, 0.2841, 0.3109, 0.2851, 0.2902, 0.2688, 0.3038, 0.3757, 0.3907, 0.3327, 0.3453, 0.3371, 0.3531, 0.3368, 0.2964, 0.3402},
+      { 0.2306, 0.2372, 0.3064, 0.2380, 0.4026, 0.3188, 0.3541, 0.3327, 0.3116, 0.3103, 0.3751, 0.4366, 0.4857, 0.4340, 0.4273, 0.4163, 0.4485, 0.4470, 0.3402, 0.5710}},
+    {
+      { 0.3973, 0.3716, 0.5565, 0.4921, 0.4831, 0.4431, 0.4261, 0.4539, 0.4520, 0.4094, 0.3988, 0.4360, 0.4509, 0.3867, 0.3855, 0.3813, 0.4164, 0.3586, 0.3896, 0.4157},
+      { 0.3716, 0.3761, 0.5727, 0.5071, 0.4764, 0.4354, 0.4304, 0.4206, 0.4492, 0.3993, 0.4010, 0.4430, 0.4927, 0.4084, 0.4145, 0.4018, 0.4240, 0.3843, 0.3926, 0.4048},
+      { 0.5565, 0.5727, 0.4487, 0.3837, 0.4644, 0.4675, 0.4749, 0.4779, 0.4982, 0.4434, 0.4455, 0.4950, 0.5480, 0.4613, 0.4705, 0.4703, 0.4844, 0.4451, 0.4414, 0.4663},
+      { 0.4921, 0.5071, 0.3837, 0.3590, 0.4061, 0.4162, 0.4225, 0.4141, 0.4354, 0.3796, 0.3730, 0.4511, 0.4833, 0.4179, 0.4341, 0.4216, 0.4283, 0.4051, 0.3818, 0.4305},
+      { 0.4831, 0.4764, 0.4644, 0.4061, 0.5524, 0.4955, 0.4933, 0.4696, 0.4745, 0.4228, 0.4331, 0.5550, 0.5898, 0.4791, 0.4891, 0.4902, 0.5257, 0.5301, 0.4445, 0.4885},
+      { 0.4431, 0.4354, 0.4675, 0.4162, 0.4955, 0.4736, 0.4758, 0.4807, 0.4786, 0.4414, 0.4383, 0.4640, 0.5103, 0.4586, 0.4614, 0.4537, 0.4963, 0.4509, 0.4411, 0.4927},
+      { 0.4261, 0.4304, 0.4749, 0.4225, 0.4933, 0.4758, 0.4932, 0.4838, 0.4845, 0.4391, 0.4401, 0.4851, 0.5303, 0.5054, 0.5129, 0.5019, 0.5225, 0.4793, 0.4574, 0.4980},
+      { 0.4539, 0.4206, 0.4779, 0.4141, 0.4696, 0.4807, 0.4838, 0.5465, 0.4920, 0.4478, 0.4437, 0.4752, 0.5188, 0.4322, 0.4372, 0.4282, 0.4846, 0.4382, 0.4163, 0.4581},
+      { 0.4520, 0.4492, 0.4982, 0.4354, 0.4745, 0.4786, 0.4845, 0.4920, 0.4848, 0.4339, 0.4655, 0.4915, 0.5362, 0.4566, 0.4628, 0.4627, 0.4954, 0.4660, 0.4366, 0.4746},
+      { 0.4094, 0.3993, 0.4434, 0.3796, 0.4228, 0.4414, 0.4391, 0.4478, 0.4339, 0.4422, 0.4231, 0.4422, 0.4923, 0.4447, 0.4431, 0.4435, 0.4776, 0.4191, 0.4333, 0.4674},
+      { 0.3988, 0.4010, 0.4455, 0.3730, 0.4331, 0.4383, 0.4401, 0.4437, 0.4655, 0.4231, 0.4309, 0.4822, 0.5531, 0.4292, 0.4384, 0.4415, 0.4851, 0.4356, 0.4301, 0.4670},
+      { 0.4360, 0.4430, 0.4950, 0.4511, 0.5550, 0.4640, 0.4851, 0.4752, 0.4915, 0.4422, 0.4822, 0.6023, 0.6189, 0.5395, 0.5627, 0.5626, 0.5948, 0.6563, 0.4815, 0.5490},
+      { 0.4509, 0.4927, 0.5480, 0.4833, 0.5898, 0.5103, 0.5303, 0.5188, 0.5362, 0.4923, 0.5531, 0.6189, 0.6617, 0.5853, 0.5960, 0.5989, 0.6134, 0.6322, 0.5357, 0.5872},
+      { 0.3867, 0.4084, 0.4613, 0.4179, 0.4791, 0.4586, 0.5054, 0.4322, 0.4566, 0.4447, 0.4292, 0.5395, 0.5853, 0.6069, 0.6163, 0.5945, 0.5863, 0.5618, 0.5189, 0.5755},
+      { 0.3855, 0.4145, 0.4705, 0.4341, 0.4891, 0.4614, 0.5129, 0.4372, 0.4628, 0.4431, 0.4384, 0.5627, 0.5960, 0.6163, 0.6416, 0.6182, 0.6078, 0.5822, 0.5331, 0.5824},
+      { 0.3813, 0.4018, 0.4703, 0.4216, 0.4902, 0.4537, 0.5019, 0.4282, 0.4627, 0.4435, 0.4415, 0.5626, 0.5989, 0.5945, 0.6182, 0.6119, 0.6001, 0.5803, 0.5283, 0.5645},
+      { 0.4164, 0.4240, 0.4844, 0.4283, 0.5257, 0.4963, 0.5225, 0.4846, 0.4954, 0.4776, 0.4851, 0.5948, 0.6134, 0.5863, 0.6078, 0.6001, 0.6400, 0.6112, 0.5302, 0.5823},
+      { 0.3586, 0.3843, 0.4451, 0.4051, 0.5301, 0.4509, 0.4793, 0.4382, 0.4660, 0.4191, 0.4356, 0.6563, 0.6322, 0.5618, 0.5822, 0.5803, 0.6112, 0.6476, 0.4938, 0.5713},
+      { 0.3896, 0.3926, 0.4414, 0.3818, 0.4445, 0.4411, 0.4574, 0.4163, 0.4366, 0.4333, 0.4301, 0.4815, 0.5357, 0.5189, 0.5331, 0.5283, 0.5302, 0.4938, 0.4825, 0.5101},
+      { 0.4157, 0.4048, 0.4663, 0.4305, 0.4885, 0.4927, 0.4980, 0.4581, 0.4746, 0.4674, 0.4670, 0.5490, 0.5872, 0.5755, 0.5824, 0.5645, 0.5823, 0.5713, 0.5101, 0.6867}},
+    {
+      { 0.4262, 0.3992, 0.5896, 0.5323, 0.5143, 0.4787, 0.4470, 0.4895, 0.4902, 0.4494, 0.4261, 0.5038, 0.4468, 0.4171, 0.4153, 0.4191, 0.4447, 0.3865, 0.4235, 0.4467},
+      { 0.3992, 0.4204, 0.5998, 0.5333, 0.4950, 0.4602, 0.4556, 0.4456, 0.4672, 0.4299, 0.4194, 0.5017, 0.4725, 0.4399, 0.4559, 0.4449, 0.4613, 0.4096, 0.4377, 0.4545},
+      { 0.5896, 0.5998, 0.4710, 0.4140, 0.4905, 0.5208, 0.5018, 0.5093, 0.5080, 0.4801, 0.4839, 0.5570, 0.5164, 0.4855, 0.4934, 0.5036, 0.5051, 0.4783, 0.4906, 0.4966},
+      { 0.5323, 0.5333, 0.4140, 0.3996, 0.4376, 0.4500, 0.4474, 0.4391, 0.4472, 0.4247, 0.4137, 0.5073, 0.4588, 0.4507, 0.4707, 0.4516, 0.4700, 0.4313, 0.4232, 0.4279},
+      { 0.5143, 0.4950, 0.4905, 0.4376, 0.5384, 0.5175, 0.5150, 0.4985, 0.4898, 0.4770, 0.4555, 0.6003, 0.5760, 0.4965, 0.5190, 0.5102, 0.5556, 0.5358, 0.4682, 0.5348},
+      { 0.4787, 0.4602, 0.5208, 0.4500, 0.5175, 0.5176, 0.5032, 0.5157, 0.5097, 0.4866, 0.4650, 0.5193, 0.4998, 0.4856, 0.5028, 0.5002, 0.5446, 0.4795, 0.4727, 0.5239},
+      { 0.4470, 0.4556, 0.5018, 0.4474, 0.5150, 0.5032, 0.5060, 0.4918, 0.5041, 0.4706, 0.4849, 0.5357, 0.5178, 0.5361, 0.5566, 0.5410, 0.5456, 0.5092, 0.4879, 0.5225},
+      { 0.4895, 0.4456, 0.5093, 0.4391, 0.4985, 0.5157, 0.4918, 0.5544, 0.5243, 0.4776, 0.4728, 0.5248, 0.5009, 0.4540, 0.4630, 0.4497, 0.5234, 0.4599, 0.4541, 0.5086},
+      { 0.4902, 0.4672, 0.5080, 0.4472, 0.4898, 0.5097, 0.5041, 0.5243, 0.4994, 0.4908, 0.5044, 0.5399, 0.5278, 0.4903, 0.4998, 0.5106, 0.5363, 0.4944, 0.4775, 0.5279},
+      { 0.4494, 0.4299, 0.4801, 0.4247, 0.4770, 0.4866, 0.4706, 0.4776, 0.4908, 0.5026, 0.4712, 0.5025, 0.4822, 0.4741, 0.4792, 0.4815, 0.5259, 0.4554, 0.4835, 0.5037},
+      { 0.4261, 0.4194, 0.4839, 0.4137, 0.4555, 0.4650, 0.4849, 0.4728, 0.5044, 0.4712, 0.4351, 0.5094, 0.5213, 0.4699, 0.4942, 0.4834, 0.5227, 0.4558, 0.4647, 0.5160},
+      { 0.5038, 0.5017, 0.5570, 0.5073, 0.6003, 0.5193, 0.5357, 0.5248, 0.5399, 0.5025, 0.5094, 0.6068, 0.6616, 0.5873, 0.6090, 0.6011, 0.6293, 0.6322, 0.5350, 0.5977},
+      { 0.4468, 0.4725, 0.5164, 0.4588, 0.5760, 0.4998, 0.5178, 0.5009, 0.5278, 0.4822, 0.5213, 0.6616, 0.6738, 0.5757, 0.6170, 0.6276, 0.6562, 0.7091, 0.5276, 0.6237},
+      { 0.4171, 0.4399, 0.4855, 0.4507, 0.4965, 0.4856, 0.5361, 0.4540, 0.4903, 0.4741, 0.4699, 0.5873, 0.5757, 0.6340, 0.6515, 0.6380, 0.6263, 0.5941, 0.5531, 0.6103},
+      { 0.4153, 0.4559, 0.4934, 0.4707, 0.5190, 0.5028, 0.5566, 0.4630, 0.4998, 0.4792, 0.4942, 0.6090, 0.6170, 0.6515, 0.6854, 0.6684, 0.6607, 0.6173, 0.5752, 0.6173},
+      { 0.4191, 0.4449, 0.5036, 0.4516, 0.5102, 0.5002, 0.5410, 0.4497, 0.5106, 0.4815, 0.4834, 0.6011, 0.6276, 0.6380, 0.6684, 0.6638, 0.6508, 0.6209, 0.5674, 0.6074},
+      { 0.4447, 0.4613, 0.5051, 0.4700, 0.5556, 0.5446, 0.5456, 0.5234, 0.5363, 0.5259, 0.5227, 0.6293, 0.6562, 0.6263, 0.6607, 0.6508, 0.6830, 0.6531, 0.5732, 0.6291},
+      { 0.3865, 0.4096, 0.4783, 0.4313, 0.5358, 0.4795, 0.5092, 0.4599, 0.4944, 0.4554, 0.4558, 0.6322, 0.7091, 0.5941, 0.6173, 0.6209, 0.6531, 0.6774, 0.5320, 0.6094},
+      { 0.4235, 0.4377, 0.4906, 0.4232, 0.4682, 0.4727, 0.4879, 0.4541, 0.4775, 0.4835, 0.4647, 0.5350, 0.5276, 0.5531, 0.5752, 0.5674, 0.5732, 0.5320, 0.5163, 0.5363},
+      { 0.4467, 0.4545, 0.4966, 0.4279, 0.5348, 0.5239, 0.5225, 0.5086, 0.5279, 0.5037, 0.5160, 0.5977, 0.6237, 0.6103, 0.6173, 0.6074, 0.6291, 0.6094, 0.5363, 0.7255}},
+    {
+      { 0.2773, 0.2604, 0.4915, 0.4154, 0.4094, 0.3531, 0.3454, 0.3617, 0.3578, 0.3215, 0.3142, 0.4187, 0.4057, 0.2930, 0.3191, 0.3269, 0.3451, 0.2919, 0.3000, 0.3381},
+      { 0.2604, 0.2766, 0.5010, 0.4393, 0.4048, 0.3433, 0.3568, 0.3586, 0.3557, 0.3088, 0.3038, 0.4218, 0.4330, 0.3203, 0.3467, 0.3449, 0.3631, 0.3248, 0.3108, 0.3348},
+      { 0.4915, 0.5010, 0.3719, 0.3070, 0.4027, 0.3991, 0.3997, 0.3930, 0.4171, 0.3672, 0.3606, 0.4678, 0.4892, 0.3735, 0.4008, 0.4100, 0.4135, 0.3968, 0.3661, 0.4065},
+      { 0.4154, 0.4393, 0.3070, 0.2803, 0.3590, 0.3416, 0.3506, 0.3414, 0.3489, 0.3033, 0.2992, 0.4212, 0.4371, 0.3426, 0.3677, 0.3672, 0.3592, 0.3490, 0.3202, 0.3526},
+      { 0.4094, 0.4048, 0.4027, 0.3590, 0.4961, 0.4739, 0.4801, 0.4195, 0.4152, 0.3942, 0.3837, 0.5151, 0.5273, 0.4410, 0.4612, 0.4554, 0.4797, 0.4600, 0.4009, 0.4705},
+      { 0.3531, 0.3433, 0.3991, 0.3416, 0.4739, 0.4188, 0.4305, 0.4174, 0.4162, 0.3912, 0.3687, 0.4644, 0.5017, 0.4045, 0.4366, 0.4382, 0.4660, 0.4421, 0.3936, 0.4451},
+      { 0.3454, 0.3568, 0.3997, 0.3506, 0.4801, 0.4305, 0.4482, 0.4423, 0.4203, 0.3935, 0.3692, 0.4973, 0.5156, 0.4659, 0.4943, 0.4869, 0.4985, 0.5021, 0.4262, 0.4850},
+      { 0.3617, 0.3586, 0.3930, 0.3414, 0.4195, 0.4174, 0.4423, 0.4767, 0.4193, 0.3806, 0.3706, 0.4495, 0.4651, 0.3615, 0.3901, 0.3843, 0.4430, 0.3980, 0.3570, 0.4125},
+      { 0.3578, 0.3557, 0.4171, 0.3489, 0.4152, 0.4162, 0.4203, 0.4193, 0.4124, 0.3684, 0.3691, 0.4604, 0.5027, 0.3746, 0.4011, 0.4116, 0.4450, 0.4138, 0.3703, 0.4162},
+      { 0.3215, 0.3088, 0.3672, 0.3033, 0.3942, 0.3912, 0.3935, 0.3806, 0.3684, 0.4048, 0.3687, 0.4490, 0.4977, 0.3963, 0.4244, 0.4335, 0.4661, 0.4295, 0.3875, 0.4353},
+      { 0.3142, 0.3038, 0.3606, 0.2992, 0.3837, 0.3687, 0.3692, 0.3706, 0.3691, 0.3687, 0.3544, 0.4672, 0.5033, 0.3591, 0.3968, 0.4000, 0.4379, 0.4149, 0.3672, 0.4130},
+      { 0.4187, 0.4218, 0.4678, 0.4212, 0.5151, 0.4644, 0.4973, 0.4495, 0.4604, 0.4490, 0.4672, 0.5295, 0.5566, 0.5485, 0.5662, 0.5608, 0.5689, 0.5618, 0.4888, 0.5454},
+      { 0.4057, 0.4330, 0.4892, 0.4371, 0.5273, 0.5017, 0.5156, 0.4651, 0.5027, 0.4977, 0.5033, 0.5566, 0.6151, 0.5466, 0.5719, 0.5840, 0.6078, 0.5941, 0.5219, 0.5685},
+      { 0.2930, 0.3203, 0.3735, 0.3426, 0.4410, 0.4045, 0.4659, 0.3615, 0.3746, 0.3963, 0.3591, 0.5485, 0.5466, 0.5876, 0.6024, 0.5801, 0.5516, 0.6019, 0.4994, 0.5590},
+      { 0.3191, 0.3467, 0.4008, 0.3677, 0.4612, 0.4366, 0.4943, 0.3901, 0.4011, 0.4244, 0.3968, 0.5662, 0.5719, 0.6024, 0.6413, 0.6156, 0.5881, 0.6120, 0.5325, 0.5891},
+      { 0.3269, 0.3449, 0.4100, 0.3672, 0.4554, 0.4382, 0.4869, 0.3843, 0.4116, 0.4335, 0.4000, 0.5608, 0.5840, 0.5801, 0.6156, 0.6098, 0.5868, 0.5929, 0.5312, 0.5681},
+      { 0.3451, 0.3631, 0.4135, 0.3592, 0.4797, 0.4660, 0.4985, 0.4430, 0.4450, 0.4661, 0.4379, 0.5689, 0.6078, 0.5516, 0.5881, 0.5868, 0.6276, 0.6126, 0.5221, 0.5793},
+      { 0.2919, 0.3248, 0.3968, 0.3490, 0.4600, 0.4421, 0.5021, 0.3980, 0.4138, 0.4295, 0.4149, 0.5618, 0.5941, 0.6019, 0.6120, 0.5929, 0.6126, 0.6096, 0.5194, 0.5965},
+      { 0.3000, 0.3108, 0.3661, 0.3202, 0.4009, 0.3936, 0.4262, 0.3570, 0.3703, 0.3875, 0.3672, 0.4888, 0.5219, 0.4994, 0.5325, 0.5312, 0.5221, 0.5194, 0.4638, 0.4992},
+      { 0.3381, 0.3348, 0.4065, 0.3526, 0.4705, 0.4451, 0.4850, 0.4125, 0.4162, 0.4353, 0.4130, 0.5454, 0.5685, 0.5590, 0.5891, 0.5681, 0.5793, 0.5965, 0.4992, 0.6361}},
+    {
+      { 0.2990, 0.2763, 0.5077, 0.4302, 0.4120, 0.3700, 0.3594, 0.3719, 0.3852, 0.3440, 0.3329, 0.4320, 0.4281, 0.3143, 0.3118, 0.3379, 0.3552, 0.3181, 0.3258, 0.3458},
+      { 0.2763, 0.2932, 0.5165, 0.4579, 0.4289, 0.3663, 0.3714, 0.3639, 0.3796, 0.3297, 0.3212, 0.4393, 0.4527, 0.3409, 0.3405, 0.3586, 0.3729, 0.3468, 0.3332, 0.3550},
+      { 0.5077, 0.5165, 0.3828, 0.3243, 0.4258, 0.4074, 0.4135, 0.4134, 0.4396, 0.3857, 0.3830, 0.4917, 0.5081, 0.3944, 0.3927, 0.4237, 0.4236, 0.4168, 0.3843, 0.4197},
+      { 0.4302, 0.4579, 0.3243, 0.3078, 0.3684, 0.3549, 0.3658, 0.3649, 0.3698, 0.3218, 0.3041, 0.4419, 0.4621, 0.3637, 0.3689, 0.3877, 0.3839, 0.3735, 0.3390, 0.3736},
+      { 0.4120, 0.4289, 0.4258, 0.3684, 0.5123, 0.4797, 0.4887, 0.4401, 0.4482, 0.4012, 0.3933, 0.5378, 0.5373, 0.4543, 0.4579, 0.4689, 0.5008, 0.4855, 0.4209, 0.4712},
+      { 0.3700, 0.3663, 0.4074, 0.3549, 0.4797, 0.4323, 0.4376, 0.4365, 0.4314, 0.4053, 0.3841, 0.4698, 0.5157, 0.4307, 0.4343, 0.4489, 0.4780, 0.4560, 0.4121, 0.4524},
+      { 0.3594, 0.3714, 0.4135, 0.3658, 0.4887, 0.4376, 0.4603, 0.4615, 0.4415, 0.3970, 0.3928, 0.5046, 0.5262, 0.4884, 0.4920, 0.5013, 0.5111, 0.5017, 0.4385, 0.4916},
+      { 0.3719, 0.3639, 0.4134, 0.3649, 0.4401, 0.4365, 0.4615, 0.4899, 0.4317, 0.3990, 0.3800, 0.4686, 0.4889, 0.3864, 0.3804, 0.3964, 0.4470, 0.4230, 0.3811, 0.4223},
+      { 0.3852, 0.3796, 0.4396, 0.3698, 0.4482, 0.4314, 0.4415, 0.4317, 0.4356, 0.3953, 0.3977, 0.4760, 0.5288, 0.3992, 0.4032, 0.4282, 0.4572, 0.4373, 0.3915, 0.4383},
+      { 0.3440, 0.3297, 0.3857, 0.3218, 0.4012, 0.4053, 0.3970, 0.3990, 0.3953, 0.4011, 0.3805, 0.4680, 0.4968, 0.4105, 0.4076, 0.4376, 0.4653, 0.4418, 0.3990, 0.4432},
+      { 0.3329, 0.3212, 0.3830, 0.3041, 0.3933, 0.3841, 0.3928, 0.3800, 0.3977, 0.3805, 0.3755, 0.4906, 0.5374, 0.3777, 0.3902, 0.4168, 0.4526, 0.4385, 0.3906, 0.4372},
+      { 0.4320, 0.4393, 0.4917, 0.4419, 0.5378, 0.4698, 0.5046, 0.4686, 0.4760, 0.4680, 0.4906, 0.5435, 0.5837, 0.5577, 0.5745, 0.5741, 0.5846, 0.5822, 0.4963, 0.5454},
+      { 0.4281, 0.4527, 0.5081, 0.4621, 0.5373, 0.5157, 0.5262, 0.4889, 0.5288, 0.4968, 0.5374, 0.5837, 0.6419, 0.5829, 0.5908, 0.6085, 0.6361, 0.6173, 0.5359, 0.5891},
+      { 0.3143, 0.3409, 0.3944, 0.3637, 0.4543, 0.4307, 0.4884, 0.3864, 0.3992, 0.4105, 0.3777, 0.5577, 0.5829, 0.6168, 0.6167, 0.6119, 0.5853, 0.6120, 0.5176, 0.5850},
+      { 0.3118, 0.3405, 0.3927, 0.3689, 0.4579, 0.4343, 0.4920, 0.3804, 0.4032, 0.4076, 0.3902, 0.5745, 0.5908, 0.6167, 0.6427, 0.6234, 0.5990, 0.6406, 0.5248, 0.5880},
+      { 0.3379, 0.3586, 0.4237, 0.3877, 0.4689, 0.4489, 0.5013, 0.3964, 0.4282, 0.4376, 0.4168, 0.5741, 0.6085, 0.6119, 0.6234, 0.6305, 0.6071, 0.6175, 0.5437, 0.5865},
+      { 0.3552, 0.3729, 0.4236, 0.3839, 0.5008, 0.4780, 0.5111, 0.4470, 0.4572, 0.4653, 0.4526, 0.5846, 0.6361, 0.5853, 0.5990, 0.6071, 0.6398, 0.6363, 0.5387, 0.5952},
+      { 0.3181, 0.3468, 0.4168, 0.3735, 0.4855, 0.4560, 0.5017, 0.4230, 0.4373, 0.4418, 0.4385, 0.5822, 0.6173, 0.6120, 0.6406, 0.6175, 0.6363, 0.6357, 0.5246, 0.6059},
+      { 0.3258, 0.3332, 0.3843, 0.3390, 0.4209, 0.4121, 0.4385, 0.3811, 0.3915, 0.3990, 0.3906, 0.4963, 0.5359, 0.5176, 0.5248, 0.5437, 0.5387, 0.5246, 0.4780, 0.5095},
+      { 0.3458, 0.3550, 0.4197, 0.3736, 0.4712, 0.4524, 0.4916, 0.4223, 0.4383, 0.4432, 0.4372, 0.5454, 0.5891, 0.5850, 0.5880, 0.5865, 0.5952, 0.6059, 0.5095, 0.6376}},
+    {
+      { 0.3145, 0.2961, 0.5127, 0.4431, 0.4243, 0.3749, 0.3580, 0.3716, 0.3809, 0.3421, 0.3425, 0.4295, 0.4133, 0.3294, 0.3386, 0.3248, 0.3500, 0.3062, 0.3301, 0.3347},
+      { 0.2961, 0.3051, 0.5204, 0.4561, 0.4309, 0.3656, 0.3666, 0.3700, 0.3819, 0.3381, 0.3339, 0.4331, 0.4469, 0.3550, 0.3684, 0.3459, 0.3737, 0.3381, 0.3406, 0.3397},
+      { 0.5127, 0.5204, 0.3844, 0.3287, 0.4090, 0.4142, 0.4142, 0.4118, 0.4417, 0.3845, 0.3913, 0.4768, 0.5035, 0.4058, 0.4217, 0.4104, 0.4233, 0.4088, 0.3892, 0.4129},
+      { 0.4431, 0.4561, 0.3287, 0.2973, 0.3612, 0.3508, 0.3603, 0.3641, 0.3682, 0.3180, 0.3153, 0.4374, 0.4503, 0.3680, 0.3884, 0.3741, 0.3866, 0.3682, 0.3376, 0.3658},
+      { 0.4243, 0.4309, 0.4090, 0.3612, 0.4925, 0.4588, 0.4793, 0.4316, 0.4422, 0.3874, 0.4008, 0.5356, 0.5395, 0.4535, 0.4662, 0.4603, 0.4880, 0.4846, 0.4103, 0.4629},
+      { 0.3749, 0.3656, 0.4142, 0.3508, 0.4588, 0.4230, 0.4327, 0.4304, 0.4239, 0.3966, 0.3840, 0.4599, 0.4989, 0.4329, 0.4517, 0.4262, 0.4684, 0.4369, 0.4082, 0.4451},
+      { 0.3580, 0.3666, 0.4142, 0.3603, 0.4793, 0.4327, 0.4689, 0.4507, 0.4339, 0.3971, 0.3968, 0.4943, 0.5278, 0.4958, 0.5116, 0.4873, 0.5085, 0.4871, 0.4388, 0.4881},
+      { 0.3716, 0.3700, 0.4118, 0.3641, 0.4316, 0.4304, 0.4507, 0.4788, 0.4305, 0.3828, 0.3842, 0.4596, 0.4735, 0.3934, 0.4051, 0.3772, 0.4333, 0.4071, 0.3721, 0.4086},
+      { 0.3809, 0.3819, 0.4417, 0.3682, 0.4422, 0.4239, 0.4339, 0.4305, 0.4342, 0.3940, 0.4018, 0.4776, 0.5199, 0.4104, 0.4228, 0.4128, 0.4568, 0.4312, 0.3871, 0.4310},
+      { 0.3421, 0.3381, 0.3845, 0.3180, 0.3874, 0.3966, 0.3971, 0.3828, 0.3940, 0.3832, 0.3737, 0.4403, 0.4773, 0.4184, 0.4295, 0.4105, 0.4573, 0.4245, 0.3997, 0.4293},
+      { 0.3425, 0.3339, 0.3913, 0.3153, 0.4008, 0.3840, 0.3968, 0.3842, 0.4018, 0.3737, 0.3894, 0.4830, 0.5315, 0.4062, 0.4237, 0.4141, 0.4636, 0.4264, 0.3878, 0.4464},
+      { 0.4295, 0.4331, 0.4768, 0.4374, 0.5356, 0.4599, 0.4943, 0.4596, 0.4776, 0.4403, 0.4830, 0.5402, 0.5816, 0.5505, 0.5723, 0.5737, 0.5889, 0.5803, 0.4846, 0.5391},
+      { 0.4133, 0.4469, 0.5035, 0.4503, 0.5395, 0.4989, 0.5278, 0.4735, 0.5199, 0.4773, 0.5315, 0.5816, 0.6247, 0.5856, 0.6031, 0.6036, 0.6331, 0.6209, 0.5326, 0.5943},
+      { 0.3294, 0.3550, 0.4058, 0.3680, 0.4535, 0.4329, 0.4958, 0.3934, 0.4104, 0.4184, 0.4062, 0.5505, 0.5856, 0.6141, 0.6227, 0.6007, 0.5900, 0.5929, 0.5285, 0.5844},
+      { 0.3386, 0.3684, 0.4217, 0.3884, 0.4662, 0.4517, 0.5116, 0.4051, 0.4228, 0.4295, 0.4237, 0.5723, 0.6031, 0.6227, 0.6488, 0.6257, 0.6094, 0.6175, 0.5472, 0.5952},
+      { 0.3248, 0.3459, 0.4104, 0.3741, 0.4603, 0.4262, 0.4873, 0.3772, 0.4128, 0.4105, 0.4141, 0.5737, 0.6036, 0.6007, 0.6257, 0.6175, 0.5984, 0.6326, 0.5291, 0.5667},
+      { 0.3500, 0.3737, 0.4233, 0.3866, 0.4880, 0.4684, 0.5085, 0.4333, 0.4568, 0.4573, 0.4636, 0.5889, 0.6331, 0.5900, 0.6094, 0.5984, 0.6361, 0.6350, 0.5315, 0.5869},
+      { 0.3062, 0.3381, 0.4088, 0.3682, 0.4846, 0.4369, 0.4871, 0.4071, 0.4312, 0.4245, 0.4264, 0.5803, 0.6209, 0.5929, 0.6175, 0.6326, 0.6350, 0.6413, 0.5079, 0.6030},
+      { 0.3301, 0.3406, 0.3892, 0.3376, 0.4103, 0.4082, 0.4388, 0.3721, 0.3871, 0.3997, 0.3878, 0.4846, 0.5326, 0.5285, 0.5472, 0.5291, 0.5315, 0.5079, 0.4905, 0.5110},
+      { 0.3347, 0.3397, 0.4129, 0.3658, 0.4629, 0.4451, 0.4881, 0.4086, 0.4310, 0.4293, 0.4464, 0.5391, 0.5943, 0.5844, 0.5952, 0.5667, 0.5869, 0.6030, 0.5110, 0.6393}},
+    {
+      { 0.3392, 0.3178, 0.5375, 0.4707, 0.4557, 0.3907, 0.3798, 0.4121, 0.3910, 0.3772, 0.3754, 0.4575, 0.4487, 0.3398, 0.3620, 0.3497, 0.3178, 0.3253, 0.3422, 0.3626},
+      { 0.3178, 0.3069, 0.5517, 0.4765, 0.4552, 0.3889, 0.3895, 0.4081, 0.4178, 0.3516, 0.3704, 0.4688, 0.4813, 0.3755, 0.3878, 0.3730, 0.3441, 0.3657, 0.3637, 0.3629},
+      { 0.5375, 0.5517, 0.4191, 0.3548, 0.4592, 0.4470, 0.4495, 0.4530, 0.4699, 0.4046, 0.4245, 0.5210, 0.5507, 0.4268, 0.4433, 0.4430, 0.4136, 0.4537, 0.4097, 0.4363},
+      { 0.4707, 0.4765, 0.3548, 0.3093, 0.3925, 0.3749, 0.3850, 0.3991, 0.3868, 0.3363, 0.3490, 0.4674, 0.4892, 0.3774, 0.3991, 0.3969, 0.3606, 0.4001, 0.3436, 0.3864},
+      { 0.4557, 0.4552, 0.4592, 0.3925, 0.5384, 0.5028, 0.5054, 0.4863, 0.4760, 0.4434, 0.4254, 0.5868, 0.5927, 0.4810, 0.4961, 0.4876, 0.4871, 0.5150, 0.4428, 0.4927},
+      { 0.3907, 0.3889, 0.4470, 0.3749, 0.5028, 0.4582, 0.4663, 0.4634, 0.4664, 0.4323, 0.4086, 0.4958, 0.5337, 0.4603, 0.4885, 0.4670, 0.4723, 0.4666, 0.4325, 0.4655},
+      { 0.3798, 0.3895, 0.4495, 0.3850, 0.5054, 0.4663, 0.4830, 0.4949, 0.4717, 0.4241, 0.4224, 0.5265, 0.5547, 0.5048, 0.5334, 0.5181, 0.4793, 0.5124, 0.4546, 0.5187},
+      { 0.4121, 0.4081, 0.4530, 0.3991, 0.4863, 0.4634, 0.4949, 0.5218, 0.4762, 0.4403, 0.4306, 0.4937, 0.5142, 0.4171, 0.4270, 0.4163, 0.4193, 0.4400, 0.4033, 0.4363},
+      { 0.3910, 0.4178, 0.4699, 0.3868, 0.4760, 0.4664, 0.4717, 0.4762, 0.4781, 0.4298, 0.4363, 0.5214, 0.5692, 0.4438, 0.4693, 0.4521, 0.4499, 0.4972, 0.4157, 0.4649},
+      { 0.3772, 0.3516, 0.4046, 0.3363, 0.4434, 0.4323, 0.4241, 0.4403, 0.4298, 0.4291, 0.4176, 0.4858, 0.5183, 0.4394, 0.4559, 0.4487, 0.4423, 0.4513, 0.4224, 0.4597},
+      { 0.3754, 0.3704, 0.4245, 0.3490, 0.4254, 0.4086, 0.4224, 0.4306, 0.4363, 0.4176, 0.4420, 0.5082, 0.5577, 0.4248, 0.4558, 0.4346, 0.4269, 0.4460, 0.4148, 0.4599},
+      { 0.4575, 0.4688, 0.5210, 0.4674, 0.5868, 0.4958, 0.5265, 0.4937, 0.5214, 0.4858, 0.5082, 0.5773, 0.6178, 0.5757, 0.5991, 0.5888, 0.6080, 0.6112, 0.5155, 0.5772},
+      { 0.4487, 0.4813, 0.5507, 0.4892, 0.5927, 0.5337, 0.5547, 0.5142, 0.5692, 0.5183, 0.5577, 0.6178, 0.6490, 0.6188, 0.6308, 0.6357, 0.6481, 0.6531, 0.5597, 0.6529},
+      { 0.3398, 0.3755, 0.4268, 0.3774, 0.4810, 0.4603, 0.5048, 0.4171, 0.4438, 0.4394, 0.4248, 0.5757, 0.6188, 0.6233, 0.6397, 0.6211, 0.5613, 0.6126, 0.5330, 0.6001},
+      { 0.3620, 0.3878, 0.4433, 0.3991, 0.4961, 0.4885, 0.5334, 0.4270, 0.4693, 0.4559, 0.4558, 0.5991, 0.6308, 0.6397, 0.6689, 0.6467, 0.5859, 0.6363, 0.5639, 0.6199},
+      { 0.3497, 0.3730, 0.4430, 0.3969, 0.4876, 0.4670, 0.5181, 0.4163, 0.4521, 0.4487, 0.4346, 0.5888, 0.6357, 0.6211, 0.6467, 0.6431, 0.5802, 0.6350, 0.5561, 0.6004},
+      { 0.3178, 0.3441, 0.4136, 0.3606, 0.4871, 0.4723, 0.4793, 0.4193, 0.4499, 0.4423, 0.4269, 0.6080, 0.6481, 0.5613, 0.5859, 0.5802, 0.6086, 0.6793, 0.5126, 0.5794},
+      { 0.3253, 0.3657, 0.4537, 0.4001, 0.5150, 0.4666, 0.5124, 0.4400, 0.4972, 0.4513, 0.4460, 0.6112, 0.6531, 0.6126, 0.6363, 0.6350, 0.6793, 0.6672, 0.5409, 0.6332},
+      { 0.3422, 0.3637, 0.4097, 0.3436, 0.4428, 0.4325, 0.4546, 0.4033, 0.4157, 0.4224, 0.4148, 0.5155, 0.5597, 0.5330, 0.5639, 0.5561, 0.5126, 0.5409, 0.4877, 0.5289},
+      { 0.3626, 0.3629, 0.4363, 0.3864, 0.4927, 0.4655, 0.5187, 0.4363, 0.4649, 0.4597, 0.4599, 0.5772, 0.6529, 0.6001, 0.6199, 0.6004, 0.5794, 0.6332, 0.5289, 0.6766}},
+    {
+      { 0.4093, 0.3837, 0.5850, 0.5056, 0.4857, 0.4555, 0.4340, 0.4637, 0.4432, 0.4061, 0.4097, 0.4850, 0.4808, 0.4030, 0.4032, 0.4028, 0.4278, 0.3764, 0.3954, 0.4349},
+      { 0.3837, 0.3847, 0.5921, 0.5263, 0.5043, 0.4406, 0.4382, 0.4433, 0.4517, 0.4060, 0.4221, 0.4854, 0.5039, 0.4221, 0.4340, 0.4264, 0.4605, 0.3876, 0.4088, 0.4314},
+      { 0.5850, 0.5921, 0.4683, 0.4064, 0.4955, 0.4879, 0.4865, 0.4959, 0.5034, 0.4604, 0.4501, 0.5256, 0.5454, 0.4684, 0.4781, 0.4759, 0.4902, 0.4457, 0.4581, 0.4833},
+      { 0.5056, 0.5263, 0.4064, 0.3802, 0.4188, 0.4306, 0.4374, 0.4361, 0.4423, 0.4016, 0.3785, 0.4783, 0.4847, 0.4339, 0.4529, 0.4454, 0.4620, 0.4132, 0.4075, 0.4518},
+      { 0.4857, 0.5043, 0.4955, 0.4188, 0.5536, 0.5358, 0.5241, 0.4903, 0.4781, 0.4490, 0.4412, 0.6008, 0.6111, 0.4916, 0.5098, 0.5131, 0.5464, 0.5335, 0.4715, 0.5095},
+      { 0.4555, 0.4406, 0.4879, 0.4306, 0.5358, 0.4950, 0.4970, 0.4944, 0.4897, 0.4665, 0.4408, 0.5062, 0.5367, 0.4923, 0.5094, 0.4945, 0.5293, 0.4758, 0.4669, 0.5153},
+      { 0.4340, 0.4382, 0.4865, 0.4374, 0.5241, 0.4970, 0.5113, 0.5074, 0.4882, 0.4600, 0.4523, 0.5275, 0.5447, 0.5465, 0.5665, 0.5565, 0.5721, 0.5117, 0.4935, 0.5496},
+      { 0.4637, 0.4433, 0.4959, 0.4361, 0.4903, 0.4944, 0.5074, 0.5871, 0.5109, 0.4712, 0.4381, 0.5076, 0.5275, 0.4525, 0.4626, 0.4456, 0.5236, 0.4390, 0.4354, 0.4632},
+      { 0.4432, 0.4517, 0.5034, 0.4423, 0.4781, 0.4897, 0.4882, 0.5109, 0.5011, 0.4556, 0.4790, 0.5307, 0.5548, 0.4744, 0.4905, 0.4838, 0.5208, 0.4683, 0.4481, 0.5051},
+      { 0.4061, 0.4060, 0.4604, 0.4016, 0.4490, 0.4665, 0.4600, 0.4712, 0.4556, 0.4749, 0.4303, 0.4838, 0.5282, 0.4761, 0.4881, 0.4871, 0.5269, 0.4558, 0.4653, 0.4744},
+      { 0.4097, 0.4221, 0.4501, 0.3785, 0.4412, 0.4408, 0.4523, 0.4381, 0.4790, 0.4303, 0.4528, 0.5190, 0.5514, 0.4594, 0.4729, 0.4767, 0.5117, 0.4550, 0.4507, 0.4991},
+      { 0.4850, 0.4854, 0.5256, 0.4783, 0.6008, 0.5062, 0.5275, 0.5076, 0.5307, 0.4838, 0.5190, 0.6016, 0.6454, 0.5821, 0.5997, 0.5993, 0.6265, 0.6476, 0.5250, 0.5674},
+      { 0.4808, 0.5039, 0.5454, 0.4847, 0.6111, 0.5367, 0.5447, 0.5275, 0.5548, 0.5282, 0.5514, 0.6454, 0.7147, 0.6204, 0.6352, 0.6474, 0.6780, 0.6774, 0.5709, 0.6090},
+      { 0.4030, 0.4221, 0.4684, 0.4339, 0.4916, 0.4923, 0.5465, 0.4525, 0.4744, 0.4761, 0.4594, 0.5821, 0.6204, 0.6615, 0.6811, 0.6612, 0.6428, 0.6096, 0.5697, 0.6216},
+      { 0.4032, 0.4340, 0.4781, 0.4529, 0.5098, 0.5094, 0.5665, 0.4626, 0.4905, 0.4881, 0.4729, 0.5997, 0.6352, 0.6811, 0.7103, 0.6918, 0.6690, 0.6357, 0.5941, 0.6456},
+      { 0.4028, 0.4264, 0.4759, 0.4454, 0.5131, 0.4945, 0.5565, 0.4456, 0.4838, 0.4871, 0.4767, 0.5993, 0.6474, 0.6612, 0.6918, 0.6923, 0.6653, 0.6413, 0.5901, 0.6333},
+      { 0.4278, 0.4605, 0.4902, 0.4620, 0.5464, 0.5293, 0.5721, 0.5236, 0.5208, 0.5269, 0.5117, 0.6265, 0.6780, 0.6428, 0.6690, 0.6653, 0.7026, 0.6672, 0.5831, 0.6377},
+      { 0.3764, 0.3876, 0.4457, 0.4132, 0.5335, 0.4758, 0.5117, 0.4390, 0.4683, 0.4558, 0.4550, 0.6476, 0.6774, 0.6096, 0.6357, 0.6413, 0.6672, 0.7286, 0.5364, 0.6219},
+      { 0.3954, 0.4088, 0.4581, 0.4075, 0.4715, 0.4669, 0.4935, 0.4354, 0.4481, 0.4653, 0.4507, 0.5250, 0.5709, 0.5697, 0.5941, 0.5901, 0.5831, 0.5364, 0.5322, 0.5637},
+      { 0.4349, 0.4314, 0.4833, 0.4518, 0.5095, 0.5153, 0.5496, 0.4632, 0.5051, 0.4744, 0.4991, 0.5674, 0.6090, 0.6216, 0.6456, 0.6333, 0.6377, 0.6219, 0.5637, 0.6936}},
+    {
+      { 0.1737, 0.1615, 0.4140, 0.3441, 0.3277, 0.2688, 0.2607, 0.2740, 0.2821, 0.2350, 0.2248, 0.3334, 0.3107, 0.2198, 0.2183, 0.2145, 0.2421, 0.1946, 0.2042, 0.2468},
+      { 0.1615, 0.1802, 0.4265, 0.3545, 0.3175, 0.2438, 0.2516, 0.2589, 0.2760, 0.2176, 0.2195, 0.3038, 0.3223, 0.2347, 0.2376, 0.2332, 0.2346, 0.2087, 0.2121, 0.2366},
+      { 0.4140, 0.4265, 0.2890, 0.2275, 0.3171, 0.3180, 0.3330, 0.3246, 0.3365, 0.2850, 0.2871, 0.3843, 0.4103, 0.3170, 0.3322, 0.3251, 0.3226, 0.3055, 0.2733, 0.3230},
+      { 0.3441, 0.3545, 0.2275, 0.1974, 0.2599, 0.2487, 0.2612, 0.2574, 0.2691, 0.2165, 0.2008, 0.3179, 0.3205, 0.2672, 0.2699, 0.2622, 0.2488, 0.2264, 0.2279, 0.2603},
+      { 0.3277, 0.3175, 0.3171, 0.2599, 0.3930, 0.4211, 0.4164, 0.3494, 0.3280, 0.3344, 0.3265, 0.4405, 0.4586, 0.3863, 0.3964, 0.3862, 0.4030, 0.3768, 0.3518, 0.4120},
+      { 0.2688, 0.2438, 0.3180, 0.2487, 0.4211, 0.3485, 0.3596, 0.3502, 0.3308, 0.3274, 0.3009, 0.4228, 0.4434, 0.3614, 0.3715, 0.3678, 0.4049, 0.4126, 0.3161, 0.3807},
+      { 0.2607, 0.2516, 0.3330, 0.2612, 0.4164, 0.3596, 0.3946, 0.3800, 0.3499, 0.3449, 0.3111, 0.4308, 0.4456, 0.4245, 0.4398, 0.4247, 0.4362, 0.4260, 0.3485, 0.4256},
+      { 0.2740, 0.2589, 0.3246, 0.2574, 0.3494, 0.3502, 0.3800, 0.3821, 0.3369, 0.3143, 0.2905, 0.3645, 0.3962, 0.3179, 0.3145, 0.3032, 0.3618, 0.3008, 0.2803, 0.3317},
+      { 0.2821, 0.2760, 0.3365, 0.2691, 0.3280, 0.3308, 0.3499, 0.3369, 0.3357, 0.3023, 0.2965, 0.3560, 0.3991, 0.3180, 0.3210, 0.3194, 0.3366, 0.2980, 0.2872, 0.3273},
+      { 0.2350, 0.2176, 0.2850, 0.2165, 0.3344, 0.3274, 0.3449, 0.3143, 0.3023, 0.3312, 0.2782, 0.4236, 0.4151, 0.3734, 0.3933, 0.3946, 0.4284, 0.4201, 0.3191, 0.3960},
+      { 0.2248, 0.2195, 0.2871, 0.2008, 0.3265, 0.3009, 0.3111, 0.2905, 0.2965, 0.2782, 0.2805, 0.4026, 0.4263, 0.3012, 0.3208, 0.3125, 0.3540, 0.3368, 0.2634, 0.3427},
+      { 0.3334, 0.3038, 0.3843, 0.3179, 0.4405, 0.4228, 0.4308, 0.3645, 0.3560, 0.4236, 0.4026, 0.4720, 0.5099, 0.4986, 0.5058, 0.4943, 0.5161, 0.4938, 0.4688, 0.5034},
+      { 0.3107, 0.3223, 0.4103, 0.3205, 0.4586, 0.4434, 0.4456, 0.3962, 0.3991, 0.4151, 0.4263, 0.5099, 0.5504, 0.5084, 0.5211, 0.5127, 0.5478, 0.5320, 0.4595, 0.5100},
+      { 0.2198, 0.2347, 0.3170, 0.2672, 0.3863, 0.3614, 0.4245, 0.3179, 0.3180, 0.3734, 0.3012, 0.4986, 0.5084, 0.5453, 0.5610, 0.5417, 0.5253, 0.5194, 0.4395, 0.5241},
+      { 0.2183, 0.2376, 0.3322, 0.2699, 0.3964, 0.3715, 0.4398, 0.3145, 0.3210, 0.3933, 0.3208, 0.5058, 0.5211, 0.5610, 0.5838, 0.5642, 0.5474, 0.5246, 0.4581, 0.5429},
+      { 0.2145, 0.2332, 0.3251, 0.2622, 0.3862, 0.3678, 0.4247, 0.3032, 0.3194, 0.3946, 0.3125, 0.4943, 0.5127, 0.5417, 0.5642, 0.5514, 0.5315, 0.5079, 0.4565, 0.5188},
+      { 0.2421, 0.2346, 0.3226, 0.2488, 0.4030, 0.4049, 0.4362, 0.3618, 0.3366, 0.4284, 0.3540, 0.5161, 0.5478, 0.5253, 0.5474, 0.5315, 0.5711, 0.5409, 0.4580, 0.5405},
+      { 0.1946, 0.2087, 0.3055, 0.2264, 0.3768, 0.4126, 0.4260, 0.3008, 0.2980, 0.4201, 0.3368, 0.4938, 0.5320, 0.5194, 0.5246, 0.5079, 0.5409, 0.5364, 0.5101, 0.5580},
+      { 0.2042, 0.2121, 0.2733, 0.2279, 0.3518, 0.3161, 0.3485, 0.2803, 0.2872, 0.3191, 0.2634, 0.4688, 0.4595, 0.4395, 0.4581, 0.4565, 0.4580, 0.5101, 0.3871, 0.4466},
+      { 0.2468, 0.2366, 0.3230, 0.2603, 0.4120, 0.3807, 0.4256, 0.3317, 0.3273, 0.3960, 0.3427, 0.5034, 0.5100, 0.5241, 0.5429, 0.5188, 0.5405, 0.5580, 0.4466, 0.6394}},
+    {
+      { 0.3043, 0.2776, 0.5036, 0.4466, 0.4385, 0.3462, 0.3693, 0.3801, 0.3566, 0.3245, 0.3174, 0.4436, 0.4388, 0.3377, 0.3372, 0.3303, 0.3695, 0.3414, 0.2945, 0.2741},
+      { 0.2776, 0.2890, 0.5457, 0.4461, 0.4523, 0.3476, 0.3509, 0.3945, 0.3816, 0.3082, 0.3253, 0.4634, 0.4765, 0.3561, 0.3767, 0.3638, 0.3797, 0.3657, 0.3100, 0.2817},
+      { 0.5036, 0.5457, 0.4106, 0.3423, 0.4377, 0.4036, 0.4126, 0.4075, 0.4512, 0.3748, 0.3964, 0.5011, 0.5360, 0.4106, 0.4285, 0.4254, 0.4403, 0.4348, 0.3804, 0.3321},
+      { 0.4466, 0.4461, 0.3423, 0.3043, 0.3676, 0.3403, 0.3535, 0.3435, 0.3722, 0.3160, 0.3044, 0.4665, 0.4700, 0.3676, 0.3859, 0.3739, 0.3847, 0.3789, 0.3126, 0.3176},
+      { 0.4385, 0.4523, 0.4377, 0.3676, 0.4921, 0.4972, 0.4942, 0.4386, 0.4371, 0.4152, 0.4422, 0.5217, 0.5646, 0.4629, 0.4795, 0.4609, 0.4899, 0.4855, 0.4199, 0.4630},
+      { 0.3462, 0.3476, 0.4036, 0.3403, 0.4972, 0.4402, 0.4555, 0.4408, 0.4217, 0.4151, 0.4092, 0.5170, 0.5216, 0.4646, 0.4720, 0.4546, 0.5040, 0.5030, 0.4194, 0.4281},
+      { 0.3693, 0.3509, 0.4126, 0.3535, 0.4942, 0.4555, 0.4800, 0.4626, 0.4527, 0.4258, 0.4085, 0.5181, 0.5321, 0.4992, 0.5098, 0.4952, 0.5100, 0.5250, 0.4486, 0.4089},
+      { 0.3801, 0.3945, 0.4075, 0.3435, 0.4386, 0.4408, 0.4626, 0.5185, 0.4635, 0.4107, 0.4068, 0.5062, 0.5251, 0.4114, 0.4402, 0.4231, 0.4801, 0.4686, 0.3755, 0.3676},
+      { 0.3566, 0.3816, 0.4512, 0.3722, 0.4371, 0.4217, 0.4527, 0.4635, 0.4438, 0.3855, 0.3847, 0.4837, 0.5249, 0.4167, 0.4294, 0.4186, 0.4703, 0.4479, 0.3725, 0.4034},
+      { 0.3245, 0.3082, 0.3748, 0.3160, 0.4152, 0.4151, 0.4258, 0.4107, 0.3855, 0.3889, 0.3696, 0.4727, 0.4903, 0.4377, 0.4532, 0.4417, 0.4902, 0.4462, 0.3965, 0.4031},
+      { 0.3174, 0.3253, 0.3964, 0.3044, 0.4422, 0.4092, 0.4085, 0.4068, 0.3847, 0.3696, 0.3614, 0.4955, 0.5316, 0.4108, 0.4428, 0.4313, 0.4721, 0.4470, 0.3684, 0.3517},
+      { 0.4436, 0.4634, 0.5011, 0.4665, 0.5217, 0.5170, 0.5181, 0.5062, 0.4837, 0.4727, 0.4955, 0.5283, 0.5796, 0.5676, 0.5726, 0.5699, 0.5779, 0.5713, 0.5131, 0.5366},
+      { 0.4388, 0.4765, 0.5360, 0.4700, 0.5646, 0.5216, 0.5321, 0.5251, 0.5249, 0.4903, 0.5316, 0.5796, 0.5895, 0.5813, 0.5876, 0.5966, 0.6442, 0.6094, 0.5218, 0.6071},
+      { 0.3377, 0.3561, 0.4106, 0.3676, 0.4629, 0.4646, 0.4992, 0.4114, 0.4167, 0.4377, 0.4108, 0.5676, 0.5813, 0.6098, 0.6214, 0.6009, 0.5909, 0.5965, 0.5343, 0.4507},
+      { 0.3372, 0.3767, 0.4285, 0.3859, 0.4795, 0.4720, 0.5098, 0.4402, 0.4294, 0.4532, 0.4428, 0.5726, 0.5876, 0.6214, 0.6469, 0.6321, 0.6120, 0.6059, 0.5553, 0.4666},
+      { 0.3303, 0.3638, 0.4254, 0.3739, 0.4609, 0.4546, 0.4952, 0.4231, 0.4186, 0.4417, 0.4313, 0.5699, 0.5966, 0.6009, 0.6321, 0.6256, 0.6120, 0.6030, 0.5410, 0.4329},
+      { 0.3695, 0.3797, 0.4403, 0.3847, 0.4899, 0.5040, 0.5100, 0.4801, 0.4703, 0.4902, 0.4721, 0.5779, 0.6442, 0.5909, 0.6120, 0.6120, 0.6691, 0.6332, 0.5408, 0.5063},
+      { 0.3414, 0.3657, 0.4348, 0.3789, 0.4855, 0.5030, 0.5250, 0.4686, 0.4479, 0.4462, 0.4470, 0.5713, 0.6094, 0.5965, 0.6059, 0.6030, 0.6332, 0.6219, 0.5580, 0.5766},
+      { 0.2945, 0.3100, 0.3804, 0.3126, 0.4199, 0.4194, 0.4486, 0.3755, 0.3725, 0.3965, 0.3684, 0.5131, 0.5218, 0.5343, 0.5553, 0.5410, 0.5408, 0.5580, 0.4776, 0.4069},
+      { 0.2741, 0.2817, 0.3321, 0.3176, 0.4630, 0.4281, 0.4089, 0.3676, 0.4034, 0.4031, 0.3517, 0.5366, 0.6071, 0.4507, 0.4666, 0.4329, 0.5063, 0.5766, 0.4069, 0.5547}}},
+  {
+    {
+      { 0.0907, 0.0811, 0.2985, 0.2618, 0.2558, 0.2679, 0.2518, 0.2244, 0.2110, 0.2371, 0.1921, 0.2708, 0.2501, 0.2214, 0.1999, 0.1924, 0.2461, 0.2522, 0.2528, 0.3018},
+      { 0.0811, 0.1722, 0.3736, 0.3347, 0.2480, 0.1891, 0.1994, 0.2134, 0.2581, 0.1450, 0.1636, 0.2603, 0.2749, 0.1703, 0.1841, 0.1886, 0.1963, 0.2068, 0.1483, 0.1637},
+      { 0.2985, 0.3736, 0.2394, 0.1804, 0.2535, 0.1973, 0.2144, 0.2196, 0.2640, 0.1529, 0.2004, 0.3248, 0.3210, 0.2038, 0.2218, 0.2410, 0.2143, 0.2655, 0.1578, 0.1737},
+      { 0.2618, 0.3347, 0.1804, 0.1442, 0.1804, 0.1443, 0.1604, 0.1793, 0.2208, 0.0875, 0.1300, 0.2723, 0.2575, 0.1467, 0.1581, 0.1753, 0.1537, 0.1905, 0.1050, 0.1004},
+      { 0.2558, 0.2480, 0.2535, 0.1804, 0.2940, 0.2251, 0.2441, 0.2278, 0.2319, 0.1793, 0.2027, 0.3508, 0.3597, 0.2435, 0.2454, 0.2488, 0.2452, 0.2937, 0.1859, 0.2453},
+      { 0.2679, 0.1891, 0.1973, 0.1443, 0.2251, 0.1816, 0.1747, 0.2060, 0.1892, 0.1460, 0.1334, 0.2399, 0.2543, 0.1693, 0.1818, 0.1724, 0.1866, 0.2206, 0.1425, 0.2087},
+      { 0.2518, 0.1994, 0.2144, 0.1604, 0.2441, 0.1747, 0.2069, 0.2154, 0.2103, 0.1435, 0.1439, 0.2654, 0.2763, 0.2128, 0.2214, 0.2062, 0.2100, 0.2436, 0.1473, 0.2041},
+      { 0.2244, 0.2134, 0.2196, 0.1793, 0.2278, 0.2060, 0.2154, 0.2344, 0.2333, 0.1572, 0.1690, 0.2553, 0.2849, 0.1763, 0.1838, 0.1776, 0.2148, 0.2239, 0.1705, 0.2130},
+      { 0.2110, 0.2581, 0.2640, 0.2208, 0.2319, 0.1892, 0.2103, 0.2333, 0.2642, 0.1332, 0.1848, 0.2737, 0.3245, 0.1904, 0.2062, 0.2213, 0.2276, 0.2459, 0.1518, 0.1651},
+      { 0.2371, 0.1450, 0.1529, 0.0875, 0.1793, 0.1460, 0.1435, 0.1572, 0.1332, 0.1299, 0.1004, 0.2248, 0.2359, 0.1302, 0.1477, 0.1618, 0.1830, 0.1994, 0.1275, 0.2355},
+      { 0.1921, 0.1636, 0.2004, 0.1300, 0.2027, 0.1334, 0.1439, 0.1690, 0.1848, 0.1004, 0.1670, 0.2775, 0.3007, 0.1235, 0.1466, 0.1495, 0.1795, 0.2150, 0.0772, 0.1259},
+      { 0.2708, 0.2603, 0.3248, 0.2723, 0.3508, 0.2399, 0.2654, 0.2553, 0.2737, 0.2248, 0.2775, 0.3752, 0.4187, 0.3018, 0.3334, 0.3348, 0.3459, 0.3896, 0.2094, 0.3011},
+      { 0.2501, 0.2749, 0.3210, 0.2575, 0.3597, 0.2543, 0.2763, 0.2849, 0.3245, 0.2359, 0.3007, 0.4187, 0.4557, 0.3037, 0.3397, 0.3368, 0.3696, 0.4235, 0.2024, 0.3128},
+      { 0.2214, 0.1703, 0.2038, 0.1467, 0.2435, 0.1693, 0.2128, 0.1763, 0.1904, 0.1302, 0.1235, 0.3018, 0.3037, 0.2794, 0.2895, 0.2703, 0.2567, 0.3000, 0.1632, 0.2521},
+      { 0.1999, 0.1841, 0.2218, 0.1581, 0.2454, 0.1818, 0.2214, 0.1838, 0.2062, 0.1477, 0.1466, 0.3334, 0.3397, 0.2895, 0.3084, 0.2927, 0.2770, 0.3258, 0.1748, 0.2476},
+      { 0.1924, 0.1886, 0.2410, 0.1753, 0.2488, 0.1724, 0.2062, 0.1776, 0.2213, 0.1618, 0.1495, 0.3348, 0.3368, 0.2703, 0.2927, 0.2931, 0.2751, 0.3301, 0.1702, 0.2344},
+      { 0.2461, 0.1963, 0.2143, 0.1537, 0.2452, 0.1866, 0.2100, 0.2148, 0.2276, 0.1830, 0.1795, 0.3459, 0.3696, 0.2567, 0.2770, 0.2751, 0.3142, 0.3422, 0.1714, 0.2952},
+      { 0.2522, 0.2068, 0.2655, 0.1905, 0.2937, 0.2206, 0.2436, 0.2239, 0.2459, 0.1994, 0.2150, 0.3896, 0.4235, 0.3000, 0.3258, 0.3301, 0.3422, 0.3954, 0.2042, 0.2945},
+      { 0.2528, 0.1483, 0.1578, 0.1050, 0.1859, 0.1425, 0.1473, 0.1705, 0.1518, 0.1275, 0.0772, 0.2094, 0.2024, 0.1632, 0.1748, 0.1702, 0.1714, 0.2042, 0.1587, 0.1968},
+      { 0.3018, 0.1637, 0.1737, 0.1004, 0.2453, 0.2087, 0.2041, 0.2130, 0.1651, 0.2355, 0.1259, 0.3011, 0.3128, 0.2521, 0.2476, 0.2344, 0.2952, 0.2945, 0.1968, 0.4682}},
+    {
+      { 0.1470, 0.1449, 0.3754, 0.3396, 0.2677, 0.2206, 0.2132, 0.2390, 0.2994, 0.1738, 0.1574, 0.2622, 0.2540, 0.1547, 0.1576, 0.1678, 0.1918, 0.1986, 0.1483, 0.2024},
+      { 0.1449, 0.1740, 0.3792, 0.3387, 0.2734, 0.2620, 0.2607, 0.2548, 0.2776, 0.2177, 0.2113, 0.2877, 0.2981, 0.2396, 0.2296, 0.2236, 0.2646, 0.2518, 0.2572, 0.2765},
+      { 0.3754, 0.3792, 0.2551, 0.2075, 0.2589, 0.2106, 0.2271, 0.2519, 0.2834, 0.1664, 0.2048, 0.3340, 0.3365, 0.2318, 0.2555, 0.2657, 0.2321, 0.2718, 0.1887, 0.1744},
+      { 0.3396, 0.3387, 0.2075, 0.1837, 0.2124, 0.1737, 0.1840, 0.2197, 0.2498, 0.0993, 0.1492, 0.2938, 0.2733, 0.1786, 0.1958, 0.2094, 0.1875, 0.2122, 0.1310, 0.0990},
+      { 0.2677, 0.2734, 0.2589, 0.2124, 0.2966, 0.2363, 0.2568, 0.2503, 0.2590, 0.1847, 0.2050, 0.3555, 0.3674, 0.2586, 0.2642, 0.2664, 0.2773, 0.3022, 0.1758, 0.2435},
+      { 0.2206, 0.2620, 0.2106, 0.1737, 0.2363, 0.1851, 0.1812, 0.2052, 0.2091, 0.1411, 0.1416, 0.2428, 0.2495, 0.1760, 0.1812, 0.1714, 0.1915, 0.2138, 0.1363, 0.1684},
+      { 0.2132, 0.2607, 0.2271, 0.1840, 0.2568, 0.1812, 0.2258, 0.2264, 0.2378, 0.1468, 0.1473, 0.2790, 0.2749, 0.2251, 0.2337, 0.2154, 0.2225, 0.2517, 0.1450, 0.1945},
+      { 0.2390, 0.2548, 0.2519, 0.2197, 0.2503, 0.2052, 0.2264, 0.2582, 0.2690, 0.1491, 0.1769, 0.2700, 0.2968, 0.1785, 0.1899, 0.1876, 0.2142, 0.2267, 0.1281, 0.1625},
+      { 0.2994, 0.2776, 0.2834, 0.2498, 0.2590, 0.2091, 0.2378, 0.2690, 0.2890, 0.1590, 0.2059, 0.2985, 0.3394, 0.2161, 0.2267, 0.2418, 0.2467, 0.2579, 0.1852, 0.1829},
+      { 0.1738, 0.2177, 0.1664, 0.0993, 0.1847, 0.1411, 0.1468, 0.1491, 0.1590, 0.1371, 0.0996, 0.2334, 0.2364, 0.1532, 0.1584, 0.1670, 0.1961, 0.2205, 0.1227, 0.1906},
+      { 0.1574, 0.2113, 0.2048, 0.1492, 0.2050, 0.1416, 0.1473, 0.1769, 0.2059, 0.0996, 0.1583, 0.2748, 0.2950, 0.1311, 0.1448, 0.1572, 0.1802, 0.2143, 0.1021, 0.1185},
+      { 0.2622, 0.2877, 0.3340, 0.2938, 0.3555, 0.2428, 0.2790, 0.2700, 0.2985, 0.2334, 0.2748, 0.3836, 0.4217, 0.3164, 0.3390, 0.3495, 0.3599, 0.3926, 0.2371, 0.3013},
+      { 0.2540, 0.2981, 0.3365, 0.2733, 0.3674, 0.2495, 0.2749, 0.2968, 0.3394, 0.2364, 0.2950, 0.4217, 0.4298, 0.3133, 0.3466, 0.3476, 0.3843, 0.4377, 0.2231, 0.3154},
+      { 0.1547, 0.2396, 0.2318, 0.1786, 0.2586, 0.1760, 0.2251, 0.1785, 0.2161, 0.1532, 0.1311, 0.3164, 0.3133, 0.3001, 0.3059, 0.2822, 0.2687, 0.3108, 0.1932, 0.2625},
+      { 0.1576, 0.2296, 0.2555, 0.1958, 0.2642, 0.1812, 0.2337, 0.1899, 0.2267, 0.1584, 0.1448, 0.3390, 0.3466, 0.3059, 0.3223, 0.3075, 0.2911, 0.3332, 0.1990, 0.2720},
+      { 0.1678, 0.2236, 0.2657, 0.2094, 0.2664, 0.1714, 0.2154, 0.1876, 0.2418, 0.1670, 0.1572, 0.3495, 0.3476, 0.2822, 0.3075, 0.3120, 0.2919, 0.3406, 0.1957, 0.2496},
+      { 0.1918, 0.2646, 0.2321, 0.1875, 0.2773, 0.1915, 0.2225, 0.2142, 0.2467, 0.1961, 0.1802, 0.3599, 0.3843, 0.2687, 0.2911, 0.2919, 0.3241, 0.3637, 0.2020, 0.2814},
+      { 0.1986, 0.2518, 0.2718, 0.2122, 0.3022, 0.2138, 0.2517, 0.2267, 0.2579, 0.2205, 0.2143, 0.3926, 0.4377, 0.3108, 0.3332, 0.3406, 0.3637, 0.4088, 0.2121, 0.3100},
+      { 0.1483, 0.2572, 0.1887, 0.1310, 0.1758, 0.1363, 0.1450, 0.1281, 0.1852, 0.1227, 0.1021, 0.2371, 0.2231, 0.1932, 0.1990, 0.1957, 0.2020, 0.2121, 0.1926, 0.1774},
+      { 0.2024, 0.2765, 0.1744, 0.0990, 0.2435, 0.1684, 0.1945, 0.1625, 0.1829, 0.1906, 0.1185, 0.3013, 0.3154, 0.2625, 0.2720, 0.2496, 0.2814, 0.3100, 0.1774, 0.4049}},
+    {
+      { 0.1780, 0.1832, 0.3634, 0.3677, 0.3046, 0.2225, 0.2176, 0.2622, 0.3097, 0.1717, 0.1932, 0.2996, 0.2885, 0.1721, 0.1857, 0.1998, 0.2098, 0.2223, 0.1578, 0.1680},
+      { 0.1832, 0.2172, 0.3749, 0.3850, 0.3041, 0.2188, 0.2311, 0.2605, 0.3043, 0.1536, 0.1905, 0.3177, 0.3333, 0.2210, 0.2401, 0.2530, 0.2352, 0.2491, 0.1887, 0.1796},
+      { 0.3634, 0.3749, 0.2863, 0.2326, 0.3261, 0.3602, 0.3410, 0.3259, 0.3189, 0.3184, 0.3400, 0.3831, 0.3950, 0.3355, 0.3385, 0.3365, 0.3504, 0.3563, 0.3561, 0.3716},
+      { 0.3677, 0.3850, 0.2326, 0.2265, 0.2820, 0.2679, 0.2708, 0.2835, 0.2991, 0.2126, 0.2209, 0.3705, 0.3514, 0.2783, 0.2920, 0.2958, 0.2770, 0.3035, 0.2463, 0.2501},
+      { 0.3046, 0.3041, 0.3261, 0.2820, 0.3605, 0.3028, 0.3246, 0.3055, 0.3123, 0.2525, 0.2775, 0.4044, 0.4244, 0.3201, 0.3264, 0.3301, 0.3282, 0.3591, 0.2514, 0.3186},
+      { 0.2225, 0.2188, 0.3602, 0.2679, 0.3028, 0.2450, 0.2478, 0.2733, 0.2667, 0.2175, 0.2111, 0.3127, 0.3282, 0.2497, 0.2585, 0.2546, 0.2625, 0.2874, 0.2056, 0.2531},
+      { 0.2176, 0.2311, 0.3410, 0.2708, 0.3246, 0.2478, 0.2818, 0.2826, 0.2846, 0.2096, 0.2200, 0.3304, 0.3427, 0.2903, 0.3012, 0.2792, 0.2776, 0.3090, 0.2167, 0.2686},
+      { 0.2622, 0.2605, 0.3259, 0.2835, 0.3055, 0.2733, 0.2826, 0.3206, 0.3087, 0.2287, 0.2409, 0.3324, 0.3678, 0.2590, 0.2706, 0.2588, 0.2809, 0.3050, 0.2193, 0.2668},
+      { 0.3097, 0.3043, 0.3189, 0.2991, 0.3123, 0.2667, 0.2846, 0.3087, 0.3268, 0.2138, 0.2498, 0.3486, 0.3912, 0.2677, 0.2877, 0.3012, 0.2994, 0.3207, 0.2396, 0.2422},
+      { 0.1717, 0.1536, 0.3184, 0.2126, 0.2525, 0.2175, 0.2096, 0.2287, 0.2138, 0.1889, 0.1819, 0.3007, 0.2963, 0.2220, 0.2313, 0.2431, 0.2653, 0.2801, 0.1973, 0.2547},
+      { 0.1932, 0.1905, 0.3400, 0.2209, 0.2775, 0.2111, 0.2200, 0.2409, 0.2498, 0.1819, 0.2283, 0.3439, 0.3664, 0.2132, 0.2278, 0.2384, 0.2611, 0.2992, 0.1733, 0.2261},
+      { 0.2996, 0.3177, 0.3831, 0.3705, 0.4044, 0.3127, 0.3304, 0.3324, 0.3486, 0.3007, 0.3439, 0.4186, 0.4716, 0.3693, 0.3937, 0.3976, 0.4168, 0.4414, 0.2929, 0.3737},
+      { 0.2885, 0.3333, 0.3950, 0.3514, 0.4244, 0.3282, 0.3427, 0.3678, 0.3912, 0.2963, 0.3664, 0.4716, 0.4996, 0.3744, 0.3957, 0.3979, 0.4310, 0.4906, 0.2832, 0.4053},
+      { 0.1721, 0.2210, 0.3355, 0.2783, 0.3201, 0.2497, 0.2903, 0.2590, 0.2677, 0.2220, 0.2132, 0.3693, 0.3744, 0.3614, 0.3606, 0.3440, 0.3199, 0.3661, 0.2682, 0.3411},
+      { 0.1857, 0.2401, 0.3385, 0.2920, 0.3264, 0.2585, 0.3012, 0.2706, 0.2877, 0.2313, 0.2278, 0.3937, 0.3957, 0.3606, 0.3795, 0.3685, 0.3459, 0.3843, 0.2785, 0.3523},
+      { 0.1998, 0.2530, 0.3365, 0.2958, 0.3301, 0.2546, 0.2792, 0.2588, 0.3012, 0.2431, 0.2384, 0.3976, 0.3979, 0.3440, 0.3685, 0.3668, 0.3424, 0.3892, 0.2746, 0.3246},
+      { 0.2098, 0.2352, 0.3504, 0.2770, 0.3282, 0.2625, 0.2776, 0.2809, 0.2994, 0.2653, 0.2611, 0.4168, 0.4310, 0.3199, 0.3459, 0.3424, 0.3847, 0.4097, 0.2656, 0.3424},
+      { 0.2223, 0.2491, 0.3563, 0.3035, 0.3591, 0.2874, 0.3090, 0.3050, 0.3207, 0.2801, 0.2992, 0.4414, 0.4906, 0.3661, 0.3843, 0.3892, 0.4097, 0.4581, 0.2733, 0.3804},
+      { 0.1578, 0.1887, 0.3561, 0.2463, 0.2514, 0.2056, 0.2167, 0.2193, 0.2396, 0.1973, 0.1733, 0.2929, 0.2832, 0.2682, 0.2785, 0.2746, 0.2656, 0.2733, 0.2669, 0.2649},
+      { 0.1680, 0.1796, 0.3716, 0.2501, 0.3186, 0.2531, 0.2686, 0.2668, 0.2422, 0.2547, 0.2261, 0.3737, 0.4053, 0.3411, 0.3523, 0.3246, 0.3424, 0.3804, 0.2649, 0.4780}},
+    {
+      { 0.1389, 0.1534, 0.3669, 0.3175, 0.2581, 0.1710, 0.1710, 0.2178, 0.2832, 0.1139, 0.1360, 0.2383, 0.2167, 0.1191, 0.1337, 0.1412, 0.1505, 0.1641, 0.1050, 0.1171},
+      { 0.1534, 0.1903, 0.3907, 0.3153, 0.2574, 0.1632, 0.1827, 0.2235, 0.2716, 0.0976, 0.1410, 0.2627, 0.2727, 0.1663, 0.1802, 0.1950, 0.1766, 0.1918, 0.1310, 0.1055},
+      { 0.3669, 0.3907, 0.2644, 0.1989, 0.2866, 0.2550, 0.2611, 0.2712, 0.2967, 0.2181, 0.2442, 0.3531, 0.3442, 0.2780, 0.2942, 0.2955, 0.2839, 0.3035, 0.2463, 0.2649},
+      { 0.3175, 0.3153, 0.1989, 0.1620, 0.2472, 0.2984, 0.2828, 0.2499, 0.2451, 0.2501, 0.2119, 0.3319, 0.3026, 0.2883, 0.2817, 0.2562, 0.2913, 0.2756, 0.3015, 0.3073},
+      { 0.2581, 0.2574, 0.2866, 0.2472, 0.2981, 0.2459, 0.2605, 0.2546, 0.2599, 0.1964, 0.2110, 0.3575, 0.3758, 0.2682, 0.2765, 0.2812, 0.2842, 0.3074, 0.2061, 0.2566},
+      { 0.1710, 0.1632, 0.2550, 0.2984, 0.2459, 0.1850, 0.1846, 0.2186, 0.2095, 0.1474, 0.1470, 0.2507, 0.2565, 0.1904, 0.1942, 0.1870, 0.2004, 0.2298, 0.1426, 0.1764},
+      { 0.1710, 0.1827, 0.2611, 0.2828, 0.2605, 0.1846, 0.2194, 0.2311, 0.2267, 0.1505, 0.1580, 0.2724, 0.2796, 0.2371, 0.2434, 0.2242, 0.2184, 0.2594, 0.1688, 0.2106},
+      { 0.2178, 0.2235, 0.2712, 0.2499, 0.2546, 0.2186, 0.2311, 0.2634, 0.2679, 0.1658, 0.1779, 0.2728, 0.2993, 0.1999, 0.2093, 0.1997, 0.2162, 0.2307, 0.1631, 0.2047},
+      { 0.2832, 0.2716, 0.2967, 0.2451, 0.2599, 0.2095, 0.2267, 0.2679, 0.2880, 0.1611, 0.1878, 0.2970, 0.3283, 0.2140, 0.2310, 0.2438, 0.2340, 0.2584, 0.1853, 0.1807},
+      { 0.1139, 0.0976, 0.2181, 0.2501, 0.1964, 0.1474, 0.1505, 0.1658, 0.1611, 0.1268, 0.1179, 0.2410, 0.2366, 0.1664, 0.1762, 0.1892, 0.2122, 0.2252, 0.1591, 0.2253},
+      { 0.1360, 0.1410, 0.2442, 0.2119, 0.2110, 0.1470, 0.1580, 0.1779, 0.1878, 0.1179, 0.1645, 0.2744, 0.2965, 0.1486, 0.1619, 0.1713, 0.1852, 0.2321, 0.1147, 0.1624},
+      { 0.2383, 0.2627, 0.3531, 0.3319, 0.3575, 0.2507, 0.2724, 0.2728, 0.2970, 0.2410, 0.2744, 0.3698, 0.4002, 0.3287, 0.3499, 0.3535, 0.3594, 0.3818, 0.2474, 0.3279},
+      { 0.2167, 0.2727, 0.3442, 0.3026, 0.3758, 0.2565, 0.2796, 0.2993, 0.3283, 0.2366, 0.2965, 0.4002, 0.4426, 0.3102, 0.3407, 0.3444, 0.3644, 0.4232, 0.2270, 0.3197},
+      { 0.1191, 0.1663, 0.2780, 0.2883, 0.2682, 0.1904, 0.2371, 0.1999, 0.2140, 0.1664, 0.1486, 0.3287, 0.3102, 0.3169, 0.3187, 0.3005, 0.2768, 0.3202, 0.2202, 0.2990},
+      { 0.1337, 0.1802, 0.2942, 0.2817, 0.2765, 0.1942, 0.2434, 0.2093, 0.2310, 0.1762, 0.1619, 0.3499, 0.3407, 0.3187, 0.3336, 0.3209, 0.2922, 0.3390, 0.2340, 0.2990},
+      { 0.1412, 0.1950, 0.2955, 0.2562, 0.2812, 0.1870, 0.2242, 0.1997, 0.2438, 0.1892, 0.1713, 0.3535, 0.3444, 0.3005, 0.3209, 0.3201, 0.2906, 0.3376, 0.2290, 0.2793},
+      { 0.1505, 0.1766, 0.2839, 0.2913, 0.2842, 0.2004, 0.2184, 0.2162, 0.2340, 0.2122, 0.1852, 0.3594, 0.3644, 0.2768, 0.2922, 0.2906, 0.3283, 0.3436, 0.2269, 0.2946},
+      { 0.1641, 0.1918, 0.3035, 0.2756, 0.3074, 0.2298, 0.2594, 0.2307, 0.2584, 0.2252, 0.2321, 0.3818, 0.4232, 0.3202, 0.3390, 0.3376, 0.3436, 0.4075, 0.2279, 0.3126},
+      { 0.1050, 0.1310, 0.2463, 0.3015, 0.2061, 0.1426, 0.1688, 0.1631, 0.1853, 0.1591, 0.1147, 0.2474, 0.2270, 0.2202, 0.2340, 0.2290, 0.2269, 0.2279, 0.2119, 0.2134},
+      { 0.1171, 0.1055, 0.2649, 0.3073, 0.2566, 0.1764, 0.2106, 0.2047, 0.1807, 0.2253, 0.1624, 0.3279, 0.3197, 0.2990, 0.2990, 0.2793, 0.2946, 0.3126, 0.2134, 0.4106}},
+    {
+      { 0.1313, 0.1263, 0.3856, 0.3283, 0.2054, 0.2289, 0.2279, 0.2300, 0.2516, 0.1856, 0.1837, 0.2809, 0.2838, 0.2087, 0.2068, 0.2109, 0.2330, 0.2319, 0.1859, 0.2116},
+      { 0.1263, 0.1585, 0.3988, 0.3413, 0.1635, 0.2109, 0.2234, 0.2212, 0.2580, 0.1595, 0.1844, 0.2893, 0.3052, 0.2218, 0.2403, 0.2385, 0.2345, 0.2583, 0.1758, 0.1955},
+      { 0.3856, 0.3988, 0.2712, 0.2082, 0.1867, 0.2810, 0.2969, 0.2965, 0.3012, 0.2428, 0.2494, 0.3663, 0.3878, 0.3004, 0.3196, 0.3243, 0.3053, 0.3398, 0.2514, 0.2932},
+      { 0.3283, 0.3413, 0.2082, 0.1737, 0.1052, 0.2189, 0.2279, 0.2427, 0.2435, 0.1755, 0.1694, 0.3262, 0.3033, 0.2568, 0.2684, 0.2667, 0.2354, 0.2752, 0.2061, 0.2184},
+      { 0.2054, 0.1635, 0.1867, 0.1052, 0.3214, 0.3945, 0.3702, 0.2720, 0.2049, 0.3543, 0.3136, 0.3585, 0.3878, 0.3256, 0.3198, 0.2712, 0.3695, 0.3517, 0.3874, 0.4468},
+      { 0.2289, 0.2109, 0.2810, 0.2189, 0.3945, 0.2765, 0.2770, 0.3084, 0.2873, 0.2542, 0.2367, 0.3427, 0.3486, 0.2755, 0.2847, 0.2743, 0.3041, 0.3247, 0.2357, 0.3022},
+      { 0.2279, 0.2234, 0.2969, 0.2279, 0.3702, 0.2770, 0.3016, 0.3267, 0.2964, 0.2460, 0.2407, 0.3535, 0.3640, 0.3191, 0.3356, 0.3179, 0.3371, 0.3524, 0.2436, 0.3176},
+      { 0.2300, 0.2212, 0.2965, 0.2427, 0.2720, 0.3084, 0.3267, 0.3178, 0.2997, 0.2706, 0.2589, 0.3392, 0.3676, 0.2895, 0.2877, 0.2696, 0.3196, 0.3179, 0.2707, 0.3239},
+      { 0.2516, 0.2580, 0.3012, 0.2435, 0.2049, 0.2873, 0.2964, 0.2997, 0.2903, 0.2625, 0.2475, 0.3311, 0.3816, 0.2848, 0.2979, 0.2965, 0.3160, 0.3369, 0.2684, 0.2986},
+      { 0.1856, 0.1595, 0.2428, 0.1755, 0.3543, 0.2542, 0.2460, 0.2706, 0.2625, 0.2325, 0.2001, 0.3384, 0.3549, 0.2500, 0.2728, 0.2744, 0.3000, 0.3243, 0.2266, 0.3112},
+      { 0.1837, 0.1844, 0.2494, 0.1694, 0.3136, 0.2367, 0.2407, 0.2589, 0.2475, 0.2001, 0.2216, 0.3583, 0.3767, 0.2306, 0.2439, 0.2485, 0.2997, 0.3247, 0.1872, 0.2552},
+      { 0.2809, 0.2893, 0.3663, 0.3262, 0.3585, 0.3427, 0.3535, 0.3392, 0.3311, 0.3384, 0.3583, 0.4234, 0.4625, 0.3972, 0.4025, 0.4014, 0.4239, 0.4445, 0.3545, 0.4044},
+      { 0.2838, 0.3052, 0.3878, 0.3033, 0.3878, 0.3486, 0.3640, 0.3676, 0.3816, 0.3549, 0.3767, 0.4625, 0.4962, 0.3960, 0.4148, 0.4067, 0.4534, 0.4682, 0.3340, 0.4254},
+      { 0.2087, 0.2218, 0.3004, 0.2568, 0.3256, 0.2755, 0.3191, 0.2895, 0.2848, 0.2500, 0.2306, 0.3972, 0.3960, 0.3952, 0.4110, 0.3835, 0.3710, 0.4009, 0.3049, 0.3769},
+      { 0.2068, 0.2403, 0.3196, 0.2684, 0.3198, 0.2847, 0.3356, 0.2877, 0.2979, 0.2728, 0.2439, 0.4025, 0.4148, 0.4110, 0.4238, 0.4088, 0.3946, 0.4209, 0.3166, 0.3899},
+      { 0.2109, 0.2385, 0.3243, 0.2667, 0.2712, 0.2743, 0.3179, 0.2696, 0.2965, 0.2744, 0.2485, 0.4014, 0.4067, 0.3835, 0.4088, 0.3969, 0.3790, 0.4103, 0.3121, 0.3575},
+      { 0.2330, 0.2345, 0.3053, 0.2354, 0.3695, 0.3041, 0.3371, 0.3196, 0.3160, 0.3000, 0.2997, 0.4239, 0.4534, 0.3710, 0.3946, 0.3790, 0.4304, 0.4428, 0.3126, 0.3903},
+      { 0.2319, 0.2583, 0.3398, 0.2752, 0.3517, 0.3247, 0.3524, 0.3179, 0.3369, 0.3243, 0.3247, 0.4445, 0.4682, 0.4009, 0.4209, 0.4103, 0.4428, 0.4715, 0.3518, 0.4199},
+      { 0.1859, 0.1758, 0.2514, 0.2061, 0.3874, 0.2357, 0.2436, 0.2707, 0.2684, 0.2266, 0.1872, 0.3545, 0.3340, 0.3049, 0.3166, 0.3121, 0.3126, 0.3518, 0.2878, 0.3195},
+      { 0.2116, 0.1955, 0.2932, 0.2184, 0.4468, 0.3022, 0.3176, 0.3239, 0.2986, 0.3112, 0.2552, 0.4044, 0.4254, 0.3769, 0.3899, 0.3575, 0.3903, 0.4199, 0.3195, 0.4761}},
+    {
+      { 0.0920, 0.0985, 0.3502, 0.2988, 0.2592, 0.1656, 0.1755, 0.2107, 0.2421, 0.1561, 0.1427, 0.2660, 0.2733, 0.1629, 0.1675, 0.1749, 0.1880, 0.2121, 0.1425, 0.1900},
+      { 0.0985, 0.1545, 0.3770, 0.3326, 0.2484, 0.1221, 0.1654, 0.2052, 0.2448, 0.1248, 0.1456, 0.2719, 0.2891, 0.1799, 0.1918, 0.2020, 0.1854, 0.2110, 0.1363, 0.1429},
+      { 0.3502, 0.3770, 0.2531, 0.1882, 0.2778, 0.2131, 0.2403, 0.2483, 0.2780, 0.2016, 0.2184, 0.3504, 0.3534, 0.2580, 0.2753, 0.2813, 0.2603, 0.3048, 0.2056, 0.2330},
+      { 0.2988, 0.3326, 0.1882, 0.1461, 0.2016, 0.1383, 0.1704, 0.1904, 0.2308, 0.1235, 0.1302, 0.2997, 0.2771, 0.2002, 0.2115, 0.2191, 0.1882, 0.2257, 0.1426, 0.1431},
+      { 0.2592, 0.2484, 0.2778, 0.2016, 0.3274, 0.2801, 0.2952, 0.2691, 0.2627, 0.2582, 0.2485, 0.3894, 0.3880, 0.2942, 0.2964, 0.2921, 0.3113, 0.3487, 0.2357, 0.3041},
+      { 0.1656, 0.1221, 0.2131, 0.1383, 0.2801, 0.3298, 0.2908, 0.2588, 0.2013, 0.2922, 0.2390, 0.2872, 0.2934, 0.2759, 0.2671, 0.2373, 0.2923, 0.2916, 0.3301, 0.3773},
+      { 0.1755, 0.1654, 0.2403, 0.1704, 0.2952, 0.2908, 0.3024, 0.2759, 0.2412, 0.2854, 0.2240, 0.3171, 0.3320, 0.3164, 0.3131, 0.2885, 0.3165, 0.3281, 0.3046, 0.3692},
+      { 0.2107, 0.2052, 0.2483, 0.1904, 0.2691, 0.2588, 0.2759, 0.2842, 0.2581, 0.2397, 0.2216, 0.3131, 0.3362, 0.2499, 0.2427, 0.2381, 0.2842, 0.2823, 0.2269, 0.2879},
+      { 0.2421, 0.2448, 0.2780, 0.2308, 0.2627, 0.2013, 0.2412, 0.2581, 0.2759, 0.1965, 0.2111, 0.3136, 0.3487, 0.2435, 0.2582, 0.2592, 0.2587, 0.2900, 0.2008, 0.2305},
+      { 0.1561, 0.1248, 0.2016, 0.1235, 0.2582, 0.2922, 0.2854, 0.2397, 0.1965, 0.2817, 0.1946, 0.3031, 0.3103, 0.2812, 0.2756, 0.2635, 0.3072, 0.3151, 0.2766, 0.3617},
+      { 0.1427, 0.1456, 0.2184, 0.1302, 0.2485, 0.2390, 0.2240, 0.2216, 0.2111, 0.1946, 0.2068, 0.3290, 0.3463, 0.2116, 0.2233, 0.2180, 0.2587, 0.2841, 0.1878, 0.2501},
+      { 0.2660, 0.2719, 0.3504, 0.2997, 0.3894, 0.2872, 0.3171, 0.3131, 0.3136, 0.3031, 0.3290, 0.4149, 0.4545, 0.3656, 0.3862, 0.3890, 0.3985, 0.4411, 0.2973, 0.3691},
+      { 0.2733, 0.2891, 0.3534, 0.2771, 0.3880, 0.2934, 0.3320, 0.3362, 0.3487, 0.3103, 0.3463, 0.4545, 0.5023, 0.3698, 0.3993, 0.3913, 0.4476, 0.4727, 0.2858, 0.4048},
+      { 0.1629, 0.1799, 0.2580, 0.2002, 0.2942, 0.2759, 0.3164, 0.2499, 0.2435, 0.2812, 0.2116, 0.3656, 0.3698, 0.3952, 0.3940, 0.3738, 0.3689, 0.3936, 0.3462, 0.4044},
+      { 0.1675, 0.1918, 0.2753, 0.2115, 0.2964, 0.2671, 0.3131, 0.2427, 0.2582, 0.2756, 0.2233, 0.3862, 0.3993, 0.3940, 0.4100, 0.3930, 0.3831, 0.4121, 0.3258, 0.3907},
+      { 0.1749, 0.2020, 0.2813, 0.2191, 0.2921, 0.2373, 0.2885, 0.2381, 0.2592, 0.2635, 0.2180, 0.3890, 0.3913, 0.3738, 0.3930, 0.3908, 0.3724, 0.4082, 0.3035, 0.3521},
+      { 0.1880, 0.1854, 0.2603, 0.1882, 0.3113, 0.2923, 0.3165, 0.2842, 0.2587, 0.3072, 0.2587, 0.3985, 0.4476, 0.3689, 0.3831, 0.3724, 0.4333, 0.4325, 0.3189, 0.4095},
+      { 0.2121, 0.2110, 0.3048, 0.2257, 0.3487, 0.2916, 0.3281, 0.2823, 0.2900, 0.3151, 0.2841, 0.4411, 0.4727, 0.3936, 0.4121, 0.4082, 0.4325, 0.4669, 0.3161, 0.4194},
+      { 0.1425, 0.1363, 0.2056, 0.1426, 0.2357, 0.3301, 0.3046, 0.2269, 0.2008, 0.2766, 0.1878, 0.2973, 0.2858, 0.3462, 0.3258, 0.3035, 0.3189, 0.3161, 0.3747, 0.3867},
+      { 0.1900, 0.1429, 0.2330, 0.1431, 0.3041, 0.3773, 0.3692, 0.2879, 0.2305, 0.3617, 0.2501, 0.3691, 0.4048, 0.4044, 0.3907, 0.3521, 0.4095, 0.4194, 0.3867, 0.5641}},
+    {
+      { 0.0889, 0.0896, 0.3544, 0.3035, 0.2580, 0.1804, 0.1467, 0.2170, 0.2307, 0.1550, 0.1498, 0.2737, 0.2582, 0.1791, 0.1866, 0.1899, 0.1965, 0.2161, 0.1473, 0.1851},
+      { 0.0896, 0.1248, 0.3800, 0.3288, 0.2561, 0.1553, 0.1367, 0.1952, 0.2288, 0.1337, 0.1488, 0.2793, 0.2915, 0.1977, 0.2119, 0.2112, 0.2007, 0.2206, 0.1450, 0.1691},
+      { 0.3544, 0.3800, 0.2400, 0.1809, 0.2743, 0.2353, 0.2171, 0.2543, 0.2725, 0.2098, 0.2267, 0.3610, 0.3769, 0.2815, 0.2969, 0.2922, 0.2701, 0.3189, 0.2167, 0.2630},
+      { 0.3035, 0.3288, 0.1809, 0.1369, 0.2112, 0.1722, 0.1477, 0.1928, 0.2215, 0.1418, 0.1463, 0.3177, 0.2923, 0.2322, 0.2358, 0.2334, 0.2019, 0.2506, 0.1688, 0.1811},
+      { 0.2580, 0.2561, 0.2743, 0.2112, 0.3270, 0.2953, 0.2847, 0.2733, 0.2586, 0.2588, 0.2623, 0.3987, 0.4000, 0.3273, 0.3323, 0.3166, 0.3313, 0.3606, 0.2436, 0.3248},
+      { 0.1804, 0.1553, 0.2353, 0.1722, 0.2953, 0.3112, 0.3229, 0.2703, 0.2321, 0.2705, 0.2388, 0.3151, 0.3263, 0.3306, 0.3269, 0.2938, 0.3303, 0.3282, 0.3046, 0.3819},
+      { 0.1467, 0.1367, 0.2171, 0.1477, 0.2847, 0.3229, 0.3258, 0.2691, 0.2198, 0.2958, 0.2448, 0.3059, 0.3195, 0.3485, 0.3340, 0.3008, 0.3301, 0.3293, 0.3886, 0.4001},
+      { 0.2170, 0.1952, 0.2543, 0.1928, 0.2733, 0.2703, 0.2691, 0.2968, 0.2575, 0.2526, 0.2303, 0.3154, 0.3337, 0.2700, 0.2706, 0.2585, 0.3029, 0.2968, 0.2365, 0.3024},
+      { 0.2307, 0.2288, 0.2725, 0.2215, 0.2586, 0.2321, 0.2198, 0.2575, 0.2697, 0.2108, 0.2155, 0.3151, 0.3529, 0.2644, 0.2748, 0.2748, 0.2755, 0.3053, 0.2083, 0.2519},
+      { 0.1550, 0.1337, 0.2098, 0.1418, 0.2588, 0.2705, 0.2958, 0.2526, 0.2108, 0.2675, 0.2026, 0.3175, 0.3219, 0.3206, 0.3175, 0.3035, 0.3393, 0.3444, 0.2557, 0.3692},
+      { 0.1498, 0.1488, 0.2267, 0.1463, 0.2623, 0.2388, 0.2448, 0.2303, 0.2155, 0.2026, 0.2160, 0.3391, 0.3472, 0.2514, 0.2656, 0.2522, 0.2947, 0.3109, 0.2068, 0.2789},
+      { 0.2737, 0.2793, 0.3610, 0.3177, 0.3987, 0.3151, 0.3059, 0.3154, 0.3151, 0.3175, 0.3391, 0.4176, 0.4575, 0.3959, 0.4139, 0.4112, 0.4231, 0.4574, 0.3141, 0.3848},
+      { 0.2582, 0.2915, 0.3769, 0.2923, 0.4000, 0.3263, 0.3195, 0.3337, 0.3529, 0.3219, 0.3472, 0.4575, 0.4809, 0.3933, 0.4239, 0.4209, 0.4491, 0.4879, 0.3037, 0.4218},
+      { 0.1791, 0.1977, 0.2815, 0.2322, 0.3273, 0.3306, 0.3485, 0.2700, 0.2644, 0.3206, 0.2514, 0.3959, 0.3933, 0.4399, 0.4363, 0.4051, 0.3979, 0.4262, 0.4003, 0.4448},
+      { 0.1866, 0.2119, 0.2969, 0.2358, 0.3323, 0.3269, 0.3340, 0.2706, 0.2748, 0.3175, 0.2656, 0.4139, 0.4239, 0.4363, 0.4446, 0.4230, 0.4114, 0.4385, 0.3821, 0.4356},
+      { 0.1899, 0.2112, 0.2922, 0.2334, 0.3166, 0.2938, 0.3008, 0.2585, 0.2748, 0.3035, 0.2522, 0.4112, 0.4209, 0.4051, 0.4230, 0.4192, 0.4011, 0.4388, 0.3429, 0.3921},
+      { 0.1965, 0.2007, 0.2701, 0.2019, 0.3313, 0.3303, 0.3301, 0.3029, 0.2755, 0.3393, 0.2947, 0.4231, 0.4491, 0.3979, 0.4114, 0.4011, 0.4535, 0.4546, 0.3579, 0.4382},
+      { 0.2161, 0.2206, 0.3189, 0.2506, 0.3606, 0.3282, 0.3293, 0.2968, 0.3053, 0.3444, 0.3109, 0.4574, 0.4879, 0.4262, 0.4385, 0.4388, 0.4546, 0.4935, 0.3485, 0.4486},
+      { 0.1473, 0.1450, 0.2167, 0.1688, 0.2436, 0.3046, 0.3886, 0.2365, 0.2083, 0.2557, 0.2068, 0.3141, 0.3037, 0.4003, 0.3821, 0.3429, 0.3579, 0.3485, 0.3611, 0.4178},
+      { 0.1851, 0.1691, 0.2630, 0.1811, 0.3248, 0.3819, 0.4001, 0.3024, 0.2519, 0.3692, 0.2789, 0.3848, 0.4218, 0.4448, 0.4356, 0.3921, 0.4382, 0.4486, 0.4178, 0.5740}},
+    {
+      { 0.0944, 0.0928, 0.3477, 0.2950, 0.2625, 0.2165, 0.2014, 0.2040, 0.2293, 0.1635, 0.1561, 0.2582, 0.2444, 0.1612, 0.1613, 0.1698, 0.1957, 0.2016, 0.1705, 0.2180},
+      { 0.0928, 0.1395, 0.3672, 0.3223, 0.2463, 0.1682, 0.1798, 0.1581, 0.2374, 0.1195, 0.1582, 0.2698, 0.2719, 0.1622, 0.1830, 0.1919, 0.1850, 0.2022, 0.1281, 0.1441},
+      { 0.3477, 0.3672, 0.2545, 0.1951, 0.2695, 0.2440, 0.2491, 0.2255, 0.2780, 0.2067, 0.2287, 0.3589, 0.3433, 0.2564, 0.2744, 0.2871, 0.2738, 0.3124, 0.2193, 0.2591},
+      { 0.2950, 0.3223, 0.1951, 0.1493, 0.2029, 0.1804, 0.1941, 0.1666, 0.2337, 0.1439, 0.1550, 0.3015, 0.2614, 0.1981, 0.2127, 0.2217, 0.1932, 0.2345, 0.1631, 0.1804},
+      { 0.2625, 0.2463, 0.2695, 0.2029, 0.3191, 0.3068, 0.3152, 0.2927, 0.2621, 0.2607, 0.2783, 0.3760, 0.3790, 0.2973, 0.2914, 0.2964, 0.2998, 0.3532, 0.2707, 0.3321},
+      { 0.2165, 0.1682, 0.2440, 0.1804, 0.3068, 0.2595, 0.2676, 0.3360, 0.2398, 0.2228, 0.2102, 0.2980, 0.3031, 0.2408, 0.2523, 0.2420, 0.2773, 0.2899, 0.2269, 0.2926},
+      { 0.2014, 0.1798, 0.2491, 0.1941, 0.3152, 0.2676, 0.2814, 0.3137, 0.2545, 0.2203, 0.2202, 0.3097, 0.3092, 0.2825, 0.2858, 0.2705, 0.2833, 0.3059, 0.2365, 0.2937},
+      { 0.2040, 0.1581, 0.2255, 0.1666, 0.2927, 0.3360, 0.3137, 0.3087, 0.2589, 0.3119, 0.2946, 0.3175, 0.3215, 0.2931, 0.2807, 0.2544, 0.2957, 0.3085, 0.3539, 0.3778},
+      { 0.2293, 0.2374, 0.2780, 0.2337, 0.2621, 0.2398, 0.2545, 0.2589, 0.2755, 0.1975, 0.2277, 0.3127, 0.3361, 0.2370, 0.2565, 0.2578, 0.2684, 0.2986, 0.2149, 0.2345},
+      { 0.1635, 0.1195, 0.2067, 0.1439, 0.2607, 0.2228, 0.2203, 0.3119, 0.1975, 0.1930, 0.1748, 0.2744, 0.2760, 0.2021, 0.2125, 0.2343, 0.2625, 0.2674, 0.2277, 0.2980},
+      { 0.1561, 0.1582, 0.2287, 0.1550, 0.2783, 0.2102, 0.2202, 0.2946, 0.2277, 0.1748, 0.2324, 0.3351, 0.3447, 0.2046, 0.2309, 0.2222, 0.2654, 0.2851, 0.1486, 0.2291},
+      { 0.2582, 0.2698, 0.3589, 0.3015, 0.3760, 0.2980, 0.3097, 0.3175, 0.3127, 0.2744, 0.3351, 0.4049, 0.4573, 0.3370, 0.3641, 0.3665, 0.3942, 0.4163, 0.2798, 0.3577},
+      { 0.2444, 0.2719, 0.3433, 0.2614, 0.3790, 0.3031, 0.3092, 0.3215, 0.3361, 0.2760, 0.3447, 0.4573, 0.4801, 0.3507, 0.3683, 0.3626, 0.4182, 0.4541, 0.2783, 0.3549},
+      { 0.1612, 0.1622, 0.2564, 0.1981, 0.2973, 0.2408, 0.2825, 0.2931, 0.2370, 0.2021, 0.2046, 0.3370, 0.3507, 0.3301, 0.3448, 0.3256, 0.3255, 0.3570, 0.2590, 0.3297},
+      { 0.1613, 0.1830, 0.2744, 0.2127, 0.2914, 0.2523, 0.2858, 0.2807, 0.2565, 0.2125, 0.2309, 0.3641, 0.3683, 0.3448, 0.3541, 0.3466, 0.3355, 0.3811, 0.2647, 0.3420},
+      { 0.1698, 0.1919, 0.2871, 0.2217, 0.2964, 0.2420, 0.2705, 0.2544, 0.2578, 0.2343, 0.2222, 0.3665, 0.3626, 0.3256, 0.3466, 0.3462, 0.3344, 0.3721, 0.2605, 0.3194},
+      { 0.1957, 0.1850, 0.2738, 0.1932, 0.2998, 0.2773, 0.2833, 0.2957, 0.2684, 0.2625, 0.2654, 0.3942, 0.4182, 0.3255, 0.3355, 0.3344, 0.3834, 0.4033, 0.2693, 0.3634},
+      { 0.2016, 0.2022, 0.3124, 0.2345, 0.3532, 0.2899, 0.3059, 0.3085, 0.2986, 0.2674, 0.2851, 0.4163, 0.4541, 0.3570, 0.3811, 0.3721, 0.4033, 0.4354, 0.2803, 0.3755},
+      { 0.1705, 0.1281, 0.2193, 0.1631, 0.2707, 0.2269, 0.2365, 0.3539, 0.2149, 0.2277, 0.1486, 0.2798, 0.2783, 0.2590, 0.2647, 0.2605, 0.2693, 0.2803, 0.2366, 0.3126},
+      { 0.2180, 0.1441, 0.2591, 0.1804, 0.3321, 0.2926, 0.2937, 0.3778, 0.2345, 0.2980, 0.2291, 0.3577, 0.3549, 0.3297, 0.3420, 0.3194, 0.3634, 0.3755, 0.3126, 0.4971}},
+    {
+      { 0.1390, 0.1523, 0.3900, 0.3511, 0.2758, 0.2111, 0.2087, 0.2378, 0.2500, 0.1607, 0.1715, 0.2741, 0.2716, 0.1660, 0.1767, 0.1851, 0.2044, 0.2065, 0.1518, 0.1735},
+      { 0.1523, 0.1902, 0.4131, 0.3702, 0.2779, 0.2121, 0.2251, 0.2436, 0.2311, 0.1551, 0.1901, 0.2933, 0.2981, 0.2095, 0.2222, 0.2296, 0.2292, 0.2357, 0.1852, 0.1747},
+      { 0.3900, 0.4131, 0.2657, 0.2168, 0.2881, 0.2661, 0.2726, 0.2833, 0.2781, 0.2258, 0.2448, 0.3675, 0.3808, 0.2707, 0.2919, 0.3015, 0.2881, 0.3168, 0.2396, 0.2471},
+      { 0.3511, 0.3702, 0.2168, 0.1882, 0.2309, 0.2144, 0.2214, 0.2376, 0.2158, 0.1557, 0.1799, 0.3266, 0.3056, 0.2196, 0.2389, 0.2476, 0.2236, 0.2504, 0.1853, 0.1762},
+      { 0.2758, 0.2779, 0.2881, 0.2309, 0.3483, 0.3132, 0.3184, 0.2822, 0.2848, 0.2662, 0.2699, 0.3925, 0.4106, 0.3151, 0.3254, 0.3133, 0.3383, 0.3472, 0.2684, 0.3105},
+      { 0.2111, 0.2121, 0.2661, 0.2144, 0.3132, 0.2414, 0.2439, 0.2679, 0.3076, 0.2104, 0.1993, 0.2980, 0.3188, 0.2428, 0.2529, 0.2460, 0.2953, 0.2894, 0.2008, 0.2548},
+      { 0.2087, 0.2251, 0.2726, 0.2214, 0.3184, 0.2439, 0.2790, 0.2778, 0.3043, 0.2092, 0.2053, 0.3209, 0.3352, 0.2788, 0.2904, 0.2798, 0.3016, 0.3099, 0.2083, 0.2703},
+      { 0.2378, 0.2436, 0.2833, 0.2376, 0.2822, 0.2679, 0.2778, 0.2972, 0.2853, 0.2173, 0.2310, 0.3142, 0.3467, 0.2418, 0.2494, 0.2402, 0.2901, 0.2828, 0.2149, 0.2607},
+      { 0.2500, 0.2311, 0.2781, 0.2158, 0.2848, 0.3076, 0.3043, 0.2853, 0.2657, 0.2889, 0.2788, 0.3325, 0.3522, 0.3063, 0.2944, 0.2824, 0.3105, 0.3092, 0.3564, 0.3503},
+      { 0.1607, 0.1551, 0.2258, 0.1557, 0.2662, 0.2104, 0.2092, 0.2173, 0.2889, 0.1927, 0.1613, 0.3000, 0.3061, 0.2218, 0.2395, 0.2434, 0.2937, 0.2918, 0.1945, 0.2722},
+      { 0.1715, 0.1901, 0.2448, 0.1799, 0.2699, 0.1993, 0.2053, 0.2310, 0.2788, 0.1613, 0.2064, 0.3481, 0.3530, 0.2128, 0.2364, 0.2312, 0.2724, 0.2902, 0.1652, 0.2147},
+      { 0.2741, 0.2933, 0.3675, 0.3266, 0.3925, 0.2980, 0.3209, 0.3142, 0.3325, 0.3000, 0.3481, 0.4125, 0.4609, 0.3649, 0.3873, 0.3925, 0.4097, 0.4366, 0.2980, 0.3685},
+      { 0.2716, 0.2981, 0.3808, 0.3056, 0.4106, 0.3188, 0.3352, 0.3467, 0.3522, 0.3061, 0.3530, 0.4609, 0.4890, 0.3685, 0.4042, 0.3867, 0.4152, 0.4775, 0.2782, 0.3929},
+      { 0.1660, 0.2095, 0.2707, 0.2196, 0.3151, 0.2428, 0.2788, 0.2418, 0.3063, 0.2218, 0.2128, 0.3649, 0.3685, 0.3502, 0.3618, 0.3487, 0.3378, 0.3703, 0.2671, 0.3381},
+      { 0.1767, 0.2222, 0.2919, 0.2389, 0.3254, 0.2529, 0.2904, 0.2494, 0.2944, 0.2395, 0.2364, 0.3873, 0.4042, 0.3618, 0.3769, 0.3676, 0.3645, 0.3915, 0.2820, 0.3500},
+      { 0.1851, 0.2296, 0.3015, 0.2476, 0.3133, 0.2460, 0.2798, 0.2402, 0.2824, 0.2434, 0.2312, 0.3925, 0.3867, 0.3487, 0.3676, 0.3639, 0.3512, 0.3871, 0.2786, 0.3288},
+      { 0.2044, 0.2292, 0.2881, 0.2236, 0.3383, 0.2953, 0.3016, 0.2901, 0.3105, 0.2937, 0.2724, 0.4097, 0.4152, 0.3378, 0.3645, 0.3512, 0.4106, 0.4157, 0.3081, 0.3831},
+      { 0.2065, 0.2357, 0.3168, 0.2504, 0.3472, 0.2894, 0.3099, 0.2828, 0.3092, 0.2918, 0.2902, 0.4366, 0.4775, 0.3703, 0.3915, 0.3871, 0.4157, 0.4481, 0.2872, 0.3725},
+      { 0.1518, 0.1852, 0.2396, 0.1853, 0.2684, 0.2008, 0.2083, 0.2149, 0.3564, 0.1945, 0.1652, 0.2980, 0.2782, 0.2671, 0.2820, 0.2786, 0.3081, 0.2872, 0.2500, 0.2738},
+      { 0.1735, 0.1747, 0.2471, 0.1762, 0.3105, 0.2548, 0.2703, 0.2607, 0.3503, 0.2722, 0.2147, 0.3685, 0.3929, 0.3381, 0.3500, 0.3288, 0.3831, 0.3725, 0.2738, 0.4742}},
+    {
+      { 0.0526, 0.0540, 0.3290, 0.2759, 0.2328, 0.1625, 0.1614, 0.1797, 0.1942, 0.0708, 0.1303, 0.2421, 0.2272, 0.1269, 0.1360, 0.1674, 0.1696, 0.1841, 0.1275, 0.2062},
+      { 0.0540, 0.1049, 0.3474, 0.2894, 0.2208, 0.1461, 0.1597, 0.1566, 0.1995, 0.0304, 0.1327, 0.2583, 0.2647, 0.1492, 0.1738, 0.1840, 0.1734, 0.1892, 0.1227, 0.1529},
+      { 0.3290, 0.3474, 0.2415, 0.1794, 0.2601, 0.2185, 0.2266, 0.2395, 0.2613, 0.1435, 0.2178, 0.3441, 0.3485, 0.2311, 0.2520, 0.2726, 0.2565, 0.2866, 0.1973, 0.2400},
+      { 0.2759, 0.2894, 0.1794, 0.1194, 0.1752, 0.1537, 0.1578, 0.1780, 0.2039, 0.0778, 0.1330, 0.2875, 0.2608, 0.1742, 0.1929, 0.2209, 0.1844, 0.2119, 0.1591, 0.1783},
+      { 0.2328, 0.2208, 0.2601, 0.1752, 0.3099, 0.2704, 0.2728, 0.2370, 0.2323, 0.1912, 0.2320, 0.3692, 0.3534, 0.2489, 0.2663, 0.2808, 0.2807, 0.3401, 0.2266, 0.2975},
+      { 0.1625, 0.1461, 0.2185, 0.1537, 0.2704, 0.2860, 0.2639, 0.2324, 0.2102, 0.2872, 0.2113, 0.2863, 0.3055, 0.2568, 0.2578, 0.2482, 0.2926, 0.2933, 0.2766, 0.3330},
+      { 0.1614, 0.1597, 0.2266, 0.1578, 0.2728, 0.2639, 0.2750, 0.2301, 0.2280, 0.2517, 0.2063, 0.3092, 0.3353, 0.2835, 0.2925, 0.2846, 0.3077, 0.3168, 0.2557, 0.3121},
+      { 0.1797, 0.1566, 0.2395, 0.1780, 0.2370, 0.2324, 0.2301, 0.2464, 0.2201, 0.1874, 0.2061, 0.2727, 0.2925, 0.1946, 0.2017, 0.2367, 0.2648, 0.2613, 0.2277, 0.3024},
+      { 0.1942, 0.1995, 0.2613, 0.2039, 0.2323, 0.2102, 0.2280, 0.2201, 0.2426, 0.1336, 0.2046, 0.3043, 0.3277, 0.2235, 0.2435, 0.2634, 0.2516, 0.2753, 0.1945, 0.2416},
+      { 0.0708, 0.0304, 0.1435, 0.0778, 0.1912, 0.2872, 0.2517, 0.1874, 0.1336, 0.2945, 0.1897, 0.2482, 0.2517, 0.2513, 0.2262, 0.2475, 0.2924, 0.2692, 0.3566, 0.3843},
+      { 0.1303, 0.1327, 0.2178, 0.1330, 0.2320, 0.2113, 0.2063, 0.2061, 0.2046, 0.1897, 0.1714, 0.3147, 0.3301, 0.1831, 0.2077, 0.2138, 0.2543, 0.2688, 0.1644, 0.2392},
+      { 0.2421, 0.2583, 0.3441, 0.2875, 0.3692, 0.2863, 0.3092, 0.2727, 0.3043, 0.2482, 0.3147, 0.4094, 0.4417, 0.3592, 0.3745, 0.3807, 0.3926, 0.4333, 0.2953, 0.3363},
+      { 0.2272, 0.2647, 0.3485, 0.2608, 0.3534, 0.3055, 0.3353, 0.2925, 0.3277, 0.2517, 0.3301, 0.4417, 0.4905, 0.3628, 0.3758, 0.3877, 0.4419, 0.4835, 0.2912, 0.3695},
+      { 0.1269, 0.1492, 0.2311, 0.1742, 0.2489, 0.2568, 0.2835, 0.1946, 0.2235, 0.2513, 0.1831, 0.3592, 0.3628, 0.3740, 0.3819, 0.3661, 0.3635, 0.3875, 0.3354, 0.3755},
+      { 0.1360, 0.1738, 0.2520, 0.1929, 0.2663, 0.2578, 0.2925, 0.2017, 0.2435, 0.2262, 0.2077, 0.3745, 0.3758, 0.3819, 0.4029, 0.3827, 0.3746, 0.3990, 0.3258, 0.3816},
+      { 0.1674, 0.1840, 0.2726, 0.2209, 0.2808, 0.2482, 0.2846, 0.2367, 0.2634, 0.2475, 0.2138, 0.3807, 0.3877, 0.3661, 0.3827, 0.3815, 0.3597, 0.3997, 0.3089, 0.3462},
+      { 0.1696, 0.1734, 0.2565, 0.1844, 0.2807, 0.2926, 0.3077, 0.2648, 0.2516, 0.2924, 0.2543, 0.3926, 0.4419, 0.3635, 0.3746, 0.3597, 0.4263, 0.4224, 0.3203, 0.4008},
+      { 0.1841, 0.1892, 0.2866, 0.2119, 0.3401, 0.2933, 0.3168, 0.2613, 0.2753, 0.2692, 0.2688, 0.4333, 0.4835, 0.3875, 0.3990, 0.3997, 0.4224, 0.4653, 0.3191, 0.3965},
+      { 0.1275, 0.1227, 0.1973, 0.1591, 0.2266, 0.2766, 0.2557, 0.2277, 0.1945, 0.3566, 0.1644, 0.2953, 0.2912, 0.3354, 0.3258, 0.3089, 0.3203, 0.3191, 0.3766, 0.3622},
+      { 0.2062, 0.1529, 0.2400, 0.1783, 0.2975, 0.3330, 0.3121, 0.3024, 0.2416, 0.3843, 0.2392, 0.3363, 0.3695, 0.3755, 0.3816, 0.3462, 0.4008, 0.3965, 0.3622, 0.5168}},
+    {
+      { 0.0948, 0.1022, 0.3639, 0.3160, 0.2498, 0.1684, 0.1650, 0.2025, 0.2482, 0.1116, 0.1309, 0.2496, 0.2405, 0.1239, 0.1316, 0.1401, 0.1454, 0.1678, 0.0772, 0.1104},
+      { 0.1022, 0.1275, 0.3634, 0.3178, 0.2443, 0.1546, 0.1622, 0.2020, 0.2304, 0.0996, 0.1354, 0.2648, 0.2630, 0.1513, 0.1606, 0.1674, 0.1555, 0.1871, 0.1021, 0.0882},
+      { 0.3639, 0.3634, 0.2379, 0.1799, 0.2676, 0.2208, 0.2412, 0.2614, 0.2746, 0.1905, 0.2184, 0.3512, 0.3606, 0.2391, 0.2586, 0.2681, 0.2450, 0.3063, 0.1733, 0.2301},
+      { 0.3160, 0.3178, 0.1799, 0.1427, 0.2061, 0.1534, 0.1729, 0.2095, 0.2168, 0.1259, 0.1398, 0.3016, 0.2920, 0.1919, 0.1969, 0.1990, 0.1680, 0.2281, 0.1147, 0.1333},
+      { 0.2498, 0.2443, 0.2676, 0.2061, 0.3095, 0.2539, 0.2659, 0.2667, 0.2549, 0.2071, 0.2475, 0.3661, 0.3782, 0.2735, 0.2775, 0.2739, 0.2840, 0.3162, 0.1872, 0.2570},
+      { 0.1684, 0.1546, 0.2208, 0.1534, 0.2539, 0.2247, 0.2292, 0.2178, 0.2087, 0.1915, 0.2709, 0.2698, 0.2888, 0.2231, 0.2329, 0.2213, 0.2542, 0.2605, 0.1878, 0.2505},
+      { 0.1650, 0.1622, 0.2412, 0.1729, 0.2659, 0.2292, 0.2444, 0.2396, 0.2402, 0.2030, 0.2530, 0.3024, 0.3050, 0.2676, 0.2785, 0.2557, 0.2761, 0.2890, 0.2068, 0.2924},
+      { 0.2025, 0.2020, 0.2614, 0.2095, 0.2667, 0.2178, 0.2396, 0.2638, 0.2503, 0.1891, 0.2120, 0.2974, 0.3286, 0.2163, 0.2202, 0.2088, 0.2515, 0.2592, 0.1486, 0.2309},
+      { 0.2482, 0.2304, 0.2746, 0.2168, 0.2549, 0.2087, 0.2402, 0.2503, 0.2571, 0.1796, 0.2010, 0.3075, 0.3394, 0.2219, 0.2549, 0.2458, 0.2451, 0.2759, 0.1652, 0.1965},
+      { 0.1116, 0.0996, 0.1905, 0.1259, 0.2071, 0.1915, 0.2030, 0.1891, 0.1796, 0.1677, 0.2360, 0.2636, 0.2777, 0.2139, 0.2206, 0.2068, 0.2500, 0.2628, 0.1644, 0.2415},
+      { 0.1309, 0.1354, 0.2184, 0.1398, 0.2475, 0.2709, 0.2530, 0.2120, 0.2010, 0.2360, 0.2196, 0.3318, 0.3447, 0.2667, 0.2554, 0.2348, 0.2876, 0.3038, 0.2814, 0.3014},
+      { 0.2496, 0.2648, 0.3512, 0.3016, 0.3661, 0.2698, 0.3024, 0.2974, 0.3075, 0.2636, 0.3318, 0.3969, 0.4486, 0.3418, 0.3727, 0.3694, 0.3789, 0.4301, 0.2561, 0.3344},
+      { 0.2405, 0.2630, 0.3606, 0.2920, 0.3782, 0.2888, 0.3050, 0.3286, 0.3394, 0.2777, 0.3447, 0.4486, 0.4505, 0.3565, 0.3827, 0.3842, 0.4258, 0.4647, 0.2584, 0.3376},
+      { 0.1239, 0.1513, 0.2391, 0.1919, 0.2735, 0.2231, 0.2676, 0.2163, 0.2219, 0.2139, 0.2667, 0.3418, 0.3565, 0.3540, 0.3580, 0.3428, 0.3282, 0.3672, 0.2810, 0.3458},
+      { 0.1316, 0.1606, 0.2586, 0.1969, 0.2775, 0.2329, 0.2785, 0.2202, 0.2549, 0.2206, 0.2554, 0.3727, 0.3827, 0.3580, 0.3789, 0.3592, 0.3438, 0.3906, 0.2696, 0.3323},
+      { 0.1401, 0.1674, 0.2681, 0.1990, 0.2739, 0.2213, 0.2557, 0.2088, 0.2458, 0.2068, 0.2348, 0.3694, 0.3842, 0.3428, 0.3592, 0.3609, 0.3427, 0.3878, 0.2494, 0.3124},
+      { 0.1454, 0.1555, 0.2450, 0.1680, 0.2840, 0.2542, 0.2761, 0.2515, 0.2451, 0.2500, 0.2876, 0.3789, 0.4258, 0.3282, 0.3438, 0.3427, 0.3822, 0.4148, 0.2568, 0.3431},
+      { 0.1678, 0.1871, 0.3063, 0.2281, 0.3162, 0.2605, 0.2890, 0.2592, 0.2759, 0.2628, 0.3038, 0.4301, 0.4647, 0.3672, 0.3906, 0.3878, 0.4148, 0.4507, 0.2634, 0.3684},
+      { 0.0772, 0.1021, 0.1733, 0.1147, 0.1872, 0.1878, 0.2068, 0.1486, 0.1652, 0.1644, 0.2814, 0.2561, 0.2584, 0.2810, 0.2696, 0.2494, 0.2568, 0.2634, 0.2580, 0.2894},
+      { 0.1104, 0.0882, 0.2301, 0.1333, 0.2570, 0.2505, 0.2924, 0.2309, 0.1965, 0.2415, 0.3014, 0.3344, 0.3376, 0.3458, 0.3323, 0.3124, 0.3431, 0.3684, 0.2894, 0.4937}},
+    {
+      { 0.2060, 0.1816, 0.4284, 0.3560, 0.3183, 0.2834, 0.2781, 0.2855, 0.2976, 0.2413, 0.2393, 0.2793, 0.3168, 0.2445, 0.2503, 0.2498, 0.2666, 0.2616, 0.2094, 0.2687},
+      { 0.1816, 0.2041, 0.4369, 0.3698, 0.3031, 0.2581, 0.2687, 0.2648, 0.2899, 0.2228, 0.2325, 0.2578, 0.3375, 0.2719, 0.2865, 0.2781, 0.2762, 0.2673, 0.2371, 0.2607},
+      { 0.4284, 0.4369, 0.3038, 0.2337, 0.3241, 0.3245, 0.3435, 0.3348, 0.3409, 0.3001, 0.3034, 0.3407, 0.4133, 0.3442, 0.3610, 0.3569, 0.3519, 0.3539, 0.2929, 0.3351},
+      { 0.3560, 0.3698, 0.2337, 0.2042, 0.2596, 0.2565, 0.2756, 0.2751, 0.2822, 0.2289, 0.2225, 0.2867, 0.3366, 0.2969, 0.3051, 0.3054, 0.2831, 0.2874, 0.2474, 0.2752},
+      { 0.3183, 0.3031, 0.3241, 0.2596, 0.3944, 0.4017, 0.3963, 0.3236, 0.3189, 0.3347, 0.3230, 0.4034, 0.4417, 0.3871, 0.3918, 0.3886, 0.4042, 0.4058, 0.3545, 0.4064},
+      { 0.2834, 0.2581, 0.3245, 0.2565, 0.4017, 0.3377, 0.3401, 0.3450, 0.3322, 0.3125, 0.3032, 0.4062, 0.4186, 0.3489, 0.3564, 0.3537, 0.3840, 0.4152, 0.2973, 0.3585},
+      { 0.2781, 0.2687, 0.3435, 0.2756, 0.3963, 0.3401, 0.3730, 0.3631, 0.3422, 0.3117, 0.2990, 0.3923, 0.4209, 0.3949, 0.4093, 0.3960, 0.4049, 0.4198, 0.3141, 0.3869},
+      { 0.2855, 0.2648, 0.3348, 0.2751, 0.3236, 0.3450, 0.3631, 0.3720, 0.3376, 0.3025, 0.2934, 0.3304, 0.3917, 0.3217, 0.3203, 0.3187, 0.3708, 0.3549, 0.2798, 0.3309},
+      { 0.2976, 0.2899, 0.3409, 0.2822, 0.3189, 0.3322, 0.3422, 0.3376, 0.3347, 0.3032, 0.2915, 0.3182, 0.3933, 0.3303, 0.3452, 0.3510, 0.3521, 0.3440, 0.2980, 0.3339},
+      { 0.2413, 0.2228, 0.3001, 0.2289, 0.3347, 0.3125, 0.3117, 0.3025, 0.3032, 0.3057, 0.2684, 0.3957, 0.4104, 0.3467, 0.3646, 0.3659, 0.3955, 0.4181, 0.2953, 0.3811},
+      { 0.2393, 0.2325, 0.3034, 0.2225, 0.3230, 0.3032, 0.2990, 0.2934, 0.2915, 0.2684, 0.2846, 0.3883, 0.4454, 0.3000, 0.3305, 0.3238, 0.3703, 0.3757, 0.2561, 0.3332},
+      { 0.2793, 0.2578, 0.3407, 0.2867, 0.4034, 0.4062, 0.3923, 0.3304, 0.3182, 0.3957, 0.3883, 0.4399, 0.4739, 0.4606, 0.4543, 0.4378, 0.4771, 0.4815, 0.4795, 0.4812},
+      { 0.3168, 0.3375, 0.4133, 0.3366, 0.4417, 0.4186, 0.4209, 0.3917, 0.3933, 0.4104, 0.4454, 0.4739, 0.5251, 0.4762, 0.4870, 0.4776, 0.5237, 0.5350, 0.4385, 0.4997},
+      { 0.2445, 0.2719, 0.3442, 0.2969, 0.3871, 0.3489, 0.3949, 0.3217, 0.3303, 0.3467, 0.3000, 0.4606, 0.4762, 0.4958, 0.5037, 0.4859, 0.4745, 0.4888, 0.4025, 0.4724},
+      { 0.2503, 0.2865, 0.3610, 0.3051, 0.3918, 0.3564, 0.4093, 0.3203, 0.3452, 0.3646, 0.3305, 0.4543, 0.4870, 0.5037, 0.5224, 0.5066, 0.4936, 0.4963, 0.4141, 0.4822},
+      { 0.2498, 0.2781, 0.3569, 0.3054, 0.3886, 0.3537, 0.3960, 0.3187, 0.3510, 0.3659, 0.3238, 0.4378, 0.4776, 0.4859, 0.5066, 0.4982, 0.4860, 0.4846, 0.4164, 0.4541},
+      { 0.2666, 0.2762, 0.3519, 0.2831, 0.4042, 0.3840, 0.4049, 0.3708, 0.3521, 0.3955, 0.3703, 0.4771, 0.5237, 0.4745, 0.4936, 0.4860, 0.5325, 0.5155, 0.4160, 0.4826},
+      { 0.2616, 0.2673, 0.3539, 0.2874, 0.4058, 0.4152, 0.4198, 0.3549, 0.3440, 0.4181, 0.3757, 0.4815, 0.5350, 0.4888, 0.4963, 0.4846, 0.5155, 0.5250, 0.4688, 0.5131},
+      { 0.2094, 0.2371, 0.2929, 0.2474, 0.3545, 0.2973, 0.3141, 0.2798, 0.2980, 0.2953, 0.2561, 0.4795, 0.4385, 0.4025, 0.4141, 0.4164, 0.4160, 0.4688, 0.3689, 0.4115},
+      { 0.2687, 0.2607, 0.3351, 0.2752, 0.4064, 0.3585, 0.3869, 0.3309, 0.3339, 0.3811, 0.3332, 0.4812, 0.4997, 0.4724, 0.4822, 0.4541, 0.4826, 0.5131, 0.4115, 0.6173}},
+    {
+      { 0.1858, 0.1693, 0.4245, 0.3563, 0.3326, 0.2823, 0.2680, 0.2895, 0.2967, 0.2450, 0.2409, 0.3483, 0.2738, 0.2467, 0.2440, 0.2435, 0.2613, 0.2685, 0.2024, 0.2587},
+      { 0.1693, 0.1920, 0.4338, 0.3646, 0.3149, 0.2714, 0.2752, 0.2716, 0.2925, 0.2017, 0.2299, 0.3394, 0.2886, 0.2596, 0.2759, 0.2725, 0.2817, 0.2787, 0.2231, 0.2435},
+      { 0.4245, 0.4338, 0.3049, 0.2414, 0.3330, 0.3315, 0.3470, 0.3434, 0.3500, 0.3026, 0.3152, 0.4107, 0.3671, 0.3344, 0.3509, 0.3586, 0.3556, 0.3782, 0.2832, 0.3346},
+      { 0.3563, 0.3646, 0.2414, 0.2021, 0.2680, 0.2593, 0.2727, 0.2556, 0.2795, 0.2140, 0.2266, 0.3713, 0.2786, 0.2821, 0.2947, 0.2928, 0.2725, 0.3153, 0.2270, 0.2687},
+      { 0.3326, 0.3149, 0.3330, 0.2680, 0.4396, 0.3956, 0.4084, 0.3455, 0.3370, 0.3439, 0.3303, 0.4642, 0.4235, 0.3902, 0.3966, 0.4067, 0.4495, 0.4333, 0.3340, 0.3890},
+      { 0.2823, 0.2714, 0.3315, 0.2593, 0.3956, 0.3396, 0.3438, 0.3501, 0.3201, 0.3200, 0.2953, 0.4194, 0.4534, 0.3484, 0.3570, 0.3432, 0.3836, 0.4214, 0.2858, 0.3652},
+      { 0.2680, 0.2752, 0.3470, 0.2727, 0.4084, 0.3438, 0.3701, 0.3525, 0.3542, 0.3298, 0.3070, 0.4240, 0.4270, 0.3974, 0.4163, 0.4019, 0.4184, 0.4342, 0.3037, 0.3883},
+      { 0.2895, 0.2716, 0.3434, 0.2556, 0.3455, 0.3501, 0.3525, 0.4005, 0.3425, 0.3137, 0.3074, 0.3839, 0.3407, 0.3150, 0.3179, 0.3182, 0.3766, 0.3604, 0.2783, 0.3414},
+      { 0.2967, 0.2925, 0.3500, 0.2795, 0.3370, 0.3201, 0.3542, 0.3425, 0.3406, 0.2932, 0.3096, 0.3804, 0.3576, 0.3251, 0.3445, 0.3473, 0.3642, 0.3727, 0.2782, 0.3272},
+      { 0.2450, 0.2017, 0.3026, 0.2140, 0.3439, 0.3200, 0.3298, 0.3137, 0.2932, 0.2988, 0.2765, 0.4050, 0.4066, 0.3479, 0.3647, 0.3589, 0.4047, 0.4004, 0.2912, 0.3605},
+      { 0.2409, 0.2299, 0.3152, 0.2266, 0.3303, 0.2953, 0.3070, 0.3074, 0.3096, 0.2765, 0.3043, 0.4470, 0.4427, 0.3096, 0.3242, 0.3295, 0.3805, 0.3907, 0.2584, 0.3429},
+      { 0.3483, 0.3394, 0.4107, 0.3713, 0.4642, 0.4194, 0.4240, 0.3839, 0.3804, 0.4050, 0.4470, 0.5074, 0.4988, 0.4915, 0.5147, 0.5058, 0.5257, 0.5357, 0.4385, 0.4751},
+      { 0.2738, 0.2886, 0.3671, 0.2786, 0.4235, 0.4534, 0.4270, 0.3407, 0.3576, 0.4066, 0.4427, 0.4988, 0.5166, 0.4918, 0.4965, 0.4651, 0.5197, 0.5276, 0.5005, 0.5460},
+      { 0.2467, 0.2596, 0.3344, 0.2821, 0.3902, 0.3484, 0.3974, 0.3150, 0.3251, 0.3479, 0.3096, 0.4915, 0.4918, 0.4899, 0.5138, 0.5000, 0.4792, 0.5219, 0.3852, 0.4586},
+      { 0.2440, 0.2759, 0.3509, 0.2947, 0.3966, 0.3570, 0.4163, 0.3179, 0.3445, 0.3647, 0.3242, 0.5147, 0.4965, 0.5138, 0.5463, 0.5342, 0.5164, 0.5359, 0.4089, 0.4845},
+      { 0.2435, 0.2725, 0.3586, 0.2928, 0.4067, 0.3432, 0.4019, 0.3182, 0.3473, 0.3589, 0.3295, 0.5058, 0.4651, 0.5000, 0.5342, 0.5318, 0.5099, 0.5326, 0.4044, 0.4741},
+      { 0.2613, 0.2817, 0.3556, 0.2725, 0.4495, 0.3836, 0.4184, 0.3766, 0.3642, 0.4047, 0.3805, 0.5257, 0.5197, 0.4792, 0.5164, 0.5099, 0.5644, 0.5597, 0.4040, 0.4913},
+      { 0.2685, 0.2787, 0.3782, 0.3153, 0.4333, 0.4214, 0.4342, 0.3604, 0.3727, 0.4004, 0.3907, 0.5357, 0.5276, 0.5219, 0.5359, 0.5326, 0.5597, 0.5709, 0.4595, 0.5218},
+      { 0.2024, 0.2231, 0.2832, 0.2270, 0.3340, 0.2858, 0.3037, 0.2783, 0.2782, 0.2912, 0.2584, 0.4385, 0.5005, 0.3852, 0.4089, 0.4044, 0.4040, 0.4595, 0.3470, 0.3925},
+      { 0.2587, 0.2435, 0.3346, 0.2687, 0.3890, 0.3652, 0.3883, 0.3414, 0.3272, 0.3605, 0.3429, 0.4751, 0.5460, 0.4586, 0.4845, 0.4741, 0.4913, 0.5218, 0.3925, 0.5503}},
+    {
+      { 0.1281, 0.1164, 0.3864, 0.3289, 0.3000, 0.2403, 0.2165, 0.2414, 0.2509, 0.2018, 0.1880, 0.3073, 0.2896, 0.1554, 0.1676, 0.1925, 0.2093, 0.2126, 0.1632, 0.1992},
+      { 0.1164, 0.1401, 0.4058, 0.3429, 0.2859, 0.2197, 0.2207, 0.2290, 0.2398, 0.1828, 0.1866, 0.3056, 0.3100, 0.1746, 0.1930, 0.2141, 0.2187, 0.2392, 0.1932, 0.2033},
+      { 0.3864, 0.4058, 0.2521, 0.1950, 0.3079, 0.2801, 0.2944, 0.2912, 0.3029, 0.2593, 0.2646, 0.3921, 0.3999, 0.2683, 0.2921, 0.3123, 0.3004, 0.3434, 0.2682, 0.3004},
+      { 0.3289, 0.3429, 0.1950, 0.1606, 0.2541, 0.2246, 0.2269, 0.2285, 0.2474, 0.1898, 0.1825, 0.3452, 0.3265, 0.2162, 0.2390, 0.2586, 0.2325, 0.2787, 0.2202, 0.2379},
+      { 0.3000, 0.2859, 0.3079, 0.2541, 0.3763, 0.3699, 0.3773, 0.3262, 0.3047, 0.3106, 0.2914, 0.4367, 0.4324, 0.3352, 0.3553, 0.3630, 0.3783, 0.4061, 0.3049, 0.3687},
+      { 0.2403, 0.2197, 0.2801, 0.2246, 0.3699, 0.3758, 0.3847, 0.3397, 0.2968, 0.3214, 0.2883, 0.3647, 0.3763, 0.3776, 0.3725, 0.3512, 0.3830, 0.3777, 0.3462, 0.4177},
+      { 0.2165, 0.2207, 0.2944, 0.2269, 0.3773, 0.3847, 0.3990, 0.3511, 0.3023, 0.3435, 0.2916, 0.3929, 0.4053, 0.4092, 0.4158, 0.4027, 0.4162, 0.4168, 0.4003, 0.4560},
+      { 0.2414, 0.2290, 0.2912, 0.2285, 0.3262, 0.3397, 0.3511, 0.3593, 0.3019, 0.2882, 0.2661, 0.3438, 0.3688, 0.2459, 0.2644, 0.2723, 0.3208, 0.3152, 0.2590, 0.3168},
+      { 0.2509, 0.2398, 0.3029, 0.2474, 0.3047, 0.2968, 0.3023, 0.3019, 0.2898, 0.2755, 0.2639, 0.3580, 0.3855, 0.2505, 0.2693, 0.2979, 0.3122, 0.3307, 0.2671, 0.2986},
+      { 0.2018, 0.1828, 0.2593, 0.1898, 0.3106, 0.3214, 0.3435, 0.2882, 0.2755, 0.3334, 0.2656, 0.3972, 0.3961, 0.3848, 0.4001, 0.3848, 0.4161, 0.4289, 0.3354, 0.4190},
+      { 0.1880, 0.1866, 0.2646, 0.1825, 0.2914, 0.2883, 0.2916, 0.2661, 0.2639, 0.2656, 0.2434, 0.3699, 0.3887, 0.2737, 0.2863, 0.2946, 0.3307, 0.3327, 0.2810, 0.3441},
+      { 0.3073, 0.3056, 0.3921, 0.3452, 0.4367, 0.3647, 0.3929, 0.3438, 0.3580, 0.3972, 0.3699, 0.4652, 0.5080, 0.4486, 0.4716, 0.4848, 0.4886, 0.5189, 0.4025, 0.4700},
+      { 0.2896, 0.3100, 0.3999, 0.3265, 0.4324, 0.3763, 0.4053, 0.3688, 0.3855, 0.3961, 0.3887, 0.5080, 0.5364, 0.4442, 0.4793, 0.4919, 0.5128, 0.5531, 0.3852, 0.4876},
+      { 0.1554, 0.1746, 0.2683, 0.2162, 0.3352, 0.3776, 0.4092, 0.2459, 0.2505, 0.3848, 0.2737, 0.4486, 0.4442, 0.5310, 0.5189, 0.4937, 0.4661, 0.4994, 0.5052, 0.5401},
+      { 0.1676, 0.1930, 0.2921, 0.2390, 0.3553, 0.3725, 0.4158, 0.2644, 0.2693, 0.4001, 0.2863, 0.4716, 0.4793, 0.5189, 0.5311, 0.5129, 0.4866, 0.5176, 0.4899, 0.5408},
+      { 0.1925, 0.2141, 0.3123, 0.2586, 0.3630, 0.3512, 0.4027, 0.2723, 0.2979, 0.3848, 0.2946, 0.4848, 0.4919, 0.4937, 0.5129, 0.5107, 0.4888, 0.5285, 0.4485, 0.5053},
+      { 0.2093, 0.2187, 0.3004, 0.2325, 0.3783, 0.3830, 0.4162, 0.3208, 0.3122, 0.4161, 0.3307, 0.4886, 0.5128, 0.4661, 0.4866, 0.4888, 0.5381, 0.5330, 0.4391, 0.5269},
+      { 0.2126, 0.2392, 0.3434, 0.2787, 0.4061, 0.3777, 0.4168, 0.3152, 0.3307, 0.4289, 0.3327, 0.5189, 0.5531, 0.4994, 0.5176, 0.5285, 0.5330, 0.5697, 0.4395, 0.5343},
+      { 0.1632, 0.1932, 0.2682, 0.2202, 0.3049, 0.3462, 0.4003, 0.2590, 0.2671, 0.3354, 0.2810, 0.4025, 0.3852, 0.5052, 0.4899, 0.4485, 0.4391, 0.4395, 0.4407, 0.4880},
+      { 0.1992, 0.2033, 0.3004, 0.2379, 0.3687, 0.4177, 0.4560, 0.3168, 0.2986, 0.4190, 0.3441, 0.4700, 0.4876, 0.5401, 0.5408, 0.5053, 0.5269, 0.5343, 0.4880, 0.6682}},
+    {
+      { 0.1477, 0.1278, 0.3951, 0.3370, 0.3010, 0.2508, 0.2315, 0.2526, 0.2620, 0.2144, 0.1929, 0.3102, 0.3006, 0.1740, 0.1472, 0.1875, 0.2071, 0.2158, 0.1748, 0.2206},
+      { 0.1278, 0.1515, 0.4145, 0.3502, 0.2991, 0.2338, 0.2324, 0.2430, 0.2495, 0.1971, 0.1873, 0.3100, 0.3221, 0.1886, 0.1698, 0.2132, 0.2211, 0.2411, 0.1990, 0.2171},
+      { 0.3951, 0.4145, 0.2640, 0.2064, 0.3196, 0.2971, 0.3081, 0.3059, 0.3073, 0.2689, 0.2725, 0.3912, 0.4048, 0.2805, 0.2680, 0.3093, 0.3055, 0.3477, 0.2785, 0.3161},
+      { 0.3370, 0.3502, 0.2064, 0.1685, 0.2586, 0.2389, 0.2436, 0.2402, 0.2504, 0.2038, 0.1909, 0.3489, 0.3502, 0.2326, 0.2173, 0.2569, 0.2357, 0.2834, 0.2340, 0.2597},
+      { 0.3010, 0.2991, 0.3196, 0.2586, 0.3953, 0.3828, 0.3852, 0.3266, 0.3196, 0.3239, 0.3096, 0.4465, 0.4496, 0.3539, 0.3450, 0.3718, 0.3894, 0.4154, 0.3166, 0.3711},
+      { 0.2508, 0.2338, 0.2971, 0.2389, 0.3828, 0.3589, 0.3671, 0.3525, 0.3263, 0.3176, 0.2853, 0.3743, 0.3987, 0.3749, 0.3820, 0.3646, 0.3979, 0.3897, 0.3258, 0.4005},
+      { 0.2315, 0.2324, 0.3081, 0.2436, 0.3852, 0.3671, 0.3989, 0.3608, 0.3194, 0.3382, 0.3023, 0.4066, 0.4187, 0.4271, 0.4249, 0.4183, 0.4307, 0.4302, 0.3821, 0.4457},
+      { 0.2526, 0.2430, 0.3059, 0.2402, 0.3266, 0.3525, 0.3608, 0.3698, 0.3197, 0.3064, 0.2699, 0.3571, 0.3785, 0.2650, 0.2554, 0.2748, 0.3328, 0.3315, 0.2647, 0.3299},
+      { 0.2620, 0.2495, 0.3073, 0.2504, 0.3196, 0.3263, 0.3194, 0.3197, 0.3064, 0.2943, 0.2755, 0.3654, 0.4016, 0.2705, 0.2560, 0.3007, 0.3171, 0.3401, 0.2820, 0.3233},
+      { 0.2144, 0.1971, 0.2689, 0.2038, 0.3239, 0.3176, 0.3382, 0.3064, 0.2943, 0.3259, 0.2626, 0.4077, 0.4071, 0.3857, 0.3928, 0.3887, 0.4227, 0.4273, 0.3258, 0.4082},
+      { 0.1929, 0.1873, 0.2725, 0.1909, 0.3096, 0.2853, 0.3023, 0.2699, 0.2755, 0.2626, 0.2483, 0.3834, 0.4028, 0.2840, 0.2832, 0.2969, 0.3467, 0.3453, 0.2696, 0.3575},
+      { 0.3102, 0.3100, 0.3912, 0.3489, 0.4465, 0.3743, 0.4066, 0.3571, 0.3654, 0.4077, 0.3834, 0.4847, 0.5195, 0.4712, 0.4677, 0.4935, 0.5066, 0.5331, 0.4141, 0.4824},
+      { 0.3006, 0.3221, 0.4048, 0.3502, 0.4496, 0.3987, 0.4187, 0.3785, 0.4016, 0.4071, 0.4028, 0.5195, 0.5521, 0.4799, 0.4790, 0.5072, 0.5355, 0.5752, 0.4089, 0.5025},
+      { 0.1740, 0.1886, 0.2805, 0.2326, 0.3539, 0.3749, 0.4271, 0.2650, 0.2705, 0.3857, 0.2840, 0.4712, 0.4799, 0.5592, 0.5402, 0.5264, 0.5011, 0.5325, 0.4899, 0.5545},
+      { 0.1472, 0.1698, 0.2680, 0.2173, 0.3450, 0.3820, 0.4249, 0.2554, 0.2560, 0.3928, 0.2832, 0.4677, 0.4790, 0.5402, 0.5345, 0.5192, 0.4939, 0.5248, 0.5148, 0.5549},
+      { 0.1875, 0.2132, 0.3093, 0.2569, 0.3718, 0.3646, 0.4183, 0.2748, 0.3007, 0.3887, 0.2969, 0.4935, 0.5072, 0.5264, 0.5192, 0.5306, 0.5099, 0.5472, 0.4690, 0.5233},
+      { 0.2071, 0.2211, 0.3055, 0.2357, 0.3894, 0.3979, 0.4307, 0.3328, 0.3171, 0.4227, 0.3467, 0.5066, 0.5355, 0.5011, 0.4939, 0.5099, 0.5639, 0.5639, 0.4634, 0.5444},
+      { 0.2158, 0.2411, 0.3477, 0.2834, 0.4154, 0.3897, 0.4302, 0.3315, 0.3401, 0.4273, 0.3453, 0.5331, 0.5752, 0.5325, 0.5248, 0.5472, 0.5639, 0.5941, 0.4581, 0.5553},
+      { 0.1748, 0.1990, 0.2785, 0.2340, 0.3166, 0.3258, 0.3821, 0.2647, 0.2820, 0.3258, 0.2696, 0.4141, 0.4089, 0.4899, 0.5148, 0.4690, 0.4634, 0.4581, 0.4152, 0.4722},
+      { 0.2206, 0.2171, 0.3161, 0.2597, 0.3711, 0.4005, 0.4457, 0.3299, 0.3233, 0.4082, 0.3575, 0.4824, 0.5025, 0.5545, 0.5549, 0.5233, 0.5444, 0.5553, 0.4722, 0.6320}},
+    {
+      { 0.1435, 0.1391, 0.4053, 0.3486, 0.3103, 0.2385, 0.2281, 0.2531, 0.2685, 0.2003, 0.1876, 0.3104, 0.2886, 0.1820, 0.1741, 0.1572, 0.1933, 0.2067, 0.1702, 0.1989},
+      { 0.1391, 0.1675, 0.4252, 0.3611, 0.3058, 0.2261, 0.2275, 0.2452, 0.2626, 0.1799, 0.1910, 0.3155, 0.3195, 0.2024, 0.2065, 0.1854, 0.2134, 0.2296, 0.1957, 0.2072},
+      { 0.4053, 0.4252, 0.2720, 0.2156, 0.3192, 0.2906, 0.3052, 0.3019, 0.3123, 0.2557, 0.2705, 0.3947, 0.4034, 0.2931, 0.3035, 0.2919, 0.3011, 0.3407, 0.2746, 0.3071},
+      { 0.3486, 0.3611, 0.2156, 0.1810, 0.2585, 0.2339, 0.2423, 0.2460, 0.2585, 0.1951, 0.1889, 0.3520, 0.3477, 0.2430, 0.2485, 0.2328, 0.2384, 0.2749, 0.2290, 0.2439},
+      { 0.3103, 0.3058, 0.3192, 0.2585, 0.3774, 0.3742, 0.3735, 0.3224, 0.3173, 0.3018, 0.2961, 0.4412, 0.4478, 0.3583, 0.3605, 0.3419, 0.3762, 0.4073, 0.3121, 0.3684},
+      { 0.2385, 0.2261, 0.2906, 0.2339, 0.3742, 0.3258, 0.3379, 0.3323, 0.3102, 0.2926, 0.2699, 0.3747, 0.3901, 0.3513, 0.3615, 0.3592, 0.3802, 0.3802, 0.3035, 0.3659},
+      { 0.2281, 0.2275, 0.3052, 0.2423, 0.3735, 0.3379, 0.3725, 0.3468, 0.3165, 0.3143, 0.2853, 0.4000, 0.4198, 0.4085, 0.4176, 0.3958, 0.4195, 0.4209, 0.3429, 0.4084},
+      { 0.2531, 0.2452, 0.3019, 0.2460, 0.3224, 0.3323, 0.3468, 0.3638, 0.3157, 0.2865, 0.2636, 0.3497, 0.3692, 0.2808, 0.2781, 0.2495, 0.3129, 0.3174, 0.2605, 0.3092},
+      { 0.2685, 0.2626, 0.3123, 0.2585, 0.3173, 0.3102, 0.3165, 0.3157, 0.3087, 0.2736, 0.2754, 0.3651, 0.4037, 0.2866, 0.2886, 0.2705, 0.3045, 0.3260, 0.2786, 0.3075},
+      { 0.2003, 0.1799, 0.2557, 0.1951, 0.3018, 0.2926, 0.3143, 0.2865, 0.2736, 0.2970, 0.2448, 0.3883, 0.3905, 0.3664, 0.3808, 0.3681, 0.4063, 0.4141, 0.3089, 0.3977},
+      { 0.1876, 0.1910, 0.2705, 0.1889, 0.2961, 0.2699, 0.2853, 0.2636, 0.2754, 0.2448, 0.2489, 0.3849, 0.4048, 0.2757, 0.2872, 0.2817, 0.3372, 0.3371, 0.2494, 0.3296},
+      { 0.3104, 0.3155, 0.3947, 0.3520, 0.4412, 0.3747, 0.4000, 0.3497, 0.3651, 0.3883, 0.3849, 0.4769, 0.5106, 0.4776, 0.4882, 0.4755, 0.5051, 0.5283, 0.4164, 0.4683},
+      { 0.2886, 0.3195, 0.4034, 0.3477, 0.4478, 0.3901, 0.4198, 0.3692, 0.4037, 0.3905, 0.4048, 0.5106, 0.5465, 0.4870, 0.5055, 0.4894, 0.5364, 0.5674, 0.4044, 0.4879},
+      { 0.1820, 0.2024, 0.2931, 0.2430, 0.3583, 0.3513, 0.4085, 0.2808, 0.2866, 0.3664, 0.2757, 0.4776, 0.4870, 0.5369, 0.5381, 0.5152, 0.5029, 0.5312, 0.4485, 0.5217},
+      { 0.1741, 0.2065, 0.3035, 0.2485, 0.3605, 0.3615, 0.4176, 0.2781, 0.2886, 0.3808, 0.2872, 0.4882, 0.5055, 0.5381, 0.5516, 0.5272, 0.5137, 0.5437, 0.4690, 0.5356},
+      { 0.1572, 0.1854, 0.2919, 0.2328, 0.3419, 0.3592, 0.3958, 0.2495, 0.2705, 0.3681, 0.2817, 0.4755, 0.4894, 0.5152, 0.5272, 0.5014, 0.4895, 0.5291, 0.4775, 0.5066},
+      { 0.1933, 0.2134, 0.3011, 0.2384, 0.3762, 0.3802, 0.4195, 0.3129, 0.3045, 0.4063, 0.3372, 0.5051, 0.5364, 0.5029, 0.5137, 0.4895, 0.5427, 0.5561, 0.4528, 0.5312},
+      { 0.2067, 0.2296, 0.3407, 0.2749, 0.4073, 0.3802, 0.4209, 0.3174, 0.3260, 0.4141, 0.3371, 0.5283, 0.5674, 0.5312, 0.5437, 0.5291, 0.5561, 0.5901, 0.4565, 0.5410},
+      { 0.1702, 0.1957, 0.2746, 0.2290, 0.3121, 0.3035, 0.3429, 0.2605, 0.2786, 0.3089, 0.2494, 0.4164, 0.4044, 0.4485, 0.4690, 0.4775, 0.4528, 0.4565, 0.3912, 0.4468},
+      { 0.1989, 0.2072, 0.3071, 0.2439, 0.3684, 0.3659, 0.4084, 0.3092, 0.3075, 0.3977, 0.3296, 0.4683, 0.4879, 0.5217, 0.5356, 0.5066, 0.5312, 0.5410, 0.4468, 0.6081}},
+    {
+      { 0.1559, 0.1493, 0.4082, 0.3552, 0.3265, 0.2564, 0.2374, 0.2642, 0.2717, 0.2201, 0.2089, 0.3286, 0.2979, 0.1888, 0.1877, 0.1851, 0.1560, 0.2293, 0.1714, 0.2172},
+      { 0.1493, 0.1746, 0.4244, 0.3612, 0.3105, 0.2347, 0.2183, 0.2524, 0.2636, 0.1867, 0.2059, 0.3207, 0.3343, 0.2129, 0.2194, 0.2105, 0.1468, 0.2394, 0.2020, 0.2141},
+      { 0.4082, 0.4244, 0.2726, 0.2026, 0.3205, 0.2954, 0.3074, 0.3125, 0.3143, 0.2622, 0.2719, 0.4065, 0.4144, 0.2953, 0.3048, 0.3088, 0.2422, 0.3434, 0.2656, 0.3025},
+      { 0.3552, 0.3612, 0.2026, 0.1685, 0.2505, 0.2370, 0.2286, 0.2390, 0.2415, 0.1974, 0.1846, 0.3489, 0.3357, 0.2390, 0.2452, 0.2481, 0.1653, 0.2699, 0.2269, 0.2325},
+      { 0.3265, 0.3105, 0.3205, 0.2505, 0.4000, 0.3932, 0.3789, 0.3470, 0.3196, 0.3265, 0.3438, 0.4487, 0.4666, 0.3663, 0.3734, 0.3649, 0.3481, 0.4104, 0.3126, 0.3784},
+      { 0.2564, 0.2347, 0.2954, 0.2370, 0.3932, 0.3515, 0.3566, 0.3406, 0.3367, 0.3242, 0.2892, 0.3884, 0.4075, 0.3614, 0.3747, 0.3682, 0.3971, 0.4059, 0.3189, 0.3881},
+      { 0.2374, 0.2183, 0.3074, 0.2286, 0.3789, 0.3566, 0.3883, 0.3493, 0.3370, 0.3461, 0.2926, 0.4102, 0.4331, 0.4118, 0.4220, 0.4101, 0.3989, 0.4356, 0.3579, 0.4178},
+      { 0.2642, 0.2524, 0.3125, 0.2390, 0.3470, 0.3406, 0.3493, 0.3684, 0.3313, 0.3116, 0.2848, 0.3668, 0.3940, 0.3000, 0.2952, 0.2815, 0.2909, 0.3441, 0.2693, 0.3305},
+      { 0.2717, 0.2636, 0.3143, 0.2415, 0.3196, 0.3367, 0.3370, 0.3313, 0.3251, 0.3020, 0.2830, 0.3843, 0.4136, 0.3059, 0.3192, 0.3079, 0.2503, 0.3549, 0.3081, 0.3450},
+      { 0.2201, 0.1867, 0.2622, 0.1974, 0.3265, 0.3242, 0.3461, 0.3116, 0.3020, 0.3266, 0.2523, 0.4083, 0.4220, 0.3770, 0.3889, 0.3906, 0.3986, 0.4281, 0.3203, 0.4281},
+      { 0.2089, 0.2059, 0.2719, 0.1846, 0.3438, 0.2892, 0.2926, 0.2848, 0.2830, 0.2523, 0.2563, 0.3980, 0.4135, 0.2925, 0.3047, 0.2953, 0.3208, 0.3531, 0.2568, 0.3568},
+      { 0.3286, 0.3207, 0.4065, 0.3489, 0.4487, 0.3884, 0.4102, 0.3668, 0.3843, 0.4083, 0.3980, 0.4801, 0.5324, 0.4779, 0.4839, 0.4885, 0.4448, 0.5302, 0.4160, 0.4735},
+      { 0.2979, 0.3343, 0.4144, 0.3357, 0.4666, 0.4075, 0.4331, 0.3940, 0.4136, 0.4220, 0.4135, 0.5324, 0.5784, 0.4909, 0.5039, 0.4925, 0.4782, 0.5732, 0.4040, 0.4857},
+      { 0.1888, 0.2129, 0.2953, 0.2390, 0.3663, 0.3614, 0.4118, 0.3000, 0.3059, 0.3770, 0.2925, 0.4779, 0.4909, 0.5143, 0.5270, 0.5097, 0.4674, 0.5221, 0.4391, 0.5082},
+      { 0.1877, 0.2194, 0.3048, 0.2452, 0.3734, 0.3747, 0.4220, 0.2952, 0.3192, 0.3889, 0.3047, 0.4839, 0.5039, 0.5270, 0.5387, 0.5239, 0.4689, 0.5387, 0.4634, 0.5311},
+      { 0.1851, 0.2105, 0.3088, 0.2481, 0.3649, 0.3682, 0.4101, 0.2815, 0.3079, 0.3906, 0.2953, 0.4885, 0.4925, 0.5097, 0.5239, 0.5115, 0.4464, 0.5315, 0.4528, 0.5023},
+      { 0.1560, 0.1468, 0.2422, 0.1653, 0.3481, 0.3971, 0.3989, 0.2909, 0.2503, 0.3986, 0.3208, 0.4448, 0.4782, 0.4674, 0.4689, 0.4464, 0.4842, 0.5126, 0.4876, 0.4948},
+      { 0.2293, 0.2394, 0.3434, 0.2699, 0.4104, 0.4059, 0.4356, 0.3441, 0.3549, 0.4281, 0.3531, 0.5302, 0.5732, 0.5221, 0.5387, 0.5315, 0.5126, 0.5831, 0.4580, 0.5408},
+      { 0.1714, 0.2020, 0.2656, 0.2269, 0.3126, 0.3189, 0.3579, 0.2693, 0.3081, 0.3203, 0.2568, 0.4160, 0.4040, 0.4391, 0.4634, 0.4528, 0.4876, 0.4580, 0.4022, 0.4382},
+      { 0.2172, 0.2141, 0.3025, 0.2325, 0.3784, 0.3881, 0.4178, 0.3305, 0.3450, 0.4281, 0.3568, 0.4735, 0.4857, 0.5082, 0.5311, 0.5023, 0.4948, 0.5408, 0.4382, 0.5992}},
+    {
+      { 0.1737, 0.1615, 0.4140, 0.3441, 0.3277, 0.2688, 0.2607, 0.2740, 0.2821, 0.2350, 0.2248, 0.3334, 0.3107, 0.2198, 0.2183, 0.2145, 0.2421, 0.1946, 0.2042, 0.2468},
+      { 0.1615, 0.1802, 0.4265, 0.3545, 0.3175, 0.2438, 0.2516, 0.2589, 0.2760, 0.2176, 0.2195, 0.3038, 0.3223, 0.2347, 0.2376, 0.2332, 0.2346, 0.2087, 0.2121, 0.2366},
+      { 0.4140, 0.4265, 0.2890, 0.2275, 0.3171, 0.3180, 0.3330, 0.3246, 0.3365, 0.2850, 0.2871, 0.3843, 0.4103, 0.3170, 0.3322, 0.3251, 0.3226, 0.3055, 0.2733, 0.3230},
+      { 0.3441, 0.3545, 0.2275, 0.1974, 0.2599, 0.2487, 0.2612, 0.2574, 0.2691, 0.2165, 0.2008, 0.3179, 0.3205, 0.2672, 0.2699, 0.2622, 0.2488, 0.2264, 0.2279, 0.2603},
+      { 0.3277, 0.3175, 0.3171, 0.2599, 0.3930, 0.4211, 0.4164, 0.3494, 0.3280, 0.3344, 0.3265, 0.4405, 0.4586, 0.3863, 0.3964, 0.3862, 0.4030, 0.3768, 0.3518, 0.4120},
+      { 0.2688, 0.2438, 0.3180, 0.2487, 0.4211, 0.3485, 0.3596, 0.3502, 0.3308, 0.3274, 0.3009, 0.4228, 0.4434, 0.3614, 0.3715, 0.3678, 0.4049, 0.4126, 0.3161, 0.3807},
+      { 0.2607, 0.2516, 0.3330, 0.2612, 0.4164, 0.3596, 0.3946, 0.3800, 0.3499, 0.3449, 0.3111, 0.4308, 0.4456, 0.4245, 0.4398, 0.4247, 0.4362, 0.4260, 0.3485, 0.4256},
+      { 0.2740, 0.2589, 0.3246, 0.2574, 0.3494, 0.3502, 0.3800, 0.3821, 0.3369, 0.3143, 0.2905, 0.3645, 0.3962, 0.3179, 0.3145, 0.3032, 0.3618, 0.3008, 0.2803, 0.3317},
+      { 0.2821, 0.2760, 0.3365, 0.2691, 0.3280, 0.3308, 0.3499, 0.3369, 0.3357, 0.3023, 0.2965, 0.3560, 0.3991, 0.3180, 0.3210, 0.3194, 0.3366, 0.2980, 0.2872, 0.3273},
+      { 0.2350, 0.2176, 0.2850, 0.2165, 0.3344, 0.3274, 0.3449, 0.3143, 0.3023, 0.3312, 0.2782, 0.4236, 0.4151, 0.3734, 0.3933, 0.3946, 0.4284, 0.4201, 0.3191, 0.3960},
+      { 0.2248, 0.2195, 0.2871, 0.2008, 0.3265, 0.3009, 0.3111, 0.2905, 0.2965, 0.2782, 0.2805, 0.4026, 0.4263, 0.3012, 0.3208, 0.3125, 0.3540, 0.3368, 0.2634, 0.3427},
+      { 0.3334, 0.3038, 0.3843, 0.3179, 0.4405, 0.4228, 0.4308, 0.3645, 0.3560, 0.4236, 0.4026, 0.4720, 0.5099, 0.4986, 0.5058, 0.4943, 0.5161, 0.4938, 0.4688, 0.5034},
+      { 0.3107, 0.3223, 0.4103, 0.3205, 0.4586, 0.4434, 0.4456, 0.3962, 0.3991, 0.4151, 0.4263, 0.5099, 0.5504, 0.5084, 0.5211, 0.5127, 0.5478, 0.5320, 0.4595, 0.5100},
+      { 0.2198, 0.2347, 0.3170, 0.2672, 0.3863, 0.3614, 0.4245, 0.3179, 0.3180, 0.3734, 0.3012, 0.4986, 0.5084, 0.5453, 0.5610, 0.5417, 0.5253, 0.5194, 0.4395, 0.5241},
+      { 0.2183, 0.2376, 0.3322, 0.2699, 0.3964, 0.3715, 0.4398, 0.3145, 0.3210, 0.3933, 0.3208, 0.5058, 0.5211, 0.5610, 0.5838, 0.5642, 0.5474, 0.5246, 0.4581, 0.5429},
+      { 0.2145, 0.2332, 0.3251, 0.2622, 0.3862, 0.3678, 0.4247, 0.3032, 0.3194, 0.3946, 0.3125, 0.4943, 0.5127, 0.5417, 0.5642, 0.5514, 0.5315, 0.5079, 0.4565, 0.5188},
+      { 0.2421, 0.2346, 0.3226, 0.2488, 0.4030, 0.4049, 0.4362, 0.3618, 0.3366, 0.4284, 0.3540, 0.5161, 0.5478, 0.5253, 0.5474, 0.5315, 0.5711, 0.5409, 0.4580, 0.5405},
+      { 0.1946, 0.2087, 0.3055, 0.2264, 0.3768, 0.4126, 0.4260, 0.3008, 0.2980, 0.4201, 0.3368, 0.4938, 0.5320, 0.5194, 0.5246, 0.5079, 0.5409, 0.5364, 0.5101, 0.5580},
+      { 0.2042, 0.2121, 0.2733, 0.2279, 0.3518, 0.3161, 0.3485, 0.2803, 0.2872, 0.3191, 0.2634, 0.4688, 0.4595, 0.4395, 0.4581, 0.4565, 0.4580, 0.5101, 0.3871, 0.4466},
+      { 0.2468, 0.2366, 0.3230, 0.2603, 0.4120, 0.3807, 0.4256, 0.3317, 0.3273, 0.3960, 0.3427, 0.5034, 0.5100, 0.5241, 0.5429, 0.5188, 0.5405, 0.5580, 0.4466, 0.6394}},
+    {
+      { 0.1735, 0.1946, 0.4220, 0.3863, 0.2965, 0.2249, 0.2165, 0.2570, 0.3380, 0.1596, 0.1685, 0.2931, 0.2795, 0.1702, 0.1849, 0.1990, 0.2009, 0.2205, 0.1587, 0.1730},
+      { 0.1946, 0.2523, 0.4578, 0.4154, 0.3082, 0.2127, 0.2288, 0.2751, 0.3364, 0.1425, 0.1913, 0.3137, 0.3171, 0.2077, 0.2385, 0.2561, 0.2305, 0.2438, 0.1926, 0.1639},
+      { 0.4220, 0.4578, 0.2970, 0.2504, 0.3127, 0.2730, 0.2843, 0.3004, 0.3380, 0.2275, 0.2522, 0.3893, 0.3953, 0.2934, 0.3223, 0.3371, 0.3008, 0.3381, 0.2669, 0.2584},
+      { 0.3863, 0.4154, 0.2504, 0.2218, 0.2626, 0.2254, 0.2342, 0.2646, 0.2954, 0.1502, 0.1921, 0.3562, 0.3234, 0.2535, 0.2797, 0.2982, 0.2580, 0.2787, 0.2119, 0.1867},
+      { 0.2965, 0.3082, 0.3127, 0.2626, 0.3666, 0.3297, 0.3398, 0.3131, 0.3207, 0.2783, 0.2704, 0.4147, 0.4196, 0.3413, 0.3490, 0.3638, 0.3484, 0.3879, 0.2878, 0.3427},
+      { 0.2249, 0.2127, 0.2730, 0.2254, 0.3297, 0.3838, 0.3555, 0.3085, 0.2729, 0.3362, 0.2657, 0.3355, 0.3481, 0.3404, 0.3301, 0.3187, 0.3618, 0.3432, 0.3747, 0.4050},
+      { 0.2165, 0.2288, 0.2843, 0.2342, 0.3398, 0.3555, 0.3618, 0.3180, 0.2933, 0.3279, 0.2629, 0.3604, 0.3713, 0.3798, 0.3815, 0.3767, 0.3858, 0.3721, 0.3611, 0.4156},
+      { 0.2570, 0.2751, 0.3004, 0.2646, 0.3131, 0.3085, 0.3180, 0.3420, 0.3215, 0.2538, 0.2457, 0.3333, 0.3550, 0.2699, 0.2750, 0.2781, 0.3087, 0.3065, 0.2366, 0.2830},
+      { 0.3380, 0.3364, 0.3380, 0.2954, 0.3207, 0.2729, 0.2933, 0.3215, 0.3459, 0.2295, 0.2368, 0.3608, 0.4030, 0.2728, 0.2951, 0.3153, 0.2954, 0.3281, 0.2500, 0.2468},
+      { 0.1596, 0.1425, 0.2275, 0.1502, 0.2783, 0.3362, 0.3279, 0.2538, 0.2295, 0.3532, 0.2218, 0.3489, 0.3535, 0.3736, 0.3588, 0.3411, 0.3720, 0.3769, 0.3766, 0.4500},
+      { 0.1685, 0.1913, 0.2522, 0.1921, 0.2704, 0.2657, 0.2629, 0.2457, 0.2368, 0.2218, 0.2231, 0.3445, 0.3569, 0.2491, 0.2646, 0.2575, 0.2857, 0.2964, 0.2580, 0.2901},
+      { 0.2931, 0.3137, 0.3893, 0.3562, 0.4147, 0.3355, 0.3604, 0.3333, 0.3608, 0.3489, 0.3445, 0.4368, 0.4765, 0.4320, 0.4479, 0.4672, 0.4544, 0.4825, 0.3689, 0.4221},
+      { 0.2795, 0.3171, 0.3953, 0.3234, 0.4196, 0.3481, 0.3713, 0.3550, 0.4030, 0.3535, 0.3569, 0.4765, 0.5173, 0.4193, 0.4527, 0.4504, 0.4703, 0.5163, 0.3470, 0.4395},
+      { 0.1702, 0.2077, 0.2934, 0.2535, 0.3413, 0.3404, 0.3798, 0.2699, 0.2728, 0.3736, 0.2491, 0.4320, 0.4193, 0.4725, 0.4706, 0.4636, 0.4377, 0.4638, 0.4407, 0.4838},
+      { 0.1849, 0.2385, 0.3223, 0.2797, 0.3490, 0.3301, 0.3815, 0.2750, 0.2951, 0.3588, 0.2646, 0.4479, 0.4527, 0.4706, 0.4835, 0.4801, 0.4528, 0.4780, 0.4152, 0.4798},
+      { 0.1990, 0.2561, 0.3371, 0.2982, 0.3638, 0.3187, 0.3767, 0.2781, 0.3153, 0.3411, 0.2575, 0.4672, 0.4504, 0.4636, 0.4801, 0.4824, 0.4480, 0.4905, 0.3912, 0.4525},
+      { 0.2009, 0.2305, 0.3008, 0.2580, 0.3484, 0.3618, 0.3858, 0.3087, 0.2954, 0.3720, 0.2857, 0.4544, 0.4703, 0.4377, 0.4528, 0.4480, 0.4915, 0.4877, 0.4022, 0.4714},
+      { 0.2205, 0.2438, 0.3381, 0.2787, 0.3879, 0.3432, 0.3721, 0.3065, 0.3281, 0.3769, 0.2964, 0.4825, 0.5163, 0.4638, 0.4780, 0.4905, 0.4877, 0.5322, 0.3871, 0.4776},
+      { 0.1587, 0.1926, 0.2669, 0.2119, 0.2878, 0.3747, 0.3611, 0.2366, 0.2500, 0.3766, 0.2580, 0.3689, 0.3470, 0.4407, 0.4152, 0.3912, 0.4022, 0.3871, 0.4939, 0.4813},
+      { 0.1730, 0.1639, 0.2584, 0.1867, 0.3427, 0.4050, 0.4156, 0.2830, 0.2468, 0.4500, 0.2901, 0.4221, 0.4395, 0.4838, 0.4798, 0.4525, 0.4714, 0.4776, 0.4813, 0.6387}},
+    {
+      { 0.1164, 0.1245, 0.3942, 0.3308, 0.2855, 0.2500, 0.2205, 0.2298, 0.2497, 0.2331, 0.2126, 0.3114, 0.2971, 0.1992, 0.1994, 0.1984, 0.2168, 0.2298, 0.1968, 0.1196},
+      { 0.1245, 0.1453, 0.4014, 0.3346, 0.2865, 0.1986, 0.2019, 0.2129, 0.2411, 0.1713, 0.1879, 0.3070, 0.3141, 0.1984, 0.2191, 0.2232, 0.2225, 0.2278, 0.1774, 0.1024},
+      { 0.3942, 0.4014, 0.2658, 0.2115, 0.3118, 0.2786, 0.2905, 0.2810, 0.3248, 0.2419, 0.2751, 0.3844, 0.4101, 0.3003, 0.3188, 0.3223, 0.3024, 0.3400, 0.2649, 0.2260},
+      { 0.3308, 0.3346, 0.2115, 0.1642, 0.2516, 0.2004, 0.2059, 0.2186, 0.2542, 0.1639, 0.1759, 0.3360, 0.3362, 0.2434, 0.2740, 0.2680, 0.2345, 0.2795, 0.2134, 0.1673},
+      { 0.2855, 0.2865, 0.3118, 0.2516, 0.3732, 0.3772, 0.3770, 0.3022, 0.2960, 0.3162, 0.3177, 0.4224, 0.4410, 0.3636, 0.3746, 0.3618, 0.3744, 0.4086, 0.3195, 0.2905},
+      { 0.2500, 0.1986, 0.2786, 0.2004, 0.3772, 0.4255, 0.4054, 0.3667, 0.2948, 0.3630, 0.3111, 0.3782, 0.3957, 0.3913, 0.3816, 0.3523, 0.3996, 0.3919, 0.3867, 0.4051},
+      { 0.2205, 0.2019, 0.2905, 0.2059, 0.3770, 0.4054, 0.4096, 0.3633, 0.2929, 0.3825, 0.3028, 0.3926, 0.4221, 0.4259, 0.4122, 0.4022, 0.4119, 0.4173, 0.4178, 0.3459},
+      { 0.2298, 0.2129, 0.2810, 0.2186, 0.3022, 0.3667, 0.3633, 0.3919, 0.2963, 0.3196, 0.2849, 0.3441, 0.3647, 0.3003, 0.3069, 0.2841, 0.3486, 0.3257, 0.3126, 0.2437},
+      { 0.2497, 0.2411, 0.3248, 0.2542, 0.2960, 0.2948, 0.2929, 0.2963, 0.3050, 0.2774, 0.2700, 0.3505, 0.3939, 0.2892, 0.3012, 0.3027, 0.3119, 0.3239, 0.2738, 0.2065},
+      { 0.2331, 0.1713, 0.2419, 0.1639, 0.3162, 0.3630, 0.3825, 0.3196, 0.2774, 0.3661, 0.2774, 0.3938, 0.4012, 0.4084, 0.4103, 0.3968, 0.4329, 0.4259, 0.3622, 0.3861},
+      { 0.2126, 0.1879, 0.2751, 0.1759, 0.3177, 0.3111, 0.3028, 0.2849, 0.2700, 0.2774, 0.2691, 0.3854, 0.3995, 0.2997, 0.3109, 0.2982, 0.3378, 0.3402, 0.2894, 0.2241},
+      { 0.3114, 0.3070, 0.3844, 0.3360, 0.4224, 0.3782, 0.3926, 0.3441, 0.3505, 0.3938, 0.3854, 0.4515, 0.5043, 0.4623, 0.4796, 0.4808, 0.4849, 0.5101, 0.4115, 0.3593},
+      { 0.2971, 0.3141, 0.4101, 0.3362, 0.4410, 0.3957, 0.4221, 0.3647, 0.3939, 0.4012, 0.3995, 0.5043, 0.5545, 0.4718, 0.4897, 0.4845, 0.5158, 0.5363, 0.3925, 0.3949},
+      { 0.1992, 0.1984, 0.3003, 0.2434, 0.3636, 0.3913, 0.4259, 0.3003, 0.2892, 0.4084, 0.2997, 0.4623, 0.4718, 0.5132, 0.5073, 0.4892, 0.4699, 0.4992, 0.4880, 0.3739},
+      { 0.1994, 0.2191, 0.3188, 0.2740, 0.3746, 0.3816, 0.4122, 0.3069, 0.3012, 0.4103, 0.3109, 0.4796, 0.4897, 0.5073, 0.5180, 0.5029, 0.4818, 0.5095, 0.4722, 0.3757},
+      { 0.1984, 0.2232, 0.3223, 0.2680, 0.3618, 0.3523, 0.4022, 0.2841, 0.3027, 0.3968, 0.2982, 0.4808, 0.4845, 0.4892, 0.5029, 0.4968, 0.4739, 0.5110, 0.4468, 0.3284},
+      { 0.2168, 0.2225, 0.3024, 0.2345, 0.3744, 0.3996, 0.4119, 0.3486, 0.3119, 0.4329, 0.3378, 0.4849, 0.5158, 0.4699, 0.4818, 0.4739, 0.5157, 0.5289, 0.4382, 0.3927},
+      { 0.2298, 0.2278, 0.3400, 0.2795, 0.4086, 0.3919, 0.4173, 0.3257, 0.3239, 0.4259, 0.3402, 0.5101, 0.5363, 0.4992, 0.5095, 0.5110, 0.5289, 0.5637, 0.4466, 0.4069},
+      { 0.1968, 0.1774, 0.2649, 0.2134, 0.3195, 0.3867, 0.4178, 0.3126, 0.2738, 0.3622, 0.2894, 0.4115, 0.3925, 0.4880, 0.4722, 0.4468, 0.4382, 0.4466, 0.4813, 0.4240},
+      { 0.1196, 0.1024, 0.2260, 0.1673, 0.2905, 0.4051, 0.3459, 0.2437, 0.2065, 0.3861, 0.2241, 0.3593, 0.3949, 0.3739, 0.3757, 0.3284, 0.3927, 0.4069, 0.4240, 0.5610}}},
+  {
+    {
+      { 0.2600, 0.1955, 0.3974, 0.3461, 0.4048, 0.3745, 0.3915, 0.3623, 0.3061, 0.3318, 0.2776, 0.3493, 0.3537, 0.3208, 0.3128, 0.2833, 0.3272, 0.3233, 0.3018, 0.3502},
+      { 0.1955, 0.1741, 0.3803, 0.3383, 0.2968, 0.2565, 0.2748, 0.2629, 0.2471, 0.2402, 0.2442, 0.3038, 0.3057, 0.2039, 0.1960, 0.1931, 0.2033, 0.2383, 0.2024, 0.1117},
+      { 0.3974, 0.3803, 0.2598, 0.1945, 0.2776, 0.2259, 0.2376, 0.2622, 0.2896, 0.1960, 0.2349, 0.3481, 0.3294, 0.2025, 0.2165, 0.2273, 0.2001, 0.2658, 0.1680, 0.1341},
+      { 0.3461, 0.3383, 0.1945, 0.1542, 0.2262, 0.1583, 0.1778, 0.2087, 0.2277, 0.1335, 0.1377, 0.2909, 0.2772, 0.1426, 0.1570, 0.1541, 0.1427, 0.1867, 0.1171, 0.0716},
+      { 0.4048, 0.2968, 0.2776, 0.2262, 0.3224, 0.2821, 0.3083, 0.2891, 0.2642, 0.2291, 0.2481, 0.3856, 0.3764, 0.2732, 0.2782, 0.2602, 0.2829, 0.3302, 0.2116, 0.2562},
+      { 0.3745, 0.2565, 0.2259, 0.1583, 0.2821, 0.2324, 0.2282, 0.2550, 0.2075, 0.2027, 0.1654, 0.2919, 0.2772, 0.2165, 0.2170, 0.1866, 0.2145, 0.2531, 0.1900, 0.1810},
+      { 0.3915, 0.2748, 0.2376, 0.1778, 0.3083, 0.2282, 0.2472, 0.2604, 0.2360, 0.1977, 0.1829, 0.2990, 0.3127, 0.2495, 0.2532, 0.2154, 0.2404, 0.2629, 0.1851, 0.1778},
+      { 0.3623, 0.2629, 0.2622, 0.2087, 0.2891, 0.2550, 0.2604, 0.3408, 0.2677, 0.2264, 0.1974, 0.2794, 0.3070, 0.2240, 0.2213, 0.2044, 0.2475, 0.2516, 0.2180, 0.1935},
+      { 0.3061, 0.2471, 0.2896, 0.2277, 0.2642, 0.2075, 0.2360, 0.2677, 0.2666, 0.1730, 0.2055, 0.2988, 0.3091, 0.2090, 0.2182, 0.2131, 0.2285, 0.2442, 0.1735, 0.1233},
+      { 0.3318, 0.2402, 0.1960, 0.1335, 0.2291, 0.2027, 0.1977, 0.2264, 0.1730, 0.1732, 0.1752, 0.2535, 0.2758, 0.1759, 0.1863, 0.1993, 0.2197, 0.2223, 0.2062, 0.1489},
+      { 0.2776, 0.2442, 0.2349, 0.1377, 0.2481, 0.1654, 0.1829, 0.1974, 0.2055, 0.1752, 0.1692, 0.3080, 0.3280, 0.1305, 0.1554, 0.1706, 0.1775, 0.2306, 0.1104, 0.0580},
+      { 0.3493, 0.3038, 0.3481, 0.2909, 0.3856, 0.2919, 0.2990, 0.2794, 0.2988, 0.2535, 0.3080, 0.3984, 0.4380, 0.3322, 0.3342, 0.3350, 0.3758, 0.4157, 0.2687, 0.2767},
+      { 0.3537, 0.3057, 0.3294, 0.2772, 0.3764, 0.2772, 0.3127, 0.3070, 0.3091, 0.2758, 0.3280, 0.4380, 0.5424, 0.3585, 0.3456, 0.3651, 0.3836, 0.4467, 0.2587, 0.2744},
+      { 0.3208, 0.2039, 0.2025, 0.1426, 0.2732, 0.2165, 0.2495, 0.2240, 0.2090, 0.1759, 0.1305, 0.3322, 0.3585, 0.3071, 0.3212, 0.2824, 0.2893, 0.3381, 0.1992, 0.1951},
+      { 0.3128, 0.1960, 0.2165, 0.1570, 0.2782, 0.2170, 0.2532, 0.2213, 0.2182, 0.1863, 0.1554, 0.3342, 0.3456, 0.3212, 0.3343, 0.3029, 0.2952, 0.3458, 0.2206, 0.2240},
+      { 0.2833, 0.1931, 0.2273, 0.1541, 0.2602, 0.1866, 0.2154, 0.2044, 0.2131, 0.1993, 0.1706, 0.3350, 0.3651, 0.2824, 0.3029, 0.2960, 0.2885, 0.3347, 0.1989, 0.1730},
+      { 0.3272, 0.2033, 0.2001, 0.1427, 0.2829, 0.2145, 0.2404, 0.2475, 0.2285, 0.2197, 0.1775, 0.3758, 0.3836, 0.2893, 0.2952, 0.2885, 0.3415, 0.3626, 0.2172, 0.2507},
+      { 0.3233, 0.2383, 0.2658, 0.1867, 0.3302, 0.2531, 0.2629, 0.2516, 0.2442, 0.2223, 0.2306, 0.4157, 0.4467, 0.3381, 0.3458, 0.3347, 0.3626, 0.4349, 0.2468, 0.2741},
+      { 0.3018, 0.2024, 0.1680, 0.1171, 0.2116, 0.1900, 0.1851, 0.2180, 0.1735, 0.2062, 0.1104, 0.2687, 0.2587, 0.1992, 0.2206, 0.1989, 0.2172, 0.2468, 0.1730, 0.1196},
+      { 0.3502, 0.1117, 0.1341, 0.0716, 0.2562, 0.1810, 0.1778, 0.1935, 0.1233, 0.1489, 0.0580, 0.2767, 0.2744, 0.1951, 0.2240, 0.1730, 0.2507, 0.2741, 0.1196, 0.4716}},
+    {
+      { 0.1205, 0.1494, 0.3676, 0.3163, 0.2983, 0.2413, 0.2336, 0.2629, 0.2531, 0.2184, 0.1690, 0.2864, 0.2829, 0.1759, 0.1767, 0.1746, 0.2129, 0.2109, 0.1637, 0.1117},
+      { 0.1494, 0.1955, 0.3969, 0.3389, 0.3250, 0.3038, 0.3396, 0.3258, 0.2801, 0.2490, 0.2473, 0.3306, 0.3379, 0.3004, 0.2771, 0.2474, 0.3007, 0.2889, 0.2765, 0.3106},
+      { 0.3676, 0.3969, 0.2419, 0.1925, 0.2707, 0.2039, 0.2209, 0.2312, 0.2793, 0.1760, 0.2125, 0.3372, 0.3374, 0.2183, 0.2347, 0.2390, 0.2066, 0.2624, 0.1796, 0.1169},
+      { 0.3163, 0.3389, 0.1925, 0.1548, 0.2026, 0.1331, 0.1591, 0.1808, 0.2323, 0.1006, 0.1364, 0.2982, 0.2825, 0.1611, 0.1593, 0.1611, 0.1375, 0.1923, 0.1055, 0.0832},
+      { 0.2983, 0.3250, 0.2707, 0.2026, 0.3239, 0.2696, 0.2756, 0.2567, 0.2485, 0.2084, 0.2561, 0.3851, 0.3901, 0.2626, 0.2708, 0.2595, 0.2549, 0.3166, 0.1955, 0.2286},
+      { 0.2413, 0.3038, 0.2039, 0.1331, 0.2696, 0.1898, 0.2016, 0.2199, 0.2057, 0.1803, 0.1396, 0.2580, 0.2931, 0.1955, 0.1919, 0.1798, 0.2028, 0.2390, 0.1429, 0.1457},
+      { 0.2336, 0.3396, 0.2209, 0.1591, 0.2756, 0.2016, 0.2485, 0.2190, 0.2384, 0.1884, 0.1561, 0.3092, 0.2899, 0.2617, 0.2519, 0.2202, 0.2328, 0.2715, 0.1691, 0.1698},
+      { 0.2629, 0.3258, 0.2312, 0.1808, 0.2567, 0.2199, 0.2190, 0.3101, 0.2553, 0.2003, 0.1816, 0.2764, 0.3086, 0.1745, 0.1827, 0.1805, 0.2180, 0.2305, 0.1441, 0.1197},
+      { 0.2531, 0.2801, 0.2793, 0.2323, 0.2485, 0.2057, 0.2384, 0.2553, 0.2600, 0.1754, 0.2402, 0.3044, 0.3364, 0.2293, 0.2331, 0.2318, 0.2368, 0.2570, 0.1747, 0.1902},
+      { 0.2184, 0.2490, 0.1760, 0.1006, 0.2084, 0.1803, 0.1884, 0.2003, 0.1754, 0.1728, 0.1422, 0.2659, 0.2951, 0.1807, 0.1767, 0.1834, 0.2000, 0.2220, 0.1529, 0.1263},
+      { 0.1690, 0.2473, 0.2125, 0.1364, 0.2561, 0.1396, 0.1561, 0.1816, 0.2402, 0.1422, 0.1765, 0.2859, 0.3216, 0.1294, 0.1433, 0.1479, 0.1938, 0.2372, 0.0882, 0.0323},
+      { 0.2864, 0.3306, 0.3372, 0.2982, 0.3851, 0.2580, 0.3092, 0.2764, 0.3044, 0.2659, 0.2859, 0.4082, 0.4361, 0.3344, 0.3536, 0.3416, 0.3679, 0.4048, 0.2607, 0.2638},
+      { 0.2829, 0.3379, 0.3374, 0.2825, 0.3901, 0.2931, 0.2899, 0.3086, 0.3364, 0.2951, 0.3216, 0.4361, 0.4850, 0.3563, 0.3522, 0.3667, 0.3984, 0.4545, 0.2435, 0.2904},
+      { 0.1759, 0.3004, 0.2183, 0.1611, 0.2626, 0.1955, 0.2617, 0.1745, 0.2293, 0.1807, 0.1294, 0.3344, 0.3563, 0.3282, 0.3318, 0.2885, 0.3093, 0.3348, 0.2033, 0.1969},
+      { 0.1767, 0.2771, 0.2347, 0.1593, 0.2708, 0.1919, 0.2519, 0.1827, 0.2331, 0.1767, 0.1433, 0.3536, 0.3522, 0.3318, 0.3369, 0.3071, 0.3076, 0.3550, 0.2171, 0.2242},
+      { 0.1746, 0.2474, 0.2390, 0.1611, 0.2595, 0.1798, 0.2202, 0.1805, 0.2318, 0.1834, 0.1479, 0.3416, 0.3667, 0.2885, 0.3071, 0.3020, 0.2816, 0.3397, 0.2072, 0.1995},
+      { 0.2129, 0.3007, 0.2066, 0.1375, 0.2549, 0.2028, 0.2328, 0.2180, 0.2368, 0.2000, 0.1938, 0.3679, 0.3984, 0.3093, 0.3076, 0.2816, 0.3267, 0.3629, 0.2141, 0.2582},
+      { 0.2109, 0.2889, 0.2624, 0.1923, 0.3166, 0.2390, 0.2715, 0.2305, 0.2570, 0.2220, 0.2372, 0.4048, 0.4545, 0.3348, 0.3550, 0.3397, 0.3629, 0.4314, 0.2366, 0.2817},
+      { 0.1637, 0.2765, 0.1796, 0.1055, 0.1955, 0.1429, 0.1691, 0.1441, 0.1747, 0.1529, 0.0882, 0.2607, 0.2435, 0.2033, 0.2171, 0.2072, 0.2141, 0.2366, 0.1639, 0.1024},
+      { 0.1117, 0.3106, 0.1169, 0.0832, 0.2286, 0.1457, 0.1698, 0.1197, 0.1902, 0.1263, 0.0323, 0.2638, 0.2904, 0.1969, 0.2242, 0.1995, 0.2582, 0.2817, 0.1024, 0.3941}},
+    {
+      { 0.1676, 0.1543, 0.4371, 0.3866, 0.3864, 0.2468, 0.2393, 0.2855, 0.2810, 0.2205, 0.2247, 0.3386, 0.3159, 0.1962, 0.2032, 0.2134, 0.2389, 0.2371, 0.1737, 0.1341},
+      { 0.1543, 0.1780, 0.4429, 0.3918, 0.3319, 0.2100, 0.2194, 0.2407, 0.2777, 0.1754, 0.2083, 0.3377, 0.3380, 0.2212, 0.2258, 0.2316, 0.2420, 0.2512, 0.1744, 0.1169},
+      { 0.4371, 0.4429, 0.3603, 0.2810, 0.3941, 0.4272, 0.4255, 0.4099, 0.3910, 0.3643, 0.3951, 0.4389, 0.4441, 0.3919, 0.3938, 0.3879, 0.4649, 0.4194, 0.3716, 0.4733},
+      { 0.3866, 0.3918, 0.2810, 0.2429, 0.3204, 0.2865, 0.2937, 0.3247, 0.3200, 0.2424, 0.2565, 0.4030, 0.3768, 0.2988, 0.3020, 0.3017, 0.2913, 0.3260, 0.2649, 0.2587},
+      { 0.3864, 0.3319, 0.3941, 0.3204, 0.4080, 0.3486, 0.3633, 0.3356, 0.3396, 0.3131, 0.3159, 0.4431, 0.4395, 0.3506, 0.3569, 0.3416, 0.3637, 0.3895, 0.2932, 0.3258},
+      { 0.2468, 0.2100, 0.4272, 0.2865, 0.3486, 0.2735, 0.2839, 0.3106, 0.2854, 0.2509, 0.2609, 0.3563, 0.3809, 0.2896, 0.2792, 0.2778, 0.2958, 0.3212, 0.2330, 0.2590},
+      { 0.2393, 0.2194, 0.4255, 0.2937, 0.3633, 0.2839, 0.3256, 0.3060, 0.3015, 0.2534, 0.2555, 0.3621, 0.3745, 0.3290, 0.3317, 0.2971, 0.3040, 0.3405, 0.2630, 0.2679},
+      { 0.2855, 0.2407, 0.4099, 0.3247, 0.3356, 0.3106, 0.3060, 0.3815, 0.3371, 0.2928, 0.2629, 0.3708, 0.4009, 0.2810, 0.2989, 0.2715, 0.3055, 0.3243, 0.2591, 0.2567},
+      { 0.2810, 0.2777, 0.3910, 0.3200, 0.3396, 0.2854, 0.3015, 0.3371, 0.3370, 0.2488, 0.2897, 0.3566, 0.3985, 0.2940, 0.2935, 0.2990, 0.2975, 0.3281, 0.2471, 0.2497},
+      { 0.2205, 0.1754, 0.3643, 0.2424, 0.3131, 0.2509, 0.2534, 0.2928, 0.2488, 0.2316, 0.2610, 0.3258, 0.3559, 0.2586, 0.2695, 0.2621, 0.2868, 0.3092, 0.2400, 0.2550},
+      { 0.2247, 0.2083, 0.3951, 0.2565, 0.3159, 0.2609, 0.2555, 0.2629, 0.2897, 0.2610, 0.2740, 0.3764, 0.4050, 0.2506, 0.2658, 0.2632, 0.2996, 0.3064, 0.2301, 0.2024},
+      { 0.3386, 0.3377, 0.4389, 0.4030, 0.4431, 0.3563, 0.3621, 0.3708, 0.3566, 0.3258, 0.3764, 0.4541, 0.4902, 0.4002, 0.4182, 0.4152, 0.4175, 0.4663, 0.3351, 0.3203},
+      { 0.3159, 0.3380, 0.4441, 0.3768, 0.4395, 0.3809, 0.3745, 0.4009, 0.3985, 0.3559, 0.4050, 0.4902, 0.5010, 0.4084, 0.4306, 0.4230, 0.4578, 0.4966, 0.3346, 0.3892},
+      { 0.1962, 0.2212, 0.3919, 0.2988, 0.3506, 0.2896, 0.3290, 0.2810, 0.2940, 0.2586, 0.2506, 0.4002, 0.4084, 0.3973, 0.3961, 0.3696, 0.3566, 0.4065, 0.3004, 0.3079},
+      { 0.2032, 0.2258, 0.3938, 0.3020, 0.3569, 0.2792, 0.3317, 0.2989, 0.2935, 0.2695, 0.2658, 0.4182, 0.4306, 0.3961, 0.4066, 0.3935, 0.3672, 0.4197, 0.3161, 0.3273},
+      { 0.2134, 0.2316, 0.3879, 0.3017, 0.3416, 0.2778, 0.2971, 0.2715, 0.2990, 0.2621, 0.2632, 0.4152, 0.4230, 0.3696, 0.3935, 0.3865, 0.3596, 0.4129, 0.3071, 0.2967},
+      { 0.2389, 0.2420, 0.4649, 0.2913, 0.3637, 0.2958, 0.3040, 0.3055, 0.2975, 0.2868, 0.2996, 0.4175, 0.4578, 0.3566, 0.3672, 0.3596, 0.4321, 0.4363, 0.3025, 0.3245},
+      { 0.2371, 0.2512, 0.4194, 0.3260, 0.3895, 0.3212, 0.3405, 0.3243, 0.3281, 0.3092, 0.3064, 0.4663, 0.4966, 0.4065, 0.4197, 0.4129, 0.4363, 0.4833, 0.3230, 0.3321},
+      { 0.1737, 0.1744, 0.3716, 0.2649, 0.2932, 0.2330, 0.2630, 0.2591, 0.2471, 0.2400, 0.2301, 0.3351, 0.3346, 0.3004, 0.3161, 0.3071, 0.3025, 0.3230, 0.2584, 0.2260},
+      { 0.1341, 0.1169, 0.4733, 0.2587, 0.3258, 0.2590, 0.2679, 0.2567, 0.2497, 0.2550, 0.2024, 0.3203, 0.3892, 0.3079, 0.3273, 0.2967, 0.3245, 0.3321, 0.2260, 0.4809}},
+    {
+      { 0.0774, 0.0807, 0.3682, 0.3395, 0.2720, 0.1338, 0.1366, 0.2080, 0.2155, 0.1168, 0.1272, 0.2527, 0.2288, 0.1059, 0.1259, 0.1290, 0.1397, 0.1478, 0.1004, 0.0716},
+      { 0.0807, 0.1179, 0.3934, 0.3322, 0.2455, 0.1221, 0.1431, 0.1670, 0.2233, 0.0897, 0.1137, 0.2782, 0.2540, 0.1437, 0.1527, 0.1600, 0.1470, 0.1751, 0.0990, 0.0832},
+      { 0.3682, 0.3934, 0.2746, 0.2323, 0.3230, 0.2509, 0.2808, 0.2860, 0.3135, 0.2269, 0.2523, 0.3707, 0.3802, 0.2804, 0.3009, 0.2960, 0.2949, 0.3245, 0.2501, 0.2587},
+      { 0.3395, 0.3322, 0.2323, 0.1859, 0.3115, 0.3350, 0.3552, 0.3093, 0.2699, 0.2556, 0.2205, 0.3912, 0.3466, 0.3396, 0.3387, 0.3004, 0.3567, 0.3194, 0.3073, 0.3330},
+      { 0.2720, 0.2455, 0.3230, 0.3115, 0.3250, 0.2583, 0.2884, 0.2611, 0.2814, 0.2238, 0.2369, 0.3822, 0.3713, 0.2763, 0.2938, 0.2936, 0.2906, 0.3444, 0.2184, 0.2938},
+      { 0.1338, 0.1221, 0.2509, 0.3350, 0.2583, 0.1781, 0.2011, 0.2203, 0.1964, 0.1491, 0.1586, 0.2630, 0.2757, 0.2149, 0.2127, 0.2098, 0.2084, 0.2478, 0.1431, 0.1868},
+      { 0.1366, 0.1431, 0.2808, 0.3552, 0.2884, 0.2011, 0.2526, 0.2112, 0.2251, 0.1640, 0.1695, 0.3063, 0.3171, 0.2589, 0.2670, 0.2328, 0.2266, 0.2731, 0.1811, 0.2007},
+      { 0.2080, 0.1670, 0.2860, 0.3093, 0.2611, 0.2203, 0.2112, 0.3174, 0.2471, 0.1996, 0.1861, 0.2867, 0.3295, 0.1964, 0.2167, 0.2076, 0.2442, 0.2455, 0.1804, 0.1777},
+      { 0.2155, 0.2233, 0.3135, 0.2699, 0.2814, 0.1964, 0.2251, 0.2471, 0.2714, 0.1713, 0.1976, 0.3094, 0.3374, 0.2180, 0.2162, 0.2376, 0.2261, 0.2537, 0.1762, 0.2033},
+      { 0.1168, 0.0897, 0.2269, 0.2556, 0.2238, 0.1491, 0.1640, 0.1996, 0.1713, 0.1498, 0.1328, 0.2590, 0.2748, 0.1692, 0.1798, 0.2158, 0.2366, 0.2389, 0.1783, 0.1931},
+      { 0.1272, 0.1137, 0.2523, 0.2205, 0.2369, 0.1586, 0.1695, 0.1861, 0.1976, 0.1328, 0.1717, 0.3199, 0.3312, 0.1649, 0.1818, 0.1933, 0.1967, 0.2380, 0.1333, 0.0841},
+      { 0.2527, 0.2782, 0.3707, 0.3912, 0.3822, 0.2630, 0.3063, 0.2867, 0.3094, 0.2590, 0.3199, 0.4125, 0.4406, 0.3512, 0.3749, 0.3710, 0.3635, 0.4305, 0.2752, 0.3105},
+      { 0.2288, 0.2540, 0.3802, 0.3466, 0.3713, 0.2757, 0.3171, 0.3295, 0.3374, 0.2748, 0.3312, 0.4406, 0.4808, 0.3621, 0.3757, 0.3663, 0.4235, 0.4279, 0.2687, 0.2746},
+      { 0.1059, 0.1437, 0.2804, 0.3396, 0.2763, 0.2149, 0.2589, 0.1964, 0.2180, 0.1692, 0.1649, 0.3512, 0.3621, 0.3462, 0.3463, 0.3125, 0.3146, 0.3526, 0.2379, 0.2591},
+      { 0.1259, 0.1527, 0.3009, 0.3387, 0.2938, 0.2127, 0.2670, 0.2167, 0.2162, 0.1798, 0.1818, 0.3749, 0.3757, 0.3463, 0.3590, 0.3345, 0.3251, 0.3736, 0.2597, 0.2716},
+      { 0.1290, 0.1600, 0.2960, 0.3004, 0.2936, 0.2098, 0.2328, 0.2076, 0.2376, 0.2158, 0.1933, 0.3710, 0.3663, 0.3125, 0.3345, 0.3338, 0.3009, 0.3658, 0.2439, 0.2448},
+      { 0.1397, 0.1470, 0.2949, 0.3567, 0.2906, 0.2084, 0.2266, 0.2442, 0.2261, 0.2366, 0.1967, 0.3635, 0.4235, 0.3146, 0.3251, 0.3009, 0.3532, 0.3864, 0.2325, 0.2985},
+      { 0.1478, 0.1751, 0.3245, 0.3194, 0.3444, 0.2478, 0.2731, 0.2455, 0.2537, 0.2389, 0.2380, 0.4305, 0.4279, 0.3526, 0.3736, 0.3658, 0.3864, 0.4518, 0.2603, 0.3176},
+      { 0.1004, 0.0990, 0.2501, 0.3073, 0.2184, 0.1431, 0.1811, 0.1804, 0.1762, 0.1783, 0.1333, 0.2752, 0.2687, 0.2379, 0.2597, 0.2439, 0.2325, 0.2603, 0.1867, 0.1673},
+      { 0.0716, 0.0832, 0.2587, 0.3330, 0.2938, 0.1868, 0.2007, 0.1777, 0.2033, 0.1931, 0.0841, 0.3105, 0.2746, 0.2591, 0.2716, 0.2448, 0.2985, 0.3176, 0.1673, 0.4135}},
+    {
+      { 0.2378, 0.2375, 0.4683, 0.4146, 0.5112, 0.3322, 0.3067, 0.3909, 0.3513, 0.2913, 0.3002, 0.3851, 0.3372, 0.2604, 0.2630, 0.2646, 0.2937, 0.3111, 0.2453, 0.2562},
+      { 0.2375, 0.2704, 0.4809, 0.4034, 0.4012, 0.2936, 0.3196, 0.3462, 0.3272, 0.2605, 0.2837, 0.3882, 0.3662, 0.2791, 0.2746, 0.2686, 0.3128, 0.3163, 0.2435, 0.2286},
+      { 0.4683, 0.4809, 0.3393, 0.2880, 0.3642, 0.3594, 0.3641, 0.4052, 0.4129, 0.3138, 0.3284, 0.4609, 0.4303, 0.3519, 0.3703, 0.3665, 0.3686, 0.3932, 0.3186, 0.3258},
+      { 0.4146, 0.4034, 0.2880, 0.2368, 0.2880, 0.2900, 0.2921, 0.3047, 0.3271, 0.2493, 0.2238, 0.4045, 0.3543, 0.3065, 0.3075, 0.2972, 0.3034, 0.3181, 0.2566, 0.2938},
+      { 0.5112, 0.4012, 0.3642, 0.2880, 0.5267, 0.5460, 0.5316, 0.4877, 0.4418, 0.4318, 0.4426, 0.4528, 0.4983, 0.4628, 0.4314, 0.3923, 0.4623, 0.4472, 0.4468, 0.7791},
+      { 0.3322, 0.2936, 0.3594, 0.2900, 0.5460, 0.3486, 0.3653, 0.4033, 0.4205, 0.3074, 0.3066, 0.4450, 0.4357, 0.3400, 0.3374, 0.3349, 0.4006, 0.4086, 0.3041, 0.3492},
+      { 0.3067, 0.3196, 0.3641, 0.2921, 0.5316, 0.3653, 0.3862, 0.4034, 0.3935, 0.3029, 0.3257, 0.4383, 0.4495, 0.3824, 0.3794, 0.3661, 0.3731, 0.4189, 0.3248, 0.3587},
+      { 0.3909, 0.3462, 0.4052, 0.3047, 0.4877, 0.4033, 0.4034, 0.4881, 0.4022, 0.3416, 0.3556, 0.4231, 0.4371, 0.3395, 0.3514, 0.3310, 0.4071, 0.4045, 0.3321, 0.3742},
+      { 0.3513, 0.3272, 0.4129, 0.3271, 0.4418, 0.4205, 0.3935, 0.4022, 0.4014, 0.3131, 0.3594, 0.3975, 0.4624, 0.3469, 0.3499, 0.3445, 0.3890, 0.3751, 0.3105, 0.3643},
+      { 0.2913, 0.2605, 0.3138, 0.2493, 0.4318, 0.3074, 0.3029, 0.3416, 0.3131, 0.3105, 0.2913, 0.3921, 0.3916, 0.3031, 0.3071, 0.3084, 0.3525, 0.3780, 0.2975, 0.3197},
+      { 0.3002, 0.2837, 0.3284, 0.2238, 0.4426, 0.3066, 0.3257, 0.3556, 0.3594, 0.2913, 0.3218, 0.4357, 0.4072, 0.3009, 0.2953, 0.3022, 0.3125, 0.4026, 0.2570, 0.1890},
+      { 0.3851, 0.3882, 0.4609, 0.4045, 0.4528, 0.4450, 0.4383, 0.4231, 0.3975, 0.3921, 0.4357, 0.4785, 0.5021, 0.4499, 0.4527, 0.4564, 0.4765, 0.4885, 0.4064, 0.4282},
+      { 0.3372, 0.3662, 0.4303, 0.3543, 0.4983, 0.4357, 0.4495, 0.4371, 0.4624, 0.3916, 0.4072, 0.5021, 0.5501, 0.4681, 0.4897, 0.4773, 0.5747, 0.5348, 0.3890, 0.4630},
+      { 0.2604, 0.2791, 0.3519, 0.3065, 0.4628, 0.3400, 0.3824, 0.3395, 0.3469, 0.3031, 0.3009, 0.4499, 0.4681, 0.4628, 0.4739, 0.4390, 0.4256, 0.4705, 0.3687, 0.3496},
+      { 0.2630, 0.2746, 0.3703, 0.3075, 0.4314, 0.3374, 0.3794, 0.3514, 0.3499, 0.3071, 0.2953, 0.4527, 0.4897, 0.4739, 0.4936, 0.4551, 0.4348, 0.4712, 0.3711, 0.3647},
+      { 0.2646, 0.2686, 0.3665, 0.2972, 0.3923, 0.3349, 0.3661, 0.3310, 0.3445, 0.3084, 0.3022, 0.4564, 0.4773, 0.4390, 0.4551, 0.4400, 0.4333, 0.4629, 0.3684, 0.3562},
+      { 0.2937, 0.3128, 0.3686, 0.3034, 0.4623, 0.4006, 0.3731, 0.4071, 0.3890, 0.3525, 0.3125, 0.4765, 0.5747, 0.4256, 0.4348, 0.4333, 0.5066, 0.4927, 0.3784, 0.4075},
+      { 0.3111, 0.3163, 0.3932, 0.3181, 0.4472, 0.4086, 0.4189, 0.4045, 0.3751, 0.3780, 0.4026, 0.4885, 0.5348, 0.4705, 0.4712, 0.4629, 0.4927, 0.5095, 0.4120, 0.4630},
+      { 0.2453, 0.2435, 0.3186, 0.2566, 0.4468, 0.3041, 0.3248, 0.3321, 0.3105, 0.2975, 0.2570, 0.4064, 0.3890, 0.3687, 0.3711, 0.3684, 0.3784, 0.4120, 0.3427, 0.2905},
+      { 0.2562, 0.2286, 0.3258, 0.2938, 0.7791, 0.3492, 0.3587, 0.3742, 0.3643, 0.3197, 0.1890, 0.4282, 0.4630, 0.3496, 0.3647, 0.3562, 0.4075, 0.4630, 0.2905, 0.6040}},
+    {
+      { 0.1321, 0.1331, 0.3933, 0.3323, 0.3183, 0.2664, 0.2542, 0.2712, 0.2535, 0.2568, 0.1997, 0.3160, 0.3525, 0.2195, 0.2166, 0.2106, 0.2456, 0.2503, 0.2087, 0.1810},
+      { 0.1331, 0.1545, 0.3975, 0.3387, 0.3086, 0.2184, 0.2299, 0.2470, 0.2516, 0.1881, 0.1945, 0.3215, 0.3337, 0.2045, 0.2146, 0.2053, 0.2092, 0.2389, 0.1684, 0.1457},
+      { 0.3933, 0.3975, 0.2939, 0.2294, 0.3250, 0.3033, 0.3042, 0.3175, 0.3238, 0.2541, 0.2841, 0.3997, 0.3859, 0.2823, 0.2998, 0.2905, 0.2865, 0.3309, 0.2531, 0.2590},
+      { 0.3323, 0.3387, 0.2294, 0.1800, 0.2487, 0.2102, 0.2384, 0.2300, 0.2590, 0.1840, 0.1762, 0.3376, 0.3038, 0.2239, 0.2301, 0.2193, 0.2144, 0.2651, 0.1764, 0.1868},
+      { 0.3183, 0.3086, 0.3250, 0.2487, 0.3808, 0.3798, 0.3758, 0.3384, 0.3150, 0.3167, 0.3145, 0.4494, 0.4468, 0.3355, 0.3531, 0.3293, 0.3757, 0.3979, 0.3022, 0.3492},
+      { 0.2664, 0.2184, 0.3033, 0.2102, 0.3798, 0.4186, 0.4006, 0.3703, 0.2984, 0.3486, 0.3130, 0.3757, 0.3824, 0.3820, 0.3515, 0.3110, 0.3563, 0.3583, 0.3773, 0.4392},
+      { 0.2542, 0.2299, 0.3042, 0.2384, 0.3758, 0.4006, 0.3935, 0.3515, 0.3185, 0.3525, 0.2895, 0.3794, 0.3952, 0.3870, 0.3730, 0.3418, 0.3755, 0.3880, 0.3819, 0.3562},
+      { 0.2712, 0.2470, 0.3175, 0.2300, 0.3384, 0.3703, 0.3515, 0.4608, 0.3252, 0.3289, 0.2784, 0.3477, 0.3986, 0.2933, 0.2919, 0.2832, 0.3308, 0.3354, 0.2926, 0.2795},
+      { 0.2535, 0.2516, 0.3238, 0.2590, 0.3150, 0.2984, 0.3185, 0.3252, 0.3015, 0.2716, 0.2704, 0.3475, 0.3865, 0.2811, 0.2847, 0.2748, 0.2927, 0.3223, 0.2548, 0.2494},
+      { 0.2568, 0.1881, 0.2541, 0.1840, 0.3167, 0.3486, 0.3525, 0.3289, 0.2716, 0.3191, 0.2827, 0.3599, 0.3775, 0.3382, 0.3377, 0.3113, 0.3714, 0.3659, 0.3330, 0.3541},
+      { 0.1997, 0.1945, 0.2841, 0.1762, 0.3145, 0.3130, 0.2895, 0.2784, 0.2704, 0.2827, 0.2428, 0.3779, 0.4188, 0.2518, 0.2568, 0.2573, 0.2930, 0.3188, 0.2505, 0.1908},
+      { 0.3160, 0.3215, 0.3997, 0.3376, 0.4494, 0.3757, 0.3794, 0.3477, 0.3475, 0.3599, 0.3779, 0.4541, 0.5157, 0.4202, 0.4200, 0.4166, 0.4464, 0.4927, 0.3585, 0.3835},
+      { 0.3525, 0.3337, 0.3859, 0.3038, 0.4468, 0.3824, 0.3952, 0.3986, 0.3865, 0.3775, 0.4188, 0.5157, 0.5098, 0.4329, 0.4461, 0.4323, 0.4782, 0.5239, 0.3652, 0.4712},
+      { 0.2195, 0.2045, 0.2823, 0.2239, 0.3355, 0.3820, 0.3870, 0.2933, 0.2811, 0.3382, 0.2518, 0.4202, 0.4329, 0.4639, 0.4516, 0.4166, 0.4157, 0.4451, 0.4177, 0.3782},
+      { 0.2166, 0.2146, 0.2998, 0.2301, 0.3531, 0.3515, 0.3730, 0.2919, 0.2847, 0.3377, 0.2568, 0.4200, 0.4461, 0.4516, 0.4643, 0.4344, 0.4292, 0.4524, 0.4005, 0.3706},
+      { 0.2106, 0.2053, 0.2905, 0.2193, 0.3293, 0.3110, 0.3418, 0.2832, 0.2748, 0.3113, 0.2573, 0.4166, 0.4323, 0.4166, 0.4344, 0.4213, 0.4040, 0.4451, 0.3659, 0.3277},
+      { 0.2456, 0.2092, 0.2865, 0.2144, 0.3757, 0.3563, 0.3755, 0.3308, 0.2927, 0.3714, 0.2930, 0.4464, 0.4782, 0.4157, 0.4292, 0.4040, 0.4714, 0.4655, 0.3881, 0.3869},
+      { 0.2503, 0.2389, 0.3309, 0.2651, 0.3979, 0.3583, 0.3880, 0.3354, 0.3223, 0.3659, 0.3188, 0.4927, 0.5239, 0.4451, 0.4524, 0.4451, 0.4655, 0.5153, 0.3807, 0.4281},
+      { 0.2087, 0.1684, 0.2531, 0.1764, 0.3022, 0.3773, 0.3819, 0.2926, 0.2548, 0.3330, 0.2505, 0.3585, 0.3652, 0.4177, 0.4005, 0.3659, 0.3881, 0.3807, 0.4050, 0.4051},
+      { 0.1810, 0.1457, 0.2590, 0.1868, 0.3492, 0.4392, 0.3562, 0.2795, 0.2494, 0.3541, 0.1908, 0.3835, 0.4712, 0.3782, 0.3706, 0.3277, 0.3869, 0.4281, 0.4051, 0.5583}},
+    {
+      { 0.1827, 0.1543, 0.4072, 0.3405, 0.3384, 0.2686, 0.2807, 0.2793, 0.2598, 0.2515, 0.2436, 0.3368, 0.3260, 0.2547, 0.2317, 0.2512, 0.2782, 0.2650, 0.2041, 0.1778},
+      { 0.1543, 0.1782, 0.4304, 0.3710, 0.3385, 0.2384, 0.2529, 0.2499, 0.2775, 0.2140, 0.2078, 0.3298, 0.3317, 0.2666, 0.2542, 0.2480, 0.2439, 0.2643, 0.1945, 0.1698},
+      { 0.4072, 0.4304, 0.3060, 0.2476, 0.3400, 0.3067, 0.3112, 0.3143, 0.3338, 0.2683, 0.2983, 0.4168, 0.4285, 0.3305, 0.3407, 0.3285, 0.3261, 0.3552, 0.2686, 0.2679},
+      { 0.3405, 0.3710, 0.2476, 0.1973, 0.2675, 0.2359, 0.2546, 0.2333, 0.2785, 0.1968, 0.2000, 0.3636, 0.3440, 0.2820, 0.2801, 0.2633, 0.2559, 0.3064, 0.2106, 0.2007},
+      { 0.3384, 0.3385, 0.3400, 0.2675, 0.3819, 0.3886, 0.4055, 0.3302, 0.3375, 0.3325, 0.3137, 0.4602, 0.4613, 0.3764, 0.3936, 0.3670, 0.3761, 0.4069, 0.3176, 0.3587},
+      { 0.2686, 0.2384, 0.3067, 0.2359, 0.3886, 0.4052, 0.4059, 0.3572, 0.3116, 0.3349, 0.3081, 0.3779, 0.4118, 0.3972, 0.3813, 0.3490, 0.3954, 0.3847, 0.3692, 0.3562},
+      { 0.2807, 0.2529, 0.3112, 0.2546, 0.4055, 0.4059, 0.4503, 0.4437, 0.3247, 0.3484, 0.3207, 0.3852, 0.3918, 0.4462, 0.4269, 0.3953, 0.4187, 0.4062, 0.4001, 0.4333},
+      { 0.2793, 0.2499, 0.3143, 0.2333, 0.3302, 0.3572, 0.4437, 0.5319, 0.3098, 0.3328, 0.2921, 0.3650, 0.3830, 0.3556, 0.3383, 0.3098, 0.3848, 0.3413, 0.2937, 0.2950},
+      { 0.2598, 0.2775, 0.3338, 0.2785, 0.3375, 0.3116, 0.3247, 0.3098, 0.3277, 0.2744, 0.2876, 0.3710, 0.4192, 0.3210, 0.3241, 0.3077, 0.3370, 0.3533, 0.2703, 0.2756},
+      { 0.2515, 0.2140, 0.2683, 0.1968, 0.3325, 0.3349, 0.3484, 0.3328, 0.2744, 0.3082, 0.2933, 0.3803, 0.4016, 0.3566, 0.3597, 0.3436, 0.3848, 0.3952, 0.3121, 0.2954},
+      { 0.2436, 0.2078, 0.2983, 0.2000, 0.3137, 0.3081, 0.3207, 0.2921, 0.2876, 0.2933, 0.2768, 0.3990, 0.4308, 0.2998, 0.3186, 0.3167, 0.3565, 0.3541, 0.2924, 0.2063},
+      { 0.3368, 0.3298, 0.4168, 0.3636, 0.4602, 0.3779, 0.3852, 0.3650, 0.3710, 0.3803, 0.3990, 0.4568, 0.5248, 0.4430, 0.4584, 0.4462, 0.4690, 0.4980, 0.3869, 0.3878},
+      { 0.3260, 0.3317, 0.4285, 0.3440, 0.4613, 0.4118, 0.3918, 0.3830, 0.4192, 0.4016, 0.4308, 0.5248, 0.5467, 0.4499, 0.4623, 0.4605, 0.5101, 0.5225, 0.3883, 0.4153},
+      { 0.2547, 0.2666, 0.3305, 0.2820, 0.3764, 0.3972, 0.4462, 0.3556, 0.3210, 0.3566, 0.2998, 0.4430, 0.4499, 0.5110, 0.5002, 0.4614, 0.4549, 0.4850, 0.4560, 0.3928},
+      { 0.2317, 0.2542, 0.3407, 0.2801, 0.3936, 0.3813, 0.4269, 0.3383, 0.3241, 0.3597, 0.3186, 0.4584, 0.4623, 0.5002, 0.5147, 0.4758, 0.4655, 0.4916, 0.4457, 0.3798},
+      { 0.2512, 0.2480, 0.3285, 0.2633, 0.3670, 0.3490, 0.3953, 0.3098, 0.3077, 0.3436, 0.3167, 0.4462, 0.4605, 0.4614, 0.4758, 0.4665, 0.4552, 0.4881, 0.4084, 0.3474},
+      { 0.2782, 0.2439, 0.3261, 0.2559, 0.3761, 0.3954, 0.4187, 0.3848, 0.3370, 0.3848, 0.3565, 0.4690, 0.5101, 0.4549, 0.4655, 0.4552, 0.5201, 0.5187, 0.4178, 0.4202},
+      { 0.2650, 0.2643, 0.3552, 0.3064, 0.4069, 0.3847, 0.4062, 0.3413, 0.3533, 0.3952, 0.3541, 0.4980, 0.5225, 0.4850, 0.4916, 0.4881, 0.5187, 0.5496, 0.4256, 0.4089},
+      { 0.2041, 0.1945, 0.2686, 0.2106, 0.3176, 0.3692, 0.4001, 0.2937, 0.2703, 0.3121, 0.2924, 0.3869, 0.3883, 0.4560, 0.4457, 0.4084, 0.4178, 0.4256, 0.4156, 0.3459},
+      { 0.1778, 0.1698, 0.2679, 0.2007, 0.3587, 0.3562, 0.4333, 0.2950, 0.2756, 0.2954, 0.2063, 0.3878, 0.4153, 0.3928, 0.3798, 0.3474, 0.4202, 0.4089, 0.3459, 0.5264}},
+    {
+      { 0.1807, 0.1565, 0.3989, 0.3528, 0.3336, 0.2940, 0.2733, 0.3134, 0.2752, 0.2576, 0.2441, 0.3085, 0.3012, 0.2011, 0.2168, 0.2113, 0.2439, 0.2537, 0.2130, 0.1935},
+      { 0.1565, 0.1620, 0.4065, 0.3551, 0.3103, 0.2322, 0.2146, 0.2653, 0.2738, 0.2036, 0.1955, 0.2970, 0.3237, 0.1736, 0.2050, 0.2043, 0.2220, 0.2246, 0.1625, 0.1197},
+      { 0.3989, 0.4065, 0.3043, 0.2510, 0.3547, 0.2965, 0.2963, 0.3244, 0.3305, 0.2835, 0.2894, 0.3887, 0.3913, 0.2829, 0.2825, 0.2912, 0.3007, 0.3308, 0.2668, 0.2567},
+      { 0.3528, 0.3551, 0.2510, 0.1930, 0.2960, 0.2232, 0.2301, 0.2781, 0.2769, 0.2216, 0.1805, 0.3329, 0.3125, 0.2142, 0.2219, 0.2276, 0.2145, 0.2547, 0.2047, 0.1777},
+      { 0.3336, 0.3103, 0.3547, 0.2960, 0.4030, 0.3972, 0.4099, 0.3618, 0.3306, 0.3217, 0.3557, 0.4327, 0.4560, 0.3497, 0.3449, 0.3599, 0.3646, 0.3910, 0.3239, 0.3742},
+      { 0.2940, 0.2322, 0.2965, 0.2232, 0.3972, 0.3341, 0.3364, 0.4474, 0.3061, 0.2782, 0.2648, 0.3519, 0.3924, 0.2969, 0.3057, 0.2875, 0.3408, 0.3334, 0.2879, 0.2795},
+      { 0.2733, 0.2146, 0.2963, 0.2301, 0.4099, 0.3364, 0.3586, 0.4648, 0.3012, 0.2717, 0.2625, 0.3622, 0.3902, 0.3466, 0.3393, 0.3133, 0.3332, 0.3525, 0.3024, 0.2950},
+      { 0.3134, 0.2653, 0.3244, 0.2781, 0.3618, 0.4474, 0.4648, 0.6324, 0.3602, 0.3553, 0.3307, 0.3574, 0.3672, 0.3708, 0.3739, 0.3307, 0.4034, 0.3649, 0.3778, 0.4564},
+      { 0.2752, 0.2738, 0.3305, 0.2769, 0.3306, 0.3061, 0.3012, 0.3602, 0.3068, 0.2722, 0.2969, 0.3384, 0.3673, 0.2584, 0.2839, 0.2799, 0.3059, 0.3194, 0.2607, 0.2386},
+      { 0.2576, 0.2036, 0.2835, 0.2216, 0.3217, 0.2782, 0.2717, 0.3553, 0.2722, 0.2694, 0.2367, 0.3143, 0.3367, 0.2530, 0.2630, 0.2961, 0.3230, 0.3141, 0.3024, 0.2498},
+      { 0.2441, 0.1955, 0.2894, 0.1805, 0.3557, 0.2648, 0.2625, 0.3307, 0.2969, 0.2367, 0.2843, 0.3821, 0.3947, 0.2515, 0.2588, 0.2716, 0.3037, 0.3327, 0.2309, 0.1687},
+      { 0.3085, 0.2970, 0.3887, 0.3329, 0.4327, 0.3519, 0.3622, 0.3574, 0.3384, 0.3143, 0.3821, 0.4465, 0.5219, 0.3895, 0.4047, 0.3967, 0.4293, 0.4581, 0.3309, 0.3490},
+      { 0.3012, 0.3237, 0.3913, 0.3125, 0.4560, 0.3924, 0.3902, 0.3672, 0.3673, 0.3367, 0.3947, 0.5219, 0.5014, 0.3949, 0.4150, 0.4183, 0.4698, 0.5086, 0.3414, 0.3589},
+      { 0.2011, 0.1736, 0.2829, 0.2142, 0.3497, 0.2969, 0.3466, 0.3708, 0.2584, 0.2530, 0.2515, 0.3895, 0.3949, 0.4036, 0.4100, 0.3834, 0.3864, 0.4125, 0.3168, 0.3146},
+      { 0.2168, 0.2050, 0.2825, 0.2219, 0.3449, 0.3057, 0.3393, 0.3739, 0.2839, 0.2630, 0.2588, 0.4047, 0.4150, 0.4100, 0.4196, 0.3962, 0.3957, 0.4223, 0.3299, 0.3354},
+      { 0.2113, 0.2043, 0.2912, 0.2276, 0.3599, 0.2875, 0.3133, 0.3307, 0.2799, 0.2961, 0.2716, 0.3967, 0.4183, 0.3834, 0.3962, 0.3931, 0.3785, 0.4086, 0.3092, 0.3044},
+      { 0.2439, 0.2220, 0.3007, 0.2145, 0.3646, 0.3408, 0.3332, 0.4034, 0.3059, 0.3230, 0.3037, 0.4293, 0.4698, 0.3864, 0.3957, 0.3785, 0.4388, 0.4363, 0.3305, 0.3707},
+      { 0.2537, 0.2246, 0.3308, 0.2547, 0.3910, 0.3334, 0.3525, 0.3649, 0.3194, 0.3141, 0.3327, 0.4581, 0.5086, 0.4125, 0.4223, 0.4086, 0.4363, 0.4632, 0.3317, 0.3676},
+      { 0.2130, 0.1625, 0.2668, 0.2047, 0.3239, 0.2879, 0.3024, 0.3778, 0.2607, 0.3024, 0.2309, 0.3309, 0.3414, 0.3168, 0.3299, 0.3092, 0.3305, 0.3317, 0.2830, 0.2437},
+      { 0.1935, 0.1197, 0.2567, 0.1777, 0.3742, 0.2795, 0.2950, 0.4564, 0.2386, 0.2498, 0.1687, 0.3490, 0.3589, 0.3146, 0.3354, 0.3044, 0.3707, 0.3676, 0.2437, 0.5172}},
+    {
+      { 0.1423, 0.1315, 0.4087, 0.3540, 0.3341, 0.2225, 0.2181, 0.2630, 0.3000, 0.2048, 0.1818, 0.3105, 0.2861, 0.1801, 0.1762, 0.1860, 0.2167, 0.2308, 0.1651, 0.1233},
+      { 0.1315, 0.1528, 0.4253, 0.3608, 0.3267, 0.2339, 0.2356, 0.2330, 0.2748, 0.1764, 0.1957, 0.3238, 0.3161, 0.2164, 0.2262, 0.2200, 0.2463, 0.2554, 0.1829, 0.1902},
+      { 0.4087, 0.4253, 0.2895, 0.2134, 0.3328, 0.2814, 0.3042, 0.3120, 0.3341, 0.2552, 0.2524, 0.3928, 0.4072, 0.2819, 0.2961, 0.3058, 0.3009, 0.3385, 0.2422, 0.2497},
+      { 0.3540, 0.3608, 0.2134, 0.1817, 0.2613, 0.2030, 0.2272, 0.2171, 0.2708, 0.1859, 0.1857, 0.3509, 0.3298, 0.2285, 0.2337, 0.2352, 0.2232, 0.2773, 0.1807, 0.2033},
+      { 0.3341, 0.3267, 0.3328, 0.2613, 0.4939, 0.3838, 0.3877, 0.3505, 0.3646, 0.2862, 0.3115, 0.4469, 0.4615, 0.3377, 0.3460, 0.3594, 0.3802, 0.3892, 0.2986, 0.3643},
+      { 0.2225, 0.2339, 0.2814, 0.2030, 0.3838, 0.2759, 0.2891, 0.2970, 0.4047, 0.2545, 0.2475, 0.3328, 0.3708, 0.2831, 0.2806, 0.2750, 0.3337, 0.3101, 0.2305, 0.2494},
+      { 0.2181, 0.2356, 0.3042, 0.2272, 0.3877, 0.2891, 0.3193, 0.2946, 0.4037, 0.2662, 0.2525, 0.3612, 0.3670, 0.3272, 0.3332, 0.3063, 0.3322, 0.3513, 0.2519, 0.2756},
+      { 0.2630, 0.2330, 0.3120, 0.2171, 0.3505, 0.2970, 0.2946, 0.3521, 0.4235, 0.2575, 0.2484, 0.3464, 0.3897, 0.2581, 0.2813, 0.2722, 0.3284, 0.3079, 0.2345, 0.2386},
+      { 0.3000, 0.2748, 0.3341, 0.2708, 0.3646, 0.4047, 0.4037, 0.4235, 0.3472, 0.3366, 0.4133, 0.4001, 0.4191, 0.3904, 0.3491, 0.3518, 0.3892, 0.3843, 0.3503, 0.4986},
+      { 0.2048, 0.1764, 0.2552, 0.1859, 0.2862, 0.2545, 0.2662, 0.2575, 0.3366, 0.2271, 0.2285, 0.3293, 0.3221, 0.2594, 0.2741, 0.2721, 0.3239, 0.3183, 0.2416, 0.2497},
+      { 0.1818, 0.1957, 0.2524, 0.1857, 0.3115, 0.2475, 0.2525, 0.2484, 0.4133, 0.2285, 0.2700, 0.3838, 0.3782, 0.2273, 0.2575, 0.2567, 0.2980, 0.3116, 0.1965, 0.1650},
+      { 0.3105, 0.3238, 0.3928, 0.3509, 0.4469, 0.3328, 0.3612, 0.3464, 0.4001, 0.3293, 0.3838, 0.4513, 0.5007, 0.3971, 0.4243, 0.4129, 0.4336, 0.4746, 0.3339, 0.3661},
+      { 0.2861, 0.3161, 0.4072, 0.3298, 0.4615, 0.3708, 0.3670, 0.3897, 0.4191, 0.3221, 0.3782, 0.5007, 0.5231, 0.4221, 0.4426, 0.4377, 0.4640, 0.5279, 0.3272, 0.3887},
+      { 0.1801, 0.2164, 0.2819, 0.2285, 0.3377, 0.2831, 0.3272, 0.2581, 0.3904, 0.2594, 0.2273, 0.3971, 0.4221, 0.3929, 0.4030, 0.3801, 0.3875, 0.4162, 0.2986, 0.3084},
+      { 0.1762, 0.2262, 0.2961, 0.2337, 0.3460, 0.2806, 0.3332, 0.2813, 0.3491, 0.2741, 0.2575, 0.4243, 0.4426, 0.4030, 0.4170, 0.3957, 0.4002, 0.4383, 0.3233, 0.3367},
+      { 0.1860, 0.2200, 0.3058, 0.2352, 0.3594, 0.2750, 0.3063, 0.2722, 0.3518, 0.2721, 0.2567, 0.4129, 0.4377, 0.3801, 0.3957, 0.4001, 0.3858, 0.4310, 0.3075, 0.2949},
+      { 0.2167, 0.2463, 0.3009, 0.2232, 0.3802, 0.3337, 0.3322, 0.3284, 0.3892, 0.3239, 0.2980, 0.4336, 0.4640, 0.3875, 0.4002, 0.3858, 0.4588, 0.4649, 0.3450, 0.4008},
+      { 0.2308, 0.2554, 0.3385, 0.2773, 0.3892, 0.3101, 0.3513, 0.3079, 0.3843, 0.3183, 0.3116, 0.4746, 0.5279, 0.4162, 0.4383, 0.4310, 0.4649, 0.5051, 0.3273, 0.4034},
+      { 0.1651, 0.1829, 0.2422, 0.1807, 0.2986, 0.2305, 0.2519, 0.2345, 0.3503, 0.2416, 0.1965, 0.3339, 0.3272, 0.2986, 0.3233, 0.3075, 0.3450, 0.3273, 0.2468, 0.2065},
+      { 0.1233, 0.1902, 0.2497, 0.2033, 0.3643, 0.2494, 0.2756, 0.2386, 0.4986, 0.2497, 0.1650, 0.3661, 0.3887, 0.3084, 0.3367, 0.2949, 0.4008, 0.4034, 0.2065, 0.4609}},
+    {
+      { 0.1400, 0.1152, 0.3776, 0.3268, 0.3087, 0.2496, 0.2131, 0.2787, 0.2388, 0.2378, 0.1888, 0.2995, 0.2650, 0.1711, 0.1740, 0.2029, 0.2022, 0.2137, 0.2355, 0.1489},
+      { 0.1152, 0.1558, 0.3902, 0.3214, 0.2938, 0.2126, 0.2102, 0.2410, 0.2322, 0.1585, 0.2098, 0.2988, 0.2910, 0.1909, 0.2025, 0.1975, 0.2053, 0.2151, 0.1906, 0.1263},
+      { 0.3776, 0.3902, 0.2881, 0.2409, 0.3045, 0.2831, 0.2772, 0.3225, 0.3150, 0.2448, 0.2737, 0.3754, 0.3908, 0.2699, 0.2629, 0.2949, 0.2932, 0.3031, 0.2547, 0.2550},
+      { 0.3268, 0.3214, 0.2409, 0.1720, 0.2194, 0.2076, 0.1927, 0.2486, 0.2398, 0.1747, 0.1919, 0.3174, 0.2859, 0.2018, 0.2137, 0.2480, 0.2103, 0.2385, 0.2253, 0.1931},
+      { 0.3087, 0.2938, 0.3045, 0.2194, 0.3881, 0.3574, 0.3381, 0.3131, 0.2875, 0.2928, 0.2785, 0.3951, 0.4284, 0.2931, 0.2998, 0.3122, 0.3482, 0.3592, 0.3112, 0.3197},
+      { 0.2496, 0.2126, 0.2831, 0.2076, 0.3574, 0.3983, 0.3515, 0.3304, 0.2886, 0.3739, 0.2842, 0.3531, 0.3546, 0.3154, 0.3170, 0.3042, 0.3538, 0.3518, 0.3617, 0.3541},
+      { 0.2131, 0.2102, 0.2772, 0.1927, 0.3381, 0.3515, 0.3825, 0.3023, 0.2812, 0.3619, 0.2732, 0.3644, 0.3866, 0.3404, 0.3451, 0.3362, 0.3625, 0.3638, 0.3692, 0.2954},
+      { 0.2787, 0.2410, 0.3225, 0.2486, 0.3131, 0.3304, 0.3023, 0.3904, 0.3064, 0.3773, 0.2499, 0.3343, 0.3796, 0.2347, 0.2437, 0.2837, 0.3182, 0.3041, 0.2980, 0.2498},
+      { 0.2388, 0.2322, 0.3150, 0.2398, 0.2875, 0.2886, 0.2812, 0.3064, 0.2891, 0.2658, 0.2938, 0.3417, 0.3656, 0.2669, 0.2759, 0.2961, 0.2988, 0.2977, 0.2722, 0.2497},
+      { 0.2378, 0.1585, 0.2448, 0.1747, 0.2928, 0.3739, 0.3619, 0.3773, 0.2658, 0.3036, 0.2539, 0.3074, 0.3218, 0.3249, 0.3031, 0.3295, 0.3795, 0.3333, 0.3843, 0.4031},
+      { 0.1888, 0.2098, 0.2737, 0.1919, 0.2785, 0.2842, 0.2732, 0.2499, 0.2938, 0.2539, 0.2406, 0.3359, 0.4096, 0.2366, 0.2382, 0.2585, 0.2988, 0.3103, 0.2415, 0.2043},
+      { 0.2995, 0.2988, 0.3754, 0.3174, 0.3951, 0.3531, 0.3644, 0.3343, 0.3417, 0.3074, 0.3359, 0.4409, 0.4761, 0.3890, 0.4078, 0.4100, 0.4262, 0.4674, 0.3811, 0.3651},
+      { 0.2650, 0.2910, 0.3908, 0.2859, 0.4284, 0.3546, 0.3866, 0.3796, 0.3656, 0.3218, 0.4096, 0.4761, 0.5409, 0.4161, 0.4321, 0.4158, 0.4857, 0.5037, 0.3605, 0.4031},
+      { 0.1711, 0.1909, 0.2699, 0.2018, 0.2931, 0.3154, 0.3404, 0.2347, 0.2669, 0.3249, 0.2366, 0.3890, 0.4161, 0.4243, 0.4347, 0.4133, 0.4112, 0.4353, 0.4190, 0.3155},
+      { 0.1740, 0.2025, 0.2629, 0.2137, 0.2998, 0.3170, 0.3451, 0.2437, 0.2759, 0.3031, 0.2382, 0.4078, 0.4321, 0.4347, 0.4558, 0.4227, 0.4263, 0.4432, 0.4082, 0.3239},
+      { 0.2029, 0.1975, 0.2949, 0.2480, 0.3122, 0.3042, 0.3362, 0.2837, 0.2961, 0.3295, 0.2585, 0.4100, 0.4158, 0.4133, 0.4227, 0.4164, 0.3977, 0.4293, 0.3977, 0.3155},
+      { 0.2022, 0.2053, 0.2932, 0.2103, 0.3482, 0.3538, 0.3625, 0.3182, 0.2988, 0.3795, 0.2988, 0.4262, 0.4857, 0.4112, 0.4263, 0.3977, 0.4872, 0.4597, 0.4281, 0.3656},
+      { 0.2137, 0.2151, 0.3031, 0.2385, 0.3592, 0.3518, 0.3638, 0.3041, 0.2977, 0.3333, 0.3103, 0.4674, 0.5037, 0.4353, 0.4432, 0.4293, 0.4597, 0.4744, 0.3960, 0.4031},
+      { 0.2355, 0.1906, 0.2547, 0.2253, 0.3112, 0.3617, 0.3692, 0.2980, 0.2722, 0.3843, 0.2415, 0.3811, 0.3605, 0.4190, 0.4082, 0.3977, 0.4281, 0.3960, 0.4500, 0.3861},
+      { 0.1489, 0.1263, 0.2550, 0.1931, 0.3197, 0.3541, 0.2954, 0.2498, 0.2497, 0.4031, 0.2043, 0.3651, 0.4031, 0.3155, 0.3239, 0.3155, 0.3656, 0.4031, 0.3861, 0.5276}},
+    {
+      { 0.1295, 0.1188, 0.3888, 0.3379, 0.2828, 0.1961, 0.2019, 0.2515, 0.2441, 0.1974, 0.2317, 0.2848, 0.2635, 0.1502, 0.1526, 0.1496, 0.1824, 0.2073, 0.1259, 0.0580},
+      { 0.1188, 0.1459, 0.3879, 0.3335, 0.2930, 0.1786, 0.2081, 0.2114, 0.2358, 0.1538, 0.2119, 0.2901, 0.2839, 0.1627, 0.1768, 0.1735, 0.1606, 0.2087, 0.1185, 0.0323},
+      { 0.3888, 0.3879, 0.2941, 0.2307, 0.3117, 0.2870, 0.2836, 0.3125, 0.3229, 0.2393, 0.3075, 0.3774, 0.3901, 0.2626, 0.2827, 0.2835, 0.2743, 0.3214, 0.2261, 0.2024},
+      { 0.3379, 0.3335, 0.2307, 0.1905, 0.2398, 0.1867, 0.2121, 0.2411, 0.2474, 0.1683, 0.2288, 0.3263, 0.3093, 0.2089, 0.2222, 0.2152, 0.2017, 0.2605, 0.1624, 0.0841},
+      { 0.2828, 0.2930, 0.3117, 0.2398, 0.3882, 0.3223, 0.3417, 0.3142, 0.2977, 0.2784, 0.3408, 0.4160, 0.4191, 0.3020, 0.3183, 0.3109, 0.3247, 0.3898, 0.2552, 0.1890},
+      { 0.1961, 0.1786, 0.2870, 0.1867, 0.3223, 0.2822, 0.2842, 0.2864, 0.2738, 0.2549, 0.3750, 0.3299, 0.3576, 0.2666, 0.2825, 0.2614, 0.2775, 0.3045, 0.2501, 0.1908},
+      { 0.2019, 0.2081, 0.2836, 0.2121, 0.3417, 0.2842, 0.3260, 0.2909, 0.2988, 0.2631, 0.3503, 0.3667, 0.3592, 0.3171, 0.3337, 0.3042, 0.3375, 0.3658, 0.2789, 0.2063},
+      { 0.2515, 0.2114, 0.3125, 0.2411, 0.3142, 0.2864, 0.2909, 0.3765, 0.3145, 0.2747, 0.3488, 0.3189, 0.3536, 0.2568, 0.2528, 0.2508, 0.2946, 0.2986, 0.2291, 0.1687},
+      { 0.2441, 0.2358, 0.3229, 0.2474, 0.2977, 0.2738, 0.2988, 0.3145, 0.2930, 0.2578, 0.2916, 0.3590, 0.3676, 0.2528, 0.2703, 0.2633, 0.2863, 0.2843, 0.2147, 0.1650},
+      { 0.1974, 0.1538, 0.2393, 0.1683, 0.2784, 0.2549, 0.2631, 0.2747, 0.2578, 0.2657, 0.2784, 0.3127, 0.3781, 0.2683, 0.2782, 0.2747, 0.3167, 0.3090, 0.2392, 0.2043},
+      { 0.2317, 0.2119, 0.3075, 0.2288, 0.3408, 0.3750, 0.3503, 0.3488, 0.2916, 0.2784, 0.2982, 0.4030, 0.4568, 0.3390, 0.3262, 0.3109, 0.3646, 0.3751, 0.3014, 0.3869},
+      { 0.2848, 0.2901, 0.3774, 0.3263, 0.4160, 0.3299, 0.3667, 0.3189, 0.3590, 0.3127, 0.4030, 0.4112, 0.4624, 0.3949, 0.4236, 0.4227, 0.4386, 0.4670, 0.3332, 0.2940},
+      { 0.2635, 0.2839, 0.3901, 0.3093, 0.4191, 0.3576, 0.3592, 0.3536, 0.3676, 0.3781, 0.4568, 0.4624, 0.5583, 0.4179, 0.4204, 0.4467, 0.4766, 0.5160, 0.3429, 0.3334},
+      { 0.1502, 0.1627, 0.2626, 0.2089, 0.3020, 0.2666, 0.3171, 0.2568, 0.2528, 0.2683, 0.3390, 0.3949, 0.4179, 0.4091, 0.4189, 0.4070, 0.3797, 0.4130, 0.3441, 0.2848},
+      { 0.1526, 0.1768, 0.2827, 0.2222, 0.3183, 0.2825, 0.3337, 0.2528, 0.2703, 0.2782, 0.3262, 0.4236, 0.4204, 0.4189, 0.4662, 0.4272, 0.4625, 0.4372, 0.3575, 0.3140},
+      { 0.1496, 0.1735, 0.2835, 0.2152, 0.3109, 0.2614, 0.3042, 0.2508, 0.2633, 0.2747, 0.3109, 0.4227, 0.4467, 0.4070, 0.4272, 0.4141, 0.4140, 0.4464, 0.3296, 0.2682},
+      { 0.1824, 0.1606, 0.2743, 0.2017, 0.3247, 0.2775, 0.3375, 0.2946, 0.2863, 0.3167, 0.3646, 0.4386, 0.4766, 0.3797, 0.4625, 0.4140, 0.4557, 0.4599, 0.3568, 0.2867},
+      { 0.2073, 0.2087, 0.3214, 0.2605, 0.3898, 0.3045, 0.3658, 0.2986, 0.2843, 0.3090, 0.3751, 0.4670, 0.5160, 0.4130, 0.4372, 0.4464, 0.4599, 0.4991, 0.3427, 0.3517},
+      { 0.1259, 0.1185, 0.2261, 0.1624, 0.2552, 0.2501, 0.2789, 0.2291, 0.2147, 0.2392, 0.3014, 0.3332, 0.3429, 0.3441, 0.3575, 0.3296, 0.3568, 0.3427, 0.2901, 0.2241},
+      { 0.0580, 0.0323, 0.2024, 0.0841, 0.1890, 0.1908, 0.2063, 0.1687, 0.1650, 0.2043, 0.3869, 0.2940, 0.3334, 0.2848, 0.3140, 0.2682, 0.2867, 0.3517, 0.2241, 0.4487}},
+    {
+      { 0.2737, 0.2771, 0.5173, 0.4491, 0.4622, 0.3746, 0.3630, 0.3814, 0.3834, 0.3428, 0.3338, 0.4016, 0.4245, 0.3405, 0.3344, 0.3456, 0.3793, 0.3828, 0.3011, 0.2767},
+      { 0.2771, 0.3036, 0.5483, 0.4665, 0.4631, 0.3469, 0.3549, 0.3710, 0.3922, 0.3126, 0.3423, 0.4062, 0.4510, 0.3541, 0.3787, 0.3635, 0.3816, 0.3860, 0.3013, 0.2638},
+      { 0.5173, 0.5483, 0.4067, 0.3567, 0.4459, 0.3991, 0.4311, 0.4239, 0.4472, 0.3683, 0.3876, 0.4734, 0.5308, 0.4187, 0.4445, 0.4267, 0.4280, 0.4578, 0.3737, 0.3203},
+      { 0.4491, 0.4665, 0.3567, 0.2997, 0.3582, 0.3427, 0.3695, 0.3485, 0.3690, 0.3136, 0.3012, 0.4274, 0.4476, 0.3718, 0.3961, 0.3811, 0.3796, 0.3918, 0.3279, 0.3105},
+      { 0.4622, 0.4631, 0.4459, 0.3582, 0.5336, 0.4855, 0.4884, 0.4407, 0.4203, 0.3826, 0.4149, 0.5066, 0.5372, 0.4489, 0.4511, 0.4469, 0.4814, 0.4907, 0.4044, 0.4282},
+      { 0.3746, 0.3469, 0.3991, 0.3427, 0.4855, 0.4194, 0.4224, 0.4371, 0.4089, 0.3765, 0.3860, 0.4806, 0.4966, 0.4168, 0.4187, 0.4093, 0.4463, 0.4848, 0.3691, 0.3835},
+      { 0.3630, 0.3549, 0.4311, 0.3695, 0.4884, 0.4224, 0.4564, 0.4455, 0.4368, 0.3687, 0.3897, 0.4971, 0.5143, 0.4556, 0.4651, 0.4430, 0.4626, 0.4914, 0.3848, 0.3878},
+      { 0.3814, 0.3710, 0.4239, 0.3485, 0.4407, 0.4371, 0.4455, 0.5355, 0.4308, 0.3907, 0.3943, 0.4705, 0.5087, 0.3880, 0.3940, 0.3916, 0.4592, 0.4534, 0.3577, 0.3490},
+      { 0.3834, 0.3922, 0.4472, 0.3690, 0.4203, 0.4089, 0.4368, 0.4308, 0.4359, 0.3790, 0.3965, 0.4461, 0.5274, 0.4128, 0.4148, 0.4103, 0.4396, 0.4550, 0.3685, 0.3661},
+      { 0.3428, 0.3126, 0.3683, 0.3136, 0.3826, 0.3765, 0.3687, 0.3907, 0.3790, 0.3397, 0.3399, 0.4122, 0.4595, 0.4019, 0.4089, 0.3994, 0.4528, 0.4346, 0.3363, 0.3651},
+      { 0.3338, 0.3423, 0.3876, 0.3012, 0.4149, 0.3860, 0.3897, 0.3943, 0.3965, 0.3399, 0.3787, 0.4838, 0.5268, 0.3690, 0.3935, 0.3950, 0.4592, 0.4366, 0.3344, 0.2940},
+      { 0.4016, 0.4062, 0.4734, 0.4274, 0.5066, 0.4806, 0.4971, 0.4705, 0.4461, 0.4122, 0.4838, 0.5145, 0.5451, 0.5402, 0.5182, 0.5100, 0.5538, 0.5490, 0.4812, 0.5282},
+      { 0.4245, 0.4510, 0.5308, 0.4476, 0.5372, 0.4966, 0.5143, 0.5087, 0.5274, 0.4595, 0.5268, 0.5451, 0.5886, 0.5525, 0.5681, 0.5573, 0.6491, 0.5977, 0.4751, 0.5781},
+      { 0.3405, 0.3541, 0.4187, 0.3718, 0.4489, 0.4168, 0.4556, 0.3880, 0.4128, 0.4019, 0.3690, 0.5402, 0.5525, 0.5387, 0.5431, 0.5185, 0.5320, 0.5454, 0.4700, 0.4095},
+      { 0.3344, 0.3787, 0.4445, 0.3961, 0.4511, 0.4187, 0.4651, 0.3940, 0.4148, 0.4089, 0.3935, 0.5182, 0.5681, 0.5431, 0.5686, 0.5476, 0.5342, 0.5454, 0.4824, 0.4121},
+      { 0.3456, 0.3635, 0.4267, 0.3811, 0.4469, 0.4093, 0.4430, 0.3916, 0.4103, 0.3994, 0.3950, 0.5100, 0.5573, 0.5185, 0.5476, 0.5374, 0.5192, 0.5391, 0.4683, 0.3936},
+      { 0.3793, 0.3816, 0.4280, 0.3796, 0.4814, 0.4463, 0.4626, 0.4592, 0.4396, 0.4528, 0.4592, 0.5538, 0.6491, 0.5320, 0.5342, 0.5192, 0.5624, 0.5772, 0.4735, 0.4538},
+      { 0.3828, 0.3860, 0.4578, 0.3918, 0.4907, 0.4848, 0.4914, 0.4534, 0.4550, 0.4346, 0.4366, 0.5490, 0.5977, 0.5454, 0.5454, 0.5391, 0.5772, 0.5674, 0.5034, 0.5366},
+      { 0.3011, 0.3013, 0.3737, 0.3279, 0.4044, 0.3691, 0.3848, 0.3577, 0.3685, 0.3363, 0.3344, 0.4812, 0.4751, 0.4700, 0.4824, 0.4683, 0.4735, 0.5034, 0.4221, 0.3593},
+      { 0.2767, 0.2638, 0.3203, 0.3105, 0.4282, 0.3835, 0.3878, 0.3490, 0.3661, 0.3651, 0.2940, 0.5282, 0.5781, 0.4095, 0.4121, 0.3936, 0.4538, 0.5366, 0.3593, 0.5084}},
+    {
+      { 0.2921, 0.2780, 0.5293, 0.4337, 0.4504, 0.3892, 0.3942, 0.3729, 0.3876, 0.3343, 0.3623, 0.4510, 0.4299, 0.3357, 0.3418, 0.3449, 0.3550, 0.4066, 0.3128, 0.2744},
+      { 0.2780, 0.3153, 0.5538, 0.4770, 0.4898, 0.3625, 0.3809, 0.3666, 0.4006, 0.3068, 0.3208, 0.4762, 0.4403, 0.3856, 0.3745, 0.3715, 0.3844, 0.4001, 0.3154, 0.2904},
+      { 0.5293, 0.5538, 0.4613, 0.3688, 0.4988, 0.4343, 0.4502, 0.4549, 0.4657, 0.3889, 0.4079, 0.5463, 0.5222, 0.4235, 0.4635, 0.4554, 0.4751, 0.4933, 0.4053, 0.3892},
+      { 0.4337, 0.4770, 0.3688, 0.3300, 0.4059, 0.3526, 0.4087, 0.3347, 0.3998, 0.3428, 0.2877, 0.5020, 0.4291, 0.3737, 0.3877, 0.3867, 0.3835, 0.4354, 0.3197, 0.2746},
+      { 0.4504, 0.4898, 0.4988, 0.4059, 0.5936, 0.4796, 0.5065, 0.4381, 0.4481, 0.4322, 0.4215, 0.5546, 0.5043, 0.4723, 0.4956, 0.4791, 0.5286, 0.5391, 0.4254, 0.4630},
+      { 0.3892, 0.3625, 0.4343, 0.3526, 0.4796, 0.4474, 0.4487, 0.4588, 0.4563, 0.4051, 0.4117, 0.5004, 0.5212, 0.4438, 0.4580, 0.4398, 0.4924, 0.4894, 0.4048, 0.4712},
+      { 0.3942, 0.3809, 0.4502, 0.4087, 0.5065, 0.4487, 0.4300, 0.4562, 0.4633, 0.4100, 0.3991, 0.5094, 0.5466, 0.4665, 0.4687, 0.4723, 0.5066, 0.5101, 0.4218, 0.4153},
+      { 0.3729, 0.3666, 0.4549, 0.3347, 0.4381, 0.4588, 0.4562, 0.5369, 0.4565, 0.4463, 0.3964, 0.4971, 0.5362, 0.3966, 0.4086, 0.3977, 0.4420, 0.4756, 0.3549, 0.3589},
+      { 0.3876, 0.4006, 0.4657, 0.3998, 0.4481, 0.4563, 0.4633, 0.4565, 0.4943, 0.4361, 0.3930, 0.4955, 0.5157, 0.4509, 0.4738, 0.4437, 0.5045, 0.4870, 0.3929, 0.3887},
+      { 0.3343, 0.3068, 0.3889, 0.3428, 0.4322, 0.4051, 0.4100, 0.4463, 0.4361, 0.4087, 0.3634, 0.4415, 0.4796, 0.4065, 0.4235, 0.4064, 0.4485, 0.4601, 0.3695, 0.4031},
+      { 0.3623, 0.3208, 0.4079, 0.2877, 0.4215, 0.4117, 0.3991, 0.3964, 0.3930, 0.3634, 0.4188, 0.5415, 0.5098, 0.3657, 0.4061, 0.4101, 0.4710, 0.4857, 0.3376, 0.3334},
+      { 0.4510, 0.4762, 0.5463, 0.5020, 0.5546, 0.5004, 0.5094, 0.4971, 0.4955, 0.4415, 0.5415, 0.5465, 0.5934, 0.5669, 0.5829, 0.5826, 0.6432, 0.5872, 0.4997, 0.5781},
+      { 0.4299, 0.4403, 0.5222, 0.4291, 0.5043, 0.5212, 0.5466, 0.5362, 0.5157, 0.4796, 0.5098, 0.5934, 0.5893, 0.6005, 0.6001, 0.6110, 0.6641, 0.6237, 0.5460, 0.7267},
+      { 0.3357, 0.3856, 0.4235, 0.3737, 0.4723, 0.4438, 0.4665, 0.3966, 0.4509, 0.4065, 0.3657, 0.5669, 0.6005, 0.5695, 0.5783, 0.5530, 0.5398, 0.5685, 0.4876, 0.4407},
+      { 0.3418, 0.3745, 0.4635, 0.3877, 0.4956, 0.4580, 0.4687, 0.4086, 0.4738, 0.4235, 0.4061, 0.5829, 0.6001, 0.5783, 0.6140, 0.5885, 0.5654, 0.5891, 0.5025, 0.4461},
+      { 0.3449, 0.3715, 0.4554, 0.3867, 0.4791, 0.4398, 0.4723, 0.3977, 0.4437, 0.4064, 0.4101, 0.5826, 0.6110, 0.5530, 0.5885, 0.5819, 0.5563, 0.5943, 0.4879, 0.4509},
+      { 0.3550, 0.3844, 0.4751, 0.3835, 0.5286, 0.4924, 0.5066, 0.4420, 0.5045, 0.4485, 0.4710, 0.6432, 0.6641, 0.5398, 0.5654, 0.5563, 0.6169, 0.6529, 0.4857, 0.4537},
+      { 0.4066, 0.4001, 0.4933, 0.4354, 0.5391, 0.4894, 0.5101, 0.4756, 0.4870, 0.4601, 0.4857, 0.5872, 0.6237, 0.5685, 0.5891, 0.5943, 0.6529, 0.6090, 0.5100, 0.6071},
+      { 0.3128, 0.3154, 0.4053, 0.3197, 0.4254, 0.4048, 0.4218, 0.3549, 0.3929, 0.3695, 0.3376, 0.4997, 0.5460, 0.4876, 0.5025, 0.4879, 0.4857, 0.5100, 0.4395, 0.3949},
+      { 0.2744, 0.2904, 0.3892, 0.2746, 0.4630, 0.4712, 0.4153, 0.3589, 0.3887, 0.4031, 0.3334, 0.5781, 0.7267, 0.4407, 0.4461, 0.4509, 0.4537, 0.6071, 0.3949, 0.5665}},
+    {
+      { 0.2128, 0.1902, 0.4493, 0.3813, 0.3749, 0.3256, 0.3320, 0.3046, 0.3161, 0.2915, 0.2753, 0.3834, 0.3866, 0.2790, 0.2822, 0.2906, 0.3229, 0.3241, 0.2521, 0.1951},
+      { 0.1902, 0.2259, 0.4832, 0.4067, 0.3794, 0.2993, 0.3250, 0.2965, 0.3295, 0.2549, 0.2761, 0.4052, 0.4150, 0.3132, 0.3279, 0.3333, 0.3217, 0.3481, 0.2625, 0.1969},
+      { 0.4493, 0.4832, 0.3559, 0.2658, 0.3800, 0.3484, 0.3673, 0.3423, 0.3814, 0.3039, 0.3388, 0.4791, 0.4700, 0.3760, 0.3965, 0.3992, 0.3909, 0.4238, 0.3411, 0.3079},
+      { 0.3813, 0.4067, 0.2658, 0.2490, 0.3154, 0.2904, 0.3042, 0.2840, 0.3211, 0.2423, 0.2742, 0.4300, 0.4135, 0.3386, 0.3576, 0.3586, 0.3474, 0.3805, 0.2990, 0.2591},
+      { 0.3749, 0.3794, 0.3800, 0.3154, 0.4632, 0.4357, 0.4612, 0.3792, 0.3873, 0.3811, 0.3741, 0.5139, 0.4967, 0.4142, 0.4492, 0.4323, 0.4416, 0.4774, 0.3769, 0.3496},
+      { 0.3256, 0.2993, 0.3484, 0.2904, 0.4357, 0.4288, 0.4333, 0.4006, 0.3701, 0.3759, 0.3569, 0.4379, 0.4655, 0.4461, 0.4517, 0.4203, 0.4584, 0.4518, 0.4044, 0.3782},
+      { 0.3320, 0.3250, 0.3673, 0.3042, 0.4612, 0.4333, 0.4734, 0.4546, 0.3890, 0.3878, 0.3686, 0.4504, 0.4885, 0.4919, 0.4971, 0.4669, 0.4751, 0.4908, 0.4448, 0.3928},
+      { 0.3046, 0.2965, 0.3423, 0.2840, 0.3792, 0.4006, 0.4546, 0.5349, 0.3606, 0.3701, 0.3322, 0.4084, 0.4329, 0.3770, 0.4115, 0.3783, 0.4144, 0.3985, 0.3297, 0.3146},
+      { 0.3161, 0.3295, 0.3814, 0.3211, 0.3873, 0.3701, 0.3890, 0.3606, 0.3824, 0.3327, 0.3454, 0.4469, 0.4732, 0.3643, 0.3832, 0.3882, 0.4155, 0.4294, 0.3381, 0.3084},
+      { 0.2915, 0.2549, 0.3039, 0.2423, 0.3811, 0.3759, 0.3878, 0.3701, 0.3327, 0.3945, 0.3140, 0.4597, 0.4662, 0.4184, 0.4435, 0.4289, 0.4606, 0.4883, 0.3755, 0.3155},
+      { 0.2753, 0.2761, 0.3388, 0.2742, 0.3741, 0.3569, 0.3686, 0.3322, 0.3454, 0.3140, 0.3357, 0.4351, 0.4687, 0.3721, 0.3935, 0.3831, 0.4074, 0.4340, 0.3458, 0.2848},
+      { 0.3834, 0.4052, 0.4791, 0.4300, 0.5139, 0.4379, 0.4504, 0.4084, 0.4469, 0.4597, 0.4351, 0.5183, 0.5749, 0.5051, 0.5392, 0.5393, 0.5332, 0.5755, 0.4724, 0.4095},
+      { 0.3866, 0.4150, 0.4700, 0.4135, 0.4967, 0.4655, 0.4885, 0.4329, 0.4732, 0.4662, 0.4687, 0.5749, 0.5892, 0.5081, 0.5470, 0.5612, 0.5914, 0.6103, 0.4586, 0.4407},
+      { 0.2790, 0.3132, 0.3760, 0.3386, 0.4142, 0.4461, 0.4919, 0.3770, 0.3643, 0.4184, 0.3721, 0.5051, 0.5081, 0.5919, 0.5865, 0.5551, 0.5362, 0.5590, 0.5401, 0.4435},
+      { 0.2822, 0.3279, 0.3965, 0.3576, 0.4492, 0.4517, 0.4971, 0.4115, 0.3832, 0.4435, 0.3935, 0.5392, 0.5470, 0.5865, 0.6046, 0.5790, 0.5634, 0.5850, 0.5545, 0.4342},
+      { 0.2906, 0.3333, 0.3992, 0.3586, 0.4323, 0.4203, 0.4669, 0.3783, 0.3882, 0.4289, 0.3831, 0.5393, 0.5612, 0.5551, 0.5790, 0.5706, 0.5556, 0.5844, 0.5217, 0.4037},
+      { 0.3229, 0.3217, 0.3909, 0.3474, 0.4416, 0.4584, 0.4751, 0.4144, 0.4155, 0.4606, 0.4074, 0.5332, 0.5914, 0.5362, 0.5634, 0.5556, 0.5997, 0.6001, 0.5082, 0.4581},
+      { 0.3241, 0.3481, 0.4238, 0.3805, 0.4774, 0.4518, 0.4908, 0.3985, 0.4294, 0.4883, 0.4340, 0.5755, 0.6103, 0.5590, 0.5850, 0.5844, 0.6001, 0.6216, 0.5241, 0.4507},
+      { 0.2521, 0.2625, 0.3411, 0.2990, 0.3769, 0.4044, 0.4448, 0.3297, 0.3381, 0.3755, 0.3458, 0.4724, 0.4586, 0.5401, 0.5545, 0.5217, 0.5082, 0.5241, 0.4838, 0.3739},
+      { 0.1951, 0.1969, 0.3079, 0.2591, 0.3496, 0.3782, 0.3928, 0.3146, 0.3084, 0.3155, 0.2848, 0.4095, 0.4407, 0.4435, 0.4342, 0.4037, 0.4581, 0.4507, 0.3739, 0.5100}},
+    {
+      { 0.1899, 0.2164, 0.4574, 0.3889, 0.3994, 0.3186, 0.3285, 0.3331, 0.3188, 0.2879, 0.2744, 0.4001, 0.3907, 0.2869, 0.2696, 0.2912, 0.3364, 0.3299, 0.2476, 0.2240},
+      { 0.2164, 0.2551, 0.4966, 0.4041, 0.3849, 0.3092, 0.3329, 0.3240, 0.3399, 0.2803, 0.2499, 0.4334, 0.4255, 0.3118, 0.3203, 0.3356, 0.3496, 0.3617, 0.2720, 0.2242},
+      { 0.4574, 0.4966, 0.3475, 0.2793, 0.3929, 0.3553, 0.3821, 0.3674, 0.3996, 0.3565, 0.3289, 0.4805, 0.4721, 0.3776, 0.3775, 0.4005, 0.4023, 0.4313, 0.3523, 0.3273},
+      { 0.3889, 0.4041, 0.2793, 0.2634, 0.3370, 0.2892, 0.3154, 0.3001, 0.3277, 0.2630, 0.2567, 0.4363, 0.4382, 0.3452, 0.3500, 0.3630, 0.3463, 0.3932, 0.2990, 0.2716},
+      { 0.3994, 0.3849, 0.3929, 0.3370, 0.4896, 0.4494, 0.4586, 0.4179, 0.4191, 0.3822, 0.3744, 0.5083, 0.5368, 0.4226, 0.4295, 0.4358, 0.4666, 0.4794, 0.3899, 0.3647},
+      { 0.3186, 0.3092, 0.3553, 0.2892, 0.4494, 0.4193, 0.4269, 0.4121, 0.3929, 0.3700, 0.3449, 0.4446, 0.4786, 0.4456, 0.4497, 0.4234, 0.4645, 0.4635, 0.3907, 0.3706},
+      { 0.3285, 0.3329, 0.3821, 0.3154, 0.4586, 0.4269, 0.4676, 0.4596, 0.3997, 0.3852, 0.3622, 0.4662, 0.4904, 0.4989, 0.5072, 0.4770, 0.4908, 0.4958, 0.4356, 0.3798},
+      { 0.3331, 0.3240, 0.3674, 0.3001, 0.4179, 0.4121, 0.4596, 0.5180, 0.4022, 0.3747, 0.3470, 0.4324, 0.4576, 0.3732, 0.4221, 0.4040, 0.4349, 0.4111, 0.3420, 0.3354},
+      { 0.3188, 0.3399, 0.3996, 0.3277, 0.4191, 0.3929, 0.3997, 0.4022, 0.4015, 0.3570, 0.3384, 0.4525, 0.5004, 0.3718, 0.3808, 0.3935, 0.4334, 0.4414, 0.3500, 0.3367},
+      { 0.2879, 0.2803, 0.3565, 0.2630, 0.3822, 0.3700, 0.3852, 0.3747, 0.3570, 0.3814, 0.3185, 0.4680, 0.4971, 0.4210, 0.4166, 0.4255, 0.4659, 0.4901, 0.3816, 0.3239},
+      { 0.2744, 0.2499, 0.3289, 0.2567, 0.3744, 0.3449, 0.3622, 0.3470, 0.3384, 0.3185, 0.3503, 0.4288, 0.4580, 0.3698, 0.3789, 0.3809, 0.4253, 0.4273, 0.3323, 0.3140},
+      { 0.4001, 0.4334, 0.4805, 0.4363, 0.5083, 0.4446, 0.4662, 0.4324, 0.4525, 0.4680, 0.4288, 0.5057, 0.5538, 0.5295, 0.5272, 0.5449, 0.5477, 0.5824, 0.4822, 0.4121},
+      { 0.3907, 0.4255, 0.4721, 0.4382, 0.5368, 0.4786, 0.4904, 0.4576, 0.5004, 0.4971, 0.4580, 0.5538, 0.6112, 0.5291, 0.5334, 0.5642, 0.6068, 0.6173, 0.4845, 0.4461},
+      { 0.2869, 0.3118, 0.3776, 0.3452, 0.4226, 0.4456, 0.4989, 0.3732, 0.3718, 0.4210, 0.3698, 0.5295, 0.5291, 0.6095, 0.6067, 0.5823, 0.5646, 0.5891, 0.5408, 0.4342},
+      { 0.2696, 0.3203, 0.3775, 0.3500, 0.4295, 0.4497, 0.5072, 0.4221, 0.3808, 0.4166, 0.3789, 0.5272, 0.5334, 0.6067, 0.6102, 0.5889, 0.5646, 0.5880, 0.5549, 0.4653},
+      { 0.2912, 0.3356, 0.4005, 0.3630, 0.4358, 0.4234, 0.4770, 0.4040, 0.3935, 0.4255, 0.3809, 0.5449, 0.5642, 0.5823, 0.5889, 0.5854, 0.5755, 0.5952, 0.5356, 0.4155},
+      { 0.3364, 0.3496, 0.4023, 0.3463, 0.4666, 0.4645, 0.4908, 0.4349, 0.4334, 0.4659, 0.4253, 0.5477, 0.6068, 0.5646, 0.5646, 0.5755, 0.6156, 0.6199, 0.5311, 0.4630},
+      { 0.3299, 0.3617, 0.4313, 0.3932, 0.4794, 0.4635, 0.4958, 0.4111, 0.4414, 0.4901, 0.4273, 0.5824, 0.6173, 0.5891, 0.5880, 0.5952, 0.6199, 0.6456, 0.5429, 0.4666},
+      { 0.2476, 0.2720, 0.3523, 0.2990, 0.3899, 0.3907, 0.4356, 0.3420, 0.3500, 0.3816, 0.3323, 0.4822, 0.4845, 0.5408, 0.5549, 0.5356, 0.5311, 0.5429, 0.4798, 0.3757},
+      { 0.2240, 0.2242, 0.3273, 0.2716, 0.3647, 0.3706, 0.3798, 0.3354, 0.3367, 0.3239, 0.3140, 0.4121, 0.4461, 0.4342, 0.4653, 0.4155, 0.4630, 0.4666, 0.3757, 0.5124}},
+    {
+      { 0.1863, 0.1975, 0.4430, 0.3908, 0.3741, 0.2797, 0.2884, 0.2952, 0.3073, 0.2440, 0.2462, 0.3963, 0.3946, 0.2725, 0.2817, 0.2713, 0.3016, 0.3084, 0.2344, 0.1730},
+      { 0.1975, 0.2325, 0.4885, 0.4132, 0.3740, 0.2763, 0.2920, 0.2976, 0.3219, 0.2411, 0.2498, 0.4058, 0.4134, 0.2950, 0.3129, 0.3011, 0.3194, 0.3406, 0.2496, 0.1995},
+      { 0.4430, 0.4885, 0.3370, 0.2615, 0.3777, 0.3283, 0.3514, 0.3281, 0.3791, 0.3086, 0.3208, 0.4622, 0.4945, 0.3608, 0.3734, 0.3701, 0.3721, 0.4179, 0.3246, 0.2967},
+      { 0.3908, 0.4132, 0.2615, 0.2510, 0.3375, 0.2686, 0.2931, 0.2709, 0.3081, 0.2340, 0.2470, 0.4270, 0.4281, 0.3208, 0.3379, 0.3306, 0.3332, 0.3754, 0.2793, 0.2448},
+      { 0.3741, 0.3740, 0.3777, 0.3375, 0.4278, 0.4295, 0.4282, 0.3816, 0.3788, 0.3351, 0.3686, 0.4882, 0.5144, 0.4072, 0.4225, 0.4122, 0.4273, 0.4660, 0.3575, 0.3562},
+      { 0.2797, 0.2763, 0.3283, 0.2686, 0.4295, 0.3547, 0.3867, 0.3765, 0.3635, 0.3289, 0.3078, 0.4229, 0.4601, 0.4102, 0.4245, 0.4141, 0.4342, 0.4388, 0.3521, 0.3277},
+      { 0.2884, 0.2920, 0.3514, 0.2931, 0.4282, 0.3867, 0.4164, 0.4122, 0.3794, 0.3496, 0.3297, 0.4440, 0.4659, 0.4591, 0.4709, 0.4519, 0.4602, 0.4697, 0.3921, 0.3474},
+      { 0.2952, 0.2976, 0.3281, 0.2709, 0.3816, 0.3765, 0.4122, 0.4815, 0.3764, 0.3301, 0.2957, 0.4250, 0.4345, 0.3576, 0.3984, 0.3722, 0.4171, 0.3943, 0.3194, 0.3044},
+      { 0.3073, 0.3219, 0.3791, 0.3081, 0.3788, 0.3635, 0.3794, 0.3764, 0.3731, 0.3221, 0.3214, 0.4426, 0.4832, 0.3685, 0.3833, 0.3646, 0.3980, 0.4196, 0.3288, 0.2949},
+      { 0.2440, 0.2411, 0.3086, 0.2340, 0.3351, 0.3289, 0.3496, 0.3301, 0.3221, 0.3409, 0.3148, 0.4270, 0.4586, 0.3943, 0.4049, 0.3761, 0.4235, 0.4421, 0.3462, 0.3155},
+      { 0.2462, 0.2498, 0.3208, 0.2470, 0.3686, 0.3078, 0.3297, 0.2957, 0.3214, 0.3148, 0.3366, 0.4521, 0.4874, 0.3673, 0.3881, 0.3665, 0.4048, 0.4163, 0.3124, 0.2682},
+      { 0.3963, 0.4058, 0.4622, 0.4270, 0.4882, 0.4229, 0.4440, 0.4250, 0.4426, 0.4270, 0.4521, 0.5138, 0.5571, 0.5049, 0.5304, 0.5164, 0.5373, 0.5645, 0.4541, 0.3936},
+      { 0.3946, 0.4134, 0.4945, 0.4281, 0.5144, 0.4601, 0.4659, 0.4345, 0.4832, 0.4586, 0.4874, 0.5571, 0.5778, 0.5338, 0.5552, 0.5402, 0.5822, 0.6074, 0.4741, 0.4509},
+      { 0.2725, 0.2950, 0.3608, 0.3208, 0.4072, 0.4102, 0.4591, 0.3576, 0.3685, 0.3943, 0.3673, 0.5049, 0.5338, 0.5766, 0.5814, 0.5594, 0.5394, 0.5681, 0.5053, 0.4037},
+      { 0.2817, 0.3129, 0.3734, 0.3379, 0.4225, 0.4245, 0.4709, 0.3984, 0.3833, 0.4049, 0.3881, 0.5304, 0.5552, 0.5814, 0.5996, 0.5770, 0.5600, 0.5865, 0.5233, 0.4155},
+      { 0.2713, 0.3011, 0.3701, 0.3306, 0.4122, 0.4141, 0.4519, 0.3722, 0.3646, 0.3761, 0.3665, 0.5164, 0.5402, 0.5594, 0.5770, 0.5600, 0.5473, 0.5667, 0.5066, 0.4443},
+      { 0.3016, 0.3194, 0.3721, 0.3332, 0.4273, 0.4342, 0.4602, 0.4171, 0.3980, 0.4235, 0.4048, 0.5373, 0.5822, 0.5394, 0.5600, 0.5473, 0.5929, 0.6004, 0.5023, 0.4426},
+      { 0.3084, 0.3406, 0.4179, 0.3754, 0.4660, 0.4388, 0.4697, 0.3943, 0.4196, 0.4421, 0.4163, 0.5645, 0.6074, 0.5681, 0.5865, 0.5667, 0.6004, 0.6333, 0.5188, 0.4329},
+      { 0.2344, 0.2496, 0.3246, 0.2793, 0.3575, 0.3521, 0.3921, 0.3194, 0.3288, 0.3462, 0.3124, 0.4541, 0.4741, 0.5053, 0.5233, 0.5066, 0.5023, 0.5188, 0.4525, 0.3284},
+      { 0.1730, 0.1995, 0.2967, 0.2448, 0.3562, 0.3277, 0.3474, 0.3044, 0.2949, 0.3155, 0.2682, 0.3936, 0.4509, 0.4037, 0.4155, 0.4443, 0.4426, 0.4329, 0.3284, 0.5019}},
+    {
+      { 0.2691, 0.2292, 0.4838, 0.4137, 0.4270, 0.3526, 0.3375, 0.3671, 0.3335, 0.3216, 0.3029, 0.4245, 0.3953, 0.2972, 0.3149, 0.3030, 0.3180, 0.3614, 0.2952, 0.2507},
+      { 0.2292, 0.2429, 0.5047, 0.4153, 0.4202, 0.3323, 0.3429, 0.3448, 0.3422, 0.3129, 0.2806, 0.4185, 0.4415, 0.3247, 0.3370, 0.3167, 0.3119, 0.3597, 0.2814, 0.2582},
+      { 0.4838, 0.5047, 0.3638, 0.2884, 0.4094, 0.3830, 0.3980, 0.3822, 0.4344, 0.3620, 0.3523, 0.4873, 0.5126, 0.3795, 0.3897, 0.3896, 0.3703, 0.4432, 0.3424, 0.3245},
+      { 0.4137, 0.4153, 0.2884, 0.2345, 0.3599, 0.3009, 0.3307, 0.3095, 0.3272, 0.2774, 0.2601, 0.4220, 0.4637, 0.3241, 0.3401, 0.3300, 0.3012, 0.3799, 0.2946, 0.2985},
+      { 0.4270, 0.4202, 0.4094, 0.3599, 0.4737, 0.4827, 0.4915, 0.4359, 0.4351, 0.4101, 0.3895, 0.5258, 0.5311, 0.4520, 0.4566, 0.4327, 0.4270, 0.4869, 0.3903, 0.4075},
+      { 0.3526, 0.3323, 0.3830, 0.3009, 0.4827, 0.4385, 0.4508, 0.4316, 0.4200, 0.4077, 0.3801, 0.4866, 0.5329, 0.4473, 0.4686, 0.4536, 0.4936, 0.4981, 0.4095, 0.3869},
+      { 0.3375, 0.3429, 0.3980, 0.3307, 0.4915, 0.4508, 0.4926, 0.4552, 0.4395, 0.4214, 0.3749, 0.4966, 0.5217, 0.4861, 0.4980, 0.4764, 0.5200, 0.5019, 0.4382, 0.4202},
+      { 0.3671, 0.3448, 0.3822, 0.3095, 0.4359, 0.4316, 0.4552, 0.5348, 0.4580, 0.4339, 0.3599, 0.4626, 0.4952, 0.3902, 0.4195, 0.4044, 0.4360, 0.4278, 0.3634, 0.3707},
+      { 0.3335, 0.3422, 0.4344, 0.3272, 0.4351, 0.4200, 0.4395, 0.4580, 0.4320, 0.3764, 0.3817, 0.4648, 0.5221, 0.4073, 0.4102, 0.4056, 0.4147, 0.4545, 0.3831, 0.4008},
+      { 0.3216, 0.3129, 0.3620, 0.2774, 0.4101, 0.4077, 0.4214, 0.4339, 0.3764, 0.4150, 0.3744, 0.4786, 0.5004, 0.4441, 0.4483, 0.4352, 0.4553, 0.5000, 0.4008, 0.3656},
+      { 0.3029, 0.2806, 0.3523, 0.2601, 0.3895, 0.3801, 0.3749, 0.3599, 0.3817, 0.3744, 0.3620, 0.4708, 0.4743, 0.3763, 0.3995, 0.4088, 0.4363, 0.4485, 0.3431, 0.2867},
+      { 0.4245, 0.4185, 0.4873, 0.4220, 0.5258, 0.4866, 0.4966, 0.4626, 0.4648, 0.4786, 0.4708, 0.5455, 0.5621, 0.5246, 0.5468, 0.5306, 0.5394, 0.5823, 0.4826, 0.4538},
+      { 0.3953, 0.4415, 0.5126, 0.4637, 0.5311, 0.5329, 0.5217, 0.4952, 0.5221, 0.5004, 0.4743, 0.5621, 0.5507, 0.5332, 0.5494, 0.5559, 0.5665, 0.6291, 0.4913, 0.4537},
+      { 0.2972, 0.3247, 0.3795, 0.3241, 0.4520, 0.4473, 0.4861, 0.3902, 0.4073, 0.4441, 0.3763, 0.5246, 0.5332, 0.5751, 0.5798, 0.5619, 0.5330, 0.5793, 0.5269, 0.4581},
+      { 0.3149, 0.3370, 0.3897, 0.3401, 0.4566, 0.4686, 0.4980, 0.4195, 0.4102, 0.4483, 0.3995, 0.5468, 0.5494, 0.5798, 0.5987, 0.5807, 0.5484, 0.5952, 0.5444, 0.4630},
+      { 0.3030, 0.3167, 0.3896, 0.3300, 0.4327, 0.4536, 0.4764, 0.4044, 0.4056, 0.4352, 0.4088, 0.5306, 0.5559, 0.5619, 0.5807, 0.5759, 0.5332, 0.5869, 0.5312, 0.4426},
+      { 0.3180, 0.3119, 0.3703, 0.3012, 0.4270, 0.4936, 0.5200, 0.4360, 0.4147, 0.4553, 0.4363, 0.5394, 0.5665, 0.5330, 0.5484, 0.5332, 0.5985, 0.5794, 0.4948, 0.5685},
+      { 0.3614, 0.3597, 0.4432, 0.3799, 0.4869, 0.4981, 0.5019, 0.4278, 0.4545, 0.5000, 0.4485, 0.5823, 0.6291, 0.5793, 0.5952, 0.5869, 0.5794, 0.6377, 0.5405, 0.5063},
+      { 0.2952, 0.2814, 0.3424, 0.2946, 0.3903, 0.4095, 0.4382, 0.3634, 0.3831, 0.4008, 0.3431, 0.4826, 0.4913, 0.5269, 0.5444, 0.5312, 0.4948, 0.5405, 0.4714, 0.3927},
+      { 0.2507, 0.2582, 0.3245, 0.2985, 0.4075, 0.3869, 0.4202, 0.3707, 0.4008, 0.3656, 0.2867, 0.4538, 0.4537, 0.4581, 0.4630, 0.4426, 0.5685, 0.5063, 0.3927, 0.5540}},
+    {
+      { 0.3043, 0.2776, 0.5036, 0.4466, 0.4385, 0.3462, 0.3693, 0.3801, 0.3566, 0.3245, 0.3174, 0.4436, 0.4388, 0.3377, 0.3372, 0.3303, 0.3695, 0.3414, 0.2945, 0.2741},
+      { 0.2776, 0.2890, 0.5457, 0.4461, 0.4523, 0.3476, 0.3509, 0.3945, 0.3816, 0.3082, 0.3253, 0.4634, 0.4765, 0.3561, 0.3767, 0.3638, 0.3797, 0.3657, 0.3100, 0.2817},
+      { 0.5036, 0.5457, 0.4106, 0.3423, 0.4377, 0.4036, 0.4126, 0.4075, 0.4512, 0.3748, 0.3964, 0.5011, 0.5360, 0.4106, 0.4285, 0.4254, 0.4403, 0.4348, 0.3804, 0.3321},
+      { 0.4466, 0.4461, 0.3423, 0.3043, 0.3676, 0.3403, 0.3535, 0.3435, 0.3722, 0.3160, 0.3044, 0.4665, 0.4700, 0.3676, 0.3859, 0.3739, 0.3847, 0.3789, 0.3126, 0.3176},
+      { 0.4385, 0.4523, 0.4377, 0.3676, 0.4921, 0.4972, 0.4942, 0.4386, 0.4371, 0.4152, 0.4422, 0.5217, 0.5646, 0.4629, 0.4795, 0.4609, 0.4899, 0.4855, 0.4199, 0.4630},
+      { 0.3462, 0.3476, 0.4036, 0.3403, 0.4972, 0.4402, 0.4555, 0.4408, 0.4217, 0.4151, 0.4092, 0.5170, 0.5216, 0.4646, 0.4720, 0.4546, 0.5040, 0.5030, 0.4194, 0.4281},
+      { 0.3693, 0.3509, 0.4126, 0.3535, 0.4942, 0.4555, 0.4800, 0.4626, 0.4527, 0.4258, 0.4085, 0.5181, 0.5321, 0.4992, 0.5098, 0.4952, 0.5100, 0.5250, 0.4486, 0.4089},
+      { 0.3801, 0.3945, 0.4075, 0.3435, 0.4386, 0.4408, 0.4626, 0.5185, 0.4635, 0.4107, 0.4068, 0.5062, 0.5251, 0.4114, 0.4402, 0.4231, 0.4801, 0.4686, 0.3755, 0.3676},
+      { 0.3566, 0.3816, 0.4512, 0.3722, 0.4371, 0.4217, 0.4527, 0.4635, 0.4438, 0.3855, 0.3847, 0.4837, 0.5249, 0.4167, 0.4294, 0.4186, 0.4703, 0.4479, 0.3725, 0.4034},
+      { 0.3245, 0.3082, 0.3748, 0.3160, 0.4152, 0.4151, 0.4258, 0.4107, 0.3855, 0.3889, 0.3696, 0.4727, 0.4903, 0.4377, 0.4532, 0.4417, 0.4902, 0.4462, 0.3965, 0.4031},
+      { 0.3174, 0.3253, 0.3964, 0.3044, 0.4422, 0.4092, 0.4085, 0.4068, 0.3847, 0.3696, 0.3614, 0.4955, 0.5316, 0.4108, 0.4428, 0.4313, 0.4721, 0.4470, 0.3684, 0.3517},
+      { 0.4436, 0.4634, 0.5011, 0.4665, 0.5217, 0.5170, 0.5181, 0.5062, 0.4837, 0.4727, 0.4955, 0.5283, 0.5796, 0.5676, 0.5726, 0.5699, 0.5779, 0.5713, 0.5131, 0.5366},
+      { 0.4388, 0.4765, 0.5360, 0.4700, 0.5646, 0.5216, 0.5321, 0.5251, 0.5249, 0.4903, 0.5316, 0.5796, 0.5895, 0.5813, 0.5876, 0.5966, 0.6442, 0.6094, 0.5218, 0.6071},
+      { 0.3377, 0.3561, 0.4106, 0.3676, 0.4629, 0.4646, 0.4992, 0.4114, 0.4167, 0.4377, 0.4108, 0.5676, 0.5813, 0.6098, 0.6214, 0.6009, 0.5909, 0.5965, 0.5343, 0.4507},
+      { 0.3372, 0.3767, 0.4285, 0.3859, 0.4795, 0.4720, 0.5098, 0.4402, 0.4294, 0.4532, 0.4428, 0.5726, 0.5876, 0.6214, 0.6469, 0.6321, 0.6120, 0.6059, 0.5553, 0.4666},
+      { 0.3303, 0.3638, 0.4254, 0.3739, 0.4609, 0.4546, 0.4952, 0.4231, 0.4186, 0.4417, 0.4313, 0.5699, 0.5966, 0.6009, 0.6321, 0.6256, 0.6120, 0.6030, 0.5410, 0.4329},
+      { 0.3695, 0.3797, 0.4403, 0.3847, 0.4899, 0.5040, 0.5100, 0.4801, 0.4703, 0.4902, 0.4721, 0.5779, 0.6442, 0.5909, 0.6120, 0.6120, 0.6691, 0.6332, 0.5408, 0.5063},
+      { 0.3414, 0.3657, 0.4348, 0.3789, 0.4855, 0.5030, 0.5250, 0.4686, 0.4479, 0.4462, 0.4470, 0.5713, 0.6094, 0.5965, 0.6059, 0.6030, 0.6332, 0.6219, 0.5580, 0.5766},
+      { 0.2945, 0.3100, 0.3804, 0.3126, 0.4199, 0.4194, 0.4486, 0.3755, 0.3725, 0.3965, 0.3684, 0.5131, 0.5218, 0.5343, 0.5553, 0.5410, 0.5408, 0.5580, 0.4776, 0.4069},
+      { 0.2741, 0.2817, 0.3321, 0.3176, 0.4630, 0.4281, 0.4089, 0.3676, 0.4034, 0.4031, 0.3517, 0.5366, 0.6071, 0.4507, 0.4666, 0.4329, 0.5063, 0.5766, 0.4069, 0.5547}},
+    {
+      { 0.1164, 0.1245, 0.3942, 0.3308, 0.2855, 0.2500, 0.2205, 0.2298, 0.2497, 0.2331, 0.2126, 0.3114, 0.2971, 0.1992, 0.1994, 0.1984, 0.2168, 0.2298, 0.1968, 0.1196},
+      { 0.1245, 0.1453, 0.4014, 0.3346, 0.2865, 0.1986, 0.2019, 0.2129, 0.2411, 0.1713, 0.1879, 0.3070, 0.3141, 0.1984, 0.2191, 0.2232, 0.2225, 0.2278, 0.1774, 0.1024},
+      { 0.3942, 0.4014, 0.2658, 0.2115, 0.3118, 0.2786, 0.2905, 0.2810, 0.3248, 0.2419, 0.2751, 0.3844, 0.4101, 0.3003, 0.3188, 0.3223, 0.3024, 0.3400, 0.2649, 0.2260},
+      { 0.3308, 0.3346, 0.2115, 0.1642, 0.2516, 0.2004, 0.2059, 0.2186, 0.2542, 0.1639, 0.1759, 0.3360, 0.3362, 0.2434, 0.2740, 0.2680, 0.2345, 0.2795, 0.2134, 0.1673},
+      { 0.2855, 0.2865, 0.3118, 0.2516, 0.3732, 0.3772, 0.3770, 0.3022, 0.2960, 0.3162, 0.3177, 0.4224, 0.4410, 0.3636, 0.3746, 0.3618, 0.3744, 0.4086, 0.3195, 0.2905},
+      { 0.2500, 0.1986, 0.2786, 0.2004, 0.3772, 0.4255, 0.4054, 0.3667, 0.2948, 0.3630, 0.3111, 0.3782, 0.3957, 0.3913, 0.3816, 0.3523, 0.3996, 0.3919, 0.3867, 0.4051},
+      { 0.2205, 0.2019, 0.2905, 0.2059, 0.3770, 0.4054, 0.4096, 0.3633, 0.2929, 0.3825, 0.3028, 0.3926, 0.4221, 0.4259, 0.4122, 0.4022, 0.4119, 0.4173, 0.4178, 0.3459},
+      { 0.2298, 0.2129, 0.2810, 0.2186, 0.3022, 0.3667, 0.3633, 0.3919, 0.2963, 0.3196, 0.2849, 0.3441, 0.3647, 0.3003, 0.3069, 0.2841, 0.3486, 0.3257, 0.3126, 0.2437},
+      { 0.2497, 0.2411, 0.3248, 0.2542, 0.2960, 0.2948, 0.2929, 0.2963, 0.3050, 0.2774, 0.2700, 0.3505, 0.3939, 0.2892, 0.3012, 0.3027, 0.3119, 0.3239, 0.2738, 0.2065},
+      { 0.2331, 0.1713, 0.2419, 0.1639, 0.3162, 0.3630, 0.3825, 0.3196, 0.2774, 0.3661, 0.2774, 0.3938, 0.4012, 0.4084, 0.4103, 0.3968, 0.4329, 0.4259, 0.3622, 0.3861},
+      { 0.2126, 0.1879, 0.2751, 0.1759, 0.3177, 0.3111, 0.3028, 0.2849, 0.2700, 0.2774, 0.2691, 0.3854, 0.3995, 0.2997, 0.3109, 0.2982, 0.3378, 0.3402, 0.2894, 0.2241},
+      { 0.3114, 0.3070, 0.3844, 0.3360, 0.4224, 0.3782, 0.3926, 0.3441, 0.3505, 0.3938, 0.3854, 0.4515, 0.5043, 0.4623, 0.4796, 0.4808, 0.4849, 0.5101, 0.4115, 0.3593},
+      { 0.2971, 0.3141, 0.4101, 0.3362, 0.4410, 0.3957, 0.4221, 0.3647, 0.3939, 0.4012, 0.3995, 0.5043, 0.5545, 0.4718, 0.4897, 0.4845, 0.5158, 0.5363, 0.3925, 0.3949},
+      { 0.1992, 0.1984, 0.3003, 0.2434, 0.3636, 0.3913, 0.4259, 0.3003, 0.2892, 0.4084, 0.2997, 0.4623, 0.4718, 0.5132, 0.5073, 0.4892, 0.4699, 0.4992, 0.4880, 0.3739},
+      { 0.1994, 0.2191, 0.3188, 0.2740, 0.3746, 0.3816, 0.4122, 0.3069, 0.3012, 0.4103, 0.3109, 0.4796, 0.4897, 0.5073, 0.5180, 0.5029, 0.4818, 0.5095, 0.4722, 0.3757},
+      { 0.1984, 0.2232, 0.3223, 0.2680, 0.3618, 0.3523, 0.4022, 0.2841, 0.3027, 0.3968, 0.2982, 0.4808, 0.4845, 0.4892, 0.5029, 0.4968, 0.4739, 0.5110, 0.4468, 0.3284},
+      { 0.2168, 0.2225, 0.3024, 0.2345, 0.3744, 0.3996, 0.4119, 0.3486, 0.3119, 0.4329, 0.3378, 0.4849, 0.5158, 0.4699, 0.4818, 0.4739, 0.5157, 0.5289, 0.4382, 0.3927},
+      { 0.2298, 0.2278, 0.3400, 0.2795, 0.4086, 0.3919, 0.4173, 0.3257, 0.3239, 0.4259, 0.3402, 0.5101, 0.5363, 0.4992, 0.5095, 0.5110, 0.5289, 0.5637, 0.4466, 0.4069},
+      { 0.1968, 0.1774, 0.2649, 0.2134, 0.3195, 0.3867, 0.4178, 0.3126, 0.2738, 0.3622, 0.2894, 0.4115, 0.3925, 0.4880, 0.4722, 0.4468, 0.4382, 0.4466, 0.4813, 0.4240},
+      { 0.1196, 0.1024, 0.2260, 0.1673, 0.2905, 0.4051, 0.3459, 0.2437, 0.2065, 0.3861, 0.2241, 0.3593, 0.3949, 0.3739, 0.3757, 0.3284, 0.3927, 0.4069, 0.4240, 0.5610}},
+    {
+      { 0.5576, 0.4872, 0.6751, 0.6186, 0.6043, 0.6988, 0.5087, 0.5541, 0.5007, 0.5095, 0.5010, 0.6443, 0.5837, 0.4842, 0.4796, 0.4428, 0.4863, 0.4943, 0.4682, 0.4716},
+      { 0.4872, 0.4355, 0.6210, 0.5882, 0.4915, 0.5239, 0.4839, 0.5193, 0.4696, 0.4339, 0.4659, 0.5851, 0.5479, 0.4440, 0.4655, 0.4519, 0.4541, 0.5060, 0.4049, 0.3941},
+      { 0.6751, 0.6210, 0.5115, 0.4685, 0.5183, 0.5183, 0.4984, 0.5660, 0.5393, 0.4858, 0.4708, 0.6174, 0.6264, 0.4873, 0.5167, 0.4851, 0.4879, 0.5407, 0.4780, 0.4809},
+      { 0.6186, 0.5882, 0.4685, 0.4798, 0.4852, 0.4608, 0.4801, 0.4636, 0.4885, 0.4455, 0.4174, 0.5886, 0.6033, 0.4688, 0.4893, 0.4554, 0.4419, 0.5087, 0.4106, 0.4135},
+      { 0.6043, 0.4915, 0.5183, 0.4852, 0.5638, 0.5621, 0.5683, 0.5448, 0.4733, 0.5594, 0.5122, 0.6493, 0.6697, 0.5255, 0.5431, 0.5280, 0.5239, 0.5843, 0.4761, 0.6040},
+      { 0.6988, 0.5239, 0.5183, 0.4608, 0.5621, 0.6484, 0.6257, 0.6260, 0.5391, 0.5733, 0.5322, 0.6282, 0.5714, 0.5640, 0.5456, 0.5436, 0.5726, 0.5793, 0.5641, 0.5583},
+      { 0.5087, 0.4839, 0.4984, 0.4801, 0.5683, 0.6257, 0.6347, 0.5907, 0.5420, 0.5796, 0.5215, 0.5757, 0.5660, 0.5744, 0.5532, 0.5467, 0.5565, 0.5916, 0.5740, 0.5264},
+      { 0.5541, 0.5193, 0.5660, 0.4636, 0.5448, 0.6260, 0.5907, 0.9297, 0.5739, 0.5496, 0.4530, 0.6211, 0.6329, 0.5113, 0.4971, 0.4862, 0.5594, 0.5267, 0.4971, 0.5172},
+      { 0.5007, 0.4696, 0.5393, 0.4885, 0.4733, 0.5391, 0.5420, 0.5739, 0.5614, 0.4997, 0.5237, 0.5929, 0.5385, 0.5009, 0.4868, 0.5032, 0.4601, 0.5682, 0.4742, 0.4609},
+      { 0.5095, 0.4339, 0.4858, 0.4455, 0.5594, 0.5733, 0.5796, 0.5496, 0.4997, 0.5619, 0.4700, 0.6679, 0.6625, 0.5770, 0.5889, 0.5694, 0.6394, 0.6768, 0.5168, 0.5276},
+      { 0.5010, 0.4659, 0.4708, 0.4174, 0.5122, 0.5322, 0.5215, 0.4530, 0.5237, 0.4700, 0.5480, 0.6617, 0.6654, 0.5119, 0.5154, 0.5148, 0.5814, 0.5710, 0.4937, 0.4487},
+      { 0.6443, 0.5851, 0.6174, 0.5886, 0.6493, 0.6282, 0.5757, 0.6211, 0.5929, 0.6679, 0.6617, 0.6735, 0.7111, 0.6100, 0.6196, 0.6298, 0.6529, 0.6867, 0.6173, 0.5084},
+      { 0.5837, 0.5479, 0.6264, 0.6033, 0.6697, 0.5714, 0.5660, 0.6329, 0.5385, 0.6625, 0.6654, 0.7111, 0.7990, 0.6185, 0.6440, 0.6333, 0.7068, 0.7255, 0.5503, 0.5665},
+      { 0.4842, 0.4440, 0.4873, 0.4688, 0.5255, 0.5640, 0.5744, 0.5113, 0.5009, 0.5770, 0.5119, 0.6100, 0.6185, 0.6443, 0.6155, 0.6028, 0.6053, 0.6361, 0.6682, 0.5100},
+      { 0.4796, 0.4655, 0.5167, 0.4893, 0.5431, 0.5456, 0.5532, 0.4971, 0.4868, 0.5889, 0.5154, 0.6196, 0.6440, 0.6155, 0.6305, 0.6193, 0.6149, 0.6376, 0.6320, 0.5124},
+      { 0.4428, 0.4519, 0.4851, 0.4554, 0.5280, 0.5436, 0.5467, 0.4862, 0.5032, 0.5694, 0.5148, 0.6298, 0.6333, 0.6028, 0.6193, 0.6572, 0.5979, 0.6393, 0.6081, 0.5019},
+      { 0.4863, 0.4541, 0.4879, 0.4419, 0.5239, 0.5726, 0.5565, 0.5594, 0.4601, 0.6394, 0.5814, 0.6529, 0.7068, 0.6053, 0.6149, 0.5979, 0.6577, 0.6766, 0.5992, 0.5540},
+      { 0.4943, 0.5060, 0.5407, 0.5087, 0.5843, 0.5793, 0.5916, 0.5267, 0.5682, 0.6768, 0.5710, 0.6867, 0.7255, 0.6361, 0.6376, 0.6393, 0.6766, 0.6936, 0.6394, 0.5547},
+      { 0.4682, 0.4049, 0.4780, 0.4106, 0.4761, 0.5641, 0.5740, 0.4971, 0.4742, 0.5168, 0.4937, 0.6173, 0.5503, 0.6682, 0.6320, 0.6081, 0.5992, 0.6394, 0.6387, 0.5610},
+      { 0.4716, 0.3941, 0.4809, 0.4135, 0.6040, 0.5583, 0.5264, 0.5172, 0.4609, 0.5276, 0.4487, 0.5084, 0.5665, 0.5100, 0.5124, 0.5019, 0.5540, 0.5547, 0.5610, 0.9228}}}};
+
+}}}
diff --git a/modules/seq/alg/src/merge_pairwise_alignments.hh b/modules/seq/alg/src/merge_pairwise_alignments.hh
index 6a825d2e036af65c03d191fee1064367fbd71a6e..04bc8832d4e6f40dc10084439a3d5bb38eb6a7f6 100644
--- a/modules/seq/alg/src/merge_pairwise_alignments.hh
+++ b/modules/seq/alg/src/merge_pairwise_alignments.hh
@@ -37,7 +37,7 @@ namespace ost { namespace seq { namespace alg {
 /// The method does not produce the optimal multiple sequence alignemnt for all 
 /// the sequences.
 /// 
-/// \param pairwise_alignments is a list of AlignmentHandles, each containing
+/// \param pairwise_alns is a list of AlignmentHandles, each containing
 ///      two sequences
 /// \param ref_seq is the reference sequence. The reference sequence must not
 ///      contain any gaps.
diff --git a/modules/seq/alg/src/pair_subst_weight_matrix.cc b/modules/seq/alg/src/pair_subst_weight_matrix.cc
new file mode 100644
index 0000000000000000000000000000000000000000..4d0216428ba09c9cf1b288957dc0626df335ebe3
--- /dev/null
+++ b/modules/seq/alg/src/pair_subst_weight_matrix.cc
@@ -0,0 +1,72 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2011 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+#include <ost/info/info.hh>
+#include <ost/seq/alg/pair_subst_weight_matrix.hh>
+#include <ost/seq/alg/default_pair_subst_weight_matrix.hh>
+#include <algorithm>
+
+namespace {
+
+std::map<char,int> init_dict(std::vector <char> aal){
+  std::map<char,int> aa_dict;
+  const int aal_size = static_cast<int>(aal.size());
+  for (int i=0;i!=aal_size;++i){
+    aa_dict[aal[i]]=i;
+  }
+  return aa_dict;
+}
+}
+
+namespace ost { namespace seq { namespace alg {
+
+PairSubstWeightMatrix LoadDefaultPairSubstWeightMatrix(){
+  std::vector <std::vector<std::vector<std::vector<Real> > > > w(20, std::vector<std::vector<std::vector<Real> > >(20,std::vector<std::vector<Real> >(20,std::vector<Real>(20))));
+  std::vector <char> aal(20);
+  for (int i=0;i!=20;i++){
+    aal[i]=RAW_PAIR_SUBST_WEIGHT_MATRIX_RES_LIST[i];
+  }
+  for (int i1=0;i1!=20;i1++){
+    for (int i2=0;i2!=20;i2++){
+      for (int i3=0;i3!=20;i3++){
+        for (int i4=0;i4!=20;i4++){
+          w[i1][i2][i3][i4]=RAW_PAIR_SUBST_WEIGHT_MATRIX[i1][i2][i3][i4];
+        }
+      }
+    }
+  }
+  return PairSubstWeightMatrix(w,aal);
+}
+
+
+PairSubstWeightMatrix::PairSubstWeightMatrix(){
+  std::vector <std::vector <std::vector <std::vector <Real> > > > w;
+  std::vector <char> aal;
+  this->aa_dict=init_dict(this->aa_list);
+  this->weights=w;
+}
+
+PairSubstWeightMatrix::PairSubstWeightMatrix(std::vector <std::vector <std::vector <std::vector <Real> > > > w,std::vector <char> aal){
+  this->aa_list=aal;
+  this->naa_=this->aa_list.size();
+  this->aa_dict=init_dict(this->aa_list);
+  this->weights=w;
+}
+
+
+}}}
diff --git a/modules/seq/alg/src/pair_subst_weight_matrix.hh b/modules/seq/alg/src/pair_subst_weight_matrix.hh
new file mode 100644
index 0000000000000000000000000000000000000000..174dfa4294e8d7a302a7149639a408499e580466
--- /dev/null
+++ b/modules/seq/alg/src/pair_subst_weight_matrix.hh
@@ -0,0 +1,47 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2011 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+#ifndef OST_SEQ_PAIR_SUBST_WEIGHT_MATRIX_HH
+#define OST_SEQ_PAIR_SUBST_WEIGHT_MATRIX_HH
+
+#include <map>
+#include <ost/seq/alg/module_config.hh>
+
+
+/*
+  Author: Niklaus Johner
+ */
+namespace ost { namespace seq { namespace alg {
+
+  
+/// \brief position-independet pair substitution weight matrix  
+struct DLLEXPORT_OST_SEQ_ALG PairSubstWeightMatrix {
+  std::vector <std::vector <std::vector <std::vector <Real> > > > weights;
+  std::vector <char> aa_list;
+  std::map <char,int> aa_dict;
+  int naa_;
+
+  PairSubstWeightMatrix();
+  PairSubstWeightMatrix(std::vector <std::vector <std::vector <std::vector <Real> > > >,std::vector <char>);
+};
+
+PairSubstWeightMatrix DLLEXPORT_OST_SEQ_ALG LoadDefaultPairSubstWeightMatrix();
+
+}}}
+
+#endif
\ No newline at end of file
diff --git a/modules/seq/alg/src/semiglobal_align.cc b/modules/seq/alg/src/semiglobal_align.cc
new file mode 100644
index 0000000000000000000000000000000000000000..4b89fd15cd1f21d0d56013138adb9c34d9fa06e6
--- /dev/null
+++ b/modules/seq/alg/src/semiglobal_align.cc
@@ -0,0 +1,103 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2011 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+#include <ost/log.hh>
+#include "impl/align_impl.hh"
+#include "semiglobal_align.hh"
+
+namespace ost { namespace seq { namespace alg {
+
+void SemiTraceback(impl::AlnMat& mat, int max_i, int max_j,
+                  const ConstSequenceHandle& s1, 
+                  const ConstSequenceHandle& s2,
+                  AlignmentList& alignments)
+{
+  int i = (max_i > 0 ? max_i-1 : 0);
+  int j = (max_j > 0 ? max_j-1 : 0);
+  String aln_str1;
+  String aln_str2;
+  while (i > 0 || j > 0) {
+    impl::SetRoute(mat, i, j, s1, s2, aln_str1, aln_str2);
+  }
+  impl::StoreStrAsAln(aln_str1, aln_str2, s1, s2, i, j, alignments);
+}
+
+AlignmentList SemiGlobalAlign(const ConstSequenceHandle& s1, 
+                              const ConstSequenceHandle& s2,
+                              alg::SubstWeightMatrixPtr& subst,
+                              int gap_open,int gap_ext)
+{
+  impl::AlnMat mat(s1.GetLength()+1, s2.GetLength()+1);
+  // init first column of matrix no start gap penalty
+  if (mat.GetHeight() > 1) {
+    mat(0, 1).score = mat(0, 0).score;
+    mat(0, 1).from = impl::INS1;
+  }
+  for (int j = 2; j < mat.GetHeight(); ++j) {
+    mat(0, j).score = mat(0, j-1).score;
+    mat(0, j).from = impl::INS1;
+  }
+  // fill the alignment matrix
+  for (int i = 0; i < mat.GetWidth()-1; ++i) {
+    mat(i+1, 0).score = mat(i, 0).score;
+    mat(i+1, 0).from = impl::INS2;
+    for (int j = 0; j < mat.GetHeight()-1; ++j) {
+      char c1=s1[i];
+      char c2=s2[j];
+      short weight=subst->GetWeight(c1, c2);
+      int diag=weight+mat(i, j).score;
+      int ins1=mat(i+1, j).score
+              +(mat(i+1, j).from==impl::INS1 ? gap_ext : gap_open);
+      int ins2=mat(i, j+1).score
+              +(mat(i, j+1).from==impl::INS2 ? gap_ext : gap_open);
+      // ignore end gaps (if one of the two seqs is done)
+      if (j+1==mat.GetHeight()-1){
+        ins2=mat(i, j+1).score;
+      }
+      if (i+1==mat.GetWidth()-1){
+        ins1=mat(i+1, j).score;
+      }
+      if (diag>=ins1) {
+        if (diag>=ins2) {
+          mat(i+1, j+1).score=diag;
+          mat(i+1, j+1).from=impl::DIAG;
+        } else {
+          mat(i+1, j+1).score=ins2;
+          mat(i+1, j+1).from=impl::INS2;
+        }
+      } else if (ins1>ins2) {
+        mat(i+1, j+1).score=ins1;
+        mat(i+1, j+1).from=impl::INS1;
+      } else {
+        mat(i+1, j+1).score=ins2;
+        mat(i+1, j+1).from=impl::INS2;
+      }
+    }
+  }
+  // write traceback matrix in debug mode
+#if !defined(NDEBUG)
+  DbgWriteAlnMatrix(mat,s1, s2);
+#endif
+  AlignmentList alignments;
+  SemiTraceback(mat, mat.GetWidth(), mat.GetHeight(), s1, s2, alignments);
+  LOG_DEBUG(alignments.back().ToString(80));
+
+  return alignments;
+}
+
+}}}
diff --git a/modules/seq/alg/src/semiglobal_align.hh b/modules/seq/alg/src/semiglobal_align.hh
new file mode 100644
index 0000000000000000000000000000000000000000..6d1ca5002476b05ac10b013ee63dea0020e3cf4b
--- /dev/null
+++ b/modules/seq/alg/src/semiglobal_align.hh
@@ -0,0 +1,35 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2011 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+#ifndef OST_SEQ_ALG_SEMIGLOBAL_ALIGN_HH
+#define OST_SEQ_ALG_SEMIGLOBAL_ALIGN_HH
+
+#include <ost/seq/alignment_handle.hh>
+#include <ost/seq/alg/subst_weight_matrix.hh>
+#include "module_config.hh"
+
+namespace ost { namespace seq { namespace alg {
+
+
+AlignmentList DLLEXPORT_OST_SEQ_ALG SemiGlobalAlign(const ConstSequenceHandle& s1,
+                                                    const ConstSequenceHandle& s2,
+                                                    SubstWeightMatrixPtr& subst,
+                                                    int gap_open=-5,int gap_ext=-2);
+}}}
+
+#endif
diff --git a/modules/seq/alg/src/sequence_similarity.cc b/modules/seq/alg/src/sequence_similarity.cc
new file mode 100644
index 0000000000000000000000000000000000000000..67f2e063710830f508375a3dff3fe4245f7664b7
--- /dev/null
+++ b/modules/seq/alg/src/sequence_similarity.cc
@@ -0,0 +1,57 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+#include <ost/seq/aligned_column_iterator.hh> 
+#include <ost/seq/alg/sequence_similarity.hh>
+
+
+namespace ost { namespace seq { namespace alg {
+
+Real SequenceSimilarity(const AlignmentHandle& aln, SubstWeightMatrixPtr subst, 
+                        bool normalize, int seq_a, int seq_b){
+  int non_gap_count=0;
+  int similarity_score = 0;
+
+  const String& sa=aln.GetSequence(seq_a).GetString();
+  const String& sb=aln.GetSequence(seq_b).GetString();  
+
+  for (String::const_iterator 
+       i=sa.begin(), e=sa.end(), j=sb.begin(); i!=e; ++i, ++j) {
+    if (!((*i)== '-' || (*j)=='-')) {
+      ++non_gap_count;
+      similarity_score += subst->GetWeight(*i,*j);
+    }
+  }
+
+  Real seq_sim = subst->GetMinWeight();
+
+  if(non_gap_count > 0){
+    seq_sim = static_cast<Real>(similarity_score)/non_gap_count;
+  }
+
+  if(normalize){
+    seq_sim -= subst->GetMinWeight();
+    Real weight_range = subst->GetMaxWeight() - subst->GetMinWeight();
+    if(weight_range > 0) seq_sim /= weight_range;
+  }
+
+  return seq_sim;
+}
+
+}}}
diff --git a/modules/seq/alg/src/sequence_similarity.hh b/modules/seq/alg/src/sequence_similarity.hh
new file mode 100644
index 0000000000000000000000000000000000000000..daaa09a7b54e819679b51113edc42c353e6ffe9a
--- /dev/null
+++ b/modules/seq/alg/src/sequence_similarity.hh
@@ -0,0 +1,39 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+#ifndef OST_SEQ_SEQUENCE_SIMILARITY_HH
+#define OST_SEQ_SEQUENCE_SIMILARITY_HH
+
+#include <ost/seq/alg/module_config.hh>
+#include <ost/seq/alignment_handle.hh>
+#include <ost/seq/alg/subst_weight_matrix.hh>
+
+namespace ost { namespace seq { namespace alg {
+  
+/// \brief calculate sequence similarity for two sequences in an alignment
+/// \param seq_a is the index of the first sequence
+/// \param seq_b is the index of the second sequence
+/// \param aln is the sequence alignment
+/// \return sequence similarity
+Real DLLEXPORT_OST_SEQ_ALG
+SequenceSimilarity(const AlignmentHandle& aln, SubstWeightMatrixPtr subst,
+                   bool normalize=false, int seq_a=0, int seq_b=1);
+
+}}}
+
+#endif
diff --git a/modules/seq/alg/src/subst_weight_matrix.cc b/modules/seq/alg/src/subst_weight_matrix.cc
index 85851ce2c6689a99b1a311f615019b35a0296c76..d8102aa230cf7e4acb738f716e823e8ebb4ab884 100644
--- a/modules/seq/alg/src/subst_weight_matrix.cc
+++ b/modules/seq/alg/src/subst_weight_matrix.cc
@@ -1,7 +1,7 @@
 //------------------------------------------------------------------------------
 // This file is part of the OpenStructure project <www.openstructure.org>
 //
-// Copyright (C) 2008-2011 by the OpenStructure authors
+// Copyright (C) 2008-2015 by the OpenStructure authors
 //
 // This library is free software; you can redistribute it and/or modify it under
 // the terms of the GNU Lesser General Public License as published by the Free
@@ -16,38 +16,155 @@
 // along with this library; if not, write to the Free Software Foundation, Inc.,
 // 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 //------------------------------------------------------------------------------
-#include <ost/info/info.hh>
+
 #include "subst_weight_matrix.hh"
+#include <iostream>
 
-namespace ost { namespace seq { namespace alg {
+namespace{
 
-SubstWeightMatrixPtr SubstWeightMatrixFromInfo(const info::InfoGroup& group)
-{
-  SubstWeightMatrixPtr m(new SubstWeightMatrix);
-  info::InfoItemList weights=group.GetItems("Weight");
-  for (info::InfoItemList::iterator i=weights.begin(),
-       e=weights.end(); i!=e; ++i) {
-    info::InfoItem item=*i;
-    String from=item.GetAttribute("From");
-    String to=item.GetAttribute("To");
-    m->SetWeight(from[0], to[0], item.AsInt());
+short RAW_BLOSUM45_DATA[23][23]={
+  { 5, -1, -1, -2, -1, -2,  0, -2, -1, -1, -1, -1, -1, -1, -1, -2,  1,  0,  0, -2,  0, -2, -1},
+  {-1,  4, -2,  5,  1, -3, -1,  0, -3,  0, -3, -2,  4, -2,  0, -1,  0,  0, -3, -4, -1, -2,  2},
+  {-1, -2, 12, -3, -3, -2, -3, -3, -3, -3, -2, -2, -2, -4, -3, -3, -1, -1, -1, -5, -2, -3, -3},
+  {-2,  5, -3,  7,  2, -4, -1,  0, -4,  0, -3, -3,  2, -1,  0, -1,  0, -1, -3, -4, -1, -2,  1},
+  {-1,  1, -3,  2,  6, -3, -2,  0, -3,  1, -2, -2,  0,  0,  2,  0,  0, -1, -3, -3, -1, -2,  4},
+  {-2, -3, -2, -4, -3,  8, -3, -2,  0, -3,  1,  0, -2, -3, -4, -2, -2, -1,  0,  1, -1,  3, -3},
+  { 0, -1, -3, -1, -2, -3,  7, -2, -4, -2, -3, -2,  0, -2, -2, -2,  0, -2, -3, -2, -1, -3, -2},
+  {-2,  0, -3,  0,  0, -2, -2, 10, -3, -1, -2,  0,  1, -2,  1,  0, -1, -2, -3, -3, -1,  2,  0},
+  {-1, -3, -3, -4, -3,  0, -4, -3,  5, -3,  2,  2, -2, -2, -2, -3, -2, -1,  3, -2, -1,  0, -3},
+  {-1,  0, -3,  0,  1, -3, -2, -1, -3,  5, -3, -1,  0, -1,  1,  3, -1, -1, -2, -2, -1, -1,  1},
+  {-1, -3, -2, -3, -2,  1, -3, -2,  2, -3,  5,  2, -3, -3, -2, -2, -3, -1,  1, -2, -1,  0, -2},
+  {-1, -2, -2, -3, -2,  0, -2,  0,  2, -1,  2,  6, -2, -2,  0, -1, -2, -1,  1, -2, -1,  0, -1},
+  {-1,  4, -2,  2,  0, -2,  0,  1, -2,  0, -3, -2,  6, -2,  0,  0,  1,  0, -3, -4, -1, -2,  0},
+  {-1, -2, -4, -1,  0, -3, -2, -2, -2, -1, -3, -2, -2,  9, -1, -2, -1, -1, -3, -3, -1, -3, -1},
+  {-1,  0, -3,  0,  2, -4, -2,  1, -2,  1, -2,  0,  0, -1,  6,  1,  0, -1, -3, -2, -1, -1,  4},
+  {-2, -1, -3, -1,  0, -2, -2,  0, -3,  3, -2, -1,  0, -2,  1,  7, -1, -1, -2, -2, -1, -1,  0},
+  { 1,  0, -1,  0,  0, -2,  0, -1, -2, -1, -3, -2,  1, -1,  0, -1,  4,  2, -1, -4,  0, -2,  0},
+  { 0,  0, -1, -1, -1, -1, -2, -2, -1, -1, -1, -1,  0, -1, -1, -1,  2,  5,  0, -3,  0, -1, -1},
+  { 0, -3, -1, -3, -3,  0, -3, -3,  3, -2,  1,  1, -3, -3, -3, -2, -1,  0,  5, -3, -1, -1, -3},
+  {-2, -4, -5, -4, -3,  1, -2, -3, -2, -2, -2, -2, -4, -3, -2, -2, -4, -3, -3, 15, -2,  3, -2},
+  { 0, -1, -2, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,  0,  0, -1, -2, -1, -1, -1},
+  {-2, -2, -3, -2, -2,  3, -3,  2,  0, -1,  0,  0, -2, -3, -1, -1, -2, -1, -1,  3, -1,  8, -2},
+  {-1,  2, -3,  1,  4, -3, -2,  0, -3,  1, -2, -1,  0, -1,  4,  0,  0, -1, -3, -2, -1, -2,  4},
+};
+      
+short RAW_BLOSUM62_DATA[23][23]={
+  { 4, -2,  0, -2, -1, -2,  0, -2, -1, -1, -1, -1, -2, -1, -1, -1,  1,  0,  0, -3,  0, -2, -1},
+  {-2,  4, -3,  4,  1, -3, -1,  0, -3,  0, -4, -3,  3, -2,  0, -1,  0, -1, -3, -4, -1, -3,  1},
+  { 0, -3,  9, -3, -4, -2, -3, -3, -1, -3, -1, -1, -3, -3, -3, -3, -1, -1, -1, -2, -2, -2, -3},
+  {-2,  4, -3,  6,  2, -3, -1, -1, -3, -1, -4, -3,  1, -1,  0, -2,  0, -1, -3, -4, -1, -3,  1},
+  {-1,  1, -4,  2,  5, -3, -2,  0, -3,  1, -3, -2,  0, -1,  2,  0,  0, -1, -2, -3, -1, -2,  4},
+  {-2, -3, -2, -3, -3,  6, -3, -1,  0, -3,  0,  0, -3, -4, -3, -3, -2, -2, -1,  1, -1,  3, -3},
+  { 0, -1, -3, -1, -2, -3,  6, -2, -4, -2, -4, -3,  0, -2, -2, -2,  0, -2, -3, -2, -1, -3, -2},
+  {-2,  0, -3, -1,  0, -1, -2,  8, -3, -1, -3, -2,  1, -2,  0,  0, -1, -2, -3, -2, -1,  2,  0},
+  {-1, -3, -1, -3, -3,  0, -4, -3,  4, -3,  2,  1, -3, -3, -3, -3, -2, -1,  3, -3, -1, -1, -3},
+  {-1,  0, -3, -1,  1, -3, -2, -1, -3,  5, -2, -1,  0, -1,  1,  2,  0, -1, -2, -3, -1, -2,  1},
+  {-1, -4, -1, -4, -3,  0, -4, -3,  2, -2,  4,  2, -3, -3, -2, -2, -2, -1,  1, -2, -1, -1, -3},
+  {-1, -3, -1, -3, -2,  0, -3, -2,  1, -1,  2,  5, -2, -2,  0, -1, -1, -1,  1, -1, -1, -1, -1},
+  {-2,  3, -3,  1,  0, -3,  0,  1, -3,  0, -3, -2,  6, -2,  0,  0,  1,  0, -3, -4, -1, -2,  0},
+  {-1, -2, -3, -1, -1, -4, -2, -2, -3, -1, -3, -2, -2,  7, -1, -2, -1, -1, -2, -4, -2, -3, -1},
+  {-1,  0, -3,  0,  2, -3, -2,  0, -3,  1, -2,  0,  0, -1,  5,  1,  0, -1, -2, -2, -1, -1,  3},
+  {-1, -1, -3, -2,  0, -3, -2,  0, -3,  2, -2, -1,  0, -2,  1,  5, -1, -1, -3, -3, -1, -2,  0},
+  { 1,  0, -1,  0,  0, -2,  0, -1, -2,  0, -2, -1,  1, -1,  0, -1,  4,  1, -2, -3,  0, -2,  0},
+  { 0, -1, -1, -1, -1, -2, -2, -2, -1, -1, -1, -1,  0, -1, -1, -1,  1,  5,  0, -2,  0, -2, -1},
+  { 0, -3, -1, -3, -2, -1, -3, -3,  3, -2,  1,  1, -3, -2, -2, -3, -2,  0,  4, -3, -1, -1, -2},
+  {-3, -4, -2, -4, -3,  1, -2, -2, -3, -3, -2, -1, -4, -4, -2, -3, -3, -2, -3, 11, -2,  2, -3},
+  { 0, -1, -2, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -2, -1, -1,  0,  0, -1, -2, -1, -1, -1},
+  {-2, -3, -2, -3, -2,  3, -3,  2, -1, -2, -1, -1, -2, -3, -1, -2, -2, -2, -1,  2, -1,  7, -2},
+  {-1,  1, -3,  1,  4, -3, -2,  0, -3,  1, -3, -1,  0, -1,  3,  0,  0, -1, -2, -3, -1, -2,  4},
+};
+
+short RAW_BLOSUM80_DATA[23][23]={
+  { 7, -3, -1, -3, -2, -4,  0, -3, -3, -1, -3, -2, -3, -1, -2, -3,  2,  0, -1, -5, -1, -4, -2},
+  {-3,  6, -6,  6,  1, -6, -2, -1, -6, -1, -7, -5,  5, -4, -1, -2,  0, -1, -6, -8, -3, -5,  0},
+  {-1, -6, 13, -7, -7, -4, -6, -7, -2, -6, -3, -3, -5, -6, -5, -6, -2, -2, -2, -5, -4, -5, -7},
+  {-3,  6, -7, 10,  2, -6, -3, -2, -7, -2, -7, -6,  2, -3, -1, -3, -1, -2, -6, -8, -3, -6,  1},
+  {-2,  1, -7,  2,  8, -6, -4,  0, -6,  1, -6, -4, -1, -2,  3, -1, -1, -2, -4, -6, -2, -5,  6},
+  {-4, -6, -4, -6, -6, 10, -6, -2, -1, -5,  0,  0, -6, -6, -5, -5, -4, -4, -2,  0, -3,  4, -6},
+  { 0, -2, -6, -3, -4, -6,  9, -4, -7, -3, -7, -5, -1, -5, -4, -4, -1, -3, -6, -6, -3, -6, -4},
+  {-3, -1, -7, -2,  0, -2, -4, 12, -6, -1, -5, -4,  1, -4,  1,  0, -2, -3, -5, -4, -2,  3,  0},
+  {-3, -6, -2, -7, -6, -1, -7, -6,  7, -5,  2,  2, -6, -5, -5, -5, -4, -2,  4, -5, -2, -3, -6},
+  {-1, -1, -6, -2,  1, -5, -3, -1, -5,  8, -4, -3,  0, -2,  2,  3, -1, -1, -4, -6, -2, -4,  1},
+  {-3, -7, -3, -7, -6,  0, -7, -5,  2, -4,  6,  3, -6, -5, -4, -4, -4, -3,  1, -4, -2, -2, -5},
+  {-2, -5, -3, -6, -4,  0, -5, -4,  2, -3,  3,  9, -4, -4, -1, -3, -3, -1,  1, -3, -2, -3, -3},
+  {-3,  5, -5,  2, -1, -6, -1,  1, -6,  0, -6, -4,  9, -4,  0, -1,  1,  0, -5, -7, -2, -4, -1},
+  {-1, -4, -6, -3, -2, -6, -5, -4, -5, -2, -5, -4, -4, 12, -3, -3, -2, -3, -4, -7, -3, -6, -2},
+  {-2, -1, -5, -1,  3, -5, -4,  1, -5,  2, -4, -1,  0, -3,  9,  1, -1, -1, -4, -4, -2, -3,  5},
+  {-3, -2, -6, -3, -1, -5, -4,  0, -5,  3, -4, -3, -1, -3,  1,  9, -2, -2, -4, -5, -2, -4,  0},
+  { 2,  0, -2, -1, -1, -4, -1, -2, -4, -1, -4, -3,  1, -2, -1, -2,  7,  2, -3, -6, -1, -3, -1},
+  { 0, -1, -2, -2, -2, -4, -3, -3, -2, -1, -3, -1,  0, -3, -1, -2,  2,  8,  0, -5, -1, -3, -2},
+  {-1, -6, -2, -6, -4, -2, -6, -5,  4, -4,  1,  1, -5, -4, -4, -4, -3,  0,  7, -5, -2, -3, -4},
+  {-5, -8, -5, -8, -6,  0, -6, -4, -5, -6, -4, -3, -7, -7, -4, -5, -6, -5, -5, 16, -5,  3, -5},
+  {-1, -3, -4, -3, -2, -3, -3, -2, -2, -2, -2, -2, -2, -3, -2, -2, -1, -1, -2, -5, -2, -3, -1},
+  {-4, -5, -5, -6, -5,  4, -6,  3, -3, -4, -2, -3, -4, -6, -3, -4, -3, -3, -3,  3, -3, 11, -4},
+  {-2,  0, -7,  1,  6, -6, -4,  0, -6,  1, -5, -3, -1, -2,  5,  0, -1, -2, -4, -5, -1, -4,  6},
+};
+
+short RAW_BLOSUM100_DATA[23][23]={
+  { 8, -4, -2, -5, -3, -5, -1, -4, -4, -2, -4, -3, -4, -2, -2, -3,  1, -1, -2, -6, -2, -5, -2},
+  {-4,  6, -7,  6,  0, -7, -3, -2, -8, -2, -8, -7,  5, -5, -2, -4, -1, -2, -7, -9, -4, -6,  0},
+  {-2, -7, 14, -8, -9, -4, -7, -8, -3, -8, -5, -4, -5, -8, -7, -8, -3, -3, -3, -7, -5, -6, -8},
+  {-5,  6, -8, 10,  2, -8, -4, -3, -8, -3, -8, -8,  1, -5, -2, -5, -2, -4, -8,-10, -4, -7,  0},
+  {-3,  0, -9,  2, 10, -8, -6, -2, -7,  0, -7, -5, -2, -4,  2, -2, -2, -3, -5, -8, -3, -7,  7},
+  {-5, -7, -4, -8, -8, 11, -8, -4, -2, -6,  0, -1, -7, -7, -6, -6, -5, -5, -3,  0, -4,  4, -7},
+  {-1, -3, -7, -4, -6, -8,  9, -6, -9, -5, -8, -7, -2, -6, -5, -6, -2, -5, -8, -7, -4, -8, -5},
+  {-4, -2, -8, -3, -2, -4, -6, 13, -7, -3, -6, -5,  0, -5,  1, -1, -3, -4, -7, -5, -4,  1, -1},
+  {-4, -8, -3, -8, -7, -2, -9, -7,  8, -6,  2,  1, -7, -7, -6, -7, -5, -3,  4, -6, -3, -4, -7},
+  {-2, -2, -8, -3,  0, -6, -5, -3, -6, 10, -6, -4, -1, -3,  2,  3, -2, -3, -5, -8, -3, -5,  0},
+  {-4, -8, -5, -8, -7,  0, -8, -6,  2, -6,  8,  3, -7, -7, -5, -6, -6, -4,  0, -5, -3, -4, -6},
+  {-3, -7, -4, -8, -5, -1, -7, -5,  1, -4,  3, 12, -5, -5, -2, -4, -4, -2,  0, -4, -3, -5, -4},
+  {-4,  5, -5,  1, -2, -7, -2,  0, -7, -1, -7, -5, 11, -5, -1, -2,  0, -1, -7, -8, -3, -5, -2},
+  {-2, -5, -8, -5, -4, -7, -6, -5, -7, -3, -7, -5, -5, 12, -4, -5, -3, -4, -6, -8, -4, -7, -4},
+  {-2, -2, -7, -2,  2, -6, -5,  1, -6,  2, -5, -2, -1, -4, 11,  0, -2, -3, -5, -5, -2, -4,  5},
+  {-3, -4, -8, -5, -2, -6, -6, -1, -7,  3, -6, -4, -2, -5,  0, 10, -3, -3, -6, -7, -3, -5, -1},
+  { 1, -1, -3, -2, -2, -5, -2, -3, -5, -2, -6, -4,  0, -3, -2, -3,  9,  2, -4, -7, -2, -5, -2},
+  {-1, -2, -3, -4, -3, -5, -5, -4, -3, -3, -4, -2, -1, -4, -3, -3,  2,  9, -1, -7, -2, -5, -3},
+  {-2, -7, -3, -8, -5, -3, -8, -7,  4, -5,  0,  0, -7, -6, -5, -6, -4, -1,  8, -5, -3, -5, -5},
+  {-6, -9, -7, 10, -8,  0, -7, -5, -6, -8, -5, -4, -8, -8, -5, -7, -7, -7, -5, 17, -6,  2, -7},
+  {-2, -4, -5, -4, -3, -4, -4, -4, -3, -3, -3, -3, -3, -4, -2, -3, -2, -2, -3, -6, -3, -4, -2},
+  {-5, -6, -6, -7, -7,  4, -8,  1, -4, -5, -4, -5, -5, -7, -4, -5, -5, -5, -5,  2, -4, 12, -6},
+  {-2,  0, -8,  0,  7, -7, -5, -1, -7,  0, -6, -4, -2, -4,  5, -1, -2, -3, -5, -7, -2, -6,  6},
+};
+
+void FillData(ost::seq::alg::SubstWeightMatrix* subst, short (&data)[23][23]){
+  char chars[23] = {'A','B','C','D','E','F','G','H','I','K','L','M','N','P','Q',
+                    'R','S','T','V','W','X','Y','Z'};
+  for(uint i = 0; i < 23; ++i){
+    for(uint j = 0; j < 23; ++j){
+      subst->SetWeight(chars[i],chars[j],data[i][j]);
+    }
   }
-  return m;
 }
 
-void SubstWeightMatrixToInfo(const SubstWeightMatrixPtr& subst_mat, 
-                             info::InfoGroup& group)
+}
+
+namespace ost { namespace seq { namespace alg {
+
+void SubstWeightMatrix::AssignPreset(SubstWeightMatrix::Preset p)
 {
-  for (int i=0; i<SubstWeightMatrix::ALPHABET_SIZE; ++i) {
-    for (int j=0; j<SubstWeightMatrix::ALPHABET_SIZE; ++j) {
-      char from=char(i+'A');
-      char to=char(j+'A');
-      info::InfoItem item=group.CreateItem("Weight", 
-                                           subst_mat->GetWeight(from, to));
-      item.SetAttribute("From", String(1, from)); 
-      item.SetAttribute("To", String(1, to));
+  max_weight_ = 0;
+  min_weight_ = 0;
+  memset(weights_, 0, sizeof(WeightType)*ALPHABET_SIZE*ALPHABET_SIZE);
+
+  switch(p){
+    case BLOSUM45:{
+      FillData(this,RAW_BLOSUM45_DATA);
+      break;
+    }
+    case BLOSUM62:{
+      FillData(this,RAW_BLOSUM62_DATA);
+      break;
+    }
+    case BLOSUM80:{
+      FillData(this,RAW_BLOSUM80_DATA);
+      break;
+    }
+    case BLOSUM100:{
+      FillData(this,RAW_BLOSUM100_DATA);
+      break;
     }
   }
 }
 
+
 }}}
diff --git a/modules/seq/alg/src/subst_weight_matrix.hh b/modules/seq/alg/src/subst_weight_matrix.hh
index 97f0ef825cb45dda7e2572558b2917498e87a353..c3bb6d6057607b87969b1f7179614173f014b5da 100644
--- a/modules/seq/alg/src/subst_weight_matrix.hh
+++ b/modules/seq/alg/src/subst_weight_matrix.hh
@@ -23,9 +23,6 @@
 #include <string.h>
 #include <boost/shared_ptr.hpp>
 #include <ost/config.hh>
-#if(OST_INFO_ENABLED)
-#include <ost/info/info_fw.hh>
-#endif
 #include <ost/seq/alg/module_config.hh>
 
 /*
@@ -43,14 +40,20 @@ class DLLEXPORT_OST_SEQ_ALG SubstWeightMatrix {
 public:
   typedef short WeightType;
   const static int ALPHABET_SIZE='Z'-'A'+1;
+  enum Preset{BLOSUM45 = 0,
+              BLOSUM62 = 1,
+              BLOSUM80 = 2,
+              BLOSUM100 = 3};
   /// \brief Initialize substitution matrix with zero.
   /// 
   /// In order to get a useful  substitution weight matrix, use SetWeight(). 
   /// Alternatively you may want to load the substitution from an  info group.
-  SubstWeightMatrix() {
+  SubstWeightMatrix():max_weight_(0),min_weight_(0) {
     ::memset(weights_, 0, sizeof(WeightType)*ALPHABET_SIZE*ALPHABET_SIZE);
   }
 
+  void AssignPreset(Preset p);
+
   /// \brief Get the substitution weight between two amino acids
   ///
   /// If the amino acid single letter code is unknown (e.g. '?')
@@ -64,6 +67,12 @@ public:
     return (i>=0 && i<ALPHABET_SIZE*ALPHABET_SIZE) ? weights_[i] : 0;
   }
 
+  /// \brief Get the minimal substitution weight of the matrix
+  WeightType GetMinWeight() const { return min_weight_; }
+
+  /// \brief Get the maximal substitution weight of the matrix
+  WeightType GetMaxWeight() const { return max_weight_; }
+
   /// \brief Set the substitution weight between two amino acids
   ///
   /// The weight is only set if the amino acid single letter code
@@ -74,6 +83,8 @@ public:
       int i=Index(aa_one, aa_two);
       if (i>=0 && i<ALPHABET_SIZE*ALPHABET_SIZE) {
         weights_[i]=weight;
+        min_weight_ = std::min(min_weight_,weight);
+        max_weight_ = std::max(max_weight_,weight);
       }
     }
   }
@@ -88,17 +99,10 @@ private:
     return (toupper(aa)>='A' && toupper(aa)<='Z');
   }
   WeightType weights_[ALPHABET_SIZE*ALPHABET_SIZE];
+  WeightType max_weight_;
+  WeightType min_weight_;
 };
 
-#if(OST_INFO_ENABLED)
-SubstWeightMatrixPtr DLLEXPORT_OST_SEQ_ALG
-SubstWeightMatrixFromInfo(const info::InfoGroup& group);
-
-void DLLEXPORT_OST_SEQ_ALG 
-SubstWeightMatrixToInfo(const SubstWeightMatrixPtr& subst_mat, 
-                        info::InfoGroup& group);
-#endif
-
 }}}
 
 #endif
diff --git a/modules/seq/alg/tests/CMakeLists.txt b/modules/seq/alg/tests/CMakeLists.txt
index 76b599790fd34347fcff9b518c3c72b8fb85811e..ca0e72988f5fb0e4e8e7841a405e7f1303541cd5 100644
--- a/modules/seq/alg/tests/CMakeLists.txt
+++ b/modules/seq/alg/tests/CMakeLists.txt
@@ -5,6 +5,7 @@ set(OST_SEQ_ALG_UNIT_TESTS
   test_renumber.py
   test_local_align.py
   test_global_align.py
+  test_semiglobal_align.py
   test_weight_matrix.py
   test_aligntoseqres.py
 )
diff --git a/modules/seq/alg/tests/test_semiglobal_align.py b/modules/seq/alg/tests/test_semiglobal_align.py
new file mode 100644
index 0000000000000000000000000000000000000000..e50198928edc146038187674163567ad0f7b460f
--- /dev/null
+++ b/modules/seq/alg/tests/test_semiglobal_align.py
@@ -0,0 +1,23 @@
+import unittest
+from ost import *
+from ost import settings
+from ost import seq
+from ost.bindings.clustalw import *
+
+class TestSemiGlobalAlign(unittest.TestCase):
+  def testSemiGlobalAlignment(self):
+    seq_a=seq.CreateSequence('A', 'abcdefghijklmnok')
+    seq_b=seq.CreateSequence('B', 'cdehijk')
+    alns=seq.alg.SemiGlobalAlign(seq_a, seq_b, seq.alg.BLOSUM62)
+    self.assertEqual(len(alns), 1)
+    self.assertEqual(alns[0].sequences[0].name, 'A')
+    self.assertEqual(alns[0].sequences[1].name, 'B')
+    self.assertEqual(str(alns[0].sequences[0]), 'abcdefghijklmnok')
+    self.assertEqual(str(alns[0].sequences[1]), '--cde--hijk-----')
+    self.assertEqual(alns[0].sequences[0].offset, 0)
+    self.assertEqual(alns[0].sequences[1].offset, 0)
+
+
+if __name__ == "__main__":
+  from ost import testutils
+  testutils.RunTests()
diff --git a/modules/seq/base/doc/seq.rst b/modules/seq/base/doc/seq.rst
index 042f1d09c9811d0b7f42650576ec604cfa9d8fce..5022c0aba584d651d8e0d0d056e89cbc635468ff 100644
--- a/modules/seq/base/doc/seq.rst
+++ b/modules/seq/base/doc/seq.rst
@@ -30,7 +30,7 @@ Sequence Offset
 
 When using sequences and structures together, often the start of the structure 
 and the beginning of the sequence do not fall together. In the following case, 
-the alignment of sequences B and C only covers a subpart of structure A::
+the alignment of sequences B and C only covers a subsequence of structure A::
 
   A acefghiklmnpqrstuvwy
   B     ghiklm
@@ -98,7 +98,8 @@ The SequenceHandle
      
     Get residue index of character at given position. This method is the
     inverse of :meth:`GetPos`. If the sequence contains a gap at that position,
-    an :exc:`Error` is raised.
+    an :exc:`Error` is raised. Admires the
+    :ref:`sequence offset <sequence-offset>`.
     
     .. code-block:: python
       
@@ -167,6 +168,10 @@ The SequenceHandle
     Returns a string version of this sequence with all hyphens removed. Also
     available as the property :attr:`gapless_string`.
      
+  .. method:: Normalise()
+     
+    Remove '-' and '.' as gaps from the sequence and make it all upper case.
+    Works in place.
    
   .. method:: SetName()
   
@@ -205,7 +210,7 @@ The SequenceHandle
 
   Check whether the two sequences s1 and s2 match. This function performs are
   case-insensitive comparison of the two sequences. The character  'X' is
-  interpreted as a wildcard character that always matches the other sequence.
+  interpreted as a wild card character that always matches the other sequence.
 
 The SequenceList    
 --------------------------------------------------------------------------------
@@ -220,7 +225,7 @@ The AlignmentHandle
 --------------------------------------------------------------------------------
 
 The :class:`AlignmentHandle` represents a list of aligned sequences. In
-constrast to :class:`SequenceList`, an alignment requires all sequences to be of 
+contrast to :class:`SequenceList`, an alignment requires all sequences to be of 
 the same length. New instances of alignments are created with 
 :func:`CreateAlignment` and :func:`AlignmentFromSequenceList`.
 
@@ -432,3 +437,140 @@ an alignment:
 
     Remove sequence at *index* from the alignment.
 
+
+Handling Sequence Profiles
+--------------------------------------------------------------------------------
+
+The :class:`ProfileHandle` provides a simple container for profiles for each
+residue. It mainly contains:
+
+- *N* :class:`ProfileColumn` objects (*N* = number of residues in sequence)
+  which each contains 20 amino acid frequencies
+- a :attr:`~ProfileHandle.sequence` (:class:`str`) of length *N*
+- a :attr:`~ProfileHandle.null_model` to use for this profile
+
+.. class:: ProfileColumn
+
+  .. method:: BLOSUMNullModel()
+
+    Static method, that returns a new :class:`ProfileColumn` with amino acid
+    frequencies given from the BLOSUM62 substitution matrix.
+
+  .. method:: GetFreq(aa)
+
+    :param aa:  One letter code of standard amino acid
+    :type aa:  :class:`str`
+
+    :returns:  Frequency of aa
+
+  .. method:: SetFreq(aa,freq)
+
+    :param aa:  One letter code of standard amino acid
+    :param freq:  The frequency of the given amino acid
+    :type aa:  :class:`str`
+    :type freq:  :class:`float`
+
+  .. attribute:: entropy
+
+    Shannon entropy based on the columns amino acid frequencies
+
+
+.. class:: ProfileHandle
+
+  .. method:: __len__()
+    
+    Returns the length of the sequence for which we have profile.
+
+    :rtype: :class:`int`
+
+  .. method:: AddColumn(col)
+
+    Appends column in the internal column list.
+
+    :param col:  Column to add
+    :type col:  :class:`ProfileColumn`
+
+  .. method:: Extract(from,to)
+
+    :param from:  Col Idx to start from
+    :param to:  End Idx, not included in sub-ProfileHandle
+
+    :type from:  :class:`int`
+    :type to:  :class:`int`
+
+    :returns: sub-profile as defined by given indices
+              (:attr:`null_model` is copied)
+    :rtype: :class:`ProfileHandle`
+
+    :raises: :exc:`~exceptions.Error` if if *to* <= *from* or
+              *to* > :meth:`__len__`.
+
+  .. method:: SetSequence(sequence)
+
+    Sets :attr:`sequence`.
+
+  .. method:: SetNullModel(null_model)
+
+    Sets :attr:`null_model`.
+
+  .. attribute:: sequence
+
+    Sequence for which we have this profile.
+    Note: user must enforce consistency between sequence length and number of
+    profile columns.
+
+  .. attribute:: columns
+
+    Iterable columns of the profile
+
+  .. attribute:: null_model
+
+    Null model of the profile
+
+  .. attribute:: avg_entropy
+
+    Average entropy of all the columns
+
+.. class:: ProfileDB
+
+  A simple database to gather :class:`ProfileHandle` objects. It is possible
+  to save them to disk in a compressed format with limited accuracy
+  (4 digits for each frequency).
+
+  .. method:: Save(filename)
+
+    :param filename:  Name of file that will be generated on disk.
+    :type filename:  :class:`str`
+
+  .. method:: Load(filename)
+
+    Static loading method
+
+    :param filename:  Name of file from which the database should be loaded.
+    :type filename:  :class:`str`
+    :returns:  The loaded database
+
+  .. method:: AddProfile(name, prof)
+
+    :param name:  Name of profile to be added
+    :param prof:  Profile to be added
+
+    :type name:  :class:`str`
+    :type prof:  :class:`ProfileHandle`
+    :raises:  :class:`Exception` when filename is longer than 255 characters.
+
+  .. method:: GetProfile(name)
+
+    :param name:  Name of profile to be returned
+    :type name:  :class:`str`
+    :returns:  The requested :class:`ProfileHandle`
+    :raises:  :class:`Exception` when no :class:`ProfileHandle` for **name** exists.
+
+  .. method:: Size()
+
+    :returns: Number of :class:`ProfileHandle` objects in the database
+
+  .. method:: GetNames()
+
+    :returns: A nonsorted list of the names of all :class:`ProfileHandle`
+              objects in the database
diff --git a/modules/seq/base/pymod/CMakeLists.txt b/modules/seq/base/pymod/CMakeLists.txt
index f2aac4ea51cb0cd57fed4d304199db0a420158fb..c40a805fa2dccb7feba2d4e35476d50a5e02a954 100644
--- a/modules/seq/base/pymod/CMakeLists.txt
+++ b/modules/seq/base/pymod/CMakeLists.txt
@@ -1,5 +1,6 @@
 set(OST_SEQ_PYMOD_SOURCES
   export_sequence.cc
+  export_profile_handle.cc
   wrap_seq.cc
 )
 
diff --git a/modules/seq/base/pymod/export_profile_handle.cc b/modules/seq/base/pymod/export_profile_handle.cc
new file mode 100644
index 0000000000000000000000000000000000000000..e563960f424e448863bf17f7d52d10db8b2875e5
--- /dev/null
+++ b/modules/seq/base/pymod/export_profile_handle.cc
@@ -0,0 +1,82 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+/*
+  Author: Gerardo Tauriello, Gabriel Studer
+ */
+
+#include <boost/python/suite/indexing/vector_indexing_suite.hpp>
+#include <boost/python.hpp>
+#include <ost/seq/profile_handle.hh>
+
+using namespace ost::seq;
+using namespace boost::python;
+
+namespace {
+
+boost::python::list wrap_get_names(ProfileDBPtr db) {
+  std::vector<String> v_names = db->GetNames();
+  boost::python::list names;
+  for (std::vector<String>::iterator i = v_names.begin();
+       i != v_names.end(); ++i) {
+    names.append(*i);
+  }
+  return names;
+}
+
+} // anon ns
+
+void export_profile_handle() 
+{
+  class_<ProfileColumn>("ProfileColumn", init<>())
+    .add_property("entropy", &ProfileColumn::GetEntropy)
+    .def("GetFreq", &ProfileColumn::GetFreq)
+    .def("SetFreq", &ProfileColumn::SetFreq)
+    .def("BLOSUMNullModel", 
+         &ProfileColumn::BLOSUMNullModel).staticmethod("BLOSUMNullModel")
+  ;
+
+  class_<ProfileColumnList>("ProfileColumnList", init<>())
+    .def(vector_indexing_suite<ProfileColumnList>())
+  ;
+
+  class_<ProfileHandle, ProfileHandlePtr>("ProfileHandle", init<>())
+    .def("__len__",&ProfileHandle::size)
+    .def("AddColumn", &ProfileHandle::push_back)
+    .def("Extract", &ProfileHandle::Extract)
+    .def("SetNullModel", &ProfileHandle::SetNullModel)
+    .def("SetSequence", &ProfileHandle::SetSequence)
+    .add_property("null_model", make_function(&ProfileHandle::GetNullModel,
+                  return_value_policy<copy_const_reference>()))
+    .add_property("columns", 
+                  make_function(&ProfileHandle::GetColumns,
+                  return_value_policy<copy_const_reference>()))
+    .add_property("avg_entropy", &ProfileHandle::GetAverageEntropy)
+    .add_property("sequence", &ProfileHandle::GetSequence)
+  ;
+
+  class_<ProfileDB, ProfileDBPtr>("ProfileDB", init<>())
+    .def("Load", &ProfileDB::Load).staticmethod("Load")
+    .def("Save", &ProfileDB::Save)
+    .def("AddProfile", &ProfileDB::AddProfile)
+    .def("GetProfile", &ProfileDB::GetProfile)
+    .def("Size", &ProfileDB::size)
+    .def("GetNames",&wrap_get_names)
+  ;
+}
diff --git a/modules/seq/base/pymod/export_sequence.cc b/modules/seq/base/pymod/export_sequence.cc
index 6cdf081cd35740fa1f4a543ef341e37f3e0974f6..1919290e7f90f9cee97b19fcdcecccc007090c64 100644
--- a/modules/seq/base/pymod/export_sequence.cc
+++ b/modules/seq/base/pymod/export_sequence.cc
@@ -300,6 +300,7 @@ void export_sequence()
     .def("AttachView", attach_two)
     .def("Append", &SequenceHandle::Append)
     .def("SetString", &SequenceHandle::SetString)
+    .def("Normalise", &SequenceHandle::Normalise)
     .add_property("string",
                   make_function(&SequenceHandle::GetString,
                                 return_value_policy<copy_const_reference>()),
diff --git a/modules/seq/base/pymod/wrap_seq.cc b/modules/seq/base/pymod/wrap_seq.cc
index c881dae0ab14a9678aabbacc575daba93bfcedd3..1dbc2ba17e65435db1480db4c8330d04718d1300 100644
--- a/modules/seq/base/pymod/wrap_seq.cc
+++ b/modules/seq/base/pymod/wrap_seq.cc
@@ -20,9 +20,10 @@
 using namespace boost::python;
 
 void export_sequence();
+void export_profile_handle();
 
 BOOST_PYTHON_MODULE(_ost_seq)
 {
   export_sequence();
-
+  export_profile_handle();
 }
diff --git a/modules/seq/base/src/CMakeLists.txt b/modules/seq/base/src/CMakeLists.txt
index 8ef75076e739e4cf90e01e97f5e9582f22cd67cf..ff359c8ad8dba949f3f0bfbf1aab122b973d4bd9 100644
--- a/modules/seq/base/src/CMakeLists.txt
+++ b/modules/seq/base/src/CMakeLists.txt
@@ -16,6 +16,7 @@ aligned_column.hh
 aligned_column_iterator.hh
 invalid_sequence.hh
 views_from_sequences.hh
+profile_handle.hh
 )
 
 set(OST_SEQ_SOURCES
@@ -28,6 +29,7 @@ sequence_list.cc
 alignment_handle.cc
 sequence_op.cc
 views_from_sequences.cc
+profile_handle.cc
 )
 
 if (ENABLE_INFO)
@@ -38,4 +40,5 @@ endif()
 module(NAME seq SOURCES ${OST_SEQ_SOURCES} 
          HEADERS ${OST_SEQ_IMPL_HEADERS} IN_DIR impl
                  ${OST_SEQ_HEADERS}
+         LINK ${BOOST_IOSTREAM_LIBRARIES}
          DEPENDS_ON ost_mol ${INFO_DEPS})
\ No newline at end of file
diff --git a/modules/seq/base/src/impl/sequence_impl.cc b/modules/seq/base/src/impl/sequence_impl.cc
index 733eaf1b8e17f765581a4cb1e527beb2bf3483ef..9864fe8e5f375c3434b7050e5eca5d3ebd99da2d 100644
--- a/modules/seq/base/src/impl/sequence_impl.cc
+++ b/modules/seq/base/src/impl/sequence_impl.cc
@@ -331,6 +331,27 @@ void SequenceImpl::Replace(const String& str,int start, int end)
   this->ShiftsFromSequence();
 }
 
+void SequenceImpl::Normalise() {
+  const char gaps[]={'.', '-', '\0'};
+  bool is_gap;
+  String new_seq_string = "";
+  int n_gaps = sizeof(gaps) / sizeof(gaps[0]);
+  for (size_t i=0; i<seq_string_.length(); ++i) {
+    is_gap = false;
+    for (int j=0; j<n_gaps; ++j) {
+      if (seq_string_[i]==gaps[j]) {
+        is_gap = true;
+        break;
+      }
+    }
+    if (is_gap == false) {
+      new_seq_string = new_seq_string + char(toupper(seq_string_[i]));
+    }
+  }
+  seq_string_ = new_seq_string;
+  this->ShiftsFromSequence();
+}
+
 void SequenceImpl::ShiftRegion(int start, int end, int amount)
 {
   if(start > end || start + amount < 0 || end + amount > this->GetLength()){
diff --git a/modules/seq/base/src/impl/sequence_impl.hh b/modules/seq/base/src/impl/sequence_impl.hh
index fecad2ca921599ecd85c58ee33e6c184bdbd5a52..ccb64b7754e9e20e2cd6683f612dbe533f86423e 100644
--- a/modules/seq/base/src/impl/sequence_impl.hh
+++ b/modules/seq/base/src/impl/sequence_impl.hh
@@ -81,6 +81,9 @@ public:
   /// \brief Set sequence String
   void SetString(const String& seq);
 
+  /// \brief Remove everything 'unusual' from sequence
+  void Normalise();
+
   /// \brief replace substring starting from start to end
   void Replace(const String& str,int start, int end);
 
diff --git a/modules/seq/base/src/profile_handle.cc b/modules/seq/base/src/profile_handle.cc
new file mode 100644
index 0000000000000000000000000000000000000000..0feebe958ba8aacaa9bdb690cc6c17d76a4e41c9
--- /dev/null
+++ b/modules/seq/base/src/profile_handle.cc
@@ -0,0 +1,220 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+/*
+  Author: Gerardo Tauriello, Gabriel Studer
+ */
+
+#include <fstream>
+#include <iostream>
+#include <ost/seq/profile_handle.hh>
+
+namespace ost { namespace seq{ 
+
+//////////////////////////////////////////////////////////////////////////////
+// ProfileColumn
+//////////////////////////////////////////////////////////////////////////////
+
+ProfileColumn ProfileColumn::BLOSUMNullModel() {
+  ProfileColumn col;
+
+  col.freq_[0] = 0.0732;
+  col.freq_[1] = 0.0250;
+  col.freq_[2] = 0.0542;
+  col.freq_[3] = 0.0547;
+  col.freq_[4] = 0.0447;
+  col.freq_[5] = 0.0751;
+  col.freq_[6] = 0.0261;
+  col.freq_[7] = 0.0700;
+  col.freq_[8] = 0.1011;
+  col.freq_[9] = 0.0584;
+  col.freq_[10] = 0.0246;
+  col.freq_[11] = 0.0463;
+  col.freq_[12] = 0.0351;
+  col.freq_[13] = 0.0326;
+  col.freq_[14] = 0.0484;
+  col.freq_[15] = 0.0573;
+  col.freq_[16] = 0.0505;
+  col.freq_[17] = 0.0758;
+  col.freq_[18] = 0.0124;
+  col.freq_[19] = 0.0345;
+
+  return col;
+}
+
+int ProfileColumn::GetIndex(char olc) {
+  if (olc == 'A') return 0;
+  if (olc >= 'C' && olc <= 'I') return (olc-'A') - 1;
+  if (olc >= 'K' && olc <= 'N') return (olc-'A') - 2;
+  if (olc >= 'P' && olc <= 'T') return (olc-'A') - 3;
+  if (olc == 'V' ) return 17;
+  if (olc == 'W' ) return 18;
+  if (olc == 'Y' ) return 19;
+  return -1;
+}
+
+Real ProfileColumn::GetFreq(char ch) const{
+  int idx = ProfileColumn::GetIndex(ch);
+  if (idx == -1) {
+    throw Error("Invalid One Letter Code observed when getting frequency in "
+                "ProfileColumn!");
+  }
+  return freq_[idx];
+}
+
+void ProfileColumn::SetFreq(char ch, Real freq){
+  int idx = ProfileColumn::GetIndex(ch);
+  if (idx == -1) {
+    throw Error("Invalid One Letter Code observed when setting frequency in "
+                "ProfileColumn!");
+  }
+  freq_[idx] = freq;
+}
+
+Real ProfileColumn::GetEntropy() const {
+  Real entropy = 0.0;
+  for (uint i = 0; i < 20; ++i) {
+    if (freq_[i] > 0.0) {
+      entropy -= log(freq_[i]) * freq_[i];
+    }
+  }
+  return entropy;
+}
+
+//////////////////////////////////////////////////////////////////////////////
+// ProfileHandle
+//////////////////////////////////////////////////////////////////////////////
+
+ProfileHandlePtr ProfileHandle::Extract(uint from, uint to){
+
+  if (to <= from) {
+    throw Error("Second index must be bigger than first one!");
+  }
+
+  if (to > this->size()) {
+    throw Error("Invalid index!");
+  }
+
+  ProfileHandlePtr return_prof(new ProfileHandle);
+  return_prof->SetNullModel(null_model_);
+  for(uint i = from; i < to; ++i){
+    return_prof->push_back(columns_[i]);
+  }
+  return_prof->SetSequence(seq_.substr(from, to-from));
+
+  return return_prof;
+}
+
+Real ProfileHandle::GetAverageEntropy() const {
+  Real n_eff = 0.0;
+  int n = 0;
+  for (std::vector<ProfileColumn>::const_iterator
+       i = this->columns_begin(), e = this->columns_end(); i != e; ++i) {
+    n += 1;
+    n_eff += i->GetEntropy();
+  }
+  return (n > 0) ? n_eff/n : 0.0;
+}
+
+//////////////////////////////////////////////////////////////////////////////
+// ProfileDB
+//////////////////////////////////////////////////////////////////////////////
+
+void ProfileDB::Save(const String& filename) const{
+
+  std::ofstream out_stream(filename.c_str(), std::ios::binary);
+
+  //write out total size
+  uint32_t total_size = data_.size();
+  out_stream.write(reinterpret_cast<char*>(&total_size),4);
+
+  //write out the data elements
+  char string_size;
+  for (std::map<String, ProfileHandlePtr>::const_iterator i = data_.begin();
+       i != data_.end(); ++i){
+    string_size = static_cast<char>(i->first.size());
+    out_stream.write(reinterpret_cast<char*>(&string_size),1);
+    out_stream.write(i->first.c_str(),string_size);
+    out_stream << *i->second;
+  }
+  out_stream.close();
+}
+
+ProfileDBPtr ProfileDB::Load(const String& filename){
+
+  std::ifstream in_stream(filename.c_str(), std::ios::binary);
+  if (!in_stream){
+    std::stringstream ss;
+    ss << "the file '" << filename << "' does not exist.";
+    throw Error(ss.str());
+  }
+
+  ProfileDBPtr db(new ProfileDB);
+
+  //read in the total size
+  uint32_t total_size;
+  in_stream.read(reinterpret_cast<char*>(&total_size),4);
+
+  //read in the single profiles
+  char string_size;
+  for(uint i = 0; i < total_size; ++i){
+    in_stream.read(&string_size,1);
+    String name(string_size,'X');
+    in_stream.read(&name[0],string_size);
+    ProfileHandlePtr prof(new ProfileHandle);
+    in_stream >> *prof;
+    db->AddProfile(name, prof);
+  }
+
+  return db;
+}
+
+void ProfileDB::AddProfile(const String& name, ProfileHandlePtr prof) {
+  if (name.size() > 255) {
+    throw Error("Name of Profile must be smaller than 256!");
+  }
+  if (name.empty()) {
+    throw Error("Name must not be empty!");
+  }
+  data_[name] = prof;
+}
+
+ProfileHandlePtr ProfileDB::GetProfile(const String& name) const{
+  std::map<String,ProfileHandlePtr>::const_iterator i = data_.find(name);
+  if (i == data_.end()) {
+    std::stringstream ss;
+    ss << "Profile database does not contain an entry with name ";
+    ss << name << "!";
+    throw Error(ss.str());
+  }
+  return i->second;
+}
+
+std::vector<String> ProfileDB::GetNames() const{
+  std::vector<String> return_vec;
+  return_vec.reserve(this->size());
+  for (std::map<String, ProfileHandlePtr>::const_iterator i = data_.begin(); 
+       i != data_.end(); ++i){
+    return_vec.push_back(i->first);
+  }
+  return return_vec;
+}
+
+
+}} //ns
diff --git a/modules/seq/base/src/profile_handle.hh b/modules/seq/base/src/profile_handle.hh
new file mode 100644
index 0000000000000000000000000000000000000000..0d67f8c696a0995133473c2da7a979d8b84bd6bd
--- /dev/null
+++ b/modules/seq/base/src/profile_handle.hh
@@ -0,0 +1,250 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+/*
+  Author: Gerardo Tauriello, Gabriel Studer
+ */
+
+#ifndef OST_SEQ_PROFILE_HANDLE_HH
+#define OST_SEQ_PROFILE_HANDLE_HH
+
+#include <ost/base.hh>
+#include <ost/stdint.hh>
+#include <ost/message.hh>
+#include <ost/seq/module_config.hh>
+
+#include <string.h> // for memcpy, etc
+#include <vector>
+#include <map>
+#include <fstream>
+#include <boost/shared_ptr.hpp>
+
+namespace ost { namespace seq { 
+
+class ProfileHandle;
+class ProfileColumn;
+class ProfileDB;
+typedef boost::shared_ptr<ProfileHandle> ProfileHandlePtr;
+typedef boost::shared_ptr<ProfileDB> ProfileDBPtr;
+typedef std::vector<ProfileColumn> ProfileColumnList;
+
+/// \brief Defines profile of 20 frequencies for one residue.
+///
+/// Frequencies are identified by the one-letter-code for that amino acid.
+/// (possible codes: ACDEFGHIKLMNPQRSTVWY)
+class DLLEXPORT_OST_SEQ ProfileColumn {
+public:
+
+  /// \brief Construct a profile with all frequencies set to 0.
+  ProfileColumn() {
+    memset(freq_, 0, sizeof(freq_));
+  }
+
+  ProfileColumn(const ProfileColumn& rhs) {
+    memcpy(freq_, rhs.freq_, sizeof(freq_));
+  }
+  ProfileColumn& operator= (const ProfileColumn& rhs) {
+    memcpy(freq_, rhs.freq_, sizeof(freq_));
+    return *this;
+  }
+
+  static ProfileColumn BLOSUMNullModel();
+
+  /// \brief Translate one-letter-code to index (0-indexing).
+  static int GetIndex(char ch);
+
+  Real GetFreq(char ch) const;
+
+  void SetFreq(char ch, Real freq);
+
+  bool operator==(const ProfileColumn& rhs) const {
+    return !memcmp(freq_, rhs.freq_, sizeof(freq_));
+  }
+  bool operator!=(const ProfileColumn& rhs) const { return !(rhs == (*this)); }
+
+  Real* freqs_begin() { return freq_; }
+  Real* freqs_end() { return freq_ + 20; }
+  const Real* freqs_begin() const { return freq_; }
+  const Real* freqs_end() const { return freq_ + 20; }
+
+  /// \brief Get entropy for this column.
+  Real GetEntropy() const;
+
+  // functions to feed streams with limited accuracy of internal data
+  // not intended for python export
+
+  friend std::ofstream& operator<<(std::ofstream& os, ProfileColumn& col) {
+    int16_t data[20];
+    //transform aa_freq
+    for (uint i = 0; i < 20; ++i) {
+      data[i] = static_cast<int16_t>(col.freq_[i]*10000);
+    }
+    os.write(reinterpret_cast<char*>(data), sizeof(data));
+    return os;
+  }
+
+  friend std::ifstream& operator>>(std::ifstream& is, ProfileColumn& col) {
+    int16_t data[20];
+    is.read(reinterpret_cast<char*>(data), sizeof(data));
+    //transform aa_freq
+    for (uint i = 0; i < 20; ++i) {
+      col.freq_[i] = data[i] * 0.0001;
+    }
+    return is;
+  }
+
+private:
+  Real freq_[20];
+};
+
+/// \brief Provides a profile for a sequence.
+///
+/// Properties:
+/// - consists of N ProfileColumn (N = #residues in sequence)
+/// - contains sequence (String) of length N
+/// - user must enforce consistency between sequence length and #columns
+/// - contains a null_model to use for this sequence
+class DLLEXPORT_OST_SEQ ProfileHandle { 
+public:
+  /// \brief Constructs an empty profile handle (sequence = '', 0 columns).
+  ProfileHandle() {}
+
+  // uses compiler-generated copy- and assignment operators (work here!)
+
+  const std::vector<ProfileColumn>& GetColumns() const { return columns_; }
+
+  const ProfileColumn& GetNullModel() const { return null_model_; } 
+
+  void SetNullModel(const ProfileColumn& null_model) { null_model_ = null_model; }
+
+  String GetSequence() const { return seq_; }
+
+  void SetSequence(const String& seq) { seq_ = seq; }
+
+  /// \brief Extract subset of profile for columns from until to-1 (0-indexing).
+  /// Null model is copied from this profile.
+  /// \throw Error if to <= from or to > size().
+  ProfileHandlePtr Extract(uint from, uint to);
+
+  /// \brief Compute average entropy over all columns.
+  Real GetAverageEntropy() const;
+
+  // some functions to make it behave like a vector
+
+  void clear() { seq_ = ""; columns_.clear(); }
+
+  size_t size() const { return columns_.size(); }
+
+  bool empty() const { return columns_.empty(); }
+
+  void push_back(const ProfileColumn& c) { columns_.push_back(c); }  
+
+  ProfileColumn& operator[](size_t index) { return columns_[index]; }
+
+  const ProfileColumn& operator[](size_t index) const { return columns_[index]; }
+
+  ProfileColumn& at(size_t index) { return columns_.at(index); }
+
+  const ProfileColumn& at(size_t index) const { return columns_.at(index); }
+
+  bool operator==(const ProfileHandle& other) const {
+    return seq_ == other.seq_ &&
+           columns_ == other.columns_ &&
+           null_model_ == other.null_model_;
+  }
+  
+  bool operator!=(const ProfileHandle& other) const { return !(other == (*this)); }
+
+  ProfileColumnList::const_iterator columns_end() const { return columns_.end(); }
+  ProfileColumnList::iterator columns_end() { return columns_.end(); }
+  ProfileColumnList::const_iterator columns_begin() const { return columns_.begin(); }
+  ProfileColumnList::iterator columns_begin() { return columns_.begin(); }
+
+  // functions to feed streams with limited accuracy of internal data
+  // not intended for python export
+
+  friend std::ofstream& operator<<(std::ofstream& os, ProfileHandle& prof) {
+    // null model
+    os << prof.null_model_;
+    // num. columns/residues
+    uint32_t size = prof.size();
+    os.write(reinterpret_cast<char*>(&size), sizeof(uint32_t));
+    // sequence
+    if (prof.seq_.length() != size) {
+      throw Error("ProfileHandle - Inconsistency between number of columns and "
+                  " seq. length.");
+    }
+    os.write(prof.seq_.c_str(), size);
+    // columns
+    for(uint i = 0; i < size; ++i){
+      os << prof.columns_[i];
+    }
+
+    return os;
+  }
+
+  friend std::ifstream& operator>>(std::ifstream& is, ProfileHandle& prof) {
+    // null model
+    is >> prof.null_model_;
+    // num. columns/residues
+    uint32_t size;
+    is.read(reinterpret_cast<char*>(&size), sizeof(uint32_t));
+    // sequence
+    std::vector<char> tmp_buf(size);
+    is.read(&tmp_buf[0], size);
+    prof.seq_.assign(&tmp_buf[0], size);
+    // columns
+    prof.columns_.resize(size);
+    for(uint i = 0; i < size; ++i){
+      is >> prof.columns_[i];
+    }
+
+    return is;
+  }
+
+private:
+  String             seq_;
+  ProfileColumn      null_model_; 
+  ProfileColumnList  columns_;
+};
+
+/// \brief Contains a DB of profiles (identified by a unique name (String)).
+class DLLEXPORT_OST_SEQ ProfileDB {
+public:
+  /// \brief Saves all profiles in DB with limited accuracy of internal data.
+  /// Binary format with fixed-width integers (should be portable).
+  void Save(const String& filename) const;
+
+  static ProfileDBPtr Load(const String& filename);
+
+  void AddProfile(const String& name, ProfileHandlePtr prof);
+
+  ProfileHandlePtr GetProfile(const String& name) const;
+
+  size_t size() const { return data_.size(); }
+
+  std::vector<String> GetNames() const;
+
+private:
+  std::map<String, ProfileHandlePtr> data_;
+};
+
+}}
+
+#endif
diff --git a/modules/seq/base/src/sequence_handle.cc b/modules/seq/base/src/sequence_handle.cc
index 627ebdc36ee0501a7ff5fcf2926af7c199dae592..f57a624e7634410910b4b479debcd5db6b25a4cd 100644
--- a/modules/seq/base/src/sequence_handle.cc
+++ b/modules/seq/base/src/sequence_handle.cc
@@ -295,6 +295,11 @@ String SequenceHandle::GetGaplessString() const
   return Impl()->GetGaplessString();
 }
 
+void SequenceHandle::Normalise() {
+  this->CheckValidity();
+  Impl()->Normalise();
+}
+
 int SequenceHandle::GetOffset() const
 {
   this->CheckValidity();
diff --git a/modules/seq/base/src/sequence_handle.hh b/modules/seq/base/src/sequence_handle.hh
index d7247cbd10abca25bdc9fc3c00b60dac7c6e9915..cf9aa732d1d2a85c154e0dd774790a724ac0e2b2 100644
--- a/modules/seq/base/src/sequence_handle.hh
+++ b/modules/seq/base/src/sequence_handle.hh
@@ -123,7 +123,7 @@ public:
   bool HasAttachedView() const;
   
   const String& GetRole() const;
-  
+
   bool operator==(const ConstSequenceHandle& rhs) const;
   bool operator!=(const ConstSequenceHandle& rhs) const;  
   
@@ -231,7 +231,11 @@ public:
   /// \brief get attached view. may be an invalid entity view
   /// \sa SequenceHandle::AttachView(const mol::EntityView&, const String&)
   mol::EntityView GetAttachedView() const;
-  
+
+  /// \brief remove '.', '-' as gaps and make sequence all-uppercase
+  /// Changes happen in place.
+  void Normalise();
+
   /// \brief create copy sequence
   /// The newly created sequence has the same attached view.
   SequenceHandle Copy() const;
diff --git a/modules/seq/base/tests/CMakeLists.txt b/modules/seq/base/tests/CMakeLists.txt
index 645dba066e39c51c1fc0b9211228e8490ed85a07..c160c4b320d178ce1be2255ad2d4da20d2e5c09c 100644
--- a/modules/seq/base/tests/CMakeLists.txt
+++ b/modules/seq/base/tests/CMakeLists.txt
@@ -4,8 +4,8 @@ set(OST_SEQ_UNIT_TESTS
   test_aligned_column.cc
   test_aligned_region.cc
   test_alignment.cc
+  test_profile.cc
   tests.cc
 )
 
 ost_unittest(MODULE seq SOURCES "${OST_SEQ_UNIT_TESTS}")
-
diff --git a/modules/seq/base/tests/test_profile.cc b/modules/seq/base/tests/test_profile.cc
new file mode 100644
index 0000000000000000000000000000000000000000..ef2292bc74f0d981a0cf658a93b6c8ecf129bbec
--- /dev/null
+++ b/modules/seq/base/tests/test_profile.cc
@@ -0,0 +1,144 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2015 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+/*
+  Author: Gerardo Tauriello, Gabriel Studer
+ */
+
+#define BOOST_TEST_DYN_LINK
+#include <boost/test/unit_test.hpp>
+#include <boost/test/auto_unit_test.hpp>
+#include <iostream>
+
+#include <ost/seq/profile_handle.hh>
+#include <ost/io/seq/hhm_io_handler.hh>
+#include <ost/io/seq/pssm_io_handler.hh>
+
+using namespace ost::seq;
+
+
+BOOST_AUTO_TEST_SUITE( profile );
+
+
+BOOST_AUTO_TEST_CASE(profile_column)
+{
+  const char * olc = "ACDEFGHIKLMNPQRSTVWY";
+  
+  // check empty column
+  ProfileColumn pc;
+  BOOST_CHECK_EQUAL(pc.GetEntropy(), Real(0));
+  Real* freq_ptr = pc.freqs_begin();
+  for (uint i = 0; i < 20; ++i) {
+    BOOST_CHECK_EQUAL(freq_ptr[i], Real(0));
+    BOOST_CHECK_EQUAL(pc.GetFreq(olc[i]), Real(0));
+    // check overwrite
+    const Real tst = Real(i)/Real(20);
+    pc.SetFreq(olc[i], tst);
+    BOOST_CHECK_EQUAL(pc.GetFreq(olc[i]), tst);
+  }
+
+  // check null model
+  ProfileColumn nm = ProfileColumn::BLOSUMNullModel();
+  BOOST_CHECK_GE(pc.GetEntropy(), Real(0));
+  Real sum_freq = 0;
+  freq_ptr = nm.freqs_begin();
+  for (uint i = 0; i < 20; ++i) {
+    BOOST_CHECK_GE(freq_ptr[i], Real(0));
+    sum_freq += freq_ptr[i];
+  }
+  BOOST_CHECK_CLOSE(sum_freq, Real(1), Real(1e-3));
+
+  // check assign/copy
+  ProfileColumn nm2(nm);
+  BOOST_CHECK(nm == nm2);
+  Real* freq_ptr2 = nm2.freqs_begin();
+  for (uint i = 0; i < 20; ++i) {
+    BOOST_CHECK_EQUAL(freq_ptr[i], freq_ptr2[i]);
+  }
+  pc = nm;
+  BOOST_CHECK(nm == pc);
+}
+
+BOOST_AUTO_TEST_CASE(profile_handle)
+{
+  // generate dummy
+  ProfileHandle prof;
+  BOOST_CHECK_EQUAL(prof.size(), size_t(0));
+  BOOST_CHECK_EQUAL(prof.GetSequence(), "");
+  prof.SetSequence("RRSPP");
+  ProfileColumn pc0 = ProfileColumn::BLOSUMNullModel();
+  prof.SetNullModel(pc0);
+  ProfileColumn pc1, pc2, pc3, pc4;
+  pc1.SetFreq('H', 0.74);
+  pc1.SetFreq('E', 0.01);
+  pc1.SetFreq('L', 0.25);
+  pc2.SetFreq('L', 1);
+  pc3.SetFreq('Y', 0.5);
+  pc3.SetFreq('E', 0.5);
+  pc4.SetFreq('A', 0.5);
+  pc4.SetFreq('H', 0.5);
+  prof.push_back(pc0);
+  prof.push_back(pc1);
+  prof.push_back(pc2);
+  prof.push_back(pc3);
+  prof.push_back(pc4);
+
+  // check components
+  BOOST_CHECK_EQUAL(prof.size(), size_t(5));
+  BOOST_CHECK(prof.GetNullModel() == pc0);
+  BOOST_CHECK_EQUAL(prof.GetSequence(), "RRSPP");
+
+  // check columns with different methods of getting the columns
+  BOOST_CHECK(prof[0] == pc0);
+  BOOST_CHECK(*(prof.columns_begin()+1) == pc1);
+  BOOST_CHECK(prof.GetColumns()[2] == pc2);
+  BOOST_CHECK(prof.at(3) == pc3);
+  BOOST_CHECK(*(prof.columns_end()-1) == pc4);
+
+  // check entropies
+  Real entropy1 = -0.74*log(0.74) - 0.01*log(0.01) - 0.25*log(0.25);
+  Real entropy2 = 0;
+  Real entropy3 = -log(0.5);
+  Real avg_entropy = (pc0.GetEntropy() + entropy1 + entropy2 + 2*entropy3)/5;
+  BOOST_CHECK_CLOSE(prof[1].GetEntropy(), entropy1, Real(1e-3));
+  BOOST_CHECK_CLOSE(prof[2].GetEntropy(), entropy2, Real(1e-3));
+  BOOST_CHECK_CLOSE(prof[3].GetEntropy(), entropy3, Real(1e-3));
+  BOOST_CHECK_CLOSE(prof.GetAverageEntropy(), avg_entropy, Real(1e-3));
+
+  // extract parts
+  ProfileHandlePtr pp = prof.Extract(1, 4);
+  avg_entropy = (entropy1 + entropy2 + entropy3)/3;
+  BOOST_CHECK_EQUAL(pp->size(), size_t(3));
+  BOOST_CHECK_EQUAL(pp->GetSequence(), "RSP");
+  BOOST_CHECK_CLOSE(pp->GetAverageEntropy(), avg_entropy, Real(1e-3));
+
+  pp = prof.Extract(0, 3);
+  avg_entropy = (pc0.GetEntropy() + entropy1 + entropy2)/3;
+  BOOST_CHECK_EQUAL(pp->size(), size_t(3));
+  BOOST_CHECK_EQUAL(pp->GetSequence(), "RRS");
+  BOOST_CHECK_CLOSE(pp->GetAverageEntropy(), avg_entropy, Real(1e-3));
+
+  pp = prof.Extract(3, 5);
+  BOOST_CHECK_EQUAL(pp->size(), size_t(2));
+  BOOST_CHECK_EQUAL(pp->GetSequence(), "PP");
+  BOOST_CHECK_CLOSE(pp->GetAverageEntropy(), entropy3, Real(1e-3));
+}
+
+
+BOOST_AUTO_TEST_SUITE_END();
diff --git a/modules/seq/base/tests/test_seq.py b/modules/seq/base/tests/test_seq.py
index bfd80d7bf70461211962f6b36c2c603584b4fe4c..f202fe522bf19367af6f9ca70c86837d41869cf1 100644
--- a/modules/seq/base/tests/test_seq.py
+++ b/modules/seq/base/tests/test_seq.py
@@ -175,6 +175,16 @@ class TestSeq(unittest.TestCase):
     self.assertEqual(string_a, 'BDFH')
     self.assertEqual(string_b, 'BDFH')
 
+  def testNormalise(self):
+    seq_a=seq.CreateSequence("A", "B-D-FGH")
+    self.assertEqual("B-D-FGH", seq_a.GetString())
+    seq_a.Normalise()
+    self.assertEqual("BDFGH", seq_a.GetString())
+    seq_a=seq.CreateSequence("A", "b.d-fgh")
+    self.assertEqual("b.d-fgh", seq_a.GetString())
+    seq_a.Normalise()
+    self.assertEqual("BDFGH", seq_a.GetString())
+
 if __name__== '__main__':
   from ost import testutils
   testutils.RunTests()
diff --git a/modules/seq/base/tests/test_sequence.cc b/modules/seq/base/tests/test_sequence.cc
index 462747784933dcc25dd36689c3a0d0df5a5f2de2..309939db0d715aa4b8dce5256bac8176117bc07a 100644
--- a/modules/seq/base/tests/test_sequence.cc
+++ b/modules/seq/base/tests/test_sequence.cc
@@ -106,6 +106,26 @@ BOOST_AUTO_TEST_CASE(seq_string)
   BOOST_CHECK_EQUAL(s.GetGaplessString(),"");
 }
 
+BOOST_AUTO_TEST_CASE(seq_normalise)
+{
+  SequenceHandle s=CreateSequence("S1", "abfcdadeaf");
+  BOOST_CHECK_EQUAL(s.GetString(),"abfcdadeaf");
+  s.Normalise();
+  BOOST_CHECK_EQUAL(s.GetString(),"ABFCDADEAF");
+  s=CreateSequence("S1", ".afc..de.f");
+  BOOST_CHECK_EQUAL(s.GetString(),".afc..de.f");
+  s.Normalise();
+  BOOST_CHECK_EQUAL(s.GetString(),"AFCDEF");
+  s=CreateSequence("S1", "-afc--de-f");
+  BOOST_CHECK_EQUAL(s.GetString(),"-afc--de-f");
+  s.Normalise();
+  BOOST_CHECK_EQUAL(s.GetString(),"AFCDEF");
+  s=CreateSequence("S1", ".afc-.de-f");
+  BOOST_CHECK_EQUAL(s.GetString(),".afc-.de-f");
+  s.Normalise();
+  BOOST_CHECK_EQUAL(s.GetString(),"AFCDEF");
+}
+
 BOOST_AUTO_TEST_CASE(seq_onelettercode)
 {
   SequenceHandle s=CreateSequence("S1", "abfcdadeaf");
diff --git a/scripts/ost_config.in b/scripts/ost_config.in
index f109f8b2d6188c65adb7c5157fc70b42692869d4..afce131f195b2f17c0198ac7439402916b15f4fb 100644
--- a/scripts/ost_config.in
+++ b/scripts/ost_config.in
@@ -53,6 +53,14 @@ if [ -n "$DNG_ATTACH_VALGRIND" ]; then
   pyexec="`which valgrind`#--leak-check=full#$pyexec"
 fi
 
+if [ -n "$DNG_ATTACH_VALGRIND_MASSIF" ]; then
+  if [ ! -x `which valgrind` ]; then
+    echo "Error: valgrind not found!"
+    exit
+  fi
+  pyexec="`which valgrind`#--tool=massif#$pyexec"
+fi
+
 if [ -n "$DNG_PROFILE" ]; then
   if [[ "$DNG_PROFILE" == "yep" ]]; then
     echo "Profiling activated using yep"
diff --git a/tools/molck/main.cc b/tools/molck/main.cc
index 09251bcfb6a29a38c36ba902498745bbf8ec23e5..2a445620212e97165e53b7f9bf3592ecd5a21387 100644
--- a/tools/molck/main.cc
+++ b/tools/molck/main.cc
@@ -10,6 +10,7 @@
 #include <ost/conop/amino_acids.hh>
 #include <ost/io/mol/pdb_reader.hh>
 #include <ost/io/mol/pdb_writer.hh>
+#include <ost/io/mol/mmcif_reader.hh>
 #include <ost/io/io_exception.hh>
 #include <ost/conop/nonstandard.hh>
 #if defined(__APPLE__)
@@ -26,15 +27,25 @@ namespace fs=boost::filesystem;
 EntityHandle load_x(const String& file, const IOProfile& profile)
 {
   try {
-    PDBReader reader(file, profile);
-    if (reader.HasNext()) {
-      EntityHandle ent=CreateEntity();
-      reader.Import(ent);
+    EntityHandle ent = CreateEntity();
+    if(file.compare(file.length() - 6, 6, ".mmcif") == 0 ||
+       file.compare(file.length() - 4, 4, ".cif") == 0){
+      MMCifReader reader(file,ent,profile);
+      reader.Parse();
       return ent;
     }
-    std::cerr << "ERROR: '" << file << "' does not contain any ATOM records. "
+    //if its not mmcif, we assume the file to be in pdb format without even
+    //looking at the filename
+    else{
+      PDBReader reader(file, profile);
+      if (reader.HasNext()) {
+        reader.Import(ent);
+        return ent;
+      }
+      std::cerr << "ERROR: '" << file << "' does not contain any ATOM records. "
               << "Are you sure this is a PDB file?" << std::endl;
-    return EntityHandle();
+      return EntityHandle();
+    }
   } catch (std::exception& e) {
     std::cerr << "ERROR: " << e.what() << std::endl;
     return EntityHandle();